From d3cbac2697e58420dc25daeb976ccd88bad62d60 Mon Sep 17 00:00:00 2001 From: Mikhail Katychev Date: Tue, 23 Sep 2025 15:52:19 -0500 Subject: [PATCH 1/4] init commit --- grammar.js | 2 +- queries/nu/highlights.scm | 54 +- src/grammar.json | 9 +- src/node-types.json | 24 +- src/parser.c | 47090 ++++++++++++++++++------------------ test/corpus/decl/def.nu | 12 +- 6 files changed, 23595 insertions(+), 23596 deletions(-) diff --git a/grammar.js b/grammar.js index 9f91cd03..35647dbc 100644 --- a/grammar.js +++ b/grammar.js @@ -303,7 +303,7 @@ module.exports = grammar({ 'key', choice( alias($._unquoted_in_record, $.identifier), - alias($.val_string, $.identifier), + $.val_string, ), ), optional($._collection_annotation), diff --git a/queries/nu/highlights.scm b/queries/nu/highlights.scm index 8fe3bf10..ff4db1c0 100644 --- a/queries/nu/highlights.scm +++ b/queries/nu/highlights.scm @@ -18,6 +18,7 @@ ] @keyword.repeat "def" @keyword.function +(string_content) @string [ "try" @@ -62,7 +63,6 @@ ] @number "[" @punctuation.bracket digit: [ - "," @punctuation.delimiter (hex_digit) @number ] "]" @punctuation.bracket) @number @@ -137,6 +137,7 @@ file_path: (val_string) @variable.parameter ] @operator) [ + "..." "=>" "=" "|" @@ -170,10 +171,15 @@ file_path: (val_string) @variable.parameter ; --- ; punctuation [ - "," ";" ] @punctuation.special +[ "," ":" "->" ] @punctuation.delimiter +[ + "<" + ">" +] @punctuation.bracket + (param_long_flag "--" @punctuation.delimiter) @@ -192,26 +198,22 @@ file_path: (val_string) @variable.parameter (param_short_flag "-" @punctuation.delimiter) -(param_rest - "..." @punctuation.delimiter) -(param_type - ":" @punctuation.special) (param_value "=" @punctuation.special) (param_cmd - "@" @punctuation.special) + "@" @constructor) (attribute - "@" @punctuation.special) + "@" @label) (param_opt "?" @punctuation.special) (returns - "->" @punctuation.special) + "->" @punctuation.delimiter) [ "(" @@ -220,15 +222,8 @@ file_path: (val_string) @variable.parameter "}" "[" "]" - "...[" - "...(" - "...{" ] @punctuation.bracket -(val_record - (record_entry - ":" @punctuation.delimiter)) - key: (identifier) @property ; --- @@ -308,7 +303,7 @@ key: (identifier) @property (#eq? @keyword "as")) (command - "^" @punctuation.delimiter + "^" @keyword.modifier head: (_) @function) "where" @function.builtin @@ -331,7 +326,6 @@ key: (identifier) @property (val_variable "$"? @punctuation.special - "...$"? @punctuation.special [ (identifier) @variable "in" @special @@ -342,39 +336,23 @@ key: (identifier) @property (val_cellpath "$" @punctuation.special) -(record_entry - ":" @punctuation.special) ; --- ; types (flat_type) @type (list_type - "list" @type.enum - [ - "<" - ">" - ] @punctuation.bracket) + "list" @type) (collection_type + . [ "record" "table" - ] @type.enum - "<" @punctuation.bracket - key: (_) @variable.parameter - [ - "," - ":" - ] @punctuation.special - ">" @punctuation.bracket) + ] @type) (composite_type - "oneof" @type.enum - [ - "<" - ">" - ] @punctuation.bracket) + "oneof" @type.enum) (shebang) @keyword.directive diff --git a/src/grammar.json b/src/grammar.json index 451284d0..a3933175 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2987,13 +2987,8 @@ "value": "identifier" }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "val_string" - }, - "named": true, - "value": "identifier" + "type": "SYMBOL", + "name": "val_string" } ] } diff --git a/src/node-types.json b/src/node-types.json index 03ab14f8..2baf717e 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -330,6 +330,10 @@ { "type": "identifier", "named": true + }, + { + "type": "val_string", + "named": true } ] }, @@ -2296,25 +2300,7 @@ { "type": "identifier", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "raw_string_begin", - "named": true - }, - { - "type": "raw_string_end", - "named": true - }, - { - "type": "string_content", - "named": true - } - ] - } + "fields": {} }, { "type": "list_body", diff --git a/src/parser.c b/src/parser.c index 510c8b46..e7991f7e 100644 --- a/src/parser.c +++ b/src/parser.c @@ -15,7 +15,7 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 5973 +#define STATE_COUNT 5975 #define LARGE_STATE_COUNT 1018 #define SYMBOL_COUNT 477 #define ALIAS_COUNT 4 @@ -24,7 +24,7 @@ #define FIELD_COUNT 63 #define MAX_ALIAS_SEQUENCE_LENGTH 10 #define MAX_RESERVED_WORD_SET_SIZE 0 -#define PRODUCTION_ID_COUNT 251 +#define PRODUCTION_ID_COUNT 253 #define SUPERTYPE_COUNT 0 enum ts_symbol_identifiers { @@ -3702,87 +3702,89 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [167] = {.index = 345, .length = 5}, [168] = {.index = 350, .length = 3}, [169] = {.index = 353, .length = 1}, - [170] = {.index = 354, .length = 2}, - [171] = {.index = 356, .length = 1}, - [172] = {.index = 357, .length = 2}, - [173] = {.index = 359, .length = 2}, - [174] = {.index = 361, .length = 6}, - [175] = {.index = 367, .length = 6}, - [176] = {.index = 373, .length = 1}, - [177] = {.index = 374, .length = 1}, - [178] = {.index = 375, .length = 2}, - [179] = {.index = 377, .length = 2}, - [180] = {.index = 379, .length = 2}, - [181] = {.index = 381, .length = 2}, - [182] = {.index = 383, .length = 2}, - [183] = {.index = 385, .length = 9}, - [184] = {.index = 394, .length = 6}, - [185] = {.index = 400, .length = 9}, - [186] = {.index = 409, .length = 6}, - [187] = {.index = 415, .length = 6}, - [188] = {.index = 421, .length = 6}, - [189] = {.index = 427, .length = 3}, + [170] = {.index = 353, .length = 1}, + [171] = {.index = 354, .length = 2}, + [172] = {.index = 356, .length = 1}, + [173] = {.index = 357, .length = 2}, + [174] = {.index = 359, .length = 2}, + [175] = {.index = 361, .length = 6}, + [176] = {.index = 367, .length = 6}, + [177] = {.index = 373, .length = 1}, + [178] = {.index = 374, .length = 1}, + [179] = {.index = 375, .length = 2}, + [180] = {.index = 377, .length = 2}, + [181] = {.index = 379, .length = 2}, + [182] = {.index = 381, .length = 2}, + [183] = {.index = 383, .length = 2}, + [184] = {.index = 385, .length = 9}, + [185] = {.index = 394, .length = 6}, + [186] = {.index = 400, .length = 9}, + [187] = {.index = 409, .length = 6}, + [188] = {.index = 415, .length = 6}, + [189] = {.index = 421, .length = 6}, [190] = {.index = 427, .length = 3}, - [191] = {.index = 430, .length = 1}, - [192] = {.index = 431, .length = 5}, - [193] = {.index = 436, .length = 6}, - [194] = {.index = 442, .length = 6}, - [195] = {.index = 448, .length = 5}, - [196] = {.index = 453, .length = 3}, - [197] = {.index = 456, .length = 3}, - [198] = {.index = 459, .length = 3}, - [199] = {.index = 462, .length = 6}, - [200] = {.index = 468, .length = 2}, - [201] = {.index = 470, .length = 1}, - [202] = {.index = 471, .length = 2}, - [203] = {.index = 473, .length = 2}, - [204] = {.index = 475, .length = 2}, - [205] = {.index = 477, .length = 3}, - [206] = {.index = 480, .length = 3}, - [207] = {.index = 483, .length = 3}, - [208] = {.index = 486, .length = 3}, - [209] = {.index = 489, .length = 3}, - [210] = {.index = 492, .length = 3}, - [211] = {.index = 495, .length = 2}, - [212] = {.index = 497, .length = 2}, - [213] = {.index = 499, .length = 9}, - [214] = {.index = 508, .length = 6}, - [215] = {.index = 514, .length = 6}, - [216] = {.index = 520, .length = 1}, - [217] = {.index = 521, .length = 5}, - [218] = {.index = 526, .length = 6}, - [219] = {.index = 532, .length = 6}, - [220] = {.index = 538, .length = 3}, - [221] = {.index = 541, .length = 3}, - [222] = {.index = 544, .length = 3}, - [223] = {.index = 547, .length = 3}, - [224] = {.index = 550, .length = 3}, - [225] = {.index = 553, .length = 3}, - [226] = {.index = 556, .length = 3}, - [227] = {.index = 559, .length = 3}, - [228] = {.index = 562, .length = 3}, - [229] = {.index = 565, .length = 2}, - [230] = {.index = 567, .length = 2}, - [231] = {.index = 569, .length = 6}, - [232] = {.index = 575, .length = 5}, - [233] = {.index = 580, .length = 3}, - [234] = {.index = 583, .length = 3}, - [235] = {.index = 586, .length = 3}, - [236] = {.index = 589, .length = 3}, - [237] = {.index = 592, .length = 3}, - [238] = {.index = 595, .length = 3}, - [239] = {.index = 598, .length = 3}, - [240] = {.index = 601, .length = 3}, - [241] = {.index = 604, .length = 2}, - [242] = {.index = 606, .length = 6}, - [243] = {.index = 612, .length = 3}, - [244] = {.index = 615, .length = 3}, - [245] = {.index = 618, .length = 3}, - [246] = {.index = 621, .length = 3}, - [247] = {.index = 624, .length = 3}, - [248] = {.index = 627, .length = 3}, - [249] = {.index = 630, .length = 3}, - [250] = {.index = 633, .length = 3}, + [191] = {.index = 427, .length = 3}, + [192] = {.index = 430, .length = 1}, + [193] = {.index = 431, .length = 5}, + [194] = {.index = 436, .length = 6}, + [195] = {.index = 442, .length = 6}, + [196] = {.index = 448, .length = 5}, + [197] = {.index = 453, .length = 3}, + [198] = {.index = 456, .length = 3}, + [199] = {.index = 456, .length = 3}, + [200] = {.index = 459, .length = 3}, + [201] = {.index = 462, .length = 6}, + [202] = {.index = 468, .length = 2}, + [203] = {.index = 470, .length = 1}, + [204] = {.index = 471, .length = 2}, + [205] = {.index = 473, .length = 2}, + [206] = {.index = 475, .length = 2}, + [207] = {.index = 477, .length = 3}, + [208] = {.index = 480, .length = 3}, + [209] = {.index = 483, .length = 3}, + [210] = {.index = 486, .length = 3}, + [211] = {.index = 489, .length = 3}, + [212] = {.index = 492, .length = 3}, + [213] = {.index = 495, .length = 2}, + [214] = {.index = 497, .length = 2}, + [215] = {.index = 499, .length = 9}, + [216] = {.index = 508, .length = 6}, + [217] = {.index = 514, .length = 6}, + [218] = {.index = 520, .length = 1}, + [219] = {.index = 521, .length = 5}, + [220] = {.index = 526, .length = 6}, + [221] = {.index = 532, .length = 6}, + [222] = {.index = 538, .length = 3}, + [223] = {.index = 541, .length = 3}, + [224] = {.index = 544, .length = 3}, + [225] = {.index = 547, .length = 3}, + [226] = {.index = 550, .length = 3}, + [227] = {.index = 553, .length = 3}, + [228] = {.index = 556, .length = 3}, + [229] = {.index = 559, .length = 3}, + [230] = {.index = 562, .length = 3}, + [231] = {.index = 565, .length = 2}, + [232] = {.index = 567, .length = 2}, + [233] = {.index = 569, .length = 6}, + [234] = {.index = 575, .length = 5}, + [235] = {.index = 580, .length = 3}, + [236] = {.index = 583, .length = 3}, + [237] = {.index = 586, .length = 3}, + [238] = {.index = 589, .length = 3}, + [239] = {.index = 592, .length = 3}, + [240] = {.index = 595, .length = 3}, + [241] = {.index = 598, .length = 3}, + [242] = {.index = 601, .length = 3}, + [243] = {.index = 604, .length = 2}, + [244] = {.index = 606, .length = 6}, + [245] = {.index = 612, .length = 3}, + [246] = {.index = 615, .length = 3}, + [247] = {.index = 618, .length = 3}, + [248] = {.index = 621, .length = 3}, + [249] = {.index = 624, .length = 3}, + [250] = {.index = 627, .length = 3}, + [251] = {.index = 630, .length = 3}, + [252] = {.index = 633, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -4761,13 +4763,13 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [2] = sym_val_number, [4] = sym_val_number, }, - [169] = { + [170] = { [0] = sym_identifier, }, - [190] = { + [191] = { [4] = sym_val_string, }, - [197] = { + [199] = { [0] = sym_identifier, }, }; @@ -4791,10 +4793,9 @@ static const uint16_t ts_non_terminal_alias_map[] = { sym__val_number_decimal, 2, sym__val_number_decimal, sym_val_number, - sym_val_string, 3, + sym_val_string, 2, sym_val_string, anon_alias_sym_quoted, - sym_identifier, sym_unquoted, 3, sym_unquoted, anon_alias_sym__head, @@ -9219,1570 +9220,1572 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4406] = 4406, [4407] = 4407, [4408] = 4408, - [4409] = 465, + [4409] = 4409, [4410] = 4410, [4411] = 4411, - [4412] = 797, - [4413] = 4413, + [4412] = 4412, + [4413] = 465, [4414] = 4414, - [4415] = 4415, - [4416] = 118, - [4417] = 784, - [4418] = 121, - [4419] = 117, - [4420] = 3732, - [4421] = 3736, - [4422] = 122, - [4423] = 123, - [4424] = 119, - [4425] = 3322, - [4426] = 3323, - [4427] = 131, - [4428] = 489, - [4429] = 816, - [4430] = 817, - [4431] = 818, - [4432] = 488, - [4433] = 4433, - [4434] = 4434, - [4435] = 4435, - [4436] = 4410, - [4437] = 724, - [4438] = 725, - [4439] = 4439, - [4440] = 4440, - [4441] = 4441, - [4442] = 465, - [4443] = 488, - [4444] = 470, - [4445] = 2751, - [4446] = 2752, - [4447] = 4447, - [4448] = 4448, - [4449] = 3267, - [4450] = 4433, - [4451] = 116, - [4452] = 4452, - [4453] = 4453, - [4454] = 4454, + [4415] = 797, + [4416] = 4416, + [4417] = 4417, + [4418] = 4418, + [4419] = 4419, + [4420] = 784, + [4421] = 121, + [4422] = 117, + [4423] = 3732, + [4424] = 3736, + [4425] = 122, + [4426] = 123, + [4427] = 119, + [4428] = 3322, + [4429] = 3323, + [4430] = 131, + [4431] = 489, + [4432] = 816, + [4433] = 817, + [4434] = 818, + [4435] = 488, + [4436] = 4436, + [4437] = 4437, + [4438] = 4438, + [4439] = 4414, + [4440] = 724, + [4441] = 725, + [4442] = 4442, + [4443] = 4443, + [4444] = 4444, + [4445] = 465, + [4446] = 470, + [4447] = 488, + [4448] = 2751, + [4449] = 2752, + [4450] = 4450, + [4451] = 4451, + [4452] = 4436, + [4453] = 3267, + [4454] = 116, [4455] = 4455, - [4456] = 465, - [4457] = 4457, - [4458] = 4458, - [4459] = 4459, - [4460] = 120, - [4461] = 4410, - [4462] = 1723, - [4463] = 4463, - [4464] = 4464, - [4465] = 4465, + [4456] = 4456, + [4457] = 4407, + [4458] = 4408, + [4459] = 465, + [4460] = 4460, + [4461] = 4461, + [4462] = 4462, + [4463] = 120, + [4464] = 4414, + [4465] = 1723, [4466] = 4466, - [4467] = 470, + [4467] = 4467, [4468] = 4468, - [4469] = 1520, - [4470] = 784, + [4469] = 4469, + [4470] = 470, [4471] = 4471, - [4472] = 4472, - [4473] = 4473, - [4474] = 4457, - [4475] = 4458, + [4472] = 1520, + [4473] = 784, + [4474] = 4474, + [4475] = 4475, [4476] = 4476, - [4477] = 470, - [4478] = 151, - [4479] = 154, - [4480] = 4480, - [4481] = 155, - [4482] = 681, - [4483] = 4483, - [4484] = 4455, - [4485] = 4457, - [4486] = 4458, - [4487] = 816, - [4488] = 817, - [4489] = 818, - [4490] = 4410, - [4491] = 4457, - [4492] = 4492, - [4493] = 465, - [4494] = 4494, - [4495] = 4495, - [4496] = 4455, - [4497] = 4457, - [4498] = 4458, - [4499] = 4410, - [4500] = 4455, - [4501] = 4457, - [4502] = 4458, - [4503] = 4410, - [4504] = 4455, - [4505] = 673, - [4506] = 4410, - [4507] = 4455, - [4508] = 4410, - [4509] = 4455, - [4510] = 4410, - [4511] = 4455, - [4512] = 4410, - [4513] = 4455, - [4514] = 4410, - [4515] = 683, - [4516] = 675, - [4517] = 663, - [4518] = 1549, - [4519] = 2366, - [4520] = 470, - [4521] = 4521, - [4522] = 4522, + [4477] = 4407, + [4478] = 4408, + [4479] = 470, + [4480] = 4409, + [4481] = 151, + [4482] = 154, + [4483] = 155, + [4484] = 4484, + [4485] = 681, + [4486] = 4486, + [4487] = 4456, + [4488] = 4407, + [4489] = 4408, + [4490] = 816, + [4491] = 817, + [4492] = 4414, + [4493] = 818, + [4494] = 465, + [4495] = 4456, + [4496] = 4410, + [4497] = 4407, + [4498] = 4408, + [4499] = 4499, + [4500] = 4500, + [4501] = 4414, + [4502] = 4456, + [4503] = 4407, + [4504] = 4408, + [4505] = 4414, + [4506] = 4456, + [4507] = 4414, + [4508] = 673, + [4509] = 4456, + [4510] = 4414, + [4511] = 4456, + [4512] = 4414, + [4513] = 4456, + [4514] = 4414, + [4515] = 4456, + [4516] = 4414, + [4517] = 683, + [4518] = 675, + [4519] = 663, + [4520] = 1549, + [4521] = 2366, + [4522] = 470, [4523] = 4523, - [4524] = 2366, - [4525] = 4483, - [4526] = 4526, - [4527] = 797, - [4528] = 3242, - [4529] = 583, - [4530] = 489, - [4531] = 784, - [4532] = 816, - [4533] = 817, - [4534] = 818, - [4535] = 116, - [4536] = 120, - [4537] = 4406, - [4538] = 4471, - [4539] = 4472, - [4540] = 486, - [4541] = 4455, - [4542] = 4542, - [4543] = 4406, - [4544] = 4471, - [4545] = 4472, - [4546] = 4546, + [4524] = 4524, + [4525] = 4525, + [4526] = 4486, + [4527] = 2366, + [4528] = 4528, + [4529] = 797, + [4530] = 583, + [4531] = 3242, + [4532] = 489, + [4533] = 784, + [4534] = 816, + [4535] = 817, + [4536] = 818, + [4537] = 116, + [4538] = 120, + [4539] = 4406, + [4540] = 4474, + [4541] = 4475, + [4542] = 486, + [4543] = 4456, + [4544] = 4406, + [4545] = 4474, + [4546] = 4475, [4547] = 4406, - [4548] = 4471, - [4549] = 4472, - [4550] = 4448, - [4551] = 4452, - [4552] = 4459, - [4553] = 4458, - [4554] = 4455, - [4555] = 4492, - [4556] = 4476, + [4548] = 4474, + [4549] = 4475, + [4550] = 4550, + [4551] = 4551, + [4552] = 4451, + [4553] = 4455, + [4554] = 4462, + [4555] = 4456, + [4556] = 118, [4557] = 4557, - [4558] = 4434, - [4559] = 4559, - [4560] = 489, - [4561] = 488, - [4562] = 4557, - [4563] = 4557, - [4564] = 4564, - [4565] = 4435, + [4558] = 964, + [4559] = 489, + [4560] = 114, + [4561] = 663, + [4562] = 4562, + [4563] = 4563, + [4564] = 115, + [4565] = 967, [4566] = 4566, - [4567] = 114, - [4568] = 4407, - [4569] = 1698, + [4567] = 4437, + [4568] = 4438, + [4569] = 3828, [4570] = 4570, - [4571] = 488, - [4572] = 4408, - [4573] = 4557, - [4574] = 4564, - [4575] = 4570, - [4576] = 4576, - [4577] = 124, - [4578] = 470, - [4579] = 4570, + [4571] = 4557, + [4572] = 4557, + [4573] = 488, + [4574] = 124, + [4575] = 970, + [4576] = 977, + [4577] = 4577, + [4578] = 4578, + [4579] = 981, [4580] = 4580, - [4581] = 4557, - [4582] = 4564, - [4583] = 970, - [4584] = 1720, - [4585] = 977, - [4586] = 4570, - [4587] = 4587, - [4588] = 470, - [4589] = 1590, - [4590] = 4557, - [4591] = 4564, - [4592] = 115, - [4593] = 4570, - [4594] = 3828, - [4595] = 1603, - [4596] = 4557, - [4597] = 4564, + [4581] = 983, + [4582] = 838, + [4583] = 984, + [4584] = 4584, + [4585] = 838, + [4586] = 992, + [4587] = 996, + [4588] = 4566, + [4589] = 125, + [4590] = 785, + [4591] = 488, + [4592] = 683, + [4593] = 4593, + [4594] = 675, + [4595] = 4551, + [4596] = 4528, + [4597] = 663, [4598] = 4598, - [4599] = 724, - [4600] = 4570, - [4601] = 981, - [4602] = 4557, - [4603] = 4564, - [4604] = 683, - [4605] = 4570, - [4606] = 983, - [4607] = 4557, - [4608] = 4564, - [4609] = 838, - [4610] = 470, - [4611] = 4570, - [4612] = 984, - [4613] = 4453, - [4614] = 4557, - [4615] = 4454, - [4616] = 488, - [4617] = 675, - [4618] = 4557, - [4619] = 838, - [4620] = 4557, - [4621] = 465, - [4622] = 683, - [4623] = 4623, - [4624] = 4557, + [4599] = 3804, + [4600] = 4562, + [4601] = 4563, + [4602] = 4584, + [4603] = 4566, + [4604] = 4604, + [4605] = 4557, + [4606] = 819, + [4607] = 489, + [4608] = 488, + [4609] = 4562, + [4610] = 4563, + [4611] = 3732, + [4612] = 3736, + [4613] = 4557, + [4614] = 4562, + [4615] = 4557, + [4616] = 4411, + [4617] = 1698, + [4618] = 4562, + [4619] = 4563, + [4620] = 4412, + [4621] = 470, + [4622] = 4557, + [4623] = 4562, + [4624] = 4563, [4625] = 4557, - [4626] = 4557, - [4627] = 4557, - [4628] = 992, - [4629] = 4557, + [4626] = 470, + [4627] = 4562, + [4628] = 4563, + [4629] = 1720, [4630] = 4557, - [4631] = 4557, - [4632] = 4557, - [4633] = 996, - [4634] = 4557, - [4635] = 4557, - [4636] = 489, - [4637] = 4570, - [4638] = 4557, + [4631] = 489, + [4632] = 1590, + [4633] = 4562, + [4634] = 4563, + [4635] = 1603, + [4636] = 4566, + [4637] = 3801, + [4638] = 4563, [4639] = 4557, - [4640] = 4557, - [4641] = 4557, - [4642] = 4557, - [4643] = 3890, - [4644] = 4559, - [4645] = 125, - [4646] = 675, - [4647] = 785, - [4648] = 4648, - [4649] = 2435, - [4650] = 663, - [4651] = 725, - [4652] = 3850, - [4653] = 4648, - [4654] = 3789, - [4655] = 488, - [4656] = 1600, - [4657] = 686, - [4658] = 4658, - [4659] = 470, - [4660] = 3480, - [4661] = 3792, - [4662] = 4546, - [4663] = 4526, - [4664] = 676, - [4665] = 113, - [4666] = 4564, - [4667] = 4667, - [4668] = 3793, - [4669] = 4669, - [4670] = 3801, - [4671] = 4576, - [4672] = 4672, - [4673] = 964, - [4674] = 4566, - [4675] = 3804, - [4676] = 4676, - [4677] = 4677, - [4678] = 4678, - [4679] = 4570, - [4680] = 4557, - [4681] = 4564, - [4682] = 4682, - [4683] = 4559, - [4684] = 489, - [4685] = 663, - [4686] = 967, - [4687] = 4566, - [4688] = 4658, - [4689] = 2435, - [4690] = 2408, - [4691] = 3732, - [4692] = 3736, - [4693] = 819, - [4694] = 4598, - [4695] = 4570, - [4696] = 4557, - [4697] = 4564, - [4698] = 4557, - [4699] = 4566, - [4700] = 489, - [4701] = 4564, - [4702] = 4559, - [4703] = 4557, + [4640] = 4562, + [4641] = 4563, + [4642] = 724, + [4643] = 470, + [4644] = 4557, + [4645] = 4562, + [4646] = 4562, + [4647] = 4460, + [4648] = 4461, + [4649] = 4562, + [4650] = 465, + [4651] = 4562, + [4652] = 4562, + [4653] = 4562, + [4654] = 4654, + [4655] = 4562, + [4656] = 4562, + [4657] = 4562, + [4658] = 4562, + [4659] = 4562, + [4660] = 4562, + [4661] = 4562, + [4662] = 4662, + [4663] = 4562, + [4664] = 4562, + [4665] = 4562, + [4666] = 4562, + [4667] = 4562, + [4668] = 4562, + [4669] = 4562, + [4670] = 3890, + [4671] = 2435, + [4672] = 4578, + [4673] = 4673, + [4674] = 3850, + [4675] = 1600, + [4676] = 686, + [4677] = 470, + [4678] = 113, + [4679] = 676, + [4680] = 675, + [4681] = 683, + [4682] = 4563, + [4683] = 4683, + [4684] = 4662, + [4685] = 725, + [4686] = 4686, + [4687] = 4687, + [4688] = 488, + [4689] = 4689, + [4690] = 3789, + [4691] = 3480, + [4692] = 4662, + [4693] = 4593, + [4694] = 3792, + [4695] = 3793, + [4696] = 2435, + [4697] = 4570, + [4698] = 2408, + [4699] = 4562, + [4700] = 4563, + [4701] = 4662, + [4702] = 489, + [4703] = 4562, [4704] = 4704, - [4705] = 675, - [4706] = 3585, + [4705] = 4705, + [4706] = 675, [4707] = 4707, - [4708] = 996, + [4708] = 4708, [4709] = 4709, - [4710] = 683, + [4710] = 3253, [4711] = 4711, [4712] = 4712, [4713] = 4713, - [4714] = 4714, + [4714] = 1303, [4715] = 4715, - [4716] = 675, + [4716] = 4716, [4717] = 4717, - [4718] = 4718, - [4719] = 4719, - [4720] = 663, - [4721] = 3890, - [4722] = 3850, - [4723] = 2186, - [4724] = 2187, - [4725] = 4725, - [4726] = 992, - [4727] = 4727, + [4718] = 1653, + [4719] = 1655, + [4720] = 4720, + [4721] = 838, + [4722] = 4722, + [4723] = 4723, + [4724] = 4724, + [4725] = 4654, + [4726] = 4726, + [4727] = 465, [4728] = 4728, - [4729] = 4729, + [4729] = 683, [4730] = 4730, [4731] = 4731, - [4732] = 4732, - [4733] = 4733, - [4734] = 992, - [4735] = 983, - [4736] = 128, - [4737] = 126, - [4738] = 663, + [4732] = 992, + [4733] = 996, + [4734] = 683, + [4735] = 4735, + [4736] = 4711, + [4737] = 4737, + [4738] = 4738, [4739] = 4739, [4740] = 4740, - [4741] = 4741, - [4742] = 4742, - [4743] = 4743, - [4744] = 129, - [4745] = 4745, + [4741] = 4715, + [4742] = 663, + [4743] = 984, + [4744] = 4744, + [4745] = 3245, [4746] = 4746, [4747] = 4747, - [4748] = 4748, - [4749] = 4749, - [4750] = 3789, - [4751] = 3792, - [4752] = 3793, - [4753] = 3801, - [4754] = 4754, - [4755] = 4755, - [4756] = 4756, + [4748] = 1089, + [4749] = 3228, + [4750] = 4750, + [4751] = 683, + [4752] = 992, + [4753] = 4753, + [4754] = 675, + [4755] = 3828, + [4756] = 675, [4757] = 4757, - [4758] = 4758, - [4759] = 4759, + [4758] = 4711, + [4759] = 663, [4760] = 4760, - [4761] = 4761, + [4761] = 663, [4762] = 4762, [4763] = 4763, - [4764] = 4764, - [4765] = 3804, + [4764] = 2172, + [4765] = 4765, [4766] = 4766, [4767] = 4767, - [4768] = 4768, + [4768] = 2173, [4769] = 4769, [4770] = 4770, [4771] = 4771, [4772] = 4772, - [4773] = 4773, - [4774] = 3275, - [4775] = 821, - [4776] = 3221, - [4777] = 116, - [4778] = 996, - [4779] = 4779, + [4773] = 3890, + [4774] = 4774, + [4775] = 4711, + [4776] = 4776, + [4777] = 4777, + [4778] = 3850, + [4779] = 118, [4780] = 4780, - [4781] = 120, - [4782] = 4782, - [4783] = 4709, - [4784] = 4727, - [4785] = 984, - [4786] = 4786, + [4781] = 2186, + [4782] = 4762, + [4783] = 121, + [4784] = 117, + [4785] = 122, + [4786] = 2187, [4787] = 4787, - [4788] = 4623, - [4789] = 4678, - [4790] = 4790, - [4791] = 4791, - [4792] = 4712, - [4793] = 3253, - [4794] = 1303, + [4788] = 1089, + [4789] = 4711, + [4790] = 123, + [4791] = 119, + [4792] = 4792, + [4793] = 4793, + [4794] = 4794, [4795] = 4795, [4796] = 4796, - [4797] = 1653, - [4798] = 1655, - [4799] = 4799, + [4797] = 4797, + [4798] = 4798, + [4799] = 4711, [4800] = 4800, - [4801] = 4801, - [4802] = 4802, + [4801] = 996, + [4802] = 4723, [4803] = 4803, - [4804] = 4804, - [4805] = 465, - [4806] = 4806, - [4807] = 3828, - [4808] = 683, - [4809] = 4809, + [4804] = 3276, + [4805] = 1671, + [4806] = 128, + [4807] = 126, + [4808] = 4808, + [4809] = 4711, [4810] = 4810, - [4811] = 4811, - [4812] = 4787, + [4811] = 1656, + [4812] = 983, [4813] = 4813, - [4814] = 4709, - [4815] = 2172, - [4816] = 2173, - [4817] = 3245, - [4818] = 4818, - [4819] = 4819, - [4820] = 4820, - [4821] = 4813, - [4822] = 4822, - [4823] = 3228, + [4814] = 4814, + [4815] = 4815, + [4816] = 4816, + [4817] = 4817, + [4818] = 4711, + [4819] = 838, + [4820] = 127, + [4821] = 970, + [4822] = 964, + [4823] = 4823, [4824] = 4824, - [4825] = 1089, - [4826] = 4826, - [4827] = 683, - [4828] = 4828, - [4829] = 675, - [4830] = 4830, - [4831] = 663, - [4832] = 4832, - [4833] = 4709, + [4825] = 4814, + [4826] = 4711, + [4827] = 4827, + [4828] = 129, + [4829] = 4829, + [4830] = 977, + [4831] = 4831, + [4832] = 4711, + [4833] = 4833, [4834] = 4834, - [4835] = 4795, - [4836] = 4836, - [4837] = 970, - [4838] = 977, + [4835] = 4835, + [4836] = 4711, + [4837] = 4837, + [4838] = 4838, [4839] = 4839, [4840] = 4840, - [4841] = 4709, - [4842] = 4842, - [4843] = 4843, - [4844] = 118, - [4845] = 121, - [4846] = 117, - [4847] = 122, - [4848] = 123, - [4849] = 119, - [4850] = 967, - [4851] = 1459, - [4852] = 4709, - [4853] = 4853, - [4854] = 2847, - [4855] = 4709, - [4856] = 1671, - [4857] = 3276, - [4858] = 992, - [4859] = 996, - [4860] = 1656, - [4861] = 4709, - [4862] = 4779, - [4863] = 1628, - [4864] = 1634, - [4865] = 838, - [4866] = 4709, - [4867] = 964, - [4868] = 4868, - [4869] = 683, + [4841] = 489, + [4842] = 816, + [4843] = 4711, + [4844] = 4844, + [4845] = 4845, + [4846] = 967, + [4847] = 4847, + [4848] = 4711, + [4849] = 488, + [4850] = 3789, + [4851] = 4711, + [4852] = 4852, + [4853] = 3792, + [4854] = 4711, + [4855] = 4855, + [4856] = 4856, + [4857] = 3801, + [4858] = 4711, + [4859] = 4859, + [4860] = 4860, + [4861] = 4861, + [4862] = 4862, + [4863] = 4711, + [4864] = 4864, + [4865] = 4865, + [4866] = 817, + [4867] = 967, + [4868] = 3837, + [4869] = 818, [4870] = 4870, - [4871] = 4780, - [4872] = 4709, - [4873] = 4727, + [4871] = 4604, + [4872] = 4872, + [4873] = 4873, [4874] = 4874, - [4875] = 4672, - [4876] = 4709, + [4875] = 4875, + [4876] = 4876, [4877] = 4877, - [4878] = 4709, + [4878] = 4878, [4879] = 4879, - [4880] = 489, - [4881] = 967, - [4882] = 970, - [4883] = 4709, - [4884] = 977, - [4885] = 488, - [4886] = 4709, + [4880] = 4711, + [4881] = 4852, + [4882] = 4780, + [4883] = 470, + [4884] = 1459, + [4885] = 797, + [4886] = 970, [4887] = 4887, - [4888] = 4888, - [4889] = 4709, - [4890] = 4890, - [4891] = 4891, - [4892] = 4709, - [4893] = 4709, + [4888] = 977, + [4889] = 3262, + [4890] = 4724, + [4891] = 3271, + [4892] = 2847, + [4893] = 4731, [4894] = 4894, - [4895] = 4709, - [4896] = 675, + [4895] = 4895, + [4896] = 4735, [4897] = 4897, - [4898] = 981, - [4899] = 4704, - [4900] = 663, + [4898] = 4898, + [4899] = 4899, + [4900] = 3804, [4901] = 4901, - [4902] = 470, - [4903] = 4709, - [4904] = 4879, - [4905] = 4905, - [4906] = 3262, - [4907] = 3271, + [4902] = 4902, + [4903] = 981, + [4904] = 4904, + [4905] = 981, + [4906] = 4906, + [4907] = 4907, [4908] = 4908, - [4909] = 970, - [4910] = 977, - [4911] = 4911, - [4912] = 4912, - [4913] = 784, + [4909] = 984, + [4910] = 964, + [4911] = 983, + [4912] = 984, + [4913] = 1628, [4914] = 4914, - [4915] = 4801, - [4916] = 4916, - [4917] = 4809, - [4918] = 4810, + [4915] = 1652, + [4916] = 838, + [4917] = 984, + [4918] = 1089, [4919] = 4919, [4920] = 4920, - [4921] = 4921, + [4921] = 1634, [4922] = 4922, - [4923] = 981, - [4924] = 984, - [4925] = 964, - [4926] = 4926, - [4927] = 983, - [4928] = 983, - [4929] = 1652, - [4930] = 838, - [4931] = 984, - [4932] = 1089, - [4933] = 2161, - [4934] = 2163, - [4935] = 4935, - [4936] = 797, - [4937] = 4937, - [4938] = 4938, - [4939] = 4939, - [4940] = 992, - [4941] = 996, - [4942] = 4942, - [4943] = 4943, - [4944] = 838, + [4923] = 967, + [4924] = 683, + [4925] = 4925, + [4926] = 992, + [4927] = 996, + [4928] = 4928, + [4929] = 4929, + [4930] = 4930, + [4931] = 3275, + [4932] = 4932, + [4933] = 4933, + [4934] = 4934, + [4935] = 992, + [4936] = 996, + [4937] = 821, + [4938] = 3585, + [4939] = 4711, + [4940] = 970, + [4941] = 116, + [4942] = 3221, + [4943] = 983, + [4944] = 977, [4945] = 4945, - [4946] = 4946, + [4946] = 675, [4947] = 4947, - [4948] = 984, - [4949] = 1089, - [4950] = 967, - [4951] = 4951, - [4952] = 4709, - [4953] = 4953, - [4954] = 127, - [4955] = 981, - [4956] = 4956, - [4957] = 816, - [4958] = 817, - [4959] = 818, - [4960] = 4960, - [4961] = 4961, - [4962] = 3837, + [4948] = 120, + [4949] = 4949, + [4950] = 4950, + [4951] = 4816, + [4952] = 4952, + [4953] = 981, + [4954] = 4954, + [4955] = 784, + [4956] = 4711, + [4957] = 663, + [4958] = 4780, + [4959] = 4959, + [4960] = 2161, + [4961] = 4722, + [4962] = 964, [4963] = 4963, - [4964] = 4811, - [4965] = 964, - [4966] = 4966, - [4967] = 4967, - [4968] = 4968, + [4964] = 4964, + [4965] = 4810, + [4966] = 4815, + [4967] = 2163, + [4968] = 4887, [4969] = 4969, - [4970] = 4732, - [4971] = 4733, - [4972] = 4972, - [4973] = 4853, - [4974] = 4704, - [4975] = 4732, - [4976] = 4733, - [4977] = 4853, - [4978] = 4709, - [4979] = 4979, - [4980] = 920, - [4981] = 4769, - [4982] = 4770, - [4983] = 4983, - [4984] = 4984, - [4985] = 4888, + [4970] = 4740, + [4971] = 4722, + [4972] = 4810, + [4973] = 4815, + [4974] = 4887, + [4975] = 4975, + [4976] = 4976, + [4977] = 4689, + [4978] = 4711, + [4979] = 4712, + [4980] = 3793, + [4981] = 4981, + [4982] = 4982, + [4983] = 4744, + [4984] = 4793, + [4985] = 4795, [4986] = 4986, - [4987] = 865, - [4988] = 4988, - [4989] = 4771, - [4990] = 1003, - [4991] = 1004, - [4992] = 4992, - [4993] = 4912, - [4994] = 4994, - [4995] = 4890, - [4996] = 4894, - [4997] = 4997, + [4987] = 4987, + [4988] = 4859, + [4989] = 4746, + [4990] = 4750, + [4991] = 783, + [4992] = 1783, + [4993] = 4993, + [4994] = 967, + [4995] = 4995, + [4996] = 4996, + [4997] = 1393, [4998] = 4998, - [4999] = 1005, - [5000] = 5000, - [5001] = 1006, + [4999] = 820, + [5000] = 993, + [5001] = 824, [5002] = 5002, - [5003] = 488, - [5004] = 4984, - [5005] = 5005, - [5006] = 4984, - [5007] = 2915, - [5008] = 4988, - [5009] = 876, - [5010] = 877, - [5011] = 889, - [5012] = 970, - [5013] = 4802, - [5014] = 977, - [5015] = 5015, - [5016] = 5016, - [5017] = 891, - [5018] = 5018, - [5019] = 4870, + [5003] = 5003, + [5004] = 5004, + [5005] = 786, + [5006] = 3262, + [5007] = 3271, + [5008] = 5008, + [5009] = 5009, + [5010] = 5010, + [5011] = 5009, + [5012] = 124, + [5013] = 5013, + [5014] = 842, + [5015] = 975, + [5016] = 4894, + [5017] = 5017, + [5018] = 4895, + [5019] = 489, [5020] = 5020, - [5021] = 5021, - [5022] = 4984, - [5023] = 4803, - [5024] = 4956, - [5025] = 4988, - [5026] = 1089, - [5027] = 893, - [5028] = 5028, - [5029] = 5029, - [5030] = 4804, - [5031] = 981, - [5032] = 4820, - [5033] = 5033, - [5034] = 4772, - [5035] = 960, - [5036] = 4773, - [5037] = 4984, - [5038] = 4984, - [5039] = 983, - [5040] = 5040, - [5041] = 894, - [5042] = 4988, - [5043] = 895, - [5044] = 896, - [5045] = 913, - [5046] = 2802, - [5047] = 914, - [5048] = 2902, - [5049] = 838, - [5050] = 2906, - [5051] = 4920, - [5052] = 915, - [5053] = 5053, - [5054] = 916, - [5055] = 4984, - [5056] = 2943, - [5057] = 4946, - [5058] = 4988, - [5059] = 4988, - [5060] = 783, - [5061] = 4988, + [5021] = 865, + [5022] = 5022, + [5023] = 5023, + [5024] = 4897, + [5025] = 5025, + [5026] = 4870, + [5027] = 5027, + [5028] = 4704, + [5029] = 4860, + [5030] = 4969, + [5031] = 4861, + [5032] = 5032, + [5033] = 4954, + [5034] = 970, + [5035] = 5035, + [5036] = 977, + [5037] = 5037, + [5038] = 5038, + [5039] = 4856, + [5040] = 4902, + [5041] = 5041, + [5042] = 4993, + [5043] = 5043, + [5044] = 5044, + [5045] = 981, + [5046] = 979, + [5047] = 4872, + [5048] = 4873, + [5049] = 983, + [5050] = 4874, + [5051] = 4875, + [5052] = 4876, + [5053] = 4877, + [5054] = 1001, + [5055] = 5055, + [5056] = 1007, + [5057] = 957, + [5058] = 838, + [5059] = 3741, + [5060] = 4878, + [5061] = 4879, [5062] = 5062, - [5063] = 5063, - [5064] = 5064, - [5065] = 4984, - [5066] = 5066, - [5067] = 2944, - [5068] = 4988, - [5069] = 5069, - [5070] = 5070, - [5071] = 979, - [5072] = 5072, - [5073] = 4739, - [5074] = 1404, - [5075] = 4740, - [5076] = 4891, - [5077] = 4901, - [5078] = 4757, - [5079] = 4905, - [5080] = 2777, - [5081] = 4758, - [5082] = 4759, + [5063] = 828, + [5064] = 470, + [5065] = 4906, + [5066] = 125, + [5067] = 5067, + [5068] = 4995, + [5069] = 4705, + [5070] = 2902, + [5071] = 2906, + [5072] = 4753, + [5073] = 2943, + [5074] = 4976, + [5075] = 866, + [5076] = 5076, + [5077] = 2944, + [5078] = 867, + [5079] = 868, + [5080] = 4993, + [5081] = 4995, + [5082] = 5082, [5083] = 5083, - [5084] = 4760, - [5085] = 4761, - [5086] = 4741, - [5087] = 683, - [5088] = 5088, - [5089] = 4742, - [5090] = 4762, - [5091] = 675, - [5092] = 4743, - [5093] = 4937, - [5094] = 3245, - [5095] = 663, - [5096] = 1001, - [5097] = 4745, - [5098] = 4763, - [5099] = 3276, - [5100] = 1007, - [5101] = 4713, - [5102] = 4746, - [5103] = 957, - [5104] = 4714, - [5105] = 917, - [5106] = 918, - [5107] = 4747, - [5108] = 4764, - [5109] = 4942, - [5110] = 4748, - [5111] = 4749, - [5112] = 5112, - [5113] = 4715, - [5114] = 4916, - [5115] = 4717, - [5116] = 1780, - [5117] = 4718, - [5118] = 5118, + [5084] = 873, + [5085] = 4898, + [5086] = 4708, + [5087] = 4925, + [5088] = 4747, + [5089] = 5089, + [5090] = 4823, + [5091] = 4824, + [5092] = 1492, + [5093] = 5020, + [5094] = 2847, + [5095] = 3745, + [5096] = 4827, + [5097] = 5076, + [5098] = 4829, + [5099] = 4831, + [5100] = 465, + [5101] = 4993, + [5102] = 4835, + [5103] = 998, + [5104] = 874, + [5105] = 4839, + [5106] = 4840, + [5107] = 4844, + [5108] = 4847, + [5109] = 1695, + [5110] = 4907, + [5111] = 5076, + [5112] = 4993, + [5113] = 4904, + [5114] = 4908, + [5115] = 4914, + [5116] = 4919, + [5117] = 1780, + [5118] = 984, [5119] = 5119, - [5120] = 5120, - [5121] = 5121, - [5122] = 4719, - [5123] = 4988, - [5124] = 5124, - [5125] = 1781, - [5126] = 984, - [5127] = 5069, - [5128] = 4922, - [5129] = 828, - [5130] = 5130, + [5120] = 4920, + [5121] = 1003, + [5122] = 1004, + [5123] = 1005, + [5124] = 5076, + [5125] = 5125, + [5126] = 4928, + [5127] = 4993, + [5128] = 1006, + [5129] = 5076, + [5130] = 488, [5131] = 5131, - [5132] = 1393, - [5133] = 470, - [5134] = 5134, - [5135] = 5135, - [5136] = 470, - [5137] = 4897, - [5138] = 5069, - [5139] = 5139, - [5140] = 820, - [5141] = 4966, - [5142] = 4799, - [5143] = 5143, - [5144] = 4984, - [5145] = 921, - [5146] = 993, - [5147] = 4967, - [5148] = 4968, - [5149] = 2528, - [5150] = 5150, - [5151] = 2531, - [5152] = 866, - [5153] = 2532, - [5154] = 2533, - [5155] = 824, - [5156] = 5156, - [5157] = 867, - [5158] = 868, - [5159] = 5159, - [5160] = 992, - [5161] = 5161, - [5162] = 4986, - [5163] = 979, - [5164] = 996, - [5165] = 4938, - [5166] = 3262, - [5167] = 5167, - [5168] = 4984, - [5169] = 5169, - [5170] = 3271, - [5171] = 3275, - [5172] = 873, - [5173] = 3749, - [5174] = 5174, - [5175] = 5175, - [5176] = 786, + [5132] = 1781, + [5133] = 876, + [5134] = 877, + [5135] = 889, + [5136] = 891, + [5137] = 5076, + [5138] = 3688, + [5139] = 4959, + [5140] = 4993, + [5141] = 5083, + [5142] = 4922, + [5143] = 992, + [5144] = 5144, + [5145] = 5145, + [5146] = 893, + [5147] = 5076, + [5148] = 3275, + [5149] = 5076, + [5150] = 4993, + [5151] = 960, + [5152] = 4929, + [5153] = 5153, + [5154] = 5154, + [5155] = 894, + [5156] = 895, + [5157] = 5157, + [5158] = 896, + [5159] = 913, + [5160] = 5076, + [5161] = 4975, + [5162] = 4993, + [5163] = 3221, + [5164] = 914, + [5165] = 915, + [5166] = 4709, + [5167] = 916, + [5168] = 4930, + [5169] = 5076, + [5170] = 4713, + [5171] = 4993, + [5172] = 5172, + [5173] = 4717, + [5174] = 4720, + [5175] = 4737, + [5176] = 5176, [5177] = 5177, - [5178] = 4988, - [5179] = 5069, - [5180] = 5180, - [5181] = 4969, - [5182] = 5182, - [5183] = 3688, - [5184] = 4725, - [5185] = 4979, - [5186] = 4728, - [5187] = 4729, - [5188] = 832, - [5189] = 4972, - [5190] = 833, - [5191] = 4730, - [5192] = 4731, - [5193] = 5193, + [5178] = 1404, + [5179] = 5179, + [5180] = 683, + [5181] = 691, + [5182] = 4862, + [5183] = 4865, + [5184] = 675, + [5185] = 2777, + [5186] = 1089, + [5187] = 663, + [5188] = 4771, + [5189] = 3253, + [5190] = 5190, + [5191] = 2928, + [5192] = 5192, + [5193] = 2929, [5194] = 5194, - [5195] = 5018, - [5196] = 5196, - [5197] = 1492, - [5198] = 4935, - [5199] = 4951, - [5200] = 4824, - [5201] = 4818, - [5202] = 3221, - [5203] = 2847, - [5204] = 4826, - [5205] = 5205, - [5206] = 2799, - [5207] = 5207, - [5208] = 4986, - [5209] = 5209, + [5195] = 917, + [5196] = 918, + [5197] = 4757, + [5198] = 2935, + [5199] = 4760, + [5200] = 4803, + [5201] = 5201, + [5202] = 5083, + [5203] = 5203, + [5204] = 4765, + [5205] = 4767, + [5206] = 4769, + [5207] = 4772, + [5208] = 4774, + [5209] = 470, [5210] = 5210, - [5211] = 2896, - [5212] = 998, + [5211] = 5211, + [5212] = 5212, [5213] = 5213, - [5214] = 4887, - [5215] = 5018, - [5216] = 2910, - [5217] = 125, - [5218] = 5218, - [5219] = 5219, - [5220] = 4943, - [5221] = 2912, - [5222] = 4790, + [5214] = 920, + [5215] = 921, + [5216] = 4776, + [5217] = 5076, + [5218] = 2528, + [5219] = 4864, + [5220] = 979, + [5221] = 4949, + [5222] = 5009, [5223] = 5223, - [5224] = 5224, - [5225] = 124, - [5226] = 3741, + [5224] = 2915, + [5225] = 3749, + [5226] = 5226, [5227] = 5227, [5228] = 5228, [5229] = 5229, - [5230] = 4908, + [5230] = 5230, [5231] = 5231, - [5232] = 691, - [5233] = 1783, - [5234] = 842, - [5235] = 4997, - [5236] = 4926, - [5237] = 4754, - [5238] = 4755, - [5239] = 998, - [5240] = 465, - [5241] = 5028, - [5242] = 4984, - [5243] = 2541, - [5244] = 5112, - [5245] = 5245, - [5246] = 975, - [5247] = 5177, - [5248] = 4939, - [5249] = 874, - [5250] = 4919, - [5251] = 2928, - [5252] = 2929, - [5253] = 5253, - [5254] = 4988, - [5255] = 1695, - [5256] = 3253, - [5257] = 2935, - [5258] = 4868, - [5259] = 4921, + [5232] = 4787, + [5233] = 832, + [5234] = 833, + [5235] = 4792, + [5236] = 4794, + [5237] = 4796, + [5238] = 4797, + [5239] = 4993, + [5240] = 4995, + [5241] = 4800, + [5242] = 5242, + [5243] = 5243, + [5244] = 2802, + [5245] = 2799, + [5246] = 4777, + [5247] = 5247, + [5248] = 5248, + [5249] = 998, + [5250] = 3245, + [5251] = 5251, + [5252] = 2896, + [5253] = 2910, + [5254] = 2912, + [5255] = 4726, + [5256] = 5256, + [5257] = 3228, + [5258] = 5258, + [5259] = 5027, [5260] = 5260, [5261] = 5261, - [5262] = 4766, - [5263] = 967, - [5264] = 4911, - [5265] = 5265, - [5266] = 5266, + [5262] = 4739, + [5263] = 5035, + [5264] = 5264, + [5265] = 4996, + [5266] = 5010, [5267] = 5267, - [5268] = 4767, - [5269] = 4819, - [5270] = 489, - [5271] = 5118, - [5272] = 5272, - [5273] = 3745, - [5274] = 4768, - [5275] = 5018, - [5276] = 3228, - [5277] = 997, - [5278] = 787, + [5268] = 5268, + [5269] = 2541, + [5270] = 5270, + [5271] = 2531, + [5272] = 2532, + [5273] = 5273, + [5274] = 2533, + [5275] = 3276, + [5276] = 5083, + [5277] = 996, + [5278] = 675, [5279] = 5279, - [5280] = 488, + [5280] = 5280, [5281] = 5281, [5282] = 5282, [5283] = 5283, - [5284] = 5284, + [5284] = 964, [5285] = 5285, - [5286] = 5281, - [5287] = 5284, - [5288] = 3757, - [5289] = 2587, - [5290] = 5290, + [5286] = 992, + [5287] = 128, + [5288] = 5288, + [5289] = 126, + [5290] = 996, [5291] = 5291, - [5292] = 5292, - [5293] = 1043, + [5292] = 127, + [5293] = 1751, [5294] = 5294, [5295] = 5295, - [5296] = 675, + [5296] = 5296, [5297] = 5297, [5298] = 5298, - [5299] = 3739, - [5300] = 952, - [5301] = 1802, + [5299] = 488, + [5300] = 5300, + [5301] = 5301, [5302] = 5302, [5303] = 5303, - [5304] = 5282, - [5305] = 127, - [5306] = 984, + [5304] = 5304, + [5305] = 5305, + [5306] = 5306, [5307] = 5307, - [5308] = 1743, - [5309] = 1794, + [5308] = 5308, + [5309] = 1755, [5310] = 5310, - [5311] = 5311, - [5312] = 1089, - [5313] = 5313, - [5314] = 5310, - [5315] = 5313, + [5311] = 1728, + [5312] = 5312, + [5313] = 129, + [5314] = 5314, + [5315] = 5315, [5316] = 5316, - [5317] = 5317, - [5318] = 663, - [5319] = 5316, + [5317] = 5314, + [5318] = 5318, + [5319] = 5319, [5320] = 5320, - [5321] = 5317, + [5321] = 5321, [5322] = 5322, [5323] = 5323, - [5324] = 5324, + [5324] = 1043, [5325] = 5325, [5326] = 5326, [5327] = 5327, - [5328] = 128, - [5329] = 126, - [5330] = 129, - [5331] = 985, - [5332] = 967, + [5328] = 5328, + [5329] = 5329, + [5330] = 5330, + [5331] = 5331, + [5332] = 5304, [5333] = 5333, [5334] = 5316, - [5335] = 2014, - [5336] = 5283, - [5337] = 5317, - [5338] = 964, - [5339] = 978, + [5335] = 5335, + [5336] = 5333, + [5337] = 5337, + [5338] = 5338, + [5339] = 3739, [5340] = 5340, - [5341] = 5341, - [5342] = 992, - [5343] = 996, - [5344] = 1751, - [5345] = 838, + [5341] = 5320, + [5342] = 5294, + [5343] = 5283, + [5344] = 5344, + [5345] = 5345, [5346] = 5346, - [5347] = 2588, - [5348] = 5348, - [5349] = 5349, - [5350] = 1755, - [5351] = 1728, - [5352] = 5352, - [5353] = 5353, - [5354] = 5282, - [5355] = 5283, - [5356] = 5356, - [5357] = 5294, + [5347] = 5347, + [5348] = 5330, + [5349] = 5305, + [5350] = 787, + [5351] = 5322, + [5352] = 5321, + [5353] = 5308, + [5354] = 5354, + [5355] = 981, + [5356] = 2696, + [5357] = 5357, [5358] = 5358, - [5359] = 5348, - [5360] = 5323, - [5361] = 5298, - [5362] = 5362, + [5359] = 5359, + [5360] = 5344, + [5361] = 5361, + [5362] = 5227, [5363] = 5363, - [5364] = 5324, + [5364] = 5279, [5365] = 5365, - [5366] = 5325, - [5367] = 5367, - [5368] = 981, - [5369] = 5369, - [5370] = 5327, - [5371] = 5349, + [5366] = 5285, + [5367] = 5288, + [5368] = 1729, + [5369] = 967, + [5370] = 2014, + [5371] = 5371, [5372] = 5372, - [5373] = 5373, - [5374] = 5374, - [5375] = 683, + [5373] = 978, + [5374] = 5305, + [5375] = 987, [5376] = 5376, - [5377] = 5377, - [5378] = 5292, - [5379] = 5374, - [5380] = 5380, - [5381] = 5295, - [5382] = 5380, - [5383] = 5297, - [5384] = 5384, - [5385] = 2696, - [5386] = 5386, - [5387] = 5302, - [5388] = 5388, - [5389] = 3809, - [5390] = 5228, - [5391] = 5391, - [5392] = 5348, - [5393] = 5393, - [5394] = 5349, - [5395] = 1729, - [5396] = 5391, - [5397] = 5397, - [5398] = 5398, - [5399] = 5399, - [5400] = 5397, - [5401] = 987, - [5402] = 5402, - [5403] = 5384, - [5404] = 5340, - [5405] = 5405, - [5406] = 5341, - [5407] = 5407, + [5377] = 952, + [5378] = 5378, + [5379] = 5291, + [5380] = 5307, + [5381] = 5310, + [5382] = 5328, + [5383] = 3809, + [5384] = 5329, + [5385] = 1802, + [5386] = 5298, + [5387] = 5305, + [5388] = 5310, + [5389] = 5281, + [5390] = 5326, + [5391] = 5282, + [5392] = 5283, + [5393] = 984, + [5394] = 5394, + [5395] = 5395, + [5396] = 1743, + [5397] = 5308, + [5398] = 5281, + [5399] = 5328, + [5400] = 1794, + [5401] = 997, + [5402] = 5344, + [5403] = 5312, + [5404] = 5404, + [5405] = 3757, + [5406] = 1089, + [5407] = 5296, [5408] = 5408, - [5409] = 970, - [5410] = 5410, - [5411] = 5411, + [5409] = 5409, + [5410] = 5321, + [5411] = 663, [5412] = 5282, - [5413] = 5283, + [5413] = 5300, [5414] = 5414, - [5415] = 5310, - [5416] = 5313, - [5417] = 5316, - [5418] = 5317, - [5419] = 5384, - [5420] = 5348, - [5421] = 5349, - [5422] = 977, - [5423] = 5380, + [5415] = 5283, + [5416] = 5416, + [5417] = 5417, + [5418] = 5329, + [5419] = 5419, + [5420] = 5420, + [5421] = 5302, + [5422] = 5346, + [5423] = 5344, [5424] = 5424, - [5425] = 5425, - [5426] = 5426, - [5427] = 5427, - [5428] = 5428, - [5429] = 5307, - [5430] = 5352, - [5431] = 5431, - [5432] = 5432, - [5433] = 983, + [5425] = 5354, + [5426] = 5308, + [5427] = 5361, + [5428] = 2587, + [5429] = 5344, + [5430] = 5310, + [5431] = 5338, + [5432] = 970, + [5433] = 838, [5434] = 5434, - [5435] = 5405, - [5436] = 5384, - [5437] = 5407, - [5438] = 5384, - [5439] = 5365, - [5440] = 5367, - [5441] = 489, + [5435] = 5327, + [5436] = 983, + [5437] = 5306, + [5438] = 5331, + [5439] = 3837, + [5440] = 489, + [5441] = 985, [5442] = 5442, - [5443] = 5310, - [5444] = 5333, - [5445] = 5372, - [5446] = 5313, - [5447] = 5291, - [5448] = 3837, - [5449] = 5442, - [5450] = 5450, + [5443] = 977, + [5444] = 5363, + [5445] = 5281, + [5446] = 683, + [5447] = 2588, + [5448] = 5282, + [5449] = 5328, + [5450] = 5329, [5451] = 5451, [5452] = 5452, [5453] = 5453, [5454] = 5454, - [5455] = 5455, + [5455] = 5454, [5456] = 5456, [5457] = 5457, [5458] = 5458, [5459] = 5459, [5460] = 5460, - [5461] = 5461, - [5462] = 5450, - [5463] = 5463, + [5461] = 5459, + [5462] = 5462, + [5463] = 5453, [5464] = 5464, [5465] = 5465, [5466] = 5466, [5467] = 5467, - [5468] = 5461, - [5469] = 5469, - [5470] = 5450, - [5471] = 5450, + [5468] = 5464, + [5469] = 5457, + [5470] = 5470, + [5471] = 5471, [5472] = 5472, [5473] = 5473, - [5474] = 5474, - [5475] = 5451, - [5476] = 5452, - [5477] = 5477, - [5478] = 5478, - [5479] = 5455, - [5480] = 5456, - [5481] = 5481, - [5482] = 5456, - [5483] = 5459, - [5484] = 5456, + [5474] = 683, + [5475] = 5475, + [5476] = 5456, + [5477] = 5453, + [5478] = 5454, + [5479] = 5458, + [5480] = 5454, + [5481] = 5457, + [5482] = 5458, + [5483] = 5483, + [5484] = 5484, [5485] = 5485, - [5486] = 5464, + [5486] = 5452, [5487] = 5487, - [5488] = 5473, + [5488] = 5466, [5489] = 5489, - [5490] = 5450, + [5490] = 5490, [5491] = 5491, - [5492] = 5492, - [5493] = 5474, - [5494] = 5451, - [5495] = 5452, - [5496] = 5456, - [5497] = 5474, - [5498] = 5451, + [5492] = 5472, + [5493] = 5493, + [5494] = 5470, + [5495] = 5456, + [5496] = 5453, + [5497] = 5454, + [5498] = 5458, [5499] = 5499, - [5500] = 5460, - [5501] = 5464, - [5502] = 5474, - [5503] = 5452, + [5500] = 5470, + [5501] = 5458, + [5502] = 5472, + [5503] = 5466, [5504] = 5504, - [5505] = 5505, - [5506] = 5506, - [5507] = 5474, - [5508] = 5451, - [5509] = 5452, - [5510] = 5456, - [5511] = 5451, - [5512] = 5453, - [5513] = 5513, - [5514] = 5453, - [5515] = 5464, - [5516] = 5516, - [5517] = 5517, - [5518] = 5518, - [5519] = 5455, - [5520] = 5451, - [5521] = 5474, - [5522] = 5451, - [5523] = 5452, - [5524] = 5456, - [5525] = 5452, - [5526] = 5513, - [5527] = 5464, - [5528] = 5464, - [5529] = 5505, - [5530] = 5530, + [5505] = 5466, + [5506] = 675, + [5507] = 5472, + [5508] = 5508, + [5509] = 5456, + [5510] = 5453, + [5511] = 5454, + [5512] = 5458, + [5513] = 5460, + [5514] = 5514, + [5515] = 5515, + [5516] = 5465, + [5517] = 5466, + [5518] = 5489, + [5519] = 663, + [5520] = 5520, + [5521] = 5470, + [5522] = 5522, + [5523] = 5456, + [5524] = 5453, + [5525] = 5454, + [5526] = 5458, + [5527] = 5472, + [5528] = 5456, + [5529] = 5508, + [5530] = 5466, [5531] = 5531, - [5532] = 5474, - [5533] = 5451, - [5534] = 5452, - [5535] = 5456, - [5536] = 838, - [5537] = 5517, - [5538] = 5464, - [5539] = 5460, - [5540] = 5478, - [5541] = 5541, - [5542] = 5474, - [5543] = 5451, - [5544] = 5452, - [5545] = 5456, - [5546] = 5461, - [5547] = 5452, - [5548] = 5464, - [5549] = 5549, - [5550] = 5550, - [5551] = 5456, - [5552] = 5474, - [5553] = 5451, - [5554] = 5452, - [5555] = 5456, - [5556] = 5556, - [5557] = 5557, - [5558] = 5464, + [5532] = 5453, + [5533] = 5454, + [5534] = 5456, + [5535] = 5453, + [5536] = 5454, + [5537] = 5458, + [5538] = 5489, + [5539] = 5508, + [5540] = 5466, + [5541] = 5485, + [5542] = 5456, + [5543] = 5453, + [5544] = 5456, + [5545] = 5453, + [5546] = 5454, + [5547] = 5458, + [5548] = 5457, + [5549] = 5490, + [5550] = 5466, + [5551] = 5454, + [5552] = 5552, + [5553] = 5553, + [5554] = 5456, + [5555] = 5453, + [5556] = 5454, + [5557] = 5458, + [5558] = 5459, [5559] = 5559, - [5560] = 5560, - [5561] = 5561, - [5562] = 5474, - [5563] = 5451, - [5564] = 5452, - [5565] = 5456, - [5566] = 5566, - [5567] = 5478, - [5568] = 5464, - [5569] = 5450, - [5570] = 681, - [5571] = 5474, - [5572] = 5451, - [5573] = 5452, - [5574] = 5461, - [5575] = 5575, - [5576] = 5464, - [5577] = 5477, - [5578] = 5474, - [5579] = 5451, - [5580] = 5452, - [5581] = 5557, - [5582] = 5450, - [5583] = 5464, - [5584] = 675, - [5585] = 5474, - [5586] = 5451, - [5587] = 5452, - [5588] = 5588, - [5589] = 5589, - [5590] = 5464, - [5591] = 5591, - [5592] = 5474, - [5593] = 5451, - [5594] = 5452, - [5595] = 5561, - [5596] = 5464, - [5597] = 5464, - [5598] = 5474, - [5599] = 5451, - [5600] = 5452, - [5601] = 5601, - [5602] = 5464, - [5603] = 5603, - [5604] = 5474, - [5605] = 5451, - [5606] = 5452, - [5607] = 5459, - [5608] = 5464, - [5609] = 5491, - [5610] = 5474, - [5611] = 5451, - [5612] = 5452, - [5613] = 5477, - [5614] = 5464, - [5615] = 5474, - [5616] = 5451, - [5617] = 5452, - [5618] = 5461, - [5619] = 5464, - [5620] = 5474, - [5621] = 5451, - [5622] = 5452, - [5623] = 5557, - [5624] = 5464, - [5625] = 5474, - [5626] = 5451, - [5627] = 5452, - [5628] = 5459, - [5629] = 5464, - [5630] = 5474, - [5631] = 5451, - [5632] = 5452, - [5633] = 5633, - [5634] = 5464, - [5635] = 5474, - [5636] = 5451, - [5637] = 5452, - [5638] = 5461, - [5639] = 5464, - [5640] = 5474, - [5641] = 5451, - [5642] = 5452, - [5643] = 5643, - [5644] = 5644, - [5645] = 5645, - [5646] = 5474, + [5560] = 5466, + [5561] = 5459, + [5562] = 5457, + [5563] = 5471, + [5564] = 5456, + [5565] = 5453, + [5566] = 5454, + [5567] = 5458, + [5568] = 5568, + [5569] = 5569, + [5570] = 5466, + [5571] = 5475, + [5572] = 5572, + [5573] = 5456, + [5574] = 5453, + [5575] = 5454, + [5576] = 5458, + [5577] = 5466, + [5578] = 5466, + [5579] = 5579, + [5580] = 5456, + [5581] = 5453, + [5582] = 5454, + [5583] = 5484, + [5584] = 5584, + [5585] = 5466, + [5586] = 681, + [5587] = 5456, + [5588] = 5453, + [5589] = 5454, + [5590] = 5485, + [5591] = 5499, + [5592] = 5466, + [5593] = 5487, + [5594] = 5456, + [5595] = 5453, + [5596] = 5454, + [5597] = 5569, + [5598] = 5466, + [5599] = 5460, + [5600] = 5456, + [5601] = 5453, + [5602] = 5454, + [5603] = 5490, + [5604] = 5466, + [5605] = 5464, + [5606] = 5456, + [5607] = 5453, + [5608] = 5454, + [5609] = 5487, + [5610] = 5466, + [5611] = 5457, + [5612] = 5456, + [5613] = 5453, + [5614] = 5454, + [5615] = 5471, + [5616] = 5466, + [5617] = 5456, + [5618] = 5453, + [5619] = 5454, + [5620] = 5572, + [5621] = 5466, + [5622] = 5456, + [5623] = 5453, + [5624] = 5454, + [5625] = 5475, + [5626] = 5466, + [5627] = 5456, + [5628] = 5453, + [5629] = 5454, + [5630] = 5458, + [5631] = 5466, + [5632] = 5456, + [5633] = 5453, + [5634] = 5454, + [5635] = 5499, + [5636] = 5466, + [5637] = 5456, + [5638] = 5453, + [5639] = 5454, + [5640] = 5462, + [5641] = 5466, + [5642] = 5456, + [5643] = 5453, + [5644] = 5454, + [5645] = 5467, + [5646] = 5466, [5647] = 5647, - [5648] = 5458, - [5649] = 5467, - [5650] = 5451, - [5651] = 5452, + [5648] = 5460, + [5649] = 5649, + [5650] = 5452, + [5651] = 5491, [5652] = 5652, - [5653] = 5653, - [5654] = 5518, - [5655] = 5457, - [5656] = 5453, - [5657] = 5657, - [5658] = 5644, - [5659] = 5659, - [5660] = 5517, - [5661] = 5461, - [5662] = 5633, - [5663] = 5450, - [5664] = 5560, - [5665] = 5461, - [5666] = 5666, - [5667] = 5491, - [5668] = 5556, - [5669] = 5455, - [5670] = 681, + [5653] = 5460, + [5654] = 5470, + [5655] = 5470, + [5656] = 5484, + [5657] = 5464, + [5658] = 5658, + [5659] = 5472, + [5660] = 5658, + [5661] = 5661, + [5662] = 5662, + [5663] = 5470, + [5664] = 5664, + [5665] = 5472, + [5666] = 5508, + [5667] = 5472, + [5668] = 5668, + [5669] = 838, + [5670] = 5670, [5671] = 5671, - [5672] = 5672, - [5673] = 5477, - [5674] = 5506, - [5675] = 5474, - [5676] = 673, - [5677] = 5499, - [5678] = 5459, - [5679] = 5473, - [5680] = 5516, - [5681] = 5459, - [5682] = 5559, - [5683] = 5647, - [5684] = 5643, - [5685] = 5478, - [5686] = 5686, - [5687] = 5687, + [5672] = 5489, + [5673] = 5508, + [5674] = 5671, + [5675] = 5471, + [5676] = 5456, + [5677] = 5489, + [5678] = 5453, + [5679] = 5454, + [5680] = 5487, + [5681] = 5456, + [5682] = 5453, + [5683] = 5454, + [5684] = 5684, + [5685] = 5453, + [5686] = 673, + [5687] = 5454, [5688] = 5459, - [5689] = 5689, - [5690] = 5474, + [5689] = 5459, + [5690] = 5489, [5691] = 5691, - [5692] = 5451, - [5693] = 5452, - [5694] = 5694, - [5695] = 5451, - [5696] = 5591, - [5697] = 5560, - [5698] = 5455, - [5699] = 5489, - [5700] = 5455, - [5701] = 5464, - [5702] = 5702, - [5703] = 5541, - [5704] = 5505, - [5705] = 5463, - [5706] = 5477, - [5707] = 5465, - [5708] = 5549, - [5709] = 5588, - [5710] = 5710, - [5711] = 5456, - [5712] = 5460, - [5713] = 5713, - [5714] = 5452, - [5715] = 5478, - [5716] = 5566, - [5717] = 5556, - [5718] = 3253, - [5719] = 5541, - [5720] = 5720, - [5721] = 5721, - [5722] = 3276, - [5723] = 5561, - [5724] = 5461, - [5725] = 681, - [5726] = 5549, - [5727] = 5450, + [5692] = 5569, + [5693] = 5693, + [5694] = 5652, + [5695] = 5484, + [5696] = 5696, + [5697] = 5485, + [5698] = 5489, + [5699] = 5699, + [5700] = 5457, + [5701] = 5701, + [5702] = 5464, + [5703] = 5473, + [5704] = 5704, + [5705] = 5457, + [5706] = 5457, + [5707] = 5471, + [5708] = 5708, + [5709] = 5475, + [5710] = 5487, + [5711] = 5711, + [5712] = 5712, + [5713] = 5458, + [5714] = 5696, + [5715] = 5484, + [5716] = 681, + [5717] = 3276, + [5718] = 5487, + [5719] = 5708, + [5720] = 5569, + [5721] = 5515, + [5722] = 5515, + [5723] = 5475, + [5724] = 5724, + [5725] = 5725, + [5726] = 5726, + [5727] = 5459, [5728] = 5728, - [5729] = 5453, - [5730] = 5477, - [5731] = 5731, - [5732] = 5455, - [5733] = 5393, - [5734] = 5456, - [5735] = 5459, - [5736] = 5702, - [5737] = 5513, - [5738] = 5474, - [5739] = 5451, - [5740] = 5452, - [5741] = 5541, - [5742] = 5464, - [5743] = 5464, - [5744] = 5557, - [5745] = 5453, - [5746] = 5478, - [5747] = 5689, - [5748] = 5633, - [5749] = 5560, - [5750] = 5750, - [5751] = 5491, - [5752] = 5455, - [5753] = 979, - [5754] = 5541, - [5755] = 5549, - [5756] = 5756, - [5757] = 5756, - [5758] = 5549, - [5759] = 5659, - [5760] = 5456, - [5761] = 5506, - [5762] = 5461, - [5763] = 5763, - [5764] = 5557, - [5765] = 5455, - [5766] = 5633, + [5729] = 5699, + [5730] = 5473, + [5731] = 5466, + [5732] = 5732, + [5733] = 681, + [5734] = 5514, + [5735] = 5520, + [5736] = 5736, + [5737] = 5737, + [5738] = 3253, + [5739] = 5739, + [5740] = 5471, + [5741] = 5470, + [5742] = 5742, + [5743] = 5472, + [5744] = 5395, + [5745] = 5671, + [5746] = 5508, + [5747] = 5699, + [5748] = 5553, + [5749] = 5489, + [5750] = 5475, + [5751] = 5751, + [5752] = 5490, + [5753] = 5753, + [5754] = 5456, + [5755] = 5453, + [5756] = 5458, + [5757] = 5454, + [5758] = 5520, + [5759] = 979, + [5760] = 5739, + [5761] = 5484, + [5762] = 5490, + [5763] = 5664, + [5764] = 5457, + [5765] = 5471, + [5766] = 5584, [5767] = 5691, - [5768] = 5456, + [5768] = 5475, [5769] = 5769, - [5770] = 5450, - [5771] = 3245, - [5772] = 5772, - [5773] = 5478, - [5774] = 5457, - [5775] = 5477, - [5776] = 663, - [5777] = 5557, - [5778] = 5459, - [5779] = 5463, - [5780] = 5465, - [5781] = 5474, - [5782] = 5461, - [5783] = 5487, - [5784] = 5459, - [5785] = 5455, - [5786] = 5450, - [5787] = 5473, - [5788] = 5451, - [5789] = 5452, - [5790] = 5710, - [5791] = 5459, - [5792] = 5455, - [5793] = 5793, - [5794] = 5461, - [5795] = 5643, - [5796] = 5647, - [5797] = 5458, - [5798] = 5467, - [5799] = 998, + [5770] = 5458, + [5771] = 5661, + [5772] = 5664, + [5773] = 5458, + [5774] = 5774, + [5775] = 5487, + [5776] = 5776, + [5777] = 5460, + [5778] = 5457, + [5779] = 5779, + [5780] = 5552, + [5781] = 5781, + [5782] = 5456, + [5783] = 5470, + [5784] = 5732, + [5785] = 5489, + [5786] = 5457, + [5787] = 5472, + [5788] = 5466, + [5789] = 5466, + [5790] = 3245, + [5791] = 5466, + [5792] = 5489, + [5793] = 5457, + [5794] = 5769, + [5795] = 5470, + [5796] = 5467, + [5797] = 5649, + [5798] = 5452, + [5799] = 5491, [5800] = 5800, - [5801] = 5801, - [5802] = 5478, - [5803] = 5689, + [5801] = 5470, + [5802] = 5483, + [5803] = 5508, [5804] = 5691, - [5805] = 5455, - [5806] = 673, - [5807] = 5807, - [5808] = 5541, - [5809] = 5566, - [5810] = 3228, - [5811] = 5549, - [5812] = 5812, - [5813] = 5456, - [5814] = 5561, - [5815] = 5652, - [5816] = 5816, - [5817] = 5473, - [5818] = 5472, + [5805] = 5693, + [5806] = 5701, + [5807] = 998, + [5808] = 5726, + [5809] = 5490, + [5810] = 5470, + [5811] = 5460, + [5812] = 5472, + [5813] = 673, + [5814] = 5814, + [5815] = 5815, + [5816] = 5472, + [5817] = 5508, + [5818] = 3228, [5819] = 5819, - [5820] = 5455, - [5821] = 5478, - [5822] = 5473, - [5823] = 5823, - [5824] = 3221, - [5825] = 5541, - [5826] = 673, - [5827] = 5763, - [5828] = 5828, - [5829] = 5464, - [5830] = 5541, - [5831] = 5643, - [5832] = 5647, - [5833] = 5458, - [5834] = 5467, - [5835] = 5464, - [5836] = 5691, - [5837] = 5837, - [5838] = 5460, - [5839] = 5731, - [5840] = 5473, - [5841] = 5477, - [5842] = 5842, - [5843] = 5643, - [5844] = 5647, - [5845] = 5458, - [5846] = 5467, - [5847] = 5643, - [5848] = 5647, - [5849] = 5458, - [5850] = 5467, - [5851] = 5643, - [5852] = 5647, - [5853] = 5458, - [5854] = 5467, - [5855] = 5643, - [5856] = 5647, - [5857] = 5458, - [5858] = 5467, - [5859] = 5643, - [5860] = 5647, - [5861] = 5458, - [5862] = 5467, - [5863] = 5643, - [5864] = 5647, - [5865] = 5458, - [5866] = 5467, - [5867] = 5643, - [5868] = 5647, - [5869] = 5458, - [5870] = 5467, - [5871] = 5643, - [5872] = 5458, - [5873] = 5467, - [5874] = 5643, - [5875] = 5458, - [5876] = 5467, - [5877] = 5643, - [5878] = 5458, - [5879] = 5467, - [5880] = 5643, - [5881] = 5458, - [5882] = 5467, - [5883] = 5643, - [5884] = 5458, - [5885] = 5467, - [5886] = 5643, - [5887] = 5458, - [5888] = 5467, - [5889] = 5643, - [5890] = 5458, - [5891] = 5467, - [5892] = 5643, - [5893] = 5458, - [5894] = 5467, - [5895] = 5643, - [5896] = 5458, - [5897] = 5467, - [5898] = 5643, - [5899] = 5458, - [5900] = 5467, - [5901] = 5643, - [5902] = 5458, - [5903] = 5467, - [5904] = 5643, - [5905] = 5458, - [5906] = 5467, - [5907] = 5643, - [5908] = 5458, - [5909] = 5467, - [5910] = 5643, - [5911] = 5458, - [5912] = 5467, - [5913] = 5643, - [5914] = 5458, - [5915] = 5467, - [5916] = 5643, - [5917] = 5458, - [5918] = 5467, - [5919] = 5643, - [5920] = 5458, - [5921] = 5467, - [5922] = 5643, - [5923] = 5458, - [5924] = 5467, - [5925] = 5643, - [5926] = 5458, - [5927] = 5467, - [5928] = 5643, - [5929] = 5458, - [5930] = 5467, - [5931] = 5728, - [5932] = 5464, - [5933] = 5823, - [5934] = 5549, + [5820] = 5820, + [5821] = 5711, + [5822] = 5489, + [5823] = 5820, + [5824] = 5824, + [5825] = 5825, + [5826] = 5456, + [5827] = 5693, + [5828] = 5712, + [5829] = 5499, + [5830] = 5453, + [5831] = 5454, + [5832] = 5467, + [5833] = 5649, + [5834] = 5452, + [5835] = 5491, + [5836] = 5664, + [5837] = 5693, + [5838] = 5838, + [5839] = 5457, + [5840] = 5471, + [5841] = 5484, + [5842] = 5499, + [5843] = 5475, + [5844] = 5467, + [5845] = 5649, + [5846] = 5452, + [5847] = 5491, + [5848] = 5467, + [5849] = 5649, + [5850] = 5452, + [5851] = 5491, + [5852] = 5467, + [5853] = 5649, + [5854] = 5452, + [5855] = 5491, + [5856] = 5467, + [5857] = 5649, + [5858] = 5452, + [5859] = 5491, + [5860] = 5467, + [5861] = 5649, + [5862] = 5452, + [5863] = 5491, + [5864] = 5467, + [5865] = 5649, + [5866] = 5452, + [5867] = 5491, + [5868] = 5467, + [5869] = 5649, + [5870] = 5452, + [5871] = 5491, + [5872] = 5467, + [5873] = 5452, + [5874] = 5491, + [5875] = 5467, + [5876] = 5452, + [5877] = 5491, + [5878] = 5467, + [5879] = 5452, + [5880] = 5491, + [5881] = 5467, + [5882] = 5452, + [5883] = 5491, + [5884] = 5467, + [5885] = 5452, + [5886] = 5491, + [5887] = 5467, + [5888] = 5452, + [5889] = 5491, + [5890] = 5467, + [5891] = 5452, + [5892] = 5491, + [5893] = 5467, + [5894] = 5452, + [5895] = 5491, + [5896] = 5467, + [5897] = 5452, + [5898] = 5491, + [5899] = 5467, + [5900] = 5452, + [5901] = 5491, + [5902] = 5467, + [5903] = 5452, + [5904] = 5491, + [5905] = 5467, + [5906] = 5452, + [5907] = 5491, + [5908] = 5467, + [5909] = 5452, + [5910] = 5491, + [5911] = 5467, + [5912] = 5458, + [5913] = 5491, + [5914] = 5467, + [5915] = 5452, + [5916] = 5491, + [5917] = 5467, + [5918] = 5452, + [5919] = 5491, + [5920] = 5467, + [5921] = 5452, + [5922] = 5491, + [5923] = 5467, + [5924] = 5452, + [5925] = 5491, + [5926] = 5467, + [5927] = 5452, + [5928] = 5491, + [5929] = 5467, + [5930] = 5452, + [5931] = 5491, + [5932] = 5490, + [5933] = 5470, + [5934] = 5934, [5935] = 5935, - [5936] = 5687, - [5937] = 5657, - [5938] = 5561, - [5939] = 5461, - [5940] = 5549, - [5941] = 5450, - [5942] = 5461, - [5943] = 5477, - [5944] = 5450, - [5945] = 5464, - [5946] = 5459, - [5947] = 5769, - [5948] = 5474, - [5949] = 5474, - [5950] = 5451, - [5951] = 5481, - [5952] = 5452, - [5953] = 5460, - [5954] = 5828, - [5955] = 5453, - [5956] = 5464, - [5957] = 683, - [5958] = 5474, - [5959] = 5481, - [5960] = 5491, - [5961] = 5455, - [5962] = 5541, - [5963] = 3275, - [5964] = 5549, - [5965] = 5505, + [5936] = 5487, + [5937] = 5824, + [5938] = 5725, + [5939] = 5708, + [5940] = 673, + [5941] = 5941, + [5942] = 5472, + [5943] = 5943, + [5944] = 5466, + [5945] = 3275, + [5946] = 5946, + [5947] = 5508, + [5948] = 5948, + [5949] = 5949, + [5950] = 5466, + [5951] = 5584, + [5952] = 5952, + [5953] = 5779, + [5954] = 5489, + [5955] = 5470, + [5956] = 5514, + [5957] = 5649, + [5958] = 5934, + [5959] = 5471, + [5960] = 3221, + [5961] = 5779, + [5962] = 5472, + [5963] = 5704, + [5964] = 5487, + [5965] = 5466, [5966] = 5456, - [5967] = 5450, - [5968] = 5557, - [5969] = 5460, - [5970] = 5812, - [5971] = 5517, - [5972] = 5972, + [5967] = 5493, + [5968] = 5453, + [5969] = 5584, + [5970] = 5475, + [5971] = 5949, + [5972] = 5456, + [5973] = 5973, + [5974] = 5974, }; static const TSCharacterRange aux_sym_cmd_identifier_token1_character_set_1[] = { @@ -16269,7 +16272,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 1767, 'I', 910, 'N', 905, - '[', 1987, + '[', 1753, ']', 1754, '_', 829, '`', 2019, @@ -16967,7 +16970,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'N', 905, 'P', 827, 'T', 827, - '[', 1753, + '[', 1987, ']', 1754, '_', 832, '`', 2019, @@ -45484,1572 +45487,1574 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [4404] = {.lex_state = 92}, [4405] = {.lex_state = 54}, [4406] = {.lex_state = 407}, - [4407] = {.lex_state = 39}, - [4408] = {.lex_state = 39}, - [4409] = {.lex_state = 392}, - [4410] = {.lex_state = 295}, - [4411] = {.lex_state = 0}, - [4412] = {.lex_state = 754}, - [4413] = {.lex_state = 0}, - [4414] = {.lex_state = 0}, - [4415] = {.lex_state = 0}, - [4416] = {.lex_state = 123}, - [4417] = {.lex_state = 754}, - [4418] = {.lex_state = 123}, - [4419] = {.lex_state = 123}, - [4420] = {.lex_state = 741}, - [4421] = {.lex_state = 741}, + [4407] = {.lex_state = 2444}, + [4408] = {.lex_state = 2444}, + [4409] = {.lex_state = 370}, + [4410] = {.lex_state = 381}, + [4411] = {.lex_state = 39}, + [4412] = {.lex_state = 39}, + [4413] = {.lex_state = 392}, + [4414] = {.lex_state = 295}, + [4415] = {.lex_state = 754}, + [4416] = {.lex_state = 0}, + [4417] = {.lex_state = 0}, + [4418] = {.lex_state = 0}, + [4419] = {.lex_state = 0}, + [4420] = {.lex_state = 754}, + [4421] = {.lex_state = 123}, [4422] = {.lex_state = 123}, - [4423] = {.lex_state = 123}, - [4424] = {.lex_state = 123}, - [4425] = {.lex_state = 773}, - [4426] = {.lex_state = 754}, - [4427] = {.lex_state = 312}, - [4428] = {.lex_state = 90}, + [4423] = {.lex_state = 741}, + [4424] = {.lex_state = 741}, + [4425] = {.lex_state = 123}, + [4426] = {.lex_state = 123}, + [4427] = {.lex_state = 123}, + [4428] = {.lex_state = 773}, [4429] = {.lex_state = 754}, - [4430] = {.lex_state = 754}, - [4431] = {.lex_state = 754}, - [4432] = {.lex_state = 90}, - [4433] = {.lex_state = 380}, - [4434] = {.lex_state = 39}, - [4435] = {.lex_state = 39}, - [4436] = {.lex_state = 295}, - [4437] = {.lex_state = 367}, - [4438] = {.lex_state = 367}, - [4439] = {.lex_state = 0}, - [4440] = {.lex_state = 0}, - [4441] = {.lex_state = 0}, - [4442] = {.lex_state = 330}, - [4443] = {.lex_state = 372}, - [4444] = {.lex_state = 374}, - [4445] = {.lex_state = 691}, - [4446] = {.lex_state = 691}, - [4447] = {.lex_state = 39}, - [4448] = {.lex_state = 407}, - [4449] = {.lex_state = 124}, - [4450] = {.lex_state = 381}, - [4451] = {.lex_state = 123}, - [4452] = {.lex_state = 407}, - [4453] = {.lex_state = 39}, - [4454] = {.lex_state = 39}, - [4455] = {.lex_state = 295}, - [4456] = {.lex_state = 333}, + [4430] = {.lex_state = 312}, + [4431] = {.lex_state = 90}, + [4432] = {.lex_state = 754}, + [4433] = {.lex_state = 754}, + [4434] = {.lex_state = 754}, + [4435] = {.lex_state = 90}, + [4436] = {.lex_state = 380}, + [4437] = {.lex_state = 39}, + [4438] = {.lex_state = 39}, + [4439] = {.lex_state = 295}, + [4440] = {.lex_state = 367}, + [4441] = {.lex_state = 367}, + [4442] = {.lex_state = 0}, + [4443] = {.lex_state = 0}, + [4444] = {.lex_state = 0}, + [4445] = {.lex_state = 330}, + [4446] = {.lex_state = 374}, + [4447] = {.lex_state = 372}, + [4448] = {.lex_state = 691}, + [4449] = {.lex_state = 691}, + [4450] = {.lex_state = 39}, + [4451] = {.lex_state = 407}, + [4452] = {.lex_state = 381}, + [4453] = {.lex_state = 124}, + [4454] = {.lex_state = 123}, + [4455] = {.lex_state = 407}, + [4456] = {.lex_state = 295}, [4457] = {.lex_state = 2444}, [4458] = {.lex_state = 2444}, - [4459] = {.lex_state = 407}, - [4460] = {.lex_state = 123}, - [4461] = {.lex_state = 295}, - [4462] = {.lex_state = 124}, - [4463] = {.lex_state = 0}, - [4464] = {.lex_state = 0}, - [4465] = {.lex_state = 0}, + [4459] = {.lex_state = 333}, + [4460] = {.lex_state = 39}, + [4461] = {.lex_state = 39}, + [4462] = {.lex_state = 407}, + [4463] = {.lex_state = 123}, + [4464] = {.lex_state = 295}, + [4465] = {.lex_state = 124}, [4466] = {.lex_state = 0}, - [4467] = {.lex_state = 316}, - [4468] = {.lex_state = 39}, - [4469] = {.lex_state = 124}, - [4470] = {.lex_state = 312}, - [4471] = {.lex_state = 407}, - [4472] = {.lex_state = 407}, - [4473] = {.lex_state = 690}, - [4474] = {.lex_state = 2444}, - [4475] = {.lex_state = 2444}, - [4476] = {.lex_state = 370}, - [4477] = {.lex_state = 317}, - [4478] = {.lex_state = 384}, - [4479] = {.lex_state = 384}, - [4480] = {.lex_state = 295}, + [4467] = {.lex_state = 0}, + [4468] = {.lex_state = 0}, + [4469] = {.lex_state = 0}, + [4470] = {.lex_state = 316}, + [4471] = {.lex_state = 39}, + [4472] = {.lex_state = 124}, + [4473] = {.lex_state = 312}, + [4474] = {.lex_state = 407}, + [4475] = {.lex_state = 407}, + [4476] = {.lex_state = 690}, + [4477] = {.lex_state = 2444}, + [4478] = {.lex_state = 2444}, + [4479] = {.lex_state = 317}, + [4480] = {.lex_state = 370}, [4481] = {.lex_state = 384}, - [4482] = {.lex_state = 312}, - [4483] = {.lex_state = 407}, + [4482] = {.lex_state = 384}, + [4483] = {.lex_state = 384}, [4484] = {.lex_state = 295}, - [4485] = {.lex_state = 2444}, - [4486] = {.lex_state = 2444}, - [4487] = {.lex_state = 312}, - [4488] = {.lex_state = 312}, - [4489] = {.lex_state = 312}, - [4490] = {.lex_state = 295}, - [4491] = {.lex_state = 2444}, - [4492] = {.lex_state = 380}, - [4493] = {.lex_state = 385}, - [4494] = {.lex_state = 0}, - [4495] = {.lex_state = 39}, - [4496] = {.lex_state = 295}, + [4485] = {.lex_state = 312}, + [4486] = {.lex_state = 407}, + [4487] = {.lex_state = 295}, + [4488] = {.lex_state = 2444}, + [4489] = {.lex_state = 2444}, + [4490] = {.lex_state = 312}, + [4491] = {.lex_state = 312}, + [4492] = {.lex_state = 295}, + [4493] = {.lex_state = 312}, + [4494] = {.lex_state = 385}, + [4495] = {.lex_state = 295}, + [4496] = {.lex_state = 380}, [4497] = {.lex_state = 2444}, [4498] = {.lex_state = 2444}, - [4499] = {.lex_state = 295}, - [4500] = {.lex_state = 295}, - [4501] = {.lex_state = 2444}, - [4502] = {.lex_state = 2444}, - [4503] = {.lex_state = 295}, - [4504] = {.lex_state = 295}, - [4505] = {.lex_state = 312}, + [4499] = {.lex_state = 0}, + [4500] = {.lex_state = 39}, + [4501] = {.lex_state = 295}, + [4502] = {.lex_state = 295}, + [4503] = {.lex_state = 2444}, + [4504] = {.lex_state = 2444}, + [4505] = {.lex_state = 295}, [4506] = {.lex_state = 295}, [4507] = {.lex_state = 295}, - [4508] = {.lex_state = 295}, + [4508] = {.lex_state = 312}, [4509] = {.lex_state = 295}, [4510] = {.lex_state = 295}, [4511] = {.lex_state = 295}, [4512] = {.lex_state = 295}, [4513] = {.lex_state = 295}, [4514] = {.lex_state = 295}, - [4515] = {.lex_state = 367}, - [4516] = {.lex_state = 367}, + [4515] = {.lex_state = 295}, + [4516] = {.lex_state = 295}, [4517] = {.lex_state = 367}, - [4518] = {.lex_state = 124}, - [4519] = {.lex_state = 99}, - [4520] = {.lex_state = 353}, - [4521] = {.lex_state = 2559}, - [4522] = {.lex_state = 2559}, - [4523] = {.lex_state = 384}, - [4524] = {.lex_state = 344}, - [4525] = {.lex_state = 407}, - [4526] = {.lex_state = 39}, - [4527] = {.lex_state = 312}, - [4528] = {.lex_state = 124}, + [4518] = {.lex_state = 367}, + [4519] = {.lex_state = 367}, + [4520] = {.lex_state = 124}, + [4521] = {.lex_state = 99}, + [4522] = {.lex_state = 353}, + [4523] = {.lex_state = 2559}, + [4524] = {.lex_state = 2559}, + [4525] = {.lex_state = 384}, + [4526] = {.lex_state = 407}, + [4527] = {.lex_state = 344}, + [4528] = {.lex_state = 39}, [4529] = {.lex_state = 312}, - [4530] = {.lex_state = 372}, - [4531] = {.lex_state = 691}, - [4532] = {.lex_state = 691}, + [4530] = {.lex_state = 312}, + [4531] = {.lex_state = 124}, + [4532] = {.lex_state = 372}, [4533] = {.lex_state = 691}, [4534] = {.lex_state = 691}, - [4535] = {.lex_state = 92}, - [4536] = {.lex_state = 92}, - [4537] = {.lex_state = 407}, - [4538] = {.lex_state = 407}, + [4535] = {.lex_state = 691}, + [4536] = {.lex_state = 691}, + [4537] = {.lex_state = 92}, + [4538] = {.lex_state = 92}, [4539] = {.lex_state = 407}, - [4540] = {.lex_state = 312}, - [4541] = {.lex_state = 295}, - [4542] = {.lex_state = 690}, - [4543] = {.lex_state = 407}, + [4540] = {.lex_state = 407}, + [4541] = {.lex_state = 407}, + [4542] = {.lex_state = 312}, + [4543] = {.lex_state = 295}, [4544] = {.lex_state = 407}, [4545] = {.lex_state = 407}, - [4546] = {.lex_state = 39}, + [4546] = {.lex_state = 407}, [4547] = {.lex_state = 407}, [4548] = {.lex_state = 407}, [4549] = {.lex_state = 407}, - [4550] = {.lex_state = 407}, - [4551] = {.lex_state = 407}, + [4550] = {.lex_state = 690}, + [4551] = {.lex_state = 39}, [4552] = {.lex_state = 407}, - [4553] = {.lex_state = 2444}, - [4554] = {.lex_state = 295}, - [4555] = {.lex_state = 381}, - [4556] = {.lex_state = 370}, - [4557] = {.lex_state = 293}, - [4558] = {.lex_state = 0}, - [4559] = {.lex_state = 39}, - [4560] = {.lex_state = 332}, - [4561] = {.lex_state = 386}, + [4553] = {.lex_state = 407}, + [4554] = {.lex_state = 407}, + [4555] = {.lex_state = 295}, + [4556] = {.lex_state = 123}, + [4557] = {.lex_state = 409}, + [4558] = {.lex_state = 91}, + [4559] = {.lex_state = 335}, + [4560] = {.lex_state = 120}, + [4561] = {.lex_state = 373}, [4562] = {.lex_state = 293}, - [4563] = {.lex_state = 293}, - [4564] = {.lex_state = 409}, - [4565] = {.lex_state = 0}, - [4566] = {.lex_state = 2}, - [4567] = {.lex_state = 120}, + [4563] = {.lex_state = 409}, + [4564] = {.lex_state = 120}, + [4565] = {.lex_state = 91}, + [4566] = {.lex_state = 39}, + [4567] = {.lex_state = 0}, [4568] = {.lex_state = 0}, - [4569] = {.lex_state = 144}, - [4570] = {.lex_state = 409}, - [4571] = {.lex_state = 335}, - [4572] = {.lex_state = 0}, - [4573] = {.lex_state = 293}, - [4574] = {.lex_state = 409}, - [4575] = {.lex_state = 409}, - [4576] = {.lex_state = 694}, - [4577] = {.lex_state = 123}, - [4578] = {.lex_state = 724}, - [4579] = {.lex_state = 409}, - [4580] = {.lex_state = 735}, - [4581] = {.lex_state = 293}, - [4582] = {.lex_state = 409}, + [4569] = {.lex_state = 741}, + [4570] = {.lex_state = 2}, + [4571] = {.lex_state = 409}, + [4572] = {.lex_state = 409}, + [4573] = {.lex_state = 335}, + [4574] = {.lex_state = 123}, + [4575] = {.lex_state = 91}, + [4576] = {.lex_state = 91}, + [4577] = {.lex_state = 100}, + [4578] = {.lex_state = 39}, + [4579] = {.lex_state = 91}, + [4580] = {.lex_state = 312}, + [4581] = {.lex_state = 91}, + [4582] = {.lex_state = 91}, [4583] = {.lex_state = 91}, - [4584] = {.lex_state = 144}, - [4585] = {.lex_state = 91}, - [4586] = {.lex_state = 409}, - [4587] = {.lex_state = 100}, - [4588] = {.lex_state = 766}, - [4589] = {.lex_state = 312}, - [4590] = {.lex_state = 293}, - [4591] = {.lex_state = 409}, - [4592] = {.lex_state = 120}, - [4593] = {.lex_state = 409}, - [4594] = {.lex_state = 741}, - [4595] = {.lex_state = 312}, - [4596] = {.lex_state = 293}, - [4597] = {.lex_state = 409}, - [4598] = {.lex_state = 2}, - [4599] = {.lex_state = 373}, - [4600] = {.lex_state = 409}, - [4601] = {.lex_state = 91}, - [4602] = {.lex_state = 293}, - [4603] = {.lex_state = 409}, - [4604] = {.lex_state = 91}, + [4584] = {.lex_state = 694}, + [4585] = {.lex_state = 331}, + [4586] = {.lex_state = 91}, + [4587] = {.lex_state = 91}, + [4588] = {.lex_state = 39}, + [4589] = {.lex_state = 123}, + [4590] = {.lex_state = 312}, + [4591] = {.lex_state = 394}, + [4592] = {.lex_state = 91}, + [4593] = {.lex_state = 407}, + [4594] = {.lex_state = 91}, + [4595] = {.lex_state = 0}, + [4596] = {.lex_state = 0}, + [4597] = {.lex_state = 91}, + [4598] = {.lex_state = 409}, + [4599] = {.lex_state = 741}, + [4600] = {.lex_state = 293}, + [4601] = {.lex_state = 409}, + [4602] = {.lex_state = 694}, + [4603] = {.lex_state = 39}, + [4604] = {.lex_state = 39}, [4605] = {.lex_state = 409}, - [4606] = {.lex_state = 91}, - [4607] = {.lex_state = 293}, - [4608] = {.lex_state = 409}, - [4609] = {.lex_state = 91}, - [4610] = {.lex_state = 316}, - [4611] = {.lex_state = 409}, - [4612] = {.lex_state = 91}, - [4613] = {.lex_state = 0}, + [4606] = {.lex_state = 312}, + [4607] = {.lex_state = 386}, + [4608] = {.lex_state = 386}, + [4609] = {.lex_state = 293}, + [4610] = {.lex_state = 409}, + [4611] = {.lex_state = 107}, + [4612] = {.lex_state = 107}, + [4613] = {.lex_state = 409}, [4614] = {.lex_state = 293}, - [4615] = {.lex_state = 0}, - [4616] = {.lex_state = 394}, - [4617] = {.lex_state = 373}, + [4615] = {.lex_state = 409}, + [4616] = {.lex_state = 0}, + [4617] = {.lex_state = 144}, [4618] = {.lex_state = 293}, - [4619] = {.lex_state = 331}, - [4620] = {.lex_state = 293}, - [4621] = {.lex_state = 393}, - [4622] = {.lex_state = 373}, - [4623] = {.lex_state = 39}, - [4624] = {.lex_state = 293}, - [4625] = {.lex_state = 293}, - [4626] = {.lex_state = 293}, + [4619] = {.lex_state = 409}, + [4620] = {.lex_state = 0}, + [4621] = {.lex_state = 724}, + [4622] = {.lex_state = 409}, + [4623] = {.lex_state = 293}, + [4624] = {.lex_state = 409}, + [4625] = {.lex_state = 409}, + [4626] = {.lex_state = 766}, [4627] = {.lex_state = 293}, - [4628] = {.lex_state = 91}, - [4629] = {.lex_state = 293}, - [4630] = {.lex_state = 293}, - [4631] = {.lex_state = 293}, - [4632] = {.lex_state = 293}, - [4633] = {.lex_state = 91}, - [4634] = {.lex_state = 293}, - [4635] = {.lex_state = 293}, - [4636] = {.lex_state = 386}, - [4637] = {.lex_state = 409}, - [4638] = {.lex_state = 293}, - [4639] = {.lex_state = 293}, + [4628] = {.lex_state = 409}, + [4629] = {.lex_state = 144}, + [4630] = {.lex_state = 409}, + [4631] = {.lex_state = 332}, + [4632] = {.lex_state = 312}, + [4633] = {.lex_state = 293}, + [4634] = {.lex_state = 409}, + [4635] = {.lex_state = 312}, + [4636] = {.lex_state = 39}, + [4637] = {.lex_state = 741}, + [4638] = {.lex_state = 409}, + [4639] = {.lex_state = 409}, [4640] = {.lex_state = 293}, - [4641] = {.lex_state = 293}, - [4642] = {.lex_state = 293}, - [4643] = {.lex_state = 741}, - [4644] = {.lex_state = 39}, - [4645] = {.lex_state = 123}, - [4646] = {.lex_state = 91}, - [4647] = {.lex_state = 312}, - [4648] = {.lex_state = 39}, - [4649] = {.lex_state = 41}, - [4650] = {.lex_state = 91}, - [4651] = {.lex_state = 373}, - [4652] = {.lex_state = 741}, - [4653] = {.lex_state = 39}, - [4654] = {.lex_state = 741}, - [4655] = {.lex_state = 332}, - [4656] = {.lex_state = 312}, - [4657] = {.lex_state = 120}, - [4658] = {.lex_state = 407}, - [4659] = {.lex_state = 375}, - [4660] = {.lex_state = 41}, - [4661] = {.lex_state = 741}, - [4662] = {.lex_state = 0}, - [4663] = {.lex_state = 0}, - [4664] = {.lex_state = 120}, - [4665] = {.lex_state = 690}, - [4666] = {.lex_state = 409}, - [4667] = {.lex_state = 409}, - [4668] = {.lex_state = 741}, - [4669] = {.lex_state = 39}, + [4641] = {.lex_state = 409}, + [4642] = {.lex_state = 373}, + [4643] = {.lex_state = 316}, + [4644] = {.lex_state = 409}, + [4645] = {.lex_state = 293}, + [4646] = {.lex_state = 293}, + [4647] = {.lex_state = 0}, + [4648] = {.lex_state = 0}, + [4649] = {.lex_state = 293}, + [4650] = {.lex_state = 393}, + [4651] = {.lex_state = 293}, + [4652] = {.lex_state = 293}, + [4653] = {.lex_state = 293}, + [4654] = {.lex_state = 39}, + [4655] = {.lex_state = 293}, + [4656] = {.lex_state = 293}, + [4657] = {.lex_state = 293}, + [4658] = {.lex_state = 293}, + [4659] = {.lex_state = 293}, + [4660] = {.lex_state = 293}, + [4661] = {.lex_state = 293}, + [4662] = {.lex_state = 2}, + [4663] = {.lex_state = 293}, + [4664] = {.lex_state = 293}, + [4665] = {.lex_state = 293}, + [4666] = {.lex_state = 293}, + [4667] = {.lex_state = 293}, + [4668] = {.lex_state = 293}, + [4669] = {.lex_state = 293}, [4670] = {.lex_state = 741}, - [4671] = {.lex_state = 694}, + [4671] = {.lex_state = 41}, [4672] = {.lex_state = 39}, - [4673] = {.lex_state = 91}, - [4674] = {.lex_state = 2}, - [4675] = {.lex_state = 741}, - [4676] = {.lex_state = 312}, - [4677] = {.lex_state = 312}, - [4678] = {.lex_state = 39}, - [4679] = {.lex_state = 409}, - [4680] = {.lex_state = 293}, - [4681] = {.lex_state = 409}, - [4682] = {.lex_state = 312}, + [4673] = {.lex_state = 735}, + [4674] = {.lex_state = 741}, + [4675] = {.lex_state = 312}, + [4676] = {.lex_state = 120}, + [4677] = {.lex_state = 375}, + [4678] = {.lex_state = 690}, + [4679] = {.lex_state = 120}, + [4680] = {.lex_state = 373}, + [4681] = {.lex_state = 373}, + [4682] = {.lex_state = 409}, [4683] = {.lex_state = 39}, - [4684] = {.lex_state = 335}, + [4684] = {.lex_state = 2}, [4685] = {.lex_state = 373}, - [4686] = {.lex_state = 91}, - [4687] = {.lex_state = 2}, - [4688] = {.lex_state = 407}, - [4689] = {.lex_state = 738}, - [4690] = {.lex_state = 54}, - [4691] = {.lex_state = 107}, - [4692] = {.lex_state = 107}, - [4693] = {.lex_state = 312}, - [4694] = {.lex_state = 2}, - [4695] = {.lex_state = 409}, - [4696] = {.lex_state = 293}, - [4697] = {.lex_state = 409}, - [4698] = {.lex_state = 293}, - [4699] = {.lex_state = 2}, - [4700] = {.lex_state = 394}, - [4701] = {.lex_state = 409}, - [4702] = {.lex_state = 39}, + [4686] = {.lex_state = 312}, + [4687] = {.lex_state = 312}, + [4688] = {.lex_state = 332}, + [4689] = {.lex_state = 39}, + [4690] = {.lex_state = 741}, + [4691] = {.lex_state = 41}, + [4692] = {.lex_state = 2}, + [4693] = {.lex_state = 407}, + [4694] = {.lex_state = 741}, + [4695] = {.lex_state = 741}, + [4696] = {.lex_state = 738}, + [4697] = {.lex_state = 2}, + [4698] = {.lex_state = 54}, + [4699] = {.lex_state = 293}, + [4700] = {.lex_state = 409}, + [4701] = {.lex_state = 2}, + [4702] = {.lex_state = 394}, [4703] = {.lex_state = 293}, - [4704] = {.lex_state = 0}, - [4705] = {.lex_state = 395}, - [4706] = {.lex_state = 737}, - [4707] = {.lex_state = 39}, - [4708] = {.lex_state = 395}, - [4709] = {.lex_state = 354}, - [4710] = {.lex_state = 336}, - [4711] = {.lex_state = 144}, + [4704] = {.lex_state = 39}, + [4705] = {.lex_state = 39}, + [4706] = {.lex_state = 395}, + [4707] = {.lex_state = 293}, + [4708] = {.lex_state = 39}, + [4709] = {.lex_state = 39}, + [4710] = {.lex_state = 0}, + [4711] = {.lex_state = 354}, [4712] = {.lex_state = 39}, [4713] = {.lex_state = 39}, [4714] = {.lex_state = 39}, [4715] = {.lex_state = 39}, - [4716] = {.lex_state = 336}, + [4716] = {.lex_state = 293}, [4717] = {.lex_state = 39}, - [4718] = {.lex_state = 39}, - [4719] = {.lex_state = 39}, - [4720] = {.lex_state = 336}, - [4721] = {.lex_state = 107}, - [4722] = {.lex_state = 107}, - [4723] = {.lex_state = 0}, - [4724] = {.lex_state = 0}, - [4725] = {.lex_state = 39}, - [4726] = {.lex_state = 395}, - [4727] = {.lex_state = 50}, - [4728] = {.lex_state = 39}, - [4729] = {.lex_state = 39}, - [4730] = {.lex_state = 39}, - [4731] = {.lex_state = 39}, - [4732] = {.lex_state = 0}, - [4733] = {.lex_state = 0}, - [4734] = {.lex_state = 331}, - [4735] = {.lex_state = 331}, - [4736] = {.lex_state = 123}, - [4737] = {.lex_state = 123}, - [4738] = {.lex_state = 395}, + [4718] = {.lex_state = 144}, + [4719] = {.lex_state = 144}, + [4720] = {.lex_state = 39}, + [4721] = {.lex_state = 395}, + [4722] = {.lex_state = 0}, + [4723] = {.lex_state = 39}, + [4724] = {.lex_state = 100}, + [4725] = {.lex_state = 0}, + [4726] = {.lex_state = 39}, + [4727] = {.lex_state = 399}, + [4728] = {.lex_state = 107}, + [4729] = {.lex_state = 336}, + [4730] = {.lex_state = 144}, + [4731] = {.lex_state = 100}, + [4732] = {.lex_state = 395}, + [4733] = {.lex_state = 395}, + [4734] = {.lex_state = 395}, + [4735] = {.lex_state = 100}, + [4736] = {.lex_state = 354}, + [4737] = {.lex_state = 39}, + [4738] = {.lex_state = 144}, [4739] = {.lex_state = 39}, - [4740] = {.lex_state = 39}, + [4740] = {.lex_state = 373}, [4741] = {.lex_state = 39}, - [4742] = {.lex_state = 39}, - [4743] = {.lex_state = 39}, - [4744] = {.lex_state = 123}, - [4745] = {.lex_state = 39}, + [4742] = {.lex_state = 395}, + [4743] = {.lex_state = 395}, + [4744] = {.lex_state = 39}, + [4745] = {.lex_state = 0}, [4746] = {.lex_state = 39}, [4747] = {.lex_state = 39}, - [4748] = {.lex_state = 39}, - [4749] = {.lex_state = 39}, - [4750] = {.lex_state = 107}, - [4751] = {.lex_state = 107}, - [4752] = {.lex_state = 107}, - [4753] = {.lex_state = 107}, - [4754] = {.lex_state = 39}, - [4755] = {.lex_state = 39}, - [4756] = {.lex_state = 293}, + [4748] = {.lex_state = 91}, + [4749] = {.lex_state = 0}, + [4750] = {.lex_state = 39}, + [4751] = {.lex_state = 387}, + [4752] = {.lex_state = 331}, + [4753] = {.lex_state = 39}, + [4754] = {.lex_state = 336}, + [4755] = {.lex_state = 107}, + [4756] = {.lex_state = 387}, [4757] = {.lex_state = 39}, - [4758] = {.lex_state = 39}, - [4759] = {.lex_state = 39}, + [4758] = {.lex_state = 354}, + [4759] = {.lex_state = 387}, [4760] = {.lex_state = 39}, - [4761] = {.lex_state = 39}, - [4762] = {.lex_state = 39}, + [4761] = {.lex_state = 336}, + [4762] = {.lex_state = 373}, [4763] = {.lex_state = 39}, - [4764] = {.lex_state = 39}, - [4765] = {.lex_state = 107}, - [4766] = {.lex_state = 39}, + [4764] = {.lex_state = 0}, + [4765] = {.lex_state = 39}, + [4766] = {.lex_state = 0}, [4767] = {.lex_state = 39}, - [4768] = {.lex_state = 39}, + [4768] = {.lex_state = 0}, [4769] = {.lex_state = 39}, [4770] = {.lex_state = 39}, [4771] = {.lex_state = 39}, [4772] = {.lex_state = 39}, - [4773] = {.lex_state = 39}, - [4774] = {.lex_state = 0}, - [4775] = {.lex_state = 144}, - [4776] = {.lex_state = 0}, - [4777] = {.lex_state = 120}, - [4778] = {.lex_state = 331}, - [4779] = {.lex_state = 0}, + [4773] = {.lex_state = 107}, + [4774] = {.lex_state = 39}, + [4775] = {.lex_state = 354}, + [4776] = {.lex_state = 39}, + [4777] = {.lex_state = 39}, + [4778] = {.lex_state = 107}, + [4779] = {.lex_state = 120}, [4780] = {.lex_state = 50}, - [4781] = {.lex_state = 120}, - [4782] = {.lex_state = 96}, - [4783] = {.lex_state = 354}, - [4784] = {.lex_state = 50}, - [4785] = {.lex_state = 343}, - [4786] = {.lex_state = 96}, + [4781] = {.lex_state = 0}, + [4782] = {.lex_state = 387}, + [4783] = {.lex_state = 120}, + [4784] = {.lex_state = 120}, + [4785] = {.lex_state = 120}, + [4786] = {.lex_state = 0}, [4787] = {.lex_state = 39}, - [4788] = {.lex_state = 0}, - [4789] = {.lex_state = 0}, - [4790] = {.lex_state = 39}, - [4791] = {.lex_state = 144}, + [4788] = {.lex_state = 395}, + [4789] = {.lex_state = 354}, + [4790] = {.lex_state = 120}, + [4791] = {.lex_state = 120}, [4792] = {.lex_state = 39}, - [4793] = {.lex_state = 0}, + [4793] = {.lex_state = 39}, [4794] = {.lex_state = 39}, [4795] = {.lex_state = 39}, - [4796] = {.lex_state = 293}, - [4797] = {.lex_state = 144}, - [4798] = {.lex_state = 144}, - [4799] = {.lex_state = 39}, + [4796] = {.lex_state = 39}, + [4797] = {.lex_state = 39}, + [4798] = {.lex_state = 295}, + [4799] = {.lex_state = 354}, [4800] = {.lex_state = 39}, - [4801] = {.lex_state = 100}, + [4801] = {.lex_state = 331}, [4802] = {.lex_state = 39}, [4803] = {.lex_state = 39}, - [4804] = {.lex_state = 39}, - [4805] = {.lex_state = 399}, - [4806] = {.lex_state = 107}, - [4807] = {.lex_state = 107}, - [4808] = {.lex_state = 395}, - [4809] = {.lex_state = 100}, - [4810] = {.lex_state = 100}, - [4811] = {.lex_state = 373}, - [4812] = {.lex_state = 39}, - [4813] = {.lex_state = 373}, - [4814] = {.lex_state = 354}, + [4804] = {.lex_state = 0}, + [4805] = {.lex_state = 144}, + [4806] = {.lex_state = 123}, + [4807] = {.lex_state = 123}, + [4808] = {.lex_state = 295}, + [4809] = {.lex_state = 354}, + [4810] = {.lex_state = 0}, + [4811] = {.lex_state = 144}, + [4812] = {.lex_state = 331}, + [4813] = {.lex_state = 0}, + [4814] = {.lex_state = 0}, [4815] = {.lex_state = 0}, - [4816] = {.lex_state = 0}, + [4816] = {.lex_state = 50}, [4817] = {.lex_state = 0}, - [4818] = {.lex_state = 39}, - [4819] = {.lex_state = 39}, - [4820] = {.lex_state = 39}, - [4821] = {.lex_state = 387}, - [4822] = {.lex_state = 295}, - [4823] = {.lex_state = 0}, + [4818] = {.lex_state = 354}, + [4819] = {.lex_state = 336}, + [4820] = {.lex_state = 123}, + [4821] = {.lex_state = 331}, + [4822] = {.lex_state = 336}, + [4823] = {.lex_state = 39}, [4824] = {.lex_state = 39}, - [4825] = {.lex_state = 395}, - [4826] = {.lex_state = 39}, - [4827] = {.lex_state = 387}, - [4828] = {.lex_state = 39}, - [4829] = {.lex_state = 387}, - [4830] = {.lex_state = 295}, - [4831] = {.lex_state = 387}, - [4832] = {.lex_state = 0}, - [4833] = {.lex_state = 354}, - [4834] = {.lex_state = 0}, + [4825] = {.lex_state = 0}, + [4826] = {.lex_state = 354}, + [4827] = {.lex_state = 39}, + [4828] = {.lex_state = 123}, + [4829] = {.lex_state = 39}, + [4830] = {.lex_state = 331}, + [4831] = {.lex_state = 39}, + [4832] = {.lex_state = 354}, + [4833] = {.lex_state = 144}, + [4834] = {.lex_state = 39}, [4835] = {.lex_state = 39}, - [4836] = {.lex_state = 39}, - [4837] = {.lex_state = 331}, - [4838] = {.lex_state = 331}, - [4839] = {.lex_state = 144}, - [4840] = {.lex_state = 158}, - [4841] = {.lex_state = 354}, - [4842] = {.lex_state = 158}, - [4843] = {.lex_state = 144}, - [4844] = {.lex_state = 120}, - [4845] = {.lex_state = 120}, - [4846] = {.lex_state = 120}, - [4847] = {.lex_state = 120}, - [4848] = {.lex_state = 120}, - [4849] = {.lex_state = 120}, - [4850] = {.lex_state = 395}, - [4851] = {.lex_state = 50}, - [4852] = {.lex_state = 354}, - [4853] = {.lex_state = 0}, - [4854] = {.lex_state = 395}, - [4855] = {.lex_state = 354}, - [4856] = {.lex_state = 144}, - [4857] = {.lex_state = 0}, - [4858] = {.lex_state = 343}, - [4859] = {.lex_state = 343}, - [4860] = {.lex_state = 144}, - [4861] = {.lex_state = 354}, - [4862] = {.lex_state = 0}, - [4863] = {.lex_state = 144}, - [4864] = {.lex_state = 144}, - [4865] = {.lex_state = 336}, - [4866] = {.lex_state = 354}, - [4867] = {.lex_state = 336}, - [4868] = {.lex_state = 39}, - [4869] = {.lex_state = 331}, + [4836] = {.lex_state = 354}, + [4837] = {.lex_state = 144}, + [4838] = {.lex_state = 144}, + [4839] = {.lex_state = 39}, + [4840] = {.lex_state = 39}, + [4841] = {.lex_state = 396}, + [4842] = {.lex_state = 690}, + [4843] = {.lex_state = 354}, + [4844] = {.lex_state = 39}, + [4845] = {.lex_state = 737}, + [4846] = {.lex_state = 336}, + [4847] = {.lex_state = 39}, + [4848] = {.lex_state = 354}, + [4849] = {.lex_state = 396}, + [4850] = {.lex_state = 107}, + [4851] = {.lex_state = 354}, + [4852] = {.lex_state = 690}, + [4853] = {.lex_state = 107}, + [4854] = {.lex_state = 354}, + [4855] = {.lex_state = 144}, + [4856] = {.lex_state = 39}, + [4857] = {.lex_state = 107}, + [4858] = {.lex_state = 354}, + [4859] = {.lex_state = 39}, + [4860] = {.lex_state = 39}, + [4861] = {.lex_state = 39}, + [4862] = {.lex_state = 39}, + [4863] = {.lex_state = 354}, + [4864] = {.lex_state = 39}, + [4865] = {.lex_state = 39}, + [4866] = {.lex_state = 690}, + [4867] = {.lex_state = 395}, + [4868] = {.lex_state = 741}, + [4869] = {.lex_state = 690}, [4870] = {.lex_state = 39}, - [4871] = {.lex_state = 50}, - [4872] = {.lex_state = 354}, - [4873] = {.lex_state = 50}, + [4871] = {.lex_state = 0}, + [4872] = {.lex_state = 39}, + [4873] = {.lex_state = 39}, [4874] = {.lex_state = 39}, - [4875] = {.lex_state = 0}, - [4876] = {.lex_state = 354}, - [4877] = {.lex_state = 737}, - [4878] = {.lex_state = 354}, - [4879] = {.lex_state = 690}, - [4880] = {.lex_state = 396}, - [4881] = {.lex_state = 336}, - [4882] = {.lex_state = 395}, - [4883] = {.lex_state = 354}, - [4884] = {.lex_state = 395}, - [4885] = {.lex_state = 396}, - [4886] = {.lex_state = 354}, - [4887] = {.lex_state = 39}, - [4888] = {.lex_state = 39}, - [4889] = {.lex_state = 354}, - [4890] = {.lex_state = 39}, - [4891] = {.lex_state = 39}, - [4892] = {.lex_state = 354}, - [4893] = {.lex_state = 354}, + [4875] = {.lex_state = 39}, + [4876] = {.lex_state = 39}, + [4877] = {.lex_state = 39}, + [4878] = {.lex_state = 39}, + [4879] = {.lex_state = 39}, + [4880] = {.lex_state = 354}, + [4881] = {.lex_state = 690}, + [4882] = {.lex_state = 50}, + [4883] = {.lex_state = 376}, + [4884] = {.lex_state = 50}, + [4885] = {.lex_state = 690}, + [4886] = {.lex_state = 336}, + [4887] = {.lex_state = 0}, + [4888] = {.lex_state = 336}, + [4889] = {.lex_state = 0}, + [4890] = {.lex_state = 100}, + [4891] = {.lex_state = 0}, + [4892] = {.lex_state = 395}, + [4893] = {.lex_state = 100}, [4894] = {.lex_state = 39}, - [4895] = {.lex_state = 354}, - [4896] = {.lex_state = 331}, - [4897] = {.lex_state = 295}, - [4898] = {.lex_state = 395}, - [4899] = {.lex_state = 0}, - [4900] = {.lex_state = 331}, - [4901] = {.lex_state = 39}, - [4902] = {.lex_state = 376}, - [4903] = {.lex_state = 354}, - [4904] = {.lex_state = 690}, - [4905] = {.lex_state = 39}, - [4906] = {.lex_state = 0}, - [4907] = {.lex_state = 0}, + [4895] = {.lex_state = 39}, + [4896] = {.lex_state = 100}, + [4897] = {.lex_state = 39}, + [4898] = {.lex_state = 39}, + [4899] = {.lex_state = 144}, + [4900] = {.lex_state = 107}, + [4901] = {.lex_state = 144}, + [4902] = {.lex_state = 39}, + [4903] = {.lex_state = 331}, + [4904] = {.lex_state = 39}, + [4905] = {.lex_state = 336}, + [4906] = {.lex_state = 39}, + [4907] = {.lex_state = 39}, [4908] = {.lex_state = 39}, - [4909] = {.lex_state = 336}, - [4910] = {.lex_state = 336}, - [4911] = {.lex_state = 39}, - [4912] = {.lex_state = 39}, - [4913] = {.lex_state = 690}, - [4914] = {.lex_state = 144}, - [4915] = {.lex_state = 100}, - [4916] = {.lex_state = 39}, - [4917] = {.lex_state = 100}, - [4918] = {.lex_state = 100}, + [4909] = {.lex_state = 331}, + [4910] = {.lex_state = 331}, + [4911] = {.lex_state = 336}, + [4912] = {.lex_state = 343}, + [4913] = {.lex_state = 144}, + [4914] = {.lex_state = 39}, + [4915] = {.lex_state = 144}, + [4916] = {.lex_state = 343}, + [4917] = {.lex_state = 336}, + [4918] = {.lex_state = 343}, [4919] = {.lex_state = 39}, [4920] = {.lex_state = 39}, - [4921] = {.lex_state = 39}, + [4921] = {.lex_state = 144}, [4922] = {.lex_state = 39}, - [4923] = {.lex_state = 336}, + [4923] = {.lex_state = 331}, [4924] = {.lex_state = 331}, - [4925] = {.lex_state = 331}, - [4926] = {.lex_state = 39}, - [4927] = {.lex_state = 395}, - [4928] = {.lex_state = 336}, - [4929] = {.lex_state = 144}, - [4930] = {.lex_state = 343}, - [4931] = {.lex_state = 336}, - [4932] = {.lex_state = 343}, - [4933] = {.lex_state = 0}, - [4934] = {.lex_state = 0}, - [4935] = {.lex_state = 39}, - [4936] = {.lex_state = 690}, - [4937] = {.lex_state = 39}, - [4938] = {.lex_state = 39}, - [4939] = {.lex_state = 39}, - [4940] = {.lex_state = 336}, - [4941] = {.lex_state = 336}, - [4942] = {.lex_state = 39}, - [4943] = {.lex_state = 39}, + [4925] = {.lex_state = 39}, + [4926] = {.lex_state = 336}, + [4927] = {.lex_state = 336}, + [4928] = {.lex_state = 39}, + [4929] = {.lex_state = 39}, + [4930] = {.lex_state = 39}, + [4931] = {.lex_state = 0}, + [4932] = {.lex_state = 144}, + [4933] = {.lex_state = 737}, + [4934] = {.lex_state = 39}, + [4935] = {.lex_state = 343}, + [4936] = {.lex_state = 343}, + [4937] = {.lex_state = 158}, + [4938] = {.lex_state = 737}, + [4939] = {.lex_state = 354}, + [4940] = {.lex_state = 395}, + [4941] = {.lex_state = 120}, + [4942] = {.lex_state = 0}, + [4943] = {.lex_state = 395}, [4944] = {.lex_state = 395}, - [4945] = {.lex_state = 737}, - [4946] = {.lex_state = 39}, - [4947] = {.lex_state = 0}, - [4948] = {.lex_state = 395}, - [4949] = {.lex_state = 91}, - [4950] = {.lex_state = 331}, - [4951] = {.lex_state = 39}, - [4952] = {.lex_state = 354}, - [4953] = {.lex_state = 144}, - [4954] = {.lex_state = 123}, - [4955] = {.lex_state = 331}, - [4956] = {.lex_state = 39}, - [4957] = {.lex_state = 690}, - [4958] = {.lex_state = 690}, - [4959] = {.lex_state = 690}, - [4960] = {.lex_state = 690}, - [4961] = {.lex_state = 158}, - [4962] = {.lex_state = 741}, - [4963] = {.lex_state = 158}, - [4964] = {.lex_state = 387}, - [4965] = {.lex_state = 343}, - [4966] = {.lex_state = 39}, - [4967] = {.lex_state = 39}, - [4968] = {.lex_state = 39}, + [4945] = {.lex_state = 690}, + [4946] = {.lex_state = 331}, + [4947] = {.lex_state = 144}, + [4948] = {.lex_state = 120}, + [4949] = {.lex_state = 295}, + [4950] = {.lex_state = 39}, + [4951] = {.lex_state = 50}, + [4952] = {.lex_state = 96}, + [4953] = {.lex_state = 395}, + [4954] = {.lex_state = 39}, + [4955] = {.lex_state = 690}, + [4956] = {.lex_state = 354}, + [4957] = {.lex_state = 331}, + [4958] = {.lex_state = 50}, + [4959] = {.lex_state = 39}, + [4960] = {.lex_state = 0}, + [4961] = {.lex_state = 0}, + [4962] = {.lex_state = 343}, + [4963] = {.lex_state = 96}, + [4964] = {.lex_state = 144}, + [4965] = {.lex_state = 0}, + [4966] = {.lex_state = 0}, + [4967] = {.lex_state = 0}, + [4968] = {.lex_state = 0}, [4969] = {.lex_state = 39}, - [4970] = {.lex_state = 0}, + [4970] = {.lex_state = 387}, [4971] = {.lex_state = 0}, - [4972] = {.lex_state = 39}, + [4972] = {.lex_state = 0}, [4973] = {.lex_state = 0}, [4974] = {.lex_state = 0}, - [4975] = {.lex_state = 0}, - [4976] = {.lex_state = 0}, + [4975] = {.lex_state = 39}, + [4976] = {.lex_state = 39}, [4977] = {.lex_state = 0}, [4978] = {.lex_state = 354}, [4979] = {.lex_state = 39}, - [4980] = {.lex_state = 144}, - [4981] = {.lex_state = 0}, - [4982] = {.lex_state = 0}, - [4983] = {.lex_state = 144}, - [4984] = {.lex_state = 96}, + [4980] = {.lex_state = 107}, + [4981] = {.lex_state = 144}, + [4982] = {.lex_state = 39}, + [4983] = {.lex_state = 0}, + [4984] = {.lex_state = 0}, [4985] = {.lex_state = 0}, - [4986] = {.lex_state = 42}, + [4986] = {.lex_state = 735}, [4987] = {.lex_state = 144}, - [4988] = {.lex_state = 96}, + [4988] = {.lex_state = 0}, [4989] = {.lex_state = 0}, - [4990] = {.lex_state = 144}, - [4991] = {.lex_state = 144}, + [4990] = {.lex_state = 0}, + [4991] = {.lex_state = 54}, [4992] = {.lex_state = 144}, - [4993] = {.lex_state = 0}, - [4994] = {.lex_state = 737}, - [4995] = {.lex_state = 0}, - [4996] = {.lex_state = 0}, - [4997] = {.lex_state = 100}, - [4998] = {.lex_state = 96}, + [4993] = {.lex_state = 96}, + [4994] = {.lex_state = 397}, + [4995] = {.lex_state = 334}, + [4996] = {.lex_state = 100}, + [4997] = {.lex_state = 39}, + [4998] = {.lex_state = 743}, [4999] = {.lex_state = 144}, - [5000] = {.lex_state = 39}, + [5000] = {.lex_state = 144}, [5001] = {.lex_state = 144}, [5002] = {.lex_state = 39}, - [5003] = {.lex_state = 402}, - [5004] = {.lex_state = 96}, - [5005] = {.lex_state = 735}, - [5006] = {.lex_state = 96}, - [5007] = {.lex_state = 735}, - [5008] = {.lex_state = 96}, - [5009] = {.lex_state = 144}, - [5010] = {.lex_state = 144}, - [5011] = {.lex_state = 144}, - [5012] = {.lex_state = 397}, - [5013] = {.lex_state = 0}, - [5014] = {.lex_state = 397}, + [5003] = {.lex_state = 39}, + [5004] = {.lex_state = 39}, + [5005] = {.lex_state = 54}, + [5006] = {.lex_state = 144}, + [5007] = {.lex_state = 144}, + [5008] = {.lex_state = 39}, + [5009] = {.lex_state = 42}, + [5010] = {.lex_state = 690}, + [5011] = {.lex_state = 42}, + [5012] = {.lex_state = 120}, + [5013] = {.lex_state = 144}, + [5014] = {.lex_state = 144}, [5015] = {.lex_state = 144}, - [5016] = {.lex_state = 144}, + [5016] = {.lex_state = 0}, [5017] = {.lex_state = 144}, - [5018] = {.lex_state = 337}, - [5019] = {.lex_state = 0}, - [5020] = {.lex_state = 293}, - [5021] = {.lex_state = 409}, - [5022] = {.lex_state = 96}, - [5023] = {.lex_state = 0}, + [5018] = {.lex_state = 0}, + [5019] = {.lex_state = 402}, + [5020] = {.lex_state = 338}, + [5021] = {.lex_state = 144}, + [5022] = {.lex_state = 144}, + [5023] = {.lex_state = 144}, [5024] = {.lex_state = 0}, - [5025] = {.lex_state = 96}, - [5026] = {.lex_state = 397}, - [5027] = {.lex_state = 144}, - [5028] = {.lex_state = 100}, - [5029] = {.lex_state = 735}, + [5025] = {.lex_state = 737}, + [5026] = {.lex_state = 0}, + [5027] = {.lex_state = 100}, + [5028] = {.lex_state = 0}, + [5029] = {.lex_state = 0}, [5030] = {.lex_state = 0}, - [5031] = {.lex_state = 397}, - [5032] = {.lex_state = 0}, - [5033] = {.lex_state = 144}, - [5034] = {.lex_state = 0}, - [5035] = {.lex_state = 144}, - [5036] = {.lex_state = 0}, - [5037] = {.lex_state = 96}, - [5038] = {.lex_state = 96}, - [5039] = {.lex_state = 397}, - [5040] = {.lex_state = 144}, - [5041] = {.lex_state = 144}, + [5031] = {.lex_state = 0}, + [5032] = {.lex_state = 39}, + [5033] = {.lex_state = 0}, + [5034] = {.lex_state = 397}, + [5035] = {.lex_state = 100}, + [5036] = {.lex_state = 397}, + [5037] = {.lex_state = 39}, + [5038] = {.lex_state = 735}, + [5039] = {.lex_state = 0}, + [5040] = {.lex_state = 0}, + [5041] = {.lex_state = 96}, [5042] = {.lex_state = 96}, [5043] = {.lex_state = 144}, - [5044] = {.lex_state = 144}, - [5045] = {.lex_state = 144}, - [5046] = {.lex_state = 144}, - [5047] = {.lex_state = 144}, - [5048] = {.lex_state = 735}, + [5044] = {.lex_state = 39}, + [5045] = {.lex_state = 397}, + [5046] = {.lex_state = 250}, + [5047] = {.lex_state = 0}, + [5048] = {.lex_state = 0}, [5049] = {.lex_state = 397}, - [5050] = {.lex_state = 735}, + [5050] = {.lex_state = 0}, [5051] = {.lex_state = 0}, - [5052] = {.lex_state = 144}, - [5053] = {.lex_state = 96}, + [5052] = {.lex_state = 0}, + [5053] = {.lex_state = 0}, [5054] = {.lex_state = 144}, - [5055] = {.lex_state = 96}, - [5056] = {.lex_state = 735}, - [5057] = {.lex_state = 0}, - [5058] = {.lex_state = 96}, - [5059] = {.lex_state = 96}, - [5060] = {.lex_state = 54}, - [5061] = {.lex_state = 96}, - [5062] = {.lex_state = 409}, - [5063] = {.lex_state = 39}, - [5064] = {.lex_state = 144}, - [5065] = {.lex_state = 96}, - [5066] = {.lex_state = 39}, - [5067] = {.lex_state = 735}, - [5068] = {.lex_state = 96}, - [5069] = {.lex_state = 334}, + [5055] = {.lex_state = 735}, + [5056] = {.lex_state = 144}, + [5057] = {.lex_state = 144}, + [5058] = {.lex_state = 397}, + [5059] = {.lex_state = 42}, + [5060] = {.lex_state = 0}, + [5061] = {.lex_state = 0}, + [5062] = {.lex_state = 144}, + [5063] = {.lex_state = 144}, + [5064] = {.lex_state = 724}, + [5065] = {.lex_state = 0}, + [5066] = {.lex_state = 120}, + [5067] = {.lex_state = 144}, + [5068] = {.lex_state = 334}, + [5069] = {.lex_state = 0}, [5070] = {.lex_state = 735}, - [5071] = {.lex_state = 250}, + [5071] = {.lex_state = 735}, [5072] = {.lex_state = 0}, - [5073] = {.lex_state = 0}, - [5074] = {.lex_state = 39}, - [5075] = {.lex_state = 0}, - [5076] = {.lex_state = 0}, - [5077] = {.lex_state = 0}, - [5078] = {.lex_state = 0}, - [5079] = {.lex_state = 0}, - [5080] = {.lex_state = 144}, - [5081] = {.lex_state = 0}, - [5082] = {.lex_state = 0}, - [5083] = {.lex_state = 39}, - [5084] = {.lex_state = 0}, + [5073] = {.lex_state = 735}, + [5074] = {.lex_state = 0}, + [5075] = {.lex_state = 144}, + [5076] = {.lex_state = 96}, + [5077] = {.lex_state = 735}, + [5078] = {.lex_state = 144}, + [5079] = {.lex_state = 144}, + [5080] = {.lex_state = 96}, + [5081] = {.lex_state = 334}, + [5082] = {.lex_state = 735}, + [5083] = {.lex_state = 337}, + [5084] = {.lex_state = 144}, [5085] = {.lex_state = 0}, [5086] = {.lex_state = 0}, - [5087] = {.lex_state = 397}, - [5088] = {.lex_state = 39}, - [5089] = {.lex_state = 0}, + [5087] = {.lex_state = 0}, + [5088] = {.lex_state = 0}, + [5089] = {.lex_state = 39}, [5090] = {.lex_state = 0}, - [5091] = {.lex_state = 397}, - [5092] = {.lex_state = 0}, - [5093] = {.lex_state = 0}, - [5094] = {.lex_state = 144}, - [5095] = {.lex_state = 397}, - [5096] = {.lex_state = 144}, - [5097] = {.lex_state = 0}, + [5091] = {.lex_state = 0}, + [5092] = {.lex_state = 50}, + [5093] = {.lex_state = 338}, + [5094] = {.lex_state = 397}, + [5095] = {.lex_state = 42}, + [5096] = {.lex_state = 0}, + [5097] = {.lex_state = 96}, [5098] = {.lex_state = 0}, - [5099] = {.lex_state = 144}, - [5100] = {.lex_state = 144}, - [5101] = {.lex_state = 0}, + [5099] = {.lex_state = 0}, + [5100] = {.lex_state = 400}, + [5101] = {.lex_state = 96}, [5102] = {.lex_state = 0}, - [5103] = {.lex_state = 144}, - [5104] = {.lex_state = 0}, - [5105] = {.lex_state = 144}, - [5106] = {.lex_state = 144}, + [5103] = {.lex_state = 250}, + [5104] = {.lex_state = 144}, + [5105] = {.lex_state = 0}, + [5106] = {.lex_state = 0}, [5107] = {.lex_state = 0}, [5108] = {.lex_state = 0}, - [5109] = {.lex_state = 0}, + [5109] = {.lex_state = 336}, [5110] = {.lex_state = 0}, - [5111] = {.lex_state = 0}, - [5112] = {.lex_state = 100}, + [5111] = {.lex_state = 96}, + [5112] = {.lex_state = 96}, [5113] = {.lex_state = 0}, [5114] = {.lex_state = 0}, [5115] = {.lex_state = 0}, - [5116] = {.lex_state = 144}, - [5117] = {.lex_state = 0}, - [5118] = {.lex_state = 338}, - [5119] = {.lex_state = 743}, - [5120] = {.lex_state = 144}, + [5116] = {.lex_state = 0}, + [5117] = {.lex_state = 144}, + [5118] = {.lex_state = 397}, + [5119] = {.lex_state = 0}, + [5120] = {.lex_state = 0}, [5121] = {.lex_state = 144}, - [5122] = {.lex_state = 0}, - [5123] = {.lex_state = 96}, - [5124] = {.lex_state = 144}, + [5122] = {.lex_state = 144}, + [5123] = {.lex_state = 144}, + [5124] = {.lex_state = 96}, [5125] = {.lex_state = 144}, - [5126] = {.lex_state = 397}, - [5127] = {.lex_state = 334}, - [5128] = {.lex_state = 0}, - [5129] = {.lex_state = 144}, - [5130] = {.lex_state = 39}, + [5126] = {.lex_state = 0}, + [5127] = {.lex_state = 96}, + [5128] = {.lex_state = 144}, + [5129] = {.lex_state = 96}, + [5130] = {.lex_state = 402}, [5131] = {.lex_state = 144}, - [5132] = {.lex_state = 39}, - [5133] = {.lex_state = 724}, + [5132] = {.lex_state = 144}, + [5133] = {.lex_state = 144}, [5134] = {.lex_state = 144}, [5135] = {.lex_state = 144}, - [5136] = {.lex_state = 377}, - [5137] = {.lex_state = 409}, - [5138] = {.lex_state = 334}, - [5139] = {.lex_state = 39}, - [5140] = {.lex_state = 144}, - [5141] = {.lex_state = 0}, + [5136] = {.lex_state = 144}, + [5137] = {.lex_state = 96}, + [5138] = {.lex_state = 42}, + [5139] = {.lex_state = 0}, + [5140] = {.lex_state = 96}, + [5141] = {.lex_state = 337}, [5142] = {.lex_state = 0}, - [5143] = {.lex_state = 0}, - [5144] = {.lex_state = 96}, - [5145] = {.lex_state = 144}, + [5143] = {.lex_state = 397}, + [5144] = {.lex_state = 39}, + [5145] = {.lex_state = 250}, [5146] = {.lex_state = 144}, - [5147] = {.lex_state = 0}, - [5148] = {.lex_state = 0}, - [5149] = {.lex_state = 54}, - [5150] = {.lex_state = 39}, - [5151] = {.lex_state = 54}, - [5152] = {.lex_state = 144}, - [5153] = {.lex_state = 54}, - [5154] = {.lex_state = 54}, + [5147] = {.lex_state = 96}, + [5148] = {.lex_state = 144}, + [5149] = {.lex_state = 96}, + [5150] = {.lex_state = 96}, + [5151] = {.lex_state = 144}, + [5152] = {.lex_state = 0}, + [5153] = {.lex_state = 144}, + [5154] = {.lex_state = 144}, [5155] = {.lex_state = 144}, - [5156] = {.lex_state = 39}, - [5157] = {.lex_state = 144}, + [5156] = {.lex_state = 144}, + [5157] = {.lex_state = 293}, [5158] = {.lex_state = 144}, [5159] = {.lex_state = 144}, - [5160] = {.lex_state = 397}, - [5161] = {.lex_state = 39}, - [5162] = {.lex_state = 42}, + [5160] = {.lex_state = 96}, + [5161] = {.lex_state = 0}, + [5162] = {.lex_state = 96}, [5163] = {.lex_state = 144}, - [5164] = {.lex_state = 397}, - [5165] = {.lex_state = 0}, - [5166] = {.lex_state = 144}, + [5164] = {.lex_state = 144}, + [5165] = {.lex_state = 144}, + [5166] = {.lex_state = 0}, [5167] = {.lex_state = 144}, - [5168] = {.lex_state = 96}, - [5169] = {.lex_state = 39}, - [5170] = {.lex_state = 144}, - [5171] = {.lex_state = 144}, + [5168] = {.lex_state = 0}, + [5169] = {.lex_state = 96}, + [5170] = {.lex_state = 0}, + [5171] = {.lex_state = 96}, [5172] = {.lex_state = 144}, - [5173] = {.lex_state = 42}, - [5174] = {.lex_state = 144}, - [5175] = {.lex_state = 144}, - [5176] = {.lex_state = 54}, - [5177] = {.lex_state = 690}, - [5178] = {.lex_state = 96}, - [5179] = {.lex_state = 334}, - [5180] = {.lex_state = 144}, - [5181] = {.lex_state = 0}, - [5182] = {.lex_state = 144}, - [5183] = {.lex_state = 42}, - [5184] = {.lex_state = 0}, - [5185] = {.lex_state = 0}, - [5186] = {.lex_state = 0}, - [5187] = {.lex_state = 0}, - [5188] = {.lex_state = 144}, - [5189] = {.lex_state = 0}, + [5173] = {.lex_state = 0}, + [5174] = {.lex_state = 0}, + [5175] = {.lex_state = 0}, + [5176] = {.lex_state = 144}, + [5177] = {.lex_state = 39}, + [5178] = {.lex_state = 39}, + [5179] = {.lex_state = 144}, + [5180] = {.lex_state = 397}, + [5181] = {.lex_state = 743}, + [5182] = {.lex_state = 0}, + [5183] = {.lex_state = 0}, + [5184] = {.lex_state = 397}, + [5185] = {.lex_state = 144}, + [5186] = {.lex_state = 397}, + [5187] = {.lex_state = 397}, + [5188] = {.lex_state = 0}, + [5189] = {.lex_state = 144}, [5190] = {.lex_state = 144}, - [5191] = {.lex_state = 0}, - [5192] = {.lex_state = 0}, - [5193] = {.lex_state = 39}, + [5191] = {.lex_state = 735}, + [5192] = {.lex_state = 144}, + [5193] = {.lex_state = 735}, [5194] = {.lex_state = 144}, - [5195] = {.lex_state = 337}, - [5196] = {.lex_state = 39}, - [5197] = {.lex_state = 50}, - [5198] = {.lex_state = 0}, + [5195] = {.lex_state = 144}, + [5196] = {.lex_state = 144}, + [5197] = {.lex_state = 0}, + [5198] = {.lex_state = 735}, [5199] = {.lex_state = 0}, [5200] = {.lex_state = 0}, - [5201] = {.lex_state = 0}, - [5202] = {.lex_state = 144}, - [5203] = {.lex_state = 397}, + [5201] = {.lex_state = 39}, + [5202] = {.lex_state = 337}, + [5203] = {.lex_state = 96}, [5204] = {.lex_state = 0}, - [5205] = {.lex_state = 735}, - [5206] = {.lex_state = 331}, - [5207] = {.lex_state = 144}, - [5208] = {.lex_state = 42}, - [5209] = {.lex_state = 39}, + [5205] = {.lex_state = 0}, + [5206] = {.lex_state = 0}, + [5207] = {.lex_state = 0}, + [5208] = {.lex_state = 0}, + [5209] = {.lex_state = 377}, [5210] = {.lex_state = 144}, - [5211] = {.lex_state = 735}, + [5211] = {.lex_state = 39}, [5212] = {.lex_state = 144}, [5213] = {.lex_state = 144}, - [5214] = {.lex_state = 0}, - [5215] = {.lex_state = 337}, - [5216] = {.lex_state = 735}, - [5217] = {.lex_state = 120}, - [5218] = {.lex_state = 144}, - [5219] = {.lex_state = 39}, - [5220] = {.lex_state = 0}, - [5221] = {.lex_state = 735}, - [5222] = {.lex_state = 0}, + [5214] = {.lex_state = 144}, + [5215] = {.lex_state = 144}, + [5216] = {.lex_state = 0}, + [5217] = {.lex_state = 96}, + [5218] = {.lex_state = 54}, + [5219] = {.lex_state = 0}, + [5220] = {.lex_state = 144}, + [5221] = {.lex_state = 409}, + [5222] = {.lex_state = 42}, [5223] = {.lex_state = 144}, - [5224] = {.lex_state = 250}, - [5225] = {.lex_state = 120}, - [5226] = {.lex_state = 42}, - [5227] = {.lex_state = 735}, - [5228] = {.lex_state = 107}, + [5224] = {.lex_state = 735}, + [5225] = {.lex_state = 42}, + [5226] = {.lex_state = 409}, + [5227] = {.lex_state = 107}, + [5228] = {.lex_state = 144}, [5229] = {.lex_state = 144}, - [5230] = {.lex_state = 0}, + [5230] = {.lex_state = 144}, [5231] = {.lex_state = 144}, - [5232] = {.lex_state = 743}, + [5232] = {.lex_state = 0}, [5233] = {.lex_state = 144}, [5234] = {.lex_state = 144}, - [5235] = {.lex_state = 100}, + [5235] = {.lex_state = 0}, [5236] = {.lex_state = 0}, [5237] = {.lex_state = 0}, [5238] = {.lex_state = 0}, - [5239] = {.lex_state = 250}, - [5240] = {.lex_state = 400}, - [5241] = {.lex_state = 100}, - [5242] = {.lex_state = 96}, - [5243] = {.lex_state = 54}, - [5244] = {.lex_state = 100}, - [5245] = {.lex_state = 144}, - [5246] = {.lex_state = 144}, - [5247] = {.lex_state = 690}, - [5248] = {.lex_state = 0}, + [5239] = {.lex_state = 96}, + [5240] = {.lex_state = 334}, + [5241] = {.lex_state = 0}, + [5242] = {.lex_state = 39}, + [5243] = {.lex_state = 144}, + [5244] = {.lex_state = 144}, + [5245] = {.lex_state = 331}, + [5246] = {.lex_state = 0}, + [5247] = {.lex_state = 144}, + [5248] = {.lex_state = 39}, [5249] = {.lex_state = 144}, - [5250] = {.lex_state = 0}, - [5251] = {.lex_state = 735}, + [5250] = {.lex_state = 144}, + [5251] = {.lex_state = 144}, [5252] = {.lex_state = 735}, - [5253] = {.lex_state = 39}, - [5254] = {.lex_state = 96}, - [5255] = {.lex_state = 336}, + [5253] = {.lex_state = 735}, + [5254] = {.lex_state = 735}, + [5255] = {.lex_state = 0}, [5256] = {.lex_state = 144}, - [5257] = {.lex_state = 735}, - [5258] = {.lex_state = 0}, - [5259] = {.lex_state = 0}, + [5257] = {.lex_state = 144}, + [5258] = {.lex_state = 39}, + [5259] = {.lex_state = 100}, [5260] = {.lex_state = 39}, - [5261] = {.lex_state = 144}, + [5261] = {.lex_state = 735}, [5262] = {.lex_state = 0}, - [5263] = {.lex_state = 397}, + [5263] = {.lex_state = 100}, [5264] = {.lex_state = 0}, - [5265] = {.lex_state = 144}, - [5266] = {.lex_state = 39}, + [5265] = {.lex_state = 100}, + [5266] = {.lex_state = 690}, [5267] = {.lex_state = 144}, - [5268] = {.lex_state = 0}, - [5269] = {.lex_state = 0}, - [5270] = {.lex_state = 402}, - [5271] = {.lex_state = 338}, - [5272] = {.lex_state = 158}, - [5273] = {.lex_state = 42}, - [5274] = {.lex_state = 0}, - [5275] = {.lex_state = 337}, - [5276] = {.lex_state = 144}, - [5277] = {.lex_state = 144}, - [5278] = {.lex_state = 743}, + [5268] = {.lex_state = 409}, + [5269] = {.lex_state = 54}, + [5270] = {.lex_state = 39}, + [5271] = {.lex_state = 54}, + [5272] = {.lex_state = 54}, + [5273] = {.lex_state = 39}, + [5274] = {.lex_state = 54}, + [5275] = {.lex_state = 144}, + [5276] = {.lex_state = 337}, + [5277] = {.lex_state = 397}, + [5278] = {.lex_state = 334}, [5279] = {.lex_state = 0}, - [5280] = {.lex_state = 404}, - [5281] = {.lex_state = 0}, + [5280] = {.lex_state = 0}, + [5281] = {.lex_state = 2565}, [5282] = {.lex_state = 2565}, - [5283] = {.lex_state = 2565}, - [5284] = {.lex_state = 0}, - [5285] = {.lex_state = 2}, - [5286] = {.lex_state = 0}, - [5287] = {.lex_state = 0}, - [5288] = {.lex_state = 144}, - [5289] = {.lex_state = 144}, - [5290] = {.lex_state = 144}, + [5283] = {.lex_state = 2569}, + [5284] = {.lex_state = 334}, + [5285] = {.lex_state = 0}, + [5286] = {.lex_state = 334}, + [5287] = {.lex_state = 120}, + [5288] = {.lex_state = 0}, + [5289] = {.lex_state = 120}, + [5290] = {.lex_state = 334}, [5291] = {.lex_state = 0}, - [5292] = {.lex_state = 0}, - [5293] = {.lex_state = 100}, + [5292] = {.lex_state = 120}, + [5293] = {.lex_state = 144}, [5294] = {.lex_state = 0}, - [5295] = {.lex_state = 0}, - [5296] = {.lex_state = 334}, - [5297] = {.lex_state = 0}, + [5295] = {.lex_state = 2567}, + [5296] = {.lex_state = 0}, + [5297] = {.lex_state = 691}, [5298] = {.lex_state = 0}, - [5299] = {.lex_state = 144}, - [5300] = {.lex_state = 144}, + [5299] = {.lex_state = 404}, + [5300] = {.lex_state = 0}, [5301] = {.lex_state = 144}, [5302] = {.lex_state = 0}, - [5303] = {.lex_state = 2567}, - [5304] = {.lex_state = 2565}, - [5305] = {.lex_state = 120}, - [5306] = {.lex_state = 334}, + [5303] = {.lex_state = 144}, + [5304] = {.lex_state = 0}, + [5305] = {.lex_state = 2569}, + [5306] = {.lex_state = 39}, [5307] = {.lex_state = 0}, - [5308] = {.lex_state = 144}, + [5308] = {.lex_state = 2569}, [5309] = {.lex_state = 144}, [5310] = {.lex_state = 2569}, - [5311] = {.lex_state = 2567}, - [5312] = {.lex_state = 334}, - [5313] = {.lex_state = 2569}, - [5314] = {.lex_state = 2569}, - [5315] = {.lex_state = 2569}, - [5316] = {.lex_state = 2565}, - [5317] = {.lex_state = 2565}, - [5318] = {.lex_state = 334}, - [5319] = {.lex_state = 2565}, + [5311] = {.lex_state = 144}, + [5312] = {.lex_state = 0}, + [5313] = {.lex_state = 120}, + [5314] = {.lex_state = 0}, + [5315] = {.lex_state = 144}, + [5316] = {.lex_state = 0}, + [5317] = {.lex_state = 0}, + [5318] = {.lex_state = 96}, + [5319] = {.lex_state = 0}, [5320] = {.lex_state = 0}, - [5321] = {.lex_state = 2565}, - [5322] = {.lex_state = 144}, - [5323] = {.lex_state = 0}, - [5324] = {.lex_state = 0}, - [5325] = {.lex_state = 0}, - [5326] = {.lex_state = 144}, + [5321] = {.lex_state = 100}, + [5322] = {.lex_state = 0}, + [5323] = {.lex_state = 144}, + [5324] = {.lex_state = 100}, + [5325] = {.lex_state = 2}, + [5326] = {.lex_state = 0}, [5327] = {.lex_state = 0}, - [5328] = {.lex_state = 120}, - [5329] = {.lex_state = 120}, - [5330] = {.lex_state = 120}, - [5331] = {.lex_state = 144}, - [5332] = {.lex_state = 334}, - [5333] = {.lex_state = 39}, - [5334] = {.lex_state = 2565}, + [5328] = {.lex_state = 2565}, + [5329] = {.lex_state = 2565}, + [5330] = {.lex_state = 0}, + [5331] = {.lex_state = 0}, + [5332] = {.lex_state = 0}, + [5333] = {.lex_state = 0}, + [5334] = {.lex_state = 0}, [5335] = {.lex_state = 144}, - [5336] = {.lex_state = 2565}, - [5337] = {.lex_state = 2565}, - [5338] = {.lex_state = 334}, + [5336] = {.lex_state = 0}, + [5337] = {.lex_state = 144}, + [5338] = {.lex_state = 0}, [5339] = {.lex_state = 144}, - [5340] = {.lex_state = 0}, + [5340] = {.lex_state = 144}, [5341] = {.lex_state = 0}, - [5342] = {.lex_state = 334}, - [5343] = {.lex_state = 334}, - [5344] = {.lex_state = 144}, - [5345] = {.lex_state = 334}, - [5346] = {.lex_state = 691}, - [5347] = {.lex_state = 144}, - [5348] = {.lex_state = 2569}, + [5342] = {.lex_state = 0}, + [5343] = {.lex_state = 2569}, + [5344] = {.lex_state = 0}, + [5345] = {.lex_state = 2567}, + [5346] = {.lex_state = 0}, + [5347] = {.lex_state = 737}, + [5348] = {.lex_state = 0}, [5349] = {.lex_state = 2569}, - [5350] = {.lex_state = 144}, - [5351] = {.lex_state = 144}, - [5352] = {.lex_state = 0}, - [5353] = {.lex_state = 144}, - [5354] = {.lex_state = 2565}, - [5355] = {.lex_state = 2565}, - [5356] = {.lex_state = 2567}, - [5357] = {.lex_state = 0}, - [5358] = {.lex_state = 2569}, + [5350] = {.lex_state = 743}, + [5351] = {.lex_state = 0}, + [5352] = {.lex_state = 100}, + [5353] = {.lex_state = 2569}, + [5354] = {.lex_state = 0}, + [5355] = {.lex_state = 334}, + [5356] = {.lex_state = 144}, + [5357] = {.lex_state = 144}, + [5358] = {.lex_state = 144}, [5359] = {.lex_state = 2569}, [5360] = {.lex_state = 0}, [5361] = {.lex_state = 0}, - [5362] = {.lex_state = 0}, - [5363] = {.lex_state = 144}, + [5362] = {.lex_state = 42}, + [5363] = {.lex_state = 0}, [5364] = {.lex_state = 0}, - [5365] = {.lex_state = 0}, + [5365] = {.lex_state = 144}, [5366] = {.lex_state = 0}, [5367] = {.lex_state = 0}, - [5368] = {.lex_state = 334}, - [5369] = {.lex_state = 144}, - [5370] = {.lex_state = 0}, - [5371] = {.lex_state = 2569}, - [5372] = {.lex_state = 0}, + [5368] = {.lex_state = 144}, + [5369] = {.lex_state = 334}, + [5370] = {.lex_state = 144}, + [5371] = {.lex_state = 0}, + [5372] = {.lex_state = 144}, [5373] = {.lex_state = 144}, - [5374] = {.lex_state = 0}, - [5375] = {.lex_state = 334}, + [5374] = {.lex_state = 2569}, + [5375] = {.lex_state = 144}, [5376] = {.lex_state = 144}, [5377] = {.lex_state = 144}, - [5378] = {.lex_state = 0}, + [5378] = {.lex_state = 2567}, [5379] = {.lex_state = 0}, - [5380] = {.lex_state = 100}, - [5381] = {.lex_state = 0}, - [5382] = {.lex_state = 100}, - [5383] = {.lex_state = 0}, - [5384] = {.lex_state = 0}, + [5380] = {.lex_state = 0}, + [5381] = {.lex_state = 2569}, + [5382] = {.lex_state = 2565}, + [5383] = {.lex_state = 144}, + [5384] = {.lex_state = 2565}, [5385] = {.lex_state = 144}, - [5386] = {.lex_state = 737}, - [5387] = {.lex_state = 0}, - [5388] = {.lex_state = 2565}, - [5389] = {.lex_state = 144}, - [5390] = {.lex_state = 42}, - [5391] = {.lex_state = 0}, + [5386] = {.lex_state = 0}, + [5387] = {.lex_state = 2569}, + [5388] = {.lex_state = 2569}, + [5389] = {.lex_state = 2565}, + [5390] = {.lex_state = 0}, + [5391] = {.lex_state = 2565}, [5392] = {.lex_state = 2569}, - [5393] = {.lex_state = 144}, - [5394] = {.lex_state = 2569}, + [5393] = {.lex_state = 334}, + [5394] = {.lex_state = 144}, [5395] = {.lex_state = 144}, - [5396] = {.lex_state = 0}, - [5397] = {.lex_state = 0}, - [5398] = {.lex_state = 96}, - [5399] = {.lex_state = 144}, - [5400] = {.lex_state = 0}, + [5396] = {.lex_state = 144}, + [5397] = {.lex_state = 2569}, + [5398] = {.lex_state = 2565}, + [5399] = {.lex_state = 2565}, + [5400] = {.lex_state = 144}, [5401] = {.lex_state = 144}, - [5402] = {.lex_state = 2567}, + [5402] = {.lex_state = 0}, [5403] = {.lex_state = 0}, - [5404] = {.lex_state = 0}, - [5405] = {.lex_state = 0}, - [5406] = {.lex_state = 0}, + [5404] = {.lex_state = 2567}, + [5405] = {.lex_state = 144}, + [5406] = {.lex_state = 334}, [5407] = {.lex_state = 0}, - [5408] = {.lex_state = 144}, - [5409] = {.lex_state = 334}, - [5410] = {.lex_state = 2567}, - [5411] = {.lex_state = 2040}, + [5408] = {.lex_state = 737}, + [5409] = {.lex_state = 2565}, + [5410] = {.lex_state = 100}, + [5411] = {.lex_state = 334}, [5412] = {.lex_state = 2565}, - [5413] = {.lex_state = 2565}, - [5414] = {.lex_state = 737}, + [5413] = {.lex_state = 0}, + [5414] = {.lex_state = 144}, [5415] = {.lex_state = 2569}, - [5416] = {.lex_state = 2569}, - [5417] = {.lex_state = 2565}, + [5416] = {.lex_state = 144}, + [5417] = {.lex_state = 144}, [5418] = {.lex_state = 2565}, - [5419] = {.lex_state = 0}, - [5420] = {.lex_state = 2569}, - [5421] = {.lex_state = 2569}, - [5422] = {.lex_state = 334}, - [5423] = {.lex_state = 100}, - [5424] = {.lex_state = 144}, - [5425] = {.lex_state = 144}, - [5426] = {.lex_state = 144}, - [5427] = {.lex_state = 144}, - [5428] = {.lex_state = 735}, + [5419] = {.lex_state = 2040}, + [5420] = {.lex_state = 144}, + [5421] = {.lex_state = 0}, + [5422] = {.lex_state = 0}, + [5423] = {.lex_state = 0}, + [5424] = {.lex_state = 735}, + [5425] = {.lex_state = 0}, + [5426] = {.lex_state = 2569}, + [5427] = {.lex_state = 0}, + [5428] = {.lex_state = 144}, [5429] = {.lex_state = 0}, - [5430] = {.lex_state = 0}, - [5431] = {.lex_state = 144}, - [5432] = {.lex_state = 144}, + [5430] = {.lex_state = 2569}, + [5431] = {.lex_state = 0}, + [5432] = {.lex_state = 334}, [5433] = {.lex_state = 334}, - [5434] = {.lex_state = 0}, + [5434] = {.lex_state = 144}, [5435] = {.lex_state = 0}, - [5436] = {.lex_state = 0}, - [5437] = {.lex_state = 0}, + [5436] = {.lex_state = 334}, + [5437] = {.lex_state = 39}, [5438] = {.lex_state = 0}, - [5439] = {.lex_state = 0}, - [5440] = {.lex_state = 0}, - [5441] = {.lex_state = 404}, + [5439] = {.lex_state = 144}, + [5440] = {.lex_state = 404}, + [5441] = {.lex_state = 144}, [5442] = {.lex_state = 0}, - [5443] = {.lex_state = 2569}, - [5444] = {.lex_state = 39}, - [5445] = {.lex_state = 0}, - [5446] = {.lex_state = 2569}, - [5447] = {.lex_state = 0}, - [5448] = {.lex_state = 144}, - [5449] = {.lex_state = 0}, - [5450] = {.lex_state = 39}, - [5451] = {.lex_state = 690}, - [5452] = {.lex_state = 690}, - [5453] = {.lex_state = 1472}, - [5454] = {.lex_state = 0}, - [5455] = {.lex_state = 0}, - [5456] = {.lex_state = 39}, - [5457] = {.lex_state = 39}, - [5458] = {.lex_state = 2016}, - [5459] = {.lex_state = 0}, + [5443] = {.lex_state = 334}, + [5444] = {.lex_state = 0}, + [5445] = {.lex_state = 2565}, + [5446] = {.lex_state = 334}, + [5447] = {.lex_state = 144}, + [5448] = {.lex_state = 2565}, + [5449] = {.lex_state = 2565}, + [5450] = {.lex_state = 2565}, + [5451] = {.lex_state = 2567}, + [5452] = {.lex_state = 2016}, + [5453] = {.lex_state = 690}, + [5454] = {.lex_state = 690}, + [5455] = {.lex_state = 690}, + [5456] = {.lex_state = 0}, + [5457] = {.lex_state = 0}, + [5458] = {.lex_state = 39}, + [5459] = {.lex_state = 1472}, [5460] = {.lex_state = 334}, - [5461] = {.lex_state = 0}, - [5462] = {.lex_state = 39}, - [5463] = {.lex_state = 39}, - [5464] = {.lex_state = 0, .external_lex_state = 3}, - [5465] = {.lex_state = 39}, - [5466] = {.lex_state = 0}, - [5467] = {.lex_state = 2020}, - [5468] = {.lex_state = 0}, - [5469] = {.lex_state = 2040}, - [5470] = {.lex_state = 39}, - [5471] = {.lex_state = 39}, - [5472] = {.lex_state = 54}, - [5473] = {.lex_state = 100}, - [5474] = {.lex_state = 0}, - [5475] = {.lex_state = 690}, - [5476] = {.lex_state = 690}, - [5477] = {.lex_state = 0}, - [5478] = {.lex_state = 0}, - [5479] = {.lex_state = 0}, - [5480] = {.lex_state = 39}, - [5481] = {.lex_state = 39}, + [5461] = {.lex_state = 1472}, + [5462] = {.lex_state = 0}, + [5463] = {.lex_state = 690}, + [5464] = {.lex_state = 39}, + [5465] = {.lex_state = 337}, + [5466] = {.lex_state = 0, .external_lex_state = 3}, + [5467] = {.lex_state = 0, .external_lex_state = 4}, + [5468] = {.lex_state = 39}, + [5469] = {.lex_state = 0}, + [5470] = {.lex_state = 0}, + [5471] = {.lex_state = 0}, + [5472] = {.lex_state = 39}, + [5473] = {.lex_state = 0}, + [5474] = {.lex_state = 337}, + [5475] = {.lex_state = 0}, + [5476] = {.lex_state = 0}, + [5477] = {.lex_state = 690}, + [5478] = {.lex_state = 690}, + [5479] = {.lex_state = 39}, + [5480] = {.lex_state = 690}, + [5481] = {.lex_state = 0}, [5482] = {.lex_state = 39}, - [5483] = {.lex_state = 0}, - [5484] = {.lex_state = 39}, - [5485] = {.lex_state = 778}, - [5486] = {.lex_state = 0, .external_lex_state = 3}, + [5483] = {.lex_state = 39}, + [5484] = {.lex_state = 1472}, + [5485] = {.lex_state = 39}, + [5486] = {.lex_state = 2016}, [5487] = {.lex_state = 0}, - [5488] = {.lex_state = 100}, - [5489] = {.lex_state = 39}, - [5490] = {.lex_state = 39}, - [5491] = {.lex_state = 39}, - [5492] = {.lex_state = 344}, - [5493] = {.lex_state = 0}, - [5494] = {.lex_state = 690}, - [5495] = {.lex_state = 690}, - [5496] = {.lex_state = 39}, - [5497] = {.lex_state = 0}, - [5498] = {.lex_state = 690}, - [5499] = {.lex_state = 334}, - [5500] = {.lex_state = 334}, - [5501] = {.lex_state = 0, .external_lex_state = 3}, - [5502] = {.lex_state = 0}, - [5503] = {.lex_state = 690}, - [5504] = {.lex_state = 406}, - [5505] = {.lex_state = 39}, - [5506] = {.lex_state = 39}, - [5507] = {.lex_state = 0}, - [5508] = {.lex_state = 690}, - [5509] = {.lex_state = 690}, - [5510] = {.lex_state = 39}, + [5488] = {.lex_state = 0, .external_lex_state = 3}, + [5489] = {.lex_state = 0}, + [5490] = {.lex_state = 100}, + [5491] = {.lex_state = 2020}, + [5492] = {.lex_state = 39}, + [5493] = {.lex_state = 334}, + [5494] = {.lex_state = 0}, + [5495] = {.lex_state = 0}, + [5496] = {.lex_state = 690}, + [5497] = {.lex_state = 690}, + [5498] = {.lex_state = 39}, + [5499] = {.lex_state = 2}, + [5500] = {.lex_state = 0}, + [5501] = {.lex_state = 39}, + [5502] = {.lex_state = 39}, + [5503] = {.lex_state = 0, .external_lex_state = 3}, + [5504] = {.lex_state = 778}, + [5505] = {.lex_state = 0, .external_lex_state = 3}, + [5506] = {.lex_state = 337}, + [5507] = {.lex_state = 39}, + [5508] = {.lex_state = 0}, + [5509] = {.lex_state = 0}, + [5510] = {.lex_state = 690}, [5511] = {.lex_state = 690}, - [5512] = {.lex_state = 1472}, - [5513] = {.lex_state = 0}, - [5514] = {.lex_state = 1472}, - [5515] = {.lex_state = 0, .external_lex_state = 3}, + [5512] = {.lex_state = 39}, + [5513] = {.lex_state = 334}, + [5514] = {.lex_state = 0}, + [5515] = {.lex_state = 39}, [5516] = {.lex_state = 334}, - [5517] = {.lex_state = 39}, + [5517] = {.lex_state = 0, .external_lex_state = 3}, [5518] = {.lex_state = 0}, - [5519] = {.lex_state = 0}, - [5520] = {.lex_state = 690}, + [5519] = {.lex_state = 337}, + [5520] = {.lex_state = 39}, [5521] = {.lex_state = 0}, - [5522] = {.lex_state = 690}, - [5523] = {.lex_state = 690}, - [5524] = {.lex_state = 39}, + [5522] = {.lex_state = 344}, + [5523] = {.lex_state = 0}, + [5524] = {.lex_state = 690}, [5525] = {.lex_state = 690}, - [5526] = {.lex_state = 0}, - [5527] = {.lex_state = 0, .external_lex_state = 3}, - [5528] = {.lex_state = 0, .external_lex_state = 3}, - [5529] = {.lex_state = 39}, - [5530] = {.lex_state = 735}, - [5531] = {.lex_state = 405}, - [5532] = {.lex_state = 0}, + [5526] = {.lex_state = 39}, + [5527] = {.lex_state = 39}, + [5528] = {.lex_state = 0}, + [5529] = {.lex_state = 0}, + [5530] = {.lex_state = 0, .external_lex_state = 3}, + [5531] = {.lex_state = 0}, + [5532] = {.lex_state = 690}, [5533] = {.lex_state = 690}, - [5534] = {.lex_state = 690}, - [5535] = {.lex_state = 39}, - [5536] = {.lex_state = 337}, + [5534] = {.lex_state = 0}, + [5535] = {.lex_state = 690}, + [5536] = {.lex_state = 690}, [5537] = {.lex_state = 39}, - [5538] = {.lex_state = 0, .external_lex_state = 3}, - [5539] = {.lex_state = 334}, - [5540] = {.lex_state = 0}, - [5541] = {.lex_state = 0}, + [5538] = {.lex_state = 0}, + [5539] = {.lex_state = 0}, + [5540] = {.lex_state = 0, .external_lex_state = 3}, + [5541] = {.lex_state = 39}, [5542] = {.lex_state = 0}, [5543] = {.lex_state = 690}, - [5544] = {.lex_state = 690}, - [5545] = {.lex_state = 39}, - [5546] = {.lex_state = 0}, - [5547] = {.lex_state = 690}, - [5548] = {.lex_state = 0, .external_lex_state = 3}, - [5549] = {.lex_state = 0}, - [5550] = {.lex_state = 2569}, - [5551] = {.lex_state = 39}, + [5544] = {.lex_state = 0}, + [5545] = {.lex_state = 690}, + [5546] = {.lex_state = 690}, + [5547] = {.lex_state = 39}, + [5548] = {.lex_state = 0}, + [5549] = {.lex_state = 100}, + [5550] = {.lex_state = 0, .external_lex_state = 3}, + [5551] = {.lex_state = 690}, [5552] = {.lex_state = 0}, - [5553] = {.lex_state = 690}, - [5554] = {.lex_state = 690}, - [5555] = {.lex_state = 39}, - [5556] = {.lex_state = 0}, - [5557] = {.lex_state = 1472}, - [5558] = {.lex_state = 0, .external_lex_state = 3}, - [5559] = {.lex_state = 39}, - [5560] = {.lex_state = 39}, - [5561] = {.lex_state = 2}, + [5553] = {.lex_state = 0}, + [5554] = {.lex_state = 0}, + [5555] = {.lex_state = 690}, + [5556] = {.lex_state = 690}, + [5557] = {.lex_state = 39}, + [5558] = {.lex_state = 1472}, + [5559] = {.lex_state = 0}, + [5560] = {.lex_state = 0, .external_lex_state = 3}, + [5561] = {.lex_state = 1472}, [5562] = {.lex_state = 0}, - [5563] = {.lex_state = 690}, - [5564] = {.lex_state = 690}, - [5565] = {.lex_state = 39}, - [5566] = {.lex_state = 0}, - [5567] = {.lex_state = 0}, - [5568] = {.lex_state = 0, .external_lex_state = 3}, + [5563] = {.lex_state = 0}, + [5564] = {.lex_state = 0}, + [5565] = {.lex_state = 690}, + [5566] = {.lex_state = 690}, + [5567] = {.lex_state = 39}, + [5568] = {.lex_state = 0}, [5569] = {.lex_state = 39}, - [5570] = {.lex_state = 2569}, + [5570] = {.lex_state = 0, .external_lex_state = 3}, [5571] = {.lex_state = 0}, - [5572] = {.lex_state = 690}, - [5573] = {.lex_state = 690}, - [5574] = {.lex_state = 0}, - [5575] = {.lex_state = 735}, - [5576] = {.lex_state = 0, .external_lex_state = 3}, - [5577] = {.lex_state = 0}, - [5578] = {.lex_state = 0}, - [5579] = {.lex_state = 690}, - [5580] = {.lex_state = 690}, - [5581] = {.lex_state = 1472}, - [5582] = {.lex_state = 39}, - [5583] = {.lex_state = 0, .external_lex_state = 3}, - [5584] = {.lex_state = 337}, - [5585] = {.lex_state = 0}, - [5586] = {.lex_state = 690}, - [5587] = {.lex_state = 690}, - [5588] = {.lex_state = 39}, - [5589] = {.lex_state = 2567}, - [5590] = {.lex_state = 0, .external_lex_state = 3}, - [5591] = {.lex_state = 337}, - [5592] = {.lex_state = 0}, - [5593] = {.lex_state = 690}, - [5594] = {.lex_state = 690}, - [5595] = {.lex_state = 2}, - [5596] = {.lex_state = 0, .external_lex_state = 3}, - [5597] = {.lex_state = 0, .external_lex_state = 3}, - [5598] = {.lex_state = 0}, - [5599] = {.lex_state = 690}, - [5600] = {.lex_state = 690}, - [5601] = {.lex_state = 0}, - [5602] = {.lex_state = 0, .external_lex_state = 3}, - [5603] = {.lex_state = 735}, - [5604] = {.lex_state = 0}, - [5605] = {.lex_state = 690}, - [5606] = {.lex_state = 690}, - [5607] = {.lex_state = 0}, - [5608] = {.lex_state = 0, .external_lex_state = 3}, - [5609] = {.lex_state = 39}, - [5610] = {.lex_state = 0}, - [5611] = {.lex_state = 690}, - [5612] = {.lex_state = 690}, - [5613] = {.lex_state = 0}, - [5614] = {.lex_state = 0, .external_lex_state = 3}, + [5572] = {.lex_state = 54}, + [5573] = {.lex_state = 0}, + [5574] = {.lex_state = 690}, + [5575] = {.lex_state = 690}, + [5576] = {.lex_state = 39}, + [5577] = {.lex_state = 0, .external_lex_state = 3}, + [5578] = {.lex_state = 0, .external_lex_state = 3}, + [5579] = {.lex_state = 406}, + [5580] = {.lex_state = 0}, + [5581] = {.lex_state = 690}, + [5582] = {.lex_state = 690}, + [5583] = {.lex_state = 1472}, + [5584] = {.lex_state = 39}, + [5585] = {.lex_state = 0, .external_lex_state = 3}, + [5586] = {.lex_state = 2569}, + [5587] = {.lex_state = 0}, + [5588] = {.lex_state = 690}, + [5589] = {.lex_state = 690}, + [5590] = {.lex_state = 39}, + [5591] = {.lex_state = 2}, + [5592] = {.lex_state = 0, .external_lex_state = 3}, + [5593] = {.lex_state = 0}, + [5594] = {.lex_state = 0}, + [5595] = {.lex_state = 690}, + [5596] = {.lex_state = 690}, + [5597] = {.lex_state = 39}, + [5598] = {.lex_state = 0, .external_lex_state = 3}, + [5599] = {.lex_state = 334}, + [5600] = {.lex_state = 0}, + [5601] = {.lex_state = 690}, + [5602] = {.lex_state = 690}, + [5603] = {.lex_state = 100}, + [5604] = {.lex_state = 0, .external_lex_state = 3}, + [5605] = {.lex_state = 39}, + [5606] = {.lex_state = 0}, + [5607] = {.lex_state = 690}, + [5608] = {.lex_state = 690}, + [5609] = {.lex_state = 0}, + [5610] = {.lex_state = 0, .external_lex_state = 3}, + [5611] = {.lex_state = 0}, + [5612] = {.lex_state = 0}, + [5613] = {.lex_state = 690}, + [5614] = {.lex_state = 690}, [5615] = {.lex_state = 0}, - [5616] = {.lex_state = 690}, - [5617] = {.lex_state = 690}, - [5618] = {.lex_state = 0}, - [5619] = {.lex_state = 0, .external_lex_state = 3}, - [5620] = {.lex_state = 0}, - [5621] = {.lex_state = 690}, - [5622] = {.lex_state = 690}, - [5623] = {.lex_state = 1472}, - [5624] = {.lex_state = 0, .external_lex_state = 3}, + [5616] = {.lex_state = 0, .external_lex_state = 3}, + [5617] = {.lex_state = 0}, + [5618] = {.lex_state = 690}, + [5619] = {.lex_state = 690}, + [5620] = {.lex_state = 54}, + [5621] = {.lex_state = 0, .external_lex_state = 3}, + [5622] = {.lex_state = 0}, + [5623] = {.lex_state = 690}, + [5624] = {.lex_state = 690}, [5625] = {.lex_state = 0}, - [5626] = {.lex_state = 690}, - [5627] = {.lex_state = 690}, - [5628] = {.lex_state = 0}, - [5629] = {.lex_state = 0, .external_lex_state = 3}, - [5630] = {.lex_state = 0}, - [5631] = {.lex_state = 690}, - [5632] = {.lex_state = 690}, - [5633] = {.lex_state = 0}, - [5634] = {.lex_state = 0, .external_lex_state = 3}, - [5635] = {.lex_state = 0}, - [5636] = {.lex_state = 690}, - [5637] = {.lex_state = 690}, - [5638] = {.lex_state = 0}, - [5639] = {.lex_state = 0, .external_lex_state = 3}, + [5626] = {.lex_state = 0, .external_lex_state = 3}, + [5627] = {.lex_state = 0}, + [5628] = {.lex_state = 690}, + [5629] = {.lex_state = 690}, + [5630] = {.lex_state = 39}, + [5631] = {.lex_state = 0, .external_lex_state = 3}, + [5632] = {.lex_state = 0}, + [5633] = {.lex_state = 690}, + [5634] = {.lex_state = 690}, + [5635] = {.lex_state = 2}, + [5636] = {.lex_state = 0, .external_lex_state = 3}, + [5637] = {.lex_state = 0}, + [5638] = {.lex_state = 690}, + [5639] = {.lex_state = 690}, [5640] = {.lex_state = 0}, - [5641] = {.lex_state = 690}, - [5642] = {.lex_state = 690}, - [5643] = {.lex_state = 0, .external_lex_state = 4}, - [5644] = {.lex_state = 0}, - [5645] = {.lex_state = 337}, - [5646] = {.lex_state = 0}, - [5647] = {.lex_state = 0}, - [5648] = {.lex_state = 2016}, - [5649] = {.lex_state = 2020}, - [5650] = {.lex_state = 690}, - [5651] = {.lex_state = 690}, - [5652] = {.lex_state = 0}, - [5653] = {.lex_state = 338}, + [5641] = {.lex_state = 0, .external_lex_state = 3}, + [5642] = {.lex_state = 0}, + [5643] = {.lex_state = 690}, + [5644] = {.lex_state = 690}, + [5645] = {.lex_state = 0, .external_lex_state = 4}, + [5646] = {.lex_state = 0, .external_lex_state = 3}, + [5647] = {.lex_state = 37}, + [5648] = {.lex_state = 334}, + [5649] = {.lex_state = 0}, + [5650] = {.lex_state = 2016}, + [5651] = {.lex_state = 2020}, + [5652] = {.lex_state = 334}, + [5653] = {.lex_state = 334}, [5654] = {.lex_state = 0}, - [5655] = {.lex_state = 39}, + [5655] = {.lex_state = 0}, [5656] = {.lex_state = 1472}, - [5657] = {.lex_state = 690}, + [5657] = {.lex_state = 39}, [5658] = {.lex_state = 0}, - [5659] = {.lex_state = 0}, - [5660] = {.lex_state = 39}, + [5659] = {.lex_state = 39}, + [5660] = {.lex_state = 0}, [5661] = {.lex_state = 0}, - [5662] = {.lex_state = 0}, - [5663] = {.lex_state = 39}, - [5664] = {.lex_state = 39}, - [5665] = {.lex_state = 0}, - [5666] = {.lex_state = 141}, + [5662] = {.lex_state = 337}, + [5663] = {.lex_state = 0}, + [5664] = {.lex_state = 0}, + [5665] = {.lex_state = 39}, + [5666] = {.lex_state = 0}, [5667] = {.lex_state = 39}, - [5668] = {.lex_state = 0}, - [5669] = {.lex_state = 0}, - [5670] = {.lex_state = 2565}, + [5668] = {.lex_state = 2565}, + [5669] = {.lex_state = 337}, + [5670] = {.lex_state = 735}, [5671] = {.lex_state = 39}, - [5672] = {.lex_state = 2580}, + [5672] = {.lex_state = 0}, [5673] = {.lex_state = 0}, [5674] = {.lex_state = 39}, [5675] = {.lex_state = 0}, - [5676] = {.lex_state = 2569}, - [5677] = {.lex_state = 337}, - [5678] = {.lex_state = 0}, - [5679] = {.lex_state = 100}, - [5680] = {.lex_state = 337}, + [5676] = {.lex_state = 0}, + [5677] = {.lex_state = 0}, + [5678] = {.lex_state = 690}, + [5679] = {.lex_state = 690}, + [5680] = {.lex_state = 0}, [5681] = {.lex_state = 0}, - [5682] = {.lex_state = 39}, - [5683] = {.lex_state = 0}, - [5684] = {.lex_state = 0, .external_lex_state = 4}, - [5685] = {.lex_state = 0}, - [5686] = {.lex_state = 0}, - [5687] = {.lex_state = 334}, - [5688] = {.lex_state = 0}, - [5689] = {.lex_state = 735}, + [5682] = {.lex_state = 690}, + [5683] = {.lex_state = 690}, + [5684] = {.lex_state = 2567}, + [5685] = {.lex_state = 690}, + [5686] = {.lex_state = 2569}, + [5687] = {.lex_state = 690}, + [5688] = {.lex_state = 1472}, + [5689] = {.lex_state = 1472}, [5690] = {.lex_state = 0}, - [5691] = {.lex_state = 737}, - [5692] = {.lex_state = 690}, - [5693] = {.lex_state = 690}, - [5694] = {.lex_state = 2565}, - [5695] = {.lex_state = 690}, - [5696] = {.lex_state = 334}, + [5691] = {.lex_state = 735}, + [5692] = {.lex_state = 39}, + [5693] = {.lex_state = 737}, + [5694] = {.lex_state = 337}, + [5695] = {.lex_state = 1472}, + [5696] = {.lex_state = 337}, [5697] = {.lex_state = 39}, [5698] = {.lex_state = 0}, - [5699] = {.lex_state = 39}, + [5699] = {.lex_state = 0}, [5700] = {.lex_state = 0}, - [5701] = {.lex_state = 0, .external_lex_state = 3}, - [5702] = {.lex_state = 735}, + [5701] = {.lex_state = 39}, + [5702] = {.lex_state = 39}, [5703] = {.lex_state = 0}, - [5704] = {.lex_state = 39}, - [5705] = {.lex_state = 39}, + [5704] = {.lex_state = 735}, + [5705] = {.lex_state = 0}, [5706] = {.lex_state = 0}, - [5707] = {.lex_state = 39}, - [5708] = {.lex_state = 0}, - [5709] = {.lex_state = 39}, - [5710] = {.lex_state = 39}, + [5707] = {.lex_state = 0}, + [5708] = {.lex_state = 39}, + [5709] = {.lex_state = 0}, + [5710] = {.lex_state = 0}, [5711] = {.lex_state = 39}, - [5712] = {.lex_state = 334}, - [5713] = {.lex_state = 0}, - [5714] = {.lex_state = 690}, - [5715] = {.lex_state = 0}, - [5716] = {.lex_state = 0}, - [5717] = {.lex_state = 0}, - [5718] = {.lex_state = 37}, - [5719] = {.lex_state = 0}, - [5720] = {.lex_state = 141}, - [5721] = {.lex_state = 0}, - [5722] = {.lex_state = 37}, - [5723] = {.lex_state = 2}, - [5724] = {.lex_state = 0}, - [5725] = {.lex_state = 2567}, + [5712] = {.lex_state = 39}, + [5713] = {.lex_state = 39}, + [5714] = {.lex_state = 334}, + [5715] = {.lex_state = 1472}, + [5716] = {.lex_state = 2565}, + [5717] = {.lex_state = 37}, + [5718] = {.lex_state = 0}, + [5719] = {.lex_state = 39}, + [5720] = {.lex_state = 39}, + [5721] = {.lex_state = 39}, + [5722] = {.lex_state = 39}, + [5723] = {.lex_state = 0}, + [5724] = {.lex_state = 2}, + [5725] = {.lex_state = 690}, [5726] = {.lex_state = 0}, - [5727] = {.lex_state = 39}, + [5727] = {.lex_state = 1472}, [5728] = {.lex_state = 0}, - [5729] = {.lex_state = 1472}, + [5729] = {.lex_state = 0}, [5730] = {.lex_state = 0}, - [5731] = {.lex_state = 0}, + [5731] = {.lex_state = 0, .external_lex_state = 3}, [5732] = {.lex_state = 0}, - [5733] = {.lex_state = 0}, - [5734] = {.lex_state = 39}, - [5735] = {.lex_state = 0}, - [5736] = {.lex_state = 735}, + [5733] = {.lex_state = 2567}, + [5734] = {.lex_state = 0}, + [5735] = {.lex_state = 39}, + [5736] = {.lex_state = 141}, [5737] = {.lex_state = 0}, - [5738] = {.lex_state = 0}, - [5739] = {.lex_state = 690}, - [5740] = {.lex_state = 690}, + [5738] = {.lex_state = 37}, + [5739] = {.lex_state = 0}, + [5740] = {.lex_state = 0}, [5741] = {.lex_state = 0}, - [5742] = {.lex_state = 0, .external_lex_state = 3}, - [5743] = {.lex_state = 0, .external_lex_state = 3}, - [5744] = {.lex_state = 1472}, - [5745] = {.lex_state = 1472}, + [5742] = {.lex_state = 405}, + [5743] = {.lex_state = 39}, + [5744] = {.lex_state = 0}, + [5745] = {.lex_state = 39}, [5746] = {.lex_state = 0}, - [5747] = {.lex_state = 735}, + [5747] = {.lex_state = 0}, [5748] = {.lex_state = 0}, - [5749] = {.lex_state = 39}, - [5750] = {.lex_state = 2}, - [5751] = {.lex_state = 39}, - [5752] = {.lex_state = 0}, - [5753] = {.lex_state = 141}, + [5749] = {.lex_state = 0}, + [5750] = {.lex_state = 0}, + [5751] = {.lex_state = 338}, + [5752] = {.lex_state = 100}, + [5753] = {.lex_state = 735}, [5754] = {.lex_state = 0}, - [5755] = {.lex_state = 0}, - [5756] = {.lex_state = 334}, - [5757] = {.lex_state = 337}, - [5758] = {.lex_state = 0}, - [5759] = {.lex_state = 0}, - [5760] = {.lex_state = 39}, - [5761] = {.lex_state = 39}, - [5762] = {.lex_state = 0}, - [5763] = {.lex_state = 39}, - [5764] = {.lex_state = 1472}, + [5755] = {.lex_state = 690}, + [5756] = {.lex_state = 39}, + [5757] = {.lex_state = 690}, + [5758] = {.lex_state = 39}, + [5759] = {.lex_state = 141}, + [5760] = {.lex_state = 0}, + [5761] = {.lex_state = 1472}, + [5762] = {.lex_state = 100}, + [5763] = {.lex_state = 0}, + [5764] = {.lex_state = 0}, [5765] = {.lex_state = 0}, - [5766] = {.lex_state = 0}, - [5767] = {.lex_state = 737}, - [5768] = {.lex_state = 39}, - [5769] = {.lex_state = 0}, + [5766] = {.lex_state = 39}, + [5767] = {.lex_state = 735}, + [5768] = {.lex_state = 0}, + [5769] = {.lex_state = 334}, [5770] = {.lex_state = 39}, - [5771] = {.lex_state = 37}, - [5772] = {.lex_state = 2}, - [5773] = {.lex_state = 0}, - [5774] = {.lex_state = 39}, + [5771] = {.lex_state = 0}, + [5772] = {.lex_state = 0}, + [5773] = {.lex_state = 39}, + [5774] = {.lex_state = 141}, [5775] = {.lex_state = 0}, - [5776] = {.lex_state = 337}, - [5777] = {.lex_state = 1472}, + [5776] = {.lex_state = 2580}, + [5777] = {.lex_state = 334}, [5778] = {.lex_state = 0}, [5779] = {.lex_state = 39}, - [5780] = {.lex_state = 39}, - [5781] = {.lex_state = 0}, + [5780] = {.lex_state = 0}, + [5781] = {.lex_state = 39}, [5782] = {.lex_state = 0}, [5783] = {.lex_state = 0}, [5784] = {.lex_state = 0}, [5785] = {.lex_state = 0}, - [5786] = {.lex_state = 39}, - [5787] = {.lex_state = 100}, - [5788] = {.lex_state = 690}, - [5789] = {.lex_state = 690}, - [5790] = {.lex_state = 39}, - [5791] = {.lex_state = 0}, + [5786] = {.lex_state = 0}, + [5787] = {.lex_state = 39}, + [5788] = {.lex_state = 0, .external_lex_state = 3}, + [5789] = {.lex_state = 0, .external_lex_state = 3}, + [5790] = {.lex_state = 37}, + [5791] = {.lex_state = 0, .external_lex_state = 3}, [5792] = {.lex_state = 0}, [5793] = {.lex_state = 0}, - [5794] = {.lex_state = 0}, - [5795] = {.lex_state = 0, .external_lex_state = 4}, - [5796] = {.lex_state = 0}, - [5797] = {.lex_state = 2016}, - [5798] = {.lex_state = 2020}, - [5799] = {.lex_state = 141}, - [5800] = {.lex_state = 0}, - [5801] = {.lex_state = 735}, - [5802] = {.lex_state = 0}, - [5803] = {.lex_state = 735}, - [5804] = {.lex_state = 737}, - [5805] = {.lex_state = 0}, - [5806] = {.lex_state = 2567}, - [5807] = {.lex_state = 778}, + [5794] = {.lex_state = 337}, + [5795] = {.lex_state = 0}, + [5796] = {.lex_state = 0, .external_lex_state = 4}, + [5797] = {.lex_state = 0}, + [5798] = {.lex_state = 2016}, + [5799] = {.lex_state = 2020}, + [5800] = {.lex_state = 2}, + [5801] = {.lex_state = 0}, + [5802] = {.lex_state = 39}, + [5803] = {.lex_state = 0}, + [5804] = {.lex_state = 735}, + [5805] = {.lex_state = 737}, + [5806] = {.lex_state = 39}, + [5807] = {.lex_state = 141}, [5808] = {.lex_state = 0}, - [5809] = {.lex_state = 0}, - [5810] = {.lex_state = 37}, - [5811] = {.lex_state = 0}, - [5812] = {.lex_state = 334}, - [5813] = {.lex_state = 39}, - [5814] = {.lex_state = 2}, - [5815] = {.lex_state = 0}, - [5816] = {.lex_state = 0}, - [5817] = {.lex_state = 100}, - [5818] = {.lex_state = 54}, - [5819] = {.lex_state = 0}, - [5820] = {.lex_state = 0}, - [5821] = {.lex_state = 0}, - [5822] = {.lex_state = 100}, - [5823] = {.lex_state = 0}, - [5824] = {.lex_state = 37}, - [5825] = {.lex_state = 0}, - [5826] = {.lex_state = 2565}, - [5827] = {.lex_state = 39}, - [5828] = {.lex_state = 337}, - [5829] = {.lex_state = 0, .external_lex_state = 3}, - [5830] = {.lex_state = 0}, - [5831] = {.lex_state = 0, .external_lex_state = 4}, - [5832] = {.lex_state = 0}, - [5833] = {.lex_state = 2016}, - [5834] = {.lex_state = 2020}, - [5835] = {.lex_state = 0, .external_lex_state = 3}, - [5836] = {.lex_state = 737}, - [5837] = {.lex_state = 0}, - [5838] = {.lex_state = 334}, + [5809] = {.lex_state = 100}, + [5810] = {.lex_state = 0}, + [5811] = {.lex_state = 334}, + [5812] = {.lex_state = 39}, + [5813] = {.lex_state = 2567}, + [5814] = {.lex_state = 0}, + [5815] = {.lex_state = 735}, + [5816] = {.lex_state = 39}, + [5817] = {.lex_state = 0}, + [5818] = {.lex_state = 37}, + [5819] = {.lex_state = 2569}, + [5820] = {.lex_state = 337}, + [5821] = {.lex_state = 39}, + [5822] = {.lex_state = 0}, + [5823] = {.lex_state = 334}, + [5824] = {.lex_state = 39}, + [5825] = {.lex_state = 735}, + [5826] = {.lex_state = 0}, + [5827] = {.lex_state = 737}, + [5828] = {.lex_state = 39}, + [5829] = {.lex_state = 2}, + [5830] = {.lex_state = 690}, + [5831] = {.lex_state = 690}, + [5832] = {.lex_state = 0, .external_lex_state = 4}, + [5833] = {.lex_state = 0}, + [5834] = {.lex_state = 2016}, + [5835] = {.lex_state = 2020}, + [5836] = {.lex_state = 0}, + [5837] = {.lex_state = 737}, + [5838] = {.lex_state = 0}, [5839] = {.lex_state = 0}, - [5840] = {.lex_state = 100}, - [5841] = {.lex_state = 0}, + [5840] = {.lex_state = 0}, + [5841] = {.lex_state = 1472}, [5842] = {.lex_state = 2}, - [5843] = {.lex_state = 0, .external_lex_state = 4}, - [5844] = {.lex_state = 0}, - [5845] = {.lex_state = 2016}, - [5846] = {.lex_state = 2020}, - [5847] = {.lex_state = 0, .external_lex_state = 4}, - [5848] = {.lex_state = 0}, - [5849] = {.lex_state = 2016}, - [5850] = {.lex_state = 2020}, - [5851] = {.lex_state = 0, .external_lex_state = 4}, - [5852] = {.lex_state = 0}, - [5853] = {.lex_state = 2016}, - [5854] = {.lex_state = 2020}, - [5855] = {.lex_state = 0, .external_lex_state = 4}, - [5856] = {.lex_state = 0}, - [5857] = {.lex_state = 2016}, - [5858] = {.lex_state = 2020}, - [5859] = {.lex_state = 0, .external_lex_state = 4}, - [5860] = {.lex_state = 0}, - [5861] = {.lex_state = 2016}, - [5862] = {.lex_state = 2020}, - [5863] = {.lex_state = 0, .external_lex_state = 4}, - [5864] = {.lex_state = 0}, - [5865] = {.lex_state = 2016}, - [5866] = {.lex_state = 2020}, - [5867] = {.lex_state = 0, .external_lex_state = 4}, - [5868] = {.lex_state = 0}, - [5869] = {.lex_state = 2016}, - [5870] = {.lex_state = 2020}, - [5871] = {.lex_state = 0, .external_lex_state = 4}, - [5872] = {.lex_state = 2016}, - [5873] = {.lex_state = 2020}, - [5874] = {.lex_state = 0, .external_lex_state = 4}, - [5875] = {.lex_state = 2016}, - [5876] = {.lex_state = 2020}, - [5877] = {.lex_state = 0, .external_lex_state = 4}, - [5878] = {.lex_state = 2016}, - [5879] = {.lex_state = 2020}, - [5880] = {.lex_state = 0, .external_lex_state = 4}, - [5881] = {.lex_state = 2016}, - [5882] = {.lex_state = 2020}, - [5883] = {.lex_state = 0, .external_lex_state = 4}, - [5884] = {.lex_state = 2016}, - [5885] = {.lex_state = 2020}, - [5886] = {.lex_state = 0, .external_lex_state = 4}, - [5887] = {.lex_state = 2016}, - [5888] = {.lex_state = 2020}, - [5889] = {.lex_state = 0, .external_lex_state = 4}, - [5890] = {.lex_state = 2016}, - [5891] = {.lex_state = 2020}, - [5892] = {.lex_state = 0, .external_lex_state = 4}, - [5893] = {.lex_state = 2016}, - [5894] = {.lex_state = 2020}, - [5895] = {.lex_state = 0, .external_lex_state = 4}, - [5896] = {.lex_state = 2016}, - [5897] = {.lex_state = 2020}, - [5898] = {.lex_state = 0, .external_lex_state = 4}, - [5899] = {.lex_state = 2016}, - [5900] = {.lex_state = 2020}, - [5901] = {.lex_state = 0, .external_lex_state = 4}, - [5902] = {.lex_state = 2016}, - [5903] = {.lex_state = 2020}, - [5904] = {.lex_state = 0, .external_lex_state = 4}, - [5905] = {.lex_state = 2016}, - [5906] = {.lex_state = 2020}, - [5907] = {.lex_state = 0, .external_lex_state = 4}, - [5908] = {.lex_state = 2016}, - [5909] = {.lex_state = 2020}, - [5910] = {.lex_state = 0, .external_lex_state = 4}, - [5911] = {.lex_state = 2016}, - [5912] = {.lex_state = 2020}, - [5913] = {.lex_state = 0, .external_lex_state = 4}, - [5914] = {.lex_state = 2016}, - [5915] = {.lex_state = 2020}, - [5916] = {.lex_state = 0, .external_lex_state = 4}, - [5917] = {.lex_state = 2016}, - [5918] = {.lex_state = 2020}, - [5919] = {.lex_state = 0, .external_lex_state = 4}, - [5920] = {.lex_state = 2016}, - [5921] = {.lex_state = 2020}, - [5922] = {.lex_state = 0, .external_lex_state = 4}, - [5923] = {.lex_state = 2016}, - [5924] = {.lex_state = 2020}, - [5925] = {.lex_state = 0, .external_lex_state = 4}, - [5926] = {.lex_state = 2016}, - [5927] = {.lex_state = 2020}, - [5928] = {.lex_state = 0, .external_lex_state = 4}, - [5929] = {.lex_state = 2016}, - [5930] = {.lex_state = 2020}, - [5931] = {.lex_state = 0}, - [5932] = {.lex_state = 0, .external_lex_state = 3}, + [5843] = {.lex_state = 0}, + [5844] = {.lex_state = 0, .external_lex_state = 4}, + [5845] = {.lex_state = 0}, + [5846] = {.lex_state = 2016}, + [5847] = {.lex_state = 2020}, + [5848] = {.lex_state = 0, .external_lex_state = 4}, + [5849] = {.lex_state = 0}, + [5850] = {.lex_state = 2016}, + [5851] = {.lex_state = 2020}, + [5852] = {.lex_state = 0, .external_lex_state = 4}, + [5853] = {.lex_state = 0}, + [5854] = {.lex_state = 2016}, + [5855] = {.lex_state = 2020}, + [5856] = {.lex_state = 0, .external_lex_state = 4}, + [5857] = {.lex_state = 0}, + [5858] = {.lex_state = 2016}, + [5859] = {.lex_state = 2020}, + [5860] = {.lex_state = 0, .external_lex_state = 4}, + [5861] = {.lex_state = 0}, + [5862] = {.lex_state = 2016}, + [5863] = {.lex_state = 2020}, + [5864] = {.lex_state = 0, .external_lex_state = 4}, + [5865] = {.lex_state = 0}, + [5866] = {.lex_state = 2016}, + [5867] = {.lex_state = 2020}, + [5868] = {.lex_state = 0, .external_lex_state = 4}, + [5869] = {.lex_state = 0}, + [5870] = {.lex_state = 2016}, + [5871] = {.lex_state = 2020}, + [5872] = {.lex_state = 0, .external_lex_state = 4}, + [5873] = {.lex_state = 2016}, + [5874] = {.lex_state = 2020}, + [5875] = {.lex_state = 0, .external_lex_state = 4}, + [5876] = {.lex_state = 2016}, + [5877] = {.lex_state = 2020}, + [5878] = {.lex_state = 0, .external_lex_state = 4}, + [5879] = {.lex_state = 2016}, + [5880] = {.lex_state = 2020}, + [5881] = {.lex_state = 0, .external_lex_state = 4}, + [5882] = {.lex_state = 2016}, + [5883] = {.lex_state = 2020}, + [5884] = {.lex_state = 0, .external_lex_state = 4}, + [5885] = {.lex_state = 2016}, + [5886] = {.lex_state = 2020}, + [5887] = {.lex_state = 0, .external_lex_state = 4}, + [5888] = {.lex_state = 2016}, + [5889] = {.lex_state = 2020}, + [5890] = {.lex_state = 0, .external_lex_state = 4}, + [5891] = {.lex_state = 2016}, + [5892] = {.lex_state = 2020}, + [5893] = {.lex_state = 0, .external_lex_state = 4}, + [5894] = {.lex_state = 2016}, + [5895] = {.lex_state = 2020}, + [5896] = {.lex_state = 0, .external_lex_state = 4}, + [5897] = {.lex_state = 2016}, + [5898] = {.lex_state = 2020}, + [5899] = {.lex_state = 0, .external_lex_state = 4}, + [5900] = {.lex_state = 2016}, + [5901] = {.lex_state = 2020}, + [5902] = {.lex_state = 0, .external_lex_state = 4}, + [5903] = {.lex_state = 2016}, + [5904] = {.lex_state = 2020}, + [5905] = {.lex_state = 0, .external_lex_state = 4}, + [5906] = {.lex_state = 2016}, + [5907] = {.lex_state = 2020}, + [5908] = {.lex_state = 0, .external_lex_state = 4}, + [5909] = {.lex_state = 2016}, + [5910] = {.lex_state = 2020}, + [5911] = {.lex_state = 0, .external_lex_state = 4}, + [5912] = {.lex_state = 39}, + [5913] = {.lex_state = 2020}, + [5914] = {.lex_state = 0, .external_lex_state = 4}, + [5915] = {.lex_state = 2016}, + [5916] = {.lex_state = 2020}, + [5917] = {.lex_state = 0, .external_lex_state = 4}, + [5918] = {.lex_state = 2016}, + [5919] = {.lex_state = 2020}, + [5920] = {.lex_state = 0, .external_lex_state = 4}, + [5921] = {.lex_state = 2016}, + [5922] = {.lex_state = 2020}, + [5923] = {.lex_state = 0, .external_lex_state = 4}, + [5924] = {.lex_state = 2016}, + [5925] = {.lex_state = 2020}, + [5926] = {.lex_state = 0, .external_lex_state = 4}, + [5927] = {.lex_state = 2016}, + [5928] = {.lex_state = 2020}, + [5929] = {.lex_state = 0, .external_lex_state = 4}, + [5930] = {.lex_state = 2016}, + [5931] = {.lex_state = 2020}, + [5932] = {.lex_state = 100}, [5933] = {.lex_state = 0}, [5934] = {.lex_state = 0}, - [5935] = {.lex_state = 37}, - [5936] = {.lex_state = 337}, - [5937] = {.lex_state = 690}, - [5938] = {.lex_state = 2}, - [5939] = {.lex_state = 0}, - [5940] = {.lex_state = 0}, - [5941] = {.lex_state = 39}, - [5942] = {.lex_state = 0}, + [5935] = {.lex_state = 2}, + [5936] = {.lex_state = 0}, + [5937] = {.lex_state = 39}, + [5938] = {.lex_state = 690}, + [5939] = {.lex_state = 39}, + [5940] = {.lex_state = 2565}, + [5941] = {.lex_state = 0}, + [5942] = {.lex_state = 39}, [5943] = {.lex_state = 0}, - [5944] = {.lex_state = 39}, - [5945] = {.lex_state = 0, .external_lex_state = 3}, + [5944] = {.lex_state = 0, .external_lex_state = 3}, + [5945] = {.lex_state = 37}, [5946] = {.lex_state = 0}, [5947] = {.lex_state = 0}, [5948] = {.lex_state = 0}, - [5949] = {.lex_state = 0}, - [5950] = {.lex_state = 690}, + [5949] = {.lex_state = 334}, + [5950] = {.lex_state = 0, .external_lex_state = 3}, [5951] = {.lex_state = 39}, - [5952] = {.lex_state = 690}, - [5953] = {.lex_state = 334}, - [5954] = {.lex_state = 334}, - [5955] = {.lex_state = 1472}, - [5956] = {.lex_state = 0, .external_lex_state = 3}, - [5957] = {.lex_state = 337}, + [5952] = {.lex_state = 778}, + [5953] = {.lex_state = 39}, + [5954] = {.lex_state = 0}, + [5955] = {.lex_state = 0}, + [5956] = {.lex_state = 0}, + [5957] = {.lex_state = 0}, [5958] = {.lex_state = 0}, - [5959] = {.lex_state = 39}, - [5960] = {.lex_state = 39}, - [5961] = {.lex_state = 0}, - [5962] = {.lex_state = 0}, - [5963] = {.lex_state = 37}, + [5959] = {.lex_state = 0}, + [5960] = {.lex_state = 37}, + [5961] = {.lex_state = 39}, + [5962] = {.lex_state = 39}, + [5963] = {.lex_state = 735}, [5964] = {.lex_state = 0}, - [5965] = {.lex_state = 39}, - [5966] = {.lex_state = 39}, - [5967] = {.lex_state = 39}, - [5968] = {.lex_state = 1472}, - [5969] = {.lex_state = 334}, - [5970] = {.lex_state = 337}, - [5971] = {.lex_state = 39}, - [5972] = {(TSStateId)(-1),}, + [5965] = {.lex_state = 0, .external_lex_state = 3}, + [5966] = {.lex_state = 0}, + [5967] = {.lex_state = 337}, + [5968] = {.lex_state = 690}, + [5969] = {.lex_state = 39}, + [5970] = {.lex_state = 0}, + [5971] = {.lex_state = 337}, + [5972] = {.lex_state = 0}, + [5973] = {.lex_state = 2040}, + [5974] = {(TSStateId)(-1),}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -47158,33 +47163,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_end] = ACTIONS(1), }, [STATE(1)] = { - [sym_nu_script] = STATE(5800), + [sym_nu_script] = STATE(5814), [sym_shebang] = STATE(49), - [sym__block_body_statement] = STATE(4788), - [sym__declaration] = STATE(5214), - [sym_decl_alias] = STATE(4985), - [sym_stmt_let] = STATE(4995), - [sym_stmt_mut] = STATE(4995), - [sym_stmt_const] = STATE(4995), - [sym_assignment] = STATE(4995), - [sym__mutable_assignment_pattern] = STATE(5076), - [sym__statement] = STATE(5214), - [sym_pipeline] = STATE(4995), - [sym__block_body] = STATE(5819), + [sym__block_body_statement] = STATE(4725), + [sym__declaration] = STATE(4988), + [sym_decl_alias] = STATE(5029), + [sym_stmt_let] = STATE(5031), + [sym_stmt_mut] = STATE(5031), + [sym_stmt_const] = STATE(5031), + [sym_assignment] = STATE(5031), + [sym__mutable_assignment_pattern] = STATE(5219), + [sym__statement] = STATE(4988), + [sym_pipeline] = STATE(5031), + [sym__block_body] = STATE(5941), [sym_cmd_identifier] = STATE(3604), - [aux_sym__repeat_newline] = STATE(5119), - [sym_attribute_list] = STATE(5177), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4985), - [sym_decl_export] = STATE(4985), - [sym_decl_extern] = STATE(4985), - [sym_decl_module] = STATE(4985), - [sym_decl_use] = STATE(4985), - [sym__ctrl_statement] = STATE(4995), + [aux_sym__repeat_newline] = STATE(4998), + [sym_attribute_list] = STATE(5010), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5029), + [sym_decl_export] = STATE(5029), + [sym_decl_extern] = STATE(5029), + [sym_decl_module] = STATE(5029), + [sym_decl_use] = STATE(5029), + [sym__ctrl_statement] = STATE(5031), [sym__ctrl_expression] = STATE(4041), - [sym_ctrl_for] = STATE(4996), - [sym_ctrl_loop] = STATE(4996), - [sym_ctrl_while] = STATE(4996), + [sym_ctrl_for] = STATE(5026), + [sym_ctrl_loop] = STATE(5026), + [sym_ctrl_while] = STATE(5026), [sym_ctrl_if] = STATE(3929), [sym_ctrl_match] = STATE(3929), [sym_ctrl_try] = STATE(3929), @@ -47220,13 +47225,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(1357), [sym_val_table] = STATE(1357), [sym_val_closure] = STATE(1357), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(4041), [sym_comment] = STATE(1), [aux_sym_pipeline_repeat1] = STATE(214), [aux_sym__block_body_repeat1] = STATE(101), [aux_sym__block_body_repeat2] = STATE(109), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(313), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_POUND_BANG] = ACTIONS(7), @@ -47290,32 +47295,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(105), }, [STATE(2)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5613), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5673), [sym_cmd_identifier] = STATE(3307), [aux_sym__repeat_newline] = STATE(29), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), [sym_parameter_pipes] = STATE(68), - [sym__ctrl_statement] = STATE(4890), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -47352,18 +47357,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_list] = STATE(993), [sym_val_record] = STATE(993), [sym__spread_record] = STATE(1751), - [sym_record_body] = STATE(5628), + [sym_record_body] = STATE(5677), [sym_record_entry] = STATE(1697), - [sym__record_key] = STATE(5803), + [sym__record_key] = STATE(5804), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(2), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym__types_body_repeat1] = STATE(623), [aux_sym__match_pattern_record_repeat1] = STATE(678), [aux_sym_pipe_element_repeat2] = STATE(319), @@ -47434,32 +47439,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(3)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5730), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5508), [sym_cmd_identifier] = STATE(3314), [aux_sym__repeat_newline] = STATE(19), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), [sym_parameter_pipes] = STATE(93), - [sym__ctrl_statement] = STATE(4890), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -47471,12 +47476,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary] = STATE(994), [sym__expr_binary_expression] = STATE(2855), [sym_expr_parenthesized] = STATE(834), - [sym__spread_parenthesized] = STATE(5344), + [sym__spread_parenthesized] = STATE(5293), [sym_val_range] = STATE(994), [sym__value] = STATE(994), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(993), - [sym__spread_variable] = STATE(5350), + [sym__spread_variable] = STATE(5309), [sym_val_variable] = STATE(455), [sym_val_cellpath] = STATE(993), [sym_val_number] = STATE(1175), @@ -47495,19 +47500,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inter_double_quotes] = STATE(918), [sym_val_list] = STATE(993), [sym_val_record] = STATE(993), - [sym__spread_record] = STATE(5344), - [sym_record_body] = STATE(5735), - [sym_record_entry] = STATE(5174), - [sym__record_key] = STATE(5747), + [sym__spread_record] = STATE(5293), + [sym_record_body] = STATE(5518), + [sym_record_entry] = STATE(5228), + [sym__record_key] = STATE(5767), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(3), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym__types_body_repeat1] = STATE(623), [aux_sym_pipe_element_repeat2] = STATE(319), [aux_sym_record_body_repeat1] = STATE(723), @@ -47577,32 +47582,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(4)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5477), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5666), [sym_cmd_identifier] = STATE(3314), [aux_sym__repeat_newline] = STATE(25), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), [sym_parameter_pipes] = STATE(63), - [sym__ctrl_statement] = STATE(4890), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -47614,12 +47619,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary] = STATE(994), [sym__expr_binary_expression] = STATE(2855), [sym_expr_parenthesized] = STATE(834), - [sym__spread_parenthesized] = STATE(5344), + [sym__spread_parenthesized] = STATE(5293), [sym_val_range] = STATE(994), [sym__value] = STATE(994), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(993), - [sym__spread_variable] = STATE(5350), + [sym__spread_variable] = STATE(5309), [sym_val_variable] = STATE(455), [sym_val_cellpath] = STATE(993), [sym_val_number] = STATE(1175), @@ -47638,19 +47643,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inter_double_quotes] = STATE(918), [sym_val_list] = STATE(993), [sym_val_record] = STATE(993), - [sym__spread_record] = STATE(5344), - [sym_record_body] = STATE(5791), - [sym_record_entry] = STATE(5174), - [sym__record_key] = STATE(5747), + [sym__spread_record] = STATE(5293), + [sym_record_body] = STATE(5792), + [sym_record_entry] = STATE(5228), + [sym__record_key] = STATE(5767), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(4), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym__types_body_repeat1] = STATE(623), [aux_sym_pipe_element_repeat2] = STATE(319), [aux_sym_record_body_repeat1] = STATE(723), @@ -47720,32 +47725,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(5)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5526), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5699), [sym_cmd_identifier] = STATE(3314), [aux_sym__repeat_newline] = STATE(30), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), [sym_parameter_pipes] = STATE(56), - [sym__ctrl_statement] = STATE(4890), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -47757,12 +47762,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary] = STATE(994), [sym__expr_binary_expression] = STATE(2855), [sym_expr_parenthesized] = STATE(834), - [sym__spread_parenthesized] = STATE(5344), + [sym__spread_parenthesized] = STATE(5293), [sym_val_range] = STATE(994), [sym__value] = STATE(994), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(993), - [sym__spread_variable] = STATE(5350), + [sym__spread_variable] = STATE(5309), [sym_val_variable] = STATE(455), [sym_val_cellpath] = STATE(993), [sym_val_number] = STATE(1175), @@ -47781,19 +47786,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inter_double_quotes] = STATE(918), [sym_val_list] = STATE(993), [sym_val_record] = STATE(993), - [sym__spread_record] = STATE(5344), - [sym_record_body] = STATE(5681), - [sym_record_entry] = STATE(5174), - [sym__record_key] = STATE(5747), + [sym__spread_record] = STATE(5293), + [sym_record_body] = STATE(5698), + [sym_record_entry] = STATE(5228), + [sym__record_key] = STATE(5767), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(5), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym__types_body_repeat1] = STATE(623), [aux_sym_pipe_element_repeat2] = STATE(319), [aux_sym_record_body_repeat1] = STATE(723), @@ -47863,32 +47868,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(6)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5841), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5539), [sym_cmd_identifier] = STATE(3314), [aux_sym__repeat_newline] = STATE(20), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4890), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -47900,12 +47905,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary] = STATE(994), [sym__expr_binary_expression] = STATE(2855), [sym_expr_parenthesized] = STATE(834), - [sym__spread_parenthesized] = STATE(5344), + [sym__spread_parenthesized] = STATE(5293), [sym_val_range] = STATE(994), [sym__value] = STATE(994), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(993), - [sym__spread_variable] = STATE(5350), + [sym__spread_variable] = STATE(5309), [sym_val_variable] = STATE(455), [sym_val_cellpath] = STATE(993), [sym_val_number] = STATE(1175), @@ -47924,19 +47929,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inter_double_quotes] = STATE(918), [sym_val_list] = STATE(993), [sym_val_record] = STATE(993), - [sym__spread_record] = STATE(5344), - [sym_record_body] = STATE(5459), - [sym_record_entry] = STATE(5174), - [sym__record_key] = STATE(5747), + [sym__spread_record] = STATE(5293), + [sym_record_body] = STATE(5489), + [sym_record_entry] = STATE(5228), + [sym__record_key] = STATE(5767), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(6), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym__types_body_repeat1] = STATE(623), [aux_sym_pipe_element_repeat2] = STATE(319), [aux_sym_record_body_repeat1] = STATE(723), @@ -48006,32 +48011,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(7)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5513), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5747), [sym_cmd_identifier] = STATE(3314), [aux_sym__repeat_newline] = STATE(29), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), [sym_parameter_pipes] = STATE(68), - [sym__ctrl_statement] = STATE(4890), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -48043,12 +48048,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary] = STATE(994), [sym__expr_binary_expression] = STATE(2855), [sym_expr_parenthesized] = STATE(834), - [sym__spread_parenthesized] = STATE(5344), + [sym__spread_parenthesized] = STATE(5293), [sym_val_range] = STATE(994), [sym__value] = STATE(994), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(993), - [sym__spread_variable] = STATE(5350), + [sym__spread_variable] = STATE(5309), [sym_val_variable] = STATE(455), [sym_val_cellpath] = STATE(993), [sym_val_number] = STATE(1175), @@ -48067,19 +48072,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inter_double_quotes] = STATE(918), [sym_val_list] = STATE(993), [sym_val_record] = STATE(993), - [sym__spread_record] = STATE(5344), - [sym_record_body] = STATE(5628), - [sym_record_entry] = STATE(5174), - [sym__record_key] = STATE(5747), + [sym__spread_record] = STATE(5293), + [sym_record_body] = STATE(5677), + [sym_record_entry] = STATE(5228), + [sym__record_key] = STATE(5767), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(7), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym__types_body_repeat1] = STATE(623), [aux_sym_pipe_element_repeat2] = STATE(319), [aux_sym_record_body_repeat1] = STATE(723), @@ -48149,32 +48154,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(8)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5613), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5673), [sym_cmd_identifier] = STATE(3314), [aux_sym__repeat_newline] = STATE(29), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), [sym_parameter_pipes] = STATE(68), - [sym__ctrl_statement] = STATE(4890), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -48186,12 +48191,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary] = STATE(994), [sym__expr_binary_expression] = STATE(2855), [sym_expr_parenthesized] = STATE(834), - [sym__spread_parenthesized] = STATE(5344), + [sym__spread_parenthesized] = STATE(5293), [sym_val_range] = STATE(994), [sym__value] = STATE(994), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(993), - [sym__spread_variable] = STATE(5350), + [sym__spread_variable] = STATE(5309), [sym_val_variable] = STATE(455), [sym_val_cellpath] = STATE(993), [sym_val_number] = STATE(1175), @@ -48210,19 +48215,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inter_double_quotes] = STATE(918), [sym_val_list] = STATE(993), [sym_val_record] = STATE(993), - [sym__spread_record] = STATE(5344), - [sym_record_body] = STATE(5628), - [sym_record_entry] = STATE(5174), - [sym__record_key] = STATE(5747), + [sym__spread_record] = STATE(5293), + [sym_record_body] = STATE(5677), + [sym_record_entry] = STATE(5228), + [sym__record_key] = STATE(5767), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(8), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym__types_body_repeat1] = STATE(623), [aux_sym_pipe_element_repeat2] = STATE(319), [aux_sym_record_body_repeat1] = STATE(723), @@ -48292,32 +48297,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(9)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5737), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5729), [sym_cmd_identifier] = STATE(3314), [aux_sym__repeat_newline] = STATE(20), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4890), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -48329,12 +48334,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary] = STATE(994), [sym__expr_binary_expression] = STATE(2855), [sym_expr_parenthesized] = STATE(834), - [sym__spread_parenthesized] = STATE(5344), + [sym__spread_parenthesized] = STATE(5293), [sym_val_range] = STATE(994), [sym__value] = STATE(994), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(993), - [sym__spread_variable] = STATE(5350), + [sym__spread_variable] = STATE(5309), [sym_val_variable] = STATE(455), [sym_val_cellpath] = STATE(993), [sym_val_number] = STATE(1175), @@ -48353,19 +48358,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inter_double_quotes] = STATE(918), [sym_val_list] = STATE(993), [sym_val_record] = STATE(993), - [sym__spread_record] = STATE(5344), - [sym_record_body] = STATE(5459), - [sym_record_entry] = STATE(5174), - [sym__record_key] = STATE(5747), + [sym__spread_record] = STATE(5293), + [sym_record_body] = STATE(5489), + [sym_record_entry] = STATE(5228), + [sym__record_key] = STATE(5767), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(9), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym__types_body_repeat1] = STATE(623), [aux_sym_pipe_element_repeat2] = STATE(319), [aux_sym_record_body_repeat1] = STATE(723), @@ -48435,32 +48440,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(10)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5943), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5947), [sym_cmd_identifier] = STATE(3314), [aux_sym__repeat_newline] = STATE(21), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), [sym_parameter_pipes] = STATE(50), - [sym__ctrl_statement] = STATE(4890), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -48472,12 +48477,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary] = STATE(994), [sym__expr_binary_expression] = STATE(2855), [sym_expr_parenthesized] = STATE(834), - [sym__spread_parenthesized] = STATE(5344), + [sym__spread_parenthesized] = STATE(5293), [sym_val_range] = STATE(994), [sym__value] = STATE(994), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(993), - [sym__spread_variable] = STATE(5350), + [sym__spread_variable] = STATE(5309), [sym_val_variable] = STATE(455), [sym_val_cellpath] = STATE(993), [sym_val_number] = STATE(1175), @@ -48496,19 +48501,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inter_double_quotes] = STATE(918), [sym_val_list] = STATE(993), [sym_val_record] = STATE(993), - [sym__spread_record] = STATE(5344), - [sym_record_body] = STATE(5946), - [sym_record_entry] = STATE(5174), - [sym__record_key] = STATE(5747), + [sym__spread_record] = STATE(5293), + [sym_record_body] = STATE(5954), + [sym_record_entry] = STATE(5228), + [sym__record_key] = STATE(5767), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(10), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym__types_body_repeat1] = STATE(623), [aux_sym_pipe_element_repeat2] = STATE(319), [aux_sym_record_body_repeat1] = STATE(723), @@ -48578,32 +48583,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(11)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5577), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5529), [sym_cmd_identifier] = STATE(3314), [aux_sym__repeat_newline] = STATE(23), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), [sym_parameter_pipes] = STATE(57), - [sym__ctrl_statement] = STATE(4890), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -48615,12 +48620,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary] = STATE(994), [sym__expr_binary_expression] = STATE(2855), [sym_expr_parenthesized] = STATE(834), - [sym__spread_parenthesized] = STATE(5344), + [sym__spread_parenthesized] = STATE(5293), [sym_val_range] = STATE(994), [sym__value] = STATE(994), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(993), - [sym__spread_variable] = STATE(5350), + [sym__spread_variable] = STATE(5309), [sym_val_variable] = STATE(455), [sym_val_cellpath] = STATE(993), [sym_val_number] = STATE(1175), @@ -48639,19 +48644,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inter_double_quotes] = STATE(918), [sym_val_list] = STATE(993), [sym_val_record] = STATE(993), - [sym__spread_record] = STATE(5344), - [sym_record_body] = STATE(5607), - [sym_record_entry] = STATE(5174), - [sym__record_key] = STATE(5747), + [sym__spread_record] = STATE(5293), + [sym_record_body] = STATE(5538), + [sym_record_entry] = STATE(5228), + [sym__record_key] = STATE(5767), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(11), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym__types_body_repeat1] = STATE(623), [aux_sym_pipe_element_repeat2] = STATE(319), [aux_sym_record_body_repeat1] = STATE(723), @@ -48721,32 +48726,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(12)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5477), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5666), [sym_cmd_identifier] = STATE(3314), [aux_sym__repeat_newline] = STATE(25), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), [sym_parameter_pipes] = STATE(63), - [sym__ctrl_statement] = STATE(4890), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -48758,12 +48763,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary] = STATE(994), [sym__expr_binary_expression] = STATE(2855), [sym_expr_parenthesized] = STATE(834), - [sym__spread_parenthesized] = STATE(5344), + [sym__spread_parenthesized] = STATE(5293), [sym_val_range] = STATE(994), [sym__value] = STATE(994), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(993), - [sym__spread_variable] = STATE(5350), + [sym__spread_variable] = STATE(5309), [sym_val_variable] = STATE(455), [sym_val_cellpath] = STATE(993), [sym_val_number] = STATE(1175), @@ -48782,19 +48787,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inter_double_quotes] = STATE(918), [sym_val_list] = STATE(993), [sym_val_record] = STATE(993), - [sym__spread_record] = STATE(5344), - [sym_record_body] = STATE(5483), - [sym_record_entry] = STATE(5174), - [sym__record_key] = STATE(5747), + [sym__spread_record] = STATE(5293), + [sym_record_body] = STATE(5672), + [sym_record_entry] = STATE(5228), + [sym__record_key] = STATE(5767), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(12), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym__types_body_repeat1] = STATE(623), [aux_sym_pipe_element_repeat2] = STATE(319), [aux_sym_record_body_repeat1] = STATE(723), @@ -48864,32 +48869,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(13)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5673), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5746), [sym_cmd_identifier] = STATE(3314), [aux_sym__repeat_newline] = STATE(28), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), [sym_parameter_pipes] = STATE(69), - [sym__ctrl_statement] = STATE(4890), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -48901,12 +48906,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary] = STATE(994), [sym__expr_binary_expression] = STATE(2855), [sym_expr_parenthesized] = STATE(834), - [sym__spread_parenthesized] = STATE(5344), + [sym__spread_parenthesized] = STATE(5293), [sym_val_range] = STATE(994), [sym__value] = STATE(994), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(993), - [sym__spread_variable] = STATE(5350), + [sym__spread_variable] = STATE(5309), [sym_val_variable] = STATE(455), [sym_val_cellpath] = STATE(993), [sym_val_number] = STATE(1175), @@ -48925,19 +48930,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inter_double_quotes] = STATE(918), [sym_val_list] = STATE(993), [sym_val_record] = STATE(993), - [sym__spread_record] = STATE(5344), - [sym_record_body] = STATE(5678), - [sym_record_entry] = STATE(5174), - [sym__record_key] = STATE(5747), + [sym__spread_record] = STATE(5293), + [sym_record_body] = STATE(5749), + [sym_record_entry] = STATE(5228), + [sym__record_key] = STATE(5767), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(13), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym__types_body_repeat1] = STATE(623), [aux_sym_pipe_element_repeat2] = STATE(319), [aux_sym_record_body_repeat1] = STATE(723), @@ -49007,32 +49012,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(14)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5775), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5817), [sym_cmd_identifier] = STATE(3314), [aux_sym__repeat_newline] = STATE(26), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), [sym_parameter_pipes] = STATE(75), - [sym__ctrl_statement] = STATE(4890), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -49044,12 +49049,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary] = STATE(994), [sym__expr_binary_expression] = STATE(2855), [sym_expr_parenthesized] = STATE(834), - [sym__spread_parenthesized] = STATE(5344), + [sym__spread_parenthesized] = STATE(5293), [sym_val_range] = STATE(994), [sym__value] = STATE(994), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(993), - [sym__spread_variable] = STATE(5350), + [sym__spread_variable] = STATE(5309), [sym_val_variable] = STATE(455), [sym_val_cellpath] = STATE(993), [sym_val_number] = STATE(1175), @@ -49068,19 +49073,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inter_double_quotes] = STATE(918), [sym_val_list] = STATE(993), [sym_val_record] = STATE(993), - [sym__spread_record] = STATE(5344), - [sym_record_body] = STATE(5778), - [sym_record_entry] = STATE(5174), - [sym__record_key] = STATE(5747), + [sym__spread_record] = STATE(5293), + [sym_record_body] = STATE(5822), + [sym_record_entry] = STATE(5228), + [sym__record_key] = STATE(5767), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(14), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym__types_body_repeat1] = STATE(623), [aux_sym_pipe_element_repeat2] = STATE(319), [aux_sym_record_body_repeat1] = STATE(723), @@ -49150,32 +49155,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(15)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5706), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5803), [sym_cmd_identifier] = STATE(3314), [aux_sym__repeat_newline] = STATE(30), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), [sym_parameter_pipes] = STATE(56), - [sym__ctrl_statement] = STATE(4890), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -49187,12 +49192,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary] = STATE(994), [sym__expr_binary_expression] = STATE(2855), [sym_expr_parenthesized] = STATE(834), - [sym__spread_parenthesized] = STATE(5344), + [sym__spread_parenthesized] = STATE(5293), [sym_val_range] = STATE(994), [sym__value] = STATE(994), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(993), - [sym__spread_variable] = STATE(5350), + [sym__spread_variable] = STATE(5309), [sym_val_variable] = STATE(455), [sym_val_cellpath] = STATE(993), [sym_val_number] = STATE(1175), @@ -49211,19 +49216,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inter_double_quotes] = STATE(918), [sym_val_list] = STATE(993), [sym_val_record] = STATE(993), - [sym__spread_record] = STATE(5344), - [sym_record_body] = STATE(5688), - [sym_record_entry] = STATE(5174), - [sym__record_key] = STATE(5747), + [sym__spread_record] = STATE(5293), + [sym_record_body] = STATE(5690), + [sym_record_entry] = STATE(5228), + [sym__record_key] = STATE(5767), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(15), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym__types_body_repeat1] = STATE(623), [aux_sym_pipe_element_repeat2] = STATE(319), [aux_sym_record_body_repeat1] = STATE(723), @@ -49293,32 +49298,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(16)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5841), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5539), [sym_cmd_identifier] = STATE(3314), [aux_sym__repeat_newline] = STATE(20), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4890), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -49330,12 +49335,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary] = STATE(994), [sym__expr_binary_expression] = STATE(2855), [sym_expr_parenthesized] = STATE(834), - [sym__spread_parenthesized] = STATE(5344), + [sym__spread_parenthesized] = STATE(5293), [sym_val_range] = STATE(994), [sym__value] = STATE(994), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(993), - [sym__spread_variable] = STATE(5350), + [sym__spread_variable] = STATE(5309), [sym_val_variable] = STATE(455), [sym_val_cellpath] = STATE(993), [sym_val_number] = STATE(1175), @@ -49354,19 +49359,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inter_double_quotes] = STATE(918), [sym_val_list] = STATE(993), [sym_val_record] = STATE(993), - [sym__spread_record] = STATE(5344), - [sym_record_body] = STATE(5784), - [sym_record_entry] = STATE(5174), - [sym__record_key] = STATE(5747), + [sym__spread_record] = STATE(5293), + [sym_record_body] = STATE(5785), + [sym_record_entry] = STATE(5228), + [sym__record_key] = STATE(5767), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(16), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym__types_body_repeat1] = STATE(623), [aux_sym_pipe_element_repeat2] = STATE(319), [aux_sym_record_body_repeat1] = STATE(723), @@ -49436,32 +49441,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(17)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5706), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5803), [sym_cmd_identifier] = STATE(3314), [aux_sym__repeat_newline] = STATE(30), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), [sym_parameter_pipes] = STATE(56), - [sym__ctrl_statement] = STATE(4890), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -49473,12 +49478,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary] = STATE(994), [sym__expr_binary_expression] = STATE(2855), [sym_expr_parenthesized] = STATE(834), - [sym__spread_parenthesized] = STATE(5344), + [sym__spread_parenthesized] = STATE(5293), [sym_val_range] = STATE(994), [sym__value] = STATE(994), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(993), - [sym__spread_variable] = STATE(5350), + [sym__spread_variable] = STATE(5309), [sym_val_variable] = STATE(455), [sym_val_cellpath] = STATE(993), [sym_val_number] = STATE(1175), @@ -49497,19 +49502,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inter_double_quotes] = STATE(918), [sym_val_list] = STATE(993), [sym_val_record] = STATE(993), - [sym__spread_record] = STATE(5344), - [sym_record_body] = STATE(5681), - [sym_record_entry] = STATE(5174), - [sym__record_key] = STATE(5747), + [sym__spread_record] = STATE(5293), + [sym_record_body] = STATE(5698), + [sym_record_entry] = STATE(5228), + [sym__record_key] = STATE(5767), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(17), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym__types_body_repeat1] = STATE(623), [aux_sym_pipe_element_repeat2] = STATE(319), [aux_sym_record_body_repeat1] = STATE(723), @@ -49579,32 +49584,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(18)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5526), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5699), [sym_cmd_identifier] = STATE(3455), [aux_sym__repeat_newline] = STATE(30), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), [sym_parameter_pipes] = STATE(56), - [sym__ctrl_statement] = STATE(4890), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -49640,13 +49645,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(18), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -49710,32 +49715,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(19)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5754), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5615), [sym_cmd_identifier] = STATE(3455), [aux_sym__repeat_newline] = STATE(1349), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), [sym_parameter_pipes] = STATE(44), - [sym__ctrl_statement] = STATE(4890), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -49771,13 +49776,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(19), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -49841,32 +49846,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(20)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5830), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5959), [sym_cmd_identifier] = STATE(3455), [aux_sym__repeat_newline] = STATE(1349), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), [sym_parameter_pipes] = STATE(53), - [sym__ctrl_statement] = STATE(4890), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -49902,13 +49907,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(20), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -49972,32 +49977,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(21)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5962), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5471), [sym_cmd_identifier] = STATE(3455), [aux_sym__repeat_newline] = STATE(1349), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), [sym_parameter_pipes] = STATE(52), - [sym__ctrl_statement] = STATE(4890), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -50033,13 +50038,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(21), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -50103,32 +50108,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(22)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5841), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5539), [sym_cmd_identifier] = STATE(3455), [aux_sym__repeat_newline] = STATE(20), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4890), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -50164,13 +50169,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(22), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -50234,32 +50239,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(23)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5741), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5563), [sym_cmd_identifier] = STATE(3455), [aux_sym__repeat_newline] = STATE(1349), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), [sym_parameter_pipes] = STATE(59), - [sym__ctrl_statement] = STATE(4890), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -50295,13 +50300,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(23), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -50365,32 +50370,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(24)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5737), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5729), [sym_cmd_identifier] = STATE(3455), [aux_sym__repeat_newline] = STATE(20), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4890), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -50426,13 +50431,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(24), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -50496,32 +50501,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(25)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5541), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5707), [sym_cmd_identifier] = STATE(3455), [aux_sym__repeat_newline] = STATE(1349), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), [sym_parameter_pipes] = STATE(65), - [sym__ctrl_statement] = STATE(4890), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -50557,13 +50562,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(25), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -50627,32 +50632,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(26)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5808), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5840), [sym_cmd_identifier] = STATE(3455), [aux_sym__repeat_newline] = STATE(1349), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), [sym_parameter_pipes] = STATE(77), - [sym__ctrl_statement] = STATE(4890), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -50688,13 +50693,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(26), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -50758,32 +50763,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(27)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5706), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5803), [sym_cmd_identifier] = STATE(3455), [aux_sym__repeat_newline] = STATE(30), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), [sym_parameter_pipes] = STATE(56), - [sym__ctrl_statement] = STATE(4890), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -50819,13 +50824,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(27), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -50889,32 +50894,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(28)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5703), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5765), [sym_cmd_identifier] = STATE(3455), [aux_sym__repeat_newline] = STATE(1349), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), [sym_parameter_pipes] = STATE(71), - [sym__ctrl_statement] = STATE(4890), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -50950,13 +50955,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(28), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -51020,32 +51025,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(29)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5719), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5740), [sym_cmd_identifier] = STATE(3455), [aux_sym__repeat_newline] = STATE(1349), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), [sym_parameter_pipes] = STATE(73), - [sym__ctrl_statement] = STATE(4890), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -51081,13 +51086,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(29), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -51151,32 +51156,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(30)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5825), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5675), [sym_cmd_identifier] = STATE(3455), [aux_sym__repeat_newline] = STATE(1349), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), [sym_parameter_pipes] = STATE(90), - [sym__ctrl_statement] = STATE(4890), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -51212,13 +51217,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(30), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -51282,29 +51287,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(31)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -51316,7 +51321,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5941), + [sym__parenthesized_body] = STATE(5942), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -51341,12 +51346,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(31), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -51411,29 +51416,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(32)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -51445,7 +51450,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5450), + [sym__parenthesized_body] = STATE(5667), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -51470,12 +51475,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(32), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -51540,29 +51545,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(33)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -51574,7 +51579,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5663), + [sym__parenthesized_body] = STATE(5743), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -51599,12 +51604,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(33), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -51669,29 +51674,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(34)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -51703,7 +51708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5471), + [sym__parenthesized_body] = STATE(5659), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -51728,12 +51733,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(34), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -51798,29 +51803,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(35)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -51832,7 +51837,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5770), + [sym__parenthesized_body] = STATE(5812), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -51857,12 +51862,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(35), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -51927,29 +51932,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(36)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -51961,7 +51966,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5470), + [sym__parenthesized_body] = STATE(5472), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -51986,12 +51991,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(36), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -52056,29 +52061,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(37)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -52090,7 +52095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5944), + [sym__parenthesized_body] = STATE(5962), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -52115,12 +52120,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(37), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -52185,29 +52190,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(38)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -52219,7 +52224,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5490), + [sym__parenthesized_body] = STATE(5492), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -52244,12 +52249,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(38), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -52314,29 +52319,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(39)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -52348,7 +52353,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5582), + [sym__parenthesized_body] = STATE(5665), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -52373,12 +52378,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(39), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -52443,29 +52448,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(40)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -52477,7 +52482,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5786), + [sym__parenthesized_body] = STATE(5787), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -52502,12 +52507,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(40), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -52572,29 +52577,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(41)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -52606,7 +52611,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5462), + [sym__parenthesized_body] = STATE(5816), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -52631,12 +52636,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(41), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -52701,29 +52706,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(42)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -52735,7 +52740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5727), + [sym__parenthesized_body] = STATE(5502), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -52760,12 +52765,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(42), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -52830,29 +52835,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(43)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -52864,7 +52869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5480), + [sym__parenthesized_body] = STATE(5482), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -52889,12 +52894,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(43), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -52958,30 +52963,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(44)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5773), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5680), [sym_cmd_identifier] = STATE(3455), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -53017,13 +53022,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(44), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -53086,30 +53091,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(45)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5934), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5970), [sym_cmd_identifier] = STATE(3455), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -53145,13 +53150,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(45), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -53214,29 +53219,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(46)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -53248,7 +53253,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5482), + [sym__parenthesized_body] = STATE(5773), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -53273,12 +53278,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(46), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -53342,29 +53347,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(47)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -53376,7 +53381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5569), + [sym__parenthesized_body] = STATE(5527), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -53401,12 +53406,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(47), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -53470,29 +53475,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(48)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -53504,7 +53509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5960), + [sym__parenthesized_body] = STATE(5468), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -53529,12 +53534,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(48), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -53598,30 +53603,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(49)] = { - [sym__block_body_statement] = STATE(4788), - [sym__declaration] = STATE(5214), - [sym_decl_alias] = STATE(4985), - [sym_stmt_let] = STATE(4995), - [sym_stmt_mut] = STATE(4995), - [sym_stmt_const] = STATE(4995), - [sym_assignment] = STATE(4995), - [sym__mutable_assignment_pattern] = STATE(5076), - [sym__statement] = STATE(5214), - [sym_pipeline] = STATE(4995), - [sym__block_body] = STATE(5686), + [sym__block_body_statement] = STATE(4725), + [sym__declaration] = STATE(4988), + [sym_decl_alias] = STATE(5029), + [sym_stmt_let] = STATE(5031), + [sym_stmt_mut] = STATE(5031), + [sym_stmt_const] = STATE(5031), + [sym_assignment] = STATE(5031), + [sym__mutable_assignment_pattern] = STATE(5219), + [sym__statement] = STATE(4988), + [sym_pipeline] = STATE(5031), + [sym__block_body] = STATE(5728), [sym_cmd_identifier] = STATE(3604), - [sym_attribute_list] = STATE(5177), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4985), - [sym_decl_export] = STATE(4985), - [sym_decl_extern] = STATE(4985), - [sym_decl_module] = STATE(4985), - [sym_decl_use] = STATE(4985), - [sym__ctrl_statement] = STATE(4995), + [sym_attribute_list] = STATE(5010), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5029), + [sym_decl_export] = STATE(5029), + [sym_decl_extern] = STATE(5029), + [sym_decl_module] = STATE(5029), + [sym_decl_use] = STATE(5029), + [sym__ctrl_statement] = STATE(5031), [sym__ctrl_expression] = STATE(4041), - [sym_ctrl_for] = STATE(4996), - [sym_ctrl_loop] = STATE(4996), - [sym_ctrl_while] = STATE(4996), + [sym_ctrl_for] = STATE(5026), + [sym_ctrl_loop] = STATE(5026), + [sym_ctrl_while] = STATE(5026), [sym_ctrl_if] = STATE(3929), [sym_ctrl_match] = STATE(3929), [sym_ctrl_try] = STATE(3929), @@ -53657,13 +53662,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(1357), [sym_val_table] = STATE(1357), [sym_val_closure] = STATE(1357), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(4041), [sym_comment] = STATE(49), [aux_sym_pipeline_repeat1] = STATE(214), [aux_sym__block_body_repeat1] = STATE(101), [aux_sym__block_body_repeat2] = STATE(109), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(313), [ts_builtin_sym_end] = ACTIONS(447), [anon_sym_export] = ACTIONS(9), @@ -53726,30 +53731,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(105), }, [STATE(50)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5964), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5475), [sym_cmd_identifier] = STATE(3455), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -53785,13 +53790,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(50), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -53854,29 +53859,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(51)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -53888,7 +53893,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5966), + [sym__parenthesized_body] = STATE(5479), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -53913,12 +53918,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(51), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -53982,30 +53987,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(52)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5746), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5487), [sym_cmd_identifier] = STATE(3455), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -54041,13 +54046,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(52), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -54110,30 +54115,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(53)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5540), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5609), [sym_cmd_identifier] = STATE(3455), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -54169,13 +54174,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(53), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -54238,29 +54243,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(54)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -54272,7 +54277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5967), + [sym__parenthesized_body] = STATE(5507), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -54297,12 +54302,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(54), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -54366,29 +54371,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(55)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -54400,7 +54405,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5471), + [sym__parenthesized_body] = STATE(5659), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -54425,12 +54430,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(55), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -54494,30 +54499,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(56)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5940), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5723), [sym_cmd_identifier] = STATE(3455), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -54553,13 +54558,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(56), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -54622,30 +54627,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(57)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5755), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5571), [sym_cmd_identifier] = STATE(3455), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -54681,13 +54686,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(57), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -54750,29 +54755,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(58)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -54784,7 +54789,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5768), + [sym__parenthesized_body] = STATE(5576), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -54809,12 +54814,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(58), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -54878,30 +54883,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(59)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5802), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5593), [sym_cmd_identifier] = STATE(3455), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -54937,13 +54942,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(59), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -55006,29 +55011,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(60)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -55040,7 +55045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5484), + [sym__parenthesized_body] = STATE(5501), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -55065,12 +55070,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(60), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -55134,30 +55139,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(61)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5839), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5462), [sym_cmd_identifier] = STATE(3455), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -55193,13 +55198,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(61), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -55262,29 +55267,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(62)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -55296,7 +55301,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5941), + [sym__parenthesized_body] = STATE(5942), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -55321,12 +55326,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(62), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -55390,30 +55395,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(63)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5549), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5709), [sym_cmd_identifier] = STATE(3455), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -55449,13 +55454,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(63), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -55518,29 +55523,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(64)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -55552,7 +55557,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5551), + [sym__parenthesized_body] = STATE(5713), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -55577,12 +55582,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(64), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -55646,30 +55651,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(65)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5567), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5718), [sym_cmd_identifier] = STATE(3455), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -55705,13 +55710,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(65), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -55774,29 +55779,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(66)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -55808,7 +55813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5667), + [sym__parenthesized_body] = STATE(5702), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -55833,12 +55838,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(66), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -55902,29 +55907,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(67)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -55936,7 +55941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5760), + [sym__parenthesized_body] = STATE(5630), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -55961,12 +55966,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(67), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -56030,30 +56035,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(68)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5726), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5750), [sym_cmd_identifier] = STATE(3455), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -56089,13 +56094,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(68), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -56158,30 +56163,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(69)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5708), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5768), [sym_cmd_identifier] = STATE(3455), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -56217,13 +56222,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(69), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -56286,29 +56291,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(70)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -56320,7 +56325,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5711), + [sym__parenthesized_body] = STATE(5770), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -56345,12 +56350,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(70), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -56414,30 +56419,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(71)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5715), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5775), [sym_cmd_identifier] = STATE(3455), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -56473,13 +56478,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(71), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -56542,29 +56547,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(72)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -56576,7 +56581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5734), + [sym__parenthesized_body] = STATE(5756), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -56601,12 +56606,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(72), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -56670,30 +56675,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(73)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5478), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5964), [sym_cmd_identifier] = STATE(3455), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -56729,13 +56734,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(73), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -56798,29 +56803,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(74)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -56832,7 +56837,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5462), + [sym__parenthesized_body] = STATE(5816), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -56857,12 +56862,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(74), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -56926,30 +56931,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(75)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5811), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5843), [sym_cmd_identifier] = STATE(3455), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -56985,13 +56990,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(75), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -57054,29 +57059,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(76)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -57088,7 +57093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5813), + [sym__parenthesized_body] = STATE(5912), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -57113,12 +57118,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(76), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -57182,30 +57187,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(77)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5821), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5936), [sym_cmd_identifier] = STATE(3455), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -57241,13 +57246,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(77), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -57310,30 +57315,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(78)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5731), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5640), [sym_cmd_identifier] = STATE(3455), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -57369,13 +57374,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(78), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -57438,29 +57443,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(79)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -57472,7 +57477,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5456), + [sym__parenthesized_body] = STATE(5458), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -57497,12 +57502,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(79), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -57566,29 +57571,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(80)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -57600,7 +57605,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5491), + [sym__parenthesized_body] = STATE(5464), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -57625,12 +57630,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(80), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -57694,29 +57699,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(81)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -57728,7 +57733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5496), + [sym__parenthesized_body] = STATE(5498), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -57753,12 +57758,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(81), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -57822,29 +57827,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(82)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -57856,7 +57861,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5510), + [sym__parenthesized_body] = STATE(5512), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -57881,12 +57886,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(82), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -57950,29 +57955,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(83)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -57984,7 +57989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5524), + [sym__parenthesized_body] = STATE(5526), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -58009,12 +58014,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(83), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -58078,29 +58083,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(84)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -58112,7 +58117,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5535), + [sym__parenthesized_body] = STATE(5537), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -58137,12 +58142,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(84), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -58206,29 +58211,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(85)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -58240,7 +58245,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5545), + [sym__parenthesized_body] = STATE(5547), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -58265,12 +58270,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(85), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -58334,29 +58339,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(86)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -58368,7 +58373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5555), + [sym__parenthesized_body] = STATE(5557), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -58393,12 +58398,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(86), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -58462,29 +58467,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(87)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -58496,7 +58501,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5565), + [sym__parenthesized_body] = STATE(5567), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -58521,12 +58526,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(87), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -58590,29 +58595,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(88)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -58624,7 +58629,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5582), + [sym__parenthesized_body] = STATE(5665), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -58649,12 +58654,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(88), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -58718,29 +58723,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(89)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -58752,7 +58757,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5751), + [sym__parenthesized_body] = STATE(5605), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -58777,12 +58782,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(89), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -58846,30 +58851,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(90)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5685), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5710), [sym_cmd_identifier] = STATE(3455), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -58905,13 +58910,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(90), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -58974,29 +58979,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(91)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -59008,7 +59013,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5450), + [sym__parenthesized_body] = STATE(5667), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -59033,12 +59038,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(91), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -59102,29 +59107,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(92)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -59136,7 +59141,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5786), + [sym__parenthesized_body] = STATE(5787), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -59161,12 +59166,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(92), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -59230,30 +59235,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(93)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5758), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5625), [sym_cmd_identifier] = STATE(3455), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -59289,13 +59294,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(93), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(100), [aux_sym__block_body_repeat2] = STATE(111), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -59358,29 +59363,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(94)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -59392,7 +59397,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5609), + [sym__parenthesized_body] = STATE(5657), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -59417,12 +59422,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(94), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -59486,30 +59491,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(95)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5763), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5824), [sym_cmd_identifier] = STATE(3455), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -59545,13 +59550,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(95), [aux_sym_pipeline_repeat1] = STATE(216), [aux_sym__block_body_repeat1] = STATE(99), [aux_sym__block_body_repeat2] = STATE(107), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(308), [anon_sym_export] = ACTIONS(539), [anon_sym_alias] = ACTIONS(541), @@ -59613,29 +59618,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(96)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -59647,7 +59652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5682), + [sym__parenthesized_body] = STATE(5802), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -59672,12 +59677,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(96), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -59740,29 +59745,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(97)] = { - [sym__block_body_statement_parenthesized] = STATE(4468), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4471), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -59774,7 +59779,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_binary_parenthesized] = STATE(1178), [sym__expr_binary_expression_parenthesized] = STATE(2723), [sym_expr_parenthesized] = STATE(835), - [sym__parenthesized_body] = STATE(5559), + [sym__parenthesized_body] = STATE(5483), [sym_val_range] = STATE(1178), [sym__value] = STATE(1178), [sym_val_nothing] = STATE(993), @@ -59799,12 +59804,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(97), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(110), [anon_sym_export] = ACTIONS(367), @@ -59867,29 +59872,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(98)] = { - [sym__block_body_statement_parenthesized] = STATE(4447), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4450), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -59925,12 +59930,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(98), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), [aux_sym__block_body_repeat1] = STATE(1303), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(106), [anon_sym_export] = ACTIONS(367), @@ -59994,29 +59999,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(99)] = { - [sym__block_body_statement] = STATE(4678), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), + [sym__block_body_statement] = STATE(4689), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), [sym_cmd_identifier] = STATE(3455), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -60052,13 +60057,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(99), [aux_sym_pipeline_repeat1] = STATE(216), [aux_sym__block_body_repeat1] = STATE(1303), [aux_sym__block_body_repeat2] = STATE(108), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(308), [anon_sym_export] = ACTIONS(539), [anon_sym_alias] = ACTIONS(541), @@ -60121,29 +60126,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(100)] = { - [sym__block_body_statement] = STATE(4678), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), + [sym__block_body_statement] = STATE(4689), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), [sym_cmd_identifier] = STATE(3455), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -60179,13 +60184,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(100), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat1] = STATE(1303), [aux_sym__block_body_repeat2] = STATE(112), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -60248,29 +60253,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(101)] = { - [sym__block_body_statement] = STATE(4789), - [sym__declaration] = STATE(5214), - [sym_decl_alias] = STATE(4985), - [sym_stmt_let] = STATE(4995), - [sym_stmt_mut] = STATE(4995), - [sym_stmt_const] = STATE(4995), - [sym_assignment] = STATE(4995), - [sym__mutable_assignment_pattern] = STATE(5076), - [sym__statement] = STATE(5214), - [sym_pipeline] = STATE(4995), + [sym__block_body_statement] = STATE(4977), + [sym__declaration] = STATE(4988), + [sym_decl_alias] = STATE(5029), + [sym_stmt_let] = STATE(5031), + [sym_stmt_mut] = STATE(5031), + [sym_stmt_const] = STATE(5031), + [sym_assignment] = STATE(5031), + [sym__mutable_assignment_pattern] = STATE(5219), + [sym__statement] = STATE(4988), + [sym_pipeline] = STATE(5031), [sym_cmd_identifier] = STATE(3604), - [sym_attribute_list] = STATE(5177), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4985), - [sym_decl_export] = STATE(4985), - [sym_decl_extern] = STATE(4985), - [sym_decl_module] = STATE(4985), - [sym_decl_use] = STATE(4985), - [sym__ctrl_statement] = STATE(4995), + [sym_attribute_list] = STATE(5010), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5029), + [sym_decl_export] = STATE(5029), + [sym_decl_extern] = STATE(5029), + [sym_decl_module] = STATE(5029), + [sym_decl_use] = STATE(5029), + [sym__ctrl_statement] = STATE(5031), [sym__ctrl_expression] = STATE(4041), - [sym_ctrl_for] = STATE(4996), - [sym_ctrl_loop] = STATE(4996), - [sym_ctrl_while] = STATE(4996), + [sym_ctrl_for] = STATE(5026), + [sym_ctrl_loop] = STATE(5026), + [sym_ctrl_while] = STATE(5026), [sym_ctrl_if] = STATE(3929), [sym_ctrl_match] = STATE(3929), [sym_ctrl_try] = STATE(3929), @@ -60306,13 +60311,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(1357), [sym_val_table] = STATE(1357), [sym_val_closure] = STATE(1357), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(4041), [sym_comment] = STATE(101), [aux_sym_pipeline_repeat1] = STATE(214), [aux_sym__block_body_repeat1] = STATE(1400), [aux_sym__block_body_repeat2] = STATE(104), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(313), [ts_builtin_sym_end] = ACTIONS(553), [anon_sym_export] = ACTIONS(9), @@ -60375,30 +60380,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(105), }, [STATE(102)] = { - [sym__block_body_statement] = STATE(4623), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), - [sym__block_body] = STATE(5827), + [sym__block_body_statement] = STATE(4654), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), + [sym__block_body] = STATE(5937), [sym_cmd_identifier] = STATE(3455), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -60434,13 +60439,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(102), [aux_sym_pipeline_repeat1] = STATE(216), [aux_sym__block_body_repeat1] = STATE(99), [aux_sym__block_body_repeat2] = STATE(107), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(308), [anon_sym_export] = ACTIONS(539), [anon_sym_alias] = ACTIONS(541), @@ -60502,29 +60507,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(103)] = { - [sym__block_body_statement] = STATE(5072), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), + [sym__block_body_statement] = STATE(5264), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), [sym_cmd_identifier] = STATE(3455), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -60560,12 +60565,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(103), [aux_sym_pipeline_repeat1] = STATE(218), [aux_sym__block_body_repeat2] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(315), [anon_sym_export] = ACTIONS(555), [anon_sym_alias] = ACTIONS(558), @@ -60625,29 +60630,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(690), }, [STATE(104)] = { - [sym__block_body_statement] = STATE(4875), - [sym__declaration] = STATE(5214), - [sym_decl_alias] = STATE(4985), - [sym_stmt_let] = STATE(4995), - [sym_stmt_mut] = STATE(4995), - [sym_stmt_const] = STATE(4995), - [sym_assignment] = STATE(4995), - [sym__mutable_assignment_pattern] = STATE(5076), - [sym__statement] = STATE(5214), - [sym_pipeline] = STATE(4995), + [sym__block_body_statement] = STATE(4871), + [sym__declaration] = STATE(4988), + [sym_decl_alias] = STATE(5029), + [sym_stmt_let] = STATE(5031), + [sym_stmt_mut] = STATE(5031), + [sym_stmt_const] = STATE(5031), + [sym_assignment] = STATE(5031), + [sym__mutable_assignment_pattern] = STATE(5219), + [sym__statement] = STATE(4988), + [sym_pipeline] = STATE(5031), [sym_cmd_identifier] = STATE(3604), - [sym_attribute_list] = STATE(5177), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4985), - [sym_decl_export] = STATE(4985), - [sym_decl_extern] = STATE(4985), - [sym_decl_module] = STATE(4985), - [sym_decl_use] = STATE(4985), - [sym__ctrl_statement] = STATE(4995), + [sym_attribute_list] = STATE(5010), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5029), + [sym_decl_export] = STATE(5029), + [sym_decl_extern] = STATE(5029), + [sym_decl_module] = STATE(5029), + [sym_decl_use] = STATE(5029), + [sym__ctrl_statement] = STATE(5031), [sym__ctrl_expression] = STATE(4041), - [sym_ctrl_for] = STATE(4996), - [sym_ctrl_loop] = STATE(4996), - [sym_ctrl_while] = STATE(4996), + [sym_ctrl_for] = STATE(5026), + [sym_ctrl_loop] = STATE(5026), + [sym_ctrl_while] = STATE(5026), [sym_ctrl_if] = STATE(3929), [sym_ctrl_match] = STATE(3929), [sym_ctrl_try] = STATE(3929), @@ -60683,12 +60688,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(1357), [sym_val_table] = STATE(1357), [sym_val_closure] = STATE(1357), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(4041), [sym_comment] = STATE(104), [aux_sym_pipeline_repeat1] = STATE(214), [aux_sym__block_body_repeat2] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(313), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), @@ -60748,29 +60753,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(105), }, [STATE(105)] = { - [sym__block_body_statement_parenthesized] = STATE(4832), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4766), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -60806,11 +60811,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(105), [aux_sym_pipeline_parenthesized_repeat1] = STATE(220), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(310), [aux_sym__parenthesized_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(693), @@ -60871,29 +60876,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(828), }, [STATE(106)] = { - [sym__block_body_statement_parenthesized] = STATE(4495), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4500), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -60929,11 +60934,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(106), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(367), @@ -60994,29 +60999,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(107)] = { - [sym__block_body_statement] = STATE(4678), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), + [sym__block_body_statement] = STATE(4689), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), [sym_cmd_identifier] = STATE(3455), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -61052,12 +61057,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(107), [aux_sym_pipeline_repeat1] = STATE(216), [aux_sym__block_body_repeat2] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(308), [anon_sym_export] = ACTIONS(539), [anon_sym_alias] = ACTIONS(541), @@ -61117,29 +61122,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(108)] = { - [sym__block_body_statement] = STATE(4672), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), + [sym__block_body_statement] = STATE(4604), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), [sym_cmd_identifier] = STATE(3455), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -61175,12 +61180,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(108), [aux_sym_pipeline_repeat1] = STATE(216), [aux_sym__block_body_repeat2] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(308), [anon_sym_export] = ACTIONS(539), [anon_sym_alias] = ACTIONS(541), @@ -61240,29 +61245,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(109)] = { - [sym__block_body_statement] = STATE(4789), - [sym__declaration] = STATE(5214), - [sym_decl_alias] = STATE(4985), - [sym_stmt_let] = STATE(4995), - [sym_stmt_mut] = STATE(4995), - [sym_stmt_const] = STATE(4995), - [sym_assignment] = STATE(4995), - [sym__mutable_assignment_pattern] = STATE(5076), - [sym__statement] = STATE(5214), - [sym_pipeline] = STATE(4995), + [sym__block_body_statement] = STATE(4977), + [sym__declaration] = STATE(4988), + [sym_decl_alias] = STATE(5029), + [sym_stmt_let] = STATE(5031), + [sym_stmt_mut] = STATE(5031), + [sym_stmt_const] = STATE(5031), + [sym_assignment] = STATE(5031), + [sym__mutable_assignment_pattern] = STATE(5219), + [sym__statement] = STATE(4988), + [sym_pipeline] = STATE(5031), [sym_cmd_identifier] = STATE(3604), - [sym_attribute_list] = STATE(5177), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4985), - [sym_decl_export] = STATE(4985), - [sym_decl_extern] = STATE(4985), - [sym_decl_module] = STATE(4985), - [sym_decl_use] = STATE(4985), - [sym__ctrl_statement] = STATE(4995), + [sym_attribute_list] = STATE(5010), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5029), + [sym_decl_export] = STATE(5029), + [sym_decl_extern] = STATE(5029), + [sym_decl_module] = STATE(5029), + [sym_decl_use] = STATE(5029), + [sym__ctrl_statement] = STATE(5031), [sym__ctrl_expression] = STATE(4041), - [sym_ctrl_for] = STATE(4996), - [sym_ctrl_loop] = STATE(4996), - [sym_ctrl_while] = STATE(4996), + [sym_ctrl_for] = STATE(5026), + [sym_ctrl_loop] = STATE(5026), + [sym_ctrl_while] = STATE(5026), [sym_ctrl_if] = STATE(3929), [sym_ctrl_match] = STATE(3929), [sym_ctrl_try] = STATE(3929), @@ -61298,12 +61303,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(1357), [sym_val_table] = STATE(1357), [sym_val_closure] = STATE(1357), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(4041), [sym_comment] = STATE(109), [aux_sym_pipeline_repeat1] = STATE(214), [aux_sym__block_body_repeat2] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(313), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), @@ -61363,29 +61368,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(105), }, [STATE(110)] = { - [sym__block_body_statement_parenthesized] = STATE(4447), - [sym__declaration_parenthesized] = STATE(5139), - [sym_decl_alias_parenthesized] = STATE(5150), - [sym_stmt_let_parenthesized] = STATE(5156), - [sym_stmt_mut_parenthesized] = STATE(5156), - [sym_stmt_const_parenthesized] = STATE(5156), - [sym_assignment_parenthesized] = STATE(5156), - [sym__mutable_assignment_pattern_parenthesized] = STATE(5161), - [sym__statement_parenthesized] = STATE(5139), - [sym_pipeline_parenthesized] = STATE(5156), + [sym__block_body_statement_parenthesized] = STATE(4450), + [sym__declaration_parenthesized] = STATE(5002), + [sym_decl_alias_parenthesized] = STATE(5003), + [sym_stmt_let_parenthesized] = STATE(5004), + [sym_stmt_mut_parenthesized] = STATE(5004), + [sym_stmt_const_parenthesized] = STATE(5004), + [sym_assignment_parenthesized] = STATE(5004), + [sym__mutable_assignment_pattern_parenthesized] = STATE(5008), + [sym__statement_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5004), [sym_cmd_identifier] = STATE(3534), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(5150), - [sym_decl_export] = STATE(5150), - [sym_decl_extern] = STATE(5150), - [sym_decl_module] = STATE(5150), - [sym_decl_use] = STATE(5150), - [sym__ctrl_statement] = STATE(5156), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(5003), + [sym_decl_export] = STATE(5003), + [sym_decl_extern] = STATE(5003), + [sym_decl_module] = STATE(5003), + [sym_decl_use] = STATE(5003), + [sym__ctrl_statement] = STATE(5004), [sym__ctrl_expression_parenthesized] = STATE(3920), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if_parenthesized] = STATE(3964), [sym_ctrl_match] = STATE(3964), [sym_ctrl_try_parenthesized] = STATE(3964), @@ -61421,11 +61426,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(110), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(309), [aux_sym__parenthesized_body_repeat2] = STATE(105), [anon_sym_export] = ACTIONS(367), @@ -61486,29 +61491,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(111)] = { - [sym__block_body_statement] = STATE(4678), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), + [sym__block_body_statement] = STATE(4689), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), [sym_cmd_identifier] = STATE(3455), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -61544,12 +61549,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(111), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat2] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -61609,29 +61614,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(112)] = { - [sym__block_body_statement] = STATE(4672), - [sym__declaration] = STATE(4887), - [sym_decl_alias] = STATE(4888), - [sym_stmt_let] = STATE(4890), - [sym_stmt_mut] = STATE(4890), - [sym_stmt_const] = STATE(4890), - [sym_assignment] = STATE(4890), - [sym__mutable_assignment_pattern] = STATE(4891), - [sym__statement] = STATE(4887), - [sym_pipeline] = STATE(4890), + [sym__block_body_statement] = STATE(4604), + [sym__declaration] = STATE(4859), + [sym_decl_alias] = STATE(4860), + [sym_stmt_let] = STATE(4861), + [sym_stmt_mut] = STATE(4861), + [sym_stmt_const] = STATE(4861), + [sym_assignment] = STATE(4861), + [sym__mutable_assignment_pattern] = STATE(4864), + [sym__statement] = STATE(4859), + [sym_pipeline] = STATE(4861), [sym_cmd_identifier] = STATE(3455), - [sym_attribute_list] = STATE(5247), - [sym_attribute] = STATE(5320), - [sym_decl_def] = STATE(4888), - [sym_decl_export] = STATE(4888), - [sym_decl_extern] = STATE(4888), - [sym_decl_module] = STATE(4888), - [sym_decl_use] = STATE(4888), - [sym__ctrl_statement] = STATE(4890), + [sym_attribute_list] = STATE(5266), + [sym_attribute] = STATE(5280), + [sym_decl_def] = STATE(4860), + [sym_decl_export] = STATE(4860), + [sym_decl_extern] = STATE(4860), + [sym_decl_module] = STATE(4860), + [sym_decl_use] = STATE(4860), + [sym__ctrl_statement] = STATE(4861), [sym__ctrl_expression] = STATE(3807), - [sym_ctrl_for] = STATE(4894), - [sym_ctrl_loop] = STATE(4894), - [sym_ctrl_while] = STATE(4894), + [sym_ctrl_for] = STATE(4870), + [sym_ctrl_loop] = STATE(4870), + [sym_ctrl_while] = STATE(4870), [sym_ctrl_if] = STATE(3810), [sym_ctrl_match] = STATE(3810), [sym_ctrl_try] = STATE(3810), @@ -61667,12 +61672,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(112), [aux_sym_pipeline_repeat1] = STATE(219), [aux_sym__block_body_repeat2] = STATE(103), - [aux_sym_attribute_list_repeat1] = STATE(4542), + [aux_sym_attribute_list_repeat1] = STATE(4550), [aux_sym_pipe_element_repeat2] = STATE(319), [anon_sym_export] = ACTIONS(287), [anon_sym_alias] = ACTIONS(289), @@ -64021,7 +64026,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_parenthesized] = STATE(3323), [sym__spread_parenthesized] = STATE(3772), [sym_val_range] = STATE(3773), - [sym__val_range] = STATE(5179), + [sym__val_range] = STATE(5081), [sym__value] = STATE(3773), [sym_val_nothing] = STATE(3655), [sym_val_bool] = STATE(3462), @@ -64054,7 +64059,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_long_flag] = STATE(3740), [sym_unquoted] = STATE(3513), [sym__unquoted_with_expr] = STATE(3651), - [sym__unquoted_anonymous_prefix] = STATE(5179), + [sym__unquoted_anonymous_prefix] = STATE(5081), [sym_comment] = STATE(132), [anon_sym_true] = ACTIONS(938), [anon_sym_false] = ACTIONS(938), @@ -64128,7 +64133,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_parenthesized] = STATE(3323), [sym__spread_parenthesized] = STATE(3772), [sym_val_range] = STATE(3773), - [sym__val_range] = STATE(5179), + [sym__val_range] = STATE(5081), [sym__value] = STATE(3773), [sym_val_nothing] = STATE(3655), [sym_val_bool] = STATE(3462), @@ -64161,7 +64166,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_long_flag] = STATE(3740), [sym_unquoted] = STATE(3513), [sym__unquoted_with_expr] = STATE(3651), - [sym__unquoted_anonymous_prefix] = STATE(5179), + [sym__unquoted_anonymous_prefix] = STATE(5081), [sym_comment] = STATE(133), [anon_sym_true] = ACTIONS(938), [anon_sym_false] = ACTIONS(938), @@ -64235,7 +64240,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_parenthesized] = STATE(3323), [sym__spread_parenthesized] = STATE(3772), [sym_val_range] = STATE(3773), - [sym__val_range] = STATE(5179), + [sym__val_range] = STATE(5081), [sym__value] = STATE(3773), [sym_val_nothing] = STATE(3655), [sym_val_bool] = STATE(3462), @@ -64268,7 +64273,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_long_flag] = STATE(3740), [sym_unquoted] = STATE(3513), [sym__unquoted_with_expr] = STATE(3651), - [sym__unquoted_anonymous_prefix] = STATE(5179), + [sym__unquoted_anonymous_prefix] = STATE(5081), [sym_comment] = STATE(134), [anon_sym_true] = ACTIONS(938), [anon_sym_false] = ACTIONS(938), @@ -64341,7 +64346,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_expr_parenthesized] = STATE(3379), [sym__spread_parenthesized] = STATE(3861), [sym_val_range] = STATE(3784), - [sym__val_range] = STATE(5138), + [sym__val_range] = STATE(5068), [sym__value] = STATE(3784), [sym_val_nothing] = STATE(3838), [sym_val_bool] = STATE(3539), @@ -64374,7 +64379,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_long_flag] = STATE(3778), [sym_unquoted] = STATE(3564), [sym__unquoted_with_expr] = STATE(3781), - [sym__unquoted_anonymous_prefix] = STATE(5138), + [sym__unquoted_anonymous_prefix] = STATE(5068), [sym_comment] = STATE(135), [ts_builtin_sym_end] = ACTIONS(946), [anon_sym_true] = ACTIONS(1007), @@ -68960,7 +68965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), }, [STATE(180)] = { - [sym_pipeline] = STATE(5222), + [sym_pipeline] = STATE(5255), [sym_cmd_identifier] = STATE(3604), [sym__ctrl_expression] = STATE(4041), [sym_ctrl_if] = STATE(3929), @@ -68998,7 +69003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(1357), [sym_val_table] = STATE(1357), [sym_val_closure] = STATE(1357), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(4041), [sym_comment] = STATE(180), [aux_sym_pipeline_repeat1] = STATE(214), @@ -69060,7 +69065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(105), }, [STATE(181)] = { - [sym_pipeline] = STATE(4803), + [sym_pipeline] = STATE(4746), [sym_cmd_identifier] = STATE(3455), [sym__ctrl_expression] = STATE(3807), [sym_ctrl_if] = STATE(3810), @@ -69098,7 +69103,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(181), [aux_sym_pipeline_repeat1] = STATE(219), @@ -69160,7 +69165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(182)] = { - [sym_pipeline] = STATE(4804), + [sym_pipeline] = STATE(4750), [sym_cmd_identifier] = STATE(3455), [sym__ctrl_expression] = STATE(3807), [sym_ctrl_if] = STATE(3810), @@ -69198,7 +69203,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(182), [aux_sym_pipeline_repeat1] = STATE(219), @@ -69260,7 +69265,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(183)] = { - [sym_pipeline] = STATE(4901), + [sym_pipeline] = STATE(4704), [sym_cmd_identifier] = STATE(3455), [sym__ctrl_expression] = STATE(3807), [sym_ctrl_if] = STATE(3810), @@ -69298,7 +69303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(183), [aux_sym_pipeline_repeat1] = STATE(219), @@ -69360,7 +69365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(184)] = { - [sym_pipeline] = STATE(4926), + [sym_pipeline] = STATE(4959), [sym_cmd_identifier] = STATE(3455), [sym__ctrl_expression] = STATE(3807), [sym_ctrl_if] = STATE(3810), @@ -69398,7 +69403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(184), [aux_sym_pipeline_repeat1] = STATE(219), @@ -69560,7 +69565,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), }, [STATE(186)] = { - [sym_pipeline] = STATE(5023), + [sym_pipeline] = STATE(4989), [sym_cmd_identifier] = STATE(3604), [sym__ctrl_expression] = STATE(4041), [sym_ctrl_if] = STATE(3929), @@ -69598,7 +69603,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(1357), [sym_val_table] = STATE(1357), [sym_val_closure] = STATE(1357), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(4041), [sym_comment] = STATE(186), [aux_sym_pipeline_repeat1] = STATE(214), @@ -69660,7 +69665,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(105), }, [STATE(187)] = { - [sym_pipeline] = STATE(5030), + [sym_pipeline] = STATE(4990), [sym_cmd_identifier] = STATE(3604), [sym__ctrl_expression] = STATE(4041), [sym_ctrl_if] = STATE(3929), @@ -69698,7 +69703,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(1357), [sym_val_table] = STATE(1357), [sym_val_closure] = STATE(1357), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(4041), [sym_comment] = STATE(187), [aux_sym_pipeline_repeat1] = STATE(214), @@ -70060,7 +70065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), }, [STATE(191)] = { - [sym_pipeline_parenthesized] = STATE(5196), + [sym_pipeline_parenthesized] = STATE(5089), [sym_cmd_identifier] = STATE(3534), [sym__ctrl_expression_parenthesized] = STATE(3920), [sym_ctrl_if_parenthesized] = STATE(3964), @@ -70098,7 +70103,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(191), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), @@ -70160,7 +70165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(192)] = { - [sym_pipeline] = STATE(4790), + [sym_pipeline] = STATE(4726), [sym_cmd_identifier] = STATE(3455), [sym__ctrl_expression] = STATE(3807), [sym_ctrl_if] = STATE(3810), @@ -70198,7 +70203,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(192), [aux_sym_pipeline_repeat1] = STATE(219), @@ -70260,7 +70265,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(193)] = { - [sym_pipeline] = STATE(5077), + [sym_pipeline] = STATE(5028), [sym_cmd_identifier] = STATE(3604), [sym__ctrl_expression] = STATE(4041), [sym_ctrl_if] = STATE(3929), @@ -70298,7 +70303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(1357), [sym_val_table] = STATE(1357), [sym_val_closure] = STATE(1357), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(4041), [sym_comment] = STATE(193), [aux_sym_pipeline_repeat1] = STATE(214), @@ -70360,7 +70365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(105), }, [STATE(194)] = { - [sym_pipeline] = STATE(5236), + [sym_pipeline] = STATE(5139), [sym_cmd_identifier] = STATE(3604), [sym__ctrl_expression] = STATE(4041), [sym_ctrl_if] = STATE(3929), @@ -70398,7 +70403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(1357), [sym_val_table] = STATE(1357), [sym_val_closure] = STATE(1357), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(4041), [sym_comment] = STATE(194), [aux_sym_pipeline_repeat1] = STATE(214), @@ -70460,7 +70465,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(105), }, [STATE(195)] = { - [sym_pipeline_parenthesized] = STATE(5000), + [sym_pipeline_parenthesized] = STATE(5032), [sym_cmd_identifier] = STATE(3534), [sym__ctrl_expression_parenthesized] = STATE(3920), [sym_ctrl_if_parenthesized] = STATE(3964), @@ -70498,7 +70503,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(195), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), @@ -70560,7 +70565,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(196)] = { - [sym_pipeline_parenthesized] = STATE(5130), + [sym_pipeline_parenthesized] = STATE(4982), [sym_cmd_identifier] = STATE(3534), [sym__ctrl_expression_parenthesized] = STATE(3920), [sym_ctrl_if_parenthesized] = STATE(3964), @@ -70598,7 +70603,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(196), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), @@ -70660,7 +70665,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(197)] = { - [sym_pipeline_parenthesized] = STATE(5196), + [sym_pipeline_parenthesized] = STATE(5089), [sym_cmd_identifier] = STATE(3534), [sym__ctrl_expression_parenthesized] = STATE(3920), [sym_ctrl_if_parenthesized] = STATE(3964), @@ -70698,7 +70703,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(197), [aux_sym_pipeline_parenthesized_repeat1] = STATE(220), @@ -70760,7 +70765,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(198)] = { - [sym_pipeline_parenthesized] = STATE(5000), + [sym_pipeline_parenthesized] = STATE(5032), [sym_cmd_identifier] = STATE(3534), [sym__ctrl_expression_parenthesized] = STATE(3920), [sym_ctrl_if_parenthesized] = STATE(3964), @@ -70798,7 +70803,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(198), [aux_sym_pipeline_parenthesized_repeat1] = STATE(220), @@ -70860,7 +70865,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(199)] = { - [sym_pipeline_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5037), [sym_cmd_identifier] = STATE(3534), [sym__ctrl_expression_parenthesized] = STATE(3920), [sym_ctrl_if_parenthesized] = STATE(3964), @@ -70898,7 +70903,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(199), [aux_sym_pipeline_parenthesized_repeat1] = STATE(220), @@ -70960,7 +70965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(200)] = { - [sym_pipeline_parenthesized] = STATE(5083), + [sym_pipeline_parenthesized] = STATE(5144), [sym_cmd_identifier] = STATE(3534), [sym__ctrl_expression_parenthesized] = STATE(3920), [sym_ctrl_if_parenthesized] = STATE(3964), @@ -70998,7 +71003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(200), [aux_sym_pipeline_parenthesized_repeat1] = STATE(220), @@ -71060,7 +71065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(201)] = { - [sym_pipeline_parenthesized] = STATE(5130), + [sym_pipeline_parenthesized] = STATE(4982), [sym_cmd_identifier] = STATE(3534), [sym__ctrl_expression_parenthesized] = STATE(3920), [sym_ctrl_if_parenthesized] = STATE(3964), @@ -71098,7 +71103,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(201), [aux_sym_pipeline_parenthesized_repeat1] = STATE(220), @@ -71160,7 +71165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(202)] = { - [sym_pipeline] = STATE(4790), + [sym_pipeline] = STATE(4726), [sym_cmd_identifier] = STATE(3455), [sym__ctrl_expression] = STATE(3807), [sym_ctrl_if] = STATE(3810), @@ -71198,7 +71203,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(202), [aux_sym_pipeline_repeat1] = STATE(216), @@ -71260,7 +71265,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(203)] = { - [sym_pipeline] = STATE(4803), + [sym_pipeline] = STATE(4746), [sym_cmd_identifier] = STATE(3455), [sym__ctrl_expression] = STATE(3807), [sym_ctrl_if] = STATE(3810), @@ -71298,7 +71303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(203), [aux_sym_pipeline_repeat1] = STATE(216), @@ -71360,7 +71365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(204)] = { - [sym_pipeline] = STATE(4804), + [sym_pipeline] = STATE(4750), [sym_cmd_identifier] = STATE(3455), [sym__ctrl_expression] = STATE(3807), [sym_ctrl_if] = STATE(3810), @@ -71398,7 +71403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(204), [aux_sym_pipeline_repeat1] = STATE(216), @@ -71460,7 +71465,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(205)] = { - [sym_pipeline] = STATE(4901), + [sym_pipeline] = STATE(4704), [sym_cmd_identifier] = STATE(3455), [sym__ctrl_expression] = STATE(3807), [sym_ctrl_if] = STATE(3810), @@ -71498,7 +71503,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(205), [aux_sym_pipeline_repeat1] = STATE(216), @@ -71560,7 +71565,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(206)] = { - [sym_pipeline] = STATE(4926), + [sym_pipeline] = STATE(4959), [sym_cmd_identifier] = STATE(3455), [sym__ctrl_expression] = STATE(3807), [sym_ctrl_if] = STATE(3810), @@ -71598,7 +71603,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(206), [aux_sym_pipeline_repeat1] = STATE(216), @@ -71660,7 +71665,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(207)] = { - [sym_pipeline] = STATE(4790), + [sym_pipeline] = STATE(4726), [sym_cmd_identifier] = STATE(3455), [sym__ctrl_expression] = STATE(3807), [sym_ctrl_if] = STATE(3810), @@ -71698,7 +71703,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(207), [aux_sym_pipeline_repeat1] = STATE(218), @@ -71760,7 +71765,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(208)] = { - [sym_pipeline] = STATE(4803), + [sym_pipeline] = STATE(4746), [sym_cmd_identifier] = STATE(3455), [sym__ctrl_expression] = STATE(3807), [sym_ctrl_if] = STATE(3810), @@ -71798,7 +71803,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(208), [aux_sym_pipeline_repeat1] = STATE(218), @@ -71860,7 +71865,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(209)] = { - [sym_pipeline] = STATE(4804), + [sym_pipeline] = STATE(4750), [sym_cmd_identifier] = STATE(3455), [sym__ctrl_expression] = STATE(3807), [sym_ctrl_if] = STATE(3810), @@ -71898,7 +71903,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(209), [aux_sym_pipeline_repeat1] = STATE(218), @@ -71960,7 +71965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(210)] = { - [sym_pipeline] = STATE(4901), + [sym_pipeline] = STATE(4704), [sym_cmd_identifier] = STATE(3455), [sym__ctrl_expression] = STATE(3807), [sym_ctrl_if] = STATE(3810), @@ -71998,7 +72003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(210), [aux_sym_pipeline_repeat1] = STATE(218), @@ -72060,7 +72065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(211)] = { - [sym_pipeline] = STATE(4926), + [sym_pipeline] = STATE(4959), [sym_cmd_identifier] = STATE(3455), [sym__ctrl_expression] = STATE(3807), [sym_ctrl_if] = STATE(3810), @@ -72098,7 +72103,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(211), [aux_sym_pipeline_repeat1] = STATE(218), @@ -72160,7 +72165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(212)] = { - [sym_pipeline_parenthesized] = STATE(5083), + [sym_pipeline_parenthesized] = STATE(5144), [sym_cmd_identifier] = STATE(3534), [sym__ctrl_expression_parenthesized] = STATE(3920), [sym_ctrl_if_parenthesized] = STATE(3964), @@ -72198,7 +72203,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(212), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), @@ -72260,7 +72265,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(213)] = { - [sym_pipeline_parenthesized] = STATE(5002), + [sym_pipeline_parenthesized] = STATE(5037), [sym_cmd_identifier] = STATE(3534), [sym__ctrl_expression_parenthesized] = STATE(3920), [sym_ctrl_if_parenthesized] = STATE(3964), @@ -72298,7 +72303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(213), [aux_sym_pipeline_parenthesized_repeat1] = STATE(221), @@ -72397,7 +72402,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(1357), [sym_val_table] = STATE(1357), [sym_val_closure] = STATE(1357), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(4041), [sym_comment] = STATE(214), [aux_sym_pipeline_repeat1] = STATE(217), @@ -72496,7 +72501,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(215), [aux_sym_pipeline_parenthesized_repeat1] = STATE(215), @@ -72595,7 +72600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(216), [aux_sym_pipeline_repeat1] = STATE(217), @@ -72694,7 +72699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(217), [aux_sym_pipeline_repeat1] = STATE(217), @@ -72793,7 +72798,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(218), [aux_sym_pipeline_repeat1] = STATE(217), @@ -72892,7 +72897,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3807), [sym_comment] = STATE(219), [aux_sym_pipeline_repeat1] = STATE(217), @@ -72991,7 +72996,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(220), [aux_sym_pipeline_parenthesized_repeat1] = STATE(215), @@ -73090,7 +73095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(3982), [sym_comment] = STATE(221), [aux_sym_pipeline_parenthesized_repeat1] = STATE(215), @@ -74120,15 +74125,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), }, [STATE(232)] = { - [sym_expr_parenthesized] = STATE(4426), + [sym_expr_parenthesized] = STATE(4429), [sym__spread_parenthesized] = STATE(3772), [sym_val_range] = STATE(3773), - [sym__val_range] = STATE(5179), + [sym__val_range] = STATE(5081), [sym__value] = STATE(3773), [sym_val_nothing] = STATE(3655), - [sym_val_bool] = STATE(4673), + [sym_val_bool] = STATE(4558), [sym__spread_variable] = STATE(3774), - [sym_val_variable] = STATE(4412), + [sym_val_variable] = STATE(4415), [sym_val_cellpath] = STATE(3655), [sym_val_number] = STATE(3655), [sym__val_number_decimal] = STATE(4056), @@ -74156,7 +74161,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_long_flag] = STATE(3740), [sym_unquoted] = STATE(3513), [sym__unquoted_with_expr] = STATE(3651), - [sym__unquoted_anonymous_prefix] = STATE(5179), + [sym__unquoted_anonymous_prefix] = STATE(5081), [sym_comment] = STATE(232), [anon_sym_true] = ACTIONS(1425), [anon_sym_false] = ACTIONS(1425), @@ -81133,7 +81138,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3808), [sym_comment] = STATE(307), [aux_sym_pipe_element_repeat2] = STATE(1432), @@ -81224,7 +81229,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3808), [sym_comment] = STATE(308), [aux_sym_pipe_element_repeat2] = STATE(1432), @@ -81315,7 +81320,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(4026), [sym_comment] = STATE(309), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1439), @@ -81406,7 +81411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(4026), [sym_comment] = STATE(310), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1439), @@ -81679,7 +81684,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(1357), [sym_val_table] = STATE(1357), [sym_val_closure] = STATE(1357), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3958), [sym_comment] = STATE(313), [aux_sym_pipe_element_repeat2] = STATE(1432), @@ -81861,7 +81866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3808), [sym_comment] = STATE(315), [aux_sym_pipe_element_repeat2] = STATE(1432), @@ -82043,7 +82048,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(4994), + [sym_env_var] = STATE(5025), [sym__command_parenthesized] = STATE(4026), [sym_comment] = STATE(317), [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1439), @@ -82225,7 +82230,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_record] = STATE(993), [sym_val_table] = STATE(993), [sym_val_closure] = STATE(993), - [sym_env_var] = STATE(5414), + [sym_env_var] = STATE(5408), [sym_command] = STATE(3808), [sym_comment] = STATE(319), [aux_sym_pipe_element_repeat2] = STATE(1432), @@ -83681,22 +83686,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), }, [STATE(336)] = { - [aux_sym__repeat_newline] = STATE(4800), + [aux_sym__repeat_newline] = STATE(4934), [sym__match_pattern_expression] = STATE(2905), [sym__match_pattern_value] = STATE(2902), [sym__match_pattern_list] = STATE(2906), - [sym__match_pattern_rest] = STATE(5815), + [sym__match_pattern_rest] = STATE(5760), [sym__match_pattern_record] = STATE(2943), [sym_expr_parenthesized] = STATE(2509), - [sym__spread_parenthesized] = STATE(5353), + [sym__spread_parenthesized] = STATE(5323), [sym_val_range] = STATE(2837), - [sym__val_range] = STATE(5118), - [sym__value] = STATE(5373), + [sym__val_range] = STATE(5020), + [sym__value] = STATE(5337), [sym_val_nothing] = STATE(2891), [sym_val_bool] = STATE(2755), - [sym__spread_variable] = STATE(5432), + [sym__spread_variable] = STATE(5372), [sym_val_variable] = STATE(2510), - [sym_val_cellpath] = STATE(5146), + [sym_val_cellpath] = STATE(5000), [sym_val_number] = STATE(2891), [sym__val_number_decimal] = STATE(2271), [sym__val_number] = STATE(2878), @@ -83708,23 +83713,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_double_quotes] = STATE(2838), [sym__str_single_quotes] = STATE(2838), [sym__str_back_ticks] = STATE(2838), - [sym_val_interpolated] = STATE(5146), - [sym__inter_single_quotes] = STATE(5105), - [sym__inter_double_quotes] = STATE(5106), - [sym_val_list] = STATE(5224), - [sym__spread_list] = STATE(5353), - [sym_list_body] = STATE(5574), - [sym_val_entry] = STATE(5016), - [sym_val_record] = STATE(5146), + [sym_val_interpolated] = STATE(5000), + [sym__inter_single_quotes] = STATE(5195), + [sym__inter_double_quotes] = STATE(5196), + [sym_val_list] = STATE(5145), + [sym__spread_list] = STATE(5323), + [sym_list_body] = STATE(5655), + [sym_val_entry] = STATE(5154), + [sym_val_record] = STATE(5000), [sym__table_head] = STATE(4321), [sym_val_table] = STATE(2891), - [sym_val_closure] = STATE(5146), + [sym_val_closure] = STATE(5000), [sym__unquoted_in_list] = STATE(2741), - [sym__unquoted_in_list_with_expr] = STATE(5373), - [sym__unquoted_anonymous_prefix] = STATE(5118), + [sym__unquoted_in_list_with_expr] = STATE(5337), + [sym__unquoted_anonymous_prefix] = STATE(5020), [sym_comment] = STATE(336), [aux_sym__types_body_repeat1] = STATE(460), - [aux_sym_parameter_repeat2] = STATE(4834), + [aux_sym_parameter_repeat2] = STATE(4817), [aux_sym__match_pattern_list_repeat1] = STATE(1445), [aux_sym_list_body_repeat1] = STATE(621), [anon_sym_true] = ACTIONS(1549), @@ -84197,22 +84202,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), }, [STATE(342)] = { - [aux_sym__repeat_newline] = STATE(4800), + [aux_sym__repeat_newline] = STATE(4934), [sym__match_pattern_expression] = STATE(2905), [sym__match_pattern_value] = STATE(2902), [sym__match_pattern_list] = STATE(2906), - [sym__match_pattern_rest] = STATE(5815), + [sym__match_pattern_rest] = STATE(5760), [sym__match_pattern_record] = STATE(2943), [sym_expr_parenthesized] = STATE(2509), - [sym__spread_parenthesized] = STATE(5353), + [sym__spread_parenthesized] = STATE(5323), [sym_val_range] = STATE(2837), - [sym__val_range] = STATE(5118), - [sym__value] = STATE(5373), + [sym__val_range] = STATE(5020), + [sym__value] = STATE(5337), [sym_val_nothing] = STATE(2891), [sym_val_bool] = STATE(2755), - [sym__spread_variable] = STATE(5432), + [sym__spread_variable] = STATE(5372), [sym_val_variable] = STATE(2510), - [sym_val_cellpath] = STATE(5146), + [sym_val_cellpath] = STATE(5000), [sym_val_number] = STATE(2891), [sym__val_number_decimal] = STATE(2271), [sym__val_number] = STATE(2878), @@ -84224,23 +84229,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_double_quotes] = STATE(2838), [sym__str_single_quotes] = STATE(2838), [sym__str_back_ticks] = STATE(2838), - [sym_val_interpolated] = STATE(5146), - [sym__inter_single_quotes] = STATE(5105), - [sym__inter_double_quotes] = STATE(5106), - [sym_val_list] = STATE(5224), - [sym__spread_list] = STATE(5353), - [sym_list_body] = STATE(5939), - [sym_val_entry] = STATE(5016), - [sym_val_record] = STATE(5146), + [sym_val_interpolated] = STATE(5000), + [sym__inter_single_quotes] = STATE(5195), + [sym__inter_double_quotes] = STATE(5196), + [sym_val_list] = STATE(5145), + [sym__spread_list] = STATE(5323), + [sym_list_body] = STATE(5933), + [sym_val_entry] = STATE(5154), + [sym_val_record] = STATE(5000), [sym__table_head] = STATE(4314), [sym_val_table] = STATE(2891), - [sym_val_closure] = STATE(5146), + [sym_val_closure] = STATE(5000), [sym__unquoted_in_list] = STATE(2741), - [sym__unquoted_in_list_with_expr] = STATE(5373), - [sym__unquoted_anonymous_prefix] = STATE(5118), + [sym__unquoted_in_list_with_expr] = STATE(5337), + [sym__unquoted_anonymous_prefix] = STATE(5020), [sym_comment] = STATE(342), [aux_sym__types_body_repeat1] = STATE(460), - [aux_sym_parameter_repeat2] = STATE(4834), + [aux_sym_parameter_repeat2] = STATE(4817), [aux_sym__match_pattern_list_repeat1] = STATE(1445), [aux_sym_list_body_repeat1] = STATE(621), [anon_sym_true] = ACTIONS(1549), @@ -86389,45 +86394,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), }, [STATE(368)] = { - [aux_sym__repeat_newline] = STATE(4800), - [sym_expr_parenthesized] = STATE(4682), - [sym__spread_parenthesized] = STATE(5353), - [sym_val_range] = STATE(5373), - [sym__val_range] = STATE(5271), - [sym__value] = STATE(5373), - [sym_val_nothing] = STATE(5146), - [sym_val_bool] = STATE(4925), - [sym__spread_variable] = STATE(5432), - [sym_val_variable] = STATE(4527), - [sym_val_cellpath] = STATE(5146), - [sym_val_number] = STATE(5146), + [aux_sym__repeat_newline] = STATE(4934), + [sym_expr_parenthesized] = STATE(4580), + [sym__spread_parenthesized] = STATE(5323), + [sym_val_range] = STATE(5337), + [sym__val_range] = STATE(5093), + [sym__value] = STATE(5337), + [sym_val_nothing] = STATE(5000), + [sym_val_bool] = STATE(4910), + [sym__spread_variable] = STATE(5372), + [sym_val_variable] = STATE(4529), + [sym_val_cellpath] = STATE(5000), + [sym_val_number] = STATE(5000), [sym__val_number_decimal] = STATE(4107), - [sym__val_number] = STATE(5155), - [sym_val_duration] = STATE(5146), - [sym_val_filesize] = STATE(5146), - [sym_val_binary] = STATE(5146), - [sym_val_string] = STATE(5146), + [sym__val_number] = STATE(5001), + [sym_val_duration] = STATE(5000), + [sym_val_filesize] = STATE(5000), + [sym_val_binary] = STATE(5000), + [sym_val_string] = STATE(5000), [sym__raw_str] = STATE(4072), [sym__str_double_quotes] = STATE(4072), [sym__str_single_quotes] = STATE(4072), [sym__str_back_ticks] = STATE(4072), - [sym_val_interpolated] = STATE(5146), - [sym__inter_single_quotes] = STATE(5105), - [sym__inter_double_quotes] = STATE(5106), - [sym_val_list] = STATE(5224), - [sym__spread_list] = STATE(5353), - [sym_list_body] = STATE(5461), - [sym_val_entry] = STATE(5016), - [sym_val_record] = STATE(5146), + [sym_val_interpolated] = STATE(5000), + [sym__inter_single_quotes] = STATE(5195), + [sym__inter_double_quotes] = STATE(5196), + [sym_val_list] = STATE(5145), + [sym__spread_list] = STATE(5323), + [sym_list_body] = STATE(5654), + [sym_val_entry] = STATE(5154), + [sym_val_record] = STATE(5000), [sym__table_head] = STATE(4333), - [sym_val_table] = STATE(5146), - [sym_val_closure] = STATE(5146), - [sym__unquoted_in_list] = STATE(4791), - [sym__unquoted_in_list_with_expr] = STATE(5373), - [sym__unquoted_anonymous_prefix] = STATE(5271), + [sym_val_table] = STATE(5000), + [sym_val_closure] = STATE(5000), + [sym__unquoted_in_list] = STATE(4730), + [sym__unquoted_in_list_with_expr] = STATE(5337), + [sym__unquoted_anonymous_prefix] = STATE(5093), [sym_comment] = STATE(368), [aux_sym__types_body_repeat1] = STATE(460), - [aux_sym_parameter_repeat2] = STATE(4834), + [aux_sym_parameter_repeat2] = STATE(4817), [aux_sym_list_body_repeat1] = STATE(621), [anon_sym_true] = ACTIONS(1629), [anon_sym_false] = ACTIONS(1629), @@ -86469,45 +86474,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1671), }, [STATE(369)] = { - [aux_sym__repeat_newline] = STATE(4800), - [sym_expr_parenthesized] = STATE(4682), - [sym__spread_parenthesized] = STATE(5353), - [sym_val_range] = STATE(5373), - [sym__val_range] = STATE(5271), - [sym__value] = STATE(5373), - [sym_val_nothing] = STATE(5146), - [sym_val_bool] = STATE(4925), - [sym__spread_variable] = STATE(5432), - [sym_val_variable] = STATE(4527), - [sym_val_cellpath] = STATE(5146), - [sym_val_number] = STATE(5146), + [aux_sym__repeat_newline] = STATE(4934), + [sym_expr_parenthesized] = STATE(4580), + [sym__spread_parenthesized] = STATE(5323), + [sym_val_range] = STATE(5337), + [sym__val_range] = STATE(5093), + [sym__value] = STATE(5337), + [sym_val_nothing] = STATE(5000), + [sym_val_bool] = STATE(4910), + [sym__spread_variable] = STATE(5372), + [sym_val_variable] = STATE(4529), + [sym_val_cellpath] = STATE(5000), + [sym_val_number] = STATE(5000), [sym__val_number_decimal] = STATE(4107), - [sym__val_number] = STATE(5155), - [sym_val_duration] = STATE(5146), - [sym_val_filesize] = STATE(5146), - [sym_val_binary] = STATE(5146), - [sym_val_string] = STATE(5146), + [sym__val_number] = STATE(5001), + [sym_val_duration] = STATE(5000), + [sym_val_filesize] = STATE(5000), + [sym_val_binary] = STATE(5000), + [sym_val_string] = STATE(5000), [sym__raw_str] = STATE(4072), [sym__str_double_quotes] = STATE(4072), [sym__str_single_quotes] = STATE(4072), [sym__str_back_ticks] = STATE(4072), - [sym_val_interpolated] = STATE(5146), - [sym__inter_single_quotes] = STATE(5105), - [sym__inter_double_quotes] = STATE(5106), - [sym_val_list] = STATE(5224), - [sym__spread_list] = STATE(5353), - [sym_list_body] = STATE(5546), - [sym_val_entry] = STATE(5016), - [sym_val_record] = STATE(5146), + [sym_val_interpolated] = STATE(5000), + [sym__inter_single_quotes] = STATE(5195), + [sym__inter_double_quotes] = STATE(5196), + [sym_val_list] = STATE(5145), + [sym__spread_list] = STATE(5323), + [sym_list_body] = STATE(5521), + [sym_val_entry] = STATE(5154), + [sym_val_record] = STATE(5000), [sym__table_head] = STATE(4394), - [sym_val_table] = STATE(5146), - [sym_val_closure] = STATE(5146), - [sym__unquoted_in_list] = STATE(4791), - [sym__unquoted_in_list_with_expr] = STATE(5373), - [sym__unquoted_anonymous_prefix] = STATE(5271), + [sym_val_table] = STATE(5000), + [sym_val_closure] = STATE(5000), + [sym__unquoted_in_list] = STATE(4730), + [sym__unquoted_in_list_with_expr] = STATE(5337), + [sym__unquoted_anonymous_prefix] = STATE(5093), [sym_comment] = STATE(369), [aux_sym__types_body_repeat1] = STATE(460), - [aux_sym_parameter_repeat2] = STATE(4834), + [aux_sym_parameter_repeat2] = STATE(4817), [aux_sym_list_body_repeat1] = STATE(621), [anon_sym_true] = ACTIONS(1629), [anon_sym_false] = ACTIONS(1629), @@ -86549,45 +86554,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1671), }, [STATE(370)] = { - [aux_sym__repeat_newline] = STATE(4800), - [sym_expr_parenthesized] = STATE(4682), - [sym__spread_parenthesized] = STATE(5353), - [sym_val_range] = STATE(5373), - [sym__val_range] = STATE(5271), - [sym__value] = STATE(5373), - [sym_val_nothing] = STATE(5146), - [sym_val_bool] = STATE(4925), - [sym__spread_variable] = STATE(5432), - [sym_val_variable] = STATE(4527), - [sym_val_cellpath] = STATE(5146), - [sym_val_number] = STATE(5146), + [aux_sym__repeat_newline] = STATE(4934), + [sym_expr_parenthesized] = STATE(4580), + [sym__spread_parenthesized] = STATE(5323), + [sym_val_range] = STATE(5337), + [sym__val_range] = STATE(5093), + [sym__value] = STATE(5337), + [sym_val_nothing] = STATE(5000), + [sym_val_bool] = STATE(4910), + [sym__spread_variable] = STATE(5372), + [sym_val_variable] = STATE(4529), + [sym_val_cellpath] = STATE(5000), + [sym_val_number] = STATE(5000), [sym__val_number_decimal] = STATE(4107), - [sym__val_number] = STATE(5155), - [sym_val_duration] = STATE(5146), - [sym_val_filesize] = STATE(5146), - [sym_val_binary] = STATE(5146), - [sym_val_string] = STATE(5146), + [sym__val_number] = STATE(5001), + [sym_val_duration] = STATE(5000), + [sym_val_filesize] = STATE(5000), + [sym_val_binary] = STATE(5000), + [sym_val_string] = STATE(5000), [sym__raw_str] = STATE(4072), [sym__str_double_quotes] = STATE(4072), [sym__str_single_quotes] = STATE(4072), [sym__str_back_ticks] = STATE(4072), - [sym_val_interpolated] = STATE(5146), - [sym__inter_single_quotes] = STATE(5105), - [sym__inter_double_quotes] = STATE(5106), - [sym_val_list] = STATE(5224), - [sym__spread_list] = STATE(5353), - [sym_list_body] = STATE(5638), - [sym_val_entry] = STATE(5016), - [sym_val_record] = STATE(5146), + [sym_val_interpolated] = STATE(5000), + [sym__inter_single_quotes] = STATE(5195), + [sym__inter_double_quotes] = STATE(5196), + [sym_val_list] = STATE(5145), + [sym__spread_list] = STATE(5323), + [sym_list_body] = STATE(5494), + [sym_val_entry] = STATE(5154), + [sym_val_record] = STATE(5000), [sym__table_head] = STATE(4319), - [sym_val_table] = STATE(5146), - [sym_val_closure] = STATE(5146), - [sym__unquoted_in_list] = STATE(4791), - [sym__unquoted_in_list_with_expr] = STATE(5373), - [sym__unquoted_anonymous_prefix] = STATE(5271), + [sym_val_table] = STATE(5000), + [sym_val_closure] = STATE(5000), + [sym__unquoted_in_list] = STATE(4730), + [sym__unquoted_in_list_with_expr] = STATE(5337), + [sym__unquoted_anonymous_prefix] = STATE(5093), [sym_comment] = STATE(370), [aux_sym__types_body_repeat1] = STATE(460), - [aux_sym_parameter_repeat2] = STATE(4834), + [aux_sym_parameter_repeat2] = STATE(4817), [aux_sym_list_body_repeat1] = STATE(621), [anon_sym_true] = ACTIONS(1629), [anon_sym_false] = ACTIONS(1629), @@ -86629,45 +86634,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1671), }, [STATE(371)] = { - [aux_sym__repeat_newline] = STATE(4800), - [sym_expr_parenthesized] = STATE(4682), - [sym__spread_parenthesized] = STATE(5353), - [sym_val_range] = STATE(5373), - [sym__val_range] = STATE(5271), - [sym__value] = STATE(5373), - [sym_val_nothing] = STATE(5146), - [sym_val_bool] = STATE(4925), - [sym__spread_variable] = STATE(5432), - [sym_val_variable] = STATE(4527), - [sym_val_cellpath] = STATE(5146), - [sym_val_number] = STATE(5146), + [aux_sym__repeat_newline] = STATE(4934), + [sym_expr_parenthesized] = STATE(4580), + [sym__spread_parenthesized] = STATE(5323), + [sym_val_range] = STATE(5337), + [sym__val_range] = STATE(5093), + [sym__value] = STATE(5337), + [sym_val_nothing] = STATE(5000), + [sym_val_bool] = STATE(4910), + [sym__spread_variable] = STATE(5372), + [sym_val_variable] = STATE(4529), + [sym_val_cellpath] = STATE(5000), + [sym_val_number] = STATE(5000), [sym__val_number_decimal] = STATE(4107), - [sym__val_number] = STATE(5155), - [sym_val_duration] = STATE(5146), - [sym_val_filesize] = STATE(5146), - [sym_val_binary] = STATE(5146), - [sym_val_string] = STATE(5146), + [sym__val_number] = STATE(5001), + [sym_val_duration] = STATE(5000), + [sym_val_filesize] = STATE(5000), + [sym_val_binary] = STATE(5000), + [sym_val_string] = STATE(5000), [sym__raw_str] = STATE(4072), [sym__str_double_quotes] = STATE(4072), [sym__str_single_quotes] = STATE(4072), [sym__str_back_ticks] = STATE(4072), - [sym_val_interpolated] = STATE(5146), - [sym__inter_single_quotes] = STATE(5105), - [sym__inter_double_quotes] = STATE(5106), - [sym_val_list] = STATE(5224), - [sym__spread_list] = STATE(5353), - [sym_list_body] = STATE(5762), - [sym_val_entry] = STATE(5016), - [sym_val_record] = STATE(5146), + [sym_val_interpolated] = STATE(5000), + [sym__inter_single_quotes] = STATE(5195), + [sym__inter_double_quotes] = STATE(5196), + [sym_val_list] = STATE(5145), + [sym__spread_list] = STATE(5323), + [sym_list_body] = STATE(5810), + [sym_val_entry] = STATE(5154), + [sym_val_record] = STATE(5000), [sym__table_head] = STATE(4331), - [sym_val_table] = STATE(5146), - [sym_val_closure] = STATE(5146), - [sym__unquoted_in_list] = STATE(4791), - [sym__unquoted_in_list_with_expr] = STATE(5373), - [sym__unquoted_anonymous_prefix] = STATE(5271), + [sym_val_table] = STATE(5000), + [sym_val_closure] = STATE(5000), + [sym__unquoted_in_list] = STATE(4730), + [sym__unquoted_in_list_with_expr] = STATE(5337), + [sym__unquoted_anonymous_prefix] = STATE(5093), [sym_comment] = STATE(371), [aux_sym__types_body_repeat1] = STATE(460), - [aux_sym_parameter_repeat2] = STATE(4834), + [aux_sym_parameter_repeat2] = STATE(4817), [aux_sym_list_body_repeat1] = STATE(621), [anon_sym_true] = ACTIONS(1629), [anon_sym_false] = ACTIONS(1629), @@ -86709,45 +86714,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1671), }, [STATE(372)] = { - [aux_sym__repeat_newline] = STATE(4800), - [sym_expr_parenthesized] = STATE(4682), - [sym__spread_parenthesized] = STATE(5353), - [sym_val_range] = STATE(5373), - [sym__val_range] = STATE(5271), - [sym__value] = STATE(5373), - [sym_val_nothing] = STATE(5146), - [sym_val_bool] = STATE(4925), - [sym__spread_variable] = STATE(5432), - [sym_val_variable] = STATE(4527), - [sym_val_cellpath] = STATE(5146), - [sym_val_number] = STATE(5146), + [aux_sym__repeat_newline] = STATE(4934), + [sym_expr_parenthesized] = STATE(4580), + [sym__spread_parenthesized] = STATE(5323), + [sym_val_range] = STATE(5337), + [sym__val_range] = STATE(5093), + [sym__value] = STATE(5337), + [sym_val_nothing] = STATE(5000), + [sym_val_bool] = STATE(4910), + [sym__spread_variable] = STATE(5372), + [sym_val_variable] = STATE(4529), + [sym_val_cellpath] = STATE(5000), + [sym_val_number] = STATE(5000), [sym__val_number_decimal] = STATE(4107), - [sym__val_number] = STATE(5155), - [sym_val_duration] = STATE(5146), - [sym_val_filesize] = STATE(5146), - [sym_val_binary] = STATE(5146), - [sym_val_string] = STATE(5146), + [sym__val_number] = STATE(5001), + [sym_val_duration] = STATE(5000), + [sym_val_filesize] = STATE(5000), + [sym_val_binary] = STATE(5000), + [sym_val_string] = STATE(5000), [sym__raw_str] = STATE(4072), [sym__str_double_quotes] = STATE(4072), [sym__str_single_quotes] = STATE(4072), [sym__str_back_ticks] = STATE(4072), - [sym_val_interpolated] = STATE(5146), - [sym__inter_single_quotes] = STATE(5105), - [sym__inter_double_quotes] = STATE(5106), - [sym_val_list] = STATE(5224), - [sym__spread_list] = STATE(5353), - [sym_list_body] = STATE(5724), - [sym_val_entry] = STATE(5016), - [sym_val_record] = STATE(5146), + [sym_val_interpolated] = STATE(5000), + [sym__inter_single_quotes] = STATE(5195), + [sym__inter_double_quotes] = STATE(5196), + [sym_val_list] = STATE(5145), + [sym__spread_list] = STATE(5323), + [sym_list_body] = STATE(5500), + [sym_val_entry] = STATE(5154), + [sym_val_record] = STATE(5000), [sym__table_head] = STATE(4385), - [sym_val_table] = STATE(5146), - [sym_val_closure] = STATE(5146), - [sym__unquoted_in_list] = STATE(4791), - [sym__unquoted_in_list_with_expr] = STATE(5373), - [sym__unquoted_anonymous_prefix] = STATE(5271), + [sym_val_table] = STATE(5000), + [sym_val_closure] = STATE(5000), + [sym__unquoted_in_list] = STATE(4730), + [sym__unquoted_in_list_with_expr] = STATE(5337), + [sym__unquoted_anonymous_prefix] = STATE(5093), [sym_comment] = STATE(372), [aux_sym__types_body_repeat1] = STATE(460), - [aux_sym_parameter_repeat2] = STATE(4834), + [aux_sym_parameter_repeat2] = STATE(4817), [aux_sym_list_body_repeat1] = STATE(621), [anon_sym_true] = ACTIONS(1629), [anon_sym_false] = ACTIONS(1629), @@ -86789,45 +86794,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1671), }, [STATE(373)] = { - [aux_sym__repeat_newline] = STATE(4800), - [sym_expr_parenthesized] = STATE(4682), - [sym__spread_parenthesized] = STATE(5353), - [sym_val_range] = STATE(5373), - [sym__val_range] = STATE(5271), - [sym__value] = STATE(5373), - [sym_val_nothing] = STATE(5146), - [sym_val_bool] = STATE(4925), - [sym__spread_variable] = STATE(5432), - [sym_val_variable] = STATE(4527), - [sym_val_cellpath] = STATE(5146), - [sym_val_number] = STATE(5146), + [aux_sym__repeat_newline] = STATE(4934), + [sym_expr_parenthesized] = STATE(4580), + [sym__spread_parenthesized] = STATE(5323), + [sym_val_range] = STATE(5337), + [sym__val_range] = STATE(5093), + [sym__value] = STATE(5337), + [sym_val_nothing] = STATE(5000), + [sym_val_bool] = STATE(4910), + [sym__spread_variable] = STATE(5372), + [sym_val_variable] = STATE(4529), + [sym_val_cellpath] = STATE(5000), + [sym_val_number] = STATE(5000), [sym__val_number_decimal] = STATE(4107), - [sym__val_number] = STATE(5155), - [sym_val_duration] = STATE(5146), - [sym_val_filesize] = STATE(5146), - [sym_val_binary] = STATE(5146), - [sym_val_string] = STATE(5146), + [sym__val_number] = STATE(5001), + [sym_val_duration] = STATE(5000), + [sym_val_filesize] = STATE(5000), + [sym_val_binary] = STATE(5000), + [sym_val_string] = STATE(5000), [sym__raw_str] = STATE(4072), [sym__str_double_quotes] = STATE(4072), [sym__str_single_quotes] = STATE(4072), [sym__str_back_ticks] = STATE(4072), - [sym_val_interpolated] = STATE(5146), - [sym__inter_single_quotes] = STATE(5105), - [sym__inter_double_quotes] = STATE(5106), - [sym_val_list] = STATE(5224), - [sym__spread_list] = STATE(5353), - [sym_list_body] = STATE(5618), - [sym_val_entry] = STATE(5016), - [sym_val_record] = STATE(5146), + [sym_val_interpolated] = STATE(5000), + [sym__inter_single_quotes] = STATE(5195), + [sym__inter_double_quotes] = STATE(5196), + [sym_val_list] = STATE(5145), + [sym__spread_list] = STATE(5323), + [sym_list_body] = STATE(5741), + [sym_val_entry] = STATE(5154), + [sym_val_record] = STATE(5000), [sym__table_head] = STATE(4391), - [sym_val_table] = STATE(5146), - [sym_val_closure] = STATE(5146), - [sym__unquoted_in_list] = STATE(4791), - [sym__unquoted_in_list_with_expr] = STATE(5373), - [sym__unquoted_anonymous_prefix] = STATE(5271), + [sym_val_table] = STATE(5000), + [sym_val_closure] = STATE(5000), + [sym__unquoted_in_list] = STATE(4730), + [sym__unquoted_in_list_with_expr] = STATE(5337), + [sym__unquoted_anonymous_prefix] = STATE(5093), [sym_comment] = STATE(373), [aux_sym__types_body_repeat1] = STATE(460), - [aux_sym_parameter_repeat2] = STATE(4834), + [aux_sym_parameter_repeat2] = STATE(4817), [aux_sym_list_body_repeat1] = STATE(621), [anon_sym_true] = ACTIONS(1629), [anon_sym_false] = ACTIONS(1629), @@ -86869,45 +86874,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1671), }, [STATE(374)] = { - [aux_sym__repeat_newline] = STATE(4800), - [sym_expr_parenthesized] = STATE(4682), - [sym__spread_parenthesized] = STATE(5353), - [sym_val_range] = STATE(5373), - [sym__val_range] = STATE(5271), - [sym__value] = STATE(5373), - [sym_val_nothing] = STATE(5146), - [sym_val_bool] = STATE(4925), - [sym__spread_variable] = STATE(5432), - [sym_val_variable] = STATE(4527), - [sym_val_cellpath] = STATE(5146), - [sym_val_number] = STATE(5146), + [aux_sym__repeat_newline] = STATE(4934), + [sym_expr_parenthesized] = STATE(4580), + [sym__spread_parenthesized] = STATE(5323), + [sym_val_range] = STATE(5337), + [sym__val_range] = STATE(5093), + [sym__value] = STATE(5337), + [sym_val_nothing] = STATE(5000), + [sym_val_bool] = STATE(4910), + [sym__spread_variable] = STATE(5372), + [sym_val_variable] = STATE(4529), + [sym_val_cellpath] = STATE(5000), + [sym_val_number] = STATE(5000), [sym__val_number_decimal] = STATE(4107), - [sym__val_number] = STATE(5155), - [sym_val_duration] = STATE(5146), - [sym_val_filesize] = STATE(5146), - [sym_val_binary] = STATE(5146), - [sym_val_string] = STATE(5146), + [sym__val_number] = STATE(5001), + [sym_val_duration] = STATE(5000), + [sym_val_filesize] = STATE(5000), + [sym_val_binary] = STATE(5000), + [sym_val_string] = STATE(5000), [sym__raw_str] = STATE(4072), [sym__str_double_quotes] = STATE(4072), [sym__str_single_quotes] = STATE(4072), [sym__str_back_ticks] = STATE(4072), - [sym_val_interpolated] = STATE(5146), - [sym__inter_single_quotes] = STATE(5105), - [sym__inter_double_quotes] = STATE(5106), - [sym_val_list] = STATE(5224), - [sym__spread_list] = STATE(5353), - [sym_list_body] = STATE(5942), - [sym_val_entry] = STATE(5016), - [sym_val_record] = STATE(5146), + [sym_val_interpolated] = STATE(5000), + [sym__inter_single_quotes] = STATE(5195), + [sym__inter_double_quotes] = STATE(5196), + [sym_val_list] = STATE(5145), + [sym__spread_list] = STATE(5323), + [sym_list_body] = STATE(5955), + [sym_val_entry] = STATE(5154), + [sym_val_record] = STATE(5000), [sym__table_head] = STATE(4357), - [sym_val_table] = STATE(5146), - [sym_val_closure] = STATE(5146), - [sym__unquoted_in_list] = STATE(4791), - [sym__unquoted_in_list_with_expr] = STATE(5373), - [sym__unquoted_anonymous_prefix] = STATE(5271), + [sym_val_table] = STATE(5000), + [sym_val_closure] = STATE(5000), + [sym__unquoted_in_list] = STATE(4730), + [sym__unquoted_in_list_with_expr] = STATE(5337), + [sym__unquoted_anonymous_prefix] = STATE(5093), [sym_comment] = STATE(374), [aux_sym__types_body_repeat1] = STATE(460), - [aux_sym_parameter_repeat2] = STATE(4834), + [aux_sym_parameter_repeat2] = STATE(4817), [aux_sym_list_body_repeat1] = STATE(621), [anon_sym_true] = ACTIONS(1629), [anon_sym_false] = ACTIONS(1629), @@ -86949,45 +86954,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1671), }, [STATE(375)] = { - [aux_sym__repeat_newline] = STATE(4800), - [sym_expr_parenthesized] = STATE(4682), - [sym__spread_parenthesized] = STATE(5353), - [sym_val_range] = STATE(5373), - [sym__val_range] = STATE(5271), - [sym__value] = STATE(5373), - [sym_val_nothing] = STATE(5146), - [sym_val_bool] = STATE(4925), - [sym__spread_variable] = STATE(5432), - [sym_val_variable] = STATE(4527), - [sym_val_cellpath] = STATE(5146), - [sym_val_number] = STATE(5146), + [aux_sym__repeat_newline] = STATE(4934), + [sym_expr_parenthesized] = STATE(4580), + [sym__spread_parenthesized] = STATE(5323), + [sym_val_range] = STATE(5337), + [sym__val_range] = STATE(5093), + [sym__value] = STATE(5337), + [sym_val_nothing] = STATE(5000), + [sym_val_bool] = STATE(4910), + [sym__spread_variable] = STATE(5372), + [sym_val_variable] = STATE(4529), + [sym_val_cellpath] = STATE(5000), + [sym_val_number] = STATE(5000), [sym__val_number_decimal] = STATE(4107), - [sym__val_number] = STATE(5155), - [sym_val_duration] = STATE(5146), - [sym_val_filesize] = STATE(5146), - [sym_val_binary] = STATE(5146), - [sym_val_string] = STATE(5146), + [sym__val_number] = STATE(5001), + [sym_val_duration] = STATE(5000), + [sym_val_filesize] = STATE(5000), + [sym_val_binary] = STATE(5000), + [sym_val_string] = STATE(5000), [sym__raw_str] = STATE(4072), [sym__str_double_quotes] = STATE(4072), [sym__str_single_quotes] = STATE(4072), [sym__str_back_ticks] = STATE(4072), - [sym_val_interpolated] = STATE(5146), - [sym__inter_single_quotes] = STATE(5105), - [sym__inter_double_quotes] = STATE(5106), - [sym_val_list] = STATE(5224), - [sym__spread_list] = STATE(5353), - [sym_list_body] = STATE(5661), - [sym_val_entry] = STATE(5016), - [sym_val_record] = STATE(5146), + [sym_val_interpolated] = STATE(5000), + [sym__inter_single_quotes] = STATE(5195), + [sym__inter_double_quotes] = STATE(5196), + [sym_val_list] = STATE(5145), + [sym__spread_list] = STATE(5323), + [sym_list_body] = STATE(5663), + [sym_val_entry] = STATE(5154), + [sym_val_record] = STATE(5000), [sym__table_head] = STATE(4396), - [sym_val_table] = STATE(5146), - [sym_val_closure] = STATE(5146), - [sym__unquoted_in_list] = STATE(4791), - [sym__unquoted_in_list_with_expr] = STATE(5373), - [sym__unquoted_anonymous_prefix] = STATE(5271), + [sym_val_table] = STATE(5000), + [sym_val_closure] = STATE(5000), + [sym__unquoted_in_list] = STATE(4730), + [sym__unquoted_in_list_with_expr] = STATE(5337), + [sym__unquoted_anonymous_prefix] = STATE(5093), [sym_comment] = STATE(375), [aux_sym__types_body_repeat1] = STATE(460), - [aux_sym_parameter_repeat2] = STATE(4834), + [aux_sym_parameter_repeat2] = STATE(4817), [aux_sym_list_body_repeat1] = STATE(621), [anon_sym_true] = ACTIONS(1629), [anon_sym_false] = ACTIONS(1629), @@ -87029,45 +87034,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1671), }, [STATE(376)] = { - [aux_sym__repeat_newline] = STATE(4800), - [sym_expr_parenthesized] = STATE(4682), - [sym__spread_parenthesized] = STATE(5353), - [sym_val_range] = STATE(5373), - [sym__val_range] = STATE(5271), - [sym__value] = STATE(5373), - [sym_val_nothing] = STATE(5146), - [sym_val_bool] = STATE(4925), - [sym__spread_variable] = STATE(5432), - [sym_val_variable] = STATE(4527), - [sym_val_cellpath] = STATE(5146), - [sym_val_number] = STATE(5146), + [aux_sym__repeat_newline] = STATE(4934), + [sym_expr_parenthesized] = STATE(4580), + [sym__spread_parenthesized] = STATE(5323), + [sym_val_range] = STATE(5337), + [sym__val_range] = STATE(5093), + [sym__value] = STATE(5337), + [sym_val_nothing] = STATE(5000), + [sym_val_bool] = STATE(4910), + [sym__spread_variable] = STATE(5372), + [sym_val_variable] = STATE(4529), + [sym_val_cellpath] = STATE(5000), + [sym_val_number] = STATE(5000), [sym__val_number_decimal] = STATE(4107), - [sym__val_number] = STATE(5155), - [sym_val_duration] = STATE(5146), - [sym_val_filesize] = STATE(5146), - [sym_val_binary] = STATE(5146), - [sym_val_string] = STATE(5146), + [sym__val_number] = STATE(5001), + [sym_val_duration] = STATE(5000), + [sym_val_filesize] = STATE(5000), + [sym_val_binary] = STATE(5000), + [sym_val_string] = STATE(5000), [sym__raw_str] = STATE(4072), [sym__str_double_quotes] = STATE(4072), [sym__str_single_quotes] = STATE(4072), [sym__str_back_ticks] = STATE(4072), - [sym_val_interpolated] = STATE(5146), - [sym__inter_single_quotes] = STATE(5105), - [sym__inter_double_quotes] = STATE(5106), - [sym_val_list] = STATE(5224), - [sym__spread_list] = STATE(5353), - [sym_list_body] = STATE(5574), - [sym_val_entry] = STATE(5016), - [sym_val_record] = STATE(5146), + [sym_val_interpolated] = STATE(5000), + [sym__inter_single_quotes] = STATE(5195), + [sym__inter_double_quotes] = STATE(5196), + [sym_val_list] = STATE(5145), + [sym__spread_list] = STATE(5323), + [sym_list_body] = STATE(5655), + [sym_val_entry] = STATE(5154), + [sym_val_record] = STATE(5000), [sym__table_head] = STATE(4385), - [sym_val_table] = STATE(5146), - [sym_val_closure] = STATE(5146), - [sym__unquoted_in_list] = STATE(4791), - [sym__unquoted_in_list_with_expr] = STATE(5373), - [sym__unquoted_anonymous_prefix] = STATE(5271), + [sym_val_table] = STATE(5000), + [sym_val_closure] = STATE(5000), + [sym__unquoted_in_list] = STATE(4730), + [sym__unquoted_in_list_with_expr] = STATE(5337), + [sym__unquoted_anonymous_prefix] = STATE(5093), [sym_comment] = STATE(376), [aux_sym__types_body_repeat1] = STATE(460), - [aux_sym_parameter_repeat2] = STATE(4834), + [aux_sym_parameter_repeat2] = STATE(4817), [aux_sym_list_body_repeat1] = STATE(621), [anon_sym_true] = ACTIONS(1629), [anon_sym_false] = ACTIONS(1629), @@ -87189,45 +87194,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), }, [STATE(378)] = { - [aux_sym__repeat_newline] = STATE(4800), - [sym_expr_parenthesized] = STATE(4682), - [sym__spread_parenthesized] = STATE(5353), - [sym_val_range] = STATE(5373), - [sym__val_range] = STATE(5271), - [sym__value] = STATE(5373), - [sym_val_nothing] = STATE(5146), - [sym_val_bool] = STATE(4925), - [sym__spread_variable] = STATE(5432), - [sym_val_variable] = STATE(4527), - [sym_val_cellpath] = STATE(5146), - [sym_val_number] = STATE(5146), + [aux_sym__repeat_newline] = STATE(4934), + [sym_expr_parenthesized] = STATE(4580), + [sym__spread_parenthesized] = STATE(5323), + [sym_val_range] = STATE(5337), + [sym__val_range] = STATE(5093), + [sym__value] = STATE(5337), + [sym_val_nothing] = STATE(5000), + [sym_val_bool] = STATE(4910), + [sym__spread_variable] = STATE(5372), + [sym_val_variable] = STATE(4529), + [sym_val_cellpath] = STATE(5000), + [sym_val_number] = STATE(5000), [sym__val_number_decimal] = STATE(4107), - [sym__val_number] = STATE(5155), - [sym_val_duration] = STATE(5146), - [sym_val_filesize] = STATE(5146), - [sym_val_binary] = STATE(5146), - [sym_val_string] = STATE(5146), + [sym__val_number] = STATE(5001), + [sym_val_duration] = STATE(5000), + [sym_val_filesize] = STATE(5000), + [sym_val_binary] = STATE(5000), + [sym_val_string] = STATE(5000), [sym__raw_str] = STATE(4072), [sym__str_double_quotes] = STATE(4072), [sym__str_single_quotes] = STATE(4072), [sym__str_back_ticks] = STATE(4072), - [sym_val_interpolated] = STATE(5146), - [sym__inter_single_quotes] = STATE(5105), - [sym__inter_double_quotes] = STATE(5106), - [sym_val_list] = STATE(5224), - [sym__spread_list] = STATE(5353), - [sym_list_body] = STATE(5665), - [sym_val_entry] = STATE(5016), - [sym_val_record] = STATE(5146), + [sym_val_interpolated] = STATE(5000), + [sym__inter_single_quotes] = STATE(5195), + [sym__inter_double_quotes] = STATE(5196), + [sym_val_list] = STATE(5145), + [sym__spread_list] = STATE(5323), + [sym_list_body] = STATE(5801), + [sym_val_entry] = STATE(5154), + [sym_val_record] = STATE(5000), [sym__table_head] = STATE(4367), - [sym_val_table] = STATE(5146), - [sym_val_closure] = STATE(5146), - [sym__unquoted_in_list] = STATE(4791), - [sym__unquoted_in_list_with_expr] = STATE(5373), - [sym__unquoted_anonymous_prefix] = STATE(5271), + [sym_val_table] = STATE(5000), + [sym_val_closure] = STATE(5000), + [sym__unquoted_in_list] = STATE(4730), + [sym__unquoted_in_list_with_expr] = STATE(5337), + [sym__unquoted_anonymous_prefix] = STATE(5093), [sym_comment] = STATE(378), [aux_sym__types_body_repeat1] = STATE(460), - [aux_sym_parameter_repeat2] = STATE(4834), + [aux_sym_parameter_repeat2] = STATE(4817), [aux_sym_list_body_repeat1] = STATE(621), [anon_sym_true] = ACTIONS(1629), [anon_sym_false] = ACTIONS(1629), @@ -87269,45 +87274,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1671), }, [STATE(379)] = { - [aux_sym__repeat_newline] = STATE(4800), - [sym_expr_parenthesized] = STATE(4682), - [sym__spread_parenthesized] = STATE(5353), - [sym_val_range] = STATE(5373), - [sym__val_range] = STATE(5271), - [sym__value] = STATE(5373), - [sym_val_nothing] = STATE(5146), - [sym_val_bool] = STATE(4925), - [sym__spread_variable] = STATE(5432), - [sym_val_variable] = STATE(4527), - [sym_val_cellpath] = STATE(5146), - [sym_val_number] = STATE(5146), + [aux_sym__repeat_newline] = STATE(4934), + [sym_expr_parenthesized] = STATE(4580), + [sym__spread_parenthesized] = STATE(5323), + [sym_val_range] = STATE(5337), + [sym__val_range] = STATE(5093), + [sym__value] = STATE(5337), + [sym_val_nothing] = STATE(5000), + [sym_val_bool] = STATE(4910), + [sym__spread_variable] = STATE(5372), + [sym_val_variable] = STATE(4529), + [sym_val_cellpath] = STATE(5000), + [sym_val_number] = STATE(5000), [sym__val_number_decimal] = STATE(4107), - [sym__val_number] = STATE(5155), - [sym_val_duration] = STATE(5146), - [sym_val_filesize] = STATE(5146), - [sym_val_binary] = STATE(5146), - [sym_val_string] = STATE(5146), + [sym__val_number] = STATE(5001), + [sym_val_duration] = STATE(5000), + [sym_val_filesize] = STATE(5000), + [sym_val_binary] = STATE(5000), + [sym_val_string] = STATE(5000), [sym__raw_str] = STATE(4072), [sym__str_double_quotes] = STATE(4072), [sym__str_single_quotes] = STATE(4072), [sym__str_back_ticks] = STATE(4072), - [sym_val_interpolated] = STATE(5146), - [sym__inter_single_quotes] = STATE(5105), - [sym__inter_double_quotes] = STATE(5106), - [sym_val_list] = STATE(5224), - [sym__spread_list] = STATE(5353), - [sym_list_body] = STATE(5468), - [sym_val_entry] = STATE(5016), - [sym_val_record] = STATE(5146), + [sym_val_interpolated] = STATE(5000), + [sym__inter_single_quotes] = STATE(5195), + [sym__inter_double_quotes] = STATE(5196), + [sym_val_list] = STATE(5145), + [sym__spread_list] = STATE(5323), + [sym_list_body] = STATE(5470), + [sym_val_entry] = STATE(5154), + [sym_val_record] = STATE(5000), [sym__table_head] = STATE(4382), - [sym_val_table] = STATE(5146), - [sym_val_closure] = STATE(5146), - [sym__unquoted_in_list] = STATE(4791), - [sym__unquoted_in_list_with_expr] = STATE(5373), - [sym__unquoted_anonymous_prefix] = STATE(5271), + [sym_val_table] = STATE(5000), + [sym_val_closure] = STATE(5000), + [sym__unquoted_in_list] = STATE(4730), + [sym__unquoted_in_list_with_expr] = STATE(5337), + [sym__unquoted_anonymous_prefix] = STATE(5093), [sym_comment] = STATE(379), [aux_sym__types_body_repeat1] = STATE(460), - [aux_sym_parameter_repeat2] = STATE(4834), + [aux_sym_parameter_repeat2] = STATE(4817), [aux_sym_list_body_repeat1] = STATE(621), [anon_sym_true] = ACTIONS(1629), [anon_sym_false] = ACTIONS(1629), @@ -87429,45 +87434,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), }, [STATE(381)] = { - [aux_sym__repeat_newline] = STATE(4800), - [sym_expr_parenthesized] = STATE(4682), - [sym__spread_parenthesized] = STATE(5353), - [sym_val_range] = STATE(5373), - [sym__val_range] = STATE(5271), - [sym__value] = STATE(5373), - [sym_val_nothing] = STATE(5146), - [sym_val_bool] = STATE(4925), - [sym__spread_variable] = STATE(5432), - [sym_val_variable] = STATE(4527), - [sym_val_cellpath] = STATE(5146), - [sym_val_number] = STATE(5146), + [aux_sym__repeat_newline] = STATE(4934), + [sym_expr_parenthesized] = STATE(4580), + [sym__spread_parenthesized] = STATE(5323), + [sym_val_range] = STATE(5337), + [sym__val_range] = STATE(5093), + [sym__value] = STATE(5337), + [sym_val_nothing] = STATE(5000), + [sym_val_bool] = STATE(4910), + [sym__spread_variable] = STATE(5372), + [sym_val_variable] = STATE(4529), + [sym_val_cellpath] = STATE(5000), + [sym_val_number] = STATE(5000), [sym__val_number_decimal] = STATE(4107), - [sym__val_number] = STATE(5155), - [sym_val_duration] = STATE(5146), - [sym_val_filesize] = STATE(5146), - [sym_val_binary] = STATE(5146), - [sym_val_string] = STATE(5146), + [sym__val_number] = STATE(5001), + [sym_val_duration] = STATE(5000), + [sym_val_filesize] = STATE(5000), + [sym_val_binary] = STATE(5000), + [sym_val_string] = STATE(5000), [sym__raw_str] = STATE(4072), [sym__str_double_quotes] = STATE(4072), [sym__str_single_quotes] = STATE(4072), [sym__str_back_ticks] = STATE(4072), - [sym_val_interpolated] = STATE(5146), - [sym__inter_single_quotes] = STATE(5105), - [sym__inter_double_quotes] = STATE(5106), - [sym_val_list] = STATE(5224), - [sym__spread_list] = STATE(5353), - [sym_list_body] = STATE(5782), - [sym_val_entry] = STATE(5016), - [sym_val_record] = STATE(5146), + [sym_val_interpolated] = STATE(5000), + [sym__inter_single_quotes] = STATE(5195), + [sym__inter_double_quotes] = STATE(5196), + [sym_val_list] = STATE(5145), + [sym__spread_list] = STATE(5323), + [sym_list_body] = STATE(5783), + [sym_val_entry] = STATE(5154), + [sym_val_record] = STATE(5000), [sym__table_head] = STATE(4347), - [sym_val_table] = STATE(5146), - [sym_val_closure] = STATE(5146), - [sym__unquoted_in_list] = STATE(4791), - [sym__unquoted_in_list_with_expr] = STATE(5373), - [sym__unquoted_anonymous_prefix] = STATE(5271), + [sym_val_table] = STATE(5000), + [sym_val_closure] = STATE(5000), + [sym__unquoted_in_list] = STATE(4730), + [sym__unquoted_in_list_with_expr] = STATE(5337), + [sym__unquoted_anonymous_prefix] = STATE(5093), [sym_comment] = STATE(381), [aux_sym__types_body_repeat1] = STATE(460), - [aux_sym_parameter_repeat2] = STATE(4834), + [aux_sym_parameter_repeat2] = STATE(4817), [aux_sym_list_body_repeat1] = STATE(621), [anon_sym_true] = ACTIONS(1629), [anon_sym_false] = ACTIONS(1629), @@ -87509,45 +87514,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1671), }, [STATE(382)] = { - [aux_sym__repeat_newline] = STATE(4800), - [sym_expr_parenthesized] = STATE(4682), - [sym__spread_parenthesized] = STATE(5353), - [sym_val_range] = STATE(5373), - [sym__val_range] = STATE(5271), - [sym__value] = STATE(5373), - [sym_val_nothing] = STATE(5146), - [sym_val_bool] = STATE(4925), - [sym__spread_variable] = STATE(5432), - [sym_val_variable] = STATE(4527), - [sym_val_cellpath] = STATE(5146), - [sym_val_number] = STATE(5146), + [aux_sym__repeat_newline] = STATE(4934), + [sym_expr_parenthesized] = STATE(4580), + [sym__spread_parenthesized] = STATE(5323), + [sym_val_range] = STATE(5337), + [sym__val_range] = STATE(5093), + [sym__value] = STATE(5337), + [sym_val_nothing] = STATE(5000), + [sym_val_bool] = STATE(4910), + [sym__spread_variable] = STATE(5372), + [sym_val_variable] = STATE(4529), + [sym_val_cellpath] = STATE(5000), + [sym_val_number] = STATE(5000), [sym__val_number_decimal] = STATE(4107), - [sym__val_number] = STATE(5155), - [sym_val_duration] = STATE(5146), - [sym_val_filesize] = STATE(5146), - [sym_val_binary] = STATE(5146), - [sym_val_string] = STATE(5146), + [sym__val_number] = STATE(5001), + [sym_val_duration] = STATE(5000), + [sym_val_filesize] = STATE(5000), + [sym_val_binary] = STATE(5000), + [sym_val_string] = STATE(5000), [sym__raw_str] = STATE(4072), [sym__str_double_quotes] = STATE(4072), [sym__str_single_quotes] = STATE(4072), [sym__str_back_ticks] = STATE(4072), - [sym_val_interpolated] = STATE(5146), - [sym__inter_single_quotes] = STATE(5105), - [sym__inter_double_quotes] = STATE(5106), - [sym_val_list] = STATE(5224), - [sym__spread_list] = STATE(5353), - [sym_list_body] = STATE(5794), - [sym_val_entry] = STATE(5016), - [sym_val_record] = STATE(5146), + [sym_val_interpolated] = STATE(5000), + [sym__inter_single_quotes] = STATE(5195), + [sym__inter_double_quotes] = STATE(5196), + [sym_val_list] = STATE(5145), + [sym__spread_list] = STATE(5323), + [sym_list_body] = STATE(5795), + [sym_val_entry] = STATE(5154), + [sym_val_record] = STATE(5000), [sym__table_head] = STATE(4350), - [sym_val_table] = STATE(5146), - [sym_val_closure] = STATE(5146), - [sym__unquoted_in_list] = STATE(4791), - [sym__unquoted_in_list_with_expr] = STATE(5373), - [sym__unquoted_anonymous_prefix] = STATE(5271), + [sym_val_table] = STATE(5000), + [sym_val_closure] = STATE(5000), + [sym__unquoted_in_list] = STATE(4730), + [sym__unquoted_in_list_with_expr] = STATE(5337), + [sym__unquoted_anonymous_prefix] = STATE(5093), [sym_comment] = STATE(382), [aux_sym__types_body_repeat1] = STATE(460), - [aux_sym_parameter_repeat2] = STATE(4834), + [aux_sym_parameter_repeat2] = STATE(4817), [aux_sym_list_body_repeat1] = STATE(621), [anon_sym_true] = ACTIONS(1629), [anon_sym_false] = ACTIONS(1629), @@ -88608,43 +88613,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(396)] = { - [sym_expr_parenthesized] = STATE(4682), - [sym__spread_parenthesized] = STATE(5353), - [sym_val_range] = STATE(5373), - [sym__val_range] = STATE(5271), - [sym__value] = STATE(5373), - [sym_val_nothing] = STATE(5146), - [sym_val_bool] = STATE(4925), - [sym__spread_variable] = STATE(5432), - [sym_val_variable] = STATE(4527), - [sym_val_cellpath] = STATE(5146), - [sym_val_number] = STATE(5146), + [sym_expr_parenthesized] = STATE(4580), + [sym__spread_parenthesized] = STATE(5323), + [sym_val_range] = STATE(5337), + [sym__val_range] = STATE(5093), + [sym__value] = STATE(5337), + [sym_val_nothing] = STATE(5000), + [sym_val_bool] = STATE(4910), + [sym__spread_variable] = STATE(5372), + [sym_val_variable] = STATE(4529), + [sym_val_cellpath] = STATE(5000), + [sym_val_number] = STATE(5000), [sym__val_number_decimal] = STATE(4107), - [sym__val_number] = STATE(5155), - [sym_val_duration] = STATE(5146), - [sym_val_filesize] = STATE(5146), - [sym_val_binary] = STATE(5146), - [sym_val_string] = STATE(5146), + [sym__val_number] = STATE(5001), + [sym_val_duration] = STATE(5000), + [sym_val_filesize] = STATE(5000), + [sym_val_binary] = STATE(5000), + [sym_val_string] = STATE(5000), [sym__raw_str] = STATE(4072), [sym__str_double_quotes] = STATE(4072), [sym__str_single_quotes] = STATE(4072), [sym__str_back_ticks] = STATE(4072), - [sym_val_interpolated] = STATE(5146), - [sym__inter_single_quotes] = STATE(5105), - [sym__inter_double_quotes] = STATE(5106), - [sym_val_list] = STATE(5146), - [sym__spread_list] = STATE(5353), - [sym_list_body] = STATE(5556), - [sym_val_entry] = STATE(5016), - [sym_val_record] = STATE(5146), - [sym_val_table] = STATE(5146), - [sym_val_closure] = STATE(5146), - [sym__unquoted_in_list] = STATE(4791), - [sym__unquoted_in_list_with_expr] = STATE(5373), - [sym__unquoted_anonymous_prefix] = STATE(5271), + [sym_val_interpolated] = STATE(5000), + [sym__inter_single_quotes] = STATE(5195), + [sym__inter_double_quotes] = STATE(5196), + [sym_val_list] = STATE(5000), + [sym__spread_list] = STATE(5323), + [sym_list_body] = STATE(5473), + [sym_val_entry] = STATE(5154), + [sym_val_record] = STATE(5000), + [sym_val_table] = STATE(5000), + [sym_val_closure] = STATE(5000), + [sym__unquoted_in_list] = STATE(4730), + [sym__unquoted_in_list_with_expr] = STATE(5337), + [sym__unquoted_anonymous_prefix] = STATE(5093), [sym_comment] = STATE(396), [aux_sym__types_body_repeat1] = STATE(460), - [aux_sym_parameter_repeat2] = STATE(4834), + [aux_sym_parameter_repeat2] = STATE(4817), [aux_sym_list_body_repeat1] = STATE(621), [anon_sym_true] = ACTIONS(1629), [anon_sym_false] = ACTIONS(1629), @@ -88686,43 +88691,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1671), }, [STATE(397)] = { - [sym_expr_parenthesized] = STATE(4682), - [sym__spread_parenthesized] = STATE(5353), - [sym_val_range] = STATE(5373), - [sym__val_range] = STATE(5271), - [sym__value] = STATE(5373), - [sym_val_nothing] = STATE(5146), - [sym_val_bool] = STATE(4925), - [sym__spread_variable] = STATE(5432), - [sym_val_variable] = STATE(4527), - [sym_val_cellpath] = STATE(5146), - [sym_val_number] = STATE(5146), + [sym_expr_parenthesized] = STATE(4580), + [sym__spread_parenthesized] = STATE(5323), + [sym_val_range] = STATE(5337), + [sym__val_range] = STATE(5093), + [sym__value] = STATE(5337), + [sym_val_nothing] = STATE(5000), + [sym_val_bool] = STATE(4910), + [sym__spread_variable] = STATE(5372), + [sym_val_variable] = STATE(4529), + [sym_val_cellpath] = STATE(5000), + [sym_val_number] = STATE(5000), [sym__val_number_decimal] = STATE(4107), - [sym__val_number] = STATE(5155), - [sym_val_duration] = STATE(5146), - [sym_val_filesize] = STATE(5146), - [sym_val_binary] = STATE(5146), - [sym_val_string] = STATE(5146), + [sym__val_number] = STATE(5001), + [sym_val_duration] = STATE(5000), + [sym_val_filesize] = STATE(5000), + [sym_val_binary] = STATE(5000), + [sym_val_string] = STATE(5000), [sym__raw_str] = STATE(4072), [sym__str_double_quotes] = STATE(4072), [sym__str_single_quotes] = STATE(4072), [sym__str_back_ticks] = STATE(4072), - [sym_val_interpolated] = STATE(5146), - [sym__inter_single_quotes] = STATE(5105), - [sym__inter_double_quotes] = STATE(5106), - [sym_val_list] = STATE(5146), - [sym__spread_list] = STATE(5353), - [sym_list_body] = STATE(5717), - [sym_val_entry] = STATE(5016), - [sym_val_record] = STATE(5146), - [sym_val_table] = STATE(5146), - [sym_val_closure] = STATE(5146), - [sym__unquoted_in_list] = STATE(4791), - [sym__unquoted_in_list_with_expr] = STATE(5373), - [sym__unquoted_anonymous_prefix] = STATE(5271), + [sym_val_interpolated] = STATE(5000), + [sym__inter_single_quotes] = STATE(5195), + [sym__inter_double_quotes] = STATE(5196), + [sym_val_list] = STATE(5000), + [sym__spread_list] = STATE(5323), + [sym_list_body] = STATE(5730), + [sym_val_entry] = STATE(5154), + [sym_val_record] = STATE(5000), + [sym_val_table] = STATE(5000), + [sym_val_closure] = STATE(5000), + [sym__unquoted_in_list] = STATE(4730), + [sym__unquoted_in_list_with_expr] = STATE(5337), + [sym__unquoted_anonymous_prefix] = STATE(5093), [sym_comment] = STATE(397), [aux_sym__types_body_repeat1] = STATE(460), - [aux_sym_parameter_repeat2] = STATE(4834), + [aux_sym_parameter_repeat2] = STATE(4817), [aux_sym_list_body_repeat1] = STATE(621), [anon_sym_true] = ACTIONS(1629), [anon_sym_false] = ACTIONS(1629), @@ -88764,43 +88769,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1671), }, [STATE(398)] = { - [sym_expr_parenthesized] = STATE(4682), - [sym__spread_parenthesized] = STATE(5353), - [sym_val_range] = STATE(5373), - [sym__val_range] = STATE(5271), - [sym__value] = STATE(5373), - [sym_val_nothing] = STATE(5146), - [sym_val_bool] = STATE(4925), - [sym__spread_variable] = STATE(5432), - [sym_val_variable] = STATE(4527), - [sym_val_cellpath] = STATE(5146), - [sym_val_number] = STATE(5146), + [sym_expr_parenthesized] = STATE(4580), + [sym__spread_parenthesized] = STATE(5323), + [sym_val_range] = STATE(5337), + [sym__val_range] = STATE(5093), + [sym__value] = STATE(5337), + [sym_val_nothing] = STATE(5000), + [sym_val_bool] = STATE(4910), + [sym__spread_variable] = STATE(5372), + [sym_val_variable] = STATE(4529), + [sym_val_cellpath] = STATE(5000), + [sym_val_number] = STATE(5000), [sym__val_number_decimal] = STATE(4107), - [sym__val_number] = STATE(5155), - [sym_val_duration] = STATE(5146), - [sym_val_filesize] = STATE(5146), - [sym_val_binary] = STATE(5146), - [sym_val_string] = STATE(5146), + [sym__val_number] = STATE(5001), + [sym_val_duration] = STATE(5000), + [sym_val_filesize] = STATE(5000), + [sym_val_binary] = STATE(5000), + [sym_val_string] = STATE(5000), [sym__raw_str] = STATE(4072), [sym__str_double_quotes] = STATE(4072), [sym__str_single_quotes] = STATE(4072), [sym__str_back_ticks] = STATE(4072), - [sym_val_interpolated] = STATE(5146), - [sym__inter_single_quotes] = STATE(5105), - [sym__inter_double_quotes] = STATE(5106), - [sym_val_list] = STATE(5146), - [sym__spread_list] = STATE(5353), - [sym_list_body] = STATE(5724), - [sym_val_entry] = STATE(5016), - [sym_val_record] = STATE(5146), - [sym_val_table] = STATE(5146), - [sym_val_closure] = STATE(5146), - [sym__unquoted_in_list] = STATE(4791), - [sym__unquoted_in_list_with_expr] = STATE(5373), - [sym__unquoted_anonymous_prefix] = STATE(5271), + [sym_val_interpolated] = STATE(5000), + [sym__inter_single_quotes] = STATE(5195), + [sym__inter_double_quotes] = STATE(5196), + [sym_val_list] = STATE(5000), + [sym__spread_list] = STATE(5323), + [sym_list_body] = STATE(5500), + [sym_val_entry] = STATE(5154), + [sym_val_record] = STATE(5000), + [sym_val_table] = STATE(5000), + [sym_val_closure] = STATE(5000), + [sym__unquoted_in_list] = STATE(4730), + [sym__unquoted_in_list_with_expr] = STATE(5337), + [sym__unquoted_anonymous_prefix] = STATE(5093), [sym_comment] = STATE(398), [aux_sym__types_body_repeat1] = STATE(460), - [aux_sym_parameter_repeat2] = STATE(4834), + [aux_sym_parameter_repeat2] = STATE(4817), [aux_sym_list_body_repeat1] = STATE(621), [anon_sym_true] = ACTIONS(1629), [anon_sym_false] = ACTIONS(1629), @@ -88842,43 +88847,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1671), }, [STATE(399)] = { - [sym_expr_parenthesized] = STATE(4682), - [sym__spread_parenthesized] = STATE(5353), - [sym_val_range] = STATE(5373), - [sym__val_range] = STATE(5271), - [sym__value] = STATE(5373), - [sym_val_nothing] = STATE(5146), - [sym_val_bool] = STATE(4925), - [sym__spread_variable] = STATE(5432), - [sym_val_variable] = STATE(4527), - [sym_val_cellpath] = STATE(5146), - [sym_val_number] = STATE(5146), + [sym_expr_parenthesized] = STATE(4580), + [sym__spread_parenthesized] = STATE(5323), + [sym_val_range] = STATE(5337), + [sym__val_range] = STATE(5093), + [sym__value] = STATE(5337), + [sym_val_nothing] = STATE(5000), + [sym_val_bool] = STATE(4910), + [sym__spread_variable] = STATE(5372), + [sym_val_variable] = STATE(4529), + [sym_val_cellpath] = STATE(5000), + [sym_val_number] = STATE(5000), [sym__val_number_decimal] = STATE(4107), - [sym__val_number] = STATE(5155), - [sym_val_duration] = STATE(5146), - [sym_val_filesize] = STATE(5146), - [sym_val_binary] = STATE(5146), - [sym_val_string] = STATE(5146), + [sym__val_number] = STATE(5001), + [sym_val_duration] = STATE(5000), + [sym_val_filesize] = STATE(5000), + [sym_val_binary] = STATE(5000), + [sym_val_string] = STATE(5000), [sym__raw_str] = STATE(4072), [sym__str_double_quotes] = STATE(4072), [sym__str_single_quotes] = STATE(4072), [sym__str_back_ticks] = STATE(4072), - [sym_val_interpolated] = STATE(5146), - [sym__inter_single_quotes] = STATE(5105), - [sym__inter_double_quotes] = STATE(5106), - [sym_val_list] = STATE(5146), - [sym__spread_list] = STATE(5353), - [sym_list_body] = STATE(5939), - [sym_val_entry] = STATE(5016), - [sym_val_record] = STATE(5146), - [sym_val_table] = STATE(5146), - [sym_val_closure] = STATE(5146), - [sym__unquoted_in_list] = STATE(4791), - [sym__unquoted_in_list_with_expr] = STATE(5373), - [sym__unquoted_anonymous_prefix] = STATE(5271), + [sym_val_interpolated] = STATE(5000), + [sym__inter_single_quotes] = STATE(5195), + [sym__inter_double_quotes] = STATE(5196), + [sym_val_list] = STATE(5000), + [sym__spread_list] = STATE(5323), + [sym_list_body] = STATE(5933), + [sym_val_entry] = STATE(5154), + [sym_val_record] = STATE(5000), + [sym_val_table] = STATE(5000), + [sym_val_closure] = STATE(5000), + [sym__unquoted_in_list] = STATE(4730), + [sym__unquoted_in_list_with_expr] = STATE(5337), + [sym__unquoted_anonymous_prefix] = STATE(5093), [sym_comment] = STATE(399), [aux_sym__types_body_repeat1] = STATE(460), - [aux_sym_parameter_repeat2] = STATE(4834), + [aux_sym_parameter_repeat2] = STATE(4817), [aux_sym_list_body_repeat1] = STATE(621), [anon_sym_true] = ACTIONS(1629), [anon_sym_false] = ACTIONS(1629), @@ -88920,43 +88925,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1671), }, [STATE(400)] = { - [sym_expr_parenthesized] = STATE(4682), - [sym__spread_parenthesized] = STATE(5353), - [sym_val_range] = STATE(5373), - [sym__val_range] = STATE(5271), - [sym__value] = STATE(5373), - [sym_val_nothing] = STATE(5146), - [sym_val_bool] = STATE(4925), - [sym__spread_variable] = STATE(5432), - [sym_val_variable] = STATE(4527), - [sym_val_cellpath] = STATE(5146), - [sym_val_number] = STATE(5146), + [sym_expr_parenthesized] = STATE(4580), + [sym__spread_parenthesized] = STATE(5323), + [sym_val_range] = STATE(5337), + [sym__val_range] = STATE(5093), + [sym__value] = STATE(5337), + [sym_val_nothing] = STATE(5000), + [sym_val_bool] = STATE(4910), + [sym__spread_variable] = STATE(5372), + [sym_val_variable] = STATE(4529), + [sym_val_cellpath] = STATE(5000), + [sym_val_number] = STATE(5000), [sym__val_number_decimal] = STATE(4107), - [sym__val_number] = STATE(5155), - [sym_val_duration] = STATE(5146), - [sym_val_filesize] = STATE(5146), - [sym_val_binary] = STATE(5146), - [sym_val_string] = STATE(5146), + [sym__val_number] = STATE(5001), + [sym_val_duration] = STATE(5000), + [sym_val_filesize] = STATE(5000), + [sym_val_binary] = STATE(5000), + [sym_val_string] = STATE(5000), [sym__raw_str] = STATE(4072), [sym__str_double_quotes] = STATE(4072), [sym__str_single_quotes] = STATE(4072), [sym__str_back_ticks] = STATE(4072), - [sym_val_interpolated] = STATE(5146), - [sym__inter_single_quotes] = STATE(5105), - [sym__inter_double_quotes] = STATE(5106), - [sym_val_list] = STATE(5146), - [sym__spread_list] = STATE(5353), - [sym_list_body] = STATE(5668), - [sym_val_entry] = STATE(5016), - [sym_val_record] = STATE(5146), - [sym_val_table] = STATE(5146), - [sym_val_closure] = STATE(5146), - [sym__unquoted_in_list] = STATE(4791), - [sym__unquoted_in_list_with_expr] = STATE(5373), - [sym__unquoted_anonymous_prefix] = STATE(5271), + [sym_val_interpolated] = STATE(5000), + [sym__inter_single_quotes] = STATE(5195), + [sym__inter_double_quotes] = STATE(5196), + [sym_val_list] = STATE(5000), + [sym__spread_list] = STATE(5323), + [sym_list_body] = STATE(5703), + [sym_val_entry] = STATE(5154), + [sym_val_record] = STATE(5000), + [sym_val_table] = STATE(5000), + [sym_val_closure] = STATE(5000), + [sym__unquoted_in_list] = STATE(4730), + [sym__unquoted_in_list_with_expr] = STATE(5337), + [sym__unquoted_anonymous_prefix] = STATE(5093), [sym_comment] = STATE(400), [aux_sym__types_body_repeat1] = STATE(460), - [aux_sym_parameter_repeat2] = STATE(4834), + [aux_sym_parameter_repeat2] = STATE(4817), [aux_sym_list_body_repeat1] = STATE(621), [anon_sym_true] = ACTIONS(1629), [anon_sym_false] = ACTIONS(1629), @@ -92093,26 +92098,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(442)] = { - [sym_cmd_identifier] = STATE(4780), - [sym_expr_parenthesized] = STATE(5736), - [sym__spread_parenthesized] = STATE(5344), - [sym__spread_variable] = STATE(5350), - [sym_val_variable] = STATE(5736), - [sym_val_number] = STATE(5736), + [sym_cmd_identifier] = STATE(4951), + [sym_expr_parenthesized] = STATE(5963), + [sym__spread_parenthesized] = STATE(5293), + [sym__spread_variable] = STATE(5309), + [sym_val_variable] = STATE(5963), + [sym_val_number] = STATE(5963), [sym__val_number_decimal] = STATE(2476), [sym__val_number] = STATE(824), - [sym_val_string] = STATE(5736), + [sym_val_string] = STATE(5963), [sym__raw_str] = STATE(2859), [sym__str_double_quotes] = STATE(2859), [sym__str_single_quotes] = STATE(2859), [sym__str_back_ticks] = STATE(2859), - [sym_val_interpolated] = STATE(5736), + [sym_val_interpolated] = STATE(5963), [sym__inter_single_quotes] = STATE(917), [sym__inter_double_quotes] = STATE(918), - [sym__spread_record] = STATE(5344), - [sym_record_body] = STATE(5809), - [sym_record_entry] = STATE(5174), - [sym__record_key] = STATE(5747), + [sym__spread_record] = STATE(5293), + [sym_record_body] = STATE(5514), + [sym_record_entry] = STATE(5228), + [sym__record_key] = STATE(5767), [sym_comment] = STATE(442), [aux_sym__types_body_repeat1] = STATE(623), [aux_sym_record_body_repeat1] = STATE(723), @@ -92241,26 +92246,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(444)] = { - [sym_cmd_identifier] = STATE(4780), - [sym_expr_parenthesized] = STATE(5736), - [sym__spread_parenthesized] = STATE(5344), - [sym__spread_variable] = STATE(5350), - [sym_val_variable] = STATE(5736), - [sym_val_number] = STATE(5736), + [sym_cmd_identifier] = STATE(4951), + [sym_expr_parenthesized] = STATE(5963), + [sym__spread_parenthesized] = STATE(5293), + [sym__spread_variable] = STATE(5309), + [sym_val_variable] = STATE(5963), + [sym_val_number] = STATE(5963), [sym__val_number_decimal] = STATE(2476), [sym__val_number] = STATE(824), - [sym_val_string] = STATE(5736), + [sym_val_string] = STATE(5963), [sym__raw_str] = STATE(2859), [sym__str_double_quotes] = STATE(2859), [sym__str_single_quotes] = STATE(2859), [sym__str_back_ticks] = STATE(2859), - [sym_val_interpolated] = STATE(5736), + [sym_val_interpolated] = STATE(5963), [sym__inter_single_quotes] = STATE(917), [sym__inter_double_quotes] = STATE(918), - [sym__spread_record] = STATE(5344), - [sym_record_body] = STATE(5566), - [sym_record_entry] = STATE(5174), - [sym__record_key] = STATE(5747), + [sym__spread_record] = STATE(5293), + [sym_record_body] = STATE(5956), + [sym_record_entry] = STATE(5228), + [sym__record_key] = STATE(5767), [sym_comment] = STATE(444), [aux_sym__types_body_repeat1] = STATE(623), [aux_sym_record_body_repeat1] = STATE(723), @@ -93277,26 +93282,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(458)] = { - [sym_cmd_identifier] = STATE(4780), - [sym_expr_parenthesized] = STATE(5736), - [sym__spread_parenthesized] = STATE(5344), - [sym__spread_variable] = STATE(5350), - [sym_val_variable] = STATE(5736), - [sym_val_number] = STATE(5736), + [sym_cmd_identifier] = STATE(4951), + [sym_expr_parenthesized] = STATE(5963), + [sym__spread_parenthesized] = STATE(5293), + [sym__spread_variable] = STATE(5309), + [sym_val_variable] = STATE(5963), + [sym_val_number] = STATE(5963), [sym__val_number_decimal] = STATE(2476), [sym__val_number] = STATE(824), - [sym_val_string] = STATE(5736), + [sym_val_string] = STATE(5963), [sym__raw_str] = STATE(2859), [sym__str_double_quotes] = STATE(2859), [sym__str_single_quotes] = STATE(2859), [sym__str_back_ticks] = STATE(2859), - [sym_val_interpolated] = STATE(5736), + [sym_val_interpolated] = STATE(5963), [sym__inter_single_quotes] = STATE(917), [sym__inter_double_quotes] = STATE(918), - [sym__spread_record] = STATE(5344), - [sym_record_body] = STATE(5716), - [sym_record_entry] = STATE(5174), - [sym__record_key] = STATE(5747), + [sym__spread_record] = STATE(5293), + [sym_record_body] = STATE(5734), + [sym_record_entry] = STATE(5228), + [sym__record_key] = STATE(5767), [sym_comment] = STATE(458), [aux_sym__types_body_repeat1] = STATE(623), [aux_sym_record_body_repeat1] = STATE(723), @@ -93425,39 +93430,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(460)] = { - [sym_expr_parenthesized] = STATE(4682), - [sym__spread_parenthesized] = STATE(5353), - [sym_val_range] = STATE(5373), - [sym__val_range] = STATE(5271), - [sym__value] = STATE(5373), - [sym_val_nothing] = STATE(5146), - [sym_val_bool] = STATE(4925), - [sym__spread_variable] = STATE(5432), - [sym_val_variable] = STATE(4527), - [sym_val_cellpath] = STATE(5146), - [sym_val_number] = STATE(5146), + [sym_expr_parenthesized] = STATE(4580), + [sym__spread_parenthesized] = STATE(5323), + [sym_val_range] = STATE(5337), + [sym__val_range] = STATE(5093), + [sym__value] = STATE(5337), + [sym_val_nothing] = STATE(5000), + [sym_val_bool] = STATE(4910), + [sym__spread_variable] = STATE(5372), + [sym_val_variable] = STATE(4529), + [sym_val_cellpath] = STATE(5000), + [sym_val_number] = STATE(5000), [sym__val_number_decimal] = STATE(4107), - [sym__val_number] = STATE(5155), - [sym_val_duration] = STATE(5146), - [sym_val_filesize] = STATE(5146), - [sym_val_binary] = STATE(5146), - [sym_val_string] = STATE(5146), + [sym__val_number] = STATE(5001), + [sym_val_duration] = STATE(5000), + [sym_val_filesize] = STATE(5000), + [sym_val_binary] = STATE(5000), + [sym_val_string] = STATE(5000), [sym__raw_str] = STATE(4072), [sym__str_double_quotes] = STATE(4072), [sym__str_single_quotes] = STATE(4072), [sym__str_back_ticks] = STATE(4072), - [sym_val_interpolated] = STATE(5146), - [sym__inter_single_quotes] = STATE(5105), - [sym__inter_double_quotes] = STATE(5106), - [sym_val_list] = STATE(5146), - [sym__spread_list] = STATE(5353), - [sym_val_entry] = STATE(5210), - [sym_val_record] = STATE(5146), - [sym_val_table] = STATE(5146), - [sym_val_closure] = STATE(5146), - [sym__unquoted_in_list] = STATE(4791), - [sym__unquoted_in_list_with_expr] = STATE(5373), - [sym__unquoted_anonymous_prefix] = STATE(5271), + [sym_val_interpolated] = STATE(5000), + [sym__inter_single_quotes] = STATE(5195), + [sym__inter_double_quotes] = STATE(5196), + [sym_val_list] = STATE(5000), + [sym__spread_list] = STATE(5323), + [sym_val_entry] = STATE(5251), + [sym_val_record] = STATE(5000), + [sym_val_table] = STATE(5000), + [sym_val_closure] = STATE(5000), + [sym__unquoted_in_list] = STATE(4730), + [sym__unquoted_in_list_with_expr] = STATE(5337), + [sym__unquoted_anonymous_prefix] = STATE(5093), [sym_comment] = STATE(460), [aux_sym__types_body_repeat1] = STATE(2454), [aux_sym_list_body_repeat1] = STATE(491), @@ -93865,7 +93870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(466)] = { - [sym__expr_parenthesized_immediate] = STATE(5282), + [sym__expr_parenthesized_immediate] = STATE(5449), [sym_comment] = STATE(466), [anon_sym_in] = ACTIONS(1157), [sym__newline] = ACTIONS(1157), @@ -95259,7 +95264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2039), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -95285,7 +95290,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(927), [sym__unquoted_with_expr] = STATE(1138), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(485), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -95396,7 +95401,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(487)] = { - [sym__expr_parenthesized_immediate] = STATE(5354), + [sym__expr_parenthesized_immediate] = STATE(5328), [sym_comment] = STATE(487), [ts_builtin_sym_end] = ACTIONS(1157), [anon_sym_in] = ACTIONS(1157), @@ -95619,7 +95624,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1191), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -95645,7 +95650,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(878), [sym__unquoted_with_expr] = STATE(1166), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(490), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -95684,39 +95689,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(491)] = { - [sym_expr_parenthesized] = STATE(4682), - [sym__spread_parenthesized] = STATE(5353), - [sym_val_range] = STATE(5373), - [sym__val_range] = STATE(5271), - [sym__value] = STATE(5373), - [sym_val_nothing] = STATE(5146), - [sym_val_bool] = STATE(4925), - [sym__spread_variable] = STATE(5432), - [sym_val_variable] = STATE(4527), - [sym_val_cellpath] = STATE(5146), - [sym_val_number] = STATE(5146), + [sym_expr_parenthesized] = STATE(4580), + [sym__spread_parenthesized] = STATE(5323), + [sym_val_range] = STATE(5337), + [sym__val_range] = STATE(5093), + [sym__value] = STATE(5337), + [sym_val_nothing] = STATE(5000), + [sym_val_bool] = STATE(4910), + [sym__spread_variable] = STATE(5372), + [sym_val_variable] = STATE(4529), + [sym_val_cellpath] = STATE(5000), + [sym_val_number] = STATE(5000), [sym__val_number_decimal] = STATE(4107), - [sym__val_number] = STATE(5155), - [sym_val_duration] = STATE(5146), - [sym_val_filesize] = STATE(5146), - [sym_val_binary] = STATE(5146), - [sym_val_string] = STATE(5146), + [sym__val_number] = STATE(5001), + [sym_val_duration] = STATE(5000), + [sym_val_filesize] = STATE(5000), + [sym_val_binary] = STATE(5000), + [sym_val_string] = STATE(5000), [sym__raw_str] = STATE(4072), [sym__str_double_quotes] = STATE(4072), [sym__str_single_quotes] = STATE(4072), [sym__str_back_ticks] = STATE(4072), - [sym_val_interpolated] = STATE(5146), - [sym__inter_single_quotes] = STATE(5105), - [sym__inter_double_quotes] = STATE(5106), - [sym_val_list] = STATE(5146), - [sym__spread_list] = STATE(5353), - [sym_val_entry] = STATE(5040), - [sym_val_record] = STATE(5146), - [sym_val_table] = STATE(5146), - [sym_val_closure] = STATE(5146), - [sym__unquoted_in_list] = STATE(4791), - [sym__unquoted_in_list_with_expr] = STATE(5373), - [sym__unquoted_anonymous_prefix] = STATE(5271), + [sym_val_interpolated] = STATE(5000), + [sym__inter_single_quotes] = STATE(5195), + [sym__inter_double_quotes] = STATE(5196), + [sym_val_list] = STATE(5000), + [sym__spread_list] = STATE(5323), + [sym_val_entry] = STATE(5213), + [sym_val_record] = STATE(5000), + [sym_val_table] = STATE(5000), + [sym_val_closure] = STATE(5000), + [sym__unquoted_in_list] = STATE(4730), + [sym__unquoted_in_list_with_expr] = STATE(5337), + [sym__unquoted_anonymous_prefix] = STATE(5093), [sym_comment] = STATE(491), [aux_sym_list_body_repeat1] = STATE(492), [anon_sym_true] = ACTIONS(1629), @@ -95756,39 +95761,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1671), }, [STATE(492)] = { - [sym_expr_parenthesized] = STATE(4682), - [sym__spread_parenthesized] = STATE(5353), - [sym_val_range] = STATE(5373), - [sym__val_range] = STATE(5271), - [sym__value] = STATE(5373), - [sym_val_nothing] = STATE(5146), - [sym_val_bool] = STATE(4925), - [sym__spread_variable] = STATE(5432), - [sym_val_variable] = STATE(4527), - [sym_val_cellpath] = STATE(5146), - [sym_val_number] = STATE(5146), + [sym_expr_parenthesized] = STATE(4580), + [sym__spread_parenthesized] = STATE(5323), + [sym_val_range] = STATE(5337), + [sym__val_range] = STATE(5093), + [sym__value] = STATE(5337), + [sym_val_nothing] = STATE(5000), + [sym_val_bool] = STATE(4910), + [sym__spread_variable] = STATE(5372), + [sym_val_variable] = STATE(4529), + [sym_val_cellpath] = STATE(5000), + [sym_val_number] = STATE(5000), [sym__val_number_decimal] = STATE(4107), - [sym__val_number] = STATE(5155), - [sym_val_duration] = STATE(5146), - [sym_val_filesize] = STATE(5146), - [sym_val_binary] = STATE(5146), - [sym_val_string] = STATE(5146), + [sym__val_number] = STATE(5001), + [sym_val_duration] = STATE(5000), + [sym_val_filesize] = STATE(5000), + [sym_val_binary] = STATE(5000), + [sym_val_string] = STATE(5000), [sym__raw_str] = STATE(4072), [sym__str_double_quotes] = STATE(4072), [sym__str_single_quotes] = STATE(4072), [sym__str_back_ticks] = STATE(4072), - [sym_val_interpolated] = STATE(5146), - [sym__inter_single_quotes] = STATE(5105), - [sym__inter_double_quotes] = STATE(5106), - [sym_val_list] = STATE(5146), - [sym__spread_list] = STATE(5353), - [sym_val_entry] = STATE(5363), - [sym_val_record] = STATE(5146), - [sym_val_table] = STATE(5146), - [sym_val_closure] = STATE(5146), - [sym__unquoted_in_list] = STATE(4791), - [sym__unquoted_in_list_with_expr] = STATE(5373), - [sym__unquoted_anonymous_prefix] = STATE(5271), + [sym_val_interpolated] = STATE(5000), + [sym__inter_single_quotes] = STATE(5195), + [sym__inter_double_quotes] = STATE(5196), + [sym_val_list] = STATE(5000), + [sym__spread_list] = STATE(5323), + [sym_val_entry] = STATE(5357), + [sym_val_record] = STATE(5000), + [sym_val_table] = STATE(5000), + [sym_val_closure] = STATE(5000), + [sym__unquoted_in_list] = STATE(4730), + [sym__unquoted_in_list_with_expr] = STATE(5337), + [sym__unquoted_anonymous_prefix] = STATE(5093), [sym_comment] = STATE(492), [aux_sym_list_body_repeat1] = STATE(492), [anon_sym_true] = ACTIONS(1980), @@ -95907,7 +95912,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1224), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -95933,7 +95938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(899), [sym__unquoted_with_expr] = STATE(1067), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(494), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -95979,7 +95984,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1226), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -96005,7 +96010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(900), [sym__unquoted_with_expr] = STATE(1069), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(495), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -96051,7 +96056,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2652), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -96077,7 +96082,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(924), [sym__unquoted_with_expr] = STATE(1129), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(496), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -96123,7 +96128,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1227), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -96149,7 +96154,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(901), [sym__unquoted_with_expr] = STATE(1071), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(497), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -96267,7 +96272,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1179), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -96293,7 +96298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(858), [sym__unquoted_with_expr] = STATE(1057), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(499), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -96339,7 +96344,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1182), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -96365,7 +96370,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(859), [sym__unquoted_with_expr] = STATE(1060), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(500), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -96411,7 +96416,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1184), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -96437,7 +96442,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(860), [sym__unquoted_with_expr] = STATE(1066), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(501), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -96483,7 +96488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2654), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -96509,7 +96514,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(925), [sym__unquoted_with_expr] = STATE(1132), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(502), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -96555,7 +96560,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1230), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -96581,7 +96586,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(903), [sym__unquoted_with_expr] = STATE(1074), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(503), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -96627,7 +96632,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1231), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -96653,7 +96658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(904), [sym__unquoted_with_expr] = STATE(1076), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(504), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -96699,7 +96704,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1232), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -96725,7 +96730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(905), [sym__unquoted_with_expr] = STATE(1078), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(505), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -96771,7 +96776,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1233), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -96797,7 +96802,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(906), [sym__unquoted_with_expr] = STATE(1080), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(506), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -96843,7 +96848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1185), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -96869,7 +96874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(862), [sym__unquoted_with_expr] = STATE(1072), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(507), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -96915,7 +96920,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1255), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -96941,7 +96946,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(846), [sym__unquoted_with_expr] = STATE(1149), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(508), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -96987,7 +96992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1265), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -97013,7 +97018,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(848), [sym__unquoted_with_expr] = STATE(1155), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(509), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -97059,7 +97064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1234), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -97085,7 +97090,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(907), [sym__unquoted_with_expr] = STATE(1083), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(510), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -97131,7 +97136,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1084), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -97157,7 +97162,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(908), [sym__unquoted_with_expr] = STATE(1086), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(511), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -97203,7 +97208,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1236), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -97229,7 +97234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(909), [sym__unquoted_with_expr] = STATE(1088), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(512), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -97275,7 +97280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1970), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -97301,7 +97306,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(846), [sym__unquoted_with_expr] = STATE(1149), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(513), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -97347,7 +97352,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1971), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -97373,7 +97378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(848), [sym__unquoted_with_expr] = STATE(1155), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(514), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -97419,7 +97424,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1972), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -97445,7 +97450,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(849), [sym__unquoted_with_expr] = STATE(1164), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(515), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -97491,7 +97496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1973), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -97517,7 +97522,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(850), [sym__unquoted_with_expr] = STATE(1171), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(516), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -97563,7 +97568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1974), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -97589,7 +97594,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(827), [sym__unquoted_with_expr] = STATE(1023), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(517), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -97635,7 +97640,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1975), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -97661,7 +97666,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(854), [sym__unquoted_with_expr] = STATE(1047), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(518), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -97707,7 +97712,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1976), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -97733,7 +97738,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(855), [sym__unquoted_with_expr] = STATE(1049), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(519), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -97779,7 +97784,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1977), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -97805,7 +97810,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(856), [sym__unquoted_with_expr] = STATE(1051), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(520), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -97851,7 +97856,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1052), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -97877,7 +97882,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(857), [sym__unquoted_with_expr] = STATE(1054), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(521), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -97923,7 +97928,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1978), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -97949,7 +97954,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(858), [sym__unquoted_with_expr] = STATE(1057), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(522), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -97995,7 +98000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1979), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -98021,7 +98026,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(859), [sym__unquoted_with_expr] = STATE(1060), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(523), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -98067,7 +98072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1980), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -98093,7 +98098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(860), [sym__unquoted_with_expr] = STATE(1066), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(524), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -98139,7 +98144,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1981), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -98165,7 +98170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(862), [sym__unquoted_with_expr] = STATE(1072), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(525), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -98211,7 +98216,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1238), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -98237,7 +98242,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(910), [sym__unquoted_with_expr] = STATE(1090), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(526), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -98283,7 +98288,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1982), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -98309,7 +98314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(878), [sym__unquoted_with_expr] = STATE(1166), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(527), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -98355,7 +98360,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1984), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -98381,7 +98386,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(879), [sym__unquoted_with_expr] = STATE(1169), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(528), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -98427,7 +98432,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1986), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -98453,7 +98458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(880), [sym__unquoted_with_expr] = STATE(1102), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(529), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -98499,7 +98504,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1988), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -98525,7 +98530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(881), [sym__unquoted_with_expr] = STATE(1021), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(530), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -98571,7 +98576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1990), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -98597,7 +98602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(882), [sym__unquoted_with_expr] = STATE(1024), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(531), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -98643,7 +98648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1992), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -98669,7 +98674,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(883), [sym__unquoted_with_expr] = STATE(1027), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(532), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -98715,7 +98720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1994), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -98741,7 +98746,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(884), [sym__unquoted_with_expr] = STATE(1030), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(533), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -98787,7 +98792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1996), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -98813,7 +98818,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(885), [sym__unquoted_with_expr] = STATE(1033), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(534), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -98859,7 +98864,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1035), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -98885,7 +98890,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(886), [sym__unquoted_with_expr] = STATE(1037), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(535), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -98931,7 +98936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1998), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -98957,7 +98962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(941), [sym__unquoted_with_expr] = STATE(1041), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(536), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -99003,7 +99008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2000), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -99029,7 +99034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(888), [sym__unquoted_with_expr] = STATE(1045), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(537), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -99075,7 +99080,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2002), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -99101,7 +99106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(897), [sym__unquoted_with_expr] = STATE(1061), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(538), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -99147,7 +99152,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2004), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -99173,7 +99178,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(898), [sym__unquoted_with_expr] = STATE(1064), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(539), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -99219,7 +99224,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2006), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -99245,7 +99250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(899), [sym__unquoted_with_expr] = STATE(1067), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(540), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -99291,7 +99296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2007), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -99317,7 +99322,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(900), [sym__unquoted_with_expr] = STATE(1069), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(541), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -99363,7 +99368,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2008), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -99389,7 +99394,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(901), [sym__unquoted_with_expr] = STATE(1071), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(542), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -99435,7 +99440,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2009), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -99461,7 +99466,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(903), [sym__unquoted_with_expr] = STATE(1074), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(543), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -99507,7 +99512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2010), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -99533,7 +99538,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(904), [sym__unquoted_with_expr] = STATE(1076), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(544), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -99579,7 +99584,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2011), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -99605,7 +99610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(905), [sym__unquoted_with_expr] = STATE(1078), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(545), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -99651,7 +99656,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2012), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -99677,7 +99682,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(906), [sym__unquoted_with_expr] = STATE(1080), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(546), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -99723,7 +99728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2013), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -99749,7 +99754,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(907), [sym__unquoted_with_expr] = STATE(1083), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(547), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -99795,7 +99800,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1084), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -99821,7 +99826,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(908), [sym__unquoted_with_expr] = STATE(1086), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(548), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -99867,7 +99872,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2015), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -99893,7 +99898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(909), [sym__unquoted_with_expr] = STATE(1088), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(549), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -99939,7 +99944,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2016), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -99965,7 +99970,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(910), [sym__unquoted_with_expr] = STATE(1090), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(550), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -100011,7 +100016,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2017), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -100037,7 +100042,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(911), [sym__unquoted_with_expr] = STATE(1092), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(551), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -100083,7 +100088,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2019), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -100109,7 +100114,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(912), [sym__unquoted_with_expr] = STATE(1094), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(552), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -100155,7 +100160,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1240), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -100181,7 +100186,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(911), [sym__unquoted_with_expr] = STATE(1092), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(553), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -100227,7 +100232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2033), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -100253,7 +100258,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(924), [sym__unquoted_with_expr] = STATE(1129), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(554), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -100299,7 +100304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2035), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -100325,7 +100330,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(925), [sym__unquoted_with_expr] = STATE(1132), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(555), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -100371,7 +100376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2037), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -100397,7 +100402,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(926), [sym__unquoted_with_expr] = STATE(1135), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(556), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -100443,7 +100448,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2638), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -100469,7 +100474,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(912), [sym__unquoted_with_expr] = STATE(1094), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(557), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -100515,7 +100520,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2041), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -100541,7 +100546,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(928), [sym__unquoted_with_expr] = STATE(1141), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(558), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -100587,7 +100592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2043), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -100613,7 +100618,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(929), [sym__unquoted_with_expr] = STATE(1144), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(559), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -100659,7 +100664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2045), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -100685,7 +100690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(930), [sym__unquoted_with_expr] = STATE(1147), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(560), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -100731,7 +100736,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2047), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -100757,7 +100762,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(931), [sym__unquoted_with_expr] = STATE(1150), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(561), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -100803,7 +100808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1152), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -100829,7 +100834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(935), [sym__unquoted_with_expr] = STATE(1158), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(562), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -100875,7 +100880,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2049), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -100901,7 +100906,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(936), [sym__unquoted_with_expr] = STATE(1162), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(563), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -100947,7 +100952,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2051), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -100973,7 +100978,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(937), [sym__unquoted_with_expr] = STATE(1165), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(564), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -101019,7 +101024,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2053), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -101045,7 +101050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(851), [sym__unquoted_with_expr] = STATE(1100), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(565), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -101091,7 +101096,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2055), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -101117,7 +101122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(923), [sym__unquoted_with_expr] = STATE(1079), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(566), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -101163,7 +101168,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1273), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -101189,7 +101194,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(849), [sym__unquoted_with_expr] = STATE(1164), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(567), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -101235,7 +101240,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1222), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -101261,7 +101266,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(898), [sym__unquoted_with_expr] = STATE(1064), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(568), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -101307,7 +101312,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2656), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -101333,7 +101338,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(926), [sym__unquoted_with_expr] = STATE(1135), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(569), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -101379,7 +101384,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2658), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -101405,7 +101410,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(927), [sym__unquoted_with_expr] = STATE(1138), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(570), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -101451,7 +101456,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2660), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -101477,7 +101482,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(928), [sym__unquoted_with_expr] = STATE(1141), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(571), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -101523,7 +101528,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1282), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -101549,7 +101554,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(827), [sym__unquoted_with_expr] = STATE(1023), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(572), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -101667,7 +101672,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2662), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -101693,7 +101698,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(929), [sym__unquoted_with_expr] = STATE(1144), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(574), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -101883,7 +101888,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1291), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -101909,7 +101914,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(854), [sym__unquoted_with_expr] = STATE(1047), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(577), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -101955,7 +101960,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1194), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -101981,7 +101986,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(879), [sym__unquoted_with_expr] = STATE(1169), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(578), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -102027,7 +102032,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1196), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -102053,7 +102058,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(880), [sym__unquoted_with_expr] = STATE(1102), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(579), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -102099,7 +102104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1198), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -102125,7 +102130,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(881), [sym__unquoted_with_expr] = STATE(1021), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(580), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -102171,7 +102176,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1200), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -102197,7 +102202,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(882), [sym__unquoted_with_expr] = STATE(1024), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(581), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -102243,7 +102248,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1202), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -102269,7 +102274,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(883), [sym__unquoted_with_expr] = STATE(1027), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(582), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -102387,7 +102392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2664), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -102413,7 +102418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(930), [sym__unquoted_with_expr] = STATE(1147), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(584), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -102459,7 +102464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2666), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -102485,7 +102490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(931), [sym__unquoted_with_expr] = STATE(1150), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(585), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -102531,7 +102536,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1205), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -102557,7 +102562,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(884), [sym__unquoted_with_expr] = STATE(1030), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(586), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -102603,7 +102608,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1207), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -102629,7 +102634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(885), [sym__unquoted_with_expr] = STATE(1033), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(587), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -102675,7 +102680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1035), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -102701,7 +102706,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(886), [sym__unquoted_with_expr] = STATE(1037), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(588), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -102747,7 +102752,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1210), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -102773,7 +102778,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(941), [sym__unquoted_with_expr] = STATE(1041), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(589), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -102819,7 +102824,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2589), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -102845,7 +102850,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(846), [sym__unquoted_with_expr] = STATE(1149), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(590), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -102891,7 +102896,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2590), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -102917,7 +102922,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(848), [sym__unquoted_with_expr] = STATE(1155), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(591), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -102963,7 +102968,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1241), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -102989,7 +102994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(912), [sym__unquoted_with_expr] = STATE(1094), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(592), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -103035,7 +103040,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1152), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -103061,7 +103066,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(935), [sym__unquoted_with_expr] = STATE(1158), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(593), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -103107,7 +103112,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2668), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -103133,7 +103138,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(936), [sym__unquoted_with_expr] = STATE(1162), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(594), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -103179,7 +103184,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2670), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -103205,7 +103210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(937), [sym__unquoted_with_expr] = STATE(1165), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(595), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -103251,7 +103256,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2672), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -103277,7 +103282,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(851), [sym__unquoted_with_expr] = STATE(1100), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(596), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -103323,7 +103328,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2674), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -103349,7 +103354,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(923), [sym__unquoted_with_expr] = STATE(1079), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(597), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -103395,7 +103400,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2591), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -103421,7 +103426,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(849), [sym__unquoted_with_expr] = STATE(1164), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(598), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -103467,7 +103472,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2592), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -103493,7 +103498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(850), [sym__unquoted_with_expr] = STATE(1171), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(599), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -103539,7 +103544,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2593), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -103565,7 +103570,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(827), [sym__unquoted_with_expr] = STATE(1023), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(600), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -103611,7 +103616,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2594), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -103637,7 +103642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(854), [sym__unquoted_with_expr] = STATE(1047), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(601), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -103683,7 +103688,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2595), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -103709,7 +103714,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(855), [sym__unquoted_with_expr] = STATE(1049), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(602), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -103755,7 +103760,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2596), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -103781,7 +103786,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(856), [sym__unquoted_with_expr] = STATE(1051), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(603), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -103827,7 +103832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1052), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -103853,7 +103858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(857), [sym__unquoted_with_expr] = STATE(1054), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(604), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -103899,7 +103904,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2597), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -103925,7 +103930,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(858), [sym__unquoted_with_expr] = STATE(1057), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(605), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -103971,7 +103976,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1262), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -103997,7 +104002,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(924), [sym__unquoted_with_expr] = STATE(1129), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(606), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -104043,7 +104048,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1266), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -104069,7 +104074,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(925), [sym__unquoted_with_expr] = STATE(1132), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(607), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -104115,7 +104120,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1270), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -104141,7 +104146,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(926), [sym__unquoted_with_expr] = STATE(1135), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(608), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -104187,7 +104192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2598), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -104213,7 +104218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(859), [sym__unquoted_with_expr] = STATE(1060), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(609), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -104259,7 +104264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1274), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -104285,7 +104290,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(927), [sym__unquoted_with_expr] = STATE(1138), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(610), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -104331,7 +104336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1277), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -104357,7 +104362,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(928), [sym__unquoted_with_expr] = STATE(1141), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(611), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -104403,7 +104408,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1280), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -104429,7 +104434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(929), [sym__unquoted_with_expr] = STATE(1144), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(612), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -104475,7 +104480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1283), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -104501,7 +104506,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(930), [sym__unquoted_with_expr] = STATE(1147), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(613), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -104547,7 +104552,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1285), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -104573,7 +104578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(931), [sym__unquoted_with_expr] = STATE(1150), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(614), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -104619,7 +104624,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1152), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -104645,7 +104650,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(935), [sym__unquoted_with_expr] = STATE(1158), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(615), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -104691,7 +104696,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1289), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -104717,7 +104722,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(936), [sym__unquoted_with_expr] = STATE(1162), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(616), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -104763,7 +104768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2599), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -104789,7 +104794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(860), [sym__unquoted_with_expr] = STATE(1066), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(617), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -104835,7 +104840,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1293), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -104861,7 +104866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(937), [sym__unquoted_with_expr] = STATE(1165), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(618), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -104907,7 +104912,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1192), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -104933,7 +104938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(851), [sym__unquoted_with_expr] = STATE(1100), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(619), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -104979,7 +104984,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1173), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -105005,7 +105010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(923), [sym__unquoted_with_expr] = STATE(1079), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(620), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -105044,39 +105049,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(621)] = { - [sym_expr_parenthesized] = STATE(4682), - [sym__spread_parenthesized] = STATE(5353), - [sym_val_range] = STATE(5373), - [sym__val_range] = STATE(5271), - [sym__value] = STATE(5373), - [sym_val_nothing] = STATE(5146), - [sym_val_bool] = STATE(4925), - [sym__spread_variable] = STATE(5432), - [sym_val_variable] = STATE(4527), - [sym_val_cellpath] = STATE(5146), - [sym_val_number] = STATE(5146), + [sym_expr_parenthesized] = STATE(4580), + [sym__spread_parenthesized] = STATE(5323), + [sym_val_range] = STATE(5337), + [sym__val_range] = STATE(5093), + [sym__value] = STATE(5337), + [sym_val_nothing] = STATE(5000), + [sym_val_bool] = STATE(4910), + [sym__spread_variable] = STATE(5372), + [sym_val_variable] = STATE(4529), + [sym_val_cellpath] = STATE(5000), + [sym_val_number] = STATE(5000), [sym__val_number_decimal] = STATE(4107), - [sym__val_number] = STATE(5155), - [sym_val_duration] = STATE(5146), - [sym_val_filesize] = STATE(5146), - [sym_val_binary] = STATE(5146), - [sym_val_string] = STATE(5146), + [sym__val_number] = STATE(5001), + [sym_val_duration] = STATE(5000), + [sym_val_filesize] = STATE(5000), + [sym_val_binary] = STATE(5000), + [sym_val_string] = STATE(5000), [sym__raw_str] = STATE(4072), [sym__str_double_quotes] = STATE(4072), [sym__str_single_quotes] = STATE(4072), [sym__str_back_ticks] = STATE(4072), - [sym_val_interpolated] = STATE(5146), - [sym__inter_single_quotes] = STATE(5105), - [sym__inter_double_quotes] = STATE(5106), - [sym_val_list] = STATE(5146), - [sym__spread_list] = STATE(5353), - [sym_val_entry] = STATE(5223), - [sym_val_record] = STATE(5146), - [sym_val_table] = STATE(5146), - [sym_val_closure] = STATE(5146), - [sym__unquoted_in_list] = STATE(4791), - [sym__unquoted_in_list_with_expr] = STATE(5373), - [sym__unquoted_anonymous_prefix] = STATE(5271), + [sym_val_interpolated] = STATE(5000), + [sym__inter_single_quotes] = STATE(5195), + [sym__inter_double_quotes] = STATE(5196), + [sym_val_list] = STATE(5000), + [sym__spread_list] = STATE(5323), + [sym_val_entry] = STATE(5256), + [sym_val_record] = STATE(5000), + [sym_val_table] = STATE(5000), + [sym_val_closure] = STATE(5000), + [sym__unquoted_in_list] = STATE(4730), + [sym__unquoted_in_list_with_expr] = STATE(5337), + [sym__unquoted_anonymous_prefix] = STATE(5093), [sym_comment] = STATE(621), [aux_sym_list_body_repeat1] = STATE(492), [anon_sym_true] = ACTIONS(1629), @@ -105123,7 +105128,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2600), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -105149,7 +105154,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(862), [sym__unquoted_with_expr] = STATE(1072), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(622), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -105188,25 +105193,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(623)] = { - [sym_cmd_identifier] = STATE(4780), - [sym_expr_parenthesized] = STATE(5736), - [sym__spread_parenthesized] = STATE(5344), - [sym__spread_variable] = STATE(5350), - [sym_val_variable] = STATE(5736), - [sym_val_number] = STATE(5736), + [sym_cmd_identifier] = STATE(4951), + [sym_expr_parenthesized] = STATE(5963), + [sym__spread_parenthesized] = STATE(5293), + [sym__spread_variable] = STATE(5309), + [sym_val_variable] = STATE(5963), + [sym_val_number] = STATE(5963), [sym__val_number_decimal] = STATE(2476), [sym__val_number] = STATE(824), - [sym_val_string] = STATE(5736), + [sym_val_string] = STATE(5963), [sym__raw_str] = STATE(2859), [sym__str_double_quotes] = STATE(2859), [sym__str_single_quotes] = STATE(2859), [sym__str_back_ticks] = STATE(2859), - [sym_val_interpolated] = STATE(5736), + [sym_val_interpolated] = STATE(5963), [sym__inter_single_quotes] = STATE(917), [sym__inter_double_quotes] = STATE(918), - [sym__spread_record] = STATE(5344), - [sym_record_entry] = STATE(5267), - [sym__record_key] = STATE(5747), + [sym__spread_record] = STATE(5293), + [sym_record_entry] = STATE(5022), + [sym__record_key] = STATE(5767), [sym_comment] = STATE(623), [aux_sym__types_body_repeat1] = STATE(1829), [aux_sym_record_body_repeat1] = STATE(707), @@ -105267,7 +105272,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1214), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -105293,7 +105298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(888), [sym__unquoted_with_expr] = STATE(1045), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(624), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -105339,7 +105344,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1219), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -105365,7 +105370,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(897), [sym__unquoted_with_expr] = STATE(1061), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(625), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -105411,7 +105416,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1174), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -105437,7 +105442,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(855), [sym__unquoted_with_expr] = STATE(1049), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(626), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -105483,7 +105488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1176), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -105509,7 +105514,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(856), [sym__unquoted_with_expr] = STATE(1051), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(627), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -105555,7 +105560,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2604), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -105581,7 +105586,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(878), [sym__unquoted_with_expr] = STATE(1166), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(628), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -105627,7 +105632,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2606), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -105653,7 +105658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(879), [sym__unquoted_with_expr] = STATE(1169), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(629), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -105699,7 +105704,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2717), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -105725,7 +105730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(880), [sym__unquoted_with_expr] = STATE(1102), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(630), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -105771,7 +105776,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2609), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -105797,7 +105802,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(881), [sym__unquoted_with_expr] = STATE(1021), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(631), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -105843,7 +105848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2611), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -105869,7 +105874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(882), [sym__unquoted_with_expr] = STATE(1024), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(632), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -105915,7 +105920,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2613), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -105941,7 +105946,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(883), [sym__unquoted_with_expr] = STATE(1027), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(633), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -105987,7 +105992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2615), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -106013,7 +106018,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(884), [sym__unquoted_with_expr] = STATE(1030), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(634), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -106059,7 +106064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2617), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -106085,7 +106090,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(885), [sym__unquoted_with_expr] = STATE(1033), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(635), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -106131,7 +106136,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1035), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -106157,7 +106162,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(886), [sym__unquoted_with_expr] = STATE(1037), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(636), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -106203,7 +106208,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2619), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -106229,7 +106234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(941), [sym__unquoted_with_expr] = STATE(1041), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(637), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -106275,7 +106280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2621), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -106301,7 +106306,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(888), [sym__unquoted_with_expr] = STATE(1045), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(638), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -106347,7 +106352,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2623), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -106373,7 +106378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(897), [sym__unquoted_with_expr] = STATE(1061), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(639), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -106419,7 +106424,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2625), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -106445,7 +106450,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(898), [sym__unquoted_with_expr] = STATE(1064), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(640), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -106491,7 +106496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2627), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -106517,7 +106522,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(899), [sym__unquoted_with_expr] = STATE(1067), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(641), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -106563,7 +106568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2628), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -106589,7 +106594,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(900), [sym__unquoted_with_expr] = STATE(1069), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(642), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -106635,7 +106640,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2629), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -106661,7 +106666,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(901), [sym__unquoted_with_expr] = STATE(1071), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(643), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -106707,7 +106712,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2630), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -106733,7 +106738,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(903), [sym__unquoted_with_expr] = STATE(1074), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(644), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -106779,7 +106784,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2631), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -106805,7 +106810,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(904), [sym__unquoted_with_expr] = STATE(1076), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(645), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -106851,7 +106856,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2632), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -106877,7 +106882,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(905), [sym__unquoted_with_expr] = STATE(1078), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(646), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -106995,7 +107000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1052), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -107021,7 +107026,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(857), [sym__unquoted_with_expr] = STATE(1054), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(648), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -107067,7 +107072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2633), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -107093,7 +107098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(906), [sym__unquoted_with_expr] = STATE(1080), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(649), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -107139,7 +107144,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2634), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -107165,7 +107170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(907), [sym__unquoted_with_expr] = STATE(1083), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(650), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -107211,7 +107216,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1084), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -107237,7 +107242,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(908), [sym__unquoted_with_expr] = STATE(1086), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(651), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -107283,7 +107288,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2635), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -107309,7 +107314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(909), [sym__unquoted_with_expr] = STATE(1088), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(652), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -107355,7 +107360,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2636), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -107381,7 +107386,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(910), [sym__unquoted_with_expr] = STATE(1090), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(653), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -107499,7 +107504,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(2637), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -107525,7 +107530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(911), [sym__unquoted_with_expr] = STATE(1092), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(655), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -107571,7 +107576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression_parenthesized] = STATE(1278), [sym_expr_parenthesized] = STATE(845), [sym_val_range] = STATE(1254), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(1254), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -107597,7 +107602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(850), [sym__unquoted_with_expr] = STATE(1171), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(656), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -107707,25 +107712,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(658)] = { - [sym_cmd_identifier] = STATE(4871), - [sym_expr_parenthesized] = STATE(5702), + [sym_cmd_identifier] = STATE(4816), + [sym_expr_parenthesized] = STATE(5704), [sym__spread_parenthesized] = STATE(1838), [sym__spread_variable] = STATE(1839), [sym_val_variable] = STATE(1745), - [sym_val_number] = STATE(5702), + [sym_val_number] = STATE(5704), [sym__val_number_decimal] = STATE(2476), [sym__val_number] = STATE(824), - [sym_val_string] = STATE(5702), + [sym_val_string] = STATE(5704), [sym__raw_str] = STATE(2859), [sym__str_double_quotes] = STATE(2859), [sym__str_single_quotes] = STATE(2859), [sym__str_back_ticks] = STATE(2859), - [sym_val_interpolated] = STATE(5702), + [sym_val_interpolated] = STATE(5704), [sym__inter_single_quotes] = STATE(917), [sym__inter_double_quotes] = STATE(918), [sym__spread_record] = STATE(1838), [sym_record_entry] = STATE(1819), - [sym__record_key] = STATE(5689), + [sym__record_key] = STATE(5691), [sym_comment] = STATE(658), [aux_sym__match_pattern_record_repeat1] = STATE(680), [anon_sym_export] = ACTIONS(2092), @@ -109056,25 +109061,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(677)] = { - [sym_cmd_identifier] = STATE(4871), - [sym_expr_parenthesized] = STATE(5702), + [sym_cmd_identifier] = STATE(4816), + [sym_expr_parenthesized] = STATE(5704), [sym__spread_parenthesized] = STATE(1838), [sym__spread_variable] = STATE(1839), [sym_val_variable] = STATE(1745), - [sym_val_number] = STATE(5702), + [sym_val_number] = STATE(5704), [sym__val_number_decimal] = STATE(2476), [sym__val_number] = STATE(824), - [sym_val_string] = STATE(5702), + [sym_val_string] = STATE(5704), [sym__raw_str] = STATE(2859), [sym__str_double_quotes] = STATE(2859), [sym__str_single_quotes] = STATE(2859), [sym__str_back_ticks] = STATE(2859), - [sym_val_interpolated] = STATE(5702), + [sym_val_interpolated] = STATE(5704), [sym__inter_single_quotes] = STATE(917), [sym__inter_double_quotes] = STATE(918), [sym__spread_record] = STATE(1838), [sym_record_entry] = STATE(1819), - [sym__record_key] = STATE(5689), + [sym__record_key] = STATE(5691), [sym_comment] = STATE(677), [aux_sym__match_pattern_record_repeat1] = STATE(658), [anon_sym_export] = ACTIONS(2092), @@ -109127,25 +109132,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1835), }, [STATE(678)] = { - [sym_cmd_identifier] = STATE(4871), - [sym_expr_parenthesized] = STATE(5702), + [sym_cmd_identifier] = STATE(4816), + [sym_expr_parenthesized] = STATE(5704), [sym__spread_parenthesized] = STATE(1838), [sym__spread_variable] = STATE(1839), [sym_val_variable] = STATE(1745), - [sym_val_number] = STATE(5702), + [sym_val_number] = STATE(5704), [sym__val_number_decimal] = STATE(2476), [sym__val_number] = STATE(824), - [sym_val_string] = STATE(5702), + [sym_val_string] = STATE(5704), [sym__raw_str] = STATE(2859), [sym__str_double_quotes] = STATE(2859), [sym__str_single_quotes] = STATE(2859), [sym__str_back_ticks] = STATE(2859), - [sym_val_interpolated] = STATE(5702), + [sym_val_interpolated] = STATE(5704), [sym__inter_single_quotes] = STATE(917), [sym__inter_double_quotes] = STATE(918), [sym__spread_record] = STATE(1838), [sym_record_entry] = STATE(1819), - [sym__record_key] = STATE(5689), + [sym__record_key] = STATE(5691), [sym_comment] = STATE(678), [aux_sym__match_pattern_record_repeat1] = STATE(680), [anon_sym_export] = ACTIONS(2092), @@ -109269,25 +109274,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(680)] = { - [sym_cmd_identifier] = STATE(4871), - [sym_expr_parenthesized] = STATE(5702), + [sym_cmd_identifier] = STATE(4816), + [sym_expr_parenthesized] = STATE(5704), [sym__spread_parenthesized] = STATE(1838), [sym__spread_variable] = STATE(1839), [sym_val_variable] = STATE(1745), - [sym_val_number] = STATE(5702), + [sym_val_number] = STATE(5704), [sym__val_number_decimal] = STATE(2476), [sym__val_number] = STATE(824), - [sym_val_string] = STATE(5702), + [sym_val_string] = STATE(5704), [sym__raw_str] = STATE(2859), [sym__str_double_quotes] = STATE(2859), [sym__str_single_quotes] = STATE(2859), [sym__str_back_ticks] = STATE(2859), - [sym_val_interpolated] = STATE(5702), + [sym_val_interpolated] = STATE(5704), [sym__inter_single_quotes] = STATE(917), [sym__inter_double_quotes] = STATE(918), [sym__spread_record] = STATE(1838), [sym_record_entry] = STATE(1819), - [sym__record_key] = STATE(5689), + [sym__record_key] = STATE(5691), [sym_comment] = STATE(680), [aux_sym__match_pattern_record_repeat1] = STATE(680), [anon_sym_export] = ACTIONS(2150), @@ -109766,25 +109771,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(687)] = { - [sym_cmd_identifier] = STATE(4871), - [sym_expr_parenthesized] = STATE(5702), + [sym_cmd_identifier] = STATE(4816), + [sym_expr_parenthesized] = STATE(5704), [sym__spread_parenthesized] = STATE(1838), [sym__spread_variable] = STATE(1839), [sym_val_variable] = STATE(1745), - [sym_val_number] = STATE(5702), + [sym_val_number] = STATE(5704), [sym__val_number_decimal] = STATE(2476), [sym__val_number] = STATE(824), - [sym_val_string] = STATE(5702), + [sym_val_string] = STATE(5704), [sym__raw_str] = STATE(2859), [sym__str_double_quotes] = STATE(2859), [sym__str_single_quotes] = STATE(2859), [sym__str_back_ticks] = STATE(2859), - [sym_val_interpolated] = STATE(5702), + [sym_val_interpolated] = STATE(5704), [sym__inter_single_quotes] = STATE(917), [sym__inter_double_quotes] = STATE(918), [sym__spread_record] = STATE(1838), [sym_record_entry] = STATE(1819), - [sym__record_key] = STATE(5689), + [sym__record_key] = STATE(5691), [sym_comment] = STATE(687), [aux_sym__match_pattern_record_repeat1] = STATE(678), [anon_sym_export] = ACTIONS(2092), @@ -110125,7 +110130,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2786), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -110151,7 +110156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(791), [sym__unquoted_with_expr] = STATE(1016), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(692), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -110195,7 +110200,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2769), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -110221,7 +110226,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(792), [sym__unquoted_with_expr] = STATE(945), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(693), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -110265,7 +110270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2804), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -110291,7 +110296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(793), [sym__unquoted_with_expr] = STATE(961), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(694), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -110335,7 +110340,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2817), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -110361,7 +110366,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(799), [sym__unquoted_with_expr] = STATE(968), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(695), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -110405,7 +110410,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2803), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -110431,7 +110436,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(803), [sym__unquoted_with_expr] = STATE(982), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(696), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -110475,7 +110480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2788), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -110501,7 +110506,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(804), [sym__unquoted_with_expr] = STATE(947), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(697), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -110545,7 +110550,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2794), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -110571,7 +110576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(805), [sym__unquoted_with_expr] = STATE(966), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(698), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -110615,7 +110620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2814), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -110641,7 +110646,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(806), [sym__unquoted_with_expr] = STATE(991), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(699), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -110685,7 +110690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(1014), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -110711,7 +110716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(810), [sym__unquoted_with_expr] = STATE(963), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(700), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -110755,7 +110760,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2779), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -110781,7 +110786,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(812), [sym__unquoted_with_expr] = STATE(969), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(701), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -110825,7 +110830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2784), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -110851,7 +110856,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(813), [sym__unquoted_with_expr] = STATE(971), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(702), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -110895,7 +110900,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2787), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -110921,7 +110926,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(814), [sym__unquoted_with_expr] = STATE(973), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(703), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -110965,7 +110970,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2820), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2492), @@ -110991,7 +110996,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(815), [sym__unquoted_with_expr] = STATE(976), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(704), [anon_sym_true] = ACTIONS(2058), [anon_sym_false] = ACTIONS(2058), @@ -111169,25 +111174,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(707)] = { - [sym_cmd_identifier] = STATE(4780), - [sym_expr_parenthesized] = STATE(5736), - [sym__spread_parenthesized] = STATE(5344), - [sym__spread_variable] = STATE(5350), - [sym_val_variable] = STATE(5736), - [sym_val_number] = STATE(5736), + [sym_cmd_identifier] = STATE(4951), + [sym_expr_parenthesized] = STATE(5963), + [sym__spread_parenthesized] = STATE(5293), + [sym__spread_variable] = STATE(5309), + [sym_val_variable] = STATE(5963), + [sym_val_number] = STATE(5963), [sym__val_number_decimal] = STATE(2476), [sym__val_number] = STATE(824), - [sym_val_string] = STATE(5736), + [sym_val_string] = STATE(5963), [sym__raw_str] = STATE(2859), [sym__str_double_quotes] = STATE(2859), [sym__str_single_quotes] = STATE(2859), [sym__str_back_ticks] = STATE(2859), - [sym_val_interpolated] = STATE(5736), + [sym_val_interpolated] = STATE(5963), [sym__inter_single_quotes] = STATE(917), [sym__inter_double_quotes] = STATE(918), - [sym__spread_record] = STATE(5344), - [sym_record_entry] = STATE(5175), - [sym__record_key] = STATE(5747), + [sym__spread_record] = STATE(5293), + [sym_record_entry] = STATE(5229), + [sym__record_key] = STATE(5767), [sym_comment] = STATE(707), [aux_sym_record_body_repeat1] = STATE(708), [anon_sym_export] = ACTIONS(247), @@ -111239,25 +111244,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1835), }, [STATE(708)] = { - [sym_cmd_identifier] = STATE(4780), - [sym_expr_parenthesized] = STATE(5736), - [sym__spread_parenthesized] = STATE(5344), - [sym__spread_variable] = STATE(5350), - [sym_val_variable] = STATE(5736), - [sym_val_number] = STATE(5736), + [sym_cmd_identifier] = STATE(4951), + [sym_expr_parenthesized] = STATE(5963), + [sym__spread_parenthesized] = STATE(5293), + [sym__spread_variable] = STATE(5309), + [sym_val_variable] = STATE(5963), + [sym_val_number] = STATE(5963), [sym__val_number_decimal] = STATE(2476), [sym__val_number] = STATE(824), - [sym_val_string] = STATE(5736), + [sym_val_string] = STATE(5963), [sym__raw_str] = STATE(2859), [sym__str_double_quotes] = STATE(2859), [sym__str_single_quotes] = STATE(2859), [sym__str_back_ticks] = STATE(2859), - [sym_val_interpolated] = STATE(5736), + [sym_val_interpolated] = STATE(5963), [sym__inter_single_quotes] = STATE(917), [sym__inter_double_quotes] = STATE(918), - [sym__spread_record] = STATE(5344), - [sym_record_entry] = STATE(5399), - [sym__record_key] = STATE(5747), + [sym__spread_record] = STATE(5293), + [sym_record_entry] = STATE(5376), + [sym__record_key] = STATE(5767), [sym_comment] = STATE(708), [aux_sym_record_body_repeat1] = STATE(708), [anon_sym_export] = ACTIONS(2243), @@ -111315,7 +111320,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(1239), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -111341,7 +111346,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(791), [sym__unquoted_with_expr] = STATE(1016), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(709), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -111385,7 +111390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(1242), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -111411,7 +111416,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(792), [sym__unquoted_with_expr] = STATE(945), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(710), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -111455,7 +111460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(1243), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -111481,7 +111486,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(793), [sym__unquoted_with_expr] = STATE(961), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(711), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -111525,7 +111530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(1244), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -111551,7 +111556,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(799), [sym__unquoted_with_expr] = STATE(968), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(712), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -111595,7 +111600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(1251), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -111621,7 +111626,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(803), [sym__unquoted_with_expr] = STATE(982), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(713), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -111665,7 +111670,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(1258), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -111691,7 +111696,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(804), [sym__unquoted_with_expr] = STATE(947), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(714), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -111735,7 +111740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(1260), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -111761,7 +111766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(805), [sym__unquoted_with_expr] = STATE(966), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(715), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -111805,7 +111810,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(1263), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -111831,7 +111836,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(806), [sym__unquoted_with_expr] = STATE(991), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(716), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -111875,7 +111880,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(1014), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -111901,7 +111906,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(810), [sym__unquoted_with_expr] = STATE(963), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(717), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -111945,7 +111950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(1267), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -111971,7 +111976,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(812), [sym__unquoted_with_expr] = STATE(969), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(718), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -112015,7 +112020,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(1269), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -112041,7 +112046,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(813), [sym__unquoted_with_expr] = STATE(971), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(719), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -112085,7 +112090,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(1271), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -112111,7 +112116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(814), [sym__unquoted_with_expr] = STATE(973), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(720), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -112155,7 +112160,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(1275), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(964), @@ -112181,7 +112186,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(815), [sym__unquoted_with_expr] = STATE(976), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(721), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), @@ -112289,25 +112294,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(2308), }, [STATE(723)] = { - [sym_cmd_identifier] = STATE(4780), - [sym_expr_parenthesized] = STATE(5736), - [sym__spread_parenthesized] = STATE(5344), - [sym__spread_variable] = STATE(5350), - [sym_val_variable] = STATE(5736), - [sym_val_number] = STATE(5736), + [sym_cmd_identifier] = STATE(4951), + [sym_expr_parenthesized] = STATE(5963), + [sym__spread_parenthesized] = STATE(5293), + [sym__spread_variable] = STATE(5309), + [sym_val_variable] = STATE(5963), + [sym_val_number] = STATE(5963), [sym__val_number_decimal] = STATE(2476), [sym__val_number] = STATE(824), - [sym_val_string] = STATE(5736), + [sym_val_string] = STATE(5963), [sym__raw_str] = STATE(2859), [sym__str_double_quotes] = STATE(2859), [sym__str_single_quotes] = STATE(2859), [sym__str_back_ticks] = STATE(2859), - [sym_val_interpolated] = STATE(5736), + [sym_val_interpolated] = STATE(5963), [sym__inter_single_quotes] = STATE(917), [sym__inter_double_quotes] = STATE(918), - [sym__spread_record] = STATE(5344), - [sym_record_entry] = STATE(4992), - [sym__record_key] = STATE(5747), + [sym__spread_record] = STATE(5293), + [sym_record_entry] = STATE(5023), + [sym__record_key] = STATE(5767), [sym_comment] = STATE(723), [aux_sym_record_body_repeat1] = STATE(708), [anon_sym_export] = ACTIONS(247), @@ -112645,7 +112650,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(1381), [sym_expr_parenthesized] = STATE(943), [sym_val_range] = STATE(1380), - [sym__val_range] = STATE(5127), + [sym__val_range] = STATE(4995), [sym__value] = STATE(1380), [sym_val_nothing] = STATE(1357), [sym_val_bool] = STATE(1128), @@ -112671,7 +112676,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(1357), [sym_unquoted] = STATE(1161), [sym__unquoted_with_expr] = STATE(1385), - [sym__unquoted_anonymous_prefix] = STATE(5127), + [sym__unquoted_anonymous_prefix] = STATE(4995), [sym_comment] = STATE(728), [anon_sym_true] = ACTIONS(2344), [anon_sym_false] = ACTIONS(2344), @@ -112715,7 +112720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(1386), [sym_expr_parenthesized] = STATE(943), [sym_val_range] = STATE(1380), - [sym__val_range] = STATE(5127), + [sym__val_range] = STATE(4995), [sym__value] = STATE(1380), [sym_val_nothing] = STATE(1357), [sym_val_bool] = STATE(1128), @@ -112741,7 +112746,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(1357), [sym_unquoted] = STATE(1168), [sym__unquoted_with_expr] = STATE(1388), - [sym__unquoted_anonymous_prefix] = STATE(5127), + [sym__unquoted_anonymous_prefix] = STATE(4995), [sym_comment] = STATE(729), [anon_sym_true] = ACTIONS(2344), [anon_sym_false] = ACTIONS(2344), @@ -112785,7 +112790,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(1389), [sym_expr_parenthesized] = STATE(943), [sym_val_range] = STATE(1380), - [sym__val_range] = STATE(5127), + [sym__val_range] = STATE(4995), [sym__value] = STATE(1380), [sym_val_nothing] = STATE(1357), [sym_val_bool] = STATE(1128), @@ -112811,7 +112816,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(1357), [sym_unquoted] = STATE(1020), [sym__unquoted_with_expr] = STATE(1298), - [sym__unquoted_anonymous_prefix] = STATE(5127), + [sym__unquoted_anonymous_prefix] = STATE(4995), [sym_comment] = STATE(730), [anon_sym_true] = ACTIONS(2344), [anon_sym_false] = ACTIONS(2344), @@ -112855,7 +112860,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(1299), [sym_expr_parenthesized] = STATE(943), [sym_val_range] = STATE(1380), - [sym__val_range] = STATE(5127), + [sym__val_range] = STATE(4995), [sym__value] = STATE(1380), [sym_val_nothing] = STATE(1357), [sym_val_bool] = STATE(1128), @@ -112881,7 +112886,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(1357), [sym_unquoted] = STATE(1036), [sym__unquoted_with_expr] = STATE(1308), - [sym__unquoted_anonymous_prefix] = STATE(5127), + [sym__unquoted_anonymous_prefix] = STATE(4995), [sym_comment] = STATE(731), [anon_sym_true] = ACTIONS(2344), [anon_sym_false] = ACTIONS(2344), @@ -112925,7 +112930,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(1309), [sym_expr_parenthesized] = STATE(943), [sym_val_range] = STATE(1380), - [sym__val_range] = STATE(5127), + [sym__val_range] = STATE(4995), [sym__value] = STATE(1380), [sym_val_nothing] = STATE(1357), [sym_val_bool] = STATE(1128), @@ -112951,7 +112956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(1357), [sym_unquoted] = STATE(1044), [sym__unquoted_with_expr] = STATE(1315), - [sym__unquoted_anonymous_prefix] = STATE(5127), + [sym__unquoted_anonymous_prefix] = STATE(4995), [sym_comment] = STATE(732), [anon_sym_true] = ACTIONS(2344), [anon_sym_false] = ACTIONS(2344), @@ -112995,7 +113000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(1318), [sym_expr_parenthesized] = STATE(943), [sym_val_range] = STATE(1380), - [sym__val_range] = STATE(5127), + [sym__val_range] = STATE(4995), [sym__value] = STATE(1380), [sym_val_nothing] = STATE(1357), [sym_val_bool] = STATE(1128), @@ -113021,7 +113026,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(1357), [sym_unquoted] = STATE(1048), [sym__unquoted_with_expr] = STATE(1319), - [sym__unquoted_anonymous_prefix] = STATE(5127), + [sym__unquoted_anonymous_prefix] = STATE(4995), [sym_comment] = STATE(733), [anon_sym_true] = ACTIONS(2344), [anon_sym_false] = ACTIONS(2344), @@ -113065,7 +113070,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(1320), [sym_expr_parenthesized] = STATE(943), [sym_val_range] = STATE(1380), - [sym__val_range] = STATE(5127), + [sym__val_range] = STATE(4995), [sym__value] = STATE(1380), [sym_val_nothing] = STATE(1357), [sym_val_bool] = STATE(1128), @@ -113091,7 +113096,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(1357), [sym_unquoted] = STATE(1050), [sym__unquoted_with_expr] = STATE(1322), - [sym__unquoted_anonymous_prefix] = STATE(5127), + [sym__unquoted_anonymous_prefix] = STATE(4995), [sym_comment] = STATE(734), [anon_sym_true] = ACTIONS(2344), [anon_sym_false] = ACTIONS(2344), @@ -113135,7 +113140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(1326), [sym_expr_parenthesized] = STATE(943), [sym_val_range] = STATE(1380), - [sym__val_range] = STATE(5127), + [sym__val_range] = STATE(4995), [sym__value] = STATE(1380), [sym_val_nothing] = STATE(1357), [sym_val_bool] = STATE(1128), @@ -113161,7 +113166,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(1357), [sym_unquoted] = STATE(1053), [sym__unquoted_with_expr] = STATE(1297), - [sym__unquoted_anonymous_prefix] = STATE(5127), + [sym__unquoted_anonymous_prefix] = STATE(4995), [sym_comment] = STATE(735), [anon_sym_true] = ACTIONS(2344), [anon_sym_false] = ACTIONS(2344), @@ -113205,7 +113210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(1328), [sym_expr_parenthesized] = STATE(943), [sym_val_range] = STATE(1380), - [sym__val_range] = STATE(5127), + [sym__val_range] = STATE(4995), [sym__value] = STATE(1380), [sym_val_nothing] = STATE(1357), [sym_val_bool] = STATE(1128), @@ -113231,7 +113236,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(1357), [sym_unquoted] = STATE(1055), [sym__unquoted_with_expr] = STATE(1330), - [sym__unquoted_anonymous_prefix] = STATE(5127), + [sym__unquoted_anonymous_prefix] = STATE(4995), [sym_comment] = STATE(736), [anon_sym_true] = ACTIONS(2344), [anon_sym_false] = ACTIONS(2344), @@ -113275,7 +113280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(1331), [sym_expr_parenthesized] = STATE(943), [sym_val_range] = STATE(1380), - [sym__val_range] = STATE(5127), + [sym__val_range] = STATE(4995), [sym__value] = STATE(1380), [sym_val_nothing] = STATE(1357), [sym_val_bool] = STATE(1128), @@ -113301,7 +113306,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(1357), [sym_unquoted] = STATE(1058), [sym__unquoted_with_expr] = STATE(1332), - [sym__unquoted_anonymous_prefix] = STATE(5127), + [sym__unquoted_anonymous_prefix] = STATE(4995), [sym_comment] = STATE(737), [anon_sym_true] = ACTIONS(2344), [anon_sym_false] = ACTIONS(2344), @@ -113345,7 +113350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2081), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -113371,7 +113376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(815), [sym__unquoted_with_expr] = STATE(976), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(738), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -113415,7 +113420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(1336), [sym_expr_parenthesized] = STATE(943), [sym_val_range] = STATE(1380), - [sym__val_range] = STATE(5127), + [sym__val_range] = STATE(4995), [sym__value] = STATE(1380), [sym_val_nothing] = STATE(1357), [sym_val_bool] = STATE(1128), @@ -113441,7 +113446,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(1357), [sym_unquoted] = STATE(1068), [sym__unquoted_with_expr] = STATE(1338), - [sym__unquoted_anonymous_prefix] = STATE(5127), + [sym__unquoted_anonymous_prefix] = STATE(4995), [sym_comment] = STATE(739), [anon_sym_true] = ACTIONS(2344), [anon_sym_false] = ACTIONS(2344), @@ -113555,7 +113560,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(1340), [sym_expr_parenthesized] = STATE(943), [sym_val_range] = STATE(1380), - [sym__val_range] = STATE(5127), + [sym__val_range] = STATE(4995), [sym__value] = STATE(1380), [sym_val_nothing] = STATE(1357), [sym_val_bool] = STATE(1128), @@ -113581,7 +113586,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(1357), [sym_unquoted] = STATE(1070), [sym__unquoted_with_expr] = STATE(1341), - [sym__unquoted_anonymous_prefix] = STATE(5127), + [sym__unquoted_anonymous_prefix] = STATE(4995), [sym_comment] = STATE(741), [anon_sym_true] = ACTIONS(2344), [anon_sym_false] = ACTIONS(2344), @@ -113625,7 +113630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2118), [sym_expr_parenthesized] = STATE(943), [sym_val_range] = STATE(1380), - [sym__val_range] = STATE(5127), + [sym__val_range] = STATE(4995), [sym__value] = STATE(1380), [sym_val_nothing] = STATE(1357), [sym_val_bool] = STATE(1954), @@ -113651,7 +113656,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(1357), [sym_unquoted] = STATE(1161), [sym__unquoted_with_expr] = STATE(1385), - [sym__unquoted_anonymous_prefix] = STATE(5127), + [sym__unquoted_anonymous_prefix] = STATE(4995), [sym_comment] = STATE(742), [anon_sym_true] = ACTIONS(2366), [anon_sym_false] = ACTIONS(2366), @@ -113695,7 +113700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2089), [sym_expr_parenthesized] = STATE(943), [sym_val_range] = STATE(1380), - [sym__val_range] = STATE(5127), + [sym__val_range] = STATE(4995), [sym__value] = STATE(1380), [sym_val_nothing] = STATE(1357), [sym_val_bool] = STATE(1954), @@ -113721,7 +113726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(1357), [sym_unquoted] = STATE(1168), [sym__unquoted_with_expr] = STATE(1388), - [sym__unquoted_anonymous_prefix] = STATE(5127), + [sym__unquoted_anonymous_prefix] = STATE(4995), [sym_comment] = STATE(743), [anon_sym_true] = ACTIONS(2366), [anon_sym_false] = ACTIONS(2366), @@ -113765,7 +113770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2090), [sym_expr_parenthesized] = STATE(943), [sym_val_range] = STATE(1380), - [sym__val_range] = STATE(5127), + [sym__val_range] = STATE(4995), [sym__value] = STATE(1380), [sym_val_nothing] = STATE(1357), [sym_val_bool] = STATE(1954), @@ -113791,7 +113796,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(1357), [sym_unquoted] = STATE(1020), [sym__unquoted_with_expr] = STATE(1298), - [sym__unquoted_anonymous_prefix] = STATE(5127), + [sym__unquoted_anonymous_prefix] = STATE(4995), [sym_comment] = STATE(744), [anon_sym_true] = ACTIONS(2366), [anon_sym_false] = ACTIONS(2366), @@ -113835,7 +113840,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2088), [sym_expr_parenthesized] = STATE(943), [sym_val_range] = STATE(1380), - [sym__val_range] = STATE(5127), + [sym__val_range] = STATE(4995), [sym__value] = STATE(1380), [sym_val_nothing] = STATE(1357), [sym_val_bool] = STATE(1954), @@ -113861,7 +113866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(1357), [sym_unquoted] = STATE(1036), [sym__unquoted_with_expr] = STATE(1308), - [sym__unquoted_anonymous_prefix] = STATE(5127), + [sym__unquoted_anonymous_prefix] = STATE(4995), [sym_comment] = STATE(745), [anon_sym_true] = ACTIONS(2366), [anon_sym_false] = ACTIONS(2366), @@ -113905,7 +113910,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2091), [sym_expr_parenthesized] = STATE(943), [sym_val_range] = STATE(1380), - [sym__val_range] = STATE(5127), + [sym__val_range] = STATE(4995), [sym__value] = STATE(1380), [sym_val_nothing] = STATE(1357), [sym_val_bool] = STATE(1954), @@ -113931,7 +113936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(1357), [sym_unquoted] = STATE(1044), [sym__unquoted_with_expr] = STATE(1315), - [sym__unquoted_anonymous_prefix] = STATE(5127), + [sym__unquoted_anonymous_prefix] = STATE(4995), [sym_comment] = STATE(746), [anon_sym_true] = ACTIONS(2366), [anon_sym_false] = ACTIONS(2366), @@ -113975,7 +113980,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2092), [sym_expr_parenthesized] = STATE(943), [sym_val_range] = STATE(1380), - [sym__val_range] = STATE(5127), + [sym__val_range] = STATE(4995), [sym__value] = STATE(1380), [sym_val_nothing] = STATE(1357), [sym_val_bool] = STATE(1954), @@ -114001,7 +114006,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(1357), [sym_unquoted] = STATE(1048), [sym__unquoted_with_expr] = STATE(1319), - [sym__unquoted_anonymous_prefix] = STATE(5127), + [sym__unquoted_anonymous_prefix] = STATE(4995), [sym_comment] = STATE(747), [anon_sym_true] = ACTIONS(2366), [anon_sym_false] = ACTIONS(2366), @@ -114045,7 +114050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2093), [sym_expr_parenthesized] = STATE(943), [sym_val_range] = STATE(1380), - [sym__val_range] = STATE(5127), + [sym__val_range] = STATE(4995), [sym__value] = STATE(1380), [sym_val_nothing] = STATE(1357), [sym_val_bool] = STATE(1954), @@ -114071,7 +114076,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(1357), [sym_unquoted] = STATE(1050), [sym__unquoted_with_expr] = STATE(1322), - [sym__unquoted_anonymous_prefix] = STATE(5127), + [sym__unquoted_anonymous_prefix] = STATE(4995), [sym_comment] = STATE(748), [anon_sym_true] = ACTIONS(2366), [anon_sym_false] = ACTIONS(2366), @@ -114115,7 +114120,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2094), [sym_expr_parenthesized] = STATE(943), [sym_val_range] = STATE(1380), - [sym__val_range] = STATE(5127), + [sym__val_range] = STATE(4995), [sym__value] = STATE(1380), [sym_val_nothing] = STATE(1357), [sym_val_bool] = STATE(1954), @@ -114141,7 +114146,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(1357), [sym_unquoted] = STATE(1053), [sym__unquoted_with_expr] = STATE(1297), - [sym__unquoted_anonymous_prefix] = STATE(5127), + [sym__unquoted_anonymous_prefix] = STATE(4995), [sym_comment] = STATE(749), [anon_sym_true] = ACTIONS(2366), [anon_sym_false] = ACTIONS(2366), @@ -114185,7 +114190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(1328), [sym_expr_parenthesized] = STATE(943), [sym_val_range] = STATE(1380), - [sym__val_range] = STATE(5127), + [sym__val_range] = STATE(4995), [sym__value] = STATE(1380), [sym_val_nothing] = STATE(1357), [sym_val_bool] = STATE(1954), @@ -114211,7 +114216,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(1357), [sym_unquoted] = STATE(1055), [sym__unquoted_with_expr] = STATE(1330), - [sym__unquoted_anonymous_prefix] = STATE(5127), + [sym__unquoted_anonymous_prefix] = STATE(4995), [sym_comment] = STATE(750), [anon_sym_true] = ACTIONS(2366), [anon_sym_false] = ACTIONS(2366), @@ -114255,7 +114260,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2095), [sym_expr_parenthesized] = STATE(943), [sym_val_range] = STATE(1380), - [sym__val_range] = STATE(5127), + [sym__val_range] = STATE(4995), [sym__value] = STATE(1380), [sym_val_nothing] = STATE(1357), [sym_val_bool] = STATE(1954), @@ -114281,7 +114286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(1357), [sym_unquoted] = STATE(1058), [sym__unquoted_with_expr] = STATE(1332), - [sym__unquoted_anonymous_prefix] = STATE(5127), + [sym__unquoted_anonymous_prefix] = STATE(4995), [sym_comment] = STATE(751), [anon_sym_true] = ACTIONS(2366), [anon_sym_false] = ACTIONS(2366), @@ -114325,7 +114330,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2096), [sym_expr_parenthesized] = STATE(943), [sym_val_range] = STATE(1380), - [sym__val_range] = STATE(5127), + [sym__val_range] = STATE(4995), [sym__value] = STATE(1380), [sym_val_nothing] = STATE(1357), [sym_val_bool] = STATE(1954), @@ -114351,7 +114356,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(1357), [sym_unquoted] = STATE(1063), [sym__unquoted_with_expr] = STATE(1335), - [sym__unquoted_anonymous_prefix] = STATE(5127), + [sym__unquoted_anonymous_prefix] = STATE(4995), [sym_comment] = STATE(752), [anon_sym_true] = ACTIONS(2366), [anon_sym_false] = ACTIONS(2366), @@ -114395,7 +114400,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2098), [sym_expr_parenthesized] = STATE(943), [sym_val_range] = STATE(1380), - [sym__val_range] = STATE(5127), + [sym__val_range] = STATE(4995), [sym__value] = STATE(1380), [sym_val_nothing] = STATE(1357), [sym_val_bool] = STATE(1954), @@ -114421,7 +114426,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(1357), [sym_unquoted] = STATE(1068), [sym__unquoted_with_expr] = STATE(1338), - [sym__unquoted_anonymous_prefix] = STATE(5127), + [sym__unquoted_anonymous_prefix] = STATE(4995), [sym_comment] = STATE(753), [anon_sym_true] = ACTIONS(2366), [anon_sym_false] = ACTIONS(2366), @@ -114465,7 +114470,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2099), [sym_expr_parenthesized] = STATE(943), [sym_val_range] = STATE(1380), - [sym__val_range] = STATE(5127), + [sym__val_range] = STATE(4995), [sym__value] = STATE(1380), [sym_val_nothing] = STATE(1357), [sym_val_bool] = STATE(1954), @@ -114491,7 +114496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(1357), [sym_unquoted] = STATE(1070), [sym__unquoted_with_expr] = STATE(1341), - [sym__unquoted_anonymous_prefix] = STATE(5127), + [sym__unquoted_anonymous_prefix] = STATE(4995), [sym_comment] = STATE(754), [anon_sym_true] = ACTIONS(2366), [anon_sym_false] = ACTIONS(2366), @@ -114535,7 +114540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2810), [sym_expr_parenthesized] = STATE(2467), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2523), @@ -114561,7 +114566,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(791), [sym__unquoted_with_expr] = STATE(1016), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(755), [anon_sym_true] = ACTIONS(2384), [anon_sym_false] = ACTIONS(2384), @@ -114605,7 +114610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2811), [sym_expr_parenthesized] = STATE(2467), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2523), @@ -114631,7 +114636,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(792), [sym__unquoted_with_expr] = STATE(945), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(756), [anon_sym_true] = ACTIONS(2384), [anon_sym_false] = ACTIONS(2384), @@ -114675,7 +114680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2812), [sym_expr_parenthesized] = STATE(2467), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2523), @@ -114701,7 +114706,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(793), [sym__unquoted_with_expr] = STATE(961), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(757), [anon_sym_true] = ACTIONS(2384), [anon_sym_false] = ACTIONS(2384), @@ -114745,7 +114750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2813), [sym_expr_parenthesized] = STATE(2467), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2523), @@ -114771,7 +114776,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(799), [sym__unquoted_with_expr] = STATE(968), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(758), [anon_sym_true] = ACTIONS(2384), [anon_sym_false] = ACTIONS(2384), @@ -114815,7 +114820,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2815), [sym_expr_parenthesized] = STATE(2467), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2523), @@ -114841,7 +114846,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(803), [sym__unquoted_with_expr] = STATE(982), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(759), [anon_sym_true] = ACTIONS(2384), [anon_sym_false] = ACTIONS(2384), @@ -114885,7 +114890,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2816), [sym_expr_parenthesized] = STATE(2467), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2523), @@ -114911,7 +114916,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(804), [sym__unquoted_with_expr] = STATE(947), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(760), [anon_sym_true] = ACTIONS(2384), [anon_sym_false] = ACTIONS(2384), @@ -114955,7 +114960,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2792), [sym_expr_parenthesized] = STATE(2467), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2523), @@ -114981,7 +114986,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(805), [sym__unquoted_with_expr] = STATE(966), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(761), [anon_sym_true] = ACTIONS(2384), [anon_sym_false] = ACTIONS(2384), @@ -115025,7 +115030,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2768), [sym_expr_parenthesized] = STATE(2467), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2523), @@ -115051,7 +115056,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(806), [sym__unquoted_with_expr] = STATE(991), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(762), [anon_sym_true] = ACTIONS(2384), [anon_sym_false] = ACTIONS(2384), @@ -115095,7 +115100,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(1014), [sym_expr_parenthesized] = STATE(2467), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2523), @@ -115121,7 +115126,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(810), [sym__unquoted_with_expr] = STATE(963), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(763), [anon_sym_true] = ACTIONS(2384), [anon_sym_false] = ACTIONS(2384), @@ -115165,7 +115170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2770), [sym_expr_parenthesized] = STATE(2467), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2523), @@ -115191,7 +115196,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(812), [sym__unquoted_with_expr] = STATE(969), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(764), [anon_sym_true] = ACTIONS(2384), [anon_sym_false] = ACTIONS(2384), @@ -115235,7 +115240,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2771), [sym_expr_parenthesized] = STATE(2467), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2523), @@ -115261,7 +115266,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(813), [sym__unquoted_with_expr] = STATE(971), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(765), [anon_sym_true] = ACTIONS(2384), [anon_sym_false] = ACTIONS(2384), @@ -115305,7 +115310,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2772), [sym_expr_parenthesized] = STATE(2467), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2523), @@ -115331,7 +115336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(814), [sym__unquoted_with_expr] = STATE(973), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(766), [anon_sym_true] = ACTIONS(2384), [anon_sym_false] = ACTIONS(2384), @@ -115375,7 +115380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2773), [sym_expr_parenthesized] = STATE(2467), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(2523), @@ -115401,7 +115406,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(815), [sym__unquoted_with_expr] = STATE(976), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(767), [anon_sym_true] = ACTIONS(2384), [anon_sym_false] = ACTIONS(2384), @@ -115445,7 +115450,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2070), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -115471,7 +115476,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(791), [sym__unquoted_with_expr] = STATE(1016), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(768), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -115515,7 +115520,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2071), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -115541,7 +115546,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(792), [sym__unquoted_with_expr] = STATE(945), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(769), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -115585,7 +115590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2072), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -115611,7 +115616,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(793), [sym__unquoted_with_expr] = STATE(961), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(770), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -115655,7 +115660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2073), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -115681,7 +115686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(799), [sym__unquoted_with_expr] = STATE(968), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(771), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -115725,7 +115730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2074), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -115751,7 +115756,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(803), [sym__unquoted_with_expr] = STATE(982), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(772), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -115795,7 +115800,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2075), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -115821,7 +115826,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(804), [sym__unquoted_with_expr] = STATE(947), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(773), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -115865,7 +115870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2076), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -115891,7 +115896,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(805), [sym__unquoted_with_expr] = STATE(966), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(774), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -115935,7 +115940,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2077), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -115961,7 +115966,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(806), [sym__unquoted_with_expr] = STATE(991), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(775), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -116005,7 +116010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(1014), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -116031,7 +116036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(810), [sym__unquoted_with_expr] = STATE(963), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(776), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -116075,7 +116080,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2078), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -116101,7 +116106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(812), [sym__unquoted_with_expr] = STATE(969), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(777), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -116145,7 +116150,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2079), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -116171,7 +116176,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(813), [sym__unquoted_with_expr] = STATE(971), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(778), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -116215,7 +116220,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(2080), [sym_expr_parenthesized] = STATE(790), [sym_val_range] = STATE(944), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(944), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(1914), @@ -116241,7 +116246,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(814), [sym__unquoted_with_expr] = STATE(973), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(779), [anon_sym_true] = ACTIONS(1920), [anon_sym_false] = ACTIONS(1920), @@ -116285,7 +116290,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_binary_expression] = STATE(1333), [sym_expr_parenthesized] = STATE(943), [sym_val_range] = STATE(1380), - [sym__val_range] = STATE(5127), + [sym__val_range] = STATE(4995), [sym__value] = STATE(1380), [sym_val_nothing] = STATE(1357), [sym_val_bool] = STATE(1128), @@ -116311,7 +116316,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(1357), [sym_unquoted] = STATE(1063), [sym__unquoted_with_expr] = STATE(1335), - [sym__unquoted_anonymous_prefix] = STATE(5127), + [sym__unquoted_anonymous_prefix] = STATE(4995), [sym_comment] = STATE(780), [anon_sym_true] = ACTIONS(2344), [anon_sym_false] = ACTIONS(2344), @@ -117039,7 +117044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(791)] = { - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(791), [anon_sym_in] = ACTIONS(2440), [sym__newline] = ACTIONS(2440), @@ -117108,7 +117113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(792)] = { - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(792), [anon_sym_in] = ACTIONS(2440), [sym__newline] = ACTIONS(2440), @@ -117177,7 +117182,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(793)] = { - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(793), [anon_sym_in] = ACTIONS(2440), [sym__newline] = ACTIONS(2440), @@ -117246,7 +117251,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(794)] = { - [sym__expr_parenthesized_immediate] = STATE(5694), + [sym__expr_parenthesized_immediate] = STATE(5668), [sym_comment] = STATE(794), [anon_sym_in] = ACTIONS(2444), [sym__newline] = ACTIONS(2444), @@ -117315,7 +117320,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(795)] = { - [sym__expr_parenthesized_immediate] = STATE(5694), + [sym__expr_parenthesized_immediate] = STATE(5668), [sym_comment] = STATE(795), [anon_sym_in] = ACTIONS(2448), [sym__newline] = ACTIONS(2448), @@ -117384,7 +117389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(796)] = { - [sym__expr_parenthesized_immediate] = STATE(5694), + [sym__expr_parenthesized_immediate] = STATE(5668), [sym_comment] = STATE(796), [anon_sym_in] = ACTIONS(2452), [sym__newline] = ACTIONS(2452), @@ -117522,7 +117527,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(798)] = { - [sym__expr_parenthesized_immediate] = STATE(5694), + [sym__expr_parenthesized_immediate] = STATE(5668), [sym_comment] = STATE(798), [anon_sym_in] = ACTIONS(2456), [sym__newline] = ACTIONS(2456), @@ -117591,7 +117596,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(799)] = { - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(799), [anon_sym_in] = ACTIONS(2440), [sym__newline] = ACTIONS(2440), @@ -117730,7 +117735,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(801)] = { [aux_sym__repeat_newline] = STATE(864), - [sym__expression_parenthesized] = STATE(4899), + [sym__expression_parenthesized] = STATE(4722), [sym_expr_unary] = STATE(1178), [sym__expr_unary_minus] = STATE(999), [sym_expr_binary_parenthesized] = STATE(1178), @@ -117867,7 +117872,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(2233), }, [STATE(803)] = { - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(803), [anon_sym_in] = ACTIONS(2440), [sym__newline] = ACTIONS(2440), @@ -117936,7 +117941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(804)] = { - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(804), [anon_sym_in] = ACTIONS(2440), [sym__newline] = ACTIONS(2440), @@ -118005,7 +118010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(805)] = { - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(805), [anon_sym_in] = ACTIONS(2440), [sym__newline] = ACTIONS(2440), @@ -118074,7 +118079,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(806)] = { - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(806), [anon_sym_in] = ACTIONS(2440), [sym__newline] = ACTIONS(2440), @@ -118213,7 +118218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(808)] = { [aux_sym__repeat_newline] = STATE(839), - [sym__expression_parenthesized] = STATE(4974), + [sym__expression_parenthesized] = STATE(4971), [sym_expr_unary] = STATE(1178), [sym__expr_unary_minus] = STATE(999), [sym_expr_binary_parenthesized] = STATE(1178), @@ -118350,7 +118355,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(810)] = { - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(810), [anon_sym_in] = ACTIONS(2440), [sym__newline] = ACTIONS(2440), @@ -118488,7 +118493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(812)] = { - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(812), [anon_sym_in] = ACTIONS(2440), [sym__newline] = ACTIONS(2440), @@ -118557,7 +118562,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(813)] = { - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(813), [anon_sym_in] = ACTIONS(2440), [sym__newline] = ACTIONS(2440), @@ -118626,7 +118631,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(814)] = { - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(814), [anon_sym_in] = ACTIONS(2440), [sym__newline] = ACTIONS(2440), @@ -118695,7 +118700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(815)] = { - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(815), [anon_sym_in] = ACTIONS(2440), [sym__newline] = ACTIONS(2440), @@ -119386,7 +119391,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(825)] = { [aux_sym__repeat_newline] = STATE(939), - [sym__expression_parenthesized] = STATE(4704), + [sym__expression_parenthesized] = STATE(4961), [sym_expr_unary] = STATE(1178), [sym__expr_unary_minus] = STATE(999), [sym_expr_binary_parenthesized] = STATE(1178), @@ -119524,7 +119529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(827)] = { [aux_sym__repeat_newline] = STATE(1025), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(827), [anon_sym_in] = ACTIONS(2537), [sym__newline] = ACTIONS(2537), @@ -119659,7 +119664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(829)] = { - [sym__expression] = STATE(5403), + [sym__expression] = STATE(5360), [sym_expr_unary] = STATE(994), [sym__expr_unary_minus] = STATE(999), [sym_expr_binary] = STATE(994), @@ -119799,7 +119804,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_unary_minus] = STATE(1307), [sym_expr_parenthesized] = STATE(3226), [sym_val_range] = STATE(3593), - [sym__val_range] = STATE(5127), + [sym__val_range] = STATE(4995), [sym__value] = STATE(3593), [sym_val_nothing] = STATE(1357), [sym_val_bool] = STATE(3335), @@ -119825,7 +119830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(1357), [sym_unquoted] = STATE(3316), [sym__unquoted_with_expr] = STATE(3610), - [sym__unquoted_anonymous_prefix] = STATE(5127), + [sym__unquoted_anonymous_prefix] = STATE(4995), [sym_comment] = STATE(831), [anon_sym_true] = ACTIONS(2551), [anon_sym_false] = ACTIONS(2551), @@ -120340,7 +120345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(839)] = { [aux_sym__repeat_newline] = STATE(1349), - [sym__expression_parenthesized] = STATE(4975), + [sym__expression_parenthesized] = STATE(4972), [sym_expr_unary] = STATE(1178), [sym__expr_unary_minus] = STATE(999), [sym_expr_binary_parenthesized] = STATE(1178), @@ -120816,7 +120821,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(846)] = { [aux_sym__repeat_newline] = STATE(1167), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(846), [anon_sym_in] = ACTIONS(2537), [sym__newline] = ACTIONS(2537), @@ -120952,7 +120957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(848)] = { [aux_sym__repeat_newline] = STATE(1170), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(848), [anon_sym_in] = ACTIONS(2537), [sym__newline] = ACTIONS(2537), @@ -121020,7 +121025,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(849)] = { [aux_sym__repeat_newline] = STATE(1019), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(849), [anon_sym_in] = ACTIONS(2537), [sym__newline] = ACTIONS(2537), @@ -121088,7 +121093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(850)] = { [aux_sym__repeat_newline] = STATE(1022), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(850), [anon_sym_in] = ACTIONS(2537), [sym__newline] = ACTIONS(2537), @@ -121156,7 +121161,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(851)] = { [aux_sym__repeat_newline] = STATE(1073), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(851), [anon_sym_in] = ACTIONS(2622), [sym__newline] = ACTIONS(2622), @@ -121360,7 +121365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(854)] = { [aux_sym__repeat_newline] = STATE(1028), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(854), [anon_sym_in] = ACTIONS(2537), [sym__newline] = ACTIONS(2537), @@ -121428,7 +121433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(855)] = { [aux_sym__repeat_newline] = STATE(1031), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(855), [anon_sym_in] = ACTIONS(2537), [sym__newline] = ACTIONS(2537), @@ -121496,7 +121501,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(856)] = { [aux_sym__repeat_newline] = STATE(1034), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(856), [anon_sym_in] = ACTIONS(2537), [sym__newline] = ACTIONS(2537), @@ -121564,7 +121569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(857)] = { [aux_sym__repeat_newline] = STATE(1039), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(857), [anon_sym_in] = ACTIONS(2537), [sym__newline] = ACTIONS(2537), @@ -121632,7 +121637,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(858)] = { [aux_sym__repeat_newline] = STATE(1042), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(858), [anon_sym_in] = ACTIONS(2537), [sym__newline] = ACTIONS(2537), @@ -121700,7 +121705,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(859)] = { [aux_sym__repeat_newline] = STATE(1059), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(859), [anon_sym_in] = ACTIONS(2537), [sym__newline] = ACTIONS(2537), @@ -121768,7 +121773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(860)] = { [aux_sym__repeat_newline] = STATE(1062), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(860), [anon_sym_in] = ACTIONS(2537), [sym__newline] = ACTIONS(2537), @@ -121904,7 +121909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(862)] = { [aux_sym__repeat_newline] = STATE(1065), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(862), [anon_sym_in] = ACTIONS(2537), [sym__newline] = ACTIONS(2537), @@ -122040,7 +122045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(864)] = { [aux_sym__repeat_newline] = STATE(1349), - [sym__expression_parenthesized] = STATE(4732), + [sym__expression_parenthesized] = STATE(4810), [sym_expr_unary] = STATE(1178), [sym__expr_unary_minus] = STATE(999), [sym_expr_binary_parenthesized] = STATE(1178), @@ -122515,7 +122520,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(871)] = { - [sym__expression] = STATE(5374), + [sym__expression] = STATE(5314), [sym_expr_unary] = STATE(994), [sym__expr_unary_minus] = STATE(999), [sym_expr_binary] = STATE(994), @@ -122992,7 +122997,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(878)] = { [aux_sym__repeat_newline] = STATE(1114), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(878), [anon_sym_in] = ACTIONS(2648), [sym__newline] = ACTIONS(2648), @@ -123060,7 +123065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(879)] = { [aux_sym__repeat_newline] = STATE(1115), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(879), [anon_sym_in] = ACTIONS(2648), [sym__newline] = ACTIONS(2648), @@ -123128,7 +123133,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(880)] = { [aux_sym__repeat_newline] = STATE(1116), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(880), [anon_sym_in] = ACTIONS(2648), [sym__newline] = ACTIONS(2648), @@ -123196,7 +123201,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(881)] = { [aux_sym__repeat_newline] = STATE(1117), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(881), [anon_sym_in] = ACTIONS(2648), [sym__newline] = ACTIONS(2648), @@ -123264,7 +123269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(882)] = { [aux_sym__repeat_newline] = STATE(1118), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(882), [anon_sym_in] = ACTIONS(2648), [sym__newline] = ACTIONS(2648), @@ -123332,7 +123337,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(883)] = { [aux_sym__repeat_newline] = STATE(1119), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(883), [anon_sym_in] = ACTIONS(2648), [sym__newline] = ACTIONS(2648), @@ -123400,7 +123405,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(884)] = { [aux_sym__repeat_newline] = STATE(1120), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(884), [anon_sym_in] = ACTIONS(2648), [sym__newline] = ACTIONS(2648), @@ -123468,7 +123473,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(885)] = { [aux_sym__repeat_newline] = STATE(1121), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(885), [anon_sym_in] = ACTIONS(2648), [sym__newline] = ACTIONS(2648), @@ -123536,7 +123541,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(886)] = { [aux_sym__repeat_newline] = STATE(1123), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(886), [anon_sym_in] = ACTIONS(2648), [sym__newline] = ACTIONS(2648), @@ -123607,7 +123612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_unary_minus] = STATE(999), [sym_expr_parenthesized] = STATE(3163), [sym_val_range] = STATE(3479), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(3479), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(3249), @@ -123633,7 +123638,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(3219), [sym__unquoted_with_expr] = STATE(3357), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(887), [anon_sym_true] = ACTIONS(2652), [anon_sym_false] = ACTIONS(2652), @@ -123672,7 +123677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(888)] = { [aux_sym__repeat_newline] = STATE(1125), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(888), [anon_sym_in] = ACTIONS(2648), [sym__newline] = ACTIONS(2648), @@ -124284,7 +124289,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(897)] = { [aux_sym__repeat_newline] = STATE(1126), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(897), [anon_sym_in] = ACTIONS(2648), [sym__newline] = ACTIONS(2648), @@ -124352,7 +124357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(898)] = { [aux_sym__repeat_newline] = STATE(1127), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(898), [anon_sym_in] = ACTIONS(2648), [sym__newline] = ACTIONS(2648), @@ -124420,7 +124425,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(899)] = { [aux_sym__repeat_newline] = STATE(1130), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(899), [anon_sym_in] = ACTIONS(2704), [sym__newline] = ACTIONS(2704), @@ -124488,7 +124493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(900)] = { [aux_sym__repeat_newline] = STATE(1133), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(900), [anon_sym_in] = ACTIONS(2704), [sym__newline] = ACTIONS(2704), @@ -124556,7 +124561,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(901)] = { [aux_sym__repeat_newline] = STATE(1136), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(901), [anon_sym_in] = ACTIONS(2704), [sym__newline] = ACTIONS(2704), @@ -124692,7 +124697,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(903)] = { [aux_sym__repeat_newline] = STATE(1139), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(903), [anon_sym_in] = ACTIONS(2704), [sym__newline] = ACTIONS(2704), @@ -124760,7 +124765,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(904)] = { [aux_sym__repeat_newline] = STATE(1142), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(904), [anon_sym_in] = ACTIONS(2704), [sym__newline] = ACTIONS(2704), @@ -124828,7 +124833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(905)] = { [aux_sym__repeat_newline] = STATE(1145), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(905), [anon_sym_in] = ACTIONS(2704), [sym__newline] = ACTIONS(2704), @@ -124896,7 +124901,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(906)] = { [aux_sym__repeat_newline] = STATE(1148), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(906), [anon_sym_in] = ACTIONS(2704), [sym__newline] = ACTIONS(2704), @@ -124964,7 +124969,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(907)] = { [aux_sym__repeat_newline] = STATE(1151), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(907), [anon_sym_in] = ACTIONS(2704), [sym__newline] = ACTIONS(2704), @@ -125032,7 +125037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(908)] = { [aux_sym__repeat_newline] = STATE(1160), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(908), [anon_sym_in] = ACTIONS(2704), [sym__newline] = ACTIONS(2704), @@ -125100,7 +125105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(909)] = { [aux_sym__repeat_newline] = STATE(1163), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(909), [anon_sym_in] = ACTIONS(2704), [sym__newline] = ACTIONS(2704), @@ -125168,7 +125173,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(910)] = { [aux_sym__repeat_newline] = STATE(1159), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(910), [anon_sym_in] = ACTIONS(2704), [sym__newline] = ACTIONS(2704), @@ -125236,7 +125241,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(911)] = { [aux_sym__repeat_newline] = STATE(1085), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(911), [anon_sym_in] = ACTIONS(2704), [sym__newline] = ACTIONS(2704), @@ -125304,7 +125309,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(912)] = { [aux_sym__repeat_newline] = STATE(1081), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(912), [anon_sym_in] = ACTIONS(2704), [sym__newline] = ACTIONS(2704), @@ -125783,7 +125788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_unary_minus] = STATE(1307), [sym_expr_parenthesized] = STATE(3251), [sym_val_range] = STATE(3547), - [sym__val_range] = STATE(5127), + [sym__val_range] = STATE(4995), [sym__value] = STATE(3547), [sym_val_nothing] = STATE(1357), [sym_val_bool] = STATE(3335), @@ -125809,7 +125814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(1357), [sym_unquoted] = STATE(3320), [sym__unquoted_with_expr] = STATE(3614), - [sym__unquoted_anonymous_prefix] = STATE(5127), + [sym__unquoted_anonymous_prefix] = STATE(4995), [sym_comment] = STATE(919), [anon_sym_true] = ACTIONS(2551), [anon_sym_false] = ACTIONS(2551), @@ -125987,7 +125992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_unary_minus] = STATE(1307), [sym_expr_parenthesized] = STATE(3235), [sym_val_range] = STATE(3532), - [sym__val_range] = STATE(5127), + [sym__val_range] = STATE(4995), [sym__value] = STATE(3532), [sym_val_nothing] = STATE(1357), [sym_val_bool] = STATE(3335), @@ -126013,7 +126018,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(1357), [sym_unquoted] = STATE(3304), [sym__unquoted_with_expr] = STATE(3573), - [sym__unquoted_anonymous_prefix] = STATE(5127), + [sym__unquoted_anonymous_prefix] = STATE(4995), [sym_comment] = STATE(922), [anon_sym_true] = ACTIONS(2551), [anon_sym_false] = ACTIONS(2551), @@ -126052,7 +126057,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(923)] = { [aux_sym__repeat_newline] = STATE(1077), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(923), [anon_sym_in] = ACTIONS(2622), [sym__newline] = ACTIONS(2622), @@ -126120,7 +126125,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(924)] = { [aux_sym__repeat_newline] = STATE(1172), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(924), [anon_sym_in] = ACTIONS(2622), [sym__newline] = ACTIONS(2622), @@ -126188,7 +126193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(925)] = { [aux_sym__repeat_newline] = STATE(1104), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(925), [anon_sym_in] = ACTIONS(2622), [sym__newline] = ACTIONS(2622), @@ -126256,7 +126261,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(926)] = { [aux_sym__repeat_newline] = STATE(1105), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(926), [anon_sym_in] = ACTIONS(2622), [sym__newline] = ACTIONS(2622), @@ -126324,7 +126329,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(927)] = { [aux_sym__repeat_newline] = STATE(1106), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(927), [anon_sym_in] = ACTIONS(2622), [sym__newline] = ACTIONS(2622), @@ -126392,7 +126397,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(928)] = { [aux_sym__repeat_newline] = STATE(1111), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(928), [anon_sym_in] = ACTIONS(2622), [sym__newline] = ACTIONS(2622), @@ -126460,7 +126465,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(929)] = { [aux_sym__repeat_newline] = STATE(1131), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(929), [anon_sym_in] = ACTIONS(2622), [sym__newline] = ACTIONS(2622), @@ -126528,7 +126533,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(930)] = { [aux_sym__repeat_newline] = STATE(1134), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(930), [anon_sym_in] = ACTIONS(2622), [sym__newline] = ACTIONS(2622), @@ -126596,7 +126601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(931)] = { [aux_sym__repeat_newline] = STATE(1137), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(931), [anon_sym_in] = ACTIONS(2622), [sym__newline] = ACTIONS(2622), @@ -126663,7 +126668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(932)] = { - [sym__expression] = STATE(5374), + [sym__expression] = STATE(5314), [sym_expr_unary] = STATE(994), [sym__expr_unary_minus] = STATE(999), [sym_expr_binary] = STATE(994), @@ -126731,7 +126736,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(933)] = { - [sym__expression] = STATE(5403), + [sym__expression] = STATE(5360), [sym_expr_unary] = STATE(994), [sym__expr_unary_minus] = STATE(999), [sym_expr_binary] = STATE(994), @@ -126868,7 +126873,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(935)] = { [aux_sym__repeat_newline] = STATE(1154), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(935), [anon_sym_in] = ACTIONS(2622), [sym__newline] = ACTIONS(2622), @@ -126936,7 +126941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(936)] = { [aux_sym__repeat_newline] = STATE(1029), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(936), [anon_sym_in] = ACTIONS(2622), [sym__newline] = ACTIONS(2622), @@ -127004,7 +127009,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(937)] = { [aux_sym__repeat_newline] = STATE(1056), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(937), [anon_sym_in] = ACTIONS(2622), [sym__newline] = ACTIONS(2622), @@ -127075,7 +127080,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_unary_minus] = STATE(999), [sym_expr_parenthesized] = STATE(3180), [sym_val_range] = STATE(3368), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(3368), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(3249), @@ -127101,7 +127106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(3260), [sym__unquoted_with_expr] = STATE(3430), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(938), [anon_sym_true] = ACTIONS(2652), [anon_sym_false] = ACTIONS(2652), @@ -127140,7 +127145,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(939)] = { [aux_sym__repeat_newline] = STATE(1349), - [sym__expression_parenthesized] = STATE(4970), + [sym__expression_parenthesized] = STATE(4965), [sym_expr_unary] = STATE(1178), [sym__expr_unary_minus] = STATE(999), [sym_expr_binary_parenthesized] = STATE(1178), @@ -127211,7 +127216,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__expr_unary_minus] = STATE(999), [sym_expr_parenthesized] = STATE(3182), [sym_val_range] = STATE(3432), - [sym__val_range] = STATE(5069), + [sym__val_range] = STATE(5240), [sym__value] = STATE(3432), [sym_val_nothing] = STATE(993), [sym_val_bool] = STATE(3249), @@ -127237,7 +127242,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_val_closure] = STATE(993), [sym_unquoted] = STATE(3214), [sym__unquoted_with_expr] = STATE(3478), - [sym__unquoted_anonymous_prefix] = STATE(5069), + [sym__unquoted_anonymous_prefix] = STATE(5240), [sym_comment] = STATE(940), [anon_sym_true] = ACTIONS(2652), [anon_sym_false] = ACTIONS(2652), @@ -127276,7 +127281,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(941)] = { [aux_sym__repeat_newline] = STATE(1124), - [sym__expr_parenthesized_immediate] = STATE(5283), + [sym__expr_parenthesized_immediate] = STATE(5450), [sym_comment] = STATE(941), [anon_sym_in] = ACTIONS(2648), [sym__newline] = ACTIONS(2648), @@ -127343,35 +127348,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(942)] = { - [sym__ctrl_match_body] = STATE(5931), - [sym_match_arm] = STATE(5015), - [sym_default_arm] = STATE(5015), - [sym_match_pattern] = STATE(5530), - [sym__match_pattern] = STATE(4580), - [sym__match_pattern_expression] = STATE(5029), - [sym__match_pattern_value] = STATE(5048), - [sym__match_pattern_list] = STATE(5050), - [sym__match_pattern_record] = STATE(5056), - [sym_expr_parenthesized] = STATE(4445), - [sym_val_range] = STATE(5048), - [sym__val_range] = STATE(5969), - [sym_val_nothing] = STATE(5067), - [sym_val_bool] = STATE(4854), - [sym_val_variable] = STATE(4446), - [sym_val_number] = STATE(5067), + [sym__ctrl_match_body] = STATE(5553), + [sym_match_arm] = STATE(5043), + [sym_default_arm] = STATE(5043), + [sym_match_pattern] = STATE(5825), + [sym__match_pattern] = STATE(4673), + [sym__match_pattern_expression] = STATE(5055), + [sym__match_pattern_value] = STATE(5070), + [sym__match_pattern_list] = STATE(5071), + [sym__match_pattern_record] = STATE(5073), + [sym_expr_parenthesized] = STATE(4448), + [sym_val_range] = STATE(5070), + [sym__val_range] = STATE(5777), + [sym_val_nothing] = STATE(5077), + [sym_val_bool] = STATE(4892), + [sym_val_variable] = STATE(4449), + [sym_val_number] = STATE(5077), [sym__val_number_decimal] = STATE(4220), [sym__val_number] = STATE(824), - [sym_val_duration] = STATE(5067), - [sym_val_filesize] = STATE(5067), - [sym_val_binary] = STATE(5067), - [sym_val_string] = STATE(5067), + [sym_val_duration] = STATE(5077), + [sym_val_filesize] = STATE(5077), + [sym_val_binary] = STATE(5077), + [sym_val_string] = STATE(5077), [sym__raw_str] = STATE(2859), [sym__str_double_quotes] = STATE(2859), [sym__str_single_quotes] = STATE(2859), [sym__str_back_ticks] = STATE(2859), - [sym_val_table] = STATE(5067), - [sym_unquoted] = STATE(5070), - [sym__unquoted_anonymous_prefix] = STATE(5969), + [sym_val_table] = STATE(5077), + [sym_unquoted] = STATE(5082), + [sym__unquoted_anonymous_prefix] = STATE(5777), [sym_comment] = STATE(942), [aux_sym__types_body_repeat1] = STATE(1235), [aux_sym__ctrl_match_body_repeat1] = STATE(1394), @@ -128683,7 +128688,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(962)] = { - [sym__expression] = STATE(5384), + [sym__expression] = STATE(5344), [sym_expr_unary] = STATE(994), [sym__expr_unary_minus] = STATE(999), [sym_expr_binary] = STATE(994), @@ -129487,7 +129492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(974)] = { - [sym__expression] = STATE(5379), + [sym__expression] = STATE(5317), [sym_expr_unary] = STATE(994), [sym__expr_unary_minus] = STATE(999), [sym_expr_binary] = STATE(994), @@ -130492,7 +130497,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(989)] = { - [sym__expression] = STATE(5374), + [sym__expression] = STATE(5314), [sym_expr_unary] = STATE(994), [sym__expr_unary_minus] = STATE(999), [sym_expr_binary] = STATE(994), @@ -130559,7 +130564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(990)] = { - [sym__expression] = STATE(5403), + [sym__expression] = STATE(5360), [sym_expr_unary] = STATE(994), [sym__expr_unary_minus] = STATE(999), [sym_expr_binary] = STATE(994), @@ -130894,35 +130899,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(995)] = { - [sym__ctrl_match_body] = STATE(5518), - [sym_match_arm] = STATE(5015), - [sym_default_arm] = STATE(5015), - [sym_match_pattern] = STATE(5530), - [sym__match_pattern] = STATE(4580), - [sym__match_pattern_expression] = STATE(5029), - [sym__match_pattern_value] = STATE(5048), - [sym__match_pattern_list] = STATE(5050), - [sym__match_pattern_record] = STATE(5056), - [sym_expr_parenthesized] = STATE(4445), - [sym_val_range] = STATE(5048), - [sym__val_range] = STATE(5969), - [sym_val_nothing] = STATE(5067), - [sym_val_bool] = STATE(4854), - [sym_val_variable] = STATE(4446), - [sym_val_number] = STATE(5067), + [sym__ctrl_match_body] = STATE(5784), + [sym_match_arm] = STATE(5043), + [sym_default_arm] = STATE(5043), + [sym_match_pattern] = STATE(5825), + [sym__match_pattern] = STATE(4673), + [sym__match_pattern_expression] = STATE(5055), + [sym__match_pattern_value] = STATE(5070), + [sym__match_pattern_list] = STATE(5071), + [sym__match_pattern_record] = STATE(5073), + [sym_expr_parenthesized] = STATE(4448), + [sym_val_range] = STATE(5070), + [sym__val_range] = STATE(5777), + [sym_val_nothing] = STATE(5077), + [sym_val_bool] = STATE(4892), + [sym_val_variable] = STATE(4449), + [sym_val_number] = STATE(5077), [sym__val_number_decimal] = STATE(4220), [sym__val_number] = STATE(824), - [sym_val_duration] = STATE(5067), - [sym_val_filesize] = STATE(5067), - [sym_val_binary] = STATE(5067), - [sym_val_string] = STATE(5067), + [sym_val_duration] = STATE(5077), + [sym_val_filesize] = STATE(5077), + [sym_val_binary] = STATE(5077), + [sym_val_string] = STATE(5077), [sym__raw_str] = STATE(2859), [sym__str_double_quotes] = STATE(2859), [sym__str_single_quotes] = STATE(2859), [sym__str_back_ticks] = STATE(2859), - [sym_val_table] = STATE(5067), - [sym_unquoted] = STATE(5070), - [sym__unquoted_anonymous_prefix] = STATE(5969), + [sym_val_table] = STATE(5077), + [sym_unquoted] = STATE(5082), + [sym__unquoted_anonymous_prefix] = STATE(5777), [sym_comment] = STATE(995), [aux_sym__types_body_repeat1] = STATE(1235), [aux_sym__ctrl_match_body_repeat1] = STATE(1394), @@ -131832,35 +131837,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(1009)] = { - [sym__ctrl_match_body] = STATE(5654), - [sym_match_arm] = STATE(5015), - [sym_default_arm] = STATE(5015), - [sym_match_pattern] = STATE(5530), - [sym__match_pattern] = STATE(4580), - [sym__match_pattern_expression] = STATE(5029), - [sym__match_pattern_value] = STATE(5048), - [sym__match_pattern_list] = STATE(5050), - [sym__match_pattern_record] = STATE(5056), - [sym_expr_parenthesized] = STATE(4445), - [sym_val_range] = STATE(5048), - [sym__val_range] = STATE(5969), - [sym_val_nothing] = STATE(5067), - [sym_val_bool] = STATE(4854), - [sym_val_variable] = STATE(4446), - [sym_val_number] = STATE(5067), + [sym__ctrl_match_body] = STATE(5732), + [sym_match_arm] = STATE(5043), + [sym_default_arm] = STATE(5043), + [sym_match_pattern] = STATE(5825), + [sym__match_pattern] = STATE(4673), + [sym__match_pattern_expression] = STATE(5055), + [sym__match_pattern_value] = STATE(5070), + [sym__match_pattern_list] = STATE(5071), + [sym__match_pattern_record] = STATE(5073), + [sym_expr_parenthesized] = STATE(4448), + [sym_val_range] = STATE(5070), + [sym__val_range] = STATE(5777), + [sym_val_nothing] = STATE(5077), + [sym_val_bool] = STATE(4892), + [sym_val_variable] = STATE(4449), + [sym_val_number] = STATE(5077), [sym__val_number_decimal] = STATE(4220), [sym__val_number] = STATE(824), - [sym_val_duration] = STATE(5067), - [sym_val_filesize] = STATE(5067), - [sym_val_binary] = STATE(5067), - [sym_val_string] = STATE(5067), + [sym_val_duration] = STATE(5077), + [sym_val_filesize] = STATE(5077), + [sym_val_binary] = STATE(5077), + [sym_val_string] = STATE(5077), [sym__raw_str] = STATE(2859), [sym__str_double_quotes] = STATE(2859), [sym__str_single_quotes] = STATE(2859), [sym__str_back_ticks] = STATE(2859), - [sym_val_table] = STATE(5067), - [sym_unquoted] = STATE(5070), - [sym__unquoted_anonymous_prefix] = STATE(5969), + [sym_val_table] = STATE(5077), + [sym_unquoted] = STATE(5082), + [sym__unquoted_anonymous_prefix] = STATE(5777), [sym_comment] = STATE(1009), [aux_sym__types_body_repeat1] = STATE(1235), [aux_sym__ctrl_match_body_repeat1] = STATE(1394), @@ -131899,35 +131904,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1835), }, [STATE(1010)] = { - [sym__ctrl_match_body] = STATE(5728), - [sym_match_arm] = STATE(5015), - [sym_default_arm] = STATE(5015), - [sym_match_pattern] = STATE(5530), - [sym__match_pattern] = STATE(4580), - [sym__match_pattern_expression] = STATE(5029), - [sym__match_pattern_value] = STATE(5048), - [sym__match_pattern_list] = STATE(5050), - [sym__match_pattern_record] = STATE(5056), - [sym_expr_parenthesized] = STATE(4445), - [sym_val_range] = STATE(5048), - [sym__val_range] = STATE(5969), - [sym_val_nothing] = STATE(5067), - [sym_val_bool] = STATE(4854), - [sym_val_variable] = STATE(4446), - [sym_val_number] = STATE(5067), + [sym__ctrl_match_body] = STATE(5748), + [sym_match_arm] = STATE(5043), + [sym_default_arm] = STATE(5043), + [sym_match_pattern] = STATE(5825), + [sym__match_pattern] = STATE(4673), + [sym__match_pattern_expression] = STATE(5055), + [sym__match_pattern_value] = STATE(5070), + [sym__match_pattern_list] = STATE(5071), + [sym__match_pattern_record] = STATE(5073), + [sym_expr_parenthesized] = STATE(4448), + [sym_val_range] = STATE(5070), + [sym__val_range] = STATE(5777), + [sym_val_nothing] = STATE(5077), + [sym_val_bool] = STATE(4892), + [sym_val_variable] = STATE(4449), + [sym_val_number] = STATE(5077), [sym__val_number_decimal] = STATE(4220), [sym__val_number] = STATE(824), - [sym_val_duration] = STATE(5067), - [sym_val_filesize] = STATE(5067), - [sym_val_binary] = STATE(5067), - [sym_val_string] = STATE(5067), + [sym_val_duration] = STATE(5077), + [sym_val_filesize] = STATE(5077), + [sym_val_binary] = STATE(5077), + [sym_val_string] = STATE(5077), [sym__raw_str] = STATE(2859), [sym__str_double_quotes] = STATE(2859), [sym__str_single_quotes] = STATE(2859), [sym__str_back_ticks] = STATE(2859), - [sym_val_table] = STATE(5067), - [sym_unquoted] = STATE(5070), - [sym__unquoted_anonymous_prefix] = STATE(5969), + [sym_val_table] = STATE(5077), + [sym_unquoted] = STATE(5082), + [sym__unquoted_anonymous_prefix] = STATE(5777), [sym_comment] = STATE(1010), [aux_sym__types_body_repeat1] = STATE(1235), [aux_sym__ctrl_match_body_repeat1] = STATE(1394), @@ -131966,7 +131971,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1835), }, [STATE(1011)] = { - [sym__expression] = STATE(5419), + [sym__expression] = STATE(5402), [sym_expr_unary] = STATE(994), [sym__expr_unary_minus] = STATE(999), [sym_expr_binary] = STATE(994), @@ -132033,7 +132038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1012)] = { - [sym__expression] = STATE(5436), + [sym__expression] = STATE(5423), [sym_expr_unary] = STATE(994), [sym__expr_unary_minus] = STATE(999), [sym_expr_binary] = STATE(994), @@ -132100,7 +132105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1013)] = { - [sym__expression] = STATE(5438), + [sym__expression] = STATE(5429), [sym_expr_unary] = STATE(994), [sym__expr_unary_minus] = STATE(999), [sym_expr_binary] = STATE(994), @@ -132584,7 +132589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, STATE(1020), 1, sym_comment, - STATE(5355), 1, + STATE(5329), 1, sym__expr_parenthesized_immediate, ACTIONS(2442), 13, anon_sym_GT2, @@ -133707,7 +133712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, STATE(1036), 1, sym_comment, - STATE(5355), 1, + STATE(5329), 1, sym__expr_parenthesized_immediate, ACTIONS(2442), 13, anon_sym_GT2, @@ -134269,7 +134274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, STATE(1044), 1, sym_comment, - STATE(5355), 1, + STATE(5329), 1, sym__expr_parenthesized_immediate, ACTIONS(2442), 13, anon_sym_GT2, @@ -134551,7 +134556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, STATE(1048), 1, sym_comment, - STATE(5355), 1, + STATE(5329), 1, sym__expr_parenthesized_immediate, ACTIONS(2442), 13, anon_sym_GT2, @@ -134692,7 +134697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, STATE(1050), 1, sym_comment, - STATE(5355), 1, + STATE(5329), 1, sym__expr_parenthesized_immediate, ACTIONS(2442), 13, anon_sym_GT2, @@ -134903,7 +134908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, STATE(1053), 1, sym_comment, - STATE(5355), 1, + STATE(5329), 1, sym__expr_parenthesized_immediate, ACTIONS(2442), 13, anon_sym_GT2, @@ -135044,7 +135049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, STATE(1055), 1, sym_comment, - STATE(5355), 1, + STATE(5329), 1, sym__expr_parenthesized_immediate, ACTIONS(2442), 13, anon_sym_GT2, @@ -135255,7 +135260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, STATE(1058), 1, sym_comment, - STATE(5355), 1, + STATE(5329), 1, sym__expr_parenthesized_immediate, ACTIONS(2442), 13, anon_sym_GT2, @@ -135606,7 +135611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, STATE(1063), 1, sym_comment, - STATE(5355), 1, + STATE(5329), 1, sym__expr_parenthesized_immediate, ACTIONS(2442), 13, anon_sym_GT2, @@ -135957,7 +135962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, STATE(1068), 1, sym_comment, - STATE(5355), 1, + STATE(5329), 1, sym__expr_parenthesized_immediate, ACTIONS(2442), 13, anon_sym_GT2, @@ -136098,7 +136103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, STATE(1070), 1, sym_comment, - STATE(5355), 1, + STATE(5329), 1, sym__expr_parenthesized_immediate, ACTIONS(2442), 13, anon_sym_GT2, @@ -137004,7 +137009,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2966), 2, anon_sym_0o, anon_sym_0x, - STATE(5275), 2, + STATE(5202), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(2940), 3, @@ -137324,7 +137329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, STATE(1087), 1, sym_comment, - STATE(5694), 1, + STATE(5668), 1, sym__expr_parenthesized_immediate, ACTIONS(2446), 13, anon_sym_GT2, @@ -137605,7 +137610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, STATE(1091), 1, sym_comment, - STATE(5694), 1, + STATE(5668), 1, sym__expr_parenthesized_immediate, ACTIONS(2450), 13, anon_sym_GT2, @@ -137950,7 +137955,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2966), 2, anon_sym_0o, anon_sym_0x, - STATE(5275), 2, + STATE(5202), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(2940), 3, @@ -138054,7 +138059,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2966), 2, anon_sym_0o, anon_sym_0x, - STATE(5275), 2, + STATE(5202), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(2940), 3, @@ -138214,7 +138219,7 @@ static const uint16_t ts_small_parse_table[] = { sym__val_number_decimal, STATE(2883), 1, sym__expr_binary_expression, - STATE(5291), 1, + STATE(5348), 1, sym__expression, ACTIONS(179), 2, anon_sym_DOT_DOT_EQ, @@ -138609,7 +138614,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2966), 2, anon_sym_0o, anon_sym_0x, - STATE(5275), 2, + STATE(5202), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(2940), 3, @@ -138928,7 +138933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, STATE(1108), 1, sym_comment, - STATE(5694), 1, + STATE(5668), 1, sym__expr_parenthesized_immediate, ACTIONS(2454), 13, anon_sym_GT2, @@ -139068,7 +139073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, STATE(1110), 1, sym_comment, - STATE(5694), 1, + STATE(5668), 1, sym__expr_parenthesized_immediate, ACTIONS(2458), 13, anon_sym_GT2, @@ -142343,7 +142348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_variable, STATE(2882), 1, sym__expr_binary_expression, - STATE(5801), 1, + STATE(5815), 1, sym__expression, ACTIONS(193), 2, anon_sym_0o, @@ -142445,7 +142450,7 @@ static const uint16_t ts_small_parse_table[] = { sym__val_number_decimal, STATE(2883), 1, sym__expr_binary_expression, - STATE(5447), 1, + STATE(5330), 1, sym__expression, ACTIONS(179), 2, anon_sym_DOT_DOT_EQ, @@ -142707,7 +142712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, STATE(1161), 1, sym_comment, - STATE(5355), 1, + STATE(5329), 1, sym__expr_parenthesized_immediate, ACTIONS(2442), 13, anon_sym_GT2, @@ -143198,7 +143203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, STATE(1168), 1, sym_comment, - STATE(5355), 1, + STATE(5329), 1, sym__expr_parenthesized_immediate, ACTIONS(2442), 13, anon_sym_GT2, @@ -147038,13 +147043,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4304), 1, sym__val_number_decimal, - STATE(4904), 1, + STATE(4881), 1, sym_expr_parenthesized, - STATE(4936), 1, + STATE(4885), 1, sym_val_variable, - STATE(5338), 1, + STATE(5284), 1, sym_val_bool, - STATE(5659), 1, + STATE(5661), 1, sym_unquoted, ACTIONS(193), 2, anon_sym_0o, @@ -147061,10 +147066,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3093), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(5658), 2, + STATE(5660), 2, sym_val_range, sym__value, - STATE(5969), 2, + STATE(5777), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(2470), 3, @@ -148401,23 +148406,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__types_body_repeat1, STATE(4220), 1, sym__val_number_decimal, - STATE(4445), 1, + STATE(4448), 1, sym_expr_parenthesized, - STATE(4446), 1, + STATE(4449), 1, sym_val_variable, - STATE(4580), 1, + STATE(4673), 1, sym__match_pattern, - STATE(4854), 1, + STATE(4892), 1, sym_val_bool, - STATE(5029), 1, + STATE(5055), 1, sym__match_pattern_expression, - STATE(5050), 1, + STATE(5071), 1, sym__match_pattern_list, - STATE(5056), 1, + STATE(5073), 1, sym__match_pattern_record, - STATE(5070), 1, + STATE(5082), 1, sym_unquoted, - STATE(5530), 1, + STATE(5825), 1, sym_match_pattern, ACTIONS(193), 2, anon_sym_0o, @@ -148431,13 +148436,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2764), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(5048), 2, - sym__match_pattern_value, - sym_val_range, - STATE(5213), 2, + STATE(4987), 2, sym_match_arm, sym_default_arm, - STATE(5969), 2, + STATE(5070), 2, + sym__match_pattern_value, + sym_val_range, + STATE(5777), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(189), 3, @@ -148453,7 +148458,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(5067), 7, + STATE(5077), 7, sym_val_nothing, sym_val_number, sym_val_duration, @@ -152455,13 +152460,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4304), 1, sym__val_number_decimal, - STATE(4904), 1, + STATE(4881), 1, sym_expr_parenthesized, - STATE(4936), 1, + STATE(4885), 1, sym_val_variable, - STATE(5338), 1, + STATE(5284), 1, sym_val_bool, - STATE(5659), 1, + STATE(5661), 1, sym_unquoted, ACTIONS(193), 2, anon_sym_0o, @@ -152478,10 +152483,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3093), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(5658), 2, + STATE(5660), 2, sym_val_range, sym__value, - STATE(5969), 2, + STATE(5777), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(2470), 3, @@ -153510,20 +153515,20 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4101), 1, sym__val_number_decimal, - STATE(4527), 1, + STATE(4529), 1, sym_val_variable, - STATE(4595), 1, + STATE(4635), 1, sym_expr_parenthesized, - STATE(4860), 1, + STATE(4811), 1, sym__unquoted_in_record, - STATE(4867), 1, + STATE(4822), 1, sym_val_bool, - STATE(5105), 1, + STATE(5001), 1, + sym__val_number, + STATE(5195), 1, sym__inter_single_quotes, - STATE(5106), 1, + STATE(5196), 1, sym__inter_double_quotes, - STATE(5155), 1, - sym__val_number, ACTIONS(1659), 2, anon_sym_0o, anon_sym_0x, @@ -153536,7 +153541,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3146), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(5018), 2, + STATE(5141), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(1655), 3, @@ -153547,7 +153552,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(5309), 3, + STATE(5400), 3, sym_val_range, sym__value, sym__unquoted_in_record_with_expr, @@ -153556,7 +153561,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(5146), 12, + STATE(5000), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -154164,13 +154169,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4304), 1, sym__val_number_decimal, - STATE(4904), 1, + STATE(4881), 1, sym_expr_parenthesized, - STATE(4936), 1, + STATE(4885), 1, sym_val_variable, - STATE(5338), 1, + STATE(5284), 1, sym_val_bool, - STATE(5659), 1, + STATE(5661), 1, sym_unquoted, ACTIONS(193), 2, anon_sym_0o, @@ -154187,10 +154192,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3093), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(5658), 2, + STATE(5660), 2, sym_val_range, sym__value, - STATE(5969), 2, + STATE(5777), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(2470), 3, @@ -154662,20 +154667,20 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4101), 1, sym__val_number_decimal, - STATE(4527), 1, + STATE(4529), 1, sym_val_variable, - STATE(4589), 1, + STATE(4632), 1, sym_expr_parenthesized, - STATE(4856), 1, + STATE(4805), 1, sym__unquoted_in_record, - STATE(4867), 1, + STATE(4822), 1, sym_val_bool, - STATE(5105), 1, + STATE(5001), 1, + sym__val_number, + STATE(5195), 1, sym__inter_single_quotes, - STATE(5106), 1, + STATE(5196), 1, sym__inter_double_quotes, - STATE(5155), 1, - sym__val_number, ACTIONS(1659), 2, anon_sym_0o, anon_sym_0x, @@ -154688,7 +154693,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3146), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(5018), 2, + STATE(5141), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(1655), 3, @@ -154699,7 +154704,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(5301), 3, + STATE(5385), 3, sym_val_range, sym__value, sym__unquoted_in_record_with_expr, @@ -154708,7 +154713,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(5146), 12, + STATE(5000), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -155152,7 +155157,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3215), 2, anon_sym_0o, anon_sym_0x, - STATE(5215), 2, + STATE(5276), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(3191), 3, @@ -155252,7 +155257,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3215), 2, anon_sym_0o, anon_sym_0x, - STATE(5215), 2, + STATE(5276), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(3191), 3, @@ -155342,12 +155347,12 @@ static const uint16_t ts_small_parse_table[] = { sym__match_pattern_record, STATE(4314), 1, sym__table_head, - STATE(4800), 1, + STATE(4934), 1, aux_sym__repeat_newline, - STATE(5666), 1, - sym_val_list, - STATE(5815), 1, + STATE(5760), 1, sym__match_pattern_rest, + STATE(5774), 1, + sym_val_list, ACTIONS(3233), 2, anon_sym_true, anon_sym_false, @@ -155366,7 +155371,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2905), 2, sym__match_pattern_expression, sym__unquoted_in_list, - STATE(5653), 2, + STATE(5751), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(3237), 3, @@ -155995,13 +156000,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4304), 1, sym__val_number_decimal, - STATE(4879), 1, + STATE(4852), 1, sym_expr_parenthesized, - STATE(4936), 1, + STATE(4885), 1, sym_val_variable, - STATE(5338), 1, + STATE(5284), 1, sym_val_bool, - STATE(5759), 1, + STATE(5771), 1, sym_unquoted, ACTIONS(193), 2, anon_sym_0o, @@ -156018,10 +156023,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3093), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(5644), 2, + STATE(5658), 2, sym_val_range, sym__value, - STATE(5969), 2, + STATE(5777), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(2470), 3, @@ -157525,20 +157530,20 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4101), 1, sym__val_number_decimal, - STATE(4527), 1, + STATE(4529), 1, sym_val_variable, - STATE(4656), 1, + STATE(4675), 1, sym_expr_parenthesized, - STATE(4867), 1, + STATE(4822), 1, sym_val_bool, - STATE(4929), 1, + STATE(4915), 1, sym__unquoted_in_record, - STATE(5105), 1, + STATE(5001), 1, + sym__val_number, + STATE(5195), 1, sym__inter_single_quotes, - STATE(5106), 1, + STATE(5196), 1, sym__inter_double_quotes, - STATE(5155), 1, - sym__val_number, ACTIONS(1659), 2, anon_sym_0o, anon_sym_0x, @@ -157551,7 +157556,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3146), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(5018), 2, + STATE(5141), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(1655), 3, @@ -157562,7 +157567,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(5395), 3, + STATE(5368), 3, sym_val_range, sym__value, sym__unquoted_in_record_with_expr, @@ -157571,7 +157576,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(5146), 12, + STATE(5000), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -157855,7 +157860,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3316), 2, anon_sym_0o, anon_sym_0x, - STATE(5195), 2, + STATE(5083), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(3292), 3, @@ -157955,7 +157960,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3215), 2, anon_sym_0o, anon_sym_0x, - STATE(5215), 2, + STATE(5276), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(3191), 3, @@ -158179,11 +158184,11 @@ static const uint16_t ts_small_parse_table[] = { sym__match_pattern_record, STATE(4347), 1, sym__table_head, - STATE(4800), 1, + STATE(4934), 1, aux_sym__repeat_newline, - STATE(5652), 1, + STATE(5739), 1, sym__match_pattern_rest, - STATE(5666), 1, + STATE(5774), 1, sym_val_list, ACTIONS(3233), 2, anon_sym_true, @@ -158203,7 +158208,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2905), 2, sym__match_pattern_expression, sym__unquoted_in_list, - STATE(5653), 2, + STATE(5751), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(3237), 3, @@ -158294,7 +158299,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3316), 2, anon_sym_0o, anon_sym_0x, - STATE(5195), 2, + STATE(5083), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(3292), 3, @@ -158394,7 +158399,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3316), 2, anon_sym_0o, anon_sym_0x, - STATE(5195), 2, + STATE(5083), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(3292), 3, @@ -160305,23 +160310,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__ctrl_match_body_repeat1, STATE(4220), 1, sym__val_number_decimal, - STATE(4445), 1, + STATE(4448), 1, sym_expr_parenthesized, - STATE(4446), 1, + STATE(4449), 1, sym_val_variable, - STATE(4580), 1, + STATE(4673), 1, sym__match_pattern, - STATE(4854), 1, + STATE(4892), 1, sym_val_bool, - STATE(5029), 1, + STATE(5055), 1, sym__match_pattern_expression, - STATE(5050), 1, + STATE(5071), 1, sym__match_pattern_list, - STATE(5056), 1, + STATE(5073), 1, sym__match_pattern_record, - STATE(5070), 1, + STATE(5082), 1, sym_unquoted, - STATE(5530), 1, + STATE(5825), 1, sym_match_pattern, ACTIONS(193), 2, anon_sym_0o, @@ -160335,13 +160340,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2764), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(5048), 2, - sym__match_pattern_value, - sym_val_range, - STATE(5213), 2, + STATE(4987), 2, sym_match_arm, sym_default_arm, - STATE(5969), 2, + STATE(5070), 2, + sym__match_pattern_value, + sym_val_range, + STATE(5777), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(189), 3, @@ -160357,7 +160362,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(5067), 7, + STATE(5077), 7, sym_val_nothing, sym_val_number, sym_val_duration, @@ -160433,7 +160438,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2532), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(5712), 2, + STATE(5460), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(3354), 3, @@ -160572,23 +160577,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__ctrl_match_body_repeat1, STATE(4220), 1, sym__val_number_decimal, - STATE(4445), 1, + STATE(4448), 1, sym_expr_parenthesized, - STATE(4446), 1, + STATE(4449), 1, sym_val_variable, - STATE(4580), 1, + STATE(4673), 1, sym__match_pattern, - STATE(4854), 1, + STATE(4892), 1, sym_val_bool, - STATE(5029), 1, + STATE(5055), 1, sym__match_pattern_expression, - STATE(5050), 1, + STATE(5071), 1, sym__match_pattern_list, - STATE(5056), 1, + STATE(5073), 1, sym__match_pattern_record, - STATE(5070), 1, + STATE(5082), 1, sym_unquoted, - STATE(5530), 1, + STATE(5825), 1, sym_match_pattern, ACTIONS(193), 2, anon_sym_0o, @@ -160602,13 +160607,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2764), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(5048), 2, + STATE(5070), 2, sym__match_pattern_value, sym_val_range, - STATE(5229), 2, + STATE(5267), 2, sym_match_arm, sym_default_arm, - STATE(5969), 2, + STATE(5777), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(189), 3, @@ -160624,7 +160629,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(5067), 7, + STATE(5077), 7, sym_val_nothing, sym_val_number, sym_val_duration, @@ -160671,23 +160676,23 @@ static const uint16_t ts_small_parse_table[] = { sym__val_number, STATE(4220), 1, sym__val_number_decimal, - STATE(4445), 1, + STATE(4448), 1, sym_expr_parenthesized, - STATE(4446), 1, + STATE(4449), 1, sym_val_variable, - STATE(4580), 1, + STATE(4673), 1, sym__match_pattern, - STATE(4854), 1, + STATE(4892), 1, sym_val_bool, - STATE(5029), 1, + STATE(5055), 1, sym__match_pattern_expression, - STATE(5050), 1, + STATE(5071), 1, sym__match_pattern_list, - STATE(5056), 1, + STATE(5073), 1, sym__match_pattern_record, - STATE(5070), 1, + STATE(5082), 1, sym_unquoted, - STATE(5530), 1, + STATE(5825), 1, sym_match_pattern, ACTIONS(3398), 2, anon_sym_true, @@ -160704,13 +160709,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(1398), 2, sym_comment, aux_sym__ctrl_match_body_repeat1, - STATE(5048), 2, + STATE(5070), 2, sym__match_pattern_value, sym_val_range, - STATE(5431), 2, + STATE(5434), 2, sym_match_arm, sym_default_arm, - STATE(5969), 2, + STATE(5777), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(3404), 3, @@ -160726,7 +160731,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(5067), 7, + STATE(5077), 7, sym_val_nothing, sym_val_number, sym_val_duration, @@ -160946,7 +160951,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, ACTIONS(3474), 1, anon_sym_SEMI, - STATE(5143), 1, + STATE(5119), 1, aux_sym__repeat_newline, STATE(1402), 2, sym_comment, @@ -161059,7 +161064,7 @@ static const uint16_t ts_small_parse_table[] = { sym__val_number, STATE(4217), 1, sym__val_number_decimal, - STATE(4673), 1, + STATE(4558), 1, sym_val_bool, ACTIONS(976), 2, anon_sym_0o, @@ -161076,7 +161081,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3680), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(5953), 2, + STATE(5648), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(3481), 3, @@ -161296,9 +161301,9 @@ static const uint16_t ts_small_parse_table[] = { sym__inter_double_quotes, STATE(4256), 1, sym__val_number_decimal, - STATE(4965), 1, + STATE(4962), 1, sym_val_bool, - STATE(5154), 1, + STATE(5274), 1, sym_unquoted, ACTIONS(2966), 2, anon_sym_0o, @@ -161312,10 +161317,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3547), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(5153), 2, + STATE(5272), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(5838), 2, + STATE(5811), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(2962), 3, @@ -161413,7 +161418,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3680), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(5953), 2, + STATE(5648), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(3499), 3, @@ -161511,7 +161516,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3846), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(5460), 2, + STATE(5513), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(3569), 3, @@ -162839,7 +162844,7 @@ static const uint16_t ts_small_parse_table[] = { sym__unquoted_pattern_in_record, STATE(1428), 1, sym_comment, - STATE(5415), 1, + STATE(5387), 1, sym__expr_parenthesized_immediate, ACTIONS(1157), 2, sym_raw_string_begin, @@ -163113,9 +163118,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, STATE(2709), 1, sym__val_number_decimal, - STATE(5414), 1, + STATE(5408), 1, sym_env_var, - STATE(5935), 1, + STATE(5647), 1, sym_cmd_identifier, ACTIONS(3694), 2, anon_sym_export, @@ -163594,9 +163599,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, STATE(2709), 1, sym__val_number_decimal, - STATE(4994), 1, + STATE(5025), 1, sym_env_var, - STATE(5935), 1, + STATE(5647), 1, sym_cmd_identifier, ACTIONS(3724), 2, anon_sym_export, @@ -164040,7 +164045,7 @@ static const uint16_t ts_small_parse_table[] = { sym__val_number, STATE(2943), 1, sym__match_pattern_record, - STATE(5487), 1, + STATE(5726), 1, sym__match_pattern_rest, ACTIONS(3233), 2, anon_sym_true, @@ -164060,7 +164065,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2905), 2, sym__match_pattern_expression, sym__unquoted_in_list, - STATE(5653), 2, + STATE(5751), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(3237), 3, @@ -164676,7 +164681,7 @@ static const uint16_t ts_small_parse_table[] = { sym__val_number, STATE(2943), 1, sym__match_pattern_record, - STATE(5783), 1, + STATE(5808), 1, sym__match_pattern_rest, ACTIONS(3233), 2, anon_sym_true, @@ -164696,7 +164701,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2905), 2, sym__match_pattern_expression, sym__unquoted_in_list, - STATE(5653), 2, + STATE(5751), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(3237), 3, @@ -164893,17 +164898,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4307), 1, sym__val_number_decimal, - STATE(4527), 1, + STATE(4529), 1, sym_val_variable, - STATE(4676), 1, + STATE(4686), 1, sym_expr_parenthesized, - STATE(5105), 1, + STATE(5001), 1, + sym__val_number, + STATE(5195), 1, sym__inter_single_quotes, - STATE(5106), 1, + STATE(5196), 1, sym__inter_double_quotes, - STATE(5155), 1, - sym__val_number, - STATE(5424), 1, + STATE(5414), 1, sym_block, ACTIONS(1629), 2, anon_sym_true, @@ -164917,7 +164922,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3794), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(5425), 2, + STATE(5416), 2, sym_val_range, sym__value, STATE(4072), 4, @@ -164932,7 +164937,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(5146), 13, + STATE(5000), 13, sym_val_nothing, sym_val_bool, sym_val_cellpath, @@ -164985,17 +164990,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4307), 1, sym__val_number_decimal, - STATE(4527), 1, + STATE(4529), 1, sym_val_variable, - STATE(4677), 1, + STATE(4687), 1, sym_expr_parenthesized, - STATE(5105), 1, + STATE(5001), 1, + sym__val_number, + STATE(5195), 1, sym__inter_single_quotes, - STATE(5106), 1, + STATE(5196), 1, sym__inter_double_quotes, - STATE(5155), 1, - sym__val_number, - STATE(5426), 1, + STATE(5417), 1, sym_block, ACTIONS(1629), 2, anon_sym_true, @@ -165009,7 +165014,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3794), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(5427), 2, + STATE(5420), 2, sym_val_range, sym__value, STATE(4072), 4, @@ -165024,7 +165029,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(5146), 13, + STATE(5000), 13, sym_val_nothing, sym_val_bool, sym_val_cellpath, @@ -165184,7 +165189,7 @@ static const uint16_t ts_small_parse_table[] = { sym__unquoted_pattern_in_record, STATE(1461), 1, sym_comment, - STATE(5314), 1, + STATE(5374), 1, sym__expr_parenthesized_immediate, ACTIONS(3814), 2, anon_sym_DOT_DOT_EQ2, @@ -165702,7 +165707,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2905), 2, sym__match_pattern_expression, sym__unquoted_in_list, - STATE(5653), 2, + STATE(5751), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(3840), 3, @@ -168111,21 +168116,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4264), 1, sym__val_number_decimal, - STATE(4445), 1, + STATE(4448), 1, sym_expr_parenthesized, - STATE(4446), 1, + STATE(4449), 1, sym_val_variable, - STATE(5029), 1, + STATE(5055), 1, sym__match_pattern_expression, - STATE(5050), 1, + STATE(5071), 1, sym__match_pattern_list, - STATE(5056), 1, + STATE(5073), 1, sym__match_pattern_record, - STATE(5070), 1, + STATE(5082), 1, sym_unquoted, - STATE(5203), 1, + STATE(5094), 1, sym_val_bool, - STATE(5428), 1, + STATE(5424), 1, sym__match_pattern, ACTIONS(193), 2, anon_sym_0o, @@ -168139,10 +168144,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3970), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(5048), 2, + STATE(5070), 2, sym__match_pattern_value, sym_val_range, - STATE(5969), 2, + STATE(5777), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(189), 3, @@ -168158,7 +168163,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(5067), 7, + STATE(5077), 7, sym_val_nothing, sym_val_number, sym_val_duration, @@ -171304,7 +171309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_duration_unit, STATE(1557), 1, sym_comment, - STATE(5282), 1, + STATE(5449), 1, sym__expr_parenthesized_immediate, ACTIONS(4063), 2, anon_sym_DOT_DOT_EQ2, @@ -173184,7 +173189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_duration_unit, STATE(1588), 1, sym_comment, - STATE(5354), 1, + STATE(5328), 1, sym__expr_parenthesized_immediate, ACTIONS(4092), 2, anon_sym_DOT_DOT_EQ2, @@ -175589,7 +175594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, STATE(1628), 1, sym_comment, - STATE(5550), 1, + STATE(5819), 1, sym__expr_parenthesized_immediate, ACTIONS(4159), 2, sym_raw_string_begin, @@ -175946,7 +175951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, STATE(1634), 1, sym_comment, - STATE(5550), 1, + STATE(5819), 1, sym__expr_parenthesized_immediate, ACTIONS(4169), 2, sym_raw_string_begin, @@ -177007,7 +177012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, STATE(1652), 1, sym_comment, - STATE(5416), 1, + STATE(5388), 1, sym__expr_parenthesized_immediate, ACTIONS(4121), 2, sym_raw_string_begin, @@ -177067,7 +177072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, STATE(1653), 1, sym_comment, - STATE(5550), 1, + STATE(5819), 1, sym__expr_parenthesized_immediate, ACTIONS(4177), 2, sym_raw_string_begin, @@ -177186,7 +177191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, STATE(1655), 1, sym_comment, - STATE(5550), 1, + STATE(5819), 1, sym__expr_parenthesized_immediate, ACTIONS(4181), 2, sym_raw_string_begin, @@ -177246,7 +177251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, STATE(1656), 1, sym_comment, - STATE(5416), 1, + STATE(5388), 1, sym__expr_parenthesized_immediate, ACTIONS(4125), 2, sym_raw_string_begin, @@ -177739,14 +177744,14 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(3271), 1, sym_val_string, - STATE(4799), 1, + STATE(4739), 1, sym_scope_pattern, - STATE(4967), 1, + STATE(4747), 1, + sym_command_list, + STATE(4898), 1, sym__command_name, - STATE(4969), 1, + STATE(4925), 1, sym_wild_card, - STATE(4972), 1, - sym_command_list, ACTIONS(4195), 2, anon_sym_export, anon_sym_in, @@ -177933,14 +177938,14 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(3271), 1, sym_val_string, - STATE(4967), 1, - sym__command_name, - STATE(4968), 1, + STATE(4708), 1, sym_scope_pattern, - STATE(4969), 1, - sym_wild_card, - STATE(4972), 1, + STATE(4747), 1, sym_command_list, + STATE(4898), 1, + sym__command_name, + STATE(4925), 1, + sym_wild_card, ACTIONS(4195), 2, anon_sym_export, anon_sym_in, @@ -178167,7 +178172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, STATE(1671), 1, sym_comment, - STATE(5416), 1, + STATE(5388), 1, sym__expr_parenthesized_immediate, ACTIONS(4108), 2, sym_raw_string_begin, @@ -178432,7 +178437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, STATE(1675), 1, sym_comment, - STATE(5550), 1, + STATE(5819), 1, sym__expr_parenthesized_immediate, ACTIONS(4157), 8, anon_sym_export, @@ -178491,7 +178496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, STATE(1676), 1, sym_comment, - STATE(5550), 1, + STATE(5819), 1, sym__expr_parenthesized_immediate, ACTIONS(4167), 8, anon_sym_export, @@ -178550,7 +178555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, STATE(1677), 1, sym_comment, - STATE(5550), 1, + STATE(5819), 1, sym__expr_parenthesized_immediate, ACTIONS(4175), 8, anon_sym_export, @@ -178609,7 +178614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, STATE(1678), 1, sym_comment, - STATE(5550), 1, + STATE(5819), 1, sym__expr_parenthesized_immediate, ACTIONS(4179), 8, anon_sym_export, @@ -178668,7 +178673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, STATE(1679), 1, sym_comment, - STATE(5315), 1, + STATE(5381), 1, sym__expr_parenthesized_immediate, ACTIONS(4123), 8, anon_sym_export, @@ -179506,17 +179511,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2575), 1, sym__val_number_decimal, - STATE(4906), 1, + STATE(4889), 1, sym_cmd_identifier, - STATE(4907), 1, + STATE(4891), 1, sym_val_string, - STATE(5147), 1, + STATE(5085), 1, sym__command_name, - STATE(5148), 1, + STATE(5086), 1, sym_scope_pattern, - STATE(5181), 1, + STATE(5087), 1, sym_wild_card, - STATE(5189), 1, + STATE(5088), 1, sym_command_list, ACTIONS(4207), 2, aux_sym__val_number_decimal_token1, @@ -179990,18 +179995,18 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2575), 1, sym__val_number_decimal, - STATE(4906), 1, + STATE(4889), 1, sym_cmd_identifier, - STATE(4907), 1, + STATE(4891), 1, sym_val_string, - STATE(5142), 1, - sym_scope_pattern, - STATE(5147), 1, + STATE(5085), 1, sym__command_name, - STATE(5181), 1, + STATE(5087), 1, sym_wild_card, - STATE(5189), 1, + STATE(5088), 1, sym_command_list, + STATE(5262), 1, + sym_scope_pattern, ACTIONS(4207), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -180224,7 +180229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, STATE(1705), 1, sym_comment, - STATE(5315), 1, + STATE(5381), 1, sym__expr_parenthesized_immediate, ACTIONS(4102), 8, anon_sym_export, @@ -180690,7 +180695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, STATE(1713), 1, sym_comment, - STATE(5315), 1, + STATE(5381), 1, sym__expr_parenthesized_immediate, ACTIONS(4119), 8, anon_sym_export, @@ -189715,20 +189720,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1874), 1, sym_comment, - STATE(4759), 1, + STATE(4874), 1, sym_block, - STATE(5439), 1, + STATE(5291), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -189780,20 +189785,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1875), 1, sym_comment, - STATE(4761), 1, + STATE(4876), 1, sym_block, - STATE(5442), 1, + STATE(5300), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -189845,20 +189850,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1876), 1, sym_comment, - STATE(4762), 1, + STATE(4877), 1, sym_block, - STATE(5445), 1, + STATE(5302), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -189910,20 +189915,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1877), 1, sym_comment, - STATE(5079), 1, + STATE(5030), 1, sym_block, - STATE(5294), 1, + STATE(5438), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -189975,85 +189980,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1878), 1, sym_comment, - STATE(4819), 1, + STATE(4776), 1, sym_block, - STATE(5430), 1, + STATE(5422), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, + ACTIONS(4361), 2, + anon_sym_table, + anon_sym_record, + STATE(4868), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4359), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [64534] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4355), 1, + anon_sym_COLON, + ACTIONS(4357), 1, + anon_sym_LBRACK, + ACTIONS(4363), 1, + anon_sym_list, + ACTIONS(4365), 1, + anon_sym_oneof, + ACTIONS(4369), 1, + anon_sym_LBRACE, + STATE(1879), 1, + sym_comment, + STATE(5170), 1, + sym_block, + STATE(5444), 1, + sym_returns, + STATE(5531), 1, sym__one_type, + STATE(5568), 1, + sym__multiple_types, + STATE(5572), 1, + sym__type_annotation, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4359), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [64534] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4355), 1, - anon_sym_COLON, - ACTIONS(4357), 1, - anon_sym_LBRACK, - ACTIONS(4363), 1, - anon_sym_list, - ACTIONS(4365), 1, - anon_sym_oneof, - ACTIONS(4369), 1, - anon_sym_LBRACE, - STATE(1879), 1, - sym_comment, - STATE(5165), 1, - sym_block, - STATE(5292), 1, - sym_returns, - STATE(5454), 1, - sym__multiple_types, - STATE(5472), 1, - sym__type_annotation, - STATE(5713), 1, - sym__one_type, - ACTIONS(4361), 2, - anon_sym_table, - anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -190105,20 +190110,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1880), 1, sym_comment, - STATE(4770), 1, + STATE(4920), 1, sym_block, - STATE(5281), 1, + STATE(5320), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -190170,20 +190175,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1881), 1, sym_comment, - STATE(4771), 1, + STATE(4928), 1, sym_block, - STATE(5284), 1, + STATE(5322), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -190301,13 +190306,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__command_list_body_repeat1, STATE(2713), 1, sym__val_number_decimal, - STATE(5033), 1, - sym__command_name, - STATE(5166), 1, + STATE(5006), 1, sym_cmd_identifier, - STATE(5170), 1, + STATE(5007), 1, sym_val_string, - STATE(5947), 1, + STATE(5247), 1, + sym__command_name, + STATE(5552), 1, sym__command_list_body, ACTIONS(4207), 2, aux_sym__val_number_decimal_token1, @@ -190362,20 +190367,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1884), 1, sym_comment, - STATE(5084), 1, + STATE(5051), 1, sym_block, - STATE(5367), 1, + STATE(5407), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -190481,20 +190486,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1886), 1, sym_comment, - STATE(5085), 1, + STATE(5052), 1, sym_block, - STATE(5449), 1, + STATE(5413), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -190546,20 +190551,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1887), 1, sym_comment, - STATE(5248), 1, + STATE(5173), 1, sym_block, - STATE(5295), 1, + STATE(5279), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -190611,20 +190616,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1888), 1, sym_comment, - STATE(5113), 1, + STATE(5204), 1, sym_block, - STATE(5360), 1, + STATE(5327), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -190841,20 +190846,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1892), 1, sym_comment, - STATE(5115), 1, + STATE(5205), 1, sym_block, - STATE(5364), 1, + STATE(5334), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -190906,20 +190911,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1893), 1, sym_comment, - STATE(5117), 1, + STATE(5206), 1, sym_block, - STATE(5366), 1, + STATE(5336), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -190971,20 +190976,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1894), 1, sym_comment, - STATE(5201), 1, + STATE(5208), 1, sym_block, - STATE(5307), 1, + STATE(5294), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -191091,20 +191096,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1896), 1, sym_comment, - STATE(5269), 1, + STATE(5216), 1, sym_block, - STATE(5352), 1, + STATE(5346), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -191156,20 +191161,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1897), 1, sym_comment, - STATE(5109), 1, + STATE(5174), 1, sym_block, - STATE(5297), 1, + STATE(5285), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -191275,20 +191280,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1899), 1, sym_comment, - STATE(5073), 1, + STATE(5090), 1, sym_block, - STATE(5391), 1, + STATE(5425), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -191340,20 +191345,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1900), 1, sym_comment, - STATE(5075), 1, + STATE(5091), 1, sym_block, - STATE(5400), 1, + STATE(5427), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -191405,20 +191410,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1901), 1, sym_comment, - STATE(5122), 1, + STATE(5207), 1, sym_block, - STATE(5370), 1, + STATE(5338), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -191470,20 +191475,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1902), 1, sym_comment, - STATE(5191), 1, + STATE(5238), 1, sym_block, - STATE(5404), 1, + STATE(5386), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -191589,20 +191594,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1904), 1, sym_comment, - STATE(5110), 1, + STATE(5107), 1, sym_block, - STATE(5435), 1, + STATE(5307), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -191654,20 +191659,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1905), 1, sym_comment, - STATE(5111), 1, + STATE(5108), 1, sym_block, - STATE(5437), 1, + STATE(5312), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -191719,20 +191724,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1906), 1, sym_comment, - STATE(5082), 1, + STATE(5050), 1, sym_block, - STATE(5365), 1, + STATE(5379), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -191848,13 +191853,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__command_list_body_repeat1, STATE(2713), 1, sym__val_number_decimal, - STATE(5033), 1, - sym__command_name, - STATE(5166), 1, + STATE(5006), 1, sym_cmd_identifier, - STATE(5170), 1, + STATE(5007), 1, sym_val_string, - STATE(5769), 1, + STATE(5247), 1, + sym__command_name, + STATE(5780), 1, sym__command_list_body, ACTIONS(4207), 2, aux_sym__val_number_decimal_token1, @@ -191963,20 +191968,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1910), 1, sym_comment, - STATE(4760), 1, + STATE(4875), 1, sym_block, - STATE(5440), 1, + STATE(5296), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -192028,20 +192033,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1911), 1, sym_comment, - STATE(4715), 1, + STATE(4765), 1, sym_block, - STATE(5323), 1, + STATE(5435), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -192093,20 +192098,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1912), 1, sym_comment, - STATE(4717), 1, + STATE(4767), 1, sym_block, - STATE(5324), 1, + STATE(5316), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -192158,20 +192163,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1913), 1, sym_comment, - STATE(5220), 1, + STATE(5175), 1, sym_block, - STATE(5302), 1, + STATE(5288), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -192279,20 +192284,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1915), 1, sym_comment, - STATE(4718), 1, + STATE(4769), 1, sym_block, - STATE(5325), 1, + STATE(5333), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -192344,20 +192349,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1916), 1, sym_comment, - STATE(4719), 1, + STATE(4772), 1, sym_block, - STATE(5327), 1, + STATE(5431), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -192409,20 +192414,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1917), 1, sym_comment, - STATE(4730), 1, + STATE(4797), 1, sym_block, - STATE(5340), 1, + STATE(5298), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -192474,20 +192479,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1918), 1, sym_comment, - STATE(5090), 1, + STATE(5053), 1, sym_block, - STATE(5372), 1, + STATE(5421), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -192539,20 +192544,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1919), 1, sym_comment, - STATE(4731), 1, + STATE(4800), 1, sym_block, - STATE(5341), 1, + STATE(5326), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -192604,20 +192609,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1920), 1, sym_comment, - STATE(4982), 1, + STATE(5120), 1, sym_block, - STATE(5286), 1, + STATE(5341), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -192725,20 +192730,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1922), 1, sym_comment, - STATE(5192), 1, + STATE(5241), 1, sym_block, - STATE(5406), 1, + STATE(5390), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -192790,20 +192795,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1923), 1, sym_comment, - STATE(4818), 1, + STATE(4774), 1, sym_block, - STATE(5429), 1, + STATE(5342), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -192855,20 +192860,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1924), 1, sym_comment, - STATE(4905), 1, + STATE(4969), 1, sym_block, - STATE(5357), 1, + STATE(5331), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -192920,20 +192925,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1925), 1, sym_comment, - STATE(4916), 1, + STATE(4856), 1, sym_block, - STATE(5361), 1, + STATE(5332), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -192985,20 +192990,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1926), 1, sym_comment, - STATE(4938), 1, + STATE(4713), 1, sym_block, - STATE(5378), 1, + STATE(5363), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -193050,20 +193055,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1927), 1, sym_comment, - STATE(4939), 1, + STATE(4717), 1, sym_block, - STATE(5381), 1, + STATE(5364), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -193115,20 +193120,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1928), 1, sym_comment, - STATE(4942), 1, + STATE(4720), 1, sym_block, - STATE(5383), 1, + STATE(5366), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -193180,20 +193185,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1929), 1, sym_comment, - STATE(5114), 1, + STATE(5039), 1, sym_block, - STATE(5298), 1, + STATE(5304), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -193245,20 +193250,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1930), 1, sym_comment, - STATE(4943), 1, + STATE(4737), 1, sym_block, - STATE(5387), 1, + STATE(5367), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -193310,20 +193315,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1931), 1, sym_comment, - STATE(4989), 1, + STATE(5126), 1, sym_block, - STATE(5287), 1, + STATE(5351), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -193431,20 +193436,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1933), 1, sym_comment, - STATE(4739), 1, + STATE(4823), 1, sym_block, - STATE(5396), 1, + STATE(5354), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -193496,20 +193501,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1934), 1, sym_comment, - STATE(4740), 1, + STATE(4824), 1, sym_block, - STATE(5397), 1, + STATE(5361), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -193687,20 +193692,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1937), 1, sym_comment, - STATE(4748), 1, + STATE(4844), 1, sym_block, - STATE(5405), 1, + STATE(5380), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -193920,20 +193925,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1941), 1, sym_comment, - STATE(4749), 1, + STATE(4847), 1, sym_block, - STATE(5407), 1, + STATE(5403), 1, sym_returns, - STATE(5454), 1, + STATE(5531), 1, + sym__one_type, + STATE(5568), 1, sym__multiple_types, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5713), 1, - sym__one_type, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -194899,16 +194904,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__types_body_repeat1, STATE(2164), 1, aux_sym__types_body_repeat3, - STATE(4983), 1, + STATE(5153), 1, sym__one_type, - STATE(5818), 1, + STATE(5620), 1, sym__type_annotation, - STATE(5837), 1, + STATE(5948), 1, sym__types_body, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -201720,12 +201725,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__types_body_repeat1, STATE(2713), 1, sym__val_number_decimal, - STATE(5064), 1, - sym__command_name, - STATE(5166), 1, + STATE(5006), 1, sym_cmd_identifier, - STATE(5170), 1, + STATE(5007), 1, sym_val_string, + STATE(5192), 1, + sym__command_name, ACTIONS(4207), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -203430,7 +203435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(3271), 1, sym_val_string, - STATE(4835), 1, + STATE(4741), 1, sym__command_name, ACTIONS(4391), 2, aux_sym__val_number_decimal_token1, @@ -203772,14 +203777,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__types_body_repeat1, STATE(2227), 1, aux_sym__composite_argument_body_repeat1, - STATE(5167), 1, + STATE(5223), 1, sym__all_type, - STATE(5707), 1, + STATE(5722), 1, sym__composite_argument_body, ACTIONS(4538), 2, anon_sym_table, anon_sym_record, - STATE(5228), 4, + STATE(5227), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -204052,14 +204057,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__types_body_repeat3, STATE(2351), 1, aux_sym__types_body_repeat1, - STATE(5180), 1, + STATE(5230), 1, sym__one_type, - STATE(5818), 1, + STATE(5620), 1, sym__type_annotation, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -204121,7 +204126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(3271), 1, sym_val_string, - STATE(4526), 1, + STATE(4528), 1, sym__command_name, ACTIONS(4391), 2, aux_sym__val_number_decimal_token1, @@ -204244,7 +204249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(3271), 1, sym_val_string, - STATE(5965), 1, + STATE(5969), 1, sym__command_name, ACTIONS(4391), 2, aux_sym__val_number_decimal_token1, @@ -204363,7 +204368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(3271), 1, sym_val_string, - STATE(5965), 1, + STATE(5969), 1, sym__command_name, ACTIONS(4391), 2, aux_sym__val_number_decimal_token1, @@ -204427,7 +204432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(3271), 1, sym_val_string, - STATE(4835), 1, + STATE(4741), 1, sym__command_name, ACTIONS(4391), 2, aux_sym__val_number_decimal_token1, @@ -204491,7 +204496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(3271), 1, sym_val_string, - STATE(4526), 1, + STATE(4528), 1, sym__command_name, ACTIONS(4391), 2, aux_sym__val_number_decimal_token1, @@ -204545,14 +204550,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__types_body_repeat1, STATE(2227), 1, aux_sym__composite_argument_body_repeat1, - STATE(5167), 1, + STATE(5223), 1, sym__all_type, - STATE(5465), 1, + STATE(5515), 1, sym__composite_argument_body, ACTIONS(4538), 2, anon_sym_table, anon_sym_record, - STATE(5228), 4, + STATE(5227), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -204604,14 +204609,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__types_body_repeat1, STATE(2227), 1, aux_sym__composite_argument_body_repeat1, - STATE(5167), 1, + STATE(5223), 1, sym__all_type, - STATE(5780), 1, + STATE(5721), 1, sym__composite_argument_body, ACTIONS(4538), 2, anon_sym_table, anon_sym_record, - STATE(5228), 4, + STATE(5227), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -204838,7 +204843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(3271), 1, sym_val_string, - STATE(5489), 1, + STATE(5806), 1, sym__command_name, ACTIONS(4391), 2, aux_sym__val_number_decimal_token1, @@ -205104,14 +205109,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, STATE(2126), 1, sym_comment, - STATE(5162), 1, + STATE(5222), 1, sym__all_type, - STATE(5705), 1, + STATE(5719), 1, sym_param_cmd, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(5390), 4, + STATE(5362), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -205263,14 +205268,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(2129), 1, sym_comment, - STATE(5208), 1, + STATE(5009), 1, sym__all_type, - STATE(5779), 1, + STATE(5708), 1, sym_param_cmd, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(5390), 4, + STATE(5362), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -205483,11 +205488,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__command_list_body_repeat1, STATE(2713), 1, sym__val_number_decimal, - STATE(5166), 1, + STATE(5006), 1, sym_cmd_identifier, - STATE(5170), 1, + STATE(5007), 1, sym_val_string, - STATE(5194), 1, + STATE(5243), 1, sym__command_name, ACTIONS(4207), 2, aux_sym__val_number_decimal_token1, @@ -205596,12 +205601,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__command_list_body_repeat1, STATE(2713), 1, sym__val_number_decimal, - STATE(5131), 1, - sym__command_name, - STATE(5166), 1, + STATE(5006), 1, sym_cmd_identifier, - STATE(5170), 1, + STATE(5007), 1, sym_val_string, + STATE(5194), 1, + sym__command_name, ACTIONS(4207), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -205655,11 +205660,11 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, STATE(2713), 1, sym__val_number_decimal, - STATE(5166), 1, + STATE(5006), 1, sym_cmd_identifier, - STATE(5170), 1, + STATE(5007), 1, sym_val_string, - STATE(5408), 1, + STATE(5394), 1, sym__command_name, ACTIONS(4581), 2, anon_sym_export, @@ -205725,7 +205730,7 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(3271), 1, sym_val_string, - STATE(4795), 1, + STATE(4715), 1, sym__command_name, ACTIONS(4391), 2, aux_sym__val_number_decimal_token1, @@ -205886,16 +205891,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneof, STATE(2140), 1, sym_comment, - STATE(5472), 1, + STATE(5572), 1, sym__type_annotation, - STATE(5601), 1, + STATE(5838), 1, sym__one_type, - STATE(5793), 1, + STATE(5943), 1, sym__multiple_types, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -206012,7 +206017,7 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(3271), 1, sym_val_string, - STATE(5965), 1, + STATE(5969), 1, sym__command_name, ACTIONS(4391), 2, aux_sym__val_number_decimal_token1, @@ -206074,7 +206079,7 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(3271), 1, sym_val_string, - STATE(4835), 1, + STATE(4741), 1, sym__command_name, ACTIONS(4391), 2, aux_sym__val_number_decimal_token1, @@ -206126,14 +206131,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, STATE(2144), 1, sym_comment, - STATE(4986), 1, + STATE(5011), 1, sym__all_type, - STATE(5463), 1, + STATE(5939), 1, sym_param_cmd, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(5390), 4, + STATE(5362), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -206193,7 +206198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(3271), 1, sym_val_string, - STATE(4526), 1, + STATE(4528), 1, sym__command_name, ACTIONS(4391), 2, aux_sym__val_number_decimal_token1, @@ -206301,12 +206306,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__composite_argument_body_repeat1, STATE(2351), 1, aux_sym__types_body_repeat1, - STATE(5159), 1, + STATE(5172), 1, sym__all_type, ACTIONS(4538), 2, anon_sym_table, anon_sym_record, - STATE(5228), 4, + STATE(5227), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -206468,7 +206473,7 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(3271), 1, sym_val_string, - STATE(5529), 1, + STATE(5584), 1, sym__command_name, ACTIONS(4391), 2, aux_sym__val_number_decimal_token1, @@ -206580,7 +206585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(3271), 1, sym_val_string, - STATE(5704), 1, + STATE(5951), 1, sym__command_name, ACTIONS(4391), 2, aux_sym__val_number_decimal_token1, @@ -206745,7 +206750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(3271), 1, sym_val_string, - STATE(5699), 1, + STATE(5701), 1, sym__command_name, ACTIONS(4391), 2, aux_sym__val_number_decimal_token1, @@ -206803,11 +206808,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2575), 1, sym__val_number_decimal, - STATE(4663), 1, + STATE(4596), 1, sym__command_name, - STATE(4906), 1, + STATE(4889), 1, sym_cmd_identifier, - STATE(4907), 1, + STATE(4891), 1, sym_val_string, ACTIONS(4391), 2, aux_sym__val_number_decimal_token1, @@ -206869,7 +206874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(3271), 1, sym_val_string, - STATE(5505), 1, + STATE(5766), 1, sym__command_name, ACTIONS(4391), 2, aux_sym__val_number_decimal_token1, @@ -206921,12 +206926,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2159), 1, aux_sym__repeat_newline, - STATE(5183), 1, + STATE(5138), 1, sym__type_annotation, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -206976,12 +206981,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2396), 1, aux_sym__repeat_newline, - STATE(5173), 1, + STATE(5225), 1, sym__type_annotation, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -207232,14 +207237,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2191), 1, aux_sym__types_body_repeat3, - STATE(5182), 1, + STATE(5231), 1, sym__one_type, - STATE(5818), 1, + STATE(5620), 1, sym__type_annotation, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -207297,7 +207302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(3271), 1, sym_val_string, - STATE(4792), 1, + STATE(4712), 1, sym__command_name, ACTIONS(4195), 2, anon_sym_export, @@ -207400,12 +207405,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2207), 1, aux_sym__repeat_newline, - STATE(5226), 1, + STATE(5059), 1, sym__type_annotation, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -207509,11 +207514,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2713), 1, sym__val_number_decimal, - STATE(5166), 1, + STATE(5006), 1, sym_cmd_identifier, - STATE(5170), 1, + STATE(5007), 1, sym_val_string, - STATE(5389), 1, + STATE(5383), 1, sym__command_name, ACTIONS(4207), 2, aux_sym__val_number_decimal_token1, @@ -208240,11 +208245,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2575), 1, sym__val_number_decimal, - STATE(4662), 1, + STATE(4595), 1, sym__command_name, - STATE(4906), 1, + STATE(4889), 1, sym_cmd_identifier, - STATE(4907), 1, + STATE(4891), 1, sym_val_string, ACTIONS(4207), 2, aux_sym__val_number_decimal_token1, @@ -208305,7 +208310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(3271), 1, sym_val_string, - STATE(5517), 1, + STATE(5720), 1, sym__command_name, ACTIONS(4195), 2, anon_sym_export, @@ -208366,7 +208371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(3271), 1, sym_val_string, - STATE(4812), 1, + STATE(4802), 1, sym__command_name, ACTIONS(4195), 2, anon_sym_export, @@ -208623,14 +208628,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2191), 1, aux_sym__types_body_repeat3, - STATE(5231), 1, + STATE(5179), 1, sym__one_type, - STATE(5818), 1, + STATE(5620), 1, sym__type_annotation, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -208674,9 +208679,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_list, ACTIONS(4673), 1, anon_sym_oneof, - STATE(5326), 1, + STATE(5301), 1, sym__one_type, - STATE(5818), 1, + STATE(5620), 1, sym__type_annotation, ACTIONS(4667), 2, anon_sym_table, @@ -208684,7 +208689,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2191), 2, sym_comment, aux_sym__types_body_repeat3, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -209008,7 +209013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_duration_unit, STATE(2197), 1, sym_comment, - STATE(5282), 1, + STATE(5449), 1, sym__expr_parenthesized_immediate, ACTIONS(4678), 2, anon_sym_DOT_DOT_EQ2, @@ -209226,7 +209231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(3271), 1, sym_val_string, - STATE(5537), 1, + STATE(5597), 1, sym__command_name, ACTIONS(4195), 2, anon_sym_export, @@ -209287,7 +209292,7 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(3271), 1, sym_val_string, - STATE(4712), 1, + STATE(4979), 1, sym__command_name, ACTIONS(4195), 2, anon_sym_export, @@ -209453,7 +209458,7 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(3271), 1, sym_val_string, - STATE(5588), 1, + STATE(5821), 1, sym__command_name, ACTIONS(4195), 2, anon_sym_export, @@ -209514,7 +209519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(3271), 1, sym_val_string, - STATE(4787), 1, + STATE(4723), 1, sym__command_name, ACTIONS(4195), 2, anon_sym_export, @@ -209567,12 +209572,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2396), 1, aux_sym__repeat_newline, - STATE(5273), 1, + STATE(5095), 1, sym__type_annotation, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -209630,7 +209635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(3271), 1, sym_val_string, - STATE(5660), 1, + STATE(5692), 1, sym__command_name, ACTIONS(4195), 2, anon_sym_export, @@ -209691,7 +209696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(3271), 1, sym_val_string, - STATE(5971), 1, + STATE(5569), 1, sym__command_name, ACTIONS(4195), 2, anon_sym_export, @@ -209807,7 +209812,7 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(3271), 1, sym_val_string, - STATE(4546), 1, + STATE(4551), 1, sym__command_name, ACTIONS(4195), 2, anon_sym_export, @@ -209868,7 +209873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_cmd_identifier, STATE(3271), 1, sym_val_string, - STATE(5709), 1, + STATE(5711), 1, sym__command_name, ACTIONS(4195), 2, anon_sym_export, @@ -210415,7 +210420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_list, ACTIONS(4726), 1, anon_sym_oneof, - STATE(5377), 1, + STATE(5315), 1, sym__all_type, ACTIONS(4720), 2, anon_sym_table, @@ -210423,7 +210428,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2223), 2, sym_comment, aux_sym__composite_argument_body_repeat1, - STATE(5228), 4, + STATE(5227), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -210615,12 +210620,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__composite_argument_body_repeat1, STATE(2227), 1, sym_comment, - STATE(5218), 1, + STATE(5176), 1, sym__all_type, ACTIONS(4538), 2, anon_sym_table, anon_sym_record, - STATE(5228), 4, + STATE(5227), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -211178,7 +211183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_duration_unit, STATE(2238), 1, sym_comment, - STATE(5282), 1, + STATE(5449), 1, sym__expr_parenthesized_immediate, ACTIONS(4751), 2, anon_sym_DOT_DOT_EQ2, @@ -211279,12 +211284,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__composite_argument_body_repeat1, STATE(2240), 1, sym_comment, - STATE(5134), 1, + STATE(5067), 1, sym__all_type, ACTIONS(4538), 2, anon_sym_table, anon_sym_record, - STATE(5228), 4, + STATE(5227), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -211561,9 +211566,9 @@ static const uint16_t ts_small_parse_table[] = { sym__inter_single_quotes, STATE(2256), 1, sym__inter_double_quotes, - STATE(4556), 1, + STATE(4409), 1, sym__val_number_decimal, - STATE(5516), 1, + STATE(5714), 1, sym_val_bool, ACTIONS(3081), 2, anon_sym_true, @@ -211577,7 +211582,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4783), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(5539), 2, + STATE(5599), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(4775), 3, @@ -211942,12 +211947,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneof, STATE(2253), 1, sym_comment, - STATE(5393), 1, + STATE(5395), 1, sym__type_annotation, ACTIONS(4538), 2, anon_sym_table, anon_sym_record, - STATE(5448), 4, + STATE(5439), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -212796,9 +212801,9 @@ static const uint16_t ts_small_parse_table[] = { sym__inter_double_quotes, STATE(2270), 1, sym_comment, - STATE(4556), 1, + STATE(4409), 1, sym__val_number_decimal, - STATE(5516), 1, + STATE(5714), 1, sym_val_bool, ACTIONS(3081), 2, anon_sym_true, @@ -212812,7 +212817,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4783), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(5539), 2, + STATE(5599), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(4775), 3, @@ -212845,7 +212850,7 @@ static const uint16_t ts_small_parse_table[] = { sym__unquoted_pattern_in_list, STATE(2271), 1, sym_comment, - STATE(5402), 1, + STATE(5378), 1, sym__expr_parenthesized_immediate, ACTIONS(1157), 2, sym_raw_string_begin, @@ -213276,12 +213281,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneof, STATE(2280), 1, sym_comment, - STATE(4806), 1, + STATE(4728), 1, sym__all_type, ACTIONS(4538), 2, anon_sym_table, anon_sym_record, - STATE(5228), 4, + STATE(5227), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -213421,12 +213426,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneof, STATE(2283), 1, sym_comment, - STATE(5733), 1, + STATE(5744), 1, sym__type_annotation, ACTIONS(4361), 2, anon_sym_table, anon_sym_record, - STATE(4962), 4, + STATE(4868), 4, sym_flat_type, sym_collection_type, sym_list_type, @@ -214926,9 +214931,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2332), 1, sym__inter_single_quotes, - STATE(4476), 1, + STATE(4480), 1, sym__val_number_decimal, - STATE(5516), 1, + STATE(5714), 1, sym_val_bool, ACTIONS(3081), 2, anon_sym_true, @@ -214942,7 +214947,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4880), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(5500), 2, + STATE(5653), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(4872), 3, @@ -215481,9 +215486,9 @@ static const uint16_t ts_small_parse_table[] = { sym__inter_double_quotes, STATE(2325), 1, sym_comment, - STATE(4556), 1, + STATE(4409), 1, sym__val_number_decimal, - STATE(5516), 1, + STATE(5714), 1, sym_val_bool, ACTIONS(3081), 2, anon_sym_true, @@ -215497,7 +215502,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4783), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(5539), 2, + STATE(5599), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(4775), 3, @@ -217626,9 +217631,9 @@ static const uint16_t ts_small_parse_table[] = { sym__inter_single_quotes, STATE(2370), 1, sym_comment, - STATE(4476), 1, + STATE(4480), 1, sym__val_number_decimal, - STATE(5516), 1, + STATE(5714), 1, sym_val_bool, ACTIONS(4880), 2, anon_sym_DOT_DOT_EQ, @@ -217639,7 +217644,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4970), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(5500), 2, + STATE(5653), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(4966), 3, @@ -217790,9 +217795,9 @@ static const uint16_t ts_small_parse_table[] = { sym__inter_double_quotes, STATE(2373), 1, sym_comment, - STATE(4556), 1, + STATE(4409), 1, sym__val_number_decimal, - STATE(5516), 1, + STATE(5714), 1, sym_val_bool, ACTIONS(4783), 2, anon_sym_DOT_DOT_EQ, @@ -217803,7 +217808,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4970), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(5539), 2, + STATE(5599), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(4982), 3, @@ -220526,11 +220531,11 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, STATE(2433), 1, sym_comment, - STATE(4451), 1, + STATE(4454), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4954), 1, + STATE(4820), 1, sym_path, - STATE(5071), 1, + STATE(5046), 1, sym_cell_path, ACTIONS(2221), 2, sym__entry_separator, @@ -221779,11 +221784,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT2, STATE(2461), 1, sym_comment, - STATE(4777), 1, + STATE(4941), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(5305), 1, + STATE(5292), 1, sym_path, - STATE(5753), 1, + STATE(5759), 1, sym_cell_path, ACTIONS(5115), 6, anon_sym_DOT_DOT, @@ -224815,7 +224820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [105247] = 27, + [105247] = 28, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1663), 1, @@ -224848,13 +224853,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__types_body_repeat1, STATE(2909), 1, aux_sym__collection_body_repeat1, - STATE(4523), 1, + STATE(4525), 1, sym__val_number_decimal, - STATE(5135), 1, + STATE(4899), 1, + sym_val_string, + STATE(4901), 1, + sym__unquoted_in_record, + STATE(5212), 1, sym__collection_entry, - STATE(5655), 1, + STATE(5671), 1, sym__collection_body, - STATE(5680), 1, + STATE(5696), 1, sym_val_bool, ACTIONS(5257), 2, anon_sym_true, @@ -224865,10 +224874,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5275), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4914), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(5645), 2, + STATE(5662), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(5261), 3, @@ -224880,7 +224886,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [105339] = 4, + [105341] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2531), 1, @@ -224922,7 +224928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [105385] = 4, + [105387] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2532), 1, @@ -224964,7 +224970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [105431] = 4, + [105433] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2533), 1, @@ -225006,7 +225012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [105477] = 6, + [105479] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1753), 1, @@ -225050,7 +225056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [105527] = 6, + [105529] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2330), 1, @@ -225094,7 +225100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [105577] = 6, + [105579] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2330), 1, @@ -225138,7 +225144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [105627] = 6, + [105629] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1791), 1, @@ -225182,7 +225188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [105677] = 6, + [105679] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2840), 1, @@ -225226,7 +225232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [105727] = 4, + [105729] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2539), 1, @@ -225268,7 +225274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [105773] = 6, + [105775] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2848), 1, @@ -225312,7 +225318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [105823] = 4, + [105825] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2541), 1, @@ -225354,7 +225360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [105869] = 6, + [105871] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2852), 1, @@ -225398,7 +225404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [105919] = 6, + [105921] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2852), 1, @@ -225442,7 +225448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [105969] = 4, + [105971] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2544), 1, @@ -225484,7 +225490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [106015] = 4, + [106017] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2545), 1, @@ -225526,7 +225532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [106061] = 4, + [106063] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2546), 1, @@ -225568,7 +225574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [106107] = 4, + [106109] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2547), 1, @@ -225610,7 +225616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_DOT2, aux_sym__unquoted_in_list_token1, - [106153] = 4, + [106155] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2548), 1, @@ -225652,7 +225658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_DOT2, aux_sym__unquoted_in_list_token1, - [106199] = 4, + [106201] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2549), 1, @@ -225694,7 +225700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_DOT2, aux_sym__unquoted_in_list_token1, - [106245] = 4, + [106247] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2550), 1, @@ -225736,7 +225742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_DOT2, aux_sym__unquoted_in_list_token1, - [106291] = 4, + [106293] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2551), 1, @@ -225778,7 +225784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_DOT2, aux_sym__unquoted_in_list_token1, - [106337] = 4, + [106339] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2552), 1, @@ -225820,7 +225826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_DOT2, aux_sym__unquoted_in_list_token1, - [106383] = 4, + [106385] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2553), 1, @@ -225862,7 +225868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [106429] = 5, + [106431] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5189), 1, @@ -225905,7 +225911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym__unquoted_pattern_in_list, aux_sym__unquoted_in_list_token1, - [106477] = 5, + [106479] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5295), 1, @@ -225948,7 +225954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym__unquoted_pattern_in_list, aux_sym__unquoted_in_list_token1, - [106525] = 5, + [106527] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5155), 1, @@ -225991,7 +225997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [106573] = 5, + [106575] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5297), 1, @@ -226034,7 +226040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [106621] = 4, + [106623] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2558), 1, @@ -226076,7 +226082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [106667] = 4, + [106669] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2559), 1, @@ -226118,7 +226124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [106713] = 4, + [106715] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2560), 1, @@ -226160,7 +226166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [106759] = 4, + [106761] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2561), 1, @@ -226202,7 +226208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [106805] = 4, + [106807] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2562), 1, @@ -226244,7 +226250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [106851] = 4, + [106853] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2563), 1, @@ -226286,7 +226292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [106897] = 4, + [106899] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2564), 1, @@ -226328,7 +226334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [106943] = 4, + [106945] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2565), 1, @@ -226370,7 +226376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [106989] = 4, + [106991] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2566), 1, @@ -226412,7 +226418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [107035] = 5, + [107037] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1884), 1, @@ -226455,7 +226461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [107083] = 4, + [107085] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2568), 1, @@ -226497,7 +226503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [107129] = 4, + [107131] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2569), 1, @@ -226539,7 +226545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [107175] = 4, + [107177] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2570), 1, @@ -226581,7 +226587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [107221] = 4, + [107223] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2571), 1, @@ -226623,7 +226629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [107267] = 4, + [107269] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2572), 1, @@ -226665,7 +226671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [107313] = 4, + [107315] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2573), 1, @@ -226707,7 +226713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [107359] = 4, + [107361] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2574), 1, @@ -226749,7 +226755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [107405] = 7, + [107407] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5303), 1, @@ -226794,7 +226800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [107457] = 8, + [107459] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2549), 1, @@ -226840,7 +226846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - [107511] = 4, + [107513] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2577), 1, @@ -226882,7 +226888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [107557] = 4, + [107559] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2578), 1, @@ -226924,7 +226930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [107603] = 4, + [107605] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2579), 1, @@ -226966,7 +226972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [107649] = 4, + [107651] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2580), 1, @@ -227008,7 +227014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [107695] = 4, + [107697] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2581), 1, @@ -227050,7 +227056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [107741] = 4, + [107743] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2582), 1, @@ -227092,7 +227098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [107787] = 4, + [107789] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2583), 1, @@ -227134,7 +227140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [107833] = 4, + [107835] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2584), 1, @@ -227176,7 +227182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [107879] = 4, + [107881] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2585), 1, @@ -227218,7 +227224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [107925] = 4, + [107927] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2586), 1, @@ -227260,7 +227266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [107971] = 4, + [107973] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2587), 1, @@ -227302,7 +227308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [108017] = 4, + [108019] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2588), 1, @@ -227344,7 +227350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [108063] = 13, + [108065] = 13, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3043), 1, @@ -227395,7 +227401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [108127] = 12, + [108129] = 12, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3043), 1, @@ -227445,7 +227451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [108189] = 9, + [108191] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3043), 1, @@ -227492,7 +227498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [108245] = 7, + [108247] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3043), 1, @@ -227537,7 +227543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [108297] = 18, + [108299] = 18, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3043), 1, @@ -227593,7 +227599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [108371] = 19, + [108373] = 19, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3043), 1, @@ -227650,7 +227656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [108447] = 20, + [108449] = 20, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -227708,7 +227714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [108525] = 14, + [108527] = 14, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3043), 1, @@ -227760,7 +227766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [108591] = 11, + [108593] = 11, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3043), 1, @@ -227809,7 +227815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [108651] = 15, + [108653] = 15, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3043), 1, @@ -227862,7 +227868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [108719] = 16, + [108721] = 16, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3043), 1, @@ -227916,7 +227922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [108789] = 17, + [108791] = 17, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3043), 1, @@ -227971,7 +227977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [108861] = 4, + [108863] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2601), 1, @@ -228013,7 +228019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [108907] = 4, + [108909] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2602), 1, @@ -228055,7 +228061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [108953] = 27, + [108955] = 28, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1663), 1, @@ -228088,14 +228094,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__types_body_repeat1, STATE(2909), 1, aux_sym__collection_body_repeat1, - STATE(4523), 1, + STATE(4525), 1, sym__val_number_decimal, - STATE(5135), 1, + STATE(4899), 1, + sym_val_string, + STATE(4901), 1, + sym__unquoted_in_record, + STATE(5212), 1, sym__collection_entry, - STATE(5457), 1, - sym__collection_body, - STATE(5680), 1, + STATE(5696), 1, sym_val_bool, + STATE(5745), 1, + sym__collection_body, ACTIONS(5257), 2, anon_sym_true, anon_sym_false, @@ -228105,10 +228115,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5275), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4914), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(5645), 2, + STATE(5662), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(5261), 3, @@ -228120,7 +228127,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [109045] = 13, + [109049] = 13, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3074), 1, @@ -228171,7 +228178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [109109] = 12, + [109113] = 12, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -228221,7 +228228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [109171] = 12, + [109175] = 12, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3074), 1, @@ -228271,7 +228278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [109233] = 11, + [109237] = 11, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -228320,7 +228327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [109293] = 8, + [109297] = 8, ACTIONS(3), 1, anon_sym_POUND, STATE(691), 1, @@ -228366,7 +228373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [109347] = 7, + [109351] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3074), 1, @@ -228411,7 +228418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [109399] = 6, + [109403] = 6, ACTIONS(3), 1, anon_sym_POUND, STATE(691), 1, @@ -228455,7 +228462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [109449] = 18, + [109453] = 18, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3074), 1, @@ -228511,7 +228518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [109523] = 17, + [109527] = 17, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -228566,7 +228573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [109595] = 19, + [109599] = 19, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3074), 1, @@ -228623,7 +228630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [109671] = 18, + [109675] = 18, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -228679,7 +228686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [109745] = 20, + [109749] = 20, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -228737,7 +228744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [109823] = 19, + [109827] = 19, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -228794,7 +228801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [109899] = 14, + [109903] = 14, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3074), 1, @@ -228846,7 +228853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [109965] = 13, + [109969] = 13, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -228897,7 +228904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110029] = 11, + [110033] = 11, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3074), 1, @@ -228946,7 +228953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110089] = 10, + [110093] = 10, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -228994,7 +229001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110147] = 15, + [110151] = 15, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3074), 1, @@ -229047,7 +229054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110215] = 14, + [110219] = 14, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -229099,7 +229106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110281] = 16, + [110285] = 16, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3074), 1, @@ -229153,7 +229160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [110351] = 15, + [110355] = 15, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -229206,7 +229213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110419] = 17, + [110423] = 17, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3074), 1, @@ -229261,7 +229268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [110491] = 16, + [110495] = 16, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -229315,7 +229322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [110561] = 13, + [110565] = 13, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3097), 1, @@ -229366,7 +229373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110625] = 12, + [110629] = 12, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3097), 1, @@ -229416,7 +229423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110687] = 9, + [110691] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3097), 1, @@ -229463,7 +229470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110743] = 7, + [110747] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3097), 1, @@ -229508,7 +229515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110795] = 18, + [110799] = 18, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3097), 1, @@ -229564,7 +229571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [110869] = 19, + [110873] = 19, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3097), 1, @@ -229621,7 +229628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [110945] = 20, + [110949] = 20, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -229679,7 +229686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [111023] = 14, + [111027] = 14, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3097), 1, @@ -229731,7 +229738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111089] = 11, + [111093] = 11, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3097), 1, @@ -229780,7 +229787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111149] = 15, + [111153] = 15, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3097), 1, @@ -229833,7 +229840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111217] = 16, + [111221] = 16, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3097), 1, @@ -229887,7 +229894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [111287] = 17, + [111291] = 17, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3097), 1, @@ -229942,7 +229949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [111359] = 4, + [111363] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2639), 1, @@ -229984,7 +229991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [111405] = 12, + [111409] = 12, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -230034,7 +230041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111467] = 11, + [111471] = 11, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -230083,7 +230090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111527] = 8, + [111531] = 8, ACTIONS(3), 1, anon_sym_POUND, STATE(691), 1, @@ -230129,7 +230136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111581] = 6, + [111585] = 6, ACTIONS(3), 1, anon_sym_POUND, STATE(691), 1, @@ -230173,7 +230180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111631] = 17, + [111635] = 17, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -230228,7 +230235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [111703] = 18, + [111707] = 18, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -230284,7 +230291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [111777] = 19, + [111781] = 19, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -230341,7 +230348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [111853] = 13, + [111857] = 13, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -230392,7 +230399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111917] = 10, + [111921] = 10, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -230440,7 +230447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111975] = 14, + [111979] = 14, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -230492,7 +230499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112041] = 15, + [112045] = 15, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -230545,7 +230552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112109] = 16, + [112113] = 16, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -230599,7 +230606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [112179] = 13, + [112183] = 13, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3010), 1, @@ -230650,7 +230657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112243] = 12, + [112247] = 12, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -230700,7 +230707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112305] = 12, + [112309] = 12, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3010), 1, @@ -230750,7 +230757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112367] = 11, + [112371] = 11, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -230799,7 +230806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112427] = 9, + [112431] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3010), 1, @@ -230846,7 +230853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112483] = 8, + [112487] = 8, ACTIONS(3), 1, anon_sym_POUND, STATE(691), 1, @@ -230892,7 +230899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112537] = 7, + [112541] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3010), 1, @@ -230937,7 +230944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112589] = 6, + [112593] = 6, ACTIONS(3), 1, anon_sym_POUND, STATE(691), 1, @@ -230981,7 +230988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112639] = 18, + [112643] = 18, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3010), 1, @@ -231037,7 +231044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [112713] = 17, + [112717] = 17, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -231092,7 +231099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [112785] = 19, + [112789] = 19, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3010), 1, @@ -231149,7 +231156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [112861] = 18, + [112865] = 18, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -231205,7 +231212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [112935] = 20, + [112939] = 20, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -231263,7 +231270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [113013] = 19, + [113017] = 19, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -231320,7 +231327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [113089] = 14, + [113093] = 14, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3010), 1, @@ -231372,7 +231379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113155] = 13, + [113159] = 13, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -231423,7 +231430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113219] = 11, + [113223] = 11, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3010), 1, @@ -231472,7 +231479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113279] = 10, + [113283] = 10, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -231520,7 +231527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113337] = 15, + [113341] = 15, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3010), 1, @@ -231573,7 +231580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113405] = 14, + [113409] = 14, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -231625,7 +231632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113471] = 16, + [113475] = 16, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3010), 1, @@ -231679,7 +231686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [113541] = 15, + [113545] = 15, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -231732,7 +231739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113609] = 17, + [113613] = 17, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3010), 1, @@ -231787,7 +231794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [113681] = 16, + [113685] = 16, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -231841,7 +231848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [113751] = 12, + [113755] = 12, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -231891,7 +231898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113813] = 11, + [113817] = 11, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -231940,7 +231947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113873] = 8, + [113877] = 8, ACTIONS(3), 1, anon_sym_POUND, STATE(691), 1, @@ -231986,7 +231993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113927] = 6, + [113931] = 6, ACTIONS(3), 1, anon_sym_POUND, STATE(691), 1, @@ -232030,7 +232037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113977] = 17, + [113981] = 17, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -232085,7 +232092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [114049] = 18, + [114053] = 18, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -232141,7 +232148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [114123] = 19, + [114127] = 19, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -232198,7 +232205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [114199] = 13, + [114203] = 13, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -232249,7 +232256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114263] = 10, + [114267] = 10, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -232297,7 +232304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114321] = 14, + [114325] = 14, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -232349,7 +232356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114387] = 15, + [114391] = 15, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -232402,7 +232409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114455] = 16, + [114459] = 16, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5343), 1, @@ -232456,7 +232463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [114525] = 7, + [114529] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1163), 1, @@ -232501,7 +232508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [114577] = 27, + [114581] = 28, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1663), 1, @@ -232534,14 +232541,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__types_body_repeat1, STATE(2909), 1, aux_sym__collection_body_repeat1, - STATE(4523), 1, + STATE(4525), 1, sym__val_number_decimal, - STATE(5135), 1, + STATE(4899), 1, + sym_val_string, + STATE(4901), 1, + sym__unquoted_in_record, + STATE(5212), 1, sym__collection_entry, - STATE(5680), 1, - sym_val_bool, - STATE(5774), 1, + STATE(5674), 1, sym__collection_body, + STATE(5696), 1, + sym_val_bool, ACTIONS(5257), 2, anon_sym_true, anon_sym_false, @@ -232551,10 +232562,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5275), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4914), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(5645), 2, + STATE(5662), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(5261), 3, @@ -232566,7 +232574,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [114669] = 4, + [114675] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2690), 1, @@ -232608,7 +232616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [114715] = 4, + [114721] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2691), 1, @@ -232650,7 +232658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [114761] = 6, + [114767] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5377), 1, @@ -232694,7 +232702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [114811] = 4, + [114817] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2693), 1, @@ -232736,7 +232744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [114857] = 4, + [114863] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2694), 1, @@ -232778,7 +232786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [114903] = 5, + [114909] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5381), 1, @@ -232821,7 +232829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [114951] = 4, + [114957] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2696), 1, @@ -232863,7 +232871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114997] = 8, + [115003] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5240), 1, @@ -232909,7 +232917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [115051] = 4, + [115057] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2698), 1, @@ -232951,7 +232959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [115097] = 4, + [115103] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2699), 1, @@ -232993,7 +233001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [115143] = 6, + [115149] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5384), 1, @@ -233037,7 +233045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [115193] = 6, + [115199] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5388), 1, @@ -233081,7 +233089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [115243] = 6, + [115249] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5392), 1, @@ -233125,7 +233133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [115293] = 8, + [115299] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5240), 1, @@ -233171,7 +233179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [115347] = 4, + [115353] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2704), 1, @@ -233213,7 +233221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [115393] = 4, + [115399] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2705), 1, @@ -233255,7 +233263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [115439] = 4, + [115445] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2706), 1, @@ -233297,7 +233305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [115485] = 4, + [115491] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2707), 1, @@ -233339,7 +233347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [115531] = 7, + [115537] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1147), 1, @@ -233384,7 +233392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [115583] = 7, + [115589] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5404), 1, @@ -233429,7 +233437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [115635] = 4, + [115641] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2710), 1, @@ -233471,7 +233479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [115681] = 4, + [115687] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2711), 1, @@ -233513,7 +233521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [115727] = 4, + [115733] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2712), 1, @@ -233555,7 +233563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [115773] = 7, + [115779] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5414), 1, @@ -233600,7 +233608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [115825] = 4, + [115831] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2714), 1, @@ -233642,7 +233650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACK, - [115871] = 7, + [115877] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5424), 1, @@ -233687,7 +233695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [115923] = 4, + [115929] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2716), 1, @@ -233729,7 +233737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [115969] = 9, + [115975] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3074), 1, @@ -233776,7 +233784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116025] = 4, + [116031] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2718), 1, @@ -233817,7 +233825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym__unquoted_pattern_in_list, aux_sym__unquoted_in_list_token1, - [116070] = 4, + [116076] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2719), 1, @@ -233858,7 +233866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [116115] = 6, + [116121] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5430), 1, @@ -233901,7 +233909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [116164] = 4, + [116170] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2721), 1, @@ -233942,7 +233950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [116209] = 4, + [116215] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2722), 1, @@ -233983,7 +233991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [116254] = 20, + [116260] = 20, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3015), 1, @@ -234040,7 +234048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [116331] = 5, + [116337] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1884), 1, @@ -234082,7 +234090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116378] = 4, + [116384] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2725), 1, @@ -234123,7 +234131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [116423] = 4, + [116429] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2726), 1, @@ -234164,7 +234172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [116468] = 6, + [116474] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5435), 1, @@ -234207,7 +234215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [116517] = 4, + [116523] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2728), 1, @@ -234248,7 +234256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [116562] = 6, + [116568] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1753), 1, @@ -234291,7 +234299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [116611] = 6, + [116617] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2330), 1, @@ -234334,7 +234342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [116660] = 6, + [116666] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2330), 1, @@ -234377,7 +234385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [116709] = 6, + [116715] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5439), 1, @@ -234420,7 +234428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [116758] = 6, + [116764] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1791), 1, @@ -234463,7 +234471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [116807] = 6, + [116813] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2840), 1, @@ -234506,7 +234514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [116856] = 4, + [116862] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2735), 1, @@ -234547,7 +234555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym__unquoted_pattern_in_list, aux_sym__unquoted_in_list_token1, - [116901] = 5, + [116907] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5443), 1, @@ -234589,7 +234597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOT2, aux_sym__unquoted_in_list_token1, - [116948] = 6, + [116954] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5445), 1, @@ -234632,7 +234640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [116997] = 6, + [117003] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2848), 1, @@ -234675,7 +234683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [117046] = 4, + [117052] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2739), 1, @@ -234716,7 +234724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym__unquoted_pattern_in_list, aux_sym__unquoted_in_list_token1, - [117091] = 4, + [117097] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2740), 1, @@ -234757,7 +234765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym__unquoted_pattern_in_list, aux_sym__unquoted_in_list_token1, - [117136] = 9, + [117142] = 9, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4820), 1, @@ -234772,7 +234780,7 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, STATE(2741), 1, sym_comment, - STATE(5410), 1, + STATE(5404), 1, sym__expr_parenthesized_immediate, ACTIONS(5449), 28, anon_sym_true, @@ -234803,7 +234811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [117191] = 7, + [117197] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5240), 1, @@ -234847,7 +234855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [117242] = 4, + [117248] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2743), 1, @@ -234888,7 +234896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [117287] = 4, + [117293] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2744), 1, @@ -234929,7 +234937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [117332] = 6, + [117338] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2852), 1, @@ -234972,7 +234980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [117381] = 6, + [117387] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2852), 1, @@ -235015,7 +235023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [117430] = 4, + [117436] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2747), 1, @@ -235056,7 +235064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [117475] = 6, + [117481] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5455), 1, @@ -235099,7 +235107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [117524] = 4, + [117530] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2749), 1, @@ -235140,7 +235148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [117569] = 4, + [117575] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2750), 1, @@ -235181,7 +235189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [117614] = 6, + [117620] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5459), 1, @@ -235224,7 +235232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [117663] = 6, + [117669] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5459), 1, @@ -235267,7 +235275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [117712] = 4, + [117718] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2753), 1, @@ -235308,7 +235316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [117757] = 4, + [117763] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2754), 1, @@ -235349,7 +235357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [117802] = 8, + [117808] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(919), 1, @@ -235394,7 +235402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [117855] = 4, + [117861] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2756), 1, @@ -235435,7 +235443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [117900] = 6, + [117906] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5463), 1, @@ -235478,7 +235486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [117949] = 6, + [117955] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5467), 1, @@ -235521,7 +235529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [117998] = 6, + [118004] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5471), 1, @@ -235564,7 +235572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [118047] = 6, + [118053] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5475), 1, @@ -235607,7 +235615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [118096] = 20, + [118102] = 20, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -235664,7 +235672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [118173] = 5, + [118179] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5443), 1, @@ -235706,7 +235714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOT2, aux_sym__unquoted_in_list_token1, - [118220] = 20, + [118226] = 20, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -235763,7 +235771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [118297] = 20, + [118303] = 20, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -235820,7 +235828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [118374] = 20, + [118380] = 20, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -235877,7 +235885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [118451] = 20, + [118457] = 20, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -235934,7 +235942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [118528] = 4, + [118534] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2767), 1, @@ -235975,7 +235983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [118573] = 12, + [118579] = 12, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5493), 1, @@ -236023,7 +236031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [118633] = 10, + [118639] = 10, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5507), 1, @@ -236069,7 +236077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [118689] = 9, + [118695] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5493), 1, @@ -236114,7 +236122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [118743] = 13, + [118749] = 13, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5493), 1, @@ -236163,7 +236171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [118805] = 14, + [118811] = 14, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5493), 1, @@ -236213,7 +236221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [118869] = 15, + [118875] = 15, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5493), 1, @@ -236264,7 +236272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [118935] = 5, + [118941] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5529), 1, @@ -236305,7 +236313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [118981] = 5, + [118987] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1415), 1, @@ -236346,7 +236354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [119027] = 6, + [119033] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5531), 1, @@ -236388,7 +236396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [119075] = 4, + [119081] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2777), 1, @@ -236428,7 +236436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [119119] = 5, + [119125] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5539), 1, @@ -236469,7 +236477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [119165] = 9, + [119171] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5507), 1, @@ -236514,7 +236522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [119219] = 5, + [119225] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5465), 1, @@ -236555,7 +236563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [119265] = 7, + [119271] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5543), 1, @@ -236598,7 +236606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [119315] = 5, + [119321] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5549), 1, @@ -236639,7 +236647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [119361] = 6, + [119367] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5551), 1, @@ -236681,7 +236689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [119409] = 13, + [119415] = 13, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5507), 1, @@ -236730,7 +236738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [119471] = 4, + [119477] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2785), 1, @@ -236770,7 +236778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOT2, aux_sym__unquoted_in_list_token1, - [119515] = 11, + [119521] = 11, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5507), 1, @@ -236817,7 +236825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [119573] = 14, + [119579] = 14, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5507), 1, @@ -236867,7 +236875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [119637] = 17, + [119643] = 17, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5507), 1, @@ -236920,7 +236928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [119707] = 4, + [119713] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2789), 1, @@ -236960,7 +236968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOT2, aux_sym__unquoted_in_list_token1, - [119751] = 4, + [119757] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2790), 1, @@ -237000,7 +237008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOT2, aux_sym__unquoted_in_list_token1, - [119795] = 5, + [119801] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5447), 1, @@ -237041,7 +237049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [119841] = 18, + [119847] = 18, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5493), 1, @@ -237095,7 +237103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [119913] = 5, + [119919] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5577), 1, @@ -237136,7 +237144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [119959] = 18, + [119965] = 18, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5507), 1, @@ -237190,7 +237198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [120031] = 5, + [120037] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5585), 1, @@ -237231,7 +237239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [120077] = 5, + [120083] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5587), 1, @@ -237272,7 +237280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [120123] = 5, + [120129] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5589), 1, @@ -237313,7 +237321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [120169] = 4, + [120175] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2798), 1, @@ -237353,7 +237361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOT2, aux_sym__unquoted_in_list_token1, - [120213] = 5, + [120219] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4830), 1, @@ -237394,7 +237402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [120259] = 7, + [120265] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5545), 1, @@ -237437,7 +237445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [120309] = 5, + [120315] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1405), 1, @@ -237478,7 +237486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [120355] = 4, + [120361] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2802), 1, @@ -237518,7 +237526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [120399] = 16, + [120405] = 16, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5507), 1, @@ -237570,7 +237578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [120467] = 7, + [120473] = 7, ACTIONS(3), 1, anon_sym_POUND, STATE(2804), 1, @@ -237613,7 +237621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [120517] = 7, + [120523] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5545), 1, @@ -237656,7 +237664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [120567] = 5, + [120573] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1423), 1, @@ -237697,7 +237705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [120613] = 5, + [120619] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5539), 1, @@ -237738,7 +237746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [120659] = 5, + [120665] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5604), 1, @@ -237779,7 +237787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [120705] = 5, + [120711] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5610), 1, @@ -237820,7 +237828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [120751] = 11, + [120757] = 11, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5493), 1, @@ -237867,7 +237875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [120809] = 10, + [120815] = 10, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5493), 1, @@ -237913,7 +237921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [120865] = 7, + [120871] = 7, ACTIONS(3), 1, anon_sym_POUND, STATE(2812), 1, @@ -237956,7 +237964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [120915] = 5, + [120921] = 5, ACTIONS(3), 1, anon_sym_POUND, STATE(2813), 1, @@ -237997,7 +238005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [120961] = 12, + [120967] = 12, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5507), 1, @@ -238045,7 +238053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [121021] = 16, + [121027] = 16, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5493), 1, @@ -238097,7 +238105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [121089] = 17, + [121095] = 17, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5493), 1, @@ -238150,7 +238158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [121159] = 5, + [121165] = 5, ACTIONS(3), 1, anon_sym_POUND, STATE(2817), 1, @@ -238191,7 +238199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [121205] = 25, + [121211] = 26, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1663), 1, @@ -238222,11 +238230,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__collection_body_repeat1, STATE(3110), 1, aux_sym__types_body_repeat1, - STATE(4523), 1, + STATE(4525), 1, sym__val_number_decimal, - STATE(5120), 1, + STATE(4899), 1, + sym_val_string, + STATE(4901), 1, + sym__unquoted_in_record, + STATE(5125), 1, sym__collection_entry, - STATE(5680), 1, + STATE(5696), 1, sym_val_bool, ACTIONS(5257), 2, anon_sym_true, @@ -238237,10 +238249,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5275), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4914), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(5645), 2, + STATE(5662), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(5261), 3, @@ -238252,7 +238261,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [121291] = 5, + [121299] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4296), 1, @@ -238293,7 +238302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [121337] = 15, + [121345] = 15, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5507), 1, @@ -238344,7 +238353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [121403] = 4, + [121411] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2821), 1, @@ -238383,7 +238392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [121446] = 4, + [121454] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2822), 1, @@ -238422,7 +238431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [121489] = 5, + [121497] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2850), 1, @@ -238462,7 +238471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [121534] = 4, + [121542] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2824), 1, @@ -238501,7 +238510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [121577] = 4, + [121585] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2825), 1, @@ -238540,7 +238549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [121620] = 5, + [121628] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2854), 1, @@ -238580,7 +238589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [121665] = 5, + [121673] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2854), 1, @@ -238620,7 +238629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [121710] = 4, + [121718] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2828), 1, @@ -238659,7 +238668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [121753] = 4, + [121761] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2829), 1, @@ -238698,7 +238707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [121796] = 4, + [121804] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2830), 1, @@ -238737,7 +238746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [121839] = 4, + [121847] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2831), 1, @@ -238776,7 +238785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [121882] = 4, + [121890] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2832), 1, @@ -238815,7 +238824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [121925] = 4, + [121933] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2833), 1, @@ -238854,7 +238863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [121968] = 4, + [121976] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2834), 1, @@ -238893,7 +238902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [122011] = 4, + [122019] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2835), 1, @@ -238932,7 +238941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [122054] = 5, + [122062] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1753), 1, @@ -238972,7 +238981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [122099] = 6, + [122107] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5215), 1, @@ -239013,7 +239022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [122146] = 4, + [122154] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2838), 1, @@ -239052,7 +239061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [122189] = 6, + [122197] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5545), 1, @@ -239093,7 +239102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [122236] = 4, + [122244] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2840), 1, @@ -239132,7 +239141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [122279] = 4, + [122287] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2841), 1, @@ -239171,7 +239180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [122322] = 4, + [122330] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2842), 1, @@ -239210,7 +239219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [122365] = 4, + [122373] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2843), 1, @@ -239249,7 +239258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [122408] = 4, + [122416] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2844), 1, @@ -239288,7 +239297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [122451] = 5, + [122459] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2336), 1, @@ -239328,7 +239337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [122496] = 5, + [122504] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5553), 1, @@ -239368,7 +239377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [122541] = 5, + [122549] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2818), 1, @@ -239408,7 +239417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [122586] = 5, + [122594] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5615), 1, @@ -239448,7 +239457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [122631] = 5, + [122639] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2336), 1, @@ -239488,7 +239497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [122676] = 4, + [122684] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2850), 1, @@ -239527,7 +239536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [122719] = 4, + [122727] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2851), 1, @@ -239566,7 +239575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [122762] = 4, + [122770] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2852), 1, @@ -239605,7 +239614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [122805] = 4, + [122813] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2853), 1, @@ -239644,7 +239653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [122848] = 5, + [122856] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1791), 1, @@ -239684,7 +239693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [122893] = 18, + [122901] = 18, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3102), 1, @@ -239737,7 +239746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [122964] = 5, + [122972] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2842), 1, @@ -239777,7 +239786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [123009] = 5, + [123017] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5619), 1, @@ -239817,7 +239826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [123054] = 4, + [123062] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2858), 1, @@ -239856,7 +239865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [123097] = 4, + [123105] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2859), 1, @@ -239895,7 +239904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [123140] = 18, + [123148] = 18, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3163), 1, @@ -239948,7 +239957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [123211] = 6, + [123219] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2086), 1, @@ -239989,7 +239998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [123258] = 4, + [123266] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2862), 1, @@ -240028,7 +240037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [123301] = 4, + [123309] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2863), 1, @@ -240067,7 +240076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [123344] = 4, + [123352] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2864), 1, @@ -240106,7 +240115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [123387] = 4, + [123395] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2865), 1, @@ -240145,7 +240154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [123430] = 5, + [123438] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5630), 1, @@ -240185,7 +240194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [123475] = 4, + [123483] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2867), 1, @@ -240224,7 +240233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [123518] = 4, + [123526] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2868), 1, @@ -240263,7 +240272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [123561] = 4, + [123569] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2869), 1, @@ -240302,7 +240311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [123604] = 5, + [123612] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5105), 1, @@ -240342,7 +240351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [123649] = 4, + [123657] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2871), 1, @@ -240381,7 +240390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [123692] = 4, + [123700] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2872), 1, @@ -240420,7 +240429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [123735] = 4, + [123743] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2873), 1, @@ -240459,7 +240468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [123778] = 4, + [123786] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2874), 1, @@ -240498,7 +240507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [123821] = 4, + [123829] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2875), 1, @@ -240537,7 +240546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [123864] = 4, + [123872] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2876), 1, @@ -240576,7 +240585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [123907] = 4, + [123915] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2877), 1, @@ -240615,7 +240624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [123950] = 4, + [123958] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2878), 1, @@ -240654,7 +240663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [123993] = 4, + [124001] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2879), 1, @@ -240693,7 +240702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [124036] = 7, + [124044] = 7, ACTIONS(3), 1, anon_sym_POUND, STATE(2880), 1, @@ -240735,7 +240744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [124085] = 4, + [124093] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2881), 1, @@ -240774,7 +240783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [124128] = 18, + [124136] = 18, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5493), 1, @@ -240827,7 +240836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [124199] = 18, + [124207] = 18, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5507), 1, @@ -240880,7 +240889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [124270] = 4, + [124278] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2884), 1, @@ -240919,7 +240928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [124313] = 18, + [124321] = 18, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4472), 1, @@ -240972,7 +240981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [124384] = 4, + [124392] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2886), 1, @@ -241011,7 +241020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [124427] = 4, + [124435] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2887), 1, @@ -241050,7 +241059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [124470] = 4, + [124478] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2888), 1, @@ -241089,7 +241098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [124513] = 4, + [124521] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2889), 1, @@ -241128,7 +241137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [124556] = 18, + [124564] = 18, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4502), 1, @@ -241181,7 +241190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [124627] = 6, + [124635] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(919), 1, @@ -241222,7 +241231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [124674] = 4, + [124682] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2892), 1, @@ -241261,7 +241270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [124717] = 4, + [124725] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2893), 1, @@ -241300,7 +241309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [124760] = 4, + [124768] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2894), 1, @@ -241339,7 +241348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [124803] = 4, + [124811] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(2895), 1, @@ -241378,7 +241387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [124846] = 4, + [124854] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2896), 1, @@ -241416,7 +241425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [124888] = 4, + [124896] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2897), 1, @@ -241454,7 +241463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [124930] = 4, + [124938] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2898), 1, @@ -241492,7 +241501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [124972] = 4, + [124980] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2899), 1, @@ -241530,7 +241539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [125014] = 4, + [125022] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2900), 1, @@ -241568,7 +241577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [125056] = 4, + [125064] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2901), 1, @@ -241606,7 +241615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [125098] = 4, + [125106] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2902), 1, @@ -241644,7 +241653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [125140] = 4, + [125148] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2903), 1, @@ -241682,7 +241691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [125182] = 4, + [125190] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2904), 1, @@ -241720,7 +241729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [125224] = 5, + [125232] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5655), 1, @@ -241759,7 +241768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [125268] = 4, + [125276] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2906), 1, @@ -241797,7 +241806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [125310] = 4, + [125318] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2907), 1, @@ -241835,7 +241844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [125352] = 4, + [125360] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2908), 1, @@ -241873,7 +241882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [125394] = 23, + [125402] = 24, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1663), 1, @@ -241900,11 +241909,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2917), 1, aux_sym__collection_body_repeat1, - STATE(4523), 1, + STATE(4525), 1, sym__val_number_decimal, - STATE(5124), 1, + STATE(4899), 1, + sym_val_string, + STATE(4901), 1, + sym__unquoted_in_record, + STATE(5131), 1, sym__collection_entry, - STATE(5680), 1, + STATE(5696), 1, sym_val_bool, ACTIONS(5257), 2, anon_sym_true, @@ -241915,10 +241928,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5275), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4914), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(5645), 2, + STATE(5662), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(5261), 3, @@ -241930,7 +241940,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [125474] = 4, + [125484] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2910), 1, @@ -241968,7 +241978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [125516] = 4, + [125526] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2911), 1, @@ -242006,7 +242016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [125558] = 4, + [125568] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2912), 1, @@ -242044,7 +242054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [125600] = 4, + [125610] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2913), 1, @@ -242082,7 +242092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [125642] = 4, + [125652] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2914), 1, @@ -242120,7 +242130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [125684] = 4, + [125694] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2915), 1, @@ -242158,7 +242168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [125726] = 23, + [125736] = 24, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1663), 1, @@ -242185,11 +242195,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2917), 1, aux_sym__collection_body_repeat1, - STATE(4523), 1, + STATE(4525), 1, sym__val_number_decimal, - STATE(5121), 1, + STATE(4899), 1, + sym_val_string, + STATE(4901), 1, + sym__unquoted_in_record, + STATE(5062), 1, sym__collection_entry, - STATE(5680), 1, + STATE(5696), 1, sym_val_bool, ACTIONS(5257), 2, anon_sym_true, @@ -242200,10 +242214,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5275), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4914), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(5645), 2, + STATE(5662), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(5261), 3, @@ -242215,7 +242226,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [125806] = 22, + [125818] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5668), 1, @@ -242238,11 +242249,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__unquoted_in_record_token1, ACTIONS(5704), 1, sym_raw_string_begin, - STATE(4523), 1, + STATE(4525), 1, sym__val_number_decimal, - STATE(5376), 1, + STATE(4899), 1, + sym_val_string, + STATE(4901), 1, + sym__unquoted_in_record, + STATE(5303), 1, sym__collection_entry, - STATE(5680), 1, + STATE(5696), 1, sym_val_bool, ACTIONS(5665), 2, anon_sym_true, @@ -242256,10 +242271,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2917), 2, sym_comment, aux_sym__collection_body_repeat1, - STATE(4914), 2, - sym_val_string, - sym__unquoted_in_record, - STATE(5645), 2, + STATE(5662), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(5671), 3, @@ -242271,7 +242283,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [125884] = 4, + [125898] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2918), 1, @@ -242309,7 +242321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [125926] = 4, + [125940] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2919), 1, @@ -242347,7 +242359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [125968] = 4, + [125982] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2920), 1, @@ -242385,7 +242397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [126010] = 4, + [126024] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2921), 1, @@ -242423,7 +242435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [126052] = 4, + [126066] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2922), 1, @@ -242461,7 +242473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [126094] = 4, + [126108] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2923), 1, @@ -242499,7 +242511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [126136] = 4, + [126150] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2924), 1, @@ -242537,7 +242549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [126178] = 4, + [126192] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2925), 1, @@ -242575,7 +242587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [126220] = 4, + [126234] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2926), 1, @@ -242613,7 +242625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [126262] = 4, + [126276] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2927), 1, @@ -242651,7 +242663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [126304] = 4, + [126318] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2928), 1, @@ -242689,7 +242701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [126346] = 4, + [126360] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2929), 1, @@ -242727,7 +242739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [126388] = 7, + [126402] = 7, ACTIONS(3), 1, anon_sym_POUND, STATE(2930), 1, @@ -242768,7 +242780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [126436] = 4, + [126450] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2931), 1, @@ -242806,7 +242818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [126478] = 4, + [126492] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2932), 1, @@ -242844,7 +242856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [126520] = 4, + [126534] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2933), 1, @@ -242882,7 +242894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [126562] = 4, + [126576] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2934), 1, @@ -242920,7 +242932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [126604] = 4, + [126618] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2935), 1, @@ -242958,7 +242970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [126646] = 4, + [126660] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2936), 1, @@ -242996,7 +243008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [126688] = 4, + [126702] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2937), 1, @@ -243034,7 +243046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [126730] = 4, + [126744] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2938), 1, @@ -243072,7 +243084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [126772] = 4, + [126786] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2939), 1, @@ -243110,7 +243122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [126814] = 4, + [126828] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2940), 1, @@ -243148,7 +243160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [126856] = 4, + [126870] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2941), 1, @@ -243186,7 +243198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [126898] = 4, + [126912] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2942), 1, @@ -243224,7 +243236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [126940] = 4, + [126954] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2943), 1, @@ -243262,7 +243274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [126982] = 4, + [126996] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2944), 1, @@ -243300,7 +243312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [127024] = 4, + [127038] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2945), 1, @@ -243338,7 +243350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [127066] = 4, + [127080] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2946), 1, @@ -243376,7 +243388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [127108] = 4, + [127122] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2947), 1, @@ -243414,7 +243426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [127150] = 4, + [127164] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2948), 1, @@ -243452,7 +243464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [127192] = 6, + [127206] = 6, ACTIONS(3), 1, anon_sym_POUND, STATE(2949), 1, @@ -243491,7 +243503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [127237] = 4, + [127251] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2950), 1, @@ -243528,7 +243540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [127278] = 6, + [127292] = 6, ACTIONS(3), 1, anon_sym_POUND, STATE(2951), 1, @@ -243567,7 +243579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [127323] = 6, + [127337] = 6, ACTIONS(3), 1, anon_sym_POUND, STATE(2952), 1, @@ -243605,7 +243617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [127367] = 6, + [127381] = 6, ACTIONS(3), 1, anon_sym_POUND, STATE(2953), 1, @@ -243643,7 +243655,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, - [127411] = 6, + [127425] = 6, ACTIONS(3), 1, anon_sym_POUND, STATE(2954), 1, @@ -243681,7 +243693,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, - [127455] = 25, + [127469] = 25, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -243738,7 +243750,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [127537] = 25, + [127551] = 25, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -243795,7 +243807,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [127619] = 6, + [127633] = 6, ACTIONS(3), 1, anon_sym_POUND, STATE(2957), 1, @@ -243833,7 +243845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [127663] = 4, + [127677] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2958), 1, @@ -243868,7 +243880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [127702] = 7, + [127716] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5757), 1, @@ -243906,7 +243918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [127747] = 7, + [127761] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5757), 1, @@ -243944,7 +243956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [127792] = 23, + [127806] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -243997,7 +244009,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [127868] = 23, + [127882] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -244050,7 +244062,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [127944] = 23, + [127958] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -244103,7 +244115,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [128020] = 11, + [128034] = 11, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -244144,7 +244156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [128072] = 23, + [128086] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -244197,7 +244209,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [128148] = 23, + [128162] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -244250,7 +244262,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [128224] = 23, + [128238] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -244303,7 +244315,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [128300] = 23, + [128314] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -244356,7 +244368,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [128376] = 23, + [128390] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -244409,7 +244421,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [128452] = 23, + [128466] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -244462,7 +244474,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [128528] = 23, + [128542] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -244515,7 +244527,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [128604] = 23, + [128618] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -244568,7 +244580,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [128680] = 23, + [128694] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -244621,7 +244633,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [128756] = 23, + [128770] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -244674,7 +244686,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [128832] = 23, + [128846] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -244727,7 +244739,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [128908] = 23, + [128922] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -244780,7 +244792,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [128984] = 23, + [128998] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -244833,7 +244845,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [129060] = 23, + [129074] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -244886,7 +244898,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [129136] = 23, + [129150] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -244939,7 +244951,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [129212] = 8, + [129226] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(831), 1, @@ -244977,7 +244989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [129258] = 23, + [129272] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -245030,7 +245042,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [129334] = 23, + [129348] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -245083,7 +245095,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [129410] = 7, + [129424] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(849), 1, @@ -245120,7 +245132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [129454] = 6, + [129468] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(865), 1, @@ -245156,7 +245168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [129496] = 8, + [129510] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1795), 1, @@ -245194,7 +245206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [129542] = 8, + [129556] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1757), 1, @@ -245232,7 +245244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [129588] = 23, + [129602] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -245285,7 +245297,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [129664] = 23, + [129678] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -245338,7 +245350,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [129740] = 23, + [129754] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -245391,7 +245403,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [129816] = 23, + [129830] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -245444,7 +245456,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [129892] = 23, + [129906] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -245497,7 +245509,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [129968] = 23, + [129982] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -245550,7 +245562,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [130044] = 10, + [130058] = 10, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -245589,7 +245601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [130093] = 10, + [130107] = 10, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -245628,7 +245640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [130142] = 5, + [130156] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1850), 1, @@ -245662,7 +245674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [130181] = 10, + [130195] = 10, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -245701,7 +245713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [130230] = 11, + [130244] = 11, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1753), 1, @@ -245741,7 +245753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [130281] = 21, + [130295] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -245790,7 +245802,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [130351] = 9, + [130365] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -245827,7 +245839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [130397] = 21, + [130411] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -245876,7 +245888,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [130467] = 6, + [130481] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5792), 1, @@ -245910,7 +245922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [130507] = 21, + [130521] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -245959,7 +245971,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [130577] = 21, + [130591] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -246008,7 +246020,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [130647] = 21, + [130661] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -246057,7 +246069,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [130717] = 21, + [130731] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -246106,7 +246118,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [130787] = 6, + [130801] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5796), 1, @@ -246140,7 +246152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [130827] = 21, + [130841] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -246189,7 +246201,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [130897] = 10, + [130911] = 10, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1753), 1, @@ -246227,7 +246239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [130945] = 21, + [130959] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -246276,7 +246288,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [131015] = 21, + [131029] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -246325,7 +246337,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [131085] = 10, + [131099] = 10, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1799), 1, @@ -246363,7 +246375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [131133] = 21, + [131147] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -246412,7 +246424,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [131203] = 13, + [131217] = 13, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1742), 1, @@ -246453,7 +246465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [131257] = 9, + [131271] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -246490,7 +246502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [131303] = 10, + [131317] = 10, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1791), 1, @@ -246528,7 +246540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [131351] = 21, + [131365] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -246577,7 +246589,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [131421] = 21, + [131435] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -246626,7 +246638,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [131491] = 9, + [131505] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -246663,7 +246675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [131537] = 9, + [131551] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -246700,7 +246712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [131583] = 12, + [131597] = 12, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1728), 1, @@ -246739,7 +246751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [131634] = 13, + [131648] = 13, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1753), 1, @@ -246779,7 +246791,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, - [131687] = 5, + [131701] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5822), 1, @@ -246811,7 +246823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [131724] = 5, + [131738] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5794), 1, @@ -246843,7 +246855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [131761] = 6, + [131775] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5824), 1, @@ -246876,7 +246888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [131800] = 6, + [131814] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5828), 1, @@ -246909,7 +246921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [131839] = 9, + [131853] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1799), 1, @@ -246945,7 +246957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [131884] = 12, + [131898] = 12, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1742), 1, @@ -246984,7 +246996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [131935] = 10, + [131949] = 10, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1874), 1, @@ -246999,7 +247011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_duration_unit, STATE(3028), 1, sym_comment, - STATE(5282), 1, + STATE(5449), 1, sym__expr_parenthesized_immediate, ACTIONS(5840), 2, anon_sym_DOT_DOT_EQ2, @@ -247021,7 +247033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [131982] = 12, + [131996] = 12, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1787), 1, @@ -247060,7 +247072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [132033] = 9, + [132047] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1799), 1, @@ -247096,7 +247108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [132078] = 9, + [132092] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1799), 1, @@ -247132,7 +247144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [132123] = 9, + [132137] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1799), 1, @@ -247168,7 +247180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [132168] = 11, + [132182] = 11, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1767), 1, @@ -247205,7 +247217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [132216] = 6, + [132230] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5850), 1, @@ -247237,7 +247249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [132254] = 6, + [132268] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5854), 1, @@ -247269,7 +247281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [132292] = 12, + [132306] = 12, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1753), 1, @@ -247307,7 +247319,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, - [132342] = 11, + [132356] = 11, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1728), 1, @@ -247344,7 +247356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [132390] = 11, + [132404] = 11, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1773), 1, @@ -247381,7 +247393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [132438] = 11, + [132452] = 11, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1777), 1, @@ -247418,7 +247430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [132486] = 10, + [132500] = 10, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1874), 1, @@ -247433,7 +247445,7 @@ static const uint16_t ts_small_parse_table[] = { sym_duration_unit, STATE(3040), 1, sym_comment, - STATE(5354), 1, + STATE(5328), 1, sym__expr_parenthesized_immediate, ACTIONS(5866), 2, anon_sym_DOT_DOT_EQ2, @@ -247454,7 +247466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [132532] = 4, + [132546] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3041), 1, @@ -247484,7 +247496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [132566] = 12, + [132580] = 12, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1791), 1, @@ -247522,7 +247534,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, - [132616] = 5, + [132630] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5872), 1, @@ -247553,7 +247565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [132652] = 4, + [132666] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3044), 1, @@ -247583,7 +247595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [132686] = 12, + [132700] = 12, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(3579), 1, @@ -247621,7 +247633,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, - [132736] = 6, + [132750] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5876), 1, @@ -247653,7 +247665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [132774] = 6, + [132788] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5880), 1, @@ -247685,7 +247697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [132812] = 5, + [132826] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5826), 1, @@ -247716,7 +247728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [132848] = 4, + [132862] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3049), 1, @@ -247746,7 +247758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [132882] = 7, + [132896] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5884), 1, @@ -247779,7 +247791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [132922] = 7, + [132936] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5884), 1, @@ -247812,7 +247824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [132962] = 4, + [132976] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3052), 1, @@ -247841,7 +247853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [132995] = 4, + [133009] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3053), 1, @@ -247870,7 +247882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [133028] = 11, + [133042] = 11, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(3579), 1, @@ -247906,7 +247918,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, - [133075] = 7, + [133089] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5892), 1, @@ -247938,7 +247950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_record_token1, - [133114] = 8, + [133128] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(831), 1, @@ -247971,7 +247983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [133155] = 6, + [133169] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5900), 1, @@ -248002,7 +248014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [133192] = 7, + [133206] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5894), 1, @@ -248034,7 +248046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_record_token1, - [133231] = 8, + [133245] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1795), 1, @@ -248067,7 +248079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [133272] = 11, + [133286] = 11, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(3579), 1, @@ -248103,7 +248115,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, - [133319] = 6, + [133333] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5906), 1, @@ -248134,7 +248146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [133356] = 7, + [133370] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5894), 1, @@ -248166,7 +248178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_record_token1, - [133395] = 5, + [133409] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5882), 1, @@ -248196,7 +248208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [133430] = 4, + [133444] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3064), 1, @@ -248225,7 +248237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [133463] = 11, + [133477] = 11, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(3579), 1, @@ -248261,7 +248273,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, - [133510] = 7, + [133524] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5912), 1, @@ -248293,7 +248305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [133549] = 5, + [133563] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4296), 1, @@ -248323,7 +248335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_record_token1, - [133584] = 13, + [133598] = 13, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1753), 1, @@ -248361,7 +248373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [133635] = 11, + [133649] = 11, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1157), 1, @@ -248378,7 +248390,7 @@ static const uint16_t ts_small_parse_table[] = { sym__unquoted_pattern, STATE(3069), 1, sym_comment, - STATE(5412), 1, + STATE(5382), 1, sym__expr_parenthesized_immediate, ACTIONS(5931), 2, anon_sym_DOT_DOT_EQ2, @@ -248397,7 +248409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [133682] = 6, + [133696] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5939), 1, @@ -248428,7 +248440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [133719] = 5, + [133733] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5943), 1, @@ -248458,7 +248470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [133754] = 6, + [133768] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5945), 1, @@ -248489,7 +248501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [133791] = 5, + [133805] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5878), 1, @@ -248519,7 +248531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [133826] = 8, + [133840] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1757), 1, @@ -248552,7 +248564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [133867] = 7, + [133881] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5912), 1, @@ -248584,7 +248596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [133906] = 11, + [133920] = 11, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(3579), 1, @@ -248620,7 +248632,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, - [133953] = 7, + [133967] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5894), 1, @@ -248652,7 +248664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_record_token1, - [133992] = 5, + [134006] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5951), 1, @@ -248682,7 +248694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [134027] = 12, + [134041] = 12, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1791), 1, @@ -248718,7 +248730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [134075] = 7, + [134089] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5959), 1, @@ -248749,7 +248761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [134113] = 5, + [134127] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5963), 1, @@ -248778,7 +248790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [134147] = 5, + [134161] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5902), 1, @@ -248807,7 +248819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [134181] = 4, + [134195] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3083), 1, @@ -248835,7 +248847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [134213] = 8, + [134227] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5965), 1, @@ -248867,7 +248879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [134253] = 6, + [134267] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5967), 1, @@ -248897,7 +248909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [134289] = 6, + [134303] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(865), 1, @@ -248927,7 +248939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [134325] = 5, + [134339] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5908), 1, @@ -248956,7 +248968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [134359] = 4, + [134373] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3088), 1, @@ -248984,7 +248996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [134391] = 4, + [134405] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3089), 1, @@ -249012,7 +249024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [134423] = 4, + [134437] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3090), 1, @@ -249040,7 +249052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [134455] = 4, + [134469] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3091), 1, @@ -249068,7 +249080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [134487] = 7, + [134501] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5974), 1, @@ -249099,7 +249111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [134525] = 11, + [134539] = 11, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1874), 1, @@ -249114,7 +249126,7 @@ static const uint16_t ts_small_parse_table[] = { sym__unquoted_pattern, STATE(3093), 1, sym_comment, - STATE(5304), 1, + STATE(5399), 1, sym__expr_parenthesized_immediate, ACTIONS(1157), 2, ts_builtin_sym_end, @@ -249134,7 +249146,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, - [134571] = 8, + [134585] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5965), 1, @@ -249166,7 +249178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [134611] = 7, + [134625] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5974), 1, @@ -249197,7 +249209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [134649] = 4, + [134663] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3096), 1, @@ -249225,7 +249237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [134681] = 6, + [134695] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5988), 1, @@ -249255,7 +249267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [134717] = 7, + [134731] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5884), 1, @@ -249286,7 +249298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [134755] = 8, + [134769] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5965), 1, @@ -249318,7 +249330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [134795] = 7, + [134809] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5884), 1, @@ -249349,7 +249361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [134833] = 7, + [134847] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5884), 1, @@ -249380,7 +249392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [134871] = 4, + [134885] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3102), 1, @@ -249408,7 +249420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [134903] = 6, + [134917] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5992), 1, @@ -249438,7 +249450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [134939] = 7, + [134953] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5884), 1, @@ -249469,7 +249481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [134977] = 5, + [134991] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5996), 1, @@ -249498,7 +249510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [135011] = 7, + [135025] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(849), 1, @@ -249529,7 +249541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [135049] = 4, + [135063] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3107), 1, @@ -249557,7 +249569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [135081] = 4, + [135095] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3108), 1, @@ -249585,7 +249597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_record_token1, - [135113] = 7, + [135127] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2330), 1, @@ -249616,7 +249628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [135151] = 5, + [135165] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6002), 1, @@ -249645,7 +249657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [135185] = 6, + [135199] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6005), 1, @@ -249675,7 +249687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [135221] = 7, + [135235] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1753), 1, @@ -249706,7 +249718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [135259] = 4, + [135273] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3113), 1, @@ -249734,7 +249746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [135291] = 6, + [135305] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5894), 1, @@ -249764,7 +249776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_record_token1, - [135327] = 4, + [135341] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3115), 1, @@ -249792,7 +249804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [135359] = 12, + [135373] = 12, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1753), 1, @@ -249828,7 +249840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [135407] = 4, + [135421] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3117), 1, @@ -249856,7 +249868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [135439] = 7, + [135453] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5959), 1, @@ -249887,7 +249899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [135477] = 12, + [135491] = 12, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3539), 1, @@ -249923,7 +249935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [135525] = 4, + [135539] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3120), 1, @@ -249951,7 +249963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [135557] = 4, + [135571] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3121), 1, @@ -249978,7 +249990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [135588] = 4, + [135602] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3122), 1, @@ -250005,7 +250017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [135619] = 7, + [135633] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2330), 1, @@ -250035,7 +250047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [135656] = 5, + [135670] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6019), 1, @@ -250063,7 +250075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [135689] = 11, + [135703] = 11, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3674), 1, @@ -250078,7 +250090,7 @@ static const uint16_t ts_small_parse_table[] = { sym__unquoted_pattern_in_record, STATE(3125), 1, sym_comment, - STATE(5310), 1, + STATE(5349), 1, sym__expr_parenthesized_immediate, ACTIONS(1127), 2, sym_identifier, @@ -250097,7 +250109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [135734] = 5, + [135748] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5994), 1, @@ -250125,7 +250137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [135767] = 4, + [135781] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3127), 1, @@ -250152,7 +250164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [135798] = 5, + [135812] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6031), 1, @@ -250180,7 +250192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [135831] = 6, + [135845] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1868), 1, @@ -250209,7 +250221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [135866] = 7, + [135880] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5965), 1, @@ -250239,7 +250251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [135903] = 6, + [135917] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6037), 1, @@ -250268,7 +250280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [135938] = 6, + [135952] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1898), 1, @@ -250297,7 +250309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [135973] = 7, + [135987] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1753), 1, @@ -250327,7 +250339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [136010] = 6, + [136024] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6049), 1, @@ -250356,7 +250368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [136045] = 4, + [136059] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3135), 1, @@ -250383,7 +250395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [136076] = 8, + [136090] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6053), 1, @@ -250414,7 +250426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [136115] = 7, + [136129] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6055), 1, @@ -250444,7 +250456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [136152] = 11, + [136166] = 11, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3539), 1, @@ -250478,7 +250490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [136197] = 4, + [136211] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3139), 1, @@ -250505,7 +250517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [136228] = 4, + [136242] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3140), 1, @@ -250532,7 +250544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [136259] = 4, + [136273] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3141), 1, @@ -250559,7 +250571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [136290] = 4, + [136304] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3142), 1, @@ -250586,7 +250598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [136321] = 8, + [136335] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6053), 1, @@ -250617,7 +250629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [136360] = 5, + [136374] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2434), 1, @@ -250645,7 +250657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [136393] = 11, + [136407] = 11, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3539), 1, @@ -250679,7 +250691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [136438] = 11, + [136452] = 11, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3539), 1, @@ -250713,7 +250725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [136483] = 11, + [136497] = 11, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3539), 1, @@ -250747,7 +250759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [136528] = 8, + [136542] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6053), 1, @@ -250778,7 +250790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [136567] = 7, + [136581] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1761), 1, @@ -250808,7 +250820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_like2, anon_sym_not_DASHlike2, anon_sym_DOT2, - [136604] = 4, + [136618] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3150), 1, @@ -250835,7 +250847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [136635] = 9, + [136649] = 9, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1157), 1, @@ -250867,7 +250879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [136676] = 4, + [136690] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3152), 1, @@ -250894,7 +250906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [136707] = 7, + [136721] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1761), 1, @@ -250924,7 +250936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_like2, anon_sym_not_DASHlike2, anon_sym_DOT2, - [136744] = 4, + [136758] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3154), 1, @@ -250951,7 +250963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [136775] = 6, + [136789] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6071), 1, @@ -250980,7 +250992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [136810] = 5, + [136824] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5969), 1, @@ -251008,7 +251020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [136843] = 4, + [136857] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3157), 1, @@ -251035,7 +251047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [136874] = 7, + [136888] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6055), 1, @@ -251065,7 +251077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [136911] = 4, + [136925] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3159), 1, @@ -251092,7 +251104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [136942] = 4, + [136956] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3160), 1, @@ -251118,7 +251130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [136972] = 4, + [136986] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3161), 1, @@ -251144,7 +251156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [137002] = 8, + [137016] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1753), 1, @@ -251174,7 +251186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [137040] = 5, + [137054] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6080), 1, @@ -251201,7 +251213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [137072] = 4, + [137086] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3164), 1, @@ -251227,7 +251239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [137102] = 5, + [137116] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1958), 1, @@ -251254,7 +251266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [137134] = 6, + [137148] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1898), 1, @@ -251282,7 +251294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [137168] = 14, + [137182] = 14, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1563), 1, @@ -251305,7 +251317,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_parameter_repeat1, STATE(4055), 1, aux_sym_parameter_repeat2, - STATE(4874), 1, + STATE(4834), 1, aux_sym__repeat_newline, STATE(3988), 2, sym_param_type, @@ -251318,7 +251330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [137218] = 6, + [137232] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6102), 1, @@ -251346,7 +251358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [137252] = 8, + [137266] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2326), 1, @@ -251376,7 +251388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [137290] = 4, + [137304] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3170), 1, @@ -251402,7 +251414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [137320] = 4, + [137334] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3171), 1, @@ -251428,7 +251440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [137350] = 4, + [137364] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3172), 1, @@ -251454,7 +251466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [137380] = 5, + [137394] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6110), 1, @@ -251481,7 +251493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [137412] = 7, + [137426] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2090), 1, @@ -251510,7 +251522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - [137448] = 6, + [137462] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6116), 1, @@ -251538,7 +251550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [137482] = 5, + [137496] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6039), 1, @@ -251565,7 +251577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [137514] = 8, + [137528] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6120), 1, @@ -251595,7 +251607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [137552] = 5, + [137566] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6110), 1, @@ -251622,7 +251634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [137584] = 7, + [137598] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6053), 1, @@ -251651,7 +251663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [137620] = 5, + [137634] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6080), 1, @@ -251678,7 +251690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [137652] = 7, + [137666] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6122), 1, @@ -251707,7 +251719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [137688] = 5, + [137702] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6080), 1, @@ -251734,7 +251746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [137720] = 8, + [137734] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6120), 1, @@ -251764,7 +251776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [137758] = 4, + [137772] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3184), 1, @@ -251790,7 +251802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [137788] = 4, + [137802] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3185), 1, @@ -251816,7 +251828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [137818] = 15, + [137832] = 15, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(996), 1, @@ -251853,7 +251865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_variable, sym_val_string, sym_val_interpolated, - [137870] = 15, + [137884] = 15, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1061), 1, @@ -251890,7 +251902,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_variable, sym_val_string, sym_val_interpolated, - [137922] = 7, + [137936] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2090), 1, @@ -251919,7 +251931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - [137958] = 5, + [137972] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6132), 1, @@ -251946,7 +251958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [137990] = 8, + [138004] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6120), 1, @@ -251976,7 +251988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [138028] = 7, + [138042] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6122), 1, @@ -252005,7 +252017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [138064] = 7, + [138078] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6122), 1, @@ -252034,7 +252046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [138100] = 5, + [138114] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6080), 1, @@ -252061,7 +252073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [138132] = 7, + [138146] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6122), 1, @@ -252090,7 +252102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [138168] = 4, + [138182] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3195), 1, @@ -252116,7 +252128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [138198] = 5, + [138212] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1898), 1, @@ -252143,7 +252155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [138230] = 6, + [138244] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1868), 1, @@ -252171,7 +252183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [138264] = 7, + [138278] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6122), 1, @@ -252200,7 +252212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [138300] = 5, + [138314] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6138), 1, @@ -252227,7 +252239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [138332] = 9, + [138346] = 9, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4693), 1, @@ -252258,7 +252270,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, - [138372] = 15, + [138386] = 15, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(203), 1, @@ -252295,7 +252307,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_variable, sym_val_string, sym_val_interpolated, - [138424] = 5, + [138438] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6138), 1, @@ -252322,7 +252334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [138456] = 7, + [138470] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6122), 1, @@ -252351,7 +252363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [138492] = 15, + [138506] = 15, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(91), 1, @@ -252388,7 +252400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_variable, sym_val_string, sym_val_interpolated, - [138544] = 5, + [138558] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6150), 1, @@ -252415,7 +252427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [138576] = 5, + [138590] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6154), 1, @@ -252442,7 +252454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [138608] = 5, + [138622] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6158), 1, @@ -252469,7 +252481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [138640] = 5, + [138654] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6162), 1, @@ -252496,7 +252508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [138672] = 4, + [138686] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3209), 1, @@ -252522,7 +252534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [138702] = 4, + [138716] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3210), 1, @@ -252548,7 +252560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [138732] = 4, + [138746] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3211), 1, @@ -252574,7 +252586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [138762] = 6, + [138776] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6166), 1, @@ -252602,7 +252614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [138796] = 6, + [138810] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6169), 1, @@ -252629,14 +252641,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, sym__unquoted_pattern, - [138829] = 5, + [138843] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1874), 1, anon_sym_LPAREN2, STATE(3214), 1, sym_comment, - STATE(5283), 1, + STATE(5450), 1, sym__expr_parenthesized_immediate, ACTIONS(6173), 16, sym__newline, @@ -252655,7 +252667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [138860] = 4, + [138874] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1958), 1, @@ -252680,7 +252692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [138889] = 4, + [138903] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2116), 1, @@ -252705,7 +252717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [138918] = 5, + [138932] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6118), 1, @@ -252731,7 +252743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [138949] = 4, + [138963] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3218), 1, @@ -252756,14 +252768,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [138978] = 5, + [138992] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1874), 1, anon_sym_LPAREN2, STATE(3219), 1, sym_comment, - STATE(5283), 1, + STATE(5450), 1, sym__expr_parenthesized_immediate, ACTIONS(6173), 16, sym__newline, @@ -252782,7 +252794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [139009] = 5, + [139023] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6175), 1, @@ -252808,7 +252820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [139040] = 4, + [139054] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6179), 1, @@ -252833,7 +252845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [139069] = 5, + [139083] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6181), 1, @@ -252859,7 +252871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [139100] = 4, + [139114] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3223), 1, @@ -252884,7 +252896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [139129] = 4, + [139143] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3224), 1, @@ -252909,7 +252921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [139158] = 7, + [139172] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6120), 1, @@ -252937,7 +252949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [139193] = 5, + [139207] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6183), 1, @@ -252963,7 +252975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [139224] = 5, + [139238] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1753), 1, @@ -252989,7 +253001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [139255] = 4, + [139269] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6189), 1, @@ -253014,7 +253026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [139284] = 4, + [139298] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3229), 1, @@ -253039,7 +253051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [139313] = 8, + [139327] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2118), 1, @@ -253068,7 +253080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [139350] = 4, + [139364] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3231), 1, @@ -253093,7 +253105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [139379] = 8, + [139393] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1753), 1, @@ -253122,7 +253134,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, - [139416] = 4, + [139430] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3233), 1, @@ -253147,7 +253159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [139445] = 6, + [139459] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6195), 1, @@ -253174,7 +253186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [139478] = 5, + [139492] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6183), 1, @@ -253200,7 +253212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [139509] = 4, + [139523] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3236), 1, @@ -253225,7 +253237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [139538] = 4, + [139552] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3237), 1, @@ -253250,7 +253262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [139567] = 4, + [139581] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3238), 1, @@ -253275,7 +253287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [139596] = 4, + [139610] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3239), 1, @@ -253300,7 +253312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [139625] = 8, + [139639] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4005), 1, @@ -253329,7 +253341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [139662] = 8, + [139676] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4009), 1, @@ -253358,7 +253370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [139699] = 8, + [139713] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5965), 1, @@ -253387,7 +253399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [139736] = 5, + [139750] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2330), 1, @@ -253413,7 +253425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [139767] = 5, + [139781] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2848), 1, @@ -253439,7 +253451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [139798] = 4, + [139812] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6204), 1, @@ -253464,7 +253476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [139827] = 8, + [139841] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2130), 1, @@ -253493,7 +253505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [139864] = 5, + [139878] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2330), 1, @@ -253519,7 +253531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [139895] = 5, + [139909] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6175), 1, @@ -253545,7 +253557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [139926] = 5, + [139940] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2816), 1, @@ -253571,7 +253583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [139957] = 4, + [139971] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3250), 1, @@ -253596,7 +253608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [139986] = 5, + [140000] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6183), 1, @@ -253622,7 +253634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [140017] = 4, + [140031] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3252), 1, @@ -253647,7 +253659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [140046] = 4, + [140060] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6208), 1, @@ -253672,7 +253684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [140075] = 4, + [140089] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3254), 1, @@ -253697,7 +253709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [140104] = 5, + [140118] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1791), 1, @@ -253723,7 +253735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [140135] = 6, + [140149] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6210), 1, @@ -253750,7 +253762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, sym__unquoted_pattern, - [140168] = 5, + [140182] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1898), 1, @@ -253776,7 +253788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [140199] = 5, + [140213] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2840), 1, @@ -253802,7 +253814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [140230] = 8, + [140244] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2219), 1, @@ -253831,14 +253843,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [140267] = 5, + [140281] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1874), 1, anon_sym_LPAREN2, STATE(3260), 1, sym_comment, - STATE(5283), 1, + STATE(5450), 1, sym__expr_parenthesized_immediate, ACTIONS(6173), 16, sym__newline, @@ -253857,7 +253869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [140298] = 5, + [140312] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1958), 1, @@ -253883,7 +253895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [140329] = 4, + [140343] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6218), 1, @@ -253908,7 +253920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [140358] = 8, + [140372] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2086), 1, @@ -253937,7 +253949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [140395] = 8, + [140409] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2330), 1, @@ -253966,7 +253978,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, - [140432] = 8, + [140446] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2142), 1, @@ -253995,7 +254007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [140469] = 8, + [140483] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4021), 1, @@ -254024,7 +254036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [140506] = 8, + [140520] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5965), 1, @@ -254053,7 +254065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [140543] = 5, + [140557] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6183), 1, @@ -254079,7 +254091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [140574] = 5, + [140588] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2852), 1, @@ -254105,7 +254117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [140605] = 8, + [140619] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2108), 1, @@ -254134,7 +254146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [140642] = 4, + [140656] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6230), 1, @@ -254159,7 +254171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [140671] = 5, + [140685] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2852), 1, @@ -254185,7 +254197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [140702] = 4, + [140716] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1868), 1, @@ -254210,7 +254222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [140731] = 4, + [140745] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3274), 1, @@ -254235,7 +254247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [140760] = 4, + [140774] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6234), 1, @@ -254260,7 +254272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [140789] = 4, + [140803] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6238), 1, @@ -254285,7 +254297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [140818] = 5, + [140832] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6240), 1, @@ -254311,7 +254323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [140849] = 4, + [140863] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2604), 1, @@ -254336,7 +254348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [140878] = 4, + [140892] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3279), 1, @@ -254361,7 +254373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [140907] = 5, + [140921] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6244), 1, @@ -254387,7 +254399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [140938] = 5, + [140952] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6248), 1, @@ -254413,7 +254425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [140969] = 5, + [140983] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6252), 1, @@ -254439,7 +254451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [141000] = 4, + [141014] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3283), 1, @@ -254464,7 +254476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [141029] = 4, + [141043] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3284), 1, @@ -254489,7 +254501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [141058] = 4, + [141072] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3285), 1, @@ -254513,7 +254525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [141086] = 8, + [141100] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6053), 1, @@ -254541,7 +254553,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, - [141122] = 4, + [141136] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3287), 1, @@ -254565,7 +254577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [141150] = 12, + [141164] = 12, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1563), 1, @@ -254584,7 +254596,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_parameter_repeat1, STATE(4085), 1, aux_sym_parameter_repeat2, - STATE(4874), 1, + STATE(4834), 1, aux_sym__repeat_newline, STATE(3988), 2, sym_param_type, @@ -254597,7 +254609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [141194] = 4, + [141208] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3289), 1, @@ -254621,7 +254633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [141222] = 12, + [141236] = 12, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1563), 1, @@ -254640,7 +254652,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_parameter_repeat1, STATE(4066), 1, aux_sym_parameter_repeat2, - STATE(4874), 1, + STATE(4834), 1, aux_sym__repeat_newline, STATE(3988), 2, sym_param_type, @@ -254653,7 +254665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [141266] = 8, + [141280] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2328), 1, @@ -254681,7 +254693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [141302] = 5, + [141316] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2848), 1, @@ -254706,7 +254718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [141332] = 12, + [141346] = 12, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1563), 1, @@ -254725,7 +254737,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_parameter_repeat1, STATE(4058), 1, aux_sym_parameter_repeat2, - STATE(4874), 1, + STATE(4834), 1, aux_sym__repeat_newline, STATE(3988), 2, sym_param_type, @@ -254738,7 +254750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [141376] = 5, + [141390] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2330), 1, @@ -254763,7 +254775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [141406] = 6, + [141420] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6272), 1, @@ -254789,7 +254801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, sym__unquoted_pattern, - [141438] = 8, + [141452] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6053), 1, @@ -254817,7 +254829,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, - [141474] = 8, + [141488] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6053), 1, @@ -254845,7 +254857,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, - [141510] = 8, + [141524] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6053), 1, @@ -254873,7 +254885,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, - [141546] = 12, + [141560] = 12, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1563), 1, @@ -254892,7 +254904,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_parameter_repeat1, STATE(4052), 1, aux_sym_parameter_repeat2, - STATE(4874), 1, + STATE(4834), 1, aux_sym__repeat_newline, STATE(3988), 2, sym_param_type, @@ -254905,7 +254917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [141590] = 8, + [141604] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1753), 1, @@ -254933,7 +254945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [141626] = 5, + [141640] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6284), 1, @@ -254958,7 +254970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, sym__unquoted_pattern, - [141656] = 7, + [141670] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4952), 1, @@ -254985,7 +254997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [141690] = 5, + [141704] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6212), 1, @@ -255010,14 +255022,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, sym__unquoted_pattern, - [141720] = 5, + [141734] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1874), 1, anon_sym_LPAREN2, STATE(3304), 1, sym_comment, - STATE(5355), 1, + STATE(5329), 1, sym__expr_parenthesized_immediate, ACTIONS(6173), 15, ts_builtin_sym_end, @@ -255035,7 +255047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [141750] = 8, + [141764] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6053), 1, @@ -255063,7 +255075,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, - [141786] = 4, + [141800] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1868), 1, @@ -255087,7 +255099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [141814] = 9, + [141828] = 9, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6290), 1, @@ -255102,7 +255114,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3592), 1, aux_sym_attribute_repeat1, - STATE(4727), 1, + STATE(4780), 1, aux_sym_pipe_element_parenthesized_repeat1, ACTIONS(6294), 11, anon_sym_SEMI, @@ -255116,7 +255128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RBRACE, - [141852] = 5, + [141866] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2330), 1, @@ -255141,7 +255153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [141882] = 4, + [141896] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3309), 1, @@ -255165,7 +255177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [141910] = 4, + [141924] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1884), 1, @@ -255189,7 +255201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [141938] = 4, + [141952] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3311), 1, @@ -255213,7 +255225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [141966] = 4, + [141980] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1958), 1, @@ -255237,7 +255249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [141994] = 6, + [142008] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6300), 1, @@ -255263,7 +255275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, sym__unquoted_pattern, - [142026] = 9, + [142040] = 9, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6290), 1, @@ -255278,7 +255290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(3592), 1, aux_sym_attribute_repeat1, - STATE(4784), 1, + STATE(4958), 1, aux_sym_pipe_element_parenthesized_repeat1, ACTIONS(6294), 11, anon_sym_SEMI, @@ -255292,7 +255304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RBRACE, - [142064] = 4, + [142078] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3315), 1, @@ -255316,14 +255328,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [142092] = 5, + [142106] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1874), 1, anon_sym_LPAREN2, STATE(3316), 1, sym_comment, - STATE(5355), 1, + STATE(5329), 1, sym__expr_parenthesized_immediate, ACTIONS(6173), 15, ts_builtin_sym_end, @@ -255341,7 +255353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [142122] = 4, + [142136] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3317), 1, @@ -255365,7 +255377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_like2, anon_sym_not_DASHlike2, anon_sym_DOT2, - [142150] = 5, + [142164] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1791), 1, @@ -255390,7 +255402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [142180] = 4, + [142194] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2116), 1, @@ -255414,14 +255426,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [142208] = 5, + [142222] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1874), 1, anon_sym_LPAREN2, STATE(3320), 1, sym_comment, - STATE(5355), 1, + STATE(5329), 1, sym__expr_parenthesized_immediate, ACTIONS(6173), 15, ts_builtin_sym_end, @@ -255439,7 +255451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [142238] = 4, + [142252] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3321), 1, @@ -255463,7 +255475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [142266] = 7, + [142280] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6288), 1, @@ -255490,7 +255502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [142300] = 6, + [142314] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6318), 1, @@ -255516,7 +255528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [142332] = 4, + [142346] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3324), 1, @@ -255540,7 +255552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [142360] = 5, + [142374] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2852), 1, @@ -255565,7 +255577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [142390] = 4, + [142404] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3326), 1, @@ -255589,7 +255601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [142418] = 6, + [142432] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(919), 1, @@ -255615,7 +255627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [142450] = 6, + [142464] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2412), 1, @@ -255641,7 +255653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [142482] = 6, + [142496] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2491), 1, @@ -255667,7 +255679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [142514] = 6, + [142528] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2499), 1, @@ -255693,7 +255705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [142546] = 6, + [142560] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2507), 1, @@ -255719,7 +255731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [142578] = 8, + [142592] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6053), 1, @@ -255747,7 +255759,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, - [142614] = 4, + [142628] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3333), 1, @@ -255771,7 +255783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [142642] = 8, + [142656] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6053), 1, @@ -255799,7 +255811,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, - [142678] = 5, + [142692] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2816), 1, @@ -255824,7 +255836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [142708] = 5, + [142722] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2840), 1, @@ -255849,7 +255861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [142738] = 4, + [142752] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3337), 1, @@ -255873,7 +255885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [142766] = 12, + [142780] = 12, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1563), 1, @@ -255892,7 +255904,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4078), 1, aux_sym_parameter_repeat2, - STATE(4874), 1, + STATE(4834), 1, aux_sym__repeat_newline, STATE(3988), 2, sym_param_type, @@ -255905,7 +255917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [142810] = 8, + [142824] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6053), 1, @@ -255933,7 +255945,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, - [142846] = 4, + [142860] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2604), 1, @@ -255957,7 +255969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [142874] = 4, + [142888] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3341), 1, @@ -255981,7 +255993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [142902] = 4, + [142916] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3342), 1, @@ -256005,7 +256017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_like2, anon_sym_not_DASHlike2, anon_sym_DOT2, - [142930] = 8, + [142944] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6053), 1, @@ -256033,7 +256045,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, - [142966] = 8, + [142980] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6053), 1, @@ -256061,7 +256073,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, - [143002] = 4, + [143016] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3345), 1, @@ -256085,7 +256097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [143030] = 5, + [143044] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2852), 1, @@ -256110,7 +256122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [143060] = 5, + [143074] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1753), 1, @@ -256135,7 +256147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [143090] = 4, + [143104] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3348), 1, @@ -256159,7 +256171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [143118] = 8, + [143132] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6053), 1, @@ -256187,7 +256199,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, - [143154] = 4, + [143168] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3350), 1, @@ -256210,7 +256222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [143181] = 5, + [143195] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6352), 1, @@ -256234,7 +256246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [143210] = 7, + [143224] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -256260,7 +256272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [143243] = 6, + [143257] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6356), 1, @@ -256285,7 +256297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [143274] = 6, + [143288] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2330), 1, @@ -256310,7 +256322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [143305] = 5, + [143319] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6352), 1, @@ -256334,7 +256346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [143334] = 6, + [143348] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2326), 1, @@ -256359,7 +256371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [143365] = 3, + [143379] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3357), 1, @@ -256381,7 +256393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [143390] = 3, + [143404] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3358), 1, @@ -256403,7 +256415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [143415] = 7, + [143429] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6371), 1, @@ -256429,7 +256441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [143448] = 6, + [143462] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6371), 1, @@ -256454,7 +256466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [143479] = 5, + [143493] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6379), 1, @@ -256478,7 +256490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, sym__unquoted_pattern, - [143508] = 4, + [143522] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3362), 1, @@ -256501,7 +256513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [143535] = 4, + [143549] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3363), 1, @@ -256524,7 +256536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, sym__unquoted_pattern, - [143562] = 6, + [143576] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6352), 1, @@ -256549,7 +256561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [143593] = 4, + [143607] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3365), 1, @@ -256572,7 +256584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [143620] = 3, + [143634] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3366), 1, @@ -256594,7 +256606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [143645] = 7, + [143659] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6352), 1, @@ -256620,7 +256632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [143678] = 3, + [143692] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3368), 1, @@ -256642,7 +256654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [143703] = 4, + [143717] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3369), 1, @@ -256665,7 +256677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [143730] = 4, + [143744] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3370), 1, @@ -256688,7 +256700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [143757] = 6, + [143771] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1791), 1, @@ -256713,7 +256725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [143788] = 4, + [143802] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3372), 1, @@ -256736,7 +256748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [143815] = 6, + [143829] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6356), 1, @@ -256761,7 +256773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [143846] = 4, + [143860] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(691), 1, @@ -256784,7 +256796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [143873] = 4, + [143887] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6404), 1, @@ -256807,7 +256819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [143900] = 4, + [143914] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6406), 1, @@ -256830,7 +256842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [143927] = 5, + [143941] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6371), 1, @@ -256854,7 +256866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [143956] = 4, + [143970] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3378), 1, @@ -256877,7 +256889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [143983] = 6, + [143997] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6410), 1, @@ -256902,7 +256914,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, - [144014] = 6, + [144028] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1896), 1, @@ -256927,7 +256939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [144045] = 6, + [144059] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2836), 1, @@ -256952,7 +256964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [144076] = 5, + [144090] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6404), 1, @@ -256976,7 +256988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_or2, - [144105] = 5, + [144119] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6406), 1, @@ -257000,7 +257012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_or2, - [144134] = 3, + [144148] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3384), 1, @@ -257022,7 +257034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [144159] = 6, + [144173] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6422), 1, @@ -257047,7 +257059,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, - [144190] = 6, + [144204] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6426), 1, @@ -257072,7 +257084,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, - [144221] = 6, + [144235] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6430), 1, @@ -257097,7 +257109,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, - [144252] = 4, + [144266] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3388), 1, @@ -257120,7 +257132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, sym__unquoted_pattern, - [144279] = 6, + [144293] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2844), 1, @@ -257145,7 +257157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [144310] = 8, + [144324] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -257172,7 +257184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [144345] = 8, + [144359] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -257199,7 +257211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [144380] = 4, + [144394] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(691), 1, @@ -257222,7 +257234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [144407] = 4, + [144421] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(691), 1, @@ -257245,7 +257257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [144434] = 6, + [144448] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6356), 1, @@ -257270,7 +257282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [144465] = 6, + [144479] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6451), 1, @@ -257295,7 +257307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LPAREN2, - [144496] = 4, + [144510] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3396), 1, @@ -257318,7 +257330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [144523] = 6, + [144537] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6440), 1, @@ -257343,7 +257355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [144554] = 6, + [144568] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6404), 1, @@ -257368,7 +257380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [144585] = 6, + [144599] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6356), 1, @@ -257393,7 +257405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [144616] = 7, + [144630] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -257419,7 +257431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [144649] = 6, + [144663] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6371), 1, @@ -257444,7 +257456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [144680] = 6, + [144694] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6406), 1, @@ -257469,7 +257481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [144711] = 3, + [144725] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3403), 1, @@ -257491,7 +257503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [144736] = 3, + [144750] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3404), 1, @@ -257513,7 +257525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [144761] = 5, + [144775] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6371), 1, @@ -257537,7 +257549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [144790] = 6, + [144804] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1409), 1, @@ -257562,7 +257574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [144821] = 6, + [144835] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1417), 1, @@ -257587,7 +257599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [144852] = 5, + [144866] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6352), 1, @@ -257611,7 +257623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [144881] = 7, + [144895] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -257637,7 +257649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [144914] = 4, + [144928] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6404), 1, @@ -257660,7 +257672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [144941] = 7, + [144955] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -257686,7 +257698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [144974] = 4, + [144988] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6406), 1, @@ -257709,7 +257721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [145001] = 6, + [145015] = 6, ACTIONS(3), 1, anon_sym_POUND, STATE(3413), 1, @@ -257734,7 +257746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [145032] = 6, + [145046] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6440), 1, @@ -257759,7 +257771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [145063] = 6, + [145077] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6371), 1, @@ -257784,7 +257796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [145094] = 6, + [145108] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6352), 1, @@ -257809,7 +257821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [145125] = 4, + [145139] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(691), 1, @@ -257832,7 +257844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [145152] = 4, + [145166] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(691), 1, @@ -257855,7 +257867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [145179] = 5, + [145193] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6371), 1, @@ -257879,7 +257891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [145208] = 5, + [145222] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6352), 1, @@ -257903,7 +257915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [145237] = 6, + [145251] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6371), 1, @@ -257928,7 +257940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [145268] = 4, + [145282] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3422), 1, @@ -257951,7 +257963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [145295] = 6, + [145309] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6352), 1, @@ -257976,7 +257988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [145326] = 4, + [145340] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3424), 1, @@ -257999,7 +258011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [145353] = 5, + [145367] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6352), 1, @@ -258023,7 +258035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [145382] = 7, + [145396] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6488), 1, @@ -258049,7 +258061,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, - [145415] = 7, + [145429] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -258075,7 +258087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [145448] = 5, + [145462] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6404), 1, @@ -258099,7 +258111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_or2, - [145477] = 6, + [145491] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6352), 1, @@ -258124,7 +258136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [145508] = 3, + [145522] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3430), 1, @@ -258146,7 +258158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [145533] = 4, + [145547] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(691), 1, @@ -258169,7 +258181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [145560] = 3, + [145574] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3432), 1, @@ -258191,7 +258203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [145585] = 6, + [145599] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6494), 1, @@ -258216,7 +258228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LPAREN2, - [145616] = 4, + [145630] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(691), 1, @@ -258239,7 +258251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [145643] = 7, + [145657] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -258265,7 +258277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [145676] = 7, + [145690] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -258291,7 +258303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [145709] = 6, + [145723] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6440), 1, @@ -258316,7 +258328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [145740] = 6, + [145754] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6410), 1, @@ -258341,7 +258353,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, - [145771] = 4, + [145785] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(691), 1, @@ -258364,7 +258376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [145798] = 9, + [145812] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6507), 1, @@ -258375,7 +258387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, ACTIONS(6516), 1, anon_sym_DASH2, - STATE(4874), 1, + STATE(4834), 1, aux_sym__repeat_newline, STATE(3440), 2, sym_comment, @@ -258392,7 +258404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [145835] = 6, + [145849] = 6, ACTIONS(3), 1, anon_sym_POUND, STATE(3441), 1, @@ -258417,7 +258429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHhas2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [145866] = 4, + [145880] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(691), 1, @@ -258440,7 +258452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [145893] = 7, + [145907] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -258466,7 +258478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [145926] = 4, + [145940] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3444), 1, @@ -258489,7 +258501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [145953] = 4, + [145967] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(691), 1, @@ -258512,7 +258524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [145980] = 6, + [145994] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6356), 1, @@ -258537,7 +258549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [146011] = 5, + [146025] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6406), 1, @@ -258561,7 +258573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_or2, - [146040] = 5, + [146054] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6371), 1, @@ -258585,7 +258597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [146069] = 6, + [146083] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6527), 1, @@ -258610,7 +258622,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, - [146100] = 4, + [146114] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(691), 1, @@ -258633,7 +258645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [146127] = 4, + [146141] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(691), 1, @@ -258656,7 +258668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [146154] = 6, + [146168] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6356), 1, @@ -258681,7 +258693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [146185] = 6, + [146199] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6352), 1, @@ -258706,7 +258718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [146216] = 6, + [146230] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6440), 1, @@ -258731,7 +258743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [146247] = 6, + [146261] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6298), 1, @@ -258756,7 +258768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [146278] = 6, + [146292] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1874), 1, @@ -258765,7 +258777,7 @@ static const uint16_t ts_small_parse_table[] = { sym__space, STATE(3456), 1, sym_comment, - STATE(5694), 1, + STATE(5668), 1, sym__expr_parenthesized_immediate, ACTIONS(2446), 13, sym__newline, @@ -258781,7 +258793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [146309] = 6, + [146323] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6371), 1, @@ -258806,7 +258818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [146340] = 6, + [146354] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1874), 1, @@ -258815,7 +258827,7 @@ static const uint16_t ts_small_parse_table[] = { sym__space, STATE(3458), 1, sym_comment, - STATE(5694), 1, + STATE(5668), 1, sym__expr_parenthesized_immediate, ACTIONS(2450), 13, sym__newline, @@ -258831,7 +258843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [146371] = 4, + [146385] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1954), 1, @@ -258854,7 +258866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [146398] = 7, + [146412] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6371), 1, @@ -258880,7 +258892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [146431] = 6, + [146445] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6440), 1, @@ -258905,7 +258917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [146462] = 6, + [146476] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(919), 1, @@ -258930,7 +258942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [146493] = 4, + [146507] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3450), 1, @@ -258953,7 +258965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [146520] = 4, + [146534] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3451), 1, @@ -258976,7 +258988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [146547] = 5, + [146561] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6371), 1, @@ -259000,7 +259012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [146576] = 4, + [146590] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3466), 1, @@ -259023,7 +259035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, sym__unquoted_pattern, - [146603] = 5, + [146617] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6352), 1, @@ -259047,7 +259059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [146632] = 5, + [146646] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6274), 1, @@ -259071,7 +259083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, sym__unquoted_pattern, - [146661] = 7, + [146675] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -259097,7 +259109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [146694] = 6, + [146708] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1874), 1, @@ -259106,7 +259118,7 @@ static const uint16_t ts_small_parse_table[] = { sym__space, STATE(3470), 1, sym_comment, - STATE(5694), 1, + STATE(5668), 1, sym__expr_parenthesized_immediate, ACTIONS(2454), 13, sym__newline, @@ -259122,7 +259134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [146725] = 5, + [146739] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6371), 1, @@ -259146,7 +259158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [146754] = 6, + [146768] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6440), 1, @@ -259171,7 +259183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [146785] = 6, + [146799] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1874), 1, @@ -259180,7 +259192,7 @@ static const uint16_t ts_small_parse_table[] = { sym__space, STATE(3473), 1, sym_comment, - STATE(5694), 1, + STATE(5668), 1, sym__expr_parenthesized_immediate, ACTIONS(2458), 13, sym__newline, @@ -259196,7 +259208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [146816] = 7, + [146830] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -259222,7 +259234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [146849] = 6, + [146863] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6371), 1, @@ -259247,7 +259259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [146880] = 6, + [146894] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6352), 1, @@ -259272,7 +259284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [146911] = 7, + [146925] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -259298,7 +259310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [146944] = 3, + [146958] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3478), 1, @@ -259320,7 +259332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [146969] = 3, + [146983] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3479), 1, @@ -259342,7 +259354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [146994] = 6, + [147008] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6288), 1, @@ -259367,7 +259379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [147025] = 4, + [147039] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(691), 1, @@ -259390,7 +259402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [147052] = 7, + [147066] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6352), 1, @@ -259416,7 +259428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [147085] = 5, + [147099] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6352), 1, @@ -259440,7 +259452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [147114] = 6, + [147128] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5129), 1, @@ -259465,7 +259477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [147145] = 6, + [147159] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1753), 1, @@ -259490,7 +259502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [147176] = 6, + [147190] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6352), 1, @@ -259515,7 +259527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [147207] = 4, + [147221] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(691), 1, @@ -259538,7 +259550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [147234] = 6, + [147248] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6440), 1, @@ -259563,7 +259575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [147265] = 7, + [147279] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -259589,7 +259601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [147298] = 8, + [147312] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2111), 1, @@ -259616,7 +259628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [147333] = 8, + [147347] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2120), 1, @@ -259643,7 +259655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [147368] = 8, + [147382] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2088), 1, @@ -259670,7 +259682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [147403] = 8, + [147417] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2132), 1, @@ -259697,7 +259709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [147438] = 8, + [147452] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2221), 1, @@ -259724,7 +259736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [147473] = 8, + [147487] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2144), 1, @@ -259751,7 +259763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [147508] = 4, + [147522] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3442), 1, @@ -259774,7 +259786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [147535] = 5, + [147549] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6352), 1, @@ -259798,7 +259810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [147564] = 4, + [147578] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3498), 1, @@ -259821,7 +259833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [147591] = 8, + [147605] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -259848,7 +259860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [147626] = 4, + [147640] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3487), 1, @@ -259871,7 +259883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [147653] = 7, + [147667] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -259897,7 +259909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [147686] = 6, + [147700] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6356), 1, @@ -259922,7 +259934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [147717] = 6, + [147731] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6440), 1, @@ -259947,7 +259959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [147748] = 4, + [147762] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(691), 1, @@ -259970,7 +259982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [147775] = 6, + [147789] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6371), 1, @@ -259995,7 +260007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [147806] = 4, + [147820] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3506), 1, @@ -260018,7 +260030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, sym__unquoted_pattern, - [147833] = 8, + [147847] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -260045,7 +260057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [147868] = 4, + [147882] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3504), 1, @@ -260068,7 +260080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [147895] = 4, + [147909] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3509), 1, @@ -260091,7 +260103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [147922] = 7, + [147936] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -260117,7 +260129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [147955] = 7, + [147969] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -260143,7 +260155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [147988] = 6, + [148002] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6371), 1, @@ -260168,7 +260180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [148019] = 6, + [148033] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1874), 1, @@ -260177,7 +260189,7 @@ static const uint16_t ts_small_parse_table[] = { sym__space, STATE(3513), 1, sym_comment, - STATE(5413), 1, + STATE(5384), 1, sym__expr_parenthesized_immediate, ACTIONS(6576), 13, sym__newline, @@ -260193,7 +260205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [148050] = 6, + [148064] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6352), 1, @@ -260218,7 +260230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [148081] = 4, + [148095] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(691), 1, @@ -260241,7 +260253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [148108] = 7, + [148122] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -260267,7 +260279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [148141] = 5, + [148155] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6371), 1, @@ -260291,7 +260303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [148170] = 4, + [148184] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3518), 1, @@ -260314,7 +260326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [148197] = 5, + [148211] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6371), 1, @@ -260338,7 +260350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [148226] = 7, + [148240] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6490), 1, @@ -260364,7 +260376,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, - [148259] = 4, + [148273] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3521), 1, @@ -260387,7 +260399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [148286] = 4, + [148300] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3393), 1, @@ -260410,7 +260422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [148313] = 6, + [148327] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6356), 1, @@ -260435,7 +260447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [148344] = 7, + [148358] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6585), 1, @@ -260460,7 +260472,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, - [148376] = 5, + [148390] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2519), 1, @@ -260483,7 +260495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [148404] = 6, + [148418] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1791), 1, @@ -260507,7 +260519,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, - [148434] = 17, + [148448] = 17, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6592), 1, @@ -260542,7 +260554,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__repeat_newline, STATE(4279), 1, sym_parameter, - [148486] = 17, + [148500] = 17, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6592), 1, @@ -260577,7 +260589,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__repeat_newline, STATE(4279), 1, sym_parameter, - [148538] = 6, + [148552] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(923), 1, @@ -260601,14 +260613,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [148568] = 6, + [148582] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1874), 1, anon_sym_LPAREN2, STATE(3530), 1, sym_comment, - STATE(5694), 1, + STATE(5668), 1, sym__expr_parenthesized_immediate, ACTIONS(2452), 2, ts_builtin_sym_end, @@ -260625,7 +260637,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, - [148598] = 3, + [148612] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3531), 1, @@ -260646,7 +260658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [148622] = 3, + [148636] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3532), 1, @@ -260667,14 +260679,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [148646] = 6, + [148660] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1874), 1, anon_sym_LPAREN2, STATE(3533), 1, sym_comment, - STATE(5694), 1, + STATE(5668), 1, sym__expr_parenthesized_immediate, ACTIONS(2456), 2, ts_builtin_sym_end, @@ -260691,7 +260703,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, - [148676] = 7, + [148690] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6298), 1, @@ -260716,7 +260728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [148708] = 6, + [148722] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2840), 1, @@ -260740,7 +260752,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, - [148738] = 3, + [148752] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3536), 1, @@ -260761,7 +260773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [148762] = 17, + [148776] = 17, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6592), 1, @@ -260796,7 +260808,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__repeat_newline, STATE(4279), 1, sym_parameter, - [148814] = 6, + [148828] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2848), 1, @@ -260820,7 +260832,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, - [148844] = 6, + [148858] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2816), 1, @@ -260844,7 +260856,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, - [148874] = 4, + [148888] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3540), 1, @@ -260866,7 +260878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [148900] = 6, + [148914] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6039), 1, @@ -260890,7 +260902,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, - [148930] = 5, + [148944] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6453), 1, @@ -260913,7 +260925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LPAREN2, - [148958] = 4, + [148972] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6624), 1, @@ -260935,7 +260947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_xor2, anon_sym_or2, - [148984] = 5, + [148998] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6626), 1, @@ -260958,7 +260970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LPAREN2, - [149012] = 4, + [149026] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3545), 1, @@ -260980,7 +260992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [149038] = 17, + [149052] = 17, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6592), 1, @@ -261015,7 +261027,7 @@ static const uint16_t ts_small_parse_table[] = { sym_param_short_flag, STATE(4279), 1, sym_parameter, - [149090] = 3, + [149104] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3547), 1, @@ -261036,7 +261048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [149114] = 17, + [149128] = 17, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6592), 1, @@ -261071,7 +261083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_param_short_flag, STATE(4279), 1, sym_parameter, - [149166] = 6, + [149180] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6632), 1, @@ -261095,7 +261107,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, - [149196] = 4, + [149210] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3550), 1, @@ -261117,7 +261129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [149222] = 3, + [149236] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3551), 1, @@ -261138,7 +261150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [149246] = 17, + [149260] = 17, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6592), 1, @@ -261173,7 +261185,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__repeat_newline, STATE(4279), 1, sym_parameter, - [149298] = 17, + [149312] = 17, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6592), 1, @@ -261208,7 +261220,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__repeat_newline, STATE(4279), 1, sym_parameter, - [149350] = 5, + [149364] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6541), 1, @@ -261231,7 +261243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [149378] = 5, + [149392] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6642), 1, @@ -261254,7 +261266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [149406] = 4, + [149420] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3556), 1, @@ -261276,7 +261288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [149432] = 6, + [149446] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2414), 1, @@ -261300,7 +261312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [149462] = 4, + [149476] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6632), 1, @@ -261322,7 +261334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_xor2, anon_sym_or2, - [149488] = 4, + [149502] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3559), 1, @@ -261344,7 +261356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [149514] = 6, + [149528] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2493), 1, @@ -261368,7 +261380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [149544] = 6, + [149558] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2501), 1, @@ -261392,7 +261404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [149574] = 6, + [149588] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2509), 1, @@ -261416,7 +261428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [149604] = 4, + [149618] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3563), 1, @@ -261438,14 +261450,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [149630] = 6, + [149644] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1874), 1, anon_sym_LPAREN2, STATE(3564), 1, sym_comment, - STATE(5336), 1, + STATE(5418), 1, sym__expr_parenthesized_immediate, ACTIONS(6578), 2, ts_builtin_sym_end, @@ -261462,7 +261474,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, - [149660] = 4, + [149674] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3565), 1, @@ -261484,7 +261496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [149686] = 6, + [149700] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6490), 1, @@ -261508,7 +261520,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, - [149716] = 5, + [149730] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1157), 1, @@ -261531,7 +261543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [149744] = 7, + [149758] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6660), 1, @@ -261556,7 +261568,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, - [149776] = 5, + [149790] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6624), 1, @@ -261579,7 +261591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_or2, - [149804] = 6, + [149818] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1753), 1, @@ -261603,7 +261615,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, - [149834] = 6, + [149848] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2852), 1, @@ -261627,7 +261639,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, - [149864] = 5, + [149878] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6541), 1, @@ -261650,7 +261662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [149892] = 3, + [149906] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3573), 1, @@ -261671,7 +261683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [149916] = 13, + [149930] = 13, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(996), 1, @@ -261694,7 +261706,7 @@ static const uint16_t ts_small_parse_table[] = { sym__inter_single_quotes, STATE(3644), 1, sym__inter_double_quotes, - STATE(5386), 2, + STATE(5347), 2, sym_val_string, sym_val_interpolated, STATE(3135), 4, @@ -261702,7 +261714,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [149960] = 4, + [149974] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3575), 1, @@ -261724,7 +261736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, sym__unquoted_pattern, - [149986] = 4, + [150000] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3576), 1, @@ -261746,7 +261758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [150012] = 4, + [150026] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3577), 1, @@ -261768,7 +261780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, sym__unquoted_pattern, - [150038] = 4, + [150052] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6232), 1, @@ -261790,7 +261802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RBRACE, anon_sym_COLON2, - [150064] = 4, + [150078] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3579), 1, @@ -261812,7 +261824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, sym__unquoted_pattern, - [150090] = 5, + [150104] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6632), 1, @@ -261835,7 +261847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_or2, - [150118] = 4, + [150132] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6177), 1, @@ -261857,7 +261869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RBRACE, anon_sym_COLON2, - [150144] = 4, + [150158] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3582), 1, @@ -261879,7 +261891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, sym__unquoted_pattern, - [150170] = 3, + [150184] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3583), 1, @@ -261900,7 +261912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [150194] = 3, + [150208] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3584), 1, @@ -261921,7 +261933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [150218] = 4, + [150232] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6673), 1, @@ -261943,7 +261955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [150244] = 4, + [150258] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6624), 1, @@ -261965,7 +261977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_xor2, anon_sym_or2, - [150270] = 4, + [150284] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6632), 1, @@ -261987,7 +261999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_xor2, anon_sym_or2, - [150296] = 4, + [150310] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3588), 1, @@ -262009,7 +262021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [150322] = 6, + [150336] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6624), 1, @@ -262033,7 +262045,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, - [150352] = 4, + [150366] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6206), 1, @@ -262055,7 +262067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RBRACE, anon_sym_COLON2, - [150378] = 5, + [150392] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6541), 1, @@ -262078,7 +262090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [150406] = 5, + [150420] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6541), 1, @@ -262101,7 +262113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [150434] = 3, + [150448] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3593), 1, @@ -262122,7 +262134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [150458] = 4, + [150472] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3594), 1, @@ -262144,7 +262156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [150484] = 4, + [150498] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3595), 1, @@ -262166,7 +262178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [150510] = 6, + [150524] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6608), 1, @@ -262190,7 +262202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [150540] = 3, + [150554] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3597), 1, @@ -262211,7 +262223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [150564] = 5, + [150578] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6624), 1, @@ -262234,7 +262246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_or2, - [150592] = 5, + [150606] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6632), 1, @@ -262257,7 +262269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_or2, - [150620] = 14, + [150634] = 14, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6688), 1, @@ -262289,7 +262301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, - [150666] = 17, + [150680] = 17, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6592), 1, @@ -262324,14 +262336,14 @@ static const uint16_t ts_small_parse_table[] = { sym_param_short_flag, STATE(4279), 1, sym_parameter, - [150718] = 6, + [150732] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1874), 1, anon_sym_LPAREN2, STATE(3602), 1, sym_comment, - STATE(5694), 1, + STATE(5668), 1, sym__expr_parenthesized_immediate, ACTIONS(2444), 2, ts_builtin_sym_end, @@ -262348,14 +262360,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, - [150748] = 6, + [150762] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1874), 1, anon_sym_LPAREN2, STATE(3603), 1, sym_comment, - STATE(5694), 1, + STATE(5668), 1, sym__expr_parenthesized_immediate, ACTIONS(2448), 2, ts_builtin_sym_end, @@ -262372,7 +262384,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, - [150778] = 7, + [150792] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6298), 1, @@ -262397,7 +262409,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, - [150810] = 4, + [150824] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6202), 1, @@ -262419,7 +262431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RBRACE, anon_sym_COLON2, - [150836] = 4, + [150850] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6187), 1, @@ -262441,7 +262453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RBRACE, anon_sym_COLON2, - [150862] = 6, + [150876] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2330), 1, @@ -262465,7 +262477,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, - [150892] = 6, + [150906] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2330), 1, @@ -262489,7 +262501,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, - [150922] = 6, + [150936] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6608), 1, @@ -262513,7 +262525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [150952] = 3, + [150966] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3610), 1, @@ -262534,7 +262546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [150976] = 17, + [150990] = 17, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6592), 1, @@ -262569,7 +262581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_param_short_flag, STATE(4279), 1, sym_parameter, - [151028] = 17, + [151042] = 17, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6592), 1, @@ -262604,7 +262616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_param_short_flag, STATE(4279), 1, sym_parameter, - [151080] = 6, + [151094] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6490), 1, @@ -262628,7 +262640,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, - [151110] = 3, + [151124] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3614), 1, @@ -262649,7 +262661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [151134] = 3, + [151148] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3615), 1, @@ -262670,7 +262682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [151158] = 6, + [151172] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6608), 1, @@ -262694,7 +262706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [151188] = 4, + [151202] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6236), 1, @@ -262716,7 +262728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RBRACE, anon_sym_COLON2, - [151214] = 6, + [151228] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2852), 1, @@ -262740,7 +262752,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, - [151244] = 4, + [151258] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5289), 1, @@ -262761,7 +262773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [151269] = 6, + [151283] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6723), 1, @@ -262784,7 +262796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [151298] = 4, + [151312] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2720), 1, @@ -262805,7 +262817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [151323] = 5, + [151337] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2238), 1, @@ -262827,7 +262839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [151350] = 6, + [151364] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2235), 1, @@ -262850,7 +262862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [151379] = 4, + [151393] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5293), 1, @@ -262871,7 +262883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [151404] = 4, + [151418] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3625), 1, @@ -262892,7 +262904,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, - [151429] = 6, + [151443] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2235), 1, @@ -262915,7 +262927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [151458] = 6, + [151472] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2838), 1, @@ -262938,7 +262950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [151487] = 4, + [151501] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2874), 1, @@ -262959,7 +262971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [151512] = 4, + [151526] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2878), 1, @@ -262980,7 +262992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [151537] = 4, + [151551] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2882), 1, @@ -263001,7 +263013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [151562] = 4, + [151576] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2886), 1, @@ -263022,7 +263034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [151587] = 6, + [151601] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6739), 1, @@ -263045,7 +263057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [151616] = 4, + [151630] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6748), 1, @@ -263066,7 +263078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [151641] = 4, + [151655] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6752), 1, @@ -263087,7 +263099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [151666] = 4, + [151680] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2684), 1, @@ -263108,7 +263120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [151691] = 4, + [151705] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2688), 1, @@ -263129,7 +263141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [151716] = 4, + [151730] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2810), 1, @@ -263150,7 +263162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [151741] = 4, + [151755] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1157), 1, @@ -263171,7 +263183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [151766] = 4, + [151780] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1127), 1, @@ -263192,7 +263204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [151791] = 6, + [151805] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3674), 1, @@ -263201,7 +263213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, STATE(3640), 1, sym_comment, - STATE(5550), 1, + STATE(5819), 1, sym__expr_parenthesized_immediate, ACTIONS(4159), 11, anon_sym_EQ, @@ -263215,7 +263227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [151820] = 4, + [151834] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(923), 1, @@ -263236,7 +263248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [151845] = 4, + [151859] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2531), 1, @@ -263257,7 +263269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [151870] = 4, + [151884] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2724), 1, @@ -263278,7 +263290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [151895] = 4, + [151909] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2724), 1, @@ -263299,7 +263311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [151920] = 6, + [151934] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3674), 1, @@ -263308,7 +263320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, STATE(3645), 1, sym_comment, - STATE(5550), 1, + STATE(5819), 1, sym__expr_parenthesized_immediate, ACTIONS(4169), 11, anon_sym_EQ, @@ -263322,7 +263334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [151949] = 4, + [151963] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2612), 1, @@ -263343,7 +263355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [151974] = 4, + [151988] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2830), 1, @@ -263364,7 +263376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [151999] = 6, + [152013] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(923), 1, @@ -263387,7 +263399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [152028] = 7, + [152042] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6660), 1, @@ -263411,7 +263423,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, - [152059] = 6, + [152073] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6707), 1, @@ -263434,7 +263446,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, - [152088] = 4, + [152102] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6578), 1, @@ -263455,7 +263467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [152113] = 4, + [152127] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2728), 1, @@ -263476,7 +263488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [152138] = 4, + [152152] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2732), 1, @@ -263497,7 +263509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [152163] = 4, + [152177] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2700), 1, @@ -263518,7 +263530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [152188] = 4, + [152202] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(919), 1, @@ -263539,7 +263551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [152213] = 13, + [152227] = 13, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1742), 1, @@ -263566,10 +263578,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6760), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4431), 2, + STATE(4434), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [152256] = 4, + [152270] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2142), 1, @@ -263590,7 +263602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [152281] = 6, + [152295] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6762), 1, @@ -263613,7 +263625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [152310] = 4, + [152324] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2088), 1, @@ -263634,7 +263646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [152335] = 4, + [152349] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2892), 1, @@ -263655,7 +263667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [152360] = 4, + [152374] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2800), 1, @@ -263676,7 +263688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [152385] = 7, + [152399] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6769), 1, @@ -263700,7 +263712,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, - [152416] = 4, + [152430] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2543), 1, @@ -263721,7 +263733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [152441] = 4, + [152455] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2579), 1, @@ -263742,7 +263754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [152466] = 4, + [152480] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2583), 1, @@ -263763,7 +263775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [152491] = 4, + [152505] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3666), 1, @@ -263784,7 +263796,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, - [152516] = 6, + [152530] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6709), 1, @@ -263807,7 +263819,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, - [152545] = 4, + [152559] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2858), 1, @@ -263828,7 +263840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [152570] = 4, + [152584] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2638), 1, @@ -263849,7 +263861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [152595] = 4, + [152609] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2876), 1, @@ -263870,7 +263882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [152620] = 4, + [152634] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2880), 1, @@ -263891,7 +263903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [152645] = 4, + [152659] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2884), 1, @@ -263912,7 +263924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [152670] = 4, + [152684] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2888), 1, @@ -263933,7 +263945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [152695] = 4, + [152709] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2686), 1, @@ -263954,7 +263966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [152720] = 5, + [152734] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6776), 1, @@ -263976,7 +263988,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, - [152747] = 4, + [152761] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2690), 1, @@ -263997,7 +264009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [152772] = 4, + [152786] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2812), 1, @@ -264018,7 +264030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [152797] = 11, + [152811] = 11, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -264039,14 +264051,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6785), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4534), 2, + STATE(4536), 2, sym__expr_parenthesized_immediate, sym_val_variable, ACTIONS(1742), 3, anon_sym_if, anon_sym_PIPE, anon_sym_EQ_GT, - [152836] = 4, + [152850] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5281), 1, @@ -264067,7 +264079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [152861] = 4, + [152875] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5285), 1, @@ -264088,7 +264100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [152886] = 4, + [152900] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2692), 1, @@ -264109,7 +264121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [152911] = 4, + [152925] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2529), 1, @@ -264130,7 +264142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [152936] = 4, + [152950] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6789), 1, @@ -264151,7 +264163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [152961] = 6, + [152975] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3674), 1, @@ -264160,7 +264172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, STATE(3684), 1, sym_comment, - STATE(5550), 1, + STATE(5819), 1, sym__expr_parenthesized_immediate, ACTIONS(4177), 11, anon_sym_EQ, @@ -264174,7 +264186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [152990] = 4, + [153004] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3685), 1, @@ -264195,7 +264207,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, - [153015] = 6, + [153029] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3674), 1, @@ -264204,7 +264216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, STATE(3686), 1, sym_comment, - STATE(5550), 1, + STATE(5819), 1, sym__expr_parenthesized_immediate, ACTIONS(4181), 11, anon_sym_EQ, @@ -264218,7 +264230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [153044] = 4, + [153058] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2708), 1, @@ -264239,7 +264251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [153069] = 6, + [153083] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6793), 1, @@ -264262,7 +264274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [153098] = 4, + [153112] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2144), 1, @@ -264283,7 +264295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [153123] = 4, + [153137] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6799), 1, @@ -264304,7 +264316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [153148] = 6, + [153162] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1753), 1, @@ -264327,7 +264339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [153177] = 6, + [153191] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6709), 1, @@ -264350,7 +264362,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, - [153206] = 6, + [153220] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2846), 1, @@ -264373,7 +264385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [153235] = 3, + [153249] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3694), 1, @@ -264393,7 +264405,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, - [153258] = 4, + [153272] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2086), 1, @@ -264414,7 +264426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [153283] = 4, + [153297] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2860), 1, @@ -264435,7 +264447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [153308] = 6, + [153322] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6709), 1, @@ -264458,7 +264470,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, - [153337] = 4, + [153351] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6805), 1, @@ -264479,7 +264491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [153362] = 5, + [153376] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5986), 1, @@ -264501,7 +264513,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, - [153389] = 4, + [153403] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2890), 1, @@ -264522,7 +264534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [153414] = 4, + [153428] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2798), 1, @@ -264543,7 +264555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [153439] = 6, + [153453] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6809), 1, @@ -264566,7 +264578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [153468] = 3, + [153482] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3703), 1, @@ -264586,7 +264598,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, - [153491] = 6, + [153505] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6816), 1, @@ -264609,7 +264621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [153520] = 6, + [153534] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6823), 1, @@ -264632,7 +264644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [153549] = 4, + [153563] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2726), 1, @@ -264653,7 +264665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [153574] = 4, + [153588] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2726), 1, @@ -264674,7 +264686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [153599] = 6, + [153613] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1407), 1, @@ -264697,7 +264709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [153628] = 6, + [153642] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6612), 1, @@ -264720,7 +264732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [153657] = 6, + [153671] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6116), 1, @@ -264743,7 +264755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [153686] = 6, + [153700] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6612), 1, @@ -264766,7 +264778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [153715] = 6, + [153729] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1399), 1, @@ -264789,7 +264801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [153744] = 6, + [153758] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2235), 1, @@ -264812,7 +264824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [153773] = 4, + [153787] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2730), 1, @@ -264833,7 +264845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [153798] = 4, + [153812] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2734), 1, @@ -264854,7 +264866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [153823] = 4, + [153837] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2412), 1, @@ -264875,7 +264887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [153848] = 4, + [153862] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3717), 1, @@ -264896,7 +264908,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, - [153873] = 4, + [153887] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4324), 1, @@ -264917,7 +264929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [153898] = 4, + [153912] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2712), 1, @@ -264938,7 +264950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [153923] = 6, + [153937] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6837), 1, @@ -264961,7 +264973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [153952] = 6, + [153966] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6844), 1, @@ -264984,7 +264996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [153981] = 6, + [153995] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6851), 1, @@ -265007,7 +265019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [154010] = 6, + [154024] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6612), 1, @@ -265030,7 +265042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [154039] = 4, + [154053] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2581), 1, @@ -265051,7 +265063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [154064] = 4, + [154078] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2585), 1, @@ -265072,7 +265084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [154089] = 6, + [154103] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6860), 1, @@ -265095,7 +265107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [154118] = 4, + [154132] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2541), 1, @@ -265116,7 +265128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [154143] = 6, + [154157] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6867), 1, @@ -265139,7 +265151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [154172] = 6, + [154186] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3674), 1, @@ -265148,7 +265160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, STATE(3729), 1, sym_comment, - STATE(5313), 1, + STATE(5430), 1, sym__expr_parenthesized_immediate, ACTIONS(6682), 11, anon_sym_EQ, @@ -265162,7 +265174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [154201] = 5, + [154215] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6874), 1, @@ -265184,7 +265196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [154228] = 6, + [154242] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2235), 1, @@ -265207,7 +265219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [154257] = 5, + [154271] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6887), 1, @@ -265229,7 +265241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [154284] = 4, + [154298] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2716), 1, @@ -265250,7 +265262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [154309] = 4, + [154323] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6893), 1, @@ -265271,7 +265283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [154334] = 5, + [154348] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6895), 1, @@ -265293,7 +265305,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, - [154361] = 5, + [154375] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6889), 1, @@ -265315,7 +265327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [154388] = 4, + [154402] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3737), 1, @@ -265336,7 +265348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LPAREN2, - [154413] = 6, + [154427] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1791), 1, @@ -265359,7 +265371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [154442] = 4, + [154456] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6901), 1, @@ -265380,7 +265392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [154467] = 4, + [154481] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6905), 1, @@ -265401,7 +265413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [154492] = 6, + [154506] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6793), 1, @@ -265424,7 +265436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [154521] = 4, + [154535] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2632), 1, @@ -265445,7 +265457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [154546] = 4, + [154560] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2491), 1, @@ -265466,7 +265478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [154571] = 4, + [154585] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3744), 1, @@ -265487,7 +265499,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, - [154596] = 6, + [154610] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6793), 1, @@ -265510,7 +265522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [154625] = 4, + [154639] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2499), 1, @@ -265531,7 +265543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [154650] = 4, + [154664] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3747), 1, @@ -265552,7 +265564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LPAREN2, - [154675] = 4, + [154689] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2507), 1, @@ -265573,7 +265585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [154700] = 6, + [154714] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6793), 1, @@ -265596,7 +265608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [154729] = 4, + [154743] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3750), 1, @@ -265617,7 +265629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LPAREN2, - [154754] = 4, + [154768] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2636), 1, @@ -265638,7 +265650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [154779] = 4, + [154793] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4021), 1, @@ -265659,7 +265671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [154804] = 6, + [154818] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2235), 1, @@ -265682,7 +265694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [154833] = 6, + [154847] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2235), 1, @@ -265705,7 +265717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [154862] = 6, + [154876] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3674), 1, @@ -265714,7 +265726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, STATE(3755), 1, sym_comment, - STATE(5313), 1, + STATE(5430), 1, sym__expr_parenthesized_immediate, ACTIONS(6711), 11, anon_sym_EQ, @@ -265728,7 +265740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [154891] = 4, + [154905] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4316), 1, @@ -265749,7 +265761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [154916] = 4, + [154930] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6226), 1, @@ -265770,7 +265782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [154941] = 6, + [154955] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2330), 1, @@ -265793,7 +265805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [154970] = 7, + [154984] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6921), 1, @@ -265817,7 +265829,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, - [155001] = 4, + [155015] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3760), 1, @@ -265838,7 +265850,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, - [155026] = 4, + [155040] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3761), 1, @@ -265859,7 +265871,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, - [155051] = 6, + [155065] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2328), 1, @@ -265882,7 +265894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [155080] = 6, + [155094] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6926), 1, @@ -265905,7 +265917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [155109] = 4, + [155123] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3764), 1, @@ -265926,7 +265938,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, - [155134] = 4, + [155148] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3765), 1, @@ -265947,7 +265959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LPAREN2, - [155159] = 4, + [155173] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2640), 1, @@ -265968,7 +265980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [155184] = 4, + [155198] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2644), 1, @@ -265989,7 +266001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [155209] = 4, + [155223] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2680), 1, @@ -266010,7 +266022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [155234] = 4, + [155248] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2610), 1, @@ -266031,7 +266043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [155259] = 6, + [155273] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3674), 1, @@ -266040,7 +266052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, STATE(3770), 1, sym_comment, - STATE(5313), 1, + STATE(5430), 1, sym__expr_parenthesized_immediate, ACTIONS(6719), 11, anon_sym_EQ, @@ -266054,7 +266066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [155288] = 4, + [155302] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2828), 1, @@ -266075,7 +266087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [155313] = 4, + [155327] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6935), 1, @@ -266096,7 +266108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [155338] = 4, + [155352] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6318), 1, @@ -266117,7 +266129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [155363] = 4, + [155377] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6939), 1, @@ -266138,7 +266150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [155388] = 7, + [155402] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6585), 1, @@ -266162,7 +266174,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, - [155419] = 4, + [155433] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6943), 1, @@ -266183,7 +266195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [155444] = 4, + [155458] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2696), 1, @@ -266204,7 +266216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [155469] = 4, + [155483] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3778), 1, @@ -266224,7 +266236,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, - [155493] = 3, + [155507] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3779), 1, @@ -266243,7 +266255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [155515] = 3, + [155529] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3780), 1, @@ -266262,7 +266274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [155537] = 4, + [155551] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3781), 1, @@ -266282,7 +266294,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, - [155561] = 4, + [155575] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3782), 1, @@ -266302,7 +266314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [155585] = 4, + [155599] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3783), 1, @@ -266322,7 +266334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [155609] = 4, + [155623] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3784), 1, @@ -266342,7 +266354,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, - [155633] = 12, + [155647] = 12, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1787), 1, @@ -266359,7 +266371,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token2, STATE(3785), 1, sym_comment, - STATE(4606), 1, + STATE(4581), 1, sym__immediate_decimal, ACTIONS(1789), 2, sym__newline, @@ -266370,7 +266382,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3621), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [155673] = 4, + [155687] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3786), 1, @@ -266390,7 +266402,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, - [155697] = 10, + [155711] = 10, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -266401,7 +266413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, STATE(3787), 1, sym_comment, - STATE(4927), 1, + STATE(4943), 1, sym__immediate_decimal, ACTIONS(6956), 2, aux_sym__immediate_decimal_token1, @@ -266416,7 +266428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_PIPE, anon_sym_EQ_GT, - [155733] = 15, + [155747] = 15, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6592), 1, @@ -266447,7 +266459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_param_short_flag, STATE(4279), 1, sym_parameter, - [155779] = 4, + [155793] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6964), 1, @@ -266467,7 +266479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [155803] = 12, + [155817] = 12, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1742), 1, @@ -266484,7 +266496,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token2, STATE(3790), 1, sym_comment, - STATE(4585), 1, + STATE(4576), 1, sym__immediate_decimal, ACTIONS(1744), 2, sym__newline, @@ -266495,7 +266507,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3748), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [155843] = 12, + [155857] = 12, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1728), 1, @@ -266512,7 +266524,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token2, STATE(3791), 1, sym_comment, - STATE(4488), 1, + STATE(4491), 1, sym__immediate_decimal, ACTIONS(1732), 2, anon_sym_RBRACK, @@ -266520,10 +266532,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6976), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4487), 2, + STATE(4490), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [155883] = 4, + [155897] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6980), 1, @@ -266543,7 +266555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [155907] = 4, + [155921] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6984), 1, @@ -266563,7 +266575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [155931] = 3, + [155945] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3794), 1, @@ -266582,7 +266594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [155953] = 5, + [155967] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1127), 1, @@ -266603,7 +266615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [155979] = 3, + [155993] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3796), 1, @@ -266622,7 +266634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [156001] = 4, + [156015] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3797), 1, @@ -266642,7 +266654,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, - [156025] = 4, + [156039] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3798), 1, @@ -266662,7 +266674,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, - [156049] = 4, + [156063] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3799), 1, @@ -266682,7 +266694,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, - [156073] = 10, + [156087] = 10, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -266693,7 +266705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, STATE(3800), 1, sym_comment, - STATE(4884), 1, + STATE(4944), 1, sym__immediate_decimal, ACTIONS(6956), 2, aux_sym__immediate_decimal_token1, @@ -266708,7 +266720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_PIPE, anon_sym_EQ_GT, - [156109] = 4, + [156123] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6990), 1, @@ -266728,7 +266740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [156133] = 4, + [156147] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3802), 1, @@ -266748,7 +266760,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, - [156157] = 4, + [156171] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3803), 1, @@ -266768,7 +266780,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, - [156181] = 4, + [156195] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6994), 1, @@ -266788,7 +266800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [156205] = 3, + [156219] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3805), 1, @@ -266807,7 +266819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [156227] = 15, + [156241] = 15, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6592), 1, @@ -266838,7 +266850,7 @@ static const uint16_t ts_small_parse_table[] = { sym_param_short_flag, STATE(4279), 1, sym_parameter, - [156273] = 3, + [156287] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3807), 1, @@ -266857,7 +266869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [156295] = 3, + [156309] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3808), 1, @@ -266876,7 +266888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [156317] = 4, + [156331] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7000), 1, @@ -266896,7 +266908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [156341] = 3, + [156355] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3810), 1, @@ -266915,7 +266927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [156363] = 4, + [156377] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(691), 1, @@ -266935,7 +266947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [156387] = 4, + [156401] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3812), 1, @@ -266955,7 +266967,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, - [156411] = 4, + [156425] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3813), 1, @@ -266975,7 +266987,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, - [156435] = 3, + [156449] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3814), 1, @@ -266994,7 +267006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [156457] = 4, + [156471] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3815), 1, @@ -267014,7 +267026,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, - [156481] = 4, + [156495] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7006), 1, @@ -267034,7 +267046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [156505] = 15, + [156519] = 15, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6592), 1, @@ -267065,7 +267077,7 @@ static const uint16_t ts_small_parse_table[] = { sym_param_short_flag, STATE(4279), 1, sym_parameter, - [156551] = 4, + [156565] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4265), 1, @@ -267085,7 +267097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LPAREN2, - [156575] = 3, + [156589] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3819), 1, @@ -267104,7 +267116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [156597] = 15, + [156611] = 15, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6592), 1, @@ -267135,7 +267147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_param_short_flag, STATE(4279), 1, sym_parameter, - [156643] = 4, + [156657] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3821), 1, @@ -267155,7 +267167,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, - [156667] = 4, + [156681] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3822), 1, @@ -267175,7 +267187,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, - [156691] = 4, + [156705] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3823), 1, @@ -267195,7 +267207,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, - [156715] = 4, + [156729] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3824), 1, @@ -267215,7 +267227,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, - [156739] = 4, + [156753] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7014), 1, @@ -267235,7 +267247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [156763] = 4, + [156777] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3826), 1, @@ -267255,7 +267267,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, - [156787] = 4, + [156801] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3827), 1, @@ -267275,7 +267287,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, - [156811] = 4, + [156825] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6889), 1, @@ -267295,7 +267307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [156835] = 4, + [156849] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3829), 1, @@ -267315,7 +267327,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, - [156859] = 4, + [156873] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3830), 1, @@ -267335,7 +267347,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, - [156883] = 4, + [156897] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7016), 1, @@ -267355,7 +267367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RBRACE, - [156907] = 4, + [156921] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3832), 1, @@ -267375,7 +267387,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, - [156931] = 13, + [156945] = 13, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1742), 1, @@ -267401,10 +267413,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6976), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4489), 2, + STATE(4493), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [156973] = 15, + [156987] = 15, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6592), 1, @@ -267435,7 +267447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_param_short_flag, STATE(4279), 1, sym_parameter, - [157019] = 4, + [157033] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3835), 1, @@ -267455,7 +267467,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, - [157043] = 4, + [157057] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3836), 1, @@ -267475,7 +267487,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, - [157067] = 4, + [157081] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7024), 1, @@ -267495,7 +267507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [157091] = 4, + [157105] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3838), 1, @@ -267515,7 +267527,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, - [157115] = 4, + [157129] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3839), 1, @@ -267535,7 +267547,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, - [157139] = 4, + [157153] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3840), 1, @@ -267555,7 +267567,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, - [157163] = 4, + [157177] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3841), 1, @@ -267575,7 +267587,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, - [157187] = 4, + [157201] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3842), 1, @@ -267595,7 +267607,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, - [157211] = 4, + [157225] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3843), 1, @@ -267615,7 +267627,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, - [157235] = 4, + [157249] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3844), 1, @@ -267635,7 +267647,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, - [157259] = 4, + [157273] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3845), 1, @@ -267655,7 +267667,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, - [157283] = 4, + [157297] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3846), 1, @@ -267675,7 +267687,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, - [157307] = 4, + [157321] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3847), 1, @@ -267695,7 +267707,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, - [157331] = 4, + [157345] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3848), 1, @@ -267715,7 +267727,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, - [157355] = 3, + [157369] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3849), 1, @@ -267734,7 +267746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [157377] = 4, + [157391] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7030), 1, @@ -267754,7 +267766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [157401] = 4, + [157415] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7032), 1, @@ -267774,7 +267786,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, - [157425] = 15, + [157439] = 15, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6592), 1, @@ -267805,7 +267817,7 @@ static const uint16_t ts_small_parse_table[] = { sym_param_short_flag, STATE(4279), 1, sym_parameter, - [157471] = 10, + [157485] = 10, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -267816,7 +267828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, STATE(3853), 1, sym_comment, - STATE(4533), 1, + STATE(4535), 1, sym__immediate_decimal, ACTIONS(6783), 2, aux_sym__immediate_decimal_token1, @@ -267824,14 +267836,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6785), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4532), 2, + STATE(4534), 2, sym__expr_parenthesized_immediate, sym_val_variable, ACTIONS(1728), 3, anon_sym_if, anon_sym_PIPE, anon_sym_EQ_GT, - [157507] = 15, + [157521] = 15, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6592), 1, @@ -267862,7 +267874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_param_short_flag, STATE(4279), 1, sym_parameter, - [157553] = 4, + [157567] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7038), 1, @@ -267882,7 +267894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [157577] = 3, + [157591] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3856), 1, @@ -267901,7 +267913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [157599] = 4, + [157613] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3857), 1, @@ -267921,7 +267933,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, - [157623] = 4, + [157637] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7042), 1, @@ -267941,7 +267953,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, - [157647] = 4, + [157661] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3859), 1, @@ -267961,7 +267973,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, - [157671] = 4, + [157685] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3860), 1, @@ -267981,7 +267993,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, - [157695] = 4, + [157709] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3861), 1, @@ -268001,7 +268013,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, - [157719] = 4, + [157733] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3862), 1, @@ -268021,7 +268033,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, - [157743] = 4, + [157757] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4257), 1, @@ -268041,7 +268053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LPAREN2, - [157767] = 4, + [157781] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3864), 1, @@ -268061,7 +268073,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, - [157791] = 4, + [157805] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3865), 1, @@ -268081,7 +268093,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, - [157815] = 4, + [157829] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3866), 1, @@ -268101,7 +268113,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, - [157839] = 12, + [157853] = 12, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1728), 1, @@ -268118,7 +268130,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token2, STATE(3867), 1, sym_comment, - STATE(4430), 1, + STATE(4433), 1, sym__immediate_decimal, ACTIONS(1732), 2, sym__newline, @@ -268126,10 +268138,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6760), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4429), 2, + STATE(4432), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [157879] = 4, + [157893] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3868), 1, @@ -268149,7 +268161,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, - [157903] = 4, + [157917] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3869), 1, @@ -268169,7 +268181,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, - [157927] = 4, + [157941] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3870), 1, @@ -268189,7 +268201,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, - [157951] = 4, + [157965] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(691), 1, @@ -268209,7 +268221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [157975] = 3, + [157989] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3872), 1, @@ -268228,7 +268240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [157997] = 4, + [158011] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3873), 1, @@ -268248,7 +268260,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, - [158021] = 15, + [158035] = 15, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6592), 1, @@ -268279,7 +268291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_param_short_flag, STATE(4279), 1, sym_parameter, - [158067] = 3, + [158081] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3875), 1, @@ -268298,7 +268310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [158089] = 15, + [158103] = 15, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6592), 1, @@ -268329,7 +268341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_param_short_flag, STATE(4279), 1, sym_parameter, - [158135] = 4, + [158149] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3877), 1, @@ -268349,7 +268361,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, - [158159] = 6, + [158173] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6741), 1, @@ -268371,7 +268383,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, - [158187] = 6, + [158201] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6846), 1, @@ -268393,7 +268405,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, - [158215] = 6, + [158229] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6853), 1, @@ -268415,7 +268427,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, - [158243] = 6, + [158257] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6862), 1, @@ -268437,7 +268449,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, - [158271] = 6, + [158285] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6839), 1, @@ -268459,7 +268471,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, - [158299] = 6, + [158313] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6928), 1, @@ -268481,7 +268493,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, - [158327] = 6, + [158341] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6764), 1, @@ -268503,7 +268515,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, - [158355] = 6, + [158369] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2235), 1, @@ -268525,7 +268537,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, - [158383] = 6, + [158397] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6725), 1, @@ -268547,7 +268559,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, - [158411] = 6, + [158425] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2235), 1, @@ -268569,7 +268581,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, - [158439] = 6, + [158453] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2235), 1, @@ -268591,7 +268603,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, - [158467] = 6, + [158481] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2235), 1, @@ -268613,7 +268625,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, - [158495] = 4, + [158509] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7080), 1, @@ -268633,7 +268645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [158519] = 4, + [158533] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3891), 1, @@ -268653,7 +268665,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, - [158543] = 4, + [158557] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3892), 1, @@ -268673,7 +268685,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, - [158567] = 4, + [158581] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3893), 1, @@ -268693,7 +268705,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, - [158591] = 13, + [158605] = 13, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1742), 1, @@ -268719,10 +268731,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7088), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4489), 2, + STATE(4493), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [158633] = 5, + [158647] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7092), 1, @@ -268743,7 +268755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [158659] = 3, + [158673] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3896), 1, @@ -268762,7 +268774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [158681] = 4, + [158695] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3897), 1, @@ -268782,7 +268794,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, - [158705] = 15, + [158719] = 15, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6592), 1, @@ -268813,7 +268825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_param_short_flag, STATE(4279), 1, sym_parameter, - [158751] = 4, + [158765] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3899), 1, @@ -268833,7 +268845,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, - [158775] = 4, + [158789] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3900), 1, @@ -268853,7 +268865,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, - [158799] = 3, + [158813] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3901), 1, @@ -268872,7 +268884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [158821] = 4, + [158835] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3902), 1, @@ -268892,7 +268904,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, - [158845] = 4, + [158859] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3903), 1, @@ -268912,7 +268924,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, - [158869] = 4, + [158883] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2430), 1, @@ -268932,7 +268944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [158893] = 4, + [158907] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3905), 1, @@ -268952,7 +268964,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, - [158917] = 11, + [158931] = 11, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -268965,7 +268977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, STATE(3906), 1, sym_comment, - STATE(4438), 1, + STATE(4441), 1, sym__immediate_decimal, ACTIONS(1742), 2, anon_sym_PIPE, @@ -268976,10 +268988,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7104), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4534), 2, + STATE(4536), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [158955] = 4, + [158969] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3907), 1, @@ -268999,7 +269011,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, - [158979] = 4, + [158993] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3908), 1, @@ -269019,7 +269031,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, - [159003] = 4, + [159017] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3909), 1, @@ -269039,7 +269051,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, - [159027] = 4, + [159041] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3910), 1, @@ -269059,7 +269071,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, - [159051] = 3, + [159065] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3911), 1, @@ -269077,7 +269089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [159072] = 3, + [159086] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3912), 1, @@ -269095,7 +269107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [159093] = 3, + [159107] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3913), 1, @@ -269113,7 +269125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [159114] = 12, + [159128] = 12, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1787), 1, @@ -269132,15 +269144,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token2, STATE(3914), 1, sym_comment, - STATE(4735), 1, + STATE(4812), 1, sym__immediate_decimal, ACTIONS(7116), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(5054), 2, + STATE(5167), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [159153] = 3, + [159167] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3915), 1, @@ -269158,7 +269170,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, - [159174] = 3, + [159188] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3916), 1, @@ -269176,7 +269188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [159195] = 3, + [159209] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3917), 1, @@ -269194,7 +269206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [159216] = 3, + [159230] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3918), 1, @@ -269212,7 +269224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [159237] = 6, + [159251] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7124), 1, @@ -269233,7 +269245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [159264] = 3, + [159278] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3920), 1, @@ -269251,7 +269263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [159285] = 3, + [159299] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3921), 1, @@ -269269,7 +269281,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, - [159306] = 3, + [159320] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3922), 1, @@ -269287,7 +269299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [159327] = 11, + [159341] = 11, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1767), 1, @@ -269302,7 +269314,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token2, STATE(3923), 1, sym_comment, - STATE(5043), 1, + STATE(5156), 1, sym__immediate_decimal, ACTIONS(1769), 2, anon_sym_RBRACK, @@ -269310,10 +269322,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6976), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(5041), 2, + STATE(5155), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [159364] = 3, + [159378] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3924), 1, @@ -269331,7 +269343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [159385] = 11, + [159399] = 11, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1773), 1, @@ -269346,7 +269358,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token2, STATE(3925), 1, sym_comment, - STATE(5045), 1, + STATE(5159), 1, sym__immediate_decimal, ACTIONS(1775), 2, anon_sym_RBRACK, @@ -269354,10 +269366,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6976), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(5044), 2, + STATE(5158), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [159422] = 11, + [159436] = 11, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1777), 1, @@ -269372,7 +269384,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token2, STATE(3926), 1, sym_comment, - STATE(5052), 1, + STATE(5165), 1, sym__immediate_decimal, ACTIONS(1779), 2, anon_sym_RBRACK, @@ -269380,10 +269392,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6976), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(5047), 2, + STATE(5164), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [159459] = 4, + [159473] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7138), 1, @@ -269402,7 +269414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [159482] = 3, + [159496] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3928), 1, @@ -269420,7 +269432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [159503] = 3, + [159517] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3929), 1, @@ -269438,7 +269450,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, - [159524] = 12, + [159538] = 12, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1787), 1, @@ -269457,15 +269469,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token2, STATE(3930), 1, sym_comment, - STATE(4928), 1, + STATE(4911), 1, sym__immediate_decimal, ACTIONS(7146), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(5054), 2, + STATE(5167), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [159563] = 11, + [159577] = 11, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1767), 1, @@ -269491,7 +269503,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3681), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [159600] = 3, + [159614] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3932), 1, @@ -269509,7 +269521,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, - [159621] = 3, + [159635] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3933), 1, @@ -269527,7 +269539,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, - [159642] = 3, + [159656] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3934), 1, @@ -269545,7 +269557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [159663] = 11, + [159677] = 11, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1773), 1, @@ -269571,7 +269583,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3654), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [159700] = 11, + [159714] = 11, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1777), 1, @@ -269597,7 +269609,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3719), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [159737] = 6, + [159751] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7154), 1, @@ -269618,7 +269630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [159764] = 3, + [159778] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3938), 1, @@ -269636,7 +269648,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, - [159785] = 3, + [159799] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3939), 1, @@ -269654,7 +269666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [159806] = 3, + [159820] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3940), 1, @@ -269672,7 +269684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [159827] = 4, + [159841] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7164), 1, @@ -269691,7 +269703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [159850] = 3, + [159864] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3942), 1, @@ -269709,7 +269721,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, - [159871] = 3, + [159885] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3943), 1, @@ -269727,7 +269739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [159892] = 3, + [159906] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3944), 1, @@ -269745,7 +269757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [159913] = 3, + [159927] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3945), 1, @@ -269763,7 +269775,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, - [159934] = 6, + [159948] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7170), 1, @@ -269784,7 +269796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [159961] = 3, + [159975] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3947), 1, @@ -269802,7 +269814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [159982] = 11, + [159996] = 11, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1728), 1, @@ -269828,7 +269840,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3743), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [160019] = 3, + [160033] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3949), 1, @@ -269846,7 +269858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [160040] = 3, + [160054] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3950), 1, @@ -269864,7 +269876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [160061] = 3, + [160075] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3951), 1, @@ -269882,7 +269894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [160082] = 10, + [160096] = 10, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -269893,7 +269905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, STATE(3952), 1, sym_comment, - STATE(5014), 1, + STATE(5036), 1, sym__immediate_decimal, ACTIONS(1742), 2, anon_sym_PIPE, @@ -269907,7 +269919,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(873), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [160117] = 4, + [160131] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7188), 1, @@ -269926,7 +269938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [160140] = 4, + [160154] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7192), 1, @@ -269945,7 +269957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [160163] = 3, + [160177] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3955), 1, @@ -269963,7 +269975,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, - [160184] = 9, + [160198] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -269987,7 +269999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_PIPE, anon_sym_EQ_GT, - [160217] = 3, + [160231] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3957), 1, @@ -270005,7 +270017,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, - [160238] = 3, + [160252] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3958), 1, @@ -270023,7 +270035,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, - [160259] = 4, + [160273] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2414), 1, @@ -270042,7 +270054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [160282] = 3, + [160296] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3960), 1, @@ -270060,7 +270072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [160303] = 4, + [160317] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7200), 1, @@ -270079,7 +270091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [160326] = 3, + [160340] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3962), 1, @@ -270097,7 +270109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [160347] = 3, + [160361] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3963), 1, @@ -270115,7 +270127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [160368] = 3, + [160382] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3964), 1, @@ -270133,7 +270145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [160389] = 3, + [160403] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3965), 1, @@ -270151,7 +270163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [160410] = 6, + [160424] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7208), 1, @@ -270172,7 +270184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [160437] = 3, + [160451] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3967), 1, @@ -270190,7 +270202,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, - [160458] = 5, + [160472] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2238), 1, @@ -270210,7 +270222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [160483] = 3, + [160497] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3969), 1, @@ -270228,7 +270240,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, - [160504] = 3, + [160518] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3970), 1, @@ -270246,7 +270258,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, - [160525] = 12, + [160539] = 12, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4735), 1, @@ -270273,7 +270285,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2727), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [160564] = 3, + [160578] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3972), 1, @@ -270291,7 +270303,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, - [160585] = 6, + [160599] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -270312,7 +270324,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, - [160612] = 3, + [160626] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3974), 1, @@ -270330,7 +270342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [160633] = 3, + [160647] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3975), 1, @@ -270348,7 +270360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [160654] = 9, + [160668] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -270372,7 +270384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_PIPE, anon_sym_EQ_GT, - [160687] = 9, + [160701] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -270396,7 +270408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_PIPE, anon_sym_EQ_GT, - [160720] = 9, + [160734] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -270420,7 +270432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_PIPE, anon_sym_EQ_GT, - [160753] = 3, + [160767] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3979), 1, @@ -270438,7 +270450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [160774] = 3, + [160788] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3980), 1, @@ -270456,7 +270468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [160795] = 3, + [160809] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3981), 1, @@ -270474,7 +270486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [160816] = 3, + [160830] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3982), 1, @@ -270492,7 +270504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [160837] = 4, + [160851] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7237), 1, @@ -270511,7 +270523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [160860] = 4, + [160874] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7241), 1, @@ -270530,7 +270542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [160883] = 3, + [160897] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3985), 1, @@ -270548,7 +270560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [160904] = 4, + [160918] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7247), 1, @@ -270567,7 +270579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [160927] = 6, + [160941] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7249), 1, @@ -270588,7 +270600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [160954] = 4, + [160968] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7256), 1, @@ -270607,7 +270619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [160977] = 4, + [160991] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7260), 1, @@ -270626,7 +270638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [161000] = 3, + [161014] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3990), 1, @@ -270644,7 +270656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [161021] = 3, + [161035] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3991), 1, @@ -270662,7 +270674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [161042] = 4, + [161056] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6684), 1, @@ -270681,7 +270693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [161065] = 3, + [161079] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3993), 1, @@ -270699,7 +270711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [161086] = 12, + [161100] = 12, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1742), 1, @@ -270718,15 +270730,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, STATE(3994), 1, sym_comment, - STATE(4693), 1, + STATE(4606), 1, sym__immediate_decimal, ACTIONS(6976), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4489), 2, + STATE(4493), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [161125] = 4, + [161139] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7272), 1, @@ -270745,7 +270757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [161148] = 12, + [161162] = 12, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1742), 1, @@ -270764,15 +270776,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token2, STATE(3996), 1, sym_comment, - STATE(4838), 1, + STATE(4830), 1, sym__immediate_decimal, ACTIONS(7116), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(5172), 2, + STATE(5084), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [161187] = 3, + [161201] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3997), 1, @@ -270790,7 +270802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [161208] = 3, + [161222] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3998), 1, @@ -270808,7 +270820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [161229] = 3, + [161243] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3999), 1, @@ -270826,7 +270838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [161250] = 12, + [161264] = 12, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4735), 1, @@ -270853,7 +270865,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2727), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [161289] = 6, + [161303] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6741), 1, @@ -270874,7 +270886,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, - [161316] = 6, + [161330] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6846), 1, @@ -270895,7 +270907,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, - [161343] = 6, + [161357] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6853), 1, @@ -270916,7 +270928,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, - [161370] = 6, + [161384] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6862), 1, @@ -270937,7 +270949,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, - [161397] = 6, + [161411] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6839), 1, @@ -270958,7 +270970,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, - [161424] = 6, + [161438] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6928), 1, @@ -270979,7 +270991,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, - [161451] = 6, + [161465] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6764), 1, @@ -271000,7 +271012,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, - [161478] = 6, + [161492] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2235), 1, @@ -271021,7 +271033,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, - [161505] = 6, + [161519] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6725), 1, @@ -271042,7 +271054,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, - [161532] = 6, + [161546] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2235), 1, @@ -271063,7 +271075,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, - [161559] = 6, + [161573] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2235), 1, @@ -271084,7 +271096,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, - [161586] = 6, + [161600] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2235), 1, @@ -271105,7 +271117,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, - [161613] = 3, + [161627] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4013), 1, @@ -271123,7 +271135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [161634] = 3, + [161648] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4014), 1, @@ -271141,7 +271153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [161655] = 3, + [161669] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4015), 1, @@ -271159,7 +271171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [161676] = 3, + [161690] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4016), 1, @@ -271177,7 +271189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [161697] = 4, + [161711] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7272), 1, @@ -271196,7 +271208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [161720] = 10, + [161734] = 10, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -271207,7 +271219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, STATE(4018), 1, sym_comment, - STATE(5039), 1, + STATE(5049), 1, sym__immediate_decimal, ACTIONS(1787), 2, anon_sym_PIPE, @@ -271221,7 +271233,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(916), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [161755] = 4, + [161769] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6713), 1, @@ -271240,7 +271252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [161778] = 4, + [161792] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2634), 1, @@ -271259,7 +271271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [161801] = 4, + [161815] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2493), 1, @@ -271278,7 +271290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [161824] = 4, + [161838] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2501), 1, @@ -271297,7 +271309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [161847] = 4, + [161861] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2509), 1, @@ -271316,7 +271328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [161870] = 4, + [161884] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7320), 1, @@ -271335,7 +271347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [161893] = 12, + [161907] = 12, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4735), 1, @@ -271362,7 +271374,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2727), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [161932] = 3, + [161946] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4026), 1, @@ -271380,7 +271392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [161953] = 4, + [161967] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2642), 1, @@ -271399,7 +271411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [161976] = 4, + [161990] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2646), 1, @@ -271418,7 +271430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [161999] = 4, + [162013] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2682), 1, @@ -271437,7 +271449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [162022] = 3, + [162036] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4030), 1, @@ -271455,7 +271467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [162043] = 11, + [162057] = 11, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -271470,7 +271482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, STATE(4031), 1, sym_comment, - STATE(4651), 1, + STATE(4685), 1, sym__immediate_decimal, ACTIONS(7330), 2, aux_sym__immediate_decimal_token1, @@ -271478,10 +271490,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7332), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4959), 2, + STATE(4869), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [162080] = 6, + [162094] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -271502,7 +271514,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, - [162107] = 12, + [162121] = 12, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4624), 1, @@ -271529,7 +271541,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2692), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [162146] = 3, + [162160] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4034), 1, @@ -271547,7 +271559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [162167] = 12, + [162181] = 12, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1742), 1, @@ -271566,15 +271578,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token2, STATE(4035), 1, sym_comment, - STATE(4910), 1, + STATE(4888), 1, sym__immediate_decimal, ACTIONS(7146), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(5172), 2, + STATE(5084), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [162206] = 4, + [162220] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7340), 1, @@ -271593,7 +271605,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, - [162229] = 3, + [162243] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4037), 1, @@ -271611,7 +271623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [162250] = 4, + [162264] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2694), 1, @@ -271630,7 +271642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [162273] = 4, + [162287] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2698), 1, @@ -271649,7 +271661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [162296] = 4, + [162310] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2702), 1, @@ -271668,7 +271680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [162319] = 3, + [162333] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4041), 1, @@ -271686,7 +271698,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, - [162340] = 4, + [162354] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2710), 1, @@ -271705,7 +271717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [162363] = 4, + [162377] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2714), 1, @@ -271724,7 +271736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [162386] = 11, + [162400] = 11, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1728), 1, @@ -271739,7 +271751,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token2, STATE(4044), 1, sym_comment, - STATE(5158), 1, + STATE(5079), 1, sym__immediate_decimal, ACTIONS(1732), 2, anon_sym_RBRACK, @@ -271747,10 +271759,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6976), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(5157), 2, + STATE(5078), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [162423] = 4, + [162437] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6721), 1, @@ -271769,7 +271781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [162446] = 4, + [162460] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2718), 1, @@ -271788,7 +271800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [162469] = 4, + [162483] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2722), 1, @@ -271807,7 +271819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [162492] = 12, + [162506] = 12, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4735), 1, @@ -271834,7 +271846,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2727), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [162531] = 3, + [162545] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4049), 1, @@ -271852,7 +271864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [162552] = 4, + [162566] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7348), 1, @@ -271871,7 +271883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [162575] = 11, + [162589] = 11, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1787), 1, @@ -271888,15 +271900,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token2, STATE(4051), 1, sym_comment, - STATE(5331), 1, + STATE(5441), 1, sym__immediate_decimal, ACTIONS(6976), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(5054), 2, + STATE(5167), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [162611] = 6, + [162625] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7352), 1, @@ -271916,7 +271928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [162637] = 9, + [162651] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2567), 1, @@ -271939,7 +271951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [162669] = 5, + [162683] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7354), 1, @@ -271958,7 +271970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [162693] = 6, + [162707] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6278), 1, @@ -271978,7 +271990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [162719] = 11, + [162733] = 11, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1157), 1, @@ -271995,7 +272007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_duration_unit, STATE(4056), 1, sym_comment, - STATE(5412), 1, + STATE(5382), 1, sym__expr_parenthesized_immediate, ACTIONS(1127), 2, sym__newline, @@ -272003,7 +272015,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7358), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [162755] = 4, + [162769] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4057), 1, @@ -272021,7 +272033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [162777] = 6, + [162791] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7366), 1, @@ -272041,7 +272053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [162803] = 4, + [162817] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4059), 1, @@ -272059,7 +272071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [162825] = 6, + [162839] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7368), 1, @@ -272079,7 +272091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [162851] = 4, + [162865] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4061), 1, @@ -272097,7 +272109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [162873] = 4, + [162887] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2430), 1, @@ -272115,7 +272127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [162895] = 9, + [162909] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(173), 1, @@ -272138,7 +272150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [162927] = 6, + [162941] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7372), 1, @@ -272158,7 +272170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [162953] = 10, + [162967] = 10, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1728), 1, @@ -272171,7 +272183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, STATE(4065), 1, sym_comment, - STATE(4958), 1, + STATE(4866), 1, sym__immediate_decimal, ACTIONS(7330), 2, aux_sym__immediate_decimal_token1, @@ -272179,10 +272191,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7332), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4957), 2, + STATE(4842), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [162987] = 6, + [163001] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6270), 1, @@ -272202,7 +272214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [163013] = 6, + [163027] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7376), 1, @@ -272222,7 +272234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [163039] = 6, + [163053] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7380), 1, @@ -272242,7 +272254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [163065] = 9, + [163079] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(73), 1, @@ -272265,7 +272277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [163097] = 9, + [163111] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1730), 1, @@ -272288,7 +272300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [163129] = 5, + [163143] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7384), 1, @@ -272307,7 +272319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [163153] = 4, + [163167] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4072), 1, @@ -272325,7 +272337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [163175] = 6, + [163189] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7386), 1, @@ -272345,7 +272357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [163201] = 6, + [163215] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7390), 1, @@ -272365,7 +272377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [163227] = 4, + [163241] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4075), 1, @@ -272383,7 +272395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [163249] = 5, + [163263] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7126), 1, @@ -272402,7 +272414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [163273] = 5, + [163287] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -272421,7 +272433,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, - [163297] = 6, + [163311] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6258), 1, @@ -272441,7 +272453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [163323] = 5, + [163337] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7399), 1, @@ -272460,7 +272472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [163347] = 10, + [163361] = 10, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -272473,7 +272485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, STATE(4080), 1, sym_comment, - STATE(5433), 1, + STATE(5436), 1, sym__immediate_decimal, ACTIONS(7401), 2, aux_sym__immediate_decimal_token1, @@ -272484,7 +272496,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(916), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [163381] = 9, + [163395] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1817), 1, @@ -272507,7 +272519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [163413] = 5, + [163427] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7172), 1, @@ -272526,7 +272538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [163437] = 4, + [163451] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4083), 1, @@ -272544,7 +272556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [163459] = 10, + [163473] = 10, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -272557,7 +272569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, STATE(4084), 1, sym_comment, - STATE(5422), 1, + STATE(5443), 1, sym__immediate_decimal, ACTIONS(7401), 2, aux_sym__immediate_decimal_token1, @@ -272568,7 +272580,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(873), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [163493] = 6, + [163507] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7407), 1, @@ -272588,7 +272600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [163519] = 11, + [163533] = 11, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1742), 1, @@ -272605,15 +272617,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token2, STATE(4086), 1, sym_comment, - STATE(5277), 1, + STATE(5401), 1, sym__immediate_decimal, ACTIONS(6976), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(5172), 2, + STATE(5084), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [163555] = 4, + [163569] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7409), 1, @@ -272631,7 +272643,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, - [163577] = 9, + [163591] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(996), 1, @@ -272653,7 +272665,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [163608] = 5, + [163622] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7388), 1, @@ -272671,7 +272683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [163631] = 10, + [163645] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(3513), 1, @@ -272694,7 +272706,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1612), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [163664] = 10, + [163678] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(3625), 1, @@ -272717,7 +272729,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1800), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [163697] = 9, + [163711] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -272739,7 +272751,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(896), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [163728] = 5, + [163742] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7419), 1, @@ -272757,7 +272769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [163751] = 10, + [163765] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6966), 1, @@ -272772,15 +272784,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__unquoted_in_list_token2, STATE(4094), 1, sym_comment, - STATE(4950), 1, + STATE(4923), 1, sym__immediate_decimal, ACTIONS(7116), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4987), 2, + STATE(5021), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [163784] = 10, + [163798] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6966), 1, @@ -272800,10 +272812,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7088), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4470), 2, + STATE(4473), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [163817] = 10, + [163831] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6966), 1, @@ -272818,15 +272830,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__unquoted_in_record_token2, STATE(4096), 1, sym_comment, - STATE(4881), 1, + STATE(4846), 1, sym__immediate_decimal, ACTIONS(7146), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4987), 2, + STATE(5021), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [163850] = 5, + [163864] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7425), 1, @@ -272844,7 +272856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [163873] = 10, + [163887] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -272864,10 +272876,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7429), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4531), 2, + STATE(4533), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [163906] = 10, + [163920] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -272882,7 +272894,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token2, STATE(4099), 1, sym_comment, - STATE(4850), 1, + STATE(4867), 1, sym__immediate_decimal, ACTIONS(7433), 2, aux_sym__immediate_decimal_token3, @@ -272890,7 +272902,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(865), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [163939] = 9, + [163953] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7435), 1, @@ -272912,7 +272924,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [163970] = 11, + [163984] = 11, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1127), 1, @@ -272931,12 +272943,12 @@ static const uint16_t ts_small_parse_table[] = { sym_duration_unit, STATE(4101), 1, sym_comment, - STATE(5443), 1, + STATE(5305), 1, sym__expr_parenthesized_immediate, ACTIONS(7447), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [164005] = 6, + [164019] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7453), 1, @@ -272955,7 +272967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [164030] = 4, + [164044] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4103), 1, @@ -272972,7 +272984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [164051] = 10, + [164065] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(3491), 1, @@ -272992,10 +273004,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6760), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4417), 2, + STATE(4420), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [164084] = 10, + [164098] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(3491), 1, @@ -273010,7 +273022,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token2, STATE(4105), 1, sym_comment, - STATE(4686), 1, + STATE(4565), 1, sym__immediate_decimal, ACTIONS(6954), 2, aux_sym__immediate_decimal_token3, @@ -273018,7 +273030,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3716), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [164117] = 9, + [164131] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2970), 1, @@ -273040,7 +273052,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [164148] = 11, + [164162] = 11, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1127), 1, @@ -273059,12 +273071,12 @@ static const uint16_t ts_small_parse_table[] = { sym_duration_unit, STATE(4107), 1, sym_comment, - STATE(5402), 1, + STATE(5378), 1, sym__expr_parenthesized_immediate, ACTIONS(7461), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [164183] = 9, + [164197] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1728), 1, @@ -273086,7 +273098,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(867), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [164214] = 4, + [164228] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4109), 1, @@ -273103,7 +273115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [164235] = 10, + [164249] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(3491), 1, @@ -273126,7 +273138,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3328), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [164268] = 10, + [164282] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(3491), 1, @@ -273149,7 +273161,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3716), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [164301] = 9, + [164315] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7467), 1, @@ -273171,7 +273183,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [164332] = 8, + [164346] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7477), 1, @@ -273182,7 +273194,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__where_predicate_lhs_repeat1, STATE(4328), 1, sym_path, - STATE(4540), 1, + STATE(4542), 1, sym_cell_path, ACTIONS(1755), 3, anon_sym_DOT_DOT_EQ2, @@ -273192,7 +273204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [164361] = 10, + [164375] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -273215,7 +273227,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(784), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [164394] = 10, + [164408] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -273238,7 +273250,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(865), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [164427] = 9, + [164441] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7489), 1, @@ -273255,12 +273267,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4368), 1, sym_val_string, - STATE(4416), 4, + STATE(4556), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [164458] = 9, + [164472] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(91), 1, @@ -273282,7 +273294,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [164489] = 10, + [164503] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1799), 1, @@ -273305,7 +273317,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3277), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [164522] = 10, + [164536] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1799), 1, @@ -273328,7 +273340,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1384), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [164555] = 9, + [164569] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7509), 1, @@ -273350,7 +273362,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [164586] = 10, + [164600] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -273373,7 +273385,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3205), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [164619] = 10, + [164633] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -273396,7 +273408,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(865), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [164652] = 9, + [164666] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1061), 1, @@ -273418,7 +273430,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [164683] = 10, + [164697] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1799), 1, @@ -273441,7 +273453,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1000), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [164716] = 10, + [164730] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -273456,15 +273468,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token2, STATE(4125), 1, sym_comment, - STATE(4437), 1, + STATE(4440), 1, sym__immediate_decimal, ACTIONS(7537), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4531), 2, + STATE(4533), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [164749] = 10, + [164763] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -273479,7 +273491,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token2, STATE(4126), 1, sym_comment, - STATE(5263), 1, + STATE(4994), 1, sym__immediate_decimal, ACTIONS(7541), 2, aux_sym__immediate_decimal_token3, @@ -273487,7 +273499,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(865), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [164782] = 9, + [164796] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7543), 1, @@ -273509,7 +273521,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [164813] = 10, + [164827] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1799), 1, @@ -273532,7 +273544,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1384), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [164846] = 10, + [164860] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1799), 1, @@ -273555,7 +273567,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1000), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [164879] = 10, + [164893] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1799), 1, @@ -273578,7 +273590,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1384), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [164912] = 10, + [164926] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -273601,7 +273613,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2486), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [164945] = 10, + [164959] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -273624,7 +273636,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(865), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [164978] = 9, + [164992] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7573), 1, @@ -273639,14 +273651,14 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, STATE(4133), 1, sym_comment, - STATE(4592), 1, + STATE(4564), 1, sym_val_string, - STATE(4844), 4, + STATE(4779), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [165009] = 10, + [165023] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -273669,7 +273681,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(784), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [165042] = 10, + [165056] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -273692,7 +273704,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(865), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [165075] = 9, + [165089] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7591), 1, @@ -273714,7 +273726,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [165106] = 10, + [165120] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -273729,15 +273741,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token2, STATE(4137), 1, sym_comment, - STATE(4599), 1, + STATE(4642), 1, sym__immediate_decimal, ACTIONS(7603), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4913), 2, + STATE(4955), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [165139] = 9, + [165153] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7605), 1, @@ -273759,7 +273771,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [165170] = 9, + [165184] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1829), 1, @@ -273781,7 +273793,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [165201] = 9, + [165215] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7615), 1, @@ -273803,7 +273815,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [165232] = 9, + [165246] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7625), 1, @@ -273825,7 +273837,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [165263] = 9, + [165277] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7635), 1, @@ -273847,7 +273859,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [165294] = 9, + [165308] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7645), 1, @@ -273869,7 +273881,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [165325] = 9, + [165339] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7655), 1, @@ -273891,7 +273903,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [165356] = 9, + [165370] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7665), 1, @@ -273913,7 +273925,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [165387] = 9, + [165401] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7675), 1, @@ -273935,7 +273947,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [165418] = 9, + [165432] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7685), 1, @@ -273957,7 +273969,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [165449] = 9, + [165463] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7695), 1, @@ -273979,7 +273991,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [165480] = 6, + [165494] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7705), 1, @@ -273998,7 +274010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [165505] = 7, + [165519] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7709), 1, @@ -274018,7 +274030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [165532] = 5, + [165546] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7370), 1, @@ -274036,7 +274048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [165555] = 10, + [165569] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -274051,7 +274063,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token2, STATE(4152), 1, sym_comment, - STATE(5332), 1, + STATE(5369), 1, sym__immediate_decimal, ACTIONS(7715), 2, aux_sym__immediate_decimal_token3, @@ -274059,7 +274071,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(865), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [165588] = 4, + [165602] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4153), 1, @@ -274076,7 +274088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [165609] = 9, + [165623] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1829), 1, @@ -274098,7 +274110,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [165640] = 10, + [165654] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(3539), 1, @@ -274121,7 +274133,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3557), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [165673] = 9, + [165687] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -274143,7 +274155,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(894), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [165704] = 10, + [165718] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(3539), 1, @@ -274166,7 +274178,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3959), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [165737] = 6, + [165751] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7725), 1, @@ -274185,7 +274197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [165762] = 6, + [165776] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7729), 1, @@ -274204,7 +274216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [165787] = 10, + [165801] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(3579), 1, @@ -274227,7 +274239,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3449), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [165820] = 10, + [165834] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(3579), 1, @@ -274250,7 +274262,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3903), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [165853] = 10, + [165867] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4735), 1, @@ -274273,7 +274285,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2727), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [165886] = 10, + [165900] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4806), 1, @@ -274296,7 +274308,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2913), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [165919] = 8, + [165933] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7477), 1, @@ -274307,7 +274319,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__where_predicate_lhs_repeat1, STATE(4328), 1, sym_path, - STATE(4427), 1, + STATE(4430), 1, sym_cell_path, ACTIONS(831), 3, anon_sym_RBRACK, @@ -274317,7 +274329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [165948] = 9, + [165962] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -274339,7 +274351,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [165979] = 4, + [165993] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4166), 1, @@ -274356,7 +274368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [166000] = 8, + [166014] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7477), 1, @@ -274367,7 +274379,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__where_predicate_lhs_repeat1, STATE(4328), 1, sym_path, - STATE(4529), 1, + STATE(4530), 1, sym_cell_path, ACTIONS(1793), 3, anon_sym_DOT_DOT_EQ2, @@ -274377,7 +274389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [166029] = 5, + [166043] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7739), 1, @@ -274395,7 +274407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [166052] = 5, + [166066] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7374), 1, @@ -274413,7 +274425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [166075] = 4, + [166089] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4170), 1, @@ -274430,7 +274442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [166096] = 6, + [166110] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7741), 1, @@ -274449,7 +274461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [166121] = 4, + [166135] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4172), 1, @@ -274466,7 +274478,7 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [166142] = 7, + [166156] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7709), 1, @@ -274486,7 +274498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [166169] = 10, + [166183] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -274509,7 +274521,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(784), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [166202] = 10, + [166216] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(3656), 1, @@ -274532,7 +274544,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1660), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [166235] = 10, + [166249] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2096), 1, @@ -274555,7 +274567,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1835), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [166268] = 10, + [166282] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -274578,7 +274590,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(865), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [166301] = 4, + [166315] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7252), 1, @@ -274595,7 +274607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [166322] = 9, + [166336] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1663), 1, @@ -274617,7 +274629,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [166353] = 9, + [166367] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -274639,7 +274651,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(914), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [166384] = 10, + [166398] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6966), 1, @@ -274659,10 +274671,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(6976), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4470), 2, + STATE(4473), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [166417] = 6, + [166431] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7759), 1, @@ -274681,7 +274693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [166442] = 10, + [166456] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4709), 1, @@ -274704,7 +274716,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2858), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [166475] = 4, + [166489] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4184), 1, @@ -274720,7 +274732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [166495] = 8, + [166509] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1730), 1, @@ -274740,7 +274752,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(889), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [166523] = 4, + [166537] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4186), 1, @@ -274756,7 +274768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [166543] = 8, + [166557] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1730), 1, @@ -274776,7 +274788,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(889), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [166571] = 4, + [166585] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4188), 1, @@ -274792,7 +274804,7 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [166591] = 8, + [166605] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3627), 1, @@ -274812,7 +274824,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1739), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [166619] = 8, + [166633] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1730), 1, @@ -274832,7 +274844,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(889), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [166647] = 8, + [166661] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3539), 1, @@ -274852,7 +274864,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(4027), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [166675] = 8, + [166689] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -274861,7 +274873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, STATE(4192), 1, sym_comment, - STATE(4898), 1, + STATE(4953), 1, sym__immediate_decimal, ACTIONS(6956), 2, aux_sym__immediate_decimal_token1, @@ -274872,7 +274884,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(889), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [166703] = 8, + [166717] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3491), 1, @@ -274892,7 +274904,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3766), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [166731] = 8, + [166745] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3491), 1, @@ -274912,7 +274924,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3766), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [166759] = 8, + [166773] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1797), 1, @@ -274932,7 +274944,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1313), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [166787] = 8, + [166801] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6968), 1, @@ -274941,7 +274953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, STATE(4196), 1, sym_comment, - STATE(4923), 1, + STATE(4905), 1, sym__immediate_decimal, ACTIONS(7142), 2, aux_sym__immediate_decimal_token1, @@ -274949,10 +274961,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7777), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(5011), 2, + STATE(5135), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [166815] = 8, + [166829] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4711), 1, @@ -274972,7 +274984,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2867), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [166843] = 6, + [166857] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7785), 1, @@ -274990,7 +275002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [166867] = 8, + [166881] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -275010,7 +275022,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(876), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [166895] = 5, + [166909] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7789), 1, @@ -275027,7 +275039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [166917] = 5, + [166931] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7791), 1, @@ -275044,7 +275056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [166939] = 6, + [166953] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7793), 1, @@ -275062,7 +275074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [166963] = 8, + [166977] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3491), 1, @@ -275071,7 +275083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, STATE(4203), 1, sym_comment, - STATE(4601), 1, + STATE(4579), 1, sym__immediate_decimal, ACTIONS(6950), 2, aux_sym__immediate_decimal_token1, @@ -275082,7 +275094,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3768), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [166991] = 8, + [167005] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1730), 1, @@ -275102,7 +275114,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(784), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [167019] = 8, + [167033] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1797), 1, @@ -275122,7 +275134,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1313), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [167047] = 4, + [167061] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4206), 1, @@ -275138,7 +275150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [167067] = 8, + [167081] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1730), 1, @@ -275158,7 +275170,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(865), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [167095] = 8, + [167109] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1797), 1, @@ -275178,7 +275190,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1311), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [167123] = 8, + [167137] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1799), 1, @@ -275198,7 +275210,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1311), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [167151] = 8, + [167165] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4804), 1, @@ -275218,7 +275230,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2931), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [167179] = 5, + [167193] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7455), 1, @@ -275235,7 +275247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [167201] = 8, + [167215] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1799), 1, @@ -275255,7 +275267,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1313), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [167229] = 8, + [167243] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1730), 1, @@ -275275,7 +275287,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(876), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [167257] = 8, + [167271] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -275295,7 +275307,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(876), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [167285] = 5, + [167299] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7727), 1, @@ -275312,7 +275324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [167307] = 4, + [167321] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4216), 1, @@ -275328,7 +275340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [167327] = 9, + [167341] = 9, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1157), 1, @@ -275349,7 +275361,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4695), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [167357] = 8, + [167371] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4804), 1, @@ -275369,7 +275381,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2942), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [167385] = 8, + [167399] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3686), 1, @@ -275389,7 +275401,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1812), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [167413] = 8, + [167427] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1884), 1, @@ -275409,7 +275421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_PIPE, anon_sym_EQ_GT, - [167441] = 8, + [167455] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1797), 1, @@ -275429,7 +275441,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1000), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [167469] = 8, + [167483] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6968), 1, @@ -275438,7 +275450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, STATE(4222), 1, sym_comment, - STATE(5010), 1, + STATE(5134), 1, sym__immediate_decimal, ACTIONS(7130), 2, aux_sym__immediate_decimal_token1, @@ -275446,10 +275458,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7809), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(5009), 2, + STATE(5133), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [167497] = 6, + [167511] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7811), 1, @@ -275467,7 +275479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [167521] = 8, + [167535] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -275476,7 +275488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, STATE(4224), 1, sym_comment, - STATE(5368), 1, + STATE(5355), 1, sym__immediate_decimal, ACTIONS(7401), 2, aux_sym__immediate_decimal_token1, @@ -275487,7 +275499,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(889), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [167549] = 8, + [167563] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1730), 1, @@ -275507,7 +275519,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2486), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [167577] = 8, + [167591] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6968), 1, @@ -275516,7 +275528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, STATE(4226), 1, sym_comment, - STATE(5300), 1, + STATE(5377), 1, sym__immediate_decimal, ACTIONS(7130), 2, aux_sym__immediate_decimal_token1, @@ -275524,10 +275536,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7809), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(5011), 2, + STATE(5135), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [167605] = 8, + [167619] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3579), 1, @@ -275547,7 +275559,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3839), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [167633] = 7, + [167647] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7477), 1, @@ -275566,7 +275578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [167659] = 8, + [167673] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1730), 1, @@ -275586,7 +275598,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(889), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [167687] = 8, + [167701] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -275606,7 +275618,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(889), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [167715] = 8, + [167729] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1730), 1, @@ -275626,7 +275638,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(876), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [167743] = 8, + [167757] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1730), 1, @@ -275646,7 +275658,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(889), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [167771] = 5, + [167785] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7731), 1, @@ -275663,7 +275675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [167793] = 5, + [167807] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7819), 1, @@ -275680,7 +275692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [167815] = 8, + [167829] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3627), 1, @@ -275700,7 +275712,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1737), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [167843] = 8, + [167857] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3491), 1, @@ -275720,7 +275732,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3768), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [167871] = 6, + [167885] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7827), 1, @@ -275738,7 +275750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [167895] = 6, + [167909] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7831), 1, @@ -275756,7 +275768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [167919] = 8, + [167933] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -275776,7 +275788,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(876), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [167947] = 6, + [167961] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7835), 1, @@ -275794,7 +275806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [167971] = 4, + [167985] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4241), 1, @@ -275810,7 +275822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [167991] = 4, + [168005] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4242), 1, @@ -275826,7 +275838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [168011] = 8, + [168025] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6968), 1, @@ -275835,7 +275847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, STATE(4243), 1, sym_comment, - STATE(4647), 1, + STATE(4590), 1, sym__immediate_decimal, ACTIONS(6972), 2, aux_sym__immediate_decimal_token1, @@ -275843,10 +275855,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7809), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4470), 2, + STATE(4473), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [168039] = 8, + [168053] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1730), 1, @@ -275866,7 +275878,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(865), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [168067] = 8, + [168081] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3539), 1, @@ -275886,7 +275898,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(4029), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [168095] = 8, + [168109] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6968), 1, @@ -275895,7 +275907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, STATE(4246), 1, sym_comment, - STATE(5339), 1, + STATE(5373), 1, sym__immediate_decimal, ACTIONS(7130), 2, aux_sym__immediate_decimal_token1, @@ -275903,10 +275915,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7809), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4987), 2, + STATE(5021), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [168123] = 4, + [168137] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4247), 1, @@ -275922,7 +275934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [168143] = 8, + [168157] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1797), 1, @@ -275942,7 +275954,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1384), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [168171] = 8, + [168185] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4711), 1, @@ -275962,7 +275974,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2869), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [168199] = 6, + [168213] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7841), 1, @@ -275980,7 +275992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [168223] = 4, + [168237] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4251), 1, @@ -275996,7 +276008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [168243] = 8, + [168257] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1734), 1, @@ -276005,7 +276017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, STATE(4252), 1, sym_comment, - STATE(5031), 1, + STATE(5045), 1, sym__immediate_decimal, ACTIONS(7182), 2, aux_sym__immediate_decimal_token1, @@ -276016,7 +276028,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(889), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [168271] = 8, + [168285] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1730), 1, @@ -276036,7 +276048,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(889), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [168299] = 8, + [168313] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6968), 1, @@ -276045,7 +276057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, STATE(4254), 1, sym_comment, - STATE(4955), 1, + STATE(4903), 1, sym__immediate_decimal, ACTIONS(7112), 2, aux_sym__immediate_decimal_token1, @@ -276053,10 +276065,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7844), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(5011), 2, + STATE(5135), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [168327] = 8, + [168341] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1797), 1, @@ -276076,7 +276088,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1313), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [168355] = 8, + [168369] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4693), 1, @@ -276096,7 +276108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [168383] = 8, + [168397] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3686), 1, @@ -276116,7 +276128,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1818), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [168411] = 8, + [168425] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3579), 1, @@ -276136,7 +276148,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3835), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [168439] = 7, + [168453] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2090), 1, @@ -276154,7 +276166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_nu, anon_sym_env, - [168464] = 4, + [168478] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4260), 1, @@ -276169,7 +276181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [168483] = 4, + [168497] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4261), 1, @@ -276184,7 +276196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [168502] = 7, + [168516] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2549), 1, @@ -276202,7 +276214,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_nu, anon_sym_env, - [168527] = 8, + [168541] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1753), 1, @@ -276221,7 +276233,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7860), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [168554] = 8, + [168568] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1884), 1, @@ -276240,7 +276252,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7864), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [168581] = 7, + [168595] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2090), 1, @@ -276258,7 +276270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_nu, anon_sym_env, - [168606] = 4, + [168620] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4266), 1, @@ -276273,7 +276285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [168625] = 6, + [168639] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7872), 1, @@ -276290,7 +276302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [168648] = 7, + [168662] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7878), 1, @@ -276308,7 +276320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_nu, anon_sym_env, - [168673] = 6, + [168687] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7880), 1, @@ -276325,7 +276337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [168696] = 10, + [168710] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2545), 1, @@ -276346,7 +276358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, STATE(4270), 1, sym_comment, - [168727] = 7, + [168741] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7898), 1, @@ -276364,7 +276376,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_nu, anon_sym_env, - [168752] = 7, + [168766] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2090), 1, @@ -276382,7 +276394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_nu, anon_sym_env, - [168777] = 5, + [168791] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7902), 1, @@ -276398,7 +276410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [168798] = 6, + [168812] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7904), 1, @@ -276415,7 +276427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [168821] = 7, + [168835] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7910), 1, @@ -276433,7 +276445,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_nu, anon_sym_env, - [168846] = 7, + [168860] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7914), 1, @@ -276451,7 +276463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_nu, anon_sym_env, - [168871] = 5, + [168885] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7837), 1, @@ -276467,7 +276479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [168892] = 6, + [168906] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7916), 1, @@ -276484,7 +276496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [168915] = 4, + [168929] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7922), 1, @@ -276499,7 +276511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [168934] = 4, + [168948] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4280), 1, @@ -276514,7 +276526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [168953] = 8, + [168967] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2326), 1, @@ -276533,7 +276545,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7926), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [168980] = 7, + [168994] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7930), 1, @@ -276544,14 +276556,14 @@ static const uint16_t ts_small_parse_table[] = { sym_cell_path, STATE(4282), 1, sym_comment, - STATE(4535), 1, + STATE(4537), 1, aux_sym__where_predicate_lhs_repeat1, ACTIONS(7928), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [169005] = 5, + [169019] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7932), 1, @@ -276567,7 +276579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [169026] = 5, + [169040] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7934), 1, @@ -276583,7 +276595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [169047] = 5, + [169061] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7936), 1, @@ -276599,7 +276611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [169068] = 4, + [169082] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4286), 1, @@ -276614,7 +276626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [169087] = 5, + [169101] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7833), 1, @@ -276630,7 +276642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [169108] = 5, + [169122] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7932), 1, @@ -276646,7 +276658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [169129] = 7, + [169143] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7940), 1, @@ -276664,7 +276676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_nu, anon_sym_env, - [169154] = 4, + [169168] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4290), 1, @@ -276679,7 +276691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [169173] = 7, + [169187] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7944), 1, @@ -276690,14 +276702,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4328), 1, sym_path, - STATE(5246), 1, + STATE(5015), 1, sym_cell_path, ACTIONS(7942), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [169198] = 7, + [169212] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6122), 1, @@ -276715,7 +276727,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_nu, anon_sym_env, - [169223] = 4, + [169237] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4293), 1, @@ -276730,7 +276742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [169242] = 4, + [169256] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4294), 1, @@ -276745,7 +276757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [169261] = 7, + [169275] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7950), 1, @@ -276763,7 +276775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_nu, anon_sym_env, - [169286] = 7, + [169300] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5884), 1, @@ -276781,7 +276793,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_nu, anon_sym_env, - [169311] = 10, + [169325] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2545), 1, @@ -276802,7 +276814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, STATE(4297), 1, sym_comment, - [169342] = 7, + [169356] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7944), 1, @@ -276813,14 +276825,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4328), 1, sym_path, - STATE(5246), 1, + STATE(5015), 1, sym_cell_path, ACTIONS(7954), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [169367] = 5, + [169381] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7813), 1, @@ -276836,7 +276848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [169388] = 4, + [169402] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4300), 1, @@ -276851,7 +276863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [169407] = 7, + [169421] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2549), 1, @@ -276869,7 +276881,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_nu, anon_sym_env, - [169432] = 4, + [169446] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4302), 1, @@ -276883,7 +276895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [169450] = 9, + [169464] = 9, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2545), 1, @@ -276896,13 +276908,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, STATE(4303), 1, sym_comment, - STATE(4702), 1, + STATE(4636), 1, sym__variable_name, - STATE(4786), 1, - sym_val_variable, - STATE(4912), 1, + STATE(4897), 1, sym__assignment_pattern, - [169478] = 8, + STATE(4963), 1, + sym_val_variable, + [169492] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1157), 1, @@ -276920,7 +276932,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7964), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [169504] = 9, + [169518] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7970), 1, @@ -276935,11 +276947,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parameter_bracks, STATE(4305), 1, sym_comment, - STATE(4690), 1, + STATE(4698), 1, aux_sym_decl_def_repeat1, - STATE(5149), 1, + STATE(5218), 1, sym_long_flag, - [169532] = 9, + [169546] = 9, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2545), 1, @@ -276952,13 +276964,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, STATE(4306), 1, sym_comment, - STATE(4702), 1, + STATE(4636), 1, sym__variable_name, - STATE(4786), 1, - sym_val_variable, - STATE(4908), 1, + STATE(4894), 1, sym__assignment_pattern, - [169560] = 8, + STATE(4963), 1, + sym_val_variable, + [169574] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1127), 1, @@ -276976,7 +276988,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7978), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [169586] = 8, + [169600] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2118), 1, @@ -276989,12 +277001,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4328), 1, sym_path, - STATE(5249), 1, + STATE(5104), 1, sym_cell_path, ACTIONS(2120), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [169612] = 7, + [169626] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1753), 1, @@ -277003,7 +277015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, STATE(4309), 1, sym_comment, - STATE(4813), 1, + STATE(4762), 1, sym__immediate_decimal, ACTIONS(7330), 2, aux_sym__immediate_decimal_token1, @@ -277011,7 +277023,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7332), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [169636] = 4, + [169650] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4310), 1, @@ -277025,7 +277037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [169654] = 9, + [169668] = 9, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2545), 1, @@ -277038,13 +277050,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, STATE(4311), 1, sym_comment, - STATE(4702), 1, + STATE(4636), 1, sym__variable_name, - STATE(4786), 1, - sym_val_variable, - STATE(4911), 1, + STATE(4895), 1, sym__assignment_pattern, - [169682] = 9, + STATE(4963), 1, + sym_val_variable, + [169696] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7970), 1, @@ -277059,11 +277071,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parameter_parens, STATE(4312), 1, sym_comment, - STATE(4690), 1, + STATE(4698), 1, aux_sym_decl_def_repeat1, - STATE(5149), 1, + STATE(5218), 1, sym_long_flag, - [169710] = 7, + [169724] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7930), 1, @@ -277074,13 +277086,13 @@ static const uint16_t ts_small_parse_table[] = { sym_path, STATE(4313), 1, sym_comment, - STATE(4535), 1, + STATE(4537), 1, aux_sym__where_predicate_lhs_repeat1, ACTIONS(833), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [169734] = 9, + [169748] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4395), 1, @@ -277091,15 +277103,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(4314), 1, sym_comment, - STATE(4669), 1, + STATE(4683), 1, aux_sym__types_body_repeat1, - STATE(5207), 1, + STATE(4981), 1, sym_val_list, - STATE(5209), 1, + STATE(5248), 1, aux_sym__table_body_repeat1, - STATE(5700), 1, + STATE(5764), 1, sym__table_body, - [169762] = 8, + [169776] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4005), 1, @@ -277112,12 +277124,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4328), 1, sym_path, - STATE(5116), 1, + STATE(5117), 1, sym_cell_path, ACTIONS(4003), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [169788] = 9, + [169802] = 9, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2464), 1, @@ -277136,7 +277148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, STATE(4316), 1, sym_comment, - [169816] = 7, + [169830] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7940), 1, @@ -277153,7 +277165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, sym__newline, anon_sym_COLON, - [169840] = 4, + [169854] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4318), 1, @@ -277167,7 +277179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [169858] = 9, + [169872] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4395), 1, @@ -277178,15 +277190,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(4319), 1, sym_comment, - STATE(4669), 1, + STATE(4683), 1, aux_sym__types_body_repeat1, - STATE(5207), 1, + STATE(4981), 1, sym_val_list, - STATE(5209), 1, + STATE(5248), 1, aux_sym__table_body_repeat1, - STATE(5820), 1, + STATE(5548), 1, sym__table_body, - [169886] = 7, + [169900] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5884), 1, @@ -277197,13 +277209,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__where_predicate_lhs_repeat1, STATE(4320), 1, sym_comment, - STATE(5257), 1, + STATE(5198), 1, sym_cell_path, ACTIONS(5253), 3, anon_sym_if, anon_sym_PIPE, anon_sym_EQ_GT, - [169910] = 9, + [169924] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4395), 1, @@ -277214,32 +277226,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(4321), 1, sym_comment, - STATE(4669), 1, + STATE(4683), 1, aux_sym__types_body_repeat1, - STATE(5207), 1, + STATE(4981), 1, sym_val_list, - STATE(5209), 1, + STATE(5248), 1, aux_sym__table_body_repeat1, - STATE(5805), 1, + STATE(5839), 1, sym__table_body, - [169938] = 7, + [169952] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5120), 1, anon_sym_DOT2, STATE(4322), 1, sym_comment, - STATE(4451), 1, + STATE(4454), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4954), 1, + STATE(4820), 1, sym_path, - STATE(5071), 1, + STATE(5046), 1, sym_cell_path, ACTIONS(2221), 3, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, - [169962] = 9, + [169976] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7970), 1, @@ -277256,9 +277268,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4405), 1, aux_sym_decl_def_repeat1, - STATE(5149), 1, + STATE(5218), 1, sym_long_flag, - [169990] = 6, + [170004] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7998), 1, @@ -277274,7 +277286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [170012] = 9, + [170026] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7970), 1, @@ -277289,11 +277301,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parameter_bracks, STATE(4325), 1, sym_comment, - STATE(4690), 1, + STATE(4698), 1, aux_sym_decl_def_repeat1, - STATE(5149), 1, + STATE(5218), 1, sym_long_flag, - [170040] = 9, + [170054] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7970), 1, @@ -277308,11 +277320,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parameter_bracks, STATE(4326), 1, sym_comment, - STATE(4690), 1, + STATE(4698), 1, aux_sym_decl_def_repeat1, - STATE(5149), 1, + STATE(5218), 1, sym_long_flag, - [170068] = 8, + [170082] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2086), 1, @@ -277325,12 +277337,12 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4328), 1, sym_path, - STATE(5001), 1, + STATE(5128), 1, sym_cell_path, ACTIONS(2088), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [170094] = 4, + [170108] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4328), 1, @@ -277344,7 +277356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [170112] = 9, + [170126] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7970), 1, @@ -277361,9 +277373,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4365), 1, aux_sym_decl_def_repeat1, - STATE(5149), 1, + STATE(5218), 1, sym_long_flag, - [170140] = 9, + [170154] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7970), 1, @@ -277380,9 +277392,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_decl_def_repeat1, STATE(4330), 1, sym_comment, - STATE(5149), 1, + STATE(5218), 1, sym_long_flag, - [170168] = 9, + [170182] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4395), 1, @@ -277393,15 +277405,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(4331), 1, sym_comment, - STATE(4669), 1, + STATE(4683), 1, aux_sym__types_body_repeat1, - STATE(5207), 1, + STATE(4981), 1, sym_val_list, - STATE(5209), 1, + STATE(5248), 1, aux_sym__table_body_repeat1, - STATE(5519), 1, + STATE(5706), 1, sym__table_body, - [170196] = 8, + [170210] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2108), 1, @@ -277414,12 +277426,12 @@ static const uint16_t ts_small_parse_table[] = { sym_path, STATE(4332), 1, sym_comment, - STATE(5096), 1, + STATE(5054), 1, sym_cell_path, ACTIONS(2111), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [170222] = 9, + [170236] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4395), 1, @@ -277430,15 +277442,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(4333), 1, sym_comment, - STATE(4669), 1, + STATE(4683), 1, aux_sym__types_body_repeat1, - STATE(5207), 1, + STATE(4981), 1, sym_val_list, - STATE(5209), 1, + STATE(5248), 1, aux_sym__table_body_repeat1, - STATE(5961), 1, + STATE(5469), 1, sym__table_body, - [170250] = 5, + [170264] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8006), 1, @@ -277453,7 +277465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [170270] = 5, + [170284] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7906), 1, @@ -277468,7 +277480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [170290] = 8, + [170304] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2219), 1, @@ -277481,12 +277493,12 @@ static const uint16_t ts_small_parse_table[] = { sym_path, STATE(4336), 1, sym_comment, - STATE(5163), 1, + STATE(5220), 1, sym_cell_path, ACTIONS(2221), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [170316] = 8, + [170330] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4009), 1, @@ -277499,12 +277511,12 @@ static const uint16_t ts_small_parse_table[] = { sym_path, STATE(4337), 1, sym_comment, - STATE(5125), 1, + STATE(5132), 1, sym_cell_path, ACTIONS(4007), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [170342] = 9, + [170356] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7970), 1, @@ -277519,11 +277531,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parameter_bracks, STATE(4338), 1, sym_comment, - STATE(4690), 1, + STATE(4698), 1, aux_sym_decl_def_repeat1, - STATE(5149), 1, + STATE(5218), 1, sym_long_flag, - [170370] = 8, + [170384] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2142), 1, @@ -277536,12 +277548,12 @@ static const uint16_t ts_small_parse_table[] = { sym_path, STATE(4339), 1, sym_comment, - STATE(5212), 1, + STATE(5249), 1, sym_cell_path, ACTIONS(2144), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [170396] = 8, + [170410] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2130), 1, @@ -277554,12 +277566,12 @@ static const uint16_t ts_small_parse_table[] = { sym_path, STATE(4340), 1, sym_comment, - STATE(5027), 1, + STATE(5146), 1, sym_cell_path, ACTIONS(2132), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [170422] = 9, + [170436] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7970), 1, @@ -277574,11 +277586,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parameter_bracks, STATE(4341), 1, sym_comment, - STATE(4690), 1, + STATE(4698), 1, aux_sym_decl_def_repeat1, - STATE(5149), 1, + STATE(5218), 1, sym_long_flag, - [170450] = 4, + [170464] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4342), 1, @@ -277592,7 +277604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [170468] = 4, + [170482] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4343), 1, @@ -277606,7 +277618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [170486] = 9, + [170500] = 9, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2464), 1, @@ -277625,7 +277637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, STATE(4344), 1, sym_comment, - [170514] = 7, + [170528] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1753), 1, @@ -277634,7 +277646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, STATE(4345), 1, sym_comment, - STATE(4821), 1, + STATE(4782), 1, sym__immediate_decimal, ACTIONS(8010), 2, aux_sym__immediate_decimal_token1, @@ -277642,7 +277654,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8012), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [170538] = 9, + [170552] = 9, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2814), 1, @@ -277661,7 +277673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_module, STATE(4346), 1, sym_comment, - [170566] = 9, + [170580] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4395), 1, @@ -277672,15 +277684,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(4347), 1, sym_comment, - STATE(4669), 1, + STATE(4683), 1, aux_sym__types_body_repeat1, - STATE(5207), 1, + STATE(4981), 1, sym_val_list, - STATE(5209), 1, + STATE(5248), 1, aux_sym__table_body_repeat1, - STATE(5785), 1, + STATE(5786), 1, sym__table_body, - [170594] = 8, + [170608] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2326), 1, @@ -277698,7 +277710,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8030), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [170620] = 9, + [170634] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7970), 1, @@ -277715,9 +277727,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_decl_def_repeat1, STATE(4349), 1, sym_comment, - STATE(5149), 1, + STATE(5218), 1, sym_long_flag, - [170648] = 9, + [170662] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4395), 1, @@ -277728,15 +277740,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(4350), 1, sym_comment, - STATE(4669), 1, + STATE(4683), 1, aux_sym__types_body_repeat1, - STATE(5207), 1, + STATE(4981), 1, sym_val_list, - STATE(5209), 1, + STATE(5248), 1, aux_sym__table_body_repeat1, - STATE(5792), 1, + STATE(5793), 1, sym__table_body, - [170676] = 4, + [170690] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4351), 1, @@ -277750,7 +277762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [170694] = 6, + [170708] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1753), 1, @@ -277766,7 +277778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_PIPE, anon_sym_EQ_GT, - [170716] = 7, + [170730] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7930), 1, @@ -277777,13 +277789,13 @@ static const uint16_t ts_small_parse_table[] = { sym_cell_path, STATE(4353), 1, sym_comment, - STATE(4535), 1, + STATE(4537), 1, aux_sym__where_predicate_lhs_repeat1, ACTIONS(2130), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [170740] = 4, + [170754] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4354), 1, @@ -277797,7 +277809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [170758] = 8, + [170772] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4021), 1, @@ -277810,12 +277822,12 @@ static const uint16_t ts_small_parse_table[] = { sym_path, STATE(4355), 1, sym_comment, - STATE(5233), 1, + STATE(4992), 1, sym_cell_path, ACTIONS(4019), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [170784] = 6, + [170798] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(8038), 1, @@ -277824,14 +277836,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, STATE(4356), 1, sym_comment, - STATE(4736), 1, + STATE(4806), 1, sym__path_suffix, ACTIONS(837), 4, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, anon_sym_DOT2, - [170806] = 9, + [170820] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4395), 1, @@ -277842,15 +277854,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(4357), 1, sym_comment, - STATE(4669), 1, + STATE(4683), 1, aux_sym__types_body_repeat1, - STATE(5207), 1, + STATE(4981), 1, sym_val_list, - STATE(5209), 1, + STATE(5248), 1, aux_sym__table_body_repeat1, - STATE(5455), 1, + STATE(5457), 1, sym__table_body, - [170834] = 6, + [170848] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8044), 1, @@ -277866,7 +277878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [170856] = 9, + [170870] = 9, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2545), 1, @@ -277879,13 +277891,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, STATE(4359), 1, sym_comment, - STATE(4702), 1, + STATE(4636), 1, sym__variable_name, - STATE(4786), 1, - sym_val_variable, - STATE(4908), 1, + STATE(4894), 1, sym__assignment_pattern, - [170884] = 9, + STATE(4963), 1, + sym_val_variable, + [170898] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7970), 1, @@ -277902,9 +277914,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4380), 1, aux_sym_decl_def_repeat1, - STATE(5149), 1, + STATE(5218), 1, sym_long_flag, - [170912] = 6, + [170926] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2336), 1, @@ -277920,7 +277932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_PIPE, anon_sym_EQ_GT, - [170934] = 4, + [170948] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4362), 1, @@ -277934,7 +277946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [170952] = 9, + [170966] = 9, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2545), 1, @@ -277947,13 +277959,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, STATE(4363), 1, sym_comment, - STATE(4702), 1, + STATE(4636), 1, sym__variable_name, - STATE(4786), 1, - sym_val_variable, - STATE(4911), 1, + STATE(4895), 1, sym__assignment_pattern, - [170980] = 9, + STATE(4963), 1, + sym_val_variable, + [170994] = 9, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2545), 1, @@ -277966,13 +277978,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, STATE(4364), 1, sym_comment, - STATE(4702), 1, + STATE(4636), 1, sym__variable_name, - STATE(4786), 1, - sym_val_variable, - STATE(4912), 1, + STATE(4897), 1, sym__assignment_pattern, - [171008] = 9, + STATE(4963), 1, + sym_val_variable, + [171022] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7970), 1, @@ -277987,11 +277999,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parameter_bracks, STATE(4365), 1, sym_comment, - STATE(4690), 1, + STATE(4698), 1, aux_sym_decl_def_repeat1, - STATE(5149), 1, + STATE(5218), 1, sym_long_flag, - [171036] = 9, + [171050] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7970), 1, @@ -278008,9 +278020,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4386), 1, aux_sym_decl_def_repeat1, - STATE(5149), 1, + STATE(5218), 1, sym_long_flag, - [171064] = 9, + [171078] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4395), 1, @@ -278021,15 +278033,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(4367), 1, sym_comment, - STATE(4669), 1, + STATE(4683), 1, aux_sym__types_body_repeat1, - STATE(5207), 1, + STATE(4981), 1, sym_val_list, - STATE(5209), 1, + STATE(5248), 1, aux_sym__table_body_repeat1, - STATE(5765), 1, + STATE(5778), 1, sym__table_body, - [171092] = 6, + [171106] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(8038), 1, @@ -278038,14 +278050,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, STATE(4368), 1, sym_comment, - STATE(4737), 1, + STATE(4807), 1, sym__path_suffix, ACTIONS(845), 4, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, anon_sym_DOT2, - [171114] = 9, + [171128] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7970), 1, @@ -278062,9 +278074,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4398), 1, aux_sym_decl_def_repeat1, - STATE(5149), 1, + STATE(5218), 1, sym_long_flag, - [171142] = 8, + [171156] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1753), 1, @@ -278082,7 +278094,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8056), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [171168] = 8, + [171182] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2326), 1, @@ -278100,7 +278112,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8060), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [171194] = 7, + [171208] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7930), 1, @@ -278111,13 +278123,13 @@ static const uint16_t ts_small_parse_table[] = { sym_cell_path, STATE(4372), 1, sym_comment, - STATE(4535), 1, + STATE(4537), 1, aux_sym__where_predicate_lhs_repeat1, ACTIONS(2118), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [171218] = 9, + [171232] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7970), 1, @@ -278132,11 +278144,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parameter_bracks, STATE(4373), 1, sym_comment, - STATE(4690), 1, + STATE(4698), 1, aux_sym_decl_def_repeat1, - STATE(5149), 1, + STATE(5218), 1, sym_long_flag, - [171246] = 4, + [171260] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4374), 1, @@ -278150,7 +278162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [171264] = 8, + [171278] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1753), 1, @@ -278168,7 +278180,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8064), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [171290] = 9, + [171304] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7970), 1, @@ -278185,9 +278197,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_decl_def_repeat1, STATE(4376), 1, sym_comment, - STATE(5149), 1, + STATE(5218), 1, sym_long_flag, - [171318] = 7, + [171332] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7930), 1, @@ -278198,13 +278210,13 @@ static const uint16_t ts_small_parse_table[] = { sym_cell_path, STATE(4377), 1, sym_comment, - STATE(4535), 1, + STATE(4537), 1, aux_sym__where_predicate_lhs_repeat1, ACTIONS(2086), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [171342] = 5, + [171356] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8066), 1, @@ -278219,7 +278231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [171362] = 7, + [171376] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5884), 1, @@ -278230,13 +278242,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__where_predicate_lhs_repeat1, STATE(4379), 1, sym_comment, - STATE(5221), 1, + STATE(5254), 1, sym_cell_path, ACTIONS(5146), 3, anon_sym_if, anon_sym_PIPE, anon_sym_EQ_GT, - [171386] = 9, + [171400] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7970), 1, @@ -278251,11 +278263,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parameter_bracks, STATE(4380), 1, sym_comment, - STATE(4690), 1, + STATE(4698), 1, aux_sym_decl_def_repeat1, - STATE(5149), 1, + STATE(5218), 1, sym_long_flag, - [171414] = 6, + [171428] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(8068), 1, @@ -278271,7 +278283,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, sym__unquoted_pattern, - [171436] = 9, + [171450] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4395), 1, @@ -278282,15 +278294,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(4382), 1, sym_comment, - STATE(4669), 1, + STATE(4683), 1, aux_sym__types_body_repeat1, - STATE(5207), 1, + STATE(4981), 1, sym_val_list, - STATE(5209), 1, + STATE(5248), 1, aux_sym__table_body_repeat1, - STATE(5479), 1, + STATE(5481), 1, sym__table_body, - [171464] = 6, + [171478] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(8074), 1, @@ -278306,7 +278318,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, sym__unquoted_pattern, - [171486] = 9, + [171500] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7970), 1, @@ -278323,9 +278335,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_decl_def_repeat1, STATE(4384), 1, sym_comment, - STATE(5149), 1, + STATE(5218), 1, sym_long_flag, - [171514] = 9, + [171528] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4395), 1, @@ -278336,15 +278348,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(4385), 1, sym_comment, - STATE(4669), 1, + STATE(4683), 1, aux_sym__types_body_repeat1, - STATE(5207), 1, + STATE(4981), 1, sym_val_list, - STATE(5209), 1, + STATE(5248), 1, aux_sym__table_body_repeat1, - STATE(5669), 1, + STATE(5705), 1, sym__table_body, - [171542] = 9, + [171556] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7970), 1, @@ -278359,11 +278371,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parameter_bracks, STATE(4386), 1, sym_comment, - STATE(4690), 1, + STATE(4698), 1, aux_sym_decl_def_repeat1, - STATE(5149), 1, + STATE(5218), 1, sym_long_flag, - [171570] = 4, + [171584] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4387), 1, @@ -278377,7 +278389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [171588] = 9, + [171602] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7970), 1, @@ -278394,9 +278406,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_decl_def_repeat1, STATE(4388), 1, sym_comment, - STATE(5149), 1, + STATE(5218), 1, sym_long_flag, - [171616] = 7, + [171630] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7930), 1, @@ -278407,30 +278419,30 @@ static const uint16_t ts_small_parse_table[] = { sym_cell_path, STATE(4389), 1, sym_comment, - STATE(4535), 1, + STATE(4537), 1, aux_sym__where_predicate_lhs_repeat1, ACTIONS(2142), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [171640] = 7, + [171654] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5120), 1, anon_sym_DOT2, STATE(4390), 1, sym_comment, - STATE(4451), 1, + STATE(4454), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4954), 1, + STATE(4820), 1, sym_path, - STATE(5239), 1, + STATE(5103), 1, sym_cell_path, ACTIONS(2144), 3, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, - [171664] = 9, + [171678] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4395), 1, @@ -278441,15 +278453,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(4391), 1, sym_comment, - STATE(4669), 1, + STATE(4683), 1, aux_sym__types_body_repeat1, - STATE(5207), 1, + STATE(4981), 1, sym_val_list, - STATE(5209), 1, + STATE(5248), 1, aux_sym__table_body_repeat1, - STATE(5732), 1, + STATE(5562), 1, sym__table_body, - [171692] = 4, + [171706] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4392), 1, @@ -278463,7 +278475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [171710] = 7, + [171724] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7930), 1, @@ -278474,13 +278486,13 @@ static const uint16_t ts_small_parse_table[] = { sym_cell_path, STATE(4393), 1, sym_comment, - STATE(4535), 1, + STATE(4537), 1, aux_sym__where_predicate_lhs_repeat1, ACTIONS(2108), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [171734] = 9, + [171748] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4395), 1, @@ -278491,15 +278503,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(4394), 1, sym_comment, - STATE(4669), 1, + STATE(4683), 1, aux_sym__types_body_repeat1, - STATE(5207), 1, + STATE(4981), 1, sym_val_list, - STATE(5209), 1, + STATE(5248), 1, aux_sym__table_body_repeat1, - STATE(5752), 1, + STATE(5611), 1, sym__table_body, - [171762] = 9, + [171776] = 9, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2464), 1, @@ -278518,7 +278530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, STATE(4395), 1, sym_comment, - [171790] = 9, + [171804] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4395), 1, @@ -278529,15 +278541,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(4396), 1, sym_comment, - STATE(4669), 1, + STATE(4683), 1, aux_sym__types_body_repeat1, - STATE(5207), 1, + STATE(4981), 1, sym_val_list, - STATE(5209), 1, + STATE(5248), 1, aux_sym__table_body_repeat1, - STATE(5698), 1, + STATE(5700), 1, sym__table_body, - [171818] = 9, + [171832] = 9, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2464), 1, @@ -278556,7 +278568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, STATE(4397), 1, sym_comment, - [171846] = 9, + [171860] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7970), 1, @@ -278571,11 +278583,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parameter_bracks, STATE(4398), 1, sym_comment, - STATE(4690), 1, + STATE(4698), 1, aux_sym_decl_def_repeat1, - STATE(5149), 1, + STATE(5218), 1, sym_long_flag, - [171874] = 9, + [171888] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7970), 1, @@ -278592,9 +278604,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_decl_def_repeat1, STATE(4399), 1, sym_comment, - STATE(5149), 1, + STATE(5218), 1, sym_long_flag, - [171902] = 9, + [171916] = 9, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2464), 1, @@ -278613,7 +278625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, STATE(4400), 1, sym_comment, - [171930] = 9, + [171944] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7970), 1, @@ -278630,9 +278642,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_decl_def_repeat1, STATE(4401), 1, sym_comment, - STATE(5149), 1, + STATE(5218), 1, sym_long_flag, - [171958] = 5, + [171972] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7918), 1, @@ -278647,7 +278659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [171978] = 4, + [171992] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4403), 1, @@ -278661,7 +278673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [171996] = 7, + [172010] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7930), 1, @@ -278672,13 +278684,13 @@ static const uint16_t ts_small_parse_table[] = { sym_cell_path, STATE(4404), 1, sym_comment, - STATE(4535), 1, + STATE(4537), 1, aux_sym__where_predicate_lhs_repeat1, ACTIONS(2219), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [172020] = 9, + [172034] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7970), 1, @@ -278693,11 +278705,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parameter_bracks, STATE(4405), 1, sym_comment, - STATE(4690), 1, + STATE(4698), 1, aux_sym_decl_def_repeat1, - STATE(5149), 1, + STATE(5218), 1, sym_long_flag, - [172048] = 8, + [172062] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2814), 1, @@ -278708,181 +278720,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, STATE(4406), 1, sym_comment, - STATE(4644), 1, + STATE(4588), 1, sym__variable_name, - STATE(4786), 1, + STATE(4963), 1, sym_val_variable, - STATE(5230), 1, + STATE(5016), 1, sym__assignment_pattern, - [172073] = 5, + [172087] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7330), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7601), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8098), 1, + aux_sym_unquoted_token2, + STATE(4407), 1, + sym_comment, + STATE(4740), 1, + sym__immediate_decimal, + ACTIONS(7603), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [172110] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7401), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7713), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(8098), 1, + aux_sym_unquoted_token2, + STATE(4408), 1, + sym_comment, + STATE(5493), 1, + sym__immediate_decimal, + ACTIONS(7715), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [172133] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4693), 1, + anon_sym_DOT_DOT2, + ACTIONS(8098), 1, + sym__unquoted_pattern, + STATE(4409), 1, + sym_comment, + ACTIONS(4695), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(8100), 2, + sym_filesize_unit, + sym_duration_unit, + [172154] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1753), 1, + sym__unquoted_pattern_in_record, + STATE(4410), 1, + sym_comment, + STATE(5971), 1, + sym__immediate_decimal, + ACTIONS(8102), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(8104), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [172175] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4367), 1, anon_sym_LBRACE, - STATE(4407), 1, + STATE(4411), 1, sym_comment, - STATE(4824), 1, + STATE(4793), 1, sym_block, - ACTIONS(8098), 4, + ACTIONS(8106), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [172092] = 5, + [172194] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4367), 1, anon_sym_LBRACE, - STATE(4408), 1, + STATE(4412), 1, sym_comment, - STATE(4826), 1, + STATE(4795), 1, sym_block, - ACTIONS(8098), 4, + ACTIONS(8106), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [172111] = 6, + [172213] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1868), 1, sym__unquoted_pattern, - ACTIONS(8100), 1, + ACTIONS(8108), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8102), 1, + ACTIONS(8110), 1, aux_sym__immediate_decimal_token5, - STATE(4409), 1, + STATE(4413), 1, sym_comment, ACTIONS(1866), 3, anon_sym_if, anon_sym_PIPE, anon_sym_EQ_GT, - [172132] = 7, + [172234] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8104), 1, + ACTIONS(8112), 1, anon_sym_LPAREN, - ACTIONS(8108), 1, + ACTIONS(8116), 1, anon_sym_DQUOTE2, - STATE(4410), 1, + STATE(4414), 1, sym_comment, - STATE(4480), 1, + STATE(4484), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4830), 1, + STATE(4808), 1, sym_expr_interpolated, - ACTIONS(8106), 2, + ACTIONS(8114), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [172155] = 7, + [172257] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(919), 1, + sym__space, + ACTIONS(8118), 1, + anon_sym_DOT_DOT2, + STATE(4415), 1, + sym_comment, + ACTIONS(923), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(8120), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [172278] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, sym__newline, - ACTIONS(8110), 1, + ACTIONS(8122), 1, anon_sym_LBRACE, STATE(691), 1, aux_sym__repeat_newline, STATE(3922), 1, sym__blosure, - STATE(4411), 1, + STATE(4416), 1, sym_comment, STATE(3849), 2, sym_block, sym_val_closure, - [172178] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(919), 1, - sym__space, - ACTIONS(8112), 1, - anon_sym_DOT_DOT2, - STATE(4412), 1, - sym_comment, - ACTIONS(923), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(8114), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [172199] = 7, + [172301] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, sym__newline, - ACTIONS(8110), 1, + ACTIONS(8122), 1, anon_sym_LBRACE, STATE(3922), 1, sym__blosure, - STATE(4413), 1, + STATE(4417), 1, sym_comment, - STATE(4464), 1, + STATE(4467), 1, aux_sym__repeat_newline, STATE(3849), 2, sym_block, sym_val_closure, - [172222] = 7, + [172324] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, sym__newline, - ACTIONS(8110), 1, + ACTIONS(8122), 1, anon_sym_LBRACE, STATE(691), 1, aux_sym__repeat_newline, STATE(3924), 1, sym__blosure, - STATE(4414), 1, + STATE(4418), 1, sym_comment, STATE(3849), 2, sym_block, sym_val_closure, - [172245] = 7, + [172347] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, sym__newline, - ACTIONS(8110), 1, + ACTIONS(8122), 1, anon_sym_LBRACE, STATE(3924), 1, sym__blosure, - STATE(4415), 1, + STATE(4419), 1, sym_comment, - STATE(4466), 1, + STATE(4469), 1, aux_sym__repeat_newline, STATE(3849), 2, sym_block, sym_val_closure, - [172268] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4416), 1, - sym_comment, - ACTIONS(857), 6, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [172283] = 6, + [172370] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2412), 1, sym__space, - ACTIONS(8116), 1, + ACTIONS(8124), 1, anon_sym_DOT_DOT2, - STATE(4417), 1, + STATE(4420), 1, sym_comment, ACTIONS(2414), 2, sym__newline, anon_sym_SEMI, - ACTIONS(8118), 2, + ACTIONS(8126), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [172304] = 3, + [172391] = 3, ACTIONS(103), 1, anon_sym_POUND, - STATE(4418), 1, + STATE(4421), 1, sym_comment, ACTIONS(872), 6, anon_sym_RBRACK, @@ -278891,10 +278953,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [172319] = 3, + [172406] = 3, ACTIONS(103), 1, anon_sym_POUND, - STATE(4419), 1, + STATE(4422), 1, sym_comment, ACTIONS(853), 6, anon_sym_RBRACK, @@ -278903,12 +278965,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [172334] = 4, + [172421] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8120), 1, + ACTIONS(8128), 1, anon_sym_LT, - STATE(4420), 1, + STATE(4423), 1, sym_comment, ACTIONS(6885), 5, anon_sym_EQ, @@ -278916,12 +278978,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_AT2, anon_sym_LBRACE, - [172351] = 4, + [172438] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8122), 1, + ACTIONS(8130), 1, anon_sym_LT, - STATE(4421), 1, + STATE(4424), 1, sym_comment, ACTIONS(6885), 5, anon_sym_EQ, @@ -278929,10 +278991,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_AT2, anon_sym_LBRACE, - [172368] = 3, + [172455] = 3, ACTIONS(103), 1, anon_sym_POUND, - STATE(4422), 1, + STATE(4425), 1, sym_comment, ACTIONS(876), 6, anon_sym_RBRACK, @@ -278941,10 +279003,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [172383] = 3, + [172470] = 3, ACTIONS(103), 1, anon_sym_POUND, - STATE(4423), 1, + STATE(4426), 1, sym_comment, ACTIONS(880), 6, anon_sym_RBRACK, @@ -278953,10 +279015,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [172398] = 3, + [172485] = 3, ACTIONS(103), 1, anon_sym_POUND, - STATE(4424), 1, + STATE(4427), 1, sym_comment, ACTIONS(861), 6, anon_sym_RBRACK, @@ -278965,41 +279027,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [172413] = 7, + [172500] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6312), 1, sym__space, - ACTIONS(8124), 1, + ACTIONS(8132), 1, anon_sym_EQ2, - ACTIONS(8126), 1, + ACTIONS(8134), 1, sym_short_flag_identifier, STATE(3683), 1, sym__flag_equals_value, - STATE(4425), 1, + STATE(4428), 1, sym_comment, ACTIONS(6310), 2, sym__newline, anon_sym_SEMI, - [172436] = 6, + [172523] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6318), 1, sym__space, - ACTIONS(8112), 1, + ACTIONS(8118), 1, anon_sym_DOT_DOT2, - STATE(4426), 1, + STATE(4429), 1, sym_comment, ACTIONS(6316), 2, sym__newline, anon_sym_SEMI, - ACTIONS(8114), 2, + ACTIONS(8120), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [172457] = 4, + [172544] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4427), 1, + STATE(4430), 1, sym_comment, ACTIONS(934), 3, anon_sym_RBRACK, @@ -279009,12 +279071,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [172474] = 5, + [172561] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(8076), 1, aux_sym__immediate_decimal_token5, - STATE(4428), 1, + STATE(4431), 1, sym_comment, ACTIONS(1896), 2, sym__space, @@ -279023,57 +279085,57 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, sym__unquoted_pattern, - [172493] = 6, + [172580] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2491), 1, sym__space, - ACTIONS(8128), 1, + ACTIONS(8136), 1, anon_sym_DOT_DOT2, - STATE(4429), 1, + STATE(4432), 1, sym_comment, ACTIONS(2493), 2, sym__newline, anon_sym_SEMI, - ACTIONS(8130), 2, + ACTIONS(8138), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [172514] = 6, + [172601] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2499), 1, sym__space, - ACTIONS(8132), 1, + ACTIONS(8140), 1, anon_sym_DOT_DOT2, - STATE(4430), 1, + STATE(4433), 1, sym_comment, ACTIONS(2501), 2, sym__newline, anon_sym_SEMI, - ACTIONS(8134), 2, + ACTIONS(8142), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [172535] = 6, + [172622] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2507), 1, sym__space, - ACTIONS(8136), 1, + ACTIONS(8144), 1, anon_sym_DOT_DOT2, - STATE(4431), 1, + STATE(4434), 1, sym_comment, ACTIONS(2509), 2, sym__newline, anon_sym_SEMI, - ACTIONS(8138), 2, + ACTIONS(8146), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [172556] = 5, + [172643] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8140), 1, + ACTIONS(8148), 1, aux_sym__immediate_decimal_token5, - STATE(4432), 1, + STATE(4435), 1, sym_comment, ACTIONS(1956), 2, sym__space, @@ -279082,14 +279144,14 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, sym__unquoted_pattern, - [172575] = 6, + [172662] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1791), 1, sym__unquoted_pattern, - STATE(4433), 1, + STATE(4436), 1, sym_comment, - STATE(5756), 1, + STATE(5769), 1, sym__immediate_decimal, ACTIONS(7401), 2, aux_sym__immediate_decimal_token1, @@ -279097,136 +279159,136 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7403), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [172596] = 5, + [172683] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4367), 1, anon_sym_LBRACE, - STATE(4434), 1, + STATE(4437), 1, sym_comment, - STATE(4919), 1, + STATE(4705), 1, sym_block, - ACTIONS(8142), 4, + ACTIONS(8150), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [172615] = 5, + [172702] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4367), 1, anon_sym_LBRACE, - STATE(4435), 1, + STATE(4438), 1, sym_comment, - STATE(4921), 1, + STATE(4753), 1, sym_block, - ACTIONS(8142), 4, + ACTIONS(8150), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [172634] = 7, + [172721] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8104), 1, + ACTIONS(8112), 1, anon_sym_LPAREN, - ACTIONS(8144), 1, + ACTIONS(8152), 1, anon_sym_DQUOTE2, - STATE(4436), 1, + STATE(4439), 1, sym_comment, - STATE(4480), 1, + STATE(4484), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4830), 1, + STATE(4808), 1, sym_expr_interpolated, - ACTIONS(8106), 2, + ACTIONS(8114), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [172657] = 6, + [172744] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1753), 1, sym__unquoted_pattern, - ACTIONS(8146), 1, + ACTIONS(8154), 1, anon_sym_DOT_DOT2, - STATE(4437), 1, + STATE(4440), 1, sym_comment, ACTIONS(2316), 2, anon_sym_PIPE, anon_sym_EQ_GT, - ACTIONS(8148), 2, + ACTIONS(8156), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [172678] = 6, + [172765] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2336), 1, sym__unquoted_pattern, - ACTIONS(8150), 1, + ACTIONS(8158), 1, anon_sym_DOT_DOT2, - STATE(4438), 1, + STATE(4441), 1, sym_comment, ACTIONS(2326), 2, anon_sym_PIPE, anon_sym_EQ_GT, - ACTIONS(8152), 2, + ACTIONS(8160), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [172699] = 7, + [172786] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, sym__newline, - ACTIONS(8110), 1, + ACTIONS(8122), 1, anon_sym_LBRACE, STATE(4016), 1, sym__blosure, - STATE(4411), 1, + STATE(4416), 1, aux_sym__repeat_newline, - STATE(4439), 1, + STATE(4442), 1, sym_comment, STATE(3849), 2, sym_block, sym_val_closure, - [172722] = 7, + [172809] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, sym__newline, - ACTIONS(8110), 1, + ACTIONS(8122), 1, anon_sym_LBRACE, STATE(691), 1, aux_sym__repeat_newline, STATE(4037), 1, sym__blosure, - STATE(4440), 1, + STATE(4443), 1, sym_comment, STATE(3849), 2, sym_block, sym_val_closure, - [172745] = 7, + [172832] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, sym__newline, - ACTIONS(8110), 1, + ACTIONS(8122), 1, anon_sym_LBRACE, STATE(4037), 1, sym__blosure, - STATE(4414), 1, + STATE(4418), 1, aux_sym__repeat_newline, - STATE(4441), 1, + STATE(4444), 1, sym_comment, STATE(3849), 2, sym_block, sym_val_closure, - [172768] = 6, + [172855] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8154), 1, + ACTIONS(8162), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8156), 1, + ACTIONS(8164), 1, aux_sym__immediate_decimal_token5, - STATE(4442), 1, + STATE(4445), 1, sym_comment, ACTIONS(1866), 2, anon_sym_LPAREN2, @@ -279234,81 +279296,81 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1868), 2, anon_sym_RBRACK, sym__unquoted_pattern_in_list, - [172789] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8158), 1, - aux_sym__immediate_decimal_token5, - STATE(4443), 1, - sym_comment, - ACTIONS(1958), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1956), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [172808] = 6, + [172876] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1898), 1, sym__unquoted_pattern, - ACTIONS(8160), 1, + ACTIONS(8166), 1, anon_sym_DOT, - ACTIONS(8162), 1, + ACTIONS(8168), 1, aux_sym__immediate_decimal_token5, - STATE(4444), 1, + STATE(4446), 1, sym_comment, ACTIONS(1896), 3, anon_sym_if, anon_sym_PIPE, anon_sym_EQ_GT, - [172829] = 5, + [172897] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8164), 1, + ACTIONS(8170), 1, + aux_sym__immediate_decimal_token5, + STATE(4447), 1, + sym_comment, + ACTIONS(1958), 2, anon_sym_DOT_DOT2, - STATE(4445), 1, + sym__unquoted_pattern, + ACTIONS(1956), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [172916] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8172), 1, + anon_sym_DOT_DOT2, + STATE(4448), 1, sym_comment, - ACTIONS(8166), 2, + ACTIONS(8174), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(5223), 3, anon_sym_if, anon_sym_PIPE, anon_sym_EQ_GT, - [172848] = 5, + [172935] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8164), 1, + ACTIONS(8172), 1, anon_sym_DOT_DOT2, - STATE(4446), 1, + STATE(4449), 1, sym_comment, - ACTIONS(8166), 2, + ACTIONS(8174), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(5230), 3, anon_sym_if, anon_sym_PIPE, anon_sym_EQ_GT, - [172867] = 8, + [172954] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8168), 1, + ACTIONS(8176), 1, sym__newline, - ACTIONS(8170), 1, + ACTIONS(8178), 1, anon_sym_SEMI, - ACTIONS(8172), 1, + ACTIONS(8180), 1, anon_sym_RPAREN, STATE(1391), 1, aux_sym__parenthesized_body_repeat1, - STATE(4447), 1, + STATE(4450), 1, sym_comment, - STATE(4828), 1, + STATE(4763), 1, aux_sym__block_body_repeat1, - STATE(5143), 1, + STATE(5119), 1, aux_sym__repeat_newline, - [172892] = 8, + [172979] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2464), 1, @@ -279317,15 +279379,30 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(7960), 1, anon_sym_DOLLAR, - STATE(4448), 1, + STATE(4451), 1, sym_comment, - STATE(4648), 1, + STATE(4578), 1, sym__variable_name, - STATE(4786), 1, + STATE(4963), 1, sym_val_variable, - STATE(5169), 1, + STATE(5260), 1, sym__assignment_pattern_parenthesized, - [172917] = 8, + [173004] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1791), 1, + sym__unquoted_pattern_in_record, + STATE(4452), 1, + sym_comment, + STATE(5794), 1, + sym__immediate_decimal, + ACTIONS(8102), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(8104), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [173025] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6224), 1, @@ -279338,41 +279415,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__where_predicate_lhs_repeat1, STATE(4328), 1, sym_path, - STATE(4449), 1, + STATE(4453), 1, sym_comment, - STATE(5299), 1, + STATE(5339), 1, sym_cell_path, - [172942] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1791), 1, - sym__unquoted_pattern_in_record, - STATE(4450), 1, - sym_comment, - STATE(5757), 1, - sym__immediate_decimal, - ACTIONS(8174), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(8176), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [172963] = 6, + [173050] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5120), 1, anon_sym_DOT2, - STATE(4451), 1, + STATE(4454), 1, sym_comment, - STATE(4460), 1, + STATE(4463), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4954), 1, + STATE(4820), 1, sym_path, ACTIONS(849), 3, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, - [172984] = 8, + [173071] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2464), 1, @@ -279381,74 +279443,31 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(7960), 1, anon_sym_DOLLAR, - STATE(4452), 1, + STATE(4455), 1, sym_comment, - STATE(4648), 1, + STATE(4578), 1, sym__variable_name, - STATE(4786), 1, + STATE(4963), 1, sym_val_variable, - STATE(5253), 1, + STATE(5270), 1, sym__assignment_pattern_parenthesized, - [173009] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4367), 1, - anon_sym_LBRACE, - STATE(4453), 1, - sym_comment, - STATE(4741), 1, - sym_block, - ACTIONS(8178), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [173028] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4367), 1, - anon_sym_LBRACE, - STATE(4454), 1, - sym_comment, - STATE(4742), 1, - sym_block, - ACTIONS(8178), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [173047] = 7, + [173096] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8104), 1, + ACTIONS(8112), 1, anon_sym_LPAREN, - ACTIONS(8180), 1, + ACTIONS(8182), 1, anon_sym_DQUOTE2, - STATE(4455), 1, + STATE(4456), 1, sym_comment, - STATE(4461), 1, + STATE(4464), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4830), 1, + STATE(4808), 1, sym_expr_interpolated, - ACTIONS(8106), 2, + ACTIONS(8114), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [173070] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8182), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8184), 1, - aux_sym__immediate_decimal_token5, - STATE(4456), 1, - sym_comment, - ACTIONS(1866), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1868), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [173091] = 7, + [173119] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4701), 1, @@ -279459,12 +279478,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token2, STATE(4457), 1, sym_comment, - STATE(4811), 1, + STATE(4740), 1, sym__immediate_decimal, ACTIONS(7603), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [173114] = 7, + [173142] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4701), 1, @@ -279475,12 +279494,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token2, STATE(4458), 1, sym_comment, - STATE(5687), 1, + STATE(5493), 1, sym__immediate_decimal, ACTIONS(7715), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [173137] = 8, + [173165] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8184), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8186), 1, + aux_sym__immediate_decimal_token5, + STATE(4459), 1, + sym_comment, + ACTIONS(1866), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1868), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [173186] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4367), 1, + anon_sym_LBRACE, + STATE(4460), 1, + sym_comment, + STATE(4827), 1, + sym_block, + ACTIONS(8188), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [173205] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4367), 1, + anon_sym_LBRACE, + STATE(4461), 1, + sym_comment, + STATE(4829), 1, + sym_block, + ACTIONS(8188), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [173224] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2464), 1, @@ -279489,133 +279551,133 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(7960), 1, anon_sym_DOLLAR, - STATE(4459), 1, + STATE(4462), 1, sym_comment, - STATE(4648), 1, + STATE(4578), 1, sym__variable_name, - STATE(4786), 1, + STATE(4963), 1, sym_val_variable, - STATE(5066), 1, + STATE(5273), 1, sym__assignment_pattern_parenthesized, - [173162] = 5, + [173249] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8186), 1, + ACTIONS(8190), 1, anon_sym_DOT2, - STATE(4954), 1, + STATE(4820), 1, sym_path, - STATE(4460), 2, + STATE(4463), 2, sym_comment, aux_sym__where_predicate_lhs_repeat1, ACTIONS(865), 3, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, - [173181] = 7, + [173268] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8104), 1, + ACTIONS(8112), 1, anon_sym_LPAREN, - ACTIONS(8189), 1, + ACTIONS(8193), 1, anon_sym_DQUOTE2, - STATE(4461), 1, + STATE(4464), 1, sym_comment, - STATE(4480), 1, + STATE(4484), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4830), 1, + STATE(4808), 1, sym_expr_interpolated, - ACTIONS(8106), 2, + ACTIONS(8114), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [173204] = 8, + [173291] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4269), 1, sym__entry_separator, ACTIONS(7477), 1, anon_sym_DOT2, - ACTIONS(8191), 1, + ACTIONS(8195), 1, anon_sym_RBRACE, STATE(4228), 1, aux_sym__where_predicate_lhs_repeat1, STATE(4328), 1, sym_path, - STATE(4462), 1, + STATE(4465), 1, sym_comment, - STATE(5096), 1, + STATE(5054), 1, sym_cell_path, - [173229] = 7, + [173316] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, sym__newline, - ACTIONS(8110), 1, + ACTIONS(8122), 1, anon_sym_LBRACE, STATE(3991), 1, sym__blosure, - STATE(4440), 1, + STATE(4443), 1, aux_sym__repeat_newline, - STATE(4463), 1, + STATE(4466), 1, sym_comment, STATE(3849), 2, sym_block, sym_val_closure, - [173252] = 7, + [173339] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, sym__newline, - ACTIONS(8110), 1, + ACTIONS(8122), 1, anon_sym_LBRACE, STATE(691), 1, aux_sym__repeat_newline, STATE(3951), 1, sym__blosure, - STATE(4464), 1, + STATE(4467), 1, sym_comment, STATE(3849), 2, sym_block, sym_val_closure, - [173275] = 7, + [173362] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, sym__newline, - ACTIONS(8110), 1, + ACTIONS(8122), 1, anon_sym_LBRACE, STATE(3951), 1, sym__blosure, - STATE(4465), 1, + STATE(4468), 1, sym_comment, - STATE(4494), 1, + STATE(4499), 1, aux_sym__repeat_newline, STATE(3849), 2, sym_block, sym_val_closure, - [173298] = 7, + [173385] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, sym__newline, - ACTIONS(8110), 1, + ACTIONS(8122), 1, anon_sym_LBRACE, STATE(691), 1, aux_sym__repeat_newline, STATE(3985), 1, sym__blosure, - STATE(4466), 1, + STATE(4469), 1, sym_comment, STATE(3849), 2, sym_block, sym_val_closure, - [173321] = 6, + [173408] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8195), 1, + ACTIONS(8199), 1, anon_sym_DOT, - ACTIONS(8197), 1, + ACTIONS(8201), 1, aux_sym__immediate_decimal_token5, - STATE(4467), 1, + STATE(4470), 1, sym_comment, ACTIONS(1896), 2, anon_sym_LPAREN2, @@ -279623,24 +279685,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1898), 2, anon_sym_RBRACK, sym__unquoted_pattern_in_list, - [173342] = 8, + [173429] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(551), 1, anon_sym_RPAREN, - ACTIONS(8168), 1, + ACTIONS(8176), 1, sym__newline, - ACTIONS(8170), 1, + ACTIONS(8178), 1, anon_sym_SEMI, STATE(1391), 1, aux_sym__parenthesized_body_repeat1, - STATE(4468), 1, + STATE(4471), 1, sym_comment, - STATE(4707), 1, + STATE(4950), 1, aux_sym__block_body_repeat1, - STATE(5143), 1, + STATE(5119), 1, aux_sym__repeat_newline, - [173367] = 8, + [173454] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(3991), 1, @@ -279653,26 +279715,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__where_predicate_lhs_repeat1, STATE(4328), 1, sym_path, - STATE(4469), 1, + STATE(4472), 1, sym_comment, - STATE(5351), 1, + STATE(5311), 1, sym_cell_path, - [173392] = 6, + [173479] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2412), 1, sym__entry_separator, - ACTIONS(8199), 1, + ACTIONS(8203), 1, anon_sym_DOT_DOT2, - STATE(4470), 1, + STATE(4473), 1, sym_comment, ACTIONS(2414), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(8201), 2, + ACTIONS(8205), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [173413] = 8, + [173500] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2814), 1, @@ -279681,15 +279743,15 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(7960), 1, anon_sym_DOLLAR, - STATE(4471), 1, + STATE(4474), 1, sym_comment, - STATE(4644), 1, + STATE(4588), 1, sym__variable_name, - STATE(4786), 1, + STATE(4963), 1, sym_val_variable, - STATE(5264), 1, + STATE(5018), 1, sym__assignment_pattern, - [173438] = 8, + [173525] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2814), 1, @@ -279698,83 +279760,68 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(7960), 1, anon_sym_DOLLAR, - STATE(4472), 1, + STATE(4475), 1, sym_comment, - STATE(4644), 1, + STATE(4588), 1, sym__variable_name, - STATE(4786), 1, + STATE(4963), 1, sym_val_variable, - STATE(4993), 1, + STATE(5024), 1, sym__assignment_pattern, - [173463] = 5, + [173550] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8205), 1, + ACTIONS(8209), 1, anon_sym_AT, - STATE(5320), 1, + STATE(5280), 1, sym_attribute, - STATE(4473), 2, + STATE(4476), 2, sym_comment, aux_sym_attribute_list_repeat1, - ACTIONS(8203), 3, + ACTIONS(8207), 3, anon_sym_export, anon_sym_def, anon_sym_extern, - [173482] = 7, + [173569] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7330), 1, aux_sym__immediate_decimal_token1, ACTIONS(7601), 1, aux_sym__immediate_decimal_token2, - ACTIONS(8208), 1, + ACTIONS(8212), 1, aux_sym_unquoted_token2, - STATE(4474), 1, + STATE(4477), 1, sym_comment, - STATE(4811), 1, + STATE(4740), 1, sym__immediate_decimal, ACTIONS(7603), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [173505] = 7, + [173592] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7401), 1, aux_sym__immediate_decimal_token1, ACTIONS(7713), 1, aux_sym__immediate_decimal_token2, - ACTIONS(8208), 1, + ACTIONS(8212), 1, aux_sym_unquoted_token2, - STATE(4475), 1, + STATE(4478), 1, sym_comment, - STATE(5687), 1, + STATE(5493), 1, sym__immediate_decimal, ACTIONS(7715), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [173528] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4693), 1, - anon_sym_DOT_DOT2, - ACTIONS(8208), 1, - sym__unquoted_pattern, - STATE(4476), 1, - sym_comment, - ACTIONS(4695), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(8210), 2, - sym_filesize_unit, - sym_duration_unit, - [173549] = 6, + [173615] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8212), 1, - anon_sym_DOT, ACTIONS(8214), 1, + anon_sym_DOT, + ACTIONS(8216), 1, aux_sym__immediate_decimal_token5, - STATE(4477), 1, + STATE(4479), 1, sym_comment, ACTIONS(1896), 2, anon_sym_LPAREN2, @@ -279782,10 +279829,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1898), 2, anon_sym_RBRACE, sym__unquoted_pattern_in_record, - [173570] = 4, + [173636] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4478), 1, + ACTIONS(4693), 1, + anon_sym_DOT_DOT2, + ACTIONS(8212), 1, + sym__unquoted_pattern, + STATE(4480), 1, + sym_comment, + ACTIONS(4695), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(8100), 2, + sym_filesize_unit, + sym_duration_unit, + [173657] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4481), 1, sym_comment, ACTIONS(1071), 2, anon_sym_DOT_DOT2, @@ -279795,10 +279857,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [173587] = 4, + [173674] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4479), 1, + STATE(4482), 1, sym_comment, ACTIONS(1091), 2, anon_sym_DOT_DOT2, @@ -279808,25 +279870,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [173604] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8216), 1, - anon_sym_LPAREN, - ACTIONS(8222), 1, - anon_sym_DQUOTE2, - STATE(4830), 1, - sym_expr_interpolated, - ACTIONS(8219), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - STATE(4480), 2, - sym_comment, - aux_sym__inter_double_quotes_repeat1, - [173625] = 4, + [173691] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4481), 1, + STATE(4483), 1, sym_comment, ACTIONS(1123), 2, anon_sym_DOT_DOT2, @@ -279836,10 +279883,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [173642] = 4, + [173708] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4482), 1, + ACTIONS(8218), 1, + anon_sym_LPAREN, + ACTIONS(8224), 1, + anon_sym_DQUOTE2, + STATE(4808), 1, + sym_expr_interpolated, + ACTIONS(8221), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + STATE(4484), 2, + sym_comment, + aux_sym__inter_double_quotes_repeat1, + [173729] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4485), 1, sym_comment, ACTIONS(2215), 3, anon_sym_DOT_DOT_EQ2, @@ -279849,7 +279911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [173659] = 8, + [173746] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2545), 1, @@ -279860,29 +279922,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(7958), 1, sym_identifier, - STATE(4483), 1, + STATE(4486), 1, sym_comment, - STATE(4786), 1, + STATE(4963), 1, sym_val_variable, - STATE(5937), 1, + STATE(5938), 1, sym__variable_name, - [173684] = 7, + [173771] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8104), 1, + ACTIONS(8112), 1, anon_sym_LPAREN, - ACTIONS(8224), 1, + ACTIONS(8226), 1, anon_sym_DQUOTE2, - STATE(4484), 1, + STATE(4487), 1, sym_comment, - STATE(4490), 1, + STATE(4492), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4830), 1, + STATE(4808), 1, sym_expr_interpolated, - ACTIONS(8106), 2, + ACTIONS(8114), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [173707] = 7, + [173794] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7330), 1, @@ -279891,14 +279953,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token2, ACTIONS(7850), 1, aux_sym_unquoted_token2, - STATE(4485), 1, + STATE(4488), 1, sym_comment, - STATE(4811), 1, + STATE(4740), 1, sym__immediate_decimal, ACTIONS(7603), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [173730] = 7, + [173817] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7401), 1, @@ -279907,113 +279969,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token2, ACTIONS(7850), 1, aux_sym_unquoted_token2, - STATE(4486), 1, + STATE(4489), 1, sym_comment, - STATE(5687), 1, + STATE(5493), 1, sym__immediate_decimal, ACTIONS(7715), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [173753] = 6, + [173840] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2491), 1, sym__entry_separator, - ACTIONS(8226), 1, + ACTIONS(8228), 1, anon_sym_DOT_DOT2, - STATE(4487), 1, + STATE(4490), 1, sym_comment, ACTIONS(2493), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(8228), 2, + ACTIONS(8230), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [173774] = 6, + [173861] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2499), 1, sym__entry_separator, - ACTIONS(8230), 1, + ACTIONS(8232), 1, anon_sym_DOT_DOT2, - STATE(4488), 1, + STATE(4491), 1, sym_comment, ACTIONS(2501), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(8232), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [173795] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2507), 1, - sym__entry_separator, - ACTIONS(8234), 1, - anon_sym_DOT_DOT2, - STATE(4489), 1, - sym_comment, - ACTIONS(2509), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(8236), 2, + ACTIONS(8234), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [173816] = 7, + [173882] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8104), 1, + ACTIONS(8112), 1, anon_sym_LPAREN, - ACTIONS(8238), 1, + ACTIONS(8236), 1, anon_sym_DQUOTE2, - STATE(4480), 1, + STATE(4484), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4490), 1, + STATE(4492), 1, sym_comment, - STATE(4830), 1, + STATE(4808), 1, sym_expr_interpolated, - ACTIONS(8106), 2, + ACTIONS(8114), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [173839] = 7, + [173905] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7330), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7601), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8240), 1, - aux_sym_unquoted_token2, - STATE(4491), 1, - sym_comment, - STATE(4811), 1, - sym__immediate_decimal, - ACTIONS(7603), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [173862] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1753), 1, - sym__unquoted_pattern, - STATE(4492), 1, + ACTIONS(2507), 1, + sym__entry_separator, + ACTIONS(8238), 1, + anon_sym_DOT_DOT2, + STATE(4493), 1, sym_comment, - STATE(5954), 1, - sym__immediate_decimal, - ACTIONS(7401), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7403), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [173883] = 6, + ACTIONS(2509), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(8240), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [173926] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8242), 1, aux_sym__immediate_decimal_token1, ACTIONS(8244), 1, aux_sym__immediate_decimal_token5, - STATE(4493), 1, + STATE(4494), 1, sym_comment, ACTIONS(1866), 2, anon_sym_DOT_DOT_EQ2, @@ -280021,56 +280052,38 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1868), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - [173904] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3035), 1, - sym__newline, - ACTIONS(8110), 1, - anon_sym_LBRACE, - STATE(691), 1, - aux_sym__repeat_newline, - STATE(3980), 1, - sym__blosure, - STATE(4494), 1, - sym_comment, - STATE(3849), 2, - sym_block, - sym_val_closure, - [173927] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8168), 1, - sym__newline, - ACTIONS(8170), 1, - anon_sym_SEMI, - ACTIONS(8246), 1, - anon_sym_RPAREN, - STATE(1391), 1, - aux_sym__parenthesized_body_repeat1, - STATE(4495), 1, - sym_comment, - STATE(4836), 1, - aux_sym__block_body_repeat1, - STATE(5143), 1, - aux_sym__repeat_newline, - [173952] = 7, + [173947] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8104), 1, + ACTIONS(8112), 1, anon_sym_LPAREN, - ACTIONS(8248), 1, + ACTIONS(8246), 1, anon_sym_DQUOTE2, - STATE(4496), 1, + STATE(4495), 1, sym_comment, - STATE(4499), 1, + STATE(4501), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4830), 1, + STATE(4808), 1, sym_expr_interpolated, - ACTIONS(8106), 2, + ACTIONS(8114), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [173975] = 7, + [173970] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1753), 1, + sym__unquoted_pattern, + STATE(4496), 1, + sym_comment, + STATE(5949), 1, + sym__immediate_decimal, + ACTIONS(7401), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7403), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [173991] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5986), 1, @@ -280081,12 +280094,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token2, STATE(4497), 1, sym_comment, - STATE(4811), 1, + STATE(4740), 1, sym__immediate_decimal, ACTIONS(7603), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [173998] = 7, + [174014] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5986), 1, @@ -280097,44 +280110,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token2, STATE(4498), 1, sym_comment, - STATE(5687), 1, + STATE(5493), 1, sym__immediate_decimal, ACTIONS(7715), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [174021] = 7, + [174037] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3035), 1, + sym__newline, + ACTIONS(8122), 1, + anon_sym_LBRACE, + STATE(691), 1, + aux_sym__repeat_newline, + STATE(3980), 1, + sym__blosure, + STATE(4499), 1, + sym_comment, + STATE(3849), 2, + sym_block, + sym_val_closure, + [174060] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8176), 1, + sym__newline, + ACTIONS(8178), 1, + anon_sym_SEMI, + ACTIONS(8248), 1, + anon_sym_RPAREN, + STATE(1391), 1, + aux_sym__parenthesized_body_repeat1, + STATE(4500), 1, + sym_comment, + STATE(4770), 1, + aux_sym__block_body_repeat1, + STATE(5119), 1, + aux_sym__repeat_newline, + [174085] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8104), 1, + ACTIONS(8112), 1, anon_sym_LPAREN, ACTIONS(8250), 1, anon_sym_DQUOTE2, - STATE(4480), 1, + STATE(4484), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4499), 1, + STATE(4501), 1, sym_comment, - STATE(4830), 1, + STATE(4808), 1, sym_expr_interpolated, - ACTIONS(8106), 2, + ACTIONS(8114), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [174044] = 7, + [174108] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8104), 1, + ACTIONS(8112), 1, anon_sym_LPAREN, ACTIONS(8252), 1, anon_sym_DQUOTE2, - STATE(4500), 1, + STATE(4502), 1, sym_comment, - STATE(4503), 1, + STATE(4505), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4830), 1, + STATE(4808), 1, sym_expr_interpolated, - ACTIONS(8106), 2, + ACTIONS(8114), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [174067] = 7, + [174131] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5937), 1, @@ -280143,14 +280189,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token1, ACTIONS(7601), 1, aux_sym__immediate_decimal_token2, - STATE(4501), 1, + STATE(4503), 1, sym_comment, - STATE(4811), 1, + STATE(4740), 1, sym__immediate_decimal, ACTIONS(7603), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [174090] = 7, + [174154] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5937), 1, @@ -280159,49 +280205,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token1, ACTIONS(7713), 1, aux_sym__immediate_decimal_token2, - STATE(4502), 1, + STATE(4504), 1, sym_comment, - STATE(5687), 1, + STATE(5493), 1, sym__immediate_decimal, ACTIONS(7715), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [174113] = 7, + [174177] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8104), 1, + ACTIONS(8112), 1, anon_sym_LPAREN, ACTIONS(8254), 1, anon_sym_DQUOTE2, - STATE(4480), 1, + STATE(4484), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4503), 1, + STATE(4505), 1, sym_comment, - STATE(4830), 1, + STATE(4808), 1, sym_expr_interpolated, - ACTIONS(8106), 2, + ACTIONS(8114), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [174136] = 7, + [174200] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8104), 1, + ACTIONS(8112), 1, anon_sym_LPAREN, ACTIONS(8256), 1, anon_sym_DQUOTE2, - STATE(4504), 1, - sym_comment, STATE(4506), 1, + sym_comment, + STATE(4507), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4830), 1, + STATE(4808), 1, sym_expr_interpolated, - ACTIONS(8106), 2, + ACTIONS(8114), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [174159] = 4, + [174223] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(4505), 1, + ACTIONS(8112), 1, + anon_sym_LPAREN, + ACTIONS(8258), 1, + anon_sym_DQUOTE2, + STATE(4484), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4507), 1, + sym_comment, + STATE(4808), 1, + sym_expr_interpolated, + ACTIONS(8114), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [174246] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4508), 1, sym_comment, ACTIONS(2134), 3, anon_sym_DOT_DOT_EQ2, @@ -280211,154 +280273,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [174176] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8104), 1, - anon_sym_LPAREN, - ACTIONS(8258), 1, - anon_sym_DQUOTE2, - STATE(4480), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4506), 1, - sym_comment, - STATE(4830), 1, - sym_expr_interpolated, - ACTIONS(8106), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [174199] = 7, + [174263] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8104), 1, + ACTIONS(8112), 1, anon_sym_LPAREN, ACTIONS(8260), 1, anon_sym_DQUOTE2, - STATE(4507), 1, + STATE(4509), 1, sym_comment, - STATE(4508), 1, + STATE(4510), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4830), 1, + STATE(4808), 1, sym_expr_interpolated, - ACTIONS(8106), 2, + ACTIONS(8114), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [174222] = 7, + [174286] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8104), 1, + ACTIONS(8112), 1, anon_sym_LPAREN, ACTIONS(8262), 1, anon_sym_DQUOTE2, - STATE(4480), 1, + STATE(4484), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4508), 1, + STATE(4510), 1, sym_comment, - STATE(4830), 1, + STATE(4808), 1, sym_expr_interpolated, - ACTIONS(8106), 2, + ACTIONS(8114), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [174245] = 7, + [174309] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8104), 1, + ACTIONS(8112), 1, anon_sym_LPAREN, ACTIONS(8264), 1, anon_sym_DQUOTE2, - STATE(4509), 1, + STATE(4511), 1, sym_comment, - STATE(4510), 1, + STATE(4512), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4830), 1, + STATE(4808), 1, sym_expr_interpolated, - ACTIONS(8106), 2, + ACTIONS(8114), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [174268] = 7, + [174332] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8104), 1, + ACTIONS(8112), 1, anon_sym_LPAREN, ACTIONS(8266), 1, anon_sym_DQUOTE2, - STATE(4480), 1, + STATE(4484), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4510), 1, + STATE(4512), 1, sym_comment, - STATE(4830), 1, + STATE(4808), 1, sym_expr_interpolated, - ACTIONS(8106), 2, + ACTIONS(8114), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [174291] = 7, + [174355] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8104), 1, + ACTIONS(8112), 1, anon_sym_LPAREN, ACTIONS(8268), 1, anon_sym_DQUOTE2, - STATE(4511), 1, + STATE(4513), 1, sym_comment, - STATE(4512), 1, + STATE(4514), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4830), 1, + STATE(4808), 1, sym_expr_interpolated, - ACTIONS(8106), 2, + ACTIONS(8114), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [174314] = 7, + [174378] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8104), 1, + ACTIONS(8112), 1, anon_sym_LPAREN, ACTIONS(8270), 1, anon_sym_DQUOTE2, - STATE(4480), 1, + STATE(4484), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4512), 1, + STATE(4514), 1, sym_comment, - STATE(4830), 1, + STATE(4808), 1, sym_expr_interpolated, - ACTIONS(8106), 2, + ACTIONS(8114), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [174337] = 7, + [174401] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8104), 1, + ACTIONS(8112), 1, anon_sym_LPAREN, ACTIONS(8272), 1, anon_sym_DQUOTE2, - STATE(4513), 1, + STATE(4515), 1, sym_comment, - STATE(4514), 1, + STATE(4516), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4830), 1, + STATE(4808), 1, sym_expr_interpolated, - ACTIONS(8106), 2, + ACTIONS(8114), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [174360] = 7, + [174424] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8104), 1, + ACTIONS(8112), 1, anon_sym_LPAREN, ACTIONS(8274), 1, anon_sym_DQUOTE2, - STATE(4480), 1, + STATE(4484), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4514), 1, + STATE(4516), 1, sym_comment, - STATE(4830), 1, + STATE(4808), 1, sym_expr_interpolated, - ACTIONS(8106), 2, + ACTIONS(8114), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [174383] = 4, + [174447] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4515), 1, + STATE(4517), 1, sym_comment, ACTIONS(1868), 2, anon_sym_DOT_DOT2, @@ -280368,10 +280414,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [174400] = 4, + [174464] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4516), 1, + STATE(4518), 1, sym_comment, ACTIONS(1958), 2, anon_sym_DOT_DOT2, @@ -280381,10 +280427,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [174417] = 4, + [174481] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4517), 1, + STATE(4519), 1, sym_comment, ACTIONS(2116), 2, anon_sym_DOT_DOT2, @@ -280394,7 +280440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [174434] = 8, + [174498] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4037), 1, @@ -280407,34 +280453,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__where_predicate_lhs_repeat1, STATE(4328), 1, sym_path, - STATE(4518), 1, + STATE(4520), 1, sym_comment, - STATE(5308), 1, + STATE(5396), 1, sym_cell_path, - [174459] = 7, + [174523] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4952), 1, sym__space, - ACTIONS(8124), 1, + ACTIONS(8132), 1, anon_sym_EQ2, ACTIONS(8276), 1, sym_long_flag_identifier, STATE(3624), 1, sym__flag_equals_value, - STATE(4519), 1, + STATE(4521), 1, sym_comment, ACTIONS(4950), 2, sym__newline, anon_sym_SEMI, - [174482] = 6, + [174546] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8278), 1, anon_sym_DOT, ACTIONS(8280), 1, aux_sym__immediate_decimal_token5, - STATE(4520), 1, + STATE(4522), 1, sym_comment, ACTIONS(1896), 2, anon_sym_DOT_DOT_EQ2, @@ -280442,7 +280488,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1898), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - [174503] = 7, + [174567] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7423), 1, @@ -280451,37 +280497,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__immediate_decimal_token1, ACTIONS(8282), 1, aux_sym__immediate_decimal_token2, - STATE(4521), 1, + STATE(4523), 1, sym_comment, - STATE(4964), 1, + STATE(4970), 1, sym__immediate_decimal, ACTIONS(8284), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [174526] = 7, + [174590] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7423), 1, aux_sym__unquoted_in_record_token2, - ACTIONS(8174), 1, + ACTIONS(8102), 1, aux_sym__immediate_decimal_token1, ACTIONS(8286), 1, aux_sym__immediate_decimal_token2, - STATE(4522), 1, + STATE(4524), 1, sym_comment, - STATE(5936), 1, + STATE(5967), 1, sym__immediate_decimal, ACTIONS(8288), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [174549] = 6, + [174613] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7423), 1, sym__unquoted_pattern_in_record, ACTIONS(8290), 1, anon_sym_DOT_DOT2, - STATE(4523), 1, + STATE(4525), 1, sym_comment, ACTIONS(8292), 2, anon_sym_DOT_DOT_EQ2, @@ -280489,22 +280535,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8294), 2, sym_filesize_unit, sym_duration_unit, - [174570] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8296), 1, - sym_long_flag_identifier, - ACTIONS(8298), 1, - anon_sym_EQ2, - STATE(4524), 1, - sym_comment, - STATE(5243), 1, - sym__flag_equals_value, - ACTIONS(4952), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [174591] = 8, + [174634] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2545), 1, @@ -280515,34 +280546,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(7958), 1, sym_identifier, - STATE(4525), 1, + STATE(4526), 1, sym_comment, - STATE(4786), 1, + STATE(4963), 1, sym_val_variable, - STATE(5937), 1, + STATE(5938), 1, sym__variable_name, - [174616] = 5, + [174659] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8296), 1, + sym_long_flag_identifier, + ACTIONS(8298), 1, + anon_sym_EQ2, + STATE(4527), 1, + sym_comment, + STATE(5269), 1, + sym__flag_equals_value, + ACTIONS(4952), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [174680] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4367), 1, anon_sym_LBRACE, - STATE(4526), 1, + STATE(4528), 1, sym_comment, - STATE(4868), 1, + STATE(4907), 1, sym_block, ACTIONS(8300), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [174635] = 6, + [174699] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(919), 1, sym__entry_separator, ACTIONS(8302), 1, anon_sym_DOT_DOT2, - STATE(4527), 1, + STATE(4529), 1, sym_comment, ACTIONS(923), 2, anon_sym_RBRACK, @@ -280550,7 +280596,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8304), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [174656] = 8, + [174720] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4530), 1, + sym_comment, + ACTIONS(1755), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1757), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [174737] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6198), 1, @@ -280563,29 +280622,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__where_predicate_lhs_repeat1, STATE(4328), 1, sym_path, - STATE(4528), 1, + STATE(4531), 1, sym_comment, - STATE(5288), 1, + STATE(5405), 1, sym_cell_path, - [174681] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4529), 1, - sym_comment, - ACTIONS(1755), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1757), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [174698] = 5, + [174762] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8046), 1, aux_sym__immediate_decimal_token5, - STATE(4530), 1, + STATE(4532), 1, sym_comment, ACTIONS(1898), 2, anon_sym_DOT_DOT2, @@ -280594,12 +280640,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [174717] = 5, + [174781] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8306), 1, anon_sym_DOT_DOT2, - STATE(4531), 1, + STATE(4533), 1, sym_comment, ACTIONS(8308), 2, anon_sym_DOT_DOT_EQ2, @@ -280608,12 +280654,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_PIPE, anon_sym_EQ_GT, - [174736] = 5, + [174800] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8310), 1, anon_sym_DOT_DOT2, - STATE(4532), 1, + STATE(4534), 1, sym_comment, ACTIONS(8312), 2, anon_sym_DOT_DOT_EQ2, @@ -280622,12 +280668,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_PIPE, anon_sym_EQ_GT, - [174755] = 5, + [174819] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8314), 1, anon_sym_DOT_DOT2, - STATE(4533), 1, + STATE(4535), 1, sym_comment, ACTIONS(8316), 2, anon_sym_DOT_DOT_EQ2, @@ -280636,12 +280682,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_PIPE, anon_sym_EQ_GT, - [174774] = 5, + [174838] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8318), 1, anon_sym_DOT_DOT2, - STATE(4534), 1, + STATE(4536), 1, sym_comment, ACTIONS(8320), 2, anon_sym_DOT_DOT_EQ2, @@ -280650,36 +280696,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_PIPE, anon_sym_EQ_GT, - [174793] = 6, + [174857] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7930), 1, anon_sym_DOT2, STATE(3224), 1, sym_path, - STATE(4535), 1, + STATE(4537), 1, sym_comment, - STATE(4536), 1, + STATE(4538), 1, aux_sym__where_predicate_lhs_repeat1, ACTIONS(851), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [174814] = 5, + [174878] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8322), 1, anon_sym_DOT2, STATE(3224), 1, sym_path, - STATE(4536), 2, + STATE(4538), 2, sym_comment, aux_sym__where_predicate_lhs_repeat1, ACTIONS(867), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [174833] = 8, + [174897] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2464), 1, @@ -280688,15 +280734,15 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(7960), 1, anon_sym_DOLLAR, - STATE(4537), 1, + STATE(4539), 1, sym_comment, - STATE(4559), 1, + STATE(4566), 1, sym__variable_name, - STATE(4786), 1, - sym_val_variable, - STATE(4908), 1, + STATE(4894), 1, sym__assignment_pattern, - [174858] = 8, + STATE(4963), 1, + sym_val_variable, + [174922] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2464), 1, @@ -280705,15 +280751,15 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(7960), 1, anon_sym_DOLLAR, - STATE(4538), 1, + STATE(4540), 1, sym_comment, - STATE(4559), 1, + STATE(4566), 1, sym__variable_name, - STATE(4786), 1, - sym_val_variable, - STATE(4911), 1, + STATE(4895), 1, sym__assignment_pattern, - [174883] = 8, + STATE(4963), 1, + sym_val_variable, + [174947] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2464), 1, @@ -280722,18 +280768,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(7960), 1, anon_sym_DOLLAR, - STATE(4539), 1, + STATE(4541), 1, sym_comment, - STATE(4559), 1, + STATE(4566), 1, sym__variable_name, - STATE(4786), 1, - sym_val_variable, - STATE(4912), 1, + STATE(4897), 1, sym__assignment_pattern, - [174908] = 4, + STATE(4963), 1, + sym_val_variable, + [174972] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4540), 1, + STATE(4542), 1, sym_comment, ACTIONS(1942), 3, anon_sym_DOT_DOT_EQ2, @@ -280743,38 +280789,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [174925] = 7, + [174989] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8104), 1, + ACTIONS(8112), 1, anon_sym_LPAREN, ACTIONS(8325), 1, anon_sym_DQUOTE2, - STATE(4436), 1, + STATE(4439), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4541), 1, + STATE(4543), 1, sym_comment, - STATE(4830), 1, + STATE(4808), 1, sym_expr_interpolated, - ACTIONS(8106), 2, + ACTIONS(8114), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [174948] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(57), 1, - anon_sym_AT, - STATE(4473), 1, - aux_sym_attribute_list_repeat1, - STATE(4542), 1, - sym_comment, - STATE(5320), 1, - sym_attribute, - ACTIONS(8327), 3, - anon_sym_export, - anon_sym_def, - anon_sym_extern, - [174969] = 8, + [175012] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2464), 1, @@ -280783,15 +280814,15 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(7960), 1, anon_sym_DOLLAR, - STATE(4543), 1, + STATE(4544), 1, sym_comment, - STATE(4702), 1, + STATE(4636), 1, sym__variable_name, - STATE(4786), 1, - sym_val_variable, - STATE(4908), 1, + STATE(4894), 1, sym__assignment_pattern, - [174994] = 8, + STATE(4963), 1, + sym_val_variable, + [175037] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2464), 1, @@ -280800,15 +280831,15 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(7960), 1, anon_sym_DOLLAR, - STATE(4544), 1, + STATE(4545), 1, sym_comment, - STATE(4702), 1, + STATE(4636), 1, sym__variable_name, - STATE(4786), 1, - sym_val_variable, - STATE(4911), 1, + STATE(4895), 1, sym__assignment_pattern, - [175019] = 8, + STATE(4963), 1, + sym_val_variable, + [175062] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2464), 1, @@ -280817,29 +280848,15 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(7960), 1, anon_sym_DOLLAR, - STATE(4545), 1, + STATE(4546), 1, sym_comment, - STATE(4702), 1, + STATE(4636), 1, sym__variable_name, - STATE(4786), 1, - sym_val_variable, - STATE(4912), 1, + STATE(4897), 1, sym__assignment_pattern, - [175044] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4367), 1, - anon_sym_LBRACE, - STATE(4546), 1, - sym_comment, - STATE(4802), 1, - sym_block, - ACTIONS(8329), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [175063] = 8, + STATE(4963), 1, + sym_val_variable, + [175087] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2464), 1, @@ -280850,13 +280867,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, STATE(4547), 1, sym_comment, - STATE(4683), 1, + STATE(4603), 1, sym__variable_name, - STATE(4786), 1, - sym_val_variable, - STATE(4908), 1, + STATE(4894), 1, sym__assignment_pattern, - [175088] = 8, + STATE(4963), 1, + sym_val_variable, + [175112] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2464), 1, @@ -280867,13 +280884,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, STATE(4548), 1, sym_comment, - STATE(4683), 1, + STATE(4603), 1, sym__variable_name, - STATE(4786), 1, - sym_val_variable, - STATE(4911), 1, + STATE(4895), 1, sym__assignment_pattern, - [175113] = 8, + STATE(4963), 1, + sym_val_variable, + [175137] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2464), 1, @@ -280884,13 +280901,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, STATE(4549), 1, sym_comment, - STATE(4683), 1, + STATE(4603), 1, sym__variable_name, - STATE(4786), 1, - sym_val_variable, - STATE(4912), 1, + STATE(4897), 1, sym__assignment_pattern, - [175138] = 8, + STATE(4963), 1, + sym_val_variable, + [175162] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(57), 1, + anon_sym_AT, + STATE(4476), 1, + aux_sym_attribute_list_repeat1, + STATE(4550), 1, + sym_comment, + STATE(5280), 1, + sym_attribute, + ACTIONS(8327), 3, + anon_sym_export, + anon_sym_def, + anon_sym_extern, + [175183] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4367), 1, + anon_sym_LBRACE, + STATE(4551), 1, + sym_comment, + STATE(4744), 1, + sym_block, + ACTIONS(8329), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [175202] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2464), 1, @@ -280899,15 +280945,15 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(7960), 1, anon_sym_DOLLAR, - STATE(4550), 1, + STATE(4552), 1, sym_comment, - STATE(4653), 1, + STATE(4672), 1, sym__variable_name, - STATE(4786), 1, + STATE(4963), 1, sym_val_variable, - STATE(5169), 1, + STATE(5260), 1, sym__assignment_pattern_parenthesized, - [175163] = 8, + [175227] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2464), 1, @@ -280916,15 +280962,15 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(7960), 1, anon_sym_DOLLAR, - STATE(4551), 1, + STATE(4553), 1, sym_comment, - STATE(4653), 1, + STATE(4672), 1, sym__variable_name, - STATE(4786), 1, + STATE(4963), 1, sym_val_variable, - STATE(5253), 1, + STATE(5270), 1, sym__assignment_pattern_parenthesized, - [175188] = 8, + [175252] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2464), 1, @@ -280933,437 +280979,290 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(7960), 1, anon_sym_DOLLAR, - STATE(4552), 1, + STATE(4554), 1, sym_comment, - STATE(4653), 1, + STATE(4672), 1, sym__variable_name, - STATE(4786), 1, + STATE(4963), 1, sym_val_variable, - STATE(5066), 1, + STATE(5273), 1, sym__assignment_pattern_parenthesized, - [175213] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7401), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7713), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(8240), 1, - aux_sym_unquoted_token2, - STATE(4553), 1, - sym_comment, - STATE(5687), 1, - sym__immediate_decimal, - ACTIONS(7715), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [175236] = 7, + [175277] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8104), 1, + ACTIONS(8112), 1, anon_sym_LPAREN, ACTIONS(8331), 1, anon_sym_DQUOTE2, - STATE(4410), 1, + STATE(4414), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4554), 1, + STATE(4555), 1, sym_comment, - STATE(4830), 1, + STATE(4808), 1, sym_expr_interpolated, - ACTIONS(8106), 2, + ACTIONS(8114), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [175259] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1753), 1, - sym__unquoted_pattern_in_record, - STATE(4555), 1, - sym_comment, - STATE(5828), 1, - sym__immediate_decimal, - ACTIONS(8174), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(8176), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [175280] = 6, - ACTIONS(3), 1, + [175300] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4693), 1, - anon_sym_DOT_DOT2, - ACTIONS(8240), 1, - sym__unquoted_pattern, STATE(4556), 1, sym_comment, - ACTIONS(4695), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(8210), 2, - sym_filesize_unit, - sym_duration_unit, - [175301] = 6, + ACTIONS(857), 6, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [175315] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(8333), 1, - anon_sym_DQUOTE, + anon_sym_LPAREN, + ACTIONS(8335), 1, + anon_sym_SQUOTE2, + ACTIONS(8337), 1, + sym_unescaped_interpolated_content, STATE(4557), 1, sym_comment, - STATE(4756), 1, - aux_sym_string_content_repeat1, - STATE(5610), 1, - sym_string_content, - ACTIONS(8335), 2, - sym__escaped_str_content, - sym_escape_sequence, - [175321] = 5, - ACTIONS(3), 1, + STATE(4598), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5268), 1, + sym_expr_interpolated, + [175337] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4369), 1, - anon_sym_LBRACE, + ACTIONS(919), 1, + sym__space, + ACTIONS(2816), 1, + anon_sym_LPAREN2, + ACTIONS(2818), 1, + sym__unquoted_pattern, STATE(4558), 1, sym_comment, - STATE(5250), 1, - sym_block, - ACTIONS(8142), 3, - ts_builtin_sym_end, + ACTIONS(923), 2, sym__newline, anon_sym_SEMI, - [175339] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3035), 1, - sym__newline, - ACTIONS(8337), 1, - anon_sym_EQ, - ACTIONS(8339), 1, - anon_sym_COLON, - STATE(4559), 1, - sym_comment, - STATE(5063), 1, - aux_sym__repeat_newline, - STATE(5664), 1, - sym_param_type, - [175361] = 5, + [175357] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8197), 1, + ACTIONS(8216), 1, aux_sym__immediate_decimal_token5, - STATE(4560), 1, + STATE(4559), 1, sym_comment, ACTIONS(1896), 2, anon_sym_LPAREN2, sym__entry_separator, ACTIONS(1898), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [175379] = 5, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [175375] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8339), 1, + anon_sym_QMARK2, ACTIONS(8341), 1, - aux_sym__immediate_decimal_token5, + anon_sym_BANG, + STATE(4560), 1, + sym_comment, + STATE(5287), 1, + sym__path_suffix, + ACTIONS(839), 2, + sym__table_head_separator, + anon_sym_DOT2, + [175395] = 4, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4561), 1, sym_comment, - ACTIONS(1956), 2, + ACTIONS(2116), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(2114), 3, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1958), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [175397] = 6, + [175411] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(8343), 1, anon_sym_DQUOTE, STATE(4562), 1, sym_comment, - STATE(4756), 1, - aux_sym_string_content_repeat1, - STATE(5948), 1, - sym_string_content, - ACTIONS(8335), 2, - sym__escaped_str_content, - sym_escape_sequence, - [175417] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8345), 1, - anon_sym_DQUOTE, - STATE(4563), 1, - sym_comment, - STATE(4756), 1, + STATE(4707), 1, aux_sym_string_content_repeat1, - STATE(5949), 1, + STATE(5681), 1, sym_string_content, - ACTIONS(8335), 2, + ACTIONS(8345), 2, sym__escaped_str_content, sym_escape_sequence, - [175437] = 7, + [175431] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8347), 1, + ACTIONS(8333), 1, anon_sym_LPAREN, - ACTIONS(8349), 1, - anon_sym_SQUOTE2, - ACTIONS(8351), 1, + ACTIONS(8337), 1, sym_unescaped_interpolated_content, - STATE(4564), 1, + ACTIONS(8347), 1, + anon_sym_SQUOTE2, + STATE(4563), 1, sym_comment, - STATE(4570), 1, + STATE(4572), 1, aux_sym__inter_single_quotes_repeat1, - STATE(5062), 1, + STATE(5268), 1, sym_expr_interpolated, - [175459] = 5, + [175453] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4369), 1, - anon_sym_LBRACE, + ACTIONS(8339), 1, + anon_sym_QMARK2, + ACTIONS(8341), 1, + anon_sym_BANG, + STATE(4564), 1, + sym_comment, + STATE(5289), 1, + sym__path_suffix, + ACTIONS(847), 2, + sym__table_head_separator, + anon_sym_DOT2, + [175473] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1753), 1, + sym__unquoted_pattern, + ACTIONS(2316), 1, + sym__space, + ACTIONS(2320), 1, + anon_sym_LPAREN2, STATE(4565), 1, sym_comment, - STATE(5259), 1, - sym_block, - ACTIONS(8142), 3, - ts_builtin_sym_end, + ACTIONS(2318), 2, sym__newline, anon_sym_SEMI, - [175477] = 7, + [175493] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8353), 1, - sym_identifier, - ACTIONS(8355), 1, - anon_sym_DOLLAR, + ACTIONS(3035), 1, + sym__newline, + ACTIONS(8349), 1, + anon_sym_EQ, + ACTIONS(8351), 1, + anon_sym_COLON, STATE(4566), 1, sym_comment, - STATE(4644), 1, - sym__variable_name, - STATE(4786), 1, - sym_val_variable, - STATE(5024), 1, - sym__assignment_pattern, - [175499] = 6, + STATE(5044), 1, + aux_sym__repeat_newline, + STATE(5697), 1, + sym_param_type, + [175515] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8357), 1, - anon_sym_QMARK2, - ACTIONS(8359), 1, - anon_sym_BANG, + ACTIONS(4369), 1, + anon_sym_LBRACE, STATE(4567), 1, sym_comment, - STATE(5328), 1, - sym__path_suffix, - ACTIONS(839), 2, - sym__table_head_separator, - anon_sym_DOT2, - [175519] = 5, + STATE(5069), 1, + sym_block, + ACTIONS(8150), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [175533] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4369), 1, anon_sym_LBRACE, STATE(4568), 1, sym_comment, - STATE(5200), 1, + STATE(5072), 1, sym_block, - ACTIONS(8098), 3, + ACTIONS(8150), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [175537] = 4, - ACTIONS(103), 1, + [175551] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4569), 1, sym_comment, - ACTIONS(4259), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(4257), 3, - anon_sym_COLON, + ACTIONS(6885), 5, + anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_RBRACE, - [175553] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8347), 1, - anon_sym_LPAREN, - ACTIONS(8351), 1, - sym_unescaped_interpolated_content, - ACTIONS(8361), 1, - anon_sym_SQUOTE2, - STATE(4570), 1, - sym_comment, - STATE(4667), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(5062), 1, - sym_expr_interpolated, - [175575] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8363), 1, - aux_sym__immediate_decimal_token5, - STATE(4571), 1, - sym_comment, - ACTIONS(1956), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1958), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [175593] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4369), 1, + anon_sym_AT2, anon_sym_LBRACE, - STATE(4572), 1, - sym_comment, - STATE(5204), 1, - sym_block, - ACTIONS(8098), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [175611] = 6, - ACTIONS(103), 1, + [175565] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8365), 1, - anon_sym_DQUOTE, - STATE(4573), 1, + ACTIONS(8353), 1, + sym_identifier, + ACTIONS(8355), 1, + anon_sym_DOLLAR, + STATE(4570), 1, sym_comment, - STATE(4756), 1, - aux_sym_string_content_repeat1, - STATE(5675), 1, - sym_string_content, - ACTIONS(8335), 2, - sym__escaped_str_content, - sym_escape_sequence, - [175631] = 7, + STATE(4578), 1, + sym__variable_name, + STATE(4963), 1, + sym_val_variable, + STATE(5258), 1, + sym__assignment_pattern_parenthesized, + [175587] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8347), 1, + ACTIONS(8333), 1, anon_sym_LPAREN, - ACTIONS(8351), 1, + ACTIONS(8337), 1, sym_unescaped_interpolated_content, - ACTIONS(8367), 1, + ACTIONS(8357), 1, anon_sym_SQUOTE2, - STATE(4574), 1, + STATE(4571), 1, sym_comment, - STATE(4579), 1, + STATE(4598), 1, aux_sym__inter_single_quotes_repeat1, - STATE(5062), 1, + STATE(5268), 1, sym_expr_interpolated, - [175653] = 7, + [175609] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8347), 1, + ACTIONS(8333), 1, anon_sym_LPAREN, - ACTIONS(8351), 1, + ACTIONS(8337), 1, sym_unescaped_interpolated_content, - ACTIONS(8369), 1, + ACTIONS(8359), 1, anon_sym_SQUOTE2, - STATE(4575), 1, + STATE(4572), 1, sym_comment, - STATE(4667), 1, + STATE(4598), 1, aux_sym__inter_single_quotes_repeat1, - STATE(5062), 1, + STATE(5268), 1, sym_expr_interpolated, - [175675] = 5, - ACTIONS(3), 1, + [175631] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4576), 1, + ACTIONS(8361), 1, + aux_sym__immediate_decimal_token5, + STATE(4573), 1, sym_comment, - STATE(5591), 1, - sym__immediate_decimal, - ACTIONS(8174), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(8176), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [175693] = 4, + ACTIONS(1956), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1958), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [175649] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8371), 1, + ACTIONS(8363), 1, anon_sym_QMARK2, - STATE(4577), 1, + STATE(4574), 1, sym_comment, ACTIONS(884), 4, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, anon_sym_DOT2, - [175709] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7837), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8373), 1, - anon_sym_DOT, - STATE(4578), 1, - sym_comment, - ACTIONS(1896), 3, - anon_sym_if, - anon_sym_PIPE, - anon_sym_EQ_GT, - [175727] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8347), 1, - anon_sym_LPAREN, - ACTIONS(8351), 1, - sym_unescaped_interpolated_content, - ACTIONS(8375), 1, - anon_sym_SQUOTE2, - STATE(4579), 1, - sym_comment, - STATE(4667), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(5062), 1, - sym_expr_interpolated, - [175749] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8377), 1, - anon_sym_if, - ACTIONS(8379), 1, - anon_sym_PIPE, - ACTIONS(8381), 1, - anon_sym_EQ_GT, - STATE(4580), 1, - sym_comment, - STATE(5205), 1, - aux_sym_match_pattern_repeat1, - STATE(5575), 1, - sym_match_guard, - [175771] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8383), 1, - anon_sym_DQUOTE, - STATE(4581), 1, - sym_comment, - STATE(4756), 1, - aux_sym_string_content_repeat1, - STATE(5497), 1, - sym_string_content, - ACTIONS(8335), 2, - sym__escaped_str_content, - sym_escape_sequence, - [175791] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8347), 1, - anon_sym_LPAREN, - ACTIONS(8351), 1, - sym_unescaped_interpolated_content, - ACTIONS(8385), 1, - anon_sym_SQUOTE2, - STATE(4582), 1, - sym_comment, - STATE(4586), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(5062), 1, - sym_expr_interpolated, - [175813] = 6, + [175665] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2330), 1, @@ -281372,24 +281271,12 @@ static const uint16_t ts_small_parse_table[] = { sym__unquoted_pattern, ACTIONS(2820), 1, sym__space, - STATE(4583), 1, + STATE(4575), 1, sym_comment, ACTIONS(2822), 2, sym__newline, anon_sym_SEMI, - [175833] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4584), 1, - sym_comment, - ACTIONS(4267), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(4265), 3, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_RBRACE, - [175849] = 6, + [175685] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2326), 1, @@ -281398,27 +281285,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2336), 1, sym__unquoted_pattern, - STATE(4585), 1, + STATE(4576), 1, sym_comment, ACTIONS(2328), 2, sym__newline, anon_sym_SEMI, - [175869] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8347), 1, - anon_sym_LPAREN, - ACTIONS(8351), 1, - sym_unescaped_interpolated_content, - ACTIONS(8387), 1, - anon_sym_SQUOTE2, - STATE(4586), 1, - sym_comment, - STATE(4667), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(5062), 1, - sym_expr_interpolated, - [175891] = 7, + [175705] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2464), 1, @@ -281429,776 +281301,1285 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(3705), 1, sym_block, - STATE(4587), 1, + STATE(4577), 1, sym_comment, - STATE(4947), 1, + STATE(4813), 1, + aux_sym__repeat_newline, + [175727] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3035), 1, + sym__newline, + ACTIONS(8351), 1, + anon_sym_COLON, + ACTIONS(8365), 1, + anon_sym_EQ, + STATE(4578), 1, + sym_comment, + STATE(5044), 1, aux_sym__repeat_newline, - [175913] = 6, + STATE(5828), 1, + sym_param_type, + [175749] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1896), 1, + ACTIONS(1791), 1, + sym__unquoted_pattern, + ACTIONS(2776), 1, sym__space, - ACTIONS(7455), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8389), 1, - anon_sym_DOT, - STATE(4588), 1, + ACTIONS(2834), 1, + anon_sym_LPAREN2, + STATE(4579), 1, sym_comment, - ACTIONS(1898), 2, + ACTIONS(2778), 2, sym__newline, anon_sym_SEMI, - [175933] = 6, + [175769] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4102), 1, - anon_sym_RBRACE, - ACTIONS(4108), 1, + ACTIONS(5215), 1, + anon_sym_RBRACK, + ACTIONS(5221), 1, sym__entry_separator, ACTIONS(8302), 1, anon_sym_DOT_DOT2, - STATE(4589), 1, + STATE(4580), 1, sym_comment, ACTIONS(8304), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [175953] = 6, + [175789] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8391), 1, - anon_sym_DQUOTE, - STATE(4590), 1, + ACTIONS(2836), 1, + sym__space, + ACTIONS(2840), 1, + anon_sym_LPAREN2, + ACTIONS(2842), 1, + sym__unquoted_pattern, + STATE(4581), 1, sym_comment, - STATE(4756), 1, - aux_sym_string_content_repeat1, - STATE(5690), 1, - sym_string_content, - ACTIONS(8335), 2, - sym__escaped_str_content, - sym_escape_sequence, - [175973] = 7, + ACTIONS(2838), 2, + sym__newline, + anon_sym_SEMI, + [175809] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8347), 1, - anon_sym_LPAREN, - ACTIONS(8351), 1, - sym_unescaped_interpolated_content, - ACTIONS(8393), 1, - anon_sym_SQUOTE2, - STATE(4591), 1, - sym_comment, - STATE(4593), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(5062), 1, - sym_expr_interpolated, - [175995] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8357), 1, - anon_sym_QMARK2, - ACTIONS(8359), 1, - anon_sym_BANG, - STATE(4592), 1, + STATE(4582), 1, sym_comment, - STATE(5329), 1, - sym__path_suffix, - ACTIONS(847), 2, - sym__table_head_separator, - anon_sym_DOT2, - [176015] = 7, + ACTIONS(2602), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2604), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [175825] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8347), 1, - anon_sym_LPAREN, - ACTIONS(8351), 1, - sym_unescaped_interpolated_content, - ACTIONS(8395), 1, - anon_sym_SQUOTE2, - STATE(4593), 1, + ACTIONS(2844), 1, + sym__space, + ACTIONS(2848), 1, + anon_sym_LPAREN2, + ACTIONS(2850), 1, + sym__unquoted_pattern, + STATE(4583), 1, sym_comment, - STATE(4667), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(5062), 1, - sym_expr_interpolated, - [176037] = 3, + ACTIONS(2846), 2, + sym__newline, + anon_sym_SEMI, + [175845] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4594), 1, + STATE(4584), 1, sym_comment, - ACTIONS(6885), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [176051] = 6, + STATE(5465), 1, + sym__immediate_decimal, + ACTIONS(8102), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(8104), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [175863] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4123), 1, - anon_sym_RBRACE, - ACTIONS(4125), 1, - sym__entry_separator, - ACTIONS(8302), 1, - anon_sym_DOT_DOT2, - STATE(4595), 1, + STATE(4585), 1, sym_comment, - ACTIONS(8304), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [176071] = 6, + ACTIONS(2602), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2604), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + sym__unquoted_pattern_in_list, + [175879] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8397), 1, - anon_sym_DQUOTE, - STATE(4596), 1, + ACTIONS(1409), 1, + sym__space, + ACTIONS(2852), 1, + anon_sym_LPAREN2, + ACTIONS(2854), 1, + sym__unquoted_pattern, + STATE(4586), 1, sym_comment, - STATE(4756), 1, - aux_sym_string_content_repeat1, - STATE(5781), 1, - sym_string_content, - ACTIONS(8335), 2, - sym__escaped_str_content, - sym_escape_sequence, - [176091] = 7, + ACTIONS(1407), 2, + sym__newline, + anon_sym_SEMI, + [175899] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8347), 1, - anon_sym_LPAREN, - ACTIONS(8351), 1, - sym_unescaped_interpolated_content, - ACTIONS(8399), 1, - anon_sym_SQUOTE2, - STATE(4597), 1, + ACTIONS(1417), 1, + sym__space, + ACTIONS(2852), 1, + anon_sym_LPAREN2, + ACTIONS(2854), 1, + sym__unquoted_pattern, + STATE(4587), 1, sym_comment, - STATE(4600), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(5062), 1, - sym_expr_interpolated, - [176113] = 7, + ACTIONS(1399), 2, + sym__newline, + anon_sym_SEMI, + [175919] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8353), 1, - sym_identifier, - ACTIONS(8355), 1, - anon_sym_DOLLAR, - STATE(4598), 1, + ACTIONS(3035), 1, + sym__newline, + ACTIONS(8351), 1, + anon_sym_COLON, + ACTIONS(8367), 1, + anon_sym_EQ, + STATE(4588), 1, sym_comment, - STATE(4648), 1, - sym__variable_name, - STATE(4786), 1, - sym_val_variable, - STATE(5088), 1, - sym__assignment_pattern_parenthesized, - [176135] = 6, - ACTIONS(3), 1, + STATE(5044), 1, + aux_sym__repeat_newline, + STATE(5485), 1, + sym_param_type, + [175941] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8363), 1, + anon_sym_BANG, + STATE(4589), 1, + sym_comment, + ACTIONS(884), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [175957] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1753), 1, - sym__unquoted_pattern, ACTIONS(2316), 1, - anon_sym_LBRACE, - ACTIONS(8401), 1, + sym__entry_separator, + ACTIONS(2318), 1, + anon_sym_RBRACE, + ACTIONS(8369), 1, anon_sym_DOT_DOT2, - STATE(4599), 1, + STATE(4590), 1, sym_comment, - ACTIONS(8403), 2, + ACTIONS(8371), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [176155] = 7, - ACTIONS(103), 1, + [175977] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8347), 1, - anon_sym_LPAREN, - ACTIONS(8351), 1, - sym_unescaped_interpolated_content, - ACTIONS(8405), 1, - anon_sym_SQUOTE2, - STATE(4600), 1, + ACTIONS(1958), 1, + sym__unquoted_pattern, + ACTIONS(8373), 1, + aux_sym__immediate_decimal_token5, + STATE(4591), 1, sym_comment, - STATE(4667), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(5062), 1, - sym_expr_interpolated, - [176177] = 6, + ACTIONS(1956), 3, + anon_sym_if, + anon_sym_PIPE, + anon_sym_EQ_GT, + [175995] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1791), 1, - sym__unquoted_pattern, - ACTIONS(2776), 1, + STATE(4592), 1, + sym_comment, + ACTIONS(1866), 2, sym__space, - ACTIONS(2834), 1, anon_sym_LPAREN2, - STATE(4601), 1, - sym_comment, - ACTIONS(2778), 2, + ACTIONS(1868), 3, sym__newline, anon_sym_SEMI, - [176197] = 6, + sym__unquoted_pattern, + [176011] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8407), 1, - anon_sym_DQUOTE, - STATE(4602), 1, + ACTIONS(2814), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(6140), 1, + anon_sym_DOLLAR, + ACTIONS(7958), 1, + sym_identifier, + STATE(4593), 1, sym_comment, - STATE(4756), 1, - aux_sym_string_content_repeat1, - STATE(5958), 1, - sym_string_content, - ACTIONS(8335), 2, - sym__escaped_str_content, - sym_escape_sequence, - [176217] = 7, + STATE(4963), 1, + sym_val_variable, + STATE(5725), 1, + sym__variable_name, + [176033] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8347), 1, - anon_sym_LPAREN, - ACTIONS(8351), 1, - sym_unescaped_interpolated_content, - ACTIONS(8409), 1, - anon_sym_SQUOTE2, - STATE(4603), 1, + STATE(4594), 1, sym_comment, - STATE(4605), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(5062), 1, - sym_expr_interpolated, - [176239] = 4, + ACTIONS(1956), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1958), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [176049] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4369), 1, + anon_sym_LBRACE, + STATE(4595), 1, + sym_comment, + STATE(4983), 1, + sym_block, + ACTIONS(8329), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [176067] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4369), 1, + anon_sym_LBRACE, + STATE(4596), 1, + sym_comment, + STATE(5110), 1, + sym_block, + ACTIONS(8300), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [176085] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4604), 1, + STATE(4597), 1, sym_comment, - ACTIONS(1866), 2, + ACTIONS(2114), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(1868), 3, + ACTIONS(2116), 3, sym__newline, anon_sym_SEMI, sym__unquoted_pattern, - [176255] = 7, + [176101] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8347), 1, + ACTIONS(8375), 1, anon_sym_LPAREN, - ACTIONS(8351), 1, - sym_unescaped_interpolated_content, - ACTIONS(8411), 1, + ACTIONS(8378), 1, anon_sym_SQUOTE2, - STATE(4605), 1, + ACTIONS(8380), 1, + sym_unescaped_interpolated_content, + STATE(5268), 1, + sym_expr_interpolated, + STATE(4598), 2, sym_comment, - STATE(4667), 1, aux_sym__inter_single_quotes_repeat1, - STATE(5062), 1, - sym_expr_interpolated, - [176277] = 6, - ACTIONS(103), 1, + [176121] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2836), 1, - sym__space, - ACTIONS(2840), 1, - anon_sym_LPAREN2, - ACTIONS(2842), 1, - sym__unquoted_pattern, - STATE(4606), 1, + STATE(4599), 1, sym_comment, - ACTIONS(2838), 2, - sym__newline, - anon_sym_SEMI, - [176297] = 6, + ACTIONS(6992), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [176135] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8413), 1, + ACTIONS(8383), 1, anon_sym_DQUOTE, - STATE(4607), 1, + STATE(4600), 1, sym_comment, - STATE(4756), 1, + STATE(4707), 1, aux_sym_string_content_repeat1, - STATE(5474), 1, + STATE(5528), 1, sym_string_content, - ACTIONS(8335), 2, + ACTIONS(8345), 2, sym__escaped_str_content, sym_escape_sequence, - [176317] = 7, + [176155] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8347), 1, + ACTIONS(8333), 1, anon_sym_LPAREN, - ACTIONS(8351), 1, + ACTIONS(8337), 1, sym_unescaped_interpolated_content, - ACTIONS(8415), 1, + ACTIONS(8385), 1, anon_sym_SQUOTE2, - STATE(4608), 1, + STATE(4601), 1, sym_comment, - STATE(4611), 1, + STATE(4605), 1, aux_sym__inter_single_quotes_repeat1, - STATE(5062), 1, + STATE(5268), 1, sym_expr_interpolated, - [176339] = 4, - ACTIONS(103), 1, + [176177] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4609), 1, + STATE(4602), 1, sym_comment, - ACTIONS(2602), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2604), 3, + STATE(5516), 1, + sym__immediate_decimal, + ACTIONS(7401), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7403), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [176195] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3035), 1, + sym__newline, + ACTIONS(8351), 1, + anon_sym_COLON, + ACTIONS(8387), 1, + anon_sym_EQ, + STATE(4603), 1, + sym_comment, + STATE(5044), 1, + aux_sym__repeat_newline, + STATE(5590), 1, + sym_param_type, + [176217] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1382), 1, + aux_sym__block_body_repeat1, + STATE(4604), 1, + sym_comment, + ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - sym__unquoted_pattern, - [176355] = 6, + ACTIONS(3284), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [176235] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1896), 1, + ACTIONS(8333), 1, + anon_sym_LPAREN, + ACTIONS(8337), 1, + sym_unescaped_interpolated_content, + ACTIONS(8389), 1, + anon_sym_SQUOTE2, + STATE(4598), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4605), 1, + sym_comment, + STATE(5268), 1, + sym_expr_interpolated, + [176257] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2326), 1, sym__entry_separator, - ACTIONS(7731), 1, + ACTIONS(2328), 1, + anon_sym_RBRACE, + ACTIONS(8391), 1, + anon_sym_DOT_DOT2, + STATE(4606), 1, + sym_comment, + ACTIONS(8393), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [176277] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8280), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8417), 1, - anon_sym_DOT, - STATE(4610), 1, + STATE(4607), 1, sym_comment, + ACTIONS(1896), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, ACTIONS(1898), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [176375] = 7, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [176295] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8395), 1, + aux_sym__immediate_decimal_token5, + STATE(4608), 1, + sym_comment, + ACTIONS(1956), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1958), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [176313] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8347), 1, + ACTIONS(8397), 1, + anon_sym_DQUOTE, + STATE(4609), 1, + sym_comment, + STATE(4707), 1, + aux_sym_string_content_repeat1, + STATE(5966), 1, + sym_string_content, + ACTIONS(8345), 2, + sym__escaped_str_content, + sym_escape_sequence, + [176333] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8333), 1, anon_sym_LPAREN, - ACTIONS(8351), 1, + ACTIONS(8337), 1, sym_unescaped_interpolated_content, - ACTIONS(8419), 1, + ACTIONS(8399), 1, anon_sym_SQUOTE2, - STATE(4611), 1, + STATE(4610), 1, sym_comment, - STATE(4667), 1, + STATE(4615), 1, aux_sym__inter_single_quotes_repeat1, - STATE(5062), 1, + STATE(5268), 1, sym_expr_interpolated, - [176397] = 6, + [176355] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2844), 1, - sym__space, - ACTIONS(2848), 1, - anon_sym_LPAREN2, - ACTIONS(2850), 1, - sym__unquoted_pattern, + ACTIONS(8401), 1, + anon_sym_LT, + STATE(4611), 1, + sym_comment, + ACTIONS(6885), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6889), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [176373] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8403), 1, + anon_sym_LT, STATE(4612), 1, sym_comment, - ACTIONS(2846), 2, - sym__newline, - anon_sym_SEMI, - [176417] = 5, + ACTIONS(6885), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6889), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [176391] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8333), 1, + anon_sym_LPAREN, + ACTIONS(8337), 1, + sym_unescaped_interpolated_content, + ACTIONS(8405), 1, + anon_sym_SQUOTE2, + STATE(4598), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4613), 1, + sym_comment, + STATE(5268), 1, + sym_expr_interpolated, + [176413] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8407), 1, + anon_sym_DQUOTE, + STATE(4614), 1, + sym_comment, + STATE(4707), 1, + aux_sym_string_content_repeat1, + STATE(5456), 1, + sym_string_content, + ACTIONS(8345), 2, + sym__escaped_str_content, + sym_escape_sequence, + [176433] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8333), 1, + anon_sym_LPAREN, + ACTIONS(8337), 1, + sym_unescaped_interpolated_content, + ACTIONS(8409), 1, + anon_sym_SQUOTE2, + STATE(4598), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4615), 1, + sym_comment, + STATE(5268), 1, + sym_expr_interpolated, + [176455] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4369), 1, anon_sym_LBRACE, - STATE(4613), 1, + STATE(4616), 1, sym_comment, - STATE(5086), 1, + STATE(4984), 1, sym_block, - ACTIONS(8178), 3, + ACTIONS(8106), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [176435] = 6, + [176473] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8421), 1, + STATE(4617), 1, + sym_comment, + ACTIONS(4259), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(4257), 3, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_RBRACE, + [176489] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8411), 1, anon_sym_DQUOTE, - STATE(4614), 1, + STATE(4618), 1, sym_comment, - STATE(4756), 1, + STATE(4707), 1, aux_sym_string_content_repeat1, - STATE(5493), 1, + STATE(5542), 1, sym_string_content, - ACTIONS(8335), 2, + ACTIONS(8345), 2, sym__escaped_str_content, sym_escape_sequence, - [176455] = 5, + [176509] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8333), 1, + anon_sym_LPAREN, + ACTIONS(8337), 1, + sym_unescaped_interpolated_content, + ACTIONS(8413), 1, + anon_sym_SQUOTE2, + STATE(4619), 1, + sym_comment, + STATE(4622), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5268), 1, + sym_expr_interpolated, + [176531] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4369), 1, anon_sym_LBRACE, - STATE(4615), 1, + STATE(4620), 1, sym_comment, - STATE(5089), 1, + STATE(4985), 1, sym_block, - ACTIONS(8178), 3, + ACTIONS(8106), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [176473] = 5, + [176549] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1958), 1, - sym__unquoted_pattern, - ACTIONS(8423), 1, + ACTIONS(7837), 1, aux_sym__immediate_decimal_token5, - STATE(4616), 1, + ACTIONS(8415), 1, + anon_sym_DOT, + STATE(4621), 1, sym_comment, - ACTIONS(1956), 3, + ACTIONS(1896), 3, anon_sym_if, anon_sym_PIPE, anon_sym_EQ_GT, - [176491] = 4, - ACTIONS(3), 1, + [176567] = 7, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4617), 1, + ACTIONS(8333), 1, + anon_sym_LPAREN, + ACTIONS(8337), 1, + sym_unescaped_interpolated_content, + ACTIONS(8417), 1, + anon_sym_SQUOTE2, + STATE(4598), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4622), 1, sym_comment, - ACTIONS(1958), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1956), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [176507] = 6, + STATE(5268), 1, + sym_expr_interpolated, + [176589] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8419), 1, + anon_sym_DQUOTE, + STATE(4623), 1, + sym_comment, + STATE(4707), 1, + aux_sym_string_content_repeat1, + STATE(5676), 1, + sym_string_content, + ACTIONS(8345), 2, + sym__escaped_str_content, + sym_escape_sequence, + [176609] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8333), 1, + anon_sym_LPAREN, + ACTIONS(8337), 1, + sym_unescaped_interpolated_content, + ACTIONS(8421), 1, + anon_sym_SQUOTE2, + STATE(4624), 1, + sym_comment, + STATE(4625), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5268), 1, + sym_expr_interpolated, + [176631] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8333), 1, + anon_sym_LPAREN, + ACTIONS(8337), 1, + sym_unescaped_interpolated_content, + ACTIONS(8423), 1, + anon_sym_SQUOTE2, + STATE(4598), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4625), 1, + sym_comment, + STATE(5268), 1, + sym_expr_interpolated, + [176653] = 6, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1896), 1, + sym__space, + ACTIONS(7455), 1, + aux_sym__immediate_decimal_token5, ACTIONS(8425), 1, + anon_sym_DOT, + STATE(4626), 1, + sym_comment, + ACTIONS(1898), 2, + sym__newline, + anon_sym_SEMI, + [176673] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8427), 1, anon_sym_DQUOTE, - STATE(4618), 1, + STATE(4627), 1, sym_comment, - STATE(4756), 1, + STATE(4707), 1, aux_sym_string_content_repeat1, - STATE(5507), 1, + STATE(5754), 1, sym_string_content, - ACTIONS(8335), 2, + ACTIONS(8345), 2, sym__escaped_str_content, sym_escape_sequence, - [176527] = 4, + [176693] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(4619), 1, + ACTIONS(8333), 1, + anon_sym_LPAREN, + ACTIONS(8337), 1, + sym_unescaped_interpolated_content, + ACTIONS(8429), 1, + anon_sym_SQUOTE2, + STATE(4628), 1, sym_comment, - ACTIONS(2602), 2, + STATE(4630), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5268), 1, + sym_expr_interpolated, + [176715] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4629), 1, + sym_comment, + ACTIONS(4267), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(2604), 3, - anon_sym_RBRACK, + ACTIONS(4265), 3, + anon_sym_COLON, + anon_sym_GT2, anon_sym_RBRACE, + [176731] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8333), 1, + anon_sym_LPAREN, + ACTIONS(8337), 1, + sym_unescaped_interpolated_content, + ACTIONS(8431), 1, + anon_sym_SQUOTE2, + STATE(4598), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4630), 1, + sym_comment, + STATE(5268), 1, + sym_expr_interpolated, + [176753] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8201), 1, + aux_sym__immediate_decimal_token5, + STATE(4631), 1, + sym_comment, + ACTIONS(1896), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1898), 2, + anon_sym_RBRACK, sym__unquoted_pattern_in_list, - [176543] = 6, + [176771] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8427), 1, + ACTIONS(4102), 1, + anon_sym_RBRACE, + ACTIONS(4108), 1, + sym__entry_separator, + ACTIONS(8302), 1, + anon_sym_DOT_DOT2, + STATE(4632), 1, + sym_comment, + ACTIONS(8304), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [176791] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8433), 1, anon_sym_DQUOTE, - STATE(4620), 1, + STATE(4633), 1, sym_comment, - STATE(4756), 1, + STATE(4707), 1, aux_sym_string_content_repeat1, - STATE(5521), 1, + STATE(5826), 1, sym_string_content, - ACTIONS(8335), 2, + ACTIONS(8345), 2, sym__escaped_str_content, sym_escape_sequence, - [176563] = 6, + [176811] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8333), 1, + anon_sym_LPAREN, + ACTIONS(8337), 1, + sym_unescaped_interpolated_content, + ACTIONS(8435), 1, + anon_sym_SQUOTE2, + STATE(4557), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4634), 1, + sym_comment, + STATE(5268), 1, + sym_expr_interpolated, + [176833] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4123), 1, + anon_sym_RBRACE, + ACTIONS(4125), 1, + sym__entry_separator, + ACTIONS(8302), 1, + anon_sym_DOT_DOT2, + STATE(4635), 1, + sym_comment, + ACTIONS(8304), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [176853] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1868), 1, - sym__unquoted_pattern, - ACTIONS(8429), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8431), 1, - aux_sym__immediate_decimal_token5, - STATE(4621), 1, + ACTIONS(3035), 1, + sym__newline, + ACTIONS(8351), 1, + anon_sym_COLON, + ACTIONS(8437), 1, + anon_sym_EQ, + STATE(4636), 1, sym_comment, - ACTIONS(1866), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [176583] = 4, + STATE(5044), 1, + aux_sym__repeat_newline, + STATE(5541), 1, + sym_param_type, + [176875] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4622), 1, + STATE(4637), 1, sym_comment, - ACTIONS(1868), 2, - anon_sym_DOT_DOT2, + ACTIONS(6988), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [176889] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8333), 1, + anon_sym_LPAREN, + ACTIONS(8337), 1, + sym_unescaped_interpolated_content, + ACTIONS(8439), 1, + anon_sym_SQUOTE2, + STATE(4638), 1, + sym_comment, + STATE(4639), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5268), 1, + sym_expr_interpolated, + [176911] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8333), 1, + anon_sym_LPAREN, + ACTIONS(8337), 1, + sym_unescaped_interpolated_content, + ACTIONS(8441), 1, + anon_sym_SQUOTE2, + STATE(4598), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4639), 1, + sym_comment, + STATE(5268), 1, + sym_expr_interpolated, + [176933] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8443), 1, + anon_sym_DQUOTE, + STATE(4640), 1, + sym_comment, + STATE(4707), 1, + aux_sym_string_content_repeat1, + STATE(5476), 1, + sym_string_content, + ACTIONS(8345), 2, + sym__escaped_str_content, + sym_escape_sequence, + [176953] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8333), 1, + anon_sym_LPAREN, + ACTIONS(8337), 1, + sym_unescaped_interpolated_content, + ACTIONS(8445), 1, + anon_sym_SQUOTE2, + STATE(4641), 1, + sym_comment, + STATE(4644), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(5268), 1, + sym_expr_interpolated, + [176975] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1753), 1, sym__unquoted_pattern, - ACTIONS(1866), 3, + ACTIONS(2316), 1, anon_sym_LBRACE, + ACTIONS(8447), 1, + anon_sym_DOT_DOT2, + STATE(4642), 1, + sym_comment, + ACTIONS(8449), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [176599] = 5, + [176995] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1896), 1, + sym__entry_separator, + ACTIONS(7731), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8451), 1, + anon_sym_DOT, + STATE(4643), 1, + sym_comment, + ACTIONS(1898), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [177015] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8333), 1, + anon_sym_LPAREN, + ACTIONS(8337), 1, + sym_unescaped_interpolated_content, + ACTIONS(8453), 1, + anon_sym_SQUOTE2, + STATE(4598), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4644), 1, + sym_comment, + STATE(5268), 1, + sym_expr_interpolated, + [177037] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8455), 1, + anon_sym_DQUOTE, + STATE(4645), 1, + sym_comment, + STATE(4707), 1, + aux_sym_string_content_repeat1, + STATE(5495), 1, + sym_string_content, + ACTIONS(8345), 2, + sym__escaped_str_content, + sym_escape_sequence, + [177057] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8457), 1, + anon_sym_DQUOTE, + STATE(4646), 1, + sym_comment, + STATE(4707), 1, + aux_sym_string_content_repeat1, + STATE(5509), 1, + sym_string_content, + ACTIONS(8345), 2, + sym__escaped_str_content, + sym_escape_sequence, + [177077] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1359), 1, - aux_sym__block_body_repeat1, - STATE(4623), 1, + ACTIONS(4369), 1, + anon_sym_LBRACE, + STATE(4647), 1, sym_comment, - ACTIONS(153), 2, + STATE(5096), 1, + sym_block, + ACTIONS(8188), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - ACTIONS(553), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [176617] = 6, + [177095] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4369), 1, + anon_sym_LBRACE, + STATE(4648), 1, + sym_comment, + STATE(5098), 1, + sym_block, + ACTIONS(8188), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [177113] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8433), 1, + ACTIONS(8459), 1, anon_sym_DQUOTE, - STATE(4624), 1, + STATE(4649), 1, sym_comment, - STATE(4756), 1, + STATE(4707), 1, aux_sym_string_content_repeat1, - STATE(5532), 1, + STATE(5523), 1, sym_string_content, - ACTIONS(8335), 2, + ACTIONS(8345), 2, sym__escaped_str_content, sym_escape_sequence, - [176637] = 6, + [177133] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1868), 1, + sym__unquoted_pattern, + ACTIONS(8461), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8463), 1, + aux_sym__immediate_decimal_token5, + STATE(4650), 1, + sym_comment, + ACTIONS(1866), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [177153] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8435), 1, + ACTIONS(8465), 1, anon_sym_DQUOTE, - STATE(4625), 1, + STATE(4651), 1, sym_comment, - STATE(4756), 1, + STATE(4707), 1, aux_sym_string_content_repeat1, - STATE(5542), 1, + STATE(5534), 1, sym_string_content, - ACTIONS(8335), 2, + ACTIONS(8345), 2, sym__escaped_str_content, sym_escape_sequence, - [176657] = 6, + [177173] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8437), 1, + ACTIONS(8467), 1, anon_sym_DQUOTE, - STATE(4626), 1, + STATE(4652), 1, sym_comment, - STATE(4756), 1, + STATE(4707), 1, aux_sym_string_content_repeat1, - STATE(5552), 1, + STATE(5544), 1, sym_string_content, - ACTIONS(8335), 2, + ACTIONS(8345), 2, sym__escaped_str_content, sym_escape_sequence, - [176677] = 6, + [177193] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8439), 1, + ACTIONS(8469), 1, anon_sym_DQUOTE, - STATE(4627), 1, + STATE(4653), 1, sym_comment, - STATE(4756), 1, + STATE(4707), 1, aux_sym_string_content_repeat1, - STATE(5562), 1, + STATE(5554), 1, sym_string_content, - ACTIONS(8335), 2, + ACTIONS(8345), 2, sym__escaped_str_content, sym_escape_sequence, - [176697] = 6, - ACTIONS(103), 1, + [177213] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1409), 1, - sym__space, - ACTIONS(2852), 1, - anon_sym_LPAREN2, - ACTIONS(2854), 1, - sym__unquoted_pattern, - STATE(4628), 1, + STATE(1359), 1, + aux_sym__block_body_repeat1, + STATE(4654), 1, sym_comment, - ACTIONS(1407), 2, + ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - [176717] = 6, + ACTIONS(553), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [177231] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8441), 1, + ACTIONS(8471), 1, anon_sym_DQUOTE, - STATE(4629), 1, + STATE(4655), 1, sym_comment, - STATE(4756), 1, + STATE(4707), 1, aux_sym_string_content_repeat1, - STATE(5571), 1, + STATE(5564), 1, sym_string_content, - ACTIONS(8335), 2, + ACTIONS(8345), 2, sym__escaped_str_content, sym_escape_sequence, - [176737] = 6, + [177251] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8443), 1, + ACTIONS(8473), 1, anon_sym_DQUOTE, - STATE(4630), 1, + STATE(4656), 1, sym_comment, - STATE(4756), 1, + STATE(4707), 1, aux_sym_string_content_repeat1, - STATE(5578), 1, + STATE(5573), 1, sym_string_content, - ACTIONS(8335), 2, + ACTIONS(8345), 2, sym__escaped_str_content, sym_escape_sequence, - [176757] = 6, + [177271] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8445), 1, + ACTIONS(8475), 1, anon_sym_DQUOTE, - STATE(4631), 1, + STATE(4657), 1, sym_comment, - STATE(4756), 1, + STATE(4707), 1, aux_sym_string_content_repeat1, - STATE(5585), 1, + STATE(5580), 1, sym_string_content, - ACTIONS(8335), 2, + ACTIONS(8345), 2, sym__escaped_str_content, sym_escape_sequence, - [176777] = 6, + [177291] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8447), 1, + ACTIONS(8477), 1, anon_sym_DQUOTE, - STATE(4632), 1, + STATE(4658), 1, sym_comment, - STATE(4756), 1, + STATE(4707), 1, aux_sym_string_content_repeat1, - STATE(5592), 1, + STATE(5587), 1, sym_string_content, - ACTIONS(8335), 2, + ACTIONS(8345), 2, sym__escaped_str_content, sym_escape_sequence, - [176797] = 6, + [177311] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1417), 1, - sym__space, - ACTIONS(2852), 1, - anon_sym_LPAREN2, - ACTIONS(2854), 1, - sym__unquoted_pattern, - STATE(4633), 1, + ACTIONS(8479), 1, + anon_sym_DQUOTE, + STATE(4659), 1, sym_comment, - ACTIONS(1399), 2, - sym__newline, - anon_sym_SEMI, - [176817] = 6, + STATE(4707), 1, + aux_sym_string_content_repeat1, + STATE(5594), 1, + sym_string_content, + ACTIONS(8345), 2, + sym__escaped_str_content, + sym_escape_sequence, + [177331] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8449), 1, + ACTIONS(8481), 1, anon_sym_DQUOTE, - STATE(4634), 1, + STATE(4660), 1, sym_comment, - STATE(4756), 1, + STATE(4707), 1, aux_sym_string_content_repeat1, - STATE(5598), 1, + STATE(5600), 1, sym_string_content, - ACTIONS(8335), 2, + ACTIONS(8345), 2, sym__escaped_str_content, sym_escape_sequence, - [176837] = 6, + [177351] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8451), 1, + ACTIONS(8483), 1, anon_sym_DQUOTE, - STATE(4635), 1, + STATE(4661), 1, sym_comment, - STATE(4756), 1, + STATE(4707), 1, aux_sym_string_content_repeat1, - STATE(5604), 1, + STATE(5606), 1, sym_string_content, - ACTIONS(8335), 2, + ACTIONS(8345), 2, sym__escaped_str_content, sym_escape_sequence, - [176857] = 5, + [177371] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8280), 1, - aux_sym__immediate_decimal_token5, - STATE(4636), 1, + ACTIONS(8353), 1, + sym_identifier, + ACTIONS(8355), 1, + anon_sym_DOLLAR, + STATE(4588), 1, + sym__variable_name, + STATE(4662), 1, sym_comment, - ACTIONS(1896), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1898), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [176875] = 7, + STATE(4963), 1, + sym_val_variable, + STATE(5033), 1, + sym__assignment_pattern, + [177393] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8347), 1, - anon_sym_LPAREN, - ACTIONS(8351), 1, - sym_unescaped_interpolated_content, - ACTIONS(8453), 1, - anon_sym_SQUOTE2, - STATE(4637), 1, + ACTIONS(8485), 1, + anon_sym_DQUOTE, + STATE(4663), 1, sym_comment, - STATE(4667), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(5062), 1, - sym_expr_interpolated, - [176897] = 6, + STATE(4707), 1, + aux_sym_string_content_repeat1, + STATE(5612), 1, + sym_string_content, + ACTIONS(8345), 2, + sym__escaped_str_content, + sym_escape_sequence, + [177413] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8455), 1, + ACTIONS(8487), 1, anon_sym_DQUOTE, - STATE(4638), 1, + STATE(4664), 1, sym_comment, - STATE(4756), 1, + STATE(4707), 1, aux_sym_string_content_repeat1, - STATE(5620), 1, + STATE(5617), 1, sym_string_content, - ACTIONS(8335), 2, + ACTIONS(8345), 2, sym__escaped_str_content, sym_escape_sequence, - [176917] = 6, + [177433] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8457), 1, + ACTIONS(8489), 1, anon_sym_DQUOTE, - STATE(4639), 1, + STATE(4665), 1, sym_comment, - STATE(4756), 1, + STATE(4707), 1, aux_sym_string_content_repeat1, - STATE(5625), 1, + STATE(5622), 1, sym_string_content, - ACTIONS(8335), 2, + ACTIONS(8345), 2, sym__escaped_str_content, sym_escape_sequence, - [176937] = 6, + [177453] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8459), 1, + ACTIONS(8491), 1, anon_sym_DQUOTE, - STATE(4640), 1, + STATE(4666), 1, sym_comment, - STATE(4756), 1, + STATE(4707), 1, aux_sym_string_content_repeat1, - STATE(5630), 1, + STATE(5627), 1, sym_string_content, - ACTIONS(8335), 2, + ACTIONS(8345), 2, sym__escaped_str_content, sym_escape_sequence, - [176957] = 6, + [177473] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8461), 1, + ACTIONS(8493), 1, anon_sym_DQUOTE, - STATE(4641), 1, + STATE(4667), 1, sym_comment, - STATE(4756), 1, + STATE(4707), 1, aux_sym_string_content_repeat1, - STATE(5635), 1, + STATE(5632), 1, sym_string_content, - ACTIONS(8335), 2, + ACTIONS(8345), 2, sym__escaped_str_content, sym_escape_sequence, - [176977] = 6, + [177493] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8463), 1, + ACTIONS(8495), 1, anon_sym_DQUOTE, - STATE(4642), 1, + STATE(4668), 1, sym_comment, - STATE(4756), 1, + STATE(4707), 1, aux_sym_string_content_repeat1, - STATE(5640), 1, + STATE(5637), 1, + sym_string_content, + ACTIONS(8345), 2, + sym__escaped_str_content, + sym_escape_sequence, + [177513] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8497), 1, + anon_sym_DQUOTE, + STATE(4669), 1, + sym_comment, + STATE(4707), 1, + aux_sym_string_content_repeat1, + STATE(5642), 1, sym_string_content, - ACTIONS(8335), 2, + ACTIONS(8345), 2, sym__escaped_str_content, sym_escape_sequence, - [176997] = 3, + [177533] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4643), 1, + STATE(4670), 1, sym_comment, ACTIONS(7078), 5, anon_sym_EQ, @@ -282206,165 +282587,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_AT2, anon_sym_LBRACE, - [177011] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3035), 1, - sym__newline, - ACTIONS(8339), 1, - anon_sym_COLON, - ACTIONS(8465), 1, - anon_sym_EQ, - STATE(4644), 1, - sym_comment, - STATE(5063), 1, - aux_sym__repeat_newline, - STATE(5560), 1, - sym_param_type, - [177033] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8371), 1, - anon_sym_BANG, - STATE(4645), 1, - sym_comment, - ACTIONS(884), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [177049] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4646), 1, - sym_comment, - ACTIONS(1956), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1958), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [177065] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2316), 1, - sym__entry_separator, - ACTIONS(2318), 1, - anon_sym_RBRACE, - ACTIONS(8467), 1, - anon_sym_DOT_DOT2, - STATE(4647), 1, - sym_comment, - ACTIONS(8469), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [177085] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3035), 1, - sym__newline, - ACTIONS(8339), 1, - anon_sym_COLON, - ACTIONS(8471), 1, - anon_sym_EQ, - STATE(4648), 1, - sym_comment, - STATE(5063), 1, - aux_sym__repeat_newline, - STATE(5790), 1, - sym_param_type, - [177107] = 6, + [177547] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5129), 1, sym__space, - ACTIONS(8124), 1, + ACTIONS(8132), 1, anon_sym_EQ2, STATE(3679), 1, sym__flag_equals_value, - STATE(4649), 1, + STATE(4671), 1, sym_comment, ACTIONS(5127), 2, sym__newline, anon_sym_SEMI, - [177127] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4650), 1, - sym_comment, - ACTIONS(2114), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2116), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [177143] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2326), 1, - anon_sym_LBRACE, - ACTIONS(2336), 1, - sym__unquoted_pattern, - ACTIONS(8473), 1, - anon_sym_DOT_DOT2, - STATE(4651), 1, - sym_comment, - ACTIONS(8475), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [177163] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4652), 1, - sym_comment, - ACTIONS(7028), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [177177] = 7, + [177567] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, sym__newline, - ACTIONS(8339), 1, + ACTIONS(8351), 1, anon_sym_COLON, - ACTIONS(8477), 1, + ACTIONS(8499), 1, anon_sym_EQ, - STATE(4653), 1, + STATE(4672), 1, sym_comment, - STATE(5063), 1, + STATE(5044), 1, aux_sym__repeat_newline, - STATE(5710), 1, + STATE(5712), 1, sym_param_type, - [177199] = 3, + [177589] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4654), 1, + ACTIONS(8501), 1, + anon_sym_if, + ACTIONS(8503), 1, + anon_sym_PIPE, + ACTIONS(8505), 1, + anon_sym_EQ_GT, + STATE(4673), 1, sym_comment, - ACTIONS(6962), 5, + STATE(4986), 1, + aux_sym_match_pattern_repeat1, + STATE(5670), 1, + sym_match_guard, + [177611] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4674), 1, + sym_comment, + ACTIONS(7028), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT2, anon_sym_LBRACE, - [177213] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8479), 1, - aux_sym__immediate_decimal_token5, - STATE(4655), 1, - sym_comment, - ACTIONS(1956), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1958), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [177231] = 6, + [177625] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4119), 1, @@ -282373,177 +282651,110 @@ static const uint16_t ts_small_parse_table[] = { sym__entry_separator, ACTIONS(8302), 1, anon_sym_DOT_DOT2, - STATE(4656), 1, + STATE(4675), 1, sym_comment, ACTIONS(8304), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [177251] = 7, + [177645] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2219), 1, sym__table_head_separator, - ACTIONS(8481), 1, + ACTIONS(8507), 1, anon_sym_DOT2, - STATE(4657), 1, + STATE(4676), 1, sym_comment, - STATE(4777), 1, + STATE(4941), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(5305), 1, + STATE(5292), 1, sym_path, - STATE(5753), 1, + STATE(5759), 1, sym_cell_path, - [177273] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2814), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(6140), 1, - anon_sym_DOLLAR, - ACTIONS(7958), 1, - sym_identifier, - STATE(4658), 1, - sym_comment, - STATE(4786), 1, - sym_val_variable, - STATE(5657), 1, - sym__variable_name, - [177295] = 6, + [177667] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1898), 1, sym__unquoted_pattern, - ACTIONS(8483), 1, + ACTIONS(8509), 1, anon_sym_DOT, - ACTIONS(8485), 1, + ACTIONS(8511), 1, aux_sym__immediate_decimal_token5, - STATE(4659), 1, + STATE(4677), 1, sym_comment, ACTIONS(1896), 2, anon_sym_PIPE, anon_sym_EQ_GT, - [177315] = 6, - ACTIONS(103), 1, + [177687] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6555), 1, - sym__space, - ACTIONS(8124), 1, - anon_sym_EQ2, - STATE(3734), 1, - sym__flag_equals_value, - STATE(4660), 1, + ACTIONS(833), 1, + anon_sym_COLON2, + ACTIONS(5884), 1, + anon_sym_DOT2, + STATE(462), 1, + sym_path, + STATE(662), 1, + sym_cell_path, + STATE(2983), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4678), 1, sym_comment, - ACTIONS(6553), 2, - sym__newline, - anon_sym_SEMI, - [177335] = 3, + [177709] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4661), 1, + ACTIONS(2142), 1, + sym__table_head_separator, + ACTIONS(8507), 1, + anon_sym_DOT2, + STATE(4679), 1, sym_comment, - ACTIONS(6978), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [177349] = 5, + STATE(4941), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(5292), 1, + sym_path, + STATE(5807), 1, + sym_cell_path, + [177731] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4369), 1, - anon_sym_LBRACE, - STATE(4662), 1, + STATE(4680), 1, sym_comment, - STATE(5013), 1, - sym_block, - ACTIONS(8329), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [177367] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4369), 1, + ACTIONS(1958), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1956), 3, anon_sym_LBRACE, - STATE(4663), 1, - sym_comment, - STATE(5258), 1, - sym_block, - ACTIONS(8300), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [177385] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2142), 1, - sym__table_head_separator, - ACTIONS(8481), 1, - anon_sym_DOT2, - STATE(4664), 1, - sym_comment, - STATE(4777), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(5305), 1, - sym_path, - STATE(5799), 1, - sym_cell_path, - [177407] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [177747] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(833), 1, - anon_sym_COLON2, - ACTIONS(5884), 1, - anon_sym_DOT2, - STATE(462), 1, - sym_path, - STATE(662), 1, - sym_cell_path, - STATE(2983), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4665), 1, + STATE(4681), 1, sym_comment, - [177429] = 7, + ACTIONS(1868), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1866), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [177763] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8347), 1, + ACTIONS(8333), 1, anon_sym_LPAREN, - ACTIONS(8351), 1, + ACTIONS(8337), 1, sym_unescaped_interpolated_content, - ACTIONS(8487), 1, + ACTIONS(8513), 1, anon_sym_SQUOTE2, - STATE(4637), 1, + STATE(4613), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4666), 1, + STATE(4682), 1, sym_comment, - STATE(5062), 1, - sym_expr_interpolated, - [177451] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8489), 1, - anon_sym_LPAREN, - ACTIONS(8492), 1, - anon_sym_SQUOTE2, - ACTIONS(8494), 1, - sym_unescaped_interpolated_content, - STATE(5062), 1, + STATE(5268), 1, sym_expr_interpolated, - STATE(4667), 2, - sym_comment, - aux_sym__inter_single_quotes_repeat1, - [177471] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4668), 1, - sym_comment, - ACTIONS(6982), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [177485] = 7, + [177785] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4395), 1, @@ -282552,123 +282763,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, STATE(2351), 1, aux_sym__types_body_repeat1, - STATE(4669), 1, + STATE(4683), 1, sym_comment, - STATE(5245), 1, + STATE(5190), 1, sym_val_list, - STATE(5260), 1, + STATE(5201), 1, aux_sym__table_body_repeat1, - [177507] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4670), 1, - sym_comment, - ACTIONS(6988), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [177521] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4671), 1, - sym_comment, - STATE(5696), 1, - sym__immediate_decimal, - ACTIONS(7401), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7403), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [177539] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1382), 1, - aux_sym__block_body_repeat1, - STATE(4672), 1, - sym_comment, - ACTIONS(153), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3284), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [177557] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(919), 1, - sym__space, - ACTIONS(2816), 1, - anon_sym_LPAREN2, - ACTIONS(2818), 1, - sym__unquoted_pattern, - STATE(4673), 1, - sym_comment, - ACTIONS(923), 2, - sym__newline, - anon_sym_SEMI, - [177577] = 7, + [177807] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8353), 1, sym_identifier, ACTIONS(8355), 1, anon_sym_DOLLAR, - STATE(4559), 1, + STATE(4566), 1, sym__variable_name, - STATE(4674), 1, + STATE(4684), 1, sym_comment, - STATE(4786), 1, - sym_val_variable, - STATE(4956), 1, + STATE(4954), 1, sym__assignment_pattern, - [177599] = 3, + STATE(4963), 1, + sym_val_variable, + [177829] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4675), 1, - sym_comment, - ACTIONS(6992), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, + ACTIONS(2326), 1, anon_sym_LBRACE, - [177613] = 6, + ACTIONS(2336), 1, + sym__unquoted_pattern, + ACTIONS(8515), 1, + anon_sym_DOT_DOT2, + STATE(4685), 1, + sym_comment, + ACTIONS(8517), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [177849] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(8302), 1, anon_sym_DOT_DOT2, - ACTIONS(8497), 1, + ACTIONS(8519), 1, anon_sym_RBRACE, - ACTIONS(8499), 1, + ACTIONS(8521), 1, sym__entry_separator, - STATE(4676), 1, + STATE(4686), 1, sym_comment, ACTIONS(8304), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [177633] = 6, + [177869] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(8302), 1, anon_sym_DOT_DOT2, - ACTIONS(8501), 1, + ACTIONS(8523), 1, anon_sym_RBRACE, - ACTIONS(8503), 1, + ACTIONS(8525), 1, sym__entry_separator, - STATE(4677), 1, + STATE(4687), 1, sym_comment, ACTIONS(8304), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [177653] = 5, + [177889] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8527), 1, + aux_sym__immediate_decimal_token5, + STATE(4688), 1, + sym_comment, + ACTIONS(1956), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1958), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [177907] = 5, ACTIONS(3), 1, anon_sym_POUND, STATE(1354), 1, aux_sym__block_body_repeat1, - STATE(4678), 1, + STATE(4689), 1, sym_comment, ACTIONS(153), 2, sym__newline, @@ -282676,134 +282852,47 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3286), 2, anon_sym_RPAREN, anon_sym_RBRACE, - [177671] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8347), 1, - anon_sym_LPAREN, - ACTIONS(8351), 1, - sym_unescaped_interpolated_content, - ACTIONS(8505), 1, - anon_sym_SQUOTE2, - STATE(4667), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4679), 1, - sym_comment, - STATE(5062), 1, - sym_expr_interpolated, - [177693] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8507), 1, - anon_sym_DQUOTE, - STATE(4680), 1, - sym_comment, - STATE(4756), 1, - aux_sym_string_content_repeat1, - STATE(5738), 1, - sym_string_content, - ACTIONS(8335), 2, - sym__escaped_str_content, - sym_escape_sequence, - [177713] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8347), 1, - anon_sym_LPAREN, - ACTIONS(8351), 1, - sym_unescaped_interpolated_content, - ACTIONS(8509), 1, - anon_sym_SQUOTE2, - STATE(4681), 1, - sym_comment, - STATE(4695), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(5062), 1, - sym_expr_interpolated, - [177735] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5215), 1, - anon_sym_RBRACK, - ACTIONS(5221), 1, - sym__entry_separator, - ACTIONS(8302), 1, - anon_sym_DOT_DOT2, - STATE(4682), 1, - sym_comment, - ACTIONS(8304), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [177755] = 7, + [177925] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3035), 1, - sym__newline, - ACTIONS(8339), 1, - anon_sym_COLON, - ACTIONS(8511), 1, - anon_sym_EQ, - STATE(4683), 1, - sym_comment, - STATE(5063), 1, - aux_sym__repeat_newline, - STATE(5749), 1, - sym_param_type, - [177777] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8214), 1, - aux_sym__immediate_decimal_token5, - STATE(4684), 1, - sym_comment, - ACTIONS(1896), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1898), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [177795] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4685), 1, + STATE(4690), 1, sym_comment, - ACTIONS(2116), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(2114), 3, + ACTIONS(6962), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [177811] = 6, + [177939] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1753), 1, - sym__unquoted_pattern, - ACTIONS(2316), 1, + ACTIONS(6555), 1, sym__space, - ACTIONS(2320), 1, - anon_sym_LPAREN2, - STATE(4686), 1, + ACTIONS(8132), 1, + anon_sym_EQ2, + STATE(3734), 1, + sym__flag_equals_value, + STATE(4691), 1, sym_comment, - ACTIONS(2318), 2, + ACTIONS(6553), 2, sym__newline, anon_sym_SEMI, - [177831] = 7, + [177959] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8353), 1, sym_identifier, ACTIONS(8355), 1, anon_sym_DOLLAR, - STATE(4683), 1, + STATE(4603), 1, sym__variable_name, - STATE(4687), 1, + STATE(4692), 1, sym_comment, - STATE(4786), 1, - sym_val_variable, - STATE(4956), 1, + STATE(4954), 1, sym__assignment_pattern, - [177853] = 7, + STATE(4963), 1, + sym_val_variable, + [177981] = 7, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2464), 1, @@ -282812,1231 +282901,298 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(7958), 1, sym_identifier, - STATE(4688), 1, + STATE(4693), 1, sym_comment, - STATE(4786), 1, + STATE(4963), 1, sym_val_variable, - STATE(5937), 1, + STATE(5938), 1, sym__variable_name, - [177875] = 5, + [178003] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8298), 1, - anon_sym_EQ2, - STATE(4689), 1, + STATE(4694), 1, sym_comment, - STATE(5151), 1, - sym__flag_equals_value, - ACTIONS(5129), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [177893] = 5, + ACTIONS(6978), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [178017] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8513), 1, - anon_sym_DASH_DASH, - STATE(5149), 1, - sym_long_flag, - ACTIONS(5062), 2, - anon_sym_LBRACK, - anon_sym_LPAREN, - STATE(4690), 2, - sym_comment, - aux_sym_decl_def_repeat1, - [177911] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8516), 1, - anon_sym_LT, - STATE(4691), 1, + STATE(4695), 1, sym_comment, - ACTIONS(6885), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6889), 2, - anon_sym_RBRACK, + ACTIONS(6982), 5, + anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_GT2, - [177929] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8518), 1, - anon_sym_LT, - STATE(4692), 1, - sym_comment, - ACTIONS(6885), 2, anon_sym_AT2, - sym__entry_separator, - ACTIONS(6889), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [177947] = 6, - ACTIONS(103), 1, + anon_sym_LBRACE, + [178031] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2326), 1, - sym__entry_separator, - ACTIONS(2328), 1, - anon_sym_RBRACE, - ACTIONS(8520), 1, - anon_sym_DOT_DOT2, - STATE(4693), 1, + ACTIONS(8298), 1, + anon_sym_EQ2, + STATE(4696), 1, sym_comment, - ACTIONS(8522), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [177967] = 7, + STATE(5271), 1, + sym__flag_equals_value, + ACTIONS(5129), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [178049] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8353), 1, sym_identifier, ACTIONS(8355), 1, anon_sym_DOLLAR, - STATE(4653), 1, + STATE(4672), 1, sym__variable_name, - STATE(4694), 1, + STATE(4697), 1, sym_comment, - STATE(4786), 1, + STATE(4963), 1, sym_val_variable, - STATE(5088), 1, + STATE(5258), 1, sym__assignment_pattern_parenthesized, - [177989] = 7, - ACTIONS(103), 1, + [178071] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8347), 1, + ACTIONS(8529), 1, + anon_sym_DASH_DASH, + STATE(5218), 1, + sym_long_flag, + ACTIONS(5062), 2, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(8351), 1, - sym_unescaped_interpolated_content, - ACTIONS(8524), 1, - anon_sym_SQUOTE2, - STATE(4667), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4695), 1, + STATE(4698), 2, sym_comment, - STATE(5062), 1, - sym_expr_interpolated, - [178011] = 6, + aux_sym_decl_def_repeat1, + [178089] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8526), 1, + ACTIONS(8532), 1, anon_sym_DQUOTE, - STATE(4696), 1, + STATE(4699), 1, sym_comment, - STATE(4756), 1, + STATE(4707), 1, aux_sym_string_content_repeat1, - STATE(5502), 1, + STATE(5782), 1, sym_string_content, - ACTIONS(8335), 2, + ACTIONS(8345), 2, sym__escaped_str_content, sym_escape_sequence, - [178031] = 7, + [178109] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8347), 1, + ACTIONS(8333), 1, anon_sym_LPAREN, - ACTIONS(8351), 1, + ACTIONS(8337), 1, sym_unescaped_interpolated_content, - ACTIONS(8528), 1, + ACTIONS(8534), 1, anon_sym_SQUOTE2, - STATE(4679), 1, + STATE(4571), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4697), 1, + STATE(4700), 1, sym_comment, - STATE(5062), 1, + STATE(5268), 1, sym_expr_interpolated, - [178053] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8530), 1, - anon_sym_DQUOTE, - STATE(4698), 1, - sym_comment, - STATE(4756), 1, - aux_sym_string_content_repeat1, - STATE(5646), 1, - sym_string_content, - ACTIONS(8335), 2, - sym__escaped_str_content, - sym_escape_sequence, - [178073] = 7, + [178131] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8353), 1, sym_identifier, ACTIONS(8355), 1, anon_sym_DOLLAR, - STATE(4699), 1, - sym_comment, - STATE(4702), 1, + STATE(4636), 1, sym__variable_name, - STATE(4786), 1, - sym_val_variable, - STATE(4956), 1, + STATE(4701), 1, + sym_comment, + STATE(4954), 1, sym__assignment_pattern, - [178095] = 5, + STATE(4963), 1, + sym_val_variable, + [178153] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1898), 1, sym__unquoted_pattern, - ACTIONS(8162), 1, + ACTIONS(8168), 1, aux_sym__immediate_decimal_token5, - STATE(4700), 1, + STATE(4702), 1, sym_comment, ACTIONS(1896), 3, anon_sym_if, anon_sym_PIPE, anon_sym_EQ_GT, - [178113] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8347), 1, - anon_sym_LPAREN, - ACTIONS(8351), 1, - sym_unescaped_interpolated_content, - ACTIONS(8532), 1, - anon_sym_SQUOTE2, - STATE(4575), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4701), 1, - sym_comment, - STATE(5062), 1, - sym_expr_interpolated, - [178135] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3035), 1, - sym__newline, - ACTIONS(8339), 1, - anon_sym_COLON, - ACTIONS(8534), 1, - anon_sym_EQ, - STATE(4702), 1, - sym_comment, - STATE(5063), 1, - aux_sym__repeat_newline, - STATE(5697), 1, - sym_param_type, - [178157] = 6, + [178171] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(8536), 1, anon_sym_DQUOTE, STATE(4703), 1, sym_comment, - STATE(4756), 1, + STATE(4707), 1, aux_sym_string_content_repeat1, - STATE(5615), 1, + STATE(5972), 1, sym_string_content, - ACTIONS(8335), 2, + ACTIONS(8345), 2, sym__escaped_str_content, sym_escape_sequence, - [178177] = 6, + [178191] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3035), 1, - sym__newline, - ACTIONS(4367), 1, - anon_sym_LBRACE, - STATE(4001), 1, - sym_block, STATE(4704), 1, sym_comment, - STATE(4971), 1, - aux_sym__repeat_newline, - [178196] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1958), 1, - sym__unquoted_pattern, - STATE(4705), 1, - sym_comment, - ACTIONS(1956), 3, - anon_sym_if, - anon_sym_PIPE, - anon_sym_EQ_GT, - [178211] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8538), 1, - sym__space, - ACTIONS(6671), 2, - sym__newline, - anon_sym_SEMI, - STATE(4706), 2, - sym_comment, - aux_sym_attribute_repeat1, - [178226] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8172), 1, - anon_sym_RPAREN, - STATE(4707), 1, - sym_comment, - STATE(4794), 1, - aux_sym__block_body_repeat1, - ACTIONS(8541), 2, - sym__newline, - anon_sym_SEMI, - [178243] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2854), 1, - sym__unquoted_pattern, - STATE(4708), 1, - sym_comment, - ACTIONS(1417), 3, - anon_sym_if, - anon_sym_PIPE, - anon_sym_EQ_GT, - [178258] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4709), 1, - sym_comment, - ACTIONS(7956), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [178271] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4710), 1, - sym_comment, - ACTIONS(1866), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1868), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [178286] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4820), 1, - anon_sym_LPAREN2, - ACTIONS(8543), 1, - anon_sym_RBRACK, - ACTIONS(8545), 1, - sym__entry_separator, - STATE(4711), 1, - sym_comment, - STATE(5589), 1, - sym__expr_parenthesized_immediate, - [178305] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7970), 1, - anon_sym_LBRACK, - ACTIONS(7972), 1, - anon_sym_LPAREN, - STATE(4434), 1, - sym_parameter_parens, - STATE(4435), 1, - sym_parameter_bracks, - STATE(4712), 1, - sym_comment, - [178324] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4713), 1, - sym_comment, - ACTIONS(8547), 4, + ACTIONS(8538), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [178337] = 3, + [178204] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4714), 1, - sym_comment, - ACTIONS(8547), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [178350] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4715), 1, - sym_comment, - ACTIONS(8549), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [178363] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4716), 1, - sym_comment, - ACTIONS(1956), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1958), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [178378] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4717), 1, - sym_comment, - ACTIONS(8549), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [178391] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4718), 1, - sym_comment, - ACTIONS(8551), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [178404] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4719), 1, - sym_comment, - ACTIONS(8551), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [178417] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4720), 1, - sym_comment, - ACTIONS(2114), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2116), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [178432] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4721), 1, - sym_comment, - ACTIONS(7078), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(7080), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [178447] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4722), 1, - sym_comment, - ACTIONS(7028), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(7030), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [178462] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4723), 1, - sym_comment, - ACTIONS(4660), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [178475] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4724), 1, - sym_comment, - ACTIONS(4662), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [178488] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4725), 1, - sym_comment, - ACTIONS(8553), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [178501] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2854), 1, - sym__unquoted_pattern, - STATE(4726), 1, - sym_comment, - ACTIONS(1409), 3, - anon_sym_if, - anon_sym_PIPE, - anon_sym_EQ_GT, - [178516] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8555), 1, - anon_sym_COLON2, - STATE(4727), 1, - sym_comment, - STATE(4851), 1, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(6290), 2, - sym__newline, - sym__space, - [178533] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4728), 1, - sym_comment, - ACTIONS(8547), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [178546] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4729), 1, - sym_comment, - ACTIONS(8547), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [178559] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4730), 1, - sym_comment, - ACTIONS(8549), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [178572] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4731), 1, + STATE(4705), 1, sym_comment, - ACTIONS(8549), 4, + ACTIONS(8540), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [178585] = 6, + [178217] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3035), 1, - sym__newline, - ACTIONS(4367), 1, - anon_sym_LBRACE, - STATE(3721), 1, - sym_block, - STATE(4732), 1, - sym_comment, - STATE(4853), 1, - aux_sym__repeat_newline, - [178604] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3035), 1, - sym__newline, - ACTIONS(4367), 1, - anon_sym_LBRACE, - STATE(691), 1, - aux_sym__repeat_newline, - STATE(3722), 1, - sym_block, - STATE(4733), 1, - sym_comment, - [178623] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1407), 1, - anon_sym_RBRACK, - ACTIONS(1409), 1, - sym__entry_separator, - ACTIONS(2852), 1, - anon_sym_LPAREN2, - ACTIONS(2854), 1, - sym__unquoted_pattern_in_list, - STATE(4734), 1, - sym_comment, - [178642] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2836), 1, - sym__entry_separator, - ACTIONS(2838), 1, - anon_sym_RBRACK, - ACTIONS(2840), 1, - anon_sym_LPAREN2, - ACTIONS(2842), 1, - sym__unquoted_pattern_in_list, - STATE(4735), 1, - sym_comment, - [178661] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4736), 1, - sym_comment, - ACTIONS(900), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [178674] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4737), 1, - sym_comment, - ACTIONS(892), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [178687] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2116), 1, + ACTIONS(1958), 1, sym__unquoted_pattern, - STATE(4738), 1, + STATE(4706), 1, sym_comment, - ACTIONS(2114), 3, + ACTIONS(1956), 3, anon_sym_if, anon_sym_PIPE, anon_sym_EQ_GT, - [178702] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4739), 1, - sym_comment, - ACTIONS(8551), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [178715] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4740), 1, - sym_comment, - ACTIONS(8551), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [178728] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4741), 1, - sym_comment, - ACTIONS(8557), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [178741] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4742), 1, - sym_comment, - ACTIONS(8557), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [178754] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4743), 1, - sym_comment, - ACTIONS(8559), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [178767] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4744), 1, - sym_comment, - ACTIONS(904), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [178780] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4745), 1, - sym_comment, - ACTIONS(8559), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [178793] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4746), 1, - sym_comment, - ACTIONS(8561), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [178806] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4747), 1, - sym_comment, - ACTIONS(8561), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [178819] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4748), 1, - sym_comment, - ACTIONS(8563), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [178832] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4749), 1, - sym_comment, - ACTIONS(8563), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [178845] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4750), 1, - sym_comment, - ACTIONS(6962), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6964), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [178860] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4751), 1, - sym_comment, - ACTIONS(6978), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6980), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [178875] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4752), 1, - sym_comment, - ACTIONS(6982), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6984), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [178890] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4753), 1, - sym_comment, - ACTIONS(6988), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6990), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [178905] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4754), 1, - sym_comment, - ACTIONS(8559), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [178918] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4755), 1, - sym_comment, - ACTIONS(8559), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [178931] = 5, + [178232] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8565), 1, + ACTIONS(8542), 1, anon_sym_DQUOTE, - STATE(4756), 1, + STATE(4707), 1, sym_comment, - STATE(4796), 1, + STATE(4716), 1, aux_sym_string_content_repeat1, - ACTIONS(8335), 2, + ACTIONS(8345), 2, sym__escaped_str_content, sym_escape_sequence, - [178948] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4757), 1, - sym_comment, - ACTIONS(8561), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [178961] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4758), 1, - sym_comment, - ACTIONS(8561), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [178974] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4759), 1, - sym_comment, - ACTIONS(8563), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [178987] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4760), 1, - sym_comment, - ACTIONS(8563), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [179000] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4761), 1, - sym_comment, - ACTIONS(8567), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [179013] = 3, + [178249] = 3, ACTIONS(3), 1, - anon_sym_POUND, - STATE(4762), 1, - sym_comment, - ACTIONS(8567), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [179026] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4763), 1, - sym_comment, - ACTIONS(8569), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [179039] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4764), 1, - sym_comment, - ACTIONS(8569), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [179052] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4765), 1, - sym_comment, - ACTIONS(6992), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6994), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [179067] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4766), 1, - sym_comment, - ACTIONS(8569), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [179080] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4767), 1, - sym_comment, - ACTIONS(8569), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [179093] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4768), 1, - sym_comment, - ACTIONS(8571), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [179106] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4769), 1, - sym_comment, - ACTIONS(8571), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [179119] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4770), 1, - sym_comment, - ACTIONS(8573), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [179132] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4771), 1, - sym_comment, - ACTIONS(8573), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [179145] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4772), 1, - sym_comment, - ACTIONS(8575), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [179158] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4773), 1, - sym_comment, - ACTIONS(8575), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [179171] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4774), 1, - sym_comment, - ACTIONS(6232), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [179184] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2519), 1, - sym__entry_separator, - ACTIONS(8577), 1, - anon_sym_LBRACK2, - STATE(4775), 1, - sym_comment, - ACTIONS(2521), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [179201] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4776), 1, - sym_comment, - ACTIONS(6177), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [179214] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(851), 1, - sym__table_head_separator, - ACTIONS(8481), 1, - anon_sym_DOT2, - STATE(4777), 1, - sym_comment, - STATE(4781), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(5305), 1, - sym_path, - [179233] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1399), 1, - anon_sym_RBRACK, - ACTIONS(1417), 1, - sym__entry_separator, - ACTIONS(2852), 1, - anon_sym_LPAREN2, - ACTIONS(2854), 1, - sym__unquoted_pattern_in_list, - STATE(4778), 1, - sym_comment, - [179252] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8110), 1, - anon_sym_LBRACE, - STATE(3780), 1, - sym__blosure, - STATE(4779), 1, - sym_comment, - STATE(3849), 2, - sym_block, - sym_val_closure, - [179269] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6304), 1, - anon_sym_COLON2, - STATE(4780), 1, - sym_comment, - STATE(4784), 1, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(6290), 2, - sym__newline, - sym__space, - [179286] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(867), 1, - sym__table_head_separator, - ACTIONS(8579), 1, - anon_sym_DOT2, - STATE(5305), 1, - sym_path, - STATE(4781), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - [179303] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4782), 1, - sym_comment, - ACTIONS(8582), 4, - anon_sym_EQ, - anon_sym_in, - sym__newline, - anon_sym_COLON, - [179316] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4783), 1, - sym_comment, - ACTIONS(8584), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [179329] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8586), 1, - anon_sym_COLON2, - STATE(4784), 1, - sym_comment, - STATE(4851), 1, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(6290), 2, - sym__newline, - sym__space, - [179346] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2850), 1, - sym__unquoted_pattern, - STATE(4785), 1, - sym_comment, - ACTIONS(2844), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [179361] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4786), 1, - sym_comment, - ACTIONS(8588), 4, - anon_sym_EQ, - anon_sym_in, - sym__newline, - anon_sym_COLON, - [179374] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7970), 1, - anon_sym_LBRACK, - ACTIONS(7972), 1, - anon_sym_LPAREN, - STATE(4453), 1, - sym_parameter_parens, - STATE(4454), 1, - sym_parameter_bracks, - STATE(4787), 1, - sym_comment, - [179393] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(553), 1, - ts_builtin_sym_end, - STATE(1401), 1, - aux_sym__block_body_repeat1, - STATE(4788), 1, - sym_comment, - ACTIONS(55), 2, - sym__newline, - anon_sym_SEMI, - [179410] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3286), 1, - ts_builtin_sym_end, - STATE(1399), 1, - aux_sym__block_body_repeat1, - STATE(4789), 1, + anon_sym_POUND, + STATE(4708), 1, sym_comment, - ACTIONS(55), 2, + ACTIONS(8544), 4, sym__newline, anon_sym_SEMI, - [179427] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [178262] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4790), 1, + STATE(4709), 1, sym_comment, - ACTIONS(8590), 4, + ACTIONS(8546), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [179440] = 6, - ACTIONS(103), 1, + [178275] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4820), 1, - anon_sym_LPAREN2, - ACTIONS(5215), 1, - anon_sym_RBRACK, - ACTIONS(5221), 1, - sym__entry_separator, - STATE(4791), 1, + STATE(4710), 1, sym_comment, - STATE(5410), 1, - sym__expr_parenthesized_immediate, - [179459] = 6, + ACTIONS(6206), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [178288] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4711), 1, + sym_comment, + ACTIONS(7956), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [178301] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8592), 1, + ACTIONS(8548), 1, anon_sym_LBRACK, - ACTIONS(8594), 1, + ACTIONS(8550), 1, anon_sym_LPAREN, - STATE(4558), 1, + STATE(4567), 1, sym_parameter_parens, - STATE(4565), 1, + STATE(4568), 1, sym_parameter_bracks, - STATE(4792), 1, + STATE(4712), 1, sym_comment, - [179478] = 3, + [178320] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4793), 1, + STATE(4713), 1, sym_comment, - ACTIONS(6206), 4, - ts_builtin_sym_end, + ACTIONS(8552), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [179491] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [178333] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3154), 1, anon_sym_RPAREN, - ACTIONS(8596), 2, + ACTIONS(8554), 2, sym__newline, anon_sym_SEMI, - STATE(4794), 2, + STATE(4714), 2, sym_comment, aux_sym__block_body_repeat1, - [179506] = 6, + [178348] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8592), 1, + ACTIONS(8548), 1, anon_sym_LBRACK, - ACTIONS(8594), 1, + ACTIONS(8550), 1, anon_sym_LPAREN, - STATE(4568), 1, + STATE(4616), 1, sym_parameter_parens, - STATE(4572), 1, + STATE(4620), 1, sym_parameter_bracks, - STATE(4795), 1, + STATE(4715), 1, sym_comment, - [179525] = 4, + [178367] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8599), 1, + ACTIONS(8557), 1, anon_sym_DQUOTE, - ACTIONS(8601), 2, + ACTIONS(8559), 2, sym__escaped_str_content, sym_escape_sequence, - STATE(4796), 2, + STATE(4716), 2, sym_comment, aux_sym_string_content_repeat1, - [179540] = 6, + [178382] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4717), 1, + sym_comment, + ACTIONS(8552), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [178395] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(3674), 1, @@ -284045,11 +283201,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, ACTIONS(4177), 1, sym__entry_separator, - STATE(4797), 1, + STATE(4718), 1, sym_comment, - STATE(5550), 1, + STATE(5819), 1, sym__expr_parenthesized_immediate, - [179559] = 6, + [178414] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(3674), 1, @@ -284058,34 +283214,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, ACTIONS(4181), 1, sym__entry_separator, - STATE(4798), 1, + STATE(4719), 1, sym_comment, - STATE(5550), 1, + STATE(5819), 1, sym__expr_parenthesized_immediate, - [179578] = 3, + [178433] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4799), 1, + STATE(4720), 1, sym_comment, - ACTIONS(8604), 4, + ACTIONS(8562), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [179591] = 6, + [178446] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2604), 1, + sym__unquoted_pattern, + STATE(4721), 1, + sym_comment, + ACTIONS(2602), 3, + anon_sym_if, + anon_sym_PIPE, + anon_sym_EQ_GT, + [178461] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, sym__newline, - ACTIONS(8606), 1, - anon_sym_LBRACK, - STATE(691), 1, + ACTIONS(4367), 1, + anon_sym_LBRACE, + STATE(3632), 1, + sym_block, + STATE(4722), 1, + sym_comment, + STATE(4815), 1, aux_sym__repeat_newline, - STATE(4800), 1, + [178480] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7970), 1, + anon_sym_LBRACK, + ACTIONS(7972), 1, + anon_sym_LPAREN, + STATE(4460), 1, + sym_parameter_parens, + STATE(4461), 1, + sym_parameter_bracks, + STATE(4723), 1, sym_comment, - STATE(5720), 1, - sym_val_list, - [179610] = 6, + [178499] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2545), 1, @@ -284094,89 +283274,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, ACTIONS(4367), 1, anon_sym_LBRACE, - STATE(4801), 1, + STATE(4724), 1, sym_comment, - STATE(4920), 1, + STATE(4902), 1, sym_block, - [179629] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4802), 1, - sym_comment, - ACTIONS(8608), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [179642] = 3, + [178518] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4803), 1, + ACTIONS(553), 1, + ts_builtin_sym_end, + STATE(1401), 1, + aux_sym__block_body_repeat1, + STATE(4725), 1, sym_comment, - ACTIONS(8610), 4, + ACTIONS(55), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [179655] = 3, + [178535] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4804), 1, + STATE(4726), 1, sym_comment, - ACTIONS(8612), 4, + ACTIONS(8564), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [179668] = 6, + [178548] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1866), 1, anon_sym_LBRACE, ACTIONS(1868), 1, sym__unquoted_pattern, - ACTIONS(8614), 1, + ACTIONS(8566), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8616), 1, + ACTIONS(8568), 1, aux_sym__immediate_decimal_token5, - STATE(4805), 1, + STATE(4727), 1, sym_comment, - [179687] = 6, + [178567] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8618), 1, + ACTIONS(8570), 1, anon_sym_GT2, - ACTIONS(8620), 1, + ACTIONS(8572), 1, anon_sym_AT2, - ACTIONS(8622), 1, + ACTIONS(8574), 1, sym__entry_separator, - STATE(4806), 1, + STATE(4728), 1, sym_comment, - STATE(5290), 1, + STATE(5358), 1, sym_param_cmd, - [179706] = 4, + [178586] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4807), 1, + STATE(4729), 1, sym_comment, - ACTIONS(6885), 2, - anon_sym_AT2, + ACTIONS(1866), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(6889), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [179721] = 4, - ACTIONS(3), 1, + ACTIONS(1868), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [178601] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1868), 1, - sym__unquoted_pattern, - STATE(4808), 1, + ACTIONS(4820), 1, + anon_sym_LPAREN2, + ACTIONS(5215), 1, + anon_sym_RBRACK, + ACTIONS(5221), 1, + sym__entry_separator, + STATE(4730), 1, sym_comment, - ACTIONS(1866), 3, - anon_sym_if, - anon_sym_PIPE, - anon_sym_EQ_GT, - [179736] = 6, + STATE(5404), 1, + sym__expr_parenthesized_immediate, + [178620] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2545), 1, @@ -284185,11 +283359,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, ACTIONS(4367), 1, anon_sym_LBRACE, - STATE(4809), 1, + STATE(4731), 1, sym_comment, - STATE(4922), 1, + STATE(4906), 1, sym_block, - [179755] = 6, + [178639] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2854), 1, + sym__unquoted_pattern, + STATE(4732), 1, + sym_comment, + ACTIONS(1409), 3, + anon_sym_if, + anon_sym_PIPE, + anon_sym_EQ_GT, + [178654] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2854), 1, + sym__unquoted_pattern, + STATE(4733), 1, + sym_comment, + ACTIONS(1417), 3, + anon_sym_if, + anon_sym_PIPE, + anon_sym_EQ_GT, + [178669] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1868), 1, + sym__unquoted_pattern, + STATE(4734), 1, + sym_comment, + ACTIONS(1866), 3, + anon_sym_if, + anon_sym_PIPE, + anon_sym_EQ_GT, + [178684] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2545), 1, @@ -284200,236 +283407,334 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(3698), 1, sym_block, - STATE(4810), 1, + STATE(4735), 1, + sym_comment, + [178703] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4736), 1, + sym_comment, + ACTIONS(8576), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [178716] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4737), 1, + sym_comment, + ACTIONS(8562), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [178729] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4820), 1, + anon_sym_LPAREN2, + ACTIONS(8578), 1, + anon_sym_RBRACK, + ACTIONS(8580), 1, + sym__entry_separator, + STATE(4738), 1, + sym_comment, + STATE(5684), 1, + sym__expr_parenthesized_immediate, + [178748] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4739), 1, sym_comment, - [179774] = 5, + ACTIONS(8582), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [178761] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1753), 1, sym__unquoted_pattern, - ACTIONS(8624), 1, + ACTIONS(8584), 1, anon_sym_DOT_DOT2, - STATE(4811), 1, + STATE(4740), 1, sym_comment, - ACTIONS(8626), 2, + ACTIONS(8586), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [179791] = 6, + [178778] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8592), 1, + ACTIONS(7970), 1, anon_sym_LBRACK, - ACTIONS(8594), 1, + ACTIONS(7972), 1, anon_sym_LPAREN, - STATE(4613), 1, + STATE(4411), 1, sym_parameter_parens, - STATE(4615), 1, + STATE(4412), 1, sym_parameter_bracks, - STATE(4812), 1, + STATE(4741), 1, sym_comment, - [179810] = 5, + [178797] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2336), 1, + ACTIONS(2116), 1, sym__unquoted_pattern, - ACTIONS(8628), 1, - anon_sym_DOT_DOT2, - STATE(4813), 1, + STATE(4742), 1, sym_comment, - ACTIONS(8630), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [179827] = 3, + ACTIONS(2114), 3, + anon_sym_if, + anon_sym_PIPE, + anon_sym_EQ_GT, + [178812] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4814), 1, + ACTIONS(2850), 1, + sym__unquoted_pattern, + STATE(4743), 1, sym_comment, - ACTIONS(8632), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [179840] = 3, + ACTIONS(2844), 3, + anon_sym_if, + anon_sym_PIPE, + anon_sym_EQ_GT, + [178827] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4815), 1, + STATE(4744), 1, sym_comment, - ACTIONS(4646), 4, - ts_builtin_sym_end, + ACTIONS(8588), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [179853] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [178840] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4816), 1, + STATE(4745), 1, sym_comment, - ACTIONS(4648), 4, + ACTIONS(6202), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACE, - [179866] = 3, + [178853] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4817), 1, + STATE(4746), 1, sym_comment, - ACTIONS(6202), 4, - ts_builtin_sym_end, + ACTIONS(8590), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [179879] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [178866] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4818), 1, + STATE(4747), 1, sym_comment, - ACTIONS(8634), 4, + ACTIONS(8592), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [179892] = 3, + [178879] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1157), 1, + sym__space, + ACTIONS(5937), 1, + sym__unquoted_pattern, + STATE(4748), 1, + sym_comment, + ACTIONS(1127), 2, + sym__newline, + anon_sym_SEMI, + [178896] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4819), 1, + STATE(4749), 1, sym_comment, - ACTIONS(8634), 4, + ACTIONS(6187), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [179905] = 3, + anon_sym_LBRACE, + [178909] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4820), 1, + STATE(4750), 1, sym_comment, - ACTIONS(8636), 4, + ACTIONS(8594), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [179918] = 5, + [178922] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2336), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8638), 1, - anon_sym_DOT_DOT2, - STATE(4821), 1, + STATE(4751), 1, sym_comment, - ACTIONS(8640), 2, + ACTIONS(1866), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [179935] = 4, + ACTIONS(1868), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [178937] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8642), 1, - anon_sym_LPAREN, - STATE(4822), 1, + ACTIONS(1407), 1, + anon_sym_RBRACK, + ACTIONS(1409), 1, + sym__entry_separator, + ACTIONS(2852), 1, + anon_sym_LPAREN2, + ACTIONS(2854), 1, + sym__unquoted_pattern_in_list, + STATE(4752), 1, sym_comment, - ACTIONS(8644), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [179950] = 3, + [178956] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4823), 1, + STATE(4753), 1, sym_comment, - ACTIONS(6187), 4, - ts_builtin_sym_end, + ACTIONS(8540), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [179963] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [178969] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4824), 1, + STATE(4754), 1, sym_comment, - ACTIONS(8646), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1956), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1958), 2, anon_sym_RBRACE, - [179976] = 4, + sym__unquoted_pattern_in_record, + [178984] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4755), 1, + sym_comment, + ACTIONS(6885), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6889), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [178999] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1884), 1, - sym__unquoted_pattern, - STATE(4825), 1, + STATE(4756), 1, sym_comment, - ACTIONS(1157), 3, - anon_sym_if, - anon_sym_PIPE, - anon_sym_EQ_GT, - [179991] = 3, + ACTIONS(1956), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1958), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [179014] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4826), 1, + STATE(4757), 1, sym_comment, - ACTIONS(8646), 4, + ACTIONS(8596), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [180004] = 4, + [179027] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4827), 1, + STATE(4758), 1, sym_comment, - ACTIONS(1866), 2, + ACTIONS(7912), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [179040] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4759), 1, + sym_comment, + ACTIONS(2114), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1868), 2, + ACTIONS(2116), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - [180019] = 5, + [179055] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8246), 1, - anon_sym_RPAREN, - STATE(4794), 1, - aux_sym__block_body_repeat1, - STATE(4828), 1, + STATE(4760), 1, sym_comment, - ACTIONS(8541), 2, + ACTIONS(8596), 4, sym__newline, anon_sym_SEMI, - [180036] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179068] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4761), 1, + sym_comment, + ACTIONS(2114), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2116), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [179083] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4829), 1, + ACTIONS(2336), 1, + sym__unquoted_pattern, + ACTIONS(8598), 1, + anon_sym_DOT_DOT2, + STATE(4762), 1, sym_comment, - ACTIONS(1956), 2, + ACTIONS(8600), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1958), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [180051] = 4, - ACTIONS(103), 1, + [179100] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8648), 1, - anon_sym_LPAREN, - STATE(4830), 1, + ACTIONS(8248), 1, + anon_sym_RPAREN, + STATE(4714), 1, + aux_sym__block_body_repeat1, + STATE(4763), 1, sym_comment, - ACTIONS(8650), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [180066] = 4, + ACTIONS(8602), 2, + sym__newline, + anon_sym_SEMI, + [179117] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4831), 1, + STATE(4764), 1, sym_comment, - ACTIONS(2114), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2116), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [180081] = 6, + ACTIONS(4646), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [179130] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4765), 1, + sym_comment, + ACTIONS(8604), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179143] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -284438,272 +283743,407 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(1391), 1, aux_sym__parenthesized_body_repeat1, - STATE(4832), 1, + STATE(4766), 1, sym_comment, - STATE(5143), 1, + STATE(5119), 1, aux_sym__repeat_newline, - [180100] = 3, + [179162] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4833), 1, + STATE(4767), 1, sym_comment, - ACTIONS(7912), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [180113] = 5, + ACTIONS(8604), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179175] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8652), 1, - anon_sym_RBRACK, - STATE(4079), 1, - aux_sym_parameter_repeat2, - STATE(4834), 1, + STATE(4768), 1, sym_comment, - ACTIONS(1563), 2, + ACTIONS(4648), 4, + ts_builtin_sym_end, sym__newline, - anon_sym_COMMA, - [180130] = 6, + anon_sym_SEMI, + anon_sym_LBRACE, + [179188] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7970), 1, - anon_sym_LBRACK, - ACTIONS(7972), 1, - anon_sym_LPAREN, - STATE(4407), 1, - sym_parameter_parens, - STATE(4408), 1, - sym_parameter_bracks, - STATE(4835), 1, + STATE(4769), 1, sym_comment, - [180149] = 5, + ACTIONS(8606), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179201] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8654), 1, + ACTIONS(8608), 1, anon_sym_RPAREN, - STATE(4794), 1, + STATE(4714), 1, aux_sym__block_body_repeat1, - STATE(4836), 1, + STATE(4770), 1, sym_comment, - ACTIONS(8541), 2, + ACTIONS(8602), 2, sym__newline, anon_sym_SEMI, - [180166] = 6, - ACTIONS(103), 1, + [179218] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2330), 1, - anon_sym_LPAREN2, - ACTIONS(2336), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2820), 1, - sym__entry_separator, - ACTIONS(2822), 1, - anon_sym_RBRACK, - STATE(4837), 1, + STATE(4771), 1, sym_comment, - [180185] = 6, - ACTIONS(103), 1, + ACTIONS(8610), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179231] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2326), 1, - sym__entry_separator, - ACTIONS(2328), 1, - anon_sym_RBRACK, - ACTIONS(2330), 1, - anon_sym_LPAREN2, - ACTIONS(2336), 1, - sym__unquoted_pattern_in_list, - STATE(4838), 1, + STATE(4772), 1, sym_comment, - [180204] = 6, + ACTIONS(8606), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179244] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4820), 1, - anon_sym_LPAREN2, - ACTIONS(8656), 1, - anon_sym_RBRACK, - ACTIONS(8658), 1, - sym__entry_separator, - STATE(4839), 1, + STATE(4773), 1, sym_comment, - STATE(5589), 1, - sym__expr_parenthesized_immediate, - [180223] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4914), 1, + ACTIONS(7078), 2, + anon_sym_AT2, sym__entry_separator, - ACTIONS(8660), 1, - anon_sym_LBRACK, - ACTIONS(8662), 1, + ACTIONS(7080), 2, anon_sym_RBRACK, - STATE(2246), 1, - aux_sym__types_body_repeat2, - STATE(4840), 1, + anon_sym_GT2, + [179259] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4774), 1, sym_comment, - [180242] = 3, + ACTIONS(8612), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179272] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4841), 1, + STATE(4775), 1, sym_comment, ACTIONS(7854), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [180255] = 6, - ACTIONS(103), 1, + [179285] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4914), 1, - sym__entry_separator, - ACTIONS(8660), 1, - anon_sym_LBRACK, - ACTIONS(8664), 1, - anon_sym_RBRACK, - STATE(2246), 1, - aux_sym__types_body_repeat2, - STATE(4842), 1, + STATE(4776), 1, + sym_comment, + ACTIONS(8612), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179298] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4777), 1, sym_comment, - [180274] = 6, + ACTIONS(8614), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179311] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4820), 1, - anon_sym_LPAREN2, - ACTIONS(8666), 1, - anon_sym_RBRACK, - ACTIONS(8668), 1, - sym__entry_separator, - STATE(4843), 1, + STATE(4778), 1, sym_comment, - STATE(5589), 1, - sym__expr_parenthesized_immediate, - [180293] = 3, + ACTIONS(7028), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(7030), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [179326] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4844), 1, + STATE(4779), 1, sym_comment, ACTIONS(859), 4, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [180306] = 3, + [179339] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8616), 1, + anon_sym_COLON2, + STATE(4780), 1, + sym_comment, + STATE(4884), 1, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(6290), 2, + sym__newline, + sym__space, + [179356] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4845), 1, + STATE(4781), 1, + sym_comment, + ACTIONS(4660), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [179369] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2336), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8618), 1, + anon_sym_DOT_DOT2, + STATE(4782), 1, + sym_comment, + ACTIONS(8620), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [179386] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4783), 1, sym_comment, ACTIONS(874), 4, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [180319] = 3, + [179399] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4846), 1, + STATE(4784), 1, sym_comment, ACTIONS(855), 4, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [180332] = 3, + [179412] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4847), 1, + STATE(4785), 1, sym_comment, ACTIONS(878), 4, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [180345] = 3, + [179425] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4848), 1, + STATE(4786), 1, + sym_comment, + ACTIONS(4662), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [179438] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4787), 1, + sym_comment, + ACTIONS(8622), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179451] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1884), 1, + sym__unquoted_pattern, + STATE(4788), 1, + sym_comment, + ACTIONS(1157), 3, + anon_sym_if, + anon_sym_PIPE, + anon_sym_EQ_GT, + [179466] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4789), 1, + sym_comment, + ACTIONS(7942), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [179479] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4790), 1, sym_comment, ACTIONS(882), 4, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [180358] = 3, + [179492] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4849), 1, + STATE(4791), 1, sym_comment, ACTIONS(863), 4, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [180371] = 4, + [179505] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1753), 1, - sym__unquoted_pattern, - STATE(4850), 1, + STATE(4792), 1, sym_comment, - ACTIONS(2316), 3, - anon_sym_if, - anon_sym_PIPE, - anon_sym_EQ_GT, - [180386] = 4, - ACTIONS(103), 1, + ACTIONS(8622), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179518] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3798), 1, - anon_sym_COLON2, - ACTIONS(8670), 2, + STATE(4793), 1, + sym_comment, + ACTIONS(8624), 4, sym__newline, - sym__space, - STATE(4851), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179531] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4794), 1, sym_comment, - aux_sym_pipe_element_parenthesized_repeat1, - [180401] = 3, + ACTIONS(8596), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179544] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4852), 1, + STATE(4795), 1, sym_comment, - ACTIONS(7942), 4, + ACTIONS(8624), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179557] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4796), 1, + sym_comment, + ACTIONS(8596), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179570] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4797), 1, + sym_comment, + ACTIONS(8604), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179583] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8626), 1, + anon_sym_LPAREN, + STATE(4798), 1, + sym_comment, + ACTIONS(8628), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [179598] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4799), 1, + sym_comment, + ACTIONS(8630), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [180414] = 6, + [179611] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3035), 1, + STATE(4800), 1, + sym_comment, + ACTIONS(8604), 4, sym__newline, - ACTIONS(4367), 1, - anon_sym_LBRACE, - STATE(691), 1, - aux_sym__repeat_newline, - STATE(3720), 1, - sym_block, - STATE(4853), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179624] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1399), 1, + anon_sym_RBRACK, + ACTIONS(1417), 1, + sym__entry_separator, + ACTIONS(2852), 1, + anon_sym_LPAREN2, + ACTIONS(2854), 1, + sym__unquoted_pattern_in_list, + STATE(4801), 1, sym_comment, - [180433] = 4, + [179643] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2818), 1, - sym__unquoted_pattern, - STATE(4854), 1, + ACTIONS(8548), 1, + anon_sym_LBRACK, + ACTIONS(8550), 1, + anon_sym_LPAREN, + STATE(4647), 1, + sym_parameter_parens, + STATE(4648), 1, + sym_parameter_bracks, + STATE(4802), 1, sym_comment, - ACTIONS(5230), 3, - anon_sym_if, - anon_sym_PIPE, - anon_sym_EQ_GT, - [180448] = 3, + [179662] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4855), 1, + STATE(4803), 1, sym_comment, - ACTIONS(8673), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [180461] = 6, + ACTIONS(8632), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179675] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4804), 1, + sym_comment, + ACTIONS(6236), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [179688] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(3674), 1, @@ -284712,43 +284152,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, ACTIONS(4108), 1, sym__entry_separator, - STATE(4856), 1, + STATE(4805), 1, sym_comment, - STATE(5446), 1, + STATE(5310), 1, sym__expr_parenthesized_immediate, - [180480] = 3, - ACTIONS(3), 1, + [179707] = 3, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4857), 1, + STATE(4806), 1, sym_comment, - ACTIONS(6236), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [180493] = 4, - ACTIONS(3), 1, + ACTIONS(900), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [179720] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2854), 1, - sym__unquoted_pattern, - STATE(4858), 1, + STATE(4807), 1, sym_comment, - ACTIONS(1409), 3, - anon_sym_LBRACK, + ACTIONS(892), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [179733] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8634), 1, anon_sym_LPAREN, - anon_sym_DASH_DASH, - [180508] = 4, + STATE(4808), 1, + sym_comment, + ACTIONS(8636), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [179748] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2854), 1, - sym__unquoted_pattern, - STATE(4859), 1, + STATE(4809), 1, sym_comment, - ACTIONS(1417), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [180523] = 6, + ACTIONS(7896), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [179761] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3035), 1, + sym__newline, + ACTIONS(4367), 1, + anon_sym_LBRACE, + STATE(3721), 1, + sym_block, + STATE(4810), 1, + sym_comment, + STATE(4887), 1, + aux_sym__repeat_newline, + [179780] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(3674), 1, @@ -284757,239 +284219,396 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, ACTIONS(4125), 1, sym__entry_separator, - STATE(4860), 1, + STATE(4811), 1, sym_comment, - STATE(5446), 1, + STATE(5310), 1, sym__expr_parenthesized_immediate, - [180542] = 3, + [179799] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2836), 1, + sym__entry_separator, + ACTIONS(2838), 1, + anon_sym_RBRACK, + ACTIONS(2840), 1, + anon_sym_LPAREN2, + ACTIONS(2842), 1, + sym__unquoted_pattern_in_list, + STATE(4812), 1, + sym_comment, + [179818] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4861), 1, + ACTIONS(3035), 1, + sym__newline, + ACTIONS(4367), 1, + anon_sym_LBRACE, + STATE(691), 1, + aux_sym__repeat_newline, + STATE(3702), 1, + sym_block, + STATE(4813), 1, sym_comment, - ACTIONS(7896), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [180555] = 5, + [179837] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8675), 1, + ACTIONS(8638), 1, anon_sym_LBRACE, STATE(3945), 1, sym__blosure, - STATE(4862), 1, + STATE(4814), 1, sym_comment, STATE(3932), 2, sym_block, sym_val_closure, - [180572] = 6, + [179854] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3035), 1, + sym__newline, + ACTIONS(4367), 1, + anon_sym_LBRACE, + STATE(691), 1, + aux_sym__repeat_newline, + STATE(3722), 1, + sym_block, + STATE(4815), 1, + sym_comment, + [179873] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3674), 1, + ACTIONS(8640), 1, + anon_sym_COLON2, + STATE(4816), 1, + sym_comment, + STATE(4882), 1, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(6290), 2, + sym__newline, + sym__space, + [179890] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8642), 1, + anon_sym_RBRACK, + STATE(4079), 1, + aux_sym_parameter_repeat2, + STATE(4817), 1, + sym_comment, + ACTIONS(1563), 2, + sym__newline, + anon_sym_COMMA, + [179907] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4818), 1, + sym_comment, + ACTIONS(7946), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [179920] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4819), 1, + sym_comment, + ACTIONS(2602), 2, anon_sym_LPAREN2, - ACTIONS(4157), 1, - anon_sym_RBRACE, - ACTIONS(4159), 1, sym__entry_separator, - STATE(4863), 1, + ACTIONS(2604), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [179935] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4820), 1, sym_comment, - STATE(5550), 1, - sym__expr_parenthesized_immediate, - [180591] = 6, + ACTIONS(896), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [179948] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3674), 1, + ACTIONS(2330), 1, anon_sym_LPAREN2, - ACTIONS(4167), 1, - anon_sym_RBRACE, - ACTIONS(4169), 1, + ACTIONS(2336), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2820), 1, sym__entry_separator, - STATE(4864), 1, + ACTIONS(2822), 1, + anon_sym_RBRACK, + STATE(4821), 1, sym_comment, - STATE(5550), 1, - sym__expr_parenthesized_immediate, - [180610] = 4, + [179967] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4865), 1, - sym_comment, - ACTIONS(2602), 2, - anon_sym_LPAREN2, + ACTIONS(919), 1, sym__entry_separator, - ACTIONS(2604), 2, + ACTIONS(923), 1, + anon_sym_RBRACE, + ACTIONS(2816), 1, + anon_sym_LPAREN2, + ACTIONS(2818), 1, + sym__unquoted_pattern_in_record, + STATE(4822), 1, + sym_comment, + [179986] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4823), 1, + sym_comment, + ACTIONS(8606), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179999] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4824), 1, + sym_comment, + ACTIONS(8606), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [180625] = 3, + [180012] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4866), 1, + ACTIONS(8122), 1, + anon_sym_LBRACE, + STATE(3780), 1, + sym__blosure, + STATE(4825), 1, sym_comment, - ACTIONS(7946), 4, + STATE(3849), 2, + sym_block, + sym_val_closure, + [180029] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4826), 1, + sym_comment, + ACTIONS(8644), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [180638] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(919), 1, - sym__entry_separator, - ACTIONS(923), 1, - anon_sym_RBRACE, - ACTIONS(2816), 1, - anon_sym_LPAREN2, - ACTIONS(2818), 1, - sym__unquoted_pattern_in_record, - STATE(4867), 1, - sym_comment, - [180657] = 3, + [180042] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4868), 1, + STATE(4827), 1, sym_comment, - ACTIONS(8677), 4, + ACTIONS(8646), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [180670] = 4, + [180055] = 3, ACTIONS(103), 1, anon_sym_POUND, - STATE(4869), 1, + STATE(4828), 1, sym_comment, - ACTIONS(1866), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1868), 2, + ACTIONS(904), 4, anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [180685] = 3, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [180068] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4870), 1, + STATE(4829), 1, sym_comment, - ACTIONS(8679), 4, + ACTIONS(8646), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [180698] = 5, + [180081] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8681), 1, - anon_sym_COLON2, - STATE(4871), 1, + ACTIONS(2326), 1, + sym__entry_separator, + ACTIONS(2328), 1, + anon_sym_RBRACK, + ACTIONS(2330), 1, + anon_sym_LPAREN2, + ACTIONS(2336), 1, + sym__unquoted_pattern_in_list, + STATE(4830), 1, sym_comment, - STATE(4873), 1, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(6290), 2, + [180100] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4831), 1, + sym_comment, + ACTIONS(8648), 4, sym__newline, - sym__space, - [180715] = 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [180113] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4872), 1, + STATE(4832), 1, sym_comment, - ACTIONS(8683), 4, + ACTIONS(8650), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [180728] = 5, + [180126] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8685), 1, - anon_sym_COLON2, - STATE(4851), 1, - aux_sym_pipe_element_parenthesized_repeat1, - STATE(4873), 1, + ACTIONS(4820), 1, + anon_sym_LPAREN2, + ACTIONS(8652), 1, + anon_sym_RBRACK, + ACTIONS(8654), 1, + sym__entry_separator, + STATE(4833), 1, sym_comment, - ACTIONS(6290), 2, - sym__newline, - sym__space, - [180745] = 6, + STATE(5684), 1, + sym__expr_parenthesized_immediate, + [180145] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6594), 1, sym__newline, - ACTIONS(8687), 1, + ACTIONS(8656), 1, anon_sym_EQ, - ACTIONS(8689), 1, + ACTIONS(8658), 1, anon_sym_COLON, STATE(3968), 1, aux_sym__repeat_newline, - STATE(4874), 1, + STATE(4834), 1, sym_comment, - [180764] = 5, + [180164] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3284), 1, - ts_builtin_sym_end, - STATE(1392), 1, - aux_sym__block_body_repeat1, - STATE(4875), 1, + STATE(4835), 1, sym_comment, - ACTIONS(55), 2, + ACTIONS(8648), 4, sym__newline, anon_sym_SEMI, - [180781] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [180177] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4876), 1, + STATE(4836), 1, sym_comment, - ACTIONS(8691), 4, + ACTIONS(8660), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [180794] = 5, + [180190] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8695), 1, - sym__space, - STATE(4706), 1, - aux_sym_attribute_repeat1, - STATE(4877), 1, + ACTIONS(4914), 1, + sym__entry_separator, + ACTIONS(8662), 1, + anon_sym_LBRACK, + ACTIONS(8664), 1, + anon_sym_RBRACK, + STATE(2246), 1, + aux_sym__types_body_repeat2, + STATE(4837), 1, sym_comment, - ACTIONS(8693), 2, - sym__newline, - anon_sym_SEMI, - [180811] = 3, + [180209] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4914), 1, + sym__entry_separator, + ACTIONS(8662), 1, + anon_sym_LBRACK, + ACTIONS(8666), 1, + anon_sym_RBRACK, + STATE(2246), 1, + aux_sym__types_body_repeat2, + STATE(4838), 1, + sym_comment, + [180228] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4878), 1, + STATE(4839), 1, sym_comment, - ACTIONS(8697), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [180824] = 5, + ACTIONS(8668), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [180241] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8699), 1, - anon_sym_LBRACE, - ACTIONS(8701), 1, - anon_sym_DOT_DOT2, - STATE(4879), 1, + STATE(4840), 1, sym_comment, - ACTIONS(8703), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [180841] = 5, + ACTIONS(8668), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [180254] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1898), 1, sym__unquoted_pattern, - ACTIONS(8485), 1, + ACTIONS(8511), 1, aux_sym__immediate_decimal_token5, - STATE(4880), 1, + STATE(4841), 1, sym_comment, ACTIONS(1896), 2, anon_sym_PIPE, anon_sym_EQ_GT, - [180858] = 6, + [180271] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2491), 1, + anon_sym_LBRACE, + ACTIONS(8670), 1, + anon_sym_DOT_DOT2, + STATE(4842), 1, + sym_comment, + ACTIONS(8672), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [180288] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4843), 1, + sym_comment, + ACTIONS(7938), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [180301] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4844), 1, + sym_comment, + ACTIONS(8674), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [180314] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8678), 1, + sym__space, + STATE(4845), 1, + sym_comment, + STATE(4938), 1, + aux_sym_attribute_repeat1, + ACTIONS(8676), 2, + sym__newline, + anon_sym_SEMI, + [180331] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1753), 1, @@ -285000,295 +284619,426 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, ACTIONS(2320), 1, anon_sym_LPAREN2, - STATE(4881), 1, + STATE(4846), 1, sym_comment, - [180877] = 4, + [180350] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2336), 1, - sym__unquoted_pattern, - STATE(4882), 1, + STATE(4847), 1, sym_comment, - ACTIONS(2820), 3, - anon_sym_if, - anon_sym_PIPE, - anon_sym_EQ_GT, - [180892] = 3, + ACTIONS(8674), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [180363] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4883), 1, + STATE(4848), 1, sym_comment, - ACTIONS(7938), 4, + ACTIONS(7954), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [180905] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2336), 1, - sym__unquoted_pattern, - STATE(4884), 1, - sym_comment, - ACTIONS(2326), 3, - anon_sym_if, - anon_sym_PIPE, - anon_sym_EQ_GT, - [180920] = 5, + [180376] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1958), 1, sym__unquoted_pattern, - ACTIONS(8705), 1, + ACTIONS(8680), 1, aux_sym__immediate_decimal_token5, - STATE(4885), 1, + STATE(4849), 1, sym_comment, ACTIONS(1956), 2, anon_sym_PIPE, anon_sym_EQ_GT, - [180937] = 3, + [180393] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4850), 1, + sym_comment, + ACTIONS(6962), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6964), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [180408] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4886), 1, + STATE(4851), 1, sym_comment, - ACTIONS(7954), 4, + ACTIONS(8682), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [180950] = 3, + [180421] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4887), 1, + ACTIONS(8684), 1, + anon_sym_LBRACE, + ACTIONS(8686), 1, + anon_sym_DOT_DOT2, + STATE(4852), 1, sym_comment, - ACTIONS(8707), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [180963] = 3, + ACTIONS(8688), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [180438] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4853), 1, + sym_comment, + ACTIONS(6978), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6980), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [180453] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4888), 1, + STATE(4854), 1, + sym_comment, + ACTIONS(7876), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [180466] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4820), 1, + anon_sym_LPAREN2, + ACTIONS(8690), 1, + anon_sym_RBRACK, + ACTIONS(8692), 1, + sym__entry_separator, + STATE(4855), 1, + sym_comment, + STATE(5684), 1, + sym__expr_parenthesized_immediate, + [180485] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4856), 1, sym_comment, - ACTIONS(8709), 4, + ACTIONS(8562), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [180976] = 3, + [180498] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4857), 1, + sym_comment, + ACTIONS(6988), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6990), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [180513] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4889), 1, + STATE(4858), 1, sym_comment, - ACTIONS(8711), 4, + ACTIONS(7908), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [180989] = 3, + [180526] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4890), 1, + STATE(4859), 1, sym_comment, - ACTIONS(8713), 4, + ACTIONS(8694), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [181002] = 3, + [180539] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4891), 1, + STATE(4860), 1, sym_comment, - ACTIONS(8715), 4, + ACTIONS(8696), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [181015] = 3, + [180552] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4892), 1, + STATE(4861), 1, sym_comment, - ACTIONS(7876), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [181028] = 3, + ACTIONS(8698), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [180565] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4893), 1, + STATE(4862), 1, sym_comment, - ACTIONS(7908), 4, + ACTIONS(8648), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [180578] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4863), 1, + sym_comment, + ACTIONS(8700), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [181041] = 3, + [180591] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4894), 1, + STATE(4864), 1, sym_comment, - ACTIONS(8717), 4, + ACTIONS(8702), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [181054] = 3, + [180604] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4895), 1, - sym_comment, - ACTIONS(8719), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [181067] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4896), 1, + STATE(4865), 1, sym_comment, - ACTIONS(1956), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1958), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [181082] = 4, - ACTIONS(103), 1, + ACTIONS(8648), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [180617] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8721), 1, - anon_sym_LPAREN, - STATE(4897), 1, + ACTIONS(2499), 1, + anon_sym_LBRACE, + ACTIONS(8704), 1, + anon_sym_DOT_DOT2, + STATE(4866), 1, sym_comment, - ACTIONS(8723), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [181097] = 4, + ACTIONS(8706), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [180634] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1791), 1, + ACTIONS(1753), 1, sym__unquoted_pattern, - STATE(4898), 1, + STATE(4867), 1, sym_comment, - ACTIONS(2776), 3, + ACTIONS(2316), 3, anon_sym_if, anon_sym_PIPE, anon_sym_EQ_GT, - [181112] = 6, + [180649] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3035), 1, - sym__newline, - ACTIONS(4367), 1, + STATE(4868), 1, + sym_comment, + ACTIONS(7022), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_AT2, anon_sym_LBRACE, - STATE(3632), 1, - sym_block, - STATE(4733), 1, - aux_sym__repeat_newline, - STATE(4899), 1, + [180662] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2507), 1, + anon_sym_LBRACE, + ACTIONS(8708), 1, + anon_sym_DOT_DOT2, + STATE(4869), 1, sym_comment, - [181131] = 4, - ACTIONS(103), 1, + ACTIONS(8710), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [180679] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4900), 1, + STATE(4870), 1, sym_comment, - ACTIONS(2114), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2116), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [181146] = 3, + ACTIONS(8712), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [180692] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4901), 1, + ACTIONS(3284), 1, + ts_builtin_sym_end, + STATE(1392), 1, + aux_sym__block_body_repeat1, + STATE(4871), 1, + sym_comment, + ACTIONS(55), 2, + sym__newline, + anon_sym_SEMI, + [180709] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4872), 1, sym_comment, - ACTIONS(8725), 4, + ACTIONS(8668), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [181159] = 6, + [180722] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1896), 1, - anon_sym_LBRACE, - ACTIONS(1898), 1, - sym__unquoted_pattern, - ACTIONS(8727), 1, - anon_sym_DOT, - ACTIONS(8729), 1, - aux_sym__immediate_decimal_token5, - STATE(4902), 1, + STATE(4873), 1, sym_comment, - [181178] = 3, + ACTIONS(8668), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [180735] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4903), 1, + STATE(4874), 1, sym_comment, - ACTIONS(7952), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [181191] = 5, + ACTIONS(8674), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [180748] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8701), 1, - anon_sym_DOT_DOT2, - ACTIONS(8731), 1, - anon_sym_LBRACE, - STATE(4904), 1, + STATE(4875), 1, sym_comment, - ACTIONS(8703), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [181208] = 3, + ACTIONS(8674), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [180761] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4905), 1, + STATE(4876), 1, sym_comment, - ACTIONS(8733), 4, + ACTIONS(8714), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [181221] = 3, + [180774] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4906), 1, + STATE(4877), 1, sym_comment, - ACTIONS(6216), 4, - ts_builtin_sym_end, + ACTIONS(8714), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [181234] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [180787] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4907), 1, + STATE(4878), 1, sym_comment, - ACTIONS(6228), 4, - ts_builtin_sym_end, + ACTIONS(8716), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [181247] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [180800] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4908), 1, + STATE(4879), 1, sym_comment, - ACTIONS(8735), 4, + ACTIONS(8716), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [181260] = 6, + [180813] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4880), 1, + sym_comment, + ACTIONS(7952), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [180826] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8686), 1, + anon_sym_DOT_DOT2, + ACTIONS(8718), 1, + anon_sym_LBRACE, + STATE(4881), 1, + sym_comment, + ACTIONS(8688), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [180843] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8720), 1, + anon_sym_COLON2, + STATE(4882), 1, + sym_comment, + STATE(4884), 1, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(6290), 2, + sym__newline, + sym__space, + [180860] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1896), 1, + anon_sym_LBRACE, + ACTIONS(1898), 1, + sym__unquoted_pattern, + ACTIONS(8722), 1, + anon_sym_DOT, + ACTIONS(8724), 1, + aux_sym__immediate_decimal_token5, + STATE(4883), 1, + sym_comment, + [180879] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3798), 1, + anon_sym_COLON2, + ACTIONS(8726), 2, + sym__newline, + sym__space, + STATE(4884), 2, + sym_comment, + aux_sym_pipe_element_parenthesized_repeat1, + [180894] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(919), 1, + anon_sym_LBRACE, + ACTIONS(8686), 1, + anon_sym_DOT_DOT2, + STATE(4885), 1, + sym_comment, + ACTIONS(8688), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [180911] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2330), 1, @@ -285299,9 +285049,22 @@ static const uint16_t ts_small_parse_table[] = { sym__entry_separator, ACTIONS(2822), 1, anon_sym_RBRACE, - STATE(4909), 1, + STATE(4886), 1, + sym_comment, + [180930] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3035), 1, + sym__newline, + ACTIONS(4367), 1, + anon_sym_LBRACE, + STATE(691), 1, + aux_sym__repeat_newline, + STATE(3720), 1, + sym_block, + STATE(4887), 1, sym_comment, - [181279] = 6, + [180949] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2326), 1, @@ -285312,54 +285075,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2336), 1, sym__unquoted_pattern_in_record, - STATE(4910), 1, + STATE(4888), 1, sym_comment, - [181298] = 3, + [180968] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4911), 1, + STATE(4889), 1, sym_comment, - ACTIONS(8737), 4, + ACTIONS(6216), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [181311] = 3, + anon_sym_LBRACE, + [180981] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2545), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2736), 1, + anon_sym_COLON2, + ACTIONS(4367), 1, + anon_sym_LBRACE, + STATE(4890), 1, + sym_comment, + STATE(4902), 1, + sym_block, + [181000] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4912), 1, + STATE(4891), 1, sym_comment, - ACTIONS(8739), 4, + ACTIONS(6228), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [181324] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2412), 1, anon_sym_LBRACE, - ACTIONS(8741), 1, - anon_sym_DOT_DOT2, - STATE(4913), 1, - sym_comment, - ACTIONS(8743), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [181341] = 6, - ACTIONS(103), 1, + [181013] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8745), 1, - anon_sym_COLON, - ACTIONS(8747), 1, - anon_sym_GT2, - ACTIONS(8749), 1, - sym__entry_separator, - STATE(4914), 1, + ACTIONS(2818), 1, + sym__unquoted_pattern, + STATE(4892), 1, sym_comment, - STATE(5369), 1, - sym__collection_annotation, - [181360] = 6, + ACTIONS(5230), 3, + anon_sym_if, + anon_sym_PIPE, + anon_sym_EQ_GT, + [181028] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2545), 1, @@ -285368,34 +285130,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, ACTIONS(4367), 1, anon_sym_LBRACE, - STATE(4915), 1, + STATE(4893), 1, sym_comment, - STATE(4920), 1, + STATE(4906), 1, sym_block, - [181379] = 3, + [181047] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4916), 1, + STATE(4894), 1, sym_comment, - ACTIONS(8733), 4, + ACTIONS(8729), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [181392] = 6, - ACTIONS(103), 1, + [181060] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2545), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2736), 1, - anon_sym_COLON2, - ACTIONS(4367), 1, - anon_sym_LBRACE, - STATE(4917), 1, + STATE(4895), 1, sym_comment, - STATE(4922), 1, - sym_block, - [181411] = 6, + ACTIONS(8731), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [181073] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2545), 1, @@ -285406,49 +285165,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(3698), 1, sym_block, - STATE(4918), 1, + STATE(4896), 1, sym_comment, - [181430] = 3, + [181092] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4919), 1, + STATE(4897), 1, sym_comment, - ACTIONS(8751), 4, + ACTIONS(8733), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [181443] = 3, + [181105] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4920), 1, + STATE(4898), 1, sym_comment, - ACTIONS(8753), 4, + ACTIONS(8735), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [181456] = 3, + [181118] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8737), 1, + anon_sym_COLON, + ACTIONS(8739), 1, + anon_sym_GT2, + ACTIONS(8741), 1, + sym__entry_separator, + STATE(4899), 1, + sym_comment, + STATE(5335), 1, + sym__collection_annotation, + [181137] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4900), 1, + sym_comment, + ACTIONS(6992), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6994), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [181152] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8737), 1, + anon_sym_COLON, + ACTIONS(8743), 1, + anon_sym_GT2, + ACTIONS(8745), 1, + sym__entry_separator, + STATE(4901), 1, + sym_comment, + STATE(5340), 1, + sym__collection_annotation, + [181171] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4921), 1, + STATE(4902), 1, sym_comment, - ACTIONS(8751), 4, + ACTIONS(8747), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [181469] = 3, + [181184] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1791), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2776), 1, + sym__entry_separator, + ACTIONS(2778), 1, + anon_sym_RBRACK, + ACTIONS(2834), 1, + anon_sym_LPAREN2, + STATE(4903), 1, + sym_comment, + [181203] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4922), 1, + STATE(4904), 1, sym_comment, - ACTIONS(8755), 4, + ACTIONS(8716), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [181482] = 6, + [181216] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1791), 1, @@ -285459,9 +285268,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, ACTIONS(2834), 1, anon_sym_LPAREN2, - STATE(4923), 1, + STATE(4905), 1, + sym_comment, + [181235] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4906), 1, + sym_comment, + ACTIONS(8749), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [181248] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4907), 1, + sym_comment, + ACTIONS(8751), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [181261] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4908), 1, sym_comment, - [181501] = 6, + ACTIONS(8716), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [181274] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2844), 1, @@ -285472,9 +285311,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2850), 1, sym__unquoted_pattern_in_list, - STATE(4924), 1, + STATE(4909), 1, sym_comment, - [181520] = 6, + [181293] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(919), 1, @@ -285485,30 +285324,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2818), 1, sym__unquoted_pattern_in_list, - STATE(4925), 1, - sym_comment, - [181539] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4926), 1, - sym_comment, - ACTIONS(8757), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [181552] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2842), 1, - sym__unquoted_pattern, - STATE(4927), 1, + STATE(4910), 1, sym_comment, - ACTIONS(2836), 3, - anon_sym_if, - anon_sym_PIPE, - anon_sym_EQ_GT, - [181567] = 6, + [181312] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2836), 1, @@ -285519,9 +285337,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2842), 1, sym__unquoted_pattern_in_record, - STATE(4928), 1, + STATE(4911), 1, + sym_comment, + [181331] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2850), 1, + sym__unquoted_pattern, + STATE(4912), 1, + sym_comment, + ACTIONS(2844), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [181346] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3674), 1, + anon_sym_LPAREN2, + ACTIONS(4157), 1, + anon_sym_RBRACE, + ACTIONS(4159), 1, + sym__entry_separator, + STATE(4913), 1, sym_comment, - [181586] = 6, + STATE(5819), 1, + sym__expr_parenthesized_immediate, + [181365] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4914), 1, + sym_comment, + ACTIONS(8753), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [181378] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(3674), 1, @@ -285530,22 +285382,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, ACTIONS(4121), 1, sym__entry_separator, - STATE(4929), 1, + STATE(4915), 1, sym_comment, - STATE(5446), 1, + STATE(5310), 1, sym__expr_parenthesized_immediate, - [181605] = 4, + [181397] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2604), 1, sym__unquoted_pattern, - STATE(4930), 1, + STATE(4916), 1, sym_comment, ACTIONS(2602), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [181620] = 6, + [181412] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2844), 1, @@ -285556,92 +285408,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2850), 1, sym__unquoted_pattern_in_record, - STATE(4931), 1, + STATE(4917), 1, sym_comment, - [181639] = 4, + [181431] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7850), 1, sym__unquoted_pattern, - STATE(4932), 1, + STATE(4918), 1, sym_comment, ACTIONS(1157), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [181654] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4933), 1, - sym_comment, - ACTIONS(4622), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [181667] = 3, + [181446] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4934), 1, + STATE(4919), 1, sym_comment, - ACTIONS(4634), 4, - ts_builtin_sym_end, + ACTIONS(8753), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [181680] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [181459] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4935), 1, + STATE(4920), 1, sym_comment, - ACTIONS(8759), 4, + ACTIONS(8755), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [181693] = 5, - ACTIONS(3), 1, + [181472] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(919), 1, - anon_sym_LBRACE, - ACTIONS(8701), 1, - anon_sym_DOT_DOT2, - STATE(4936), 1, + ACTIONS(3674), 1, + anon_sym_LPAREN2, + ACTIONS(4167), 1, + anon_sym_RBRACE, + ACTIONS(4169), 1, + sym__entry_separator, + STATE(4921), 1, sym_comment, - ACTIONS(8703), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [181710] = 3, + STATE(5819), 1, + sym__expr_parenthesized_immediate, + [181491] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4937), 1, + STATE(4922), 1, sym_comment, - ACTIONS(8759), 4, + ACTIONS(8757), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [181723] = 3, - ACTIONS(3), 1, + [181504] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4938), 1, + ACTIONS(1753), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2316), 1, + sym__entry_separator, + ACTIONS(2318), 1, + anon_sym_RBRACK, + ACTIONS(2320), 1, + anon_sym_LPAREN2, + STATE(4923), 1, sym_comment, - ACTIONS(8761), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [181736] = 3, + [181523] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4924), 1, + sym_comment, + ACTIONS(1866), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1868), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [181538] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4939), 1, + STATE(4925), 1, sym_comment, - ACTIONS(8761), 4, + ACTIONS(8759), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [181749] = 6, + [181551] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1407), 1, @@ -285652,9 +285509,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2854), 1, sym__unquoted_pattern_in_record, - STATE(4940), 1, + STATE(4926), 1, sym_comment, - [181768] = 6, + [181570] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1399), 1, @@ -285665,322 +285522,422 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(2854), 1, sym__unquoted_pattern_in_record, - STATE(4941), 1, + STATE(4927), 1, sym_comment, - [181787] = 3, + [181589] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4942), 1, + STATE(4928), 1, sym_comment, - ACTIONS(8733), 4, + ACTIONS(8755), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [181800] = 3, + [181602] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4943), 1, + STATE(4929), 1, sym_comment, - ACTIONS(8733), 4, + ACTIONS(8761), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [181813] = 4, + [181615] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2604), 1, + STATE(4930), 1, + sym_comment, + ACTIONS(8761), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [181628] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4931), 1, + sym_comment, + ACTIONS(6232), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [181641] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4820), 1, + anon_sym_LPAREN2, + ACTIONS(8763), 1, + anon_sym_RBRACK, + ACTIONS(8765), 1, + sym__entry_separator, + STATE(4932), 1, + sym_comment, + STATE(5684), 1, + sym__expr_parenthesized_immediate, + [181660] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8678), 1, + sym__space, + STATE(4845), 1, + aux_sym_attribute_repeat1, + STATE(4933), 1, + sym_comment, + ACTIONS(8767), 2, + sym__newline, + anon_sym_SEMI, + [181677] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3035), 1, + sym__newline, + ACTIONS(8769), 1, + anon_sym_LBRACK, + STATE(691), 1, + aux_sym__repeat_newline, + STATE(4934), 1, + sym_comment, + STATE(5736), 1, + sym_val_list, + [181696] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2854), 1, + sym__unquoted_pattern, + STATE(4935), 1, + sym_comment, + ACTIONS(1409), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [181711] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2854), 1, + sym__unquoted_pattern, + STATE(4936), 1, + sym_comment, + ACTIONS(1417), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [181726] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2519), 1, + sym__entry_separator, + ACTIONS(8771), 1, + anon_sym_LBRACK2, + STATE(4937), 1, + sym_comment, + ACTIONS(2521), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [181743] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8773), 1, + sym__space, + ACTIONS(6671), 2, + sym__newline, + anon_sym_SEMI, + STATE(4938), 2, + sym_comment, + aux_sym_attribute_repeat1, + [181758] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4939), 1, + sym_comment, + ACTIONS(8776), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [181771] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2336), 1, + sym__unquoted_pattern, + STATE(4940), 1, + sym_comment, + ACTIONS(2820), 3, + anon_sym_if, + anon_sym_PIPE, + anon_sym_EQ_GT, + [181786] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(851), 1, + sym__table_head_separator, + ACTIONS(8507), 1, + anon_sym_DOT2, + STATE(4941), 1, + sym_comment, + STATE(4948), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(5292), 1, + sym_path, + [181805] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4942), 1, + sym_comment, + ACTIONS(6177), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [181818] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2842), 1, + sym__unquoted_pattern, + STATE(4943), 1, + sym_comment, + ACTIONS(2836), 3, + anon_sym_if, + anon_sym_PIPE, + anon_sym_EQ_GT, + [181833] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2336), 1, sym__unquoted_pattern, STATE(4944), 1, sym_comment, - ACTIONS(2602), 3, + ACTIONS(2326), 3, anon_sym_if, anon_sym_PIPE, anon_sym_EQ_GT, - [181828] = 5, - ACTIONS(103), 1, + [181848] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8695), 1, - sym__space, - STATE(4877), 1, - aux_sym_attribute_repeat1, STATE(4945), 1, sym_comment, - ACTIONS(8763), 2, + ACTIONS(8207), 4, + anon_sym_export, + anon_sym_def, + anon_sym_extern, + anon_sym_AT, + [181861] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4946), 1, + sym_comment, + ACTIONS(1956), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1958), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [181876] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4914), 1, + sym__entry_separator, + ACTIONS(8662), 1, + anon_sym_LBRACK, + ACTIONS(8778), 1, + anon_sym_RBRACK, + STATE(2246), 1, + aux_sym__types_body_repeat2, + STATE(4947), 1, + sym_comment, + [181895] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(867), 1, + sym__table_head_separator, + ACTIONS(8780), 1, + anon_sym_DOT2, + STATE(5292), 1, + sym_path, + STATE(4948), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + [181912] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8783), 1, + anon_sym_LPAREN, + STATE(4949), 1, + sym_comment, + ACTIONS(8785), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [181927] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8180), 1, + anon_sym_RPAREN, + STATE(4714), 1, + aux_sym__block_body_repeat1, + STATE(4950), 1, + sym_comment, + ACTIONS(8602), 2, sym__newline, anon_sym_SEMI, - [181845] = 3, - ACTIONS(3), 1, + [181944] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4946), 1, + ACTIONS(6304), 1, + anon_sym_COLON2, + STATE(4951), 1, sym_comment, - ACTIONS(8765), 4, + STATE(4958), 1, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(6290), 2, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [181858] = 6, + sym__space, + [181961] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3035), 1, - sym__newline, - ACTIONS(4367), 1, - anon_sym_LBRACE, - STATE(691), 1, - aux_sym__repeat_newline, - STATE(3702), 1, - sym_block, - STATE(4947), 1, + STATE(4952), 1, sym_comment, - [181877] = 4, + ACTIONS(8787), 4, + anon_sym_EQ, + anon_sym_in, + sym__newline, + anon_sym_COLON, + [181974] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2850), 1, + ACTIONS(1791), 1, sym__unquoted_pattern, - STATE(4948), 1, + STATE(4953), 1, sym_comment, - ACTIONS(2844), 3, + ACTIONS(2776), 3, anon_sym_if, anon_sym_PIPE, anon_sym_EQ_GT, - [181892] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1157), 1, - sym__space, - ACTIONS(5937), 1, - sym__unquoted_pattern, - STATE(4949), 1, - sym_comment, - ACTIONS(1127), 2, - sym__newline, - anon_sym_SEMI, - [181909] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1753), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2316), 1, - sym__entry_separator, - ACTIONS(2318), 1, - anon_sym_RBRACK, - ACTIONS(2320), 1, - anon_sym_LPAREN2, - STATE(4950), 1, - sym_comment, - [181928] = 3, + [181989] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4951), 1, + STATE(4954), 1, sym_comment, - ACTIONS(8767), 4, + ACTIONS(8789), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [181941] = 3, + [182002] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4952), 1, + ACTIONS(2412), 1, + anon_sym_LBRACE, + ACTIONS(8791), 1, + anon_sym_DOT_DOT2, + STATE(4955), 1, + sym_comment, + ACTIONS(8793), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [182019] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4956), 1, sym_comment, - ACTIONS(8769), 4, + ACTIONS(8795), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [181954] = 6, + [182032] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4820), 1, + STATE(4957), 1, + sym_comment, + ACTIONS(2114), 2, anon_sym_LPAREN2, - ACTIONS(8771), 1, - anon_sym_RBRACK, - ACTIONS(8773), 1, sym__entry_separator, - STATE(4953), 1, - sym_comment, - STATE(5589), 1, - sym__expr_parenthesized_immediate, - [181973] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4954), 1, - sym_comment, - ACTIONS(896), 4, + ACTIONS(2116), 2, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [181986] = 6, + sym__unquoted_pattern_in_list, + [182047] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1791), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2776), 1, - sym__entry_separator, - ACTIONS(2778), 1, - anon_sym_RBRACK, - ACTIONS(2834), 1, - anon_sym_LPAREN2, - STATE(4955), 1, + ACTIONS(8797), 1, + anon_sym_COLON2, + STATE(4884), 1, + aux_sym_pipe_element_parenthesized_repeat1, + STATE(4958), 1, sym_comment, - [182005] = 3, + ACTIONS(6290), 2, + sym__newline, + sym__space, + [182064] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4956), 1, + STATE(4959), 1, sym_comment, - ACTIONS(8775), 4, + ACTIONS(8799), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [182018] = 5, + [182077] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2491), 1, - anon_sym_LBRACE, - ACTIONS(8777), 1, - anon_sym_DOT_DOT2, - STATE(4957), 1, + STATE(4960), 1, sym_comment, - ACTIONS(8779), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [182035] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2499), 1, + ACTIONS(4622), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(8781), 1, - anon_sym_DOT_DOT2, - STATE(4958), 1, - sym_comment, - ACTIONS(8783), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [182052] = 5, + [182090] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2507), 1, + ACTIONS(3035), 1, + sym__newline, + ACTIONS(4367), 1, anon_sym_LBRACE, - ACTIONS(8785), 1, - anon_sym_DOT_DOT2, - STATE(4959), 1, + STATE(4001), 1, + sym_block, + STATE(4961), 1, sym_comment, - ACTIONS(8787), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [182069] = 3, + STATE(4966), 1, + aux_sym__repeat_newline, + [182109] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4960), 1, + ACTIONS(2818), 1, + sym__unquoted_pattern, + STATE(4962), 1, sym_comment, - ACTIONS(8203), 4, - anon_sym_export, - anon_sym_def, - anon_sym_extern, - anon_sym_AT, - [182082] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4914), 1, - sym__entry_separator, - ACTIONS(8660), 1, + ACTIONS(919), 3, anon_sym_LBRACK, - ACTIONS(8789), 1, - anon_sym_RBRACK, - STATE(2246), 1, - aux_sym__types_body_repeat2, - STATE(4961), 1, - sym_comment, - [182101] = 3, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [182124] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4962), 1, + STATE(4963), 1, sym_comment, - ACTIONS(7022), 4, + ACTIONS(8801), 4, anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_AT2, - anon_sym_LBRACE, - [182114] = 6, + anon_sym_in, + sym__newline, + anon_sym_COLON, + [182137] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4914), 1, sym__entry_separator, - ACTIONS(8660), 1, + ACTIONS(8662), 1, anon_sym_LBRACK, - ACTIONS(8791), 1, + ACTIONS(8803), 1, anon_sym_RBRACK, STATE(2246), 1, aux_sym__types_body_repeat2, - STATE(4963), 1, - sym_comment, - [182133] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1753), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8793), 1, - anon_sym_DOT_DOT2, STATE(4964), 1, sym_comment, - ACTIONS(8795), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [182150] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2818), 1, - sym__unquoted_pattern, - STATE(4965), 1, - sym_comment, - ACTIONS(919), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [182165] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4966), 1, - sym_comment, - ACTIONS(8797), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [182178] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4967), 1, - sym_comment, - ACTIONS(8799), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [182191] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4968), 1, - sym_comment, - ACTIONS(8801), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [182204] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4969), 1, - sym_comment, - ACTIONS(8803), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [182217] = 6, + [182156] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -285989,11 +285946,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(4002), 1, sym_block, - STATE(4970), 1, + STATE(4965), 1, sym_comment, - STATE(4973), 1, + STATE(4968), 1, aux_sym__repeat_newline, - [182236] = 6, + [182175] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -286004,19 +285961,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__repeat_newline, STATE(4003), 1, sym_block, - STATE(4971), 1, + STATE(4966), 1, sym_comment, - [182255] = 3, + [182194] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4972), 1, + STATE(4967), 1, sym_comment, - ACTIONS(8805), 4, + ACTIONS(4634), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [182268] = 6, + anon_sym_LBRACE, + [182207] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -286027,9 +285984,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__repeat_newline, STATE(4005), 1, sym_block, - STATE(4973), 1, + STATE(4968), 1, + sym_comment, + [182226] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4969), 1, + sym_comment, + ACTIONS(8562), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [182239] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1753), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8805), 1, + anon_sym_DOT_DOT2, + STATE(4970), 1, sym_comment, - [182287] = 6, + ACTIONS(8807), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [182256] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -286038,11 +286017,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(3878), 1, sym_block, - STATE(4974), 1, + STATE(4971), 1, sym_comment, - STATE(4976), 1, + STATE(4973), 1, aux_sym__repeat_newline, - [182306] = 6, + [182275] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -286051,11 +286030,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(3879), 1, sym_block, - STATE(4975), 1, + STATE(4972), 1, sym_comment, - STATE(4977), 1, + STATE(4974), 1, aux_sym__repeat_newline, - [182325] = 6, + [182294] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -286066,9 +286045,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__repeat_newline, STATE(3880), 1, sym_block, - STATE(4976), 1, + STATE(4973), 1, sym_comment, - [182344] = 6, + [182313] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3035), 1, @@ -286079,8172 +286058,8227 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__repeat_newline, STATE(3882), 1, sym_block, + STATE(4974), 1, + sym_comment, + [182332] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4975), 1, + sym_comment, + ACTIONS(8546), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [182345] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4976), 1, + sym_comment, + ACTIONS(8809), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [182358] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3286), 1, + ts_builtin_sym_end, + STATE(1399), 1, + aux_sym__block_body_repeat1, STATE(4977), 1, sym_comment, - [182363] = 3, + ACTIONS(55), 2, + sym__newline, + anon_sym_SEMI, + [182375] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4978), 1, sym_comment, - ACTIONS(8807), 4, + ACTIONS(8811), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [182376] = 3, + [182388] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7970), 1, + anon_sym_LBRACK, + ACTIONS(7972), 1, + anon_sym_LPAREN, + STATE(4437), 1, + sym_parameter_parens, + STATE(4438), 1, + sym_parameter_bracks, STATE(4979), 1, sym_comment, - ACTIONS(8553), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [182389] = 4, + [182407] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2728), 1, - sym__entry_separator, STATE(4980), 1, sym_comment, - ACTIONS(2730), 2, + ACTIONS(6982), 2, + anon_sym_AT2, + sym__entry_separator, + ACTIONS(6984), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [182403] = 3, - ACTIONS(3), 1, + anon_sym_GT2, + [182422] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4914), 1, + sym__entry_separator, + ACTIONS(8813), 1, + anon_sym_RBRACK, + STATE(4947), 1, + aux_sym__types_body_repeat2, STATE(4981), 1, sym_comment, - ACTIONS(8571), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [182415] = 3, + [182438] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4982), 1, sym_comment, - ACTIONS(8573), 3, - ts_builtin_sym_end, + ACTIONS(8815), 3, sym__newline, anon_sym_SEMI, - [182427] = 5, - ACTIONS(103), 1, + anon_sym_RPAREN, + [182450] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4914), 1, - sym__entry_separator, - ACTIONS(8809), 1, - anon_sym_RBRACK, - STATE(2344), 1, - aux_sym__types_body_repeat2, STATE(4983), 1, sym_comment, - [182443] = 5, + ACTIONS(8588), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [182462] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8811), 1, - anon_sym_RBRACK, - ACTIONS(8813), 1, - sym_hex_digit, STATE(4984), 1, sym_comment, - STATE(4988), 1, - aux_sym_val_binary_repeat1, - [182459] = 3, + ACTIONS(8624), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [182474] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4985), 1, sym_comment, - ACTIONS(8709), 3, + ACTIONS(8624), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [182471] = 5, + [182486] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4567), 1, - anon_sym_AT2, - ACTIONS(8815), 1, - anon_sym_GT2, + ACTIONS(8503), 1, + anon_sym_PIPE, + ACTIONS(8817), 1, + anon_sym_EQ_GT, STATE(4986), 1, sym_comment, - STATE(5761), 1, - sym_param_cmd, - [182487] = 4, + STATE(5261), 1, + aux_sym_match_pattern_repeat1, + [182502] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2412), 1, + ACTIONS(5545), 1, sym__entry_separator, + ACTIONS(5598), 1, + anon_sym_RBRACE, + STATE(2800), 1, + aux_sym__types_body_repeat2, STATE(4987), 1, sym_comment, - ACTIONS(2414), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [182501] = 5, + [182518] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8813), 1, - sym_hex_digit, - ACTIONS(8817), 1, - anon_sym_RBRACK, STATE(4988), 1, sym_comment, - STATE(4998), 1, - aux_sym_val_binary_repeat1, - [182517] = 3, + ACTIONS(8694), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [182530] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4989), 1, sym_comment, - ACTIONS(8573), 3, + ACTIONS(8590), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [182529] = 4, - ACTIONS(103), 1, + [182542] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2874), 1, - sym__entry_separator, STATE(4990), 1, sym_comment, - ACTIONS(2876), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [182543] = 4, - ACTIONS(103), 1, + ACTIONS(8594), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [182554] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2878), 1, - sym__entry_separator, STATE(4991), 1, sym_comment, - ACTIONS(2880), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [182557] = 5, + ACTIONS(2408), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [182566] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4255), 1, + ACTIONS(4324), 1, sym__entry_separator, - ACTIONS(8819), 1, - anon_sym_RBRACE, - STATE(1777), 1, - aux_sym__types_body_repeat2, STATE(4992), 1, sym_comment, - [182573] = 3, + ACTIONS(4322), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [182580] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8819), 1, + anon_sym_RBRACK, + ACTIONS(8821), 1, + sym_hex_digit, STATE(4993), 1, sym_comment, - ACTIONS(8739), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [182585] = 5, - ACTIONS(103), 1, + STATE(5203), 1, + aux_sym_val_binary_repeat1, + [182596] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3808), 1, - sym__newline, - ACTIONS(3810), 1, - sym__space, - STATE(1460), 1, - aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(1753), 1, + sym__unquoted_pattern, STATE(4994), 1, sym_comment, - [182601] = 3, + ACTIONS(2316), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [182610] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1874), 1, + anon_sym_LPAREN2, + ACTIONS(1954), 1, + sym__unquoted_pattern, STATE(4995), 1, sym_comment, - ACTIONS(8713), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [182613] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4996), 1, - sym_comment, - ACTIONS(8717), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [182625] = 5, + STATE(5328), 1, + sym__expr_parenthesized_immediate, + [182626] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2814), 1, aux_sym_cmd_identifier_token2, ACTIONS(4369), 1, anon_sym_LBRACE, - STATE(4997), 1, - sym_comment, - STATE(5051), 1, + STATE(3851), 1, sym_block, - [182641] = 4, + STATE(4996), 1, + sym_comment, + [182642] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8821), 1, - anon_sym_RBRACK, + STATE(4997), 1, + sym_comment, + ACTIONS(3348), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [182654] = 5, + ACTIONS(103), 1, + anon_sym_POUND, ACTIONS(8823), 1, - sym_hex_digit, - STATE(4998), 2, + anon_sym_POUND_BANG, + ACTIONS(8825), 1, + sym__newline, + STATE(4998), 1, sym_comment, - aux_sym_val_binary_repeat1, - [182655] = 4, + STATE(5181), 1, + aux_sym__repeat_newline, + [182670] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2882), 1, + ACTIONS(1157), 1, sym__entry_separator, STATE(4999), 1, sym_comment, - ACTIONS(2884), 2, + ACTIONS(1127), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [182669] = 3, - ACTIONS(3), 1, + [182684] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(919), 1, + sym__entry_separator, STATE(5000), 1, sym_comment, - ACTIONS(8826), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [182681] = 4, + ACTIONS(923), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [182698] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2886), 1, + ACTIONS(2529), 1, sym__entry_separator, STATE(5001), 1, sym_comment, - ACTIONS(2888), 2, + ACTIONS(2531), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [182695] = 3, + [182712] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5002), 1, sym_comment, - ACTIONS(8828), 3, + ACTIONS(8827), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [182707] = 5, + [182724] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1956), 1, - anon_sym_LBRACE, - ACTIONS(1958), 1, - sym__unquoted_pattern, - ACTIONS(8830), 1, - aux_sym__immediate_decimal_token5, STATE(5003), 1, sym_comment, - [182723] = 5, + ACTIONS(8829), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [182736] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8813), 1, - sym_hex_digit, - ACTIONS(8832), 1, - anon_sym_RBRACK, STATE(5004), 1, sym_comment, - STATE(5008), 1, - aux_sym_val_binary_repeat1, - [182739] = 5, + ACTIONS(8831), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [182748] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8377), 1, - anon_sym_if, - ACTIONS(8834), 1, - anon_sym_EQ_GT, STATE(5005), 1, sym_comment, - STATE(5575), 1, - sym_match_guard, - [182755] = 5, - ACTIONS(3), 1, + ACTIONS(2424), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [182760] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8813), 1, - sym_hex_digit, - ACTIONS(8836), 1, - anon_sym_RBRACK, + ACTIONS(6216), 1, + sym__entry_separator, STATE(5006), 1, sym_comment, - STATE(5061), 1, - aux_sym_val_binary_repeat1, - [182771] = 3, - ACTIONS(3), 1, + ACTIONS(6218), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [182774] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(6228), 1, + sym__entry_separator, STATE(5007), 1, sym_comment, - ACTIONS(5122), 3, - anon_sym_if, - anon_sym_PIPE, - anon_sym_EQ_GT, - [182783] = 5, + ACTIONS(6230), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [182788] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8813), 1, - sym_hex_digit, - ACTIONS(8838), 1, - anon_sym_RBRACK, - STATE(4998), 1, - aux_sym_val_binary_repeat1, STATE(5008), 1, sym_comment, - [182799] = 4, - ACTIONS(103), 1, + ACTIONS(8833), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [182800] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2640), 1, - sym__entry_separator, + ACTIONS(4567), 1, + anon_sym_AT2, + ACTIONS(8835), 1, + anon_sym_GT2, STATE(5009), 1, sym_comment, - ACTIONS(2642), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [182813] = 4, - ACTIONS(103), 1, + STATE(5520), 1, + sym_param_cmd, + [182816] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2644), 1, - sym__entry_separator, + ACTIONS(8837), 1, + anon_sym_export, + ACTIONS(8839), 1, + anon_sym_def, + ACTIONS(8841), 1, + anon_sym_extern, STATE(5010), 1, sym_comment, - ACTIONS(2646), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [182827] = 4, - ACTIONS(103), 1, + [182832] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2680), 1, - sym__entry_separator, + ACTIONS(4567), 1, + anon_sym_AT2, + ACTIONS(8843), 1, + anon_sym_GT2, STATE(5011), 1, sym_comment, - ACTIONS(2682), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [182841] = 4, + STATE(5735), 1, + sym_param_cmd, + [182848] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2336), 1, - sym__unquoted_pattern, + ACTIONS(8845), 1, + anon_sym_QMARK2, STATE(5012), 1, sym_comment, - ACTIONS(2820), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [182855] = 3, - ACTIONS(3), 1, + ACTIONS(886), 2, + sym__table_head_separator, + anon_sym_DOT2, + [182862] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4914), 1, + sym__entry_separator, + ACTIONS(8662), 1, + anon_sym_LBRACK, + STATE(2246), 1, + aux_sym__types_body_repeat2, STATE(5013), 1, sym_comment, - ACTIONS(8608), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [182867] = 4, - ACTIONS(3), 1, + [182878] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2336), 1, - sym__unquoted_pattern, + ACTIONS(2610), 1, + sym__entry_separator, STATE(5014), 1, sym_comment, - ACTIONS(2326), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [182881] = 5, + ACTIONS(2612), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [182892] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5545), 1, + ACTIONS(2828), 1, sym__entry_separator, - ACTIONS(8840), 1, - anon_sym_RBRACE, - STATE(2805), 1, - aux_sym__types_body_repeat2, STATE(5015), 1, sym_comment, - [182897] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5005), 1, - sym__entry_separator, - ACTIONS(8842), 1, + ACTIONS(2830), 2, anon_sym_RBRACK, - STATE(2406), 1, - aux_sym__types_body_repeat2, + anon_sym_RBRACE, + [182906] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(5016), 1, sym_comment, - [182913] = 4, + ACTIONS(8729), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [182918] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2684), 1, + ACTIONS(4914), 1, sym__entry_separator, + ACTIONS(8847), 1, + anon_sym_RBRACK, + STATE(4964), 1, + aux_sym__types_body_repeat2, STATE(5017), 1, sym_comment, - ACTIONS(2686), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [182927] = 5, + [182934] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3674), 1, - anon_sym_LPAREN2, - ACTIONS(7423), 1, - sym__unquoted_pattern_in_record, STATE(5018), 1, sym_comment, - STATE(5443), 1, - sym__expr_parenthesized_immediate, - [182943] = 3, + ACTIONS(8731), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [182946] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1896), 1, + anon_sym_LBRACE, + ACTIONS(1898), 1, + sym__unquoted_pattern, + ACTIONS(8724), 1, + aux_sym__immediate_decimal_token5, STATE(5019), 1, sym_comment, - ACTIONS(8679), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [182955] = 4, - ACTIONS(103), 1, + [182962] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8844), 1, - anon_sym_DQUOTE, + ACTIONS(4820), 1, + anon_sym_LPAREN2, + ACTIONS(4830), 1, + sym__unquoted_pattern_in_list, STATE(5020), 1, sym_comment, - ACTIONS(8846), 2, - sym__escaped_str_content, - sym_escape_sequence, - [182969] = 4, + STATE(5378), 1, + sym__expr_parenthesized_immediate, + [182978] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8848), 1, - anon_sym_LPAREN, + ACTIONS(2412), 1, + sym__entry_separator, STATE(5021), 1, sym_comment, - ACTIONS(8850), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [182983] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8813), 1, - sym_hex_digit, - ACTIONS(8852), 1, + ACTIONS(2414), 2, anon_sym_RBRACK, + anon_sym_RBRACE, + [182992] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4255), 1, + sym__entry_separator, + ACTIONS(8849), 1, + anon_sym_RBRACE, + STATE(1776), 1, + aux_sym__types_body_repeat2, STATE(5022), 1, sym_comment, - STATE(5025), 1, - aux_sym_val_binary_repeat1, - [182999] = 3, - ACTIONS(3), 1, + [183008] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4255), 1, + sym__entry_separator, + ACTIONS(8851), 1, + anon_sym_RBRACE, + STATE(1777), 1, + aux_sym__types_body_repeat2, STATE(5023), 1, sym_comment, - ACTIONS(8610), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [183011] = 3, + [183024] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5024), 1, sym_comment, - ACTIONS(8775), 3, + ACTIONS(8733), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [183023] = 5, - ACTIONS(3), 1, + [183036] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8813), 1, - sym_hex_digit, - ACTIONS(8854), 1, - anon_sym_RBRACK, - STATE(4998), 1, - aux_sym_val_binary_repeat1, + ACTIONS(3808), 1, + sym__newline, + ACTIONS(3810), 1, + sym__space, + STATE(1460), 1, + aux_sym_pipe_element_parenthesized_repeat1, STATE(5025), 1, sym_comment, - [183039] = 4, + [183052] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1884), 1, - sym__unquoted_pattern, STATE(5026), 1, sym_comment, - ACTIONS(1157), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [183053] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2688), 1, - sym__entry_separator, - STATE(5027), 1, - sym_comment, - ACTIONS(2690), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [183067] = 5, + ACTIONS(8712), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [183064] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(2814), 1, aux_sym_cmd_identifier_token2, ACTIONS(4369), 1, anon_sym_LBRACE, - STATE(5028), 1, + STATE(5027), 1, sym_comment, - STATE(5128), 1, + STATE(5040), 1, sym_block, - [183083] = 3, + [183080] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5028), 1, + sym_comment, + ACTIONS(8538), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [183092] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5029), 1, sym_comment, - ACTIONS(8856), 3, - anon_sym_if, - anon_sym_PIPE, - anon_sym_EQ_GT, - [183095] = 3, + ACTIONS(8696), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [183104] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5030), 1, sym_comment, - ACTIONS(8612), 3, + ACTIONS(8562), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [183107] = 4, + [183116] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1791), 1, - sym__unquoted_pattern, STATE(5031), 1, sym_comment, - ACTIONS(2776), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [183121] = 3, + ACTIONS(8698), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [183128] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5032), 1, sym_comment, - ACTIONS(8636), 3, - ts_builtin_sym_end, + ACTIONS(8853), 3, sym__newline, anon_sym_SEMI, - [183133] = 5, - ACTIONS(103), 1, + anon_sym_RPAREN, + [183140] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5029), 1, - sym__entry_separator, - ACTIONS(8858), 1, - anon_sym_RBRACK, - STATE(2395), 1, - aux_sym__types_body_repeat2, STATE(5033), 1, sym_comment, - [183149] = 3, + ACTIONS(8789), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [183152] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2336), 1, + sym__unquoted_pattern, STATE(5034), 1, sym_comment, - ACTIONS(8575), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [183161] = 4, + ACTIONS(2820), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [183166] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2810), 1, - sym__entry_separator, + ACTIONS(2814), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4369), 1, + anon_sym_LBRACE, STATE(5035), 1, sym_comment, - ACTIONS(2812), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [183175] = 3, + STATE(5065), 1, + sym_block, + [183182] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2336), 1, + sym__unquoted_pattern, STATE(5036), 1, sym_comment, - ACTIONS(8575), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [183187] = 5, + ACTIONS(2326), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [183196] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8813), 1, - sym_hex_digit, - ACTIONS(8860), 1, - anon_sym_RBRACK, STATE(5037), 1, sym_comment, - STATE(5059), 1, - aux_sym_val_binary_repeat1, - [183203] = 5, + ACTIONS(8855), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [183208] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8813), 1, - sym_hex_digit, - ACTIONS(8862), 1, - anon_sym_RBRACK, + ACTIONS(8501), 1, + anon_sym_if, + ACTIONS(8857), 1, + anon_sym_EQ_GT, STATE(5038), 1, sym_comment, - STATE(5042), 1, - aux_sym_val_binary_repeat1, - [183219] = 4, + STATE(5670), 1, + sym_match_guard, + [183224] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2842), 1, - sym__unquoted_pattern, STATE(5039), 1, sym_comment, - ACTIONS(2836), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [183233] = 5, - ACTIONS(103), 1, + ACTIONS(8562), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [183236] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5005), 1, - sym__entry_separator, - ACTIONS(8864), 1, - anon_sym_RBRACK, - STATE(2410), 1, - aux_sym__types_body_repeat2, STATE(5040), 1, sym_comment, - [183249] = 4, - ACTIONS(103), 1, + ACTIONS(8747), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [183248] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2692), 1, - sym__entry_separator, + ACTIONS(8861), 1, + anon_sym_COMMA, STATE(5041), 1, sym_comment, - ACTIONS(2694), 2, + ACTIONS(8859), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [183263] = 5, + sym_hex_digit, + [183262] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8813), 1, + ACTIONS(8821), 1, sym_hex_digit, - ACTIONS(8866), 1, + ACTIONS(8863), 1, anon_sym_RBRACK, - STATE(4998), 1, - aux_sym_val_binary_repeat1, STATE(5042), 1, sym_comment, - [183279] = 4, + STATE(5203), 1, + aux_sym_val_binary_repeat1, + [183278] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2696), 1, + ACTIONS(5545), 1, sym__entry_separator, + ACTIONS(8865), 1, + anon_sym_RBRACE, + STATE(2805), 1, + aux_sym__types_body_repeat2, STATE(5043), 1, sym_comment, - ACTIONS(2698), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [183293] = 4, - ACTIONS(103), 1, + [183294] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2700), 1, - sym__entry_separator, + ACTIONS(3035), 1, + sym__newline, + ACTIONS(8867), 1, + anon_sym_COLON, + STATE(691), 1, + aux_sym__repeat_newline, STATE(5044), 1, sym_comment, - ACTIONS(2702), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [183307] = 4, - ACTIONS(103), 1, + [183310] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2708), 1, - sym__entry_separator, + ACTIONS(1791), 1, + sym__unquoted_pattern, STATE(5045), 1, sym_comment, - ACTIONS(2710), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [183321] = 4, + ACTIONS(2776), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [183324] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5594), 1, - anon_sym_RBRACK, STATE(5046), 1, sym_comment, - ACTIONS(5596), 2, - anon_sym_LPAREN2, + ACTIONS(2144), 3, + anon_sym_RBRACK, sym__entry_separator, - [183335] = 4, - ACTIONS(103), 1, + sym__table_head_separator, + [183336] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2712), 1, - sym__entry_separator, STATE(5047), 1, sym_comment, - ACTIONS(2714), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [183349] = 3, + ACTIONS(8668), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [183348] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5048), 1, sym_comment, - ACTIONS(5223), 3, - anon_sym_if, - anon_sym_PIPE, - anon_sym_EQ_GT, - [183361] = 4, + ACTIONS(8668), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [183360] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2604), 1, + ACTIONS(2842), 1, sym__unquoted_pattern, STATE(5049), 1, sym_comment, - ACTIONS(2602), 2, + ACTIONS(2836), 2, anon_sym_PIPE, anon_sym_EQ_GT, - [183375] = 3, + [183374] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5050), 1, sym_comment, - ACTIONS(5657), 3, - anon_sym_if, - anon_sym_PIPE, - anon_sym_EQ_GT, - [183387] = 3, + ACTIONS(8674), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [183386] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5051), 1, sym_comment, - ACTIONS(8753), 3, + ACTIONS(8674), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [183399] = 4, - ACTIONS(103), 1, + [183398] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2716), 1, - sym__entry_separator, STATE(5052), 1, sym_comment, - ACTIONS(2718), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [183413] = 4, + ACTIONS(8714), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [183410] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8870), 1, - anon_sym_COMMA, STATE(5053), 1, sym_comment, - ACTIONS(8868), 2, - anon_sym_RBRACK, - sym_hex_digit, - [183427] = 4, + ACTIONS(8714), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [183422] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2720), 1, + ACTIONS(2086), 1, sym__entry_separator, STATE(5054), 1, sym_comment, - ACTIONS(2722), 2, + ACTIONS(2088), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [183441] = 5, + [183436] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8813), 1, - sym_hex_digit, - ACTIONS(8872), 1, - anon_sym_RBRACK, STATE(5055), 1, sym_comment, - STATE(5058), 1, - aux_sym_val_binary_repeat1, - [183457] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5056), 1, - sym_comment, - ACTIONS(5723), 3, + ACTIONS(8869), 3, anon_sym_if, anon_sym_PIPE, anon_sym_EQ_GT, - [183469] = 3, - ACTIONS(3), 1, + [183448] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2890), 1, + sym__entry_separator, + STATE(5056), 1, + sym_comment, + ACTIONS(2892), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [183462] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2798), 1, + sym__entry_separator, STATE(5057), 1, sym_comment, - ACTIONS(8765), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [183481] = 5, + ACTIONS(2800), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [183476] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8813), 1, - sym_hex_digit, - ACTIONS(8874), 1, - anon_sym_RBRACK, - STATE(4998), 1, - aux_sym_val_binary_repeat1, + ACTIONS(2604), 1, + sym__unquoted_pattern, STATE(5058), 1, sym_comment, - [183497] = 5, + ACTIONS(2602), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [183490] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8813), 1, - sym_hex_digit, - ACTIONS(8876), 1, - anon_sym_RBRACK, - STATE(4998), 1, - aux_sym_val_binary_repeat1, + ACTIONS(4567), 1, + anon_sym_AT2, + ACTIONS(6907), 1, + anon_sym_EQ, + STATE(3954), 1, + sym_param_cmd, STATE(5059), 1, sym_comment, - [183513] = 3, + [183506] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5060), 1, sym_comment, - ACTIONS(2408), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [183525] = 5, + ACTIONS(8716), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [183518] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8813), 1, - sym_hex_digit, - ACTIONS(8878), 1, - anon_sym_RBRACK, - STATE(4998), 1, - aux_sym_val_binary_repeat1, STATE(5061), 1, sym_comment, - [183541] = 4, + ACTIONS(8716), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [183530] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8880), 1, - anon_sym_LPAREN, + ACTIONS(5894), 1, + sym__entry_separator, + ACTIONS(8871), 1, + anon_sym_GT2, + STATE(3055), 1, + aux_sym__types_body_repeat2, STATE(5062), 1, sym_comment, - ACTIONS(8882), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [183555] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3035), 1, - sym__newline, - ACTIONS(8884), 1, - anon_sym_COLON, - STATE(691), 1, - aux_sym__repeat_newline, - STATE(5063), 1, - sym_comment, - [183571] = 5, + [183546] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5029), 1, + ACTIONS(2541), 1, sym__entry_separator, - ACTIONS(8886), 1, - anon_sym_RBRACK, - STATE(2402), 1, - aux_sym__types_body_repeat2, + STATE(5063), 1, + sym_comment, + ACTIONS(2543), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [183560] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1896), 1, + anon_sym_LBRACE, + ACTIONS(8046), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8873), 1, + anon_sym_DOT, STATE(5064), 1, sym_comment, - [183587] = 5, + [183576] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8813), 1, - sym_hex_digit, - ACTIONS(8888), 1, - anon_sym_RBRACK, STATE(5065), 1, sym_comment, - STATE(5068), 1, - aux_sym_val_binary_repeat1, - [183603] = 3, + ACTIONS(8749), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [183588] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8845), 1, + anon_sym_BANG, STATE(5066), 1, sym_comment, - ACTIONS(8890), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [183615] = 3, - ACTIONS(3), 1, + ACTIONS(886), 2, + sym__table_head_separator, + anon_sym_DOT2, + [183602] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4914), 1, + sym__entry_separator, + ACTIONS(8875), 1, + anon_sym_GT2, + STATE(2355), 1, + aux_sym__types_body_repeat2, STATE(5067), 1, sym_comment, - ACTIONS(5230), 3, - anon_sym_if, - anon_sym_PIPE, - anon_sym_EQ_GT, - [183627] = 5, + [183618] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8813), 1, - sym_hex_digit, - ACTIONS(8892), 1, - anon_sym_RBRACK, - STATE(4998), 1, - aux_sym_val_binary_repeat1, + ACTIONS(1874), 1, + anon_sym_LPAREN2, + ACTIONS(5986), 1, + sym__unquoted_pattern, STATE(5068), 1, sym_comment, - [183643] = 5, + STATE(5399), 1, + sym__expr_parenthesized_immediate, + [183634] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1874), 1, - anon_sym_LPAREN2, - ACTIONS(1884), 1, - sym__unquoted_pattern, STATE(5069), 1, sym_comment, - STATE(5282), 1, - sym__expr_parenthesized_immediate, - [183659] = 3, + ACTIONS(8540), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [183646] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5070), 1, sym_comment, - ACTIONS(8894), 3, + ACTIONS(5223), 3, anon_sym_if, anon_sym_PIPE, anon_sym_EQ_GT, - [183671] = 3, - ACTIONS(103), 1, + [183658] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(5071), 1, sym_comment, - ACTIONS(2144), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [183683] = 4, + ACTIONS(5657), 3, + anon_sym_if, + anon_sym_PIPE, + anon_sym_EQ_GT, + [183670] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(1411), 1, - aux_sym__block_body_repeat1, STATE(5072), 1, sym_comment, - ACTIONS(153), 2, + ACTIONS(8540), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [183697] = 3, + [183682] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5073), 1, sym_comment, - ACTIONS(8551), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [183709] = 4, + ACTIONS(5723), 3, + anon_sym_if, + anon_sym_PIPE, + anon_sym_EQ_GT, + [183694] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3348), 1, - anon_sym_RPAREN, STATE(5074), 1, sym_comment, - ACTIONS(2788), 2, + ACTIONS(8809), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [183723] = 3, - ACTIONS(3), 1, + [183706] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2632), 1, + sym__entry_separator, STATE(5075), 1, sym_comment, - ACTIONS(8551), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [183735] = 3, + ACTIONS(2634), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [183720] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8821), 1, + sym_hex_digit, + ACTIONS(8877), 1, + anon_sym_RBRACK, STATE(5076), 1, sym_comment, - ACTIONS(8715), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [183747] = 3, + STATE(5080), 1, + aux_sym_val_binary_repeat1, + [183736] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5077), 1, sym_comment, - ACTIONS(8725), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [183759] = 3, - ACTIONS(3), 1, + ACTIONS(5230), 3, + anon_sym_if, + anon_sym_PIPE, + anon_sym_EQ_GT, + [183748] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2491), 1, + sym__entry_separator, STATE(5078), 1, sym_comment, - ACTIONS(8561), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [183771] = 3, - ACTIONS(3), 1, + ACTIONS(2493), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [183762] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2499), 1, + sym__entry_separator, STATE(5079), 1, sym_comment, - ACTIONS(8733), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [183783] = 4, - ACTIONS(103), 1, + ACTIONS(2501), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [183776] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5535), 1, + ACTIONS(8821), 1, + sym_hex_digit, + ACTIONS(8879), 1, anon_sym_RBRACK, STATE(5080), 1, sym_comment, - ACTIONS(5537), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [183797] = 3, + STATE(5203), 1, + aux_sym_val_binary_repeat1, + [183792] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1874), 1, + anon_sym_LPAREN2, + ACTIONS(5937), 1, + sym__unquoted_pattern, STATE(5081), 1, sym_comment, - ACTIONS(8561), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [183809] = 3, + STATE(5382), 1, + sym__expr_parenthesized_immediate, + [183808] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5082), 1, sym_comment, - ACTIONS(8563), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [183821] = 3, + ACTIONS(8881), 3, + anon_sym_if, + anon_sym_PIPE, + anon_sym_EQ_GT, + [183820] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3674), 1, + anon_sym_LPAREN2, + ACTIONS(3684), 1, + sym__unquoted_pattern_in_record, STATE(5083), 1, sym_comment, - ACTIONS(8896), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [183833] = 3, - ACTIONS(3), 1, + STATE(5387), 1, + sym__expr_parenthesized_immediate, + [183836] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2507), 1, + sym__entry_separator, STATE(5084), 1, sym_comment, - ACTIONS(8563), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [183845] = 3, + ACTIONS(2509), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [183850] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5085), 1, sym_comment, - ACTIONS(8567), 3, + ACTIONS(8735), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [183857] = 3, + [183862] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5086), 1, sym_comment, - ACTIONS(8557), 3, + ACTIONS(8544), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [183869] = 4, + [183874] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1868), 1, - sym__unquoted_pattern, STATE(5087), 1, sym_comment, - ACTIONS(1866), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [183883] = 3, + ACTIONS(8759), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [183886] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5088), 1, sym_comment, - ACTIONS(8898), 3, + ACTIONS(8592), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [183895] = 3, + [183898] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5089), 1, sym_comment, - ACTIONS(8557), 3, - ts_builtin_sym_end, + ACTIONS(8883), 3, sym__newline, anon_sym_SEMI, - [183907] = 3, + anon_sym_RPAREN, + [183910] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5090), 1, sym_comment, - ACTIONS(8567), 3, + ACTIONS(8606), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [183919] = 4, + [183922] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1958), 1, - sym__unquoted_pattern, STATE(5091), 1, sym_comment, - ACTIONS(1956), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [183933] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5092), 1, - sym_comment, - ACTIONS(8559), 3, + ACTIONS(8606), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [183945] = 3, - ACTIONS(3), 1, + [183934] = 3, + ACTIONS(103), 1, anon_sym_POUND, - STATE(5093), 1, + STATE(5092), 1, sym_comment, - ACTIONS(8759), 3, - ts_builtin_sym_end, + ACTIONS(1001), 3, sym__newline, - anon_sym_SEMI, - [183957] = 4, - ACTIONS(103), 1, + sym__space, + anon_sym_COLON2, + [183946] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6202), 1, - sym__entry_separator, - STATE(5094), 1, + ACTIONS(4820), 1, + anon_sym_LPAREN2, + ACTIONS(7421), 1, + sym__unquoted_pattern_in_list, + STATE(5093), 1, sym_comment, - ACTIONS(6204), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [183971] = 4, + STATE(5378), 1, + sym__expr_parenthesized_immediate, + [183962] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2116), 1, + ACTIONS(2818), 1, sym__unquoted_pattern, - STATE(5095), 1, + STATE(5094), 1, sym_comment, - ACTIONS(2114), 2, + ACTIONS(5230), 2, anon_sym_PIPE, anon_sym_EQ_GT, - [183985] = 4, - ACTIONS(103), 1, + [183976] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2086), 1, - sym__entry_separator, - STATE(5096), 1, + ACTIONS(4567), 1, + anon_sym_AT2, + ACTIONS(6791), 1, + anon_sym_EQ, + STATE(3995), 1, + sym_param_cmd, + STATE(5095), 1, sym_comment, - ACTIONS(2088), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [183999] = 3, + [183992] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(5097), 1, + STATE(5096), 1, sym_comment, - ACTIONS(8559), 3, + ACTIONS(8646), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [184011] = 3, + [184004] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8821), 1, + sym_hex_digit, + ACTIONS(8885), 1, + anon_sym_RBRACK, + STATE(5097), 1, + sym_comment, + STATE(5101), 1, + aux_sym_val_binary_repeat1, + [184020] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5098), 1, sym_comment, - ACTIONS(8569), 3, + ACTIONS(8646), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [184023] = 4, - ACTIONS(103), 1, + [184032] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6236), 1, - sym__entry_separator, STATE(5099), 1, sym_comment, - ACTIONS(6238), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [184037] = 4, - ACTIONS(103), 1, + ACTIONS(8648), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [184044] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2890), 1, - sym__entry_separator, + ACTIONS(1868), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8887), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8889), 1, + aux_sym__immediate_decimal_token5, STATE(5100), 1, sym_comment, - ACTIONS(2892), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [184051] = 3, + [184060] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8821), 1, + sym_hex_digit, + ACTIONS(8891), 1, + anon_sym_RBRACK, STATE(5101), 1, sym_comment, - ACTIONS(8547), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [184063] = 3, + STATE(5203), 1, + aux_sym_val_binary_repeat1, + [184076] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5102), 1, sym_comment, - ACTIONS(8561), 3, + ACTIONS(8648), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [184075] = 4, + [184088] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2798), 1, - sym__entry_separator, STATE(5103), 1, sym_comment, - ACTIONS(2800), 2, + ACTIONS(2860), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [184100] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2636), 1, + sym__entry_separator, + STATE(5104), 1, + sym_comment, + ACTIONS(2638), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [184089] = 3, + [184114] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(5104), 1, + STATE(5105), 1, sym_comment, - ACTIONS(8547), 3, + ACTIONS(8668), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [184101] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2724), 1, - sym__entry_separator, - STATE(5105), 1, - sym_comment, - ACTIONS(2726), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [184115] = 4, - ACTIONS(103), 1, + [184126] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2724), 1, - sym__entry_separator, STATE(5106), 1, sym_comment, - ACTIONS(2726), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [184129] = 3, + ACTIONS(8668), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [184138] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5107), 1, sym_comment, - ACTIONS(8561), 3, + ACTIONS(8674), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [184141] = 3, + [184150] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5108), 1, sym_comment, - ACTIONS(8569), 3, + ACTIONS(8674), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [184153] = 3, - ACTIONS(3), 1, + [184162] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1127), 1, + anon_sym_RBRACE, + ACTIONS(1157), 1, + sym__entry_separator, + ACTIONS(7423), 1, + sym__unquoted_pattern_in_record, STATE(5109), 1, sym_comment, - ACTIONS(8733), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [184165] = 3, + [184178] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5110), 1, sym_comment, - ACTIONS(8563), 3, + ACTIONS(8751), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [184177] = 3, + [184190] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8821), 1, + sym_hex_digit, + ACTIONS(8893), 1, + anon_sym_RBRACK, STATE(5111), 1, sym_comment, - ACTIONS(8563), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [184189] = 5, - ACTIONS(103), 1, + STATE(5112), 1, + aux_sym_val_binary_repeat1, + [184206] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2814), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(4369), 1, - anon_sym_LBRACE, - STATE(3851), 1, - sym_block, + ACTIONS(8821), 1, + sym_hex_digit, + ACTIONS(8895), 1, + anon_sym_RBRACK, STATE(5112), 1, sym_comment, - [184205] = 3, + STATE(5203), 1, + aux_sym_val_binary_repeat1, + [184222] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5113), 1, sym_comment, - ACTIONS(8549), 3, + ACTIONS(8716), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [184217] = 3, + [184234] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5114), 1, sym_comment, - ACTIONS(8733), 3, + ACTIONS(8716), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [184229] = 3, + [184246] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5115), 1, sym_comment, - ACTIONS(8549), 3, + ACTIONS(8753), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [184258] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5116), 1, + sym_comment, + ACTIONS(8753), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [184241] = 4, + [184270] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4021), 1, sym__entry_separator, - STATE(5116), 1, + STATE(5117), 1, sym_comment, ACTIONS(4019), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [184255] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5117), 1, - sym_comment, - ACTIONS(8551), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [184267] = 5, + [184284] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4820), 1, - anon_sym_LPAREN2, - ACTIONS(4830), 1, - sym__unquoted_pattern_in_list, + ACTIONS(2850), 1, + sym__unquoted_pattern, STATE(5118), 1, sym_comment, - STATE(5402), 1, - sym__expr_parenthesized_immediate, - [184283] = 5, - ACTIONS(103), 1, + ACTIONS(2844), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [184298] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8900), 1, - anon_sym_POUND_BANG, - ACTIONS(8902), 1, + ACTIONS(3035), 1, sym__newline, + ACTIONS(3619), 1, + anon_sym_SEMI, + STATE(691), 1, + aux_sym__repeat_newline, STATE(5119), 1, sym_comment, - STATE(5232), 1, - aux_sym__repeat_newline, - [184299] = 5, - ACTIONS(103), 1, + [184314] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5894), 1, - sym__entry_separator, - ACTIONS(8904), 1, - anon_sym_GT2, - STATE(3058), 1, - aux_sym__types_body_repeat2, STATE(5120), 1, sym_comment, - [184315] = 5, + ACTIONS(8755), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [184326] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5894), 1, + ACTIONS(2874), 1, sym__entry_separator, - ACTIONS(8906), 1, - anon_sym_GT2, - STATE(3055), 1, - aux_sym__types_body_repeat2, STATE(5121), 1, sym_comment, - [184331] = 3, - ACTIONS(3), 1, + ACTIONS(2876), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [184340] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2878), 1, + sym__entry_separator, STATE(5122), 1, sym_comment, - ACTIONS(8551), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [184343] = 5, + ACTIONS(2880), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [184354] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2882), 1, + sym__entry_separator, + STATE(5123), 1, + sym_comment, + ACTIONS(2884), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [184368] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8813), 1, + ACTIONS(8821), 1, sym_hex_digit, - ACTIONS(8908), 1, + ACTIONS(8897), 1, anon_sym_RBRACK, - STATE(4998), 1, - aux_sym_val_binary_repeat1, - STATE(5123), 1, + STATE(5124), 1, sym_comment, - [184359] = 5, + STATE(5127), 1, + aux_sym_val_binary_repeat1, + [184384] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5894), 1, sym__entry_separator, - ACTIONS(8910), 1, + ACTIONS(8899), 1, anon_sym_GT2, - STATE(3062), 1, + STATE(3058), 1, aux_sym__types_body_repeat2, - STATE(5124), 1, - sym_comment, - [184375] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4316), 1, - sym__entry_separator, STATE(5125), 1, sym_comment, - ACTIONS(4314), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [184389] = 4, + [184400] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2850), 1, - sym__unquoted_pattern, STATE(5126), 1, sym_comment, - ACTIONS(2844), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [184403] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1874), 1, - anon_sym_LPAREN2, - ACTIONS(1954), 1, - sym__unquoted_pattern, - STATE(5127), 1, - sym_comment, - STATE(5354), 1, - sym__expr_parenthesized_immediate, - [184419] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5128), 1, - sym_comment, ACTIONS(8755), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [184431] = 4, + [184412] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8821), 1, + sym_hex_digit, + ACTIONS(8901), 1, + anon_sym_RBRACK, + STATE(5127), 1, + sym_comment, + STATE(5203), 1, + aux_sym_val_binary_repeat1, + [184428] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2541), 1, + ACTIONS(2886), 1, sym__entry_separator, - STATE(5129), 1, + STATE(5128), 1, sym_comment, - ACTIONS(2543), 2, + ACTIONS(2888), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [184445] = 3, + [184442] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8821), 1, + sym_hex_digit, + ACTIONS(8903), 1, + anon_sym_RBRACK, + STATE(4993), 1, + aux_sym_val_binary_repeat1, + STATE(5129), 1, + sym_comment, + [184458] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1956), 1, + anon_sym_LBRACE, + ACTIONS(1958), 1, + sym__unquoted_pattern, + ACTIONS(8905), 1, + aux_sym__immediate_decimal_token5, STATE(5130), 1, sym_comment, - ACTIONS(8912), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [184457] = 5, + [184474] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5029), 1, + ACTIONS(5894), 1, sym__entry_separator, - ACTIONS(8914), 1, - anon_sym_RBRACK, - STATE(2403), 1, + ACTIONS(8907), 1, + anon_sym_GT2, + STATE(3062), 1, aux_sym__types_body_repeat2, STATE(5131), 1, sym_comment, - [184473] = 3, - ACTIONS(3), 1, + [184490] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4316), 1, + sym__entry_separator, STATE(5132), 1, sym_comment, - ACTIONS(3348), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [184485] = 5, - ACTIONS(3), 1, + ACTIONS(4314), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [184504] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1896), 1, - anon_sym_LBRACE, - ACTIONS(8046), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8916), 1, - anon_sym_DOT, + ACTIONS(2640), 1, + sym__entry_separator, STATE(5133), 1, sym_comment, - [184501] = 5, + ACTIONS(2642), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [184518] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4914), 1, + ACTIONS(2644), 1, sym__entry_separator, - ACTIONS(8918), 1, - anon_sym_GT2, - STATE(2355), 1, - aux_sym__types_body_repeat2, STATE(5134), 1, sym_comment, - [184517] = 5, + ACTIONS(2646), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [184532] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5894), 1, + ACTIONS(2680), 1, sym__entry_separator, - ACTIONS(8920), 1, - anon_sym_GT2, - STATE(3077), 1, - aux_sym__types_body_repeat2, STATE(5135), 1, sym_comment, - [184533] = 5, - ACTIONS(3), 1, + ACTIONS(2682), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [184546] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1898), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8922), 1, - anon_sym_DOT, - ACTIONS(8924), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(2684), 1, + sym__entry_separator, STATE(5136), 1, sym_comment, - [184549] = 4, - ACTIONS(103), 1, + ACTIONS(2686), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [184560] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8721), 1, - anon_sym_LPAREN, + ACTIONS(8821), 1, + sym_hex_digit, + ACTIONS(8909), 1, + anon_sym_RBRACK, STATE(5137), 1, sym_comment, - ACTIONS(8723), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [184563] = 5, + STATE(5140), 1, + aux_sym_val_binary_repeat1, + [184576] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1874), 1, - anon_sym_LPAREN2, - ACTIONS(5986), 1, - sym__unquoted_pattern, + ACTIONS(4567), 1, + anon_sym_AT2, + ACTIONS(6791), 1, + anon_sym_EQ, + STATE(4017), 1, + sym_param_cmd, STATE(5138), 1, sym_comment, - STATE(5304), 1, - sym__expr_parenthesized_immediate, - [184579] = 3, + [184592] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5139), 1, sym_comment, - ACTIONS(8926), 3, + ACTIONS(8799), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [184591] = 4, - ACTIONS(103), 1, + [184604] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1157), 1, - sym__entry_separator, + ACTIONS(8821), 1, + sym_hex_digit, + ACTIONS(8911), 1, + anon_sym_RBRACK, STATE(5140), 1, sym_comment, - ACTIONS(1127), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [184605] = 3, + STATE(5203), 1, + aux_sym_val_binary_repeat1, + [184620] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3674), 1, + anon_sym_LPAREN2, + ACTIONS(7423), 1, + sym__unquoted_pattern_in_record, STATE(5141), 1, sym_comment, - ACTIONS(8797), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [184617] = 3, + STATE(5305), 1, + sym__expr_parenthesized_immediate, + [184636] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5142), 1, sym_comment, - ACTIONS(8604), 3, + ACTIONS(8757), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [184629] = 5, + [184648] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3035), 1, - sym__newline, - ACTIONS(3619), 1, - anon_sym_SEMI, - STATE(691), 1, - aux_sym__repeat_newline, + ACTIONS(2854), 1, + sym__unquoted_pattern, STATE(5143), 1, sym_comment, - [184645] = 5, + ACTIONS(1409), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [184662] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8813), 1, - sym_hex_digit, - ACTIONS(8928), 1, - anon_sym_RBRACK, - STATE(5123), 1, - aux_sym_val_binary_repeat1, STATE(5144), 1, sym_comment, - [184661] = 4, + ACTIONS(8913), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [184674] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2732), 1, - sym__entry_separator, + ACTIONS(8915), 1, + sym__table_head_separator, STATE(5145), 1, sym_comment, - ACTIONS(2734), 2, + ACTIONS(923), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [184675] = 4, + sym__entry_separator, + [184688] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(919), 1, + ACTIONS(2688), 1, sym__entry_separator, STATE(5146), 1, sym_comment, - ACTIONS(923), 2, + ACTIONS(2690), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [184689] = 3, + [184702] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8821), 1, + sym_hex_digit, + ACTIONS(8917), 1, + anon_sym_RBRACK, + STATE(5042), 1, + aux_sym_val_binary_repeat1, STATE(5147), 1, sym_comment, - ACTIONS(8799), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [184701] = 3, - ACTIONS(3), 1, + [184718] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(6232), 1, + sym__entry_separator, STATE(5148), 1, sym_comment, - ACTIONS(8801), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [184713] = 3, + ACTIONS(6234), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [184732] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8821), 1, + sym_hex_digit, + ACTIONS(8919), 1, + anon_sym_RBRACK, STATE(5149), 1, sym_comment, - ACTIONS(5251), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [184725] = 3, - ACTIONS(3), 1, - anon_sym_POUND, STATE(5150), 1, - sym_comment, - ACTIONS(8930), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [184737] = 3, + aux_sym_val_binary_repeat1, + [184748] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5151), 1, + ACTIONS(8821), 1, + sym_hex_digit, + ACTIONS(8921), 1, + anon_sym_RBRACK, + STATE(5150), 1, sym_comment, - ACTIONS(5281), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [184749] = 4, + STATE(5203), 1, + aux_sym_val_binary_repeat1, + [184764] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2632), 1, + ACTIONS(2810), 1, sym__entry_separator, - STATE(5152), 1, + STATE(5151), 1, sym_comment, - ACTIONS(2634), 2, + ACTIONS(2812), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [184763] = 3, + [184778] = 3, ACTIONS(3), 1, anon_sym_POUND, + STATE(5152), 1, + sym_comment, + ACTIONS(8761), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [184790] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4914), 1, + sym__entry_separator, + ACTIONS(8923), 1, + anon_sym_RBRACK, + STATE(2344), 1, + aux_sym__types_body_repeat2, STATE(5153), 1, sym_comment, - ACTIONS(5285), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [184775] = 3, - ACTIONS(3), 1, + [184806] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(5005), 1, + sym__entry_separator, + ACTIONS(8925), 1, + anon_sym_RBRACK, + STATE(2406), 1, + aux_sym__types_body_repeat2, STATE(5154), 1, sym_comment, - ACTIONS(5289), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [184787] = 4, + [184822] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2529), 1, + ACTIONS(2692), 1, sym__entry_separator, STATE(5155), 1, sym_comment, - ACTIONS(2531), 2, + ACTIONS(2694), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [184801] = 3, - ACTIONS(3), 1, + [184836] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2696), 1, + sym__entry_separator, STATE(5156), 1, sym_comment, - ACTIONS(8932), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [184813] = 4, + ACTIONS(2698), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [184850] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2491), 1, - sym__entry_separator, + ACTIONS(8927), 1, + anon_sym_DQUOTE, STATE(5157), 1, sym_comment, - ACTIONS(2493), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [184827] = 4, + ACTIONS(8929), 2, + sym__escaped_str_content, + sym_escape_sequence, + [184864] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2499), 1, + ACTIONS(2700), 1, sym__entry_separator, STATE(5158), 1, sym_comment, - ACTIONS(2501), 2, + ACTIONS(2702), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [184841] = 5, + [184878] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4914), 1, + ACTIONS(2708), 1, sym__entry_separator, - ACTIONS(8934), 1, - anon_sym_GT2, - STATE(2375), 1, - aux_sym__types_body_repeat2, STATE(5159), 1, sym_comment, - [184857] = 4, + ACTIONS(2710), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [184892] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2854), 1, - sym__unquoted_pattern, + ACTIONS(8821), 1, + sym_hex_digit, + ACTIONS(8931), 1, + anon_sym_RBRACK, STATE(5160), 1, sym_comment, - ACTIONS(1409), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [184871] = 3, + STATE(5162), 1, + aux_sym_val_binary_repeat1, + [184908] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5161), 1, sym_comment, - ACTIONS(8936), 3, + ACTIONS(8546), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [184883] = 5, + [184920] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4567), 1, - anon_sym_AT2, - ACTIONS(8938), 1, - anon_sym_GT2, + ACTIONS(8821), 1, + sym_hex_digit, + ACTIONS(8933), 1, + anon_sym_RBRACK, STATE(5162), 1, sym_comment, - STATE(5674), 1, - sym_param_cmd, - [184899] = 4, + STATE(5203), 1, + aux_sym_val_binary_repeat1, + [184936] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2142), 1, + ACTIONS(6177), 1, sym__entry_separator, STATE(5163), 1, sym_comment, - ACTIONS(2144), 2, + ACTIONS(6179), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [184913] = 4, - ACTIONS(3), 1, + anon_sym_GT2, + [184950] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2854), 1, - sym__unquoted_pattern, + ACTIONS(2712), 1, + sym__entry_separator, STATE(5164), 1, sym_comment, - ACTIONS(1417), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [184927] = 3, - ACTIONS(3), 1, + ACTIONS(2714), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [184964] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2716), 1, + sym__entry_separator, STATE(5165), 1, sym_comment, - ACTIONS(8761), 3, + ACTIONS(2718), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [184978] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5166), 1, + sym_comment, + ACTIONS(8546), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [184939] = 4, + [184990] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6216), 1, + ACTIONS(2720), 1, sym__entry_separator, - STATE(5166), 1, + STATE(5167), 1, sym_comment, - ACTIONS(6218), 2, + ACTIONS(2722), 2, anon_sym_RBRACK, - anon_sym_GT2, - [184953] = 5, - ACTIONS(103), 1, + anon_sym_RBRACE, + [185004] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4914), 1, - sym__entry_separator, - ACTIONS(8940), 1, - anon_sym_GT2, - STATE(2381), 1, - aux_sym__types_body_repeat2, - STATE(5167), 1, + STATE(5168), 1, sym_comment, - [184969] = 5, + ACTIONS(8761), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [185016] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8813), 1, + ACTIONS(8821), 1, sym_hex_digit, - ACTIONS(8942), 1, + ACTIONS(8935), 1, anon_sym_RBRACK, - STATE(5168), 1, + STATE(5169), 1, sym_comment, - STATE(5178), 1, + STATE(5171), 1, aux_sym_val_binary_repeat1, - [184985] = 3, + [185032] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(5169), 1, + STATE(5170), 1, sym_comment, - ACTIONS(8944), 3, + ACTIONS(8552), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [184997] = 4, - ACTIONS(103), 1, + [185044] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6228), 1, - sym__entry_separator, - STATE(5170), 1, - sym_comment, - ACTIONS(6230), 2, + ACTIONS(8821), 1, + sym_hex_digit, + ACTIONS(8937), 1, anon_sym_RBRACK, - anon_sym_GT2, - [185011] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6232), 1, - sym__entry_separator, STATE(5171), 1, sym_comment, - ACTIONS(6234), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [185025] = 4, + STATE(5203), 1, + aux_sym_val_binary_repeat1, + [185060] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2507), 1, + ACTIONS(4914), 1, sym__entry_separator, + ACTIONS(8939), 1, + anon_sym_GT2, + STATE(2375), 1, + aux_sym__types_body_repeat2, STATE(5172), 1, sym_comment, - ACTIONS(2509), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [185039] = 5, + [185076] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4567), 1, - anon_sym_AT2, - ACTIONS(6911), 1, - anon_sym_EQ, - STATE(3953), 1, - sym_param_cmd, STATE(5173), 1, sym_comment, - [185055] = 5, - ACTIONS(103), 1, + ACTIONS(8552), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [185088] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4253), 1, - anon_sym_RBRACE, - ACTIONS(4255), 1, - sym__entry_separator, - STATE(1770), 1, - aux_sym__types_body_repeat2, STATE(5174), 1, sym_comment, - [185071] = 5, - ACTIONS(103), 1, + ACTIONS(8562), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [185100] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4255), 1, - sym__entry_separator, - ACTIONS(8946), 1, - anon_sym_RBRACE, - STATE(1778), 1, - aux_sym__types_body_repeat2, STATE(5175), 1, sym_comment, - [185087] = 3, - ACTIONS(3), 1, + ACTIONS(8562), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [185112] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4914), 1, + sym__entry_separator, + ACTIONS(8941), 1, + anon_sym_GT2, + STATE(2356), 1, + aux_sym__types_body_repeat2, STATE(5176), 1, sym_comment, - ACTIONS(2424), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [185099] = 5, + [185128] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8948), 1, - anon_sym_export, - ACTIONS(8950), 1, - anon_sym_def, - ACTIONS(8952), 1, - anon_sym_extern, STATE(5177), 1, sym_comment, - [185115] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8813), 1, - sym_hex_digit, - ACTIONS(8954), 1, + ACTIONS(8943), 3, + sym__newline, + anon_sym_LBRACK, anon_sym_RBRACK, - STATE(4998), 1, - aux_sym_val_binary_repeat1, - STATE(5178), 1, - sym_comment, - [185131] = 5, + [185140] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1874), 1, - anon_sym_LPAREN2, - ACTIONS(5937), 1, - sym__unquoted_pattern, - STATE(5179), 1, + ACTIONS(3348), 1, + anon_sym_RPAREN, + STATE(5178), 1, sym_comment, - STATE(5412), 1, - sym__expr_parenthesized_immediate, - [185147] = 5, + ACTIONS(2788), 2, + sym__newline, + anon_sym_SEMI, + [185154] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4914), 1, sym__entry_separator, - ACTIONS(8956), 1, + ACTIONS(8945), 1, anon_sym_RBRACK, - STATE(2350), 1, + STATE(2369), 1, aux_sym__types_body_repeat2, - STATE(5180), 1, + STATE(5179), 1, sym_comment, - [185163] = 3, + [185170] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5181), 1, + ACTIONS(1868), 1, + sym__unquoted_pattern, + STATE(5180), 1, sym_comment, - ACTIONS(8803), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [185175] = 5, + ACTIONS(1866), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [185184] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4914), 1, - sym__entry_separator, - ACTIONS(8958), 1, - anon_sym_RBRACK, - STATE(2339), 1, - aux_sym__types_body_repeat2, - STATE(5182), 1, + ACTIONS(2233), 1, + anon_sym_POUND_BANG, + ACTIONS(8947), 1, + sym__newline, + STATE(5181), 2, + aux_sym__repeat_newline, sym_comment, - [185191] = 5, + [185198] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4567), 1, - anon_sym_AT2, - ACTIONS(6791), 1, - anon_sym_EQ, - STATE(4017), 1, - sym_param_cmd, - STATE(5183), 1, + STATE(5182), 1, sym_comment, - [185207] = 3, + ACTIONS(8648), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [185210] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(5184), 1, + STATE(5183), 1, sym_comment, - ACTIONS(8553), 3, + ACTIONS(8648), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [185219] = 3, + [185222] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1958), 1, + sym__unquoted_pattern, + STATE(5184), 1, + sym_comment, + ACTIONS(1956), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [185236] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5535), 1, + anon_sym_RBRACK, STATE(5185), 1, sym_comment, - ACTIONS(8553), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [185231] = 3, + ACTIONS(5537), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [185250] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1884), 1, + sym__unquoted_pattern, STATE(5186), 1, sym_comment, - ACTIONS(8547), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [185243] = 3, + ACTIONS(1157), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [185264] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2116), 1, + sym__unquoted_pattern, STATE(5187), 1, sym_comment, - ACTIONS(8547), 3, + ACTIONS(2114), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [185278] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5188), 1, + sym_comment, + ACTIONS(8610), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [185255] = 4, + [185290] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2579), 1, + ACTIONS(6206), 1, sym__entry_separator, - STATE(5188), 1, - sym_comment, - ACTIONS(2581), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [185269] = 3, - ACTIONS(3), 1, - anon_sym_POUND, STATE(5189), 1, sym_comment, - ACTIONS(8805), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [185281] = 4, + ACTIONS(6208), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [185304] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2583), 1, + ACTIONS(4914), 1, sym__entry_separator, - STATE(5190), 1, - sym_comment, - ACTIONS(2585), 2, + ACTIONS(8950), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [185295] = 3, + STATE(4837), 1, + aux_sym__types_body_repeat2, + STATE(5190), 1, + sym_comment, + [185320] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5191), 1, sym_comment, - ACTIONS(8549), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [185307] = 3, - ACTIONS(3), 1, + ACTIONS(5707), 3, + anon_sym_if, + anon_sym_PIPE, + anon_sym_EQ_GT, + [185332] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(5029), 1, + sym__entry_separator, + ACTIONS(8952), 1, + anon_sym_RBRACK, + STATE(2402), 1, + aux_sym__types_body_repeat2, STATE(5192), 1, sym_comment, - ACTIONS(8549), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [185319] = 3, + [185348] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5193), 1, sym_comment, - ACTIONS(8960), 3, - sym__newline, - anon_sym_LBRACK, - anon_sym_RBRACK, - [185331] = 5, + ACTIONS(5707), 3, + anon_sym_if, + anon_sym_PIPE, + anon_sym_EQ_GT, + [185360] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5029), 1, sym__entry_separator, - ACTIONS(8962), 1, + ACTIONS(8954), 1, anon_sym_RBRACK, - STATE(2418), 1, + STATE(2403), 1, aux_sym__types_body_repeat2, STATE(5194), 1, sym_comment, - [185347] = 5, - ACTIONS(3), 1, + [185376] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3674), 1, - anon_sym_LPAREN2, - ACTIONS(3684), 1, - sym__unquoted_pattern_in_record, + ACTIONS(2724), 1, + sym__entry_separator, STATE(5195), 1, sym_comment, - STATE(5415), 1, - sym__expr_parenthesized_immediate, - [185363] = 3, - ACTIONS(3), 1, + ACTIONS(2726), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [185390] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2724), 1, + sym__entry_separator, STATE(5196), 1, sym_comment, - ACTIONS(8964), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [185375] = 3, - ACTIONS(103), 1, + ACTIONS(2726), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [185404] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(5197), 1, sym_comment, - ACTIONS(1001), 3, + ACTIONS(8596), 3, + ts_builtin_sym_end, sym__newline, - sym__space, - anon_sym_COLON2, - [185387] = 3, + anon_sym_SEMI, + [185416] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5198), 1, sym_comment, - ACTIONS(8759), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [185399] = 3, + ACTIONS(5719), 3, + anon_sym_if, + anon_sym_PIPE, + anon_sym_EQ_GT, + [185428] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5199), 1, sym_comment, - ACTIONS(8767), 3, + ACTIONS(8596), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [185411] = 3, + [185440] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5200), 1, sym_comment, - ACTIONS(8646), 3, + ACTIONS(8632), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [185423] = 3, + [185452] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7986), 1, + anon_sym_LBRACK, + STATE(5017), 1, + sym_val_list, STATE(5201), 1, sym_comment, - ACTIONS(8634), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [185435] = 4, - ACTIONS(103), 1, + STATE(5211), 1, + aux_sym__table_body_repeat1, + [185468] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6177), 1, - sym__entry_separator, + ACTIONS(3674), 1, + anon_sym_LPAREN2, + ACTIONS(6029), 1, + sym__unquoted_pattern_in_record, STATE(5202), 1, sym_comment, - ACTIONS(6179), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [185449] = 4, + STATE(5349), 1, + sym__expr_parenthesized_immediate, + [185484] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2818), 1, - sym__unquoted_pattern, - STATE(5203), 1, + ACTIONS(8956), 1, + anon_sym_RBRACK, + ACTIONS(8958), 1, + sym_hex_digit, + STATE(5203), 2, sym_comment, - ACTIONS(5230), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [185463] = 3, + aux_sym_val_binary_repeat1, + [185498] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5204), 1, sym_comment, - ACTIONS(8646), 3, + ACTIONS(8604), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [185475] = 5, + [185510] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8379), 1, - anon_sym_PIPE, - ACTIONS(8966), 1, - anon_sym_EQ_GT, STATE(5205), 1, sym_comment, - STATE(5227), 1, - aux_sym_match_pattern_repeat1, - [185491] = 5, - ACTIONS(103), 1, + ACTIONS(8604), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [185522] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1127), 1, - anon_sym_RBRACK, - ACTIONS(1157), 1, - sym__entry_separator, - ACTIONS(7421), 1, - sym__unquoted_pattern_in_list, STATE(5206), 1, sym_comment, - [185507] = 5, - ACTIONS(103), 1, + ACTIONS(8606), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [185534] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4914), 1, - sym__entry_separator, - ACTIONS(8968), 1, - anon_sym_RBRACK, - STATE(4961), 1, - aux_sym__types_body_repeat2, STATE(5207), 1, sym_comment, - [185523] = 5, + ACTIONS(8606), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [185546] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4567), 1, - anon_sym_AT2, - ACTIONS(8970), 1, - anon_sym_GT2, STATE(5208), 1, sym_comment, - STATE(5506), 1, - sym_param_cmd, - [185539] = 5, + ACTIONS(8612), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [185558] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7986), 1, - anon_sym_LBRACK, + ACTIONS(1898), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8961), 1, + anon_sym_DOT, + ACTIONS(8963), 1, + aux_sym__immediate_decimal_token5, STATE(5209), 1, sym_comment, - STATE(5261), 1, - sym_val_list, - STATE(5266), 1, - aux_sym__table_body_repeat1, - [185555] = 5, + [185574] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5005), 1, + ACTIONS(4914), 1, sym__entry_separator, - ACTIONS(8972), 1, + ACTIONS(8965), 1, anon_sym_RBRACK, - STATE(2386), 1, + STATE(4838), 1, aux_sym__types_body_repeat2, STATE(5210), 1, sym_comment, - [185571] = 3, + [185590] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5211), 1, + ACTIONS(8967), 1, + anon_sym_LBRACK, + STATE(5365), 1, + sym_val_list, + STATE(5211), 2, sym_comment, - ACTIONS(5651), 3, - anon_sym_if, - anon_sym_PIPE, - anon_sym_EQ_GT, - [185583] = 4, + aux_sym__table_body_repeat1, + [185604] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2858), 1, + ACTIONS(5894), 1, sym__entry_separator, + ACTIONS(8970), 1, + anon_sym_GT2, + STATE(3077), 1, + aux_sym__types_body_repeat2, STATE(5212), 1, sym_comment, - ACTIONS(2860), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [185597] = 5, + [185620] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5545), 1, + ACTIONS(5005), 1, sym__entry_separator, - ACTIONS(5598), 1, - anon_sym_RBRACE, - STATE(2800), 1, + ACTIONS(8972), 1, + anon_sym_RBRACK, + STATE(2410), 1, aux_sym__types_body_repeat2, STATE(5213), 1, sym_comment, - [185613] = 3, - ACTIONS(3), 1, + [185636] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2728), 1, + sym__entry_separator, STATE(5214), 1, sym_comment, - ACTIONS(8707), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [185625] = 5, - ACTIONS(3), 1, + ACTIONS(2730), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [185650] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3674), 1, - anon_sym_LPAREN2, - ACTIONS(3820), 1, - sym__unquoted_pattern_in_record, + ACTIONS(2732), 1, + sym__entry_separator, STATE(5215), 1, sym_comment, - STATE(5314), 1, - sym__expr_parenthesized_immediate, - [185641] = 3, + ACTIONS(2734), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [185664] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5216), 1, sym_comment, - ACTIONS(5661), 3, - anon_sym_if, - anon_sym_PIPE, - anon_sym_EQ_GT, - [185653] = 4, + ACTIONS(8612), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [185676] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8821), 1, + sym_hex_digit, ACTIONS(8974), 1, - anon_sym_BANG, + anon_sym_RBRACK, STATE(5217), 1, sym_comment, - ACTIONS(886), 2, - sym__table_head_separator, - anon_sym_DOT2, - [185667] = 5, - ACTIONS(103), 1, + STATE(5239), 1, + aux_sym_val_binary_repeat1, + [185692] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4914), 1, - sym__entry_separator, - ACTIONS(8976), 1, - anon_sym_GT2, - STATE(2356), 1, - aux_sym__types_body_repeat2, STATE(5218), 1, sym_comment, - [185683] = 3, + ACTIONS(5251), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [185704] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5219), 1, sym_comment, - ACTIONS(8978), 3, + ACTIONS(8702), 3, + ts_builtin_sym_end, sym__newline, - anon_sym_LBRACK, - anon_sym_RBRACK, - [185695] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + [185716] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2142), 1, + sym__entry_separator, STATE(5220), 1, sym_comment, - ACTIONS(8733), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [185707] = 3, - ACTIONS(3), 1, + ACTIONS(2144), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [185730] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(8783), 1, + anon_sym_LPAREN, STATE(5221), 1, sym_comment, - ACTIONS(5628), 3, - anon_sym_if, - anon_sym_PIPE, - anon_sym_EQ_GT, - [185719] = 3, + ACTIONS(8785), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [185744] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4567), 1, + anon_sym_AT2, + ACTIONS(8976), 1, + anon_sym_GT2, STATE(5222), 1, sym_comment, - ACTIONS(8590), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [185731] = 5, + STATE(5758), 1, + sym_param_cmd, + [185760] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5005), 1, + ACTIONS(4914), 1, sym__entry_separator, - ACTIONS(8980), 1, - anon_sym_RBRACK, - STATE(2391), 1, + ACTIONS(8978), 1, + anon_sym_GT2, + STATE(2381), 1, aux_sym__types_body_repeat2, STATE(5223), 1, sym_comment, - [185747] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8982), 1, - sym__table_head_separator, - STATE(5224), 1, - sym_comment, - ACTIONS(923), 2, - anon_sym_RBRACK, - sym__entry_separator, - [185761] = 4, + [185776] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8974), 1, - anon_sym_QMARK2, - STATE(5225), 1, + STATE(5224), 1, sym_comment, - ACTIONS(886), 2, - sym__table_head_separator, - anon_sym_DOT2, - [185775] = 5, + ACTIONS(5122), 3, + anon_sym_if, + anon_sym_PIPE, + anon_sym_EQ_GT, + [185788] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4567), 1, anon_sym_AT2, - ACTIONS(6907), 1, + ACTIONS(6911), 1, anon_sym_EQ, - STATE(3954), 1, + STATE(3953), 1, sym_param_cmd, - STATE(5226), 1, + STATE(5225), 1, sym_comment, - [185791] = 4, - ACTIONS(3), 1, + [185804] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8984), 1, - anon_sym_PIPE, - ACTIONS(8987), 1, - anon_sym_EQ_GT, - STATE(5227), 2, + ACTIONS(8980), 1, + anon_sym_LPAREN, + STATE(5226), 1, sym_comment, - aux_sym_match_pattern_repeat1, - [185805] = 4, + ACTIONS(8982), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [185818] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8989), 1, + ACTIONS(8984), 1, anon_sym_GT2, - STATE(5228), 1, + STATE(5227), 1, sym_comment, - ACTIONS(8991), 2, + ACTIONS(8986), 2, anon_sym_AT2, sym__entry_separator, - [185819] = 5, + [185832] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5545), 1, + ACTIONS(4253), 1, + anon_sym_RBRACE, + ACTIONS(4255), 1, sym__entry_separator, - ACTIONS(5592), 1, + STATE(1770), 1, + aux_sym__types_body_repeat2, + STATE(5228), 1, + sym_comment, + [185848] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4255), 1, + sym__entry_separator, + ACTIONS(8988), 1, anon_sym_RBRACE, - STATE(2781), 1, + STATE(1778), 1, aux_sym__types_body_repeat2, STATE(5229), 1, sym_comment, - [185835] = 3, - ACTIONS(3), 1, + [185864] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4914), 1, + sym__entry_separator, + ACTIONS(8990), 1, + anon_sym_RBRACK, + STATE(2350), 1, + aux_sym__types_body_repeat2, STATE(5230), 1, sym_comment, - ACTIONS(8735), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [185847] = 5, + [185880] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4914), 1, sym__entry_separator, - ACTIONS(8993), 1, + ACTIONS(8992), 1, anon_sym_RBRACK, - STATE(2369), 1, + STATE(2339), 1, aux_sym__types_body_repeat2, STATE(5231), 1, sym_comment, - [185863] = 4, - ACTIONS(103), 1, + [185896] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2233), 1, - anon_sym_POUND_BANG, - ACTIONS(8995), 1, - sym__newline, - STATE(5232), 2, - aux_sym__repeat_newline, + STATE(5232), 1, sym_comment, - [185877] = 4, + ACTIONS(8622), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [185908] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4324), 1, + ACTIONS(2579), 1, sym__entry_separator, STATE(5233), 1, sym_comment, - ACTIONS(4322), 2, + ACTIONS(2581), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [185891] = 4, + [185922] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2610), 1, + ACTIONS(2583), 1, sym__entry_separator, STATE(5234), 1, sym_comment, - ACTIONS(2612), 2, + ACTIONS(2585), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [185905] = 5, - ACTIONS(103), 1, + [185936] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2464), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(4367), 1, - anon_sym_LBRACE, - STATE(4920), 1, - sym_block, STATE(5235), 1, sym_comment, - [185921] = 3, + ACTIONS(8622), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [185948] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5236), 1, sym_comment, - ACTIONS(8757), 3, + ACTIONS(8596), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [185933] = 3, + [185960] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5237), 1, sym_comment, - ACTIONS(8559), 3, + ACTIONS(8596), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [185945] = 3, + [185972] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5238), 1, sym_comment, - ACTIONS(8559), 3, + ACTIONS(8604), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [185957] = 3, - ACTIONS(103), 1, + [185984] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8821), 1, + sym_hex_digit, + ACTIONS(8994), 1, + anon_sym_RBRACK, + STATE(5203), 1, + aux_sym_val_binary_repeat1, STATE(5239), 1, sym_comment, - ACTIONS(2860), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [185969] = 5, + [186000] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1868), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8998), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9000), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(1874), 1, + anon_sym_LPAREN2, + ACTIONS(1884), 1, + sym__unquoted_pattern, STATE(5240), 1, sym_comment, - [185985] = 5, - ACTIONS(103), 1, + STATE(5449), 1, + sym__expr_parenthesized_immediate, + [186016] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2464), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(4367), 1, - anon_sym_LBRACE, - STATE(4922), 1, - sym_block, STATE(5241), 1, sym_comment, - [186001] = 5, + ACTIONS(8604), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [186028] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8813), 1, - sym_hex_digit, - ACTIONS(9002), 1, - anon_sym_RBRACK, STATE(5242), 1, sym_comment, - STATE(5254), 1, - aux_sym_val_binary_repeat1, - [186017] = 3, - ACTIONS(3), 1, + ACTIONS(8996), 3, + sym__newline, + anon_sym_LBRACK, + anon_sym_RBRACK, + [186040] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(5029), 1, + sym__entry_separator, + ACTIONS(8998), 1, + anon_sym_RBRACK, + STATE(2418), 1, + aux_sym__types_body_repeat2, STATE(5243), 1, sym_comment, - ACTIONS(5293), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [186029] = 5, + [186056] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2464), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(4367), 1, - anon_sym_LBRACE, - STATE(3698), 1, - sym_block, + ACTIONS(5594), 1, + anon_sym_RBRACK, STATE(5244), 1, sym_comment, - [186045] = 5, + ACTIONS(5596), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [186070] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4914), 1, - sym__entry_separator, - ACTIONS(9004), 1, + ACTIONS(1127), 1, anon_sym_RBRACK, - STATE(4840), 1, - aux_sym__types_body_repeat2, + ACTIONS(1157), 1, + sym__entry_separator, + ACTIONS(7421), 1, + sym__unquoted_pattern_in_list, STATE(5245), 1, sym_comment, - [186061] = 4, - ACTIONS(103), 1, + [186086] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2828), 1, - sym__entry_separator, STATE(5246), 1, sym_comment, - ACTIONS(2830), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [186075] = 5, - ACTIONS(3), 1, + ACTIONS(8614), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [186098] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9006), 1, - anon_sym_export, - ACTIONS(9008), 1, - anon_sym_def, - ACTIONS(9010), 1, - anon_sym_extern, + ACTIONS(5029), 1, + sym__entry_separator, + ACTIONS(9000), 1, + anon_sym_RBRACK, + STATE(2395), 1, + aux_sym__types_body_repeat2, STATE(5247), 1, sym_comment, - [186091] = 3, + [186114] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7986), 1, + anon_sym_LBRACK, + STATE(5210), 1, + sym_val_list, + STATE(5211), 1, + aux_sym__table_body_repeat1, STATE(5248), 1, sym_comment, - ACTIONS(8761), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [186103] = 4, + [186130] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2636), 1, + ACTIONS(2858), 1, sym__entry_separator, STATE(5249), 1, sym_comment, - ACTIONS(2638), 2, + ACTIONS(2860), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [186117] = 3, - ACTIONS(3), 1, + [186144] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(6202), 1, + sym__entry_separator, STATE(5250), 1, sym_comment, - ACTIONS(8751), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [186129] = 3, - ACTIONS(3), 1, + ACTIONS(6204), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [186158] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(5005), 1, + sym__entry_separator, + ACTIONS(9002), 1, + anon_sym_RBRACK, + STATE(2386), 1, + aux_sym__types_body_repeat2, STATE(5251), 1, sym_comment, - ACTIONS(5707), 3, - anon_sym_if, - anon_sym_PIPE, - anon_sym_EQ_GT, - [186141] = 3, + [186174] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5252), 1, sym_comment, - ACTIONS(5707), 3, + ACTIONS(5651), 3, anon_sym_if, anon_sym_PIPE, anon_sym_EQ_GT, - [186153] = 3, + [186186] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5253), 1, sym_comment, - ACTIONS(9012), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [186165] = 5, + ACTIONS(5661), 3, + anon_sym_if, + anon_sym_PIPE, + anon_sym_EQ_GT, + [186198] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8813), 1, - sym_hex_digit, - ACTIONS(9014), 1, - anon_sym_RBRACK, - STATE(4998), 1, - aux_sym_val_binary_repeat1, STATE(5254), 1, sym_comment, - [186181] = 5, - ACTIONS(103), 1, + ACTIONS(5628), 3, + anon_sym_if, + anon_sym_PIPE, + anon_sym_EQ_GT, + [186210] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1127), 1, - anon_sym_RBRACE, - ACTIONS(1157), 1, - sym__entry_separator, - ACTIONS(7423), 1, - sym__unquoted_pattern_in_record, STATE(5255), 1, sym_comment, - [186197] = 4, + ACTIONS(8564), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [186222] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6206), 1, + ACTIONS(5005), 1, sym__entry_separator, + ACTIONS(9004), 1, + anon_sym_RBRACK, + STATE(2391), 1, + aux_sym__types_body_repeat2, STATE(5256), 1, sym_comment, - ACTIONS(6208), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [186211] = 3, - ACTIONS(3), 1, + [186238] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(6187), 1, + sym__entry_separator, STATE(5257), 1, sym_comment, - ACTIONS(5719), 3, - anon_sym_if, - anon_sym_PIPE, - anon_sym_EQ_GT, - [186223] = 3, + ACTIONS(6189), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [186252] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5258), 1, sym_comment, - ACTIONS(8677), 3, - ts_builtin_sym_end, + ACTIONS(9006), 3, sym__newline, anon_sym_SEMI, - [186235] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + [186264] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2464), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4367), 1, + anon_sym_LBRACE, + STATE(4902), 1, + sym_block, STATE(5259), 1, sym_comment, - ACTIONS(8751), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [186247] = 5, + [186280] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7986), 1, - anon_sym_LBRACK, STATE(5260), 1, sym_comment, - STATE(5265), 1, - sym_val_list, - STATE(5266), 1, - aux_sym__table_body_repeat1, - [186263] = 5, - ACTIONS(103), 1, + ACTIONS(9008), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [186292] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4914), 1, - sym__entry_separator, - ACTIONS(9016), 1, - anon_sym_RBRACK, - STATE(4842), 1, - aux_sym__types_body_repeat2, - STATE(5261), 1, + ACTIONS(9010), 1, + anon_sym_PIPE, + ACTIONS(9013), 1, + anon_sym_EQ_GT, + STATE(5261), 2, sym_comment, - [186279] = 3, + aux_sym_match_pattern_repeat1, + [186306] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5262), 1, sym_comment, - ACTIONS(8569), 3, + ACTIONS(8582), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [186291] = 4, - ACTIONS(3), 1, + [186318] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1753), 1, - sym__unquoted_pattern, + ACTIONS(2464), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4367), 1, + anon_sym_LBRACE, + STATE(4906), 1, + sym_block, STATE(5263), 1, sym_comment, - ACTIONS(2316), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [186305] = 3, + [186334] = 4, ACTIONS(3), 1, anon_sym_POUND, + STATE(1411), 1, + aux_sym__block_body_repeat1, STATE(5264), 1, sym_comment, - ACTIONS(8737), 3, - ts_builtin_sym_end, + ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - [186317] = 5, + [186348] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4914), 1, - sym__entry_separator, - ACTIONS(9018), 1, - anon_sym_RBRACK, - STATE(4963), 1, - aux_sym__types_body_repeat2, + ACTIONS(2464), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4367), 1, + anon_sym_LBRACE, + STATE(3698), 1, + sym_block, STATE(5265), 1, sym_comment, - [186333] = 4, + [186364] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9020), 1, - anon_sym_LBRACK, - STATE(5322), 1, - sym_val_list, - STATE(5266), 2, + ACTIONS(9015), 1, + anon_sym_export, + ACTIONS(9017), 1, + anon_sym_def, + ACTIONS(9019), 1, + anon_sym_extern, + STATE(5266), 1, sym_comment, - aux_sym__table_body_repeat1, - [186347] = 5, + [186380] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4255), 1, + ACTIONS(5545), 1, sym__entry_separator, - ACTIONS(9023), 1, + ACTIONS(5592), 1, anon_sym_RBRACE, - STATE(1776), 1, + STATE(2781), 1, aux_sym__types_body_repeat2, STATE(5267), 1, sym_comment, - [186363] = 3, - ACTIONS(3), 1, + [186396] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(9021), 1, + anon_sym_LPAREN, STATE(5268), 1, sym_comment, - ACTIONS(8569), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [186375] = 3, + ACTIONS(9023), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [186410] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(5269), 1, sym_comment, - ACTIONS(8634), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [186387] = 5, + ACTIONS(5293), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [186422] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1896), 1, - anon_sym_LBRACE, - ACTIONS(1898), 1, - sym__unquoted_pattern, - ACTIONS(8729), 1, - aux_sym__immediate_decimal_token5, STATE(5270), 1, sym_comment, - [186403] = 5, + ACTIONS(9025), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [186434] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4820), 1, - anon_sym_LPAREN2, - ACTIONS(7421), 1, - sym__unquoted_pattern_in_list, STATE(5271), 1, sym_comment, - STATE(5402), 1, - sym__expr_parenthesized_immediate, - [186419] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4914), 1, - sym__entry_separator, - ACTIONS(8660), 1, + ACTIONS(5281), 3, anon_sym_LBRACK, - STATE(2246), 1, - aux_sym__types_body_repeat2, - STATE(5272), 1, - sym_comment, - [186435] = 5, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [186446] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4567), 1, - anon_sym_AT2, - ACTIONS(6791), 1, - anon_sym_EQ, - STATE(3995), 1, - sym_param_cmd, - STATE(5273), 1, + STATE(5272), 1, sym_comment, - [186451] = 3, + ACTIONS(5285), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [186458] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(5274), 1, + STATE(5273), 1, sym_comment, - ACTIONS(8571), 3, - ts_builtin_sym_end, + ACTIONS(9027), 3, sym__newline, anon_sym_SEMI, - [186463] = 5, + anon_sym_RPAREN, + [186470] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3674), 1, - anon_sym_LPAREN2, - ACTIONS(6029), 1, - sym__unquoted_pattern_in_record, - STATE(5275), 1, + STATE(5274), 1, sym_comment, - STATE(5310), 1, - sym__expr_parenthesized_immediate, - [186479] = 4, + ACTIONS(5289), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [186482] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6187), 1, + ACTIONS(6236), 1, sym__entry_separator, - STATE(5276), 1, + STATE(5275), 1, sym_comment, - ACTIONS(6189), 2, + ACTIONS(6238), 2, anon_sym_RBRACK, anon_sym_GT2, - [186493] = 4, - ACTIONS(103), 1, + [186496] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2326), 1, - sym__entry_separator, - ACTIONS(2328), 1, - anon_sym_RBRACE, + ACTIONS(3674), 1, + anon_sym_LPAREN2, + ACTIONS(3820), 1, + sym__unquoted_pattern_in_record, + STATE(5276), 1, + sym_comment, + STATE(5374), 1, + sym__expr_parenthesized_immediate, + [186512] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2854), 1, + sym__unquoted_pattern, STATE(5277), 1, sym_comment, - [186506] = 3, - ACTIONS(103), 1, + ACTIONS(1417), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [186526] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1956), 1, + anon_sym_LBRACE, + ACTIONS(1958), 1, + sym__unquoted_pattern, STATE(5278), 1, sym_comment, - ACTIONS(2428), 2, - anon_sym_POUND_BANG, - sym__newline, - [186517] = 4, + [186539] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3674), 1, - anon_sym_LPAREN2, + ACTIONS(4369), 1, + anon_sym_LBRACE, + STATE(5235), 1, + sym_block, STATE(5279), 1, sym_comment, - STATE(5550), 1, - sym__expr_parenthesized_immediate, - [186530] = 4, + [186552] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1958), 1, - sym__unquoted_pattern_in_record, - ACTIONS(9025), 1, - aux_sym__immediate_decimal_token5, STATE(5280), 1, sym_comment, - [186543] = 4, - ACTIONS(3), 1, + ACTIONS(9029), 2, + sym__newline, + anon_sym_SEMI, + [186563] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4367), 1, - anon_sym_LBRACE, - STATE(4772), 1, - sym_block, + ACTIONS(9031), 1, + aux_sym__unquoted_with_expr_token1, STATE(5281), 1, sym_comment, - [186556] = 4, + STATE(5409), 1, + aux_sym__unquoted_with_expr_repeat1, + [186576] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9027), 1, + ACTIONS(9033), 1, aux_sym__unquoted_with_expr_token1, STATE(5282), 1, sym_comment, - STATE(5316), 1, + STATE(5409), 1, aux_sym__unquoted_with_expr_repeat1, - [186569] = 4, + [186589] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9029), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(9035), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(5283), 1, sym_comment, - STATE(5317), 1, - aux_sym__unquoted_with_expr_repeat1, - [186582] = 4, + STATE(5359), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [186602] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4367), 1, + ACTIONS(919), 1, anon_sym_LBRACE, - STATE(4773), 1, - sym_block, + ACTIONS(2818), 1, + sym__unquoted_pattern, STATE(5284), 1, sym_comment, - [186595] = 4, + [186615] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9031), 1, - sym_identifier, - ACTIONS(9033), 1, - anon_sym_DOLLAR, + ACTIONS(4369), 1, + anon_sym_LBRACE, + STATE(5236), 1, + sym_block, STATE(5285), 1, sym_comment, - [186608] = 4, + [186628] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4369), 1, + ACTIONS(1409), 1, anon_sym_LBRACE, - STATE(5034), 1, - sym_block, + ACTIONS(2854), 1, + sym__unquoted_pattern, STATE(5286), 1, sym_comment, - [186621] = 4, + [186641] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4369), 1, - anon_sym_LBRACE, - STATE(5036), 1, - sym_block, STATE(5287), 1, sym_comment, - [186634] = 4, - ACTIONS(103), 1, + ACTIONS(902), 2, + sym__table_head_separator, + anon_sym_DOT2, + [186652] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6224), 1, - anon_sym_RBRACK, - ACTIONS(6226), 1, - sym__entry_separator, + ACTIONS(4369), 1, + anon_sym_LBRACE, + STATE(5237), 1, + sym_block, STATE(5288), 1, sym_comment, - [186647] = 4, - ACTIONS(103), 1, + [186665] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1407), 1, - anon_sym_RBRACE, - ACTIONS(1409), 1, - sym__entry_separator, STATE(5289), 1, sym_comment, - [186660] = 4, - ACTIONS(103), 1, + ACTIONS(894), 2, + sym__table_head_separator, + anon_sym_DOT2, + [186676] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9035), 1, - anon_sym_GT2, - ACTIONS(9037), 1, - sym__entry_separator, + ACTIONS(1417), 1, + anon_sym_LBRACE, + ACTIONS(2854), 1, + sym__unquoted_pattern, STATE(5290), 1, sym_comment, - [186673] = 4, + [186689] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4369), 1, + ACTIONS(4367), 1, anon_sym_LBRACE, - STATE(5199), 1, + STATE(4904), 1, sym_block, STATE(5291), 1, sym_comment, - [186686] = 4, + [186702] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4369), 1, - anon_sym_LBRACE, - STATE(5184), 1, - sym_block, STATE(5292), 1, sym_comment, - [186699] = 4, + ACTIONS(898), 2, + sym__table_head_separator, + anon_sym_DOT2, + [186713] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1157), 1, - anon_sym_COLON2, - ACTIONS(2545), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(4283), 1, + anon_sym_RBRACE, + ACTIONS(4285), 1, + sym__entry_separator, STATE(5293), 1, sym_comment, - [186712] = 4, + [186726] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4369), 1, anon_sym_LBRACE, - STATE(5101), 1, + STATE(5161), 1, sym_block, STATE(5294), 1, sym_comment, - [186725] = 4, - ACTIONS(3), 1, + [186739] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4369), 1, - anon_sym_LBRACE, - STATE(5185), 1, - sym_block, + ACTIONS(9037), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(5295), 1, sym_comment, - [186738] = 4, + STATE(5451), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [186752] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1956), 1, + ACTIONS(4367), 1, anon_sym_LBRACE, - ACTIONS(1958), 1, - sym__unquoted_pattern, + STATE(4908), 1, + sym_block, STATE(5296), 1, sym_comment, - [186751] = 4, + [186765] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4369), 1, - anon_sym_LBRACE, - STATE(5186), 1, - sym_block, + ACTIONS(9039), 1, + anon_sym_DASH2, STATE(5297), 1, sym_comment, - [186764] = 4, + STATE(5781), 1, + sym_param_short_flag, + [186778] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4369), 1, + ACTIONS(4367), 1, anon_sym_LBRACE, - STATE(5104), 1, + STATE(4862), 1, sym_block, STATE(5298), 1, sym_comment, - [186777] = 4, - ACTIONS(103), 1, + [186791] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6899), 1, - anon_sym_RBRACK, - ACTIONS(6901), 1, - sym__entry_separator, + ACTIONS(1958), 1, + sym__unquoted_pattern_in_record, + ACTIONS(9041), 1, + aux_sym__immediate_decimal_token5, STATE(5299), 1, sym_comment, - [186790] = 4, - ACTIONS(103), 1, + [186804] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2776), 1, - sym__entry_separator, - ACTIONS(2778), 1, - anon_sym_RBRACE, + ACTIONS(4367), 1, + anon_sym_LBRACE, + STATE(4914), 1, + sym_block, STATE(5300), 1, sym_comment, - [186803] = 4, + [186817] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4102), 1, - anon_sym_RBRACE, - ACTIONS(4108), 1, + ACTIONS(4914), 1, sym__entry_separator, + STATE(2431), 1, + aux_sym__types_body_repeat2, STATE(5301), 1, sym_comment, - [186816] = 4, + [186830] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4369), 1, + ACTIONS(4367), 1, anon_sym_LBRACE, - STATE(5187), 1, + STATE(4919), 1, sym_block, STATE(5302), 1, sym_comment, - [186829] = 3, + [186843] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9039), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(5303), 2, + ACTIONS(5894), 1, + sym__entry_separator, + STATE(3114), 1, + aux_sym__types_body_repeat2, + STATE(5303), 1, sym_comment, - aux_sym__unquoted_in_list_with_expr_repeat1, - [186840] = 4, - ACTIONS(103), 1, + [186856] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9042), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(4369), 1, + anon_sym_LBRACE, + STATE(5199), 1, + sym_block, STATE(5304), 1, sym_comment, - STATE(5334), 1, - aux_sym__unquoted_with_expr_repeat1, - [186853] = 3, - ACTIONS(3), 1, + [186869] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(9043), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(5283), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(5305), 1, sym_comment, - ACTIONS(898), 2, - sym__table_head_separator, - anon_sym_DOT2, - [186864] = 4, + [186882] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2844), 1, - anon_sym_LBRACE, - ACTIONS(2850), 1, - sym__unquoted_pattern, + ACTIONS(9045), 1, + anon_sym_def, + ACTIONS(9047), 1, + anon_sym_extern, STATE(5306), 1, sym_comment, - [186877] = 4, + [186895] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4369), 1, anon_sym_LBRACE, - STATE(5198), 1, + STATE(5060), 1, sym_block, STATE(5307), 1, sym_comment, - [186890] = 4, + [186908] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4277), 1, - anon_sym_RBRACE, - ACTIONS(4279), 1, - sym__entry_separator, + ACTIONS(9049), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(5308), 1, sym_comment, - [186903] = 4, + STATE(5359), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [186921] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4287), 1, anon_sym_RBRACE, - ACTIONS(4125), 1, + ACTIONS(4289), 1, sym__entry_separator, STATE(5309), 1, sym_comment, - [186916] = 4, + [186934] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9044), 1, + ACTIONS(9051), 1, aux_sym__unquoted_in_record_with_expr_token1, + STATE(5308), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(5310), 1, sym_comment, - STATE(5392), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [186929] = 4, + [186947] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9046), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(5303), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, + ACTIONS(4037), 1, + anon_sym_RBRACE, + ACTIONS(4039), 1, + sym__entry_separator, STATE(5311), 1, sym_comment, - [186942] = 4, + [186960] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1157), 1, + ACTIONS(4369), 1, anon_sym_LBRACE, - ACTIONS(1884), 1, - sym__unquoted_pattern, + STATE(5061), 1, + sym_block, STATE(5312), 1, sym_comment, - [186955] = 4, - ACTIONS(103), 1, + [186973] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9048), 1, - aux_sym__unquoted_in_record_with_expr_token1, STATE(5313), 1, sym_comment, - STATE(5394), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [186968] = 4, - ACTIONS(103), 1, + ACTIONS(906), 2, + sym__table_head_separator, + anon_sym_DOT2, + [186984] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9050), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(4367), 1, + anon_sym_LBRACE, + STATE(4922), 1, + sym_block, STATE(5314), 1, sym_comment, - STATE(5348), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [186981] = 4, + [186997] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9052), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(4914), 1, + sym__entry_separator, + STATE(2392), 1, + aux_sym__types_body_repeat2, STATE(5315), 1, sym_comment, - STATE(5349), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [186994] = 4, - ACTIONS(103), 1, + [187010] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9054), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(4367), 1, + anon_sym_LBRACE, + STATE(4835), 1, + sym_block, STATE(5316), 1, sym_comment, - STATE(5388), 1, - aux_sym__unquoted_with_expr_repeat1, - [187007] = 4, - ACTIONS(103), 1, + [187023] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9056), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(4369), 1, + anon_sym_LBRACE, + STATE(5142), 1, + sym_block, STATE(5317), 1, sym_comment, - STATE(5388), 1, - aux_sym__unquoted_with_expr_repeat1, - [187020] = 4, + [187036] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2114), 1, - anon_sym_LBRACE, - ACTIONS(2116), 1, - sym__unquoted_pattern, STATE(5318), 1, sym_comment, - [187033] = 4, - ACTIONS(103), 1, + ACTIONS(9053), 2, + anon_sym_RBRACK, + sym_hex_digit, + [187047] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9058), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(3674), 1, + anon_sym_LPAREN2, STATE(5319), 1, sym_comment, - STATE(5388), 1, - aux_sym__unquoted_with_expr_repeat1, - [187046] = 3, + STATE(5819), 1, + sym__expr_parenthesized_immediate, + [187060] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4367), 1, + anon_sym_LBRACE, + STATE(4929), 1, + sym_block, STATE(5320), 1, sym_comment, - ACTIONS(9060), 2, - sym__newline, - anon_sym_SEMI, - [187057] = 4, + [187073] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9062), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(2545), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2547), 1, + anon_sym_COLON2, STATE(5321), 1, sym_comment, - STATE(5388), 1, - aux_sym__unquoted_with_expr_repeat1, - [187070] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4914), 1, - sym__entry_separator, - STATE(5272), 1, - aux_sym__types_body_repeat2, - STATE(5322), 1, - sym_comment, - [187083] = 4, + [187086] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4367), 1, anon_sym_LBRACE, - STATE(4743), 1, + STATE(4930), 1, sym_block, + STATE(5322), 1, + sym_comment, + [187099] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9055), 1, + anon_sym_RBRACK, + ACTIONS(9057), 1, + sym__entry_separator, STATE(5323), 1, sym_comment, - [187096] = 4, - ACTIONS(3), 1, + [187112] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4367), 1, - anon_sym_LBRACE, - STATE(4745), 1, - sym_block, + ACTIONS(1157), 1, + anon_sym_COLON2, + ACTIONS(2545), 1, + aux_sym_cmd_identifier_token2, STATE(5324), 1, sym_comment, - [187109] = 4, + [187125] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4367), 1, - anon_sym_LBRACE, - STATE(4746), 1, - sym_block, + ACTIONS(9059), 1, + sym_identifier, + ACTIONS(9061), 1, + anon_sym_DOLLAR, STATE(5325), 1, sym_comment, - [187122] = 4, - ACTIONS(103), 1, + [187138] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4914), 1, - sym__entry_separator, - STATE(2431), 1, - aux_sym__types_body_repeat2, + ACTIONS(4367), 1, + anon_sym_LBRACE, + STATE(4865), 1, + sym_block, STATE(5326), 1, sym_comment, - [187135] = 4, + [187151] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4367), 1, + ACTIONS(4369), 1, anon_sym_LBRACE, - STATE(4747), 1, + STATE(5099), 1, sym_block, STATE(5327), 1, sym_comment, - [187148] = 3, - ACTIONS(3), 1, + [187164] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(9063), 1, + aux_sym__unquoted_with_expr_token1, STATE(5328), 1, sym_comment, - ACTIONS(902), 2, - sym__table_head_separator, - anon_sym_DOT2, - [187159] = 3, - ACTIONS(3), 1, + STATE(5445), 1, + aux_sym__unquoted_with_expr_repeat1, + [187177] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(9065), 1, + aux_sym__unquoted_with_expr_token1, STATE(5329), 1, sym_comment, - ACTIONS(894), 2, - sym__table_head_separator, - anon_sym_DOT2, - [187170] = 3, + STATE(5448), 1, + aux_sym__unquoted_with_expr_repeat1, + [187190] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4367), 1, + anon_sym_LBRACE, + STATE(4803), 1, + sym_block, STATE(5330), 1, sym_comment, - ACTIONS(906), 2, - sym__table_head_separator, - anon_sym_DOT2, - [187181] = 4, - ACTIONS(103), 1, + [187203] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2836), 1, - sym__entry_separator, - ACTIONS(2838), 1, - anon_sym_RBRACE, + ACTIONS(4367), 1, + anon_sym_LBRACE, + STATE(4757), 1, + sym_block, STATE(5331), 1, sym_comment, - [187194] = 4, + [187216] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1753), 1, - sym__unquoted_pattern, - ACTIONS(2316), 1, + ACTIONS(4367), 1, anon_sym_LBRACE, + STATE(4760), 1, + sym_block, STATE(5332), 1, sym_comment, - [187207] = 4, + [187229] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9064), 1, - anon_sym_def, - ACTIONS(9066), 1, - anon_sym_extern, + ACTIONS(4367), 1, + anon_sym_LBRACE, + STATE(4839), 1, + sym_block, STATE(5333), 1, sym_comment, - [187220] = 4, - ACTIONS(103), 1, + [187242] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9068), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(4369), 1, + anon_sym_LBRACE, + STATE(5102), 1, + sym_block, STATE(5334), 1, sym_comment, - STATE(5388), 1, - aux_sym__unquoted_with_expr_repeat1, - [187233] = 4, + [187255] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4467), 1, + ACTIONS(9067), 1, + anon_sym_GT2, + ACTIONS(9069), 1, sym__entry_separator, - ACTIONS(9070), 1, - anon_sym_RBRACE, STATE(5335), 1, sym_comment, - [187246] = 4, - ACTIONS(103), 1, + [187268] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9073), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(4369), 1, + anon_sym_LBRACE, + STATE(5105), 1, + sym_block, STATE(5336), 1, sym_comment, - STATE(5337), 1, - aux_sym__unquoted_with_expr_repeat1, - [187259] = 4, + [187281] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9075), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(5215), 1, + anon_sym_RBRACK, + ACTIONS(5221), 1, + sym__entry_separator, STATE(5337), 1, sym_comment, - STATE(5388), 1, - aux_sym__unquoted_with_expr_repeat1, - [187272] = 4, + [187294] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(919), 1, + ACTIONS(4369), 1, anon_sym_LBRACE, - ACTIONS(2818), 1, - sym__unquoted_pattern, + STATE(5106), 1, + sym_block, STATE(5338), 1, sym_comment, - [187285] = 4, + [187307] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2316), 1, + ACTIONS(6899), 1, + anon_sym_RBRACK, + ACTIONS(6901), 1, sym__entry_separator, - ACTIONS(2318), 1, - anon_sym_RBRACE, STATE(5339), 1, sym_comment, - [187298] = 4, - ACTIONS(3), 1, + [187320] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4367), 1, - anon_sym_LBRACE, - STATE(4754), 1, - sym_block, + ACTIONS(9071), 1, + anon_sym_GT2, + ACTIONS(9073), 1, + sym__entry_separator, STATE(5340), 1, sym_comment, - [187311] = 4, + [187333] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4367), 1, + ACTIONS(4369), 1, anon_sym_LBRACE, - STATE(4755), 1, + STATE(5152), 1, sym_block, STATE(5341), 1, sym_comment, - [187324] = 4, + [187346] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1409), 1, + ACTIONS(4367), 1, anon_sym_LBRACE, - ACTIONS(2854), 1, - sym__unquoted_pattern, + STATE(4975), 1, + sym_block, STATE(5342), 1, sym_comment, - [187337] = 4, - ACTIONS(3), 1, + [187359] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1417), 1, - anon_sym_LBRACE, - ACTIONS(2854), 1, - sym__unquoted_pattern, + ACTIONS(9075), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(5343), 1, sym_comment, - [187350] = 4, - ACTIONS(103), 1, + STATE(5359), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [187372] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4283), 1, - anon_sym_RBRACE, - ACTIONS(4285), 1, - sym__entry_separator, + ACTIONS(4369), 1, + anon_sym_LBRACE, + STATE(3858), 1, + sym_block, STATE(5344), 1, sym_comment, - [187363] = 4, - ACTIONS(3), 1, + [187385] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2602), 1, - anon_sym_LBRACE, - ACTIONS(2604), 1, - sym__unquoted_pattern, + ACTIONS(9077), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(5345), 1, sym_comment, - [187376] = 4, + STATE(5451), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [187398] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9077), 1, - anon_sym_DASH2, + ACTIONS(4369), 1, + anon_sym_LBRACE, + STATE(5166), 1, + sym_block, STATE(5346), 1, sym_comment, - STATE(5671), 1, - sym_param_short_flag, - [187389] = 4, + [187411] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1399), 1, - anon_sym_RBRACE, - ACTIONS(1417), 1, - sym__entry_separator, + ACTIONS(9079), 1, + sym__newline, + ACTIONS(9081), 1, + sym__space, STATE(5347), 1, sym_comment, - [187402] = 4, - ACTIONS(103), 1, + [187424] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9079), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(4369), 1, + anon_sym_LBRACE, + STATE(5200), 1, + sym_block, STATE(5348), 1, sym_comment, - STATE(5358), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [187415] = 4, + [187437] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9081), 1, + ACTIONS(9083), 1, aux_sym__unquoted_in_record_with_expr_token1, + STATE(5343), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(5349), 1, sym_comment, - STATE(5358), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [187428] = 4, + [187450] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4287), 1, - anon_sym_RBRACE, - ACTIONS(4289), 1, - sym__entry_separator, STATE(5350), 1, sym_comment, - [187441] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4037), 1, - anon_sym_RBRACE, - ACTIONS(4039), 1, - sym__entry_separator, - STATE(5351), 1, - sym_comment, - [187454] = 4, + ACTIONS(2428), 2, + anon_sym_POUND_BANG, + sym__newline, + [187461] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4369), 1, anon_sym_LBRACE, - STATE(5093), 1, + STATE(5168), 1, sym_block, - STATE(5352), 1, + STATE(5351), 1, sym_comment, - [187467] = 4, + [187474] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9083), 1, - anon_sym_RBRACK, + ACTIONS(2545), 1, + aux_sym_cmd_identifier_token2, ACTIONS(9085), 1, - sym__entry_separator, - STATE(5353), 1, + anon_sym_COLON2, + STATE(5352), 1, sym_comment, - [187480] = 4, + [187487] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9087), 1, - aux_sym__unquoted_with_expr_token1, - STATE(5319), 1, - aux_sym__unquoted_with_expr_repeat1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(5353), 1, + sym_comment, + STATE(5359), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [187500] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4367), 1, + anon_sym_LBRACE, + STATE(4872), 1, + sym_block, STATE(5354), 1, sym_comment, - [187493] = 4, - ACTIONS(103), 1, + [187513] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9089), 1, - aux_sym__unquoted_with_expr_token1, - STATE(5321), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(1791), 1, + sym__unquoted_pattern, + ACTIONS(2776), 1, + anon_sym_LBRACE, STATE(5355), 1, sym_comment, - [187506] = 4, + [187526] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9091), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(5303), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, + ACTIONS(2844), 1, + sym__entry_separator, + ACTIONS(2846), 1, + anon_sym_RBRACE, STATE(5356), 1, sym_comment, - [187519] = 4, - ACTIONS(3), 1, + [187539] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4367), 1, - anon_sym_LBRACE, - STATE(4713), 1, - sym_block, + ACTIONS(5005), 1, + sym__entry_separator, + STATE(2502), 1, + aux_sym__types_body_repeat2, STATE(5357), 1, sym_comment, - [187532] = 3, + [187552] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9093), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(5358), 2, + ACTIONS(9089), 1, + anon_sym_GT2, + ACTIONS(9091), 1, + sym__entry_separator, + STATE(5358), 1, sym_comment, - aux_sym__unquoted_in_record_with_expr_repeat1, - [187543] = 4, + [187565] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9096), 1, + ACTIONS(9093), 1, aux_sym__unquoted_in_record_with_expr_token1, - STATE(5358), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(5359), 1, + STATE(5359), 2, sym_comment, - [187556] = 4, + aux_sym__unquoted_in_record_with_expr_repeat1, + [187576] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4369), 1, + ACTIONS(4367), 1, anon_sym_LBRACE, - STATE(5092), 1, + STATE(3831), 1, sym_block, STATE(5360), 1, sym_comment, - [187569] = 4, + [187589] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4367), 1, anon_sym_LBRACE, - STATE(4714), 1, + STATE(4873), 1, sym_block, STATE(5361), 1, sym_comment, - [187582] = 4, + [187602] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1874), 1, - anon_sym_LPAREN2, STATE(5362), 1, sym_comment, - STATE(5694), 1, - sym__expr_parenthesized_immediate, - [187595] = 4, - ACTIONS(103), 1, + ACTIONS(8986), 2, + anon_sym_GT2, + anon_sym_AT2, + [187613] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5005), 1, - sym__entry_separator, - STATE(2502), 1, - aux_sym__types_body_repeat2, + ACTIONS(4367), 1, + anon_sym_LBRACE, + STATE(4787), 1, + sym_block, STATE(5363), 1, sym_comment, - [187608] = 4, + [187626] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4369), 1, + ACTIONS(4367), 1, anon_sym_LBRACE, - STATE(5097), 1, + STATE(4792), 1, sym_block, STATE(5364), 1, sym_comment, - [187621] = 4, - ACTIONS(3), 1, + [187639] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4369), 1, - anon_sym_LBRACE, - STATE(5262), 1, - sym_block, + ACTIONS(4914), 1, + sym__entry_separator, + STATE(5013), 1, + aux_sym__types_body_repeat2, STATE(5365), 1, sym_comment, - [187634] = 4, + [187652] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4369), 1, + ACTIONS(4367), 1, anon_sym_LBRACE, - STATE(5102), 1, + STATE(4794), 1, sym_block, STATE(5366), 1, sym_comment, - [187647] = 4, + [187665] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4369), 1, + ACTIONS(4367), 1, anon_sym_LBRACE, - STATE(5268), 1, + STATE(4796), 1, sym_block, STATE(5367), 1, sym_comment, - [187660] = 4, + [187678] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4119), 1, + anon_sym_RBRACE, + ACTIONS(4121), 1, + sym__entry_separator, + STATE(5368), 1, + sym_comment, + [187691] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1791), 1, + ACTIONS(1753), 1, sym__unquoted_pattern, - ACTIONS(2776), 1, + ACTIONS(2316), 1, anon_sym_LBRACE, - STATE(5368), 1, + STATE(5369), 1, sym_comment, - [187673] = 4, + [187704] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9098), 1, - anon_sym_GT2, - ACTIONS(9100), 1, + ACTIONS(4467), 1, sym__entry_separator, - STATE(5369), 1, - sym_comment, - [187686] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4369), 1, - anon_sym_LBRACE, - STATE(5107), 1, - sym_block, + ACTIONS(9096), 1, + anon_sym_RBRACE, STATE(5370), 1, sym_comment, - [187699] = 4, - ACTIONS(103), 1, + [187717] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9102), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(5358), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(1874), 1, + anon_sym_LPAREN2, STATE(5371), 1, sym_comment, - [187712] = 4, - ACTIONS(3), 1, + STATE(5668), 1, + sym__expr_parenthesized_immediate, + [187730] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4369), 1, - anon_sym_LBRACE, - STATE(4981), 1, - sym_block, + ACTIONS(9099), 1, + anon_sym_RBRACK, + ACTIONS(9101), 1, + sym__entry_separator, STATE(5372), 1, sym_comment, - [187725] = 4, + [187743] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5215), 1, - anon_sym_RBRACK, - ACTIONS(5221), 1, + ACTIONS(2316), 1, sym__entry_separator, + ACTIONS(2318), 1, + anon_sym_RBRACE, STATE(5373), 1, sym_comment, - [187738] = 4, - ACTIONS(3), 1, + [187756] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4367), 1, - anon_sym_LBRACE, - STATE(4870), 1, - sym_block, + ACTIONS(9103), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(5374), 1, sym_comment, - [187751] = 4, - ACTIONS(3), 1, + STATE(5415), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [187769] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1866), 1, - anon_sym_LBRACE, - ACTIONS(1868), 1, - sym__unquoted_pattern, + ACTIONS(2820), 1, + sym__entry_separator, + ACTIONS(2822), 1, + anon_sym_RBRACE, STATE(5375), 1, sym_comment, - [187764] = 4, + [187782] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5894), 1, + ACTIONS(4255), 1, sym__entry_separator, - STATE(3114), 1, + STATE(1849), 1, aux_sym__types_body_repeat2, STATE(5376), 1, sym_comment, - [187777] = 4, + [187795] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4914), 1, + ACTIONS(2776), 1, sym__entry_separator, - STATE(2392), 1, - aux_sym__types_body_repeat2, + ACTIONS(2778), 1, + anon_sym_RBRACE, STATE(5377), 1, sym_comment, - [187790] = 4, - ACTIONS(3), 1, + [187808] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4367), 1, - anon_sym_LBRACE, - STATE(4725), 1, - sym_block, + ACTIONS(9105), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(5295), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, STATE(5378), 1, sym_comment, - [187803] = 4, + [187821] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4369), 1, anon_sym_LBRACE, - STATE(5019), 1, + STATE(5113), 1, sym_block, STATE(5379), 1, sym_comment, - [187816] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2545), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2547), 1, - anon_sym_COLON2, - STATE(5380), 1, - sym_comment, - [187829] = 4, + [187834] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4367), 1, anon_sym_LBRACE, - STATE(4979), 1, + STATE(4878), 1, sym_block, + STATE(5380), 1, + sym_comment, + [187847] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9107), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(5381), 1, sym_comment, - [187842] = 4, + STATE(5426), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [187860] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2545), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(9104), 1, - anon_sym_COLON2, + ACTIONS(9109), 1, + aux_sym__unquoted_with_expr_token1, STATE(5382), 1, sym_comment, - [187855] = 4, - ACTIONS(3), 1, + STATE(5389), 1, + aux_sym__unquoted_with_expr_repeat1, + [187873] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4367), 1, - anon_sym_LBRACE, - STATE(4728), 1, - sym_block, + ACTIONS(6998), 1, + sym__entry_separator, + ACTIONS(7000), 1, + anon_sym_GT2, STATE(5383), 1, sym_comment, - [187868] = 4, - ACTIONS(3), 1, + [187886] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4369), 1, - anon_sym_LBRACE, - STATE(3858), 1, - sym_block, + ACTIONS(9111), 1, + aux_sym__unquoted_with_expr_token1, STATE(5384), 1, sym_comment, - [187881] = 4, + STATE(5391), 1, + aux_sym__unquoted_with_expr_repeat1, + [187899] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2844), 1, - sym__entry_separator, - ACTIONS(2846), 1, + ACTIONS(4102), 1, anon_sym_RBRACE, + ACTIONS(4108), 1, + sym__entry_separator, STATE(5385), 1, sym_comment, - [187894] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(9106), 1, - sym__newline, - ACTIONS(9108), 1, - sym__space, - STATE(5386), 1, - sym_comment, - [187907] = 4, + [187912] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4367), 1, + ACTIONS(4369), 1, anon_sym_LBRACE, - STATE(4729), 1, + STATE(5182), 1, sym_block, - STATE(5387), 1, + STATE(5386), 1, sym_comment, - [187920] = 3, + [187925] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9110), 1, - aux_sym__unquoted_with_expr_token1, - STATE(5388), 2, + ACTIONS(9113), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(5387), 1, sym_comment, - aux_sym__unquoted_with_expr_repeat1, - [187931] = 4, + STATE(5392), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [187938] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6998), 1, - sym__entry_separator, - ACTIONS(7000), 1, - anon_sym_GT2, - STATE(5389), 1, + ACTIONS(9115), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(5388), 1, sym_comment, - [187944] = 3, - ACTIONS(3), 1, + STATE(5397), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [187951] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(5390), 1, + ACTIONS(9117), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5389), 1, sym_comment, - ACTIONS(8991), 2, - anon_sym_GT2, - anon_sym_AT2, - [187955] = 4, + STATE(5409), 1, + aux_sym__unquoted_with_expr_repeat1, + [187964] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4369), 1, anon_sym_LBRACE, - STATE(5078), 1, + STATE(5183), 1, sym_block, + STATE(5390), 1, + sym_comment, + [187977] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9119), 1, + aux_sym__unquoted_with_expr_token1, STATE(5391), 1, sym_comment, - [187968] = 4, + STATE(5409), 1, + aux_sym__unquoted_with_expr_repeat1, + [187990] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9113), 1, + ACTIONS(9121), 1, aux_sym__unquoted_in_record_with_expr_token1, - STATE(5358), 1, + STATE(5359), 1, aux_sym__unquoted_in_record_with_expr_repeat1, STATE(5392), 1, sym_comment, - [187981] = 4, - ACTIONS(103), 1, + [188003] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9115), 1, - anon_sym_RBRACK, - ACTIONS(9117), 1, - sym__entry_separator, + ACTIONS(2844), 1, + anon_sym_LBRACE, + ACTIONS(2850), 1, + sym__unquoted_pattern, STATE(5393), 1, sym_comment, - [187994] = 4, + [188016] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9119), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(5358), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(5029), 1, + sym__entry_separator, + STATE(2450), 1, + aux_sym__types_body_repeat2, STATE(5394), 1, sym_comment, - [188007] = 4, + [188029] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4119), 1, - anon_sym_RBRACE, - ACTIONS(4121), 1, + ACTIONS(9123), 1, + anon_sym_RBRACK, + ACTIONS(9125), 1, sym__entry_separator, STATE(5395), 1, sym_comment, - [188020] = 4, - ACTIONS(3), 1, + [188042] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4367), 1, - anon_sym_LBRACE, - STATE(4757), 1, - sym_block, + ACTIONS(4277), 1, + anon_sym_RBRACE, + ACTIONS(4279), 1, + sym__entry_separator, STATE(5396), 1, sym_comment, - [188033] = 4, - ACTIONS(3), 1, + [188055] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4367), 1, - anon_sym_LBRACE, - STATE(4758), 1, - sym_block, + ACTIONS(9127), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(5359), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(5397), 1, sym_comment, - [188046] = 3, - ACTIONS(3), 1, + [188068] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(9129), 1, + aux_sym__unquoted_with_expr_token1, STATE(5398), 1, sym_comment, - ACTIONS(9121), 2, - anon_sym_RBRACK, - sym_hex_digit, - [188057] = 4, + STATE(5409), 1, + aux_sym__unquoted_with_expr_repeat1, + [188081] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4255), 1, - sym__entry_separator, - STATE(1849), 1, - aux_sym__types_body_repeat2, + ACTIONS(9131), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5281), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(5399), 1, sym_comment, - [188070] = 4, - ACTIONS(3), 1, + [188094] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4369), 1, - anon_sym_LBRACE, - STATE(5081), 1, - sym_block, + ACTIONS(4123), 1, + anon_sym_RBRACE, + ACTIONS(4125), 1, + sym__entry_separator, STATE(5400), 1, sym_comment, - [188083] = 4, + [188107] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2820), 1, + ACTIONS(2326), 1, sym__entry_separator, - ACTIONS(2822), 1, + ACTIONS(2328), 1, anon_sym_RBRACE, STATE(5401), 1, sym_comment, - [188096] = 4, - ACTIONS(103), 1, + [188120] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9123), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(5311), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, + ACTIONS(4367), 1, + anon_sym_LBRACE, + STATE(3855), 1, + sym_block, STATE(5402), 1, sym_comment, - [188109] = 4, + [188133] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4367), 1, anon_sym_LBRACE, - STATE(3831), 1, + STATE(4879), 1, sym_block, STATE(5403), 1, sym_comment, - [188122] = 4, - ACTIONS(3), 1, + [188146] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4369), 1, - anon_sym_LBRACE, - STATE(5237), 1, - sym_block, + ACTIONS(9133), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(5345), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, STATE(5404), 1, sym_comment, - [188135] = 4, - ACTIONS(3), 1, + [188159] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4367), 1, - anon_sym_LBRACE, - STATE(4763), 1, - sym_block, + ACTIONS(6224), 1, + anon_sym_RBRACK, + ACTIONS(6226), 1, + sym__entry_separator, STATE(5405), 1, sym_comment, - [188148] = 4, + [188172] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4369), 1, + ACTIONS(1157), 1, anon_sym_LBRACE, - STATE(5238), 1, - sym_block, + ACTIONS(1884), 1, + sym__unquoted_pattern, STATE(5406), 1, sym_comment, - [188161] = 4, + [188185] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4367), 1, + ACTIONS(4369), 1, anon_sym_LBRACE, - STATE(4764), 1, + STATE(5114), 1, sym_block, STATE(5407), 1, sym_comment, - [188174] = 4, + [188198] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5029), 1, - sym__entry_separator, - STATE(2450), 1, - aux_sym__types_body_repeat2, + ACTIONS(3909), 1, + sym__space, + STATE(1480), 1, + aux_sym_pipe_element_repeat1, STATE(5408), 1, sym_comment, - [188187] = 4, - ACTIONS(3), 1, + [188211] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2336), 1, - sym__unquoted_pattern, - ACTIONS(2820), 1, - anon_sym_LBRACE, - STATE(5409), 1, + ACTIONS(9135), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5409), 2, sym_comment, - [188200] = 4, + aux_sym__unquoted_with_expr_repeat1, + [188222] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9125), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(5356), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, + ACTIONS(2545), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2736), 1, + anon_sym_COLON2, STATE(5410), 1, sym_comment, - [188213] = 4, - ACTIONS(103), 1, + [188235] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9127), 1, - anon_sym_LPAREN2, - ACTIONS(9129), 1, - aux_sym__record_key_token1, + ACTIONS(2114), 1, + anon_sym_LBRACE, + ACTIONS(2116), 1, + sym__unquoted_pattern, STATE(5411), 1, sym_comment, - [188226] = 4, + [188248] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9131), 1, + ACTIONS(9138), 1, aux_sym__unquoted_with_expr_token1, + STATE(5409), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(5412), 1, sym_comment, - STATE(5417), 1, - aux_sym__unquoted_with_expr_repeat1, - [188239] = 4, - ACTIONS(103), 1, + [188261] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9133), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(4369), 1, + anon_sym_LBRACE, + STATE(5115), 1, + sym_block, STATE(5413), 1, sym_comment, - STATE(5418), 1, - aux_sym__unquoted_with_expr_repeat1, - [188252] = 4, + [188274] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3909), 1, - sym__space, - STATE(1480), 1, - aux_sym_pipe_element_repeat1, + ACTIONS(9140), 1, + anon_sym_RBRACE, + ACTIONS(9142), 1, + sym__entry_separator, STATE(5414), 1, sym_comment, - [188265] = 4, + [188287] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9135), 1, + ACTIONS(9144), 1, aux_sym__unquoted_in_record_with_expr_token1, + STATE(5359), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(5415), 1, sym_comment, - STATE(5420), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [188278] = 4, + [188300] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9137), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(8519), 1, + anon_sym_RBRACE, + ACTIONS(8521), 1, + sym__entry_separator, STATE(5416), 1, sym_comment, - STATE(5421), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [188291] = 4, + [188313] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9139), 1, - aux_sym__unquoted_with_expr_token1, - STATE(5388), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(9146), 1, + anon_sym_RBRACE, + ACTIONS(9148), 1, + sym__entry_separator, STATE(5417), 1, sym_comment, - [188304] = 4, + [188326] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9141), 1, + ACTIONS(9150), 1, aux_sym__unquoted_with_expr_token1, - STATE(5388), 1, + STATE(5282), 1, aux_sym__unquoted_with_expr_repeat1, STATE(5418), 1, sym_comment, - [188317] = 4, - ACTIONS(3), 1, + [188339] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4367), 1, - anon_sym_LBRACE, - STATE(3855), 1, - sym_block, + ACTIONS(9152), 1, + anon_sym_LPAREN2, + ACTIONS(9154), 1, + aux_sym__record_key_token1, STATE(5419), 1, sym_comment, - [188330] = 4, + [188352] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9143), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(5358), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(8523), 1, + anon_sym_RBRACE, + ACTIONS(8525), 1, + sym__entry_separator, STATE(5420), 1, sym_comment, - [188343] = 4, - ACTIONS(103), 1, + [188365] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9145), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(5358), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(4369), 1, + anon_sym_LBRACE, + STATE(5116), 1, + sym_block, STATE(5421), 1, sym_comment, - [188356] = 4, + [188378] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2326), 1, + ACTIONS(4367), 1, anon_sym_LBRACE, - ACTIONS(2336), 1, - sym__unquoted_pattern, + STATE(4709), 1, + sym_block, STATE(5422), 1, sym_comment, - [188369] = 4, - ACTIONS(103), 1, + [188391] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2545), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2736), 1, - anon_sym_COLON2, + ACTIONS(4367), 1, + anon_sym_LBRACE, + STATE(4087), 1, + sym_block, STATE(5423), 1, sym_comment, - [188382] = 4, - ACTIONS(103), 1, + [188404] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9147), 1, - anon_sym_RBRACE, - ACTIONS(9149), 1, - sym__entry_separator, STATE(5424), 1, sym_comment, - [188395] = 4, - ACTIONS(103), 1, + ACTIONS(9013), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [188415] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8497), 1, - anon_sym_RBRACE, - ACTIONS(8499), 1, - sym__entry_separator, + ACTIONS(4369), 1, + anon_sym_LBRACE, + STATE(5047), 1, + sym_block, STATE(5425), 1, sym_comment, - [188408] = 4, + [188428] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9151), 1, - anon_sym_RBRACE, - ACTIONS(9153), 1, - sym__entry_separator, + ACTIONS(9156), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(5359), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(5426), 1, sym_comment, - [188421] = 4, - ACTIONS(103), 1, + [188441] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8501), 1, - anon_sym_RBRACE, - ACTIONS(8503), 1, - sym__entry_separator, + ACTIONS(4369), 1, + anon_sym_LBRACE, + STATE(5048), 1, + sym_block, STATE(5427), 1, sym_comment, - [188434] = 3, - ACTIONS(3), 1, + [188454] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1407), 1, + anon_sym_RBRACE, + ACTIONS(1409), 1, + sym__entry_separator, STATE(5428), 1, sym_comment, - ACTIONS(8987), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [188445] = 4, + [188467] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4367), 1, anon_sym_LBRACE, - STATE(4935), 1, + STATE(4036), 1, sym_block, STATE(5429), 1, sym_comment, - [188458] = 4, + [188480] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9158), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(5353), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(5430), 1, + sym_comment, + [188493] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4367), 1, anon_sym_LBRACE, - STATE(4937), 1, + STATE(4840), 1, sym_block, - STATE(5430), 1, - sym_comment, - [188471] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5545), 1, - sym__entry_separator, - STATE(2839), 1, - aux_sym__types_body_repeat2, STATE(5431), 1, sym_comment, - [188484] = 4, - ACTIONS(103), 1, + [188506] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9155), 1, - anon_sym_RBRACK, - ACTIONS(9157), 1, - sym__entry_separator, + ACTIONS(2336), 1, + sym__unquoted_pattern, + ACTIONS(2820), 1, + anon_sym_LBRACE, STATE(5432), 1, sym_comment, - [188497] = 4, + [188519] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2836), 1, + ACTIONS(2602), 1, anon_sym_LBRACE, - ACTIONS(2842), 1, + ACTIONS(2604), 1, sym__unquoted_pattern, STATE(5433), 1, sym_comment, - [188510] = 4, - ACTIONS(3), 1, + [188532] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4820), 1, - anon_sym_LPAREN2, + ACTIONS(5545), 1, + sym__entry_separator, + STATE(2839), 1, + aux_sym__types_body_repeat2, STATE(5434), 1, sym_comment, - STATE(5589), 1, - sym__expr_parenthesized_immediate, - [188523] = 4, + [188545] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4369), 1, + ACTIONS(4367), 1, anon_sym_LBRACE, - STATE(5098), 1, + STATE(4831), 1, sym_block, STATE(5435), 1, sym_comment, - [188536] = 4, + [188558] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4367), 1, + ACTIONS(2836), 1, anon_sym_LBRACE, - STATE(4087), 1, - sym_block, + ACTIONS(2842), 1, + sym__unquoted_pattern, STATE(5436), 1, sym_comment, - [188549] = 4, + [188571] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4369), 1, - anon_sym_LBRACE, - STATE(5108), 1, - sym_block, + ACTIONS(9160), 1, + anon_sym_def, + ACTIONS(9162), 1, + anon_sym_extern, STATE(5437), 1, sym_comment, - [188562] = 4, + [188584] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4367), 1, + ACTIONS(4369), 1, anon_sym_LBRACE, - STATE(4036), 1, + STATE(5197), 1, sym_block, STATE(5438), 1, sym_comment, - [188575] = 4, - ACTIONS(3), 1, + [188597] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4367), 1, - anon_sym_LBRACE, - STATE(4766), 1, - sym_block, + ACTIONS(7022), 1, + sym__entry_separator, + ACTIONS(7024), 1, + anon_sym_RBRACK, STATE(5439), 1, sym_comment, - [188588] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4367), 1, - anon_sym_LBRACE, - STATE(4767), 1, - sym_block, - STATE(5440), 1, - sym_comment, - [188601] = 4, + [188610] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1898), 1, sym__unquoted_pattern_in_record, - ACTIONS(8924), 1, + ACTIONS(8963), 1, aux_sym__immediate_decimal_token5, + STATE(5440), 1, + sym_comment, + [188623] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2836), 1, + sym__entry_separator, + ACTIONS(2838), 1, + anon_sym_RBRACE, STATE(5441), 1, sym_comment, - [188614] = 4, + [188636] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4367), 1, - anon_sym_LBRACE, - STATE(4768), 1, - sym_block, + ACTIONS(4820), 1, + anon_sym_LPAREN2, STATE(5442), 1, sym_comment, - [188627] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(9159), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(5359), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(5443), 1, - sym_comment, - [188640] = 4, + STATE(5684), 1, + sym__expr_parenthesized_immediate, + [188649] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9161), 1, - anon_sym_def, - ACTIONS(9163), 1, - anon_sym_extern, - STATE(5444), 1, + ACTIONS(2326), 1, + anon_sym_LBRACE, + ACTIONS(2336), 1, + sym__unquoted_pattern, + STATE(5443), 1, sym_comment, - [188653] = 4, + [188662] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4367), 1, + ACTIONS(4369), 1, anon_sym_LBRACE, - STATE(4769), 1, + STATE(5232), 1, sym_block, - STATE(5445), 1, + STATE(5444), 1, sym_comment, - [188666] = 4, + [188675] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9165), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(5371), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(5446), 1, + ACTIONS(9164), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5409), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(5445), 1, sym_comment, - [188679] = 4, + [188688] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4367), 1, + ACTIONS(1866), 1, anon_sym_LBRACE, - STATE(4951), 1, - sym_block, - STATE(5447), 1, + ACTIONS(1868), 1, + sym__unquoted_pattern, + STATE(5446), 1, sym_comment, - [188692] = 4, + [188701] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7022), 1, + ACTIONS(1399), 1, + anon_sym_RBRACE, + ACTIONS(1417), 1, sym__entry_separator, - ACTIONS(7024), 1, - anon_sym_RBRACK, + STATE(5447), 1, + sym_comment, + [188714] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9166), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5409), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(5448), 1, sym_comment, - [188705] = 4, - ACTIONS(3), 1, + [188727] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4369), 1, - anon_sym_LBRACE, - STATE(5274), 1, - sym_block, + ACTIONS(9168), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5398), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(5449), 1, sym_comment, - [188718] = 3, - ACTIONS(3), 1, + [188740] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9167), 1, - anon_sym_RPAREN, + ACTIONS(9170), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5412), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(5450), 1, sym_comment, - [188728] = 3, - ACTIONS(3), 1, + [188753] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9169), 1, - anon_sym_SQUOTE2, - STATE(5451), 1, + ACTIONS(9172), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(5451), 2, sym_comment, - [188738] = 3, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [188764] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9171), 1, - anon_sym_BQUOTE2, + ACTIONS(9175), 1, + aux_sym__str_single_quotes_token1, STATE(5452), 1, sym_comment, - [188748] = 3, - ACTIONS(103), 1, + [188774] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9173), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9177), 1, + anon_sym_SQUOTE2, STATE(5453), 1, sym_comment, - [188758] = 3, + [188784] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9175), 1, - anon_sym_LBRACE, + ACTIONS(9179), 1, + anon_sym_BQUOTE2, STATE(5454), 1, sym_comment, - [188768] = 3, + [188794] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9177), 1, - anon_sym_RBRACK, + ACTIONS(9181), 1, + anon_sym_BQUOTE2, STATE(5455), 1, sym_comment, - [188778] = 3, + [188804] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9179), 1, - anon_sym_RPAREN, + ACTIONS(9183), 1, + anon_sym_DQUOTE, STATE(5456), 1, sym_comment, - [188788] = 3, + [188814] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9181), 1, - anon_sym_GT2, + ACTIONS(9185), 1, + anon_sym_RBRACK, STATE(5457), 1, sym_comment, - [188798] = 3, - ACTIONS(103), 1, + [188824] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9183), 1, - aux_sym__str_single_quotes_token1, + ACTIONS(9187), 1, + anon_sym_RPAREN, STATE(5458), 1, sym_comment, - [188808] = 3, - ACTIONS(3), 1, + [188834] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9185), 1, - anon_sym_RBRACE, + ACTIONS(9189), 1, + aux_sym_cmd_identifier_token6, STATE(5459), 1, sym_comment, - [188818] = 3, + [188844] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5986), 1, + ACTIONS(4701), 1, sym__unquoted_pattern, STATE(5460), 1, sym_comment, - [188828] = 3, - ACTIONS(3), 1, + [188854] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9187), 1, - anon_sym_RBRACK, + ACTIONS(9191), 1, + aux_sym_cmd_identifier_token6, STATE(5461), 1, sym_comment, - [188838] = 3, + [188864] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9189), 1, - anon_sym_RPAREN, + ACTIONS(9193), 1, + anon_sym_RBRACE, STATE(5462), 1, sym_comment, - [188848] = 3, + [188874] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9191), 1, - anon_sym_GT2, + ACTIONS(9195), 1, + anon_sym_SQUOTE2, STATE(5463), 1, sym_comment, - [188858] = 3, + [188884] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9193), 1, - sym_raw_string_end, + ACTIONS(9197), 1, + anon_sym_RPAREN, STATE(5464), 1, sym_comment, - [188868] = 3, + [188894] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9195), 1, - anon_sym_GT2, + ACTIONS(1791), 1, + sym__unquoted_pattern_in_record, STATE(5465), 1, sym_comment, - [188878] = 3, + [188904] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9197), 1, - anon_sym_RBRACK, + ACTIONS(9199), 1, + sym_raw_string_end, STATE(5466), 1, sym_comment, - [188888] = 3, - ACTIONS(103), 1, + [188914] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9199), 1, - aux_sym__str_back_ticks_token1, + ACTIONS(9201), 1, + sym_raw_string_content, STATE(5467), 1, sym_comment, - [188898] = 3, + [188924] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9201), 1, - anon_sym_RBRACK, + ACTIONS(9203), 1, + anon_sym_RPAREN, STATE(5468), 1, sym_comment, - [188908] = 3, - ACTIONS(103), 1, + [188934] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9129), 1, - aux_sym__record_key_token1, + ACTIONS(9205), 1, + anon_sym_RBRACK, STATE(5469), 1, sym_comment, - [188918] = 3, + [188944] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9203), 1, - anon_sym_RPAREN, + ACTIONS(9207), 1, + anon_sym_RBRACK, STATE(5470), 1, sym_comment, - [188928] = 3, + [188954] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9205), 1, - anon_sym_RPAREN, + ACTIONS(9209), 1, + anon_sym_RBRACE, STATE(5471), 1, sym_comment, - [188938] = 3, + [188964] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9207), 1, - anon_sym_DASH_GT, + ACTIONS(9211), 1, + anon_sym_RPAREN, STATE(5472), 1, sym_comment, - [188948] = 3, - ACTIONS(103), 1, + [188974] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9209), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(9213), 1, + anon_sym_RBRACK, STATE(5473), 1, sym_comment, - [188958] = 3, + [188984] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9211), 1, - anon_sym_DQUOTE, + ACTIONS(1868), 1, + sym__unquoted_pattern_in_record, STATE(5474), 1, sym_comment, - [188968] = 3, + [188994] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9213), 1, - anon_sym_SQUOTE2, + ACTIONS(9215), 1, + anon_sym_RBRACE, STATE(5475), 1, sym_comment, - [188978] = 3, + [189004] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9215), 1, - anon_sym_BQUOTE2, + ACTIONS(9217), 1, + anon_sym_DQUOTE, STATE(5476), 1, sym_comment, - [188988] = 3, + [189014] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(355), 1, - anon_sym_RBRACE, + ACTIONS(9219), 1, + anon_sym_SQUOTE2, STATE(5477), 1, sym_comment, - [188998] = 3, + [189024] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9217), 1, - anon_sym_RBRACE, + ACTIONS(9221), 1, + anon_sym_BQUOTE2, STATE(5478), 1, sym_comment, - [189008] = 3, + [189034] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9219), 1, - anon_sym_RBRACK, + ACTIONS(9223), 1, + anon_sym_RPAREN, STATE(5479), 1, sym_comment, - [189018] = 3, + [189044] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9221), 1, - anon_sym_RPAREN, + ACTIONS(9225), 1, + anon_sym_BQUOTE2, STATE(5480), 1, sym_comment, - [189028] = 3, + [189054] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9223), 1, - anon_sym_LT, + ACTIONS(9227), 1, + anon_sym_RBRACK, STATE(5481), 1, sym_comment, - [189038] = 3, + [189064] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9225), 1, + ACTIONS(9229), 1, anon_sym_RPAREN, STATE(5482), 1, sym_comment, - [189048] = 3, + [189074] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9227), 1, - anon_sym_RBRACE, + ACTIONS(9231), 1, + anon_sym_RPAREN, STATE(5483), 1, sym_comment, - [189058] = 3, - ACTIONS(3), 1, + [189084] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9229), 1, - anon_sym_RPAREN, + ACTIONS(9233), 1, + aux_sym_cmd_identifier_token6, STATE(5484), 1, sym_comment, - [189068] = 3, - ACTIONS(103), 1, + [189094] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9231), 1, - aux_sym_shebang_token1, + ACTIONS(9235), 1, + anon_sym_EQ, STATE(5485), 1, sym_comment, - [189078] = 3, - ACTIONS(3), 1, + [189104] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9233), 1, - sym_raw_string_end, + ACTIONS(9237), 1, + aux_sym__str_single_quotes_token1, STATE(5486), 1, sym_comment, - [189088] = 3, + [189114] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9235), 1, - anon_sym_RBRACK, + ACTIONS(9239), 1, + anon_sym_RBRACE, STATE(5487), 1, sym_comment, - [189098] = 3, - ACTIONS(103), 1, + [189124] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9237), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(9241), 1, + sym_raw_string_end, STATE(5488), 1, sym_comment, - [189108] = 3, + [189134] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9239), 1, - anon_sym_EQ, + ACTIONS(9243), 1, + anon_sym_RBRACE, STATE(5489), 1, sym_comment, - [189118] = 3, - ACTIONS(3), 1, + [189144] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9241), 1, - anon_sym_RPAREN, + ACTIONS(9245), 1, + aux_sym_cmd_identifier_token2, STATE(5490), 1, sym_comment, - [189128] = 3, - ACTIONS(3), 1, + [189154] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9243), 1, - anon_sym_RPAREN, + ACTIONS(9247), 1, + aux_sym__str_back_ticks_token1, STATE(5491), 1, sym_comment, - [189138] = 3, + [189164] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9245), 1, - sym_long_flag_identifier, + ACTIONS(9249), 1, + anon_sym_RPAREN, STATE(5492), 1, sym_comment, - [189148] = 3, + [189174] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9247), 1, - anon_sym_DQUOTE, + ACTIONS(1753), 1, + sym__unquoted_pattern, STATE(5493), 1, sym_comment, - [189158] = 3, + [189184] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9249), 1, - anon_sym_SQUOTE2, + ACTIONS(9251), 1, + anon_sym_RBRACK, STATE(5494), 1, sym_comment, - [189168] = 3, + [189194] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9251), 1, - anon_sym_BQUOTE2, + ACTIONS(9253), 1, + anon_sym_DQUOTE, STATE(5495), 1, sym_comment, - [189178] = 3, + [189204] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9253), 1, - anon_sym_RPAREN, + ACTIONS(9255), 1, + anon_sym_SQUOTE2, STATE(5496), 1, sym_comment, - [189188] = 3, + [189214] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9255), 1, - anon_sym_DQUOTE, + ACTIONS(9257), 1, + anon_sym_BQUOTE2, STATE(5497), 1, sym_comment, - [189198] = 3, + [189224] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9257), 1, - anon_sym_SQUOTE2, + ACTIONS(9259), 1, + anon_sym_RPAREN, STATE(5498), 1, sym_comment, - [189208] = 3, + [189234] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2850), 1, - sym__unquoted_pattern, + ACTIONS(9261), 1, + sym_identifier, STATE(5499), 1, sym_comment, - [189218] = 3, + [189244] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8208), 1, - sym__unquoted_pattern, + ACTIONS(9263), 1, + anon_sym_RBRACK, STATE(5500), 1, sym_comment, - [189228] = 3, + [189254] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9259), 1, - sym_raw_string_end, + ACTIONS(9265), 1, + anon_sym_RPAREN, STATE(5501), 1, sym_comment, - [189238] = 3, + [189264] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9261), 1, - anon_sym_DQUOTE, + ACTIONS(9267), 1, + anon_sym_RPAREN, STATE(5502), 1, sym_comment, - [189248] = 3, + [189274] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9263), 1, - anon_sym_BQUOTE2, + ACTIONS(9269), 1, + sym_raw_string_end, STATE(5503), 1, sym_comment, - [189258] = 3, - ACTIONS(3), 1, + [189284] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9265), 1, - sym_param_short_flag_identifier, + ACTIONS(9271), 1, + aux_sym_shebang_token1, STATE(5504), 1, sym_comment, - [189268] = 3, + [189294] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9267), 1, - anon_sym_EQ, + ACTIONS(9273), 1, + sym_raw_string_end, STATE(5505), 1, sym_comment, - [189278] = 3, + [189304] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9269), 1, - anon_sym_GT2, + ACTIONS(1958), 1, + sym__unquoted_pattern_in_record, STATE(5506), 1, sym_comment, - [189288] = 3, + [189314] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9271), 1, - anon_sym_DQUOTE, + ACTIONS(9275), 1, + anon_sym_RPAREN, STATE(5507), 1, sym_comment, - [189298] = 3, + [189324] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9273), 1, - anon_sym_SQUOTE2, + ACTIONS(343), 1, + anon_sym_RBRACE, STATE(5508), 1, sym_comment, - [189308] = 3, + [189334] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9275), 1, - anon_sym_BQUOTE2, + ACTIONS(9277), 1, + anon_sym_DQUOTE, STATE(5509), 1, sym_comment, - [189318] = 3, + [189344] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9277), 1, - anon_sym_RPAREN, + ACTIONS(9279), 1, + anon_sym_SQUOTE2, STATE(5510), 1, sym_comment, - [189328] = 3, + [189354] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9279), 1, - anon_sym_SQUOTE2, + ACTIONS(9281), 1, + anon_sym_BQUOTE2, STATE(5511), 1, sym_comment, - [189338] = 3, - ACTIONS(103), 1, + [189364] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9281), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9283), 1, + anon_sym_RPAREN, STATE(5512), 1, sym_comment, - [189348] = 3, + [189374] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9283), 1, - anon_sym_RBRACE, + ACTIONS(5986), 1, + sym__unquoted_pattern, STATE(5513), 1, sym_comment, - [189358] = 3, - ACTIONS(103), 1, + [189384] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9285), 1, - aux_sym_cmd_identifier_token6, + anon_sym_RBRACE, STATE(5514), 1, sym_comment, - [189368] = 3, + [189394] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9287), 1, - sym_raw_string_end, + anon_sym_GT2, STATE(5515), 1, sym_comment, - [189378] = 3, + [189404] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2818), 1, + ACTIONS(1791), 1, sym__unquoted_pattern, STATE(5516), 1, sym_comment, - [189388] = 3, + [189414] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9289), 1, - anon_sym_EQ, + sym_raw_string_end, STATE(5517), 1, sym_comment, - [189398] = 3, + [189424] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9291), 1, anon_sym_RBRACE, STATE(5518), 1, sym_comment, - [189408] = 3, + [189434] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9293), 1, - anon_sym_RBRACK, + ACTIONS(2116), 1, + sym__unquoted_pattern_in_record, STATE(5519), 1, sym_comment, - [189418] = 3, + [189444] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9295), 1, - anon_sym_SQUOTE2, + ACTIONS(9293), 1, + anon_sym_GT2, STATE(5520), 1, sym_comment, - [189428] = 3, + [189454] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9297), 1, - anon_sym_DQUOTE, + ACTIONS(9295), 1, + anon_sym_RBRACK, STATE(5521), 1, sym_comment, - [189438] = 3, + [189464] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9299), 1, - anon_sym_SQUOTE2, + ACTIONS(9297), 1, + sym_long_flag_identifier, STATE(5522), 1, sym_comment, - [189448] = 3, + [189474] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9301), 1, - anon_sym_BQUOTE2, + ACTIONS(9299), 1, + anon_sym_DQUOTE, STATE(5523), 1, sym_comment, - [189458] = 3, + [189484] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9303), 1, - anon_sym_RPAREN, + ACTIONS(9301), 1, + anon_sym_SQUOTE2, STATE(5524), 1, sym_comment, - [189468] = 3, + [189494] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9305), 1, + ACTIONS(9303), 1, anon_sym_BQUOTE2, STATE(5525), 1, sym_comment, - [189478] = 3, + [189504] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9307), 1, - anon_sym_RBRACE, + ACTIONS(9305), 1, + anon_sym_RPAREN, STATE(5526), 1, sym_comment, - [189488] = 3, + [189514] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9309), 1, - sym_raw_string_end, + ACTIONS(9307), 1, + anon_sym_RPAREN, STATE(5527), 1, sym_comment, - [189498] = 3, + [189524] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9311), 1, - sym_raw_string_end, + ACTIONS(9309), 1, + anon_sym_DQUOTE, STATE(5528), 1, sym_comment, - [189508] = 3, + [189534] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9313), 1, - anon_sym_EQ, + ACTIONS(351), 1, + anon_sym_RBRACE, STATE(5529), 1, sym_comment, - [189518] = 3, + [189544] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9315), 1, - anon_sym_EQ_GT, + ACTIONS(9311), 1, + sym_raw_string_end, STATE(5530), 1, sym_comment, - [189528] = 3, + [189554] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9317), 1, - sym_attribute_identifier, + ACTIONS(9313), 1, + anon_sym_LBRACE, STATE(5531), 1, sym_comment, - [189538] = 3, + [189564] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9319), 1, - anon_sym_DQUOTE, + ACTIONS(9315), 1, + anon_sym_SQUOTE2, STATE(5532), 1, sym_comment, - [189548] = 3, + [189574] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9321), 1, - anon_sym_SQUOTE2, + ACTIONS(9317), 1, + anon_sym_BQUOTE2, STATE(5533), 1, sym_comment, - [189558] = 3, + [189584] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9323), 1, - anon_sym_BQUOTE2, + ACTIONS(9319), 1, + anon_sym_DQUOTE, STATE(5534), 1, sym_comment, - [189568] = 3, + [189594] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9325), 1, - anon_sym_RPAREN, + ACTIONS(9321), 1, + anon_sym_SQUOTE2, STATE(5535), 1, sym_comment, - [189578] = 3, + [189604] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2604), 1, - sym__unquoted_pattern_in_record, + ACTIONS(9323), 1, + anon_sym_BQUOTE2, STATE(5536), 1, sym_comment, - [189588] = 3, + [189614] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9327), 1, - anon_sym_EQ, + ACTIONS(9325), 1, + anon_sym_RPAREN, STATE(5537), 1, sym_comment, - [189598] = 3, + [189624] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9329), 1, - sym_raw_string_end, + ACTIONS(9327), 1, + anon_sym_RBRACE, STATE(5538), 1, sym_comment, - [189608] = 3, + [189634] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8240), 1, - sym__unquoted_pattern, + ACTIONS(345), 1, + anon_sym_RBRACE, STATE(5539), 1, sym_comment, - [189618] = 3, + [189644] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9331), 1, - anon_sym_RBRACE, + ACTIONS(9329), 1, + sym_raw_string_end, STATE(5540), 1, sym_comment, - [189628] = 3, + [189654] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9333), 1, - anon_sym_RBRACE, + ACTIONS(9331), 1, + anon_sym_EQ, STATE(5541), 1, sym_comment, - [189638] = 3, + [189664] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9335), 1, + ACTIONS(9333), 1, anon_sym_DQUOTE, STATE(5542), 1, sym_comment, - [189648] = 3, + [189674] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9337), 1, + ACTIONS(9335), 1, anon_sym_SQUOTE2, STATE(5543), 1, sym_comment, - [189658] = 3, + [189684] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9339), 1, - anon_sym_BQUOTE2, + ACTIONS(9337), 1, + anon_sym_DQUOTE, STATE(5544), 1, sym_comment, - [189668] = 3, + [189694] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9341), 1, - anon_sym_RPAREN, + ACTIONS(9339), 1, + anon_sym_SQUOTE2, STATE(5545), 1, sym_comment, - [189678] = 3, + [189704] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9343), 1, - anon_sym_RBRACK, + ACTIONS(9341), 1, + anon_sym_BQUOTE2, STATE(5546), 1, sym_comment, - [189688] = 3, + [189714] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9345), 1, - anon_sym_BQUOTE2, + ACTIONS(9343), 1, + anon_sym_RPAREN, STATE(5547), 1, sym_comment, - [189698] = 3, + [189724] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9347), 1, - sym_raw_string_end, + ACTIONS(9345), 1, + anon_sym_RBRACK, STATE(5548), 1, sym_comment, - [189708] = 3, + [189734] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9347), 1, + aux_sym_cmd_identifier_token2, + STATE(5549), 1, + sym_comment, + [189744] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9349), 1, - anon_sym_RBRACE, - STATE(5549), 1, + sym_raw_string_end, + STATE(5550), 1, sym_comment, - [189718] = 3, - ACTIONS(103), 1, + [189754] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9351), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(5550), 1, + anon_sym_BQUOTE2, + STATE(5551), 1, sym_comment, - [189728] = 3, + [189764] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9353), 1, - anon_sym_RPAREN, - STATE(5551), 1, + anon_sym_RBRACK, + STATE(5552), 1, sym_comment, - [189738] = 3, + [189774] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9355), 1, - anon_sym_DQUOTE, - STATE(5552), 1, + anon_sym_RBRACE, + STATE(5553), 1, sym_comment, - [189748] = 3, + [189784] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9357), 1, - anon_sym_SQUOTE2, - STATE(5553), 1, + anon_sym_DQUOTE, + STATE(5554), 1, sym_comment, - [189758] = 3, + [189794] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9359), 1, - anon_sym_BQUOTE2, - STATE(5554), 1, + anon_sym_SQUOTE2, + STATE(5555), 1, sym_comment, - [189768] = 3, + [189804] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9361), 1, - anon_sym_RPAREN, - STATE(5555), 1, + anon_sym_BQUOTE2, + STATE(5556), 1, sym_comment, - [189778] = 3, + [189814] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9363), 1, - anon_sym_RBRACK, - STATE(5556), 1, + anon_sym_RPAREN, + STATE(5557), 1, sym_comment, - [189788] = 3, + [189824] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9365), 1, aux_sym_cmd_identifier_token6, - STATE(5557), 1, - sym_comment, - [189798] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9367), 1, - sym_raw_string_end, STATE(5558), 1, sym_comment, - [189808] = 3, + [189834] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9369), 1, - anon_sym_RPAREN, + ACTIONS(9367), 1, + anon_sym_RBRACK, STATE(5559), 1, sym_comment, - [189818] = 3, + [189844] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9371), 1, - anon_sym_EQ, + ACTIONS(9369), 1, + sym_raw_string_end, STATE(5560), 1, sym_comment, - [189828] = 3, - ACTIONS(3), 1, + [189854] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9373), 1, - sym_identifier, + ACTIONS(9371), 1, + aux_sym_cmd_identifier_token6, STATE(5561), 1, sym_comment, - [189838] = 3, + [189864] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9375), 1, - anon_sym_DQUOTE, + ACTIONS(9373), 1, + anon_sym_RBRACK, STATE(5562), 1, sym_comment, - [189848] = 3, + [189874] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9377), 1, - anon_sym_SQUOTE2, + ACTIONS(9375), 1, + anon_sym_RBRACE, STATE(5563), 1, sym_comment, - [189858] = 3, + [189884] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9379), 1, - anon_sym_BQUOTE2, + ACTIONS(9377), 1, + anon_sym_DQUOTE, STATE(5564), 1, sym_comment, - [189868] = 3, + [189894] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9381), 1, - anon_sym_RPAREN, + ACTIONS(9379), 1, + anon_sym_SQUOTE2, STATE(5565), 1, sym_comment, - [189878] = 3, + [189904] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9383), 1, - anon_sym_RBRACE, + ACTIONS(9381), 1, + anon_sym_BQUOTE2, STATE(5566), 1, sym_comment, - [189888] = 3, + [189914] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9385), 1, - anon_sym_RBRACE, + ACTIONS(9383), 1, + anon_sym_RPAREN, STATE(5567), 1, sym_comment, - [189898] = 3, + [189924] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9387), 1, - sym_raw_string_end, + ACTIONS(9313), 1, + anon_sym_LBRACE, STATE(5568), 1, sym_comment, - [189908] = 3, + [189934] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9389), 1, - anon_sym_RPAREN, + ACTIONS(9385), 1, + anon_sym_EQ, STATE(5569), 1, sym_comment, - [189918] = 3, - ACTIONS(103), 1, + [189944] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2217), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(9387), 1, + sym_raw_string_end, STATE(5570), 1, sym_comment, - [189928] = 3, + [189954] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9391), 1, - anon_sym_DQUOTE, + ACTIONS(9389), 1, + anon_sym_RBRACE, STATE(5571), 1, sym_comment, - [189938] = 3, + [189964] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9393), 1, - anon_sym_SQUOTE2, + ACTIONS(9391), 1, + anon_sym_DASH_GT, STATE(5572), 1, sym_comment, - [189948] = 3, + [189974] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9395), 1, - anon_sym_BQUOTE2, + ACTIONS(9393), 1, + anon_sym_DQUOTE, STATE(5573), 1, sym_comment, - [189958] = 3, + [189984] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9397), 1, - anon_sym_RBRACK, + ACTIONS(9395), 1, + anon_sym_SQUOTE2, STATE(5574), 1, sym_comment, - [189968] = 3, + [189994] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8966), 1, - anon_sym_EQ_GT, + ACTIONS(9397), 1, + anon_sym_BQUOTE2, STATE(5575), 1, sym_comment, - [189978] = 3, + [190004] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9399), 1, - sym_raw_string_end, + anon_sym_RPAREN, STATE(5576), 1, sym_comment, - [189988] = 3, + [190014] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(351), 1, - anon_sym_RBRACE, + ACTIONS(9401), 1, + sym_raw_string_end, STATE(5577), 1, sym_comment, - [189998] = 3, + [190024] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9401), 1, - anon_sym_DQUOTE, + ACTIONS(9403), 1, + sym_raw_string_end, STATE(5578), 1, sym_comment, - [190008] = 3, + [190034] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9403), 1, - anon_sym_SQUOTE2, + ACTIONS(9405), 1, + sym_param_short_flag_identifier, STATE(5579), 1, sym_comment, - [190018] = 3, + [190044] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9405), 1, - anon_sym_BQUOTE2, + ACTIONS(9407), 1, + anon_sym_DQUOTE, STATE(5580), 1, sym_comment, - [190028] = 3, - ACTIONS(103), 1, + [190054] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9407), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9409), 1, + anon_sym_SQUOTE2, STATE(5581), 1, sym_comment, - [190038] = 3, + [190064] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9409), 1, - anon_sym_RPAREN, + ACTIONS(9411), 1, + anon_sym_BQUOTE2, STATE(5582), 1, sym_comment, - [190048] = 3, - ACTIONS(3), 1, + [190074] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9411), 1, - sym_raw_string_end, + ACTIONS(9413), 1, + aux_sym_cmd_identifier_token6, STATE(5583), 1, sym_comment, - [190058] = 3, + [190084] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1958), 1, - sym__unquoted_pattern_in_record, + ACTIONS(9415), 1, + anon_sym_EQ, STATE(5584), 1, sym_comment, - [190068] = 3, + [190094] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9413), 1, - anon_sym_DQUOTE, + ACTIONS(9417), 1, + sym_raw_string_end, STATE(5585), 1, sym_comment, - [190078] = 3, - ACTIONS(3), 1, + [190104] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9415), 1, - anon_sym_SQUOTE2, + ACTIONS(2217), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(5586), 1, sym_comment, - [190088] = 3, + [190114] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9417), 1, - anon_sym_BQUOTE2, + ACTIONS(9419), 1, + anon_sym_DQUOTE, STATE(5587), 1, sym_comment, - [190098] = 3, + [190124] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9419), 1, - anon_sym_EQ, + ACTIONS(9421), 1, + anon_sym_SQUOTE2, STATE(5588), 1, sym_comment, - [190108] = 3, - ACTIONS(103), 1, + [190134] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9421), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(9423), 1, + anon_sym_BQUOTE2, STATE(5589), 1, sym_comment, - [190118] = 3, + [190144] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9423), 1, - sym_raw_string_end, + ACTIONS(9425), 1, + anon_sym_EQ, STATE(5590), 1, sym_comment, - [190128] = 3, + [190154] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1791), 1, - sym__unquoted_pattern_in_record, + ACTIONS(9427), 1, + sym_identifier, STATE(5591), 1, sym_comment, - [190138] = 3, + [190164] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9425), 1, - anon_sym_DQUOTE, + ACTIONS(9429), 1, + sym_raw_string_end, STATE(5592), 1, sym_comment, - [190148] = 3, + [190174] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9427), 1, - anon_sym_SQUOTE2, + ACTIONS(9431), 1, + anon_sym_RBRACE, STATE(5593), 1, sym_comment, - [190158] = 3, + [190184] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9429), 1, - anon_sym_BQUOTE2, + ACTIONS(9433), 1, + anon_sym_DQUOTE, STATE(5594), 1, sym_comment, - [190168] = 3, + [190194] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9431), 1, - sym_identifier, + ACTIONS(9435), 1, + anon_sym_SQUOTE2, STATE(5595), 1, sym_comment, - [190178] = 3, + [190204] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9433), 1, - sym_raw_string_end, + ACTIONS(9437), 1, + anon_sym_BQUOTE2, STATE(5596), 1, sym_comment, - [190188] = 3, + [190214] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9435), 1, - sym_raw_string_end, + ACTIONS(9439), 1, + anon_sym_EQ, STATE(5597), 1, sym_comment, - [190198] = 3, + [190224] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9437), 1, - anon_sym_DQUOTE, + ACTIONS(9441), 1, + sym_raw_string_end, STATE(5598), 1, sym_comment, - [190208] = 3, + [190234] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9439), 1, - anon_sym_SQUOTE2, + ACTIONS(8098), 1, + sym__unquoted_pattern, STATE(5599), 1, sym_comment, - [190218] = 3, + [190244] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9441), 1, - anon_sym_BQUOTE2, + ACTIONS(9443), 1, + anon_sym_DQUOTE, STATE(5600), 1, sym_comment, - [190228] = 3, + [190254] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9443), 1, - anon_sym_LBRACE, + ACTIONS(9445), 1, + anon_sym_SQUOTE2, STATE(5601), 1, sym_comment, - [190238] = 3, + [190264] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9445), 1, - sym_raw_string_end, + ACTIONS(9447), 1, + anon_sym_BQUOTE2, STATE(5602), 1, sym_comment, - [190248] = 3, - ACTIONS(3), 1, + [190274] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9447), 1, - anon_sym_COLON2, + ACTIONS(9449), 1, + aux_sym_cmd_identifier_token2, STATE(5603), 1, sym_comment, - [190258] = 3, + [190284] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9449), 1, - anon_sym_DQUOTE, + ACTIONS(9451), 1, + sym_raw_string_end, STATE(5604), 1, sym_comment, - [190268] = 3, + [190294] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9451), 1, - anon_sym_SQUOTE2, + ACTIONS(9453), 1, + anon_sym_RPAREN, STATE(5605), 1, sym_comment, - [190278] = 3, + [190304] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9453), 1, - anon_sym_BQUOTE2, + ACTIONS(9455), 1, + anon_sym_DQUOTE, STATE(5606), 1, sym_comment, - [190288] = 3, + [190314] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9455), 1, - anon_sym_RBRACE, + ACTIONS(9457), 1, + anon_sym_SQUOTE2, STATE(5607), 1, sym_comment, - [190298] = 3, + [190324] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9457), 1, - sym_raw_string_end, + ACTIONS(9459), 1, + anon_sym_BQUOTE2, STATE(5608), 1, sym_comment, - [190308] = 3, + [190334] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9459), 1, - anon_sym_RPAREN, + ACTIONS(9461), 1, + anon_sym_RBRACE, STATE(5609), 1, sym_comment, - [190318] = 3, + [190344] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9461), 1, - anon_sym_DQUOTE, + ACTIONS(9463), 1, + sym_raw_string_end, STATE(5610), 1, sym_comment, - [190328] = 3, + [190354] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9463), 1, - anon_sym_SQUOTE2, + ACTIONS(9465), 1, + anon_sym_RBRACK, STATE(5611), 1, sym_comment, - [190338] = 3, + [190364] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9465), 1, - anon_sym_BQUOTE2, + ACTIONS(9467), 1, + anon_sym_DQUOTE, STATE(5612), 1, sym_comment, - [190348] = 3, + [190374] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(363), 1, - anon_sym_RBRACE, + ACTIONS(9469), 1, + anon_sym_SQUOTE2, STATE(5613), 1, sym_comment, - [190358] = 3, + [190384] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9467), 1, - sym_raw_string_end, + ACTIONS(9471), 1, + anon_sym_BQUOTE2, STATE(5614), 1, sym_comment, - [190368] = 3, + [190394] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9469), 1, - anon_sym_DQUOTE, + ACTIONS(9473), 1, + anon_sym_RBRACE, STATE(5615), 1, sym_comment, - [190378] = 3, + [190404] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9471), 1, - anon_sym_SQUOTE2, + ACTIONS(9475), 1, + sym_raw_string_end, STATE(5616), 1, sym_comment, - [190388] = 3, + [190414] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9473), 1, - anon_sym_BQUOTE2, + ACTIONS(9477), 1, + anon_sym_DQUOTE, STATE(5617), 1, sym_comment, - [190398] = 3, + [190424] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9475), 1, - anon_sym_RBRACK, + ACTIONS(9479), 1, + anon_sym_SQUOTE2, STATE(5618), 1, sym_comment, - [190408] = 3, + [190434] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9477), 1, - sym_raw_string_end, + ACTIONS(9481), 1, + anon_sym_BQUOTE2, STATE(5619), 1, sym_comment, - [190418] = 3, + [190444] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9479), 1, - anon_sym_DQUOTE, + ACTIONS(9483), 1, + anon_sym_DASH_GT, STATE(5620), 1, sym_comment, - [190428] = 3, + [190454] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9481), 1, - anon_sym_SQUOTE2, + ACTIONS(9485), 1, + sym_raw_string_end, STATE(5621), 1, sym_comment, - [190438] = 3, + [190464] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9483), 1, - anon_sym_BQUOTE2, + ACTIONS(9487), 1, + anon_sym_DQUOTE, STATE(5622), 1, sym_comment, - [190448] = 3, - ACTIONS(103), 1, + [190474] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9485), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9489), 1, + anon_sym_SQUOTE2, STATE(5623), 1, sym_comment, - [190458] = 3, + [190484] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9487), 1, - sym_raw_string_end, + ACTIONS(9491), 1, + anon_sym_BQUOTE2, STATE(5624), 1, sym_comment, - [190468] = 3, + [190494] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9489), 1, - anon_sym_DQUOTE, + ACTIONS(9493), 1, + anon_sym_RBRACE, STATE(5625), 1, sym_comment, - [190478] = 3, + [190504] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9491), 1, - anon_sym_SQUOTE2, + ACTIONS(9495), 1, + sym_raw_string_end, STATE(5626), 1, sym_comment, - [190488] = 3, + [190514] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9493), 1, - anon_sym_BQUOTE2, + ACTIONS(9497), 1, + anon_sym_DQUOTE, STATE(5627), 1, sym_comment, - [190498] = 3, + [190524] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9495), 1, - anon_sym_RBRACE, + ACTIONS(9499), 1, + anon_sym_SQUOTE2, STATE(5628), 1, sym_comment, - [190508] = 3, + [190534] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9497), 1, - sym_raw_string_end, + ACTIONS(9501), 1, + anon_sym_BQUOTE2, STATE(5629), 1, sym_comment, - [190518] = 3, + [190544] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9499), 1, - anon_sym_DQUOTE, + ACTIONS(9503), 1, + anon_sym_RPAREN, STATE(5630), 1, sym_comment, - [190528] = 3, + [190554] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9501), 1, - anon_sym_SQUOTE2, + ACTIONS(9505), 1, + sym_raw_string_end, STATE(5631), 1, sym_comment, - [190538] = 3, + [190564] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9503), 1, - anon_sym_BQUOTE2, + ACTIONS(9507), 1, + anon_sym_DQUOTE, STATE(5632), 1, sym_comment, - [190548] = 3, + [190574] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9505), 1, - anon_sym_RPAREN2, + ACTIONS(9509), 1, + anon_sym_SQUOTE2, STATE(5633), 1, sym_comment, - [190558] = 3, + [190584] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9507), 1, - sym_raw_string_end, + ACTIONS(9511), 1, + anon_sym_BQUOTE2, STATE(5634), 1, sym_comment, - [190568] = 3, + [190594] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9509), 1, - anon_sym_DQUOTE, + ACTIONS(9513), 1, + sym_identifier, STATE(5635), 1, sym_comment, - [190578] = 3, + [190604] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9511), 1, - anon_sym_SQUOTE2, + ACTIONS(9515), 1, + sym_raw_string_end, STATE(5636), 1, sym_comment, - [190588] = 3, + [190614] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9513), 1, - anon_sym_BQUOTE2, + ACTIONS(9517), 1, + anon_sym_DQUOTE, STATE(5637), 1, sym_comment, - [190598] = 3, + [190624] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9515), 1, - anon_sym_RBRACK, + ACTIONS(9519), 1, + anon_sym_SQUOTE2, STATE(5638), 1, sym_comment, - [190608] = 3, + [190634] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9517), 1, - sym_raw_string_end, + ACTIONS(9521), 1, + anon_sym_BQUOTE2, STATE(5639), 1, sym_comment, - [190618] = 3, + [190644] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9519), 1, - anon_sym_DQUOTE, + ACTIONS(9523), 1, + anon_sym_RBRACE, STATE(5640), 1, sym_comment, - [190628] = 3, + [190654] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9521), 1, - anon_sym_SQUOTE2, + ACTIONS(9525), 1, + sym_raw_string_end, STATE(5641), 1, sym_comment, - [190638] = 3, + [190664] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9523), 1, - anon_sym_BQUOTE2, + ACTIONS(9527), 1, + anon_sym_DQUOTE, STATE(5642), 1, sym_comment, - [190648] = 3, + [190674] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9525), 1, - sym_raw_string_content, + ACTIONS(9529), 1, + anon_sym_SQUOTE2, STATE(5643), 1, sym_comment, - [190658] = 3, + [190684] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8699), 1, - anon_sym_LBRACE, + ACTIONS(9531), 1, + anon_sym_BQUOTE2, STATE(5644), 1, sym_comment, - [190668] = 3, + [190694] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7423), 1, - sym__unquoted_pattern_in_record, + ACTIONS(9533), 1, + sym_raw_string_content, STATE(5645), 1, sym_comment, - [190678] = 3, + [190704] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9527), 1, - anon_sym_DQUOTE, + ACTIONS(9535), 1, + sym_raw_string_end, STATE(5646), 1, sym_comment, - [190688] = 3, + [190714] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2523), 1, - anon_sym_LBRACK2, + ACTIONS(6298), 1, + anon_sym_EQ2, STATE(5647), 1, sym_comment, - [190698] = 3, - ACTIONS(103), 1, + [190724] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9529), 1, - aux_sym__str_single_quotes_token1, + ACTIONS(5937), 1, + sym__unquoted_pattern, STATE(5648), 1, sym_comment, - [190708] = 3, - ACTIONS(103), 1, + [190734] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9531), 1, - aux_sym__str_back_ticks_token1, + ACTIONS(2523), 1, + anon_sym_LBRACK2, STATE(5649), 1, sym_comment, - [190718] = 3, - ACTIONS(3), 1, + [190744] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9533), 1, - anon_sym_SQUOTE2, + ACTIONS(9537), 1, + aux_sym__str_single_quotes_token1, STATE(5650), 1, sym_comment, - [190728] = 3, - ACTIONS(3), 1, + [190754] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9535), 1, - anon_sym_BQUOTE2, + ACTIONS(9539), 1, + aux_sym__str_back_ticks_token1, STATE(5651), 1, sym_comment, - [190738] = 3, + [190764] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9537), 1, - anon_sym_RBRACK, + ACTIONS(2850), 1, + sym__unquoted_pattern, STATE(5652), 1, sym_comment, - [190748] = 3, + [190774] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5105), 1, - sym__unquoted_pattern_in_list, + ACTIONS(8212), 1, + sym__unquoted_pattern, STATE(5653), 1, sym_comment, - [190758] = 3, + [190784] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9539), 1, - anon_sym_RBRACE, + ACTIONS(9541), 1, + anon_sym_RBRACK, STATE(5654), 1, sym_comment, - [190768] = 3, + [190794] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9541), 1, - anon_sym_GT2, + ACTIONS(9543), 1, + anon_sym_RBRACK, STATE(5655), 1, sym_comment, - [190778] = 3, + [190804] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9543), 1, + ACTIONS(9545), 1, aux_sym_cmd_identifier_token6, STATE(5656), 1, sym_comment, - [190788] = 3, + [190814] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9545), 1, - anon_sym_in, + ACTIONS(9547), 1, + anon_sym_RPAREN, STATE(5657), 1, sym_comment, - [190798] = 3, + [190824] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8731), 1, + ACTIONS(8684), 1, anon_sym_LBRACE, STATE(5658), 1, sym_comment, - [190808] = 3, + [190834] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9547), 1, - anon_sym_LBRACE, + ACTIONS(9549), 1, + anon_sym_RPAREN, STATE(5659), 1, sym_comment, - [190818] = 3, + [190844] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9549), 1, - anon_sym_EQ, + ACTIONS(8718), 1, + anon_sym_LBRACE, STATE(5660), 1, sym_comment, - [190828] = 3, + [190854] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9551), 1, - anon_sym_RBRACK, + anon_sym_LBRACE, STATE(5661), 1, sym_comment, - [190838] = 3, + [190864] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(409), 1, - anon_sym_RPAREN2, + ACTIONS(7423), 1, + sym__unquoted_pattern_in_record, STATE(5662), 1, sym_comment, - [190848] = 3, + [190874] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9553), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, STATE(5663), 1, sym_comment, - [190858] = 3, + [190884] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9555), 1, - anon_sym_EQ, + ACTIONS(405), 1, + anon_sym_RPAREN2, STATE(5664), 1, sym_comment, - [190868] = 3, + [190894] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9557), 1, - anon_sym_RBRACK, + ACTIONS(9555), 1, + anon_sym_RPAREN, STATE(5665), 1, sym_comment, - [190878] = 3, + [190904] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9559), 1, - sym__table_head_separator, + ACTIONS(355), 1, + anon_sym_RBRACE, STATE(5666), 1, sym_comment, - [190888] = 3, + [190914] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9561), 1, + ACTIONS(9557), 1, anon_sym_RPAREN, STATE(5667), 1, sym_comment, - [190898] = 3, - ACTIONS(3), 1, + [190924] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9563), 1, - anon_sym_RBRACK, + ACTIONS(9559), 1, + aux_sym__unquoted_with_expr_token1, STATE(5668), 1, sym_comment, - [190908] = 3, + [190934] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9565), 1, - anon_sym_RBRACK, + ACTIONS(2604), 1, + sym__unquoted_pattern_in_record, STATE(5669), 1, sym_comment, - [190918] = 3, - ACTIONS(103), 1, + [190944] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2217), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(8817), 1, + anon_sym_EQ_GT, STATE(5670), 1, sym_comment, - [190928] = 3, + [190954] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9567), 1, - anon_sym_RPAREN, + ACTIONS(9561), 1, + anon_sym_GT2, STATE(5671), 1, sym_comment, - [190938] = 3, - ACTIONS(103), 1, + [190964] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9569), 1, - aux_sym_comment_token1, + ACTIONS(9563), 1, + anon_sym_RBRACE, STATE(5672), 1, sym_comment, - [190948] = 3, + [190974] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(361), 1, + ACTIONS(363), 1, anon_sym_RBRACE, STATE(5673), 1, sym_comment, - [190958] = 3, + [190984] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9571), 1, + ACTIONS(9565), 1, anon_sym_GT2, STATE(5674), 1, sym_comment, - [190968] = 3, + [190994] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9573), 1, - anon_sym_DQUOTE, + ACTIONS(9567), 1, + anon_sym_RBRACE, STATE(5675), 1, sym_comment, - [190978] = 3, - ACTIONS(103), 1, + [191004] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2136), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(9569), 1, + anon_sym_DQUOTE, STATE(5676), 1, sym_comment, - [190988] = 3, + [191014] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2850), 1, - sym__unquoted_pattern_in_record, + ACTIONS(9571), 1, + anon_sym_RBRACE, STATE(5677), 1, sym_comment, - [190998] = 3, + [191024] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9575), 1, - anon_sym_RBRACE, + ACTIONS(9573), 1, + anon_sym_SQUOTE2, STATE(5678), 1, sym_comment, - [191008] = 3, - ACTIONS(103), 1, + [191034] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2464), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(9575), 1, + anon_sym_BQUOTE2, STATE(5679), 1, sym_comment, - [191018] = 3, + [191044] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2818), 1, - sym__unquoted_pattern_in_record, + ACTIONS(9577), 1, + anon_sym_RBRACE, STATE(5680), 1, sym_comment, - [191028] = 3, + [191054] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9577), 1, - anon_sym_RBRACE, + ACTIONS(9579), 1, + anon_sym_DQUOTE, STATE(5681), 1, sym_comment, - [191038] = 3, + [191064] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9579), 1, - anon_sym_RPAREN, + ACTIONS(9581), 1, + anon_sym_SQUOTE2, STATE(5682), 1, sym_comment, - [191048] = 3, + [191074] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3070), 1, - anon_sym_LBRACK2, + ACTIONS(9583), 1, + anon_sym_BQUOTE2, STATE(5683), 1, sym_comment, - [191058] = 3, - ACTIONS(3), 1, + [191084] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9581), 1, - sym_raw_string_content, + ACTIONS(9585), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(5684), 1, sym_comment, - [191068] = 3, + [191094] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9583), 1, - anon_sym_RBRACE, + ACTIONS(9587), 1, + anon_sym_SQUOTE2, STATE(5685), 1, sym_comment, - [191078] = 3, - ACTIONS(3), 1, + [191104] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9585), 1, - ts_builtin_sym_end, + ACTIONS(2136), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(5686), 1, sym_comment, - [191088] = 3, + [191114] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1753), 1, - sym__unquoted_pattern, + ACTIONS(9589), 1, + anon_sym_BQUOTE2, STATE(5687), 1, sym_comment, - [191098] = 3, - ACTIONS(3), 1, + [191124] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9587), 1, - anon_sym_RBRACE, + ACTIONS(9591), 1, + aux_sym_cmd_identifier_token6, STATE(5688), 1, sym_comment, - [191108] = 3, - ACTIONS(3), 1, + [191134] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9104), 1, - anon_sym_COLON2, + ACTIONS(9593), 1, + aux_sym_cmd_identifier_token6, STATE(5689), 1, sym_comment, - [191118] = 3, + [191144] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_DQUOTE, + ACTIONS(9595), 1, + anon_sym_RBRACE, STATE(5690), 1, sym_comment, - [191128] = 3, - ACTIONS(103), 1, + [191154] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9591), 1, - sym__space, + ACTIONS(9085), 1, + anon_sym_COLON2, STATE(5691), 1, sym_comment, - [191138] = 3, + [191164] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9593), 1, - anon_sym_SQUOTE2, + ACTIONS(9597), 1, + anon_sym_EQ, STATE(5692), 1, sym_comment, - [191148] = 3, - ACTIONS(3), 1, + [191174] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9595), 1, - anon_sym_BQUOTE2, + ACTIONS(9599), 1, + sym__space, STATE(5693), 1, sym_comment, - [191158] = 3, - ACTIONS(103), 1, + [191184] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9597), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(2850), 1, + sym__unquoted_pattern_in_record, STATE(5694), 1, sym_comment, - [191168] = 3, - ACTIONS(3), 1, + [191194] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9599), 1, - anon_sym_SQUOTE2, + ACTIONS(9601), 1, + aux_sym_cmd_identifier_token6, STATE(5695), 1, sym_comment, - [191178] = 3, + [191204] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1791), 1, - sym__unquoted_pattern, + ACTIONS(2818), 1, + sym__unquoted_pattern_in_record, STATE(5696), 1, sym_comment, - [191188] = 3, + [191214] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9601), 1, + ACTIONS(9603), 1, anon_sym_EQ, STATE(5697), 1, sym_comment, - [191198] = 3, + [191224] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9603), 1, - anon_sym_RBRACK, + ACTIONS(9605), 1, + anon_sym_RBRACE, STATE(5698), 1, sym_comment, - [191208] = 3, + [191234] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9605), 1, - anon_sym_EQ, + ACTIONS(9607), 1, + anon_sym_RBRACE, STATE(5699), 1, sym_comment, - [191218] = 3, + [191244] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9607), 1, + ACTIONS(9609), 1, anon_sym_RBRACK, STATE(5700), 1, sym_comment, - [191228] = 3, + [191254] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9609), 1, - sym_raw_string_end, + ACTIONS(9611), 1, + anon_sym_EQ, STATE(5701), 1, sym_comment, - [191238] = 3, + [191264] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4281), 1, - anon_sym_COLON2, + ACTIONS(9613), 1, + anon_sym_RPAREN, STATE(5702), 1, sym_comment, - [191248] = 3, + [191274] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9611), 1, - anon_sym_RBRACE, + ACTIONS(9615), 1, + anon_sym_RBRACK, STATE(5703), 1, sym_comment, - [191258] = 3, + [191284] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9613), 1, - anon_sym_EQ, + ACTIONS(4281), 1, + anon_sym_COLON2, STATE(5704), 1, sym_comment, - [191268] = 3, + [191294] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9615), 1, - anon_sym_GT2, + ACTIONS(9617), 1, + anon_sym_RBRACK, STATE(5705), 1, sym_comment, - [191278] = 3, + [191304] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(365), 1, - anon_sym_RBRACE, + ACTIONS(9619), 1, + anon_sym_RBRACK, STATE(5706), 1, sym_comment, - [191288] = 3, + [191314] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9617), 1, - anon_sym_GT2, + ACTIONS(9621), 1, + anon_sym_RBRACE, STATE(5707), 1, sym_comment, - [191298] = 3, + [191324] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9619), 1, - anon_sym_RBRACE, + ACTIONS(9623), 1, + anon_sym_GT2, STATE(5708), 1, sym_comment, - [191308] = 3, + [191334] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9621), 1, - anon_sym_EQ, + ACTIONS(9625), 1, + anon_sym_RBRACE, STATE(5709), 1, sym_comment, - [191318] = 3, + [191344] = 3, ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9623), 1, - anon_sym_EQ, + anon_sym_POUND, + ACTIONS(9627), 1, + anon_sym_RBRACE, STATE(5710), 1, sym_comment, - [191328] = 3, + [191354] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9625), 1, - anon_sym_RPAREN, + ACTIONS(9629), 1, + anon_sym_EQ, STATE(5711), 1, sym_comment, - [191338] = 3, + [191364] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4701), 1, - sym__unquoted_pattern, + ACTIONS(9631), 1, + anon_sym_EQ, STATE(5712), 1, sym_comment, - [191348] = 3, + [191374] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9175), 1, - anon_sym_LBRACE, + ACTIONS(9633), 1, + anon_sym_RPAREN, STATE(5713), 1, sym_comment, - [191358] = 3, + [191384] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9627), 1, - anon_sym_BQUOTE2, + ACTIONS(2818), 1, + sym__unquoted_pattern, STATE(5714), 1, sym_comment, - [191368] = 3, - ACTIONS(3), 1, + [191394] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9629), 1, - anon_sym_RBRACE, + ACTIONS(9635), 1, + aux_sym_cmd_identifier_token6, STATE(5715), 1, sym_comment, - [191378] = 3, - ACTIONS(3), 1, + [191404] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9631), 1, - anon_sym_RBRACE, + ACTIONS(2217), 1, + aux_sym__unquoted_with_expr_token1, STATE(5716), 1, sym_comment, - [191388] = 3, + [191414] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9633), 1, - anon_sym_RBRACK, + ACTIONS(6236), 1, + anon_sym_EQ2, STATE(5717), 1, sym_comment, - [191398] = 3, + [191424] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6206), 1, - anon_sym_EQ2, + ACTIONS(9637), 1, + anon_sym_RBRACE, STATE(5718), 1, sym_comment, - [191408] = 3, + [191434] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9635), 1, - anon_sym_RBRACE, + ACTIONS(9639), 1, + anon_sym_GT2, STATE(5719), 1, sym_comment, - [191418] = 3, + [191444] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9637), 1, - sym__table_head_separator, + ACTIONS(9641), 1, + anon_sym_EQ, STATE(5720), 1, sym_comment, - [191428] = 3, + [191454] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9639), 1, - anon_sym_LBRACE, + ACTIONS(9643), 1, + anon_sym_GT2, STATE(5721), 1, sym_comment, - [191438] = 3, + [191464] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6236), 1, - anon_sym_EQ2, + ACTIONS(9645), 1, + anon_sym_GT2, STATE(5722), 1, sym_comment, - [191448] = 3, + [191474] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9641), 1, - sym_identifier, + ACTIONS(9647), 1, + anon_sym_RBRACE, STATE(5723), 1, sym_comment, - [191458] = 3, + [191484] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9643), 1, - anon_sym_RBRACK, + ACTIONS(9649), 1, + sym_identifier, STATE(5724), 1, sym_comment, - [191468] = 3, - ACTIONS(103), 1, + [191494] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2217), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(9651), 1, + anon_sym_in, STATE(5725), 1, sym_comment, - [191478] = 3, + [191504] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9645), 1, - anon_sym_RBRACE, + ACTIONS(9653), 1, + anon_sym_RBRACK, STATE(5726), 1, sym_comment, - [191488] = 3, - ACTIONS(3), 1, + [191514] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9647), 1, - anon_sym_RPAREN, + ACTIONS(9655), 1, + aux_sym_cmd_identifier_token6, STATE(5727), 1, sym_comment, - [191498] = 3, + [191524] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9649), 1, - anon_sym_RBRACE, + ACTIONS(9657), 1, + ts_builtin_sym_end, STATE(5728), 1, sym_comment, - [191508] = 3, - ACTIONS(103), 1, + [191534] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9651), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9659), 1, + anon_sym_RBRACE, STATE(5729), 1, sym_comment, - [191518] = 3, + [191544] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(343), 1, - anon_sym_RBRACE, + ACTIONS(9661), 1, + anon_sym_RBRACK, STATE(5730), 1, sym_comment, - [191528] = 3, + [191554] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9653), 1, - anon_sym_RBRACE, + ACTIONS(9663), 1, + sym_raw_string_end, STATE(5731), 1, sym_comment, - [191538] = 3, + [191564] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9655), 1, - anon_sym_RBRACK, + ACTIONS(9665), 1, + anon_sym_RBRACE, STATE(5732), 1, sym_comment, - [191548] = 3, - ACTIONS(3), 1, + [191574] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9117), 1, - anon_sym_LBRACE, + ACTIONS(2217), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(5733), 1, sym_comment, - [191558] = 3, + [191584] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9657), 1, - anon_sym_RPAREN, + ACTIONS(9667), 1, + anon_sym_RBRACE, STATE(5734), 1, sym_comment, - [191568] = 3, + [191594] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9659), 1, - anon_sym_RBRACE, + ACTIONS(9669), 1, + anon_sym_GT2, STATE(5735), 1, sym_comment, - [191578] = 3, + [191604] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1852), 1, - anon_sym_COLON2, + ACTIONS(9671), 1, + sym__table_head_separator, STATE(5736), 1, sym_comment, - [191588] = 3, + [191614] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9661), 1, - anon_sym_RBRACE, + ACTIONS(9673), 1, + anon_sym_LBRACE, STATE(5737), 1, sym_comment, - [191598] = 3, + [191624] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9663), 1, - anon_sym_DQUOTE, + ACTIONS(6206), 1, + anon_sym_EQ2, STATE(5738), 1, sym_comment, - [191608] = 3, + [191634] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9665), 1, - anon_sym_SQUOTE2, + ACTIONS(9675), 1, + anon_sym_RBRACK, STATE(5739), 1, sym_comment, - [191618] = 3, + [191644] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9667), 1, - anon_sym_BQUOTE2, + ACTIONS(9677), 1, + anon_sym_RBRACE, STATE(5740), 1, sym_comment, - [191628] = 3, + [191654] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9669), 1, - anon_sym_RBRACE, + ACTIONS(9679), 1, + anon_sym_RBRACK, STATE(5741), 1, sym_comment, - [191638] = 3, + [191664] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9671), 1, - sym_raw_string_end, + ACTIONS(9681), 1, + sym_attribute_identifier, STATE(5742), 1, sym_comment, - [191648] = 3, + [191674] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9673), 1, - sym_raw_string_end, + ACTIONS(9683), 1, + anon_sym_RPAREN, STATE(5743), 1, sym_comment, - [191658] = 3, - ACTIONS(103), 1, + [191684] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9675), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9125), 1, + anon_sym_LBRACE, STATE(5744), 1, sym_comment, - [191668] = 3, - ACTIONS(103), 1, + [191694] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9677), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9685), 1, + anon_sym_GT2, STATE(5745), 1, sym_comment, - [191678] = 3, + [191704] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9679), 1, + ACTIONS(361), 1, anon_sym_RBRACE, STATE(5746), 1, sym_comment, - [191688] = 3, + [191714] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2547), 1, - anon_sym_COLON2, + ACTIONS(9687), 1, + anon_sym_RBRACE, STATE(5747), 1, sym_comment, - [191698] = 3, + [191724] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_RPAREN2, + ACTIONS(9689), 1, + anon_sym_RBRACE, STATE(5748), 1, sym_comment, - [191708] = 3, + [191734] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9681), 1, - anon_sym_EQ, + ACTIONS(9691), 1, + anon_sym_RBRACE, STATE(5749), 1, sym_comment, - [191718] = 3, + [191744] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9683), 1, - sym_identifier, + ACTIONS(9693), 1, + anon_sym_RBRACE, STATE(5750), 1, sym_comment, - [191728] = 3, + [191754] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9685), 1, - anon_sym_RPAREN, + ACTIONS(5105), 1, + sym__unquoted_pattern_in_list, STATE(5751), 1, sym_comment, - [191738] = 3, - ACTIONS(3), 1, + [191764] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9687), 1, - anon_sym_RBRACK, + ACTIONS(2545), 1, + aux_sym_cmd_identifier_token2, STATE(5752), 1, sym_comment, - [191748] = 3, + [191774] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2142), 1, - sym__table_head_separator, + ACTIONS(9695), 1, + anon_sym_COLON2, STATE(5753), 1, sym_comment, - [191758] = 3, + [191784] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9689), 1, - anon_sym_RBRACE, + ACTIONS(9697), 1, + anon_sym_DQUOTE, STATE(5754), 1, sym_comment, - [191768] = 3, + [191794] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9691), 1, - anon_sym_RBRACE, + ACTIONS(9699), 1, + anon_sym_SQUOTE2, STATE(5755), 1, sym_comment, - [191778] = 3, + [191804] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2842), 1, - sym__unquoted_pattern, + ACTIONS(9701), 1, + anon_sym_RPAREN, STATE(5756), 1, sym_comment, - [191788] = 3, + [191814] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2842), 1, - sym__unquoted_pattern_in_record, + ACTIONS(9703), 1, + anon_sym_BQUOTE2, STATE(5757), 1, sym_comment, - [191798] = 3, + [191824] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9693), 1, - anon_sym_RBRACE, + ACTIONS(9705), 1, + anon_sym_GT2, STATE(5758), 1, sym_comment, - [191808] = 3, + [191834] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9695), 1, - anon_sym_LBRACE, + ACTIONS(2142), 1, + sym__table_head_separator, STATE(5759), 1, sym_comment, - [191818] = 3, + [191844] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9697), 1, - anon_sym_RPAREN, + ACTIONS(9707), 1, + anon_sym_RBRACK, STATE(5760), 1, sym_comment, - [191828] = 3, - ACTIONS(3), 1, + [191854] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9699), 1, - anon_sym_GT2, + ACTIONS(9709), 1, + aux_sym_cmd_identifier_token6, STATE(5761), 1, sym_comment, - [191838] = 3, - ACTIONS(3), 1, + [191864] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9701), 1, - anon_sym_RBRACK, + ACTIONS(2464), 1, + aux_sym_cmd_identifier_token2, STATE(5762), 1, sym_comment, - [191848] = 3, + [191874] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9703), 1, - anon_sym_RPAREN, + ACTIONS(385), 1, + anon_sym_RPAREN2, STATE(5763), 1, sym_comment, - [191858] = 3, - ACTIONS(103), 1, + [191884] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9705), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9711), 1, + anon_sym_RBRACK, STATE(5764), 1, sym_comment, - [191868] = 3, + [191894] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9707), 1, - anon_sym_RBRACK, + ACTIONS(9713), 1, + anon_sym_RBRACE, STATE(5765), 1, sym_comment, - [191878] = 3, + [191904] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(405), 1, - anon_sym_RPAREN2, + ACTIONS(9715), 1, + anon_sym_EQ, STATE(5766), 1, sym_comment, - [191888] = 3, - ACTIONS(103), 1, + [191914] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9709), 1, - sym__space, + ACTIONS(2547), 1, + anon_sym_COLON2, STATE(5767), 1, sym_comment, - [191898] = 3, + [191924] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9711), 1, - anon_sym_RPAREN, + ACTIONS(9717), 1, + anon_sym_RBRACE, STATE(5768), 1, sym_comment, - [191908] = 3, + [191934] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9713), 1, - anon_sym_RBRACK, + ACTIONS(2842), 1, + sym__unquoted_pattern, STATE(5769), 1, sym_comment, - [191918] = 3, + [191944] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9715), 1, + ACTIONS(9719), 1, anon_sym_RPAREN, STATE(5770), 1, sym_comment, - [191928] = 3, + [191954] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6202), 1, - anon_sym_EQ2, + ACTIONS(9721), 1, + anon_sym_LBRACE, STATE(5771), 1, sym_comment, - [191938] = 3, + [191964] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9717), 1, - sym_identifier, + ACTIONS(409), 1, + anon_sym_RPAREN2, STATE(5772), 1, sym_comment, - [191948] = 3, + [191974] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9719), 1, - anon_sym_RBRACE, + ACTIONS(9723), 1, + anon_sym_RPAREN, STATE(5773), 1, sym_comment, - [191958] = 3, + [191984] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9721), 1, - anon_sym_GT2, + ACTIONS(9725), 1, + sym__table_head_separator, STATE(5774), 1, sym_comment, - [191968] = 3, + [191994] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(357), 1, + ACTIONS(9727), 1, anon_sym_RBRACE, STATE(5775), 1, sym_comment, - [191978] = 3, - ACTIONS(3), 1, + [192004] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2116), 1, - sym__unquoted_pattern_in_record, + ACTIONS(9729), 1, + aux_sym_comment_token1, STATE(5776), 1, sym_comment, - [191988] = 3, - ACTIONS(103), 1, + [192014] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9723), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(1884), 1, + sym__unquoted_pattern, STATE(5777), 1, sym_comment, - [191998] = 3, + [192024] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9725), 1, - anon_sym_RBRACE, + ACTIONS(9731), 1, + anon_sym_RBRACK, STATE(5778), 1, sym_comment, - [192008] = 3, + [192034] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9727), 1, - anon_sym_GT2, + ACTIONS(9733), 1, + anon_sym_LT, STATE(5779), 1, sym_comment, - [192018] = 3, + [192044] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9729), 1, - anon_sym_GT2, + ACTIONS(9735), 1, + anon_sym_RBRACK, STATE(5780), 1, sym_comment, - [192028] = 3, + [192054] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9731), 1, - anon_sym_DQUOTE, + ACTIONS(9737), 1, + anon_sym_RPAREN, STATE(5781), 1, sym_comment, - [192038] = 3, + [192064] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9733), 1, - anon_sym_RBRACK, + ACTIONS(9739), 1, + anon_sym_DQUOTE, STATE(5782), 1, sym_comment, - [192048] = 3, + [192074] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9735), 1, + ACTIONS(9741), 1, anon_sym_RBRACK, STATE(5783), 1, sym_comment, - [192058] = 3, + [192084] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9737), 1, + ACTIONS(9743), 1, anon_sym_RBRACE, STATE(5784), 1, sym_comment, - [192068] = 3, + [192094] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9739), 1, - anon_sym_RBRACK, + ACTIONS(9745), 1, + anon_sym_RBRACE, STATE(5785), 1, sym_comment, - [192078] = 3, + [192104] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9741), 1, - anon_sym_RPAREN, + ACTIONS(9747), 1, + anon_sym_RBRACK, STATE(5786), 1, sym_comment, - [192088] = 3, - ACTIONS(103), 1, + [192114] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2814), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(9749), 1, + anon_sym_RPAREN, STATE(5787), 1, sym_comment, - [192098] = 3, + [192124] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9743), 1, - anon_sym_SQUOTE2, + ACTIONS(9751), 1, + sym_raw_string_end, STATE(5788), 1, sym_comment, - [192108] = 3, + [192134] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9745), 1, - anon_sym_BQUOTE2, + ACTIONS(9753), 1, + sym_raw_string_end, STATE(5789), 1, sym_comment, - [192118] = 3, + [192144] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9747), 1, - anon_sym_EQ, + ACTIONS(6202), 1, + anon_sym_EQ2, STATE(5790), 1, sym_comment, - [192128] = 3, + [192154] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9749), 1, - anon_sym_RBRACE, + ACTIONS(9755), 1, + sym_raw_string_end, STATE(5791), 1, sym_comment, - [192138] = 3, + [192164] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9751), 1, - anon_sym_RBRACK, + ACTIONS(9757), 1, + anon_sym_RBRACE, STATE(5792), 1, sym_comment, - [192148] = 3, + [192174] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9443), 1, - anon_sym_LBRACE, + ACTIONS(9759), 1, + anon_sym_RBRACK, STATE(5793), 1, sym_comment, - [192158] = 3, + [192184] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9753), 1, - anon_sym_RBRACK, + ACTIONS(2842), 1, + sym__unquoted_pattern_in_record, STATE(5794), 1, sym_comment, - [192168] = 3, + [192194] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9755), 1, - sym_raw_string_content, + ACTIONS(9761), 1, + anon_sym_RBRACK, STATE(5795), 1, sym_comment, - [192178] = 3, + [192204] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8577), 1, - anon_sym_LBRACK2, + ACTIONS(9763), 1, + sym_raw_string_content, STATE(5796), 1, sym_comment, - [192188] = 3, - ACTIONS(103), 1, + [192214] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9757), 1, - aux_sym__str_single_quotes_token1, + ACTIONS(8771), 1, + anon_sym_LBRACK2, STATE(5797), 1, sym_comment, - [192198] = 3, + [192224] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9759), 1, - aux_sym__str_back_ticks_token1, + ACTIONS(9765), 1, + aux_sym__str_single_quotes_token1, STATE(5798), 1, sym_comment, - [192208] = 3, - ACTIONS(3), 1, + [192234] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2858), 1, - sym__table_head_separator, + ACTIONS(9767), 1, + aux_sym__str_back_ticks_token1, STATE(5799), 1, sym_comment, - [192218] = 3, + [192244] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9761), 1, - ts_builtin_sym_end, + ACTIONS(9769), 1, + sym_identifier, STATE(5800), 1, sym_comment, - [192228] = 3, + [192254] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9763), 1, - anon_sym_EQ_GT, + ACTIONS(9771), 1, + anon_sym_RBRACK, STATE(5801), 1, sym_comment, - [192238] = 3, + [192264] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9765), 1, - anon_sym_RBRACE, + ACTIONS(9773), 1, + anon_sym_RPAREN, STATE(5802), 1, sym_comment, - [192248] = 3, + [192274] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2736), 1, - anon_sym_COLON2, + ACTIONS(365), 1, + anon_sym_RBRACE, STATE(5803), 1, sym_comment, - [192258] = 3, - ACTIONS(103), 1, + [192284] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9767), 1, - sym__space, + ACTIONS(2736), 1, + anon_sym_COLON2, STATE(5804), 1, sym_comment, - [192268] = 3, - ACTIONS(3), 1, + [192294] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9769), 1, - anon_sym_RBRACK, + ACTIONS(9775), 1, + sym__space, STATE(5805), 1, sym_comment, - [192278] = 3, - ACTIONS(103), 1, + [192304] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2136), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(9777), 1, + anon_sym_EQ, STATE(5806), 1, sym_comment, - [192288] = 3, - ACTIONS(103), 1, + [192314] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9771), 1, - aux_sym_shebang_token1, + ACTIONS(2858), 1, + sym__table_head_separator, STATE(5807), 1, sym_comment, - [192298] = 3, + [192324] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9773), 1, - anon_sym_RBRACE, + ACTIONS(9779), 1, + anon_sym_RBRACK, STATE(5808), 1, sym_comment, - [192308] = 3, - ACTIONS(3), 1, + [192334] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9775), 1, - anon_sym_RBRACE, + ACTIONS(2814), 1, + aux_sym_cmd_identifier_token2, STATE(5809), 1, sym_comment, - [192318] = 3, + [192344] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6187), 1, - anon_sym_EQ2, + ACTIONS(9781), 1, + anon_sym_RBRACK, STATE(5810), 1, sym_comment, - [192328] = 3, + [192354] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9777), 1, - anon_sym_RBRACE, + ACTIONS(7850), 1, + sym__unquoted_pattern, STATE(5811), 1, sym_comment, - [192338] = 3, + [192364] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2854), 1, - sym__unquoted_pattern, + ACTIONS(9783), 1, + anon_sym_RPAREN, STATE(5812), 1, sym_comment, - [192348] = 3, - ACTIONS(3), 1, + [192374] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9779), 1, - anon_sym_RPAREN, + ACTIONS(2136), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(5813), 1, sym_comment, - [192358] = 3, + [192384] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9781), 1, - sym_identifier, + ACTIONS(9785), 1, + ts_builtin_sym_end, STATE(5814), 1, sym_comment, - [192368] = 3, + [192394] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9783), 1, - anon_sym_RBRACK, + ACTIONS(9787), 1, + anon_sym_EQ_GT, STATE(5815), 1, sym_comment, - [192378] = 3, + [192404] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9785), 1, - anon_sym_LBRACE, + ACTIONS(9789), 1, + anon_sym_RPAREN, STATE(5816), 1, sym_comment, - [192388] = 3, - ACTIONS(103), 1, + [192414] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2545), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(357), 1, + anon_sym_RBRACE, STATE(5817), 1, sym_comment, - [192398] = 3, + [192424] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9787), 1, - anon_sym_DASH_GT, + ACTIONS(6187), 1, + anon_sym_EQ2, STATE(5818), 1, sym_comment, - [192408] = 3, - ACTIONS(3), 1, + [192434] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(447), 1, - ts_builtin_sym_end, + ACTIONS(9791), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(5819), 1, sym_comment, - [192418] = 3, + [192444] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9789), 1, - anon_sym_RBRACK, + ACTIONS(2854), 1, + sym__unquoted_pattern_in_record, STATE(5820), 1, sym_comment, - [192428] = 3, + [192454] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9791), 1, - anon_sym_RBRACE, + ACTIONS(9793), 1, + anon_sym_EQ, STATE(5821), 1, sym_comment, - [192438] = 3, - ACTIONS(103), 1, + [192464] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9793), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(9795), 1, + anon_sym_RBRACE, STATE(5822), 1, sym_comment, - [192448] = 3, + [192474] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9795), 1, - anon_sym_LPAREN2, + ACTIONS(2854), 1, + sym__unquoted_pattern, STATE(5823), 1, sym_comment, - [192458] = 3, + [192484] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6177), 1, - anon_sym_EQ2, + ACTIONS(9797), 1, + anon_sym_RPAREN, STATE(5824), 1, sym_comment, - [192468] = 3, + [192494] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9797), 1, - anon_sym_RBRACE, + ACTIONS(9799), 1, + anon_sym_EQ_GT, STATE(5825), 1, sym_comment, - [192478] = 3, - ACTIONS(103), 1, + [192504] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2136), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(9801), 1, + anon_sym_DQUOTE, STATE(5826), 1, sym_comment, - [192488] = 3, - ACTIONS(3), 1, + [192514] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9799), 1, - anon_sym_RPAREN, + ACTIONS(9803), 1, + sym__space, STATE(5827), 1, sym_comment, - [192498] = 3, + [192524] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2336), 1, - sym__unquoted_pattern_in_record, + ACTIONS(9805), 1, + anon_sym_EQ, STATE(5828), 1, sym_comment, - [192508] = 3, + [192534] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9801), 1, - sym_raw_string_end, + ACTIONS(9807), 1, + sym_identifier, STATE(5829), 1, sym_comment, - [192518] = 3, + [192544] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9803), 1, - anon_sym_RBRACE, + ACTIONS(9809), 1, + anon_sym_SQUOTE2, STATE(5830), 1, sym_comment, - [192528] = 3, + [192554] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9805), 1, - sym_raw_string_content, + ACTIONS(9811), 1, + anon_sym_BQUOTE2, STATE(5831), 1, sym_comment, - [192538] = 3, + [192564] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9813), 1, + sym_raw_string_content, + STATE(5832), 1, + sym_comment, + [192574] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(6895), 1, anon_sym_LBRACK2, - STATE(5832), 1, + STATE(5833), 1, sym_comment, - [192548] = 3, + [192584] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9807), 1, + ACTIONS(9815), 1, aux_sym__str_single_quotes_token1, - STATE(5833), 1, + STATE(5834), 1, sym_comment, - [192558] = 3, + [192594] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9809), 1, + ACTIONS(9817), 1, aux_sym__str_back_ticks_token1, - STATE(5834), 1, + STATE(5835), 1, sym_comment, - [192568] = 3, + [192604] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9811), 1, - sym_raw_string_end, - STATE(5835), 1, + ACTIONS(9819), 1, + anon_sym_RPAREN2, + STATE(5836), 1, sym_comment, - [192578] = 3, + [192614] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9813), 1, + ACTIONS(9821), 1, sym__space, - STATE(5836), 1, - sym_comment, - [192588] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9815), 1, - anon_sym_RBRACK, STATE(5837), 1, sym_comment, - [192598] = 3, + [192624] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7850), 1, - sym__unquoted_pattern, + ACTIONS(9823), 1, + anon_sym_LBRACE, STATE(5838), 1, sym_comment, - [192608] = 3, + [192634] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_RBRACE, + ACTIONS(9825), 1, + anon_sym_RBRACK, STATE(5839), 1, sym_comment, - [192618] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(9819), 1, - aux_sym_cmd_identifier_token2, - STATE(5840), 1, - sym_comment, - [192628] = 3, + [192644] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(345), 1, + ACTIONS(9827), 1, anon_sym_RBRACE, - STATE(5841), 1, - sym_comment, - [192638] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9821), 1, - sym_identifier, - STATE(5842), 1, - sym_comment, - [192648] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9823), 1, - sym_raw_string_content, - STATE(5843), 1, - sym_comment, - [192658] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5191), 1, - anon_sym_LBRACK2, - STATE(5844), 1, - sym_comment, - [192668] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(9825), 1, - aux_sym__str_single_quotes_token1, - STATE(5845), 1, + STATE(5840), 1, sym_comment, - [192678] = 3, + [192654] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9827), 1, - aux_sym__str_back_ticks_token1, - STATE(5846), 1, - sym_comment, - [192688] = 3, - ACTIONS(3), 1, - anon_sym_POUND, ACTIONS(9829), 1, - sym_raw_string_content, - STATE(5847), 1, + aux_sym_cmd_identifier_token6, + STATE(5841), 1, sym_comment, - [192698] = 3, + [192664] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6590), 1, - anon_sym_LBRACK2, - STATE(5848), 1, - sym_comment, - [192708] = 3, - ACTIONS(103), 1, - anon_sym_POUND, ACTIONS(9831), 1, - aux_sym__str_single_quotes_token1, - STATE(5849), 1, + sym_identifier, + STATE(5842), 1, sym_comment, - [192718] = 3, - ACTIONS(103), 1, + [192674] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9833), 1, - aux_sym__str_back_ticks_token1, - STATE(5850), 1, + anon_sym_RBRACE, + STATE(5843), 1, sym_comment, - [192728] = 3, + [192684] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9835), 1, sym_raw_string_content, - STATE(5851), 1, + STATE(5844), 1, sym_comment, - [192738] = 3, + [192694] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6642), 1, + ACTIONS(5191), 1, anon_sym_LBRACK2, - STATE(5852), 1, + STATE(5845), 1, sym_comment, - [192748] = 3, + [192704] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9837), 1, aux_sym__str_single_quotes_token1, - STATE(5853), 1, + STATE(5846), 1, sym_comment, - [192758] = 3, + [192714] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9839), 1, aux_sym__str_back_ticks_token1, - STATE(5854), 1, + STATE(5847), 1, sym_comment, - [192768] = 3, + [192724] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9841), 1, sym_raw_string_content, - STATE(5855), 1, + STATE(5848), 1, sym_comment, - [192778] = 3, + [192734] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5619), 1, + ACTIONS(6590), 1, anon_sym_LBRACK2, - STATE(5856), 1, + STATE(5849), 1, sym_comment, - [192788] = 3, + [192744] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9843), 1, aux_sym__str_single_quotes_token1, - STATE(5857), 1, + STATE(5850), 1, sym_comment, - [192798] = 3, + [192754] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9845), 1, aux_sym__str_back_ticks_token1, - STATE(5858), 1, + STATE(5851), 1, sym_comment, - [192808] = 3, + [192764] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9847), 1, sym_raw_string_content, - STATE(5859), 1, + STATE(5852), 1, sym_comment, - [192818] = 3, + [192774] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5577), 1, + ACTIONS(6642), 1, anon_sym_LBRACK2, - STATE(5860), 1, + STATE(5853), 1, sym_comment, - [192828] = 3, + [192784] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9849), 1, aux_sym__str_single_quotes_token1, - STATE(5861), 1, + STATE(5854), 1, sym_comment, - [192838] = 3, + [192794] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9851), 1, aux_sym__str_back_ticks_token1, - STATE(5862), 1, + STATE(5855), 1, sym_comment, - [192848] = 3, + [192804] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9853), 1, sym_raw_string_content, - STATE(5863), 1, + STATE(5856), 1, sym_comment, - [192858] = 3, + [192814] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4326), 1, + ACTIONS(5619), 1, anon_sym_LBRACK2, - STATE(5864), 1, + STATE(5857), 1, sym_comment, - [192868] = 3, + [192824] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9855), 1, aux_sym__str_single_quotes_token1, - STATE(5865), 1, + STATE(5858), 1, sym_comment, - [192878] = 3, + [192834] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9857), 1, aux_sym__str_back_ticks_token1, - STATE(5866), 1, + STATE(5859), 1, sym_comment, - [192888] = 3, + [192844] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9859), 1, sym_raw_string_content, - STATE(5867), 1, + STATE(5860), 1, sym_comment, - [192898] = 3, + [192854] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4245), 1, + ACTIONS(5577), 1, anon_sym_LBRACK2, - STATE(5868), 1, + STATE(5861), 1, sym_comment, - [192908] = 3, + [192864] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9861), 1, aux_sym__str_single_quotes_token1, - STATE(5869), 1, + STATE(5862), 1, sym_comment, - [192918] = 3, + [192874] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9863), 1, aux_sym__str_back_ticks_token1, - STATE(5870), 1, + STATE(5863), 1, sym_comment, - [192928] = 3, + [192884] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9865), 1, sym_raw_string_content, - STATE(5871), 1, + STATE(5864), 1, + sym_comment, + [192894] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4326), 1, + anon_sym_LBRACK2, + STATE(5865), 1, sym_comment, - [192938] = 3, + [192904] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9867), 1, aux_sym__str_single_quotes_token1, - STATE(5872), 1, + STATE(5866), 1, sym_comment, - [192948] = 3, + [192914] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9869), 1, aux_sym__str_back_ticks_token1, - STATE(5873), 1, + STATE(5867), 1, sym_comment, - [192958] = 3, + [192924] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9871), 1, sym_raw_string_content, - STATE(5874), 1, + STATE(5868), 1, sym_comment, - [192968] = 3, + [192934] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4245), 1, + anon_sym_LBRACK2, + STATE(5869), 1, + sym_comment, + [192944] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9873), 1, aux_sym__str_single_quotes_token1, - STATE(5875), 1, + STATE(5870), 1, sym_comment, - [192978] = 3, + [192954] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9875), 1, aux_sym__str_back_ticks_token1, - STATE(5876), 1, + STATE(5871), 1, sym_comment, - [192988] = 3, + [192964] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9877), 1, sym_raw_string_content, - STATE(5877), 1, + STATE(5872), 1, sym_comment, - [192998] = 3, + [192974] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9879), 1, aux_sym__str_single_quotes_token1, - STATE(5878), 1, + STATE(5873), 1, sym_comment, - [193008] = 3, + [192984] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9881), 1, aux_sym__str_back_ticks_token1, - STATE(5879), 1, + STATE(5874), 1, sym_comment, - [193018] = 3, + [192994] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9883), 1, sym_raw_string_content, - STATE(5880), 1, + STATE(5875), 1, sym_comment, - [193028] = 3, + [193004] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9885), 1, aux_sym__str_single_quotes_token1, - STATE(5881), 1, + STATE(5876), 1, sym_comment, - [193038] = 3, + [193014] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9887), 1, aux_sym__str_back_ticks_token1, - STATE(5882), 1, + STATE(5877), 1, sym_comment, - [193048] = 3, + [193024] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9889), 1, sym_raw_string_content, - STATE(5883), 1, + STATE(5878), 1, sym_comment, - [193058] = 3, + [193034] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9891), 1, aux_sym__str_single_quotes_token1, - STATE(5884), 1, + STATE(5879), 1, sym_comment, - [193068] = 3, + [193044] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9893), 1, aux_sym__str_back_ticks_token1, - STATE(5885), 1, + STATE(5880), 1, sym_comment, - [193078] = 3, + [193054] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9895), 1, sym_raw_string_content, - STATE(5886), 1, + STATE(5881), 1, sym_comment, - [193088] = 3, + [193064] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9897), 1, aux_sym__str_single_quotes_token1, - STATE(5887), 1, + STATE(5882), 1, sym_comment, - [193098] = 3, + [193074] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9899), 1, aux_sym__str_back_ticks_token1, - STATE(5888), 1, + STATE(5883), 1, sym_comment, - [193108] = 3, + [193084] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9901), 1, sym_raw_string_content, - STATE(5889), 1, + STATE(5884), 1, sym_comment, - [193118] = 3, + [193094] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9903), 1, aux_sym__str_single_quotes_token1, - STATE(5890), 1, + STATE(5885), 1, sym_comment, - [193128] = 3, + [193104] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9905), 1, aux_sym__str_back_ticks_token1, - STATE(5891), 1, + STATE(5886), 1, sym_comment, - [193138] = 3, + [193114] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9907), 1, sym_raw_string_content, - STATE(5892), 1, + STATE(5887), 1, sym_comment, - [193148] = 3, + [193124] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9909), 1, aux_sym__str_single_quotes_token1, - STATE(5893), 1, + STATE(5888), 1, sym_comment, - [193158] = 3, + [193134] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9911), 1, aux_sym__str_back_ticks_token1, - STATE(5894), 1, + STATE(5889), 1, sym_comment, - [193168] = 3, + [193144] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9913), 1, sym_raw_string_content, - STATE(5895), 1, + STATE(5890), 1, sym_comment, - [193178] = 3, + [193154] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9915), 1, aux_sym__str_single_quotes_token1, - STATE(5896), 1, + STATE(5891), 1, sym_comment, - [193188] = 3, + [193164] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9917), 1, aux_sym__str_back_ticks_token1, - STATE(5897), 1, + STATE(5892), 1, sym_comment, - [193198] = 3, + [193174] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9919), 1, sym_raw_string_content, - STATE(5898), 1, + STATE(5893), 1, sym_comment, - [193208] = 3, + [193184] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9921), 1, aux_sym__str_single_quotes_token1, - STATE(5899), 1, + STATE(5894), 1, sym_comment, - [193218] = 3, + [193194] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9923), 1, aux_sym__str_back_ticks_token1, - STATE(5900), 1, + STATE(5895), 1, sym_comment, - [193228] = 3, + [193204] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9925), 1, sym_raw_string_content, - STATE(5901), 1, + STATE(5896), 1, sym_comment, - [193238] = 3, + [193214] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9927), 1, aux_sym__str_single_quotes_token1, - STATE(5902), 1, + STATE(5897), 1, sym_comment, - [193248] = 3, + [193224] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9929), 1, aux_sym__str_back_ticks_token1, - STATE(5903), 1, + STATE(5898), 1, sym_comment, - [193258] = 3, + [193234] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9931), 1, sym_raw_string_content, - STATE(5904), 1, + STATE(5899), 1, sym_comment, - [193268] = 3, + [193244] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9933), 1, aux_sym__str_single_quotes_token1, - STATE(5905), 1, + STATE(5900), 1, sym_comment, - [193278] = 3, + [193254] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9935), 1, aux_sym__str_back_ticks_token1, - STATE(5906), 1, + STATE(5901), 1, sym_comment, - [193288] = 3, + [193264] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9937), 1, sym_raw_string_content, - STATE(5907), 1, + STATE(5902), 1, sym_comment, - [193298] = 3, + [193274] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9939), 1, aux_sym__str_single_quotes_token1, - STATE(5908), 1, + STATE(5903), 1, sym_comment, - [193308] = 3, + [193284] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9941), 1, aux_sym__str_back_ticks_token1, - STATE(5909), 1, + STATE(5904), 1, sym_comment, - [193318] = 3, + [193294] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9943), 1, sym_raw_string_content, - STATE(5910), 1, + STATE(5905), 1, sym_comment, - [193328] = 3, + [193304] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9945), 1, aux_sym__str_single_quotes_token1, - STATE(5911), 1, + STATE(5906), 1, sym_comment, - [193338] = 3, + [193314] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9947), 1, aux_sym__str_back_ticks_token1, - STATE(5912), 1, + STATE(5907), 1, sym_comment, - [193348] = 3, + [193324] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9949), 1, sym_raw_string_content, - STATE(5913), 1, + STATE(5908), 1, sym_comment, - [193358] = 3, + [193334] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9951), 1, aux_sym__str_single_quotes_token1, - STATE(5914), 1, + STATE(5909), 1, sym_comment, - [193368] = 3, + [193344] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9953), 1, aux_sym__str_back_ticks_token1, - STATE(5915), 1, + STATE(5910), 1, sym_comment, - [193378] = 3, + [193354] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9955), 1, sym_raw_string_content, - STATE(5916), 1, + STATE(5911), 1, sym_comment, - [193388] = 3, - ACTIONS(103), 1, + [193364] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9957), 1, - aux_sym__str_single_quotes_token1, - STATE(5917), 1, + anon_sym_RPAREN, + STATE(5912), 1, sym_comment, - [193398] = 3, + [193374] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9959), 1, aux_sym__str_back_ticks_token1, - STATE(5918), 1, + STATE(5913), 1, sym_comment, - [193408] = 3, + [193384] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9961), 1, sym_raw_string_content, - STATE(5919), 1, + STATE(5914), 1, sym_comment, - [193418] = 3, + [193394] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9963), 1, aux_sym__str_single_quotes_token1, - STATE(5920), 1, + STATE(5915), 1, sym_comment, - [193428] = 3, + [193404] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9965), 1, aux_sym__str_back_ticks_token1, - STATE(5921), 1, + STATE(5916), 1, sym_comment, - [193438] = 3, + [193414] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9967), 1, sym_raw_string_content, - STATE(5922), 1, + STATE(5917), 1, sym_comment, - [193448] = 3, + [193424] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9969), 1, aux_sym__str_single_quotes_token1, - STATE(5923), 1, + STATE(5918), 1, sym_comment, - [193458] = 3, + [193434] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9971), 1, aux_sym__str_back_ticks_token1, - STATE(5924), 1, + STATE(5919), 1, sym_comment, - [193468] = 3, + [193444] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9973), 1, sym_raw_string_content, - STATE(5925), 1, + STATE(5920), 1, sym_comment, - [193478] = 3, + [193454] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9975), 1, aux_sym__str_single_quotes_token1, - STATE(5926), 1, + STATE(5921), 1, sym_comment, - [193488] = 3, + [193464] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9977), 1, aux_sym__str_back_ticks_token1, - STATE(5927), 1, + STATE(5922), 1, sym_comment, - [193498] = 3, + [193474] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9979), 1, sym_raw_string_content, - STATE(5928), 1, + STATE(5923), 1, sym_comment, - [193508] = 3, + [193484] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9981), 1, aux_sym__str_single_quotes_token1, - STATE(5929), 1, + STATE(5924), 1, sym_comment, - [193518] = 3, + [193494] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9983), 1, aux_sym__str_back_ticks_token1, - STATE(5930), 1, + STATE(5925), 1, sym_comment, - [193528] = 3, + [193504] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9985), 1, - anon_sym_RBRACE, - STATE(5931), 1, + sym_raw_string_content, + STATE(5926), 1, sym_comment, - [193538] = 3, - ACTIONS(3), 1, + [193514] = 3, + ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9987), 1, - sym_raw_string_end, + aux_sym__str_single_quotes_token1, + STATE(5927), 1, + sym_comment, + [193524] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9989), 1, + aux_sym__str_back_ticks_token1, + STATE(5928), 1, + sym_comment, + [193534] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9991), 1, + sym_raw_string_content, + STATE(5929), 1, + sym_comment, + [193544] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9993), 1, + aux_sym__str_single_quotes_token1, + STATE(5930), 1, + sym_comment, + [193554] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9995), 1, + aux_sym__str_back_ticks_token1, + STATE(5931), 1, + sym_comment, + [193564] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9997), 1, + aux_sym_cmd_identifier_token2, STATE(5932), 1, sym_comment, - [193548] = 3, + [193574] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9127), 1, - anon_sym_LPAREN2, + ACTIONS(9999), 1, + anon_sym_RBRACK, STATE(5933), 1, sym_comment, - [193558] = 3, + [193584] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9989), 1, - anon_sym_RBRACE, + ACTIONS(9152), 1, + anon_sym_LPAREN2, STATE(5934), 1, sym_comment, - [193568] = 3, + [193594] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6298), 1, - anon_sym_EQ2, + ACTIONS(10001), 1, + sym_identifier, STATE(5935), 1, sym_comment, - [193578] = 3, + [193604] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1753), 1, - sym__unquoted_pattern_in_record, + ACTIONS(10003), 1, + anon_sym_RBRACE, STATE(5936), 1, sym_comment, - [193588] = 3, + [193614] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9991), 1, - anon_sym_in, + ACTIONS(10005), 1, + anon_sym_RPAREN, STATE(5937), 1, sym_comment, - [193598] = 3, + [193624] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9993), 1, - sym_identifier, + ACTIONS(10007), 1, + anon_sym_in, STATE(5938), 1, sym_comment, - [193608] = 3, + [193634] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9995), 1, - anon_sym_RBRACK, + ACTIONS(10009), 1, + anon_sym_GT2, STATE(5939), 1, sym_comment, - [193618] = 3, - ACTIONS(3), 1, + [193644] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9997), 1, - anon_sym_RBRACE, + ACTIONS(2136), 1, + aux_sym__unquoted_with_expr_token1, STATE(5940), 1, sym_comment, - [193628] = 3, + [193654] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9999), 1, - anon_sym_RPAREN, + ACTIONS(447), 1, + ts_builtin_sym_end, STATE(5941), 1, sym_comment, - [193638] = 3, + [193664] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10001), 1, - anon_sym_RBRACK, + ACTIONS(10011), 1, + anon_sym_RPAREN, STATE(5942), 1, sym_comment, - [193648] = 3, + [193674] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(347), 1, - anon_sym_RBRACE, + ACTIONS(9823), 1, + anon_sym_LBRACE, STATE(5943), 1, sym_comment, - [193658] = 3, + [193684] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10003), 1, - anon_sym_RPAREN, + ACTIONS(10013), 1, + sym_raw_string_end, STATE(5944), 1, sym_comment, - [193668] = 3, + [193694] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10005), 1, - sym_raw_string_end, + ACTIONS(6232), 1, + anon_sym_EQ2, STATE(5945), 1, sym_comment, - [193678] = 3, + [193704] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10007), 1, - anon_sym_RBRACE, + ACTIONS(10015), 1, + anon_sym_LBRACE, STATE(5946), 1, sym_comment, - [193688] = 3, + [193714] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10009), 1, - anon_sym_RBRACK, + ACTIONS(347), 1, + anon_sym_RBRACE, STATE(5947), 1, sym_comment, - [193698] = 3, + [193724] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10011), 1, - anon_sym_DQUOTE, + ACTIONS(10017), 1, + anon_sym_RBRACK, STATE(5948), 1, sym_comment, - [193708] = 3, + [193734] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10013), 1, - anon_sym_DQUOTE, + ACTIONS(2336), 1, + sym__unquoted_pattern, STATE(5949), 1, sym_comment, - [193718] = 3, + [193744] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10015), 1, - anon_sym_SQUOTE2, + ACTIONS(10019), 1, + sym_raw_string_end, STATE(5950), 1, sym_comment, - [193728] = 3, + [193754] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10017), 1, - anon_sym_LT, + ACTIONS(10021), 1, + anon_sym_EQ, STATE(5951), 1, sym_comment, - [193738] = 3, - ACTIONS(3), 1, + [193764] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(10019), 1, - anon_sym_BQUOTE2, + ACTIONS(10023), 1, + aux_sym_shebang_token1, STATE(5952), 1, sym_comment, - [193748] = 3, + [193774] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5937), 1, - sym__unquoted_pattern, + ACTIONS(10025), 1, + anon_sym_LT, STATE(5953), 1, sym_comment, - [193758] = 3, + [193784] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2336), 1, - sym__unquoted_pattern, + ACTIONS(10027), 1, + anon_sym_RBRACE, STATE(5954), 1, sym_comment, - [193768] = 3, - ACTIONS(103), 1, + [193794] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10021), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(10029), 1, + anon_sym_RBRACK, STATE(5955), 1, sym_comment, - [193778] = 3, + [193804] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10023), 1, - sym_raw_string_end, + ACTIONS(10031), 1, + anon_sym_RBRACE, STATE(5956), 1, sym_comment, - [193788] = 3, + [193814] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1868), 1, - sym__unquoted_pattern_in_record, + ACTIONS(3070), 1, + anon_sym_LBRACK2, STATE(5957), 1, sym_comment, - [193798] = 3, + [193824] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10025), 1, - anon_sym_DQUOTE, + ACTIONS(10033), 1, + anon_sym_LPAREN2, STATE(5958), 1, sym_comment, - [193808] = 3, + [193834] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10027), 1, - anon_sym_LT, + ACTIONS(10035), 1, + anon_sym_RBRACE, STATE(5959), 1, sym_comment, - [193818] = 3, + [193844] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10029), 1, - anon_sym_RPAREN, + ACTIONS(6177), 1, + anon_sym_EQ2, STATE(5960), 1, sym_comment, - [193828] = 3, + [193854] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10031), 1, - anon_sym_RBRACK, + ACTIONS(10037), 1, + anon_sym_LT, STATE(5961), 1, sym_comment, - [193838] = 3, + [193864] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10033), 1, - anon_sym_RBRACE, + ACTIONS(10039), 1, + anon_sym_RPAREN, STATE(5962), 1, sym_comment, - [193848] = 3, + [193874] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6232), 1, - anon_sym_EQ2, + ACTIONS(1852), 1, + anon_sym_COLON2, STATE(5963), 1, sym_comment, - [193858] = 3, + [193884] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10035), 1, + ACTIONS(10041), 1, anon_sym_RBRACE, STATE(5964), 1, sym_comment, - [193868] = 3, + [193894] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10037), 1, - anon_sym_EQ, + ACTIONS(10043), 1, + sym_raw_string_end, STATE(5965), 1, sym_comment, - [193878] = 3, + [193904] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10039), 1, - anon_sym_RPAREN, + ACTIONS(10045), 1, + anon_sym_DQUOTE, STATE(5966), 1, sym_comment, - [193888] = 3, + [193914] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10041), 1, - anon_sym_RPAREN, + ACTIONS(1753), 1, + sym__unquoted_pattern_in_record, STATE(5967), 1, sym_comment, - [193898] = 3, - ACTIONS(103), 1, + [193924] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10043), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(10047), 1, + anon_sym_SQUOTE2, STATE(5968), 1, sym_comment, - [193908] = 3, + [193934] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1884), 1, - sym__unquoted_pattern, + ACTIONS(10049), 1, + anon_sym_EQ, STATE(5969), 1, sym_comment, - [193918] = 3, + [193944] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2854), 1, - sym__unquoted_pattern_in_record, + ACTIONS(10051), 1, + anon_sym_RBRACE, STATE(5970), 1, sym_comment, - [193928] = 3, + [193954] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10045), 1, - anon_sym_EQ, + ACTIONS(2336), 1, + sym__unquoted_pattern_in_record, STATE(5971), 1, sym_comment, - [193938] = 1, - ACTIONS(10047), 1, + [193964] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10053), 1, + anon_sym_DQUOTE, + STATE(5972), 1, + sym_comment, + [193974] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9154), 1, + aux_sym__record_key_token1, + STATE(5973), 1, + sym_comment, + [193984] = 1, + ACTIONS(10055), 1, ts_builtin_sym_end, }; @@ -295762,3485 +295796,3487 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2528)] = 105147, [SMALL_STATE(2529)] = 105193, [SMALL_STATE(2530)] = 105247, - [SMALL_STATE(2531)] = 105339, - [SMALL_STATE(2532)] = 105385, - [SMALL_STATE(2533)] = 105431, - [SMALL_STATE(2534)] = 105477, - [SMALL_STATE(2535)] = 105527, - [SMALL_STATE(2536)] = 105577, - [SMALL_STATE(2537)] = 105627, - [SMALL_STATE(2538)] = 105677, - [SMALL_STATE(2539)] = 105727, - [SMALL_STATE(2540)] = 105773, - [SMALL_STATE(2541)] = 105823, - [SMALL_STATE(2542)] = 105869, - [SMALL_STATE(2543)] = 105919, - [SMALL_STATE(2544)] = 105969, - [SMALL_STATE(2545)] = 106015, - [SMALL_STATE(2546)] = 106061, - [SMALL_STATE(2547)] = 106107, - [SMALL_STATE(2548)] = 106153, - [SMALL_STATE(2549)] = 106199, - [SMALL_STATE(2550)] = 106245, - [SMALL_STATE(2551)] = 106291, - [SMALL_STATE(2552)] = 106337, - [SMALL_STATE(2553)] = 106383, - [SMALL_STATE(2554)] = 106429, - [SMALL_STATE(2555)] = 106477, - [SMALL_STATE(2556)] = 106525, - [SMALL_STATE(2557)] = 106573, - [SMALL_STATE(2558)] = 106621, - [SMALL_STATE(2559)] = 106667, - [SMALL_STATE(2560)] = 106713, - [SMALL_STATE(2561)] = 106759, - [SMALL_STATE(2562)] = 106805, - [SMALL_STATE(2563)] = 106851, - [SMALL_STATE(2564)] = 106897, - [SMALL_STATE(2565)] = 106943, - [SMALL_STATE(2566)] = 106989, - [SMALL_STATE(2567)] = 107035, - [SMALL_STATE(2568)] = 107083, - [SMALL_STATE(2569)] = 107129, - [SMALL_STATE(2570)] = 107175, - [SMALL_STATE(2571)] = 107221, - [SMALL_STATE(2572)] = 107267, - [SMALL_STATE(2573)] = 107313, - [SMALL_STATE(2574)] = 107359, - [SMALL_STATE(2575)] = 107405, - [SMALL_STATE(2576)] = 107457, - [SMALL_STATE(2577)] = 107511, - [SMALL_STATE(2578)] = 107557, - [SMALL_STATE(2579)] = 107603, - [SMALL_STATE(2580)] = 107649, - [SMALL_STATE(2581)] = 107695, - [SMALL_STATE(2582)] = 107741, - [SMALL_STATE(2583)] = 107787, - [SMALL_STATE(2584)] = 107833, - [SMALL_STATE(2585)] = 107879, - [SMALL_STATE(2586)] = 107925, - [SMALL_STATE(2587)] = 107971, - [SMALL_STATE(2588)] = 108017, - [SMALL_STATE(2589)] = 108063, - [SMALL_STATE(2590)] = 108127, - [SMALL_STATE(2591)] = 108189, - [SMALL_STATE(2592)] = 108245, - [SMALL_STATE(2593)] = 108297, - [SMALL_STATE(2594)] = 108371, - [SMALL_STATE(2595)] = 108447, - [SMALL_STATE(2596)] = 108525, - [SMALL_STATE(2597)] = 108591, - [SMALL_STATE(2598)] = 108651, - [SMALL_STATE(2599)] = 108719, - [SMALL_STATE(2600)] = 108789, - [SMALL_STATE(2601)] = 108861, - [SMALL_STATE(2602)] = 108907, - [SMALL_STATE(2603)] = 108953, - [SMALL_STATE(2604)] = 109045, - [SMALL_STATE(2605)] = 109109, - [SMALL_STATE(2606)] = 109171, - [SMALL_STATE(2607)] = 109233, - [SMALL_STATE(2608)] = 109293, - [SMALL_STATE(2609)] = 109347, - [SMALL_STATE(2610)] = 109399, - [SMALL_STATE(2611)] = 109449, - [SMALL_STATE(2612)] = 109523, - [SMALL_STATE(2613)] = 109595, - [SMALL_STATE(2614)] = 109671, - [SMALL_STATE(2615)] = 109745, - [SMALL_STATE(2616)] = 109823, - [SMALL_STATE(2617)] = 109899, - [SMALL_STATE(2618)] = 109965, - [SMALL_STATE(2619)] = 110029, - [SMALL_STATE(2620)] = 110089, - [SMALL_STATE(2621)] = 110147, - [SMALL_STATE(2622)] = 110215, - [SMALL_STATE(2623)] = 110281, - [SMALL_STATE(2624)] = 110351, - [SMALL_STATE(2625)] = 110419, - [SMALL_STATE(2626)] = 110491, - [SMALL_STATE(2627)] = 110561, - [SMALL_STATE(2628)] = 110625, - [SMALL_STATE(2629)] = 110687, - [SMALL_STATE(2630)] = 110743, - [SMALL_STATE(2631)] = 110795, - [SMALL_STATE(2632)] = 110869, - [SMALL_STATE(2633)] = 110945, - [SMALL_STATE(2634)] = 111023, - [SMALL_STATE(2635)] = 111089, - [SMALL_STATE(2636)] = 111149, - [SMALL_STATE(2637)] = 111217, - [SMALL_STATE(2638)] = 111287, - [SMALL_STATE(2639)] = 111359, - [SMALL_STATE(2640)] = 111405, - [SMALL_STATE(2641)] = 111467, - [SMALL_STATE(2642)] = 111527, - [SMALL_STATE(2643)] = 111581, - [SMALL_STATE(2644)] = 111631, - [SMALL_STATE(2645)] = 111703, - [SMALL_STATE(2646)] = 111777, - [SMALL_STATE(2647)] = 111853, - [SMALL_STATE(2648)] = 111917, - [SMALL_STATE(2649)] = 111975, - [SMALL_STATE(2650)] = 112041, - [SMALL_STATE(2651)] = 112109, - [SMALL_STATE(2652)] = 112179, - [SMALL_STATE(2653)] = 112243, - [SMALL_STATE(2654)] = 112305, - [SMALL_STATE(2655)] = 112367, - [SMALL_STATE(2656)] = 112427, - [SMALL_STATE(2657)] = 112483, - [SMALL_STATE(2658)] = 112537, - [SMALL_STATE(2659)] = 112589, - [SMALL_STATE(2660)] = 112639, - [SMALL_STATE(2661)] = 112713, - [SMALL_STATE(2662)] = 112785, - [SMALL_STATE(2663)] = 112861, - [SMALL_STATE(2664)] = 112935, - [SMALL_STATE(2665)] = 113013, - [SMALL_STATE(2666)] = 113089, - [SMALL_STATE(2667)] = 113155, - [SMALL_STATE(2668)] = 113219, - [SMALL_STATE(2669)] = 113279, - [SMALL_STATE(2670)] = 113337, - [SMALL_STATE(2671)] = 113405, - [SMALL_STATE(2672)] = 113471, - [SMALL_STATE(2673)] = 113541, - [SMALL_STATE(2674)] = 113609, - [SMALL_STATE(2675)] = 113681, - [SMALL_STATE(2676)] = 113751, - [SMALL_STATE(2677)] = 113813, - [SMALL_STATE(2678)] = 113873, - [SMALL_STATE(2679)] = 113927, - [SMALL_STATE(2680)] = 113977, - [SMALL_STATE(2681)] = 114049, - [SMALL_STATE(2682)] = 114123, - [SMALL_STATE(2683)] = 114199, - [SMALL_STATE(2684)] = 114263, - [SMALL_STATE(2685)] = 114321, - [SMALL_STATE(2686)] = 114387, - [SMALL_STATE(2687)] = 114455, - [SMALL_STATE(2688)] = 114525, - [SMALL_STATE(2689)] = 114577, - [SMALL_STATE(2690)] = 114669, - [SMALL_STATE(2691)] = 114715, - [SMALL_STATE(2692)] = 114761, - [SMALL_STATE(2693)] = 114811, - [SMALL_STATE(2694)] = 114857, - [SMALL_STATE(2695)] = 114903, - [SMALL_STATE(2696)] = 114951, - [SMALL_STATE(2697)] = 114997, - [SMALL_STATE(2698)] = 115051, - [SMALL_STATE(2699)] = 115097, - [SMALL_STATE(2700)] = 115143, - [SMALL_STATE(2701)] = 115193, - [SMALL_STATE(2702)] = 115243, - [SMALL_STATE(2703)] = 115293, - [SMALL_STATE(2704)] = 115347, - [SMALL_STATE(2705)] = 115393, - [SMALL_STATE(2706)] = 115439, - [SMALL_STATE(2707)] = 115485, - [SMALL_STATE(2708)] = 115531, - [SMALL_STATE(2709)] = 115583, - [SMALL_STATE(2710)] = 115635, - [SMALL_STATE(2711)] = 115681, - [SMALL_STATE(2712)] = 115727, - [SMALL_STATE(2713)] = 115773, - [SMALL_STATE(2714)] = 115825, - [SMALL_STATE(2715)] = 115871, - [SMALL_STATE(2716)] = 115923, - [SMALL_STATE(2717)] = 115969, - [SMALL_STATE(2718)] = 116025, - [SMALL_STATE(2719)] = 116070, - [SMALL_STATE(2720)] = 116115, - [SMALL_STATE(2721)] = 116164, - [SMALL_STATE(2722)] = 116209, - [SMALL_STATE(2723)] = 116254, - [SMALL_STATE(2724)] = 116331, - [SMALL_STATE(2725)] = 116378, - [SMALL_STATE(2726)] = 116423, - [SMALL_STATE(2727)] = 116468, - [SMALL_STATE(2728)] = 116517, - [SMALL_STATE(2729)] = 116562, - [SMALL_STATE(2730)] = 116611, - [SMALL_STATE(2731)] = 116660, - [SMALL_STATE(2732)] = 116709, - [SMALL_STATE(2733)] = 116758, - [SMALL_STATE(2734)] = 116807, - [SMALL_STATE(2735)] = 116856, - [SMALL_STATE(2736)] = 116901, - [SMALL_STATE(2737)] = 116948, - [SMALL_STATE(2738)] = 116997, - [SMALL_STATE(2739)] = 117046, - [SMALL_STATE(2740)] = 117091, - [SMALL_STATE(2741)] = 117136, - [SMALL_STATE(2742)] = 117191, - [SMALL_STATE(2743)] = 117242, - [SMALL_STATE(2744)] = 117287, - [SMALL_STATE(2745)] = 117332, - [SMALL_STATE(2746)] = 117381, - [SMALL_STATE(2747)] = 117430, - [SMALL_STATE(2748)] = 117475, - [SMALL_STATE(2749)] = 117524, - [SMALL_STATE(2750)] = 117569, - [SMALL_STATE(2751)] = 117614, - [SMALL_STATE(2752)] = 117663, - [SMALL_STATE(2753)] = 117712, - [SMALL_STATE(2754)] = 117757, - [SMALL_STATE(2755)] = 117802, - [SMALL_STATE(2756)] = 117855, - [SMALL_STATE(2757)] = 117900, - [SMALL_STATE(2758)] = 117949, - [SMALL_STATE(2759)] = 117998, - [SMALL_STATE(2760)] = 118047, - [SMALL_STATE(2761)] = 118096, - [SMALL_STATE(2762)] = 118173, - [SMALL_STATE(2763)] = 118220, - [SMALL_STATE(2764)] = 118297, - [SMALL_STATE(2765)] = 118374, - [SMALL_STATE(2766)] = 118451, - [SMALL_STATE(2767)] = 118528, - [SMALL_STATE(2768)] = 118573, - [SMALL_STATE(2769)] = 118633, - [SMALL_STATE(2770)] = 118689, - [SMALL_STATE(2771)] = 118743, - [SMALL_STATE(2772)] = 118805, - [SMALL_STATE(2773)] = 118869, - [SMALL_STATE(2774)] = 118935, - [SMALL_STATE(2775)] = 118981, - [SMALL_STATE(2776)] = 119027, - [SMALL_STATE(2777)] = 119075, - [SMALL_STATE(2778)] = 119119, - [SMALL_STATE(2779)] = 119165, - [SMALL_STATE(2780)] = 119219, - [SMALL_STATE(2781)] = 119265, - [SMALL_STATE(2782)] = 119315, - [SMALL_STATE(2783)] = 119361, - [SMALL_STATE(2784)] = 119409, - [SMALL_STATE(2785)] = 119471, - [SMALL_STATE(2786)] = 119515, - [SMALL_STATE(2787)] = 119573, - [SMALL_STATE(2788)] = 119637, - [SMALL_STATE(2789)] = 119707, - [SMALL_STATE(2790)] = 119751, - [SMALL_STATE(2791)] = 119795, - [SMALL_STATE(2792)] = 119841, - [SMALL_STATE(2793)] = 119913, - [SMALL_STATE(2794)] = 119959, - [SMALL_STATE(2795)] = 120031, - [SMALL_STATE(2796)] = 120077, - [SMALL_STATE(2797)] = 120123, - [SMALL_STATE(2798)] = 120169, - [SMALL_STATE(2799)] = 120213, - [SMALL_STATE(2800)] = 120259, - [SMALL_STATE(2801)] = 120309, - [SMALL_STATE(2802)] = 120355, - [SMALL_STATE(2803)] = 120399, - [SMALL_STATE(2804)] = 120467, - [SMALL_STATE(2805)] = 120517, - [SMALL_STATE(2806)] = 120567, - [SMALL_STATE(2807)] = 120613, - [SMALL_STATE(2808)] = 120659, - [SMALL_STATE(2809)] = 120705, - [SMALL_STATE(2810)] = 120751, - [SMALL_STATE(2811)] = 120809, - [SMALL_STATE(2812)] = 120865, - [SMALL_STATE(2813)] = 120915, - [SMALL_STATE(2814)] = 120961, - [SMALL_STATE(2815)] = 121021, - [SMALL_STATE(2816)] = 121089, - [SMALL_STATE(2817)] = 121159, - [SMALL_STATE(2818)] = 121205, - [SMALL_STATE(2819)] = 121291, - [SMALL_STATE(2820)] = 121337, - [SMALL_STATE(2821)] = 121403, - [SMALL_STATE(2822)] = 121446, - [SMALL_STATE(2823)] = 121489, - [SMALL_STATE(2824)] = 121534, - [SMALL_STATE(2825)] = 121577, - [SMALL_STATE(2826)] = 121620, - [SMALL_STATE(2827)] = 121665, - [SMALL_STATE(2828)] = 121710, - [SMALL_STATE(2829)] = 121753, - [SMALL_STATE(2830)] = 121796, - [SMALL_STATE(2831)] = 121839, - [SMALL_STATE(2832)] = 121882, - [SMALL_STATE(2833)] = 121925, - [SMALL_STATE(2834)] = 121968, - [SMALL_STATE(2835)] = 122011, - [SMALL_STATE(2836)] = 122054, - [SMALL_STATE(2837)] = 122099, - [SMALL_STATE(2838)] = 122146, - [SMALL_STATE(2839)] = 122189, - [SMALL_STATE(2840)] = 122236, - [SMALL_STATE(2841)] = 122279, - [SMALL_STATE(2842)] = 122322, - [SMALL_STATE(2843)] = 122365, - [SMALL_STATE(2844)] = 122408, - [SMALL_STATE(2845)] = 122451, - [SMALL_STATE(2846)] = 122496, - [SMALL_STATE(2847)] = 122541, - [SMALL_STATE(2848)] = 122586, - [SMALL_STATE(2849)] = 122631, - [SMALL_STATE(2850)] = 122676, - [SMALL_STATE(2851)] = 122719, - [SMALL_STATE(2852)] = 122762, - [SMALL_STATE(2853)] = 122805, - [SMALL_STATE(2854)] = 122848, - [SMALL_STATE(2855)] = 122893, - [SMALL_STATE(2856)] = 122964, - [SMALL_STATE(2857)] = 123009, - [SMALL_STATE(2858)] = 123054, - [SMALL_STATE(2859)] = 123097, - [SMALL_STATE(2860)] = 123140, - [SMALL_STATE(2861)] = 123211, - [SMALL_STATE(2862)] = 123258, - [SMALL_STATE(2863)] = 123301, - [SMALL_STATE(2864)] = 123344, - [SMALL_STATE(2865)] = 123387, - [SMALL_STATE(2866)] = 123430, - [SMALL_STATE(2867)] = 123475, - [SMALL_STATE(2868)] = 123518, - [SMALL_STATE(2869)] = 123561, - [SMALL_STATE(2870)] = 123604, - [SMALL_STATE(2871)] = 123649, - [SMALL_STATE(2872)] = 123692, - [SMALL_STATE(2873)] = 123735, - [SMALL_STATE(2874)] = 123778, - [SMALL_STATE(2875)] = 123821, - [SMALL_STATE(2876)] = 123864, - [SMALL_STATE(2877)] = 123907, - [SMALL_STATE(2878)] = 123950, - [SMALL_STATE(2879)] = 123993, - [SMALL_STATE(2880)] = 124036, - [SMALL_STATE(2881)] = 124085, - [SMALL_STATE(2882)] = 124128, - [SMALL_STATE(2883)] = 124199, - [SMALL_STATE(2884)] = 124270, - [SMALL_STATE(2885)] = 124313, - [SMALL_STATE(2886)] = 124384, - [SMALL_STATE(2887)] = 124427, - [SMALL_STATE(2888)] = 124470, - [SMALL_STATE(2889)] = 124513, - [SMALL_STATE(2890)] = 124556, - [SMALL_STATE(2891)] = 124627, - [SMALL_STATE(2892)] = 124674, - [SMALL_STATE(2893)] = 124717, - [SMALL_STATE(2894)] = 124760, - [SMALL_STATE(2895)] = 124803, - [SMALL_STATE(2896)] = 124846, - [SMALL_STATE(2897)] = 124888, - [SMALL_STATE(2898)] = 124930, - [SMALL_STATE(2899)] = 124972, - [SMALL_STATE(2900)] = 125014, - [SMALL_STATE(2901)] = 125056, - [SMALL_STATE(2902)] = 125098, - [SMALL_STATE(2903)] = 125140, - [SMALL_STATE(2904)] = 125182, - [SMALL_STATE(2905)] = 125224, - [SMALL_STATE(2906)] = 125268, - [SMALL_STATE(2907)] = 125310, - [SMALL_STATE(2908)] = 125352, - [SMALL_STATE(2909)] = 125394, - [SMALL_STATE(2910)] = 125474, - [SMALL_STATE(2911)] = 125516, - [SMALL_STATE(2912)] = 125558, - [SMALL_STATE(2913)] = 125600, - [SMALL_STATE(2914)] = 125642, - [SMALL_STATE(2915)] = 125684, - [SMALL_STATE(2916)] = 125726, - [SMALL_STATE(2917)] = 125806, - [SMALL_STATE(2918)] = 125884, - [SMALL_STATE(2919)] = 125926, - [SMALL_STATE(2920)] = 125968, - [SMALL_STATE(2921)] = 126010, - [SMALL_STATE(2922)] = 126052, - [SMALL_STATE(2923)] = 126094, - [SMALL_STATE(2924)] = 126136, - [SMALL_STATE(2925)] = 126178, - [SMALL_STATE(2926)] = 126220, - [SMALL_STATE(2927)] = 126262, - [SMALL_STATE(2928)] = 126304, - [SMALL_STATE(2929)] = 126346, - [SMALL_STATE(2930)] = 126388, - [SMALL_STATE(2931)] = 126436, - [SMALL_STATE(2932)] = 126478, - [SMALL_STATE(2933)] = 126520, - [SMALL_STATE(2934)] = 126562, - [SMALL_STATE(2935)] = 126604, - [SMALL_STATE(2936)] = 126646, - [SMALL_STATE(2937)] = 126688, - [SMALL_STATE(2938)] = 126730, - [SMALL_STATE(2939)] = 126772, - [SMALL_STATE(2940)] = 126814, - [SMALL_STATE(2941)] = 126856, - [SMALL_STATE(2942)] = 126898, - [SMALL_STATE(2943)] = 126940, - [SMALL_STATE(2944)] = 126982, - [SMALL_STATE(2945)] = 127024, - [SMALL_STATE(2946)] = 127066, - [SMALL_STATE(2947)] = 127108, - [SMALL_STATE(2948)] = 127150, - [SMALL_STATE(2949)] = 127192, - [SMALL_STATE(2950)] = 127237, - [SMALL_STATE(2951)] = 127278, - [SMALL_STATE(2952)] = 127323, - [SMALL_STATE(2953)] = 127367, - [SMALL_STATE(2954)] = 127411, - [SMALL_STATE(2955)] = 127455, - [SMALL_STATE(2956)] = 127537, - [SMALL_STATE(2957)] = 127619, - [SMALL_STATE(2958)] = 127663, - [SMALL_STATE(2959)] = 127702, - [SMALL_STATE(2960)] = 127747, - [SMALL_STATE(2961)] = 127792, - [SMALL_STATE(2962)] = 127868, - [SMALL_STATE(2963)] = 127944, - [SMALL_STATE(2964)] = 128020, - [SMALL_STATE(2965)] = 128072, - [SMALL_STATE(2966)] = 128148, - [SMALL_STATE(2967)] = 128224, - [SMALL_STATE(2968)] = 128300, - [SMALL_STATE(2969)] = 128376, - [SMALL_STATE(2970)] = 128452, - [SMALL_STATE(2971)] = 128528, - [SMALL_STATE(2972)] = 128604, - [SMALL_STATE(2973)] = 128680, - [SMALL_STATE(2974)] = 128756, - [SMALL_STATE(2975)] = 128832, - [SMALL_STATE(2976)] = 128908, - [SMALL_STATE(2977)] = 128984, - [SMALL_STATE(2978)] = 129060, - [SMALL_STATE(2979)] = 129136, - [SMALL_STATE(2980)] = 129212, - [SMALL_STATE(2981)] = 129258, - [SMALL_STATE(2982)] = 129334, - [SMALL_STATE(2983)] = 129410, - [SMALL_STATE(2984)] = 129454, - [SMALL_STATE(2985)] = 129496, - [SMALL_STATE(2986)] = 129542, - [SMALL_STATE(2987)] = 129588, - [SMALL_STATE(2988)] = 129664, - [SMALL_STATE(2989)] = 129740, - [SMALL_STATE(2990)] = 129816, - [SMALL_STATE(2991)] = 129892, - [SMALL_STATE(2992)] = 129968, - [SMALL_STATE(2993)] = 130044, - [SMALL_STATE(2994)] = 130093, - [SMALL_STATE(2995)] = 130142, - [SMALL_STATE(2996)] = 130181, - [SMALL_STATE(2997)] = 130230, - [SMALL_STATE(2998)] = 130281, - [SMALL_STATE(2999)] = 130351, - [SMALL_STATE(3000)] = 130397, - [SMALL_STATE(3001)] = 130467, - [SMALL_STATE(3002)] = 130507, - [SMALL_STATE(3003)] = 130577, - [SMALL_STATE(3004)] = 130647, - [SMALL_STATE(3005)] = 130717, - [SMALL_STATE(3006)] = 130787, - [SMALL_STATE(3007)] = 130827, - [SMALL_STATE(3008)] = 130897, - [SMALL_STATE(3009)] = 130945, - [SMALL_STATE(3010)] = 131015, - [SMALL_STATE(3011)] = 131085, - [SMALL_STATE(3012)] = 131133, - [SMALL_STATE(3013)] = 131203, - [SMALL_STATE(3014)] = 131257, - [SMALL_STATE(3015)] = 131303, - [SMALL_STATE(3016)] = 131351, - [SMALL_STATE(3017)] = 131421, - [SMALL_STATE(3018)] = 131491, - [SMALL_STATE(3019)] = 131537, - [SMALL_STATE(3020)] = 131583, - [SMALL_STATE(3021)] = 131634, - [SMALL_STATE(3022)] = 131687, - [SMALL_STATE(3023)] = 131724, - [SMALL_STATE(3024)] = 131761, - [SMALL_STATE(3025)] = 131800, - [SMALL_STATE(3026)] = 131839, - [SMALL_STATE(3027)] = 131884, - [SMALL_STATE(3028)] = 131935, - [SMALL_STATE(3029)] = 131982, - [SMALL_STATE(3030)] = 132033, - [SMALL_STATE(3031)] = 132078, - [SMALL_STATE(3032)] = 132123, - [SMALL_STATE(3033)] = 132168, - [SMALL_STATE(3034)] = 132216, - [SMALL_STATE(3035)] = 132254, - [SMALL_STATE(3036)] = 132292, - [SMALL_STATE(3037)] = 132342, - [SMALL_STATE(3038)] = 132390, - [SMALL_STATE(3039)] = 132438, - [SMALL_STATE(3040)] = 132486, - [SMALL_STATE(3041)] = 132532, - [SMALL_STATE(3042)] = 132566, - [SMALL_STATE(3043)] = 132616, - [SMALL_STATE(3044)] = 132652, - [SMALL_STATE(3045)] = 132686, - [SMALL_STATE(3046)] = 132736, - [SMALL_STATE(3047)] = 132774, - [SMALL_STATE(3048)] = 132812, - [SMALL_STATE(3049)] = 132848, - [SMALL_STATE(3050)] = 132882, - [SMALL_STATE(3051)] = 132922, - [SMALL_STATE(3052)] = 132962, - [SMALL_STATE(3053)] = 132995, - [SMALL_STATE(3054)] = 133028, - [SMALL_STATE(3055)] = 133075, - [SMALL_STATE(3056)] = 133114, - [SMALL_STATE(3057)] = 133155, - [SMALL_STATE(3058)] = 133192, - [SMALL_STATE(3059)] = 133231, - [SMALL_STATE(3060)] = 133272, - [SMALL_STATE(3061)] = 133319, - [SMALL_STATE(3062)] = 133356, - [SMALL_STATE(3063)] = 133395, - [SMALL_STATE(3064)] = 133430, - [SMALL_STATE(3065)] = 133463, - [SMALL_STATE(3066)] = 133510, - [SMALL_STATE(3067)] = 133549, - [SMALL_STATE(3068)] = 133584, - [SMALL_STATE(3069)] = 133635, - [SMALL_STATE(3070)] = 133682, - [SMALL_STATE(3071)] = 133719, - [SMALL_STATE(3072)] = 133754, - [SMALL_STATE(3073)] = 133791, - [SMALL_STATE(3074)] = 133826, - [SMALL_STATE(3075)] = 133867, - [SMALL_STATE(3076)] = 133906, - [SMALL_STATE(3077)] = 133953, - [SMALL_STATE(3078)] = 133992, - [SMALL_STATE(3079)] = 134027, - [SMALL_STATE(3080)] = 134075, - [SMALL_STATE(3081)] = 134113, - [SMALL_STATE(3082)] = 134147, - [SMALL_STATE(3083)] = 134181, - [SMALL_STATE(3084)] = 134213, - [SMALL_STATE(3085)] = 134253, - [SMALL_STATE(3086)] = 134289, - [SMALL_STATE(3087)] = 134325, - [SMALL_STATE(3088)] = 134359, - [SMALL_STATE(3089)] = 134391, - [SMALL_STATE(3090)] = 134423, - [SMALL_STATE(3091)] = 134455, - [SMALL_STATE(3092)] = 134487, - [SMALL_STATE(3093)] = 134525, - [SMALL_STATE(3094)] = 134571, - [SMALL_STATE(3095)] = 134611, - [SMALL_STATE(3096)] = 134649, - [SMALL_STATE(3097)] = 134681, - [SMALL_STATE(3098)] = 134717, - [SMALL_STATE(3099)] = 134755, - [SMALL_STATE(3100)] = 134795, - [SMALL_STATE(3101)] = 134833, - [SMALL_STATE(3102)] = 134871, - [SMALL_STATE(3103)] = 134903, - [SMALL_STATE(3104)] = 134939, - [SMALL_STATE(3105)] = 134977, - [SMALL_STATE(3106)] = 135011, - [SMALL_STATE(3107)] = 135049, - [SMALL_STATE(3108)] = 135081, - [SMALL_STATE(3109)] = 135113, - [SMALL_STATE(3110)] = 135151, - [SMALL_STATE(3111)] = 135185, - [SMALL_STATE(3112)] = 135221, - [SMALL_STATE(3113)] = 135259, - [SMALL_STATE(3114)] = 135291, - [SMALL_STATE(3115)] = 135327, - [SMALL_STATE(3116)] = 135359, - [SMALL_STATE(3117)] = 135407, - [SMALL_STATE(3118)] = 135439, - [SMALL_STATE(3119)] = 135477, - [SMALL_STATE(3120)] = 135525, - [SMALL_STATE(3121)] = 135557, - [SMALL_STATE(3122)] = 135588, - [SMALL_STATE(3123)] = 135619, - [SMALL_STATE(3124)] = 135656, - [SMALL_STATE(3125)] = 135689, - [SMALL_STATE(3126)] = 135734, - [SMALL_STATE(3127)] = 135767, - [SMALL_STATE(3128)] = 135798, - [SMALL_STATE(3129)] = 135831, - [SMALL_STATE(3130)] = 135866, - [SMALL_STATE(3131)] = 135903, - [SMALL_STATE(3132)] = 135938, - [SMALL_STATE(3133)] = 135973, - [SMALL_STATE(3134)] = 136010, - [SMALL_STATE(3135)] = 136045, - [SMALL_STATE(3136)] = 136076, - [SMALL_STATE(3137)] = 136115, - [SMALL_STATE(3138)] = 136152, - [SMALL_STATE(3139)] = 136197, - [SMALL_STATE(3140)] = 136228, - [SMALL_STATE(3141)] = 136259, - [SMALL_STATE(3142)] = 136290, - [SMALL_STATE(3143)] = 136321, - [SMALL_STATE(3144)] = 136360, - [SMALL_STATE(3145)] = 136393, - [SMALL_STATE(3146)] = 136438, - [SMALL_STATE(3147)] = 136483, - [SMALL_STATE(3148)] = 136528, - [SMALL_STATE(3149)] = 136567, - [SMALL_STATE(3150)] = 136604, - [SMALL_STATE(3151)] = 136635, - [SMALL_STATE(3152)] = 136676, - [SMALL_STATE(3153)] = 136707, - [SMALL_STATE(3154)] = 136744, - [SMALL_STATE(3155)] = 136775, - [SMALL_STATE(3156)] = 136810, - [SMALL_STATE(3157)] = 136843, - [SMALL_STATE(3158)] = 136874, - [SMALL_STATE(3159)] = 136911, - [SMALL_STATE(3160)] = 136942, - [SMALL_STATE(3161)] = 136972, - [SMALL_STATE(3162)] = 137002, - [SMALL_STATE(3163)] = 137040, - [SMALL_STATE(3164)] = 137072, - [SMALL_STATE(3165)] = 137102, - [SMALL_STATE(3166)] = 137134, - [SMALL_STATE(3167)] = 137168, - [SMALL_STATE(3168)] = 137218, - [SMALL_STATE(3169)] = 137252, - [SMALL_STATE(3170)] = 137290, - [SMALL_STATE(3171)] = 137320, - [SMALL_STATE(3172)] = 137350, - [SMALL_STATE(3173)] = 137380, - [SMALL_STATE(3174)] = 137412, - [SMALL_STATE(3175)] = 137448, - [SMALL_STATE(3176)] = 137482, - [SMALL_STATE(3177)] = 137514, - [SMALL_STATE(3178)] = 137552, - [SMALL_STATE(3179)] = 137584, - [SMALL_STATE(3180)] = 137620, - [SMALL_STATE(3181)] = 137652, - [SMALL_STATE(3182)] = 137688, - [SMALL_STATE(3183)] = 137720, - [SMALL_STATE(3184)] = 137758, - [SMALL_STATE(3185)] = 137788, - [SMALL_STATE(3186)] = 137818, - [SMALL_STATE(3187)] = 137870, - [SMALL_STATE(3188)] = 137922, - [SMALL_STATE(3189)] = 137958, - [SMALL_STATE(3190)] = 137990, - [SMALL_STATE(3191)] = 138028, - [SMALL_STATE(3192)] = 138064, - [SMALL_STATE(3193)] = 138100, - [SMALL_STATE(3194)] = 138132, - [SMALL_STATE(3195)] = 138168, - [SMALL_STATE(3196)] = 138198, - [SMALL_STATE(3197)] = 138230, - [SMALL_STATE(3198)] = 138264, - [SMALL_STATE(3199)] = 138300, - [SMALL_STATE(3200)] = 138332, - [SMALL_STATE(3201)] = 138372, - [SMALL_STATE(3202)] = 138424, - [SMALL_STATE(3203)] = 138456, - [SMALL_STATE(3204)] = 138492, - [SMALL_STATE(3205)] = 138544, - [SMALL_STATE(3206)] = 138576, - [SMALL_STATE(3207)] = 138608, - [SMALL_STATE(3208)] = 138640, - [SMALL_STATE(3209)] = 138672, - [SMALL_STATE(3210)] = 138702, - [SMALL_STATE(3211)] = 138732, - [SMALL_STATE(3212)] = 138762, - [SMALL_STATE(3213)] = 138796, - [SMALL_STATE(3214)] = 138829, - [SMALL_STATE(3215)] = 138860, - [SMALL_STATE(3216)] = 138889, - [SMALL_STATE(3217)] = 138918, - [SMALL_STATE(3218)] = 138949, - [SMALL_STATE(3219)] = 138978, - [SMALL_STATE(3220)] = 139009, - [SMALL_STATE(3221)] = 139040, - [SMALL_STATE(3222)] = 139069, - [SMALL_STATE(3223)] = 139100, - [SMALL_STATE(3224)] = 139129, - [SMALL_STATE(3225)] = 139158, - [SMALL_STATE(3226)] = 139193, - [SMALL_STATE(3227)] = 139224, - [SMALL_STATE(3228)] = 139255, - [SMALL_STATE(3229)] = 139284, - [SMALL_STATE(3230)] = 139313, - [SMALL_STATE(3231)] = 139350, - [SMALL_STATE(3232)] = 139379, - [SMALL_STATE(3233)] = 139416, - [SMALL_STATE(3234)] = 139445, - [SMALL_STATE(3235)] = 139478, - [SMALL_STATE(3236)] = 139509, - [SMALL_STATE(3237)] = 139538, - [SMALL_STATE(3238)] = 139567, - [SMALL_STATE(3239)] = 139596, - [SMALL_STATE(3240)] = 139625, - [SMALL_STATE(3241)] = 139662, - [SMALL_STATE(3242)] = 139699, - [SMALL_STATE(3243)] = 139736, - [SMALL_STATE(3244)] = 139767, - [SMALL_STATE(3245)] = 139798, - [SMALL_STATE(3246)] = 139827, - [SMALL_STATE(3247)] = 139864, - [SMALL_STATE(3248)] = 139895, - [SMALL_STATE(3249)] = 139926, - [SMALL_STATE(3250)] = 139957, - [SMALL_STATE(3251)] = 139986, - [SMALL_STATE(3252)] = 140017, - [SMALL_STATE(3253)] = 140046, - [SMALL_STATE(3254)] = 140075, - [SMALL_STATE(3255)] = 140104, - [SMALL_STATE(3256)] = 140135, - [SMALL_STATE(3257)] = 140168, - [SMALL_STATE(3258)] = 140199, - [SMALL_STATE(3259)] = 140230, - [SMALL_STATE(3260)] = 140267, - [SMALL_STATE(3261)] = 140298, - [SMALL_STATE(3262)] = 140329, - [SMALL_STATE(3263)] = 140358, - [SMALL_STATE(3264)] = 140395, - [SMALL_STATE(3265)] = 140432, - [SMALL_STATE(3266)] = 140469, - [SMALL_STATE(3267)] = 140506, - [SMALL_STATE(3268)] = 140543, - [SMALL_STATE(3269)] = 140574, - [SMALL_STATE(3270)] = 140605, - [SMALL_STATE(3271)] = 140642, - [SMALL_STATE(3272)] = 140671, - [SMALL_STATE(3273)] = 140702, - [SMALL_STATE(3274)] = 140731, - [SMALL_STATE(3275)] = 140760, - [SMALL_STATE(3276)] = 140789, - [SMALL_STATE(3277)] = 140818, - [SMALL_STATE(3278)] = 140849, - [SMALL_STATE(3279)] = 140878, - [SMALL_STATE(3280)] = 140907, - [SMALL_STATE(3281)] = 140938, - [SMALL_STATE(3282)] = 140969, - [SMALL_STATE(3283)] = 141000, - [SMALL_STATE(3284)] = 141029, - [SMALL_STATE(3285)] = 141058, - [SMALL_STATE(3286)] = 141086, - [SMALL_STATE(3287)] = 141122, - [SMALL_STATE(3288)] = 141150, - [SMALL_STATE(3289)] = 141194, - [SMALL_STATE(3290)] = 141222, - [SMALL_STATE(3291)] = 141266, - [SMALL_STATE(3292)] = 141302, - [SMALL_STATE(3293)] = 141332, - [SMALL_STATE(3294)] = 141376, - [SMALL_STATE(3295)] = 141406, - [SMALL_STATE(3296)] = 141438, - [SMALL_STATE(3297)] = 141474, - [SMALL_STATE(3298)] = 141510, - [SMALL_STATE(3299)] = 141546, - [SMALL_STATE(3300)] = 141590, - [SMALL_STATE(3301)] = 141626, - [SMALL_STATE(3302)] = 141656, - [SMALL_STATE(3303)] = 141690, - [SMALL_STATE(3304)] = 141720, - [SMALL_STATE(3305)] = 141750, - [SMALL_STATE(3306)] = 141786, - [SMALL_STATE(3307)] = 141814, - [SMALL_STATE(3308)] = 141852, - [SMALL_STATE(3309)] = 141882, - [SMALL_STATE(3310)] = 141910, - [SMALL_STATE(3311)] = 141938, - [SMALL_STATE(3312)] = 141966, - [SMALL_STATE(3313)] = 141994, - [SMALL_STATE(3314)] = 142026, - [SMALL_STATE(3315)] = 142064, - [SMALL_STATE(3316)] = 142092, - [SMALL_STATE(3317)] = 142122, - [SMALL_STATE(3318)] = 142150, - [SMALL_STATE(3319)] = 142180, - [SMALL_STATE(3320)] = 142208, - [SMALL_STATE(3321)] = 142238, - [SMALL_STATE(3322)] = 142266, - [SMALL_STATE(3323)] = 142300, - [SMALL_STATE(3324)] = 142332, - [SMALL_STATE(3325)] = 142360, - [SMALL_STATE(3326)] = 142390, - [SMALL_STATE(3327)] = 142418, - [SMALL_STATE(3328)] = 142450, - [SMALL_STATE(3329)] = 142482, - [SMALL_STATE(3330)] = 142514, - [SMALL_STATE(3331)] = 142546, - [SMALL_STATE(3332)] = 142578, - [SMALL_STATE(3333)] = 142614, - [SMALL_STATE(3334)] = 142642, - [SMALL_STATE(3335)] = 142678, - [SMALL_STATE(3336)] = 142708, - [SMALL_STATE(3337)] = 142738, - [SMALL_STATE(3338)] = 142766, - [SMALL_STATE(3339)] = 142810, - [SMALL_STATE(3340)] = 142846, - [SMALL_STATE(3341)] = 142874, - [SMALL_STATE(3342)] = 142902, - [SMALL_STATE(3343)] = 142930, - [SMALL_STATE(3344)] = 142966, - [SMALL_STATE(3345)] = 143002, - [SMALL_STATE(3346)] = 143030, - [SMALL_STATE(3347)] = 143060, - [SMALL_STATE(3348)] = 143090, - [SMALL_STATE(3349)] = 143118, - [SMALL_STATE(3350)] = 143154, - [SMALL_STATE(3351)] = 143181, - [SMALL_STATE(3352)] = 143210, - [SMALL_STATE(3353)] = 143243, - [SMALL_STATE(3354)] = 143274, - [SMALL_STATE(3355)] = 143305, - [SMALL_STATE(3356)] = 143334, - [SMALL_STATE(3357)] = 143365, - [SMALL_STATE(3358)] = 143390, - [SMALL_STATE(3359)] = 143415, - [SMALL_STATE(3360)] = 143448, - [SMALL_STATE(3361)] = 143479, - [SMALL_STATE(3362)] = 143508, - [SMALL_STATE(3363)] = 143535, - [SMALL_STATE(3364)] = 143562, - [SMALL_STATE(3365)] = 143593, - [SMALL_STATE(3366)] = 143620, - [SMALL_STATE(3367)] = 143645, - [SMALL_STATE(3368)] = 143678, - [SMALL_STATE(3369)] = 143703, - [SMALL_STATE(3370)] = 143730, - [SMALL_STATE(3371)] = 143757, - [SMALL_STATE(3372)] = 143788, - [SMALL_STATE(3373)] = 143815, - [SMALL_STATE(3374)] = 143846, - [SMALL_STATE(3375)] = 143873, - [SMALL_STATE(3376)] = 143900, - [SMALL_STATE(3377)] = 143927, - [SMALL_STATE(3378)] = 143956, - [SMALL_STATE(3379)] = 143983, - [SMALL_STATE(3380)] = 144014, - [SMALL_STATE(3381)] = 144045, - [SMALL_STATE(3382)] = 144076, - [SMALL_STATE(3383)] = 144105, - [SMALL_STATE(3384)] = 144134, - [SMALL_STATE(3385)] = 144159, - [SMALL_STATE(3386)] = 144190, - [SMALL_STATE(3387)] = 144221, - [SMALL_STATE(3388)] = 144252, - [SMALL_STATE(3389)] = 144279, - [SMALL_STATE(3390)] = 144310, - [SMALL_STATE(3391)] = 144345, - [SMALL_STATE(3392)] = 144380, - [SMALL_STATE(3393)] = 144407, - [SMALL_STATE(3394)] = 144434, - [SMALL_STATE(3395)] = 144465, - [SMALL_STATE(3396)] = 144496, - [SMALL_STATE(3397)] = 144523, - [SMALL_STATE(3398)] = 144554, - [SMALL_STATE(3399)] = 144585, - [SMALL_STATE(3400)] = 144616, - [SMALL_STATE(3401)] = 144649, - [SMALL_STATE(3402)] = 144680, - [SMALL_STATE(3403)] = 144711, - [SMALL_STATE(3404)] = 144736, - [SMALL_STATE(3405)] = 144761, - [SMALL_STATE(3406)] = 144790, - [SMALL_STATE(3407)] = 144821, - [SMALL_STATE(3408)] = 144852, - [SMALL_STATE(3409)] = 144881, - [SMALL_STATE(3410)] = 144914, - [SMALL_STATE(3411)] = 144941, - [SMALL_STATE(3412)] = 144974, - [SMALL_STATE(3413)] = 145001, - [SMALL_STATE(3414)] = 145032, - [SMALL_STATE(3415)] = 145063, - [SMALL_STATE(3416)] = 145094, - [SMALL_STATE(3417)] = 145125, - [SMALL_STATE(3418)] = 145152, - [SMALL_STATE(3419)] = 145179, - [SMALL_STATE(3420)] = 145208, - [SMALL_STATE(3421)] = 145237, - [SMALL_STATE(3422)] = 145268, - [SMALL_STATE(3423)] = 145295, - [SMALL_STATE(3424)] = 145326, - [SMALL_STATE(3425)] = 145353, - [SMALL_STATE(3426)] = 145382, - [SMALL_STATE(3427)] = 145415, - [SMALL_STATE(3428)] = 145448, - [SMALL_STATE(3429)] = 145477, - [SMALL_STATE(3430)] = 145508, - [SMALL_STATE(3431)] = 145533, - [SMALL_STATE(3432)] = 145560, - [SMALL_STATE(3433)] = 145585, - [SMALL_STATE(3434)] = 145616, - [SMALL_STATE(3435)] = 145643, - [SMALL_STATE(3436)] = 145676, - [SMALL_STATE(3437)] = 145709, - [SMALL_STATE(3438)] = 145740, - [SMALL_STATE(3439)] = 145771, - [SMALL_STATE(3440)] = 145798, - [SMALL_STATE(3441)] = 145835, - [SMALL_STATE(3442)] = 145866, - [SMALL_STATE(3443)] = 145893, - [SMALL_STATE(3444)] = 145926, - [SMALL_STATE(3445)] = 145953, - [SMALL_STATE(3446)] = 145980, - [SMALL_STATE(3447)] = 146011, - [SMALL_STATE(3448)] = 146040, - [SMALL_STATE(3449)] = 146069, - [SMALL_STATE(3450)] = 146100, - [SMALL_STATE(3451)] = 146127, - [SMALL_STATE(3452)] = 146154, - [SMALL_STATE(3453)] = 146185, - [SMALL_STATE(3454)] = 146216, - [SMALL_STATE(3455)] = 146247, - [SMALL_STATE(3456)] = 146278, - [SMALL_STATE(3457)] = 146309, - [SMALL_STATE(3458)] = 146340, - [SMALL_STATE(3459)] = 146371, - [SMALL_STATE(3460)] = 146398, - [SMALL_STATE(3461)] = 146431, - [SMALL_STATE(3462)] = 146462, - [SMALL_STATE(3463)] = 146493, - [SMALL_STATE(3464)] = 146520, - [SMALL_STATE(3465)] = 146547, - [SMALL_STATE(3466)] = 146576, - [SMALL_STATE(3467)] = 146603, - [SMALL_STATE(3468)] = 146632, - [SMALL_STATE(3469)] = 146661, - [SMALL_STATE(3470)] = 146694, - [SMALL_STATE(3471)] = 146725, - [SMALL_STATE(3472)] = 146754, - [SMALL_STATE(3473)] = 146785, - [SMALL_STATE(3474)] = 146816, - [SMALL_STATE(3475)] = 146849, - [SMALL_STATE(3476)] = 146880, - [SMALL_STATE(3477)] = 146911, - [SMALL_STATE(3478)] = 146944, - [SMALL_STATE(3479)] = 146969, - [SMALL_STATE(3480)] = 146994, - [SMALL_STATE(3481)] = 147025, - [SMALL_STATE(3482)] = 147052, - [SMALL_STATE(3483)] = 147085, - [SMALL_STATE(3484)] = 147114, - [SMALL_STATE(3485)] = 147145, - [SMALL_STATE(3486)] = 147176, - [SMALL_STATE(3487)] = 147207, - [SMALL_STATE(3488)] = 147234, - [SMALL_STATE(3489)] = 147265, - [SMALL_STATE(3490)] = 147298, - [SMALL_STATE(3491)] = 147333, - [SMALL_STATE(3492)] = 147368, - [SMALL_STATE(3493)] = 147403, - [SMALL_STATE(3494)] = 147438, - [SMALL_STATE(3495)] = 147473, - [SMALL_STATE(3496)] = 147508, - [SMALL_STATE(3497)] = 147535, - [SMALL_STATE(3498)] = 147564, - [SMALL_STATE(3499)] = 147591, - [SMALL_STATE(3500)] = 147626, - [SMALL_STATE(3501)] = 147653, - [SMALL_STATE(3502)] = 147686, - [SMALL_STATE(3503)] = 147717, - [SMALL_STATE(3504)] = 147748, - [SMALL_STATE(3505)] = 147775, - [SMALL_STATE(3506)] = 147806, - [SMALL_STATE(3507)] = 147833, - [SMALL_STATE(3508)] = 147868, - [SMALL_STATE(3509)] = 147895, - [SMALL_STATE(3510)] = 147922, - [SMALL_STATE(3511)] = 147955, - [SMALL_STATE(3512)] = 147988, - [SMALL_STATE(3513)] = 148019, - [SMALL_STATE(3514)] = 148050, - [SMALL_STATE(3515)] = 148081, - [SMALL_STATE(3516)] = 148108, - [SMALL_STATE(3517)] = 148141, - [SMALL_STATE(3518)] = 148170, - [SMALL_STATE(3519)] = 148197, - [SMALL_STATE(3520)] = 148226, - [SMALL_STATE(3521)] = 148259, - [SMALL_STATE(3522)] = 148286, - [SMALL_STATE(3523)] = 148313, - [SMALL_STATE(3524)] = 148344, - [SMALL_STATE(3525)] = 148376, - [SMALL_STATE(3526)] = 148404, - [SMALL_STATE(3527)] = 148434, - [SMALL_STATE(3528)] = 148486, - [SMALL_STATE(3529)] = 148538, - [SMALL_STATE(3530)] = 148568, - [SMALL_STATE(3531)] = 148598, - [SMALL_STATE(3532)] = 148622, - [SMALL_STATE(3533)] = 148646, - [SMALL_STATE(3534)] = 148676, - [SMALL_STATE(3535)] = 148708, - [SMALL_STATE(3536)] = 148738, - [SMALL_STATE(3537)] = 148762, - [SMALL_STATE(3538)] = 148814, - [SMALL_STATE(3539)] = 148844, - [SMALL_STATE(3540)] = 148874, - [SMALL_STATE(3541)] = 148900, - [SMALL_STATE(3542)] = 148930, - [SMALL_STATE(3543)] = 148958, - [SMALL_STATE(3544)] = 148984, - [SMALL_STATE(3545)] = 149012, - [SMALL_STATE(3546)] = 149038, - [SMALL_STATE(3547)] = 149090, - [SMALL_STATE(3548)] = 149114, - [SMALL_STATE(3549)] = 149166, - [SMALL_STATE(3550)] = 149196, - [SMALL_STATE(3551)] = 149222, - [SMALL_STATE(3552)] = 149246, - [SMALL_STATE(3553)] = 149298, - [SMALL_STATE(3554)] = 149350, - [SMALL_STATE(3555)] = 149378, - [SMALL_STATE(3556)] = 149406, - [SMALL_STATE(3557)] = 149432, - [SMALL_STATE(3558)] = 149462, - [SMALL_STATE(3559)] = 149488, - [SMALL_STATE(3560)] = 149514, - [SMALL_STATE(3561)] = 149544, - [SMALL_STATE(3562)] = 149574, - [SMALL_STATE(3563)] = 149604, - [SMALL_STATE(3564)] = 149630, - [SMALL_STATE(3565)] = 149660, - [SMALL_STATE(3566)] = 149686, - [SMALL_STATE(3567)] = 149716, - [SMALL_STATE(3568)] = 149744, - [SMALL_STATE(3569)] = 149776, - [SMALL_STATE(3570)] = 149804, - [SMALL_STATE(3571)] = 149834, - [SMALL_STATE(3572)] = 149864, - [SMALL_STATE(3573)] = 149892, - [SMALL_STATE(3574)] = 149916, - [SMALL_STATE(3575)] = 149960, - [SMALL_STATE(3576)] = 149986, - [SMALL_STATE(3577)] = 150012, - [SMALL_STATE(3578)] = 150038, - [SMALL_STATE(3579)] = 150064, - [SMALL_STATE(3580)] = 150090, - [SMALL_STATE(3581)] = 150118, - [SMALL_STATE(3582)] = 150144, - [SMALL_STATE(3583)] = 150170, - [SMALL_STATE(3584)] = 150194, - [SMALL_STATE(3585)] = 150218, - [SMALL_STATE(3586)] = 150244, - [SMALL_STATE(3587)] = 150270, - [SMALL_STATE(3588)] = 150296, - [SMALL_STATE(3589)] = 150322, - [SMALL_STATE(3590)] = 150352, - [SMALL_STATE(3591)] = 150378, - [SMALL_STATE(3592)] = 150406, - [SMALL_STATE(3593)] = 150434, - [SMALL_STATE(3594)] = 150458, - [SMALL_STATE(3595)] = 150484, - [SMALL_STATE(3596)] = 150510, - [SMALL_STATE(3597)] = 150540, - [SMALL_STATE(3598)] = 150564, - [SMALL_STATE(3599)] = 150592, - [SMALL_STATE(3600)] = 150620, - [SMALL_STATE(3601)] = 150666, - [SMALL_STATE(3602)] = 150718, - [SMALL_STATE(3603)] = 150748, - [SMALL_STATE(3604)] = 150778, - [SMALL_STATE(3605)] = 150810, - [SMALL_STATE(3606)] = 150836, - [SMALL_STATE(3607)] = 150862, - [SMALL_STATE(3608)] = 150892, - [SMALL_STATE(3609)] = 150922, - [SMALL_STATE(3610)] = 150952, - [SMALL_STATE(3611)] = 150976, - [SMALL_STATE(3612)] = 151028, - [SMALL_STATE(3613)] = 151080, - [SMALL_STATE(3614)] = 151110, - [SMALL_STATE(3615)] = 151134, - [SMALL_STATE(3616)] = 151158, - [SMALL_STATE(3617)] = 151188, - [SMALL_STATE(3618)] = 151214, - [SMALL_STATE(3619)] = 151244, - [SMALL_STATE(3620)] = 151269, - [SMALL_STATE(3621)] = 151298, - [SMALL_STATE(3622)] = 151323, - [SMALL_STATE(3623)] = 151350, - [SMALL_STATE(3624)] = 151379, - [SMALL_STATE(3625)] = 151404, - [SMALL_STATE(3626)] = 151429, - [SMALL_STATE(3627)] = 151458, - [SMALL_STATE(3628)] = 151487, - [SMALL_STATE(3629)] = 151512, - [SMALL_STATE(3630)] = 151537, - [SMALL_STATE(3631)] = 151562, - [SMALL_STATE(3632)] = 151587, - [SMALL_STATE(3633)] = 151616, - [SMALL_STATE(3634)] = 151641, - [SMALL_STATE(3635)] = 151666, - [SMALL_STATE(3636)] = 151691, - [SMALL_STATE(3637)] = 151716, - [SMALL_STATE(3638)] = 151741, - [SMALL_STATE(3639)] = 151766, - [SMALL_STATE(3640)] = 151791, - [SMALL_STATE(3641)] = 151820, - [SMALL_STATE(3642)] = 151845, - [SMALL_STATE(3643)] = 151870, - [SMALL_STATE(3644)] = 151895, - [SMALL_STATE(3645)] = 151920, - [SMALL_STATE(3646)] = 151949, - [SMALL_STATE(3647)] = 151974, - [SMALL_STATE(3648)] = 151999, - [SMALL_STATE(3649)] = 152028, - [SMALL_STATE(3650)] = 152059, - [SMALL_STATE(3651)] = 152088, - [SMALL_STATE(3652)] = 152113, - [SMALL_STATE(3653)] = 152138, - [SMALL_STATE(3654)] = 152163, - [SMALL_STATE(3655)] = 152188, - [SMALL_STATE(3656)] = 152213, - [SMALL_STATE(3657)] = 152256, - [SMALL_STATE(3658)] = 152281, - [SMALL_STATE(3659)] = 152310, - [SMALL_STATE(3660)] = 152335, - [SMALL_STATE(3661)] = 152360, - [SMALL_STATE(3662)] = 152385, - [SMALL_STATE(3663)] = 152416, - [SMALL_STATE(3664)] = 152441, - [SMALL_STATE(3665)] = 152466, - [SMALL_STATE(3666)] = 152491, - [SMALL_STATE(3667)] = 152516, - [SMALL_STATE(3668)] = 152545, - [SMALL_STATE(3669)] = 152570, - [SMALL_STATE(3670)] = 152595, - [SMALL_STATE(3671)] = 152620, - [SMALL_STATE(3672)] = 152645, - [SMALL_STATE(3673)] = 152670, - [SMALL_STATE(3674)] = 152695, - [SMALL_STATE(3675)] = 152720, - [SMALL_STATE(3676)] = 152747, - [SMALL_STATE(3677)] = 152772, - [SMALL_STATE(3678)] = 152797, - [SMALL_STATE(3679)] = 152836, - [SMALL_STATE(3680)] = 152861, - [SMALL_STATE(3681)] = 152886, - [SMALL_STATE(3682)] = 152911, - [SMALL_STATE(3683)] = 152936, - [SMALL_STATE(3684)] = 152961, - [SMALL_STATE(3685)] = 152990, - [SMALL_STATE(3686)] = 153015, - [SMALL_STATE(3687)] = 153044, - [SMALL_STATE(3688)] = 153069, - [SMALL_STATE(3689)] = 153098, - [SMALL_STATE(3690)] = 153123, - [SMALL_STATE(3691)] = 153148, - [SMALL_STATE(3692)] = 153177, - [SMALL_STATE(3693)] = 153206, - [SMALL_STATE(3694)] = 153235, - [SMALL_STATE(3695)] = 153258, - [SMALL_STATE(3696)] = 153283, - [SMALL_STATE(3697)] = 153308, - [SMALL_STATE(3698)] = 153337, - [SMALL_STATE(3699)] = 153362, - [SMALL_STATE(3700)] = 153389, - [SMALL_STATE(3701)] = 153414, - [SMALL_STATE(3702)] = 153439, - [SMALL_STATE(3703)] = 153468, - [SMALL_STATE(3704)] = 153491, - [SMALL_STATE(3705)] = 153520, - [SMALL_STATE(3706)] = 153549, - [SMALL_STATE(3707)] = 153574, - [SMALL_STATE(3708)] = 153599, - [SMALL_STATE(3709)] = 153628, - [SMALL_STATE(3710)] = 153657, - [SMALL_STATE(3711)] = 153686, - [SMALL_STATE(3712)] = 153715, - [SMALL_STATE(3713)] = 153744, - [SMALL_STATE(3714)] = 153773, - [SMALL_STATE(3715)] = 153798, - [SMALL_STATE(3716)] = 153823, - [SMALL_STATE(3717)] = 153848, - [SMALL_STATE(3718)] = 153873, - [SMALL_STATE(3719)] = 153898, - [SMALL_STATE(3720)] = 153923, - [SMALL_STATE(3721)] = 153952, - [SMALL_STATE(3722)] = 153981, - [SMALL_STATE(3723)] = 154010, - [SMALL_STATE(3724)] = 154039, - [SMALL_STATE(3725)] = 154064, - [SMALL_STATE(3726)] = 154089, - [SMALL_STATE(3727)] = 154118, - [SMALL_STATE(3728)] = 154143, - [SMALL_STATE(3729)] = 154172, - [SMALL_STATE(3730)] = 154201, - [SMALL_STATE(3731)] = 154228, - [SMALL_STATE(3732)] = 154257, - [SMALL_STATE(3733)] = 154284, - [SMALL_STATE(3734)] = 154309, - [SMALL_STATE(3735)] = 154334, - [SMALL_STATE(3736)] = 154361, - [SMALL_STATE(3737)] = 154388, - [SMALL_STATE(3738)] = 154413, - [SMALL_STATE(3739)] = 154442, - [SMALL_STATE(3740)] = 154467, - [SMALL_STATE(3741)] = 154492, - [SMALL_STATE(3742)] = 154521, - [SMALL_STATE(3743)] = 154546, - [SMALL_STATE(3744)] = 154571, - [SMALL_STATE(3745)] = 154596, - [SMALL_STATE(3746)] = 154625, - [SMALL_STATE(3747)] = 154650, - [SMALL_STATE(3748)] = 154675, - [SMALL_STATE(3749)] = 154700, - [SMALL_STATE(3750)] = 154729, - [SMALL_STATE(3751)] = 154754, - [SMALL_STATE(3752)] = 154779, - [SMALL_STATE(3753)] = 154804, - [SMALL_STATE(3754)] = 154833, - [SMALL_STATE(3755)] = 154862, - [SMALL_STATE(3756)] = 154891, - [SMALL_STATE(3757)] = 154916, - [SMALL_STATE(3758)] = 154941, - [SMALL_STATE(3759)] = 154970, - [SMALL_STATE(3760)] = 155001, - [SMALL_STATE(3761)] = 155026, - [SMALL_STATE(3762)] = 155051, - [SMALL_STATE(3763)] = 155080, - [SMALL_STATE(3764)] = 155109, - [SMALL_STATE(3765)] = 155134, - [SMALL_STATE(3766)] = 155159, - [SMALL_STATE(3767)] = 155184, - [SMALL_STATE(3768)] = 155209, - [SMALL_STATE(3769)] = 155234, - [SMALL_STATE(3770)] = 155259, - [SMALL_STATE(3771)] = 155288, - [SMALL_STATE(3772)] = 155313, - [SMALL_STATE(3773)] = 155338, - [SMALL_STATE(3774)] = 155363, - [SMALL_STATE(3775)] = 155388, - [SMALL_STATE(3776)] = 155419, - [SMALL_STATE(3777)] = 155444, - [SMALL_STATE(3778)] = 155469, - [SMALL_STATE(3779)] = 155493, - [SMALL_STATE(3780)] = 155515, - [SMALL_STATE(3781)] = 155537, - [SMALL_STATE(3782)] = 155561, - [SMALL_STATE(3783)] = 155585, - [SMALL_STATE(3784)] = 155609, - [SMALL_STATE(3785)] = 155633, - [SMALL_STATE(3786)] = 155673, - [SMALL_STATE(3787)] = 155697, - [SMALL_STATE(3788)] = 155733, - [SMALL_STATE(3789)] = 155779, - [SMALL_STATE(3790)] = 155803, - [SMALL_STATE(3791)] = 155843, - [SMALL_STATE(3792)] = 155883, - [SMALL_STATE(3793)] = 155907, - [SMALL_STATE(3794)] = 155931, - [SMALL_STATE(3795)] = 155953, - [SMALL_STATE(3796)] = 155979, - [SMALL_STATE(3797)] = 156001, - [SMALL_STATE(3798)] = 156025, - [SMALL_STATE(3799)] = 156049, - [SMALL_STATE(3800)] = 156073, - [SMALL_STATE(3801)] = 156109, - [SMALL_STATE(3802)] = 156133, - [SMALL_STATE(3803)] = 156157, - [SMALL_STATE(3804)] = 156181, - [SMALL_STATE(3805)] = 156205, - [SMALL_STATE(3806)] = 156227, - [SMALL_STATE(3807)] = 156273, - [SMALL_STATE(3808)] = 156295, - [SMALL_STATE(3809)] = 156317, - [SMALL_STATE(3810)] = 156341, - [SMALL_STATE(3811)] = 156363, - [SMALL_STATE(3812)] = 156387, - [SMALL_STATE(3813)] = 156411, - [SMALL_STATE(3814)] = 156435, - [SMALL_STATE(3815)] = 156457, - [SMALL_STATE(3816)] = 156481, - [SMALL_STATE(3817)] = 156505, - [SMALL_STATE(3818)] = 156551, - [SMALL_STATE(3819)] = 156575, - [SMALL_STATE(3820)] = 156597, - [SMALL_STATE(3821)] = 156643, - [SMALL_STATE(3822)] = 156667, - [SMALL_STATE(3823)] = 156691, - [SMALL_STATE(3824)] = 156715, - [SMALL_STATE(3825)] = 156739, - [SMALL_STATE(3826)] = 156763, - [SMALL_STATE(3827)] = 156787, - [SMALL_STATE(3828)] = 156811, - [SMALL_STATE(3829)] = 156835, - [SMALL_STATE(3830)] = 156859, - [SMALL_STATE(3831)] = 156883, - [SMALL_STATE(3832)] = 156907, - [SMALL_STATE(3833)] = 156931, - [SMALL_STATE(3834)] = 156973, - [SMALL_STATE(3835)] = 157019, - [SMALL_STATE(3836)] = 157043, - [SMALL_STATE(3837)] = 157067, - [SMALL_STATE(3838)] = 157091, - [SMALL_STATE(3839)] = 157115, - [SMALL_STATE(3840)] = 157139, - [SMALL_STATE(3841)] = 157163, - [SMALL_STATE(3842)] = 157187, - [SMALL_STATE(3843)] = 157211, - [SMALL_STATE(3844)] = 157235, - [SMALL_STATE(3845)] = 157259, - [SMALL_STATE(3846)] = 157283, - [SMALL_STATE(3847)] = 157307, - [SMALL_STATE(3848)] = 157331, - [SMALL_STATE(3849)] = 157355, - [SMALL_STATE(3850)] = 157377, - [SMALL_STATE(3851)] = 157401, - [SMALL_STATE(3852)] = 157425, - [SMALL_STATE(3853)] = 157471, - [SMALL_STATE(3854)] = 157507, - [SMALL_STATE(3855)] = 157553, - [SMALL_STATE(3856)] = 157577, - [SMALL_STATE(3857)] = 157599, - [SMALL_STATE(3858)] = 157623, - [SMALL_STATE(3859)] = 157647, - [SMALL_STATE(3860)] = 157671, - [SMALL_STATE(3861)] = 157695, - [SMALL_STATE(3862)] = 157719, - [SMALL_STATE(3863)] = 157743, - [SMALL_STATE(3864)] = 157767, - [SMALL_STATE(3865)] = 157791, - [SMALL_STATE(3866)] = 157815, - [SMALL_STATE(3867)] = 157839, - [SMALL_STATE(3868)] = 157879, - [SMALL_STATE(3869)] = 157903, - [SMALL_STATE(3870)] = 157927, - [SMALL_STATE(3871)] = 157951, - [SMALL_STATE(3872)] = 157975, - [SMALL_STATE(3873)] = 157997, - [SMALL_STATE(3874)] = 158021, - [SMALL_STATE(3875)] = 158067, - [SMALL_STATE(3876)] = 158089, - [SMALL_STATE(3877)] = 158135, - [SMALL_STATE(3878)] = 158159, - [SMALL_STATE(3879)] = 158187, - [SMALL_STATE(3880)] = 158215, - [SMALL_STATE(3881)] = 158243, - [SMALL_STATE(3882)] = 158271, - [SMALL_STATE(3883)] = 158299, - [SMALL_STATE(3884)] = 158327, - [SMALL_STATE(3885)] = 158355, - [SMALL_STATE(3886)] = 158383, - [SMALL_STATE(3887)] = 158411, - [SMALL_STATE(3888)] = 158439, - [SMALL_STATE(3889)] = 158467, - [SMALL_STATE(3890)] = 158495, - [SMALL_STATE(3891)] = 158519, - [SMALL_STATE(3892)] = 158543, - [SMALL_STATE(3893)] = 158567, - [SMALL_STATE(3894)] = 158591, - [SMALL_STATE(3895)] = 158633, - [SMALL_STATE(3896)] = 158659, - [SMALL_STATE(3897)] = 158681, - [SMALL_STATE(3898)] = 158705, - [SMALL_STATE(3899)] = 158751, - [SMALL_STATE(3900)] = 158775, - [SMALL_STATE(3901)] = 158799, - [SMALL_STATE(3902)] = 158821, - [SMALL_STATE(3903)] = 158845, - [SMALL_STATE(3904)] = 158869, - [SMALL_STATE(3905)] = 158893, - [SMALL_STATE(3906)] = 158917, - [SMALL_STATE(3907)] = 158955, - [SMALL_STATE(3908)] = 158979, - [SMALL_STATE(3909)] = 159003, - [SMALL_STATE(3910)] = 159027, - [SMALL_STATE(3911)] = 159051, - [SMALL_STATE(3912)] = 159072, - [SMALL_STATE(3913)] = 159093, - [SMALL_STATE(3914)] = 159114, - [SMALL_STATE(3915)] = 159153, - [SMALL_STATE(3916)] = 159174, - [SMALL_STATE(3917)] = 159195, - [SMALL_STATE(3918)] = 159216, - [SMALL_STATE(3919)] = 159237, - [SMALL_STATE(3920)] = 159264, - [SMALL_STATE(3921)] = 159285, - [SMALL_STATE(3922)] = 159306, - [SMALL_STATE(3923)] = 159327, - [SMALL_STATE(3924)] = 159364, - [SMALL_STATE(3925)] = 159385, - [SMALL_STATE(3926)] = 159422, - [SMALL_STATE(3927)] = 159459, - [SMALL_STATE(3928)] = 159482, - [SMALL_STATE(3929)] = 159503, - [SMALL_STATE(3930)] = 159524, - [SMALL_STATE(3931)] = 159563, - [SMALL_STATE(3932)] = 159600, - [SMALL_STATE(3933)] = 159621, - [SMALL_STATE(3934)] = 159642, - [SMALL_STATE(3935)] = 159663, - [SMALL_STATE(3936)] = 159700, - [SMALL_STATE(3937)] = 159737, - [SMALL_STATE(3938)] = 159764, - [SMALL_STATE(3939)] = 159785, - [SMALL_STATE(3940)] = 159806, - [SMALL_STATE(3941)] = 159827, - [SMALL_STATE(3942)] = 159850, - [SMALL_STATE(3943)] = 159871, - [SMALL_STATE(3944)] = 159892, - [SMALL_STATE(3945)] = 159913, - [SMALL_STATE(3946)] = 159934, - [SMALL_STATE(3947)] = 159961, - [SMALL_STATE(3948)] = 159982, - [SMALL_STATE(3949)] = 160019, - [SMALL_STATE(3950)] = 160040, - [SMALL_STATE(3951)] = 160061, - [SMALL_STATE(3952)] = 160082, - [SMALL_STATE(3953)] = 160117, - [SMALL_STATE(3954)] = 160140, - [SMALL_STATE(3955)] = 160163, - [SMALL_STATE(3956)] = 160184, - [SMALL_STATE(3957)] = 160217, - [SMALL_STATE(3958)] = 160238, - [SMALL_STATE(3959)] = 160259, - [SMALL_STATE(3960)] = 160282, - [SMALL_STATE(3961)] = 160303, - [SMALL_STATE(3962)] = 160326, - [SMALL_STATE(3963)] = 160347, - [SMALL_STATE(3964)] = 160368, - [SMALL_STATE(3965)] = 160389, - [SMALL_STATE(3966)] = 160410, - [SMALL_STATE(3967)] = 160437, - [SMALL_STATE(3968)] = 160458, - [SMALL_STATE(3969)] = 160483, - [SMALL_STATE(3970)] = 160504, - [SMALL_STATE(3971)] = 160525, - [SMALL_STATE(3972)] = 160564, - [SMALL_STATE(3973)] = 160585, - [SMALL_STATE(3974)] = 160612, - [SMALL_STATE(3975)] = 160633, - [SMALL_STATE(3976)] = 160654, - [SMALL_STATE(3977)] = 160687, - [SMALL_STATE(3978)] = 160720, - [SMALL_STATE(3979)] = 160753, - [SMALL_STATE(3980)] = 160774, - [SMALL_STATE(3981)] = 160795, - [SMALL_STATE(3982)] = 160816, - [SMALL_STATE(3983)] = 160837, - [SMALL_STATE(3984)] = 160860, - [SMALL_STATE(3985)] = 160883, - [SMALL_STATE(3986)] = 160904, - [SMALL_STATE(3987)] = 160927, - [SMALL_STATE(3988)] = 160954, - [SMALL_STATE(3989)] = 160977, - [SMALL_STATE(3990)] = 161000, - [SMALL_STATE(3991)] = 161021, - [SMALL_STATE(3992)] = 161042, - [SMALL_STATE(3993)] = 161065, - [SMALL_STATE(3994)] = 161086, - [SMALL_STATE(3995)] = 161125, - [SMALL_STATE(3996)] = 161148, - [SMALL_STATE(3997)] = 161187, - [SMALL_STATE(3998)] = 161208, - [SMALL_STATE(3999)] = 161229, - [SMALL_STATE(4000)] = 161250, - [SMALL_STATE(4001)] = 161289, - [SMALL_STATE(4002)] = 161316, - [SMALL_STATE(4003)] = 161343, - [SMALL_STATE(4004)] = 161370, - [SMALL_STATE(4005)] = 161397, - [SMALL_STATE(4006)] = 161424, - [SMALL_STATE(4007)] = 161451, - [SMALL_STATE(4008)] = 161478, - [SMALL_STATE(4009)] = 161505, - [SMALL_STATE(4010)] = 161532, - [SMALL_STATE(4011)] = 161559, - [SMALL_STATE(4012)] = 161586, - [SMALL_STATE(4013)] = 161613, - [SMALL_STATE(4014)] = 161634, - [SMALL_STATE(4015)] = 161655, - [SMALL_STATE(4016)] = 161676, - [SMALL_STATE(4017)] = 161697, - [SMALL_STATE(4018)] = 161720, - [SMALL_STATE(4019)] = 161755, - [SMALL_STATE(4020)] = 161778, - [SMALL_STATE(4021)] = 161801, - [SMALL_STATE(4022)] = 161824, - [SMALL_STATE(4023)] = 161847, - [SMALL_STATE(4024)] = 161870, - [SMALL_STATE(4025)] = 161893, - [SMALL_STATE(4026)] = 161932, - [SMALL_STATE(4027)] = 161953, - [SMALL_STATE(4028)] = 161976, - [SMALL_STATE(4029)] = 161999, - [SMALL_STATE(4030)] = 162022, - [SMALL_STATE(4031)] = 162043, - [SMALL_STATE(4032)] = 162080, - [SMALL_STATE(4033)] = 162107, - [SMALL_STATE(4034)] = 162146, - [SMALL_STATE(4035)] = 162167, - [SMALL_STATE(4036)] = 162206, - [SMALL_STATE(4037)] = 162229, - [SMALL_STATE(4038)] = 162250, - [SMALL_STATE(4039)] = 162273, - [SMALL_STATE(4040)] = 162296, - [SMALL_STATE(4041)] = 162319, - [SMALL_STATE(4042)] = 162340, - [SMALL_STATE(4043)] = 162363, - [SMALL_STATE(4044)] = 162386, - [SMALL_STATE(4045)] = 162423, - [SMALL_STATE(4046)] = 162446, - [SMALL_STATE(4047)] = 162469, - [SMALL_STATE(4048)] = 162492, - [SMALL_STATE(4049)] = 162531, - [SMALL_STATE(4050)] = 162552, - [SMALL_STATE(4051)] = 162575, - [SMALL_STATE(4052)] = 162611, - [SMALL_STATE(4053)] = 162637, - [SMALL_STATE(4054)] = 162669, - [SMALL_STATE(4055)] = 162693, - [SMALL_STATE(4056)] = 162719, - [SMALL_STATE(4057)] = 162755, - [SMALL_STATE(4058)] = 162777, - [SMALL_STATE(4059)] = 162803, - [SMALL_STATE(4060)] = 162825, - [SMALL_STATE(4061)] = 162851, - [SMALL_STATE(4062)] = 162873, - [SMALL_STATE(4063)] = 162895, - [SMALL_STATE(4064)] = 162927, - [SMALL_STATE(4065)] = 162953, - [SMALL_STATE(4066)] = 162987, - [SMALL_STATE(4067)] = 163013, - [SMALL_STATE(4068)] = 163039, - [SMALL_STATE(4069)] = 163065, - [SMALL_STATE(4070)] = 163097, - [SMALL_STATE(4071)] = 163129, - [SMALL_STATE(4072)] = 163153, - [SMALL_STATE(4073)] = 163175, - [SMALL_STATE(4074)] = 163201, - [SMALL_STATE(4075)] = 163227, - [SMALL_STATE(4076)] = 163249, - [SMALL_STATE(4077)] = 163273, - [SMALL_STATE(4078)] = 163297, - [SMALL_STATE(4079)] = 163323, - [SMALL_STATE(4080)] = 163347, - [SMALL_STATE(4081)] = 163381, - [SMALL_STATE(4082)] = 163413, - [SMALL_STATE(4083)] = 163437, - [SMALL_STATE(4084)] = 163459, - [SMALL_STATE(4085)] = 163493, - [SMALL_STATE(4086)] = 163519, - [SMALL_STATE(4087)] = 163555, - [SMALL_STATE(4088)] = 163577, - [SMALL_STATE(4089)] = 163608, - [SMALL_STATE(4090)] = 163631, - [SMALL_STATE(4091)] = 163664, - [SMALL_STATE(4092)] = 163697, - [SMALL_STATE(4093)] = 163728, - [SMALL_STATE(4094)] = 163751, - [SMALL_STATE(4095)] = 163784, - [SMALL_STATE(4096)] = 163817, - [SMALL_STATE(4097)] = 163850, - [SMALL_STATE(4098)] = 163873, - [SMALL_STATE(4099)] = 163906, - [SMALL_STATE(4100)] = 163939, - [SMALL_STATE(4101)] = 163970, - [SMALL_STATE(4102)] = 164005, - [SMALL_STATE(4103)] = 164030, - [SMALL_STATE(4104)] = 164051, - [SMALL_STATE(4105)] = 164084, - [SMALL_STATE(4106)] = 164117, - [SMALL_STATE(4107)] = 164148, - [SMALL_STATE(4108)] = 164183, - [SMALL_STATE(4109)] = 164214, - [SMALL_STATE(4110)] = 164235, - [SMALL_STATE(4111)] = 164268, - [SMALL_STATE(4112)] = 164301, - [SMALL_STATE(4113)] = 164332, - [SMALL_STATE(4114)] = 164361, - [SMALL_STATE(4115)] = 164394, - [SMALL_STATE(4116)] = 164427, - [SMALL_STATE(4117)] = 164458, - [SMALL_STATE(4118)] = 164489, - [SMALL_STATE(4119)] = 164522, - [SMALL_STATE(4120)] = 164555, - [SMALL_STATE(4121)] = 164586, - [SMALL_STATE(4122)] = 164619, - [SMALL_STATE(4123)] = 164652, - [SMALL_STATE(4124)] = 164683, - [SMALL_STATE(4125)] = 164716, - [SMALL_STATE(4126)] = 164749, - [SMALL_STATE(4127)] = 164782, - [SMALL_STATE(4128)] = 164813, - [SMALL_STATE(4129)] = 164846, - [SMALL_STATE(4130)] = 164879, - [SMALL_STATE(4131)] = 164912, - [SMALL_STATE(4132)] = 164945, - [SMALL_STATE(4133)] = 164978, - [SMALL_STATE(4134)] = 165009, - [SMALL_STATE(4135)] = 165042, - [SMALL_STATE(4136)] = 165075, - [SMALL_STATE(4137)] = 165106, - [SMALL_STATE(4138)] = 165139, - [SMALL_STATE(4139)] = 165170, - [SMALL_STATE(4140)] = 165201, - [SMALL_STATE(4141)] = 165232, - [SMALL_STATE(4142)] = 165263, - [SMALL_STATE(4143)] = 165294, - [SMALL_STATE(4144)] = 165325, - [SMALL_STATE(4145)] = 165356, - [SMALL_STATE(4146)] = 165387, - [SMALL_STATE(4147)] = 165418, - [SMALL_STATE(4148)] = 165449, - [SMALL_STATE(4149)] = 165480, - [SMALL_STATE(4150)] = 165505, - [SMALL_STATE(4151)] = 165532, - [SMALL_STATE(4152)] = 165555, - [SMALL_STATE(4153)] = 165588, - [SMALL_STATE(4154)] = 165609, - [SMALL_STATE(4155)] = 165640, - [SMALL_STATE(4156)] = 165673, - [SMALL_STATE(4157)] = 165704, - [SMALL_STATE(4158)] = 165737, - [SMALL_STATE(4159)] = 165762, - [SMALL_STATE(4160)] = 165787, - [SMALL_STATE(4161)] = 165820, - [SMALL_STATE(4162)] = 165853, - [SMALL_STATE(4163)] = 165886, - [SMALL_STATE(4164)] = 165919, - [SMALL_STATE(4165)] = 165948, - [SMALL_STATE(4166)] = 165979, - [SMALL_STATE(4167)] = 166000, - [SMALL_STATE(4168)] = 166029, - [SMALL_STATE(4169)] = 166052, - [SMALL_STATE(4170)] = 166075, - [SMALL_STATE(4171)] = 166096, - [SMALL_STATE(4172)] = 166121, - [SMALL_STATE(4173)] = 166142, - [SMALL_STATE(4174)] = 166169, - [SMALL_STATE(4175)] = 166202, - [SMALL_STATE(4176)] = 166235, - [SMALL_STATE(4177)] = 166268, - [SMALL_STATE(4178)] = 166301, - [SMALL_STATE(4179)] = 166322, - [SMALL_STATE(4180)] = 166353, - [SMALL_STATE(4181)] = 166384, - [SMALL_STATE(4182)] = 166417, - [SMALL_STATE(4183)] = 166442, - [SMALL_STATE(4184)] = 166475, - [SMALL_STATE(4185)] = 166495, - [SMALL_STATE(4186)] = 166523, - [SMALL_STATE(4187)] = 166543, - [SMALL_STATE(4188)] = 166571, - [SMALL_STATE(4189)] = 166591, - [SMALL_STATE(4190)] = 166619, - [SMALL_STATE(4191)] = 166647, - [SMALL_STATE(4192)] = 166675, - [SMALL_STATE(4193)] = 166703, - [SMALL_STATE(4194)] = 166731, - [SMALL_STATE(4195)] = 166759, - [SMALL_STATE(4196)] = 166787, - [SMALL_STATE(4197)] = 166815, - [SMALL_STATE(4198)] = 166843, - [SMALL_STATE(4199)] = 166867, - [SMALL_STATE(4200)] = 166895, - [SMALL_STATE(4201)] = 166917, - [SMALL_STATE(4202)] = 166939, - [SMALL_STATE(4203)] = 166963, - [SMALL_STATE(4204)] = 166991, - [SMALL_STATE(4205)] = 167019, - [SMALL_STATE(4206)] = 167047, - [SMALL_STATE(4207)] = 167067, - [SMALL_STATE(4208)] = 167095, - [SMALL_STATE(4209)] = 167123, - [SMALL_STATE(4210)] = 167151, - [SMALL_STATE(4211)] = 167179, - [SMALL_STATE(4212)] = 167201, - [SMALL_STATE(4213)] = 167229, - [SMALL_STATE(4214)] = 167257, - [SMALL_STATE(4215)] = 167285, - [SMALL_STATE(4216)] = 167307, - [SMALL_STATE(4217)] = 167327, - [SMALL_STATE(4218)] = 167357, - [SMALL_STATE(4219)] = 167385, - [SMALL_STATE(4220)] = 167413, - [SMALL_STATE(4221)] = 167441, - [SMALL_STATE(4222)] = 167469, - [SMALL_STATE(4223)] = 167497, - [SMALL_STATE(4224)] = 167521, - [SMALL_STATE(4225)] = 167549, - [SMALL_STATE(4226)] = 167577, - [SMALL_STATE(4227)] = 167605, - [SMALL_STATE(4228)] = 167633, - [SMALL_STATE(4229)] = 167659, - [SMALL_STATE(4230)] = 167687, - [SMALL_STATE(4231)] = 167715, - [SMALL_STATE(4232)] = 167743, - [SMALL_STATE(4233)] = 167771, - [SMALL_STATE(4234)] = 167793, - [SMALL_STATE(4235)] = 167815, - [SMALL_STATE(4236)] = 167843, - [SMALL_STATE(4237)] = 167871, - [SMALL_STATE(4238)] = 167895, - [SMALL_STATE(4239)] = 167919, - [SMALL_STATE(4240)] = 167947, - [SMALL_STATE(4241)] = 167971, - [SMALL_STATE(4242)] = 167991, - [SMALL_STATE(4243)] = 168011, - [SMALL_STATE(4244)] = 168039, - [SMALL_STATE(4245)] = 168067, - [SMALL_STATE(4246)] = 168095, - [SMALL_STATE(4247)] = 168123, - [SMALL_STATE(4248)] = 168143, - [SMALL_STATE(4249)] = 168171, - [SMALL_STATE(4250)] = 168199, - [SMALL_STATE(4251)] = 168223, - [SMALL_STATE(4252)] = 168243, - [SMALL_STATE(4253)] = 168271, - [SMALL_STATE(4254)] = 168299, - [SMALL_STATE(4255)] = 168327, - [SMALL_STATE(4256)] = 168355, - [SMALL_STATE(4257)] = 168383, - [SMALL_STATE(4258)] = 168411, - [SMALL_STATE(4259)] = 168439, - [SMALL_STATE(4260)] = 168464, - [SMALL_STATE(4261)] = 168483, - [SMALL_STATE(4262)] = 168502, - [SMALL_STATE(4263)] = 168527, - [SMALL_STATE(4264)] = 168554, - [SMALL_STATE(4265)] = 168581, - [SMALL_STATE(4266)] = 168606, - [SMALL_STATE(4267)] = 168625, - [SMALL_STATE(4268)] = 168648, - [SMALL_STATE(4269)] = 168673, - [SMALL_STATE(4270)] = 168696, - [SMALL_STATE(4271)] = 168727, - [SMALL_STATE(4272)] = 168752, - [SMALL_STATE(4273)] = 168777, - [SMALL_STATE(4274)] = 168798, - [SMALL_STATE(4275)] = 168821, - [SMALL_STATE(4276)] = 168846, - [SMALL_STATE(4277)] = 168871, - [SMALL_STATE(4278)] = 168892, - [SMALL_STATE(4279)] = 168915, - [SMALL_STATE(4280)] = 168934, - [SMALL_STATE(4281)] = 168953, - [SMALL_STATE(4282)] = 168980, - [SMALL_STATE(4283)] = 169005, - [SMALL_STATE(4284)] = 169026, - [SMALL_STATE(4285)] = 169047, - [SMALL_STATE(4286)] = 169068, - [SMALL_STATE(4287)] = 169087, - [SMALL_STATE(4288)] = 169108, - [SMALL_STATE(4289)] = 169129, - [SMALL_STATE(4290)] = 169154, - [SMALL_STATE(4291)] = 169173, - [SMALL_STATE(4292)] = 169198, - [SMALL_STATE(4293)] = 169223, - [SMALL_STATE(4294)] = 169242, - [SMALL_STATE(4295)] = 169261, - [SMALL_STATE(4296)] = 169286, - [SMALL_STATE(4297)] = 169311, - [SMALL_STATE(4298)] = 169342, - [SMALL_STATE(4299)] = 169367, - [SMALL_STATE(4300)] = 169388, - [SMALL_STATE(4301)] = 169407, - [SMALL_STATE(4302)] = 169432, - [SMALL_STATE(4303)] = 169450, - [SMALL_STATE(4304)] = 169478, - [SMALL_STATE(4305)] = 169504, - [SMALL_STATE(4306)] = 169532, - [SMALL_STATE(4307)] = 169560, - [SMALL_STATE(4308)] = 169586, - [SMALL_STATE(4309)] = 169612, - [SMALL_STATE(4310)] = 169636, - [SMALL_STATE(4311)] = 169654, - [SMALL_STATE(4312)] = 169682, - [SMALL_STATE(4313)] = 169710, - [SMALL_STATE(4314)] = 169734, - [SMALL_STATE(4315)] = 169762, - [SMALL_STATE(4316)] = 169788, - [SMALL_STATE(4317)] = 169816, - [SMALL_STATE(4318)] = 169840, - [SMALL_STATE(4319)] = 169858, - [SMALL_STATE(4320)] = 169886, - [SMALL_STATE(4321)] = 169910, - [SMALL_STATE(4322)] = 169938, - [SMALL_STATE(4323)] = 169962, - [SMALL_STATE(4324)] = 169990, - [SMALL_STATE(4325)] = 170012, - [SMALL_STATE(4326)] = 170040, - [SMALL_STATE(4327)] = 170068, - [SMALL_STATE(4328)] = 170094, - [SMALL_STATE(4329)] = 170112, - [SMALL_STATE(4330)] = 170140, - [SMALL_STATE(4331)] = 170168, - [SMALL_STATE(4332)] = 170196, - [SMALL_STATE(4333)] = 170222, - [SMALL_STATE(4334)] = 170250, - [SMALL_STATE(4335)] = 170270, - [SMALL_STATE(4336)] = 170290, - [SMALL_STATE(4337)] = 170316, - [SMALL_STATE(4338)] = 170342, - [SMALL_STATE(4339)] = 170370, - [SMALL_STATE(4340)] = 170396, - [SMALL_STATE(4341)] = 170422, - [SMALL_STATE(4342)] = 170450, - [SMALL_STATE(4343)] = 170468, - [SMALL_STATE(4344)] = 170486, - [SMALL_STATE(4345)] = 170514, - [SMALL_STATE(4346)] = 170538, - [SMALL_STATE(4347)] = 170566, - [SMALL_STATE(4348)] = 170594, - [SMALL_STATE(4349)] = 170620, - [SMALL_STATE(4350)] = 170648, - [SMALL_STATE(4351)] = 170676, - [SMALL_STATE(4352)] = 170694, - [SMALL_STATE(4353)] = 170716, - [SMALL_STATE(4354)] = 170740, - [SMALL_STATE(4355)] = 170758, - [SMALL_STATE(4356)] = 170784, - [SMALL_STATE(4357)] = 170806, - [SMALL_STATE(4358)] = 170834, - [SMALL_STATE(4359)] = 170856, - [SMALL_STATE(4360)] = 170884, - [SMALL_STATE(4361)] = 170912, - [SMALL_STATE(4362)] = 170934, - [SMALL_STATE(4363)] = 170952, - [SMALL_STATE(4364)] = 170980, - [SMALL_STATE(4365)] = 171008, - [SMALL_STATE(4366)] = 171036, - [SMALL_STATE(4367)] = 171064, - [SMALL_STATE(4368)] = 171092, - [SMALL_STATE(4369)] = 171114, - [SMALL_STATE(4370)] = 171142, - [SMALL_STATE(4371)] = 171168, - [SMALL_STATE(4372)] = 171194, - [SMALL_STATE(4373)] = 171218, - [SMALL_STATE(4374)] = 171246, - [SMALL_STATE(4375)] = 171264, - [SMALL_STATE(4376)] = 171290, - [SMALL_STATE(4377)] = 171318, - [SMALL_STATE(4378)] = 171342, - [SMALL_STATE(4379)] = 171362, - [SMALL_STATE(4380)] = 171386, - [SMALL_STATE(4381)] = 171414, - [SMALL_STATE(4382)] = 171436, - [SMALL_STATE(4383)] = 171464, - [SMALL_STATE(4384)] = 171486, - [SMALL_STATE(4385)] = 171514, - [SMALL_STATE(4386)] = 171542, - [SMALL_STATE(4387)] = 171570, - [SMALL_STATE(4388)] = 171588, - [SMALL_STATE(4389)] = 171616, - [SMALL_STATE(4390)] = 171640, - [SMALL_STATE(4391)] = 171664, - [SMALL_STATE(4392)] = 171692, - [SMALL_STATE(4393)] = 171710, - [SMALL_STATE(4394)] = 171734, - [SMALL_STATE(4395)] = 171762, - [SMALL_STATE(4396)] = 171790, - [SMALL_STATE(4397)] = 171818, - [SMALL_STATE(4398)] = 171846, - [SMALL_STATE(4399)] = 171874, - [SMALL_STATE(4400)] = 171902, - [SMALL_STATE(4401)] = 171930, - [SMALL_STATE(4402)] = 171958, - [SMALL_STATE(4403)] = 171978, - [SMALL_STATE(4404)] = 171996, - [SMALL_STATE(4405)] = 172020, - [SMALL_STATE(4406)] = 172048, - [SMALL_STATE(4407)] = 172073, - [SMALL_STATE(4408)] = 172092, - [SMALL_STATE(4409)] = 172111, - [SMALL_STATE(4410)] = 172132, - [SMALL_STATE(4411)] = 172155, - [SMALL_STATE(4412)] = 172178, - [SMALL_STATE(4413)] = 172199, - [SMALL_STATE(4414)] = 172222, - [SMALL_STATE(4415)] = 172245, - [SMALL_STATE(4416)] = 172268, - [SMALL_STATE(4417)] = 172283, - [SMALL_STATE(4418)] = 172304, - [SMALL_STATE(4419)] = 172319, - [SMALL_STATE(4420)] = 172334, - [SMALL_STATE(4421)] = 172351, - [SMALL_STATE(4422)] = 172368, - [SMALL_STATE(4423)] = 172383, - [SMALL_STATE(4424)] = 172398, - [SMALL_STATE(4425)] = 172413, - [SMALL_STATE(4426)] = 172436, - [SMALL_STATE(4427)] = 172457, - [SMALL_STATE(4428)] = 172474, - [SMALL_STATE(4429)] = 172493, - [SMALL_STATE(4430)] = 172514, - [SMALL_STATE(4431)] = 172535, - [SMALL_STATE(4432)] = 172556, - [SMALL_STATE(4433)] = 172575, - [SMALL_STATE(4434)] = 172596, - [SMALL_STATE(4435)] = 172615, - [SMALL_STATE(4436)] = 172634, - [SMALL_STATE(4437)] = 172657, - [SMALL_STATE(4438)] = 172678, - [SMALL_STATE(4439)] = 172699, - [SMALL_STATE(4440)] = 172722, - [SMALL_STATE(4441)] = 172745, - [SMALL_STATE(4442)] = 172768, - [SMALL_STATE(4443)] = 172789, - [SMALL_STATE(4444)] = 172808, - [SMALL_STATE(4445)] = 172829, - [SMALL_STATE(4446)] = 172848, - [SMALL_STATE(4447)] = 172867, - [SMALL_STATE(4448)] = 172892, - [SMALL_STATE(4449)] = 172917, - [SMALL_STATE(4450)] = 172942, - [SMALL_STATE(4451)] = 172963, - [SMALL_STATE(4452)] = 172984, - [SMALL_STATE(4453)] = 173009, - [SMALL_STATE(4454)] = 173028, - [SMALL_STATE(4455)] = 173047, - [SMALL_STATE(4456)] = 173070, - [SMALL_STATE(4457)] = 173091, - [SMALL_STATE(4458)] = 173114, - [SMALL_STATE(4459)] = 173137, - [SMALL_STATE(4460)] = 173162, - [SMALL_STATE(4461)] = 173181, - [SMALL_STATE(4462)] = 173204, - [SMALL_STATE(4463)] = 173229, - [SMALL_STATE(4464)] = 173252, - [SMALL_STATE(4465)] = 173275, - [SMALL_STATE(4466)] = 173298, - [SMALL_STATE(4467)] = 173321, - [SMALL_STATE(4468)] = 173342, - [SMALL_STATE(4469)] = 173367, - [SMALL_STATE(4470)] = 173392, - [SMALL_STATE(4471)] = 173413, - [SMALL_STATE(4472)] = 173438, - [SMALL_STATE(4473)] = 173463, - [SMALL_STATE(4474)] = 173482, - [SMALL_STATE(4475)] = 173505, - [SMALL_STATE(4476)] = 173528, - [SMALL_STATE(4477)] = 173549, - [SMALL_STATE(4478)] = 173570, - [SMALL_STATE(4479)] = 173587, - [SMALL_STATE(4480)] = 173604, - [SMALL_STATE(4481)] = 173625, - [SMALL_STATE(4482)] = 173642, - [SMALL_STATE(4483)] = 173659, - [SMALL_STATE(4484)] = 173684, - [SMALL_STATE(4485)] = 173707, - [SMALL_STATE(4486)] = 173730, - [SMALL_STATE(4487)] = 173753, - [SMALL_STATE(4488)] = 173774, - [SMALL_STATE(4489)] = 173795, - [SMALL_STATE(4490)] = 173816, - [SMALL_STATE(4491)] = 173839, - [SMALL_STATE(4492)] = 173862, - [SMALL_STATE(4493)] = 173883, - [SMALL_STATE(4494)] = 173904, - [SMALL_STATE(4495)] = 173927, - [SMALL_STATE(4496)] = 173952, - [SMALL_STATE(4497)] = 173975, - [SMALL_STATE(4498)] = 173998, - [SMALL_STATE(4499)] = 174021, - [SMALL_STATE(4500)] = 174044, - [SMALL_STATE(4501)] = 174067, - [SMALL_STATE(4502)] = 174090, - [SMALL_STATE(4503)] = 174113, - [SMALL_STATE(4504)] = 174136, - [SMALL_STATE(4505)] = 174159, - [SMALL_STATE(4506)] = 174176, - [SMALL_STATE(4507)] = 174199, - [SMALL_STATE(4508)] = 174222, - [SMALL_STATE(4509)] = 174245, - [SMALL_STATE(4510)] = 174268, - [SMALL_STATE(4511)] = 174291, - [SMALL_STATE(4512)] = 174314, - [SMALL_STATE(4513)] = 174337, - [SMALL_STATE(4514)] = 174360, - [SMALL_STATE(4515)] = 174383, - [SMALL_STATE(4516)] = 174400, - [SMALL_STATE(4517)] = 174417, - [SMALL_STATE(4518)] = 174434, - [SMALL_STATE(4519)] = 174459, - [SMALL_STATE(4520)] = 174482, - [SMALL_STATE(4521)] = 174503, - [SMALL_STATE(4522)] = 174526, - [SMALL_STATE(4523)] = 174549, - [SMALL_STATE(4524)] = 174570, - [SMALL_STATE(4525)] = 174591, - [SMALL_STATE(4526)] = 174616, - [SMALL_STATE(4527)] = 174635, - [SMALL_STATE(4528)] = 174656, - [SMALL_STATE(4529)] = 174681, - [SMALL_STATE(4530)] = 174698, - [SMALL_STATE(4531)] = 174717, - [SMALL_STATE(4532)] = 174736, - [SMALL_STATE(4533)] = 174755, - [SMALL_STATE(4534)] = 174774, - [SMALL_STATE(4535)] = 174793, - [SMALL_STATE(4536)] = 174814, - [SMALL_STATE(4537)] = 174833, - [SMALL_STATE(4538)] = 174858, - [SMALL_STATE(4539)] = 174883, - [SMALL_STATE(4540)] = 174908, - [SMALL_STATE(4541)] = 174925, - [SMALL_STATE(4542)] = 174948, - [SMALL_STATE(4543)] = 174969, - [SMALL_STATE(4544)] = 174994, - [SMALL_STATE(4545)] = 175019, - [SMALL_STATE(4546)] = 175044, - [SMALL_STATE(4547)] = 175063, - [SMALL_STATE(4548)] = 175088, - [SMALL_STATE(4549)] = 175113, - [SMALL_STATE(4550)] = 175138, - [SMALL_STATE(4551)] = 175163, - [SMALL_STATE(4552)] = 175188, - [SMALL_STATE(4553)] = 175213, - [SMALL_STATE(4554)] = 175236, - [SMALL_STATE(4555)] = 175259, - [SMALL_STATE(4556)] = 175280, - [SMALL_STATE(4557)] = 175301, - [SMALL_STATE(4558)] = 175321, - [SMALL_STATE(4559)] = 175339, - [SMALL_STATE(4560)] = 175361, - [SMALL_STATE(4561)] = 175379, - [SMALL_STATE(4562)] = 175397, - [SMALL_STATE(4563)] = 175417, - [SMALL_STATE(4564)] = 175437, - [SMALL_STATE(4565)] = 175459, - [SMALL_STATE(4566)] = 175477, - [SMALL_STATE(4567)] = 175499, - [SMALL_STATE(4568)] = 175519, - [SMALL_STATE(4569)] = 175537, - [SMALL_STATE(4570)] = 175553, - [SMALL_STATE(4571)] = 175575, - [SMALL_STATE(4572)] = 175593, - [SMALL_STATE(4573)] = 175611, - [SMALL_STATE(4574)] = 175631, - [SMALL_STATE(4575)] = 175653, - [SMALL_STATE(4576)] = 175675, - [SMALL_STATE(4577)] = 175693, - [SMALL_STATE(4578)] = 175709, - [SMALL_STATE(4579)] = 175727, - [SMALL_STATE(4580)] = 175749, - [SMALL_STATE(4581)] = 175771, - [SMALL_STATE(4582)] = 175791, - [SMALL_STATE(4583)] = 175813, - [SMALL_STATE(4584)] = 175833, - [SMALL_STATE(4585)] = 175849, - [SMALL_STATE(4586)] = 175869, - [SMALL_STATE(4587)] = 175891, - [SMALL_STATE(4588)] = 175913, - [SMALL_STATE(4589)] = 175933, - [SMALL_STATE(4590)] = 175953, - [SMALL_STATE(4591)] = 175973, + [SMALL_STATE(2531)] = 105341, + [SMALL_STATE(2532)] = 105387, + [SMALL_STATE(2533)] = 105433, + [SMALL_STATE(2534)] = 105479, + [SMALL_STATE(2535)] = 105529, + [SMALL_STATE(2536)] = 105579, + [SMALL_STATE(2537)] = 105629, + [SMALL_STATE(2538)] = 105679, + [SMALL_STATE(2539)] = 105729, + [SMALL_STATE(2540)] = 105775, + [SMALL_STATE(2541)] = 105825, + [SMALL_STATE(2542)] = 105871, + [SMALL_STATE(2543)] = 105921, + [SMALL_STATE(2544)] = 105971, + [SMALL_STATE(2545)] = 106017, + [SMALL_STATE(2546)] = 106063, + [SMALL_STATE(2547)] = 106109, + [SMALL_STATE(2548)] = 106155, + [SMALL_STATE(2549)] = 106201, + [SMALL_STATE(2550)] = 106247, + [SMALL_STATE(2551)] = 106293, + [SMALL_STATE(2552)] = 106339, + [SMALL_STATE(2553)] = 106385, + [SMALL_STATE(2554)] = 106431, + [SMALL_STATE(2555)] = 106479, + [SMALL_STATE(2556)] = 106527, + [SMALL_STATE(2557)] = 106575, + [SMALL_STATE(2558)] = 106623, + [SMALL_STATE(2559)] = 106669, + [SMALL_STATE(2560)] = 106715, + [SMALL_STATE(2561)] = 106761, + [SMALL_STATE(2562)] = 106807, + [SMALL_STATE(2563)] = 106853, + [SMALL_STATE(2564)] = 106899, + [SMALL_STATE(2565)] = 106945, + [SMALL_STATE(2566)] = 106991, + [SMALL_STATE(2567)] = 107037, + [SMALL_STATE(2568)] = 107085, + [SMALL_STATE(2569)] = 107131, + [SMALL_STATE(2570)] = 107177, + [SMALL_STATE(2571)] = 107223, + [SMALL_STATE(2572)] = 107269, + [SMALL_STATE(2573)] = 107315, + [SMALL_STATE(2574)] = 107361, + [SMALL_STATE(2575)] = 107407, + [SMALL_STATE(2576)] = 107459, + [SMALL_STATE(2577)] = 107513, + [SMALL_STATE(2578)] = 107559, + [SMALL_STATE(2579)] = 107605, + [SMALL_STATE(2580)] = 107651, + [SMALL_STATE(2581)] = 107697, + [SMALL_STATE(2582)] = 107743, + [SMALL_STATE(2583)] = 107789, + [SMALL_STATE(2584)] = 107835, + [SMALL_STATE(2585)] = 107881, + [SMALL_STATE(2586)] = 107927, + [SMALL_STATE(2587)] = 107973, + [SMALL_STATE(2588)] = 108019, + [SMALL_STATE(2589)] = 108065, + [SMALL_STATE(2590)] = 108129, + [SMALL_STATE(2591)] = 108191, + [SMALL_STATE(2592)] = 108247, + [SMALL_STATE(2593)] = 108299, + [SMALL_STATE(2594)] = 108373, + [SMALL_STATE(2595)] = 108449, + [SMALL_STATE(2596)] = 108527, + [SMALL_STATE(2597)] = 108593, + [SMALL_STATE(2598)] = 108653, + [SMALL_STATE(2599)] = 108721, + [SMALL_STATE(2600)] = 108791, + [SMALL_STATE(2601)] = 108863, + [SMALL_STATE(2602)] = 108909, + [SMALL_STATE(2603)] = 108955, + [SMALL_STATE(2604)] = 109049, + [SMALL_STATE(2605)] = 109113, + [SMALL_STATE(2606)] = 109175, + [SMALL_STATE(2607)] = 109237, + [SMALL_STATE(2608)] = 109297, + [SMALL_STATE(2609)] = 109351, + [SMALL_STATE(2610)] = 109403, + [SMALL_STATE(2611)] = 109453, + [SMALL_STATE(2612)] = 109527, + [SMALL_STATE(2613)] = 109599, + [SMALL_STATE(2614)] = 109675, + [SMALL_STATE(2615)] = 109749, + [SMALL_STATE(2616)] = 109827, + [SMALL_STATE(2617)] = 109903, + [SMALL_STATE(2618)] = 109969, + [SMALL_STATE(2619)] = 110033, + [SMALL_STATE(2620)] = 110093, + [SMALL_STATE(2621)] = 110151, + [SMALL_STATE(2622)] = 110219, + [SMALL_STATE(2623)] = 110285, + [SMALL_STATE(2624)] = 110355, + [SMALL_STATE(2625)] = 110423, + [SMALL_STATE(2626)] = 110495, + [SMALL_STATE(2627)] = 110565, + [SMALL_STATE(2628)] = 110629, + [SMALL_STATE(2629)] = 110691, + [SMALL_STATE(2630)] = 110747, + [SMALL_STATE(2631)] = 110799, + [SMALL_STATE(2632)] = 110873, + [SMALL_STATE(2633)] = 110949, + [SMALL_STATE(2634)] = 111027, + [SMALL_STATE(2635)] = 111093, + [SMALL_STATE(2636)] = 111153, + [SMALL_STATE(2637)] = 111221, + [SMALL_STATE(2638)] = 111291, + [SMALL_STATE(2639)] = 111363, + [SMALL_STATE(2640)] = 111409, + [SMALL_STATE(2641)] = 111471, + [SMALL_STATE(2642)] = 111531, + [SMALL_STATE(2643)] = 111585, + [SMALL_STATE(2644)] = 111635, + [SMALL_STATE(2645)] = 111707, + [SMALL_STATE(2646)] = 111781, + [SMALL_STATE(2647)] = 111857, + [SMALL_STATE(2648)] = 111921, + [SMALL_STATE(2649)] = 111979, + [SMALL_STATE(2650)] = 112045, + [SMALL_STATE(2651)] = 112113, + [SMALL_STATE(2652)] = 112183, + [SMALL_STATE(2653)] = 112247, + [SMALL_STATE(2654)] = 112309, + [SMALL_STATE(2655)] = 112371, + [SMALL_STATE(2656)] = 112431, + [SMALL_STATE(2657)] = 112487, + [SMALL_STATE(2658)] = 112541, + [SMALL_STATE(2659)] = 112593, + [SMALL_STATE(2660)] = 112643, + [SMALL_STATE(2661)] = 112717, + [SMALL_STATE(2662)] = 112789, + [SMALL_STATE(2663)] = 112865, + [SMALL_STATE(2664)] = 112939, + [SMALL_STATE(2665)] = 113017, + [SMALL_STATE(2666)] = 113093, + [SMALL_STATE(2667)] = 113159, + [SMALL_STATE(2668)] = 113223, + [SMALL_STATE(2669)] = 113283, + [SMALL_STATE(2670)] = 113341, + [SMALL_STATE(2671)] = 113409, + [SMALL_STATE(2672)] = 113475, + [SMALL_STATE(2673)] = 113545, + [SMALL_STATE(2674)] = 113613, + [SMALL_STATE(2675)] = 113685, + [SMALL_STATE(2676)] = 113755, + [SMALL_STATE(2677)] = 113817, + [SMALL_STATE(2678)] = 113877, + [SMALL_STATE(2679)] = 113931, + [SMALL_STATE(2680)] = 113981, + [SMALL_STATE(2681)] = 114053, + [SMALL_STATE(2682)] = 114127, + [SMALL_STATE(2683)] = 114203, + [SMALL_STATE(2684)] = 114267, + [SMALL_STATE(2685)] = 114325, + [SMALL_STATE(2686)] = 114391, + [SMALL_STATE(2687)] = 114459, + [SMALL_STATE(2688)] = 114529, + [SMALL_STATE(2689)] = 114581, + [SMALL_STATE(2690)] = 114675, + [SMALL_STATE(2691)] = 114721, + [SMALL_STATE(2692)] = 114767, + [SMALL_STATE(2693)] = 114817, + [SMALL_STATE(2694)] = 114863, + [SMALL_STATE(2695)] = 114909, + [SMALL_STATE(2696)] = 114957, + [SMALL_STATE(2697)] = 115003, + [SMALL_STATE(2698)] = 115057, + [SMALL_STATE(2699)] = 115103, + [SMALL_STATE(2700)] = 115149, + [SMALL_STATE(2701)] = 115199, + [SMALL_STATE(2702)] = 115249, + [SMALL_STATE(2703)] = 115299, + [SMALL_STATE(2704)] = 115353, + [SMALL_STATE(2705)] = 115399, + [SMALL_STATE(2706)] = 115445, + [SMALL_STATE(2707)] = 115491, + [SMALL_STATE(2708)] = 115537, + [SMALL_STATE(2709)] = 115589, + [SMALL_STATE(2710)] = 115641, + [SMALL_STATE(2711)] = 115687, + [SMALL_STATE(2712)] = 115733, + [SMALL_STATE(2713)] = 115779, + [SMALL_STATE(2714)] = 115831, + [SMALL_STATE(2715)] = 115877, + [SMALL_STATE(2716)] = 115929, + [SMALL_STATE(2717)] = 115975, + [SMALL_STATE(2718)] = 116031, + [SMALL_STATE(2719)] = 116076, + [SMALL_STATE(2720)] = 116121, + [SMALL_STATE(2721)] = 116170, + [SMALL_STATE(2722)] = 116215, + [SMALL_STATE(2723)] = 116260, + [SMALL_STATE(2724)] = 116337, + [SMALL_STATE(2725)] = 116384, + [SMALL_STATE(2726)] = 116429, + [SMALL_STATE(2727)] = 116474, + [SMALL_STATE(2728)] = 116523, + [SMALL_STATE(2729)] = 116568, + [SMALL_STATE(2730)] = 116617, + [SMALL_STATE(2731)] = 116666, + [SMALL_STATE(2732)] = 116715, + [SMALL_STATE(2733)] = 116764, + [SMALL_STATE(2734)] = 116813, + [SMALL_STATE(2735)] = 116862, + [SMALL_STATE(2736)] = 116907, + [SMALL_STATE(2737)] = 116954, + [SMALL_STATE(2738)] = 117003, + [SMALL_STATE(2739)] = 117052, + [SMALL_STATE(2740)] = 117097, + [SMALL_STATE(2741)] = 117142, + [SMALL_STATE(2742)] = 117197, + [SMALL_STATE(2743)] = 117248, + [SMALL_STATE(2744)] = 117293, + [SMALL_STATE(2745)] = 117338, + [SMALL_STATE(2746)] = 117387, + [SMALL_STATE(2747)] = 117436, + [SMALL_STATE(2748)] = 117481, + [SMALL_STATE(2749)] = 117530, + [SMALL_STATE(2750)] = 117575, + [SMALL_STATE(2751)] = 117620, + [SMALL_STATE(2752)] = 117669, + [SMALL_STATE(2753)] = 117718, + [SMALL_STATE(2754)] = 117763, + [SMALL_STATE(2755)] = 117808, + [SMALL_STATE(2756)] = 117861, + [SMALL_STATE(2757)] = 117906, + [SMALL_STATE(2758)] = 117955, + [SMALL_STATE(2759)] = 118004, + [SMALL_STATE(2760)] = 118053, + [SMALL_STATE(2761)] = 118102, + [SMALL_STATE(2762)] = 118179, + [SMALL_STATE(2763)] = 118226, + [SMALL_STATE(2764)] = 118303, + [SMALL_STATE(2765)] = 118380, + [SMALL_STATE(2766)] = 118457, + [SMALL_STATE(2767)] = 118534, + [SMALL_STATE(2768)] = 118579, + [SMALL_STATE(2769)] = 118639, + [SMALL_STATE(2770)] = 118695, + [SMALL_STATE(2771)] = 118749, + [SMALL_STATE(2772)] = 118811, + [SMALL_STATE(2773)] = 118875, + [SMALL_STATE(2774)] = 118941, + [SMALL_STATE(2775)] = 118987, + [SMALL_STATE(2776)] = 119033, + [SMALL_STATE(2777)] = 119081, + [SMALL_STATE(2778)] = 119125, + [SMALL_STATE(2779)] = 119171, + [SMALL_STATE(2780)] = 119225, + [SMALL_STATE(2781)] = 119271, + [SMALL_STATE(2782)] = 119321, + [SMALL_STATE(2783)] = 119367, + [SMALL_STATE(2784)] = 119415, + [SMALL_STATE(2785)] = 119477, + [SMALL_STATE(2786)] = 119521, + [SMALL_STATE(2787)] = 119579, + [SMALL_STATE(2788)] = 119643, + [SMALL_STATE(2789)] = 119713, + [SMALL_STATE(2790)] = 119757, + [SMALL_STATE(2791)] = 119801, + [SMALL_STATE(2792)] = 119847, + [SMALL_STATE(2793)] = 119919, + [SMALL_STATE(2794)] = 119965, + [SMALL_STATE(2795)] = 120037, + [SMALL_STATE(2796)] = 120083, + [SMALL_STATE(2797)] = 120129, + [SMALL_STATE(2798)] = 120175, + [SMALL_STATE(2799)] = 120219, + [SMALL_STATE(2800)] = 120265, + [SMALL_STATE(2801)] = 120315, + [SMALL_STATE(2802)] = 120361, + [SMALL_STATE(2803)] = 120405, + [SMALL_STATE(2804)] = 120473, + [SMALL_STATE(2805)] = 120523, + [SMALL_STATE(2806)] = 120573, + [SMALL_STATE(2807)] = 120619, + [SMALL_STATE(2808)] = 120665, + [SMALL_STATE(2809)] = 120711, + [SMALL_STATE(2810)] = 120757, + [SMALL_STATE(2811)] = 120815, + [SMALL_STATE(2812)] = 120871, + [SMALL_STATE(2813)] = 120921, + [SMALL_STATE(2814)] = 120967, + [SMALL_STATE(2815)] = 121027, + [SMALL_STATE(2816)] = 121095, + [SMALL_STATE(2817)] = 121165, + [SMALL_STATE(2818)] = 121211, + [SMALL_STATE(2819)] = 121299, + [SMALL_STATE(2820)] = 121345, + [SMALL_STATE(2821)] = 121411, + [SMALL_STATE(2822)] = 121454, + [SMALL_STATE(2823)] = 121497, + [SMALL_STATE(2824)] = 121542, + [SMALL_STATE(2825)] = 121585, + [SMALL_STATE(2826)] = 121628, + [SMALL_STATE(2827)] = 121673, + [SMALL_STATE(2828)] = 121718, + [SMALL_STATE(2829)] = 121761, + [SMALL_STATE(2830)] = 121804, + [SMALL_STATE(2831)] = 121847, + [SMALL_STATE(2832)] = 121890, + [SMALL_STATE(2833)] = 121933, + [SMALL_STATE(2834)] = 121976, + [SMALL_STATE(2835)] = 122019, + [SMALL_STATE(2836)] = 122062, + [SMALL_STATE(2837)] = 122107, + [SMALL_STATE(2838)] = 122154, + [SMALL_STATE(2839)] = 122197, + [SMALL_STATE(2840)] = 122244, + [SMALL_STATE(2841)] = 122287, + [SMALL_STATE(2842)] = 122330, + [SMALL_STATE(2843)] = 122373, + [SMALL_STATE(2844)] = 122416, + [SMALL_STATE(2845)] = 122459, + [SMALL_STATE(2846)] = 122504, + [SMALL_STATE(2847)] = 122549, + [SMALL_STATE(2848)] = 122594, + [SMALL_STATE(2849)] = 122639, + [SMALL_STATE(2850)] = 122684, + [SMALL_STATE(2851)] = 122727, + [SMALL_STATE(2852)] = 122770, + [SMALL_STATE(2853)] = 122813, + [SMALL_STATE(2854)] = 122856, + [SMALL_STATE(2855)] = 122901, + [SMALL_STATE(2856)] = 122972, + [SMALL_STATE(2857)] = 123017, + [SMALL_STATE(2858)] = 123062, + [SMALL_STATE(2859)] = 123105, + [SMALL_STATE(2860)] = 123148, + [SMALL_STATE(2861)] = 123219, + [SMALL_STATE(2862)] = 123266, + [SMALL_STATE(2863)] = 123309, + [SMALL_STATE(2864)] = 123352, + [SMALL_STATE(2865)] = 123395, + [SMALL_STATE(2866)] = 123438, + [SMALL_STATE(2867)] = 123483, + [SMALL_STATE(2868)] = 123526, + [SMALL_STATE(2869)] = 123569, + [SMALL_STATE(2870)] = 123612, + [SMALL_STATE(2871)] = 123657, + [SMALL_STATE(2872)] = 123700, + [SMALL_STATE(2873)] = 123743, + [SMALL_STATE(2874)] = 123786, + [SMALL_STATE(2875)] = 123829, + [SMALL_STATE(2876)] = 123872, + [SMALL_STATE(2877)] = 123915, + [SMALL_STATE(2878)] = 123958, + [SMALL_STATE(2879)] = 124001, + [SMALL_STATE(2880)] = 124044, + [SMALL_STATE(2881)] = 124093, + [SMALL_STATE(2882)] = 124136, + [SMALL_STATE(2883)] = 124207, + [SMALL_STATE(2884)] = 124278, + [SMALL_STATE(2885)] = 124321, + [SMALL_STATE(2886)] = 124392, + [SMALL_STATE(2887)] = 124435, + [SMALL_STATE(2888)] = 124478, + [SMALL_STATE(2889)] = 124521, + [SMALL_STATE(2890)] = 124564, + [SMALL_STATE(2891)] = 124635, + [SMALL_STATE(2892)] = 124682, + [SMALL_STATE(2893)] = 124725, + [SMALL_STATE(2894)] = 124768, + [SMALL_STATE(2895)] = 124811, + [SMALL_STATE(2896)] = 124854, + [SMALL_STATE(2897)] = 124896, + [SMALL_STATE(2898)] = 124938, + [SMALL_STATE(2899)] = 124980, + [SMALL_STATE(2900)] = 125022, + [SMALL_STATE(2901)] = 125064, + [SMALL_STATE(2902)] = 125106, + [SMALL_STATE(2903)] = 125148, + [SMALL_STATE(2904)] = 125190, + [SMALL_STATE(2905)] = 125232, + [SMALL_STATE(2906)] = 125276, + [SMALL_STATE(2907)] = 125318, + [SMALL_STATE(2908)] = 125360, + [SMALL_STATE(2909)] = 125402, + [SMALL_STATE(2910)] = 125484, + [SMALL_STATE(2911)] = 125526, + [SMALL_STATE(2912)] = 125568, + [SMALL_STATE(2913)] = 125610, + [SMALL_STATE(2914)] = 125652, + [SMALL_STATE(2915)] = 125694, + [SMALL_STATE(2916)] = 125736, + [SMALL_STATE(2917)] = 125818, + [SMALL_STATE(2918)] = 125898, + [SMALL_STATE(2919)] = 125940, + [SMALL_STATE(2920)] = 125982, + [SMALL_STATE(2921)] = 126024, + [SMALL_STATE(2922)] = 126066, + [SMALL_STATE(2923)] = 126108, + [SMALL_STATE(2924)] = 126150, + [SMALL_STATE(2925)] = 126192, + [SMALL_STATE(2926)] = 126234, + [SMALL_STATE(2927)] = 126276, + [SMALL_STATE(2928)] = 126318, + [SMALL_STATE(2929)] = 126360, + [SMALL_STATE(2930)] = 126402, + [SMALL_STATE(2931)] = 126450, + [SMALL_STATE(2932)] = 126492, + [SMALL_STATE(2933)] = 126534, + [SMALL_STATE(2934)] = 126576, + [SMALL_STATE(2935)] = 126618, + [SMALL_STATE(2936)] = 126660, + [SMALL_STATE(2937)] = 126702, + [SMALL_STATE(2938)] = 126744, + [SMALL_STATE(2939)] = 126786, + [SMALL_STATE(2940)] = 126828, + [SMALL_STATE(2941)] = 126870, + [SMALL_STATE(2942)] = 126912, + [SMALL_STATE(2943)] = 126954, + [SMALL_STATE(2944)] = 126996, + [SMALL_STATE(2945)] = 127038, + [SMALL_STATE(2946)] = 127080, + [SMALL_STATE(2947)] = 127122, + [SMALL_STATE(2948)] = 127164, + [SMALL_STATE(2949)] = 127206, + [SMALL_STATE(2950)] = 127251, + [SMALL_STATE(2951)] = 127292, + [SMALL_STATE(2952)] = 127337, + [SMALL_STATE(2953)] = 127381, + [SMALL_STATE(2954)] = 127425, + [SMALL_STATE(2955)] = 127469, + [SMALL_STATE(2956)] = 127551, + [SMALL_STATE(2957)] = 127633, + [SMALL_STATE(2958)] = 127677, + [SMALL_STATE(2959)] = 127716, + [SMALL_STATE(2960)] = 127761, + [SMALL_STATE(2961)] = 127806, + [SMALL_STATE(2962)] = 127882, + [SMALL_STATE(2963)] = 127958, + [SMALL_STATE(2964)] = 128034, + [SMALL_STATE(2965)] = 128086, + [SMALL_STATE(2966)] = 128162, + [SMALL_STATE(2967)] = 128238, + [SMALL_STATE(2968)] = 128314, + [SMALL_STATE(2969)] = 128390, + [SMALL_STATE(2970)] = 128466, + [SMALL_STATE(2971)] = 128542, + [SMALL_STATE(2972)] = 128618, + [SMALL_STATE(2973)] = 128694, + [SMALL_STATE(2974)] = 128770, + [SMALL_STATE(2975)] = 128846, + [SMALL_STATE(2976)] = 128922, + [SMALL_STATE(2977)] = 128998, + [SMALL_STATE(2978)] = 129074, + [SMALL_STATE(2979)] = 129150, + [SMALL_STATE(2980)] = 129226, + [SMALL_STATE(2981)] = 129272, + [SMALL_STATE(2982)] = 129348, + [SMALL_STATE(2983)] = 129424, + [SMALL_STATE(2984)] = 129468, + [SMALL_STATE(2985)] = 129510, + [SMALL_STATE(2986)] = 129556, + [SMALL_STATE(2987)] = 129602, + [SMALL_STATE(2988)] = 129678, + [SMALL_STATE(2989)] = 129754, + [SMALL_STATE(2990)] = 129830, + [SMALL_STATE(2991)] = 129906, + [SMALL_STATE(2992)] = 129982, + [SMALL_STATE(2993)] = 130058, + [SMALL_STATE(2994)] = 130107, + [SMALL_STATE(2995)] = 130156, + [SMALL_STATE(2996)] = 130195, + [SMALL_STATE(2997)] = 130244, + [SMALL_STATE(2998)] = 130295, + [SMALL_STATE(2999)] = 130365, + [SMALL_STATE(3000)] = 130411, + [SMALL_STATE(3001)] = 130481, + [SMALL_STATE(3002)] = 130521, + [SMALL_STATE(3003)] = 130591, + [SMALL_STATE(3004)] = 130661, + [SMALL_STATE(3005)] = 130731, + [SMALL_STATE(3006)] = 130801, + [SMALL_STATE(3007)] = 130841, + [SMALL_STATE(3008)] = 130911, + [SMALL_STATE(3009)] = 130959, + [SMALL_STATE(3010)] = 131029, + [SMALL_STATE(3011)] = 131099, + [SMALL_STATE(3012)] = 131147, + [SMALL_STATE(3013)] = 131217, + [SMALL_STATE(3014)] = 131271, + [SMALL_STATE(3015)] = 131317, + [SMALL_STATE(3016)] = 131365, + [SMALL_STATE(3017)] = 131435, + [SMALL_STATE(3018)] = 131505, + [SMALL_STATE(3019)] = 131551, + [SMALL_STATE(3020)] = 131597, + [SMALL_STATE(3021)] = 131648, + [SMALL_STATE(3022)] = 131701, + [SMALL_STATE(3023)] = 131738, + [SMALL_STATE(3024)] = 131775, + [SMALL_STATE(3025)] = 131814, + [SMALL_STATE(3026)] = 131853, + [SMALL_STATE(3027)] = 131898, + [SMALL_STATE(3028)] = 131949, + [SMALL_STATE(3029)] = 131996, + [SMALL_STATE(3030)] = 132047, + [SMALL_STATE(3031)] = 132092, + [SMALL_STATE(3032)] = 132137, + [SMALL_STATE(3033)] = 132182, + [SMALL_STATE(3034)] = 132230, + [SMALL_STATE(3035)] = 132268, + [SMALL_STATE(3036)] = 132306, + [SMALL_STATE(3037)] = 132356, + [SMALL_STATE(3038)] = 132404, + [SMALL_STATE(3039)] = 132452, + [SMALL_STATE(3040)] = 132500, + [SMALL_STATE(3041)] = 132546, + [SMALL_STATE(3042)] = 132580, + [SMALL_STATE(3043)] = 132630, + [SMALL_STATE(3044)] = 132666, + [SMALL_STATE(3045)] = 132700, + [SMALL_STATE(3046)] = 132750, + [SMALL_STATE(3047)] = 132788, + [SMALL_STATE(3048)] = 132826, + [SMALL_STATE(3049)] = 132862, + [SMALL_STATE(3050)] = 132896, + [SMALL_STATE(3051)] = 132936, + [SMALL_STATE(3052)] = 132976, + [SMALL_STATE(3053)] = 133009, + [SMALL_STATE(3054)] = 133042, + [SMALL_STATE(3055)] = 133089, + [SMALL_STATE(3056)] = 133128, + [SMALL_STATE(3057)] = 133169, + [SMALL_STATE(3058)] = 133206, + [SMALL_STATE(3059)] = 133245, + [SMALL_STATE(3060)] = 133286, + [SMALL_STATE(3061)] = 133333, + [SMALL_STATE(3062)] = 133370, + [SMALL_STATE(3063)] = 133409, + [SMALL_STATE(3064)] = 133444, + [SMALL_STATE(3065)] = 133477, + [SMALL_STATE(3066)] = 133524, + [SMALL_STATE(3067)] = 133563, + [SMALL_STATE(3068)] = 133598, + [SMALL_STATE(3069)] = 133649, + [SMALL_STATE(3070)] = 133696, + [SMALL_STATE(3071)] = 133733, + [SMALL_STATE(3072)] = 133768, + [SMALL_STATE(3073)] = 133805, + [SMALL_STATE(3074)] = 133840, + [SMALL_STATE(3075)] = 133881, + [SMALL_STATE(3076)] = 133920, + [SMALL_STATE(3077)] = 133967, + [SMALL_STATE(3078)] = 134006, + [SMALL_STATE(3079)] = 134041, + [SMALL_STATE(3080)] = 134089, + [SMALL_STATE(3081)] = 134127, + [SMALL_STATE(3082)] = 134161, + [SMALL_STATE(3083)] = 134195, + [SMALL_STATE(3084)] = 134227, + [SMALL_STATE(3085)] = 134267, + [SMALL_STATE(3086)] = 134303, + [SMALL_STATE(3087)] = 134339, + [SMALL_STATE(3088)] = 134373, + [SMALL_STATE(3089)] = 134405, + [SMALL_STATE(3090)] = 134437, + [SMALL_STATE(3091)] = 134469, + [SMALL_STATE(3092)] = 134501, + [SMALL_STATE(3093)] = 134539, + [SMALL_STATE(3094)] = 134585, + [SMALL_STATE(3095)] = 134625, + [SMALL_STATE(3096)] = 134663, + [SMALL_STATE(3097)] = 134695, + [SMALL_STATE(3098)] = 134731, + [SMALL_STATE(3099)] = 134769, + [SMALL_STATE(3100)] = 134809, + [SMALL_STATE(3101)] = 134847, + [SMALL_STATE(3102)] = 134885, + [SMALL_STATE(3103)] = 134917, + [SMALL_STATE(3104)] = 134953, + [SMALL_STATE(3105)] = 134991, + [SMALL_STATE(3106)] = 135025, + [SMALL_STATE(3107)] = 135063, + [SMALL_STATE(3108)] = 135095, + [SMALL_STATE(3109)] = 135127, + [SMALL_STATE(3110)] = 135165, + [SMALL_STATE(3111)] = 135199, + [SMALL_STATE(3112)] = 135235, + [SMALL_STATE(3113)] = 135273, + [SMALL_STATE(3114)] = 135305, + [SMALL_STATE(3115)] = 135341, + [SMALL_STATE(3116)] = 135373, + [SMALL_STATE(3117)] = 135421, + [SMALL_STATE(3118)] = 135453, + [SMALL_STATE(3119)] = 135491, + [SMALL_STATE(3120)] = 135539, + [SMALL_STATE(3121)] = 135571, + [SMALL_STATE(3122)] = 135602, + [SMALL_STATE(3123)] = 135633, + [SMALL_STATE(3124)] = 135670, + [SMALL_STATE(3125)] = 135703, + [SMALL_STATE(3126)] = 135748, + [SMALL_STATE(3127)] = 135781, + [SMALL_STATE(3128)] = 135812, + [SMALL_STATE(3129)] = 135845, + [SMALL_STATE(3130)] = 135880, + [SMALL_STATE(3131)] = 135917, + [SMALL_STATE(3132)] = 135952, + [SMALL_STATE(3133)] = 135987, + [SMALL_STATE(3134)] = 136024, + [SMALL_STATE(3135)] = 136059, + [SMALL_STATE(3136)] = 136090, + [SMALL_STATE(3137)] = 136129, + [SMALL_STATE(3138)] = 136166, + [SMALL_STATE(3139)] = 136211, + [SMALL_STATE(3140)] = 136242, + [SMALL_STATE(3141)] = 136273, + [SMALL_STATE(3142)] = 136304, + [SMALL_STATE(3143)] = 136335, + [SMALL_STATE(3144)] = 136374, + [SMALL_STATE(3145)] = 136407, + [SMALL_STATE(3146)] = 136452, + [SMALL_STATE(3147)] = 136497, + [SMALL_STATE(3148)] = 136542, + [SMALL_STATE(3149)] = 136581, + [SMALL_STATE(3150)] = 136618, + [SMALL_STATE(3151)] = 136649, + [SMALL_STATE(3152)] = 136690, + [SMALL_STATE(3153)] = 136721, + [SMALL_STATE(3154)] = 136758, + [SMALL_STATE(3155)] = 136789, + [SMALL_STATE(3156)] = 136824, + [SMALL_STATE(3157)] = 136857, + [SMALL_STATE(3158)] = 136888, + [SMALL_STATE(3159)] = 136925, + [SMALL_STATE(3160)] = 136956, + [SMALL_STATE(3161)] = 136986, + [SMALL_STATE(3162)] = 137016, + [SMALL_STATE(3163)] = 137054, + [SMALL_STATE(3164)] = 137086, + [SMALL_STATE(3165)] = 137116, + [SMALL_STATE(3166)] = 137148, + [SMALL_STATE(3167)] = 137182, + [SMALL_STATE(3168)] = 137232, + [SMALL_STATE(3169)] = 137266, + [SMALL_STATE(3170)] = 137304, + [SMALL_STATE(3171)] = 137334, + [SMALL_STATE(3172)] = 137364, + [SMALL_STATE(3173)] = 137394, + [SMALL_STATE(3174)] = 137426, + [SMALL_STATE(3175)] = 137462, + [SMALL_STATE(3176)] = 137496, + [SMALL_STATE(3177)] = 137528, + [SMALL_STATE(3178)] = 137566, + [SMALL_STATE(3179)] = 137598, + [SMALL_STATE(3180)] = 137634, + [SMALL_STATE(3181)] = 137666, + [SMALL_STATE(3182)] = 137702, + [SMALL_STATE(3183)] = 137734, + [SMALL_STATE(3184)] = 137772, + [SMALL_STATE(3185)] = 137802, + [SMALL_STATE(3186)] = 137832, + [SMALL_STATE(3187)] = 137884, + [SMALL_STATE(3188)] = 137936, + [SMALL_STATE(3189)] = 137972, + [SMALL_STATE(3190)] = 138004, + [SMALL_STATE(3191)] = 138042, + [SMALL_STATE(3192)] = 138078, + [SMALL_STATE(3193)] = 138114, + [SMALL_STATE(3194)] = 138146, + [SMALL_STATE(3195)] = 138182, + [SMALL_STATE(3196)] = 138212, + [SMALL_STATE(3197)] = 138244, + [SMALL_STATE(3198)] = 138278, + [SMALL_STATE(3199)] = 138314, + [SMALL_STATE(3200)] = 138346, + [SMALL_STATE(3201)] = 138386, + [SMALL_STATE(3202)] = 138438, + [SMALL_STATE(3203)] = 138470, + [SMALL_STATE(3204)] = 138506, + [SMALL_STATE(3205)] = 138558, + [SMALL_STATE(3206)] = 138590, + [SMALL_STATE(3207)] = 138622, + [SMALL_STATE(3208)] = 138654, + [SMALL_STATE(3209)] = 138686, + [SMALL_STATE(3210)] = 138716, + [SMALL_STATE(3211)] = 138746, + [SMALL_STATE(3212)] = 138776, + [SMALL_STATE(3213)] = 138810, + [SMALL_STATE(3214)] = 138843, + [SMALL_STATE(3215)] = 138874, + [SMALL_STATE(3216)] = 138903, + [SMALL_STATE(3217)] = 138932, + [SMALL_STATE(3218)] = 138963, + [SMALL_STATE(3219)] = 138992, + [SMALL_STATE(3220)] = 139023, + [SMALL_STATE(3221)] = 139054, + [SMALL_STATE(3222)] = 139083, + [SMALL_STATE(3223)] = 139114, + [SMALL_STATE(3224)] = 139143, + [SMALL_STATE(3225)] = 139172, + [SMALL_STATE(3226)] = 139207, + [SMALL_STATE(3227)] = 139238, + [SMALL_STATE(3228)] = 139269, + [SMALL_STATE(3229)] = 139298, + [SMALL_STATE(3230)] = 139327, + [SMALL_STATE(3231)] = 139364, + [SMALL_STATE(3232)] = 139393, + [SMALL_STATE(3233)] = 139430, + [SMALL_STATE(3234)] = 139459, + [SMALL_STATE(3235)] = 139492, + [SMALL_STATE(3236)] = 139523, + [SMALL_STATE(3237)] = 139552, + [SMALL_STATE(3238)] = 139581, + [SMALL_STATE(3239)] = 139610, + [SMALL_STATE(3240)] = 139639, + [SMALL_STATE(3241)] = 139676, + [SMALL_STATE(3242)] = 139713, + [SMALL_STATE(3243)] = 139750, + [SMALL_STATE(3244)] = 139781, + [SMALL_STATE(3245)] = 139812, + [SMALL_STATE(3246)] = 139841, + [SMALL_STATE(3247)] = 139878, + [SMALL_STATE(3248)] = 139909, + [SMALL_STATE(3249)] = 139940, + [SMALL_STATE(3250)] = 139971, + [SMALL_STATE(3251)] = 140000, + [SMALL_STATE(3252)] = 140031, + [SMALL_STATE(3253)] = 140060, + [SMALL_STATE(3254)] = 140089, + [SMALL_STATE(3255)] = 140118, + [SMALL_STATE(3256)] = 140149, + [SMALL_STATE(3257)] = 140182, + [SMALL_STATE(3258)] = 140213, + [SMALL_STATE(3259)] = 140244, + [SMALL_STATE(3260)] = 140281, + [SMALL_STATE(3261)] = 140312, + [SMALL_STATE(3262)] = 140343, + [SMALL_STATE(3263)] = 140372, + [SMALL_STATE(3264)] = 140409, + [SMALL_STATE(3265)] = 140446, + [SMALL_STATE(3266)] = 140483, + [SMALL_STATE(3267)] = 140520, + [SMALL_STATE(3268)] = 140557, + [SMALL_STATE(3269)] = 140588, + [SMALL_STATE(3270)] = 140619, + [SMALL_STATE(3271)] = 140656, + [SMALL_STATE(3272)] = 140685, + [SMALL_STATE(3273)] = 140716, + [SMALL_STATE(3274)] = 140745, + [SMALL_STATE(3275)] = 140774, + [SMALL_STATE(3276)] = 140803, + [SMALL_STATE(3277)] = 140832, + [SMALL_STATE(3278)] = 140863, + [SMALL_STATE(3279)] = 140892, + [SMALL_STATE(3280)] = 140921, + [SMALL_STATE(3281)] = 140952, + [SMALL_STATE(3282)] = 140983, + [SMALL_STATE(3283)] = 141014, + [SMALL_STATE(3284)] = 141043, + [SMALL_STATE(3285)] = 141072, + [SMALL_STATE(3286)] = 141100, + [SMALL_STATE(3287)] = 141136, + [SMALL_STATE(3288)] = 141164, + [SMALL_STATE(3289)] = 141208, + [SMALL_STATE(3290)] = 141236, + [SMALL_STATE(3291)] = 141280, + [SMALL_STATE(3292)] = 141316, + [SMALL_STATE(3293)] = 141346, + [SMALL_STATE(3294)] = 141390, + [SMALL_STATE(3295)] = 141420, + [SMALL_STATE(3296)] = 141452, + [SMALL_STATE(3297)] = 141488, + [SMALL_STATE(3298)] = 141524, + [SMALL_STATE(3299)] = 141560, + [SMALL_STATE(3300)] = 141604, + [SMALL_STATE(3301)] = 141640, + [SMALL_STATE(3302)] = 141670, + [SMALL_STATE(3303)] = 141704, + [SMALL_STATE(3304)] = 141734, + [SMALL_STATE(3305)] = 141764, + [SMALL_STATE(3306)] = 141800, + [SMALL_STATE(3307)] = 141828, + [SMALL_STATE(3308)] = 141866, + [SMALL_STATE(3309)] = 141896, + [SMALL_STATE(3310)] = 141924, + [SMALL_STATE(3311)] = 141952, + [SMALL_STATE(3312)] = 141980, + [SMALL_STATE(3313)] = 142008, + [SMALL_STATE(3314)] = 142040, + [SMALL_STATE(3315)] = 142078, + [SMALL_STATE(3316)] = 142106, + [SMALL_STATE(3317)] = 142136, + [SMALL_STATE(3318)] = 142164, + [SMALL_STATE(3319)] = 142194, + [SMALL_STATE(3320)] = 142222, + [SMALL_STATE(3321)] = 142252, + [SMALL_STATE(3322)] = 142280, + [SMALL_STATE(3323)] = 142314, + [SMALL_STATE(3324)] = 142346, + [SMALL_STATE(3325)] = 142374, + [SMALL_STATE(3326)] = 142404, + [SMALL_STATE(3327)] = 142432, + [SMALL_STATE(3328)] = 142464, + [SMALL_STATE(3329)] = 142496, + [SMALL_STATE(3330)] = 142528, + [SMALL_STATE(3331)] = 142560, + [SMALL_STATE(3332)] = 142592, + [SMALL_STATE(3333)] = 142628, + [SMALL_STATE(3334)] = 142656, + [SMALL_STATE(3335)] = 142692, + [SMALL_STATE(3336)] = 142722, + [SMALL_STATE(3337)] = 142752, + [SMALL_STATE(3338)] = 142780, + [SMALL_STATE(3339)] = 142824, + [SMALL_STATE(3340)] = 142860, + [SMALL_STATE(3341)] = 142888, + [SMALL_STATE(3342)] = 142916, + [SMALL_STATE(3343)] = 142944, + [SMALL_STATE(3344)] = 142980, + [SMALL_STATE(3345)] = 143016, + [SMALL_STATE(3346)] = 143044, + [SMALL_STATE(3347)] = 143074, + [SMALL_STATE(3348)] = 143104, + [SMALL_STATE(3349)] = 143132, + [SMALL_STATE(3350)] = 143168, + [SMALL_STATE(3351)] = 143195, + [SMALL_STATE(3352)] = 143224, + [SMALL_STATE(3353)] = 143257, + [SMALL_STATE(3354)] = 143288, + [SMALL_STATE(3355)] = 143319, + [SMALL_STATE(3356)] = 143348, + [SMALL_STATE(3357)] = 143379, + [SMALL_STATE(3358)] = 143404, + [SMALL_STATE(3359)] = 143429, + [SMALL_STATE(3360)] = 143462, + [SMALL_STATE(3361)] = 143493, + [SMALL_STATE(3362)] = 143522, + [SMALL_STATE(3363)] = 143549, + [SMALL_STATE(3364)] = 143576, + [SMALL_STATE(3365)] = 143607, + [SMALL_STATE(3366)] = 143634, + [SMALL_STATE(3367)] = 143659, + [SMALL_STATE(3368)] = 143692, + [SMALL_STATE(3369)] = 143717, + [SMALL_STATE(3370)] = 143744, + [SMALL_STATE(3371)] = 143771, + [SMALL_STATE(3372)] = 143802, + [SMALL_STATE(3373)] = 143829, + [SMALL_STATE(3374)] = 143860, + [SMALL_STATE(3375)] = 143887, + [SMALL_STATE(3376)] = 143914, + [SMALL_STATE(3377)] = 143941, + [SMALL_STATE(3378)] = 143970, + [SMALL_STATE(3379)] = 143997, + [SMALL_STATE(3380)] = 144028, + [SMALL_STATE(3381)] = 144059, + [SMALL_STATE(3382)] = 144090, + [SMALL_STATE(3383)] = 144119, + [SMALL_STATE(3384)] = 144148, + [SMALL_STATE(3385)] = 144173, + [SMALL_STATE(3386)] = 144204, + [SMALL_STATE(3387)] = 144235, + [SMALL_STATE(3388)] = 144266, + [SMALL_STATE(3389)] = 144293, + [SMALL_STATE(3390)] = 144324, + [SMALL_STATE(3391)] = 144359, + [SMALL_STATE(3392)] = 144394, + [SMALL_STATE(3393)] = 144421, + [SMALL_STATE(3394)] = 144448, + [SMALL_STATE(3395)] = 144479, + [SMALL_STATE(3396)] = 144510, + [SMALL_STATE(3397)] = 144537, + [SMALL_STATE(3398)] = 144568, + [SMALL_STATE(3399)] = 144599, + [SMALL_STATE(3400)] = 144630, + [SMALL_STATE(3401)] = 144663, + [SMALL_STATE(3402)] = 144694, + [SMALL_STATE(3403)] = 144725, + [SMALL_STATE(3404)] = 144750, + [SMALL_STATE(3405)] = 144775, + [SMALL_STATE(3406)] = 144804, + [SMALL_STATE(3407)] = 144835, + [SMALL_STATE(3408)] = 144866, + [SMALL_STATE(3409)] = 144895, + [SMALL_STATE(3410)] = 144928, + [SMALL_STATE(3411)] = 144955, + [SMALL_STATE(3412)] = 144988, + [SMALL_STATE(3413)] = 145015, + [SMALL_STATE(3414)] = 145046, + [SMALL_STATE(3415)] = 145077, + [SMALL_STATE(3416)] = 145108, + [SMALL_STATE(3417)] = 145139, + [SMALL_STATE(3418)] = 145166, + [SMALL_STATE(3419)] = 145193, + [SMALL_STATE(3420)] = 145222, + [SMALL_STATE(3421)] = 145251, + [SMALL_STATE(3422)] = 145282, + [SMALL_STATE(3423)] = 145309, + [SMALL_STATE(3424)] = 145340, + [SMALL_STATE(3425)] = 145367, + [SMALL_STATE(3426)] = 145396, + [SMALL_STATE(3427)] = 145429, + [SMALL_STATE(3428)] = 145462, + [SMALL_STATE(3429)] = 145491, + [SMALL_STATE(3430)] = 145522, + [SMALL_STATE(3431)] = 145547, + [SMALL_STATE(3432)] = 145574, + [SMALL_STATE(3433)] = 145599, + [SMALL_STATE(3434)] = 145630, + [SMALL_STATE(3435)] = 145657, + [SMALL_STATE(3436)] = 145690, + [SMALL_STATE(3437)] = 145723, + [SMALL_STATE(3438)] = 145754, + [SMALL_STATE(3439)] = 145785, + [SMALL_STATE(3440)] = 145812, + [SMALL_STATE(3441)] = 145849, + [SMALL_STATE(3442)] = 145880, + [SMALL_STATE(3443)] = 145907, + [SMALL_STATE(3444)] = 145940, + [SMALL_STATE(3445)] = 145967, + [SMALL_STATE(3446)] = 145994, + [SMALL_STATE(3447)] = 146025, + [SMALL_STATE(3448)] = 146054, + [SMALL_STATE(3449)] = 146083, + [SMALL_STATE(3450)] = 146114, + [SMALL_STATE(3451)] = 146141, + [SMALL_STATE(3452)] = 146168, + [SMALL_STATE(3453)] = 146199, + [SMALL_STATE(3454)] = 146230, + [SMALL_STATE(3455)] = 146261, + [SMALL_STATE(3456)] = 146292, + [SMALL_STATE(3457)] = 146323, + [SMALL_STATE(3458)] = 146354, + [SMALL_STATE(3459)] = 146385, + [SMALL_STATE(3460)] = 146412, + [SMALL_STATE(3461)] = 146445, + [SMALL_STATE(3462)] = 146476, + [SMALL_STATE(3463)] = 146507, + [SMALL_STATE(3464)] = 146534, + [SMALL_STATE(3465)] = 146561, + [SMALL_STATE(3466)] = 146590, + [SMALL_STATE(3467)] = 146617, + [SMALL_STATE(3468)] = 146646, + [SMALL_STATE(3469)] = 146675, + [SMALL_STATE(3470)] = 146708, + [SMALL_STATE(3471)] = 146739, + [SMALL_STATE(3472)] = 146768, + [SMALL_STATE(3473)] = 146799, + [SMALL_STATE(3474)] = 146830, + [SMALL_STATE(3475)] = 146863, + [SMALL_STATE(3476)] = 146894, + [SMALL_STATE(3477)] = 146925, + [SMALL_STATE(3478)] = 146958, + [SMALL_STATE(3479)] = 146983, + [SMALL_STATE(3480)] = 147008, + [SMALL_STATE(3481)] = 147039, + [SMALL_STATE(3482)] = 147066, + [SMALL_STATE(3483)] = 147099, + [SMALL_STATE(3484)] = 147128, + [SMALL_STATE(3485)] = 147159, + [SMALL_STATE(3486)] = 147190, + [SMALL_STATE(3487)] = 147221, + [SMALL_STATE(3488)] = 147248, + [SMALL_STATE(3489)] = 147279, + [SMALL_STATE(3490)] = 147312, + [SMALL_STATE(3491)] = 147347, + [SMALL_STATE(3492)] = 147382, + [SMALL_STATE(3493)] = 147417, + [SMALL_STATE(3494)] = 147452, + [SMALL_STATE(3495)] = 147487, + [SMALL_STATE(3496)] = 147522, + [SMALL_STATE(3497)] = 147549, + [SMALL_STATE(3498)] = 147578, + [SMALL_STATE(3499)] = 147605, + [SMALL_STATE(3500)] = 147640, + [SMALL_STATE(3501)] = 147667, + [SMALL_STATE(3502)] = 147700, + [SMALL_STATE(3503)] = 147731, + [SMALL_STATE(3504)] = 147762, + [SMALL_STATE(3505)] = 147789, + [SMALL_STATE(3506)] = 147820, + [SMALL_STATE(3507)] = 147847, + [SMALL_STATE(3508)] = 147882, + [SMALL_STATE(3509)] = 147909, + [SMALL_STATE(3510)] = 147936, + [SMALL_STATE(3511)] = 147969, + [SMALL_STATE(3512)] = 148002, + [SMALL_STATE(3513)] = 148033, + [SMALL_STATE(3514)] = 148064, + [SMALL_STATE(3515)] = 148095, + [SMALL_STATE(3516)] = 148122, + [SMALL_STATE(3517)] = 148155, + [SMALL_STATE(3518)] = 148184, + [SMALL_STATE(3519)] = 148211, + [SMALL_STATE(3520)] = 148240, + [SMALL_STATE(3521)] = 148273, + [SMALL_STATE(3522)] = 148300, + [SMALL_STATE(3523)] = 148327, + [SMALL_STATE(3524)] = 148358, + [SMALL_STATE(3525)] = 148390, + [SMALL_STATE(3526)] = 148418, + [SMALL_STATE(3527)] = 148448, + [SMALL_STATE(3528)] = 148500, + [SMALL_STATE(3529)] = 148552, + [SMALL_STATE(3530)] = 148582, + [SMALL_STATE(3531)] = 148612, + [SMALL_STATE(3532)] = 148636, + [SMALL_STATE(3533)] = 148660, + [SMALL_STATE(3534)] = 148690, + [SMALL_STATE(3535)] = 148722, + [SMALL_STATE(3536)] = 148752, + [SMALL_STATE(3537)] = 148776, + [SMALL_STATE(3538)] = 148828, + [SMALL_STATE(3539)] = 148858, + [SMALL_STATE(3540)] = 148888, + [SMALL_STATE(3541)] = 148914, + [SMALL_STATE(3542)] = 148944, + [SMALL_STATE(3543)] = 148972, + [SMALL_STATE(3544)] = 148998, + [SMALL_STATE(3545)] = 149026, + [SMALL_STATE(3546)] = 149052, + [SMALL_STATE(3547)] = 149104, + [SMALL_STATE(3548)] = 149128, + [SMALL_STATE(3549)] = 149180, + [SMALL_STATE(3550)] = 149210, + [SMALL_STATE(3551)] = 149236, + [SMALL_STATE(3552)] = 149260, + [SMALL_STATE(3553)] = 149312, + [SMALL_STATE(3554)] = 149364, + [SMALL_STATE(3555)] = 149392, + [SMALL_STATE(3556)] = 149420, + [SMALL_STATE(3557)] = 149446, + [SMALL_STATE(3558)] = 149476, + [SMALL_STATE(3559)] = 149502, + [SMALL_STATE(3560)] = 149528, + [SMALL_STATE(3561)] = 149558, + [SMALL_STATE(3562)] = 149588, + [SMALL_STATE(3563)] = 149618, + [SMALL_STATE(3564)] = 149644, + [SMALL_STATE(3565)] = 149674, + [SMALL_STATE(3566)] = 149700, + [SMALL_STATE(3567)] = 149730, + [SMALL_STATE(3568)] = 149758, + [SMALL_STATE(3569)] = 149790, + [SMALL_STATE(3570)] = 149818, + [SMALL_STATE(3571)] = 149848, + [SMALL_STATE(3572)] = 149878, + [SMALL_STATE(3573)] = 149906, + [SMALL_STATE(3574)] = 149930, + [SMALL_STATE(3575)] = 149974, + [SMALL_STATE(3576)] = 150000, + [SMALL_STATE(3577)] = 150026, + [SMALL_STATE(3578)] = 150052, + [SMALL_STATE(3579)] = 150078, + [SMALL_STATE(3580)] = 150104, + [SMALL_STATE(3581)] = 150132, + [SMALL_STATE(3582)] = 150158, + [SMALL_STATE(3583)] = 150184, + [SMALL_STATE(3584)] = 150208, + [SMALL_STATE(3585)] = 150232, + [SMALL_STATE(3586)] = 150258, + [SMALL_STATE(3587)] = 150284, + [SMALL_STATE(3588)] = 150310, + [SMALL_STATE(3589)] = 150336, + [SMALL_STATE(3590)] = 150366, + [SMALL_STATE(3591)] = 150392, + [SMALL_STATE(3592)] = 150420, + [SMALL_STATE(3593)] = 150448, + [SMALL_STATE(3594)] = 150472, + [SMALL_STATE(3595)] = 150498, + [SMALL_STATE(3596)] = 150524, + [SMALL_STATE(3597)] = 150554, + [SMALL_STATE(3598)] = 150578, + [SMALL_STATE(3599)] = 150606, + [SMALL_STATE(3600)] = 150634, + [SMALL_STATE(3601)] = 150680, + [SMALL_STATE(3602)] = 150732, + [SMALL_STATE(3603)] = 150762, + [SMALL_STATE(3604)] = 150792, + [SMALL_STATE(3605)] = 150824, + [SMALL_STATE(3606)] = 150850, + [SMALL_STATE(3607)] = 150876, + [SMALL_STATE(3608)] = 150906, + [SMALL_STATE(3609)] = 150936, + [SMALL_STATE(3610)] = 150966, + [SMALL_STATE(3611)] = 150990, + [SMALL_STATE(3612)] = 151042, + [SMALL_STATE(3613)] = 151094, + [SMALL_STATE(3614)] = 151124, + [SMALL_STATE(3615)] = 151148, + [SMALL_STATE(3616)] = 151172, + [SMALL_STATE(3617)] = 151202, + [SMALL_STATE(3618)] = 151228, + [SMALL_STATE(3619)] = 151258, + [SMALL_STATE(3620)] = 151283, + [SMALL_STATE(3621)] = 151312, + [SMALL_STATE(3622)] = 151337, + [SMALL_STATE(3623)] = 151364, + [SMALL_STATE(3624)] = 151393, + [SMALL_STATE(3625)] = 151418, + [SMALL_STATE(3626)] = 151443, + [SMALL_STATE(3627)] = 151472, + [SMALL_STATE(3628)] = 151501, + [SMALL_STATE(3629)] = 151526, + [SMALL_STATE(3630)] = 151551, + [SMALL_STATE(3631)] = 151576, + [SMALL_STATE(3632)] = 151601, + [SMALL_STATE(3633)] = 151630, + [SMALL_STATE(3634)] = 151655, + [SMALL_STATE(3635)] = 151680, + [SMALL_STATE(3636)] = 151705, + [SMALL_STATE(3637)] = 151730, + [SMALL_STATE(3638)] = 151755, + [SMALL_STATE(3639)] = 151780, + [SMALL_STATE(3640)] = 151805, + [SMALL_STATE(3641)] = 151834, + [SMALL_STATE(3642)] = 151859, + [SMALL_STATE(3643)] = 151884, + [SMALL_STATE(3644)] = 151909, + [SMALL_STATE(3645)] = 151934, + [SMALL_STATE(3646)] = 151963, + [SMALL_STATE(3647)] = 151988, + [SMALL_STATE(3648)] = 152013, + [SMALL_STATE(3649)] = 152042, + [SMALL_STATE(3650)] = 152073, + [SMALL_STATE(3651)] = 152102, + [SMALL_STATE(3652)] = 152127, + [SMALL_STATE(3653)] = 152152, + [SMALL_STATE(3654)] = 152177, + [SMALL_STATE(3655)] = 152202, + [SMALL_STATE(3656)] = 152227, + [SMALL_STATE(3657)] = 152270, + [SMALL_STATE(3658)] = 152295, + [SMALL_STATE(3659)] = 152324, + [SMALL_STATE(3660)] = 152349, + [SMALL_STATE(3661)] = 152374, + [SMALL_STATE(3662)] = 152399, + [SMALL_STATE(3663)] = 152430, + [SMALL_STATE(3664)] = 152455, + [SMALL_STATE(3665)] = 152480, + [SMALL_STATE(3666)] = 152505, + [SMALL_STATE(3667)] = 152530, + [SMALL_STATE(3668)] = 152559, + [SMALL_STATE(3669)] = 152584, + [SMALL_STATE(3670)] = 152609, + [SMALL_STATE(3671)] = 152634, + [SMALL_STATE(3672)] = 152659, + [SMALL_STATE(3673)] = 152684, + [SMALL_STATE(3674)] = 152709, + [SMALL_STATE(3675)] = 152734, + [SMALL_STATE(3676)] = 152761, + [SMALL_STATE(3677)] = 152786, + [SMALL_STATE(3678)] = 152811, + [SMALL_STATE(3679)] = 152850, + [SMALL_STATE(3680)] = 152875, + [SMALL_STATE(3681)] = 152900, + [SMALL_STATE(3682)] = 152925, + [SMALL_STATE(3683)] = 152950, + [SMALL_STATE(3684)] = 152975, + [SMALL_STATE(3685)] = 153004, + [SMALL_STATE(3686)] = 153029, + [SMALL_STATE(3687)] = 153058, + [SMALL_STATE(3688)] = 153083, + [SMALL_STATE(3689)] = 153112, + [SMALL_STATE(3690)] = 153137, + [SMALL_STATE(3691)] = 153162, + [SMALL_STATE(3692)] = 153191, + [SMALL_STATE(3693)] = 153220, + [SMALL_STATE(3694)] = 153249, + [SMALL_STATE(3695)] = 153272, + [SMALL_STATE(3696)] = 153297, + [SMALL_STATE(3697)] = 153322, + [SMALL_STATE(3698)] = 153351, + [SMALL_STATE(3699)] = 153376, + [SMALL_STATE(3700)] = 153403, + [SMALL_STATE(3701)] = 153428, + [SMALL_STATE(3702)] = 153453, + [SMALL_STATE(3703)] = 153482, + [SMALL_STATE(3704)] = 153505, + [SMALL_STATE(3705)] = 153534, + [SMALL_STATE(3706)] = 153563, + [SMALL_STATE(3707)] = 153588, + [SMALL_STATE(3708)] = 153613, + [SMALL_STATE(3709)] = 153642, + [SMALL_STATE(3710)] = 153671, + [SMALL_STATE(3711)] = 153700, + [SMALL_STATE(3712)] = 153729, + [SMALL_STATE(3713)] = 153758, + [SMALL_STATE(3714)] = 153787, + [SMALL_STATE(3715)] = 153812, + [SMALL_STATE(3716)] = 153837, + [SMALL_STATE(3717)] = 153862, + [SMALL_STATE(3718)] = 153887, + [SMALL_STATE(3719)] = 153912, + [SMALL_STATE(3720)] = 153937, + [SMALL_STATE(3721)] = 153966, + [SMALL_STATE(3722)] = 153995, + [SMALL_STATE(3723)] = 154024, + [SMALL_STATE(3724)] = 154053, + [SMALL_STATE(3725)] = 154078, + [SMALL_STATE(3726)] = 154103, + [SMALL_STATE(3727)] = 154132, + [SMALL_STATE(3728)] = 154157, + [SMALL_STATE(3729)] = 154186, + [SMALL_STATE(3730)] = 154215, + [SMALL_STATE(3731)] = 154242, + [SMALL_STATE(3732)] = 154271, + [SMALL_STATE(3733)] = 154298, + [SMALL_STATE(3734)] = 154323, + [SMALL_STATE(3735)] = 154348, + [SMALL_STATE(3736)] = 154375, + [SMALL_STATE(3737)] = 154402, + [SMALL_STATE(3738)] = 154427, + [SMALL_STATE(3739)] = 154456, + [SMALL_STATE(3740)] = 154481, + [SMALL_STATE(3741)] = 154506, + [SMALL_STATE(3742)] = 154535, + [SMALL_STATE(3743)] = 154560, + [SMALL_STATE(3744)] = 154585, + [SMALL_STATE(3745)] = 154610, + [SMALL_STATE(3746)] = 154639, + [SMALL_STATE(3747)] = 154664, + [SMALL_STATE(3748)] = 154689, + [SMALL_STATE(3749)] = 154714, + [SMALL_STATE(3750)] = 154743, + [SMALL_STATE(3751)] = 154768, + [SMALL_STATE(3752)] = 154793, + [SMALL_STATE(3753)] = 154818, + [SMALL_STATE(3754)] = 154847, + [SMALL_STATE(3755)] = 154876, + [SMALL_STATE(3756)] = 154905, + [SMALL_STATE(3757)] = 154930, + [SMALL_STATE(3758)] = 154955, + [SMALL_STATE(3759)] = 154984, + [SMALL_STATE(3760)] = 155015, + [SMALL_STATE(3761)] = 155040, + [SMALL_STATE(3762)] = 155065, + [SMALL_STATE(3763)] = 155094, + [SMALL_STATE(3764)] = 155123, + [SMALL_STATE(3765)] = 155148, + [SMALL_STATE(3766)] = 155173, + [SMALL_STATE(3767)] = 155198, + [SMALL_STATE(3768)] = 155223, + [SMALL_STATE(3769)] = 155248, + [SMALL_STATE(3770)] = 155273, + [SMALL_STATE(3771)] = 155302, + [SMALL_STATE(3772)] = 155327, + [SMALL_STATE(3773)] = 155352, + [SMALL_STATE(3774)] = 155377, + [SMALL_STATE(3775)] = 155402, + [SMALL_STATE(3776)] = 155433, + [SMALL_STATE(3777)] = 155458, + [SMALL_STATE(3778)] = 155483, + [SMALL_STATE(3779)] = 155507, + [SMALL_STATE(3780)] = 155529, + [SMALL_STATE(3781)] = 155551, + [SMALL_STATE(3782)] = 155575, + [SMALL_STATE(3783)] = 155599, + [SMALL_STATE(3784)] = 155623, + [SMALL_STATE(3785)] = 155647, + [SMALL_STATE(3786)] = 155687, + [SMALL_STATE(3787)] = 155711, + [SMALL_STATE(3788)] = 155747, + [SMALL_STATE(3789)] = 155793, + [SMALL_STATE(3790)] = 155817, + [SMALL_STATE(3791)] = 155857, + [SMALL_STATE(3792)] = 155897, + [SMALL_STATE(3793)] = 155921, + [SMALL_STATE(3794)] = 155945, + [SMALL_STATE(3795)] = 155967, + [SMALL_STATE(3796)] = 155993, + [SMALL_STATE(3797)] = 156015, + [SMALL_STATE(3798)] = 156039, + [SMALL_STATE(3799)] = 156063, + [SMALL_STATE(3800)] = 156087, + [SMALL_STATE(3801)] = 156123, + [SMALL_STATE(3802)] = 156147, + [SMALL_STATE(3803)] = 156171, + [SMALL_STATE(3804)] = 156195, + [SMALL_STATE(3805)] = 156219, + [SMALL_STATE(3806)] = 156241, + [SMALL_STATE(3807)] = 156287, + [SMALL_STATE(3808)] = 156309, + [SMALL_STATE(3809)] = 156331, + [SMALL_STATE(3810)] = 156355, + [SMALL_STATE(3811)] = 156377, + [SMALL_STATE(3812)] = 156401, + [SMALL_STATE(3813)] = 156425, + [SMALL_STATE(3814)] = 156449, + [SMALL_STATE(3815)] = 156471, + [SMALL_STATE(3816)] = 156495, + [SMALL_STATE(3817)] = 156519, + [SMALL_STATE(3818)] = 156565, + [SMALL_STATE(3819)] = 156589, + [SMALL_STATE(3820)] = 156611, + [SMALL_STATE(3821)] = 156657, + [SMALL_STATE(3822)] = 156681, + [SMALL_STATE(3823)] = 156705, + [SMALL_STATE(3824)] = 156729, + [SMALL_STATE(3825)] = 156753, + [SMALL_STATE(3826)] = 156777, + [SMALL_STATE(3827)] = 156801, + [SMALL_STATE(3828)] = 156825, + [SMALL_STATE(3829)] = 156849, + [SMALL_STATE(3830)] = 156873, + [SMALL_STATE(3831)] = 156897, + [SMALL_STATE(3832)] = 156921, + [SMALL_STATE(3833)] = 156945, + [SMALL_STATE(3834)] = 156987, + [SMALL_STATE(3835)] = 157033, + [SMALL_STATE(3836)] = 157057, + [SMALL_STATE(3837)] = 157081, + [SMALL_STATE(3838)] = 157105, + [SMALL_STATE(3839)] = 157129, + [SMALL_STATE(3840)] = 157153, + [SMALL_STATE(3841)] = 157177, + [SMALL_STATE(3842)] = 157201, + [SMALL_STATE(3843)] = 157225, + [SMALL_STATE(3844)] = 157249, + [SMALL_STATE(3845)] = 157273, + [SMALL_STATE(3846)] = 157297, + [SMALL_STATE(3847)] = 157321, + [SMALL_STATE(3848)] = 157345, + [SMALL_STATE(3849)] = 157369, + [SMALL_STATE(3850)] = 157391, + [SMALL_STATE(3851)] = 157415, + [SMALL_STATE(3852)] = 157439, + [SMALL_STATE(3853)] = 157485, + [SMALL_STATE(3854)] = 157521, + [SMALL_STATE(3855)] = 157567, + [SMALL_STATE(3856)] = 157591, + [SMALL_STATE(3857)] = 157613, + [SMALL_STATE(3858)] = 157637, + [SMALL_STATE(3859)] = 157661, + [SMALL_STATE(3860)] = 157685, + [SMALL_STATE(3861)] = 157709, + [SMALL_STATE(3862)] = 157733, + [SMALL_STATE(3863)] = 157757, + [SMALL_STATE(3864)] = 157781, + [SMALL_STATE(3865)] = 157805, + [SMALL_STATE(3866)] = 157829, + [SMALL_STATE(3867)] = 157853, + [SMALL_STATE(3868)] = 157893, + [SMALL_STATE(3869)] = 157917, + [SMALL_STATE(3870)] = 157941, + [SMALL_STATE(3871)] = 157965, + [SMALL_STATE(3872)] = 157989, + [SMALL_STATE(3873)] = 158011, + [SMALL_STATE(3874)] = 158035, + [SMALL_STATE(3875)] = 158081, + [SMALL_STATE(3876)] = 158103, + [SMALL_STATE(3877)] = 158149, + [SMALL_STATE(3878)] = 158173, + [SMALL_STATE(3879)] = 158201, + [SMALL_STATE(3880)] = 158229, + [SMALL_STATE(3881)] = 158257, + [SMALL_STATE(3882)] = 158285, + [SMALL_STATE(3883)] = 158313, + [SMALL_STATE(3884)] = 158341, + [SMALL_STATE(3885)] = 158369, + [SMALL_STATE(3886)] = 158397, + [SMALL_STATE(3887)] = 158425, + [SMALL_STATE(3888)] = 158453, + [SMALL_STATE(3889)] = 158481, + [SMALL_STATE(3890)] = 158509, + [SMALL_STATE(3891)] = 158533, + [SMALL_STATE(3892)] = 158557, + [SMALL_STATE(3893)] = 158581, + [SMALL_STATE(3894)] = 158605, + [SMALL_STATE(3895)] = 158647, + [SMALL_STATE(3896)] = 158673, + [SMALL_STATE(3897)] = 158695, + [SMALL_STATE(3898)] = 158719, + [SMALL_STATE(3899)] = 158765, + [SMALL_STATE(3900)] = 158789, + [SMALL_STATE(3901)] = 158813, + [SMALL_STATE(3902)] = 158835, + [SMALL_STATE(3903)] = 158859, + [SMALL_STATE(3904)] = 158883, + [SMALL_STATE(3905)] = 158907, + [SMALL_STATE(3906)] = 158931, + [SMALL_STATE(3907)] = 158969, + [SMALL_STATE(3908)] = 158993, + [SMALL_STATE(3909)] = 159017, + [SMALL_STATE(3910)] = 159041, + [SMALL_STATE(3911)] = 159065, + [SMALL_STATE(3912)] = 159086, + [SMALL_STATE(3913)] = 159107, + [SMALL_STATE(3914)] = 159128, + [SMALL_STATE(3915)] = 159167, + [SMALL_STATE(3916)] = 159188, + [SMALL_STATE(3917)] = 159209, + [SMALL_STATE(3918)] = 159230, + [SMALL_STATE(3919)] = 159251, + [SMALL_STATE(3920)] = 159278, + [SMALL_STATE(3921)] = 159299, + [SMALL_STATE(3922)] = 159320, + [SMALL_STATE(3923)] = 159341, + [SMALL_STATE(3924)] = 159378, + [SMALL_STATE(3925)] = 159399, + [SMALL_STATE(3926)] = 159436, + [SMALL_STATE(3927)] = 159473, + [SMALL_STATE(3928)] = 159496, + [SMALL_STATE(3929)] = 159517, + [SMALL_STATE(3930)] = 159538, + [SMALL_STATE(3931)] = 159577, + [SMALL_STATE(3932)] = 159614, + [SMALL_STATE(3933)] = 159635, + [SMALL_STATE(3934)] = 159656, + [SMALL_STATE(3935)] = 159677, + [SMALL_STATE(3936)] = 159714, + [SMALL_STATE(3937)] = 159751, + [SMALL_STATE(3938)] = 159778, + [SMALL_STATE(3939)] = 159799, + [SMALL_STATE(3940)] = 159820, + [SMALL_STATE(3941)] = 159841, + [SMALL_STATE(3942)] = 159864, + [SMALL_STATE(3943)] = 159885, + [SMALL_STATE(3944)] = 159906, + [SMALL_STATE(3945)] = 159927, + [SMALL_STATE(3946)] = 159948, + [SMALL_STATE(3947)] = 159975, + [SMALL_STATE(3948)] = 159996, + [SMALL_STATE(3949)] = 160033, + [SMALL_STATE(3950)] = 160054, + [SMALL_STATE(3951)] = 160075, + [SMALL_STATE(3952)] = 160096, + [SMALL_STATE(3953)] = 160131, + [SMALL_STATE(3954)] = 160154, + [SMALL_STATE(3955)] = 160177, + [SMALL_STATE(3956)] = 160198, + [SMALL_STATE(3957)] = 160231, + [SMALL_STATE(3958)] = 160252, + [SMALL_STATE(3959)] = 160273, + [SMALL_STATE(3960)] = 160296, + [SMALL_STATE(3961)] = 160317, + [SMALL_STATE(3962)] = 160340, + [SMALL_STATE(3963)] = 160361, + [SMALL_STATE(3964)] = 160382, + [SMALL_STATE(3965)] = 160403, + [SMALL_STATE(3966)] = 160424, + [SMALL_STATE(3967)] = 160451, + [SMALL_STATE(3968)] = 160472, + [SMALL_STATE(3969)] = 160497, + [SMALL_STATE(3970)] = 160518, + [SMALL_STATE(3971)] = 160539, + [SMALL_STATE(3972)] = 160578, + [SMALL_STATE(3973)] = 160599, + [SMALL_STATE(3974)] = 160626, + [SMALL_STATE(3975)] = 160647, + [SMALL_STATE(3976)] = 160668, + [SMALL_STATE(3977)] = 160701, + [SMALL_STATE(3978)] = 160734, + [SMALL_STATE(3979)] = 160767, + [SMALL_STATE(3980)] = 160788, + [SMALL_STATE(3981)] = 160809, + [SMALL_STATE(3982)] = 160830, + [SMALL_STATE(3983)] = 160851, + [SMALL_STATE(3984)] = 160874, + [SMALL_STATE(3985)] = 160897, + [SMALL_STATE(3986)] = 160918, + [SMALL_STATE(3987)] = 160941, + [SMALL_STATE(3988)] = 160968, + [SMALL_STATE(3989)] = 160991, + [SMALL_STATE(3990)] = 161014, + [SMALL_STATE(3991)] = 161035, + [SMALL_STATE(3992)] = 161056, + [SMALL_STATE(3993)] = 161079, + [SMALL_STATE(3994)] = 161100, + [SMALL_STATE(3995)] = 161139, + [SMALL_STATE(3996)] = 161162, + [SMALL_STATE(3997)] = 161201, + [SMALL_STATE(3998)] = 161222, + [SMALL_STATE(3999)] = 161243, + [SMALL_STATE(4000)] = 161264, + [SMALL_STATE(4001)] = 161303, + [SMALL_STATE(4002)] = 161330, + [SMALL_STATE(4003)] = 161357, + [SMALL_STATE(4004)] = 161384, + [SMALL_STATE(4005)] = 161411, + [SMALL_STATE(4006)] = 161438, + [SMALL_STATE(4007)] = 161465, + [SMALL_STATE(4008)] = 161492, + [SMALL_STATE(4009)] = 161519, + [SMALL_STATE(4010)] = 161546, + [SMALL_STATE(4011)] = 161573, + [SMALL_STATE(4012)] = 161600, + [SMALL_STATE(4013)] = 161627, + [SMALL_STATE(4014)] = 161648, + [SMALL_STATE(4015)] = 161669, + [SMALL_STATE(4016)] = 161690, + [SMALL_STATE(4017)] = 161711, + [SMALL_STATE(4018)] = 161734, + [SMALL_STATE(4019)] = 161769, + [SMALL_STATE(4020)] = 161792, + [SMALL_STATE(4021)] = 161815, + [SMALL_STATE(4022)] = 161838, + [SMALL_STATE(4023)] = 161861, + [SMALL_STATE(4024)] = 161884, + [SMALL_STATE(4025)] = 161907, + [SMALL_STATE(4026)] = 161946, + [SMALL_STATE(4027)] = 161967, + [SMALL_STATE(4028)] = 161990, + [SMALL_STATE(4029)] = 162013, + [SMALL_STATE(4030)] = 162036, + [SMALL_STATE(4031)] = 162057, + [SMALL_STATE(4032)] = 162094, + [SMALL_STATE(4033)] = 162121, + [SMALL_STATE(4034)] = 162160, + [SMALL_STATE(4035)] = 162181, + [SMALL_STATE(4036)] = 162220, + [SMALL_STATE(4037)] = 162243, + [SMALL_STATE(4038)] = 162264, + [SMALL_STATE(4039)] = 162287, + [SMALL_STATE(4040)] = 162310, + [SMALL_STATE(4041)] = 162333, + [SMALL_STATE(4042)] = 162354, + [SMALL_STATE(4043)] = 162377, + [SMALL_STATE(4044)] = 162400, + [SMALL_STATE(4045)] = 162437, + [SMALL_STATE(4046)] = 162460, + [SMALL_STATE(4047)] = 162483, + [SMALL_STATE(4048)] = 162506, + [SMALL_STATE(4049)] = 162545, + [SMALL_STATE(4050)] = 162566, + [SMALL_STATE(4051)] = 162589, + [SMALL_STATE(4052)] = 162625, + [SMALL_STATE(4053)] = 162651, + [SMALL_STATE(4054)] = 162683, + [SMALL_STATE(4055)] = 162707, + [SMALL_STATE(4056)] = 162733, + [SMALL_STATE(4057)] = 162769, + [SMALL_STATE(4058)] = 162791, + [SMALL_STATE(4059)] = 162817, + [SMALL_STATE(4060)] = 162839, + [SMALL_STATE(4061)] = 162865, + [SMALL_STATE(4062)] = 162887, + [SMALL_STATE(4063)] = 162909, + [SMALL_STATE(4064)] = 162941, + [SMALL_STATE(4065)] = 162967, + [SMALL_STATE(4066)] = 163001, + [SMALL_STATE(4067)] = 163027, + [SMALL_STATE(4068)] = 163053, + [SMALL_STATE(4069)] = 163079, + [SMALL_STATE(4070)] = 163111, + [SMALL_STATE(4071)] = 163143, + [SMALL_STATE(4072)] = 163167, + [SMALL_STATE(4073)] = 163189, + [SMALL_STATE(4074)] = 163215, + [SMALL_STATE(4075)] = 163241, + [SMALL_STATE(4076)] = 163263, + [SMALL_STATE(4077)] = 163287, + [SMALL_STATE(4078)] = 163311, + [SMALL_STATE(4079)] = 163337, + [SMALL_STATE(4080)] = 163361, + [SMALL_STATE(4081)] = 163395, + [SMALL_STATE(4082)] = 163427, + [SMALL_STATE(4083)] = 163451, + [SMALL_STATE(4084)] = 163473, + [SMALL_STATE(4085)] = 163507, + [SMALL_STATE(4086)] = 163533, + [SMALL_STATE(4087)] = 163569, + [SMALL_STATE(4088)] = 163591, + [SMALL_STATE(4089)] = 163622, + [SMALL_STATE(4090)] = 163645, + [SMALL_STATE(4091)] = 163678, + [SMALL_STATE(4092)] = 163711, + [SMALL_STATE(4093)] = 163742, + [SMALL_STATE(4094)] = 163765, + [SMALL_STATE(4095)] = 163798, + [SMALL_STATE(4096)] = 163831, + [SMALL_STATE(4097)] = 163864, + [SMALL_STATE(4098)] = 163887, + [SMALL_STATE(4099)] = 163920, + [SMALL_STATE(4100)] = 163953, + [SMALL_STATE(4101)] = 163984, + [SMALL_STATE(4102)] = 164019, + [SMALL_STATE(4103)] = 164044, + [SMALL_STATE(4104)] = 164065, + [SMALL_STATE(4105)] = 164098, + [SMALL_STATE(4106)] = 164131, + [SMALL_STATE(4107)] = 164162, + [SMALL_STATE(4108)] = 164197, + [SMALL_STATE(4109)] = 164228, + [SMALL_STATE(4110)] = 164249, + [SMALL_STATE(4111)] = 164282, + [SMALL_STATE(4112)] = 164315, + [SMALL_STATE(4113)] = 164346, + [SMALL_STATE(4114)] = 164375, + [SMALL_STATE(4115)] = 164408, + [SMALL_STATE(4116)] = 164441, + [SMALL_STATE(4117)] = 164472, + [SMALL_STATE(4118)] = 164503, + [SMALL_STATE(4119)] = 164536, + [SMALL_STATE(4120)] = 164569, + [SMALL_STATE(4121)] = 164600, + [SMALL_STATE(4122)] = 164633, + [SMALL_STATE(4123)] = 164666, + [SMALL_STATE(4124)] = 164697, + [SMALL_STATE(4125)] = 164730, + [SMALL_STATE(4126)] = 164763, + [SMALL_STATE(4127)] = 164796, + [SMALL_STATE(4128)] = 164827, + [SMALL_STATE(4129)] = 164860, + [SMALL_STATE(4130)] = 164893, + [SMALL_STATE(4131)] = 164926, + [SMALL_STATE(4132)] = 164959, + [SMALL_STATE(4133)] = 164992, + [SMALL_STATE(4134)] = 165023, + [SMALL_STATE(4135)] = 165056, + [SMALL_STATE(4136)] = 165089, + [SMALL_STATE(4137)] = 165120, + [SMALL_STATE(4138)] = 165153, + [SMALL_STATE(4139)] = 165184, + [SMALL_STATE(4140)] = 165215, + [SMALL_STATE(4141)] = 165246, + [SMALL_STATE(4142)] = 165277, + [SMALL_STATE(4143)] = 165308, + [SMALL_STATE(4144)] = 165339, + [SMALL_STATE(4145)] = 165370, + [SMALL_STATE(4146)] = 165401, + [SMALL_STATE(4147)] = 165432, + [SMALL_STATE(4148)] = 165463, + [SMALL_STATE(4149)] = 165494, + [SMALL_STATE(4150)] = 165519, + [SMALL_STATE(4151)] = 165546, + [SMALL_STATE(4152)] = 165569, + [SMALL_STATE(4153)] = 165602, + [SMALL_STATE(4154)] = 165623, + [SMALL_STATE(4155)] = 165654, + [SMALL_STATE(4156)] = 165687, + [SMALL_STATE(4157)] = 165718, + [SMALL_STATE(4158)] = 165751, + [SMALL_STATE(4159)] = 165776, + [SMALL_STATE(4160)] = 165801, + [SMALL_STATE(4161)] = 165834, + [SMALL_STATE(4162)] = 165867, + [SMALL_STATE(4163)] = 165900, + [SMALL_STATE(4164)] = 165933, + [SMALL_STATE(4165)] = 165962, + [SMALL_STATE(4166)] = 165993, + [SMALL_STATE(4167)] = 166014, + [SMALL_STATE(4168)] = 166043, + [SMALL_STATE(4169)] = 166066, + [SMALL_STATE(4170)] = 166089, + [SMALL_STATE(4171)] = 166110, + [SMALL_STATE(4172)] = 166135, + [SMALL_STATE(4173)] = 166156, + [SMALL_STATE(4174)] = 166183, + [SMALL_STATE(4175)] = 166216, + [SMALL_STATE(4176)] = 166249, + [SMALL_STATE(4177)] = 166282, + [SMALL_STATE(4178)] = 166315, + [SMALL_STATE(4179)] = 166336, + [SMALL_STATE(4180)] = 166367, + [SMALL_STATE(4181)] = 166398, + [SMALL_STATE(4182)] = 166431, + [SMALL_STATE(4183)] = 166456, + [SMALL_STATE(4184)] = 166489, + [SMALL_STATE(4185)] = 166509, + [SMALL_STATE(4186)] = 166537, + [SMALL_STATE(4187)] = 166557, + [SMALL_STATE(4188)] = 166585, + [SMALL_STATE(4189)] = 166605, + [SMALL_STATE(4190)] = 166633, + [SMALL_STATE(4191)] = 166661, + [SMALL_STATE(4192)] = 166689, + [SMALL_STATE(4193)] = 166717, + [SMALL_STATE(4194)] = 166745, + [SMALL_STATE(4195)] = 166773, + [SMALL_STATE(4196)] = 166801, + [SMALL_STATE(4197)] = 166829, + [SMALL_STATE(4198)] = 166857, + [SMALL_STATE(4199)] = 166881, + [SMALL_STATE(4200)] = 166909, + [SMALL_STATE(4201)] = 166931, + [SMALL_STATE(4202)] = 166953, + [SMALL_STATE(4203)] = 166977, + [SMALL_STATE(4204)] = 167005, + [SMALL_STATE(4205)] = 167033, + [SMALL_STATE(4206)] = 167061, + [SMALL_STATE(4207)] = 167081, + [SMALL_STATE(4208)] = 167109, + [SMALL_STATE(4209)] = 167137, + [SMALL_STATE(4210)] = 167165, + [SMALL_STATE(4211)] = 167193, + [SMALL_STATE(4212)] = 167215, + [SMALL_STATE(4213)] = 167243, + [SMALL_STATE(4214)] = 167271, + [SMALL_STATE(4215)] = 167299, + [SMALL_STATE(4216)] = 167321, + [SMALL_STATE(4217)] = 167341, + [SMALL_STATE(4218)] = 167371, + [SMALL_STATE(4219)] = 167399, + [SMALL_STATE(4220)] = 167427, + [SMALL_STATE(4221)] = 167455, + [SMALL_STATE(4222)] = 167483, + [SMALL_STATE(4223)] = 167511, + [SMALL_STATE(4224)] = 167535, + [SMALL_STATE(4225)] = 167563, + [SMALL_STATE(4226)] = 167591, + [SMALL_STATE(4227)] = 167619, + [SMALL_STATE(4228)] = 167647, + [SMALL_STATE(4229)] = 167673, + [SMALL_STATE(4230)] = 167701, + [SMALL_STATE(4231)] = 167729, + [SMALL_STATE(4232)] = 167757, + [SMALL_STATE(4233)] = 167785, + [SMALL_STATE(4234)] = 167807, + [SMALL_STATE(4235)] = 167829, + [SMALL_STATE(4236)] = 167857, + [SMALL_STATE(4237)] = 167885, + [SMALL_STATE(4238)] = 167909, + [SMALL_STATE(4239)] = 167933, + [SMALL_STATE(4240)] = 167961, + [SMALL_STATE(4241)] = 167985, + [SMALL_STATE(4242)] = 168005, + [SMALL_STATE(4243)] = 168025, + [SMALL_STATE(4244)] = 168053, + [SMALL_STATE(4245)] = 168081, + [SMALL_STATE(4246)] = 168109, + [SMALL_STATE(4247)] = 168137, + [SMALL_STATE(4248)] = 168157, + [SMALL_STATE(4249)] = 168185, + [SMALL_STATE(4250)] = 168213, + [SMALL_STATE(4251)] = 168237, + [SMALL_STATE(4252)] = 168257, + [SMALL_STATE(4253)] = 168285, + [SMALL_STATE(4254)] = 168313, + [SMALL_STATE(4255)] = 168341, + [SMALL_STATE(4256)] = 168369, + [SMALL_STATE(4257)] = 168397, + [SMALL_STATE(4258)] = 168425, + [SMALL_STATE(4259)] = 168453, + [SMALL_STATE(4260)] = 168478, + [SMALL_STATE(4261)] = 168497, + [SMALL_STATE(4262)] = 168516, + [SMALL_STATE(4263)] = 168541, + [SMALL_STATE(4264)] = 168568, + [SMALL_STATE(4265)] = 168595, + [SMALL_STATE(4266)] = 168620, + [SMALL_STATE(4267)] = 168639, + [SMALL_STATE(4268)] = 168662, + [SMALL_STATE(4269)] = 168687, + [SMALL_STATE(4270)] = 168710, + [SMALL_STATE(4271)] = 168741, + [SMALL_STATE(4272)] = 168766, + [SMALL_STATE(4273)] = 168791, + [SMALL_STATE(4274)] = 168812, + [SMALL_STATE(4275)] = 168835, + [SMALL_STATE(4276)] = 168860, + [SMALL_STATE(4277)] = 168885, + [SMALL_STATE(4278)] = 168906, + [SMALL_STATE(4279)] = 168929, + [SMALL_STATE(4280)] = 168948, + [SMALL_STATE(4281)] = 168967, + [SMALL_STATE(4282)] = 168994, + [SMALL_STATE(4283)] = 169019, + [SMALL_STATE(4284)] = 169040, + [SMALL_STATE(4285)] = 169061, + [SMALL_STATE(4286)] = 169082, + [SMALL_STATE(4287)] = 169101, + [SMALL_STATE(4288)] = 169122, + [SMALL_STATE(4289)] = 169143, + [SMALL_STATE(4290)] = 169168, + [SMALL_STATE(4291)] = 169187, + [SMALL_STATE(4292)] = 169212, + [SMALL_STATE(4293)] = 169237, + [SMALL_STATE(4294)] = 169256, + [SMALL_STATE(4295)] = 169275, + [SMALL_STATE(4296)] = 169300, + [SMALL_STATE(4297)] = 169325, + [SMALL_STATE(4298)] = 169356, + [SMALL_STATE(4299)] = 169381, + [SMALL_STATE(4300)] = 169402, + [SMALL_STATE(4301)] = 169421, + [SMALL_STATE(4302)] = 169446, + [SMALL_STATE(4303)] = 169464, + [SMALL_STATE(4304)] = 169492, + [SMALL_STATE(4305)] = 169518, + [SMALL_STATE(4306)] = 169546, + [SMALL_STATE(4307)] = 169574, + [SMALL_STATE(4308)] = 169600, + [SMALL_STATE(4309)] = 169626, + [SMALL_STATE(4310)] = 169650, + [SMALL_STATE(4311)] = 169668, + [SMALL_STATE(4312)] = 169696, + [SMALL_STATE(4313)] = 169724, + [SMALL_STATE(4314)] = 169748, + [SMALL_STATE(4315)] = 169776, + [SMALL_STATE(4316)] = 169802, + [SMALL_STATE(4317)] = 169830, + [SMALL_STATE(4318)] = 169854, + [SMALL_STATE(4319)] = 169872, + [SMALL_STATE(4320)] = 169900, + [SMALL_STATE(4321)] = 169924, + [SMALL_STATE(4322)] = 169952, + [SMALL_STATE(4323)] = 169976, + [SMALL_STATE(4324)] = 170004, + [SMALL_STATE(4325)] = 170026, + [SMALL_STATE(4326)] = 170054, + [SMALL_STATE(4327)] = 170082, + [SMALL_STATE(4328)] = 170108, + [SMALL_STATE(4329)] = 170126, + [SMALL_STATE(4330)] = 170154, + [SMALL_STATE(4331)] = 170182, + [SMALL_STATE(4332)] = 170210, + [SMALL_STATE(4333)] = 170236, + [SMALL_STATE(4334)] = 170264, + [SMALL_STATE(4335)] = 170284, + [SMALL_STATE(4336)] = 170304, + [SMALL_STATE(4337)] = 170330, + [SMALL_STATE(4338)] = 170356, + [SMALL_STATE(4339)] = 170384, + [SMALL_STATE(4340)] = 170410, + [SMALL_STATE(4341)] = 170436, + [SMALL_STATE(4342)] = 170464, + [SMALL_STATE(4343)] = 170482, + [SMALL_STATE(4344)] = 170500, + [SMALL_STATE(4345)] = 170528, + [SMALL_STATE(4346)] = 170552, + [SMALL_STATE(4347)] = 170580, + [SMALL_STATE(4348)] = 170608, + [SMALL_STATE(4349)] = 170634, + [SMALL_STATE(4350)] = 170662, + [SMALL_STATE(4351)] = 170690, + [SMALL_STATE(4352)] = 170708, + [SMALL_STATE(4353)] = 170730, + [SMALL_STATE(4354)] = 170754, + [SMALL_STATE(4355)] = 170772, + [SMALL_STATE(4356)] = 170798, + [SMALL_STATE(4357)] = 170820, + [SMALL_STATE(4358)] = 170848, + [SMALL_STATE(4359)] = 170870, + [SMALL_STATE(4360)] = 170898, + [SMALL_STATE(4361)] = 170926, + [SMALL_STATE(4362)] = 170948, + [SMALL_STATE(4363)] = 170966, + [SMALL_STATE(4364)] = 170994, + [SMALL_STATE(4365)] = 171022, + [SMALL_STATE(4366)] = 171050, + [SMALL_STATE(4367)] = 171078, + [SMALL_STATE(4368)] = 171106, + [SMALL_STATE(4369)] = 171128, + [SMALL_STATE(4370)] = 171156, + [SMALL_STATE(4371)] = 171182, + [SMALL_STATE(4372)] = 171208, + [SMALL_STATE(4373)] = 171232, + [SMALL_STATE(4374)] = 171260, + [SMALL_STATE(4375)] = 171278, + [SMALL_STATE(4376)] = 171304, + [SMALL_STATE(4377)] = 171332, + [SMALL_STATE(4378)] = 171356, + [SMALL_STATE(4379)] = 171376, + [SMALL_STATE(4380)] = 171400, + [SMALL_STATE(4381)] = 171428, + [SMALL_STATE(4382)] = 171450, + [SMALL_STATE(4383)] = 171478, + [SMALL_STATE(4384)] = 171500, + [SMALL_STATE(4385)] = 171528, + [SMALL_STATE(4386)] = 171556, + [SMALL_STATE(4387)] = 171584, + [SMALL_STATE(4388)] = 171602, + [SMALL_STATE(4389)] = 171630, + [SMALL_STATE(4390)] = 171654, + [SMALL_STATE(4391)] = 171678, + [SMALL_STATE(4392)] = 171706, + [SMALL_STATE(4393)] = 171724, + [SMALL_STATE(4394)] = 171748, + [SMALL_STATE(4395)] = 171776, + [SMALL_STATE(4396)] = 171804, + [SMALL_STATE(4397)] = 171832, + [SMALL_STATE(4398)] = 171860, + [SMALL_STATE(4399)] = 171888, + [SMALL_STATE(4400)] = 171916, + [SMALL_STATE(4401)] = 171944, + [SMALL_STATE(4402)] = 171972, + [SMALL_STATE(4403)] = 171992, + [SMALL_STATE(4404)] = 172010, + [SMALL_STATE(4405)] = 172034, + [SMALL_STATE(4406)] = 172062, + [SMALL_STATE(4407)] = 172087, + [SMALL_STATE(4408)] = 172110, + [SMALL_STATE(4409)] = 172133, + [SMALL_STATE(4410)] = 172154, + [SMALL_STATE(4411)] = 172175, + [SMALL_STATE(4412)] = 172194, + [SMALL_STATE(4413)] = 172213, + [SMALL_STATE(4414)] = 172234, + [SMALL_STATE(4415)] = 172257, + [SMALL_STATE(4416)] = 172278, + [SMALL_STATE(4417)] = 172301, + [SMALL_STATE(4418)] = 172324, + [SMALL_STATE(4419)] = 172347, + [SMALL_STATE(4420)] = 172370, + [SMALL_STATE(4421)] = 172391, + [SMALL_STATE(4422)] = 172406, + [SMALL_STATE(4423)] = 172421, + [SMALL_STATE(4424)] = 172438, + [SMALL_STATE(4425)] = 172455, + [SMALL_STATE(4426)] = 172470, + [SMALL_STATE(4427)] = 172485, + [SMALL_STATE(4428)] = 172500, + [SMALL_STATE(4429)] = 172523, + [SMALL_STATE(4430)] = 172544, + [SMALL_STATE(4431)] = 172561, + [SMALL_STATE(4432)] = 172580, + [SMALL_STATE(4433)] = 172601, + [SMALL_STATE(4434)] = 172622, + [SMALL_STATE(4435)] = 172643, + [SMALL_STATE(4436)] = 172662, + [SMALL_STATE(4437)] = 172683, + [SMALL_STATE(4438)] = 172702, + [SMALL_STATE(4439)] = 172721, + [SMALL_STATE(4440)] = 172744, + [SMALL_STATE(4441)] = 172765, + [SMALL_STATE(4442)] = 172786, + [SMALL_STATE(4443)] = 172809, + [SMALL_STATE(4444)] = 172832, + [SMALL_STATE(4445)] = 172855, + [SMALL_STATE(4446)] = 172876, + [SMALL_STATE(4447)] = 172897, + [SMALL_STATE(4448)] = 172916, + [SMALL_STATE(4449)] = 172935, + [SMALL_STATE(4450)] = 172954, + [SMALL_STATE(4451)] = 172979, + [SMALL_STATE(4452)] = 173004, + [SMALL_STATE(4453)] = 173025, + [SMALL_STATE(4454)] = 173050, + [SMALL_STATE(4455)] = 173071, + [SMALL_STATE(4456)] = 173096, + [SMALL_STATE(4457)] = 173119, + [SMALL_STATE(4458)] = 173142, + [SMALL_STATE(4459)] = 173165, + [SMALL_STATE(4460)] = 173186, + [SMALL_STATE(4461)] = 173205, + [SMALL_STATE(4462)] = 173224, + [SMALL_STATE(4463)] = 173249, + [SMALL_STATE(4464)] = 173268, + [SMALL_STATE(4465)] = 173291, + [SMALL_STATE(4466)] = 173316, + [SMALL_STATE(4467)] = 173339, + [SMALL_STATE(4468)] = 173362, + [SMALL_STATE(4469)] = 173385, + [SMALL_STATE(4470)] = 173408, + [SMALL_STATE(4471)] = 173429, + [SMALL_STATE(4472)] = 173454, + [SMALL_STATE(4473)] = 173479, + [SMALL_STATE(4474)] = 173500, + [SMALL_STATE(4475)] = 173525, + [SMALL_STATE(4476)] = 173550, + [SMALL_STATE(4477)] = 173569, + [SMALL_STATE(4478)] = 173592, + [SMALL_STATE(4479)] = 173615, + [SMALL_STATE(4480)] = 173636, + [SMALL_STATE(4481)] = 173657, + [SMALL_STATE(4482)] = 173674, + [SMALL_STATE(4483)] = 173691, + [SMALL_STATE(4484)] = 173708, + [SMALL_STATE(4485)] = 173729, + [SMALL_STATE(4486)] = 173746, + [SMALL_STATE(4487)] = 173771, + [SMALL_STATE(4488)] = 173794, + [SMALL_STATE(4489)] = 173817, + [SMALL_STATE(4490)] = 173840, + [SMALL_STATE(4491)] = 173861, + [SMALL_STATE(4492)] = 173882, + [SMALL_STATE(4493)] = 173905, + [SMALL_STATE(4494)] = 173926, + [SMALL_STATE(4495)] = 173947, + [SMALL_STATE(4496)] = 173970, + [SMALL_STATE(4497)] = 173991, + [SMALL_STATE(4498)] = 174014, + [SMALL_STATE(4499)] = 174037, + [SMALL_STATE(4500)] = 174060, + [SMALL_STATE(4501)] = 174085, + [SMALL_STATE(4502)] = 174108, + [SMALL_STATE(4503)] = 174131, + [SMALL_STATE(4504)] = 174154, + [SMALL_STATE(4505)] = 174177, + [SMALL_STATE(4506)] = 174200, + [SMALL_STATE(4507)] = 174223, + [SMALL_STATE(4508)] = 174246, + [SMALL_STATE(4509)] = 174263, + [SMALL_STATE(4510)] = 174286, + [SMALL_STATE(4511)] = 174309, + [SMALL_STATE(4512)] = 174332, + [SMALL_STATE(4513)] = 174355, + [SMALL_STATE(4514)] = 174378, + [SMALL_STATE(4515)] = 174401, + [SMALL_STATE(4516)] = 174424, + [SMALL_STATE(4517)] = 174447, + [SMALL_STATE(4518)] = 174464, + [SMALL_STATE(4519)] = 174481, + [SMALL_STATE(4520)] = 174498, + [SMALL_STATE(4521)] = 174523, + [SMALL_STATE(4522)] = 174546, + [SMALL_STATE(4523)] = 174567, + [SMALL_STATE(4524)] = 174590, + [SMALL_STATE(4525)] = 174613, + [SMALL_STATE(4526)] = 174634, + [SMALL_STATE(4527)] = 174659, + [SMALL_STATE(4528)] = 174680, + [SMALL_STATE(4529)] = 174699, + [SMALL_STATE(4530)] = 174720, + [SMALL_STATE(4531)] = 174737, + [SMALL_STATE(4532)] = 174762, + [SMALL_STATE(4533)] = 174781, + [SMALL_STATE(4534)] = 174800, + [SMALL_STATE(4535)] = 174819, + [SMALL_STATE(4536)] = 174838, + [SMALL_STATE(4537)] = 174857, + [SMALL_STATE(4538)] = 174878, + [SMALL_STATE(4539)] = 174897, + [SMALL_STATE(4540)] = 174922, + [SMALL_STATE(4541)] = 174947, + [SMALL_STATE(4542)] = 174972, + [SMALL_STATE(4543)] = 174989, + [SMALL_STATE(4544)] = 175012, + [SMALL_STATE(4545)] = 175037, + [SMALL_STATE(4546)] = 175062, + [SMALL_STATE(4547)] = 175087, + [SMALL_STATE(4548)] = 175112, + [SMALL_STATE(4549)] = 175137, + [SMALL_STATE(4550)] = 175162, + [SMALL_STATE(4551)] = 175183, + [SMALL_STATE(4552)] = 175202, + [SMALL_STATE(4553)] = 175227, + [SMALL_STATE(4554)] = 175252, + [SMALL_STATE(4555)] = 175277, + [SMALL_STATE(4556)] = 175300, + [SMALL_STATE(4557)] = 175315, + [SMALL_STATE(4558)] = 175337, + [SMALL_STATE(4559)] = 175357, + [SMALL_STATE(4560)] = 175375, + [SMALL_STATE(4561)] = 175395, + [SMALL_STATE(4562)] = 175411, + [SMALL_STATE(4563)] = 175431, + [SMALL_STATE(4564)] = 175453, + [SMALL_STATE(4565)] = 175473, + [SMALL_STATE(4566)] = 175493, + [SMALL_STATE(4567)] = 175515, + [SMALL_STATE(4568)] = 175533, + [SMALL_STATE(4569)] = 175551, + [SMALL_STATE(4570)] = 175565, + [SMALL_STATE(4571)] = 175587, + [SMALL_STATE(4572)] = 175609, + [SMALL_STATE(4573)] = 175631, + [SMALL_STATE(4574)] = 175649, + [SMALL_STATE(4575)] = 175665, + [SMALL_STATE(4576)] = 175685, + [SMALL_STATE(4577)] = 175705, + [SMALL_STATE(4578)] = 175727, + [SMALL_STATE(4579)] = 175749, + [SMALL_STATE(4580)] = 175769, + [SMALL_STATE(4581)] = 175789, + [SMALL_STATE(4582)] = 175809, + [SMALL_STATE(4583)] = 175825, + [SMALL_STATE(4584)] = 175845, + [SMALL_STATE(4585)] = 175863, + [SMALL_STATE(4586)] = 175879, + [SMALL_STATE(4587)] = 175899, + [SMALL_STATE(4588)] = 175919, + [SMALL_STATE(4589)] = 175941, + [SMALL_STATE(4590)] = 175957, + [SMALL_STATE(4591)] = 175977, [SMALL_STATE(4592)] = 175995, - [SMALL_STATE(4593)] = 176015, - [SMALL_STATE(4594)] = 176037, - [SMALL_STATE(4595)] = 176051, - [SMALL_STATE(4596)] = 176071, - [SMALL_STATE(4597)] = 176091, - [SMALL_STATE(4598)] = 176113, - [SMALL_STATE(4599)] = 176135, - [SMALL_STATE(4600)] = 176155, - [SMALL_STATE(4601)] = 176177, - [SMALL_STATE(4602)] = 176197, - [SMALL_STATE(4603)] = 176217, - [SMALL_STATE(4604)] = 176239, - [SMALL_STATE(4605)] = 176255, - [SMALL_STATE(4606)] = 176277, - [SMALL_STATE(4607)] = 176297, - [SMALL_STATE(4608)] = 176317, - [SMALL_STATE(4609)] = 176339, - [SMALL_STATE(4610)] = 176355, - [SMALL_STATE(4611)] = 176375, - [SMALL_STATE(4612)] = 176397, - [SMALL_STATE(4613)] = 176417, - [SMALL_STATE(4614)] = 176435, - [SMALL_STATE(4615)] = 176455, - [SMALL_STATE(4616)] = 176473, - [SMALL_STATE(4617)] = 176491, - [SMALL_STATE(4618)] = 176507, - [SMALL_STATE(4619)] = 176527, - [SMALL_STATE(4620)] = 176543, - [SMALL_STATE(4621)] = 176563, - [SMALL_STATE(4622)] = 176583, - [SMALL_STATE(4623)] = 176599, - [SMALL_STATE(4624)] = 176617, - [SMALL_STATE(4625)] = 176637, - [SMALL_STATE(4626)] = 176657, - [SMALL_STATE(4627)] = 176677, - [SMALL_STATE(4628)] = 176697, - [SMALL_STATE(4629)] = 176717, - [SMALL_STATE(4630)] = 176737, - [SMALL_STATE(4631)] = 176757, - [SMALL_STATE(4632)] = 176777, - [SMALL_STATE(4633)] = 176797, - [SMALL_STATE(4634)] = 176817, - [SMALL_STATE(4635)] = 176837, - [SMALL_STATE(4636)] = 176857, + [SMALL_STATE(4593)] = 176011, + [SMALL_STATE(4594)] = 176033, + [SMALL_STATE(4595)] = 176049, + [SMALL_STATE(4596)] = 176067, + [SMALL_STATE(4597)] = 176085, + [SMALL_STATE(4598)] = 176101, + [SMALL_STATE(4599)] = 176121, + [SMALL_STATE(4600)] = 176135, + [SMALL_STATE(4601)] = 176155, + [SMALL_STATE(4602)] = 176177, + [SMALL_STATE(4603)] = 176195, + [SMALL_STATE(4604)] = 176217, + [SMALL_STATE(4605)] = 176235, + [SMALL_STATE(4606)] = 176257, + [SMALL_STATE(4607)] = 176277, + [SMALL_STATE(4608)] = 176295, + [SMALL_STATE(4609)] = 176313, + [SMALL_STATE(4610)] = 176333, + [SMALL_STATE(4611)] = 176355, + [SMALL_STATE(4612)] = 176373, + [SMALL_STATE(4613)] = 176391, + [SMALL_STATE(4614)] = 176413, + [SMALL_STATE(4615)] = 176433, + [SMALL_STATE(4616)] = 176455, + [SMALL_STATE(4617)] = 176473, + [SMALL_STATE(4618)] = 176489, + [SMALL_STATE(4619)] = 176509, + [SMALL_STATE(4620)] = 176531, + [SMALL_STATE(4621)] = 176549, + [SMALL_STATE(4622)] = 176567, + [SMALL_STATE(4623)] = 176589, + [SMALL_STATE(4624)] = 176609, + [SMALL_STATE(4625)] = 176631, + [SMALL_STATE(4626)] = 176653, + [SMALL_STATE(4627)] = 176673, + [SMALL_STATE(4628)] = 176693, + [SMALL_STATE(4629)] = 176715, + [SMALL_STATE(4630)] = 176731, + [SMALL_STATE(4631)] = 176753, + [SMALL_STATE(4632)] = 176771, + [SMALL_STATE(4633)] = 176791, + [SMALL_STATE(4634)] = 176811, + [SMALL_STATE(4635)] = 176833, + [SMALL_STATE(4636)] = 176853, [SMALL_STATE(4637)] = 176875, - [SMALL_STATE(4638)] = 176897, - [SMALL_STATE(4639)] = 176917, - [SMALL_STATE(4640)] = 176937, - [SMALL_STATE(4641)] = 176957, - [SMALL_STATE(4642)] = 176977, - [SMALL_STATE(4643)] = 176997, - [SMALL_STATE(4644)] = 177011, - [SMALL_STATE(4645)] = 177033, - [SMALL_STATE(4646)] = 177049, - [SMALL_STATE(4647)] = 177065, - [SMALL_STATE(4648)] = 177085, - [SMALL_STATE(4649)] = 177107, - [SMALL_STATE(4650)] = 177127, - [SMALL_STATE(4651)] = 177143, - [SMALL_STATE(4652)] = 177163, - [SMALL_STATE(4653)] = 177177, - [SMALL_STATE(4654)] = 177199, - [SMALL_STATE(4655)] = 177213, - [SMALL_STATE(4656)] = 177231, - [SMALL_STATE(4657)] = 177251, - [SMALL_STATE(4658)] = 177273, - [SMALL_STATE(4659)] = 177295, - [SMALL_STATE(4660)] = 177315, - [SMALL_STATE(4661)] = 177335, - [SMALL_STATE(4662)] = 177349, - [SMALL_STATE(4663)] = 177367, - [SMALL_STATE(4664)] = 177385, - [SMALL_STATE(4665)] = 177407, - [SMALL_STATE(4666)] = 177429, - [SMALL_STATE(4667)] = 177451, - [SMALL_STATE(4668)] = 177471, - [SMALL_STATE(4669)] = 177485, - [SMALL_STATE(4670)] = 177507, - [SMALL_STATE(4671)] = 177521, - [SMALL_STATE(4672)] = 177539, - [SMALL_STATE(4673)] = 177557, - [SMALL_STATE(4674)] = 177577, - [SMALL_STATE(4675)] = 177599, - [SMALL_STATE(4676)] = 177613, - [SMALL_STATE(4677)] = 177633, - [SMALL_STATE(4678)] = 177653, - [SMALL_STATE(4679)] = 177671, - [SMALL_STATE(4680)] = 177693, - [SMALL_STATE(4681)] = 177713, - [SMALL_STATE(4682)] = 177735, - [SMALL_STATE(4683)] = 177755, - [SMALL_STATE(4684)] = 177777, - [SMALL_STATE(4685)] = 177795, - [SMALL_STATE(4686)] = 177811, - [SMALL_STATE(4687)] = 177831, - [SMALL_STATE(4688)] = 177853, - [SMALL_STATE(4689)] = 177875, - [SMALL_STATE(4690)] = 177893, - [SMALL_STATE(4691)] = 177911, - [SMALL_STATE(4692)] = 177929, - [SMALL_STATE(4693)] = 177947, - [SMALL_STATE(4694)] = 177967, - [SMALL_STATE(4695)] = 177989, - [SMALL_STATE(4696)] = 178011, - [SMALL_STATE(4697)] = 178031, - [SMALL_STATE(4698)] = 178053, - [SMALL_STATE(4699)] = 178073, - [SMALL_STATE(4700)] = 178095, - [SMALL_STATE(4701)] = 178113, - [SMALL_STATE(4702)] = 178135, - [SMALL_STATE(4703)] = 178157, - [SMALL_STATE(4704)] = 178177, - [SMALL_STATE(4705)] = 178196, - [SMALL_STATE(4706)] = 178211, - [SMALL_STATE(4707)] = 178226, - [SMALL_STATE(4708)] = 178243, - [SMALL_STATE(4709)] = 178258, - [SMALL_STATE(4710)] = 178271, - [SMALL_STATE(4711)] = 178286, - [SMALL_STATE(4712)] = 178305, - [SMALL_STATE(4713)] = 178324, - [SMALL_STATE(4714)] = 178337, - [SMALL_STATE(4715)] = 178350, - [SMALL_STATE(4716)] = 178363, - [SMALL_STATE(4717)] = 178378, - [SMALL_STATE(4718)] = 178391, - [SMALL_STATE(4719)] = 178404, - [SMALL_STATE(4720)] = 178417, - [SMALL_STATE(4721)] = 178432, - [SMALL_STATE(4722)] = 178447, - [SMALL_STATE(4723)] = 178462, - [SMALL_STATE(4724)] = 178475, - [SMALL_STATE(4725)] = 178488, - [SMALL_STATE(4726)] = 178501, - [SMALL_STATE(4727)] = 178516, - [SMALL_STATE(4728)] = 178533, - [SMALL_STATE(4729)] = 178546, - [SMALL_STATE(4730)] = 178559, - [SMALL_STATE(4731)] = 178572, - [SMALL_STATE(4732)] = 178585, - [SMALL_STATE(4733)] = 178604, - [SMALL_STATE(4734)] = 178623, - [SMALL_STATE(4735)] = 178642, - [SMALL_STATE(4736)] = 178661, - [SMALL_STATE(4737)] = 178674, - [SMALL_STATE(4738)] = 178687, - [SMALL_STATE(4739)] = 178702, - [SMALL_STATE(4740)] = 178715, - [SMALL_STATE(4741)] = 178728, - [SMALL_STATE(4742)] = 178741, - [SMALL_STATE(4743)] = 178754, - [SMALL_STATE(4744)] = 178767, - [SMALL_STATE(4745)] = 178780, - [SMALL_STATE(4746)] = 178793, - [SMALL_STATE(4747)] = 178806, - [SMALL_STATE(4748)] = 178819, - [SMALL_STATE(4749)] = 178832, - [SMALL_STATE(4750)] = 178845, - [SMALL_STATE(4751)] = 178860, - [SMALL_STATE(4752)] = 178875, - [SMALL_STATE(4753)] = 178890, - [SMALL_STATE(4754)] = 178905, - [SMALL_STATE(4755)] = 178918, - [SMALL_STATE(4756)] = 178931, - [SMALL_STATE(4757)] = 178948, - [SMALL_STATE(4758)] = 178961, - [SMALL_STATE(4759)] = 178974, - [SMALL_STATE(4760)] = 178987, - [SMALL_STATE(4761)] = 179000, - [SMALL_STATE(4762)] = 179013, - [SMALL_STATE(4763)] = 179026, - [SMALL_STATE(4764)] = 179039, - [SMALL_STATE(4765)] = 179052, - [SMALL_STATE(4766)] = 179067, - [SMALL_STATE(4767)] = 179080, - [SMALL_STATE(4768)] = 179093, - [SMALL_STATE(4769)] = 179106, - [SMALL_STATE(4770)] = 179119, - [SMALL_STATE(4771)] = 179132, - [SMALL_STATE(4772)] = 179145, - [SMALL_STATE(4773)] = 179158, - [SMALL_STATE(4774)] = 179171, - [SMALL_STATE(4775)] = 179184, - [SMALL_STATE(4776)] = 179201, - [SMALL_STATE(4777)] = 179214, - [SMALL_STATE(4778)] = 179233, - [SMALL_STATE(4779)] = 179252, - [SMALL_STATE(4780)] = 179269, - [SMALL_STATE(4781)] = 179286, - [SMALL_STATE(4782)] = 179303, - [SMALL_STATE(4783)] = 179316, - [SMALL_STATE(4784)] = 179329, - [SMALL_STATE(4785)] = 179346, - [SMALL_STATE(4786)] = 179361, - [SMALL_STATE(4787)] = 179374, - [SMALL_STATE(4788)] = 179393, - [SMALL_STATE(4789)] = 179410, - [SMALL_STATE(4790)] = 179427, - [SMALL_STATE(4791)] = 179440, - [SMALL_STATE(4792)] = 179459, - [SMALL_STATE(4793)] = 179478, - [SMALL_STATE(4794)] = 179491, - [SMALL_STATE(4795)] = 179506, - [SMALL_STATE(4796)] = 179525, - [SMALL_STATE(4797)] = 179540, - [SMALL_STATE(4798)] = 179559, - [SMALL_STATE(4799)] = 179578, - [SMALL_STATE(4800)] = 179591, - [SMALL_STATE(4801)] = 179610, - [SMALL_STATE(4802)] = 179629, - [SMALL_STATE(4803)] = 179642, - [SMALL_STATE(4804)] = 179655, - [SMALL_STATE(4805)] = 179668, - [SMALL_STATE(4806)] = 179687, - [SMALL_STATE(4807)] = 179706, - [SMALL_STATE(4808)] = 179721, - [SMALL_STATE(4809)] = 179736, - [SMALL_STATE(4810)] = 179755, - [SMALL_STATE(4811)] = 179774, - [SMALL_STATE(4812)] = 179791, - [SMALL_STATE(4813)] = 179810, - [SMALL_STATE(4814)] = 179827, - [SMALL_STATE(4815)] = 179840, - [SMALL_STATE(4816)] = 179853, - [SMALL_STATE(4817)] = 179866, - [SMALL_STATE(4818)] = 179879, - [SMALL_STATE(4819)] = 179892, - [SMALL_STATE(4820)] = 179905, - [SMALL_STATE(4821)] = 179918, - [SMALL_STATE(4822)] = 179935, - [SMALL_STATE(4823)] = 179950, - [SMALL_STATE(4824)] = 179963, - [SMALL_STATE(4825)] = 179976, - [SMALL_STATE(4826)] = 179991, - [SMALL_STATE(4827)] = 180004, - [SMALL_STATE(4828)] = 180019, - [SMALL_STATE(4829)] = 180036, - [SMALL_STATE(4830)] = 180051, - [SMALL_STATE(4831)] = 180066, - [SMALL_STATE(4832)] = 180081, - [SMALL_STATE(4833)] = 180100, - [SMALL_STATE(4834)] = 180113, - [SMALL_STATE(4835)] = 180130, - [SMALL_STATE(4836)] = 180149, - [SMALL_STATE(4837)] = 180166, - [SMALL_STATE(4838)] = 180185, - [SMALL_STATE(4839)] = 180204, - [SMALL_STATE(4840)] = 180223, - [SMALL_STATE(4841)] = 180242, - [SMALL_STATE(4842)] = 180255, - [SMALL_STATE(4843)] = 180274, - [SMALL_STATE(4844)] = 180293, - [SMALL_STATE(4845)] = 180306, - [SMALL_STATE(4846)] = 180319, - [SMALL_STATE(4847)] = 180332, - [SMALL_STATE(4848)] = 180345, - [SMALL_STATE(4849)] = 180358, - [SMALL_STATE(4850)] = 180371, - [SMALL_STATE(4851)] = 180386, - [SMALL_STATE(4852)] = 180401, - [SMALL_STATE(4853)] = 180414, - [SMALL_STATE(4854)] = 180433, - [SMALL_STATE(4855)] = 180448, - [SMALL_STATE(4856)] = 180461, - [SMALL_STATE(4857)] = 180480, - [SMALL_STATE(4858)] = 180493, - [SMALL_STATE(4859)] = 180508, - [SMALL_STATE(4860)] = 180523, - [SMALL_STATE(4861)] = 180542, - [SMALL_STATE(4862)] = 180555, - [SMALL_STATE(4863)] = 180572, + [SMALL_STATE(4638)] = 176889, + [SMALL_STATE(4639)] = 176911, + [SMALL_STATE(4640)] = 176933, + [SMALL_STATE(4641)] = 176953, + [SMALL_STATE(4642)] = 176975, + [SMALL_STATE(4643)] = 176995, + [SMALL_STATE(4644)] = 177015, + [SMALL_STATE(4645)] = 177037, + [SMALL_STATE(4646)] = 177057, + [SMALL_STATE(4647)] = 177077, + [SMALL_STATE(4648)] = 177095, + [SMALL_STATE(4649)] = 177113, + [SMALL_STATE(4650)] = 177133, + [SMALL_STATE(4651)] = 177153, + [SMALL_STATE(4652)] = 177173, + [SMALL_STATE(4653)] = 177193, + [SMALL_STATE(4654)] = 177213, + [SMALL_STATE(4655)] = 177231, + [SMALL_STATE(4656)] = 177251, + [SMALL_STATE(4657)] = 177271, + [SMALL_STATE(4658)] = 177291, + [SMALL_STATE(4659)] = 177311, + [SMALL_STATE(4660)] = 177331, + [SMALL_STATE(4661)] = 177351, + [SMALL_STATE(4662)] = 177371, + [SMALL_STATE(4663)] = 177393, + [SMALL_STATE(4664)] = 177413, + [SMALL_STATE(4665)] = 177433, + [SMALL_STATE(4666)] = 177453, + [SMALL_STATE(4667)] = 177473, + [SMALL_STATE(4668)] = 177493, + [SMALL_STATE(4669)] = 177513, + [SMALL_STATE(4670)] = 177533, + [SMALL_STATE(4671)] = 177547, + [SMALL_STATE(4672)] = 177567, + [SMALL_STATE(4673)] = 177589, + [SMALL_STATE(4674)] = 177611, + [SMALL_STATE(4675)] = 177625, + [SMALL_STATE(4676)] = 177645, + [SMALL_STATE(4677)] = 177667, + [SMALL_STATE(4678)] = 177687, + [SMALL_STATE(4679)] = 177709, + [SMALL_STATE(4680)] = 177731, + [SMALL_STATE(4681)] = 177747, + [SMALL_STATE(4682)] = 177763, + [SMALL_STATE(4683)] = 177785, + [SMALL_STATE(4684)] = 177807, + [SMALL_STATE(4685)] = 177829, + [SMALL_STATE(4686)] = 177849, + [SMALL_STATE(4687)] = 177869, + [SMALL_STATE(4688)] = 177889, + [SMALL_STATE(4689)] = 177907, + [SMALL_STATE(4690)] = 177925, + [SMALL_STATE(4691)] = 177939, + [SMALL_STATE(4692)] = 177959, + [SMALL_STATE(4693)] = 177981, + [SMALL_STATE(4694)] = 178003, + [SMALL_STATE(4695)] = 178017, + [SMALL_STATE(4696)] = 178031, + [SMALL_STATE(4697)] = 178049, + [SMALL_STATE(4698)] = 178071, + [SMALL_STATE(4699)] = 178089, + [SMALL_STATE(4700)] = 178109, + [SMALL_STATE(4701)] = 178131, + [SMALL_STATE(4702)] = 178153, + [SMALL_STATE(4703)] = 178171, + [SMALL_STATE(4704)] = 178191, + [SMALL_STATE(4705)] = 178204, + [SMALL_STATE(4706)] = 178217, + [SMALL_STATE(4707)] = 178232, + [SMALL_STATE(4708)] = 178249, + [SMALL_STATE(4709)] = 178262, + [SMALL_STATE(4710)] = 178275, + [SMALL_STATE(4711)] = 178288, + [SMALL_STATE(4712)] = 178301, + [SMALL_STATE(4713)] = 178320, + [SMALL_STATE(4714)] = 178333, + [SMALL_STATE(4715)] = 178348, + [SMALL_STATE(4716)] = 178367, + [SMALL_STATE(4717)] = 178382, + [SMALL_STATE(4718)] = 178395, + [SMALL_STATE(4719)] = 178414, + [SMALL_STATE(4720)] = 178433, + [SMALL_STATE(4721)] = 178446, + [SMALL_STATE(4722)] = 178461, + [SMALL_STATE(4723)] = 178480, + [SMALL_STATE(4724)] = 178499, + [SMALL_STATE(4725)] = 178518, + [SMALL_STATE(4726)] = 178535, + [SMALL_STATE(4727)] = 178548, + [SMALL_STATE(4728)] = 178567, + [SMALL_STATE(4729)] = 178586, + [SMALL_STATE(4730)] = 178601, + [SMALL_STATE(4731)] = 178620, + [SMALL_STATE(4732)] = 178639, + [SMALL_STATE(4733)] = 178654, + [SMALL_STATE(4734)] = 178669, + [SMALL_STATE(4735)] = 178684, + [SMALL_STATE(4736)] = 178703, + [SMALL_STATE(4737)] = 178716, + [SMALL_STATE(4738)] = 178729, + [SMALL_STATE(4739)] = 178748, + [SMALL_STATE(4740)] = 178761, + [SMALL_STATE(4741)] = 178778, + [SMALL_STATE(4742)] = 178797, + [SMALL_STATE(4743)] = 178812, + [SMALL_STATE(4744)] = 178827, + [SMALL_STATE(4745)] = 178840, + [SMALL_STATE(4746)] = 178853, + [SMALL_STATE(4747)] = 178866, + [SMALL_STATE(4748)] = 178879, + [SMALL_STATE(4749)] = 178896, + [SMALL_STATE(4750)] = 178909, + [SMALL_STATE(4751)] = 178922, + [SMALL_STATE(4752)] = 178937, + [SMALL_STATE(4753)] = 178956, + [SMALL_STATE(4754)] = 178969, + [SMALL_STATE(4755)] = 178984, + [SMALL_STATE(4756)] = 178999, + [SMALL_STATE(4757)] = 179014, + [SMALL_STATE(4758)] = 179027, + [SMALL_STATE(4759)] = 179040, + [SMALL_STATE(4760)] = 179055, + [SMALL_STATE(4761)] = 179068, + [SMALL_STATE(4762)] = 179083, + [SMALL_STATE(4763)] = 179100, + [SMALL_STATE(4764)] = 179117, + [SMALL_STATE(4765)] = 179130, + [SMALL_STATE(4766)] = 179143, + [SMALL_STATE(4767)] = 179162, + [SMALL_STATE(4768)] = 179175, + [SMALL_STATE(4769)] = 179188, + [SMALL_STATE(4770)] = 179201, + [SMALL_STATE(4771)] = 179218, + [SMALL_STATE(4772)] = 179231, + [SMALL_STATE(4773)] = 179244, + [SMALL_STATE(4774)] = 179259, + [SMALL_STATE(4775)] = 179272, + [SMALL_STATE(4776)] = 179285, + [SMALL_STATE(4777)] = 179298, + [SMALL_STATE(4778)] = 179311, + [SMALL_STATE(4779)] = 179326, + [SMALL_STATE(4780)] = 179339, + [SMALL_STATE(4781)] = 179356, + [SMALL_STATE(4782)] = 179369, + [SMALL_STATE(4783)] = 179386, + [SMALL_STATE(4784)] = 179399, + [SMALL_STATE(4785)] = 179412, + [SMALL_STATE(4786)] = 179425, + [SMALL_STATE(4787)] = 179438, + [SMALL_STATE(4788)] = 179451, + [SMALL_STATE(4789)] = 179466, + [SMALL_STATE(4790)] = 179479, + [SMALL_STATE(4791)] = 179492, + [SMALL_STATE(4792)] = 179505, + [SMALL_STATE(4793)] = 179518, + [SMALL_STATE(4794)] = 179531, + [SMALL_STATE(4795)] = 179544, + [SMALL_STATE(4796)] = 179557, + [SMALL_STATE(4797)] = 179570, + [SMALL_STATE(4798)] = 179583, + [SMALL_STATE(4799)] = 179598, + [SMALL_STATE(4800)] = 179611, + [SMALL_STATE(4801)] = 179624, + [SMALL_STATE(4802)] = 179643, + [SMALL_STATE(4803)] = 179662, + [SMALL_STATE(4804)] = 179675, + [SMALL_STATE(4805)] = 179688, + [SMALL_STATE(4806)] = 179707, + [SMALL_STATE(4807)] = 179720, + [SMALL_STATE(4808)] = 179733, + [SMALL_STATE(4809)] = 179748, + [SMALL_STATE(4810)] = 179761, + [SMALL_STATE(4811)] = 179780, + [SMALL_STATE(4812)] = 179799, + [SMALL_STATE(4813)] = 179818, + [SMALL_STATE(4814)] = 179837, + [SMALL_STATE(4815)] = 179854, + [SMALL_STATE(4816)] = 179873, + [SMALL_STATE(4817)] = 179890, + [SMALL_STATE(4818)] = 179907, + [SMALL_STATE(4819)] = 179920, + [SMALL_STATE(4820)] = 179935, + [SMALL_STATE(4821)] = 179948, + [SMALL_STATE(4822)] = 179967, + [SMALL_STATE(4823)] = 179986, + [SMALL_STATE(4824)] = 179999, + [SMALL_STATE(4825)] = 180012, + [SMALL_STATE(4826)] = 180029, + [SMALL_STATE(4827)] = 180042, + [SMALL_STATE(4828)] = 180055, + [SMALL_STATE(4829)] = 180068, + [SMALL_STATE(4830)] = 180081, + [SMALL_STATE(4831)] = 180100, + [SMALL_STATE(4832)] = 180113, + [SMALL_STATE(4833)] = 180126, + [SMALL_STATE(4834)] = 180145, + [SMALL_STATE(4835)] = 180164, + [SMALL_STATE(4836)] = 180177, + [SMALL_STATE(4837)] = 180190, + [SMALL_STATE(4838)] = 180209, + [SMALL_STATE(4839)] = 180228, + [SMALL_STATE(4840)] = 180241, + [SMALL_STATE(4841)] = 180254, + [SMALL_STATE(4842)] = 180271, + [SMALL_STATE(4843)] = 180288, + [SMALL_STATE(4844)] = 180301, + [SMALL_STATE(4845)] = 180314, + [SMALL_STATE(4846)] = 180331, + [SMALL_STATE(4847)] = 180350, + [SMALL_STATE(4848)] = 180363, + [SMALL_STATE(4849)] = 180376, + [SMALL_STATE(4850)] = 180393, + [SMALL_STATE(4851)] = 180408, + [SMALL_STATE(4852)] = 180421, + [SMALL_STATE(4853)] = 180438, + [SMALL_STATE(4854)] = 180453, + [SMALL_STATE(4855)] = 180466, + [SMALL_STATE(4856)] = 180485, + [SMALL_STATE(4857)] = 180498, + [SMALL_STATE(4858)] = 180513, + [SMALL_STATE(4859)] = 180526, + [SMALL_STATE(4860)] = 180539, + [SMALL_STATE(4861)] = 180552, + [SMALL_STATE(4862)] = 180565, + [SMALL_STATE(4863)] = 180578, [SMALL_STATE(4864)] = 180591, - [SMALL_STATE(4865)] = 180610, - [SMALL_STATE(4866)] = 180625, - [SMALL_STATE(4867)] = 180638, - [SMALL_STATE(4868)] = 180657, - [SMALL_STATE(4869)] = 180670, - [SMALL_STATE(4870)] = 180685, - [SMALL_STATE(4871)] = 180698, - [SMALL_STATE(4872)] = 180715, - [SMALL_STATE(4873)] = 180728, - [SMALL_STATE(4874)] = 180745, - [SMALL_STATE(4875)] = 180764, - [SMALL_STATE(4876)] = 180781, - [SMALL_STATE(4877)] = 180794, - [SMALL_STATE(4878)] = 180811, - [SMALL_STATE(4879)] = 180824, - [SMALL_STATE(4880)] = 180841, - [SMALL_STATE(4881)] = 180858, - [SMALL_STATE(4882)] = 180877, - [SMALL_STATE(4883)] = 180892, - [SMALL_STATE(4884)] = 180905, - [SMALL_STATE(4885)] = 180920, - [SMALL_STATE(4886)] = 180937, - [SMALL_STATE(4887)] = 180950, - [SMALL_STATE(4888)] = 180963, - [SMALL_STATE(4889)] = 180976, - [SMALL_STATE(4890)] = 180989, - [SMALL_STATE(4891)] = 181002, - [SMALL_STATE(4892)] = 181015, + [SMALL_STATE(4865)] = 180604, + [SMALL_STATE(4866)] = 180617, + [SMALL_STATE(4867)] = 180634, + [SMALL_STATE(4868)] = 180649, + [SMALL_STATE(4869)] = 180662, + [SMALL_STATE(4870)] = 180679, + [SMALL_STATE(4871)] = 180692, + [SMALL_STATE(4872)] = 180709, + [SMALL_STATE(4873)] = 180722, + [SMALL_STATE(4874)] = 180735, + [SMALL_STATE(4875)] = 180748, + [SMALL_STATE(4876)] = 180761, + [SMALL_STATE(4877)] = 180774, + [SMALL_STATE(4878)] = 180787, + [SMALL_STATE(4879)] = 180800, + [SMALL_STATE(4880)] = 180813, + [SMALL_STATE(4881)] = 180826, + [SMALL_STATE(4882)] = 180843, + [SMALL_STATE(4883)] = 180860, + [SMALL_STATE(4884)] = 180879, + [SMALL_STATE(4885)] = 180894, + [SMALL_STATE(4886)] = 180911, + [SMALL_STATE(4887)] = 180930, + [SMALL_STATE(4888)] = 180949, + [SMALL_STATE(4889)] = 180968, + [SMALL_STATE(4890)] = 180981, + [SMALL_STATE(4891)] = 181000, + [SMALL_STATE(4892)] = 181013, [SMALL_STATE(4893)] = 181028, - [SMALL_STATE(4894)] = 181041, - [SMALL_STATE(4895)] = 181054, - [SMALL_STATE(4896)] = 181067, - [SMALL_STATE(4897)] = 181082, - [SMALL_STATE(4898)] = 181097, - [SMALL_STATE(4899)] = 181112, - [SMALL_STATE(4900)] = 181131, - [SMALL_STATE(4901)] = 181146, - [SMALL_STATE(4902)] = 181159, - [SMALL_STATE(4903)] = 181178, - [SMALL_STATE(4904)] = 181191, - [SMALL_STATE(4905)] = 181208, - [SMALL_STATE(4906)] = 181221, - [SMALL_STATE(4907)] = 181234, - [SMALL_STATE(4908)] = 181247, - [SMALL_STATE(4909)] = 181260, - [SMALL_STATE(4910)] = 181279, - [SMALL_STATE(4911)] = 181298, - [SMALL_STATE(4912)] = 181311, - [SMALL_STATE(4913)] = 181324, - [SMALL_STATE(4914)] = 181341, - [SMALL_STATE(4915)] = 181360, - [SMALL_STATE(4916)] = 181379, - [SMALL_STATE(4917)] = 181392, - [SMALL_STATE(4918)] = 181411, - [SMALL_STATE(4919)] = 181430, - [SMALL_STATE(4920)] = 181443, - [SMALL_STATE(4921)] = 181456, - [SMALL_STATE(4922)] = 181469, - [SMALL_STATE(4923)] = 181482, - [SMALL_STATE(4924)] = 181501, - [SMALL_STATE(4925)] = 181520, - [SMALL_STATE(4926)] = 181539, - [SMALL_STATE(4927)] = 181552, - [SMALL_STATE(4928)] = 181567, - [SMALL_STATE(4929)] = 181586, - [SMALL_STATE(4930)] = 181605, - [SMALL_STATE(4931)] = 181620, - [SMALL_STATE(4932)] = 181639, - [SMALL_STATE(4933)] = 181654, - [SMALL_STATE(4934)] = 181667, - [SMALL_STATE(4935)] = 181680, - [SMALL_STATE(4936)] = 181693, - [SMALL_STATE(4937)] = 181710, - [SMALL_STATE(4938)] = 181723, - [SMALL_STATE(4939)] = 181736, - [SMALL_STATE(4940)] = 181749, - [SMALL_STATE(4941)] = 181768, - [SMALL_STATE(4942)] = 181787, - [SMALL_STATE(4943)] = 181800, - [SMALL_STATE(4944)] = 181813, - [SMALL_STATE(4945)] = 181828, - [SMALL_STATE(4946)] = 181845, - [SMALL_STATE(4947)] = 181858, - [SMALL_STATE(4948)] = 181877, - [SMALL_STATE(4949)] = 181892, - [SMALL_STATE(4950)] = 181909, - [SMALL_STATE(4951)] = 181928, - [SMALL_STATE(4952)] = 181941, - [SMALL_STATE(4953)] = 181954, - [SMALL_STATE(4954)] = 181973, - [SMALL_STATE(4955)] = 181986, - [SMALL_STATE(4956)] = 182005, - [SMALL_STATE(4957)] = 182018, - [SMALL_STATE(4958)] = 182035, - [SMALL_STATE(4959)] = 182052, - [SMALL_STATE(4960)] = 182069, - [SMALL_STATE(4961)] = 182082, - [SMALL_STATE(4962)] = 182101, - [SMALL_STATE(4963)] = 182114, - [SMALL_STATE(4964)] = 182133, - [SMALL_STATE(4965)] = 182150, - [SMALL_STATE(4966)] = 182165, - [SMALL_STATE(4967)] = 182178, - [SMALL_STATE(4968)] = 182191, - [SMALL_STATE(4969)] = 182204, - [SMALL_STATE(4970)] = 182217, - [SMALL_STATE(4971)] = 182236, - [SMALL_STATE(4972)] = 182255, - [SMALL_STATE(4973)] = 182268, - [SMALL_STATE(4974)] = 182287, - [SMALL_STATE(4975)] = 182306, - [SMALL_STATE(4976)] = 182325, - [SMALL_STATE(4977)] = 182344, - [SMALL_STATE(4978)] = 182363, - [SMALL_STATE(4979)] = 182376, - [SMALL_STATE(4980)] = 182389, - [SMALL_STATE(4981)] = 182403, - [SMALL_STATE(4982)] = 182415, - [SMALL_STATE(4983)] = 182427, - [SMALL_STATE(4984)] = 182443, - [SMALL_STATE(4985)] = 182459, - [SMALL_STATE(4986)] = 182471, - [SMALL_STATE(4987)] = 182487, - [SMALL_STATE(4988)] = 182501, - [SMALL_STATE(4989)] = 182517, - [SMALL_STATE(4990)] = 182529, - [SMALL_STATE(4991)] = 182543, - [SMALL_STATE(4992)] = 182557, - [SMALL_STATE(4993)] = 182573, - [SMALL_STATE(4994)] = 182585, - [SMALL_STATE(4995)] = 182601, - [SMALL_STATE(4996)] = 182613, - [SMALL_STATE(4997)] = 182625, - [SMALL_STATE(4998)] = 182641, - [SMALL_STATE(4999)] = 182655, - [SMALL_STATE(5000)] = 182669, - [SMALL_STATE(5001)] = 182681, - [SMALL_STATE(5002)] = 182695, - [SMALL_STATE(5003)] = 182707, - [SMALL_STATE(5004)] = 182723, - [SMALL_STATE(5005)] = 182739, - [SMALL_STATE(5006)] = 182755, - [SMALL_STATE(5007)] = 182771, - [SMALL_STATE(5008)] = 182783, - [SMALL_STATE(5009)] = 182799, - [SMALL_STATE(5010)] = 182813, - [SMALL_STATE(5011)] = 182827, - [SMALL_STATE(5012)] = 182841, - [SMALL_STATE(5013)] = 182855, - [SMALL_STATE(5014)] = 182867, - [SMALL_STATE(5015)] = 182881, - [SMALL_STATE(5016)] = 182897, - [SMALL_STATE(5017)] = 182913, - [SMALL_STATE(5018)] = 182927, - [SMALL_STATE(5019)] = 182943, - [SMALL_STATE(5020)] = 182955, - [SMALL_STATE(5021)] = 182969, - [SMALL_STATE(5022)] = 182983, - [SMALL_STATE(5023)] = 182999, - [SMALL_STATE(5024)] = 183011, - [SMALL_STATE(5025)] = 183023, - [SMALL_STATE(5026)] = 183039, - [SMALL_STATE(5027)] = 183053, - [SMALL_STATE(5028)] = 183067, - [SMALL_STATE(5029)] = 183083, - [SMALL_STATE(5030)] = 183095, - [SMALL_STATE(5031)] = 183107, - [SMALL_STATE(5032)] = 183121, - [SMALL_STATE(5033)] = 183133, - [SMALL_STATE(5034)] = 183149, - [SMALL_STATE(5035)] = 183161, - [SMALL_STATE(5036)] = 183175, - [SMALL_STATE(5037)] = 183187, - [SMALL_STATE(5038)] = 183203, - [SMALL_STATE(5039)] = 183219, - [SMALL_STATE(5040)] = 183233, - [SMALL_STATE(5041)] = 183249, - [SMALL_STATE(5042)] = 183263, - [SMALL_STATE(5043)] = 183279, - [SMALL_STATE(5044)] = 183293, - [SMALL_STATE(5045)] = 183307, - [SMALL_STATE(5046)] = 183321, - [SMALL_STATE(5047)] = 183335, - [SMALL_STATE(5048)] = 183349, - [SMALL_STATE(5049)] = 183361, - [SMALL_STATE(5050)] = 183375, - [SMALL_STATE(5051)] = 183387, - [SMALL_STATE(5052)] = 183399, - [SMALL_STATE(5053)] = 183413, - [SMALL_STATE(5054)] = 183427, - [SMALL_STATE(5055)] = 183441, - [SMALL_STATE(5056)] = 183457, - [SMALL_STATE(5057)] = 183469, - [SMALL_STATE(5058)] = 183481, - [SMALL_STATE(5059)] = 183497, - [SMALL_STATE(5060)] = 183513, - [SMALL_STATE(5061)] = 183525, - [SMALL_STATE(5062)] = 183541, - [SMALL_STATE(5063)] = 183555, - [SMALL_STATE(5064)] = 183571, - [SMALL_STATE(5065)] = 183587, - [SMALL_STATE(5066)] = 183603, - [SMALL_STATE(5067)] = 183615, - [SMALL_STATE(5068)] = 183627, - [SMALL_STATE(5069)] = 183643, - [SMALL_STATE(5070)] = 183659, - [SMALL_STATE(5071)] = 183671, - [SMALL_STATE(5072)] = 183683, - [SMALL_STATE(5073)] = 183697, - [SMALL_STATE(5074)] = 183709, - [SMALL_STATE(5075)] = 183723, - [SMALL_STATE(5076)] = 183735, - [SMALL_STATE(5077)] = 183747, - [SMALL_STATE(5078)] = 183759, - [SMALL_STATE(5079)] = 183771, - [SMALL_STATE(5080)] = 183783, - [SMALL_STATE(5081)] = 183797, - [SMALL_STATE(5082)] = 183809, - [SMALL_STATE(5083)] = 183821, - [SMALL_STATE(5084)] = 183833, - [SMALL_STATE(5085)] = 183845, - [SMALL_STATE(5086)] = 183857, - [SMALL_STATE(5087)] = 183869, - [SMALL_STATE(5088)] = 183883, - [SMALL_STATE(5089)] = 183895, - [SMALL_STATE(5090)] = 183907, - [SMALL_STATE(5091)] = 183919, - [SMALL_STATE(5092)] = 183933, - [SMALL_STATE(5093)] = 183945, - [SMALL_STATE(5094)] = 183957, - [SMALL_STATE(5095)] = 183971, - [SMALL_STATE(5096)] = 183985, - [SMALL_STATE(5097)] = 183999, - [SMALL_STATE(5098)] = 184011, - [SMALL_STATE(5099)] = 184023, - [SMALL_STATE(5100)] = 184037, - [SMALL_STATE(5101)] = 184051, - [SMALL_STATE(5102)] = 184063, - [SMALL_STATE(5103)] = 184075, - [SMALL_STATE(5104)] = 184089, - [SMALL_STATE(5105)] = 184101, - [SMALL_STATE(5106)] = 184115, - [SMALL_STATE(5107)] = 184129, - [SMALL_STATE(5108)] = 184141, - [SMALL_STATE(5109)] = 184153, - [SMALL_STATE(5110)] = 184165, - [SMALL_STATE(5111)] = 184177, - [SMALL_STATE(5112)] = 184189, - [SMALL_STATE(5113)] = 184205, - [SMALL_STATE(5114)] = 184217, - [SMALL_STATE(5115)] = 184229, - [SMALL_STATE(5116)] = 184241, - [SMALL_STATE(5117)] = 184255, - [SMALL_STATE(5118)] = 184267, - [SMALL_STATE(5119)] = 184283, - [SMALL_STATE(5120)] = 184299, - [SMALL_STATE(5121)] = 184315, - [SMALL_STATE(5122)] = 184331, - [SMALL_STATE(5123)] = 184343, - [SMALL_STATE(5124)] = 184359, - [SMALL_STATE(5125)] = 184375, - [SMALL_STATE(5126)] = 184389, - [SMALL_STATE(5127)] = 184403, - [SMALL_STATE(5128)] = 184419, - [SMALL_STATE(5129)] = 184431, - [SMALL_STATE(5130)] = 184445, - [SMALL_STATE(5131)] = 184457, - [SMALL_STATE(5132)] = 184473, - [SMALL_STATE(5133)] = 184485, - [SMALL_STATE(5134)] = 184501, - [SMALL_STATE(5135)] = 184517, - [SMALL_STATE(5136)] = 184533, - [SMALL_STATE(5137)] = 184549, - [SMALL_STATE(5138)] = 184563, - [SMALL_STATE(5139)] = 184579, - [SMALL_STATE(5140)] = 184591, - [SMALL_STATE(5141)] = 184605, - [SMALL_STATE(5142)] = 184617, - [SMALL_STATE(5143)] = 184629, - [SMALL_STATE(5144)] = 184645, - [SMALL_STATE(5145)] = 184661, - [SMALL_STATE(5146)] = 184675, - [SMALL_STATE(5147)] = 184689, - [SMALL_STATE(5148)] = 184701, - [SMALL_STATE(5149)] = 184713, - [SMALL_STATE(5150)] = 184725, - [SMALL_STATE(5151)] = 184737, - [SMALL_STATE(5152)] = 184749, - [SMALL_STATE(5153)] = 184763, - [SMALL_STATE(5154)] = 184775, - [SMALL_STATE(5155)] = 184787, - [SMALL_STATE(5156)] = 184801, - [SMALL_STATE(5157)] = 184813, - [SMALL_STATE(5158)] = 184827, - [SMALL_STATE(5159)] = 184841, - [SMALL_STATE(5160)] = 184857, - [SMALL_STATE(5161)] = 184871, - [SMALL_STATE(5162)] = 184883, - [SMALL_STATE(5163)] = 184899, - [SMALL_STATE(5164)] = 184913, - [SMALL_STATE(5165)] = 184927, - [SMALL_STATE(5166)] = 184939, - [SMALL_STATE(5167)] = 184953, - [SMALL_STATE(5168)] = 184969, - [SMALL_STATE(5169)] = 184985, - [SMALL_STATE(5170)] = 184997, - [SMALL_STATE(5171)] = 185011, - [SMALL_STATE(5172)] = 185025, - [SMALL_STATE(5173)] = 185039, - [SMALL_STATE(5174)] = 185055, - [SMALL_STATE(5175)] = 185071, - [SMALL_STATE(5176)] = 185087, - [SMALL_STATE(5177)] = 185099, - [SMALL_STATE(5178)] = 185115, - [SMALL_STATE(5179)] = 185131, - [SMALL_STATE(5180)] = 185147, - [SMALL_STATE(5181)] = 185163, - [SMALL_STATE(5182)] = 185175, - [SMALL_STATE(5183)] = 185191, - [SMALL_STATE(5184)] = 185207, - [SMALL_STATE(5185)] = 185219, - [SMALL_STATE(5186)] = 185231, - [SMALL_STATE(5187)] = 185243, - [SMALL_STATE(5188)] = 185255, - [SMALL_STATE(5189)] = 185269, - [SMALL_STATE(5190)] = 185281, - [SMALL_STATE(5191)] = 185295, - [SMALL_STATE(5192)] = 185307, - [SMALL_STATE(5193)] = 185319, - [SMALL_STATE(5194)] = 185331, - [SMALL_STATE(5195)] = 185347, - [SMALL_STATE(5196)] = 185363, - [SMALL_STATE(5197)] = 185375, - [SMALL_STATE(5198)] = 185387, - [SMALL_STATE(5199)] = 185399, - [SMALL_STATE(5200)] = 185411, - [SMALL_STATE(5201)] = 185423, - [SMALL_STATE(5202)] = 185435, - [SMALL_STATE(5203)] = 185449, - [SMALL_STATE(5204)] = 185463, - [SMALL_STATE(5205)] = 185475, - [SMALL_STATE(5206)] = 185491, - [SMALL_STATE(5207)] = 185507, - [SMALL_STATE(5208)] = 185523, - [SMALL_STATE(5209)] = 185539, - [SMALL_STATE(5210)] = 185555, - [SMALL_STATE(5211)] = 185571, - [SMALL_STATE(5212)] = 185583, - [SMALL_STATE(5213)] = 185597, - [SMALL_STATE(5214)] = 185613, - [SMALL_STATE(5215)] = 185625, - [SMALL_STATE(5216)] = 185641, - [SMALL_STATE(5217)] = 185653, - [SMALL_STATE(5218)] = 185667, - [SMALL_STATE(5219)] = 185683, - [SMALL_STATE(5220)] = 185695, - [SMALL_STATE(5221)] = 185707, - [SMALL_STATE(5222)] = 185719, - [SMALL_STATE(5223)] = 185731, - [SMALL_STATE(5224)] = 185747, - [SMALL_STATE(5225)] = 185761, - [SMALL_STATE(5226)] = 185775, - [SMALL_STATE(5227)] = 185791, - [SMALL_STATE(5228)] = 185805, - [SMALL_STATE(5229)] = 185819, - [SMALL_STATE(5230)] = 185835, - [SMALL_STATE(5231)] = 185847, - [SMALL_STATE(5232)] = 185863, - [SMALL_STATE(5233)] = 185877, - [SMALL_STATE(5234)] = 185891, - [SMALL_STATE(5235)] = 185905, - [SMALL_STATE(5236)] = 185921, - [SMALL_STATE(5237)] = 185933, - [SMALL_STATE(5238)] = 185945, - [SMALL_STATE(5239)] = 185957, - [SMALL_STATE(5240)] = 185969, - [SMALL_STATE(5241)] = 185985, - [SMALL_STATE(5242)] = 186001, - [SMALL_STATE(5243)] = 186017, - [SMALL_STATE(5244)] = 186029, - [SMALL_STATE(5245)] = 186045, - [SMALL_STATE(5246)] = 186061, - [SMALL_STATE(5247)] = 186075, - [SMALL_STATE(5248)] = 186091, - [SMALL_STATE(5249)] = 186103, - [SMALL_STATE(5250)] = 186117, - [SMALL_STATE(5251)] = 186129, - [SMALL_STATE(5252)] = 186141, - [SMALL_STATE(5253)] = 186153, - [SMALL_STATE(5254)] = 186165, - [SMALL_STATE(5255)] = 186181, - [SMALL_STATE(5256)] = 186197, - [SMALL_STATE(5257)] = 186211, - [SMALL_STATE(5258)] = 186223, - [SMALL_STATE(5259)] = 186235, - [SMALL_STATE(5260)] = 186247, - [SMALL_STATE(5261)] = 186263, - [SMALL_STATE(5262)] = 186279, - [SMALL_STATE(5263)] = 186291, - [SMALL_STATE(5264)] = 186305, - [SMALL_STATE(5265)] = 186317, - [SMALL_STATE(5266)] = 186333, - [SMALL_STATE(5267)] = 186347, - [SMALL_STATE(5268)] = 186363, - [SMALL_STATE(5269)] = 186375, - [SMALL_STATE(5270)] = 186387, - [SMALL_STATE(5271)] = 186403, - [SMALL_STATE(5272)] = 186419, - [SMALL_STATE(5273)] = 186435, - [SMALL_STATE(5274)] = 186451, - [SMALL_STATE(5275)] = 186463, - [SMALL_STATE(5276)] = 186479, - [SMALL_STATE(5277)] = 186493, - [SMALL_STATE(5278)] = 186506, - [SMALL_STATE(5279)] = 186517, - [SMALL_STATE(5280)] = 186530, - [SMALL_STATE(5281)] = 186543, - [SMALL_STATE(5282)] = 186556, - [SMALL_STATE(5283)] = 186569, - [SMALL_STATE(5284)] = 186582, - [SMALL_STATE(5285)] = 186595, - [SMALL_STATE(5286)] = 186608, - [SMALL_STATE(5287)] = 186621, - [SMALL_STATE(5288)] = 186634, - [SMALL_STATE(5289)] = 186647, - [SMALL_STATE(5290)] = 186660, - [SMALL_STATE(5291)] = 186673, - [SMALL_STATE(5292)] = 186686, - [SMALL_STATE(5293)] = 186699, - [SMALL_STATE(5294)] = 186712, - [SMALL_STATE(5295)] = 186725, - [SMALL_STATE(5296)] = 186738, - [SMALL_STATE(5297)] = 186751, - [SMALL_STATE(5298)] = 186764, - [SMALL_STATE(5299)] = 186777, - [SMALL_STATE(5300)] = 186790, - [SMALL_STATE(5301)] = 186803, - [SMALL_STATE(5302)] = 186816, - [SMALL_STATE(5303)] = 186829, - [SMALL_STATE(5304)] = 186840, - [SMALL_STATE(5305)] = 186853, - [SMALL_STATE(5306)] = 186864, - [SMALL_STATE(5307)] = 186877, - [SMALL_STATE(5308)] = 186890, - [SMALL_STATE(5309)] = 186903, - [SMALL_STATE(5310)] = 186916, - [SMALL_STATE(5311)] = 186929, - [SMALL_STATE(5312)] = 186942, - [SMALL_STATE(5313)] = 186955, - [SMALL_STATE(5314)] = 186968, - [SMALL_STATE(5315)] = 186981, - [SMALL_STATE(5316)] = 186994, - [SMALL_STATE(5317)] = 187007, - [SMALL_STATE(5318)] = 187020, - [SMALL_STATE(5319)] = 187033, - [SMALL_STATE(5320)] = 187046, - [SMALL_STATE(5321)] = 187057, - [SMALL_STATE(5322)] = 187070, - [SMALL_STATE(5323)] = 187083, - [SMALL_STATE(5324)] = 187096, - [SMALL_STATE(5325)] = 187109, - [SMALL_STATE(5326)] = 187122, - [SMALL_STATE(5327)] = 187135, - [SMALL_STATE(5328)] = 187148, - [SMALL_STATE(5329)] = 187159, - [SMALL_STATE(5330)] = 187170, - [SMALL_STATE(5331)] = 187181, - [SMALL_STATE(5332)] = 187194, - [SMALL_STATE(5333)] = 187207, - [SMALL_STATE(5334)] = 187220, - [SMALL_STATE(5335)] = 187233, - [SMALL_STATE(5336)] = 187246, - [SMALL_STATE(5337)] = 187259, - [SMALL_STATE(5338)] = 187272, - [SMALL_STATE(5339)] = 187285, - [SMALL_STATE(5340)] = 187298, - [SMALL_STATE(5341)] = 187311, - [SMALL_STATE(5342)] = 187324, - [SMALL_STATE(5343)] = 187337, - [SMALL_STATE(5344)] = 187350, - [SMALL_STATE(5345)] = 187363, - [SMALL_STATE(5346)] = 187376, - [SMALL_STATE(5347)] = 187389, - [SMALL_STATE(5348)] = 187402, - [SMALL_STATE(5349)] = 187415, - [SMALL_STATE(5350)] = 187428, - [SMALL_STATE(5351)] = 187441, - [SMALL_STATE(5352)] = 187454, - [SMALL_STATE(5353)] = 187467, - [SMALL_STATE(5354)] = 187480, - [SMALL_STATE(5355)] = 187493, - [SMALL_STATE(5356)] = 187506, - [SMALL_STATE(5357)] = 187519, - [SMALL_STATE(5358)] = 187532, - [SMALL_STATE(5359)] = 187543, - [SMALL_STATE(5360)] = 187556, - [SMALL_STATE(5361)] = 187569, - [SMALL_STATE(5362)] = 187582, - [SMALL_STATE(5363)] = 187595, - [SMALL_STATE(5364)] = 187608, - [SMALL_STATE(5365)] = 187621, - [SMALL_STATE(5366)] = 187634, - [SMALL_STATE(5367)] = 187647, - [SMALL_STATE(5368)] = 187660, - [SMALL_STATE(5369)] = 187673, - [SMALL_STATE(5370)] = 187686, - [SMALL_STATE(5371)] = 187699, - [SMALL_STATE(5372)] = 187712, - [SMALL_STATE(5373)] = 187725, - [SMALL_STATE(5374)] = 187738, - [SMALL_STATE(5375)] = 187751, - [SMALL_STATE(5376)] = 187764, - [SMALL_STATE(5377)] = 187777, - [SMALL_STATE(5378)] = 187790, - [SMALL_STATE(5379)] = 187803, - [SMALL_STATE(5380)] = 187816, - [SMALL_STATE(5381)] = 187829, - [SMALL_STATE(5382)] = 187842, - [SMALL_STATE(5383)] = 187855, - [SMALL_STATE(5384)] = 187868, - [SMALL_STATE(5385)] = 187881, - [SMALL_STATE(5386)] = 187894, - [SMALL_STATE(5387)] = 187907, - [SMALL_STATE(5388)] = 187920, - [SMALL_STATE(5389)] = 187931, - [SMALL_STATE(5390)] = 187944, - [SMALL_STATE(5391)] = 187955, - [SMALL_STATE(5392)] = 187968, - [SMALL_STATE(5393)] = 187981, - [SMALL_STATE(5394)] = 187994, - [SMALL_STATE(5395)] = 188007, - [SMALL_STATE(5396)] = 188020, - [SMALL_STATE(5397)] = 188033, - [SMALL_STATE(5398)] = 188046, - [SMALL_STATE(5399)] = 188057, - [SMALL_STATE(5400)] = 188070, - [SMALL_STATE(5401)] = 188083, - [SMALL_STATE(5402)] = 188096, - [SMALL_STATE(5403)] = 188109, - [SMALL_STATE(5404)] = 188122, - [SMALL_STATE(5405)] = 188135, - [SMALL_STATE(5406)] = 188148, - [SMALL_STATE(5407)] = 188161, - [SMALL_STATE(5408)] = 188174, - [SMALL_STATE(5409)] = 188187, - [SMALL_STATE(5410)] = 188200, - [SMALL_STATE(5411)] = 188213, - [SMALL_STATE(5412)] = 188226, - [SMALL_STATE(5413)] = 188239, - [SMALL_STATE(5414)] = 188252, - [SMALL_STATE(5415)] = 188265, - [SMALL_STATE(5416)] = 188278, - [SMALL_STATE(5417)] = 188291, - [SMALL_STATE(5418)] = 188304, - [SMALL_STATE(5419)] = 188317, - [SMALL_STATE(5420)] = 188330, - [SMALL_STATE(5421)] = 188343, - [SMALL_STATE(5422)] = 188356, - [SMALL_STATE(5423)] = 188369, - [SMALL_STATE(5424)] = 188382, - [SMALL_STATE(5425)] = 188395, - [SMALL_STATE(5426)] = 188408, - [SMALL_STATE(5427)] = 188421, - [SMALL_STATE(5428)] = 188434, - [SMALL_STATE(5429)] = 188445, - [SMALL_STATE(5430)] = 188458, - [SMALL_STATE(5431)] = 188471, - [SMALL_STATE(5432)] = 188484, - [SMALL_STATE(5433)] = 188497, - [SMALL_STATE(5434)] = 188510, - [SMALL_STATE(5435)] = 188523, - [SMALL_STATE(5436)] = 188536, - [SMALL_STATE(5437)] = 188549, - [SMALL_STATE(5438)] = 188562, - [SMALL_STATE(5439)] = 188575, - [SMALL_STATE(5440)] = 188588, - [SMALL_STATE(5441)] = 188601, - [SMALL_STATE(5442)] = 188614, - [SMALL_STATE(5443)] = 188627, - [SMALL_STATE(5444)] = 188640, - [SMALL_STATE(5445)] = 188653, - [SMALL_STATE(5446)] = 188666, - [SMALL_STATE(5447)] = 188679, - [SMALL_STATE(5448)] = 188692, - [SMALL_STATE(5449)] = 188705, - [SMALL_STATE(5450)] = 188718, - [SMALL_STATE(5451)] = 188728, - [SMALL_STATE(5452)] = 188738, - [SMALL_STATE(5453)] = 188748, - [SMALL_STATE(5454)] = 188758, - [SMALL_STATE(5455)] = 188768, - [SMALL_STATE(5456)] = 188778, - [SMALL_STATE(5457)] = 188788, - [SMALL_STATE(5458)] = 188798, - [SMALL_STATE(5459)] = 188808, - [SMALL_STATE(5460)] = 188818, - [SMALL_STATE(5461)] = 188828, - [SMALL_STATE(5462)] = 188838, - [SMALL_STATE(5463)] = 188848, - [SMALL_STATE(5464)] = 188858, - [SMALL_STATE(5465)] = 188868, - [SMALL_STATE(5466)] = 188878, - [SMALL_STATE(5467)] = 188888, - [SMALL_STATE(5468)] = 188898, - [SMALL_STATE(5469)] = 188908, - [SMALL_STATE(5470)] = 188918, - [SMALL_STATE(5471)] = 188928, - [SMALL_STATE(5472)] = 188938, - [SMALL_STATE(5473)] = 188948, - [SMALL_STATE(5474)] = 188958, - [SMALL_STATE(5475)] = 188968, - [SMALL_STATE(5476)] = 188978, - [SMALL_STATE(5477)] = 188988, - [SMALL_STATE(5478)] = 188998, - [SMALL_STATE(5479)] = 189008, - [SMALL_STATE(5480)] = 189018, - [SMALL_STATE(5481)] = 189028, - [SMALL_STATE(5482)] = 189038, - [SMALL_STATE(5483)] = 189048, - [SMALL_STATE(5484)] = 189058, - [SMALL_STATE(5485)] = 189068, - [SMALL_STATE(5486)] = 189078, - [SMALL_STATE(5487)] = 189088, - [SMALL_STATE(5488)] = 189098, - [SMALL_STATE(5489)] = 189108, - [SMALL_STATE(5490)] = 189118, - [SMALL_STATE(5491)] = 189128, - [SMALL_STATE(5492)] = 189138, - [SMALL_STATE(5493)] = 189148, - [SMALL_STATE(5494)] = 189158, - [SMALL_STATE(5495)] = 189168, - [SMALL_STATE(5496)] = 189178, - [SMALL_STATE(5497)] = 189188, - [SMALL_STATE(5498)] = 189198, - [SMALL_STATE(5499)] = 189208, - [SMALL_STATE(5500)] = 189218, - [SMALL_STATE(5501)] = 189228, - [SMALL_STATE(5502)] = 189238, - [SMALL_STATE(5503)] = 189248, - [SMALL_STATE(5504)] = 189258, - [SMALL_STATE(5505)] = 189268, - [SMALL_STATE(5506)] = 189278, - [SMALL_STATE(5507)] = 189288, - [SMALL_STATE(5508)] = 189298, - [SMALL_STATE(5509)] = 189308, - [SMALL_STATE(5510)] = 189318, - [SMALL_STATE(5511)] = 189328, - [SMALL_STATE(5512)] = 189338, - [SMALL_STATE(5513)] = 189348, - [SMALL_STATE(5514)] = 189358, - [SMALL_STATE(5515)] = 189368, - [SMALL_STATE(5516)] = 189378, - [SMALL_STATE(5517)] = 189388, - [SMALL_STATE(5518)] = 189398, - [SMALL_STATE(5519)] = 189408, - [SMALL_STATE(5520)] = 189418, - [SMALL_STATE(5521)] = 189428, - [SMALL_STATE(5522)] = 189438, - [SMALL_STATE(5523)] = 189448, - [SMALL_STATE(5524)] = 189458, - [SMALL_STATE(5525)] = 189468, - [SMALL_STATE(5526)] = 189478, - [SMALL_STATE(5527)] = 189488, - [SMALL_STATE(5528)] = 189498, - [SMALL_STATE(5529)] = 189508, - [SMALL_STATE(5530)] = 189518, - [SMALL_STATE(5531)] = 189528, - [SMALL_STATE(5532)] = 189538, - [SMALL_STATE(5533)] = 189548, - [SMALL_STATE(5534)] = 189558, - [SMALL_STATE(5535)] = 189568, - [SMALL_STATE(5536)] = 189578, - [SMALL_STATE(5537)] = 189588, - [SMALL_STATE(5538)] = 189598, - [SMALL_STATE(5539)] = 189608, - [SMALL_STATE(5540)] = 189618, - [SMALL_STATE(5541)] = 189628, - [SMALL_STATE(5542)] = 189638, - [SMALL_STATE(5543)] = 189648, - [SMALL_STATE(5544)] = 189658, - [SMALL_STATE(5545)] = 189668, - [SMALL_STATE(5546)] = 189678, - [SMALL_STATE(5547)] = 189688, - [SMALL_STATE(5548)] = 189698, - [SMALL_STATE(5549)] = 189708, - [SMALL_STATE(5550)] = 189718, - [SMALL_STATE(5551)] = 189728, - [SMALL_STATE(5552)] = 189738, - [SMALL_STATE(5553)] = 189748, - [SMALL_STATE(5554)] = 189758, - [SMALL_STATE(5555)] = 189768, - [SMALL_STATE(5556)] = 189778, - [SMALL_STATE(5557)] = 189788, - [SMALL_STATE(5558)] = 189798, - [SMALL_STATE(5559)] = 189808, - [SMALL_STATE(5560)] = 189818, - [SMALL_STATE(5561)] = 189828, - [SMALL_STATE(5562)] = 189838, - [SMALL_STATE(5563)] = 189848, - [SMALL_STATE(5564)] = 189858, - [SMALL_STATE(5565)] = 189868, - [SMALL_STATE(5566)] = 189878, - [SMALL_STATE(5567)] = 189888, - [SMALL_STATE(5568)] = 189898, - [SMALL_STATE(5569)] = 189908, - [SMALL_STATE(5570)] = 189918, - [SMALL_STATE(5571)] = 189928, - [SMALL_STATE(5572)] = 189938, - [SMALL_STATE(5573)] = 189948, - [SMALL_STATE(5574)] = 189958, - [SMALL_STATE(5575)] = 189968, - [SMALL_STATE(5576)] = 189978, - [SMALL_STATE(5577)] = 189988, - [SMALL_STATE(5578)] = 189998, - [SMALL_STATE(5579)] = 190008, - [SMALL_STATE(5580)] = 190018, - [SMALL_STATE(5581)] = 190028, - [SMALL_STATE(5582)] = 190038, - [SMALL_STATE(5583)] = 190048, - [SMALL_STATE(5584)] = 190058, - [SMALL_STATE(5585)] = 190068, - [SMALL_STATE(5586)] = 190078, - [SMALL_STATE(5587)] = 190088, - [SMALL_STATE(5588)] = 190098, - [SMALL_STATE(5589)] = 190108, - [SMALL_STATE(5590)] = 190118, - [SMALL_STATE(5591)] = 190128, - [SMALL_STATE(5592)] = 190138, - [SMALL_STATE(5593)] = 190148, - [SMALL_STATE(5594)] = 190158, - [SMALL_STATE(5595)] = 190168, - [SMALL_STATE(5596)] = 190178, - [SMALL_STATE(5597)] = 190188, - [SMALL_STATE(5598)] = 190198, - [SMALL_STATE(5599)] = 190208, - [SMALL_STATE(5600)] = 190218, - [SMALL_STATE(5601)] = 190228, - [SMALL_STATE(5602)] = 190238, - [SMALL_STATE(5603)] = 190248, - [SMALL_STATE(5604)] = 190258, - [SMALL_STATE(5605)] = 190268, - [SMALL_STATE(5606)] = 190278, - [SMALL_STATE(5607)] = 190288, - [SMALL_STATE(5608)] = 190298, - [SMALL_STATE(5609)] = 190308, - [SMALL_STATE(5610)] = 190318, - [SMALL_STATE(5611)] = 190328, - [SMALL_STATE(5612)] = 190338, - [SMALL_STATE(5613)] = 190348, - [SMALL_STATE(5614)] = 190358, - [SMALL_STATE(5615)] = 190368, - [SMALL_STATE(5616)] = 190378, - [SMALL_STATE(5617)] = 190388, - [SMALL_STATE(5618)] = 190398, - [SMALL_STATE(5619)] = 190408, - [SMALL_STATE(5620)] = 190418, - [SMALL_STATE(5621)] = 190428, - [SMALL_STATE(5622)] = 190438, - [SMALL_STATE(5623)] = 190448, - [SMALL_STATE(5624)] = 190458, - [SMALL_STATE(5625)] = 190468, - [SMALL_STATE(5626)] = 190478, - [SMALL_STATE(5627)] = 190488, - [SMALL_STATE(5628)] = 190498, - [SMALL_STATE(5629)] = 190508, - [SMALL_STATE(5630)] = 190518, - [SMALL_STATE(5631)] = 190528, - [SMALL_STATE(5632)] = 190538, - [SMALL_STATE(5633)] = 190548, - [SMALL_STATE(5634)] = 190558, - [SMALL_STATE(5635)] = 190568, - [SMALL_STATE(5636)] = 190578, - [SMALL_STATE(5637)] = 190588, - [SMALL_STATE(5638)] = 190598, - [SMALL_STATE(5639)] = 190608, - [SMALL_STATE(5640)] = 190618, - [SMALL_STATE(5641)] = 190628, - [SMALL_STATE(5642)] = 190638, - [SMALL_STATE(5643)] = 190648, - [SMALL_STATE(5644)] = 190658, - [SMALL_STATE(5645)] = 190668, - [SMALL_STATE(5646)] = 190678, - [SMALL_STATE(5647)] = 190688, - [SMALL_STATE(5648)] = 190698, - [SMALL_STATE(5649)] = 190708, - [SMALL_STATE(5650)] = 190718, - [SMALL_STATE(5651)] = 190728, - [SMALL_STATE(5652)] = 190738, - [SMALL_STATE(5653)] = 190748, - [SMALL_STATE(5654)] = 190758, - [SMALL_STATE(5655)] = 190768, - [SMALL_STATE(5656)] = 190778, - [SMALL_STATE(5657)] = 190788, - [SMALL_STATE(5658)] = 190798, - [SMALL_STATE(5659)] = 190808, - [SMALL_STATE(5660)] = 190818, - [SMALL_STATE(5661)] = 190828, - [SMALL_STATE(5662)] = 190838, - [SMALL_STATE(5663)] = 190848, - [SMALL_STATE(5664)] = 190858, - [SMALL_STATE(5665)] = 190868, - [SMALL_STATE(5666)] = 190878, - [SMALL_STATE(5667)] = 190888, - [SMALL_STATE(5668)] = 190898, - [SMALL_STATE(5669)] = 190908, - [SMALL_STATE(5670)] = 190918, - [SMALL_STATE(5671)] = 190928, - [SMALL_STATE(5672)] = 190938, - [SMALL_STATE(5673)] = 190948, - [SMALL_STATE(5674)] = 190958, - [SMALL_STATE(5675)] = 190968, - [SMALL_STATE(5676)] = 190978, - [SMALL_STATE(5677)] = 190988, - [SMALL_STATE(5678)] = 190998, - [SMALL_STATE(5679)] = 191008, - [SMALL_STATE(5680)] = 191018, - [SMALL_STATE(5681)] = 191028, - [SMALL_STATE(5682)] = 191038, - [SMALL_STATE(5683)] = 191048, - [SMALL_STATE(5684)] = 191058, - [SMALL_STATE(5685)] = 191068, - [SMALL_STATE(5686)] = 191078, - [SMALL_STATE(5687)] = 191088, - [SMALL_STATE(5688)] = 191098, - [SMALL_STATE(5689)] = 191108, - [SMALL_STATE(5690)] = 191118, - [SMALL_STATE(5691)] = 191128, - [SMALL_STATE(5692)] = 191138, - [SMALL_STATE(5693)] = 191148, - [SMALL_STATE(5694)] = 191158, - [SMALL_STATE(5695)] = 191168, - [SMALL_STATE(5696)] = 191178, - [SMALL_STATE(5697)] = 191188, - [SMALL_STATE(5698)] = 191198, - [SMALL_STATE(5699)] = 191208, - [SMALL_STATE(5700)] = 191218, - [SMALL_STATE(5701)] = 191228, - [SMALL_STATE(5702)] = 191238, - [SMALL_STATE(5703)] = 191248, - [SMALL_STATE(5704)] = 191258, - [SMALL_STATE(5705)] = 191268, - [SMALL_STATE(5706)] = 191278, - [SMALL_STATE(5707)] = 191288, - [SMALL_STATE(5708)] = 191298, - [SMALL_STATE(5709)] = 191308, - [SMALL_STATE(5710)] = 191318, - [SMALL_STATE(5711)] = 191328, - [SMALL_STATE(5712)] = 191338, - [SMALL_STATE(5713)] = 191348, - [SMALL_STATE(5714)] = 191358, - [SMALL_STATE(5715)] = 191368, - [SMALL_STATE(5716)] = 191378, - [SMALL_STATE(5717)] = 191388, - [SMALL_STATE(5718)] = 191398, - [SMALL_STATE(5719)] = 191408, - [SMALL_STATE(5720)] = 191418, - [SMALL_STATE(5721)] = 191428, - [SMALL_STATE(5722)] = 191438, - [SMALL_STATE(5723)] = 191448, - [SMALL_STATE(5724)] = 191458, - [SMALL_STATE(5725)] = 191468, - [SMALL_STATE(5726)] = 191478, - [SMALL_STATE(5727)] = 191488, - [SMALL_STATE(5728)] = 191498, - [SMALL_STATE(5729)] = 191508, - [SMALL_STATE(5730)] = 191518, - [SMALL_STATE(5731)] = 191528, - [SMALL_STATE(5732)] = 191538, - [SMALL_STATE(5733)] = 191548, - [SMALL_STATE(5734)] = 191558, - [SMALL_STATE(5735)] = 191568, - [SMALL_STATE(5736)] = 191578, - [SMALL_STATE(5737)] = 191588, - [SMALL_STATE(5738)] = 191598, - [SMALL_STATE(5739)] = 191608, - [SMALL_STATE(5740)] = 191618, - [SMALL_STATE(5741)] = 191628, - [SMALL_STATE(5742)] = 191638, - [SMALL_STATE(5743)] = 191648, - [SMALL_STATE(5744)] = 191658, - [SMALL_STATE(5745)] = 191668, - [SMALL_STATE(5746)] = 191678, - [SMALL_STATE(5747)] = 191688, - [SMALL_STATE(5748)] = 191698, - [SMALL_STATE(5749)] = 191708, - [SMALL_STATE(5750)] = 191718, - [SMALL_STATE(5751)] = 191728, - [SMALL_STATE(5752)] = 191738, - [SMALL_STATE(5753)] = 191748, - [SMALL_STATE(5754)] = 191758, - [SMALL_STATE(5755)] = 191768, - [SMALL_STATE(5756)] = 191778, - [SMALL_STATE(5757)] = 191788, - [SMALL_STATE(5758)] = 191798, - [SMALL_STATE(5759)] = 191808, - [SMALL_STATE(5760)] = 191818, - [SMALL_STATE(5761)] = 191828, - [SMALL_STATE(5762)] = 191838, - [SMALL_STATE(5763)] = 191848, - [SMALL_STATE(5764)] = 191858, - [SMALL_STATE(5765)] = 191868, - [SMALL_STATE(5766)] = 191878, - [SMALL_STATE(5767)] = 191888, - [SMALL_STATE(5768)] = 191898, - [SMALL_STATE(5769)] = 191908, - [SMALL_STATE(5770)] = 191918, - [SMALL_STATE(5771)] = 191928, - [SMALL_STATE(5772)] = 191938, - [SMALL_STATE(5773)] = 191948, - [SMALL_STATE(5774)] = 191958, - [SMALL_STATE(5775)] = 191968, - [SMALL_STATE(5776)] = 191978, - [SMALL_STATE(5777)] = 191988, - [SMALL_STATE(5778)] = 191998, - [SMALL_STATE(5779)] = 192008, - [SMALL_STATE(5780)] = 192018, - [SMALL_STATE(5781)] = 192028, - [SMALL_STATE(5782)] = 192038, - [SMALL_STATE(5783)] = 192048, - [SMALL_STATE(5784)] = 192058, - [SMALL_STATE(5785)] = 192068, - [SMALL_STATE(5786)] = 192078, - [SMALL_STATE(5787)] = 192088, - [SMALL_STATE(5788)] = 192098, - [SMALL_STATE(5789)] = 192108, - [SMALL_STATE(5790)] = 192118, - [SMALL_STATE(5791)] = 192128, - [SMALL_STATE(5792)] = 192138, - [SMALL_STATE(5793)] = 192148, - [SMALL_STATE(5794)] = 192158, - [SMALL_STATE(5795)] = 192168, - [SMALL_STATE(5796)] = 192178, - [SMALL_STATE(5797)] = 192188, - [SMALL_STATE(5798)] = 192198, - [SMALL_STATE(5799)] = 192208, - [SMALL_STATE(5800)] = 192218, - [SMALL_STATE(5801)] = 192228, - [SMALL_STATE(5802)] = 192238, - [SMALL_STATE(5803)] = 192248, - [SMALL_STATE(5804)] = 192258, - [SMALL_STATE(5805)] = 192268, - [SMALL_STATE(5806)] = 192278, - [SMALL_STATE(5807)] = 192288, - [SMALL_STATE(5808)] = 192298, - [SMALL_STATE(5809)] = 192308, - [SMALL_STATE(5810)] = 192318, - [SMALL_STATE(5811)] = 192328, - [SMALL_STATE(5812)] = 192338, - [SMALL_STATE(5813)] = 192348, - [SMALL_STATE(5814)] = 192358, - [SMALL_STATE(5815)] = 192368, - [SMALL_STATE(5816)] = 192378, - [SMALL_STATE(5817)] = 192388, - [SMALL_STATE(5818)] = 192398, - [SMALL_STATE(5819)] = 192408, - [SMALL_STATE(5820)] = 192418, - [SMALL_STATE(5821)] = 192428, - [SMALL_STATE(5822)] = 192438, - [SMALL_STATE(5823)] = 192448, - [SMALL_STATE(5824)] = 192458, - [SMALL_STATE(5825)] = 192468, - [SMALL_STATE(5826)] = 192478, - [SMALL_STATE(5827)] = 192488, - [SMALL_STATE(5828)] = 192498, - [SMALL_STATE(5829)] = 192508, - [SMALL_STATE(5830)] = 192518, - [SMALL_STATE(5831)] = 192528, - [SMALL_STATE(5832)] = 192538, - [SMALL_STATE(5833)] = 192548, - [SMALL_STATE(5834)] = 192558, - [SMALL_STATE(5835)] = 192568, - [SMALL_STATE(5836)] = 192578, - [SMALL_STATE(5837)] = 192588, - [SMALL_STATE(5838)] = 192598, - [SMALL_STATE(5839)] = 192608, - [SMALL_STATE(5840)] = 192618, - [SMALL_STATE(5841)] = 192628, - [SMALL_STATE(5842)] = 192638, - [SMALL_STATE(5843)] = 192648, - [SMALL_STATE(5844)] = 192658, - [SMALL_STATE(5845)] = 192668, - [SMALL_STATE(5846)] = 192678, - [SMALL_STATE(5847)] = 192688, - [SMALL_STATE(5848)] = 192698, - [SMALL_STATE(5849)] = 192708, - [SMALL_STATE(5850)] = 192718, - [SMALL_STATE(5851)] = 192728, - [SMALL_STATE(5852)] = 192738, - [SMALL_STATE(5853)] = 192748, - [SMALL_STATE(5854)] = 192758, - [SMALL_STATE(5855)] = 192768, - [SMALL_STATE(5856)] = 192778, - [SMALL_STATE(5857)] = 192788, - [SMALL_STATE(5858)] = 192798, - [SMALL_STATE(5859)] = 192808, - [SMALL_STATE(5860)] = 192818, - [SMALL_STATE(5861)] = 192828, - [SMALL_STATE(5862)] = 192838, - [SMALL_STATE(5863)] = 192848, - [SMALL_STATE(5864)] = 192858, - [SMALL_STATE(5865)] = 192868, - [SMALL_STATE(5866)] = 192878, - [SMALL_STATE(5867)] = 192888, - [SMALL_STATE(5868)] = 192898, - [SMALL_STATE(5869)] = 192908, - [SMALL_STATE(5870)] = 192918, - [SMALL_STATE(5871)] = 192928, - [SMALL_STATE(5872)] = 192938, - [SMALL_STATE(5873)] = 192948, - [SMALL_STATE(5874)] = 192958, - [SMALL_STATE(5875)] = 192968, - [SMALL_STATE(5876)] = 192978, - [SMALL_STATE(5877)] = 192988, - [SMALL_STATE(5878)] = 192998, - [SMALL_STATE(5879)] = 193008, - [SMALL_STATE(5880)] = 193018, - [SMALL_STATE(5881)] = 193028, - [SMALL_STATE(5882)] = 193038, - [SMALL_STATE(5883)] = 193048, - [SMALL_STATE(5884)] = 193058, - [SMALL_STATE(5885)] = 193068, - [SMALL_STATE(5886)] = 193078, - [SMALL_STATE(5887)] = 193088, - [SMALL_STATE(5888)] = 193098, - [SMALL_STATE(5889)] = 193108, - [SMALL_STATE(5890)] = 193118, - [SMALL_STATE(5891)] = 193128, - [SMALL_STATE(5892)] = 193138, - [SMALL_STATE(5893)] = 193148, - [SMALL_STATE(5894)] = 193158, - [SMALL_STATE(5895)] = 193168, - [SMALL_STATE(5896)] = 193178, - [SMALL_STATE(5897)] = 193188, - [SMALL_STATE(5898)] = 193198, - [SMALL_STATE(5899)] = 193208, - [SMALL_STATE(5900)] = 193218, - [SMALL_STATE(5901)] = 193228, - [SMALL_STATE(5902)] = 193238, - [SMALL_STATE(5903)] = 193248, - [SMALL_STATE(5904)] = 193258, - [SMALL_STATE(5905)] = 193268, - [SMALL_STATE(5906)] = 193278, - [SMALL_STATE(5907)] = 193288, - [SMALL_STATE(5908)] = 193298, - [SMALL_STATE(5909)] = 193308, - [SMALL_STATE(5910)] = 193318, - [SMALL_STATE(5911)] = 193328, - [SMALL_STATE(5912)] = 193338, - [SMALL_STATE(5913)] = 193348, - [SMALL_STATE(5914)] = 193358, - [SMALL_STATE(5915)] = 193368, - [SMALL_STATE(5916)] = 193378, - [SMALL_STATE(5917)] = 193388, - [SMALL_STATE(5918)] = 193398, - [SMALL_STATE(5919)] = 193408, - [SMALL_STATE(5920)] = 193418, - [SMALL_STATE(5921)] = 193428, - [SMALL_STATE(5922)] = 193438, - [SMALL_STATE(5923)] = 193448, - [SMALL_STATE(5924)] = 193458, - [SMALL_STATE(5925)] = 193468, - [SMALL_STATE(5926)] = 193478, - [SMALL_STATE(5927)] = 193488, - [SMALL_STATE(5928)] = 193498, - [SMALL_STATE(5929)] = 193508, - [SMALL_STATE(5930)] = 193518, - [SMALL_STATE(5931)] = 193528, - [SMALL_STATE(5932)] = 193538, - [SMALL_STATE(5933)] = 193548, - [SMALL_STATE(5934)] = 193558, - [SMALL_STATE(5935)] = 193568, - [SMALL_STATE(5936)] = 193578, - [SMALL_STATE(5937)] = 193588, - [SMALL_STATE(5938)] = 193598, - [SMALL_STATE(5939)] = 193608, - [SMALL_STATE(5940)] = 193618, - [SMALL_STATE(5941)] = 193628, - [SMALL_STATE(5942)] = 193638, - [SMALL_STATE(5943)] = 193648, - [SMALL_STATE(5944)] = 193658, - [SMALL_STATE(5945)] = 193668, - [SMALL_STATE(5946)] = 193678, - [SMALL_STATE(5947)] = 193688, - [SMALL_STATE(5948)] = 193698, - [SMALL_STATE(5949)] = 193708, - [SMALL_STATE(5950)] = 193718, - [SMALL_STATE(5951)] = 193728, - [SMALL_STATE(5952)] = 193738, - [SMALL_STATE(5953)] = 193748, - [SMALL_STATE(5954)] = 193758, - [SMALL_STATE(5955)] = 193768, - [SMALL_STATE(5956)] = 193778, - [SMALL_STATE(5957)] = 193788, - [SMALL_STATE(5958)] = 193798, - [SMALL_STATE(5959)] = 193808, - [SMALL_STATE(5960)] = 193818, - [SMALL_STATE(5961)] = 193828, - [SMALL_STATE(5962)] = 193838, - [SMALL_STATE(5963)] = 193848, - [SMALL_STATE(5964)] = 193858, - [SMALL_STATE(5965)] = 193868, - [SMALL_STATE(5966)] = 193878, - [SMALL_STATE(5967)] = 193888, - [SMALL_STATE(5968)] = 193898, - [SMALL_STATE(5969)] = 193908, - [SMALL_STATE(5970)] = 193918, - [SMALL_STATE(5971)] = 193928, - [SMALL_STATE(5972)] = 193938, + [SMALL_STATE(4894)] = 181047, + [SMALL_STATE(4895)] = 181060, + [SMALL_STATE(4896)] = 181073, + [SMALL_STATE(4897)] = 181092, + [SMALL_STATE(4898)] = 181105, + [SMALL_STATE(4899)] = 181118, + [SMALL_STATE(4900)] = 181137, + [SMALL_STATE(4901)] = 181152, + [SMALL_STATE(4902)] = 181171, + [SMALL_STATE(4903)] = 181184, + [SMALL_STATE(4904)] = 181203, + [SMALL_STATE(4905)] = 181216, + [SMALL_STATE(4906)] = 181235, + [SMALL_STATE(4907)] = 181248, + [SMALL_STATE(4908)] = 181261, + [SMALL_STATE(4909)] = 181274, + [SMALL_STATE(4910)] = 181293, + [SMALL_STATE(4911)] = 181312, + [SMALL_STATE(4912)] = 181331, + [SMALL_STATE(4913)] = 181346, + [SMALL_STATE(4914)] = 181365, + [SMALL_STATE(4915)] = 181378, + [SMALL_STATE(4916)] = 181397, + [SMALL_STATE(4917)] = 181412, + [SMALL_STATE(4918)] = 181431, + [SMALL_STATE(4919)] = 181446, + [SMALL_STATE(4920)] = 181459, + [SMALL_STATE(4921)] = 181472, + [SMALL_STATE(4922)] = 181491, + [SMALL_STATE(4923)] = 181504, + [SMALL_STATE(4924)] = 181523, + [SMALL_STATE(4925)] = 181538, + [SMALL_STATE(4926)] = 181551, + [SMALL_STATE(4927)] = 181570, + [SMALL_STATE(4928)] = 181589, + [SMALL_STATE(4929)] = 181602, + [SMALL_STATE(4930)] = 181615, + [SMALL_STATE(4931)] = 181628, + [SMALL_STATE(4932)] = 181641, + [SMALL_STATE(4933)] = 181660, + [SMALL_STATE(4934)] = 181677, + [SMALL_STATE(4935)] = 181696, + [SMALL_STATE(4936)] = 181711, + [SMALL_STATE(4937)] = 181726, + [SMALL_STATE(4938)] = 181743, + [SMALL_STATE(4939)] = 181758, + [SMALL_STATE(4940)] = 181771, + [SMALL_STATE(4941)] = 181786, + [SMALL_STATE(4942)] = 181805, + [SMALL_STATE(4943)] = 181818, + [SMALL_STATE(4944)] = 181833, + [SMALL_STATE(4945)] = 181848, + [SMALL_STATE(4946)] = 181861, + [SMALL_STATE(4947)] = 181876, + [SMALL_STATE(4948)] = 181895, + [SMALL_STATE(4949)] = 181912, + [SMALL_STATE(4950)] = 181927, + [SMALL_STATE(4951)] = 181944, + [SMALL_STATE(4952)] = 181961, + [SMALL_STATE(4953)] = 181974, + [SMALL_STATE(4954)] = 181989, + [SMALL_STATE(4955)] = 182002, + [SMALL_STATE(4956)] = 182019, + [SMALL_STATE(4957)] = 182032, + [SMALL_STATE(4958)] = 182047, + [SMALL_STATE(4959)] = 182064, + [SMALL_STATE(4960)] = 182077, + [SMALL_STATE(4961)] = 182090, + [SMALL_STATE(4962)] = 182109, + [SMALL_STATE(4963)] = 182124, + [SMALL_STATE(4964)] = 182137, + [SMALL_STATE(4965)] = 182156, + [SMALL_STATE(4966)] = 182175, + [SMALL_STATE(4967)] = 182194, + [SMALL_STATE(4968)] = 182207, + [SMALL_STATE(4969)] = 182226, + [SMALL_STATE(4970)] = 182239, + [SMALL_STATE(4971)] = 182256, + [SMALL_STATE(4972)] = 182275, + [SMALL_STATE(4973)] = 182294, + [SMALL_STATE(4974)] = 182313, + [SMALL_STATE(4975)] = 182332, + [SMALL_STATE(4976)] = 182345, + [SMALL_STATE(4977)] = 182358, + [SMALL_STATE(4978)] = 182375, + [SMALL_STATE(4979)] = 182388, + [SMALL_STATE(4980)] = 182407, + [SMALL_STATE(4981)] = 182422, + [SMALL_STATE(4982)] = 182438, + [SMALL_STATE(4983)] = 182450, + [SMALL_STATE(4984)] = 182462, + [SMALL_STATE(4985)] = 182474, + [SMALL_STATE(4986)] = 182486, + [SMALL_STATE(4987)] = 182502, + [SMALL_STATE(4988)] = 182518, + [SMALL_STATE(4989)] = 182530, + [SMALL_STATE(4990)] = 182542, + [SMALL_STATE(4991)] = 182554, + [SMALL_STATE(4992)] = 182566, + [SMALL_STATE(4993)] = 182580, + [SMALL_STATE(4994)] = 182596, + [SMALL_STATE(4995)] = 182610, + [SMALL_STATE(4996)] = 182626, + [SMALL_STATE(4997)] = 182642, + [SMALL_STATE(4998)] = 182654, + [SMALL_STATE(4999)] = 182670, + [SMALL_STATE(5000)] = 182684, + [SMALL_STATE(5001)] = 182698, + [SMALL_STATE(5002)] = 182712, + [SMALL_STATE(5003)] = 182724, + [SMALL_STATE(5004)] = 182736, + [SMALL_STATE(5005)] = 182748, + [SMALL_STATE(5006)] = 182760, + [SMALL_STATE(5007)] = 182774, + [SMALL_STATE(5008)] = 182788, + [SMALL_STATE(5009)] = 182800, + [SMALL_STATE(5010)] = 182816, + [SMALL_STATE(5011)] = 182832, + [SMALL_STATE(5012)] = 182848, + [SMALL_STATE(5013)] = 182862, + [SMALL_STATE(5014)] = 182878, + [SMALL_STATE(5015)] = 182892, + [SMALL_STATE(5016)] = 182906, + [SMALL_STATE(5017)] = 182918, + [SMALL_STATE(5018)] = 182934, + [SMALL_STATE(5019)] = 182946, + [SMALL_STATE(5020)] = 182962, + [SMALL_STATE(5021)] = 182978, + [SMALL_STATE(5022)] = 182992, + [SMALL_STATE(5023)] = 183008, + [SMALL_STATE(5024)] = 183024, + [SMALL_STATE(5025)] = 183036, + [SMALL_STATE(5026)] = 183052, + [SMALL_STATE(5027)] = 183064, + [SMALL_STATE(5028)] = 183080, + [SMALL_STATE(5029)] = 183092, + [SMALL_STATE(5030)] = 183104, + [SMALL_STATE(5031)] = 183116, + [SMALL_STATE(5032)] = 183128, + [SMALL_STATE(5033)] = 183140, + [SMALL_STATE(5034)] = 183152, + [SMALL_STATE(5035)] = 183166, + [SMALL_STATE(5036)] = 183182, + [SMALL_STATE(5037)] = 183196, + [SMALL_STATE(5038)] = 183208, + [SMALL_STATE(5039)] = 183224, + [SMALL_STATE(5040)] = 183236, + [SMALL_STATE(5041)] = 183248, + [SMALL_STATE(5042)] = 183262, + [SMALL_STATE(5043)] = 183278, + [SMALL_STATE(5044)] = 183294, + [SMALL_STATE(5045)] = 183310, + [SMALL_STATE(5046)] = 183324, + [SMALL_STATE(5047)] = 183336, + [SMALL_STATE(5048)] = 183348, + [SMALL_STATE(5049)] = 183360, + [SMALL_STATE(5050)] = 183374, + [SMALL_STATE(5051)] = 183386, + [SMALL_STATE(5052)] = 183398, + [SMALL_STATE(5053)] = 183410, + [SMALL_STATE(5054)] = 183422, + [SMALL_STATE(5055)] = 183436, + [SMALL_STATE(5056)] = 183448, + [SMALL_STATE(5057)] = 183462, + [SMALL_STATE(5058)] = 183476, + [SMALL_STATE(5059)] = 183490, + [SMALL_STATE(5060)] = 183506, + [SMALL_STATE(5061)] = 183518, + [SMALL_STATE(5062)] = 183530, + [SMALL_STATE(5063)] = 183546, + [SMALL_STATE(5064)] = 183560, + [SMALL_STATE(5065)] = 183576, + [SMALL_STATE(5066)] = 183588, + [SMALL_STATE(5067)] = 183602, + [SMALL_STATE(5068)] = 183618, + [SMALL_STATE(5069)] = 183634, + [SMALL_STATE(5070)] = 183646, + [SMALL_STATE(5071)] = 183658, + [SMALL_STATE(5072)] = 183670, + [SMALL_STATE(5073)] = 183682, + [SMALL_STATE(5074)] = 183694, + [SMALL_STATE(5075)] = 183706, + [SMALL_STATE(5076)] = 183720, + [SMALL_STATE(5077)] = 183736, + [SMALL_STATE(5078)] = 183748, + [SMALL_STATE(5079)] = 183762, + [SMALL_STATE(5080)] = 183776, + [SMALL_STATE(5081)] = 183792, + [SMALL_STATE(5082)] = 183808, + [SMALL_STATE(5083)] = 183820, + [SMALL_STATE(5084)] = 183836, + [SMALL_STATE(5085)] = 183850, + [SMALL_STATE(5086)] = 183862, + [SMALL_STATE(5087)] = 183874, + [SMALL_STATE(5088)] = 183886, + [SMALL_STATE(5089)] = 183898, + [SMALL_STATE(5090)] = 183910, + [SMALL_STATE(5091)] = 183922, + [SMALL_STATE(5092)] = 183934, + [SMALL_STATE(5093)] = 183946, + [SMALL_STATE(5094)] = 183962, + [SMALL_STATE(5095)] = 183976, + [SMALL_STATE(5096)] = 183992, + [SMALL_STATE(5097)] = 184004, + [SMALL_STATE(5098)] = 184020, + [SMALL_STATE(5099)] = 184032, + [SMALL_STATE(5100)] = 184044, + [SMALL_STATE(5101)] = 184060, + [SMALL_STATE(5102)] = 184076, + [SMALL_STATE(5103)] = 184088, + [SMALL_STATE(5104)] = 184100, + [SMALL_STATE(5105)] = 184114, + [SMALL_STATE(5106)] = 184126, + [SMALL_STATE(5107)] = 184138, + [SMALL_STATE(5108)] = 184150, + [SMALL_STATE(5109)] = 184162, + [SMALL_STATE(5110)] = 184178, + [SMALL_STATE(5111)] = 184190, + [SMALL_STATE(5112)] = 184206, + [SMALL_STATE(5113)] = 184222, + [SMALL_STATE(5114)] = 184234, + [SMALL_STATE(5115)] = 184246, + [SMALL_STATE(5116)] = 184258, + [SMALL_STATE(5117)] = 184270, + [SMALL_STATE(5118)] = 184284, + [SMALL_STATE(5119)] = 184298, + [SMALL_STATE(5120)] = 184314, + [SMALL_STATE(5121)] = 184326, + [SMALL_STATE(5122)] = 184340, + [SMALL_STATE(5123)] = 184354, + [SMALL_STATE(5124)] = 184368, + [SMALL_STATE(5125)] = 184384, + [SMALL_STATE(5126)] = 184400, + [SMALL_STATE(5127)] = 184412, + [SMALL_STATE(5128)] = 184428, + [SMALL_STATE(5129)] = 184442, + [SMALL_STATE(5130)] = 184458, + [SMALL_STATE(5131)] = 184474, + [SMALL_STATE(5132)] = 184490, + [SMALL_STATE(5133)] = 184504, + [SMALL_STATE(5134)] = 184518, + [SMALL_STATE(5135)] = 184532, + [SMALL_STATE(5136)] = 184546, + [SMALL_STATE(5137)] = 184560, + [SMALL_STATE(5138)] = 184576, + [SMALL_STATE(5139)] = 184592, + [SMALL_STATE(5140)] = 184604, + [SMALL_STATE(5141)] = 184620, + [SMALL_STATE(5142)] = 184636, + [SMALL_STATE(5143)] = 184648, + [SMALL_STATE(5144)] = 184662, + [SMALL_STATE(5145)] = 184674, + [SMALL_STATE(5146)] = 184688, + [SMALL_STATE(5147)] = 184702, + [SMALL_STATE(5148)] = 184718, + [SMALL_STATE(5149)] = 184732, + [SMALL_STATE(5150)] = 184748, + [SMALL_STATE(5151)] = 184764, + [SMALL_STATE(5152)] = 184778, + [SMALL_STATE(5153)] = 184790, + [SMALL_STATE(5154)] = 184806, + [SMALL_STATE(5155)] = 184822, + [SMALL_STATE(5156)] = 184836, + [SMALL_STATE(5157)] = 184850, + [SMALL_STATE(5158)] = 184864, + [SMALL_STATE(5159)] = 184878, + [SMALL_STATE(5160)] = 184892, + [SMALL_STATE(5161)] = 184908, + [SMALL_STATE(5162)] = 184920, + [SMALL_STATE(5163)] = 184936, + [SMALL_STATE(5164)] = 184950, + [SMALL_STATE(5165)] = 184964, + [SMALL_STATE(5166)] = 184978, + [SMALL_STATE(5167)] = 184990, + [SMALL_STATE(5168)] = 185004, + [SMALL_STATE(5169)] = 185016, + [SMALL_STATE(5170)] = 185032, + [SMALL_STATE(5171)] = 185044, + [SMALL_STATE(5172)] = 185060, + [SMALL_STATE(5173)] = 185076, + [SMALL_STATE(5174)] = 185088, + [SMALL_STATE(5175)] = 185100, + [SMALL_STATE(5176)] = 185112, + [SMALL_STATE(5177)] = 185128, + [SMALL_STATE(5178)] = 185140, + [SMALL_STATE(5179)] = 185154, + [SMALL_STATE(5180)] = 185170, + [SMALL_STATE(5181)] = 185184, + [SMALL_STATE(5182)] = 185198, + [SMALL_STATE(5183)] = 185210, + [SMALL_STATE(5184)] = 185222, + [SMALL_STATE(5185)] = 185236, + [SMALL_STATE(5186)] = 185250, + [SMALL_STATE(5187)] = 185264, + [SMALL_STATE(5188)] = 185278, + [SMALL_STATE(5189)] = 185290, + [SMALL_STATE(5190)] = 185304, + [SMALL_STATE(5191)] = 185320, + [SMALL_STATE(5192)] = 185332, + [SMALL_STATE(5193)] = 185348, + [SMALL_STATE(5194)] = 185360, + [SMALL_STATE(5195)] = 185376, + [SMALL_STATE(5196)] = 185390, + [SMALL_STATE(5197)] = 185404, + [SMALL_STATE(5198)] = 185416, + [SMALL_STATE(5199)] = 185428, + [SMALL_STATE(5200)] = 185440, + [SMALL_STATE(5201)] = 185452, + [SMALL_STATE(5202)] = 185468, + [SMALL_STATE(5203)] = 185484, + [SMALL_STATE(5204)] = 185498, + [SMALL_STATE(5205)] = 185510, + [SMALL_STATE(5206)] = 185522, + [SMALL_STATE(5207)] = 185534, + [SMALL_STATE(5208)] = 185546, + [SMALL_STATE(5209)] = 185558, + [SMALL_STATE(5210)] = 185574, + [SMALL_STATE(5211)] = 185590, + [SMALL_STATE(5212)] = 185604, + [SMALL_STATE(5213)] = 185620, + [SMALL_STATE(5214)] = 185636, + [SMALL_STATE(5215)] = 185650, + [SMALL_STATE(5216)] = 185664, + [SMALL_STATE(5217)] = 185676, + [SMALL_STATE(5218)] = 185692, + [SMALL_STATE(5219)] = 185704, + [SMALL_STATE(5220)] = 185716, + [SMALL_STATE(5221)] = 185730, + [SMALL_STATE(5222)] = 185744, + [SMALL_STATE(5223)] = 185760, + [SMALL_STATE(5224)] = 185776, + [SMALL_STATE(5225)] = 185788, + [SMALL_STATE(5226)] = 185804, + [SMALL_STATE(5227)] = 185818, + [SMALL_STATE(5228)] = 185832, + [SMALL_STATE(5229)] = 185848, + [SMALL_STATE(5230)] = 185864, + [SMALL_STATE(5231)] = 185880, + [SMALL_STATE(5232)] = 185896, + [SMALL_STATE(5233)] = 185908, + [SMALL_STATE(5234)] = 185922, + [SMALL_STATE(5235)] = 185936, + [SMALL_STATE(5236)] = 185948, + [SMALL_STATE(5237)] = 185960, + [SMALL_STATE(5238)] = 185972, + [SMALL_STATE(5239)] = 185984, + [SMALL_STATE(5240)] = 186000, + [SMALL_STATE(5241)] = 186016, + [SMALL_STATE(5242)] = 186028, + [SMALL_STATE(5243)] = 186040, + [SMALL_STATE(5244)] = 186056, + [SMALL_STATE(5245)] = 186070, + [SMALL_STATE(5246)] = 186086, + [SMALL_STATE(5247)] = 186098, + [SMALL_STATE(5248)] = 186114, + [SMALL_STATE(5249)] = 186130, + [SMALL_STATE(5250)] = 186144, + [SMALL_STATE(5251)] = 186158, + [SMALL_STATE(5252)] = 186174, + [SMALL_STATE(5253)] = 186186, + [SMALL_STATE(5254)] = 186198, + [SMALL_STATE(5255)] = 186210, + [SMALL_STATE(5256)] = 186222, + [SMALL_STATE(5257)] = 186238, + [SMALL_STATE(5258)] = 186252, + [SMALL_STATE(5259)] = 186264, + [SMALL_STATE(5260)] = 186280, + [SMALL_STATE(5261)] = 186292, + [SMALL_STATE(5262)] = 186306, + [SMALL_STATE(5263)] = 186318, + [SMALL_STATE(5264)] = 186334, + [SMALL_STATE(5265)] = 186348, + [SMALL_STATE(5266)] = 186364, + [SMALL_STATE(5267)] = 186380, + [SMALL_STATE(5268)] = 186396, + [SMALL_STATE(5269)] = 186410, + [SMALL_STATE(5270)] = 186422, + [SMALL_STATE(5271)] = 186434, + [SMALL_STATE(5272)] = 186446, + [SMALL_STATE(5273)] = 186458, + [SMALL_STATE(5274)] = 186470, + [SMALL_STATE(5275)] = 186482, + [SMALL_STATE(5276)] = 186496, + [SMALL_STATE(5277)] = 186512, + [SMALL_STATE(5278)] = 186526, + [SMALL_STATE(5279)] = 186539, + [SMALL_STATE(5280)] = 186552, + [SMALL_STATE(5281)] = 186563, + [SMALL_STATE(5282)] = 186576, + [SMALL_STATE(5283)] = 186589, + [SMALL_STATE(5284)] = 186602, + [SMALL_STATE(5285)] = 186615, + [SMALL_STATE(5286)] = 186628, + [SMALL_STATE(5287)] = 186641, + [SMALL_STATE(5288)] = 186652, + [SMALL_STATE(5289)] = 186665, + [SMALL_STATE(5290)] = 186676, + [SMALL_STATE(5291)] = 186689, + [SMALL_STATE(5292)] = 186702, + [SMALL_STATE(5293)] = 186713, + [SMALL_STATE(5294)] = 186726, + [SMALL_STATE(5295)] = 186739, + [SMALL_STATE(5296)] = 186752, + [SMALL_STATE(5297)] = 186765, + [SMALL_STATE(5298)] = 186778, + [SMALL_STATE(5299)] = 186791, + [SMALL_STATE(5300)] = 186804, + [SMALL_STATE(5301)] = 186817, + [SMALL_STATE(5302)] = 186830, + [SMALL_STATE(5303)] = 186843, + [SMALL_STATE(5304)] = 186856, + [SMALL_STATE(5305)] = 186869, + [SMALL_STATE(5306)] = 186882, + [SMALL_STATE(5307)] = 186895, + [SMALL_STATE(5308)] = 186908, + [SMALL_STATE(5309)] = 186921, + [SMALL_STATE(5310)] = 186934, + [SMALL_STATE(5311)] = 186947, + [SMALL_STATE(5312)] = 186960, + [SMALL_STATE(5313)] = 186973, + [SMALL_STATE(5314)] = 186984, + [SMALL_STATE(5315)] = 186997, + [SMALL_STATE(5316)] = 187010, + [SMALL_STATE(5317)] = 187023, + [SMALL_STATE(5318)] = 187036, + [SMALL_STATE(5319)] = 187047, + [SMALL_STATE(5320)] = 187060, + [SMALL_STATE(5321)] = 187073, + [SMALL_STATE(5322)] = 187086, + [SMALL_STATE(5323)] = 187099, + [SMALL_STATE(5324)] = 187112, + [SMALL_STATE(5325)] = 187125, + [SMALL_STATE(5326)] = 187138, + [SMALL_STATE(5327)] = 187151, + [SMALL_STATE(5328)] = 187164, + [SMALL_STATE(5329)] = 187177, + [SMALL_STATE(5330)] = 187190, + [SMALL_STATE(5331)] = 187203, + [SMALL_STATE(5332)] = 187216, + [SMALL_STATE(5333)] = 187229, + [SMALL_STATE(5334)] = 187242, + [SMALL_STATE(5335)] = 187255, + [SMALL_STATE(5336)] = 187268, + [SMALL_STATE(5337)] = 187281, + [SMALL_STATE(5338)] = 187294, + [SMALL_STATE(5339)] = 187307, + [SMALL_STATE(5340)] = 187320, + [SMALL_STATE(5341)] = 187333, + [SMALL_STATE(5342)] = 187346, + [SMALL_STATE(5343)] = 187359, + [SMALL_STATE(5344)] = 187372, + [SMALL_STATE(5345)] = 187385, + [SMALL_STATE(5346)] = 187398, + [SMALL_STATE(5347)] = 187411, + [SMALL_STATE(5348)] = 187424, + [SMALL_STATE(5349)] = 187437, + [SMALL_STATE(5350)] = 187450, + [SMALL_STATE(5351)] = 187461, + [SMALL_STATE(5352)] = 187474, + [SMALL_STATE(5353)] = 187487, + [SMALL_STATE(5354)] = 187500, + [SMALL_STATE(5355)] = 187513, + [SMALL_STATE(5356)] = 187526, + [SMALL_STATE(5357)] = 187539, + [SMALL_STATE(5358)] = 187552, + [SMALL_STATE(5359)] = 187565, + [SMALL_STATE(5360)] = 187576, + [SMALL_STATE(5361)] = 187589, + [SMALL_STATE(5362)] = 187602, + [SMALL_STATE(5363)] = 187613, + [SMALL_STATE(5364)] = 187626, + [SMALL_STATE(5365)] = 187639, + [SMALL_STATE(5366)] = 187652, + [SMALL_STATE(5367)] = 187665, + [SMALL_STATE(5368)] = 187678, + [SMALL_STATE(5369)] = 187691, + [SMALL_STATE(5370)] = 187704, + [SMALL_STATE(5371)] = 187717, + [SMALL_STATE(5372)] = 187730, + [SMALL_STATE(5373)] = 187743, + [SMALL_STATE(5374)] = 187756, + [SMALL_STATE(5375)] = 187769, + [SMALL_STATE(5376)] = 187782, + [SMALL_STATE(5377)] = 187795, + [SMALL_STATE(5378)] = 187808, + [SMALL_STATE(5379)] = 187821, + [SMALL_STATE(5380)] = 187834, + [SMALL_STATE(5381)] = 187847, + [SMALL_STATE(5382)] = 187860, + [SMALL_STATE(5383)] = 187873, + [SMALL_STATE(5384)] = 187886, + [SMALL_STATE(5385)] = 187899, + [SMALL_STATE(5386)] = 187912, + [SMALL_STATE(5387)] = 187925, + [SMALL_STATE(5388)] = 187938, + [SMALL_STATE(5389)] = 187951, + [SMALL_STATE(5390)] = 187964, + [SMALL_STATE(5391)] = 187977, + [SMALL_STATE(5392)] = 187990, + [SMALL_STATE(5393)] = 188003, + [SMALL_STATE(5394)] = 188016, + [SMALL_STATE(5395)] = 188029, + [SMALL_STATE(5396)] = 188042, + [SMALL_STATE(5397)] = 188055, + [SMALL_STATE(5398)] = 188068, + [SMALL_STATE(5399)] = 188081, + [SMALL_STATE(5400)] = 188094, + [SMALL_STATE(5401)] = 188107, + [SMALL_STATE(5402)] = 188120, + [SMALL_STATE(5403)] = 188133, + [SMALL_STATE(5404)] = 188146, + [SMALL_STATE(5405)] = 188159, + [SMALL_STATE(5406)] = 188172, + [SMALL_STATE(5407)] = 188185, + [SMALL_STATE(5408)] = 188198, + [SMALL_STATE(5409)] = 188211, + [SMALL_STATE(5410)] = 188222, + [SMALL_STATE(5411)] = 188235, + [SMALL_STATE(5412)] = 188248, + [SMALL_STATE(5413)] = 188261, + [SMALL_STATE(5414)] = 188274, + [SMALL_STATE(5415)] = 188287, + [SMALL_STATE(5416)] = 188300, + [SMALL_STATE(5417)] = 188313, + [SMALL_STATE(5418)] = 188326, + [SMALL_STATE(5419)] = 188339, + [SMALL_STATE(5420)] = 188352, + [SMALL_STATE(5421)] = 188365, + [SMALL_STATE(5422)] = 188378, + [SMALL_STATE(5423)] = 188391, + [SMALL_STATE(5424)] = 188404, + [SMALL_STATE(5425)] = 188415, + [SMALL_STATE(5426)] = 188428, + [SMALL_STATE(5427)] = 188441, + [SMALL_STATE(5428)] = 188454, + [SMALL_STATE(5429)] = 188467, + [SMALL_STATE(5430)] = 188480, + [SMALL_STATE(5431)] = 188493, + [SMALL_STATE(5432)] = 188506, + [SMALL_STATE(5433)] = 188519, + [SMALL_STATE(5434)] = 188532, + [SMALL_STATE(5435)] = 188545, + [SMALL_STATE(5436)] = 188558, + [SMALL_STATE(5437)] = 188571, + [SMALL_STATE(5438)] = 188584, + [SMALL_STATE(5439)] = 188597, + [SMALL_STATE(5440)] = 188610, + [SMALL_STATE(5441)] = 188623, + [SMALL_STATE(5442)] = 188636, + [SMALL_STATE(5443)] = 188649, + [SMALL_STATE(5444)] = 188662, + [SMALL_STATE(5445)] = 188675, + [SMALL_STATE(5446)] = 188688, + [SMALL_STATE(5447)] = 188701, + [SMALL_STATE(5448)] = 188714, + [SMALL_STATE(5449)] = 188727, + [SMALL_STATE(5450)] = 188740, + [SMALL_STATE(5451)] = 188753, + [SMALL_STATE(5452)] = 188764, + [SMALL_STATE(5453)] = 188774, + [SMALL_STATE(5454)] = 188784, + [SMALL_STATE(5455)] = 188794, + [SMALL_STATE(5456)] = 188804, + [SMALL_STATE(5457)] = 188814, + [SMALL_STATE(5458)] = 188824, + [SMALL_STATE(5459)] = 188834, + [SMALL_STATE(5460)] = 188844, + [SMALL_STATE(5461)] = 188854, + [SMALL_STATE(5462)] = 188864, + [SMALL_STATE(5463)] = 188874, + [SMALL_STATE(5464)] = 188884, + [SMALL_STATE(5465)] = 188894, + [SMALL_STATE(5466)] = 188904, + [SMALL_STATE(5467)] = 188914, + [SMALL_STATE(5468)] = 188924, + [SMALL_STATE(5469)] = 188934, + [SMALL_STATE(5470)] = 188944, + [SMALL_STATE(5471)] = 188954, + [SMALL_STATE(5472)] = 188964, + [SMALL_STATE(5473)] = 188974, + [SMALL_STATE(5474)] = 188984, + [SMALL_STATE(5475)] = 188994, + [SMALL_STATE(5476)] = 189004, + [SMALL_STATE(5477)] = 189014, + [SMALL_STATE(5478)] = 189024, + [SMALL_STATE(5479)] = 189034, + [SMALL_STATE(5480)] = 189044, + [SMALL_STATE(5481)] = 189054, + [SMALL_STATE(5482)] = 189064, + [SMALL_STATE(5483)] = 189074, + [SMALL_STATE(5484)] = 189084, + [SMALL_STATE(5485)] = 189094, + [SMALL_STATE(5486)] = 189104, + [SMALL_STATE(5487)] = 189114, + [SMALL_STATE(5488)] = 189124, + [SMALL_STATE(5489)] = 189134, + [SMALL_STATE(5490)] = 189144, + [SMALL_STATE(5491)] = 189154, + [SMALL_STATE(5492)] = 189164, + [SMALL_STATE(5493)] = 189174, + [SMALL_STATE(5494)] = 189184, + [SMALL_STATE(5495)] = 189194, + [SMALL_STATE(5496)] = 189204, + [SMALL_STATE(5497)] = 189214, + [SMALL_STATE(5498)] = 189224, + [SMALL_STATE(5499)] = 189234, + [SMALL_STATE(5500)] = 189244, + [SMALL_STATE(5501)] = 189254, + [SMALL_STATE(5502)] = 189264, + [SMALL_STATE(5503)] = 189274, + [SMALL_STATE(5504)] = 189284, + [SMALL_STATE(5505)] = 189294, + [SMALL_STATE(5506)] = 189304, + [SMALL_STATE(5507)] = 189314, + [SMALL_STATE(5508)] = 189324, + [SMALL_STATE(5509)] = 189334, + [SMALL_STATE(5510)] = 189344, + [SMALL_STATE(5511)] = 189354, + [SMALL_STATE(5512)] = 189364, + [SMALL_STATE(5513)] = 189374, + [SMALL_STATE(5514)] = 189384, + [SMALL_STATE(5515)] = 189394, + [SMALL_STATE(5516)] = 189404, + [SMALL_STATE(5517)] = 189414, + [SMALL_STATE(5518)] = 189424, + [SMALL_STATE(5519)] = 189434, + [SMALL_STATE(5520)] = 189444, + [SMALL_STATE(5521)] = 189454, + [SMALL_STATE(5522)] = 189464, + [SMALL_STATE(5523)] = 189474, + [SMALL_STATE(5524)] = 189484, + [SMALL_STATE(5525)] = 189494, + [SMALL_STATE(5526)] = 189504, + [SMALL_STATE(5527)] = 189514, + [SMALL_STATE(5528)] = 189524, + [SMALL_STATE(5529)] = 189534, + [SMALL_STATE(5530)] = 189544, + [SMALL_STATE(5531)] = 189554, + [SMALL_STATE(5532)] = 189564, + [SMALL_STATE(5533)] = 189574, + [SMALL_STATE(5534)] = 189584, + [SMALL_STATE(5535)] = 189594, + [SMALL_STATE(5536)] = 189604, + [SMALL_STATE(5537)] = 189614, + [SMALL_STATE(5538)] = 189624, + [SMALL_STATE(5539)] = 189634, + [SMALL_STATE(5540)] = 189644, + [SMALL_STATE(5541)] = 189654, + [SMALL_STATE(5542)] = 189664, + [SMALL_STATE(5543)] = 189674, + [SMALL_STATE(5544)] = 189684, + [SMALL_STATE(5545)] = 189694, + [SMALL_STATE(5546)] = 189704, + [SMALL_STATE(5547)] = 189714, + [SMALL_STATE(5548)] = 189724, + [SMALL_STATE(5549)] = 189734, + [SMALL_STATE(5550)] = 189744, + [SMALL_STATE(5551)] = 189754, + [SMALL_STATE(5552)] = 189764, + [SMALL_STATE(5553)] = 189774, + [SMALL_STATE(5554)] = 189784, + [SMALL_STATE(5555)] = 189794, + [SMALL_STATE(5556)] = 189804, + [SMALL_STATE(5557)] = 189814, + [SMALL_STATE(5558)] = 189824, + [SMALL_STATE(5559)] = 189834, + [SMALL_STATE(5560)] = 189844, + [SMALL_STATE(5561)] = 189854, + [SMALL_STATE(5562)] = 189864, + [SMALL_STATE(5563)] = 189874, + [SMALL_STATE(5564)] = 189884, + [SMALL_STATE(5565)] = 189894, + [SMALL_STATE(5566)] = 189904, + [SMALL_STATE(5567)] = 189914, + [SMALL_STATE(5568)] = 189924, + [SMALL_STATE(5569)] = 189934, + [SMALL_STATE(5570)] = 189944, + [SMALL_STATE(5571)] = 189954, + [SMALL_STATE(5572)] = 189964, + [SMALL_STATE(5573)] = 189974, + [SMALL_STATE(5574)] = 189984, + [SMALL_STATE(5575)] = 189994, + [SMALL_STATE(5576)] = 190004, + [SMALL_STATE(5577)] = 190014, + [SMALL_STATE(5578)] = 190024, + [SMALL_STATE(5579)] = 190034, + [SMALL_STATE(5580)] = 190044, + [SMALL_STATE(5581)] = 190054, + [SMALL_STATE(5582)] = 190064, + [SMALL_STATE(5583)] = 190074, + [SMALL_STATE(5584)] = 190084, + [SMALL_STATE(5585)] = 190094, + [SMALL_STATE(5586)] = 190104, + [SMALL_STATE(5587)] = 190114, + [SMALL_STATE(5588)] = 190124, + [SMALL_STATE(5589)] = 190134, + [SMALL_STATE(5590)] = 190144, + [SMALL_STATE(5591)] = 190154, + [SMALL_STATE(5592)] = 190164, + [SMALL_STATE(5593)] = 190174, + [SMALL_STATE(5594)] = 190184, + [SMALL_STATE(5595)] = 190194, + [SMALL_STATE(5596)] = 190204, + [SMALL_STATE(5597)] = 190214, + [SMALL_STATE(5598)] = 190224, + [SMALL_STATE(5599)] = 190234, + [SMALL_STATE(5600)] = 190244, + [SMALL_STATE(5601)] = 190254, + [SMALL_STATE(5602)] = 190264, + [SMALL_STATE(5603)] = 190274, + [SMALL_STATE(5604)] = 190284, + [SMALL_STATE(5605)] = 190294, + [SMALL_STATE(5606)] = 190304, + [SMALL_STATE(5607)] = 190314, + [SMALL_STATE(5608)] = 190324, + [SMALL_STATE(5609)] = 190334, + [SMALL_STATE(5610)] = 190344, + [SMALL_STATE(5611)] = 190354, + [SMALL_STATE(5612)] = 190364, + [SMALL_STATE(5613)] = 190374, + [SMALL_STATE(5614)] = 190384, + [SMALL_STATE(5615)] = 190394, + [SMALL_STATE(5616)] = 190404, + [SMALL_STATE(5617)] = 190414, + [SMALL_STATE(5618)] = 190424, + [SMALL_STATE(5619)] = 190434, + [SMALL_STATE(5620)] = 190444, + [SMALL_STATE(5621)] = 190454, + [SMALL_STATE(5622)] = 190464, + [SMALL_STATE(5623)] = 190474, + [SMALL_STATE(5624)] = 190484, + [SMALL_STATE(5625)] = 190494, + [SMALL_STATE(5626)] = 190504, + [SMALL_STATE(5627)] = 190514, + [SMALL_STATE(5628)] = 190524, + [SMALL_STATE(5629)] = 190534, + [SMALL_STATE(5630)] = 190544, + [SMALL_STATE(5631)] = 190554, + [SMALL_STATE(5632)] = 190564, + [SMALL_STATE(5633)] = 190574, + [SMALL_STATE(5634)] = 190584, + [SMALL_STATE(5635)] = 190594, + [SMALL_STATE(5636)] = 190604, + [SMALL_STATE(5637)] = 190614, + [SMALL_STATE(5638)] = 190624, + [SMALL_STATE(5639)] = 190634, + [SMALL_STATE(5640)] = 190644, + [SMALL_STATE(5641)] = 190654, + [SMALL_STATE(5642)] = 190664, + [SMALL_STATE(5643)] = 190674, + [SMALL_STATE(5644)] = 190684, + [SMALL_STATE(5645)] = 190694, + [SMALL_STATE(5646)] = 190704, + [SMALL_STATE(5647)] = 190714, + [SMALL_STATE(5648)] = 190724, + [SMALL_STATE(5649)] = 190734, + [SMALL_STATE(5650)] = 190744, + [SMALL_STATE(5651)] = 190754, + [SMALL_STATE(5652)] = 190764, + [SMALL_STATE(5653)] = 190774, + [SMALL_STATE(5654)] = 190784, + [SMALL_STATE(5655)] = 190794, + [SMALL_STATE(5656)] = 190804, + [SMALL_STATE(5657)] = 190814, + [SMALL_STATE(5658)] = 190824, + [SMALL_STATE(5659)] = 190834, + [SMALL_STATE(5660)] = 190844, + [SMALL_STATE(5661)] = 190854, + [SMALL_STATE(5662)] = 190864, + [SMALL_STATE(5663)] = 190874, + [SMALL_STATE(5664)] = 190884, + [SMALL_STATE(5665)] = 190894, + [SMALL_STATE(5666)] = 190904, + [SMALL_STATE(5667)] = 190914, + [SMALL_STATE(5668)] = 190924, + [SMALL_STATE(5669)] = 190934, + [SMALL_STATE(5670)] = 190944, + [SMALL_STATE(5671)] = 190954, + [SMALL_STATE(5672)] = 190964, + [SMALL_STATE(5673)] = 190974, + [SMALL_STATE(5674)] = 190984, + [SMALL_STATE(5675)] = 190994, + [SMALL_STATE(5676)] = 191004, + [SMALL_STATE(5677)] = 191014, + [SMALL_STATE(5678)] = 191024, + [SMALL_STATE(5679)] = 191034, + [SMALL_STATE(5680)] = 191044, + [SMALL_STATE(5681)] = 191054, + [SMALL_STATE(5682)] = 191064, + [SMALL_STATE(5683)] = 191074, + [SMALL_STATE(5684)] = 191084, + [SMALL_STATE(5685)] = 191094, + [SMALL_STATE(5686)] = 191104, + [SMALL_STATE(5687)] = 191114, + [SMALL_STATE(5688)] = 191124, + [SMALL_STATE(5689)] = 191134, + [SMALL_STATE(5690)] = 191144, + [SMALL_STATE(5691)] = 191154, + [SMALL_STATE(5692)] = 191164, + [SMALL_STATE(5693)] = 191174, + [SMALL_STATE(5694)] = 191184, + [SMALL_STATE(5695)] = 191194, + [SMALL_STATE(5696)] = 191204, + [SMALL_STATE(5697)] = 191214, + [SMALL_STATE(5698)] = 191224, + [SMALL_STATE(5699)] = 191234, + [SMALL_STATE(5700)] = 191244, + [SMALL_STATE(5701)] = 191254, + [SMALL_STATE(5702)] = 191264, + [SMALL_STATE(5703)] = 191274, + [SMALL_STATE(5704)] = 191284, + [SMALL_STATE(5705)] = 191294, + [SMALL_STATE(5706)] = 191304, + [SMALL_STATE(5707)] = 191314, + [SMALL_STATE(5708)] = 191324, + [SMALL_STATE(5709)] = 191334, + [SMALL_STATE(5710)] = 191344, + [SMALL_STATE(5711)] = 191354, + [SMALL_STATE(5712)] = 191364, + [SMALL_STATE(5713)] = 191374, + [SMALL_STATE(5714)] = 191384, + [SMALL_STATE(5715)] = 191394, + [SMALL_STATE(5716)] = 191404, + [SMALL_STATE(5717)] = 191414, + [SMALL_STATE(5718)] = 191424, + [SMALL_STATE(5719)] = 191434, + [SMALL_STATE(5720)] = 191444, + [SMALL_STATE(5721)] = 191454, + [SMALL_STATE(5722)] = 191464, + [SMALL_STATE(5723)] = 191474, + [SMALL_STATE(5724)] = 191484, + [SMALL_STATE(5725)] = 191494, + [SMALL_STATE(5726)] = 191504, + [SMALL_STATE(5727)] = 191514, + [SMALL_STATE(5728)] = 191524, + [SMALL_STATE(5729)] = 191534, + [SMALL_STATE(5730)] = 191544, + [SMALL_STATE(5731)] = 191554, + [SMALL_STATE(5732)] = 191564, + [SMALL_STATE(5733)] = 191574, + [SMALL_STATE(5734)] = 191584, + [SMALL_STATE(5735)] = 191594, + [SMALL_STATE(5736)] = 191604, + [SMALL_STATE(5737)] = 191614, + [SMALL_STATE(5738)] = 191624, + [SMALL_STATE(5739)] = 191634, + [SMALL_STATE(5740)] = 191644, + [SMALL_STATE(5741)] = 191654, + [SMALL_STATE(5742)] = 191664, + [SMALL_STATE(5743)] = 191674, + [SMALL_STATE(5744)] = 191684, + [SMALL_STATE(5745)] = 191694, + [SMALL_STATE(5746)] = 191704, + [SMALL_STATE(5747)] = 191714, + [SMALL_STATE(5748)] = 191724, + [SMALL_STATE(5749)] = 191734, + [SMALL_STATE(5750)] = 191744, + [SMALL_STATE(5751)] = 191754, + [SMALL_STATE(5752)] = 191764, + [SMALL_STATE(5753)] = 191774, + [SMALL_STATE(5754)] = 191784, + [SMALL_STATE(5755)] = 191794, + [SMALL_STATE(5756)] = 191804, + [SMALL_STATE(5757)] = 191814, + [SMALL_STATE(5758)] = 191824, + [SMALL_STATE(5759)] = 191834, + [SMALL_STATE(5760)] = 191844, + [SMALL_STATE(5761)] = 191854, + [SMALL_STATE(5762)] = 191864, + [SMALL_STATE(5763)] = 191874, + [SMALL_STATE(5764)] = 191884, + [SMALL_STATE(5765)] = 191894, + [SMALL_STATE(5766)] = 191904, + [SMALL_STATE(5767)] = 191914, + [SMALL_STATE(5768)] = 191924, + [SMALL_STATE(5769)] = 191934, + [SMALL_STATE(5770)] = 191944, + [SMALL_STATE(5771)] = 191954, + [SMALL_STATE(5772)] = 191964, + [SMALL_STATE(5773)] = 191974, + [SMALL_STATE(5774)] = 191984, + [SMALL_STATE(5775)] = 191994, + [SMALL_STATE(5776)] = 192004, + [SMALL_STATE(5777)] = 192014, + [SMALL_STATE(5778)] = 192024, + [SMALL_STATE(5779)] = 192034, + [SMALL_STATE(5780)] = 192044, + [SMALL_STATE(5781)] = 192054, + [SMALL_STATE(5782)] = 192064, + [SMALL_STATE(5783)] = 192074, + [SMALL_STATE(5784)] = 192084, + [SMALL_STATE(5785)] = 192094, + [SMALL_STATE(5786)] = 192104, + [SMALL_STATE(5787)] = 192114, + [SMALL_STATE(5788)] = 192124, + [SMALL_STATE(5789)] = 192134, + [SMALL_STATE(5790)] = 192144, + [SMALL_STATE(5791)] = 192154, + [SMALL_STATE(5792)] = 192164, + [SMALL_STATE(5793)] = 192174, + [SMALL_STATE(5794)] = 192184, + [SMALL_STATE(5795)] = 192194, + [SMALL_STATE(5796)] = 192204, + [SMALL_STATE(5797)] = 192214, + [SMALL_STATE(5798)] = 192224, + [SMALL_STATE(5799)] = 192234, + [SMALL_STATE(5800)] = 192244, + [SMALL_STATE(5801)] = 192254, + [SMALL_STATE(5802)] = 192264, + [SMALL_STATE(5803)] = 192274, + [SMALL_STATE(5804)] = 192284, + [SMALL_STATE(5805)] = 192294, + [SMALL_STATE(5806)] = 192304, + [SMALL_STATE(5807)] = 192314, + [SMALL_STATE(5808)] = 192324, + [SMALL_STATE(5809)] = 192334, + [SMALL_STATE(5810)] = 192344, + [SMALL_STATE(5811)] = 192354, + [SMALL_STATE(5812)] = 192364, + [SMALL_STATE(5813)] = 192374, + [SMALL_STATE(5814)] = 192384, + [SMALL_STATE(5815)] = 192394, + [SMALL_STATE(5816)] = 192404, + [SMALL_STATE(5817)] = 192414, + [SMALL_STATE(5818)] = 192424, + [SMALL_STATE(5819)] = 192434, + [SMALL_STATE(5820)] = 192444, + [SMALL_STATE(5821)] = 192454, + [SMALL_STATE(5822)] = 192464, + [SMALL_STATE(5823)] = 192474, + [SMALL_STATE(5824)] = 192484, + [SMALL_STATE(5825)] = 192494, + [SMALL_STATE(5826)] = 192504, + [SMALL_STATE(5827)] = 192514, + [SMALL_STATE(5828)] = 192524, + [SMALL_STATE(5829)] = 192534, + [SMALL_STATE(5830)] = 192544, + [SMALL_STATE(5831)] = 192554, + [SMALL_STATE(5832)] = 192564, + [SMALL_STATE(5833)] = 192574, + [SMALL_STATE(5834)] = 192584, + [SMALL_STATE(5835)] = 192594, + [SMALL_STATE(5836)] = 192604, + [SMALL_STATE(5837)] = 192614, + [SMALL_STATE(5838)] = 192624, + [SMALL_STATE(5839)] = 192634, + [SMALL_STATE(5840)] = 192644, + [SMALL_STATE(5841)] = 192654, + [SMALL_STATE(5842)] = 192664, + [SMALL_STATE(5843)] = 192674, + [SMALL_STATE(5844)] = 192684, + [SMALL_STATE(5845)] = 192694, + [SMALL_STATE(5846)] = 192704, + [SMALL_STATE(5847)] = 192714, + [SMALL_STATE(5848)] = 192724, + [SMALL_STATE(5849)] = 192734, + [SMALL_STATE(5850)] = 192744, + [SMALL_STATE(5851)] = 192754, + [SMALL_STATE(5852)] = 192764, + [SMALL_STATE(5853)] = 192774, + [SMALL_STATE(5854)] = 192784, + [SMALL_STATE(5855)] = 192794, + [SMALL_STATE(5856)] = 192804, + [SMALL_STATE(5857)] = 192814, + [SMALL_STATE(5858)] = 192824, + [SMALL_STATE(5859)] = 192834, + [SMALL_STATE(5860)] = 192844, + [SMALL_STATE(5861)] = 192854, + [SMALL_STATE(5862)] = 192864, + [SMALL_STATE(5863)] = 192874, + [SMALL_STATE(5864)] = 192884, + [SMALL_STATE(5865)] = 192894, + [SMALL_STATE(5866)] = 192904, + [SMALL_STATE(5867)] = 192914, + [SMALL_STATE(5868)] = 192924, + [SMALL_STATE(5869)] = 192934, + [SMALL_STATE(5870)] = 192944, + [SMALL_STATE(5871)] = 192954, + [SMALL_STATE(5872)] = 192964, + [SMALL_STATE(5873)] = 192974, + [SMALL_STATE(5874)] = 192984, + [SMALL_STATE(5875)] = 192994, + [SMALL_STATE(5876)] = 193004, + [SMALL_STATE(5877)] = 193014, + [SMALL_STATE(5878)] = 193024, + [SMALL_STATE(5879)] = 193034, + [SMALL_STATE(5880)] = 193044, + [SMALL_STATE(5881)] = 193054, + [SMALL_STATE(5882)] = 193064, + [SMALL_STATE(5883)] = 193074, + [SMALL_STATE(5884)] = 193084, + [SMALL_STATE(5885)] = 193094, + [SMALL_STATE(5886)] = 193104, + [SMALL_STATE(5887)] = 193114, + [SMALL_STATE(5888)] = 193124, + [SMALL_STATE(5889)] = 193134, + [SMALL_STATE(5890)] = 193144, + [SMALL_STATE(5891)] = 193154, + [SMALL_STATE(5892)] = 193164, + [SMALL_STATE(5893)] = 193174, + [SMALL_STATE(5894)] = 193184, + [SMALL_STATE(5895)] = 193194, + [SMALL_STATE(5896)] = 193204, + [SMALL_STATE(5897)] = 193214, + [SMALL_STATE(5898)] = 193224, + [SMALL_STATE(5899)] = 193234, + [SMALL_STATE(5900)] = 193244, + [SMALL_STATE(5901)] = 193254, + [SMALL_STATE(5902)] = 193264, + [SMALL_STATE(5903)] = 193274, + [SMALL_STATE(5904)] = 193284, + [SMALL_STATE(5905)] = 193294, + [SMALL_STATE(5906)] = 193304, + [SMALL_STATE(5907)] = 193314, + [SMALL_STATE(5908)] = 193324, + [SMALL_STATE(5909)] = 193334, + [SMALL_STATE(5910)] = 193344, + [SMALL_STATE(5911)] = 193354, + [SMALL_STATE(5912)] = 193364, + [SMALL_STATE(5913)] = 193374, + [SMALL_STATE(5914)] = 193384, + [SMALL_STATE(5915)] = 193394, + [SMALL_STATE(5916)] = 193404, + [SMALL_STATE(5917)] = 193414, + [SMALL_STATE(5918)] = 193424, + [SMALL_STATE(5919)] = 193434, + [SMALL_STATE(5920)] = 193444, + [SMALL_STATE(5921)] = 193454, + [SMALL_STATE(5922)] = 193464, + [SMALL_STATE(5923)] = 193474, + [SMALL_STATE(5924)] = 193484, + [SMALL_STATE(5925)] = 193494, + [SMALL_STATE(5926)] = 193504, + [SMALL_STATE(5927)] = 193514, + [SMALL_STATE(5928)] = 193524, + [SMALL_STATE(5929)] = 193534, + [SMALL_STATE(5930)] = 193544, + [SMALL_STATE(5931)] = 193554, + [SMALL_STATE(5932)] = 193564, + [SMALL_STATE(5933)] = 193574, + [SMALL_STATE(5934)] = 193584, + [SMALL_STATE(5935)] = 193594, + [SMALL_STATE(5936)] = 193604, + [SMALL_STATE(5937)] = 193614, + [SMALL_STATE(5938)] = 193624, + [SMALL_STATE(5939)] = 193634, + [SMALL_STATE(5940)] = 193644, + [SMALL_STATE(5941)] = 193654, + [SMALL_STATE(5942)] = 193664, + [SMALL_STATE(5943)] = 193674, + [SMALL_STATE(5944)] = 193684, + [SMALL_STATE(5945)] = 193694, + [SMALL_STATE(5946)] = 193704, + [SMALL_STATE(5947)] = 193714, + [SMALL_STATE(5948)] = 193724, + [SMALL_STATE(5949)] = 193734, + [SMALL_STATE(5950)] = 193744, + [SMALL_STATE(5951)] = 193754, + [SMALL_STATE(5952)] = 193764, + [SMALL_STATE(5953)] = 193774, + [SMALL_STATE(5954)] = 193784, + [SMALL_STATE(5955)] = 193794, + [SMALL_STATE(5956)] = 193804, + [SMALL_STATE(5957)] = 193814, + [SMALL_STATE(5958)] = 193824, + [SMALL_STATE(5959)] = 193834, + [SMALL_STATE(5960)] = 193844, + [SMALL_STATE(5961)] = 193854, + [SMALL_STATE(5962)] = 193864, + [SMALL_STATE(5963)] = 193874, + [SMALL_STATE(5964)] = 193884, + [SMALL_STATE(5965)] = 193894, + [SMALL_STATE(5966)] = 193904, + [SMALL_STATE(5967)] = 193914, + [SMALL_STATE(5968)] = 193924, + [SMALL_STATE(5969)] = 193934, + [SMALL_STATE(5970)] = 193944, + [SMALL_STATE(5971)] = 193954, + [SMALL_STATE(5972)] = 193964, + [SMALL_STATE(5973)] = 193974, + [SMALL_STATE(5974)] = 193984, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5787), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5809), [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4221), [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), @@ -299251,16 +299287,16 @@ static const TSParseActionEntry ts_parse_actions[] = { [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5672), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), @@ -299269,17 +299305,17 @@ static const TSParseActionEntry ts_parse_actions[] = { [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5423), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), @@ -299289,31 +299325,31 @@ static const TSParseActionEntry ts_parse_actions[] = { [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5411), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5469), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5647), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5649), [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), @@ -299321,26 +299357,26 @@ static const TSParseActionEntry ts_parse_actions[] = { [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5321), [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), @@ -299353,28 +299389,28 @@ static const TSParseActionEntry ts_parse_actions[] = { [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5679), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5934), [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), @@ -299389,15 +299425,15 @@ static const TSParseActionEntry ts_parse_actions[] = { [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), @@ -299424,7 +299460,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), @@ -299446,22 +299482,22 @@ static const TSParseActionEntry ts_parse_actions[] = { [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), @@ -299479,9 +299515,9 @@ static const TSParseActionEntry ts_parse_actions[] = { [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4395), [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), [551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), @@ -299493,25 +299529,25 @@ static const TSParseActionEntry ts_parse_actions[] = { [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3540), [573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1955), [576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2325), - [579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5235), + [579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5259), [582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2143), [585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2145), - [588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4688), - [591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5241), + [588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4693), + [591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5263), [594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(989), [597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1013), - [600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5679), - [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5244), + [600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5762), + [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5265), [606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1310), - [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5679), + [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5762), [612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1093), [615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1097), [618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1099), - [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5531), + [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5742), [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(370), [627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(39), [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4272), - [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5933), + [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5934), [636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6), [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4204), [642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2966), @@ -299522,42 +299558,42 @@ static const TSParseActionEntry ts_parse_actions[] = { [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(169), [660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(820), [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(821), - [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5647), + [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5649), [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(993), - [672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4680), - [675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5833), - [678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5834), - [681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4701), - [684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4455), + [672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4600), + [675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5834), + [678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5835), + [681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4563), + [684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4456), [687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1673), - [690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5831), + [690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5832), [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4400), [696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2155), - [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4550), - [702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4551), - [705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4552), + [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4552), + [702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4553), + [705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4554), [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3540), [711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1955), [714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2325), - [717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5235), + [717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5259), [720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2143), [723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2145), - [726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4688), - [729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5241), + [726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4693), + [729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5263), [732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(989), [735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(808), - [738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5679), - [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4587), + [738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5762), + [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4577), [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1310), - [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5679), + [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5762), [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1093), [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1097), [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1099), - [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5531), + [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5742), [762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(370), [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(39), [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4272), - [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5933), + [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5934), [774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6), [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4204), [780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2955), @@ -299568,15 +299604,15 @@ static const TSParseActionEntry ts_parse_actions[] = { [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(169), [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(820), [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(821), - [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5647), + [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5649), [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(993), - [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4680), - [813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5833), - [816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5834), - [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4701), - [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4455), + [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4600), + [813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5834), + [816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5835), + [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4563), + [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4456), [825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1674), - [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5831), + [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5832), [831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 20), [833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 20), [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), @@ -299643,22 +299679,22 @@ static const TSParseActionEntry ts_parse_actions[] = { [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5561), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5635), [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5857), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5858), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5858), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5836), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), @@ -299675,22 +299711,22 @@ static const TSParseActionEntry ts_parse_actions[] = { [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5595), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5829), [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5832), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5850), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5850), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5851), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5805), [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), [1063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), @@ -299724,23 +299760,23 @@ static const TSParseActionEntry ts_parse_actions[] = { [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5745), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5561), [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5453), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5727), [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), @@ -299763,11 +299799,11 @@ static const TSParseActionEntry ts_parse_actions[] = { [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5679), - [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5679), + [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5762), + [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5762), [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3540), [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(825), - [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4587), + [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4577), [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1310), [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1093), [1228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1097), @@ -299775,7 +299811,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [1234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(370), [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(39), [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4259), - [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5933), + [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5934), [1246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6), [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4204), [1252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2955), @@ -299786,20 +299822,20 @@ static const TSParseActionEntry ts_parse_actions[] = { [1267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(178), [1270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(820), [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(821), - [1276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5647), + [1276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5649), [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(993), - [1282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4680), - [1285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5833), - [1288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5834), - [1291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4701), - [1294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4455), + [1282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4600), + [1285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5834), + [1288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5835), + [1291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4563), + [1294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4456), [1297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1674), - [1300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5831), - [1303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5679), - [1306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5679), + [1300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5832), + [1303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5762), + [1306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5762), [1309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3540), [1312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1012), - [1315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5244), + [1315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5265), [1318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1310), [1321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1093), [1324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1097), @@ -299807,7 +299843,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [1330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(370), [1333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(39), [1336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4259), - [1339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5933), + [1339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5934), [1342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6), [1345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4204), [1348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2966), @@ -299818,38 +299854,38 @@ static const TSParseActionEntry ts_parse_actions[] = { [1363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(178), [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(820), [1369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(821), - [1372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5647), + [1372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5649), [1375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(993), - [1378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4680), - [1381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5833), - [1384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5834), - [1387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4701), - [1390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4455), + [1378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4600), + [1381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5834), + [1384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5835), + [1387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4563), + [1390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4456), [1393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1673), - [1396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5831), + [1396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5832), [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 31), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5764), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5656), [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 31), [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 31), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5581), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5581), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 31), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5484), [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4949), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4519), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4521), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), @@ -299919,16 +299955,16 @@ static const TSParseActionEntry ts_parse_actions[] = { [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5861), [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5889), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), @@ -299942,9 +299978,9 @@ static const TSParseActionEntry ts_parse_actions[] = { [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), @@ -299955,15 +299991,15 @@ static const TSParseActionEntry ts_parse_actions[] = { [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4775), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5796), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4937), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), @@ -299983,8 +300019,8 @@ static const TSParseActionEntry ts_parse_actions[] = { [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), @@ -299992,7 +300028,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 29), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 29), [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), @@ -300025,26 +300061,26 @@ static const TSParseActionEntry ts_parse_actions[] = { [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4939), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), @@ -300116,9 +300152,9 @@ static const TSParseActionEntry ts_parse_actions[] = { [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(4619), - [1983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(4924), - [1986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(5206), + [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(4585), + [1983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(4909), + [1986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(5245), [1989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(372), [1992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(42), [1995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(4291), @@ -300126,22 +300162,22 @@ static const TSParseActionEntry ts_parse_actions[] = { [2001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(4181), [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(94), [2007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(4094), - [2010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(5814), + [2010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(5591), [2013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(3946), [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(3946), [2019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(4082), - [2022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(5140), - [2025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(4775), - [2028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(5796), - [2031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(4925), - [2034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(4563), - [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(5845), - [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(5846), - [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(4681), - [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(4484), + [2022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(4999), + [2025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(4937), + [2028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(5797), + [2031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(4910), + [2034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(4609), + [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(5846), + [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(5847), + [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(4601), + [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(4487), [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(397), - [2052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(5046), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(5843), + [2052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(5244), + [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 50), SHIFT_REPEAT(5844), [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), @@ -300159,12 +300195,12 @@ static const TSParseActionEntry ts_parse_actions[] = { [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5382), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), - [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4876), + [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5352), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), [2108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), @@ -300187,28 +300223,28 @@ static const TSParseActionEntry ts_parse_actions[] = { [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 50), SHIFT_REPEAT(5382), - [2153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 50), SHIFT_REPEAT(5382), + [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 50), SHIFT_REPEAT(5352), + [2153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 50), SHIFT_REPEAT(5352), [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 50), SHIFT_REPEAT(3578), - [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 50), SHIFT_REPEAT(5817), - [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 50), SHIFT_REPEAT(5293), + [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 50), SHIFT_REPEAT(5752), + [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 50), SHIFT_REPEAT(5324), [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 50), SHIFT_REPEAT(92), - [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 50), SHIFT_REPEAT(4876), - [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 50), SHIFT_REPEAT(5469), + [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 50), SHIFT_REPEAT(4832), + [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 50), SHIFT_REPEAT(5973), [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 50), [2176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 50), SHIFT_REPEAT(89), - [2179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 50), SHIFT_REPEAT(5723), + [2179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 50), SHIFT_REPEAT(5499), [2182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 50), SHIFT_REPEAT(2371), [2185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 50), SHIFT_REPEAT(2371), [2188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 50), SHIFT_REPEAT(2405), [2191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 50), SHIFT_REPEAT(820), - [2194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 50), SHIFT_REPEAT(4696), - [2197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 50), SHIFT_REPEAT(5648), - [2200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 50), SHIFT_REPEAT(5649), - [2203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 50), SHIFT_REPEAT(4701), - [2206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 50), SHIFT_REPEAT(4455), + [2194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 50), SHIFT_REPEAT(4699), + [2197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 50), SHIFT_REPEAT(5650), + [2200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 50), SHIFT_REPEAT(5651), + [2203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 50), SHIFT_REPEAT(4563), + [2206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 50), SHIFT_REPEAT(4456), [2209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 50), SHIFT_REPEAT(444), - [2212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 50), SHIFT_REPEAT(5643), + [2212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 50), SHIFT_REPEAT(5645), [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), @@ -300222,27 +300258,27 @@ static const TSParseActionEntry ts_parse_actions[] = { [2235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(787), [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), [2240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(4117), - [2243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 50), SHIFT_REPEAT(5380), - [2246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 50), SHIFT_REPEAT(5380), + [2243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 50), SHIFT_REPEAT(5321), + [2246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 50), SHIFT_REPEAT(5321), [2249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 50), SHIFT_REPEAT(3578), - [2252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 50), SHIFT_REPEAT(5817), - [2255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 50), SHIFT_REPEAT(5293), + [2252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 50), SHIFT_REPEAT(5752), + [2255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 50), SHIFT_REPEAT(5324), [2258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 50), SHIFT_REPEAT(92), - [2261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 50), SHIFT_REPEAT(4952), - [2264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 50), SHIFT_REPEAT(5469), + [2261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 50), SHIFT_REPEAT(4939), + [2264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 50), SHIFT_REPEAT(5973), [2267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 50), SHIFT_REPEAT(94), - [2270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 50), SHIFT_REPEAT(5814), + [2270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 50), SHIFT_REPEAT(5591), [2273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 50), SHIFT_REPEAT(2371), [2276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 50), SHIFT_REPEAT(2371), [2279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 50), SHIFT_REPEAT(2405), [2282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 50), SHIFT_REPEAT(820), - [2285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 50), SHIFT_REPEAT(4696), - [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 50), SHIFT_REPEAT(5648), - [2291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 50), SHIFT_REPEAT(5649), - [2294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 50), SHIFT_REPEAT(4701), - [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 50), SHIFT_REPEAT(4455), + [2285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 50), SHIFT_REPEAT(4699), + [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 50), SHIFT_REPEAT(5650), + [2291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 50), SHIFT_REPEAT(5651), + [2294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 50), SHIFT_REPEAT(4563), + [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 50), SHIFT_REPEAT(4456), [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 50), SHIFT_REPEAT(442), - [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 50), SHIFT_REPEAT(5643), + [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 50), SHIFT_REPEAT(5645), [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), [2310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(787), @@ -300350,7 +300386,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), @@ -300399,8 +300435,8 @@ static const TSParseActionEntry ts_parse_actions[] = { [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 190), - [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 190), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 191), + [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 191), [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), @@ -300457,21 +300493,21 @@ static const TSParseActionEntry ts_parse_actions[] = { [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), + [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5038), [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), @@ -300542,8 +300578,8 @@ static const TSParseActionEntry ts_parse_actions[] = { [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 151), [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 74), [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 74), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 190), - [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 190), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 191), + [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 191), [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 73), @@ -300568,29 +300604,29 @@ static const TSParseActionEntry ts_parse_actions[] = { [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5852), + [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5853), [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 151), [2986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 151), [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 150), [2990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 150), [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 149), [2994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 149), - [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 189), - [2998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 189), - [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), - [3002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), + [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 190), + [2998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 190), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 190), + [3002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 190), [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [3010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), SHIFT(787), + [3010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 190), SHIFT(787), [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), @@ -300619,19 +300655,19 @@ static const TSParseActionEntry ts_parse_actions[] = { [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), [3074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), SHIFT(787), [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5345), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5312), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5433), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5393), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5406), [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), + [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5284), [3097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 151), SHIFT(787), [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), @@ -300649,16 +300685,16 @@ static const TSParseActionEntry ts_parse_actions[] = { [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), - [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), [3152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), [3156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1393), @@ -300690,22 +300726,22 @@ static const TSParseActionEntry ts_parse_actions[] = { [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5864), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5865), [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), @@ -300714,13 +300750,13 @@ static const TSParseActionEntry ts_parse_actions[] = { [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), - [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5857), [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), [3277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1396), [3280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), [3282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), @@ -300740,16 +300776,16 @@ static const TSParseActionEntry ts_parse_actions[] = { [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5868), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5869), [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), @@ -300761,7 +300797,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5633), + [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5836), [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), @@ -300772,23 +300808,23 @@ static const TSParseActionEntry ts_parse_actions[] = { [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5844), + [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), - [3398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4944), - [3401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4948), - [3404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4825), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), + [3398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4721), + [3401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4743), + [3404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4788), [3407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1364), [3410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [3413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4903), + [3413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4880), [3416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(677), - [3419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5005), + [3419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5038), [3422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4098), [3425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4099), [3428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4060), @@ -300796,56 +300832,56 @@ static const TSParseActionEntry ts_parse_actions[] = { [3434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4151), [3437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(820), [3440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(821), - [3443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5647), - [3446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4854), - [3449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4696), - [3452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5648), - [3455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5649), + [3443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5649), + [3446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4892), + [3449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4699), + [3452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5650), + [3455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5651), [3458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(783), - [3461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5643), + [3461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5645), [3464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1414), [3467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), [3471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(787), [3474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1427), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), + [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5664), [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), + [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), - [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4893), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4858), [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5662), + [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4485), + [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), [3543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), - [3551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5060), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [3551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4991), [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), @@ -300856,7 +300892,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5748), + [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), [3577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4497), [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), @@ -300865,11 +300901,11 @@ static const TSParseActionEntry ts_parse_actions[] = { [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), @@ -300882,7 +300918,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), [3623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), - [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4895), + [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), @@ -300897,7 +300933,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4892), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4854), [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), @@ -300916,9 +300952,9 @@ static const TSParseActionEntry ts_parse_actions[] = { [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [3694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5473), - [3697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5473), - [3700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5963), + [3694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5490), + [3697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5490), + [3700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5945), [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), [3705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), [3707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(2409), @@ -300928,9 +300964,9 @@ static const TSParseActionEntry ts_parse_actions[] = { [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [3724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5473), - [3727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5473), - [3730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5963), + [3724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5490), + [3727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5490), + [3730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5945), [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), [3735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), [3737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(2409), @@ -300955,13 +300991,13 @@ static const TSParseActionEntry ts_parse_actions[] = { [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), [3798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), [3800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1492), [3803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1492), @@ -300985,7 +301021,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [3843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 50), SHIFT_REPEAT(1325), [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 50), [3848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 50), SHIFT_REPEAT(33), - [3851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 50), SHIFT_REPEAT(4872), + [3851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 50), SHIFT_REPEAT(4826), [3854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 50), SHIFT_REPEAT(687), [3857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 50), SHIFT_REPEAT(4162), [3860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 50), SHIFT_REPEAT(4163), @@ -300994,13 +301030,13 @@ static const TSParseActionEntry ts_parse_actions[] = { [3869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 50), SHIFT_REPEAT(2348), [3872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 50), SHIFT_REPEAT(2907), [3875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 50), SHIFT_REPEAT(2857), - [3878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 50), SHIFT_REPEAT(5856), + [3878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 50), SHIFT_REPEAT(5857), [3881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 50), SHIFT_REPEAT(2847), - [3884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 50), SHIFT_REPEAT(4618), - [3887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 50), SHIFT_REPEAT(5875), - [3890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 50), SHIFT_REPEAT(5876), + [3884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 50), SHIFT_REPEAT(4646), + [3887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 50), SHIFT_REPEAT(5876), + [3890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 50), SHIFT_REPEAT(5877), [3893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 50), SHIFT_REPEAT(2926), - [3896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 50), SHIFT_REPEAT(5874), + [3896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 50), SHIFT_REPEAT(5875), [3899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(4148), [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), @@ -301028,15 +301064,15 @@ static const TSParseActionEntry ts_parse_actions[] = { [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), @@ -301146,32 +301182,32 @@ static const TSParseActionEntry ts_parse_actions[] = { [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5840), + [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5932), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 33), [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 10), [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4861), + [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), + [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5488), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), - [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4774), + [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5549), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), + [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4931), [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), @@ -301210,7 +301246,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), [4322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), @@ -301226,26 +301262,26 @@ static const TSParseActionEntry ts_parse_actions[] = { [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5822), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), - [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), + [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5603), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), [4383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 18), [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 18), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), @@ -301314,10 +301350,10 @@ static const TSParseActionEntry ts_parse_actions[] = { [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), @@ -301328,23 +301364,23 @@ static const TSParseActionEntry ts_parse_actions[] = { [4558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(4136), [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [4581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 142), SHIFT_REPEAT(5822), - [4584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 142), SHIFT_REPEAT(5822), - [4587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 142), SHIFT_REPEAT(5171), + [4581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 142), SHIFT_REPEAT(5603), + [4584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 142), SHIFT_REPEAT(5603), + [4587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 142), SHIFT_REPEAT(5148), [4590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 142), SHIFT_REPEAT(2409), [4593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 142), SHIFT_REPEAT(2503), - [4596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 142), SHIFT_REPEAT(4563), - [4599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 142), SHIFT_REPEAT(5845), - [4602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 142), SHIFT_REPEAT(5846), - [4605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 142), SHIFT_REPEAT(5843), + [4596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 142), SHIFT_REPEAT(4609), + [4599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 142), SHIFT_REPEAT(5846), + [4602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 142), SHIFT_REPEAT(5847), + [4605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 142), SHIFT_REPEAT(5844), [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), @@ -301353,7 +301389,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), - [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4886), + [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), @@ -301369,14 +301405,14 @@ static const TSParseActionEntry ts_parse_actions[] = { [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), [4660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), - [4664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 172), SHIFT_REPEAT(4594), - [4667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 172), SHIFT_REPEAT(4420), - [4670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 172), SHIFT_REPEAT(4421), - [4673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 172), SHIFT_REPEAT(5481), + [4664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 173), SHIFT_REPEAT(4569), + [4667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 173), SHIFT_REPEAT(4423), + [4670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 173), SHIFT_REPEAT(4424), + [4673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 173), SHIFT_REPEAT(5779), [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), @@ -301386,21 +301422,21 @@ static const TSParseActionEntry ts_parse_actions[] = { [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4889), + [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4851), [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [4717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 172), SHIFT_REPEAT(4807), - [4720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 172), SHIFT_REPEAT(4691), - [4723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 172), SHIFT_REPEAT(4692), - [4726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 172), SHIFT_REPEAT(5959), + [4717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 173), SHIFT_REPEAT(4755), + [4720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 173), SHIFT_REPEAT(4611), + [4723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 173), SHIFT_REPEAT(4612), + [4726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 173), SHIFT_REPEAT(5961), [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), @@ -301423,22 +301459,22 @@ static const TSParseActionEntry ts_parse_actions[] = { [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5499), - [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5539), + [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), + [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5599), [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4855), - [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5516), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4799), + [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5714), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), [4801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2331), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), @@ -301472,18 +301508,18 @@ static const TSParseActionEntry ts_parse_actions[] = { [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), + [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5653), [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), - [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4477), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), @@ -301491,7 +301527,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [4910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 172), + [4910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 173), [4912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 90), [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), @@ -301505,8 +301541,8 @@ static const TSParseActionEntry ts_parse_actions[] = { [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), [4937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 90), - [4939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 4, 0, 203), - [4941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 172), + [4939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 4, 0, 205), + [4941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 173), [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), [4947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(4143), @@ -301515,18 +301551,18 @@ static const TSParseActionEntry ts_parse_actions[] = { [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [4960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 4, 0, 203), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), + [4960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 4, 0, 205), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), [4988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 85), @@ -301571,7 +301607,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [5071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 106), [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), [5075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2455), - [5078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 4, 0, 175), + [5078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 4, 0, 176), [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), @@ -301623,7 +301659,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), @@ -301653,19 +301689,19 @@ static const TSParseActionEntry ts_parse_actions[] = { [5246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(4144), [5249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), [5251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 177), - [5255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 177), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), + [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 178), + [5255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 178), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), - [5267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4521), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [5267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), [5279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 87), [5281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 87), [5283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 88), @@ -301676,9 +301712,9 @@ static const TSParseActionEntry ts_parse_actions[] = { [5293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 35), [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), - [5301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5656), - [5303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), + [5301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5688), + [5303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), [5305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), [5309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), @@ -301714,7 +301750,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), [5381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2756), @@ -301726,18 +301762,18 @@ static const TSParseActionEntry ts_parse_actions[] = { [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), - [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), - [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), + [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), + [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), - [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5512), - [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), + [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5689), + [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), - [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5514), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), + [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5459), [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), @@ -301788,9 +301824,9 @@ static const TSParseActionEntry ts_parse_actions[] = { [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), - [5527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5744), - [5529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), + [5527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), + [5529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), [5531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), [5535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), @@ -301814,10 +301850,10 @@ static const TSParseActionEntry ts_parse_actions[] = { [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), - [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5623), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), + [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), [5585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), [5589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2825), @@ -301825,16 +301861,16 @@ static const TSParseActionEntry ts_parse_actions[] = { [5594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), [5596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), [5598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 2, 0, 0), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), - [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), - [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5810), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), - [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5557), - [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), + [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5583), + [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), + [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5715), + [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), [5612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2864), [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), [5623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), [5625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), @@ -301849,49 +301885,49 @@ static const TSParseActionEntry ts_parse_actions[] = { [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [5651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 176), - [5653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 176), + [5651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 177), + [5653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 177), [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), [5657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 96), [5659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 96), - [5661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 177), - [5663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 177), - [5665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(5536), - [5668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(5677), - [5671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(5645), - [5674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(4521), - [5677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(4522), - [5680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(4274), - [5683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(4274), - [5686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(4335), - [5689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(5680), - [5692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(4563), - [5695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(5845), - [5698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(5846), - [5701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(4584), - [5704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(5843), - [5707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 204), - [5709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 204), + [5661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 178), + [5663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 178), + [5665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(5669), + [5668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(5694), + [5671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(5662), + [5674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(4523), + [5677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(4524), + [5680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(4274), + [5683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(4274), + [5686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(4335), + [5689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(5696), + [5692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(4609), + [5695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(5846), + [5698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(5847), + [5701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(4629), + [5704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 201), SHIFT_REPEAT(5844), + [5707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 206), + [5709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 206), [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [5719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 177), - [5721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 177), + [5719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 178), + [5721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 178), [5723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 97), [5725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 97), [5727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), - [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5691), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), + [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5693), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), [5733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 18), [5735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 18), [5737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), [5739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), - [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), + [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5827), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), [5755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), @@ -301903,12 +301939,12 @@ static const TSParseActionEntry ts_parse_actions[] = { [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), [5769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(4154), [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), @@ -301962,20 +301998,20 @@ static const TSParseActionEntry ts_parse_actions[] = { [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), [5890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 168), - [5892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 4, 0, 219), + [5892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 4, 0, 221), [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), [5896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 168), [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), [5900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [5904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 198), + [5904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 200), [5906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [5910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 199), + [5910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 201), [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), [5916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3108), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), [5921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), @@ -302063,7 +302099,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), [6100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 57), [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), @@ -302084,10 +302120,10 @@ static const TSParseActionEntry ts_parse_actions[] = { [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4903), + [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4880), [6142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4866), + [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), @@ -302158,7 +302194,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), + [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5092), [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), [6294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 2), [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), @@ -302187,21 +302223,21 @@ static const TSParseActionEntry ts_parse_actions[] = { [6342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 54), [6344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), [6346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), - [6348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), + [6348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), [6350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 121), [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [6354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 183), + [6354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 184), [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [6360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 188), SHIFT(787), - [6363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 188), - [6365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 184), + [6360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 189), SHIFT(787), + [6363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 189), + [6365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 185), [6367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 120), [6369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 23), [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [6377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 183), + [6377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 184), [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), [6381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 122), [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), @@ -302209,14 +302245,14 @@ static const TSParseActionEntry ts_parse_actions[] = { [6387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 121), [6389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 24), [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [6393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 213), - [6395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 214), - [6397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), - [6399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 183), SHIFT(787), - [6402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 185), + [6393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 215), + [6395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 216), + [6397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 188), + [6399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 184), SHIFT(787), + [6402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 186), [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [6408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 213), + [6408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 215), [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), @@ -302235,48 +302271,48 @@ static const TSParseActionEntry ts_parse_actions[] = { [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [6446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 186), - [6448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 213), SHIFT(787), + [6446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 187), + [6448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 215), SHIFT(787), [6451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), [6453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), [6455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 149), - [6457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 214), SHIFT(787), + [6457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 216), SHIFT(787), [6460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 23), [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), [6464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 122), SHIFT(787), - [6467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 184), + [6467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), [6469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 120), [6471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 24), [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), [6475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 73), [6477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 73), SHIFT(787), - [6480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 187), + [6480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 188), [6482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 149), - [6484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 215), - [6486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 214), + [6484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 217), + [6486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 216), [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [6492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 215), + [6492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 217), [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), [6498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 122), - [6500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 184), SHIFT(787), + [6500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), SHIFT(787), [6503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 73), [6505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), [6507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1103), [6510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(4062), [6513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(2176), [6516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [6518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), - [6520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 189), - [6522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 189), - [6524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), SHIFT(787), + [6518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), + [6520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 190), + [6522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 190), + [6524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), SHIFT(787), [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), - [6531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 188), + [6531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 189), [6533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 151), - [6535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 215), SHIFT(787), - [6538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 189), SHIFT(787), + [6535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 217), SHIFT(787), + [6538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 190), SHIFT(787), [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), [6543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 108), [6545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 149), SHIFT(787), @@ -302285,7 +302321,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [6553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 20), [6555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 20), [6557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 109), - [6559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), SHIFT(787), + [6559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), SHIFT(787), [6562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 120), [6564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 108), [6566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 121), @@ -302295,18 +302331,18 @@ static const TSParseActionEntry ts_parse_actions[] = { [6576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 70), [6578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 70), [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [6582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), SHIFT(787), + [6582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 188), SHIFT(787), [6585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(787), [6588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), - [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5504), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), + [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5579), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), [6608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), [6612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), @@ -302324,7 +302360,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), [6644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), [6648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), @@ -302337,7 +302373,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [6663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), [6667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 63), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), [6671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 72), [6673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 72), SHIFT_REPEAT(132), [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), @@ -302348,22 +302384,22 @@ static const TSParseActionEntry ts_parse_actions[] = { [6686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), [6688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(3895), [6691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), - [6693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5842), - [6696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5285), - [6699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5492), - [6702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5504), + [6693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5724), + [6696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5325), + [6699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5522), + [6702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5579), [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), [6707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 2), [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [6711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 216), - [6713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 216), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), - [6719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 191), - [6721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 191), + [6711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 218), + [6713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 218), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [6719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 192), + [6721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 192), [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [6725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 180), SHIFT(787), - [6728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 180), + [6725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 181), SHIFT(787), + [6728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 181), [6730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3904), [6733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(235), [6736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(299), @@ -302374,7 +302410,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [6748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 68), [6750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 69), [6752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 69), - [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), + [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), @@ -302386,7 +302422,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [6774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 63), [6776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 72), [6778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 72), SHIFT_REPEAT(135), - [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4882), + [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4940), [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), [6787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 35), @@ -302398,23 +302434,23 @@ static const TSParseActionEntry ts_parse_actions[] = { [6799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 126), [6801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 27), [6803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 28), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), [6807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 13), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), [6811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 107), SHIFT(787), [6814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 107), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), [6818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 13), SHIFT(787), [6821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 13), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), [6825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 13), SHIFT(787), [6828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 13), [6830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 27), [6832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 28), [6834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(294), [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [6839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 180), SHIFT(787), - [6842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 180), + [6839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 181), SHIFT(787), + [6842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 181), [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), [6846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 147), SHIFT(787), [6849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 147), @@ -302425,19 +302461,19 @@ static const TSParseActionEntry ts_parse_actions[] = { [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), [6862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 44), SHIFT(787), [6865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 44), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), [6869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 107), SHIFT(787), [6872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 107), [6874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 72), SHIFT_REPEAT(134), [6877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 72), SHIFT_REPEAT(134), [6880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 72), - [6882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4415), + [6882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4419), [6885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 84), [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), [6889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 84), [6891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 87), [6893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 87), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), [6899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), [6901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), @@ -302445,10 +302481,10 @@ static const TSParseActionEntry ts_parse_actions[] = { [6905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), [6907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 85), [6909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 85), - [6911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 171), - [6913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 171), + [6911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 172), + [6913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 172), [6915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(302), - [6918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4465), + [6918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(4468), [6921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(787), [6924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), @@ -302464,27 +302500,27 @@ static const TSParseActionEntry ts_parse_actions[] = { [6948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 94), [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4383), - [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), + [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [6962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 196), - [6964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 196), - [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4852), + [6962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 197), + [6964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 197), + [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), + [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5075), [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), - [6978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 200), - [6980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 200), - [6982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 201), - [6984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 201), + [6978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 202), + [6980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 202), + [6982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 203), + [6984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 203), [6986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 95), [6988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_composite_type, 4, 0, 134), [6990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_composite_type, 4, 0, 134), - [6992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 220), - [6994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 220), + [6992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 222), + [6994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 222), [6996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 95), [6998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, 0, 12), [7000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, 0, 12), @@ -302497,15 +302533,15 @@ static const TSParseActionEntry ts_parse_actions[] = { [7014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 67), [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), [7018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 44), - [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4837), + [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4821), [7022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 86), [7024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 86), [7026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), [7028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), [7030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), [7040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 99), [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), @@ -302526,7 +302562,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [7075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(279), [7078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), [7080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), - [7082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4909), + [7082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4886), [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), [7086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), [7088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), @@ -302535,78 +302571,78 @@ static const TSParseActionEntry ts_parse_actions[] = { [7094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 53), [7096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), [7098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 99), - [7100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5012), + [7100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), - [7106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 226), - [7108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 207), - [7110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 208), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [7114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4467), - [7116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), - [7118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 209), - [7120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 210), + [7106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 228), + [7108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 209), + [7110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 210), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [7114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), + [7116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), + [7118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 211), + [7120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 212), [7122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 144), [7124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [7128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 211), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [7132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), - [7134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 212), + [7128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 213), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), + [7132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), + [7134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 214), [7136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 55), [7138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 55), - [7140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 233), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [7144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4477), - [7146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), - [7150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), + [7140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 235), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [7144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), + [7146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), + [7150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), [7152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [7158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 227), - [7160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 222), + [7158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 229), + [7160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 224), [7162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 56), [7164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 56), - [7166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 234), - [7168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 228), + [7166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 236), + [7168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 230), [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [7174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 223), - [7176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 235), - [7178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 236), - [7180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 229), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), - [7186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 202), - [7188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 202), + [7174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 225), + [7176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 237), + [7178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 238), + [7180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 231), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [7186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 204), + [7188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 204), [7190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 135), [7192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 135), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), - [7196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 237), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [7196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 239), [7198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 58), [7200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 58), - [7202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 238), - [7204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 224), + [7202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 240), + [7204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 226), [7206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), [7212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(4062), - [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), - [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4872), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), + [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), + [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4826), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), [7223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), - [7225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 239), - [7227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 240), - [7229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 241), - [7231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 243), + [7225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 241), + [7227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 242), + [7229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 243), + [7231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 245), [7233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 19), [7235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 112), [7237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 112), [7239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 20), [7241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 20), - [7243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 230), + [7243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 232), [7245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 20), [7247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 20), [7249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), @@ -302615,15 +302651,15 @@ static const TSParseActionEntry ts_parse_actions[] = { [7256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), [7258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 153), [7260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 153), - [7262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 244), + [7262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 246), [7264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 94), - [7266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 245), - [7268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5401), - [7270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 170), - [7272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 170), - [7274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 246), - [7276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 247), - [7278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 248), + [7266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 247), + [7268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5375), + [7270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 171), + [7272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 171), + [7274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 248), + [7276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 249), + [7278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 250), [7280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), @@ -302637,24 +302673,24 @@ static const TSParseActionEntry ts_parse_actions[] = { [7301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(250), [7304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(252), [7307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(255), - [7310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 249), - [7312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 250), - [7314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 225), - [7316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 181), + [7310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 251), + [7312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 252), + [7314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 227), + [7316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 182), [7318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), [7320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), + [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), [7324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 51), - [7326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 205), - [7328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5409), + [7326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 207), + [7328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5432), [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), [7334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [7338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 221), + [7338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 223), [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [7342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 182), - [7344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 206), + [7342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 183), + [7344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 208), [7346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 111), [7348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 111), [7350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 57), @@ -302662,8 +302698,8 @@ static const TSParseActionEntry ts_parse_actions[] = { [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), [7356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), [7364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 113), [7366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 113), [7368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), @@ -302682,82 +302718,82 @@ static const TSParseActionEntry ts_parse_actions[] = { [7394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), [7396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(4178), [7399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), [7405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 54), [7407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 54), [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), [7411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [7421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5080), - [7423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), + [7421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), + [7423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), [7427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), [7429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), - [7431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4444), - [7433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), - [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), + [7431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4446), + [7433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4702), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), [7457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), [7459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), [7473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), [7477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), - [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), + [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4775), [7481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), [7483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), [7485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), [7487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), - [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), - [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), + [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), - [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), [7499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), [7501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), [7503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), [7507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), - [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), + [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), [7519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), [7521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), [7527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4709), + [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), [7535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), [7537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), - [7539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), - [7541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4880), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), + [7539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), + [7541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), [7553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), [7555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), [7557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), @@ -302768,87 +302804,87 @@ static const TSParseActionEntry ts_parse_actions[] = { [7567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), [7569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), [7571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), - [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5889), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), + [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), [7583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), [7585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), [7587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), [7589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), [7597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), [7601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), - [7603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), + [7603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), [7611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5903), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5903), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), - [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), [7651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), [7661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), + [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), [7671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), [7681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), [7691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5929), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), [7701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5929), [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), [7709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), - [7713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4902), - [7715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), + [7713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), + [7715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5019), [7717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), - [7719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), + [7719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), [7721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), [7723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), [7725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), [7729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [7733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), + [7733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), [7735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), [7737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), @@ -302864,14 +302900,14 @@ static const TSParseActionEntry ts_parse_actions[] = { [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), + [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), - [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), @@ -302880,16 +302916,16 @@ static const TSParseActionEntry ts_parse_actions[] = { [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), [7801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), [7811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), @@ -302903,10 +302939,10 @@ static const TSParseActionEntry ts_parse_actions[] = { [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), [7841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(4179), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), - [7850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), + [7850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), [7854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), [7856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), @@ -302914,17 +302950,17 @@ static const TSParseActionEntry ts_parse_actions[] = { [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), [7862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), [7870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), [7876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), [7884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [7886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), + [7886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), [7888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), [7892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), @@ -302934,13 +302970,13 @@ static const TSParseActionEntry ts_parse_actions[] = { [7900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), [7904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), [7908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), [7912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), [7916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), - [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), [7920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), [7922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), [7924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), @@ -302960,36 +302996,36 @@ static const TSParseActionEntry ts_parse_actions[] = { [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), [7954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), [7956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [7958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4782), - [7960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4783), + [7958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), + [7960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4956), [7962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), [7976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), - [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), - [7984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), + [7984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), [7990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [7992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4598), + [7992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), - [8008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), - [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), - [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), + [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [8008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5971), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), [8014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [8016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), + [8016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), [8018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), [8020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), [8022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), @@ -303000,11 +303036,11 @@ static const TSParseActionEntry ts_parse_actions[] = { [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [8038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), - [8040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), + [8038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4589), + [8040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), - [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), [8048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), @@ -303014,95 +303050,95 @@ static const TSParseActionEntry ts_parse_actions[] = { [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), [8062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4196), [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), - [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), [8084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [8086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), + [8086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), [8090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [8092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), + [8092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4694), - [8098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 41), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), - [8104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [8112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [8116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), - [8128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [8132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [8136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), - [8142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 80), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [8146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [8150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), - [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), - [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), - [8164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), - [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [8172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), - [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), - [8178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 156), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [8186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(4116), - [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [8191] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), - [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [8199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), - [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [8203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), - [8205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5531), - [8208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), - [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), - [8216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 62), SHIFT_REPEAT(96), - [8219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 62), SHIFT_REPEAT(4822), - [8222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 62), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), - [8226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [8230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [8234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), - [8240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), - [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), - [8246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), - [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), + [8098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), + [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [8106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 41), + [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [8112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [8118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [8124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), + [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [8136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), + [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), + [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), + [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [8150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 80), + [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [8154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), + [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), + [8158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), + [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), + [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), + [8172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), + [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [8180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), + [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), + [8188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 156), + [8190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(4116), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [8195] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), + [8203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), + [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [8207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), + [8209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5742), + [8212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), + [8218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 62), SHIFT_REPEAT(96), + [8221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 62), SHIFT_REPEAT(4798), + [8224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 62), + [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [8228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), + [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [8232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), + [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), + [8238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), + [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [8248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), @@ -303116,17 +303152,17 @@ static const TSParseActionEntry ts_parse_actions[] = { [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), - [8278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4493), - [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), - [8282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), - [8284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), - [8286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5136), - [8288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), + [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [8278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), + [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), + [8282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), + [8284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), + [8286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), + [8288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5440), [8290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), - [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), + [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), [8300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 12), [8302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), @@ -303144,856 +303180,860 @@ static const TSParseActionEntry ts_parse_actions[] = { [8327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1, 0, 0), [8329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 34), [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [8333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), - [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), - [8343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [8345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), - [8347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), - [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), - [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), - [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), - [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), - [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), - [8365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [8371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4744), - [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [8381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [8383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [8391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [8397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [8401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), - [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [8407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [8413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), - [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), - [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [8421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), - [8425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [8427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), - [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), - [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), - [8433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [8435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [8437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), - [8439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4845), - [8441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [8443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), - [8445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [8447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [8449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), - [8451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [8455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [8457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [8459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [8461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [8463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [8467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), - [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [8473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), - [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), - [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), - [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), - [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [8489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 62), SHIFT_REPEAT(97), - [8492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 62), - [8494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 62), SHIFT_REPEAT(5021), - [8497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 178), - [8499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 178), - [8501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 179), - [8503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 179), - [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [8507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [8513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(4524), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [8520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), - [8526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [8530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [8536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [8538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 72), SHIFT_REPEAT(232), - [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), - [8543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 105), - [8545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 105), - [8547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 165), - [8549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 166), - [8551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 167), - [8553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 174), - [8555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [8557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 6, 0, 192), - [8559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 193), - [8561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 194), - [8563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 195), - [8565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1, 0, 0), - [8567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 217), - [8569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 218), - [8571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 231), - [8573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 232), - [8575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 9, 0, 242), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), - [8579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(4133), - [8582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 7), - [8584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), - [8586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [8588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), - [8590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 73), - [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [8596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5132), - [8599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), - [8601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(5020), - [8604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 79), - [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [8608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 81), - [8610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 82), - [8612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 83), - [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), - [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), - [8618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 2, 0, 85), - [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [8622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 2, 0, 85), - [8624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [8628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4433), - [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), - [8632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [8634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 91), - [8636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), - [8638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), - [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [8642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [8644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [8646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 93), - [8648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 26), - [8650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 26), - [8652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), - [8654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), - [8656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [8658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [8660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 47), - [8662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 102), - [8664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 103), - [8666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 105), - [8668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 105), - [8670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5197), - [8673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [8677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 42), - [8679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 43), - [8681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [8683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [8685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [8691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [8693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 45), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [8697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [8701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), - [8707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), - [8709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), - [8711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [8713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [8715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 1), - [8717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), - [8719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [8721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [8723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [8725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 131), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), - [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), - [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [8733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 132), - [8735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 8), - [8737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 8), - [8739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 8), - [8741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [8745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [8747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 1, 0, 169), - [8749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 1, 0, 169), - [8751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 133), - [8753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 11), - [8755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 11), - [8757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 136), - [8759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 137), - [8761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 138), - [8763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, 0, 14), - [8765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 139), - [8767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 143), - [8769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), - [8771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [8773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [8775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 32), - [8777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [8781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), - [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [8785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), - [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [8789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 47), - [8791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 4, 0, 146), - [8793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4576), - [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [8797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), - [8799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 36), - [8801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 37), - [8803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 38), - [8805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 39), - [8807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [8809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 1, 0, 90), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), - [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [8819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 49), - [8821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 125), - [8823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 125), SHIFT_REPEAT(5053), - [8826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 82), - [8828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 83), - [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), - [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [8840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 1, 0, 0), - [8842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 18), - [8844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), - [8846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), - [8848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [8850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [8856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), - [8858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 1, 0, 92), - [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [8864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 106), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [8868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 60), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), - [8880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 26), - [8882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 26), - [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [8886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 140), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [8890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 8), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [8894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 98), - [8896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 131), - [8898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 32), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), - [8904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 198), - [8906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 219), - [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [8910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 199), - [8912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 136), - [8914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 141), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), - [8918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 203), - [8920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 1, 0, 168), - [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), - [8926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [8930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), - [8932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), - [8934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 85), - [8936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 1), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), - [8940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 1, 0, 90), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [8944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 8), - [8946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 106), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [8956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 85), - [8958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 172), - [8960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 2, 0, 2), - [8962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 175), - [8964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 73), - [8966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), - [8968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 1, 0, 47), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), - [8972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 48), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), - [8976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 172), - [8978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 3, 0, 100), - [8980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 49), - [8982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), - [8984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1506), - [8987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), - [8989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__all_type, 1, 0, 86), - [8991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 86), - [8993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 203), - [8995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(5278), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [9004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 102), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [9012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 8), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [9016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 103), - [9018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 146), - [9020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 104), SHIFT_REPEAT(398), - [9023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 48), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), - [9027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [9029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), - [9035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 3, 0, 135), - [9037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 3, 0, 135), - [9039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(5434), - [9042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [9044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), - [9046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4839), - [9048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), - [9050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [9052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [9054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [9056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [9058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), - [9062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [9068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [9070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [9073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [9075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), - [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), - [9079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [9081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [9083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), - [9085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), - [9087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [9089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [9091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), - [9093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(5279), - [9096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4797), - [9098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 2, 0, 197), - [9100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 2, 0, 197), - [9102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4798), - [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [9106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 3, 0, 71), - [9108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 3, 0, 71), - [9110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(5362), - [9113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [9115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 173), - [9117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 173), - [9119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [9121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 123), - [9123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4953), - [9125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), - [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [9129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5603), - [9131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [9133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [9135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [9137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [9139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [9141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), - [9143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [9145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [9147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 178), - [9149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 178), - [9151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 179), - [9153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 179), - [9155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), - [9157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), - [9159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), - [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [9165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), - [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [9173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), - [9175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 90), - [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), - [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), - [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [9197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), - [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), - [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [9209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5824), - [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), - [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [9231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [9237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4776), - [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [9265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), - [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), - [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [9281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5094), - [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), - [9285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), - [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), - [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), - [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), - [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), - [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [8333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), + [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), + [8343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), + [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), + [8363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4828), + [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [8369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), + [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [8375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 62), SHIFT_REPEAT(97), + [8378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 62), + [8380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 62), SHIFT_REPEAT(5226), + [8383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), + [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), + [8391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), + [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), + [8397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), + [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [8407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [8411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [8419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [8427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [8433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [8443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [8447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [8455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [8457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [8459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4421), + [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), + [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [8465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [8467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [8469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [8471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4783), + [8473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [8475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [8477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [8479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [8481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [8483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [8485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [8487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [8489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [8491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [8493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [8495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [8497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [8505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [8515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [8519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 179), + [8521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 179), + [8523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 180), + [8525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 180), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), + [8529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(4527), + [8532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [8536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [8538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 131), + [8540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 133), + [8542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1, 0, 0), + [8544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 37), + [8546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 137), + [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [8552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 138), + [8554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4997), + [8557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [8559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(5157), + [8562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 132), + [8564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 73), + [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), + [8570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 2, 0, 85), + [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [8574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 2, 0, 85), + [8576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [8578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 105), + [8580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 105), + [8582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 79), + [8584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4602), + [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [8588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 81), + [8590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 82), + [8592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 39), + [8594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 83), + [8596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 165), + [8598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4436), + [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), + [8604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 166), + [8606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 167), + [8608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), + [8610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 139), + [8612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 91), + [8614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), + [8616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [8618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), + [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [8622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 175), + [8624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 93), + [8626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [8628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [8630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [8632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 143), + [8634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 26), + [8636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 26), + [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [8640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [8642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), + [8644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [8646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 6, 0, 193), + [8648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 194), + [8650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [8652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [8654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [8660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [8662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 47), + [8664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 102), + [8666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 103), + [8668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 195), + [8670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), + [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [8674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 196), + [8676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 45), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), + [8682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [8686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), + [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [8690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 105), + [8692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 105), + [8694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), + [8696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), + [8698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [8700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [8702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 1), + [8704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), + [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [8708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [8712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), + [8714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 219), + [8716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 220), + [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [8720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), + [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), + [8726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5092), + [8729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 8), + [8731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 8), + [8733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 8), + [8735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 36), + [8737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [8739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 1, 0, 169), + [8741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 1, 0, 169), + [8743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 1, 0, 170), + [8745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 1, 0, 170), + [8747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 11), + [8749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 11), + [8751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 42), + [8753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 233), + [8755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 234), + [8757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 43), + [8759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 38), + [8761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 9, 0, 244), + [8763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [8765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [8767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, 0, 14), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [8773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 72), SHIFT_REPEAT(232), + [8776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4678), + [8778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 47), + [8780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(4133), + [8783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [8785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [8787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 7), + [8789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 32), + [8791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [8795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), + [8797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [8799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 136), + [8801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), + [8803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 4, 0, 146), + [8805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [8809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), + [8811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [8813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 1, 0, 47), + [8815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 136), + [8817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), + [8827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), + [8829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), + [8831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), + [8833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 1), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), + [8847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 146), + [8849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 48), + [8851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 49), + [8853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 82), + [8855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 83), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [8859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 60), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [8865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 1, 0, 0), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [8869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), + [8871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 221), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [8875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 205), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [8881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 98), + [8883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 73), + [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [8899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 200), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [8907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 201), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [8913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 131), + [8915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [8923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 1, 0, 90), + [8925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 18), + [8927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), + [8929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [8939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 85), + [8941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 173), + [8943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 3, 0, 100), + [8945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 205), + [8947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(5350), + [8950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 102), + [8952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 140), + [8954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 141), + [8956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 125), + [8958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 125), SHIFT_REPEAT(5041), + [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), + [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), + [8965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 103), + [8967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 104), SHIFT_REPEAT(398), + [8970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 1, 0, 168), + [8972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 106), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), + [8978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 1, 0, 90), + [8980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [8982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [8984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__all_type, 1, 0, 86), + [8986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 86), + [8988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 106), + [8990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 85), + [8992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 173), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [8996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 2, 0, 2), + [8998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 176), + [9000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 1, 0, 92), + [9002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 48), + [9004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 49), + [9006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 32), + [9008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 8), + [9010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1506), + [9013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [9021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 26), + [9023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 26), + [9025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 8), + [9027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 8), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), + [9031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), + [9033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), + [9035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), + [9037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), + [9043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4913), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [9049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4719), + [9051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), + [9053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 123), + [9055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), + [9057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), + [9063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [9065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [9067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 2, 0, 198), + [9069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 2, 0, 198), + [9071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 2, 0, 199), + [9073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 2, 0, 199), + [9075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [9077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4855), + [9079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 3, 0, 71), + [9081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 3, 0, 71), + [9083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [9087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [9089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 3, 0, 135), + [9091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 3, 0, 135), + [9093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(5319), + [9096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [9099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), + [9101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), + [9103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [9105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4932), + [9107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [9109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [9111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [9113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [9115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [9117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [9119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), + [9121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [9123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 174), + [9125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 174), + [9127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [9129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [9131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [9133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), + [9135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(5371), + [9138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [9140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 179), + [9142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 179), + [9144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [9146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 180), + [9148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 180), + [9150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [9154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5753), + [9156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [9158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [9164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [9166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [9168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [9170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [9172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(5442), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), + [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), + [9189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), + [9191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), + [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [9233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), + [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), + [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [9245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), + [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), + [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [9271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), + [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), + [9313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 90), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [9351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), - [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), - [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [9365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), - [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), - [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), - [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), - [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), - [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [9347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4942), + [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), + [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [9365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), + [9367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), + [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [9371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), + [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), + [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), - [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [9407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), - [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [9421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), - [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [9443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 85), - [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [9447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), - [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [9485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), - [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), - [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), - [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), - [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), - [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), - [9543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), - [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), - [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [9569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), - [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), - [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), - [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), - [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [9585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), - [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [9597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), - [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), - [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), - [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), - [9639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 85), - [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), - [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [9651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5771), - [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [9675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4857), - [9677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), - [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), - [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), - [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [9705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), - [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), - [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), - [9723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5722), - [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), - [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), - [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), - [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), - [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), - [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), - [9761] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [9763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), - [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [9771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), - [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [9785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), - [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [9793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), - [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), - [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), - [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), - [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), - [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [9819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), - [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), - [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), - [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), - [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), - [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), - [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), - [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), - [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), - [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), - [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), - [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), - [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), - [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), - [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), - [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), - [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), - [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), - [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), - [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), - [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), - [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), - [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), - [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), - [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), - [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), - [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), - [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), - [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), - [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), - [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), - [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), - [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), - [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), - [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), - [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), - [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), - [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), - [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), - [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), - [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), - [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), - [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), - [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), - [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), - [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), - [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), - [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), - [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), - [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), - [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), - [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), - [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), - [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), - [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), - [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), - [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), - [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), - [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), - [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), - [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), - [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), - [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), - [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), - [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), - [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), - [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), - [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), - [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), - [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), - [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), - [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), - [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), - [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), - [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), - [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), - [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), - [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), - [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), - [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), - [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), - [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), - [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), - [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [10003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), - [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [10021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), - [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [10041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [10043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), - [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [10047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), + [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [9405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), + [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [9413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5717), + [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [9449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), + [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), + [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), + [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), + [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [9545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [9559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), + [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), + [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [9585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), + [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [9591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4745), + [9593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), + [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [9601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), + [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), + [9635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), + [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), + [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [9655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), + [9657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), + [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [9673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 85), + [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), + [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), + [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), + [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), + [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [9695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), + [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [9709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4804), + [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), + [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [9729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5974), + [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), + [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), + [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), + [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), + [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), + [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [9785] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [9787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), + [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [9791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), + [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), + [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), + [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), + [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [9823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 85), + [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [9829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), + [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), + [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), + [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), + [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), + [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), + [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), + [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), + [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), + [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), + [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), + [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), + [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), + [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), + [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), + [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), + [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), + [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), + [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), + [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), + [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), + [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), + [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), + [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), + [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), + [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), + [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), + [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), + [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), + [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), + [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), + [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5581), + [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), + [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), + [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), + [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), + [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), + [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), + [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), + [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), + [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), + [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), + [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), + [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), + [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), + [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), + [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), + [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), + [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), + [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), + [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), + [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), + [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), + [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), + [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), + [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), + [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), + [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), + [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), + [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), + [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), + [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), + [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), + [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), + [9997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [10003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [10015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), + [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), + [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [10023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [10041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [10051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [10055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), }; enum ts_external_scanner_symbol_identifiers { diff --git a/test/corpus/decl/def.nu b/test/corpus/decl/def.nu index c9b0971a..752004f6 100644 --- a/test/corpus/decl/def.nu +++ b/test/corpus/decl/def.nu @@ -1130,7 +1130,7 @@ def test [name: record, name: record<"name", "value",>] {} (identifier) (param_type (collection_type - (identifier + (val_string (string_content)))))) (block)) (decl_def @@ -1145,7 +1145,7 @@ def test [name: record, name: record<"name", "value",>] {} (identifier) (param_type (collection_type - (identifier + (val_string (string_content)))))) (block)) (decl_def @@ -1161,9 +1161,9 @@ def test [name: record, name: record<"name", "value",>] {} (identifier) (param_type (collection_type - (identifier + (val_string (string_content)) - (identifier + (val_string (string_content)))))) (block)) (decl_def @@ -1179,8 +1179,8 @@ def test [name: record, name: record<"name", "value",>] {} (identifier) (param_type (collection_type - (identifier + (val_string (string_content)) - (identifier + (val_string (string_content)))))) (block))) From 33f5f2112c1707370dee89d76ab08363a858571e Mon Sep 17 00:00:00 2001 From: Mikhail Katychev Date: Wed, 26 Nov 2025 12:54:38 -0600 Subject: [PATCH 2/4] feat(highlight): handle additional delimiters and separators --- grammar.js | 8 +- queries/nu/highlights.scm | 66 +- src/grammar.json | 65 +- src/node-types.json | 4 + src/parser.c | 319950 ++++++++------- test/highlight/comma_after_param_completer.nu | 2 - test/highlight/punctuation.nu | 5 + test/highlight/verbose_type_signature.nu | 3 +- 8 files changed, 160924 insertions(+), 159179 deletions(-) delete mode 100644 test/highlight/comma_after_param_completer.nu create mode 100644 test/highlight/punctuation.nu diff --git a/grammar.js b/grammar.js index 1d176b7b..2a18bf37 100644 --- a/grammar.js +++ b/grammar.js @@ -314,12 +314,8 @@ module.exports = grammar({ optional($._collection_annotation), ), _collection_body: ($) => - general_body_rules( - '', - $._collection_entry, - $._entry_separator, - $._newline, - ), + seq(repeat1(choice( ',', $._collection_entry, '\n'))), + collection_type: ($) => seq( choice('record', 'table'), diff --git a/queries/nu/highlights.scm b/queries/nu/highlights.scm index 2429cc6b..de08f15f 100644 --- a/queries/nu/highlights.scm +++ b/queries/nu/highlights.scm @@ -137,35 +137,34 @@ file_path: (val_string) @variable.parameter ] @operator) [ - "..." "=>" "=" "|" ] @operator [ - "o>" - "out>" - "e>" - "err>" "e+o>" - "err+out>" - "o+e>" - "out+err>" - "o>>" - "out>>" - "e>>" - "err>>" "e+o>>" - "err+out>>" - "o+e>>" - "out+err>>" - "e>|" - "err>|" "e+o>|" + "e>" + "e>>" + "e>|" + "err+out>" + "err+out>>" "err+out>|" + "err>" + "err>>" + "err>|" + "o+e>" + "o+e>>" "o+e>|" + "o>" + "o>>" + "out+err>" + "out+err>>" "out+err>|" + "out>" + "out>>" ] @operator ; --- @@ -174,11 +173,11 @@ file_path: (val_string) @variable.parameter ";" ] @punctuation.special -[ "," ":" "->" ] @punctuation.delimiter [ - "<" - ">" -] @punctuation.bracket + "," + ":" + "->" +] @punctuation.delimiter (param_long_flag "--" @punctuation.delimiter) @@ -198,7 +197,8 @@ file_path: (val_string) @variable.parameter (param_short_flag "-" @punctuation.delimiter) - +(param_rest + "..." @punctuation.delimiter) (param_value "=" @punctuation.special) @@ -212,16 +212,18 @@ file_path: (val_string) @variable.parameter (param_opt "?" @punctuation.special) -(returns - "->" @punctuation.delimiter) - [ "(" ")" - "{" - "}" + "...(" + "...[" + "...{" + "<" + ">" "[" "]" + "{" + "}" ] @punctuation.bracket key: (identifier) @property @@ -326,6 +328,7 @@ key: (identifier) @property (val_variable "$"? @punctuation.special + "...$"? @punctuation.special [ (identifier) @variable "in" @special @@ -354,15 +357,6 @@ key: (identifier) @property (collection_type key: (_) @variable.parameter) -(collection_type - [ - "<" - ">" - ] @punctuation.bracket) - -(collection_type - ":" @punctuation.special) - (composite_type "oneof" @type.enum) diff --git a/src/grammar.json b/src/grammar.json index 7a774803..8a5bb73b 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -3002,50 +3002,29 @@ ] }, "_collection_body": { - "type": "PREC", - "value": 20, - "content": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_newline" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_collection_entry" - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "_entry_separator" - } - } - ] - } - }, - { - "type": "SYMBOL", - "name": "_collection_entry" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_entry_separator" - } + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_collection_entry" + }, + { + "type": "STRING", + "value": "\n" + } + ] } - ] - } + } + ] }, "collection_type": { "type": "SEQ", diff --git a/src/node-types.json b/src/node-types.json index 5466360c..8a3866f5 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -4631,6 +4631,10 @@ "named": true, "fields": {} }, + { + "type": "\n", + "named": false + }, { "type": "!", "named": false diff --git a/src/parser.c b/src/parser.c index d81d5512..5dc6f540 100644 --- a/src/parser.c +++ b/src/parser.c @@ -15,16 +15,16 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 5207 -#define LARGE_STATE_COUNT 1263 -#define SYMBOL_COUNT 483 +#define STATE_COUNT 5263 +#define LARGE_STATE_COUNT 1262 +#define SYMBOL_COUNT 484 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 272 +#define TOKEN_COUNT 273 #define EXTERNAL_TOKEN_COUNT 3 #define FIELD_COUNT 64 #define MAX_ALIAS_SEQUENCE_LENGTH 10 #define MAX_RESERVED_WORD_SET_SIZE 0 -#define PRODUCTION_ID_COUNT 252 +#define PRODUCTION_ID_COUNT 250 #define SUPERTYPE_COUNT 0 enum ts_symbol_identifiers { @@ -156,363 +156,364 @@ enum ts_symbol_identifiers { anon_sym_var_DASHwith_DASHopt_DASHtype = 126, anon_sym_record = 127, anon_sym_list = 128, - anon_sym_GT2 = 129, - anon_sym_oneof = 130, - anon_sym_AT2 = 131, - anon_sym_DOT_DOT_DOT = 132, - anon_sym_QMARK = 133, - anon_sym_DASH_DASH = 134, - anon_sym_DASH2 = 135, - sym_param_short_flag_identifier = 136, - anon_sym_LBRACE = 137, - anon_sym_RBRACE = 138, - anon_sym_EQ_GT = 139, - anon_sym__ = 140, - anon_sym_DOT_DOT = 141, - anon_sym_DOLLAR2 = 142, - anon_sym_STAR2 = 143, - aux_sym__where_predicate_lhs_path_head_token1 = 144, - anon_sym_where = 145, - anon_sym_and2 = 146, - anon_sym_xor2 = 147, - anon_sym_or2 = 148, - anon_sym_not_DASHin2 = 149, - anon_sym_has2 = 150, - anon_sym_not_DASHhas2 = 151, - anon_sym_starts_DASHwith2 = 152, - anon_sym_not_DASHstarts_DASHwith2 = 153, - anon_sym_ends_DASHwith2 = 154, - anon_sym_not_DASHends_DASHwith2 = 155, - anon_sym_EQ_EQ2 = 156, - anon_sym_BANG_EQ2 = 157, - anon_sym_LT2 = 158, - anon_sym_LT_EQ2 = 159, - anon_sym_GT_EQ2 = 160, - anon_sym_EQ_TILDE2 = 161, - anon_sym_BANG_TILDE2 = 162, - anon_sym_like2 = 163, - anon_sym_not_DASHlike2 = 164, - aux_sym_expr_unary_token1 = 165, - anon_sym_LPAREN2 = 166, - anon_sym_STAR_STAR2 = 167, - anon_sym_PLUS_PLUS2 = 168, - anon_sym_SLASH2 = 169, - anon_sym_mod2 = 170, - anon_sym_SLASH_SLASH2 = 171, - anon_sym_PLUS2 = 172, - anon_sym_bit_DASHshl2 = 173, - anon_sym_bit_DASHshr2 = 174, - anon_sym_bit_DASHand2 = 175, - anon_sym_bit_DASHxor2 = 176, - anon_sym_bit_DASHor2 = 177, - anon_sym_DOT_DOT_DOT_LPAREN = 178, - anon_sym_DOT_DOT2 = 179, - anon_sym_DOT = 180, - anon_sym_DOT_DOT_EQ = 181, - anon_sym_DOT_DOT_LT = 182, - anon_sym_DOT_DOT_EQ2 = 183, - anon_sym_DOT_DOT_LT2 = 184, - aux_sym__immediate_decimal_token1 = 185, - aux_sym__immediate_decimal_token2 = 186, - aux_sym__immediate_decimal_token3 = 187, - aux_sym__immediate_decimal_token4 = 188, - aux_sym__immediate_decimal_token5 = 189, - anon_sym_RPAREN2 = 190, - anon_sym_DOT_DOT_DOT_DOLLAR = 191, - anon_sym_nu = 192, - anon_sym_env = 193, - aux_sym__val_number_decimal_token1 = 194, - aux_sym__val_number_decimal_token2 = 195, - aux_sym__val_number_decimal_token3 = 196, - aux_sym__val_number_decimal_token4 = 197, - aux_sym__val_number_token1 = 198, - aux_sym__val_number_token2 = 199, - aux_sym__val_number_token3 = 200, - anon_sym_0b = 201, - sym_filesize_unit = 202, - sym_duration_unit = 203, - anon_sym_0o = 204, - anon_sym_0x = 205, - anon_sym_LBRACK2 = 206, - sym_hex_digit = 207, - sym_val_date = 208, - anon_sym_DQUOTE = 209, - sym__escaped_str_content = 210, - anon_sym_SQUOTE = 211, - aux_sym__str_single_quotes_token1 = 212, - anon_sym_SQUOTE2 = 213, - anon_sym_BQUOTE = 214, - aux_sym__str_back_ticks_token1 = 215, - anon_sym_BQUOTE2 = 216, - sym_escape_sequence = 217, - sym_escaped_interpolated_content = 218, - sym_unescaped_interpolated_content = 219, - anon_sym_DOLLAR_SQUOTE = 220, - anon_sym_DOLLAR_DQUOTE = 221, - anon_sym_DQUOTE2 = 222, - sym_inter_escape_sequence = 223, - anon_sym_DOT_DOT_DOT_LBRACK = 224, - anon_sym_DOT_DOT_DOT_LBRACE = 225, - sym__entry_separator = 226, - anon_sym_COLON2 = 227, - aux_sym__record_key_token1 = 228, - sym__table_head_separator = 229, - anon_sym_QMARK2 = 230, - anon_sym_BANG = 231, - anon_sym_DOT2 = 232, - aux_sym_path_token1 = 233, - anon_sym_EQ2 = 234, - aux_sym_env_var_token1 = 235, - anon_sym_CARET = 236, - anon_sym_err_GT = 237, - anon_sym_out_GT = 238, - anon_sym_e_GT = 239, - anon_sym_o_GT = 240, - anon_sym_err_PLUSout_GT = 241, - anon_sym_out_PLUSerr_GT = 242, - anon_sym_o_PLUSe_GT = 243, - anon_sym_e_PLUSo_GT = 244, - anon_sym_err_GT_GT = 245, - anon_sym_out_GT_GT = 246, - anon_sym_e_GT_GT = 247, - anon_sym_o_GT_GT = 248, - anon_sym_err_PLUSout_GT_GT = 249, - anon_sym_out_PLUSerr_GT_GT = 250, - anon_sym_o_PLUSe_GT_GT = 251, - anon_sym_e_PLUSo_GT_GT = 252, - sym_short_flag_identifier = 253, - sym__unquoted_pattern = 254, - sym__unquoted_pattern_in_list = 255, - sym__unquoted_pattern_in_record = 256, - sym__unquoted_naive = 257, - aux_sym_unquoted_token1 = 258, - aux_sym_unquoted_token2 = 259, - aux_sym__unquoted_in_list_token1 = 260, - aux_sym__unquoted_in_list_token2 = 261, - aux_sym__unquoted_in_record_token1 = 262, - aux_sym__unquoted_in_record_token2 = 263, - aux_sym__unquoted_with_expr_token1 = 264, - aux_sym__unquoted_in_list_with_expr_token1 = 265, - aux_sym__unquoted_in_record_with_expr_token1 = 266, - anon_sym_POUND = 267, - aux_sym_comment_token1 = 268, - sym_raw_string_begin = 269, - sym_raw_string_content = 270, - sym_raw_string_end = 271, - sym_nu_script = 272, - sym_shebang = 273, - sym__block_body_statement = 274, - sym__declaration = 275, - sym_decl_alias = 276, - sym_stmt_let = 277, - sym_stmt_mut = 278, - sym_stmt_const = 279, - sym_assignment = 280, - sym__assignment_pattern = 281, - sym__mutable_assignment_pattern = 282, - sym__statement = 283, - sym_pipeline = 284, - sym__block_body_statement_parenthesized = 285, - sym__declaration_parenthesized = 286, - sym_decl_alias_parenthesized = 287, - sym_stmt_let_parenthesized = 288, - sym_stmt_mut_parenthesized = 289, - sym_stmt_const_parenthesized = 290, - sym_assignment_parenthesized = 291, - sym__assignment_pattern_parenthesized = 292, - sym__mutable_assignment_pattern_parenthesized = 293, - sym__statement_parenthesized = 294, - sym_pipeline_parenthesized = 295, - sym__block_body = 296, - sym_cmd_identifier = 297, - sym__command_name = 298, - sym__variable_name = 299, - aux_sym__repeat_newline = 300, - aux_sym__pipe_separator = 301, - sym_attribute_list = 302, - sym_attribute = 303, - sym_decl_def = 304, - sym_decl_export = 305, - sym_decl_extern = 306, - sym_decl_module = 307, - sym_decl_use = 308, - sym_returns = 309, - sym__one_type = 310, - sym__types_body = 311, - sym__multiple_types = 312, - sym_parameter_parens = 313, - sym_parameter_bracks = 314, - sym_parameter_pipes = 315, - sym_parameter = 316, - sym__param_name = 317, - sym_param_type = 318, - sym_param_value = 319, - sym__type_annotation = 320, - sym__all_type = 321, - sym_flat_type = 322, - sym__collection_annotation = 323, - sym__collection_entry = 324, - sym__collection_body = 325, - sym_collection_type = 326, - sym_list_type = 327, - sym__composite_argument_body = 328, - sym_composite_type = 329, - sym_param_completer = 330, - sym_param_rest = 331, - sym_param_opt = 332, - sym_param_long_flag = 333, - sym_flag_capsule = 334, - sym_param_short_flag = 335, - sym__ctrl_statement = 336, - sym__ctrl_expression = 337, - sym__ctrl_expression_parenthesized = 338, - sym_ctrl_for = 339, - sym_ctrl_loop = 340, - sym_ctrl_while = 341, - sym_ctrl_if = 342, - sym_ctrl_if_parenthesized = 343, - sym__ctrl_match_body = 344, - sym_ctrl_match = 345, - sym_match_arm = 346, - sym_default_arm = 347, - sym_match_pattern = 348, - sym__match_pattern = 349, - sym_match_guard = 350, - sym__match_pattern_expression = 351, - sym__match_pattern_value = 352, - sym__match_pattern_list_body = 353, - sym__match_pattern_list = 354, - sym__match_pattern_rest = 355, - sym__match_pattern_record_body = 356, - sym__match_pattern_record = 357, - sym_ctrl_try = 358, - sym_ctrl_try_parenthesized = 359, - sym_pipe_element = 360, - sym_pipe_element_parenthesized = 361, - sym_scope_pattern = 362, - sym_wild_card = 363, - sym__command_list_body = 364, - sym_command_list = 365, - sym_block = 366, - sym__blosure = 367, - sym__where_predicate_lhs_path_head = 368, - sym__where_predicate_lhs = 369, - sym_where_command = 370, - sym_where_command_parenthesized = 371, - sym__binary_predicate = 372, - sym__binary_predicate_parenthesized = 373, - sym_where_predicate = 374, - sym__expression = 375, - sym__expression_parenthesized = 376, - sym_expr_unary = 377, - sym__expr_unary_minus = 378, - sym_expr_binary = 379, - sym_expr_binary_parenthesized = 380, - sym__expr_binary_expression = 381, - sym__expr_binary_expression_parenthesized = 382, - sym_expr_parenthesized = 383, - sym__spread_parenthesized = 384, - sym__expr_parenthesized_immediate = 385, - sym__parenthesized_body = 386, - sym_val_range = 387, - sym__val_range = 388, - sym__immediate_decimal = 389, - sym__value = 390, - sym_val_nothing = 391, - sym_val_bool = 392, - sym__spread_variable = 393, - sym_val_variable = 394, - sym_val_cellpath = 395, - sym_val_number = 396, - sym__val_number_decimal = 397, - sym__val_number = 398, - sym_val_duration = 399, - sym_val_filesize = 400, - sym_val_binary = 401, - sym_val_string = 402, - sym__raw_str = 403, - sym_string_content = 404, - sym__str_double_quotes = 405, - sym__str_single_quotes = 406, - sym__str_back_ticks = 407, - sym_val_interpolated = 408, - sym__inter_single_quotes = 409, - sym__inter_double_quotes = 410, - sym_expr_interpolated = 411, - sym_val_list = 412, - sym__spread_list = 413, - sym_list_body = 414, - sym_val_entry = 415, - sym_val_record = 416, - sym__spread_record = 417, - sym_record_body = 418, - sym_record_entry = 419, - sym__record_key = 420, - sym__table_head = 421, - sym__table_body = 422, - sym_val_table = 423, - sym_val_closure = 424, - sym_cell_path = 425, - sym__path_suffix = 426, - sym_path = 427, - sym_env_var = 428, - sym_command = 429, - sym__command_parenthesized = 430, - sym__cmd_arg = 431, - sym_redirection = 432, - sym__flag = 433, - sym__flag_equals_value = 434, - sym_short_flag = 435, - sym_long_flag = 436, - sym_unquoted = 437, - sym__unquoted_in_list = 438, - sym__unquoted_in_record = 439, - sym__unquoted_with_expr = 440, - sym__unquoted_in_list_with_expr = 441, - sym__unquoted_in_record_with_expr = 442, - sym__unquoted_anonymous_prefix = 443, - sym_comment = 444, - aux_sym_pipeline_repeat1 = 445, - aux_sym_pipeline_parenthesized_repeat1 = 446, - aux_sym__block_body_repeat1 = 447, - aux_sym__block_body_repeat2 = 448, - aux_sym_attribute_list_repeat1 = 449, - aux_sym_attribute_repeat1 = 450, - aux_sym_decl_def_repeat1 = 451, - aux_sym__types_body_repeat1 = 452, - aux_sym__types_body_repeat2 = 453, - aux_sym__types_body_repeat3 = 454, - aux_sym_parameter_parens_repeat1 = 455, - aux_sym_parameter_repeat1 = 456, - aux_sym_parameter_repeat2 = 457, - aux_sym__collection_body_repeat1 = 458, - aux_sym__composite_argument_body_repeat1 = 459, - aux_sym__ctrl_match_body_repeat1 = 460, - aux_sym_match_pattern_repeat1 = 461, - aux_sym__match_pattern_list_body_repeat1 = 462, - aux_sym__match_pattern_record_body_repeat1 = 463, - aux_sym_pipe_element_repeat1 = 464, - aux_sym_pipe_element_repeat2 = 465, - aux_sym_pipe_element_parenthesized_repeat1 = 466, - aux_sym_pipe_element_parenthesized_repeat2 = 467, - aux_sym__command_list_body_repeat1 = 468, - aux_sym__where_predicate_lhs_repeat1 = 469, - aux_sym__parenthesized_body_repeat1 = 470, - aux_sym__parenthesized_body_repeat2 = 471, - aux_sym_val_binary_repeat1 = 472, - aux_sym_string_content_repeat1 = 473, - aux_sym__inter_single_quotes_repeat1 = 474, - aux_sym__inter_double_quotes_repeat1 = 475, - aux_sym_list_body_repeat1 = 476, - aux_sym_record_body_repeat1 = 477, - aux_sym__table_body_repeat1 = 478, - aux_sym__command_parenthesized_repeat1 = 479, - aux_sym__unquoted_with_expr_repeat1 = 480, - aux_sym__unquoted_in_list_with_expr_repeat1 = 481, - aux_sym__unquoted_in_record_with_expr_repeat1 = 482, - anon_alias_sym__head = 483, - anon_alias_sym__prefix = 484, - anon_alias_sym__unit = 485, + anon_sym_LF = 129, + anon_sym_GT2 = 130, + anon_sym_oneof = 131, + anon_sym_AT2 = 132, + anon_sym_DOT_DOT_DOT = 133, + anon_sym_QMARK = 134, + anon_sym_DASH_DASH = 135, + anon_sym_DASH2 = 136, + sym_param_short_flag_identifier = 137, + anon_sym_LBRACE = 138, + anon_sym_RBRACE = 139, + anon_sym_EQ_GT = 140, + anon_sym__ = 141, + anon_sym_DOT_DOT = 142, + anon_sym_DOLLAR2 = 143, + anon_sym_STAR2 = 144, + aux_sym__where_predicate_lhs_path_head_token1 = 145, + anon_sym_where = 146, + anon_sym_and2 = 147, + anon_sym_xor2 = 148, + anon_sym_or2 = 149, + anon_sym_not_DASHin2 = 150, + anon_sym_has2 = 151, + anon_sym_not_DASHhas2 = 152, + anon_sym_starts_DASHwith2 = 153, + anon_sym_not_DASHstarts_DASHwith2 = 154, + anon_sym_ends_DASHwith2 = 155, + anon_sym_not_DASHends_DASHwith2 = 156, + anon_sym_EQ_EQ2 = 157, + anon_sym_BANG_EQ2 = 158, + anon_sym_LT2 = 159, + anon_sym_LT_EQ2 = 160, + anon_sym_GT_EQ2 = 161, + anon_sym_EQ_TILDE2 = 162, + anon_sym_BANG_TILDE2 = 163, + anon_sym_like2 = 164, + anon_sym_not_DASHlike2 = 165, + aux_sym_expr_unary_token1 = 166, + anon_sym_LPAREN2 = 167, + anon_sym_STAR_STAR2 = 168, + anon_sym_PLUS_PLUS2 = 169, + anon_sym_SLASH2 = 170, + anon_sym_mod2 = 171, + anon_sym_SLASH_SLASH2 = 172, + anon_sym_PLUS2 = 173, + anon_sym_bit_DASHshl2 = 174, + anon_sym_bit_DASHshr2 = 175, + anon_sym_bit_DASHand2 = 176, + anon_sym_bit_DASHxor2 = 177, + anon_sym_bit_DASHor2 = 178, + anon_sym_DOT_DOT_DOT_LPAREN = 179, + anon_sym_DOT_DOT2 = 180, + anon_sym_DOT = 181, + anon_sym_DOT_DOT_EQ = 182, + anon_sym_DOT_DOT_LT = 183, + anon_sym_DOT_DOT_EQ2 = 184, + anon_sym_DOT_DOT_LT2 = 185, + aux_sym__immediate_decimal_token1 = 186, + aux_sym__immediate_decimal_token2 = 187, + aux_sym__immediate_decimal_token3 = 188, + aux_sym__immediate_decimal_token4 = 189, + aux_sym__immediate_decimal_token5 = 190, + anon_sym_RPAREN2 = 191, + anon_sym_DOT_DOT_DOT_DOLLAR = 192, + anon_sym_nu = 193, + anon_sym_env = 194, + aux_sym__val_number_decimal_token1 = 195, + aux_sym__val_number_decimal_token2 = 196, + aux_sym__val_number_decimal_token3 = 197, + aux_sym__val_number_decimal_token4 = 198, + aux_sym__val_number_token1 = 199, + aux_sym__val_number_token2 = 200, + aux_sym__val_number_token3 = 201, + anon_sym_0b = 202, + sym_filesize_unit = 203, + sym_duration_unit = 204, + anon_sym_0o = 205, + anon_sym_0x = 206, + anon_sym_LBRACK2 = 207, + sym_hex_digit = 208, + sym_val_date = 209, + anon_sym_DQUOTE = 210, + sym__escaped_str_content = 211, + anon_sym_SQUOTE = 212, + aux_sym__str_single_quotes_token1 = 213, + anon_sym_SQUOTE2 = 214, + anon_sym_BQUOTE = 215, + aux_sym__str_back_ticks_token1 = 216, + anon_sym_BQUOTE2 = 217, + sym_escape_sequence = 218, + sym_escaped_interpolated_content = 219, + sym_unescaped_interpolated_content = 220, + anon_sym_DOLLAR_SQUOTE = 221, + anon_sym_DOLLAR_DQUOTE = 222, + anon_sym_DQUOTE2 = 223, + sym_inter_escape_sequence = 224, + anon_sym_DOT_DOT_DOT_LBRACK = 225, + anon_sym_DOT_DOT_DOT_LBRACE = 226, + sym__entry_separator = 227, + anon_sym_COLON2 = 228, + aux_sym__record_key_token1 = 229, + sym__table_head_separator = 230, + anon_sym_QMARK2 = 231, + anon_sym_BANG = 232, + anon_sym_DOT2 = 233, + aux_sym_path_token1 = 234, + anon_sym_EQ2 = 235, + aux_sym_env_var_token1 = 236, + anon_sym_CARET = 237, + anon_sym_err_GT = 238, + anon_sym_out_GT = 239, + anon_sym_e_GT = 240, + anon_sym_o_GT = 241, + anon_sym_err_PLUSout_GT = 242, + anon_sym_out_PLUSerr_GT = 243, + anon_sym_o_PLUSe_GT = 244, + anon_sym_e_PLUSo_GT = 245, + anon_sym_err_GT_GT = 246, + anon_sym_out_GT_GT = 247, + anon_sym_e_GT_GT = 248, + anon_sym_o_GT_GT = 249, + anon_sym_err_PLUSout_GT_GT = 250, + anon_sym_out_PLUSerr_GT_GT = 251, + anon_sym_o_PLUSe_GT_GT = 252, + anon_sym_e_PLUSo_GT_GT = 253, + sym_short_flag_identifier = 254, + sym__unquoted_pattern = 255, + sym__unquoted_pattern_in_list = 256, + sym__unquoted_pattern_in_record = 257, + sym__unquoted_naive = 258, + aux_sym_unquoted_token1 = 259, + aux_sym_unquoted_token2 = 260, + aux_sym__unquoted_in_list_token1 = 261, + aux_sym__unquoted_in_list_token2 = 262, + aux_sym__unquoted_in_record_token1 = 263, + aux_sym__unquoted_in_record_token2 = 264, + aux_sym__unquoted_with_expr_token1 = 265, + aux_sym__unquoted_in_list_with_expr_token1 = 266, + aux_sym__unquoted_in_record_with_expr_token1 = 267, + anon_sym_POUND = 268, + aux_sym_comment_token1 = 269, + sym_raw_string_begin = 270, + sym_raw_string_content = 271, + sym_raw_string_end = 272, + sym_nu_script = 273, + sym_shebang = 274, + sym__block_body_statement = 275, + sym__declaration = 276, + sym_decl_alias = 277, + sym_stmt_let = 278, + sym_stmt_mut = 279, + sym_stmt_const = 280, + sym_assignment = 281, + sym__assignment_pattern = 282, + sym__mutable_assignment_pattern = 283, + sym__statement = 284, + sym_pipeline = 285, + sym__block_body_statement_parenthesized = 286, + sym__declaration_parenthesized = 287, + sym_decl_alias_parenthesized = 288, + sym_stmt_let_parenthesized = 289, + sym_stmt_mut_parenthesized = 290, + sym_stmt_const_parenthesized = 291, + sym_assignment_parenthesized = 292, + sym__assignment_pattern_parenthesized = 293, + sym__mutable_assignment_pattern_parenthesized = 294, + sym__statement_parenthesized = 295, + sym_pipeline_parenthesized = 296, + sym__block_body = 297, + sym_cmd_identifier = 298, + sym__command_name = 299, + sym__variable_name = 300, + aux_sym__repeat_newline = 301, + aux_sym__pipe_separator = 302, + sym_attribute_list = 303, + sym_attribute = 304, + sym_decl_def = 305, + sym_decl_export = 306, + sym_decl_extern = 307, + sym_decl_module = 308, + sym_decl_use = 309, + sym_returns = 310, + sym__one_type = 311, + sym__types_body = 312, + sym__multiple_types = 313, + sym_parameter_parens = 314, + sym_parameter_bracks = 315, + sym_parameter_pipes = 316, + sym_parameter = 317, + sym__param_name = 318, + sym_param_type = 319, + sym_param_value = 320, + sym__type_annotation = 321, + sym__all_type = 322, + sym_flat_type = 323, + sym__collection_annotation = 324, + sym__collection_entry = 325, + sym__collection_body = 326, + sym_collection_type = 327, + sym_list_type = 328, + sym__composite_argument_body = 329, + sym_composite_type = 330, + sym_param_completer = 331, + sym_param_rest = 332, + sym_param_opt = 333, + sym_param_long_flag = 334, + sym_flag_capsule = 335, + sym_param_short_flag = 336, + sym__ctrl_statement = 337, + sym__ctrl_expression = 338, + sym__ctrl_expression_parenthesized = 339, + sym_ctrl_for = 340, + sym_ctrl_loop = 341, + sym_ctrl_while = 342, + sym_ctrl_if = 343, + sym_ctrl_if_parenthesized = 344, + sym__ctrl_match_body = 345, + sym_ctrl_match = 346, + sym_match_arm = 347, + sym_default_arm = 348, + sym_match_pattern = 349, + sym__match_pattern = 350, + sym_match_guard = 351, + sym__match_pattern_expression = 352, + sym__match_pattern_value = 353, + sym__match_pattern_list_body = 354, + sym__match_pattern_list = 355, + sym__match_pattern_rest = 356, + sym__match_pattern_record_body = 357, + sym__match_pattern_record = 358, + sym_ctrl_try = 359, + sym_ctrl_try_parenthesized = 360, + sym_pipe_element = 361, + sym_pipe_element_parenthesized = 362, + sym_scope_pattern = 363, + sym_wild_card = 364, + sym__command_list_body = 365, + sym_command_list = 366, + sym_block = 367, + sym__blosure = 368, + sym__where_predicate_lhs_path_head = 369, + sym__where_predicate_lhs = 370, + sym_where_command = 371, + sym_where_command_parenthesized = 372, + sym__binary_predicate = 373, + sym__binary_predicate_parenthesized = 374, + sym_where_predicate = 375, + sym__expression = 376, + sym__expression_parenthesized = 377, + sym_expr_unary = 378, + sym__expr_unary_minus = 379, + sym_expr_binary = 380, + sym_expr_binary_parenthesized = 381, + sym__expr_binary_expression = 382, + sym__expr_binary_expression_parenthesized = 383, + sym_expr_parenthesized = 384, + sym__spread_parenthesized = 385, + sym__expr_parenthesized_immediate = 386, + sym__parenthesized_body = 387, + sym_val_range = 388, + sym__val_range = 389, + sym__immediate_decimal = 390, + sym__value = 391, + sym_val_nothing = 392, + sym_val_bool = 393, + sym__spread_variable = 394, + sym_val_variable = 395, + sym_val_cellpath = 396, + sym_val_number = 397, + sym__val_number_decimal = 398, + sym__val_number = 399, + sym_val_duration = 400, + sym_val_filesize = 401, + sym_val_binary = 402, + sym_val_string = 403, + sym__raw_str = 404, + sym_string_content = 405, + sym__str_double_quotes = 406, + sym__str_single_quotes = 407, + sym__str_back_ticks = 408, + sym_val_interpolated = 409, + sym__inter_single_quotes = 410, + sym__inter_double_quotes = 411, + sym_expr_interpolated = 412, + sym_val_list = 413, + sym__spread_list = 414, + sym_list_body = 415, + sym_val_entry = 416, + sym_val_record = 417, + sym__spread_record = 418, + sym_record_body = 419, + sym_record_entry = 420, + sym__record_key = 421, + sym__table_head = 422, + sym__table_body = 423, + sym_val_table = 424, + sym_val_closure = 425, + sym_cell_path = 426, + sym__path_suffix = 427, + sym_path = 428, + sym_env_var = 429, + sym_command = 430, + sym__command_parenthesized = 431, + sym__cmd_arg = 432, + sym_redirection = 433, + sym__flag = 434, + sym__flag_equals_value = 435, + sym_short_flag = 436, + sym_long_flag = 437, + sym_unquoted = 438, + sym__unquoted_in_list = 439, + sym__unquoted_in_record = 440, + sym__unquoted_with_expr = 441, + sym__unquoted_in_list_with_expr = 442, + sym__unquoted_in_record_with_expr = 443, + sym__unquoted_anonymous_prefix = 444, + sym_comment = 445, + aux_sym_pipeline_repeat1 = 446, + aux_sym_pipeline_parenthesized_repeat1 = 447, + aux_sym__block_body_repeat1 = 448, + aux_sym__block_body_repeat2 = 449, + aux_sym_attribute_list_repeat1 = 450, + aux_sym_attribute_repeat1 = 451, + aux_sym_decl_def_repeat1 = 452, + aux_sym__types_body_repeat1 = 453, + aux_sym__types_body_repeat2 = 454, + aux_sym__types_body_repeat3 = 455, + aux_sym_parameter_parens_repeat1 = 456, + aux_sym_parameter_repeat1 = 457, + aux_sym_parameter_repeat2 = 458, + aux_sym__collection_body_repeat1 = 459, + aux_sym__composite_argument_body_repeat1 = 460, + aux_sym__ctrl_match_body_repeat1 = 461, + aux_sym_match_pattern_repeat1 = 462, + aux_sym__match_pattern_list_body_repeat1 = 463, + aux_sym__match_pattern_record_body_repeat1 = 464, + aux_sym_pipe_element_repeat1 = 465, + aux_sym_pipe_element_repeat2 = 466, + aux_sym_pipe_element_parenthesized_repeat1 = 467, + aux_sym_pipe_element_parenthesized_repeat2 = 468, + aux_sym__command_list_body_repeat1 = 469, + aux_sym__where_predicate_lhs_repeat1 = 470, + aux_sym__parenthesized_body_repeat1 = 471, + aux_sym__parenthesized_body_repeat2 = 472, + aux_sym_val_binary_repeat1 = 473, + aux_sym_string_content_repeat1 = 474, + aux_sym__inter_single_quotes_repeat1 = 475, + aux_sym__inter_double_quotes_repeat1 = 476, + aux_sym_list_body_repeat1 = 477, + aux_sym_record_body_repeat1 = 478, + aux_sym__table_body_repeat1 = 479, + aux_sym__command_parenthesized_repeat1 = 480, + aux_sym__unquoted_with_expr_repeat1 = 481, + aux_sym__unquoted_in_list_with_expr_repeat1 = 482, + aux_sym__unquoted_in_record_with_expr_repeat1 = 483, + anon_alias_sym__head = 484, + anon_alias_sym__prefix = 485, + anon_alias_sym__unit = 486, }; static const char * const ts_symbol_names[] = { @@ -645,6 +646,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_var_DASHwith_DASHopt_DASHtype] = "var-with-opt-type", [anon_sym_record] = "record", [anon_sym_list] = "list", + [anon_sym_LF] = "\n", [anon_sym_GT2] = ">", [anon_sym_oneof] = "oneof", [anon_sym_AT2] = "@", @@ -1134,6 +1136,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_var_DASHwith_DASHopt_DASHtype] = anon_sym_var_DASHwith_DASHopt_DASHtype, [anon_sym_record] = anon_sym_record, [anon_sym_list] = anon_sym_list, + [anon_sym_LF] = anon_sym_LF, [anon_sym_GT2] = anon_sym_GT, [anon_sym_oneof] = anon_sym_oneof, [anon_sym_AT2] = anon_sym_AT, @@ -2010,6 +2013,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_LF] = { + .visible = true, + .named = false, + }, [anon_sym_GT2] = { .visible = true, .named = false, @@ -3770,59 +3777,57 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [196] = {.index = 429, .length = 3}, [197] = {.index = 432, .length = 3}, [198] = {.index = 432, .length = 3}, - [199] = {.index = 435, .length = 3}, - [200] = {.index = 438, .length = 6}, - [201] = {.index = 444, .length = 2}, - [202] = {.index = 446, .length = 1}, - [203] = {.index = 447, .length = 2}, - [204] = {.index = 449, .length = 2}, - [205] = {.index = 451, .length = 2}, + [199] = {.index = 435, .length = 6}, + [200] = {.index = 441, .length = 2}, + [201] = {.index = 443, .length = 1}, + [202] = {.index = 444, .length = 2}, + [203] = {.index = 446, .length = 2}, + [204] = {.index = 448, .length = 2}, + [205] = {.index = 450, .length = 3}, [206] = {.index = 453, .length = 3}, [207] = {.index = 456, .length = 3}, [208] = {.index = 459, .length = 3}, [209] = {.index = 462, .length = 3}, [210] = {.index = 465, .length = 3}, - [211] = {.index = 468, .length = 3}, - [212] = {.index = 471, .length = 2}, - [213] = {.index = 473, .length = 2}, - [214] = {.index = 475, .length = 9}, - [215] = {.index = 484, .length = 6}, - [216] = {.index = 490, .length = 6}, - [217] = {.index = 496, .length = 1}, - [218] = {.index = 497, .length = 4}, - [219] = {.index = 501, .length = 5}, - [220] = {.index = 506, .length = 6}, - [221] = {.index = 512, .length = 3}, - [222] = {.index = 515, .length = 3}, - [223] = {.index = 518, .length = 3}, - [224] = {.index = 521, .length = 3}, - [225] = {.index = 524, .length = 3}, - [226] = {.index = 527, .length = 3}, - [227] = {.index = 530, .length = 3}, - [228] = {.index = 533, .length = 3}, - [229] = {.index = 536, .length = 3}, - [230] = {.index = 539, .length = 2}, - [231] = {.index = 541, .length = 2}, - [232] = {.index = 543, .length = 5}, - [233] = {.index = 548, .length = 4}, - [234] = {.index = 552, .length = 3}, - [235] = {.index = 555, .length = 3}, - [236] = {.index = 558, .length = 3}, - [237] = {.index = 561, .length = 3}, - [238] = {.index = 564, .length = 3}, - [239] = {.index = 567, .length = 3}, - [240] = {.index = 570, .length = 3}, - [241] = {.index = 573, .length = 3}, - [242] = {.index = 576, .length = 2}, - [243] = {.index = 578, .length = 5}, - [244] = {.index = 583, .length = 3}, - [245] = {.index = 586, .length = 3}, - [246] = {.index = 589, .length = 3}, - [247] = {.index = 592, .length = 3}, - [248] = {.index = 595, .length = 3}, - [249] = {.index = 598, .length = 3}, - [250] = {.index = 601, .length = 3}, - [251] = {.index = 604, .length = 3}, + [211] = {.index = 468, .length = 2}, + [212] = {.index = 470, .length = 2}, + [213] = {.index = 472, .length = 9}, + [214] = {.index = 481, .length = 6}, + [215] = {.index = 487, .length = 6}, + [216] = {.index = 493, .length = 1}, + [217] = {.index = 494, .length = 4}, + [218] = {.index = 498, .length = 5}, + [219] = {.index = 503, .length = 3}, + [220] = {.index = 506, .length = 3}, + [221] = {.index = 509, .length = 3}, + [222] = {.index = 512, .length = 3}, + [223] = {.index = 515, .length = 3}, + [224] = {.index = 518, .length = 3}, + [225] = {.index = 521, .length = 3}, + [226] = {.index = 524, .length = 3}, + [227] = {.index = 527, .length = 3}, + [228] = {.index = 530, .length = 2}, + [229] = {.index = 532, .length = 2}, + [230] = {.index = 534, .length = 5}, + [231] = {.index = 539, .length = 4}, + [232] = {.index = 543, .length = 3}, + [233] = {.index = 546, .length = 3}, + [234] = {.index = 549, .length = 3}, + [235] = {.index = 552, .length = 3}, + [236] = {.index = 555, .length = 3}, + [237] = {.index = 558, .length = 3}, + [238] = {.index = 561, .length = 3}, + [239] = {.index = 564, .length = 3}, + [240] = {.index = 567, .length = 2}, + [241] = {.index = 569, .length = 5}, + [242] = {.index = 574, .length = 3}, + [243] = {.index = 577, .length = 3}, + [244] = {.index = 580, .length = 3}, + [245] = {.index = 583, .length = 3}, + [246] = {.index = 586, .length = 3}, + [247] = {.index = 589, .length = 3}, + [248] = {.index = 592, .length = 3}, + [249] = {.index = 595, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -4429,61 +4434,57 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_key, 0}, {field_type, 1, .inherited = true}, [435] = - {field_completion, 1, .inherited = true}, - {field_key, 1, .inherited = true}, - {field_type, 1, .inherited = true}, - [438] = {field_completion, 0, .inherited = true}, {field_completion, 1, .inherited = true}, {field_key, 0, .inherited = true}, {field_key, 1, .inherited = true}, {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [444] = + [441] = {field_inner, 2}, {field_type, 2, .inherited = true}, - [446] = + [443] = {field_completion, 2}, - [447] = + [444] = {field_completion, 4}, {field_type, 3, .inherited = true}, - [449] = + [446] = {field_type, 1, .inherited = true}, {field_type, 2, .inherited = true}, - [451] = + [448] = {field_entry, 1, .inherited = true}, {field_rest, 2}, - [453] = + [450] = {field_condition, 2}, {field_else_branch, 5}, {field_then_branch, 3}, - [456] = + [453] = {field_condition, 2}, {field_else_block, 5}, {field_then_branch, 3}, - [459] = + [456] = {field_condition, 1}, {field_else_branch, 5}, {field_then_branch, 3}, - [462] = + [459] = {field_condition, 1}, {field_else_block, 5}, {field_then_branch, 3}, - [465] = + [462] = {field_condition, 1}, {field_else_branch, 5}, {field_then_branch, 2}, - [468] = + [465] = {field_condition, 1}, {field_else_block, 5}, {field_then_branch, 2}, - [471] = + [468] = {field_catch_branch, 5}, {field_try_branch, 2}, - [473] = + [470] = {field_catch_branch, 5}, {field_try_branch, 1}, - [475] = + [472] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 4, .inherited = true}, @@ -4493,163 +4494,156 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 4}, {field_rhs, 4, .inherited = true}, - [484] = + [481] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_opr, 0, .inherited = true}, {field_opr, 2}, {field_rhs, 0, .inherited = true}, {field_rhs, 4}, - [490] = + [487] = {field_lhs, 0}, {field_lhs, 4, .inherited = true}, {field_opr, 2}, {field_opr, 4, .inherited = true}, {field_rhs, 4}, {field_rhs, 4, .inherited = true}, - [496] = + [493] = {field_param_value, 3}, - [497] = + [494] = {field_body, 6}, {field_parameters, 5}, {field_quoted_name, 4, .inherited = true}, {field_unquoted_name, 4, .inherited = true}, - [501] = + [498] = {field_body, 7}, {field_parameters, 5}, {field_quoted_name, 3, .inherited = true}, {field_return_type, 6}, {field_unquoted_name, 3, .inherited = true}, - [506] = - {field_completion, 1, .inherited = true}, - {field_completion, 2, .inherited = true}, - {field_key, 1, .inherited = true}, - {field_key, 2, .inherited = true}, - {field_type, 1, .inherited = true}, - {field_type, 2, .inherited = true}, - [512] = + [503] = {field_completion, 3}, {field_inner, 2}, {field_type, 2, .inherited = true}, - [515] = + [506] = {field_condition, 2}, {field_else_branch, 6}, {field_then_branch, 4}, - [518] = + [509] = {field_condition, 2}, {field_else_block, 6}, {field_then_branch, 4}, - [521] = + [512] = {field_condition, 2}, {field_else_branch, 6}, {field_then_branch, 3}, - [524] = + [515] = {field_condition, 2}, {field_else_block, 6}, {field_then_branch, 3}, - [527] = + [518] = {field_condition, 1}, {field_else_branch, 6}, {field_then_branch, 3}, - [530] = + [521] = {field_condition, 1}, {field_else_block, 6}, {field_then_branch, 3}, - [533] = + [524] = {field_condition, 1}, {field_else_branch, 6}, {field_then_branch, 2}, - [536] = + [527] = {field_condition, 1}, {field_else_block, 6}, {field_then_branch, 2}, - [539] = + [530] = {field_catch_branch, 6}, {field_try_branch, 2}, - [541] = + [532] = {field_catch_branch, 6}, {field_try_branch, 1}, - [543] = + [534] = {field_body, 7}, {field_parameters, 5}, {field_quoted_name, 4, .inherited = true}, {field_return_type, 6}, {field_unquoted_name, 4, .inherited = true}, - [548] = + [539] = {field_body, 7}, {field_parameters, 6}, {field_quoted_name, 4, .inherited = true}, {field_unquoted_name, 4, .inherited = true}, - [552] = + [543] = {field_condition, 2}, {field_else_branch, 7}, {field_then_branch, 4}, - [555] = + [546] = {field_condition, 2}, {field_else_block, 7}, {field_then_branch, 4}, - [558] = + [549] = {field_condition, 2}, {field_else_branch, 7}, {field_then_branch, 3}, - [561] = + [552] = {field_condition, 2}, {field_else_block, 7}, {field_then_branch, 3}, - [564] = + [555] = {field_condition, 1}, {field_else_branch, 7}, {field_then_branch, 3}, - [567] = + [558] = {field_condition, 1}, {field_else_block, 7}, {field_then_branch, 3}, - [570] = + [561] = {field_condition, 1}, {field_else_branch, 7}, {field_then_branch, 2}, - [573] = + [564] = {field_condition, 1}, {field_else_block, 7}, {field_then_branch, 2}, - [576] = + [567] = {field_catch_branch, 7}, {field_try_branch, 2}, - [578] = + [569] = {field_body, 8}, {field_parameters, 6}, {field_quoted_name, 4, .inherited = true}, {field_return_type, 7}, {field_unquoted_name, 4, .inherited = true}, - [583] = + [574] = {field_condition, 2}, {field_else_branch, 8}, {field_then_branch, 4}, - [586] = + [577] = {field_condition, 2}, {field_else_block, 8}, {field_then_branch, 4}, - [589] = + [580] = {field_condition, 2}, {field_else_branch, 8}, {field_then_branch, 3}, - [592] = + [583] = {field_condition, 2}, {field_else_block, 8}, {field_then_branch, 3}, - [595] = + [586] = {field_condition, 1}, {field_else_branch, 8}, {field_then_branch, 3}, - [598] = + [589] = {field_condition, 1}, {field_else_block, 8}, {field_then_branch, 3}, - [601] = + [592] = {field_condition, 2}, {field_else_branch, 9}, {field_then_branch, 4}, - [604] = + [595] = {field_condition, 2}, {field_else_block, 9}, {field_then_branch, 4}, @@ -4817,28 +4811,28 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2] = 2, [3] = 3, [4] = 4, - [5] = 4, + [5] = 3, [6] = 3, [7] = 4, [8] = 3, [9] = 4, - [10] = 4, - [11] = 4, - [12] = 4, - [13] = 4, - [14] = 4, - [15] = 4, + [10] = 3, + [11] = 3, + [12] = 3, + [13] = 3, + [14] = 3, + [15] = 3, [16] = 16, - [17] = 16, - [18] = 16, - [19] = 16, - [20] = 16, - [21] = 21, - [22] = 22, - [23] = 16, - [24] = 22, - [25] = 16, - [26] = 21, + [17] = 17, + [18] = 17, + [19] = 19, + [20] = 19, + [21] = 16, + [22] = 17, + [23] = 17, + [24] = 17, + [25] = 17, + [26] = 17, [27] = 27, [28] = 27, [29] = 27, @@ -4849,164 +4843,164 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [34] = 27, [35] = 35, [36] = 36, - [37] = 37, - [38] = 38, - [39] = 36, - [40] = 37, - [41] = 38, - [42] = 42, - [43] = 35, + [37] = 35, + [38] = 36, + [39] = 39, + [40] = 40, + [41] = 41, + [42] = 36, + [43] = 39, [44] = 44, - [45] = 42, - [46] = 35, - [47] = 36, - [48] = 38, - [49] = 42, - [50] = 35, - [51] = 36, - [52] = 36, - [53] = 42, - [54] = 35, - [55] = 44, - [56] = 36, - [57] = 42, - [58] = 35, - [59] = 44, - [60] = 36, - [61] = 42, - [62] = 35, - [63] = 44, - [64] = 42, - [65] = 35, - [66] = 44, + [45] = 36, + [46] = 44, + [47] = 40, + [48] = 41, + [49] = 35, + [50] = 36, + [51] = 40, + [52] = 41, + [53] = 35, + [54] = 40, + [55] = 36, + [56] = 41, + [57] = 40, + [58] = 41, + [59] = 35, + [60] = 60, + [61] = 36, + [62] = 40, + [63] = 41, + [64] = 35, + [65] = 40, + [66] = 41, [67] = 35, - [68] = 35, - [69] = 44, - [70] = 35, - [71] = 71, + [68] = 41, + [69] = 41, + [70] = 41, + [71] = 41, [72] = 36, [73] = 44, [74] = 74, [75] = 75, - [76] = 74, + [76] = 76, [77] = 77, - [78] = 75, + [78] = 77, [79] = 74, - [80] = 80, - [81] = 80, + [80] = 74, + [81] = 76, [82] = 82, [83] = 83, - [84] = 82, + [84] = 83, [85] = 85, - [86] = 85, + [86] = 86, [87] = 82, - [88] = 88, - [89] = 85, + [88] = 83, + [89] = 82, [90] = 90, [91] = 91, [92] = 92, [93] = 93, [94] = 92, - [95] = 92, - [96] = 93, - [97] = 93, - [98] = 98, + [95] = 93, + [96] = 92, + [97] = 97, + [98] = 93, [99] = 99, [100] = 92, [101] = 93, - [102] = 99, - [103] = 103, - [104] = 93, - [105] = 105, + [102] = 93, + [103] = 97, + [104] = 99, + [105] = 99, [106] = 106, - [107] = 98, + [107] = 107, [108] = 108, [109] = 109, - [110] = 92, - [111] = 99, - [112] = 98, - [113] = 99, - [114] = 98, - [115] = 115, - [116] = 115, - [117] = 105, - [118] = 106, + [110] = 97, + [111] = 97, + [112] = 112, + [113] = 113, + [114] = 99, + [115] = 92, + [116] = 92, + [117] = 97, + [118] = 112, [119] = 99, - [120] = 120, - [121] = 115, - [122] = 98, - [123] = 108, - [124] = 108, - [125] = 105, - [126] = 106, - [127] = 108, - [128] = 103, - [129] = 105, - [130] = 92, + [120] = 106, + [121] = 106, + [122] = 113, + [123] = 112, + [124] = 109, + [125] = 109, + [126] = 113, + [127] = 106, + [128] = 112, + [129] = 109, + [130] = 108, [131] = 93, - [132] = 115, - [133] = 106, - [134] = 108, - [135] = 98, - [136] = 115, - [137] = 105, - [138] = 106, - [139] = 99, - [140] = 105, - [141] = 115, - [142] = 108, - [143] = 106, + [132] = 113, + [133] = 133, + [134] = 97, + [135] = 113, + [136] = 112, + [137] = 109, + [138] = 99, + [139] = 106, + [140] = 112, + [141] = 109, + [142] = 106, + [143] = 113, [144] = 144, - [145] = 144, - [146] = 144, - [147] = 147, - [148] = 144, - [149] = 147, - [150] = 147, - [151] = 147, + [145] = 145, + [146] = 145, + [147] = 145, + [148] = 145, + [149] = 144, + [150] = 144, + [151] = 144, [152] = 152, [153] = 153, - [154] = 153, - [155] = 155, - [156] = 152, + [154] = 154, + [155] = 152, + [156] = 144, [157] = 157, [158] = 158, [159] = 159, - [160] = 157, + [160] = 160, [161] = 161, - [162] = 162, - [163] = 163, + [162] = 145, + [163] = 154, [164] = 164, - [165] = 158, - [166] = 153, - [167] = 155, - [168] = 152, + [165] = 165, + [166] = 154, + [167] = 153, + [168] = 153, [169] = 157, [170] = 158, - [171] = 161, - [172] = 144, - [173] = 147, - [174] = 153, - [175] = 155, - [176] = 152, - [177] = 157, - [178] = 158, - [179] = 162, - [180] = 159, - [181] = 163, - [182] = 164, - [183] = 155, + [171] = 154, + [172] = 164, + [173] = 165, + [174] = 159, + [175] = 153, + [176] = 164, + [177] = 160, + [178] = 165, + [179] = 161, + [180] = 164, + [181] = 165, + [182] = 159, + [183] = 159, [184] = 184, - [185] = 184, + [185] = 185, [186] = 186, - [187] = 187, - [188] = 184, + [187] = 186, + [188] = 186, [189] = 144, - [190] = 147, - [191] = 184, - [192] = 187, - [193] = 193, - [194] = 103, + [190] = 190, + [191] = 186, + [192] = 190, + [193] = 145, + [194] = 108, [195] = 195, [196] = 196, [197] = 197, @@ -5020,301 +5014,301 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [205] = 205, [206] = 206, [207] = 207, - [208] = 195, - [209] = 209, - [210] = 210, - [211] = 211, - [212] = 212, - [213] = 213, - [214] = 214, - [215] = 215, - [216] = 216, - [217] = 217, - [218] = 196, + [208] = 196, + [209] = 197, + [210] = 198, + [211] = 199, + [212] = 200, + [213] = 204, + [214] = 205, + [215] = 206, + [216] = 207, + [217] = 195, + [218] = 218, [219] = 219, - [220] = 197, - [221] = 205, + [220] = 220, + [221] = 221, [222] = 222, - [223] = 198, - [224] = 199, - [225] = 200, - [226] = 201, - [227] = 202, - [228] = 203, - [229] = 204, - [230] = 222, - [231] = 206, - [232] = 207, - [233] = 195, + [223] = 223, + [224] = 224, + [225] = 225, + [226] = 226, + [227] = 203, + [228] = 228, + [229] = 229, + [230] = 201, + [231] = 228, + [232] = 195, + [233] = 218, [234] = 219, - [235] = 210, - [236] = 211, - [237] = 212, - [238] = 213, - [239] = 214, - [240] = 215, - [241] = 216, - [242] = 217, + [235] = 220, + [236] = 221, + [237] = 222, + [238] = 223, + [239] = 224, + [240] = 225, + [241] = 226, + [242] = 203, [243] = 196, - [244] = 219, - [245] = 197, - [246] = 205, - [247] = 222, - [248] = 198, - [249] = 199, - [250] = 200, - [251] = 201, - [252] = 202, - [253] = 203, - [254] = 204, - [255] = 206, - [256] = 207, - [257] = 209, - [258] = 210, - [259] = 211, - [260] = 212, - [261] = 213, - [262] = 214, - [263] = 215, - [264] = 216, - [265] = 217, - [266] = 209, + [244] = 197, + [245] = 198, + [246] = 199, + [247] = 200, + [248] = 204, + [249] = 205, + [250] = 206, + [251] = 207, + [252] = 228, + [253] = 229, + [254] = 201, + [255] = 218, + [256] = 219, + [257] = 220, + [258] = 221, + [259] = 222, + [260] = 223, + [261] = 202, + [262] = 229, + [263] = 226, + [264] = 224, + [265] = 225, + [266] = 202, [267] = 92, [268] = 93, [269] = 92, - [270] = 93, + [270] = 92, [271] = 93, - [272] = 92, - [273] = 98, - [274] = 274, + [272] = 93, + [273] = 99, + [274] = 97, [275] = 275, - [276] = 274, + [276] = 99, [277] = 92, - [278] = 93, - [279] = 99, - [280] = 280, - [281] = 280, - [282] = 99, + [278] = 278, + [279] = 93, + [280] = 275, + [281] = 278, + [282] = 278, [283] = 275, - [284] = 98, - [285] = 274, - [286] = 99, - [287] = 280, - [288] = 274, - [289] = 275, - [290] = 280, - [291] = 274, - [292] = 280, - [293] = 98, - [294] = 115, - [295] = 99, - [296] = 93, - [297] = 108, - [298] = 105, - [299] = 108, - [300] = 106, - [301] = 106, - [302] = 106, - [303] = 105, - [304] = 108, - [305] = 105, - [306] = 115, - [307] = 115, - [308] = 92, - [309] = 98, - [310] = 98, - [311] = 115, - [312] = 105, - [313] = 106, - [314] = 108, - [315] = 99, - [316] = 105, - [317] = 106, - [318] = 108, - [319] = 115, + [284] = 278, + [285] = 278, + [286] = 286, + [287] = 99, + [288] = 275, + [289] = 286, + [290] = 275, + [291] = 286, + [292] = 97, + [293] = 97, + [294] = 106, + [295] = 113, + [296] = 92, + [297] = 93, + [298] = 106, + [299] = 112, + [300] = 109, + [301] = 112, + [302] = 97, + [303] = 112, + [304] = 113, + [305] = 106, + [306] = 109, + [307] = 99, + [308] = 113, + [309] = 109, + [310] = 99, + [311] = 97, + [312] = 106, + [313] = 112, + [314] = 113, + [315] = 109, + [316] = 106, + [317] = 112, + [318] = 109, + [319] = 113, [320] = 320, [321] = 320, [322] = 320, - [323] = 147, - [324] = 144, - [325] = 144, - [326] = 147, - [327] = 147, + [323] = 144, + [324] = 145, + [325] = 145, + [326] = 145, + [327] = 144, [328] = 144, - [329] = 147, - [330] = 144, - [331] = 144, - [332] = 147, + [329] = 144, + [330] = 145, + [331] = 145, + [332] = 144, [333] = 333, [334] = 334, - [335] = 333, - [336] = 336, - [337] = 336, + [335] = 335, + [336] = 334, + [337] = 333, [338] = 338, [339] = 339, [340] = 340, [341] = 341, - [342] = 342, - [343] = 343, - [344] = 341, + [342] = 339, + [343] = 339, + [344] = 344, [345] = 345, - [346] = 342, - [347] = 345, - [348] = 345, - [349] = 349, + [346] = 346, + [347] = 347, + [348] = 348, + [349] = 344, [350] = 345, - [351] = 351, - [352] = 349, + [351] = 338, + [352] = 352, [353] = 353, - [354] = 345, - [355] = 340, - [356] = 345, - [357] = 357, - [358] = 345, - [359] = 345, - [360] = 360, - [361] = 360, - [362] = 345, - [363] = 338, - [364] = 353, - [365] = 343, - [366] = 345, - [367] = 345, + [354] = 339, + [355] = 346, + [356] = 347, + [357] = 348, + [358] = 339, + [359] = 339, + [360] = 339, + [361] = 339, + [362] = 339, + [363] = 339, + [364] = 339, + [365] = 340, + [366] = 341, + [367] = 367, [368] = 368, [369] = 369, [370] = 333, - [371] = 371, + [371] = 368, [372] = 334, - [373] = 369, - [374] = 336, - [375] = 342, + [373] = 335, + [374] = 374, + [375] = 353, [376] = 376, [377] = 377, - [378] = 378, - [379] = 376, - [380] = 380, - [381] = 338, - [382] = 353, - [383] = 376, - [384] = 380, - [385] = 339, - [386] = 380, - [387] = 380, - [388] = 351, - [389] = 389, - [390] = 357, - [391] = 343, - [392] = 360, - [393] = 340, - [394] = 341, - [395] = 349, - [396] = 380, - [397] = 397, + [378] = 352, + [379] = 379, + [380] = 344, + [381] = 345, + [382] = 338, + [383] = 346, + [384] = 347, + [385] = 385, + [386] = 340, + [387] = 341, + [388] = 376, + [389] = 348, + [390] = 385, + [391] = 391, + [392] = 385, + [393] = 393, + [394] = 367, + [395] = 385, + [396] = 385, + [397] = 376, [398] = 398, [399] = 399, [400] = 400, - [401] = 389, - [402] = 334, + [401] = 401, + [402] = 402, [403] = 403, - [404] = 369, - [405] = 368, - [406] = 336, - [407] = 407, - [408] = 408, - [409] = 409, - [410] = 410, + [404] = 404, + [405] = 405, + [406] = 406, + [407] = 374, + [408] = 334, + [409] = 368, + [410] = 379, [411] = 411, - [412] = 412, - [413] = 357, - [414] = 333, - [415] = 343, - [416] = 398, - [417] = 339, - [418] = 407, - [419] = 377, - [420] = 353, - [421] = 92, - [422] = 93, - [423] = 338, - [424] = 360, - [425] = 334, - [426] = 340, - [427] = 341, - [428] = 342, - [429] = 349, - [430] = 378, - [431] = 431, - [432] = 351, - [433] = 92, - [434] = 434, - [435] = 98, - [436] = 99, - [437] = 351, - [438] = 438, - [439] = 434, - [440] = 369, - [441] = 339, - [442] = 442, - [443] = 400, - [444] = 444, - [445] = 434, + [412] = 335, + [413] = 348, + [414] = 377, + [415] = 391, + [416] = 340, + [417] = 345, + [418] = 418, + [419] = 338, + [420] = 335, + [421] = 411, + [422] = 344, + [423] = 341, + [424] = 333, + [425] = 346, + [426] = 347, + [427] = 93, + [428] = 352, + [429] = 367, + [430] = 353, + [431] = 399, + [432] = 92, + [433] = 400, + [434] = 374, + [435] = 367, + [436] = 353, + [437] = 404, + [438] = 406, + [439] = 439, + [440] = 440, + [441] = 352, + [442] = 93, + [443] = 443, + [444] = 368, + [445] = 97, [446] = 446, - [447] = 357, - [448] = 408, - [449] = 409, - [450] = 410, - [451] = 411, - [452] = 403, - [453] = 368, - [454] = 93, + [447] = 440, + [448] = 92, + [449] = 99, + [450] = 450, + [451] = 440, + [452] = 401, + [453] = 402, + [454] = 398, [455] = 455, [456] = 456, - [457] = 455, - [458] = 455, + [457] = 457, + [458] = 458, [459] = 459, [460] = 460, - [461] = 460, - [462] = 106, - [463] = 446, + [461] = 97, + [462] = 462, + [463] = 99, [464] = 464, - [465] = 465, - [466] = 466, - [467] = 105, - [468] = 460, - [469] = 99, - [470] = 470, - [471] = 438, - [472] = 98, - [473] = 108, - [474] = 434, - [475] = 460, - [476] = 105, - [477] = 442, - [478] = 399, - [479] = 340, - [480] = 343, - [481] = 444, - [482] = 342, - [483] = 349, - [484] = 484, + [465] = 456, + [466] = 439, + [467] = 112, + [468] = 456, + [469] = 109, + [470] = 113, + [471] = 459, + [472] = 450, + [473] = 440, + [474] = 459, + [475] = 475, + [476] = 476, + [477] = 109, + [478] = 478, + [479] = 479, + [480] = 346, + [481] = 403, + [482] = 347, + [483] = 483, + [484] = 345, [485] = 485, - [486] = 486, - [487] = 360, - [488] = 341, - [489] = 489, - [490] = 490, + [486] = 338, + [487] = 334, + [488] = 488, + [489] = 113, + [490] = 344, [491] = 491, - [492] = 368, - [493] = 493, - [494] = 412, - [495] = 108, - [496] = 333, - [497] = 497, + [492] = 112, + [493] = 374, + [494] = 494, + [495] = 348, + [496] = 443, + [497] = 446, [498] = 498, - [499] = 106, - [500] = 500, + [499] = 499, + [500] = 405, [501] = 501, - [502] = 336, + [502] = 333, [503] = 503, [504] = 504, [505] = 505, @@ -5325,18 +5319,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [510] = 510, [511] = 511, [512] = 512, - [513] = 513, + [513] = 503, [514] = 514, - [515] = 515, - [516] = 516, - [517] = 353, - [518] = 338, + [515] = 455, + [516] = 341, + [517] = 517, + [518] = 518, [519] = 519, [520] = 520, [521] = 521, [522] = 522, [523] = 523, - [524] = 504, + [524] = 524, [525] = 525, [526] = 526, [527] = 527, @@ -5353,184 +5347,184 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [538] = 538, [539] = 539, [540] = 540, - [541] = 526, - [542] = 529, - [543] = 532, - [544] = 533, - [545] = 534, - [546] = 536, - [547] = 537, - [548] = 538, - [549] = 539, - [550] = 527, - [551] = 528, - [552] = 535, + [541] = 541, + [542] = 542, + [543] = 543, + [544] = 544, + [545] = 545, + [546] = 464, + [547] = 340, + [548] = 548, + [549] = 549, + [550] = 550, + [551] = 551, + [552] = 552, [553] = 553, - [554] = 553, - [555] = 527, - [556] = 519, - [557] = 520, - [558] = 521, - [559] = 522, - [560] = 523, - [561] = 538, - [562] = 525, - [563] = 530, - [564] = 531, - [565] = 565, - [566] = 566, - [567] = 567, - [568] = 568, - [569] = 569, + [554] = 554, + [555] = 555, + [556] = 556, + [557] = 557, + [558] = 558, + [559] = 504, + [560] = 505, + [561] = 506, + [562] = 507, + [563] = 508, + [564] = 509, + [565] = 510, + [566] = 511, + [567] = 512, + [568] = 503, + [569] = 514, [570] = 570, - [571] = 571, - [572] = 572, - [573] = 573, - [574] = 574, - [575] = 575, - [576] = 576, - [577] = 577, - [578] = 578, - [579] = 579, - [580] = 580, - [581] = 581, - [582] = 528, - [583] = 535, - [584] = 553, - [585] = 585, - [586] = 505, - [587] = 506, - [588] = 507, - [589] = 508, - [590] = 509, - [591] = 510, - [592] = 511, - [593] = 512, - [594] = 513, - [595] = 514, - [596] = 515, - [597] = 516, - [598] = 565, - [599] = 566, - [600] = 567, - [601] = 568, - [602] = 569, - [603] = 570, - [604] = 571, - [605] = 572, - [606] = 573, - [607] = 574, - [608] = 575, - [609] = 576, - [610] = 577, - [611] = 578, - [612] = 579, - [613] = 580, - [614] = 581, - [615] = 459, - [616] = 519, - [617] = 520, - [618] = 618, - [619] = 521, - [620] = 522, - [621] = 523, - [622] = 504, - [623] = 525, - [624] = 530, - [625] = 625, - [626] = 531, - [627] = 565, - [628] = 566, - [629] = 629, - [630] = 630, - [631] = 585, - [632] = 505, - [633] = 506, - [634] = 507, - [635] = 508, - [636] = 509, - [637] = 539, - [638] = 510, - [639] = 511, - [640] = 512, - [641] = 513, - [642] = 642, - [643] = 567, - [644] = 514, - [645] = 645, - [646] = 568, - [647] = 515, - [648] = 569, - [649] = 570, - [650] = 516, - [651] = 571, - [652] = 572, - [653] = 573, - [654] = 574, - [655] = 537, - [656] = 575, - [657] = 657, - [658] = 576, - [659] = 577, - [660] = 578, - [661] = 579, - [662] = 580, - [663] = 581, - [664] = 470, - [665] = 526, - [666] = 529, - [667] = 532, - [668] = 533, - [669] = 534, - [670] = 536, - [671] = 585, - [672] = 444, - [673] = 645, + [571] = 518, + [572] = 519, + [573] = 520, + [574] = 521, + [575] = 522, + [576] = 523, + [577] = 524, + [578] = 525, + [579] = 558, + [580] = 527, + [581] = 528, + [582] = 529, + [583] = 530, + [584] = 531, + [585] = 532, + [586] = 533, + [587] = 534, + [588] = 535, + [589] = 536, + [590] = 537, + [591] = 538, + [592] = 539, + [593] = 540, + [594] = 541, + [595] = 542, + [596] = 543, + [597] = 597, + [598] = 550, + [599] = 551, + [600] = 552, + [601] = 553, + [602] = 554, + [603] = 555, + [604] = 556, + [605] = 570, + [606] = 597, + [607] = 607, + [608] = 608, + [609] = 609, + [610] = 610, + [611] = 607, + [612] = 608, + [613] = 609, + [614] = 610, + [615] = 615, + [616] = 557, + [617] = 558, + [618] = 504, + [619] = 505, + [620] = 506, + [621] = 507, + [622] = 508, + [623] = 509, + [624] = 510, + [625] = 511, + [626] = 512, + [627] = 514, + [628] = 518, + [629] = 519, + [630] = 520, + [631] = 521, + [632] = 522, + [633] = 523, + [634] = 524, + [635] = 525, + [636] = 526, + [637] = 527, + [638] = 528, + [639] = 529, + [640] = 530, + [641] = 531, + [642] = 532, + [643] = 533, + [644] = 534, + [645] = 535, + [646] = 536, + [647] = 537, + [648] = 538, + [649] = 539, + [650] = 540, + [651] = 541, + [652] = 542, + [653] = 543, + [654] = 550, + [655] = 551, + [656] = 552, + [657] = 553, + [658] = 554, + [659] = 555, + [660] = 556, + [661] = 570, + [662] = 597, + [663] = 607, + [664] = 608, + [665] = 609, + [666] = 610, + [667] = 667, + [668] = 668, + [669] = 557, + [670] = 526, + [671] = 671, + [672] = 672, + [673] = 673, [674] = 674, - [675] = 675, + [675] = 544, [676] = 676, [677] = 677, - [678] = 500, + [678] = 545, [679] = 679, - [680] = 503, + [680] = 680, [681] = 681, [682] = 682, [683] = 683, - [684] = 490, - [685] = 685, + [684] = 684, + [685] = 485, [686] = 686, - [687] = 687, - [688] = 688, + [687] = 368, + [688] = 335, [689] = 689, - [690] = 690, + [690] = 443, [691] = 691, [692] = 692, - [693] = 642, + [693] = 693, [694] = 694, [695] = 695, - [696] = 442, + [696] = 478, [697] = 697, [698] = 698, [699] = 699, [700] = 700, - [701] = 369, + [701] = 701, [702] = 702, [703] = 703, [704] = 704, [705] = 705, - [706] = 334, + [706] = 475, [707] = 707, [708] = 708, [709] = 709, - [710] = 710, + [710] = 446, [711] = 711, - [712] = 712, + [712] = 367, [713] = 713, [714] = 714, - [715] = 713, + [715] = 715, [716] = 716, [717] = 717, - [718] = 718, + [718] = 476, [719] = 719, [720] = 720, [721] = 721, @@ -5541,49 +5535,49 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [726] = 726, [727] = 727, [728] = 728, - [729] = 357, + [729] = 729, [730] = 730, [731] = 731, [732] = 732, [733] = 733, [734] = 734, - [735] = 735, + [735] = 443, [736] = 736, [737] = 737, [738] = 738, [739] = 739, - [740] = 740, + [740] = 713, [741] = 741, - [742] = 742, + [742] = 714, [743] = 743, - [744] = 744, - [745] = 714, - [746] = 746, + [744] = 716, + [745] = 745, + [746] = 717, [747] = 747, - [748] = 748, - [749] = 749, + [748] = 719, + [749] = 720, [750] = 750, - [751] = 725, - [752] = 731, - [753] = 732, - [754] = 733, - [755] = 734, - [756] = 714, - [757] = 713, - [758] = 716, - [759] = 717, - [760] = 718, - [761] = 493, - [762] = 716, + [751] = 751, + [752] = 726, + [753] = 727, + [754] = 352, + [755] = 446, + [756] = 729, + [757] = 731, + [758] = 733, + [759] = 736, + [760] = 499, + [761] = 761, + [762] = 762, [763] = 763, [764] = 764, - [765] = 717, - [766] = 766, + [765] = 765, + [766] = 443, [767] = 767, - [768] = 718, - [769] = 769, + [768] = 768, + [769] = 455, [770] = 770, - [771] = 771, + [771] = 464, [772] = 772, [773] = 773, [774] = 774, @@ -5591,123 +5585,123 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [776] = 776, [777] = 777, [778] = 778, - [779] = 444, + [779] = 779, [780] = 780, [781] = 781, [782] = 782, - [783] = 339, - [784] = 351, - [785] = 485, - [786] = 442, - [787] = 486, - [788] = 788, - [789] = 789, - [790] = 484, - [791] = 444, - [792] = 792, - [793] = 793, - [794] = 794, - [795] = 470, - [796] = 734, - [797] = 797, + [783] = 783, + [784] = 784, + [785] = 726, + [786] = 727, + [787] = 729, + [788] = 731, + [789] = 733, + [790] = 736, + [791] = 738, + [792] = 713, + [793] = 714, + [794] = 716, + [795] = 717, + [796] = 719, + [797] = 720, [798] = 798, [799] = 799, [800] = 800, [801] = 801, - [802] = 802, + [802] = 483, [803] = 803, [804] = 804, [805] = 805, [806] = 806, [807] = 807, - [808] = 808, + [808] = 738, [809] = 809, [810] = 810, - [811] = 748, - [812] = 749, - [813] = 750, - [814] = 725, - [815] = 731, - [816] = 732, - [817] = 733, - [818] = 734, - [819] = 714, - [820] = 713, - [821] = 716, - [822] = 717, - [823] = 718, + [811] = 811, + [812] = 812, + [813] = 813, + [814] = 814, + [815] = 815, + [816] = 816, + [817] = 817, + [818] = 353, + [819] = 819, + [820] = 820, + [821] = 821, + [822] = 822, + [823] = 823, [824] = 824, - [825] = 825, - [826] = 826, - [827] = 827, - [828] = 828, - [829] = 829, - [830] = 497, - [831] = 831, - [832] = 832, - [833] = 833, - [834] = 834, - [835] = 835, - [836] = 836, - [837] = 837, - [838] = 748, - [839] = 749, - [840] = 750, - [841] = 725, - [842] = 731, - [843] = 732, - [844] = 733, - [845] = 734, - [846] = 714, - [847] = 713, - [848] = 716, - [849] = 717, - [850] = 718, - [851] = 851, - [852] = 852, - [853] = 853, - [854] = 854, - [855] = 855, - [856] = 856, - [857] = 857, - [858] = 858, - [859] = 859, - [860] = 860, - [861] = 861, - [862] = 862, - [863] = 863, - [864] = 489, - [865] = 748, - [866] = 749, - [867] = 750, - [868] = 725, - [869] = 731, - [870] = 732, - [871] = 733, - [872] = 734, - [873] = 714, - [874] = 713, - [875] = 716, - [876] = 717, - [877] = 718, - [878] = 878, - [879] = 879, - [880] = 733, - [881] = 881, - [882] = 748, - [883] = 749, - [884] = 750, + [825] = 488, + [826] = 726, + [827] = 727, + [828] = 729, + [829] = 731, + [830] = 733, + [831] = 736, + [832] = 738, + [833] = 713, + [834] = 714, + [835] = 716, + [836] = 717, + [837] = 719, + [838] = 720, + [839] = 839, + [840] = 840, + [841] = 841, + [842] = 842, + [843] = 843, + [844] = 844, + [845] = 845, + [846] = 846, + [847] = 847, + [848] = 848, + [849] = 849, + [850] = 850, + [851] = 726, + [852] = 727, + [853] = 729, + [854] = 731, + [855] = 733, + [856] = 736, + [857] = 738, + [858] = 713, + [859] = 714, + [860] = 716, + [861] = 717, + [862] = 719, + [863] = 720, + [864] = 864, + [865] = 865, + [866] = 866, + [867] = 867, + [868] = 868, + [869] = 869, + [870] = 870, + [871] = 726, + [872] = 727, + [873] = 729, + [874] = 731, + [875] = 733, + [876] = 736, + [877] = 738, + [878] = 713, + [879] = 714, + [880] = 716, + [881] = 717, + [882] = 719, + [883] = 720, + [884] = 884, [885] = 885, [886] = 886, [887] = 887, [888] = 888, - [889] = 748, - [890] = 749, - [891] = 750, - [892] = 725, - [893] = 731, - [894] = 732, - [895] = 459, + [889] = 889, + [890] = 890, + [891] = 891, + [892] = 498, + [893] = 893, + [894] = 479, + [895] = 895, [896] = 896, [897] = 897, [898] = 898, @@ -5717,83 +5711,83 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [902] = 902, [903] = 903, [904] = 904, - [905] = 500, + [905] = 905, [906] = 906, - [907] = 503, - [908] = 490, + [907] = 907, + [908] = 517, [909] = 909, - [910] = 910, + [910] = 905, [911] = 911, - [912] = 912, + [912] = 677, [913] = 913, [914] = 914, [915] = 915, [916] = 916, [917] = 917, - [918] = 692, - [919] = 919, - [920] = 675, + [918] = 918, + [919] = 674, + [920] = 920, [921] = 921, [922] = 922, [923] = 923, [924] = 924, - [925] = 925, + [925] = 689, [926] = 926, [927] = 927, - [928] = 697, - [929] = 698, - [930] = 930, - [931] = 931, - [932] = 465, - [933] = 368, - [934] = 705, - [935] = 466, + [928] = 704, + [929] = 705, + [930] = 707, + [931] = 682, + [932] = 455, + [933] = 933, + [934] = 934, + [935] = 935, [936] = 936, [937] = 937, - [938] = 491, - [939] = 700, - [940] = 470, + [938] = 938, + [939] = 905, + [940] = 940, [941] = 941, - [942] = 498, + [942] = 942, [943] = 943, [944] = 944, - [945] = 945, - [946] = 946, - [947] = 947, + [945] = 462, + [946] = 374, + [947] = 491, [948] = 948, [949] = 949, - [950] = 704, + [950] = 494, [951] = 951, - [952] = 712, - [953] = 953, - [954] = 954, - [955] = 955, - [956] = 709, - [957] = 459, + [952] = 952, + [953] = 485, + [954] = 464, + [955] = 475, + [956] = 478, + [957] = 957, [958] = 958, [959] = 959, - [960] = 960, - [961] = 961, - [962] = 921, - [963] = 921, - [964] = 540, + [960] = 681, + [961] = 460, + [962] = 962, + [963] = 708, + [964] = 964, [965] = 965, - [966] = 691, + [966] = 475, [967] = 967, - [968] = 710, - [969] = 674, - [970] = 500, - [971] = 971, - [972] = 679, - [973] = 503, - [974] = 686, - [975] = 490, + [968] = 914, + [969] = 478, + [970] = 920, + [971] = 923, + [972] = 972, + [973] = 973, + [974] = 974, + [975] = 975, [976] = 976, [977] = 977, - [978] = 978, + [978] = 964, [979] = 979, [980] = 980, - [981] = 681, + [981] = 981, [982] = 982, [983] = 983, [984] = 984, @@ -5802,88 +5796,88 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [987] = 987, [988] = 988, [989] = 989, - [990] = 990, + [990] = 443, [991] = 991, [992] = 992, [993] = 993, [994] = 994, [995] = 995, - [996] = 996, - [997] = 997, + [996] = 671, + [997] = 965, [998] = 998, - [999] = 999, - [1000] = 1000, + [999] = 711, + [1000] = 692, [1001] = 1001, [1002] = 1002, [1003] = 1003, - [1004] = 1004, - [1005] = 978, - [1006] = 1006, + [1004] = 693, + [1005] = 1005, + [1006] = 949, [1007] = 1007, [1008] = 1008, [1009] = 1009, [1010] = 1010, [1011] = 1011, - [1012] = 682, + [1012] = 1012, [1013] = 1013, - [1014] = 1014, - [1015] = 1015, - [1016] = 687, - [1017] = 1017, + [1014] = 694, + [1015] = 951, + [1016] = 1016, + [1017] = 988, [1018] = 1018, [1019] = 1019, [1020] = 1020, - [1021] = 971, + [1021] = 1021, [1022] = 1022, [1023] = 1023, [1024] = 1024, - [1025] = 886, - [1026] = 960, + [1025] = 1025, + [1026] = 1026, [1027] = 1027, - [1028] = 937, + [1028] = 1028, [1029] = 1029, [1030] = 1030, [1031] = 1031, [1032] = 1032, - [1033] = 688, + [1033] = 1033, [1034] = 1034, [1035] = 1035, [1036] = 1036, [1037] = 1037, - [1038] = 1038, - [1039] = 1039, - [1040] = 1040, + [1038] = 695, + [1039] = 697, + [1040] = 698, [1041] = 1041, - [1042] = 1042, - [1043] = 1043, + [1042] = 709, + [1043] = 691, [1044] = 1044, [1045] = 1045, [1046] = 1046, - [1047] = 941, + [1047] = 683, [1048] = 1048, - [1049] = 961, - [1050] = 931, - [1051] = 1051, - [1052] = 1052, - [1053] = 1053, - [1054] = 1054, + [1049] = 1049, + [1050] = 1050, + [1051] = 672, + [1052] = 673, + [1053] = 699, + [1054] = 899, [1055] = 1055, - [1056] = 1056, - [1057] = 1057, + [1056] = 700, + [1057] = 701, [1058] = 1058, - [1059] = 1059, + [1059] = 702, [1060] = 1060, [1061] = 1061, [1062] = 1062, - [1063] = 948, + [1063] = 1063, [1064] = 1064, [1065] = 1065, [1066] = 1066, [1067] = 1067, - [1068] = 954, - [1069] = 1069, + [1068] = 703, + [1069] = 964, [1070] = 1070, - [1071] = 683, + [1071] = 1071, [1072] = 1072, [1073] = 1073, [1074] = 1074, @@ -5895,15 +5889,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1080] = 1080, [1081] = 1081, [1082] = 1082, - [1083] = 958, + [1083] = 1070, [1084] = 1084, [1085] = 1085, - [1086] = 689, + [1086] = 1086, [1087] = 1087, - [1088] = 1088, - [1089] = 1089, - [1090] = 959, - [1091] = 1091, + [1088] = 1072, + [1089] = 903, + [1090] = 1090, + [1091] = 1073, [1092] = 1092, [1093] = 1093, [1094] = 1094, @@ -5919,29 +5913,29 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1104] = 1104, [1105] = 1105, [1106] = 1106, - [1107] = 1107, + [1107] = 803, [1108] = 1108, - [1109] = 985, - [1110] = 987, - [1111] = 988, + [1109] = 1109, + [1110] = 485, + [1111] = 1111, [1112] = 1112, [1113] = 1113, - [1114] = 1043, + [1114] = 1114, [1115] = 1115, - [1116] = 1116, - [1117] = 1117, - [1118] = 1118, - [1119] = 702, + [1116] = 944, + [1117] = 965, + [1118] = 918, + [1119] = 1119, [1120] = 1120, - [1121] = 707, - [1122] = 444, - [1123] = 708, - [1124] = 703, - [1125] = 971, - [1126] = 711, - [1127] = 677, - [1128] = 690, - [1129] = 978, + [1121] = 1121, + [1122] = 1122, + [1123] = 1123, + [1124] = 1124, + [1125] = 1125, + [1126] = 1126, + [1127] = 1127, + [1128] = 1128, + [1129] = 1129, [1130] = 1130, [1131] = 1131, [1132] = 1132, @@ -5975,16 +5969,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1160] = 1160, [1161] = 1161, [1162] = 1162, - [1163] = 1112, + [1163] = 1163, [1164] = 1164, [1165] = 1165, [1166] = 1166, - [1167] = 1167, + [1167] = 1002, [1168] = 1168, - [1169] = 699, - [1170] = 1170, + [1169] = 1169, + [1170] = 1157, [1171] = 1171, - [1172] = 1113, + [1172] = 1172, [1173] = 1173, [1174] = 1174, [1175] = 1175, @@ -6000,14 +5994,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1185] = 1185, [1186] = 1186, [1187] = 1187, - [1188] = 1188, + [1188] = 679, [1189] = 1189, [1190] = 1190, [1191] = 1191, [1192] = 1192, [1193] = 1193, [1194] = 1194, - [1195] = 1195, + [1195] = 684, [1196] = 1196, [1197] = 1197, [1198] = 1198, @@ -6017,9 +6011,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1202] = 1202, [1203] = 1203, [1204] = 1204, - [1205] = 967, + [1205] = 686, [1206] = 1206, - [1207] = 1043, + [1207] = 1207, [1208] = 1208, [1209] = 1209, [1210] = 1210, @@ -6032,29 +6026,29 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1217] = 1217, [1218] = 1218, [1219] = 1219, - [1220] = 685, + [1220] = 1220, [1221] = 1221, [1222] = 1222, - [1223] = 676, + [1223] = 1223, [1224] = 1224, - [1225] = 1225, + [1225] = 1162, [1226] = 1226, [1227] = 1227, - [1228] = 1228, - [1229] = 1229, + [1228] = 980, + [1229] = 1201, [1230] = 1230, [1231] = 1231, - [1232] = 1232, + [1232] = 1002, [1233] = 1233, - [1234] = 1234, + [1234] = 988, [1235] = 1235, [1236] = 1236, - [1237] = 1151, + [1237] = 1237, [1238] = 1238, - [1239] = 1112, - [1240] = 1230, - [1241] = 1241, - [1242] = 1113, + [1239] = 1086, + [1240] = 1240, + [1241] = 980, + [1242] = 1242, [1243] = 1243, [1244] = 1244, [1245] = 1245, @@ -6068,1024 +6062,1024 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1253] = 1253, [1254] = 1254, [1255] = 1255, - [1256] = 1232, - [1257] = 1232, - [1258] = 1232, - [1259] = 1232, - [1260] = 1149, + [1256] = 1162, + [1257] = 1162, + [1258] = 1162, + [1259] = 1221, + [1260] = 1260, [1261] = 1261, - [1262] = 1262, - [1263] = 764, - [1264] = 888, - [1265] = 730, - [1266] = 955, - [1267] = 1133, - [1268] = 944, - [1269] = 721, - [1270] = 898, - [1271] = 722, - [1272] = 936, - [1273] = 724, - [1274] = 899, - [1275] = 1275, - [1276] = 1142, - [1277] = 887, - [1278] = 1136, - [1279] = 735, - [1280] = 917, - [1281] = 911, - [1282] = 913, - [1283] = 1140, - [1284] = 922, - [1285] = 947, - [1286] = 1145, - [1287] = 1287, - [1288] = 1203, - [1289] = 695, - [1290] = 927, - [1291] = 1291, - [1292] = 923, - [1293] = 924, - [1294] = 945, - [1295] = 926, - [1296] = 914, - [1297] = 949, - [1298] = 726, - [1299] = 897, - [1300] = 727, - [1301] = 915, - [1302] = 909, - [1303] = 943, - [1304] = 694, - [1305] = 953, - [1306] = 728, - [1307] = 906, - [1308] = 1138, - [1309] = 746, - [1310] = 747, - [1311] = 723, - [1312] = 903, - [1313] = 904, - [1314] = 1147, - [1315] = 1144, - [1316] = 719, - [1317] = 902, - [1318] = 896, - [1319] = 763, - [1320] = 930, - [1321] = 910, - [1322] = 946, - [1323] = 1247, - [1324] = 720, - [1325] = 743, - [1326] = 744, - [1327] = 900, - [1328] = 1328, - [1329] = 1329, - [1330] = 1251, - [1331] = 1331, - [1332] = 916, - [1333] = 951, - [1334] = 901, - [1335] = 1254, - [1336] = 736, - [1337] = 737, - [1338] = 1328, - [1339] = 738, - [1340] = 739, - [1341] = 740, - [1342] = 741, - [1343] = 742, - [1344] = 925, - [1345] = 919, + [1262] = 959, + [1263] = 809, + [1264] = 1264, + [1265] = 924, + [1266] = 849, + [1267] = 927, + [1268] = 811, + [1269] = 938, + [1270] = 940, + [1271] = 850, + [1272] = 952, + [1273] = 1273, + [1274] = 848, + [1275] = 942, + [1276] = 926, + [1277] = 804, + [1278] = 798, + [1279] = 958, + [1280] = 864, + [1281] = 865, + [1282] = 957, + [1283] = 1148, + [1284] = 680, + [1285] = 1149, + [1286] = 962, + [1287] = 1150, + [1288] = 916, + [1289] = 896, + [1290] = 1151, + [1291] = 676, + [1292] = 897, + [1293] = 1230, + [1294] = 922, + [1295] = 898, + [1296] = 1231, + [1297] = 847, + [1298] = 902, + [1299] = 1236, + [1300] = 1300, + [1301] = 948, + [1302] = 904, + [1303] = 1237, + [1304] = 715, + [1305] = 906, + [1306] = 907, + [1307] = 941, + [1308] = 895, + [1309] = 1255, + [1310] = 911, + [1311] = 1207, + [1312] = 913, + [1313] = 1137, + [1314] = 915, + [1315] = 1130, + [1316] = 933, + [1317] = 1317, + [1318] = 934, + [1319] = 935, + [1320] = 936, + [1321] = 937, + [1322] = 917, + [1323] = 805, + [1324] = 812, + [1325] = 813, + [1326] = 815, + [1327] = 943, + [1328] = 806, + [1329] = 820, + [1330] = 807, + [1331] = 921, + [1332] = 1332, + [1333] = 1333, + [1334] = 900, + [1335] = 840, + [1336] = 841, + [1337] = 842, + [1338] = 843, + [1339] = 844, + [1340] = 845, + [1341] = 846, + [1342] = 909, + [1343] = 1273, + [1344] = 839, + [1345] = 1345, [1346] = 1346, [1347] = 1347, [1348] = 1348, - [1349] = 1348, + [1349] = 1349, [1350] = 1350, [1351] = 1351, [1352] = 1352, - [1353] = 1353, + [1353] = 517, [1354] = 1354, - [1355] = 540, + [1355] = 1354, [1356] = 1356, - [1357] = 1357, + [1357] = 1350, [1358] = 1358, - [1359] = 691, + [1359] = 1351, [1360] = 1360, - [1361] = 1361, + [1361] = 683, [1362] = 1362, - [1363] = 1363, + [1363] = 1356, [1364] = 1364, - [1365] = 1362, + [1365] = 1365, [1366] = 1366, - [1367] = 1354, - [1368] = 1356, - [1369] = 1358, - [1370] = 1357, - [1371] = 1350, - [1372] = 1372, - [1373] = 1362, - [1374] = 1362, - [1375] = 1362, + [1367] = 1360, + [1368] = 1368, + [1369] = 1369, + [1370] = 1360, + [1371] = 1360, + [1372] = 1347, + [1373] = 1360, + [1374] = 1358, + [1375] = 1375, [1376] = 1376, [1377] = 1377, [1378] = 1378, - [1379] = 389, + [1379] = 1379, [1380] = 1366, [1381] = 1381, - [1382] = 1382, + [1382] = 379, [1383] = 1383, [1384] = 1384, [1385] = 1385, - [1386] = 389, - [1387] = 407, - [1388] = 398, + [1386] = 379, + [1387] = 1387, + [1388] = 1388, [1389] = 1389, - [1390] = 1390, - [1391] = 1391, - [1392] = 1392, + [1390] = 411, + [1391] = 399, + [1392] = 399, [1393] = 1393, [1394] = 1394, [1395] = 1395, - [1396] = 398, - [1397] = 407, - [1398] = 1398, + [1396] = 411, + [1397] = 92, + [1398] = 93, [1399] = 1399, - [1400] = 92, - [1401] = 93, - [1402] = 93, - [1403] = 98, + [1400] = 1400, + [1401] = 92, + [1402] = 450, + [1403] = 517, [1404] = 1404, - [1405] = 540, - [1406] = 446, - [1407] = 1407, - [1408] = 92, - [1409] = 1409, - [1410] = 99, - [1411] = 1411, - [1412] = 1412, - [1413] = 98, - [1414] = 444, - [1415] = 446, - [1416] = 691, + [1405] = 1405, + [1406] = 1406, + [1407] = 97, + [1408] = 93, + [1409] = 99, + [1410] = 112, + [1411] = 446, + [1412] = 113, + [1413] = 109, + [1414] = 683, + [1415] = 99, + [1416] = 1416, [1417] = 1417, [1418] = 1418, - [1419] = 442, - [1420] = 1420, - [1421] = 106, - [1422] = 99, - [1423] = 108, - [1424] = 1424, - [1425] = 105, - [1426] = 442, - [1427] = 444, - [1428] = 106, - [1429] = 470, - [1430] = 105, - [1431] = 459, - [1432] = 108, - [1433] = 500, - [1434] = 645, - [1435] = 503, - [1436] = 642, - [1437] = 490, - [1438] = 470, - [1439] = 459, - [1440] = 444, - [1441] = 642, - [1442] = 442, - [1443] = 645, - [1444] = 500, - [1445] = 1445, - [1446] = 1446, + [1419] = 1419, + [1420] = 450, + [1421] = 443, + [1422] = 1422, + [1423] = 1423, + [1424] = 97, + [1425] = 455, + [1426] = 109, + [1427] = 113, + [1428] = 446, + [1429] = 112, + [1430] = 443, + [1431] = 464, + [1432] = 544, + [1433] = 464, + [1434] = 485, + [1435] = 478, + [1436] = 475, + [1437] = 455, + [1438] = 545, + [1439] = 545, + [1440] = 478, + [1441] = 443, + [1442] = 1442, + [1443] = 485, + [1444] = 1444, + [1445] = 544, + [1446] = 446, [1447] = 1447, - [1448] = 503, - [1449] = 490, - [1450] = 1446, - [1451] = 459, - [1452] = 470, - [1453] = 1453, - [1454] = 1454, - [1455] = 1445, - [1456] = 442, - [1457] = 1454, - [1458] = 1447, - [1459] = 444, - [1460] = 937, - [1461] = 500, - [1462] = 961, - [1463] = 503, - [1464] = 1464, - [1465] = 931, - [1466] = 1466, - [1467] = 1467, - [1468] = 1468, - [1469] = 1469, - [1470] = 941, - [1471] = 959, - [1472] = 886, + [1448] = 475, + [1449] = 1449, + [1450] = 1444, + [1451] = 1451, + [1452] = 443, + [1453] = 446, + [1454] = 1442, + [1455] = 1447, + [1456] = 455, + [1457] = 464, + [1458] = 1451, + [1459] = 803, + [1460] = 1460, + [1461] = 914, + [1462] = 1462, + [1463] = 1463, + [1464] = 944, + [1465] = 949, + [1466] = 951, + [1467] = 899, + [1468] = 903, + [1469] = 918, + [1470] = 920, + [1471] = 923, + [1472] = 1472, [1473] = 1473, [1474] = 1474, [1475] = 1475, - [1476] = 470, - [1477] = 490, + [1476] = 1476, + [1477] = 1477, [1478] = 1478, - [1479] = 948, + [1479] = 1479, [1480] = 1480, - [1481] = 459, - [1482] = 960, - [1483] = 1483, - [1484] = 1484, - [1485] = 1485, - [1486] = 954, - [1487] = 958, - [1488] = 1043, - [1489] = 1489, - [1490] = 960, - [1491] = 1491, - [1492] = 886, - [1493] = 1112, - [1494] = 961, - [1495] = 941, - [1496] = 1496, - [1497] = 931, - [1498] = 1498, - [1499] = 503, - [1500] = 490, - [1501] = 937, - [1502] = 958, - [1503] = 967, - [1504] = 959, - [1505] = 954, - [1506] = 948, - [1507] = 500, - [1508] = 1113, - [1509] = 1509, - [1510] = 1510, - [1511] = 1112, - [1512] = 1113, - [1513] = 1513, - [1514] = 1514, - [1515] = 1515, - [1516] = 1516, - [1517] = 1517, - [1518] = 1043, - [1519] = 389, - [1520] = 967, - [1521] = 1521, - [1522] = 1522, - [1523] = 1523, + [1481] = 1481, + [1482] = 455, + [1483] = 464, + [1484] = 485, + [1485] = 475, + [1486] = 478, + [1487] = 1487, + [1488] = 899, + [1489] = 988, + [1490] = 803, + [1491] = 918, + [1492] = 1492, + [1493] = 1002, + [1494] = 980, + [1495] = 903, + [1496] = 485, + [1497] = 949, + [1498] = 475, + [1499] = 478, + [1500] = 1500, + [1501] = 920, + [1502] = 923, + [1503] = 951, + [1504] = 914, + [1505] = 1086, + [1506] = 944, + [1507] = 1507, + [1508] = 1086, + [1509] = 1211, + [1510] = 1220, + [1511] = 1223, + [1512] = 1235, + [1513] = 1246, + [1514] = 1254, + [1515] = 1260, + [1516] = 1132, + [1517] = 1204, + [1518] = 1135, + [1519] = 1143, + [1520] = 1186, + [1521] = 1147, + [1522] = 1226, + [1523] = 1177, [1524] = 1524, - [1525] = 1525, + [1525] = 1181, [1526] = 1526, - [1527] = 1527, + [1527] = 1185, [1528] = 1528, - [1529] = 1529, - [1530] = 1530, - [1531] = 1531, + [1529] = 1158, + [1530] = 1244, + [1531] = 1144, [1532] = 1532, - [1533] = 1533, - [1534] = 1534, - [1535] = 1535, - [1536] = 1536, - [1537] = 1537, - [1538] = 1538, - [1539] = 1539, - [1540] = 1509, + [1533] = 1178, + [1534] = 1526, + [1535] = 1187, + [1536] = 1528, + [1537] = 1196, + [1538] = 1210, + [1539] = 1206, + [1540] = 1540, [1541] = 1541, - [1542] = 1542, + [1542] = 1233, [1543] = 1543, - [1544] = 1535, - [1545] = 1536, - [1546] = 1526, - [1547] = 1527, - [1548] = 1528, - [1549] = 1529, - [1550] = 1530, - [1551] = 1531, - [1552] = 1532, - [1553] = 1513, - [1554] = 1514, - [1555] = 1516, - [1556] = 1517, - [1557] = 1521, - [1558] = 1522, - [1559] = 1523, - [1560] = 1524, - [1561] = 1533, - [1562] = 1534, - [1563] = 1537, - [1564] = 1176, - [1565] = 1262, - [1566] = 1250, - [1567] = 1255, - [1568] = 1135, - [1569] = 1158, - [1570] = 1182, - [1571] = 1221, - [1572] = 1226, - [1573] = 1235, - [1574] = 1241, - [1575] = 1245, - [1576] = 1538, - [1577] = 1530, - [1578] = 1187, - [1579] = 1243, - [1580] = 1156, - [1581] = 1175, - [1582] = 1193, - [1583] = 1222, - [1584] = 1168, - [1585] = 1173, - [1586] = 1180, - [1587] = 1190, - [1588] = 1197, - [1589] = 1234, - [1590] = 1244, - [1591] = 1261, - [1592] = 1159, - [1593] = 1178, - [1594] = 1183, - [1595] = 1188, - [1596] = 1196, - [1597] = 1201, - [1598] = 1211, - [1599] = 1217, - [1600] = 1225, - [1601] = 1236, - [1602] = 1249, - [1603] = 1253, - [1604] = 1539, - [1605] = 1154, - [1606] = 1161, - [1607] = 1164, - [1608] = 1171, - [1609] = 1174, - [1610] = 1185, - [1611] = 1192, - [1612] = 1195, - [1613] = 1199, - [1614] = 1209, - [1615] = 1213, - [1616] = 1215, - [1617] = 1219, - [1618] = 1224, - [1619] = 1228, - [1620] = 1231, - [1621] = 1233, - [1622] = 1238, - [1623] = 1246, - [1624] = 1248, - [1625] = 1132, - [1626] = 1134, + [1544] = 1250, + [1545] = 1155, + [1546] = 1160, + [1547] = 1165, + [1548] = 1168, + [1549] = 1172, + [1550] = 1175, + [1551] = 1179, + [1552] = 1184, + [1553] = 1189, + [1554] = 1216, + [1555] = 1136, + [1556] = 1138, + [1557] = 1154, + [1558] = 1156, + [1559] = 1159, + [1560] = 1161, + [1561] = 1164, + [1562] = 1166, + [1563] = 1169, + [1564] = 1171, + [1565] = 1174, + [1566] = 1176, + [1567] = 1192, + [1568] = 1194, + [1569] = 1197, + [1570] = 1199, + [1571] = 1261, + [1572] = 1209, + [1573] = 1212, + [1574] = 1214, + [1575] = 1217, + [1576] = 1219, + [1577] = 1222, + [1578] = 1224, + [1579] = 1227, + [1580] = 1580, + [1581] = 1581, + [1582] = 379, + [1583] = 1583, + [1584] = 1238, + [1585] = 1240, + [1586] = 1242, + [1587] = 1245, + [1588] = 1247, + [1589] = 1249, + [1590] = 1251, + [1591] = 1253, + [1592] = 1243, + [1593] = 1248, + [1594] = 1202, + [1595] = 1213, + [1596] = 1145, + [1597] = 1597, + [1598] = 1203, + [1599] = 1599, + [1600] = 1183, + [1601] = 1601, + [1602] = 1602, + [1603] = 1603, + [1604] = 1540, + [1605] = 1597, + [1606] = 1606, + [1607] = 1607, + [1608] = 1599, + [1609] = 1524, + [1610] = 1610, + [1611] = 1611, + [1612] = 1612, + [1613] = 1141, + [1614] = 1218, + [1615] = 1612, + [1616] = 1616, + [1617] = 1148, + [1618] = 1149, + [1619] = 1150, + [1620] = 1151, + [1621] = 1230, + [1622] = 1231, + [1623] = 1236, + [1624] = 1237, + [1625] = 1255, + [1626] = 1207, [1627] = 1137, - [1628] = 1139, - [1629] = 1141, - [1630] = 1143, - [1631] = 1146, - [1632] = 1148, - [1633] = 1150, - [1634] = 1152, - [1635] = 1155, - [1636] = 1157, - [1637] = 1160, - [1638] = 1162, - [1639] = 1165, - [1640] = 1167, - [1641] = 1170, - [1642] = 1177, - [1643] = 1179, - [1644] = 1181, - [1645] = 1184, - [1646] = 1186, - [1647] = 1189, - [1648] = 1191, - [1649] = 1194, - [1650] = 1198, - [1651] = 1200, - [1652] = 1131, - [1653] = 1204, - [1654] = 1206, - [1655] = 1208, - [1656] = 1210, - [1657] = 1212, - [1658] = 1216, - [1659] = 1218, - [1660] = 1227, - [1661] = 1229, - [1662] = 1541, - [1663] = 1542, - [1664] = 1543, - [1665] = 1247, - [1666] = 1251, - [1667] = 1254, - [1668] = 1203, - [1669] = 1133, - [1670] = 1136, - [1671] = 1138, - [1672] = 1140, - [1673] = 1142, - [1674] = 1144, - [1675] = 1145, - [1676] = 1147, - [1677] = 1530, - [1678] = 1214, - [1679] = 398, - [1680] = 1680, - [1681] = 1247, - [1682] = 1251, - [1683] = 1254, - [1684] = 1203, - [1685] = 1133, - [1686] = 1136, - [1687] = 1138, - [1688] = 1688, - [1689] = 1140, - [1690] = 1142, - [1691] = 1144, - [1692] = 1145, - [1693] = 1147, - [1694] = 1680, - [1695] = 389, - [1696] = 1510, - [1697] = 407, - [1698] = 1698, - [1699] = 1699, + [1628] = 1130, + [1629] = 1139, + [1630] = 1153, + [1631] = 988, + [1632] = 1632, + [1633] = 1580, + [1634] = 1634, + [1635] = 1635, + [1636] = 1636, + [1637] = 1180, + [1638] = 1193, + [1639] = 1208, + [1640] = 1133, + [1641] = 1152, + [1642] = 1642, + [1643] = 1541, + [1644] = 1532, + [1645] = 1543, + [1646] = 1581, + [1647] = 1647, + [1648] = 1635, + [1649] = 1647, + [1650] = 1163, + [1651] = 1651, + [1652] = 1173, + [1653] = 1191, + [1654] = 1654, + [1655] = 1002, + [1656] = 980, + [1657] = 1606, + [1658] = 1607, + [1659] = 1634, + [1660] = 1198, + [1661] = 1131, + [1662] = 1134, + [1663] = 1636, + [1664] = 1140, + [1665] = 1602, + [1666] = 1642, + [1667] = 1142, + [1668] = 1603, + [1669] = 1610, + [1670] = 1611, + [1671] = 1612, + [1672] = 1146, + [1673] = 1616, + [1674] = 1632, + [1675] = 1200, + [1676] = 1601, + [1677] = 1150, + [1678] = 379, + [1679] = 411, + [1680] = 1148, + [1681] = 1681, + [1682] = 1149, + [1683] = 1151, + [1684] = 1230, + [1685] = 399, + [1686] = 1231, + [1687] = 1687, + [1688] = 1255, + [1689] = 1207, + [1690] = 1687, + [1691] = 1137, + [1692] = 1651, + [1693] = 1236, + [1694] = 1130, + [1695] = 1237, + [1696] = 411, + [1697] = 1697, + [1698] = 399, + [1699] = 92, [1700] = 1700, - [1701] = 1699, + [1701] = 391, [1702] = 1702, - [1703] = 1703, - [1704] = 92, - [1705] = 378, - [1706] = 93, - [1707] = 407, - [1708] = 398, - [1709] = 1698, - [1710] = 1710, - [1711] = 377, - [1712] = 1700, - [1713] = 1710, - [1714] = 1702, - [1715] = 400, + [1703] = 1700, + [1704] = 1697, + [1705] = 1705, + [1706] = 1702, + [1707] = 1707, + [1708] = 1707, + [1709] = 1709, + [1710] = 377, + [1711] = 1705, + [1712] = 93, + [1713] = 405, + [1714] = 450, + [1715] = 92, [1716] = 1716, - [1717] = 403, - [1718] = 446, - [1719] = 1719, - [1720] = 93, - [1721] = 1721, - [1722] = 98, - [1723] = 411, - [1724] = 1724, - [1725] = 99, - [1726] = 1726, - [1727] = 412, - [1728] = 408, - [1729] = 409, - [1730] = 410, - [1731] = 1719, - [1732] = 1719, - [1733] = 336, - [1734] = 399, - [1735] = 333, - [1736] = 92, + [1717] = 400, + [1718] = 401, + [1719] = 402, + [1720] = 333, + [1721] = 1716, + [1722] = 97, + [1723] = 1716, + [1724] = 99, + [1725] = 1716, + [1726] = 334, + [1727] = 1727, + [1728] = 1728, + [1729] = 93, + [1730] = 406, + [1731] = 1731, + [1732] = 398, + [1733] = 403, + [1734] = 404, + [1735] = 1735, + [1736] = 1736, [1737] = 1737, - [1738] = 412, - [1739] = 446, - [1740] = 1740, - [1741] = 399, - [1742] = 338, - [1743] = 353, - [1744] = 92, - [1745] = 1737, - [1746] = 1746, - [1747] = 444, - [1748] = 93, - [1749] = 343, - [1750] = 360, - [1751] = 340, - [1752] = 341, - [1753] = 1753, - [1754] = 349, - [1755] = 1755, - [1756] = 1753, - [1757] = 108, - [1758] = 1737, - [1759] = 105, - [1760] = 106, - [1761] = 99, - [1762] = 98, - [1763] = 1763, + [1738] = 334, + [1739] = 450, + [1740] = 340, + [1741] = 341, + [1742] = 92, + [1743] = 443, + [1744] = 93, + [1745] = 344, + [1746] = 345, + [1747] = 338, + [1748] = 346, + [1749] = 347, + [1750] = 348, + [1751] = 97, + [1752] = 403, + [1753] = 99, + [1754] = 446, + [1755] = 1737, + [1756] = 1756, + [1757] = 1757, + [1758] = 1756, + [1759] = 1759, + [1760] = 1759, + [1761] = 405, + [1762] = 1737, + [1763] = 1736, [1764] = 1764, - [1765] = 442, - [1766] = 1755, - [1767] = 1767, - [1768] = 1740, + [1765] = 333, + [1766] = 1736, + [1767] = 1736, + [1768] = 1768, [1769] = 1769, - [1770] = 1770, - [1771] = 1767, - [1772] = 336, - [1773] = 1755, - [1774] = 333, - [1775] = 1755, - [1776] = 342, - [1777] = 108, - [1778] = 1778, + [1770] = 112, + [1771] = 1771, + [1772] = 109, + [1773] = 1773, + [1774] = 113, + [1775] = 1737, + [1776] = 1757, + [1777] = 1777, + [1778] = 99, [1779] = 1779, - [1780] = 343, - [1781] = 1781, - [1782] = 1782, + [1780] = 1780, + [1781] = 346, + [1782] = 347, [1783] = 1783, - [1784] = 1784, - [1785] = 1785, - [1786] = 360, - [1787] = 340, + [1784] = 348, + [1785] = 1779, + [1786] = 341, + [1787] = 344, [1788] = 1788, - [1789] = 1789, - [1790] = 1790, - [1791] = 1791, + [1789] = 1780, + [1790] = 368, + [1791] = 345, [1792] = 1792, [1793] = 1793, - [1794] = 1791, - [1795] = 334, - [1796] = 105, - [1797] = 1797, - [1798] = 106, - [1799] = 1779, - [1800] = 341, - [1801] = 470, - [1802] = 342, - [1803] = 459, - [1804] = 442, - [1805] = 444, - [1806] = 349, + [1794] = 1794, + [1795] = 1795, + [1796] = 1796, + [1797] = 335, + [1798] = 1798, + [1799] = 112, + [1800] = 340, + [1801] = 1796, + [1802] = 1802, + [1803] = 97, + [1804] = 1798, + [1805] = 1805, + [1806] = 1806, [1807] = 1807, [1808] = 1808, - [1809] = 1790, - [1810] = 1810, - [1811] = 1810, - [1812] = 338, - [1813] = 353, - [1814] = 1788, - [1815] = 1789, - [1816] = 369, - [1817] = 1817, - [1818] = 1778, - [1819] = 1785, - [1820] = 1817, - [1821] = 1817, - [1822] = 1817, - [1823] = 99, - [1824] = 98, - [1825] = 339, - [1826] = 645, - [1827] = 642, - [1828] = 1828, - [1829] = 500, - [1830] = 1830, - [1831] = 1831, - [1832] = 334, - [1833] = 351, - [1834] = 503, - [1835] = 490, - [1836] = 470, - [1837] = 369, - [1838] = 1838, - [1839] = 459, - [1840] = 108, + [1809] = 109, + [1810] = 113, + [1811] = 455, + [1812] = 1812, + [1813] = 338, + [1814] = 464, + [1815] = 1815, + [1816] = 446, + [1817] = 1783, + [1818] = 1788, + [1819] = 1777, + [1820] = 443, + [1821] = 1783, + [1822] = 1815, + [1823] = 1783, + [1824] = 1802, + [1825] = 478, + [1826] = 1826, + [1827] = 485, + [1828] = 475, + [1829] = 455, + [1830] = 464, + [1831] = 545, + [1832] = 544, + [1833] = 353, + [1834] = 367, + [1835] = 1835, + [1836] = 352, + [1837] = 335, + [1838] = 112, + [1839] = 109, + [1840] = 113, [1841] = 1841, - [1842] = 105, - [1843] = 106, - [1844] = 357, - [1845] = 342, - [1846] = 1846, - [1847] = 500, - [1848] = 503, - [1849] = 490, - [1850] = 642, - [1851] = 1851, - [1852] = 685, - [1853] = 1853, - [1854] = 743, - [1855] = 645, - [1856] = 744, - [1857] = 339, - [1858] = 368, - [1859] = 93, - [1860] = 746, - [1861] = 747, - [1862] = 465, - [1863] = 1851, - [1864] = 442, - [1865] = 764, - [1866] = 466, - [1867] = 351, - [1868] = 357, - [1869] = 343, - [1870] = 360, - [1871] = 340, - [1872] = 676, - [1873] = 341, - [1874] = 349, - [1875] = 1830, - [1876] = 1473, - [1877] = 1846, - [1878] = 92, - [1879] = 444, - [1880] = 763, - [1881] = 744, - [1882] = 336, - [1883] = 497, - [1884] = 342, - [1885] = 747, - [1886] = 343, - [1887] = 746, - [1888] = 486, - [1889] = 676, - [1890] = 340, - [1891] = 341, - [1892] = 442, - [1893] = 92, - [1894] = 489, - [1895] = 444, - [1896] = 368, - [1897] = 1897, - [1898] = 466, - [1899] = 459, - [1900] = 1897, - [1901] = 484, - [1902] = 93, - [1903] = 1489, - [1904] = 470, - [1905] = 98, - [1906] = 763, - [1907] = 764, - [1908] = 465, - [1909] = 493, - [1910] = 349, - [1911] = 333, + [1842] = 1842, + [1843] = 1843, + [1844] = 368, + [1845] = 1845, + [1846] = 460, + [1847] = 446, + [1848] = 485, + [1849] = 92, + [1850] = 1850, + [1851] = 864, + [1852] = 865, + [1853] = 847, + [1854] = 1854, + [1855] = 679, + [1856] = 462, + [1857] = 848, + [1858] = 686, + [1859] = 1476, + [1860] = 367, + [1861] = 93, + [1862] = 352, + [1863] = 374, + [1864] = 353, + [1865] = 849, + [1866] = 850, + [1867] = 344, + [1868] = 1854, + [1869] = 345, + [1870] = 544, + [1871] = 545, + [1872] = 338, + [1873] = 475, + [1874] = 1826, + [1875] = 346, + [1876] = 347, + [1877] = 348, + [1878] = 478, + [1879] = 443, + [1880] = 479, + [1881] = 864, + [1882] = 1492, + [1883] = 374, + [1884] = 346, + [1885] = 347, + [1886] = 348, + [1887] = 865, + [1888] = 464, + [1889] = 1889, + [1890] = 488, + [1891] = 476, + [1892] = 333, + [1893] = 849, + [1894] = 1889, + [1895] = 498, + [1896] = 93, + [1897] = 334, + [1898] = 483, + [1899] = 462, + [1900] = 686, + [1901] = 679, + [1902] = 92, + [1903] = 847, + [1904] = 848, + [1905] = 97, + [1906] = 499, + [1907] = 443, + [1908] = 344, + [1909] = 460, + [1910] = 455, + [1911] = 345, [1912] = 99, - [1913] = 685, - [1914] = 360, - [1915] = 743, - [1916] = 485, - [1917] = 459, - [1918] = 948, - [1919] = 954, - [1920] = 886, - [1921] = 1921, - [1922] = 1922, - [1923] = 1923, - [1924] = 958, - [1925] = 959, + [1913] = 338, + [1914] = 446, + [1915] = 850, + [1916] = 1916, + [1917] = 340, + [1918] = 899, + [1919] = 344, + [1920] = 341, + [1921] = 345, + [1922] = 338, + [1923] = 346, + [1924] = 347, + [1925] = 348, [1926] = 1926, - [1927] = 960, - [1928] = 937, - [1929] = 470, - [1930] = 1930, + [1927] = 485, + [1928] = 1928, + [1929] = 1929, + [1930] = 1926, [1931] = 1931, - [1932] = 961, - [1933] = 931, - [1934] = 1498, - [1935] = 1935, - [1936] = 1936, + [1932] = 99, + [1933] = 920, + [1934] = 803, + [1935] = 475, + [1936] = 478, [1937] = 1937, [1938] = 1938, - [1939] = 99, - [1940] = 1940, - [1941] = 349, - [1942] = 98, - [1943] = 1936, - [1944] = 108, - [1945] = 105, - [1946] = 106, - [1947] = 338, - [1948] = 353, - [1949] = 500, - [1950] = 503, - [1951] = 490, - [1952] = 941, - [1953] = 343, - [1954] = 360, - [1955] = 700, - [1956] = 709, - [1957] = 705, - [1958] = 340, - [1959] = 697, - [1960] = 704, - [1961] = 692, - [1962] = 675, - [1963] = 698, - [1964] = 341, - [1965] = 342, - [1966] = 712, - [1967] = 948, - [1968] = 1968, - [1969] = 937, - [1970] = 540, - [1971] = 500, - [1972] = 503, - [1973] = 490, - [1974] = 941, - [1975] = 1975, - [1976] = 1976, - [1977] = 333, - [1978] = 954, - [1979] = 1979, - [1980] = 1980, - [1981] = 1981, - [1982] = 1176, - [1983] = 1262, - [1984] = 1250, - [1985] = 1255, - [1986] = 1135, - [1987] = 1158, - [1988] = 1182, - [1989] = 1221, - [1990] = 1990, - [1991] = 1226, - [1992] = 1235, - [1993] = 1241, - [1994] = 1245, - [1995] = 1995, - [1996] = 1187, - [1997] = 1243, - [1998] = 1156, - [1999] = 1175, - [2000] = 1193, - [2001] = 1222, - [2002] = 1168, - [2003] = 1173, - [2004] = 1180, - [2005] = 1190, - [2006] = 1197, - [2007] = 1214, - [2008] = 1234, - [2009] = 1244, - [2010] = 1261, - [2011] = 1159, - [2012] = 1178, - [2013] = 1183, - [2014] = 1188, - [2015] = 1196, - [2016] = 1201, - [2017] = 1211, - [2018] = 1217, - [2019] = 1225, - [2020] = 1236, - [2021] = 1249, - [2022] = 1253, - [2023] = 1154, - [2024] = 1161, - [2025] = 1164, - [2026] = 1171, - [2027] = 1174, - [2028] = 1185, - [2029] = 1192, - [2030] = 1195, - [2031] = 1199, - [2032] = 1209, - [2033] = 1213, - [2034] = 1215, - [2035] = 1219, - [2036] = 1224, - [2037] = 1228, - [2038] = 1231, - [2039] = 1233, - [2040] = 1238, - [2041] = 1246, - [2042] = 1248, - [2043] = 1132, - [2044] = 1134, - [2045] = 1137, - [2046] = 1139, - [2047] = 1141, - [2048] = 1143, - [2049] = 1146, - [2050] = 1148, - [2051] = 1150, - [2052] = 1152, - [2053] = 1155, - [2054] = 1157, - [2055] = 1160, - [2056] = 1162, - [2057] = 1165, - [2058] = 1167, - [2059] = 1170, - [2060] = 1177, - [2061] = 1179, - [2062] = 1181, - [2063] = 1184, - [2064] = 1186, - [2065] = 1189, - [2066] = 1191, - [2067] = 1194, - [2068] = 1198, - [2069] = 1200, - [2070] = 1131, - [2071] = 1204, - [2072] = 1206, - [2073] = 1208, - [2074] = 1210, - [2075] = 1212, - [2076] = 1216, - [2077] = 1218, - [2078] = 1227, - [2079] = 1229, - [2080] = 108, - [2081] = 2081, + [1939] = 689, + [1940] = 113, + [1941] = 97, + [1942] = 923, + [1943] = 1500, + [1944] = 903, + [1945] = 944, + [1946] = 918, + [1947] = 914, + [1948] = 1948, + [1949] = 455, + [1950] = 949, + [1951] = 464, + [1952] = 1952, + [1953] = 1953, + [1954] = 112, + [1955] = 674, + [1956] = 682, + [1957] = 708, + [1958] = 951, + [1959] = 677, + [1960] = 109, + [1961] = 681, + [1962] = 704, + [1963] = 705, + [1964] = 707, + [1965] = 1965, + [1966] = 1194, + [1967] = 1139, + [1968] = 1153, + [1969] = 1180, + [1970] = 1193, + [1971] = 1208, + [1972] = 1133, + [1973] = 1152, + [1974] = 1163, + [1975] = 1173, + [1976] = 1191, + [1977] = 1198, + [1978] = 1131, + [1979] = 1134, + [1980] = 1140, + [1981] = 1142, + [1982] = 1146, + [1983] = 1211, + [1984] = 1220, + [1985] = 1223, + [1986] = 1235, + [1987] = 1246, + [1988] = 1254, + [1989] = 1260, + [1990] = 1132, + [1991] = 1135, + [1992] = 1143, + [1993] = 1147, + [1994] = 1177, + [1995] = 1181, + [1996] = 951, + [1997] = 1185, + [1998] = 899, + [1999] = 1158, + [2000] = 2000, + [2001] = 1244, + [2002] = 903, + [2003] = 803, + [2004] = 1178, + [2005] = 1187, + [2006] = 2006, + [2007] = 1196, + [2008] = 2008, + [2009] = 1206, + [2010] = 914, + [2011] = 918, + [2012] = 1250, + [2013] = 1155, + [2014] = 1160, + [2015] = 1165, + [2016] = 1168, + [2017] = 1172, + [2018] = 1175, + [2019] = 1179, + [2020] = 1184, + [2021] = 1189, + [2022] = 1216, + [2023] = 1136, + [2024] = 1138, + [2025] = 1154, + [2026] = 1156, + [2027] = 1159, + [2028] = 1161, + [2029] = 1164, + [2030] = 1166, + [2031] = 1169, + [2032] = 1171, + [2033] = 1174, + [2034] = 1176, + [2035] = 1192, + [2036] = 1086, + [2037] = 1197, + [2038] = 1199, + [2039] = 1261, + [2040] = 1209, + [2041] = 1212, + [2042] = 1214, + [2043] = 1217, + [2044] = 1219, + [2045] = 1222, + [2046] = 1224, + [2047] = 1227, + [2048] = 1238, + [2049] = 1240, + [2050] = 1242, + [2051] = 1245, + [2052] = 1247, + [2053] = 1249, + [2054] = 1251, + [2055] = 1253, + [2056] = 1243, + [2057] = 1248, + [2058] = 1213, + [2059] = 920, + [2060] = 2060, + [2061] = 113, + [2062] = 2000, + [2063] = 923, + [2064] = 2064, + [2065] = 2065, + [2066] = 2066, + [2067] = 2067, + [2068] = 2068, + [2069] = 2069, + [2070] = 2066, + [2071] = 109, + [2072] = 333, + [2073] = 2073, + [2074] = 2074, + [2075] = 2075, + [2076] = 1200, + [2077] = 1183, + [2078] = 2078, + [2079] = 1218, + [2080] = 1144, + [2081] = 485, [2082] = 2082, - [2083] = 2083, - [2084] = 958, - [2085] = 1976, - [2086] = 2086, - [2087] = 2087, - [2088] = 1515, - [2089] = 2089, - [2090] = 105, - [2091] = 1473, - [2092] = 959, - [2093] = 886, - [2094] = 334, - [2095] = 369, - [2096] = 960, - [2097] = 961, - [2098] = 967, - [2099] = 1976, - [2100] = 931, - [2101] = 1976, - [2102] = 1473, - [2103] = 1976, - [2104] = 2104, - [2105] = 2105, - [2106] = 1981, - [2107] = 1976, - [2108] = 2108, - [2109] = 106, - [2110] = 2110, - [2111] = 351, - [2112] = 1489, - [2113] = 1489, - [2114] = 960, - [2115] = 967, - [2116] = 937, - [2117] = 1498, - [2118] = 2118, - [2119] = 961, - [2120] = 2120, - [2121] = 1498, - [2122] = 931, - [2123] = 2123, - [2124] = 2124, - [2125] = 967, - [2126] = 699, - [2127] = 357, - [2128] = 2123, - [2129] = 2124, - [2130] = 2123, - [2131] = 2124, - [2132] = 886, - [2133] = 339, - [2134] = 691, - [2135] = 926, - [2136] = 1515, - [2137] = 1251, - [2138] = 1254, - [2139] = 1203, - [2140] = 1133, - [2141] = 1136, - [2142] = 1138, - [2143] = 1140, - [2144] = 1142, - [2145] = 1144, - [2146] = 1145, - [2147] = 1147, + [2083] = 1186, + [2084] = 475, + [2085] = 478, + [2086] = 1583, + [2087] = 2000, + [2088] = 1210, + [2089] = 1233, + [2090] = 112, + [2091] = 2000, + [2092] = 2092, + [2093] = 1476, + [2094] = 2000, + [2095] = 2000, + [2096] = 1476, + [2097] = 2097, + [2098] = 1145, + [2099] = 2099, + [2100] = 1203, + [2101] = 1141, + [2102] = 1204, + [2103] = 1226, + [2104] = 335, + [2105] = 368, + [2106] = 2000, + [2107] = 944, + [2108] = 949, + [2109] = 517, + [2110] = 1202, + [2111] = 1492, + [2112] = 920, + [2113] = 1500, + [2114] = 1492, + [2115] = 2115, + [2116] = 2116, + [2117] = 1500, + [2118] = 914, + [2119] = 2116, + [2120] = 918, + [2121] = 1086, + [2122] = 803, + [2123] = 352, + [2124] = 2115, + [2125] = 2116, + [2126] = 923, + [2127] = 2115, + [2128] = 1086, + [2129] = 2129, + [2130] = 367, + [2131] = 683, + [2132] = 353, + [2133] = 2133, + [2134] = 684, + [2135] = 676, + [2136] = 922, + [2137] = 940, + [2138] = 952, + [2139] = 1148, + [2140] = 916, + [2141] = 1150, + [2142] = 494, + [2143] = 1151, + [2144] = 1230, + [2145] = 1231, + [2146] = 1236, + [2147] = 1237, [2148] = 2148, - [2149] = 2149, - [2150] = 899, - [2151] = 2149, - [2152] = 930, - [2153] = 1515, - [2154] = 676, - [2155] = 763, - [2156] = 764, - [2157] = 2157, - [2158] = 498, - [2159] = 2157, - [2160] = 343, - [2161] = 2149, - [2162] = 360, - [2163] = 340, - [2164] = 695, - [2165] = 341, - [2166] = 342, - [2167] = 349, - [2168] = 743, - [2169] = 1247, - [2170] = 1251, - [2171] = 943, - [2172] = 1254, - [2173] = 2173, - [2174] = 2174, - [2175] = 1203, - [2176] = 2176, - [2177] = 1133, - [2178] = 694, - [2179] = 744, - [2180] = 491, - [2181] = 887, - [2182] = 368, - [2183] = 951, - [2184] = 1136, - [2185] = 1138, - [2186] = 1140, - [2187] = 1142, - [2188] = 1144, - [2189] = 1145, - [2190] = 1147, - [2191] = 2191, - [2192] = 2149, - [2193] = 924, - [2194] = 746, - [2195] = 2149, - [2196] = 730, - [2197] = 747, - [2198] = 949, - [2199] = 2149, - [2200] = 2149, - [2201] = 540, - [2202] = 2157, - [2203] = 735, - [2204] = 916, - [2205] = 724, - [2206] = 897, - [2207] = 936, - [2208] = 685, - [2209] = 923, - [2210] = 719, - [2211] = 898, - [2212] = 1247, - [2213] = 2213, - [2214] = 2213, - [2215] = 2213, - [2216] = 2213, + [2149] = 1255, + [2150] = 1207, + [2151] = 847, + [2152] = 1137, + [2153] = 848, + [2154] = 849, + [2155] = 850, + [2156] = 517, + [2157] = 864, + [2158] = 865, + [2159] = 1130, + [2160] = 798, + [2161] = 344, + [2162] = 345, + [2163] = 338, + [2164] = 804, + [2165] = 686, + [2166] = 346, + [2167] = 347, + [2168] = 348, + [2169] = 942, + [2170] = 1148, + [2171] = 1149, + [2172] = 1150, + [2173] = 1151, + [2174] = 1230, + [2175] = 1231, + [2176] = 1236, + [2177] = 1237, + [2178] = 1255, + [2179] = 1207, + [2180] = 1137, + [2181] = 1130, + [2182] = 2182, + [2183] = 811, + [2184] = 934, + [2185] = 2148, + [2186] = 935, + [2187] = 936, + [2188] = 937, + [2189] = 491, + [2190] = 374, + [2191] = 927, + [2192] = 2192, + [2193] = 2148, + [2194] = 820, + [2195] = 2195, + [2196] = 2196, + [2197] = 839, + [2198] = 900, + [2199] = 2199, + [2200] = 679, + [2201] = 1583, + [2202] = 2182, + [2203] = 938, + [2204] = 2148, + [2205] = 2205, + [2206] = 2182, + [2207] = 2182, + [2208] = 2182, + [2209] = 2182, + [2210] = 2182, + [2211] = 2182, + [2212] = 1583, + [2213] = 680, + [2214] = 1149, + [2215] = 2215, + [2216] = 2216, [2217] = 2217, - [2218] = 2213, - [2219] = 691, - [2220] = 2213, - [2221] = 2217, - [2222] = 1473, + [2218] = 2216, + [2219] = 683, + [2220] = 2216, + [2221] = 2216, + [2222] = 2216, [2223] = 2223, - [2224] = 2224, - [2225] = 2225, - [2226] = 540, + [2224] = 2216, + [2225] = 1476, + [2226] = 2226, [2227] = 2227, - [2228] = 343, - [2229] = 341, - [2230] = 342, - [2231] = 2231, - [2232] = 2232, - [2233] = 349, - [2234] = 2234, - [2235] = 2235, + [2228] = 2223, + [2229] = 2229, + [2230] = 517, + [2231] = 338, + [2232] = 345, + [2233] = 1500, + [2234] = 348, + [2235] = 1476, [2236] = 2236, - [2237] = 1981, - [2238] = 2238, - [2239] = 1489, + [2237] = 2237, + [2238] = 1492, + [2239] = 346, [2240] = 2240, - [2241] = 1498, - [2242] = 360, - [2243] = 340, - [2244] = 691, - [2245] = 1473, + [2241] = 2241, + [2242] = 683, + [2243] = 344, + [2244] = 2244, + [2245] = 347, [2246] = 2246, - [2247] = 1498, - [2248] = 1489, - [2249] = 2249, - [2250] = 2250, - [2251] = 1515, - [2252] = 2252, - [2253] = 1515, - [2254] = 2254, + [2247] = 2066, + [2248] = 2248, + [2249] = 1492, + [2250] = 1500, + [2251] = 2251, + [2252] = 1583, + [2253] = 2253, + [2254] = 1583, [2255] = 2255, [2256] = 2256, [2257] = 2257, - [2258] = 368, + [2258] = 2255, [2259] = 2259, - [2260] = 2260, - [2261] = 2255, - [2262] = 2254, - [2263] = 336, + [2260] = 2253, + [2261] = 2261, + [2262] = 374, + [2263] = 334, [2264] = 2264, [2265] = 2265, [2266] = 2266, - [2267] = 2267, + [2267] = 333, [2268] = 2268, [2269] = 2269, [2270] = 2270, [2271] = 2271, [2272] = 2272, - [2273] = 333, + [2273] = 2273, [2274] = 2274, [2275] = 2275, [2276] = 2276, @@ -7093,499 +7087,499 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2278] = 2278, [2279] = 2279, [2280] = 2280, - [2281] = 2281, - [2282] = 2268, - [2283] = 389, - [2284] = 2284, - [2285] = 2285, - [2286] = 2286, + [2281] = 2280, + [2282] = 379, + [2283] = 340, + [2284] = 341, + [2285] = 403, + [2286] = 405, [2287] = 2287, [2288] = 2288, [2289] = 2289, - [2290] = 338, - [2291] = 353, - [2292] = 412, - [2293] = 399, + [2290] = 2290, + [2291] = 2291, + [2292] = 2292, + [2293] = 2293, [2294] = 2294, [2295] = 2295, - [2296] = 369, - [2297] = 377, - [2298] = 389, - [2299] = 407, - [2300] = 398, - [2301] = 407, - [2302] = 2302, - [2303] = 2303, - [2304] = 398, - [2305] = 2302, - [2306] = 400, - [2307] = 408, - [2308] = 409, - [2309] = 410, - [2310] = 2310, - [2311] = 2311, - [2312] = 2303, - [2313] = 389, - [2314] = 377, - [2315] = 2315, - [2316] = 2316, - [2317] = 2315, - [2318] = 2316, - [2319] = 2310, - [2320] = 2311, - [2321] = 92, - [2322] = 93, - [2323] = 410, - [2324] = 98, - [2325] = 377, - [2326] = 389, - [2327] = 93, - [2328] = 92, - [2329] = 398, - [2330] = 407, - [2331] = 446, - [2332] = 408, - [2333] = 400, - [2334] = 409, - [2335] = 99, - [2336] = 108, - [2337] = 442, - [2338] = 446, - [2339] = 106, - [2340] = 377, - [2341] = 400, - [2342] = 105, - [2343] = 408, - [2344] = 409, - [2345] = 410, - [2346] = 407, - [2347] = 98, - [2348] = 444, - [2349] = 486, - [2350] = 93, - [2351] = 493, - [2352] = 92, - [2353] = 398, - [2354] = 99, - [2355] = 108, - [2356] = 410, - [2357] = 92, - [2358] = 400, - [2359] = 336, - [2360] = 470, - [2361] = 1473, - [2362] = 2362, - [2363] = 446, - [2364] = 412, - [2365] = 442, - [2366] = 459, - [2367] = 399, - [2368] = 93, - [2369] = 444, + [2296] = 488, + [2297] = 2297, + [2298] = 399, + [2299] = 391, + [2300] = 479, + [2301] = 333, + [2302] = 483, + [2303] = 368, + [2304] = 411, + [2305] = 379, + [2306] = 334, + [2307] = 341, + [2308] = 2308, + [2309] = 379, + [2310] = 344, + [2311] = 345, + [2312] = 338, + [2313] = 411, + [2314] = 346, + [2315] = 347, + [2316] = 348, + [2317] = 399, + [2318] = 404, + [2319] = 400, + [2320] = 401, + [2321] = 402, + [2322] = 2322, + [2323] = 2323, + [2324] = 2324, + [2325] = 2325, + [2326] = 2326, + [2327] = 92, + [2328] = 93, + [2329] = 340, + [2330] = 391, + [2331] = 2308, + [2332] = 2322, + [2333] = 2323, + [2334] = 2324, + [2335] = 2325, + [2336] = 2326, + [2337] = 2337, + [2338] = 399, + [2339] = 2339, + [2340] = 92, + [2341] = 93, + [2342] = 335, + [2343] = 379, + [2344] = 450, + [2345] = 97, + [2346] = 99, + [2347] = 391, + [2348] = 2348, + [2349] = 404, + [2350] = 400, + [2351] = 401, + [2352] = 402, + [2353] = 411, + [2354] = 368, + [2355] = 2355, + [2356] = 2356, + [2357] = 345, + [2358] = 399, + [2359] = 2359, + [2360] = 348, + [2361] = 99, + [2362] = 92, + [2363] = 338, + [2364] = 443, + [2365] = 346, + [2366] = 450, + [2367] = 2367, + [2368] = 353, + [2369] = 411, [2370] = 2370, - [2371] = 99, - [2372] = 2372, - [2373] = 2373, - [2374] = 336, - [2375] = 105, - [2376] = 2376, - [2377] = 408, - [2378] = 389, - [2379] = 106, - [2380] = 98, - [2381] = 409, - [2382] = 333, - [2383] = 398, - [2384] = 442, - [2385] = 1489, - [2386] = 1498, - [2387] = 338, - [2388] = 399, - [2389] = 2389, - [2390] = 349, - [2391] = 106, - [2392] = 377, - [2393] = 99, - [2394] = 333, - [2395] = 92, - [2396] = 93, - [2397] = 446, - [2398] = 500, - [2399] = 98, - [2400] = 503, - [2401] = 490, - [2402] = 2402, - [2403] = 342, - [2404] = 336, - [2405] = 470, - [2406] = 642, - [2407] = 353, - [2408] = 340, - [2409] = 645, - [2410] = 108, - [2411] = 341, - [2412] = 412, - [2413] = 497, - [2414] = 484, - [2415] = 485, - [2416] = 489, + [2371] = 2371, + [2372] = 112, + [2373] = 367, + [2374] = 347, + [2375] = 109, + [2376] = 113, + [2377] = 93, + [2378] = 446, + [2379] = 2379, + [2380] = 2380, + [2381] = 2381, + [2382] = 2382, + [2383] = 2383, + [2384] = 352, + [2385] = 404, + [2386] = 498, + [2387] = 400, + [2388] = 401, + [2389] = 476, + [2390] = 402, + [2391] = 2391, + [2392] = 2392, + [2393] = 97, + [2394] = 391, + [2395] = 344, + [2396] = 2396, + [2397] = 2397, + [2398] = 464, + [2399] = 93, + [2400] = 2400, + [2401] = 374, + [2402] = 403, + [2403] = 443, + [2404] = 400, + [2405] = 2405, + [2406] = 334, + [2407] = 334, + [2408] = 109, + [2409] = 404, + [2410] = 2410, + [2411] = 113, + [2412] = 2412, + [2413] = 942, + [2414] = 446, + [2415] = 455, + [2416] = 379, [2417] = 2417, - [2418] = 407, - [2419] = 459, - [2420] = 343, - [2421] = 105, - [2422] = 360, - [2423] = 444, - [2424] = 490, - [2425] = 333, - [2426] = 106, - [2427] = 408, - [2428] = 409, - [2429] = 410, - [2430] = 338, - [2431] = 444, - [2432] = 412, - [2433] = 642, - [2434] = 353, - [2435] = 442, - [2436] = 645, - [2437] = 400, - [2438] = 503, - [2439] = 1515, - [2440] = 105, - [2441] = 349, - [2442] = 99, - [2443] = 442, - [2444] = 2444, - [2445] = 334, - [2446] = 360, - [2447] = 444, - [2448] = 1841, - [2449] = 459, - [2450] = 108, - [2451] = 341, - [2452] = 98, - [2453] = 500, - [2454] = 343, - [2455] = 336, + [2418] = 112, + [2419] = 2419, + [2420] = 2420, + [2421] = 2421, + [2422] = 333, + [2423] = 937, + [2424] = 401, + [2425] = 405, + [2426] = 99, + [2427] = 2427, + [2428] = 402, + [2429] = 97, + [2430] = 927, + [2431] = 450, + [2432] = 938, + [2433] = 2433, + [2434] = 92, + [2435] = 2435, + [2436] = 2436, + [2437] = 341, + [2438] = 455, + [2439] = 464, + [2440] = 391, + [2441] = 92, + [2442] = 93, + [2443] = 485, + [2444] = 475, + [2445] = 478, + [2446] = 450, + [2447] = 340, + [2448] = 97, + [2449] = 333, + [2450] = 99, + [2451] = 2451, + [2452] = 334, + [2453] = 545, + [2454] = 403, + [2455] = 411, [2456] = 399, - [2457] = 340, - [2458] = 342, - [2459] = 369, - [2460] = 470, - [2461] = 369, - [2462] = 360, - [2463] = 342, - [2464] = 2464, - [2465] = 349, - [2466] = 489, - [2467] = 2467, - [2468] = 500, - [2469] = 1841, - [2470] = 484, - [2471] = 459, - [2472] = 343, - [2473] = 106, - [2474] = 485, - [2475] = 2475, - [2476] = 351, - [2477] = 486, - [2478] = 697, - [2479] = 497, - [2480] = 444, - [2481] = 2481, - [2482] = 442, - [2483] = 108, - [2484] = 2464, - [2485] = 2464, - [2486] = 341, - [2487] = 490, - [2488] = 444, - [2489] = 338, - [2490] = 340, - [2491] = 399, - [2492] = 353, - [2493] = 470, - [2494] = 333, - [2495] = 2464, - [2496] = 2496, - [2497] = 2497, - [2498] = 412, - [2499] = 470, - [2500] = 704, - [2501] = 692, - [2502] = 675, - [2503] = 698, - [2504] = 442, - [2505] = 642, - [2506] = 369, - [2507] = 105, - [2508] = 357, - [2509] = 645, - [2510] = 459, - [2511] = 339, - [2512] = 334, - [2513] = 493, - [2514] = 503, - [2515] = 937, - [2516] = 485, + [2457] = 446, + [2458] = 405, + [2459] = 344, + [2460] = 112, + [2461] = 345, + [2462] = 338, + [2463] = 2463, + [2464] = 109, + [2465] = 346, + [2466] = 347, + [2467] = 348, + [2468] = 113, + [2469] = 483, + [2470] = 499, + [2471] = 488, + [2472] = 479, + [2473] = 443, + [2474] = 544, + [2475] = 345, + [2476] = 446, + [2477] = 333, + [2478] = 97, + [2479] = 2479, + [2480] = 346, + [2481] = 443, + [2482] = 368, + [2483] = 347, + [2484] = 404, + [2485] = 455, + [2486] = 348, + [2487] = 464, + [2488] = 1841, + [2489] = 446, + [2490] = 485, + [2491] = 403, + [2492] = 475, + [2493] = 99, + [2494] = 112, + [2495] = 334, + [2496] = 338, + [2497] = 109, + [2498] = 405, + [2499] = 113, + [2500] = 400, + [2501] = 401, + [2502] = 402, + [2503] = 335, + [2504] = 340, + [2505] = 443, + [2506] = 544, + [2507] = 341, + [2508] = 344, + [2509] = 545, + [2510] = 478, + [2511] = 368, + [2512] = 464, + [2513] = 403, + [2514] = 488, + [2515] = 498, + [2516] = 479, [2517] = 2517, - [2518] = 369, - [2519] = 489, - [2520] = 2497, - [2521] = 2521, - [2522] = 886, - [2523] = 941, - [2524] = 961, - [2525] = 459, - [2526] = 2526, - [2527] = 960, - [2528] = 948, - [2529] = 503, - [2530] = 2530, - [2531] = 500, - [2532] = 357, - [2533] = 954, - [2534] = 958, - [2535] = 959, - [2536] = 341, - [2537] = 2537, - [2538] = 2538, - [2539] = 2539, - [2540] = 2540, - [2541] = 2541, - [2542] = 339, - [2543] = 442, - [2544] = 342, + [2518] = 476, + [2519] = 109, + [2520] = 353, + [2521] = 346, + [2522] = 347, + [2523] = 348, + [2524] = 335, + [2525] = 113, + [2526] = 455, + [2527] = 464, + [2528] = 368, + [2529] = 443, + [2530] = 446, + [2531] = 2531, + [2532] = 2532, + [2533] = 2533, + [2534] = 333, + [2535] = 455, + [2536] = 405, + [2537] = 2517, + [2538] = 485, + [2539] = 475, + [2540] = 478, + [2541] = 1841, + [2542] = 2542, + [2543] = 344, + [2544] = 544, [2545] = 2545, - [2546] = 931, - [2547] = 2547, - [2548] = 343, - [2549] = 2549, - [2550] = 444, - [2551] = 334, - [2552] = 349, - [2553] = 497, - [2554] = 493, - [2555] = 470, - [2556] = 338, - [2557] = 486, - [2558] = 500, - [2559] = 490, - [2560] = 645, - [2561] = 360, - [2562] = 2475, - [2563] = 2537, - [2564] = 697, - [2565] = 642, - [2566] = 351, - [2567] = 2567, - [2568] = 340, - [2569] = 503, - [2570] = 2570, - [2571] = 490, - [2572] = 459, - [2573] = 484, - [2574] = 2481, - [2575] = 353, - [2576] = 704, - [2577] = 470, - [2578] = 692, - [2579] = 675, - [2580] = 698, - [2581] = 2581, - [2582] = 444, - [2583] = 503, - [2584] = 2584, - [2585] = 2538, - [2586] = 459, - [2587] = 937, - [2588] = 503, - [2589] = 490, - [2590] = 2590, - [2591] = 490, + [2546] = 345, + [2547] = 545, + [2548] = 2517, + [2549] = 446, + [2550] = 443, + [2551] = 2517, + [2552] = 367, + [2553] = 338, + [2554] = 340, + [2555] = 677, + [2556] = 483, + [2557] = 352, + [2558] = 112, + [2559] = 499, + [2560] = 681, + [2561] = 704, + [2562] = 705, + [2563] = 707, + [2564] = 341, + [2565] = 2565, + [2566] = 346, + [2567] = 803, + [2568] = 914, + [2569] = 464, + [2570] = 944, + [2571] = 2531, + [2572] = 949, + [2573] = 951, + [2574] = 899, + [2575] = 2532, + [2576] = 903, + [2577] = 2533, + [2578] = 2578, + [2579] = 2579, + [2580] = 2580, + [2581] = 483, + [2582] = 499, + [2583] = 2427, + [2584] = 464, + [2585] = 2412, + [2586] = 335, + [2587] = 918, + [2588] = 347, + [2589] = 920, + [2590] = 544, + [2591] = 923, [2592] = 2592, - [2593] = 2567, - [2594] = 493, - [2595] = 500, - [2596] = 491, - [2597] = 2597, - [2598] = 2598, - [2599] = 489, - [2600] = 948, - [2601] = 465, - [2602] = 497, - [2603] = 954, - [2604] = 697, - [2605] = 704, - [2606] = 692, - [2607] = 675, - [2608] = 698, - [2609] = 351, - [2610] = 500, - [2611] = 339, - [2612] = 642, - [2613] = 2547, - [2614] = 958, - [2615] = 466, - [2616] = 491, - [2617] = 486, - [2618] = 959, - [2619] = 960, - [2620] = 967, - [2621] = 2621, - [2622] = 498, - [2623] = 2623, - [2624] = 498, - [2625] = 485, - [2626] = 941, - [2627] = 368, - [2628] = 2521, - [2629] = 442, - [2630] = 2539, + [2593] = 2593, + [2594] = 2594, + [2595] = 2420, + [2596] = 488, + [2597] = 348, + [2598] = 479, + [2599] = 545, + [2600] = 2600, + [2601] = 2397, + [2602] = 443, + [2603] = 455, + [2604] = 485, + [2605] = 446, + [2606] = 353, + [2607] = 367, + [2608] = 485, + [2609] = 368, + [2610] = 475, + [2611] = 476, + [2612] = 338, + [2613] = 340, + [2614] = 475, + [2615] = 478, + [2616] = 341, + [2617] = 478, + [2618] = 498, + [2619] = 352, + [2620] = 677, + [2621] = 2400, + [2622] = 2405, + [2623] = 455, + [2624] = 344, + [2625] = 681, + [2626] = 2600, + [2627] = 704, + [2628] = 705, + [2629] = 707, + [2630] = 345, [2631] = 2631, - [2632] = 2581, - [2633] = 484, - [2634] = 1940, - [2635] = 2549, - [2636] = 2545, - [2637] = 645, - [2638] = 470, - [2639] = 961, - [2640] = 357, - [2641] = 931, - [2642] = 886, - [2643] = 2643, + [2632] = 914, + [2633] = 494, + [2634] = 443, + [2635] = 545, + [2636] = 2636, + [2637] = 1948, + [2638] = 464, + [2639] = 499, + [2640] = 352, + [2641] = 478, + [2642] = 494, + [2643] = 446, [2644] = 498, - [2645] = 697, - [2646] = 2646, - [2647] = 2647, - [2648] = 2648, - [2649] = 2649, - [2650] = 2650, - [2651] = 442, - [2652] = 2652, - [2653] = 2653, - [2654] = 2654, + [2645] = 2579, + [2646] = 462, + [2647] = 479, + [2648] = 920, + [2649] = 491, + [2650] = 478, + [2651] = 944, + [2652] = 353, + [2653] = 923, + [2654] = 2580, [2655] = 2655, - [2656] = 2656, - [2657] = 2657, - [2658] = 2658, - [2659] = 2659, - [2660] = 2660, - [2661] = 2661, - [2662] = 2662, - [2663] = 2663, + [2656] = 476, + [2657] = 2578, + [2658] = 2592, + [2659] = 367, + [2660] = 475, + [2661] = 2565, + [2662] = 949, + [2663] = 2593, [2664] = 2664, - [2665] = 2665, - [2666] = 2666, - [2667] = 2667, - [2668] = 2668, + [2665] = 491, + [2666] = 951, + [2667] = 485, + [2668] = 488, [2669] = 2669, [2670] = 2670, - [2671] = 2671, - [2672] = 2672, - [2673] = 2673, - [2674] = 2674, - [2675] = 2675, - [2676] = 2676, - [2677] = 2677, - [2678] = 2678, + [2671] = 475, + [2672] = 677, + [2673] = 681, + [2674] = 704, + [2675] = 705, + [2676] = 707, + [2677] = 2594, + [2678] = 899, [2679] = 2679, - [2680] = 2680, - [2681] = 444, - [2682] = 704, - [2683] = 444, - [2684] = 2684, - [2685] = 2685, - [2686] = 2686, - [2687] = 2687, - [2688] = 2688, - [2689] = 2689, + [2680] = 903, + [2681] = 918, + [2682] = 2682, + [2683] = 460, + [2684] = 803, + [2685] = 483, + [2686] = 1086, + [2687] = 374, + [2688] = 544, + [2689] = 2631, [2690] = 2690, - [2691] = 2691, - [2692] = 2692, - [2693] = 2693, + [2691] = 455, + [2692] = 485, + [2693] = 483, [2694] = 2694, - [2695] = 937, - [2696] = 470, + [2695] = 2695, + [2696] = 2696, [2697] = 2697, [2698] = 2698, - [2699] = 941, - [2700] = 2700, - [2701] = 368, + [2699] = 2699, + [2700] = 944, + [2701] = 494, [2702] = 2702, [2703] = 2703, - [2704] = 692, - [2705] = 675, - [2706] = 698, - [2707] = 948, - [2708] = 954, - [2709] = 459, - [2710] = 958, - [2711] = 2711, + [2704] = 2704, + [2705] = 374, + [2706] = 2706, + [2707] = 2707, + [2708] = 2708, + [2709] = 2709, + [2710] = 2710, + [2711] = 1086, [2712] = 2712, - [2713] = 959, + [2713] = 2713, [2714] = 2714, [2715] = 2715, - [2716] = 886, - [2717] = 960, + [2716] = 2716, + [2717] = 2717, [2718] = 2718, [2719] = 2719, [2720] = 2720, - [2721] = 2597, - [2722] = 961, - [2723] = 931, - [2724] = 2724, + [2721] = 2721, + [2722] = 460, + [2723] = 2669, + [2724] = 2670, [2725] = 2725, [2726] = 2726, [2727] = 2727, - [2728] = 2598, + [2728] = 2728, [2729] = 2729, [2730] = 2730, [2731] = 2731, [2732] = 2732, - [2733] = 702, - [2734] = 703, - [2735] = 2735, - [2736] = 710, - [2737] = 674, + [2733] = 2733, + [2734] = 491, + [2735] = 949, + [2736] = 951, + [2737] = 2737, [2738] = 2738, - [2739] = 2739, + [2739] = 443, [2740] = 2740, [2741] = 2741, [2742] = 2742, [2743] = 2743, - [2744] = 2744, + [2744] = 464, [2745] = 2745, [2746] = 2746, - [2747] = 2747, + [2747] = 899, [2748] = 2748, [2749] = 2749, - [2750] = 2750, + [2750] = 443, [2751] = 2751, [2752] = 2752, - [2753] = 2753, + [2753] = 903, [2754] = 2754, [2755] = 2755, - [2756] = 465, + [2756] = 2756, [2757] = 2757, [2758] = 2758, [2759] = 2759, - [2760] = 1940, - [2761] = 466, - [2762] = 2762, + [2760] = 2760, + [2761] = 2761, + [2762] = 455, [2763] = 2763, - [2764] = 500, + [2764] = 2764, [2765] = 2765, [2766] = 2766, [2767] = 2767, - [2768] = 503, - [2769] = 490, + [2768] = 2768, + [2769] = 803, [2770] = 2770, [2771] = 2771, [2772] = 2772, - [2773] = 2773, + [2773] = 918, [2774] = 2774, [2775] = 2775, [2776] = 2776, @@ -7596,19 +7590,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2781] = 2781, [2782] = 2782, [2783] = 2783, - [2784] = 491, + [2784] = 2784, [2785] = 2785, [2786] = 2786, [2787] = 2787, [2788] = 2788, [2789] = 2789, - [2790] = 1980, - [2791] = 484, - [2792] = 486, - [2793] = 489, - [2794] = 493, - [2795] = 497, - [2796] = 485, + [2790] = 2790, + [2791] = 2791, + [2792] = 2792, + [2793] = 2793, + [2794] = 1948, + [2795] = 2795, + [2796] = 2796, [2797] = 2797, [2798] = 2798, [2799] = 2799, @@ -7627,2398 +7621,2454 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2812] = 2812, [2813] = 2813, [2814] = 2814, - [2815] = 967, - [2816] = 941, - [2817] = 503, - [2818] = 2818, - [2819] = 490, - [2820] = 676, + [2815] = 462, + [2816] = 2816, + [2817] = 2817, + [2818] = 485, + [2819] = 2819, + [2820] = 2820, [2821] = 2821, - [2822] = 2541, - [2823] = 2743, - [2824] = 702, - [2825] = 459, - [2826] = 923, - [2827] = 2744, - [2828] = 2828, - [2829] = 2570, - [2830] = 1980, - [2831] = 2745, - [2832] = 2762, - [2833] = 2530, - [2834] = 703, - [2835] = 2540, - [2836] = 886, - [2837] = 961, - [2838] = 931, + [2822] = 2822, + [2823] = 475, + [2824] = 677, + [2825] = 478, + [2826] = 2826, + [2827] = 681, + [2828] = 920, + [2829] = 2829, + [2830] = 923, + [2831] = 446, + [2832] = 2832, + [2833] = 704, + [2834] = 705, + [2835] = 707, + [2836] = 2836, + [2837] = 2837, + [2838] = 2838, [2839] = 2839, - [2840] = 2840, - [2841] = 2779, - [2842] = 2530, - [2843] = 899, - [2844] = 2780, - [2845] = 2782, + [2840] = 2297, + [2841] = 2841, + [2842] = 2842, + [2843] = 2843, + [2844] = 2844, + [2845] = 2845, [2846] = 2846, [2847] = 2847, [2848] = 2848, - [2849] = 2849, - [2850] = 2783, - [2851] = 2786, - [2852] = 2852, - [2853] = 2797, - [2854] = 2798, - [2855] = 2799, - [2856] = 2800, - [2857] = 2857, - [2858] = 2801, - [2859] = 2802, - [2860] = 2803, - [2861] = 2805, - [2862] = 2808, - [2863] = 368, - [2864] = 2809, - [2865] = 2810, - [2866] = 2866, - [2867] = 2867, - [2868] = 466, - [2869] = 2517, - [2870] = 2526, - [2871] = 2871, - [2872] = 960, - [2873] = 948, - [2874] = 2541, - [2875] = 954, - [2876] = 937, - [2877] = 710, - [2878] = 674, - [2879] = 2879, + [2849] = 2075, + [2850] = 499, + [2851] = 498, + [2852] = 479, + [2853] = 476, + [2854] = 488, + [2855] = 2855, + [2856] = 709, + [2857] = 691, + [2858] = 2858, + [2859] = 672, + [2860] = 673, + [2861] = 914, + [2862] = 2862, + [2863] = 2863, + [2864] = 2864, + [2865] = 2865, + [2866] = 672, + [2867] = 927, + [2868] = 2868, + [2869] = 462, + [2870] = 684, + [2871] = 709, + [2872] = 2872, + [2873] = 2748, + [2874] = 2749, + [2875] = 475, + [2876] = 2751, + [2877] = 2752, + [2878] = 2878, + [2879] = 691, [2880] = 2880, - [2881] = 699, - [2882] = 444, - [2883] = 470, - [2884] = 697, - [2885] = 2540, - [2886] = 704, - [2887] = 2887, - [2888] = 958, + [2881] = 478, + [2882] = 2882, + [2883] = 2883, + [2884] = 679, + [2885] = 2885, + [2886] = 2886, + [2887] = 374, + [2888] = 2400, [2889] = 2889, - [2890] = 2813, - [2891] = 2891, - [2892] = 389, - [2893] = 2789, - [2894] = 959, - [2895] = 2711, - [2896] = 967, - [2897] = 2570, - [2898] = 699, - [2899] = 930, - [2900] = 465, - [2901] = 2879, - [2902] = 2880, - [2903] = 500, - [2904] = 685, - [2905] = 2905, - [2906] = 692, - [2907] = 2517, - [2908] = 2526, - [2909] = 675, - [2910] = 2887, - [2911] = 2911, - [2912] = 2889, - [2913] = 698, - [2914] = 936, - [2915] = 2812, - [2916] = 2916, - [2917] = 2917, - [2918] = 2918, - [2919] = 2919, - [2920] = 763, - [2921] = 764, - [2922] = 2530, - [2923] = 444, - [2924] = 743, - [2925] = 744, - [2926] = 2857, + [2890] = 379, + [2891] = 704, + [2892] = 705, + [2893] = 460, + [2894] = 2894, + [2895] = 485, + [2896] = 918, + [2897] = 914, + [2898] = 681, + [2899] = 707, + [2900] = 686, + [2901] = 2412, + [2902] = 2754, + [2903] = 2755, + [2904] = 2756, + [2905] = 2757, + [2906] = 2758, + [2907] = 2759, + [2908] = 2760, + [2909] = 2075, + [2910] = 2910, + [2911] = 944, + [2912] = 920, + [2913] = 923, + [2914] = 2761, + [2915] = 2764, + [2916] = 2765, + [2917] = 2766, + [2918] = 803, + [2919] = 2768, + [2920] = 2920, + [2921] = 2847, + [2922] = 2740, + [2923] = 2923, + [2924] = 949, + [2925] = 2706, + [2926] = 951, [2927] = 2927, - [2928] = 2928, - [2929] = 2905, - [2930] = 888, - [2931] = 724, - [2932] = 936, - [2933] = 2191, - [2934] = 724, - [2935] = 676, - [2936] = 949, - [2937] = 2937, - [2938] = 2846, - [2939] = 2849, - [2940] = 2570, - [2941] = 377, - [2942] = 897, - [2943] = 898, - [2944] = 2944, - [2945] = 2945, - [2946] = 2946, - [2947] = 730, - [2948] = 2948, - [2949] = 389, + [2928] = 899, + [2929] = 684, + [2930] = 938, + [2931] = 903, + [2932] = 2427, + [2933] = 2420, + [2934] = 2934, + [2935] = 2882, + [2936] = 2400, + [2937] = 2883, + [2938] = 443, + [2939] = 455, + [2940] = 2741, + [2941] = 2941, + [2942] = 2743, + [2943] = 673, + [2944] = 2405, + [2945] = 2397, + [2946] = 937, + [2947] = 2947, + [2948] = 942, + [2949] = 464, [2950] = 2950, - [2951] = 730, - [2952] = 746, - [2953] = 2818, - [2954] = 747, - [2955] = 2955, - [2956] = 2176, - [2957] = 2867, - [2958] = 2540, - [2959] = 2517, - [2960] = 389, - [2961] = 2961, - [2962] = 2839, - [2963] = 2963, - [2964] = 2964, - [2965] = 2526, - [2966] = 2966, - [2967] = 2967, - [2968] = 930, - [2969] = 2969, - [2970] = 2970, - [2971] = 2971, + [2951] = 2712, + [2952] = 2412, + [2953] = 2746, + [2954] = 2954, + [2955] = 2405, + [2956] = 2956, + [2957] = 2957, + [2958] = 2956, + [2959] = 677, + [2960] = 2397, + [2961] = 2420, + [2962] = 2957, + [2963] = 1086, + [2964] = 2427, + [2965] = 2767, + [2966] = 680, + [2967] = 798, + [2968] = 2968, + [2969] = 811, + [2970] = 379, + [2971] = 813, [2972] = 2972, - [2973] = 2973, - [2974] = 2974, + [2973] = 680, + [2974] = 391, [2975] = 2975, - [2976] = 2976, - [2977] = 720, - [2978] = 886, - [2979] = 721, - [2980] = 937, - [2981] = 722, - [2982] = 723, - [2983] = 941, - [2984] = 503, - [2985] = 2985, - [2986] = 2986, - [2987] = 735, - [2988] = 2988, - [2989] = 948, - [2990] = 2990, - [2991] = 954, - [2992] = 2992, - [2993] = 958, - [2994] = 959, - [2995] = 490, - [2996] = 726, - [2997] = 727, - [2998] = 728, - [2999] = 389, - [3000] = 763, - [3001] = 967, - [3002] = 764, + [2976] = 922, + [2977] = 2977, + [2978] = 2978, + [2979] = 803, + [2980] = 2980, + [2981] = 379, + [2982] = 914, + [2983] = 847, + [2984] = 443, + [2985] = 804, + [2986] = 843, + [2987] = 916, + [2988] = 942, + [2989] = 2989, + [2990] = 847, + [2991] = 944, + [2992] = 2947, + [2993] = 815, + [2994] = 2397, + [2995] = 2405, + [2996] = 844, + [2997] = 848, + [2998] = 2412, + [2999] = 849, + [3000] = 850, + [3001] = 3001, + [3002] = 845, [3003] = 3003, - [3004] = 398, - [3005] = 3005, - [3006] = 736, - [3007] = 960, - [3008] = 737, - [3009] = 2840, - [3010] = 739, - [3011] = 740, - [3012] = 741, - [3013] = 742, - [3014] = 961, - [3015] = 931, - [3016] = 3016, - [3017] = 916, - [3018] = 949, - [3019] = 897, - [3020] = 695, - [3021] = 943, - [3022] = 898, - [3023] = 694, - [3024] = 3024, - [3025] = 899, - [3026] = 3026, - [3027] = 887, - [3028] = 3028, - [3029] = 2891, - [3030] = 951, + [3004] = 3004, + [3005] = 846, + [3006] = 3006, + [3007] = 3007, + [3008] = 918, + [3009] = 3009, + [3010] = 952, + [3011] = 3011, + [3012] = 3012, + [3013] = 3013, + [3014] = 3014, + [3015] = 849, + [3016] = 940, + [3017] = 952, + [3018] = 920, + [3019] = 850, + [3020] = 923, + [3021] = 934, + [3022] = 922, + [3023] = 935, + [3024] = 676, + [3025] = 2885, + [3026] = 798, + [3027] = 936, + [3028] = 937, + [3029] = 684, + [3030] = 3030, [3031] = 3031, - [3032] = 735, - [3033] = 3033, - [3034] = 916, - [3035] = 951, + [3032] = 679, + [3033] = 1086, + [3034] = 3034, + [3035] = 2427, [3036] = 3036, [3037] = 3037, - [3038] = 924, - [3039] = 407, - [3040] = 3040, - [3041] = 3041, - [3042] = 3042, - [3043] = 3043, + [3038] = 864, + [3039] = 3039, + [3040] = 865, + [3041] = 2920, + [3042] = 2889, + [3043] = 517, [3044] = 3044, - [3045] = 685, - [3046] = 2541, - [3047] = 3047, - [3048] = 3048, - [3049] = 746, - [3050] = 923, - [3051] = 924, - [3052] = 926, + [3045] = 2199, + [3046] = 686, + [3047] = 949, + [3048] = 927, + [3049] = 841, + [3050] = 3050, + [3051] = 3051, + [3052] = 811, [3053] = 3053, [3054] = 3054, - [3055] = 500, - [3056] = 695, - [3057] = 3057, - [3058] = 926, - [3059] = 719, - [3060] = 2174, - [3061] = 943, - [3062] = 694, - [3063] = 743, - [3064] = 699, - [3065] = 540, - [3066] = 744, - [3067] = 747, - [3068] = 887, - [3069] = 3069, - [3070] = 2173, - [3071] = 3071, - [3072] = 719, + [3055] = 3055, + [3056] = 934, + [3057] = 935, + [3058] = 715, + [3059] = 485, + [3060] = 3060, + [3061] = 951, + [3062] = 2894, + [3063] = 899, + [3064] = 2355, + [3065] = 936, + [3066] = 2356, + [3067] = 2192, + [3068] = 2195, + [3069] = 2196, + [3070] = 411, + [3071] = 2868, + [3072] = 676, [3073] = 3073, - [3074] = 738, - [3075] = 408, - [3076] = 3076, + [3074] = 3074, + [3075] = 2420, + [3076] = 916, [3077] = 3077, - [3078] = 916, + [3078] = 807, [3079] = 3079, - [3080] = 389, - [3081] = 2955, - [3082] = 400, - [3083] = 3083, - [3084] = 724, - [3085] = 2970, - [3086] = 3037, + [3080] = 820, + [3081] = 3081, + [3082] = 3082, + [3083] = 903, + [3084] = 3084, + [3085] = 3085, + [3086] = 2954, [3087] = 3087, - [3088] = 3088, - [3089] = 887, - [3090] = 398, - [3091] = 743, - [3092] = 2967, + [3088] = 839, + [3089] = 3089, + [3090] = 3090, + [3091] = 900, + [3092] = 3092, [3093] = 3093, - [3094] = 936, - [3095] = 3095, + [3094] = 3094, + [3095] = 842, [3096] = 3096, - [3097] = 3036, - [3098] = 744, - [3099] = 398, - [3100] = 2986, - [3101] = 726, - [3102] = 3102, - [3103] = 727, - [3104] = 691, - [3105] = 3105, - [3106] = 3076, - [3107] = 746, - [3108] = 377, + [3097] = 809, + [3098] = 2886, + [3099] = 3099, + [3100] = 820, + [3101] = 848, + [3102] = 379, + [3103] = 840, + [3104] = 804, + [3105] = 475, + [3106] = 478, + [3107] = 3107, + [3108] = 805, [3109] = 3109, - [3110] = 736, - [3111] = 737, - [3112] = 738, - [3113] = 3113, - [3114] = 3114, - [3115] = 3115, - [3116] = 3116, - [3117] = 3117, + [3110] = 399, + [3111] = 839, + [3112] = 900, + [3113] = 2400, + [3114] = 806, + [3115] = 812, + [3116] = 938, + [3117] = 940, [3118] = 3118, - [3119] = 377, - [3120] = 3120, - [3121] = 739, - [3122] = 3003, - [3123] = 3005, - [3124] = 3016, - [3125] = 740, - [3126] = 3073, - [3127] = 407, - [3128] = 3128, - [3129] = 3129, - [3130] = 728, - [3131] = 3131, - [3132] = 741, - [3133] = 951, + [3119] = 2910, + [3120] = 864, + [3121] = 3121, + [3122] = 865, + [3123] = 3123, + [3124] = 3124, + [3125] = 804, + [3126] = 3126, + [3127] = 3127, + [3128] = 3030, + [3129] = 3081, + [3130] = 379, + [3131] = 391, + [3132] = 3132, + [3133] = 2419, [3134] = 3134, - [3135] = 2173, - [3136] = 3136, + [3135] = 3135, + [3136] = 3004, [3137] = 3137, - [3138] = 742, - [3139] = 3139, - [3140] = 3140, - [3141] = 747, - [3142] = 3142, - [3143] = 930, - [3144] = 3144, + [3138] = 3138, + [3139] = 3036, + [3140] = 2359, + [3141] = 3141, + [3142] = 680, + [3143] = 3006, + [3144] = 922, [3145] = 3145, - [3146] = 3146, - [3147] = 2174, - [3148] = 949, - [3149] = 407, - [3150] = 2988, - [3151] = 3151, - [3152] = 2176, - [3153] = 924, - [3154] = 409, - [3155] = 926, - [3156] = 730, - [3157] = 3157, - [3158] = 3158, - [3159] = 3076, - [3160] = 410, + [3146] = 676, + [3147] = 3107, + [3148] = 3007, + [3149] = 916, + [3150] = 3150, + [3151] = 715, + [3152] = 3152, + [3153] = 3153, + [3154] = 683, + [3155] = 400, + [3156] = 391, + [3157] = 401, + [3158] = 3132, + [3159] = 402, + [3160] = 3051, [3161] = 3161, - [3162] = 897, - [3163] = 719, - [3164] = 398, - [3165] = 695, - [3166] = 2971, - [3167] = 3167, - [3168] = 898, - [3169] = 3169, - [3170] = 2972, - [3171] = 3077, - [3172] = 3083, - [3173] = 3173, - [3174] = 3088, - [3175] = 407, - [3176] = 2973, - [3177] = 720, - [3178] = 389, - [3179] = 3179, - [3180] = 943, - [3181] = 2974, - [3182] = 721, - [3183] = 3040, - [3184] = 3069, - [3185] = 3071, - [3186] = 2944, - [3187] = 3028, - [3188] = 2919, - [3189] = 2950, - [3190] = 2963, - [3191] = 3044, - [3192] = 3047, - [3193] = 3057, - [3194] = 2937, - [3195] = 722, - [3196] = 2975, - [3197] = 735, - [3198] = 3198, - [3199] = 723, - [3200] = 377, - [3201] = 888, - [3202] = 3198, - [3203] = 694, - [3204] = 2191, - [3205] = 763, - [3206] = 764, + [3162] = 938, + [3163] = 940, + [3164] = 952, + [3165] = 3053, + [3166] = 798, + [3167] = 3060, + [3168] = 805, + [3169] = 806, + [3170] = 807, + [3171] = 809, + [3172] = 2392, + [3173] = 391, + [3174] = 411, + [3175] = 2199, + [3176] = 3031, + [3177] = 3177, + [3178] = 3081, + [3179] = 811, + [3180] = 3092, + [3181] = 934, + [3182] = 935, + [3183] = 936, + [3184] = 937, + [3185] = 812, + [3186] = 813, + [3187] = 815, + [3188] = 820, + [3189] = 927, + [3190] = 3190, + [3191] = 3191, + [3192] = 399, + [3193] = 411, + [3194] = 3003, + [3195] = 3195, + [3196] = 2435, + [3197] = 399, + [3198] = 839, + [3199] = 900, + [3200] = 849, + [3201] = 3201, + [3202] = 3127, + [3203] = 3203, + [3204] = 3127, + [3205] = 3205, + [3206] = 3206, [3207] = 3207, - [3208] = 3208, - [3209] = 2967, - [3210] = 2985, - [3211] = 3211, - [3212] = 899, - [3213] = 923, - [3214] = 3040, - [3215] = 3215, - [3216] = 3216, - [3217] = 3217, - [3218] = 3218, - [3219] = 3219, - [3220] = 741, - [3221] = 742, + [3208] = 3014, + [3209] = 379, + [3210] = 3210, + [3211] = 411, + [3212] = 3212, + [3213] = 3213, + [3214] = 3214, + [3215] = 3012, + [3216] = 840, + [3217] = 841, + [3218] = 842, + [3219] = 843, + [3220] = 844, + [3221] = 845, [3222] = 3222, - [3223] = 3223, - [3224] = 3224, - [3225] = 3225, - [3226] = 728, - [3227] = 3227, - [3228] = 3228, - [3229] = 3109, - [3230] = 3230, - [3231] = 3231, - [3232] = 3232, - [3233] = 3233, - [3234] = 3234, - [3235] = 408, - [3236] = 409, - [3237] = 410, - [3238] = 408, - [3239] = 3239, - [3240] = 409, - [3241] = 3241, - [3242] = 3242, - [3243] = 3243, - [3244] = 3244, - [3245] = 3245, - [3246] = 3246, - [3247] = 3247, - [3248] = 92, - [3249] = 3249, - [3250] = 3250, - [3251] = 3251, - [3252] = 3087, - [3253] = 93, - [3254] = 3254, - [3255] = 3255, + [3223] = 2192, + [3224] = 864, + [3225] = 865, + [3226] = 3118, + [3227] = 846, + [3228] = 3077, + [3229] = 3079, + [3230] = 3087, + [3231] = 3001, + [3232] = 3055, + [3233] = 3090, + [3234] = 3099, + [3235] = 2978, + [3236] = 3037, + [3237] = 3096, + [3238] = 3054, + [3239] = 2367, + [3240] = 850, + [3241] = 2370, + [3242] = 399, + [3243] = 2195, + [3244] = 942, + [3245] = 2196, + [3246] = 3013, + [3247] = 2380, + [3248] = 2381, + [3249] = 2382, + [3250] = 2383, + [3251] = 3141, + [3252] = 3252, + [3253] = 2391, + [3254] = 2379, + [3255] = 3145, [3256] = 3256, - [3257] = 3257, - [3258] = 3169, + [3257] = 404, + [3258] = 3152, [3259] = 3259, [3260] = 3260, - [3261] = 3261, - [3262] = 3262, - [3263] = 3263, - [3264] = 410, - [3265] = 3265, - [3266] = 3102, - [3267] = 92, - [3268] = 336, - [3269] = 3269, - [3270] = 93, - [3271] = 726, - [3272] = 3272, - [3273] = 407, - [3274] = 727, - [3275] = 736, - [3276] = 92, - [3277] = 400, - [3278] = 3146, - [3279] = 737, + [3261] = 847, + [3262] = 848, + [3263] = 3124, + [3264] = 402, + [3265] = 3206, + [3266] = 3266, + [3267] = 3267, + [3268] = 93, + [3269] = 3207, + [3270] = 3210, + [3271] = 400, + [3272] = 401, + [3273] = 3273, + [3274] = 3274, + [3275] = 3275, + [3276] = 3276, + [3277] = 842, + [3278] = 3278, + [3279] = 3279, [3280] = 3280, - [3281] = 3113, - [3282] = 3114, - [3283] = 3115, + [3281] = 402, + [3282] = 3282, + [3283] = 3205, [3284] = 3284, - [3285] = 738, - [3286] = 398, - [3287] = 3161, - [3288] = 3118, + [3285] = 3285, + [3286] = 3286, + [3287] = 3287, + [3288] = 3288, [3289] = 3289, - [3290] = 888, - [3291] = 3291, - [3292] = 400, - [3293] = 333, + [3290] = 3118, + [3291] = 809, + [3292] = 3191, + [3293] = 411, [3294] = 3294, [3295] = 3295, - [3296] = 3296, - [3297] = 3297, - [3298] = 93, - [3299] = 3299, - [3300] = 3300, - [3301] = 3167, - [3302] = 3136, - [3303] = 3207, - [3304] = 739, - [3305] = 740, - [3306] = 540, - [3307] = 3307, - [3308] = 3308, + [3296] = 3077, + [3297] = 3079, + [3298] = 3087, + [3299] = 3001, + [3300] = 3055, + [3301] = 3090, + [3302] = 3099, + [3303] = 3303, + [3304] = 2978, + [3305] = 3037, + [3306] = 3096, + [3307] = 3054, + [3308] = 93, [3309] = 3309, - [3310] = 2967, + [3310] = 813, [3311] = 3311, - [3312] = 3145, - [3313] = 3313, + [3312] = 93, + [3313] = 805, [3314] = 3314, - [3315] = 3315, + [3315] = 334, [3316] = 3316, - [3317] = 3069, - [3318] = 3071, - [3319] = 2944, - [3320] = 3028, - [3321] = 2919, - [3322] = 2950, - [3323] = 2963, - [3324] = 3044, - [3325] = 3047, - [3326] = 3057, - [3327] = 2937, - [3328] = 3328, + [3317] = 3134, + [3318] = 3289, + [3319] = 3126, + [3320] = 411, + [3321] = 3321, + [3322] = 3081, + [3323] = 3323, + [3324] = 3324, + [3325] = 3325, + [3326] = 3326, + [3327] = 3201, + [3328] = 517, [3329] = 3329, - [3330] = 3330, - [3331] = 389, + [3330] = 399, + [3331] = 3331, [3332] = 3332, - [3333] = 3333, - [3334] = 3079, + [3333] = 3150, + [3334] = 3334, [3335] = 400, - [3336] = 408, - [3337] = 409, - [3338] = 410, - [3339] = 3216, + [3336] = 401, + [3337] = 3337, + [3338] = 3338, + [3339] = 3339, [3340] = 3340, - [3341] = 3341, - [3342] = 398, - [3343] = 720, - [3344] = 378, - [3345] = 721, - [3346] = 3076, - [3347] = 722, - [3348] = 92, - [3349] = 3349, - [3350] = 93, - [3351] = 723, - [3352] = 3352, - [3353] = 407, + [3341] = 92, + [3342] = 3342, + [3343] = 846, + [3344] = 3344, + [3345] = 3345, + [3346] = 3346, + [3347] = 404, + [3348] = 843, + [3349] = 400, + [3350] = 806, + [3351] = 92, + [3352] = 3214, + [3353] = 3135, [3354] = 3354, [3355] = 3355, - [3356] = 691, - [3357] = 3357, - [3358] = 98, - [3359] = 3355, - [3360] = 99, - [3361] = 398, - [3362] = 92, + [3356] = 815, + [3357] = 401, + [3358] = 3358, + [3359] = 844, + [3360] = 402, + [3361] = 3361, + [3362] = 845, [3363] = 3363, - [3364] = 92, - [3365] = 3365, - [3366] = 446, + [3364] = 93, + [3365] = 3153, + [3366] = 3366, [3367] = 3367, - [3368] = 98, - [3369] = 399, - [3370] = 98, - [3371] = 3371, - [3372] = 343, - [3373] = 99, + [3368] = 377, + [3369] = 3369, + [3370] = 3370, + [3371] = 404, + [3372] = 3372, + [3373] = 715, [3374] = 3374, - [3375] = 377, - [3376] = 360, - [3377] = 340, - [3378] = 338, - [3379] = 341, - [3380] = 353, - [3381] = 3355, - [3382] = 342, - [3383] = 349, + [3375] = 807, + [3376] = 840, + [3377] = 3190, + [3378] = 3127, + [3379] = 3379, + [3380] = 92, + [3381] = 3381, + [3382] = 379, + [3383] = 812, [3384] = 3384, - [3385] = 407, - [3386] = 412, - [3387] = 403, - [3388] = 99, - [3389] = 411, - [3390] = 93, + [3385] = 3385, + [3386] = 3386, + [3387] = 3387, + [3388] = 3259, + [3389] = 3389, + [3390] = 3390, [3391] = 3391, - [3392] = 92, - [3393] = 3355, + [3392] = 3392, + [3393] = 3393, [3394] = 3394, - [3395] = 3076, - [3396] = 3355, - [3397] = 93, - [3398] = 99, - [3399] = 98, - [3400] = 93, + [3395] = 92, + [3396] = 399, + [3397] = 3397, + [3398] = 3398, + [3399] = 3399, + [3400] = 841, [3401] = 3401, - [3402] = 3402, - [3403] = 3402, - [3404] = 3402, - [3405] = 3405, - [3406] = 3406, - [3407] = 105, - [3408] = 3402, - [3409] = 3409, - [3410] = 3401, - [3411] = 3406, - [3412] = 99, - [3413] = 442, - [3414] = 106, - [3415] = 3402, - [3416] = 444, - [3417] = 3417, - [3418] = 2444, - [3419] = 99, - [3420] = 3405, - [3421] = 3406, - [3422] = 3402, - [3423] = 442, - [3424] = 108, - [3425] = 105, - [3426] = 442, - [3427] = 408, - [3428] = 409, - [3429] = 106, - [3430] = 3405, - [3431] = 3406, - [3432] = 410, - [3433] = 3402, - [3434] = 400, - [3435] = 369, - [3436] = 3405, - [3437] = 3406, - [3438] = 3402, - [3439] = 444, - [3440] = 98, - [3441] = 3402, - [3442] = 3405, - [3443] = 3406, - [3444] = 3402, - [3445] = 98, - [3446] = 3405, - [3447] = 3406, - [3448] = 106, - [3449] = 3449, - [3450] = 98, - [3451] = 3405, - [3452] = 105, - [3453] = 3406, - [3454] = 3402, - [3455] = 3405, - [3456] = 3357, - [3457] = 3457, - [3458] = 3406, - [3459] = 3402, - [3460] = 99, - [3461] = 3457, - [3462] = 3449, - [3463] = 3405, - [3464] = 3405, - [3465] = 3406, - [3466] = 3405, - [3467] = 3402, - [3468] = 3405, - [3469] = 3406, - [3470] = 444, - [3471] = 3406, - [3472] = 3405, - [3473] = 3406, - [3474] = 3405, - [3475] = 3406, - [3476] = 3402, - [3477] = 3402, - [3478] = 3409, - [3479] = 3402, - [3480] = 444, - [3481] = 108, - [3482] = 442, - [3483] = 3402, - [3484] = 105, - [3485] = 106, - [3486] = 3402, - [3487] = 3487, - [3488] = 108, - [3489] = 108, - [3490] = 3402, - [3491] = 105, - [3492] = 106, - [3493] = 489, - [3494] = 3494, - [3495] = 3495, - [3496] = 485, - [3497] = 106, - [3498] = 3494, - [3499] = 3495, - [3500] = 459, - [3501] = 3487, - [3502] = 3502, - [3503] = 3494, - [3504] = 3495, - [3505] = 343, - [3506] = 3494, - [3507] = 3495, - [3508] = 342, - [3509] = 3494, - [3510] = 3495, - [3511] = 349, - [3512] = 3494, - [3513] = 3494, - [3514] = 442, - [3515] = 3494, - [3516] = 3494, - [3517] = 3494, - [3518] = 92, - [3519] = 3494, - [3520] = 3494, - [3521] = 3494, - [3522] = 3494, - [3523] = 3494, - [3524] = 3494, - [3525] = 3525, - [3526] = 1841, - [3527] = 3495, - [3528] = 340, - [3529] = 3502, - [3530] = 3495, - [3531] = 3495, - [3532] = 3532, - [3533] = 3502, - [3534] = 459, - [3535] = 3502, - [3536] = 470, - [3537] = 3525, - [3538] = 108, - [3539] = 3525, - [3540] = 3540, - [3541] = 105, - [3542] = 108, - [3543] = 3495, - [3544] = 1841, - [3545] = 3495, - [3546] = 106, - [3547] = 3540, - [3548] = 470, - [3549] = 105, - [3550] = 3494, - [3551] = 3495, - [3552] = 3495, - [3553] = 470, - [3554] = 444, - [3555] = 3555, - [3556] = 3525, - [3557] = 3540, - [3558] = 3540, - [3559] = 442, - [3560] = 341, - [3561] = 108, - [3562] = 497, - [3563] = 459, - [3564] = 93, - [3565] = 470, - [3566] = 3494, - [3567] = 3495, - [3568] = 360, - [3569] = 459, - [3570] = 3570, - [3571] = 444, - [3572] = 333, - [3573] = 3573, - [3574] = 3573, - [3575] = 459, - [3576] = 3573, - [3577] = 645, - [3578] = 503, - [3579] = 500, - [3580] = 3573, - [3581] = 3581, - [3582] = 3582, - [3583] = 500, - [3584] = 490, - [3585] = 503, - [3586] = 3573, - [3587] = 3573, - [3588] = 490, - [3589] = 99, - [3590] = 470, + [3402] = 404, + [3403] = 3212, + [3404] = 411, + [3405] = 406, + [3406] = 97, + [3407] = 99, + [3408] = 92, + [3409] = 93, + [3410] = 92, + [3411] = 93, + [3412] = 399, + [3413] = 398, + [3414] = 97, + [3415] = 99, + [3416] = 92, + [3417] = 93, + [3418] = 403, + [3419] = 3419, + [3420] = 97, + [3421] = 450, + [3422] = 97, + [3423] = 3423, + [3424] = 333, + [3425] = 683, + [3426] = 99, + [3427] = 3427, + [3428] = 3428, + [3429] = 3429, + [3430] = 3430, + [3431] = 3431, + [3432] = 99, + [3433] = 3423, + [3434] = 3434, + [3435] = 3435, + [3436] = 3423, + [3437] = 391, + [3438] = 3423, + [3439] = 3423, + [3440] = 3440, + [3441] = 3127, + [3442] = 405, + [3443] = 2479, + [3444] = 99, + [3445] = 443, + [3446] = 97, + [3447] = 109, + [3448] = 368, + [3449] = 113, + [3450] = 400, + [3451] = 99, + [3452] = 3452, + [3453] = 3453, + [3454] = 3454, + [3455] = 3455, + [3456] = 3456, + [3457] = 401, + [3458] = 112, + [3459] = 402, + [3460] = 3452, + [3461] = 3453, + [3462] = 446, + [3463] = 443, + [3464] = 109, + [3465] = 97, + [3466] = 113, + [3467] = 344, + [3468] = 3468, + [3469] = 112, + [3470] = 345, + [3471] = 3471, + [3472] = 3472, + [3473] = 3473, + [3474] = 3454, + [3475] = 338, + [3476] = 3455, + [3477] = 443, + [3478] = 3471, + [3479] = 3472, + [3480] = 446, + [3481] = 443, + [3482] = 3452, + [3483] = 3453, + [3484] = 3456, + [3485] = 3430, + [3486] = 109, + [3487] = 346, + [3488] = 404, + [3489] = 347, + [3490] = 348, + [3491] = 3456, + [3492] = 113, + [3493] = 3452, + [3494] = 3453, + [3495] = 109, + [3496] = 446, + [3497] = 3452, + [3498] = 3453, + [3499] = 3456, + [3500] = 3452, + [3501] = 3453, + [3502] = 3456, + [3503] = 3452, + [3504] = 3453, + [3505] = 3456, + [3506] = 3452, + [3507] = 3453, + [3508] = 3456, + [3509] = 3452, + [3510] = 3453, + [3511] = 3456, + [3512] = 3452, + [3513] = 3453, + [3514] = 3456, + [3515] = 3452, + [3516] = 3453, + [3517] = 3456, + [3518] = 3452, + [3519] = 3453, + [3520] = 3456, + [3521] = 3452, + [3522] = 3453, + [3523] = 3456, + [3524] = 3452, + [3525] = 3453, + [3526] = 3456, + [3527] = 3456, + [3528] = 3456, + [3529] = 3456, + [3530] = 3456, + [3531] = 3456, + [3532] = 3456, + [3533] = 112, + [3534] = 97, + [3535] = 446, + [3536] = 340, + [3537] = 341, + [3538] = 99, + [3539] = 113, + [3540] = 112, + [3541] = 3456, + [3542] = 455, + [3543] = 3543, + [3544] = 443, + [3545] = 3545, + [3546] = 3543, + [3547] = 483, + [3548] = 3545, + [3549] = 3549, + [3550] = 112, + [3551] = 488, + [3552] = 3543, + [3553] = 1841, + [3554] = 109, + [3555] = 3545, + [3556] = 446, + [3557] = 3557, + [3558] = 3558, + [3559] = 455, + [3560] = 464, + [3561] = 3543, + [3562] = 3545, + [3563] = 455, + [3564] = 3549, + [3565] = 3557, + [3566] = 464, + [3567] = 443, + [3568] = 3568, + [3569] = 3549, + [3570] = 3557, + [3571] = 3549, + [3572] = 3557, + [3573] = 109, + [3574] = 113, + [3575] = 3549, + [3576] = 3557, + [3577] = 3549, + [3578] = 3557, + [3579] = 3549, + [3580] = 464, + [3581] = 3549, + [3582] = 1841, + [3583] = 112, + [3584] = 3549, + [3585] = 3557, + [3586] = 113, + [3587] = 455, + [3588] = 109, + [3589] = 3549, + [3590] = 113, [3591] = 3591, - [3592] = 338, - [3593] = 353, - [3594] = 3573, - [3595] = 470, - [3596] = 490, - [3597] = 500, - [3598] = 645, - [3599] = 3599, - [3600] = 642, - [3601] = 98, - [3602] = 3573, - [3603] = 642, - [3604] = 459, - [3605] = 3573, - [3606] = 645, - [3607] = 3573, - [3608] = 642, - [3609] = 93, - [3610] = 336, - [3611] = 92, - [3612] = 3573, - [3613] = 3613, - [3614] = 503, - [3615] = 3573, - [3616] = 500, - [3617] = 503, - [3618] = 490, - [3619] = 3573, - [3620] = 3581, - [3621] = 333, - [3622] = 444, - [3623] = 3623, - [3624] = 353, - [3625] = 704, - [3626] = 503, - [3627] = 3627, - [3628] = 3628, - [3629] = 3629, - [3630] = 442, - [3631] = 444, - [3632] = 489, - [3633] = 3633, - [3634] = 692, - [3635] = 675, - [3636] = 698, - [3637] = 442, - [3638] = 491, - [3639] = 645, - [3640] = 338, - [3641] = 3641, - [3642] = 3642, - [3643] = 3643, - [3644] = 98, - [3645] = 490, - [3646] = 3646, - [3647] = 333, - [3648] = 3648, - [3649] = 490, - [3650] = 3646, - [3651] = 3641, - [3652] = 106, - [3653] = 333, - [3654] = 3654, - [3655] = 485, - [3656] = 3646, - [3657] = 3648, - [3658] = 3627, + [3592] = 3549, + [3593] = 3549, + [3594] = 3557, + [3595] = 3558, + [3596] = 446, + [3597] = 3549, + [3598] = 3549, + [3599] = 3549, + [3600] = 3557, + [3601] = 3549, + [3602] = 3557, + [3603] = 3549, + [3604] = 3558, + [3605] = 3549, + [3606] = 3557, + [3607] = 112, + [3608] = 333, + [3609] = 92, + [3610] = 464, + [3611] = 3611, + [3612] = 3468, + [3613] = 479, + [3614] = 93, + [3615] = 3557, + [3616] = 3558, + [3617] = 3557, + [3618] = 340, + [3619] = 3619, + [3620] = 3620, + [3621] = 3619, + [3622] = 92, + [3623] = 93, + [3624] = 3619, + [3625] = 485, + [3626] = 3626, + [3627] = 455, + [3628] = 478, + [3629] = 544, + [3630] = 3619, + [3631] = 455, + [3632] = 544, + [3633] = 3619, + [3634] = 345, + [3635] = 485, + [3636] = 346, + [3637] = 545, + [3638] = 344, + [3639] = 464, + [3640] = 3640, + [3641] = 3619, + [3642] = 3619, + [3643] = 348, + [3644] = 3644, + [3645] = 99, + [3646] = 3640, + [3647] = 3619, + [3648] = 3619, + [3649] = 545, + [3650] = 3619, + [3651] = 475, + [3652] = 3619, + [3653] = 544, + [3654] = 485, + [3655] = 475, + [3656] = 97, + [3657] = 485, + [3658] = 478, [3659] = 3659, - [3660] = 485, - [3661] = 465, - [3662] = 3662, - [3663] = 466, - [3664] = 493, - [3665] = 3646, - [3666] = 3628, - [3667] = 486, - [3668] = 493, - [3669] = 486, - [3670] = 3646, - [3671] = 3671, - [3672] = 3555, - [3673] = 645, + [3660] = 475, + [3661] = 333, + [3662] = 545, + [3663] = 341, + [3664] = 478, + [3665] = 3619, + [3666] = 3619, + [3667] = 464, + [3668] = 338, + [3669] = 478, + [3670] = 475, + [3671] = 347, + [3672] = 3672, + [3673] = 99, [3674] = 3674, - [3675] = 3646, - [3676] = 1830, - [3677] = 336, - [3678] = 444, - [3679] = 444, - [3680] = 645, - [3681] = 442, - [3682] = 497, - [3683] = 503, - [3684] = 2521, - [3685] = 3646, - [3686] = 3686, - [3687] = 642, - [3688] = 3688, - [3689] = 3689, - [3690] = 493, - [3691] = 3633, - [3692] = 2549, - [3693] = 642, - [3694] = 500, - [3695] = 3671, - [3696] = 3613, - [3697] = 3646, - [3698] = 3643, - [3699] = 484, - [3700] = 442, + [3675] = 3675, + [3676] = 3676, + [3677] = 544, + [3678] = 446, + [3679] = 483, + [3680] = 499, + [3681] = 491, + [3682] = 109, + [3683] = 443, + [3684] = 498, + [3685] = 3685, + [3686] = 476, + [3687] = 498, + [3688] = 476, + [3689] = 443, + [3690] = 113, + [3691] = 3672, + [3692] = 488, + [3693] = 498, + [3694] = 2592, + [3695] = 485, + [3696] = 3696, + [3697] = 475, + [3698] = 334, + [3699] = 460, + [3700] = 545, [3701] = 3701, - [3702] = 3646, - [3703] = 486, - [3704] = 497, - [3705] = 500, + [3702] = 478, + [3703] = 3703, + [3704] = 3704, + [3705] = 3705, [3706] = 3706, - [3707] = 3581, - [3708] = 3674, - [3709] = 3646, - [3710] = 3487, - [3711] = 2539, - [3712] = 3591, - [3713] = 3706, - [3714] = 3714, - [3715] = 3715, - [3716] = 3654, - [3717] = 108, - [3718] = 484, - [3719] = 642, - [3720] = 3671, - [3721] = 3659, - [3722] = 3671, - [3723] = 99, - [3724] = 3688, - [3725] = 3686, - [3726] = 498, - [3727] = 3642, - [3728] = 3646, - [3729] = 3629, - [3730] = 105, - [3731] = 3731, - [3732] = 3732, - [3733] = 3733, - [3734] = 3734, - [3735] = 3735, - [3736] = 3736, - [3737] = 2597, - [3738] = 2598, - [3739] = 444, - [3740] = 2990, - [3741] = 2992, - [3742] = 444, - [3743] = 3731, - [3744] = 3744, - [3745] = 3745, - [3746] = 442, - [3747] = 3747, - [3748] = 3748, - [3749] = 3749, - [3750] = 3750, - [3751] = 3751, - [3752] = 3752, - [3753] = 3753, - [3754] = 3754, - [3755] = 338, - [3756] = 3714, - [3757] = 3715, - [3758] = 353, - [3759] = 459, - [3760] = 3751, - [3761] = 3761, - [3762] = 3762, - [3763] = 3763, - [3764] = 3764, - [3765] = 444, - [3766] = 3752, - [3767] = 3767, - [3768] = 3768, - [3769] = 3769, - [3770] = 1446, - [3771] = 2785, - [3772] = 2785, - [3773] = 2538, - [3774] = 3774, - [3775] = 489, - [3776] = 497, - [3777] = 485, - [3778] = 338, - [3779] = 3779, - [3780] = 704, - [3781] = 3747, - [3782] = 3748, - [3783] = 3749, - [3784] = 3751, - [3785] = 3785, - [3786] = 3786, + [3707] = 3707, + [3708] = 3708, + [3709] = 3709, + [3710] = 544, + [3711] = 3675, + [3712] = 3712, + [3713] = 3591, + [3714] = 3626, + [3715] = 545, + [3716] = 3716, + [3717] = 3672, + [3718] = 3718, + [3719] = 3640, + [3720] = 462, + [3721] = 2565, + [3722] = 3659, + [3723] = 3705, + [3724] = 3672, + [3725] = 333, + [3726] = 3726, + [3727] = 3672, + [3728] = 443, + [3729] = 3672, + [3730] = 3672, + [3731] = 545, + [3732] = 446, + [3733] = 341, + [3734] = 3672, + [3735] = 488, + [3736] = 485, + [3737] = 479, + [3738] = 494, + [3739] = 334, + [3740] = 475, + [3741] = 446, + [3742] = 3468, + [3743] = 2593, + [3744] = 3726, + [3745] = 3672, + [3746] = 3704, + [3747] = 3707, + [3748] = 3708, + [3749] = 478, + [3750] = 3696, + [3751] = 3709, + [3752] = 3685, + [3753] = 3706, + [3754] = 3712, + [3755] = 3755, + [3756] = 3756, + [3757] = 3757, + [3758] = 681, + [3759] = 1826, + [3760] = 704, + [3761] = 705, + [3762] = 707, + [3763] = 476, + [3764] = 333, + [3765] = 97, + [3766] = 3766, + [3767] = 3672, + [3768] = 3755, + [3769] = 3672, + [3770] = 483, + [3771] = 340, + [3772] = 446, + [3773] = 499, + [3774] = 443, + [3775] = 3756, + [3776] = 112, + [3777] = 544, + [3778] = 3705, + [3779] = 3705, + [3780] = 3701, + [3781] = 3757, + [3782] = 3782, + [3783] = 1447, + [3784] = 3784, + [3785] = 2631, + [3786] = 443, [3787] = 3787, - [3788] = 3788, - [3789] = 3789, - [3790] = 3790, - [3791] = 343, - [3792] = 470, + [3788] = 707, + [3789] = 3782, + [3790] = 443, + [3791] = 3791, + [3792] = 3792, [3793] = 3793, - [3794] = 360, - [3795] = 340, + [3794] = 446, + [3795] = 3795, [3796] = 3796, - [3797] = 353, - [3798] = 341, - [3799] = 342, - [3800] = 349, - [3801] = 459, - [3802] = 3744, - [3803] = 3803, - [3804] = 3745, - [3805] = 692, - [3806] = 675, - [3807] = 698, - [3808] = 3748, - [3809] = 3749, - [3810] = 470, - [3811] = 3750, - [3812] = 334, - [3813] = 459, - [3814] = 3814, - [3815] = 3786, - [3816] = 3816, - [3817] = 1940, - [3818] = 3747, - [3819] = 3748, - [3820] = 3749, + [3797] = 344, + [3798] = 3798, + [3799] = 3799, + [3800] = 3800, + [3801] = 3801, + [3802] = 3802, + [3803] = 3782, + [3804] = 3791, + [3805] = 3792, + [3806] = 3806, + [3807] = 443, + [3808] = 455, + [3809] = 3798, + [3810] = 345, + [3811] = 338, + [3812] = 340, + [3813] = 2355, + [3814] = 3782, + [3815] = 3815, + [3816] = 1948, + [3817] = 3798, + [3818] = 3791, + [3819] = 3782, + [3820] = 3792, [3821] = 3821, [3822] = 3822, - [3823] = 3751, + [3823] = 3823, [3824] = 3824, - [3825] = 3747, - [3826] = 3748, - [3827] = 3749, - [3828] = 3751, - [3829] = 3747, - [3830] = 3748, - [3831] = 3749, - [3832] = 3751, - [3833] = 3747, - [3834] = 3751, - [3835] = 3747, - [3836] = 3751, - [3837] = 3747, - [3838] = 442, - [3839] = 3839, - [3840] = 3751, - [3841] = 3841, - [3842] = 3842, - [3843] = 3843, - [3844] = 1940, - [3845] = 3845, - [3846] = 697, - [3847] = 2545, - [3848] = 470, - [3849] = 697, - [3850] = 459, - [3851] = 444, - [3852] = 704, - [3853] = 470, - [3854] = 108, - [3855] = 105, - [3856] = 106, + [3825] = 3798, + [3826] = 3826, + [3827] = 3782, + [3828] = 3828, + [3829] = 3829, + [3830] = 3830, + [3831] = 3798, + [3832] = 677, + [3833] = 3798, + [3834] = 3834, + [3835] = 3791, + [3836] = 3792, + [3837] = 3837, + [3838] = 681, + [3839] = 3716, + [3840] = 3796, + [3841] = 3718, + [3842] = 3821, + [3843] = 2669, + [3844] = 3844, + [3845] = 2356, + [3846] = 455, + [3847] = 3800, + [3848] = 3848, + [3849] = 3849, + [3850] = 464, + [3851] = 704, + [3852] = 705, + [3853] = 707, + [3854] = 2670, + [3855] = 3855, + [3856] = 1948, [3857] = 3857, [3858] = 3858, - [3859] = 3859, - [3860] = 704, - [3861] = 692, - [3862] = 675, - [3863] = 698, - [3864] = 3731, - [3865] = 3744, - [3866] = 3745, - [3867] = 3747, - [3868] = 442, - [3869] = 692, - [3870] = 675, - [3871] = 3871, - [3872] = 698, - [3873] = 444, - [3874] = 3731, - [3875] = 3744, - [3876] = 3745, - [3877] = 3821, + [3859] = 346, + [3860] = 347, + [3861] = 348, + [3862] = 443, + [3863] = 443, + [3864] = 3864, + [3865] = 464, + [3866] = 3866, + [3867] = 3867, + [3868] = 3868, + [3869] = 3869, + [3870] = 464, + [3871] = 113, + [3872] = 341, + [3873] = 3873, + [3874] = 112, + [3875] = 2297, + [3876] = 3876, + [3877] = 3877, [3878] = 3878, - [3879] = 3879, - [3880] = 442, - [3881] = 3779, - [3882] = 3785, - [3883] = 369, - [3884] = 503, - [3885] = 886, - [3886] = 960, - [3887] = 705, - [3888] = 960, - [3889] = 948, - [3890] = 961, - [3891] = 339, - [3892] = 931, - [3893] = 3893, - [3894] = 3871, - [3895] = 961, - [3896] = 931, - [3897] = 954, - [3898] = 500, - [3899] = 3899, - [3900] = 3900, - [3901] = 351, - [3902] = 3902, - [3903] = 3903, - [3904] = 357, - [3905] = 490, - [3906] = 369, - [3907] = 3845, - [3908] = 490, - [3909] = 3144, - [3910] = 3137, - [3911] = 3911, - [3912] = 3912, + [3879] = 677, + [3880] = 3880, + [3881] = 3881, + [3882] = 3882, + [3883] = 2594, + [3884] = 446, + [3885] = 3782, + [3886] = 3791, + [3887] = 3887, + [3888] = 3888, + [3889] = 681, + [3890] = 3792, + [3891] = 704, + [3892] = 705, + [3893] = 707, + [3894] = 3867, + [3895] = 3782, + [3896] = 3799, + [3897] = 455, + [3898] = 3796, + [3899] = 3799, + [3900] = 3800, + [3901] = 3901, + [3902] = 455, + [3903] = 3880, + [3904] = 3904, + [3905] = 446, + [3906] = 704, + [3907] = 3907, + [3908] = 3782, + [3909] = 3791, + [3910] = 3792, + [3911] = 681, + [3912] = 705, [3913] = 3913, - [3914] = 3914, - [3915] = 3915, - [3916] = 645, - [3917] = 3139, - [3918] = 497, - [3919] = 459, - [3920] = 3902, - [3921] = 3140, - [3922] = 3878, - [3923] = 3142, - [3924] = 3157, - [3925] = 3912, - [3926] = 3913, - [3927] = 485, - [3928] = 3879, - [3929] = 3929, - [3930] = 958, - [3931] = 3129, + [3914] = 464, + [3915] = 3796, + [3916] = 3799, + [3917] = 3800, + [3918] = 3918, + [3919] = 3864, + [3920] = 3866, + [3921] = 340, + [3922] = 3798, + [3923] = 109, + [3924] = 446, + [3925] = 3798, + [3926] = 3798, + [3927] = 341, + [3928] = 3918, + [3929] = 708, + [3930] = 2381, + [3931] = 464, [3932] = 3932, - [3933] = 1980, - [3934] = 3912, - [3935] = 3902, - [3936] = 444, - [3937] = 3912, - [3938] = 3913, - [3939] = 967, - [3940] = 699, - [3941] = 886, - [3942] = 3942, - [3943] = 3902, - [3944] = 3105, - [3945] = 642, - [3946] = 3912, - [3947] = 3913, - [3948] = 3613, - [3949] = 3902, - [3950] = 3591, - [3951] = 3912, - [3952] = 3913, - [3953] = 2785, - [3954] = 3768, - [3955] = 470, - [3956] = 3769, - [3957] = 3902, - [3958] = 2990, - [3959] = 3912, - [3960] = 3913, - [3961] = 2992, - [3962] = 959, - [3963] = 886, - [3964] = 3902, - [3965] = 960, - [3966] = 3912, - [3967] = 459, - [3968] = 3912, - [3969] = 3969, - [3970] = 3912, - [3971] = 3912, - [3972] = 3371, - [3973] = 3116, - [3974] = 3912, - [3975] = 937, - [3976] = 709, - [3977] = 3912, - [3978] = 3912, - [3979] = 3912, - [3980] = 3912, - [3981] = 3912, - [3982] = 3982, - [3983] = 3912, - [3984] = 3120, - [3985] = 3913, - [3986] = 3893, - [3987] = 3915, - [3988] = 3914, - [3989] = 3989, - [3990] = 500, - [3991] = 3902, - [3992] = 500, - [3993] = 3912, - [3994] = 503, - [3995] = 490, + [3933] = 3933, + [3934] = 488, + [3935] = 455, + [3936] = 903, + [3937] = 3937, + [3938] = 3937, + [3939] = 2367, + [3940] = 3876, + [3941] = 3937, + [3942] = 3878, + [3943] = 3932, + [3944] = 478, + [3945] = 3945, + [3946] = 899, + [3947] = 3419, + [3948] = 443, + [3949] = 455, + [3950] = 3932, + [3951] = 3824, + [3952] = 803, + [3953] = 3953, + [3954] = 464, + [3955] = 3955, + [3956] = 3932, + [3957] = 3877, + [3958] = 918, + [3959] = 3959, + [3960] = 2382, + [3961] = 3932, + [3962] = 3962, + [3963] = 3963, + [3964] = 3826, + [3965] = 3932, + [3966] = 3932, + [3967] = 3933, + [3968] = 485, + [3969] = 2380, + [3970] = 3970, + [3971] = 3932, + [3972] = 903, + [3973] = 475, + [3974] = 3932, + [3975] = 944, + [3976] = 920, + [3977] = 3932, + [3978] = 923, + [3979] = 3979, + [3980] = 3932, + [3981] = 478, + [3982] = 949, + [3983] = 3932, + [3984] = 944, + [3985] = 3932, + [3986] = 485, + [3987] = 3932, + [3988] = 3932, + [3989] = 2391, + [3990] = 3937, + [3991] = 2383, + [3992] = 3992, + [3993] = 3993, + [3994] = 545, + [3995] = 949, [3996] = 3996, - [3997] = 941, - [3998] = 3989, - [3999] = 961, - [4000] = 3913, - [4001] = 931, - [4002] = 3913, - [4003] = 4003, - [4004] = 4004, - [4005] = 3902, - [4006] = 886, - [4007] = 4007, - [4008] = 334, - [4009] = 4009, - [4010] = 3753, - [4011] = 503, - [4012] = 3899, - [4013] = 333, - [4014] = 941, - [4015] = 948, - [4016] = 500, - [4017] = 954, - [4018] = 470, - [4019] = 3899, - [4020] = 4020, - [4021] = 4021, - [4022] = 459, - [4023] = 958, - [4024] = 3915, - [4025] = 4025, - [4026] = 948, - [4027] = 954, - [4028] = 1980, - [4029] = 959, - [4030] = 2081, - [4031] = 4031, - [4032] = 503, - [4033] = 958, - [4034] = 490, - [4035] = 3899, - [4036] = 959, - [4037] = 444, - [4038] = 470, - [4039] = 3915, - [4040] = 336, - [4041] = 470, - [4042] = 941, - [4043] = 2789, - [4044] = 3754, - [4045] = 459, - [4046] = 3903, - [4047] = 3912, + [3997] = 951, + [3998] = 3998, + [3999] = 920, + [4000] = 475, + [4001] = 899, + [4002] = 923, + [4003] = 951, + [4004] = 3932, + [4005] = 478, + [4006] = 3953, + [4007] = 903, + [4008] = 3933, + [4009] = 3979, + [4010] = 335, + [4011] = 4011, + [4012] = 368, + [4013] = 335, + [4014] = 4014, + [4015] = 949, + [4016] = 2075, + [4017] = 951, + [4018] = 3937, + [4019] = 334, + [4020] = 455, + [4021] = 803, + [4022] = 803, + [4023] = 3626, + [4024] = 3659, + [4025] = 918, + [4026] = 3932, + [4027] = 3933, + [4028] = 684, + [4029] = 914, + [4030] = 4030, + [4031] = 464, + [4032] = 4032, + [4033] = 3959, + [4034] = 2075, + [4035] = 464, + [4036] = 333, + [4037] = 4037, + [4038] = 3937, + [4039] = 475, + [4040] = 544, + [4041] = 3937, + [4042] = 3970, + [4043] = 803, + [4044] = 918, + [4045] = 3822, + [4046] = 3932, + [4047] = 2392, [4048] = 4048, - [4049] = 4049, - [4050] = 4050, - [4051] = 4051, - [4052] = 4052, - [4053] = 4053, - [4054] = 4054, - [4055] = 4055, - [4056] = 4056, - [4057] = 4057, + [4049] = 3932, + [4050] = 1086, + [4051] = 3933, + [4052] = 368, + [4053] = 944, + [4054] = 3932, + [4055] = 3933, + [4056] = 920, + [4057] = 923, [4058] = 4058, - [4059] = 4059, - [4060] = 1792, - [4061] = 1793, - [4062] = 4062, - [4063] = 4063, - [4064] = 4064, - [4065] = 4065, - [4066] = 4066, - [4067] = 4067, - [4068] = 4068, - [4069] = 4069, - [4070] = 4070, - [4071] = 500, - [4072] = 958, - [4073] = 4073, - [4074] = 4074, - [4075] = 4075, - [4076] = 4076, - [4077] = 4077, - [4078] = 4078, - [4079] = 3116, - [4080] = 3120, - [4081] = 1781, - [4082] = 1782, - [4083] = 4083, + [4059] = 3932, + [4060] = 485, + [4061] = 3933, + [4062] = 3970, + [4063] = 899, + [4064] = 682, + [4065] = 3937, + [4066] = 3901, + [4067] = 3933, + [4068] = 4048, + [4069] = 475, + [4070] = 3970, + [4071] = 2847, + [4072] = 3932, + [4073] = 4048, + [4074] = 478, + [4075] = 3904, + [4076] = 3933, + [4077] = 4048, + [4078] = 483, + [4079] = 443, + [4080] = 3993, + [4081] = 2074, + [4082] = 455, + [4083] = 2370, [4084] = 4084, - [4085] = 4085, + [4085] = 3937, [4086] = 4086, - [4087] = 4087, + [4087] = 485, [4088] = 4088, - [4089] = 959, + [4089] = 4089, [4090] = 4090, - [4091] = 4091, + [4091] = 344, [4092] = 4092, - [4093] = 4093, + [4093] = 443, [4094] = 4094, - [4095] = 4095, + [4095] = 485, [4096] = 4096, - [4097] = 4097, + [4097] = 352, [4098] = 4098, [4099] = 4099, - [4100] = 3137, - [4101] = 3139, - [4102] = 3140, - [4103] = 3142, - [4104] = 4104, + [4100] = 4100, + [4101] = 4101, + [4102] = 4102, + [4103] = 4103, + [4104] = 345, [4105] = 4105, [4106] = 4106, - [4107] = 4107, - [4108] = 4108, - [4109] = 4109, - [4110] = 4110, - [4111] = 4111, - [4112] = 4112, + [4107] = 944, + [4108] = 475, + [4109] = 920, + [4110] = 923, + [4111] = 338, + [4112] = 485, [4113] = 4113, - [4114] = 886, - [4115] = 3144, - [4116] = 704, - [4117] = 4117, - [4118] = 937, - [4119] = 4119, - [4120] = 4120, + [4114] = 478, + [4115] = 475, + [4116] = 478, + [4117] = 918, + [4118] = 4118, + [4119] = 485, + [4120] = 1086, [4121] = 4121, [4122] = 4122, [4123] = 4123, - [4124] = 4124, - [4125] = 4125, - [4126] = 2570, - [4127] = 941, - [4128] = 4128, - [4129] = 695, - [4130] = 694, - [4131] = 4131, - [4132] = 2540, - [4133] = 948, - [4134] = 692, - [4135] = 675, - [4136] = 698, - [4137] = 954, - [4138] = 3714, - [4139] = 3715, + [4124] = 367, + [4125] = 346, + [4126] = 4126, + [4127] = 347, + [4128] = 681, + [4129] = 4129, + [4130] = 348, + [4131] = 475, + [4132] = 4132, + [4133] = 4133, + [4134] = 4134, + [4135] = 4135, + [4136] = 2920, + [4137] = 478, + [4138] = 4138, + [4139] = 798, [4140] = 4140, [4141] = 4141, - [4142] = 4142, - [4143] = 4143, - [4144] = 958, - [4145] = 4145, - [4146] = 887, - [4147] = 4147, - [4148] = 959, - [4149] = 4149, - [4150] = 4150, - [4151] = 697, - [4152] = 886, - [4153] = 960, - [4154] = 967, - [4155] = 888, + [4142] = 812, + [4143] = 813, + [4144] = 4144, + [4145] = 815, + [4146] = 704, + [4147] = 705, + [4148] = 707, + [4149] = 3716, + [4150] = 3718, + [4151] = 485, + [4152] = 475, + [4153] = 352, + [4154] = 478, + [4155] = 4155, [4156] = 4156, - [4157] = 4157, - [4158] = 4128, - [4159] = 961, - [4160] = 931, - [4161] = 4161, + [4157] = 353, + [4158] = 4158, + [4159] = 820, + [4160] = 4160, + [4161] = 4090, [4162] = 4162, [4163] = 4163, - [4164] = 2530, - [4165] = 1357, - [4166] = 937, + [4164] = 3084, + [4165] = 3085, + [4166] = 4166, [4167] = 4167, - [4168] = 368, - [4169] = 923, + [4168] = 4168, + [4169] = 4169, [4170] = 4170, [4171] = 4171, - [4172] = 503, - [4173] = 442, + [4172] = 4172, + [4173] = 4173, [4174] = 4174, - [4175] = 4128, - [4176] = 960, - [4177] = 967, - [4178] = 338, - [4179] = 719, - [4180] = 4180, - [4181] = 961, - [4182] = 931, - [4183] = 353, - [4184] = 4020, - [4185] = 4185, - [4186] = 720, - [4187] = 721, - [4188] = 722, - [4189] = 2517, - [4190] = 4190, - [4191] = 723, - [4192] = 2526, - [4193] = 4193, - [4194] = 4190, - [4195] = 4021, - [4196] = 4196, + [4175] = 4175, + [4176] = 920, + [4177] = 2355, + [4178] = 923, + [4179] = 2356, + [4180] = 1808, + [4181] = 1812, + [4182] = 4182, + [4183] = 4183, + [4184] = 4184, + [4185] = 4121, + [4186] = 4186, + [4187] = 4187, + [4188] = 4188, + [4189] = 4189, + [4190] = 3955, + [4191] = 4191, + [4192] = 949, + [4193] = 951, + [4194] = 2412, + [4195] = 1399, + [4196] = 4084, [4197] = 4197, [4198] = 4198, - [4199] = 490, + [4199] = 4199, [4200] = 4200, - [4201] = 4147, - [4202] = 724, - [4203] = 4203, + [4201] = 4201, + [4202] = 4202, + [4203] = 4098, [4204] = 4204, - [4205] = 3105, - [4206] = 899, - [4207] = 2945, - [4208] = 726, - [4209] = 727, - [4210] = 728, - [4211] = 2948, - [4212] = 730, - [4213] = 941, - [4214] = 2541, - [4215] = 735, - [4216] = 736, - [4217] = 948, - [4218] = 737, - [4219] = 954, + [4205] = 4205, + [4206] = 4206, + [4207] = 4207, + [4208] = 4208, + [4209] = 4209, + [4210] = 4210, + [4211] = 4211, + [4212] = 803, + [4213] = 1805, + [4214] = 1806, + [4215] = 914, + [4216] = 4216, + [4217] = 4217, + [4218] = 4218, + [4219] = 4219, [4220] = 4220, - [4221] = 739, - [4222] = 740, - [4223] = 958, - [4224] = 741, - [4225] = 742, - [4226] = 959, - [4227] = 886, - [4228] = 4228, - [4229] = 4229, + [4221] = 4221, + [4222] = 4222, + [4223] = 4223, + [4224] = 944, + [4225] = 4225, + [4226] = 899, + [4227] = 839, + [4228] = 949, + [4229] = 951, [4230] = 4230, - [4231] = 4231, - [4232] = 4232, + [4231] = 899, + [4232] = 903, [4233] = 4233, - [4234] = 4128, - [4235] = 4235, - [4236] = 343, - [4237] = 960, - [4238] = 1807, + [4234] = 803, + [4235] = 918, + [4236] = 1086, + [4237] = 4237, + [4238] = 4238, [4239] = 4239, - [4240] = 1808, + [4240] = 4240, [4241] = 4241, - [4242] = 444, - [4243] = 360, - [4244] = 340, - [4245] = 4245, - [4246] = 961, - [4247] = 931, - [4248] = 4248, - [4249] = 341, - [4250] = 342, - [4251] = 349, - [4252] = 4252, - [4253] = 4128, - [4254] = 967, - [4255] = 4255, - [4256] = 4256, + [4242] = 4242, + [4243] = 4243, + [4244] = 1792, + [4245] = 920, + [4246] = 923, + [4247] = 1793, + [4248] = 840, + [4249] = 841, + [4250] = 4250, + [4251] = 4251, + [4252] = 4090, + [4253] = 842, + [4254] = 843, + [4255] = 844, + [4256] = 845, [4257] = 4257, - [4258] = 930, + [4258] = 4258, [4259] = 4259, - [4260] = 339, - [4261] = 4128, + [4260] = 4260, + [4261] = 4261, [4262] = 4262, [4263] = 4263, - [4264] = 4197, - [4265] = 4021, - [4266] = 4128, + [4264] = 4090, + [4265] = 903, + [4266] = 4266, [4267] = 4267, - [4268] = 2857, - [4269] = 4128, - [4270] = 948, + [4268] = 4090, + [4269] = 677, + [4270] = 4270, [4271] = 4271, - [4272] = 954, - [4273] = 4273, - [4274] = 4128, - [4275] = 500, - [4276] = 3131, + [4272] = 4272, + [4273] = 914, + [4274] = 4274, + [4275] = 4275, + [4276] = 4090, [4277] = 4277, - [4278] = 4128, - [4279] = 503, - [4280] = 936, - [4281] = 490, - [4282] = 4128, + [4278] = 4278, + [4279] = 4279, + [4280] = 805, + [4281] = 353, + [4282] = 806, [4283] = 4283, - [4284] = 4128, - [4285] = 4285, - [4286] = 4286, + [4284] = 4090, + [4285] = 807, + [4286] = 2405, [4287] = 4287, - [4288] = 4288, - [4289] = 4289, - [4290] = 4290, - [4291] = 4291, - [4292] = 3969, - [4293] = 4256, - [4294] = 4294, - [4295] = 1395, - [4296] = 4296, - [4297] = 3532, - [4298] = 3570, - [4299] = 4128, - [4300] = 4300, + [4288] = 2400, + [4289] = 899, + [4290] = 4200, + [4291] = 4090, + [4292] = 1350, + [4293] = 949, + [4294] = 809, + [4295] = 4295, + [4296] = 4267, + [4297] = 4090, + [4298] = 903, + [4299] = 4090, + [4300] = 4090, [4301] = 4301, [4302] = 4302, - [4303] = 4291, + [4303] = 4090, [4304] = 4304, [4305] = 4305, - [4306] = 4306, + [4306] = 4090, [4307] = 4307, - [4308] = 960, - [4309] = 937, + [4308] = 4308, + [4309] = 2397, [4310] = 4310, - [4311] = 4311, + [4311] = 4257, [4312] = 4312, - [4313] = 3417, + [4313] = 4313, [4314] = 4314, [4315] = 4315, - [4316] = 4316, - [4317] = 3929, - [4318] = 4318, + [4316] = 3222, + [4317] = 4317, + [4318] = 4090, [4319] = 4319, - [4320] = 4320, + [4320] = 4313, [4321] = 4321, - [4322] = 351, - [4323] = 4323, - [4324] = 4324, + [4322] = 4322, + [4323] = 3611, + [4324] = 3568, [4325] = 4325, [4326] = 4326, [4327] = 4327, [4328] = 4328, [4329] = 4329, [4330] = 4330, - [4331] = 4142, - [4332] = 500, - [4333] = 4128, - [4334] = 4128, - [4335] = 503, - [4336] = 490, + [4331] = 918, + [4332] = 1086, + [4333] = 4333, + [4334] = 4334, + [4335] = 4335, + [4336] = 4336, [4337] = 4337, - [4338] = 4338, - [4339] = 357, - [4340] = 4232, + [4338] = 3955, + [4339] = 4339, + [4340] = 4340, [4341] = 4341, [4342] = 4342, [4343] = 4343, [4344] = 4344, - [4345] = 2927, + [4345] = 4345, [4346] = 4346, - [4347] = 4128, - [4348] = 500, - [4349] = 2928, - [4350] = 4350, + [4347] = 920, + [4348] = 923, + [4349] = 4349, + [4350] = 2427, [4351] = 4351, - [4352] = 4196, - [4353] = 503, - [4354] = 490, - [4355] = 4162, - [4356] = 4163, - [4357] = 4338, - [4358] = 4358, - [4359] = 941, - [4360] = 4196, - [4361] = 4162, - [4362] = 4163, - [4363] = 4338, - [4364] = 961, - [4365] = 931, - [4366] = 4366, - [4367] = 738, - [4368] = 4341, - [4369] = 744, - [4370] = 4370, - [4371] = 4371, - [4372] = 4342, - [4373] = 4343, - [4374] = 3003, + [4352] = 4352, + [4353] = 680, + [4354] = 803, + [4355] = 4295, + [4356] = 918, + [4357] = 4357, + [4358] = 914, + [4359] = 4359, + [4360] = 4360, + [4361] = 676, + [4362] = 3473, + [4363] = 2420, + [4364] = 4364, + [4365] = 4365, + [4366] = 3963, + [4367] = 340, + [4368] = 951, + [4369] = 4090, + [4370] = 4090, + [4371] = 4202, + [4372] = 804, + [4373] = 446, + [4374] = 341, [4375] = 4375, - [4376] = 2173, - [4377] = 4344, - [4378] = 4346, - [4379] = 498, - [4380] = 2174, - [4381] = 4289, - [4382] = 2176, - [4383] = 4200, - [4384] = 4384, + [4376] = 4376, + [4377] = 715, + [4378] = 4378, + [4379] = 3074, + [4380] = 3082, + [4381] = 4090, + [4382] = 4382, + [4383] = 4383, + [4384] = 367, [4385] = 4385, - [4386] = 4386, - [4387] = 4387, - [4388] = 4067, + [4386] = 4198, + [4387] = 3992, + [4388] = 4388, [4389] = 4389, - [4390] = 4203, - [4391] = 2540, - [4392] = 4095, - [4393] = 4393, - [4394] = 4394, - [4395] = 4385, - [4396] = 4386, - [4397] = 930, - [4398] = 4398, - [4399] = 4068, - [4400] = 3128, + [4390] = 4230, + [4391] = 4241, + [4392] = 4257, + [4393] = 811, + [4394] = 944, + [4395] = 4198, + [4396] = 4230, + [4397] = 4241, + [4398] = 846, + [4399] = 4399, + [4400] = 446, [4401] = 4401, - [4402] = 746, - [4403] = 747, - [4404] = 444, - [4405] = 4405, - [4406] = 4389, + [4402] = 443, + [4403] = 4403, + [4404] = 4404, + [4405] = 4204, + [4406] = 4406, [4407] = 4407, - [4408] = 3005, - [4409] = 4055, + [4408] = 4408, + [4409] = 4409, [4410] = 4410, - [4411] = 4350, - [4412] = 4412, - [4413] = 369, - [4414] = 4414, - [4415] = 4415, - [4416] = 4385, - [4417] = 4417, - [4418] = 4389, - [4419] = 4386, - [4420] = 4351, - [4421] = 4385, - [4422] = 4117, - [4423] = 4423, - [4424] = 4119, - [4425] = 4120, - [4426] = 4121, + [4411] = 4186, + [4412] = 4187, + [4413] = 4099, + [4414] = 4100, + [4415] = 4206, + [4416] = 4207, + [4417] = 4208, + [4418] = 4418, + [4419] = 4419, + [4420] = 4101, + [4421] = 3137, + [4422] = 942, + [4423] = 937, + [4424] = 4102, + [4425] = 4239, + [4426] = 4426, [4427] = 4427, - [4428] = 1366, - [4429] = 4096, - [4430] = 4122, - [4431] = 924, - [4432] = 4056, - [4433] = 4241, - [4434] = 4123, - [4435] = 4389, - [4436] = 4385, - [4437] = 4204, - [4438] = 926, - [4439] = 4097, - [4440] = 4051, - [4441] = 4052, - [4442] = 4442, - [4443] = 4069, - [4444] = 763, - [4445] = 764, - [4446] = 4389, - [4447] = 4053, - [4448] = 4385, - [4449] = 4124, - [4450] = 4125, + [4428] = 4277, + [4429] = 4103, + [4430] = 4329, + [4431] = 4403, + [4432] = 4432, + [4433] = 4209, + [4434] = 4434, + [4435] = 4385, + [4436] = 4271, + [4437] = 4437, + [4438] = 4210, + [4439] = 900, + [4440] = 3093, + [4441] = 4305, + [4442] = 4175, + [4443] = 3044, + [4444] = 4444, + [4445] = 4211, + [4446] = 4105, + [4447] = 4444, + [4448] = 2359, + [4449] = 4106, + [4450] = 850, [4451] = 4451, - [4452] = 943, - [4453] = 4104, - [4454] = 2530, - [4455] = 4255, - [4456] = 4098, - [4457] = 4105, - [4458] = 4300, - [4459] = 3053, - [4460] = 4460, + [4452] = 4452, + [4453] = 4237, + [4454] = 464, + [4455] = 4455, + [4456] = 4275, + [4457] = 4457, + [4458] = 4458, + [4459] = 2367, + [4460] = 2370, [4461] = 4461, - [4462] = 4099, - [4463] = 4463, + [4462] = 4462, + [4463] = 4240, [4464] = 4464, - [4465] = 4073, + [4465] = 4307, [4466] = 4466, - [4467] = 4301, - [4468] = 4302, - [4469] = 540, - [4470] = 1358, - [4471] = 4074, - [4472] = 4472, - [4473] = 4075, - [4474] = 4076, - [4475] = 4077, + [4467] = 4403, + [4468] = 494, + [4469] = 4469, + [4470] = 4278, + [4471] = 4471, + [4472] = 4184, + [4473] = 4473, + [4474] = 4474, + [4475] = 4475, [4476] = 4476, - [4477] = 4252, - [4478] = 4478, - [4479] = 4290, - [4480] = 4371, - [4481] = 334, - [4482] = 4482, - [4483] = 4078, - [4484] = 2916, - [4485] = 4050, - [4486] = 4486, - [4487] = 4487, + [4477] = 4477, + [4478] = 4339, + [4479] = 4217, + [4480] = 4403, + [4481] = 4340, + [4482] = 4126, + [4483] = 4129, + [4484] = 3094, + [4485] = 4138, + [4486] = 491, + [4487] = 4342, [4488] = 4488, [4489] = 4489, - [4490] = 4490, - [4491] = 4090, - [4492] = 4393, - [4493] = 4442, - [4494] = 4494, - [4495] = 4259, - [4496] = 4262, - [4497] = 4057, - [4498] = 4442, - [4499] = 4059, - [4500] = 685, - [4501] = 4337, - [4502] = 1409, - [4503] = 4503, - [4504] = 743, - [4505] = 4140, - [4506] = 2148, + [4490] = 4169, + [4491] = 4218, + [4492] = 4492, + [4493] = 4493, + [4494] = 4302, + [4495] = 4317, + [4496] = 4219, + [4497] = 4182, + [4498] = 4343, + [4499] = 4473, + [4500] = 4283, + [4501] = 4501, + [4502] = 4476, + [4503] = 4344, + [4504] = 4345, + [4505] = 4242, + [4506] = 4506, [4507] = 4507, - [4508] = 4141, - [4509] = 4156, + [4508] = 4308, + [4509] = 4509, [4510] = 4510, - [4511] = 4385, - [4512] = 4512, - [4513] = 4286, - [4514] = 4063, - [4515] = 4058, - [4516] = 4516, + [4511] = 4511, + [4512] = 4473, + [4513] = 4473, + [4514] = 4476, + [4515] = 4515, + [4516] = 4287, [4517] = 4517, - [4518] = 4304, - [4519] = 4091, - [4520] = 3026, + [4518] = 4518, + [4519] = 517, + [4520] = 4520, [4521] = 4521, - [4522] = 936, - [4523] = 4523, - [4524] = 4524, - [4525] = 4525, - [4526] = 4526, - [4527] = 4527, - [4528] = 3036, - [4529] = 4083, - [4530] = 4229, - [4531] = 4084, - [4532] = 4085, - [4533] = 4086, - [4534] = 4087, - [4535] = 4088, - [4536] = 444, - [4537] = 4537, - [4538] = 3054, - [4539] = 4539, + [4522] = 2380, + [4523] = 2381, + [4524] = 4473, + [4525] = 374, + [4526] = 2382, + [4527] = 4476, + [4528] = 2383, + [4529] = 934, + [4530] = 864, + [4531] = 4531, + [4532] = 4532, + [4533] = 865, + [4534] = 4346, + [4535] = 4349, + [4536] = 4536, + [4537] = 4351, + [4538] = 4476, + [4539] = 4174, [4540] = 4540, - [4541] = 2517, - [4542] = 2526, - [4543] = 949, + [4541] = 4251, + [4542] = 368, + [4543] = 4543, [4544] = 4544, - [4545] = 4545, - [4546] = 951, - [4547] = 676, - [4548] = 4548, - [4549] = 4549, - [4550] = 4233, - [4551] = 897, - [4552] = 4285, - [4553] = 898, - [4554] = 4554, - [4555] = 4287, - [4556] = 459, - [4557] = 4557, + [4545] = 4258, + [4546] = 4310, + [4547] = 4547, + [4548] = 1358, + [4549] = 4473, + [4550] = 4473, + [4551] = 4279, + [4552] = 4326, + [4553] = 4328, + [4554] = 679, + [4555] = 4476, + [4556] = 4477, + [4557] = 4172, [4558] = 4558, - [4559] = 4092, - [4560] = 4311, - [4561] = 470, - [4562] = 4170, - [4563] = 4064, - [4564] = 4564, - [4565] = 4093, - [4566] = 4566, - [4567] = 4415, - [4568] = 4323, - [4569] = 4569, - [4570] = 4054, - [4571] = 4065, - [4572] = 4572, - [4573] = 4106, + [4559] = 4330, + [4560] = 4238, + [4561] = 4333, + [4562] = 3089, + [4563] = 4563, + [4564] = 4334, + [4565] = 2379, + [4566] = 4476, + [4567] = 4477, + [4568] = 4312, + [4569] = 942, + [4570] = 4314, + [4571] = 4359, + [4572] = 4220, + [4573] = 4335, [4574] = 4574, - [4575] = 4107, + [4575] = 938, [4576] = 4576, - [4577] = 4108, - [4578] = 4578, - [4579] = 4324, - [4580] = 4580, - [4581] = 442, - [4582] = 916, - [4583] = 4109, - [4584] = 2191, - [4585] = 4585, - [4586] = 4586, - [4587] = 4327, - [4588] = 4588, - [4589] = 4589, - [4590] = 4590, + [4577] = 4577, + [4578] = 4336, + [4579] = 1405, + [4580] = 4260, + [4581] = 927, + [4582] = 4337, + [4583] = 686, + [4584] = 4261, + [4585] = 2392, + [4586] = 2205, + [4587] = 4587, + [4588] = 2391, + [4589] = 935, + [4590] = 4262, [4591] = 4591, - [4592] = 4094, - [4593] = 4193, - [4594] = 2541, - [4595] = 4414, - [4596] = 4596, - [4597] = 4597, - [4598] = 491, - [4599] = 4427, - [4600] = 4062, - [4601] = 4110, - [4602] = 4389, - [4603] = 4111, - [4604] = 4066, - [4605] = 4112, - [4606] = 4113, - [4607] = 4607, - [4608] = 4608, - [4609] = 4305, - [4610] = 4610, - [4611] = 4611, - [4612] = 4386, - [4613] = 2570, + [4592] = 2192, + [4593] = 2195, + [4594] = 2196, + [4595] = 847, + [4596] = 848, + [4597] = 4221, + [4598] = 4222, + [4599] = 1366, + [4600] = 940, + [4601] = 4263, + [4602] = 952, + [4603] = 4603, + [4604] = 922, + [4605] = 4325, + [4606] = 4183, + [4607] = 2199, + [4608] = 4243, + [4609] = 4609, + [4610] = 4089, + [4611] = 4477, + [4612] = 849, + [4613] = 4613, [4614] = 4614, [4615] = 4615, [4616] = 4616, [4617] = 4617, - [4618] = 4389, - [4619] = 4294, - [4620] = 4296, - [4621] = 4621, - [4622] = 4622, - [4623] = 4487, + [4618] = 4162, + [4619] = 4163, + [4620] = 4272, + [4621] = 4462, + [4622] = 4167, + [4623] = 4223, [4624] = 4624, - [4625] = 4625, + [4625] = 916, [4626] = 4626, - [4627] = 4627, - [4628] = 4628, + [4627] = 335, + [4628] = 455, [4629] = 4629, - [4630] = 4630, - [4631] = 4626, - [4632] = 4632, - [4633] = 4626, - [4634] = 4627, - [4635] = 4628, - [4636] = 4636, - [4637] = 4637, - [4638] = 4632, + [4630] = 3004, + [4631] = 4631, + [4632] = 4304, + [4633] = 4274, + [4634] = 3006, + [4635] = 4451, + [4636] = 4536, + [4637] = 3012, + [4638] = 927, [4639] = 4639, [4640] = 4640, - [4641] = 4641, + [4641] = 4464, [4642] = 4642, - [4643] = 4643, - [4644] = 4629, - [4645] = 500, - [4646] = 4646, + [4643] = 4173, + [4644] = 443, + [4645] = 4645, + [4646] = 4094, [4647] = 4647, [4648] = 4648, [4649] = 4649, - [4650] = 339, - [4651] = 4651, - [4652] = 4652, + [4650] = 936, + [4651] = 4327, + [4652] = 4640, [4653] = 4653, - [4654] = 4654, - [4655] = 4655, - [4656] = 4656, - [4657] = 4653, + [4654] = 4270, + [4655] = 4360, + [4656] = 4352, + [4657] = 4657, [4658] = 4658, - [4659] = 4658, - [4660] = 4660, - [4661] = 960, + [4659] = 4659, + [4660] = 2400, + [4661] = 4661, [4662] = 4662, - [4663] = 3093, + [4663] = 4663, [4664] = 4664, [4665] = 4665, - [4666] = 691, - [4667] = 4627, - [4668] = 941, + [4666] = 4666, + [4667] = 903, + [4668] = 4668, [4669] = 4669, [4670] = 4670, - [4671] = 967, - [4672] = 4628, - [4673] = 3095, - [4674] = 4629, - [4675] = 4675, - [4676] = 886, - [4677] = 961, - [4678] = 4678, - [4679] = 931, + [4671] = 4671, + [4672] = 478, + [4673] = 4673, + [4674] = 4674, + [4675] = 2405, + [4676] = 4676, + [4677] = 683, + [4678] = 3955, + [4679] = 4679, [4680] = 4680, [4681] = 4681, - [4682] = 351, - [4683] = 357, - [4684] = 937, - [4685] = 955, - [4686] = 4686, + [4682] = 4682, + [4683] = 803, + [4684] = 2067, + [4685] = 4685, + [4686] = 2397, [4687] = 4687, [4688] = 4688, - [4689] = 4689, - [4690] = 4651, - [4691] = 927, + [4689] = 2068, + [4690] = 909, + [4691] = 4688, [4692] = 4692, - [4693] = 4628, - [4694] = 4629, - [4695] = 4021, + [4693] = 4693, + [4694] = 4694, + [4695] = 4695, [4696] = 4696, - [4697] = 4697, - [4698] = 4698, - [4699] = 896, - [4700] = 4649, - [4701] = 958, - [4702] = 4652, - [4703] = 4654, - [4704] = 4704, - [4705] = 4656, - [4706] = 4706, - [4707] = 4707, - [4708] = 4516, + [4697] = 4665, + [4698] = 3013, + [4699] = 2427, + [4700] = 4700, + [4701] = 949, + [4702] = 3222, + [4703] = 2412, + [4704] = 2371, + [4705] = 4705, + [4706] = 4692, + [4707] = 4666, + [4708] = 4708, [4709] = 4709, [4710] = 4710, - [4711] = 4647, - [4712] = 4646, - [4713] = 4713, - [4714] = 4714, - [4715] = 4698, - [4716] = 4716, - [4717] = 503, - [4718] = 4718, - [4719] = 904, + [4711] = 4711, + [4712] = 4712, + [4713] = 988, + [4714] = 921, + [4715] = 943, + [4716] = 4696, + [4717] = 4717, + [4718] = 4680, + [4719] = 2069, [4720] = 4720, - [4721] = 4721, - [4722] = 4722, + [4721] = 4694, + [4722] = 4711, [4723] = 4723, [4724] = 4724, [4725] = 4725, - [4726] = 4726, - [4727] = 3037, - [4728] = 4636, - [4729] = 4639, - [4730] = 4706, - [4731] = 4718, - [4732] = 4732, - [4733] = 490, + [4726] = 4723, + [4727] = 4727, + [4728] = 4725, + [4729] = 951, + [4730] = 4730, + [4731] = 4731, + [4732] = 4664, + [4733] = 4733, [4734] = 4734, - [4735] = 4641, - [4736] = 4736, - [4737] = 3016, - [4738] = 1043, - [4739] = 4704, - [4740] = 4740, - [4741] = 925, + [4735] = 4735, + [4736] = 944, + [4737] = 4737, + [4738] = 2420, + [4739] = 3611, + [4740] = 3568, + [4741] = 4741, [4742] = 4742, - [4743] = 4642, + [4743] = 4743, [4744] = 4744, [4745] = 4745, - [4746] = 1510, - [4747] = 4726, - [4748] = 4748, - [4749] = 4740, + [4746] = 4746, + [4747] = 4747, + [4748] = 4671, + [4749] = 4710, [4750] = 4750, [4751] = 4751, [4752] = 4752, - [4753] = 4626, - [4754] = 4627, - [4755] = 4669, + [4753] = 924, + [4754] = 475, + [4755] = 4735, [4756] = 4756, - [4757] = 4655, - [4758] = 4686, - [4759] = 4759, - [4760] = 4752, - [4761] = 4640, - [4762] = 948, - [4763] = 470, - [4764] = 3131, - [4765] = 4765, - [4766] = 4766, - [4767] = 459, - [4768] = 4768, - [4769] = 4675, - [4770] = 4687, - [4771] = 4669, + [4757] = 4723, + [4758] = 455, + [4759] = 4725, + [4760] = 4723, + [4761] = 4662, + [4762] = 4762, + [4763] = 4763, + [4764] = 4717, + [4765] = 4743, + [4766] = 920, + [4767] = 4663, + [4768] = 1651, + [4769] = 4769, + [4770] = 4752, + [4771] = 4735, [4772] = 4772, - [4773] = 4696, - [4774] = 4724, - [4775] = 4669, - [4776] = 4776, - [4777] = 3532, - [4778] = 4709, - [4779] = 3570, - [4780] = 4669, - [4781] = 4710, - [4782] = 4782, - [4783] = 4630, - [4784] = 2082, + [4773] = 4773, + [4774] = 4741, + [4775] = 4775, + [4776] = 918, + [4777] = 941, + [4778] = 352, + [4779] = 4779, + [4780] = 4773, + [4781] = 353, + [4782] = 4679, + [4783] = 4712, + [4784] = 485, [4785] = 4785, - [4786] = 2083, - [4787] = 4787, - [4788] = 954, - [4789] = 4789, - [4790] = 959, - [4791] = 4791, - [4792] = 4637, - [4793] = 2089, - [4794] = 4794, + [4786] = 4752, + [4787] = 923, + [4788] = 1086, + [4789] = 4673, + [4790] = 4790, + [4791] = 4790, + [4792] = 4752, + [4793] = 914, + [4794] = 3007, [4795] = 4795, [4796] = 4796, - [4797] = 4797, - [4798] = 4798, - [4799] = 4794, - [4800] = 4800, + [4797] = 4725, + [4798] = 899, + [4799] = 4799, + [4800] = 4779, [4801] = 4801, - [4802] = 4802, - [4803] = 4800, - [4804] = 4804, - [4805] = 4802, - [4806] = 4806, - [4807] = 4807, - [4808] = 4808, - [4809] = 4801, - [4810] = 4798, + [4802] = 4796, + [4803] = 4657, + [4804] = 4720, + [4805] = 4805, + [4806] = 4762, + [4807] = 4685, + [4808] = 4661, + [4809] = 4752, + [4810] = 4785, [4811] = 4811, - [4812] = 4812, - [4813] = 4808, - [4814] = 4814, - [4815] = 4795, - [4816] = 4796, - [4817] = 4797, - [4818] = 936, - [4819] = 4800, - [4820] = 498, + [4812] = 464, + [4813] = 4813, + [4814] = 2371, + [4815] = 4735, + [4816] = 4741, + [4817] = 4817, + [4818] = 4682, + [4819] = 4819, + [4820] = 4741, [4821] = 4821, [4822] = 4822, - [4823] = 4812, - [4824] = 4807, - [4825] = 4825, - [4826] = 4826, - [4827] = 2540, - [4828] = 4811, + [4823] = 4823, + [4824] = 4658, + [4825] = 4805, + [4826] = 4745, + [4827] = 367, + [4828] = 4828, [4829] = 4829, - [4830] = 4802, - [4831] = 4814, - [4832] = 4795, - [4833] = 4796, - [4834] = 4800, - [4835] = 4807, + [4830] = 4830, + [4831] = 4831, + [4832] = 4832, + [4833] = 4833, + [4834] = 4834, + [4835] = 4835, [4836] = 4836, [4837] = 4837, [4838] = 4838, - [4839] = 4807, + [4839] = 4839, [4840] = 4840, - [4841] = 4802, - [4842] = 4836, - [4843] = 2541, - [4844] = 4807, - [4845] = 4814, - [4846] = 4795, - [4847] = 4796, - [4848] = 4800, + [4841] = 4841, + [4842] = 4842, + [4843] = 4843, + [4844] = 4844, + [4845] = 4845, + [4846] = 4846, + [4847] = 4847, + [4848] = 4837, [4849] = 4849, [4850] = 4850, - [4851] = 4806, - [4852] = 4807, - [4853] = 4822, - [4854] = 498, - [4855] = 4855, - [4856] = 4825, - [4857] = 4814, - [4858] = 4795, - [4859] = 4796, + [4851] = 4844, + [4852] = 4852, + [4853] = 4847, + [4854] = 4831, + [4855] = 4832, + [4856] = 4833, + [4857] = 4857, + [4858] = 4838, + [4859] = 4839, [4860] = 4860, - [4861] = 4861, - [4862] = 4807, - [4863] = 4800, - [4864] = 4864, - [4865] = 2517, - [4866] = 4814, - [4867] = 4795, - [4868] = 4796, - [4869] = 4811, + [4861] = 4836, + [4862] = 4862, + [4863] = 4863, + [4864] = 4847, + [4865] = 4865, + [4866] = 4866, + [4867] = 4867, + [4868] = 4844, + [4869] = 4869, [4870] = 4870, - [4871] = 4807, - [4872] = 4808, - [4873] = 4801, - [4874] = 4874, - [4875] = 4814, - [4876] = 4795, - [4877] = 4796, + [4871] = 4831, + [4872] = 4832, + [4873] = 4833, + [4874] = 4839, + [4875] = 4870, + [4876] = 4844, + [4877] = 4829, [4878] = 4878, - [4879] = 4879, - [4880] = 4807, + [4879] = 4847, + [4880] = 4837, [4881] = 4881, - [4882] = 4814, - [4883] = 4795, - [4884] = 4796, - [4885] = 4861, - [4886] = 4886, - [4887] = 4807, - [4888] = 4888, - [4889] = 4814, - [4890] = 4795, - [4891] = 4796, - [4892] = 4797, - [4893] = 4893, - [4894] = 4807, + [4882] = 4830, + [4883] = 4869, + [4884] = 4884, + [4885] = 4831, + [4886] = 4832, + [4887] = 4833, + [4888] = 4839, + [4889] = 4847, + [4890] = 4890, + [4891] = 4881, + [4892] = 4847, + [4893] = 4829, + [4894] = 4894, [4895] = 4895, - [4896] = 4814, - [4897] = 4795, - [4898] = 4796, - [4899] = 4860, - [4900] = 4900, - [4901] = 4807, - [4902] = 4811, - [4903] = 4814, - [4904] = 4795, - [4905] = 4796, + [4896] = 4896, + [4897] = 4831, + [4898] = 4832, + [4899] = 4833, + [4900] = 4831, + [4901] = 4839, + [4902] = 4847, + [4903] = 4831, + [4904] = 4832, + [4905] = 4833, [4906] = 4906, - [4907] = 4907, - [4908] = 4807, - [4909] = 4909, - [4910] = 4814, - [4911] = 4795, - [4912] = 4796, + [4907] = 4831, + [4908] = 4832, + [4909] = 4833, + [4910] = 4832, + [4911] = 4911, + [4912] = 4847, [4913] = 4913, - [4914] = 4807, - [4915] = 4814, - [4916] = 4795, - [4917] = 4796, - [4918] = 4918, - [4919] = 4807, - [4920] = 4821, - [4921] = 4913, + [4914] = 4836, + [4915] = 4915, + [4916] = 4831, + [4917] = 4832, + [4918] = 4833, + [4919] = 4919, + [4920] = 4833, + [4921] = 4847, [4922] = 4922, - [4923] = 4923, - [4924] = 4924, - [4925] = 4822, - [4926] = 4800, + [4923] = 4831, + [4924] = 4832, + [4925] = 4833, + [4926] = 4860, [4927] = 4927, - [4928] = 4800, + [4928] = 4847, [4929] = 4929, - [4930] = 4930, - [4931] = 4838, - [4932] = 4811, - [4933] = 4906, + [4930] = 4831, + [4931] = 4832, + [4932] = 4833, + [4933] = 4838, [4934] = 4934, - [4935] = 4935, - [4936] = 4811, - [4937] = 4937, - [4938] = 4938, - [4939] = 4939, - [4940] = 4913, - [4941] = 4855, - [4942] = 4825, - [4943] = 4937, - [4944] = 4913, - [4945] = 4945, - [4946] = 4909, - [4947] = 4861, - [4948] = 4807, - [4949] = 4930, - [4950] = 4794, - [4951] = 4814, - [4952] = 4796, - [4953] = 4953, - [4954] = 4795, - [4955] = 491, - [4956] = 4956, - [4957] = 4929, - [4958] = 4796, - [4959] = 886, - [4960] = 2570, - [4961] = 4913, - [4962] = 4962, - [4963] = 4963, - [4964] = 4937, - [4965] = 4965, - [4966] = 4937, - [4967] = 4837, - [4968] = 4849, - [4969] = 4969, - [4970] = 2530, - [4971] = 4798, - [4972] = 4814, - [4973] = 4973, - [4974] = 4840, - [4975] = 4795, - [4976] = 4796, - [4977] = 4977, - [4978] = 4978, - [4979] = 4840, - [4980] = 4953, - [4981] = 4821, - [4982] = 4982, - [4983] = 4837, - [4984] = 4692, - [4985] = 4929, + [4935] = 4847, + [4936] = 4936, + [4937] = 4831, + [4938] = 4832, + [4939] = 4833, + [4940] = 4894, + [4941] = 4941, + [4942] = 4847, + [4943] = 4943, + [4944] = 4831, + [4945] = 4832, + [4946] = 4833, + [4947] = 4896, + [4948] = 4839, + [4949] = 4847, + [4950] = 4840, + [4951] = 4831, + [4952] = 4832, + [4953] = 4833, + [4954] = 4831, + [4955] = 4847, + [4956] = 4836, + [4957] = 4831, + [4958] = 4832, + [4959] = 4833, + [4960] = 4960, + [4961] = 4847, + [4962] = 4831, + [4963] = 4832, + [4964] = 4833, + [4965] = 4919, + [4966] = 4847, + [4967] = 4831, + [4968] = 4832, + [4969] = 4833, + [4970] = 4828, + [4971] = 4866, + [4972] = 4840, + [4973] = 4960, + [4974] = 4974, + [4975] = 4975, + [4976] = 4841, + [4977] = 2400, + [4978] = 4860, + [4979] = 4979, + [4980] = 4922, + [4981] = 4981, + [4982] = 4857, + [4983] = 4832, + [4984] = 4984, + [4985] = 4985, [4986] = 4986, - [4987] = 4864, - [4988] = 4794, - [4989] = 4794, - [4990] = 4798, - [4991] = 4796, - [4992] = 4992, - [4993] = 491, - [4994] = 4802, - [4995] = 4800, - [4996] = 4886, - [4997] = 4962, - [4998] = 4934, - [4999] = 4806, - [5000] = 4850, - [5001] = 4888, - [5002] = 5002, - [5003] = 2526, - [5004] = 4794, - [5005] = 4945, - [5006] = 4963, - [5007] = 4801, - [5008] = 4930, - [5009] = 4808, - [5010] = 4811, - [5011] = 4909, - [5012] = 5012, - [5013] = 4878, + [4987] = 4833, + [4988] = 4844, + [4989] = 4985, + [4990] = 4906, + [4991] = 4846, + [4992] = 4837, + [4993] = 4993, + [4994] = 4830, + [4995] = 4829, + [4996] = 4849, + [4997] = 4997, + [4998] = 4845, + [4999] = 4870, + [5000] = 5000, + [5001] = 5001, + [5002] = 4915, + [5003] = 5001, + [5004] = 4838, + [5005] = 5005, + [5006] = 5006, + [5007] = 5007, + [5008] = 4838, + [5009] = 4862, + [5010] = 4867, + [5011] = 491, + [5012] = 485, + [5013] = 4865, [5014] = 5014, - [5015] = 4804, - [5016] = 4798, - [5017] = 4913, - [5018] = 5018, - [5019] = 4802, + [5015] = 5015, + [5016] = 4834, + [5017] = 4997, + [5018] = 5001, + [5019] = 5019, [5020] = 5020, - [5021] = 4808, - [5022] = 4794, - [5023] = 4806, - [5024] = 5002, - [5025] = 4800, - [5026] = 5026, - [5027] = 4861, - [5028] = 4930, - [5029] = 5029, - [5030] = 4806, - [5031] = 4969, - [5032] = 4923, + [5021] = 4849, + [5022] = 4839, + [5023] = 4846, + [5024] = 494, + [5025] = 5007, + [5026] = 4847, + [5027] = 491, + [5028] = 2405, + [5029] = 4960, + [5030] = 4865, + [5031] = 5031, + [5032] = 475, [5033] = 5033, - [5034] = 4811, - [5035] = 5035, - [5036] = 4801, - [5037] = 930, - [5038] = 4807, + [5034] = 4834, + [5035] = 942, + [5036] = 4844, + [5037] = 5014, + [5038] = 4837, [5039] = 5039, - [5040] = 4801, - [5041] = 4913, - [5042] = 4969, - [5043] = 4930, - [5044] = 4811, - [5045] = 4937, - [5046] = 4937, - [5047] = 4794, - [5048] = 5048, - [5049] = 4913, - [5050] = 4814, - [5051] = 4937, - [5052] = 5052, - [5053] = 5053, - [5054] = 4930, - [5055] = 4881, - [5056] = 4937, - [5057] = 4794, - [5058] = 5058, - [5059] = 4811, - [5060] = 4918, - [5061] = 4922, - [5062] = 4923, - [5063] = 4924, - [5064] = 4922, - [5065] = 4829, - [5066] = 4814, - [5067] = 4945, - [5068] = 5068, - [5069] = 4795, - [5070] = 4796, - [5071] = 498, - [5072] = 4808, - [5073] = 4939, - [5074] = 500, - [5075] = 4806, - [5076] = 4837, - [5077] = 4924, - [5078] = 503, - [5079] = 4794, - [5080] = 490, - [5081] = 5081, - [5082] = 4918, - [5083] = 491, - [5084] = 4870, - [5085] = 5085, - [5086] = 4850, - [5087] = 5081, - [5088] = 5088, - [5089] = 4937, - [5090] = 5090, - [5091] = 5091, - [5092] = 5092, - [5093] = 4807, - [5094] = 4798, - [5095] = 4814, - [5096] = 4802, - [5097] = 4918, - [5098] = 4922, - [5099] = 4923, - [5100] = 4924, - [5101] = 4850, - [5102] = 4945, - [5103] = 4800, - [5104] = 4861, - [5105] = 5105, - [5106] = 4808, - [5107] = 4806, - [5108] = 4795, - [5109] = 4918, - [5110] = 4922, - [5111] = 4923, - [5112] = 4924, - [5113] = 4918, - [5114] = 4922, - [5115] = 4923, - [5116] = 4924, - [5117] = 4918, - [5118] = 4922, - [5119] = 4923, - [5120] = 4924, - [5121] = 4918, - [5122] = 4923, - [5123] = 4924, - [5124] = 4918, - [5125] = 4923, - [5126] = 4924, - [5127] = 4918, - [5128] = 4923, - [5129] = 4924, - [5130] = 4918, - [5131] = 4923, - [5132] = 4924, - [5133] = 4918, - [5134] = 4923, - [5135] = 4924, - [5136] = 4918, - [5137] = 4923, - [5138] = 4924, - [5139] = 4918, - [5140] = 4923, - [5141] = 4924, - [5142] = 4918, - [5143] = 4923, - [5144] = 4924, - [5145] = 4918, - [5146] = 4923, - [5147] = 4924, - [5148] = 4918, - [5149] = 4923, - [5150] = 4924, - [5151] = 4918, - [5152] = 4923, - [5153] = 4924, - [5154] = 4918, - [5155] = 4923, - [5156] = 4924, - [5157] = 4918, - [5158] = 4923, - [5159] = 4924, - [5160] = 4860, - [5161] = 4801, - [5162] = 5162, - [5163] = 4795, - [5164] = 4796, - [5165] = 4907, - [5166] = 4836, - [5167] = 5026, - [5168] = 4861, - [5169] = 4798, - [5170] = 4969, - [5171] = 5171, - [5172] = 4807, - [5173] = 4861, - [5174] = 4965, - [5175] = 4838, - [5176] = 4814, - [5177] = 4811, - [5178] = 4837, - [5179] = 4837, - [5180] = 4849, - [5181] = 4879, - [5182] = 4913, - [5183] = 4811, - [5184] = 4930, - [5185] = 5105, - [5186] = 5186, - [5187] = 4937, - [5188] = 5188, - [5189] = 5162, - [5190] = 5190, - [5191] = 4879, - [5192] = 4814, - [5193] = 4795, - [5194] = 4796, - [5195] = 4795, - [5196] = 4811, - [5197] = 4913, - [5198] = 5198, - [5199] = 4937, - [5200] = 4837, - [5201] = 4849, - [5202] = 4794, - [5203] = 4840, - [5204] = 4814, - [5205] = 4807, - [5206] = 5206, + [5040] = 4869, + [5041] = 4894, + [5042] = 5042, + [5043] = 5043, + [5044] = 4835, + [5045] = 4829, + [5046] = 4896, + [5047] = 5047, + [5048] = 494, + [5049] = 4831, + [5050] = 4832, + [5051] = 4833, + [5052] = 4839, + [5053] = 4835, + [5054] = 4836, + [5055] = 5055, + [5056] = 5033, + [5057] = 4838, + [5058] = 4894, + [5059] = 4834, + [5060] = 4896, + [5061] = 4839, + [5062] = 5062, + [5063] = 5006, + [5064] = 4840, + [5065] = 4844, + [5066] = 4860, + [5067] = 4842, + [5068] = 4847, + [5069] = 5069, + [5070] = 4828, + [5071] = 4837, + [5072] = 478, + [5073] = 5073, + [5074] = 2427, + [5075] = 4840, + [5076] = 5019, + [5077] = 4960, + [5078] = 5078, + [5079] = 4847, + [5080] = 494, + [5081] = 4919, + [5082] = 4865, + [5083] = 927, + [5084] = 4844, + [5085] = 491, + [5086] = 4869, + [5087] = 5087, + [5088] = 4869, + [5089] = 4844, + [5090] = 2397, + [5091] = 4837, + [5092] = 4829, + [5093] = 4869, + [5094] = 5042, + [5095] = 4844, + [5096] = 5015, + [5097] = 4829, + [5098] = 4838, + [5099] = 4829, + [5100] = 4837, + [5101] = 5101, + [5102] = 4860, + [5103] = 5001, + [5104] = 4831, + [5105] = 4832, + [5106] = 4833, + [5107] = 4829, + [5108] = 4838, + [5109] = 4865, + [5110] = 4844, + [5111] = 4828, + [5112] = 4974, + [5113] = 4975, + [5114] = 4841, + [5115] = 5115, + [5116] = 4857, + [5117] = 4836, + [5118] = 4997, + [5119] = 4840, + [5120] = 5120, + [5121] = 4838, + [5122] = 4894, + [5123] = 4831, + [5124] = 4896, + [5125] = 4839, + [5126] = 2412, + [5127] = 2420, + [5128] = 4894, + [5129] = 4840, + [5130] = 4832, + [5131] = 4860, + [5132] = 4833, + [5133] = 4834, + [5134] = 5134, + [5135] = 4993, + [5136] = 5136, + [5137] = 4986, + [5138] = 4896, + [5139] = 5139, + [5140] = 5140, + [5141] = 4847, + [5142] = 4847, + [5143] = 4857, + [5144] = 4913, + [5145] = 4865, + [5146] = 4974, + [5147] = 4829, + [5148] = 4828, + [5149] = 4974, + [5150] = 4975, + [5151] = 4841, + [5152] = 4844, + [5153] = 4997, + [5154] = 4979, + [5155] = 4981, + [5156] = 4837, + [5157] = 5005, + [5158] = 4869, + [5159] = 4981, + [5160] = 5160, + [5161] = 4828, + [5162] = 4974, + [5163] = 4975, + [5164] = 4841, + [5165] = 4828, + [5166] = 4974, + [5167] = 4975, + [5168] = 4841, + [5169] = 4828, + [5170] = 4974, + [5171] = 4975, + [5172] = 4841, + [5173] = 4828, + [5174] = 4975, + [5175] = 4841, + [5176] = 4828, + [5177] = 4975, + [5178] = 4841, + [5179] = 4828, + [5180] = 4975, + [5181] = 4841, + [5182] = 4828, + [5183] = 4975, + [5184] = 4841, + [5185] = 4828, + [5186] = 4975, + [5187] = 4841, + [5188] = 4828, + [5189] = 4975, + [5190] = 4841, + [5191] = 4922, + [5192] = 4975, + [5193] = 4841, + [5194] = 4828, + [5195] = 4975, + [5196] = 4841, + [5197] = 4828, + [5198] = 4975, + [5199] = 4841, + [5200] = 4828, + [5201] = 4975, + [5202] = 4841, + [5203] = 4828, + [5204] = 4975, + [5205] = 4841, + [5206] = 4828, + [5207] = 4975, + [5208] = 4841, + [5209] = 4828, + [5210] = 4975, + [5211] = 4841, + [5212] = 4828, + [5213] = 4975, + [5214] = 4841, + [5215] = 4828, + [5216] = 4975, + [5217] = 4841, + [5218] = 4829, + [5219] = 803, + [5220] = 4895, + [5221] = 4865, + [5222] = 5222, + [5223] = 4831, + [5224] = 4832, + [5225] = 4852, + [5226] = 4833, + [5227] = 4975, + [5228] = 5228, + [5229] = 4836, + [5230] = 5230, + [5231] = 4838, + [5232] = 5232, + [5233] = 4894, + [5234] = 4906, + [5235] = 4838, + [5236] = 4896, + [5237] = 4839, + [5238] = 4830, + [5239] = 4840, + [5240] = 4878, + [5241] = 5043, + [5242] = 4860, + [5243] = 5243, + [5244] = 4676, + [5245] = 4834, + [5246] = 4845, + [5247] = 4870, + [5248] = 4836, + [5249] = 4878, + [5250] = 4919, + [5251] = 5251, + [5252] = 4847, + [5253] = 5253, + [5254] = 4878, + [5255] = 4845, + [5256] = 4834, + [5257] = 5232, + [5258] = 4844, + [5259] = 4922, + [5260] = 4837, + [5261] = 4834, + [5262] = 5262, }; static const TSCharacterRange aux_sym_cmd_identifier_token1_character_set_1[] = { @@ -10681,1888 +10731,1971 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1718, - '"', 1685, - '#', 2188, - '$', 1510, - '&', 824, - '\'', 1688, - '(', 1561, - ')', 1616, - '*', 1112, - '+', 1117, - ',', 1469, - '-', 1118, - '.', 1721, - '/', 1114, - ':', 1713, - ';', 1451, - '<', 1141, - '=', 673, - '>', 1144, - '?', 1717, - '@', 1481, - '[', 1665, - ']', 1466, - '^', 1731, - '_', 1502, - '`', 1692, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1482, + '\r', 9, + '!', 1721, + '"', 1688, + '#', 2192, + '$', 1513, + '&', 827, + '\'', 1691, + '(', 1564, + ')', 1619, + '*', 1115, + '+', 1120, + ',', 1472, + '-', 1121, + '.', 1724, + '/', 1117, + ':', 1716, + ';', 1454, + '<', 1144, + '=', 676, + '>', 1147, + '?', 1720, + '@', 1485, + '[', 1668, + ']', 1469, + '^', 1735, + '_', 1506, + '`', 1695, + '{', 1502, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(571); + lookahead == ' ') SKIP(572); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1373); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1376); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(1448); + ADVANCE_MAP( + '\n', 1482, + '!', 1721, + '"', 1688, + '#', 2192, + '\'', 1691, + '+', 2143, + ',', 1472, + '-', 2142, + '.', 1725, + '>', 1483, + '?', 1720, + 'N', 2158, + '_', 2145, + '`', 1695, + 'f', 2148, + 'n', 2157, + 't', 2154, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2164); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2178); END_STATE(); case 2: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1718, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1724, - ':', 1463, - ';', 1451, - '<', 1141, - '=', 673, - '>', 1479, - '?', 1717, - '@', 1481, - '[', 1465, - ']', 1466, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1482, + '!', 1721, + '"', 1688, + '#', 2192, + '\'', 1691, + '+', 2143, + ',', 1472, + '-', 2142, + '.', 1725, + '>', 1483, + 'N', 2158, + '_', 2145, + '`', 1695, + 'f', 2148, + 'n', 2157, + 't', 2154, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(3); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '`') ADVANCE(1373); + lookahead == ' ') SKIP(2); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2164); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2178); END_STATE(); case 3: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1718, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - ',', 1469, - '-', 1487, + '\n', 1482, + '"', 1688, + '#', 2192, + '\'', 1691, + '+', 2143, + ',', 1472, + '-', 2142, '.', 1725, - ':', 1463, - ';', 1451, - '=', 673, - '>', 1479, - '?', 1717, - '[', 1465, - ']', 1466, - '{', 1498, - '|', 1452, - '}', 1499, + '>', 1483, + '?', 1720, + 'N', 2158, + '_', 2145, + '`', 1695, + 'f', 2148, + 'n', 2157, + 't', 2154, ); if (lookahead == '\t' || lookahead == ' ') SKIP(3); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < ':' || '@' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '`') ADVANCE(1373); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2164); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2178); END_STATE(); case 4: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1718, - '#', 2188, - ')', 1468, - '.', 1720, - ':', 1713, - ';', 1451, - '=', 323, - '?', 1717, - 'a', 421, - 'e', 288, - 'i', 387, - 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1482, + '"', 1688, + '#', 2192, + '\'', 1691, + '+', 2143, + ',', 1472, + '-', 2142, + '.', 1725, + '>', 1483, + 'N', 2158, + '_', 2145, + '`', 1695, + 'f', 2148, + 'n', 2157, + 't', 2154, ); if (lookahead == '\t' || lookahead == ' ') SKIP(4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2164); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2178); END_STATE(); case 5: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1718, - '#', 2188, - ')', 1468, - '.', 1722, - ':', 1713, - ';', 1451, - '=', 323, - '?', 1717, - 'a', 421, - 'e', 288, - 'i', 387, - 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1482, + '"', 1688, + '#', 2192, + '\'', 1691, + '+', 2143, + ',', 1472, + '-', 2142, + '.', 2141, + ':', 1466, + '>', 1483, + 'N', 2158, + '_', 2145, + '`', 1695, + 'f', 2148, + 'n', 2157, + 't', 2154, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(4); + lookahead == ' ') SKIP(5); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2164); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2178); END_STATE(); case 6: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1604, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '\n', 1482, + '"', 1688, + '#', 2192, + '\'', 1691, + '+', 2143, + ',', 1472, + '-', 2142, + '.', 2141, + '<', 1144, + '>', 1483, + '@', 1485, + 'N', 2158, + '_', 2145, + '`', 1695, + 'f', 2148, + 'n', 2157, + 't', 2154, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(20); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(8); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2164); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2178); END_STATE(); case 7: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1815, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '\n', 1482, + '"', 1688, + '#', 2192, + '\'', 1691, + '+', 2143, + ',', 1472, + '-', 2142, + '.', 2141, + '>', 1483, + '@', 1485, + 'N', 2158, + '_', 2145, + '`', 1695, + 'f', 2148, + 'n', 2157, + 't', 2154, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(20); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(8); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2164); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2178); END_STATE(); case 8: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1805, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '{', 1498, - 0xb5, 1891, + '\n', 1482, + '"', 1688, + '#', 2192, + '\'', 1691, + '+', 2143, + ',', 1472, + '-', 2142, + '.', 2141, + '>', 1483, + 'N', 2158, + '_', 2145, + '`', 1695, + 'f', 2148, + 'n', 2157, + 't', 2154, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(8); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2164); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2178); END_STATE(); case 9: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\n') ADVANCE(1451); END_STATE(); case 10: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1805, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '{', 1498, - 0xb5, 1891, + '\n', 1451, + '\r', 9, + '!', 1721, + '#', 2192, + '$', 1473, + '(', 1470, + ')', 1471, + ',', 1472, + '-', 1491, + '.', 1728, + ':', 1466, + ';', 1454, + '<', 1144, + '=', 676, + '>', 1483, + '?', 1720, + '@', 1485, + '[', 1468, + ']', 1469, + '{', 1502, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(11); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '`') ADVANCE(1376); END_STATE(); case 11: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1805, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '{', 1498, - 0xb5, 1891, + '\n', 1451, + '\r', 9, + '!', 1721, + '#', 2192, + '$', 1473, + '(', 1470, + ')', 1471, + ',', 1472, + '-', 1491, + '.', 1729, + ':', 1466, + ';', 1454, + '=', 676, + '>', 1483, + '?', 1720, + '[', 1468, + ']', 1469, + '{', 1502, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(11); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < ':' || '@' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '`') ADVANCE(1376); END_STATE(); case 12: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1808, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '{', 1498, - 0xb5, 1891, + '\n', 1451, + '\r', 9, + '!', 1721, + '#', 2192, + ')', 1471, + '.', 1723, + ':', 1716, + ';', 1454, + '=', 327, + '?', 1720, + 'a', 423, + 'e', 292, + 'i', 389, + 'o', 293, + 'x', 433, + '{', 1502, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(12); END_STATE(); case 13: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '\n', 1451, + '\r', 9, + '!', 1721, + '#', 2192, + ')', 1471, + '.', 1726, + ':', 1716, + ';', 1454, + '=', 327, + '?', 1720, + 'a', 423, + 'e', 292, + 'i', 389, + 'o', 293, + 'x', 433, + '{', 1502, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(12); END_STATE(); case 14: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '$', 1473, + '(', 1564, + '*', 1515, + '+', 1579, + '-', 1497, + '.', 1607, + '/', 1570, + '<', 1553, + '=', 1799, + '>', 1484, + '_', 1817, + 'a', 1869, + 'b', 1856, + 'e', 1870, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1883, + 's', 1903, + 'x', 1875, + '{', 1502, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); END_STATE(); case 15: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '$', 1473, + '(', 1564, + '*', 1515, + '+', 1579, + '-', 1497, + '.', 1819, + '/', 1570, + '<', 1553, + '=', 1799, + '>', 1484, + '_', 1817, + 'a', 1869, + 'b', 1856, + 'e', 1870, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1883, + 's', 1903, + 'x', 1875, + '{', 1502, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); END_STATE(); case 16: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1594, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1598, + '/', 1570, + '<', 1553, + '=', 1799, + '>', 1484, + 'B', 1656, + 'E', 1811, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + 'a', 1869, + 'b', 1659, + 'd', 1828, + 'e', 1809, + 'g', 1813, + 'h', 1826, + 'i', 1867, + 'k', 1813, + 'l', 1855, + 'm', 1815, + 'n', 1876, + 'o', 1883, + 'p', 1813, + 's', 1842, + 't', 1813, + 'u', 1895, + 'w', 1862, + 'x', 1875, + '{', 1502, + 0xb5, 1895, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(36); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 17: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1598, + '/', 1570, + '<', 1553, + '=', 1799, + '>', 1484, + 'E', 1823, + 'a', 1869, + 'b', 1856, + 'e', 1820, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1883, + 's', 1903, + 'x', 1875, + '{', 1502, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(36); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 18: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1794, + '/', 1570, + '<', 1553, + '=', 1799, + '>', 1484, + 'B', 1656, + 'E', 1811, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + '_', 1817, + 'a', 1869, + 'b', 1659, + 'd', 1828, + 'e', 1809, + 'g', 1813, + 'h', 1826, + 'i', 1867, + 'k', 1813, + 'l', 1855, + 'm', 1815, + 'n', 1876, + 'o', 1883, + 'p', 1813, + 's', 1842, + 't', 1813, + 'u', 1895, + 'w', 1862, + 'x', 1875, + '{', 1502, + 0xb5, 1895, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(36); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 19: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 1795, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, - '{', 1498, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1794, + '/', 1570, + '<', 1553, + '=', 1799, + '>', 1484, + 'B', 1656, + 'E', 1811, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + 'a', 1869, + 'b', 1659, + 'd', 1828, + 'e', 1809, + 'g', 1813, + 'h', 1826, + 'i', 1867, + 'k', 1813, + 'l', 1855, + 'm', 1815, + 'n', 1876, + 'o', 1883, + 'p', 1813, + 's', 1842, + 't', 1813, + 'u', 1895, + 'w', 1862, + 'x', 1875, + '{', 1502, + 0xb5, 1895, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(36); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 20: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '$', 1470, - '*', 1512, - '+', 1577, - '-', 1494, - '.', 337, - '/', 1567, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 425, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 452, - 's', 486, - 'x', 431, - '{', 1498, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1794, + '/', 1570, + '<', 1553, + '=', 1799, + '>', 1484, + 'B', 1656, + 'E', 1814, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + 'a', 1869, + 'b', 1659, + 'd', 1828, + 'e', 1812, + 'g', 1813, + 'h', 1826, + 'i', 1867, + 'k', 1813, + 'l', 1855, + 'm', 1815, + 'n', 1876, + 'o', 1883, + 'p', 1813, + 's', 1842, + 't', 1813, + 'u', 1895, + 'w', 1862, + 'x', 1875, + '{', 1502, + 0xb5, 1895, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(20); + lookahead == ' ') SKIP(36); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 21: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1794, + '/', 1570, + '<', 1553, + '=', 1799, + '>', 1484, + 'E', 1823, + '_', 1817, + 'a', 1869, + 'b', 1856, + 'e', 1820, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1883, + 's', 1903, + 'x', 1875, + '{', 1502, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(21); + lookahead == ' ') SKIP(36); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 22: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 287, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 289, - 's', 486, - 'x', 431, - '|', 1452, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1794, + '/', 1570, + '<', 1553, + '=', 1799, + '>', 1484, + 'E', 1823, + 'a', 1869, + 'b', 1856, + 'e', 1820, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1883, + 's', 1903, + 'x', 1875, + '{', 1502, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(22); + lookahead == ' ') SKIP(36); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 23: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1794, + '/', 1570, + '<', 1553, + '=', 1799, + '>', 1484, + 'a', 1869, + 'b', 1856, + 'e', 1870, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1883, + 's', 1903, + 'x', 1875, + '{', 1502, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); + lookahead == ' ') SKIP(36); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 24: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1597, + '/', 1570, + '<', 1553, + '=', 1799, + '>', 1484, + 'E', 1823, + 'a', 1869, + 'b', 1856, + 'e', 1820, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1883, + 's', 1903, + 'x', 1875, + '{', 1502, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); + lookahead == ' ') SKIP(36); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 25: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 287, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 289, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + '*', 1515, + '+', 1578, + '-', 1490, + '/', 1570, + '<', 1553, + '=', 1799, + '>', 1484, + 'E', 1823, + '_', 1817, + 'a', 1869, + 'b', 1856, + 'e', 1820, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1883, + 's', 1903, + 'x', 1875, + '{', 1502, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); + lookahead == ' ') SKIP(36); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 26: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + '*', 1515, + '+', 1578, + '-', 1490, + '/', 1570, + '<', 1553, + '=', 1799, + '>', 1484, + 'E', 1823, + 'a', 1869, + 'b', 1856, + 'e', 1820, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1883, + 's', 1903, + 'x', 1875, + '{', 1502, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); + lookahead == ' ') SKIP(36); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 27: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 287, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 289, - 's', 486, - 'x', 431, - '|', 1452, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + '*', 1515, + '+', 1578, + '-', 1490, + '/', 1570, + '<', 1553, + '=', 1799, + '>', 1484, + 'a', 1869, + 'b', 1856, + 'e', 1870, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1883, + 's', 1903, + 'x', 1875, + '{', 1502, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); + lookahead == ' ') SKIP(36); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 28: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 425, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 452, - 's', 486, - 'x', 431, - '{', 1498, + '\n', 1451, + '\r', 9, + '!', 324, + '#', 2192, + '$', 1473, + '*', 1515, + '+', 1580, + '-', 1498, + '.', 340, + '/', 1570, + '<', 1553, + '=', 326, + '>', 1484, + 'a', 423, + 'b', 402, + 'e', 427, + 'h', 347, + 'i', 424, + 'l', 401, + 'm', 438, + 'n', 436, + 'o', 453, + 's', 487, + 'x', 433, + '{', 1502, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); END_STATE(); case 29: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - ')', 1468, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - ':', 1713, - ';', 1451, - '=', 1729, - '@', 1462, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 324, + '#', 2192, + ')', 1471, + '*', 1515, + '+', 1578, + '-', 1490, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 326, + '>', 1484, + 'a', 423, + 'b', 402, + 'e', 289, + 'h', 347, + 'i', 424, + 'l', 401, + 'm', 438, + 'n', 436, + 'o', 283, + 's', 487, + 'x', 433, + '|', 1455, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(30); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + lookahead == ' ') SKIP(29); END_STATE(); case 30: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - ')', 1468, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - ':', 1713, - ';', 1451, - '@', 1462, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 324, + '#', 2192, + ')', 1471, + '*', 1515, + '+', 1578, + '-', 1490, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 326, + '>', 1484, + 'a', 423, + 'b', 402, + 'e', 291, + 'h', 347, + 'i', 424, + 'l', 401, + 'm', 438, + 'n', 436, + 'o', 293, + 's', 487, + 'x', 433, + '|', 1455, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); END_STATE(); case 31: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - ')', 1468, - '+', 1580, - '-', 1491, - '.', 698, - '0', 1623, - ':', 1463, - ';', 1451, - '<', 1141, - '=', 323, - '>', 1479, - '@', 1462, - 'I', 809, - 'N', 805, - '[', 1465, - ']', 1466, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 324, + '#', 2192, + '*', 1515, + '+', 1578, + '-', 1490, + '/', 1570, + ':', 1716, + ';', 1454, + '<', 1553, + '=', 326, + '>', 1484, + 'a', 423, + 'b', 402, + 'e', 289, + 'h', 347, + 'i', 424, + 'l', 401, + 'm', 438, + 'n', 436, + 'o', 283, + 's', 487, + 'x', 433, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(32); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '+' || '.' < lookahead)) ADVANCE(824); + lookahead == ' ') SKIP(31); END_STATE(); case 32: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - ')', 1468, - '+', 1580, - '-', 1491, - '.', 698, - '0', 1623, - ':', 1463, - ';', 1451, - '=', 323, - '>', 1479, - '@', 1462, - 'I', 809, - 'N', 805, - '[', 1465, - ']', 1466, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 324, + '#', 2192, + '*', 1515, + '+', 1578, + '-', 1490, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 326, + '>', 1484, + 'a', 423, + 'b', 402, + 'e', 289, + 'h', 347, + 'i', 424, + 'l', 401, + 'm', 438, + 'n', 436, + 'o', 283, + 's', 487, + 'x', 433, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(32); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead)) ADVANCE(824); END_STATE(); case 33: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - ';', 1451, - '=', 1729, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, - '\t', 1450, - ' ', 1450, + '\n', 1451, + '\r', 9, + '!', 324, + '#', 2192, + '*', 1515, + '+', 1578, + '-', 1490, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 326, + '>', 1484, + 'a', 423, + 'b', 402, + 'e', 291, + 'h', 347, + 'i', 424, + 'l', 401, + 'm', 438, + 'n', 436, + 'o', 293, + 's', 487, + 'x', 433, + '|', 1455, + '}', 1503, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (lookahead == '\t' || + lookahead == ' ') SKIP(33); END_STATE(); case 34: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - '=', 673, - '>', 1479, - '@', 1481, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, + '\n', 1451, + '\r', 9, + '!', 324, + '#', 2192, + '*', 1515, + '+', 1578, + '-', 1490, + '/', 1570, + '<', 1553, + '=', 326, + '>', 1484, + 'a', 423, + 'b', 402, + 'e', 289, + 'h', 347, + 'i', 424, + 'l', 401, + 'm', 438, + 'n', 436, + 'o', 283, + 's', 487, + 'x', 433, + '|', 1455, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(35); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + lookahead == ' ') SKIP(34); END_STATE(); case 35: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - '=', 673, - '>', 1479, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, + '\n', 1451, + '\r', 9, + '!', 324, + '#', 2192, + '*', 1515, + '+', 1578, + '-', 1490, + '/', 1570, + '<', 1553, + '=', 326, + '>', 1484, + 'a', 423, + 'b', 402, + 'e', 291, + 'h', 347, + 'i', 424, + 'l', 401, + 'm', 438, + 'n', 436, + 'o', 293, + 's', 487, + 'x', 433, + '|', 1455, ); if (lookahead == '\t' || lookahead == ' ') SKIP(35); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); END_STATE(); case 36: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 691, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 'o', 693, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, - '|', 1452, + '\n', 1451, + '\r', 9, + '!', 324, + '#', 2192, + '*', 1515, + '+', 1578, + '-', 1490, + '/', 1570, + '<', 1553, + '=', 326, + '>', 1484, + 'a', 423, + 'b', 402, + 'e', 427, + 'h', 347, + 'i', 424, + 'l', 401, + 'm', 438, + 'n', 436, + 'o', 453, + 's', 487, + 'x', 433, + '{', 1502, ); if (lookahead == '\t' || lookahead == ' ') SKIP(36); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); END_STATE(); case 37: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, - '-', 299, - '.', 718, - '=', 1729, - 'I', 809, - 'N', 805, - '[', 1465, - ']', 1466, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, + '\n', 1451, + '\r', 9, + '"', 1688, + '#', 2192, + '$', 1473, + '\'', 1691, + '(', 1470, + '+', 2004, + '-', 302, + '.', 2002, + '0', 1627, + 'N', 2051, + '[', 1468, + '_', 1505, + '`', 1695, + 'f', 2019, + 'n', 2047, + 't', 2034, + '{', 1502, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(38); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == ' ') SKIP(37); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2055); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2074); END_STATE(); case 38: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, - '-', 299, - '.', 718, - 'I', 809, - 'N', 805, - '[', 1465, - ']', 1466, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, + '\n', 1451, + '\r', 9, + '"', 1688, + '#', 2192, + '$', 1473, + '\'', 1691, + '(', 1470, + '+', 2086, + ',', 1472, + '-', 2085, + '.', 2084, + '0', 1628, + 'N', 2104, + '[', 1468, + ']', 1469, + '_', 2091, + '`', 1695, + 'f', 2094, + 'n', 2103, + 't', 2100, + '{', 1502, ); if (lookahead == '\t' || lookahead == ' ') SKIP(38); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2110); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2132); END_STATE(); case 39: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 308, - '-', 1491, - '.', 309, - '0', 1626, - ':', 1713, - 'N', 533, - '[', 1465, - '_', 342, - '`', 1692, - 'f', 347, - 'n', 442, - 't', 457, - '{', 1498, + '\n', 1451, + '\r', 9, + '"', 1688, + '#', 2192, + '$', 1473, + '\'', 1691, + '(', 1470, + '-', 1490, + '`', 1695, + 'f', 1518, + 'n', 1522, + 't', 1523, + '{', 1502, ); if (lookahead == '\t' || lookahead == ' ') SKIP(39); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(542); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1528); END_STATE(); case 40: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 1580, - '-', 1491, - '.', 701, - '0', 1628, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '}', 1499, + '\n', 1451, + '\r', 9, + '"', 1688, + '#', 2192, + '$', 1474, + '\'', 1691, + '(', 1470, + ')', 1471, + '+', 705, + '-', 1495, + '.', 700, + '0', 1626, + ':', 1716, + ';', 1454, + '=', 1733, + '@', 1465, + 'I', 812, + 'N', 808, + '[', 1468, + '^', 1735, + '_', 719, + '`', 1695, + 'a', 757, + 'c', 724, + 'd', 734, + 'e', 762, + 'f', 726, + 'i', 718, + 'l', 742, + 'm', 728, + 'n', 772, + 't', 775, + 'u', 788, + 'w', 750, + '{', 1502, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(40); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == ' ') SKIP(41); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'a' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(827); END_STATE(); case 41: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 1491, - '.', 1998, - '0', 1624, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2027, - 't', 2030, - '{', 1498, + '\n', 1451, + '\r', 9, + '"', 1688, + '#', 2192, + '$', 1474, + '\'', 1691, + '(', 1470, + ')', 1471, + '+', 705, + '-', 1495, + '.', 700, + '0', 1626, + ':', 1716, + ';', 1454, + '@', 1465, + 'I', 812, + 'N', 808, + '[', 1468, + '^', 1735, + '_', 719, + '`', 1695, + 'a', 757, + 'c', 724, + 'd', 734, + 'e', 762, + 'f', 726, + 'i', 718, + 'l', 742, + 'm', 728, + 'n', 772, + 't', 775, + 'u', 788, + 'w', 750, + '{', 1502, + '}', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(41); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'a' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(827); END_STATE(); case 42: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 1488, - '.', 1999, - '0', 1624, - ':', 1713, - ';', 1451, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'e', 1989, - 'f', 2015, - 'n', 2043, - 'o', 1990, - 't', 2030, - '{', 1498, - '|', 1452, - '}', 1499, - '\t', 1449, - ' ', 1449, - 'I', 2051, - 'i', 2051, + '\n', 1451, + '\r', 9, + '"', 1688, + '#', 2192, + '$', 1474, + '\'', 1691, + '(', 1470, + '+', 705, + '-', 1495, + '.', 700, + '0', 1626, + ';', 1454, + '=', 1733, + 'I', 812, + 'N', 808, + '[', 1468, + '^', 1735, + '_', 719, + '`', 1695, + 'a', 757, + 'c', 724, + 'd', 734, + 'e', 762, + 'f', 726, + 'i', 718, + 'l', 742, + 'm', 728, + 'n', 772, + 't', 775, + 'u', 788, + 'w', 754, + '{', 1502, + '\t', 1453, + ' ', 1453, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ']') ADVANCE(2070); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); END_STATE(); case 43: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 1488, - '.', 1999, - '0', 1624, - ';', 1451, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'e', 1993, - 'f', 2015, - 'n', 2043, - 'o', 1994, - 't', 2030, - '{', 1498, - '\t', 1450, - ' ', 1450, - 'I', 2051, - 'i', 2051, + '\n', 1451, + '\r', 9, + '"', 1688, + '#', 2192, + '$', 1474, + '\'', 1691, + '(', 1470, + '+', 705, + '-', 1495, + '.', 700, + '0', 1626, + '=', 676, + '>', 1483, + '@', 1485, + 'I', 812, + 'N', 808, + '[', 1468, + '^', 1735, + '_', 719, + '`', 1695, + 'a', 757, + 'c', 724, + 'd', 734, + 'e', 762, + 'f', 726, + 'i', 718, + 'l', 742, + 'm', 728, + 'n', 772, + 't', 775, + 'u', 788, + 'w', 754, + '{', 1502, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (lookahead == '\t' || + lookahead == ' ') SKIP(44); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'a' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(827); END_STATE(); case 44: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2082, - ',', 1469, - '-', 2081, - '.', 2083, - '0', 1625, - 'N', 2100, - '[', 1465, - ']', 1466, - '_', 2087, - '`', 1692, - 'f', 2090, - 'n', 2099, - 't', 2096, - '{', 1498, + '\n', 1451, + '\r', 9, + '"', 1688, + '#', 2192, + '$', 1474, + '\'', 1691, + '(', 1470, + '+', 705, + '-', 1495, + '.', 700, + '0', 1626, + '=', 676, + '>', 1483, + 'I', 812, + 'N', 808, + '[', 1468, + '^', 1735, + '_', 719, + '`', 1695, + 'a', 757, + 'c', 724, + 'd', 734, + 'e', 762, + 'f', 726, + 'i', 718, + 'l', 742, + 'm', 728, + 'n', 772, + 't', 775, + 'u', 788, + 'w', 754, + '{', 1502, ); if (lookahead == '\t' || lookahead == ' ') SKIP(44); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2106); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2128); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); END_STATE(); case 45: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2139, - '-', 2138, - '.', 2137, - '0', 1627, - 'N', 2154, - '[', 1465, - '_', 2141, - '`', 1692, - 'f', 2144, - 'n', 2153, - 't', 2150, - '{', 1498, + '\n', 1451, + '\r', 9, + '"', 1688, + '#', 2192, + '$', 1474, + '\'', 1691, + '(', 1470, + '+', 705, + '-', 1495, + '.', 700, + '0', 1626, + 'I', 812, + 'N', 808, + '[', 1468, + '^', 1735, + '_', 719, + '`', 1695, + 'a', 757, + 'c', 724, + 'd', 734, + 'e', 694, + 'f', 726, + 'i', 718, + 'l', 742, + 'm', 728, + 'n', 772, + 'o', 696, + 't', 775, + 'u', 788, + 'w', 750, + '{', 1502, + '|', 1455, ); if (lookahead == '\t' || lookahead == ' ') SKIP(45); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2160); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2174); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); END_STATE(); case 46: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1470, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 298, - '.', 1998, - '0', 1624, - 'N', 2047, - '[', 1465, - '_', 1501, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, - '}', 1499, + '\n', 1451, + '\r', 9, + '"', 1688, + '#', 2192, + '$', 1474, + '\'', 1691, + '(', 1470, + '+', 705, + '-', 303, + '.', 721, + '=', 1733, + 'I', 812, + 'N', 808, + '[', 1468, + ']', 1469, + '_', 719, + '`', 1695, + 'a', 757, + 'c', 724, + 'd', 734, + 'e', 762, + 'f', 726, + 'i', 718, + 'l', 742, + 'm', 728, + 'n', 801, + 't', 775, + 'u', 788, + 'w', 754, + '{', 1502, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(47); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); + END_STATE(); + case 47: + ADVANCE_MAP( + '\n', 1451, + '\r', 9, + '"', 1688, + '#', 2192, + '$', 1474, + '\'', 1691, + '(', 1470, + '+', 705, + '-', 303, + '.', 721, + 'I', 812, + 'N', 808, + '[', 1468, + ']', 1469, + '_', 719, + '`', 1695, + 'a', 757, + 'c', 724, + 'd', 734, + 'e', 762, + 'f', 726, + 'i', 718, + 'l', 742, + 'm', 728, + 'n', 801, + 't', 775, + 'u', 788, + 'w', 754, + '{', 1502, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(47); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); + END_STATE(); + case 48: + ADVANCE_MAP( + '\n', 1451, + '\r', 9, + '"', 1688, + '#', 2192, + '$', 1474, + '\'', 1691, + '(', 1470, + '+', 312, + '-', 1495, + '.', 313, + '0', 1629, + ':', 1716, + 'N', 534, + '[', 1468, + '_', 345, + '`', 1695, + 'f', 350, + 'n', 444, + 't', 458, + '{', 1502, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(48); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(543); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1645); + END_STATE(); + case 49: + ADVANCE_MAP( + '\n', 1451, + '\r', 9, + '"', 1688, + '#', 2192, + '$', 1474, + '\'', 1691, + '(', 1470, + '+', 1583, + '-', 1495, + '.', 704, + '0', 1631, + 'I', 812, + 'N', 808, + '_', 719, + '`', 1695, + 'a', 757, + 'c', 724, + 'd', 734, + 'e', 762, + 'f', 726, + 'i', 718, + 'l', 742, + 'm', 728, + 'n', 801, + 't', 775, + 'u', 788, + 'w', 754, + '}', 1503, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(49); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); + END_STATE(); + case 50: + ADVANCE_MAP( + '\n', 1451, + '\r', 9, + '"', 1688, + '#', 2192, + '$', 1474, + '\'', 1691, + '(', 1470, + '+', 2004, + '-', 1495, + '.', 2002, + '0', 1627, + 'N', 2051, + '[', 1468, + '_', 2016, + '`', 1695, + 'f', 2019, + 'n', 2031, + 't', 2034, + '{', 1502, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(46); + lookahead == ' ') SKIP(50); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == 'i') ADVANCE(2055); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2074); END_STATE(); - case 47: + case 51: + ADVANCE_MAP( + '\n', 1451, + '\r', 9, + '"', 1688, + '#', 2192, + '$', 1474, + '\'', 1691, + '(', 1470, + '+', 2004, + '-', 1492, + '.', 2003, + '0', 1627, + ':', 1716, + ';', 1454, + 'N', 2051, + '[', 1468, + '_', 2016, + '`', 1695, + 'e', 1993, + 'f', 2019, + 'n', 2047, + 'o', 1994, + 't', 2034, + '{', 1502, + '|', 1455, + '}', 1503, + '\t', 1452, + ' ', 1452, + 'I', 2055, + 'i', 2055, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']') ADVANCE(2074); + END_STATE(); + case 52: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1470, - '\'', 1688, - '(', 1467, - '+', 2082, - ',', 1469, - '-', 2081, - '.', 2080, - '0', 1625, - 'N', 2100, - '[', 1465, - ']', 1466, - '_', 2087, - '`', 1692, - 'f', 2090, - 'n', 2099, - 't', 2096, - '{', 1498, + '\n', 1451, + '\r', 9, + '"', 1688, + '#', 2192, + '$', 1474, + '\'', 1691, + '(', 1470, + '+', 2004, + '-', 1492, + '.', 2003, + '0', 1627, + ';', 1454, + 'N', 2051, + '[', 1468, + '_', 2016, + '`', 1695, + 'e', 1997, + 'f', 2019, + 'n', 2047, + 'o', 1998, + 't', 2034, + '{', 1502, + '\t', 1453, + ' ', 1453, + 'I', 2055, + 'i', 2055, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(47); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2106); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2128); + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2074); END_STATE(); - case 48: + case 53: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1470, - '\'', 1688, - '(', 1467, - '-', 1486, - '`', 1692, - 'f', 1515, - 'n', 1519, - 't', 1520, - '{', 1498, + '\n', 1451, + '\r', 9, + '"', 1688, + '#', 2192, + '$', 1474, + '\'', 1691, + '(', 1470, + '+', 2086, + ',', 1472, + '-', 2085, + '.', 2087, + '0', 1628, + 'N', 2104, + '[', 1468, + ']', 1469, + '_', 2091, + '`', 1695, + 'f', 2094, + 'n', 2103, + 't', 2100, + '{', 1502, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(48); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + lookahead == ' ') SKIP(53); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2110); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2132); END_STATE(); - case 49: + case 54: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 2139, - '-', 2138, - '.', 2137, - '>', 1479, - 'N', 2154, - '_', 2141, - '`', 1692, - 'f', 2144, - 'n', 2153, - 't', 2150, + '\n', 1451, + '\r', 9, + '"', 1688, + '#', 2192, + '$', 1474, + '\'', 1691, + '(', 1470, + '+', 2143, + '-', 2142, + '.', 2141, + '0', 1630, + 'N', 2158, + '[', 1468, + '_', 2145, + '`', 1695, + 'f', 2148, + 'n', 2157, + 't', 2154, + '{', 1502, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(49); + lookahead == ' ') SKIP(54); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2160); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2174); + lookahead == 'i') ADVANCE(2164); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2178); END_STATE(); - case 50: + case 55: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2191, - '$', 1472, - '\'', 1688, - '(', 1467, - '+', 848, - '-', 1492, - '.', 849, - '0', 864, - ':', 1713, - 'N', 1020, - '[', 1465, - '_', 866, - '`', 1692, - 'f', 874, - 'n', 944, - 't', 959, - '{', 1498, + '\n', 1451, + '\r', 9, + '"', 1688, + '#', 2195, + '$', 1475, + '\'', 1691, + '(', 1470, + '+', 851, + '-', 1496, + '.', 852, + '0', 867, + ':', 1716, + 'N', 1023, + '[', 1468, + '_', 869, + '`', 1695, + 'f', 877, + 'n', 947, + 't', 962, + '{', 1502, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(39); + lookahead == ' ') SKIP(48); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(869); + lookahead == 'i') ADVANCE(1028); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(872); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1046); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1049); END_STATE(); - case 51: + case 56: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '+', 1963, - ',', 1469, - '-', 1489, - '.', 1601, - ':', 1463, - '=', 673, - ']', 1466, - '_', 1345, - '|', 1452, + '\n', 1451, + '\r', 9, + '#', 2192, + '$', 1473, + '(', 1564, + ')', 1471, + '+', 1967, + ',', 1472, + '-', 1493, + '.', 1604, + ':', 1466, + '=', 676, + ']', 1469, + '_', 1348, + '|', 1455, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(73); + lookahead == ' ') SKIP(78); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1990); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1376); END_STATE(); - case 52: + case 57: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '+', 1963, - ',', 1469, - '-', 1489, - '.', 1964, - ':', 1463, - '=', 673, - ']', 1466, - '_', 1345, - '|', 1452, + '\n', 1451, + '\r', 9, + '#', 2192, + '$', 1473, + '(', 1564, + ')', 1471, + '+', 1967, + ',', 1472, + '-', 1493, + '.', 1968, + ':', 1466, + '=', 676, + ']', 1469, + '_', 1348, + '|', 1455, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(73); + lookahead == ' ') SKIP(78); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1990); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1376); END_STATE(); - case 53: + case 58: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1599, - ':', 1463, - '=', 673, - 'E', 1335, - 'G', 1343, - 'K', 1343, - 'M', 1343, - 'P', 1343, - 'T', 1343, - ']', 1466, - 'd', 1348, - 'e', 1334, - 'g', 1342, - 'h', 1366, - 'k', 1342, - 'm', 1344, - 'n', 1368, - 'p', 1342, - 's', 1353, - 't', 1342, - 'u', 1368, - 'w', 1354, - '|', 1452, - 0xb5, 1368, + '\n', 1451, + '\r', 9, + '#', 2192, + '$', 1473, + '(', 1564, + ')', 1471, + ',', 1472, + '-', 1491, + '.', 1602, + ':', 1466, + '=', 676, + 'E', 1338, + 'G', 1346, + 'K', 1346, + 'M', 1346, + 'P', 1346, + 'T', 1346, + ']', 1469, + 'd', 1351, + 'e', 1337, + 'g', 1345, + 'h', 1369, + 'k', 1345, + 'm', 1347, + 'n', 1371, + 'p', 1345, + 's', 1356, + 't', 1345, + 'u', 1371, + 'w', 1357, + '|', 1455, + 0xb5, 1371, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(80); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); + lookahead == 'b') ADVANCE(1660); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12570,29 +12703,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1990); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1376); END_STATE(); - case 54: + case 59: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1599, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '\n', 1451, + '\r', 9, + '#', 2192, + '$', 1473, + '(', 1564, + ')', 1471, + ',', 1472, + '-', 1491, + '.', 1602, + ':', 1466, + '=', 676, + ']', 1469, + '|', 1455, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(80); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); + lookahead == 'e') ADVANCE(1339); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12600,49 +12733,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1990); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1376); END_STATE(); - case 55: + case 60: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1961, - ':', 1463, - '=', 673, - 'E', 1335, - 'G', 1343, - 'K', 1343, - 'M', 1343, - 'P', 1343, - 'T', 1343, - ']', 1466, - '_', 1345, - 'd', 1348, - 'e', 1334, - 'g', 1342, - 'h', 1366, - 'k', 1342, - 'm', 1344, - 'n', 1368, - 'p', 1342, - 's', 1353, - 't', 1342, - 'u', 1368, - 'w', 1354, - '|', 1452, - 0xb5, 1368, + '\n', 1451, + '\r', 9, + '#', 2192, + '$', 1473, + '(', 1564, + ')', 1471, + ',', 1472, + '-', 1491, + '.', 1965, + ':', 1466, + '=', 676, + 'E', 1338, + 'G', 1346, + 'K', 1346, + 'M', 1346, + 'P', 1346, + 'T', 1346, + ']', 1469, + '_', 1348, + 'd', 1351, + 'e', 1337, + 'g', 1345, + 'h', 1369, + 'k', 1345, + 'm', 1347, + 'n', 1371, + 'p', 1345, + 's', 1356, + 't', 1345, + 'u', 1371, + 'w', 1357, + '|', 1455, + 0xb5, 1371, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(80); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); + lookahead == 'b') ADVANCE(1660); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12650,49 +12783,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1990); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1376); END_STATE(); - case 56: + case 61: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1961, - ':', 1463, - '=', 673, - 'E', 1335, - 'G', 1343, - 'K', 1343, - 'M', 1343, - 'P', 1343, - 'T', 1343, - ']', 1466, - 'd', 1348, - 'e', 1334, - 'g', 1342, - 'h', 1366, - 'k', 1342, - 'm', 1344, - 'n', 1368, - 'p', 1342, - 's', 1353, - 't', 1342, - 'u', 1368, - 'w', 1354, - '|', 1452, - 0xb5, 1368, + '\n', 1451, + '\r', 9, + '#', 2192, + '$', 1473, + '(', 1564, + ')', 1471, + ',', 1472, + '-', 1491, + '.', 1965, + ':', 1466, + '=', 676, + 'E', 1338, + 'G', 1346, + 'K', 1346, + 'M', 1346, + 'P', 1346, + 'T', 1346, + ']', 1469, + 'd', 1351, + 'e', 1337, + 'g', 1345, + 'h', 1369, + 'k', 1345, + 'm', 1347, + 'n', 1371, + 'p', 1345, + 's', 1356, + 't', 1345, + 'u', 1371, + 'w', 1357, + '|', 1455, + 0xb5, 1371, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(80); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); + lookahead == 'b') ADVANCE(1660); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12700,48 +12833,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1990); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1376); END_STATE(); - case 57: + case 62: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1961, - ':', 1463, - '=', 673, - 'E', 1343, - 'G', 1343, - 'K', 1343, - 'M', 1343, - 'P', 1343, - 'T', 1343, - ']', 1466, - 'd', 1348, - 'e', 1342, - 'g', 1342, - 'h', 1366, - 'k', 1342, - 'm', 1344, - 'n', 1368, - 'p', 1342, - 's', 1353, - 't', 1342, - 'u', 1368, - 'w', 1354, - '|', 1452, - 0xb5, 1368, + '\n', 1451, + '\r', 9, + '#', 2192, + '$', 1473, + '(', 1564, + ')', 1471, + ',', 1472, + '-', 1491, + '.', 1965, + ':', 1466, + '=', 676, + 'E', 1346, + 'G', 1346, + 'K', 1346, + 'M', 1346, + 'P', 1346, + 'T', 1346, + ']', 1469, + 'd', 1351, + 'e', 1345, + 'g', 1345, + 'h', 1369, + 'k', 1345, + 'm', 1347, + 'n', 1371, + 'p', 1345, + 's', 1356, + 't', 1345, + 'u', 1371, + 'w', 1357, + '|', 1455, + 0xb5, 1371, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(80); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); + lookahead == 'b') ADVANCE(1660); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12749,30 +12882,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1990); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1376); END_STATE(); - case 58: + case 63: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1961, - ':', 1463, - '=', 673, - ']', 1466, - '_', 1345, - '|', 1452, + '\n', 1451, + '\r', 9, + '#', 2192, + '$', 1473, + '(', 1564, + ')', 1471, + ',', 1472, + '-', 1491, + '.', 1965, + ':', 1466, + '=', 676, + ']', 1469, + '_', 1348, + '|', 1455, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(80); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); + lookahead == 'e') ADVANCE(1339); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12780,30 +12913,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1990); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1376); END_STATE(); - case 59: + case 64: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1961, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '\n', 1451, + '\r', 9, + '#', 2192, + '$', 1473, + '(', 1564, + ')', 1471, + ',', 1472, + '-', 1491, + '.', 1965, + ':', 1466, + '=', 676, + ']', 1469, + '|', 1455, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(80); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); + lookahead == 'e') ADVANCE(1339); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12811,27 +12944,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1990); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1376); END_STATE(); - case 60: + case 65: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1961, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '\n', 1451, + '\r', 9, + '#', 2192, + '$', 1473, + '(', 1564, + ')', 1471, + ',', 1472, + '-', 1491, + '.', 1965, + ':', 1466, + '=', 676, + ']', 1469, + '|', 1455, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(80); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12839,29 +12972,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1990); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1376); END_STATE(); - case 61: + case 66: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1600, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '\n', 1451, + '\r', 9, + '#', 2192, + '$', 1473, + '(', 1564, + ')', 1471, + ',', 1472, + '-', 1491, + '.', 1603, + ':', 1466, + '=', 676, + ']', 1469, + '|', 1455, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(80); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); + lookahead == 'e') ADVANCE(1339); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12869,30 +13002,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1990); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1376); END_STATE(); - case 62: + case 67: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1965, - ':', 1463, - '=', 673, - ']', 1466, - '_', 1345, - '|', 1452, + '\n', 1451, + '\r', 9, + '#', 2192, + '$', 1473, + '(', 1564, + ')', 1471, + ',', 1472, + '-', 1491, + '.', 1969, + ':', 1466, + '=', 676, + ']', 1469, + '_', 1348, + '|', 1455, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(80); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); + lookahead == 'e') ADVANCE(1339); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12900,30 +13033,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1990); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1376); END_STATE(); - case 63: + case 68: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1965, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '\n', 1451, + '\r', 9, + '#', 2192, + '$', 1473, + '(', 1564, + ')', 1471, + ',', 1472, + '-', 1491, + '.', 1969, + ':', 1466, + '=', 676, + ']', 1469, + '|', 1455, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(80); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1336); + lookahead == 'e') ADVANCE(1339); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12931,27 +13064,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); + lookahead == '^') ADVANCE(1990); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1376); END_STATE(); - case 64: + case 69: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 1965, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '\n', 1451, + '\r', 9, + '#', 2192, + '$', 1473, + '(', 1564, + ')', 1471, + ',', 1472, + '-', 1491, + '.', 1969, + ':', 1466, + '=', 676, + ']', 1469, + '|', 1455, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); + lookahead == ' ') SKIP(80); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12959,3122 +13092,3088 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1986); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1373); - END_STATE(); - case 65: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1604, - ';', 1451, - '_', 1813, - '\t', 1450, - ' ', 1450, - '+', 1791, - '-', 1791, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); - END_STATE(); - case 66: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1604, - '=', 1796, - '_', 1813, - 'i', 1845, - '|', 1452, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(75); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); - END_STATE(); - case 67: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1604, - '=', 1796, - '_', 1813, - '|', 1452, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(76); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); - END_STATE(); - case 68: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1815, - ';', 1451, - '_', 1813, - '\t', 1450, - ' ', 1450, - '+', 1791, - '-', 1791, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); - END_STATE(); - case 69: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1815, - '=', 1796, - '_', 1813, - 'i', 1845, - '|', 1452, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(75); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == '^') ADVANCE(1990); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1376); END_STATE(); case 70: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1815, - '=', 1796, - '_', 1813, - '|', 1452, + '\n', 1451, + '\r', 9, + '#', 2192, + '$', 1473, + '(', 1564, + '.', 1607, + ';', 1454, + '_', 1817, + '\t', 1453, + ' ', 1453, + '+', 1795, + '-', 1795, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(76); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); END_STATE(); case 71: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 312, - ':', 1463, - '=', 673, - '?', 1483, - '[', 1665, - ']', 1466, - '|', 1452, + '\n', 1451, + '\r', 9, + '#', 2192, + '$', 1473, + '(', 1564, + '.', 1607, + '=', 1800, + '_', 1817, + 'i', 1849, + '|', 1455, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(72); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + lookahead == ' ') SKIP(81); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1795); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); END_STATE(); case 72: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 312, - ':', 1463, - '=', 673, - '[', 1465, - ']', 1466, - '|', 1452, + '\n', 1451, + '\r', 9, + '#', 2192, + '$', 1473, + '(', 1564, + '.', 1607, + '=', 1800, + '_', 1817, + '|', 1455, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(72); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + lookahead == ' ') SKIP(82); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1795); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); END_STATE(); case 73: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - ')', 1468, - '+', 314, - ',', 1469, - '-', 1490, - '.', 313, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '\n', 1451, + '\r', 9, + '#', 2192, + '$', 1473, + '(', 1564, + '.', 1819, + ';', 1454, + '_', 1817, + '\t', 1453, + ' ', 1453, + '+', 1795, + '-', 1795, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(73); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); END_STATE(); case 74: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - ')', 1468, - ',', 1469, - '-', 1487, - '.', 312, - ':', 1463, - '=', 673, - ']', 1466, - '|', 1452, + '\n', 1451, + '\r', 9, + '#', 2192, + '$', 1473, + '(', 1564, + '.', 1819, + '=', 1800, + '_', 1817, + 'i', 1849, + '|', 1455, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(74); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + lookahead == ' ') SKIP(81); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1795); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); END_STATE(); case 75: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '.', 337, - '=', 323, - 'i', 386, - '|', 1452, + '\n', 1451, + '\r', 9, + '#', 2192, + '$', 1473, + '(', 1564, + '.', 1819, + '=', 1800, + '_', 1817, + '|', 1455, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(75); + lookahead == ' ') SKIP(82); if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + lookahead == '-') ADVANCE(1795); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); END_STATE(); case 76: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '.') ADVANCE(337); - if (lookahead == '=') ADVANCE(323); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1451, + '\r', 9, + '#', 2192, + '$', 1473, + '(', 1470, + ')', 1471, + ',', 1472, + '-', 1491, + '.', 316, + ':', 1466, + '=', 676, + '[', 1468, + ']', 1469, + '|', 1455, + ); if (lookahead == '\t' || lookahead == ' ') SKIP(76); - if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1376); END_STATE(); case 77: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - '.', 1595, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '\n', 1451, + '\r', 9, + '#', 2192, + '$', 1473, + '(', 1470, + ')', 1471, + ',', 1472, + '-', 1491, + '.', 1969, + ':', 1466, + '=', 676, + '[', 1668, + ']', 1469, + '|', 1455, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(76); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == '<' || + lookahead == '?' || + lookahead == '@' || + lookahead == '^') ADVANCE(1990); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < ':' || '@' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1376); END_STATE(); case 78: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - '.', 1595, - ';', 1451, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, + '\n', 1451, + '\r', 9, + '#', 2192, + '$', 1473, + ')', 1471, + '+', 318, + ',', 1472, + '-', 1494, + '.', 317, + ':', 1466, + '=', 676, + ']', 1469, + '|', 1455, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(78); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1376); END_STATE(); case 79: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - '.', 1790, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '\n', 1451, + '\r', 9, + '#', 2192, + '$', 1473, + ')', 1471, + ',', 1472, + '-', 1491, + '.', 316, + ':', 1466, + '=', 676, + '?', 1487, + ']', 1469, + '|', 1455, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(80); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1376); END_STATE(); case 80: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - '.', 1790, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '\n', 1451, + '\r', 9, + '#', 2192, + '$', 1473, + ')', 1471, + ',', 1472, + '-', 1491, + '.', 316, + ':', 1466, + '=', 676, + ']', 1469, + '|', 1455, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(80); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1376); END_STATE(); case 81: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - '.', 1790, - ';', 1451, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1809, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '\n', 1451, + '\r', 9, + '#', 2192, + '$', 1473, + '.', 340, + '=', 327, + 'i', 388, + '|', 1455, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(81); + if (lookahead == '+' || + lookahead == '-') ADVANCE(318); END_STATE(); case 82: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - '.', 1790, - ';', 1451, - '_', 1813, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '$') ADVANCE(1473); + if (lookahead == '.') ADVANCE(340); + if (lookahead == '=') ADVANCE(327); + if (lookahead == '|') ADVANCE(1455); + if (lookahead == '\t' || + lookahead == ' ') SKIP(82); + if (lookahead == '+' || + lookahead == '-') ADVANCE(318); END_STATE(); case 83: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - '.', 1790, - ';', 1451, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1564, + '.', 1598, + ';', 1454, + 'E', 1811, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + 'd', 1828, + 'e', 1810, + 'g', 1813, + 'h', 1882, + 'k', 1813, + 'm', 1816, + 'n', 1895, + 'p', 1813, + 's', 1843, + 't', 1813, + 'u', 1895, + 'w', 1862, + 0xb5, 1895, + '\t', 1453, + ' ', 1453, + 'B', 1656, + 'b', 1656, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 84: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - '.', 1790, - ';', 1451, - '\t', 1450, - ' ', 1450, + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1564, + '.', 1598, + ';', 1454, + '\t', 1453, + ' ', 1453, + 'E', 1823, + 'e', 1823, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 85: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - '.', 1594, - ';', 1451, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1564, + '.', 1794, + ';', 1454, + 'E', 1811, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + '_', 1817, + 'd', 1828, + 'e', 1810, + 'g', 1813, + 'h', 1882, + 'k', 1813, + 'm', 1816, + 'n', 1895, + 'p', 1813, + 's', 1843, + 't', 1813, + 'u', 1895, + 'w', 1862, + 0xb5, 1895, + '\t', 1453, + ' ', 1453, + 'B', 1656, + 'b', 1656, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 86: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ';', 1451, - '_', 1813, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1564, + '.', 1794, + ';', 1454, + 'E', 1811, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + 'd', 1828, + 'e', 1810, + 'g', 1813, + 'h', 1882, + 'k', 1813, + 'm', 1816, + 'n', 1895, + 'p', 1813, + 's', 1843, + 't', 1813, + 'u', 1895, + 'w', 1862, + 0xb5, 1895, + '\t', 1453, + ' ', 1453, + 'B', 1656, + 'b', 1656, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 87: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ';', 1451, - '\t', 1450, - ' ', 1450, - 'E', 1819, - 'e', 1819, + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1564, + '.', 1794, + ';', 1454, + 'E', 1814, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + 'd', 1828, + 'e', 1813, + 'g', 1813, + 'h', 1882, + 'k', 1813, + 'm', 1816, + 'n', 1895, + 'p', 1813, + 's', 1843, + 't', 1813, + 'u', 1895, + 'w', 1862, + 0xb5, 1895, + '\t', 1453, + ' ', 1453, + 'B', 1656, + 'b', 1656, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 88: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == ';') ADVANCE(1451); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1450); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ADVANCE_MAP( + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1564, + '.', 1794, + ';', 1454, + '_', 1817, + '\t', 1453, + ' ', 1453, + 'E', 1823, + 'e', 1823, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 89: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1467, - ')', 1468, - ',', 1469, - '-', 297, - '.', 1723, - ':', 1463, - ';', 1451, - '=', 673, - '>', 1479, - '@', 1481, - '[', 1465, - ']', 1466, - 'c', 1351, - 'f', 1370, - 'i', 1359, - 'o', 1362, - 'v', 1347, - '{', 1498, - '}', 1499, + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1564, + '.', 1794, + ';', 1454, + '\t', 1453, + ' ', 1453, + 'E', 1823, + 'e', 1823, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(90); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 90: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1467, - ')', 1468, - ',', 1469, - '-', 297, - '.', 1723, - ':', 1463, - ';', 1451, - '=', 673, - '>', 1479, - '[', 1465, - ']', 1466, - 'c', 1351, - 'f', 1370, - 'i', 1359, - 'o', 1362, - 'v', 1347, - '{', 1498, - '}', 1499, + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1564, + '.', 1794, + ';', 1454, + '\t', 1453, + ' ', 1453, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(90); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 91: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1467, - ')', 1468, - '-', 297, - '.', 310, - ':', 1463, - ';', 1451, - '=', 675, - '>', 1479, - '[', 1465, - 'a', 421, - 'e', 288, - 'i', 387, - 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1564, + '.', 1597, + ';', 1454, + '\t', 1453, + ' ', 1453, + 'E', 1823, + 'e', 1823, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(92); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 92: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1467, - ')', 1468, - '-', 297, - ':', 1463, - ';', 1451, - '=', 675, - '>', 1479, - '[', 1465, - 'a', 421, - 'e', 288, - 'i', 387, - 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1564, + ';', 1454, + '_', 1817, + '\t', 1453, + ' ', 1453, + 'E', 1823, + 'e', 1823, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(92); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 93: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - ',', 1469, - ':', 1463, - '=', 673, - ']', 1466, - 'i', 422, + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1564, + ';', 1454, + '\t', 1453, + ' ', 1453, + 'E', 1823, + 'e', 1823, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(93); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1666); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 94: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '.', 1595, - '=', 1796, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'i', 1845, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, - ); + if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '(') ADVANCE(1564); + if (lookahead == ';') ADVANCE(1454); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') ADVANCE(1453); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 95: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '.', 1595, - '=', 1796, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1470, + ')', 1471, + ',', 1472, + '-', 301, + '.', 1727, + ':', 1466, + ';', 1454, + '=', 676, + '>', 1483, + '@', 1485, + '[', 1468, + ']', 1469, + 'c', 1354, + 'f', 1373, + 'i', 1362, + 'o', 1365, + 'v', 1350, + '{', 1502, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(96); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1376); END_STATE(); case 96: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1595); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1470, + ')', 1471, + ',', 1472, + '-', 301, + '.', 1727, + ':', 1466, + ';', 1454, + '=', 676, + '>', 1483, + '[', 1468, + ']', 1469, + 'c', 1354, + 'f', 1373, + 'i', 1362, + 'o', 1365, + 'v', 1350, + '{', 1502, + '}', 1503, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(96); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1376); END_STATE(); case 97: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1595); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1470, + ')', 1471, + '-', 301, + '.', 314, + ':', 1466, + ';', 1454, + '=', 678, + '>', 1483, + '[', 1468, + 'a', 423, + 'e', 292, + 'i', 389, + 'o', 293, + 'x', 433, + '{', 1502, + '|', 1455, + '}', 1503, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(98); END_STATE(); case 98: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'i', 1845, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1470, + ')', 1471, + '-', 301, + ':', 1466, + ';', 1454, + '=', 678, + '>', 1483, + '[', 1468, + 'a', 423, + 'e', 292, + 'i', 389, + 'o', 293, + 'x', 433, + '{', 1502, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(98); END_STATE(); case 99: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, + '\n', 1451, + '\r', 9, + '#', 2192, + ',', 1472, + ':', 1466, + '=', 676, + ']', 1469, + 'i', 424, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(99); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1669); END_STATE(); case 100: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'i', 1845, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, + '\n', 1451, + '\r', 9, + '#', 2192, + '.', 1598, + '=', 1800, + 'E', 1811, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + 'd', 1828, + 'e', 1810, + 'g', 1813, + 'h', 1882, + 'i', 1849, + 'k', 1813, + 'm', 1816, + 'n', 1895, + 'p', 1813, + 's', 1843, + 't', 1813, + 'u', 1895, + 'w', 1862, + '|', 1455, + 0xb5, 1895, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); + lookahead == ' ') SKIP(121); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 101: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, + '\n', 1451, + '\r', 9, + '#', 2192, + '.', 1598, + '=', 1800, + 'E', 1811, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + 'd', 1828, + 'e', 1810, + 'g', 1813, + 'h', 1882, + 'k', 1813, + 'm', 1816, + 'n', 1895, + 'p', 1813, + 's', 1843, + 't', 1813, + 'u', 1895, + 'w', 1862, + '|', 1455, + 0xb5, 1895, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); + lookahead == ' ') SKIP(122); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 102: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1809, - 'g', 1809, - 'h', 1878, - 'i', 1845, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, - ); + if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '.') ADVANCE(1598); + if (lookahead == '=') ADVANCE(1800); + if (lookahead == 'i') ADVANCE(1849); + if (lookahead == '|') ADVANCE(1455); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(121); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1823); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 103: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1809, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - 0xb5, 1891, - ); + if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '.') ADVANCE(1598); + if (lookahead == '=') ADVANCE(1800); + if (lookahead == '|') ADVANCE(1455); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(122); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1823); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 104: ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '.', 1790, - '=', 1796, - '_', 1813, - 'i', 1845, - '|', 1452, + '\n', 1451, + '\r', 9, + '#', 2192, + '.', 1794, + '=', 1800, + 'E', 1811, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + '_', 1817, + 'd', 1828, + 'e', 1810, + 'g', 1813, + 'h', 1882, + 'i', 1849, + 'k', 1813, + 'm', 1816, + 'n', 1895, + 'p', 1813, + 's', 1843, + 't', 1813, + 'u', 1895, + 'w', 1862, + '|', 1455, + 0xb5, 1895, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(121); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 105: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1451, + '\r', 9, + '#', 2192, + '.', 1794, + '=', 1800, + 'E', 1811, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + '_', 1817, + 'd', 1828, + 'e', 1810, + 'g', 1813, + 'h', 1882, + 'k', 1813, + 'm', 1816, + 'n', 1895, + 'p', 1813, + 's', 1843, + 't', 1813, + 'u', 1895, + 'w', 1862, + '|', 1455, + 0xb5, 1895, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(122); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 106: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1451, + '\r', 9, + '#', 2192, + '.', 1794, + '=', 1800, + 'E', 1811, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + 'd', 1828, + 'e', 1810, + 'g', 1813, + 'h', 1882, + 'i', 1849, + 'k', 1813, + 'm', 1816, + 'n', 1895, + 'p', 1813, + 's', 1843, + 't', 1813, + 'u', 1895, + 'w', 1862, + '|', 1455, + 0xb5, 1895, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(121); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 107: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1451, + '\r', 9, + '#', 2192, + '.', 1794, + '=', 1800, + 'E', 1811, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + 'd', 1828, + 'e', 1810, + 'g', 1813, + 'h', 1882, + 'k', 1813, + 'm', 1816, + 'n', 1895, + 'p', 1813, + 's', 1843, + 't', 1813, + 'u', 1895, + 'w', 1862, + '|', 1455, + 0xb5, 1895, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(122); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 108: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1451, + '\r', 9, + '#', 2192, + '.', 1794, + '=', 1800, + 'E', 1814, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + 'd', 1828, + 'e', 1813, + 'g', 1813, + 'h', 1882, + 'i', 1849, + 'k', 1813, + 'm', 1816, + 'n', 1895, + 'p', 1813, + 's', 1843, + 't', 1813, + 'u', 1895, + 'w', 1862, + '|', 1455, + 0xb5, 1895, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(121); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 109: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1451, + '\r', 9, + '#', 2192, + '.', 1794, + '=', 1800, + 'E', 1814, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + 'd', 1828, + 'e', 1813, + 'g', 1813, + 'h', 1882, + 'k', 1813, + 'm', 1816, + 'n', 1895, + 'p', 1813, + 's', 1843, + 't', 1813, + 'u', 1895, + 'w', 1862, + '|', 1455, + 0xb5, 1895, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(122); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 110: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1594); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); + ADVANCE_MAP( + '\n', 1451, + '\r', 9, + '#', 2192, + '.', 1794, + '=', 1800, + '_', 1817, + 'i', 1849, + '|', 1455, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); + lookahead == ' ') SKIP(121); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1823); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 111: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1594); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '.') ADVANCE(1794); + if (lookahead == '=') ADVANCE(1800); + if (lookahead == '_') ADVANCE(1817); + if (lookahead == '|') ADVANCE(1455); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); + lookahead == ' ') SKIP(122); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1823); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 112: - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - ':', 1713, - ';', 1451, - '=', 1729, - 'e', 288, - 'o', 290, - '|', 1452, - '}', 1499, - '\t', 1449, - ' ', 1449, - ); + if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '.') ADVANCE(1794); + if (lookahead == '=') ADVANCE(1800); + if (lookahead == 'i') ADVANCE(1849); + if (lookahead == '|') ADVANCE(1455); + if (lookahead == '\t' || + lookahead == ' ') SKIP(121); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1823); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 113: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == ':') ADVANCE(1713); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '.') ADVANCE(1794); + if (lookahead == '=') ADVANCE(1800); + if (lookahead == 'i') ADVANCE(1849); + if (lookahead == '|') ADVANCE(1455); if (lookahead == '\t' || - lookahead == ' ') SKIP(113); + lookahead == ' ') SKIP(121); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 114: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == ';') ADVANCE(1451); - if (lookahead == '=') ADVANCE(1729); + if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '.') ADVANCE(1794); + if (lookahead == '=') ADVANCE(1800); + if (lookahead == '|') ADVANCE(1455); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1450); - if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1447); + lookahead == ' ') SKIP(122); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1823); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 115: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(323); - if (lookahead == 'i') ADVANCE(386); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '.') ADVANCE(1794); + if (lookahead == '=') ADVANCE(1800); + if (lookahead == '|') ADVANCE(1455); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); + lookahead == ' ') SKIP(122); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 116: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(323); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '.') ADVANCE(1597); + if (lookahead == '=') ADVANCE(1800); + if (lookahead == 'i') ADVANCE(1849); + if (lookahead == '|') ADVANCE(1455); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); + lookahead == ' ') SKIP(121); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1823); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 117: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '.') ADVANCE(1597); + if (lookahead == '=') ADVANCE(1800); + if (lookahead == '|') ADVANCE(1455); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); + lookahead == ' ') SKIP(122); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1823); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 118: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == '|') ADVANCE(1452); - if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ADVANCE_MAP( + '\n', 1451, + '\r', 9, + '#', 2192, + ':', 1716, + ';', 1454, + '=', 1733, + 'e', 292, + 'o', 294, + '|', 1455, + '}', 1503, + '\t', 1452, + ' ', 1452, + ); END_STATE(); case 119: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2192); + if (lookahead == ':') ADVANCE(1716); + if (lookahead == '{') ADVANCE(1502); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(119); END_STATE(); case 120: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == 'i') ADVANCE(1845); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2192); + if (lookahead == ';') ADVANCE(1454); + if (lookahead == '=') ADVANCE(1733); if (lookahead == '\t' || - lookahead == ' ') SKIP(115); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') ADVANCE(1453); + if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1450); END_STATE(); case 121: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '=') ADVANCE(327); + if (lookahead == 'i') ADVANCE(388); + if (lookahead == '|') ADVANCE(1455); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(121); END_STATE(); case 122: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '=') ADVANCE(1796); - if (lookahead == '|') ADVANCE(1452); + if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '=') ADVANCE(327); + if (lookahead == '|') ADVANCE(1455); if (lookahead == '\t' || - lookahead == ' ') SKIP(116); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(122); END_STATE(); case 123: - if (lookahead == '\n') ADVANCE(1448); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(2191); - if (lookahead == ':') ADVANCE(1713); - if (lookahead == '{') ADVANCE(1498); + if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '=') ADVANCE(1800); + if (lookahead == '_') ADVANCE(1817); + if (lookahead == 'i') ADVANCE(1849); + if (lookahead == '|') ADVANCE(1455); if (lookahead == '\t' || - lookahead == ' ') SKIP(113); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + lookahead == ' ') SKIP(121); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1823); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 124: - ADVANCE_MAP( - '\n', 1707, - '\r', 1707, - '!', 1719, - '#', 2188, - '(', 1561, - '*', 1513, - '+', 1578, - '-', 1495, - '.', 1722, - '/', 1568, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 674, - '>', 1480, - '?', 1717, - '@', 1481, - '[', 1465, - ']', 1466, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, - '\t', 1708, - ' ', 1708, - 0x0b, 1707, - '\f', 1707, - ',', 1707, - ); + if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '=') ADVANCE(1800); + if (lookahead == '_') ADVANCE(1817); + if (lookahead == '|') ADVANCE(1455); + if (lookahead == '\t' || + lookahead == ' ') SKIP(122); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1823); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 125: - ADVANCE_MAP( - '!', 1718, - '"', 1685, - '#', 2188, - '$', 181, - '\'', 1688, - '.', 1720, - ';', 1716, - '?', 1717, - '`', 1692, - '\t', 125, - ' ', 125, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(318); + if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '=') ADVANCE(1800); + if (lookahead == 'i') ADVANCE(1849); + if (lookahead == '|') ADVANCE(1455); + if (lookahead == '\t' || + lookahead == ' ') SKIP(121); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1823); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 126: - ADVANCE_MAP( - '!', 1718, - '"', 1685, - '#', 2188, - '$', 181, - '\'', 1688, - '.', 1720, - ';', 1716, - '?', 1717, - '`', 1692, - '\t', 125, - ' ', 125, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(318); - if (lookahead != 0 && - (lookahead < '&' || '.' < lookahead) && - (lookahead < ':' || '@' < lookahead) && - lookahead != '[' && - lookahead != ']' && - lookahead != '^' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1730); + if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '=') ADVANCE(1800); + if (lookahead == 'i') ADVANCE(1849); + if (lookahead == '|') ADVANCE(1455); + if (lookahead == '\t' || + lookahead == ' ') SKIP(121); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 127: - ADVANCE_MAP( - '!', 1718, - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 299, - '.', 1726, - '?', 1717, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - ); + if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '=') ADVANCE(1800); + if (lookahead == '|') ADVANCE(1455); if (lookahead == '\t' || - lookahead == ' ') SKIP(127); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == ' ') SKIP(122); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1823); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 128: - ADVANCE_MAP( - '!', 1718, - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 299, - '.', 1726, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - ); + if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '=') ADVANCE(1800); + if (lookahead == '|') ADVANCE(1455); if (lookahead == '\t' || - lookahead == ' ') SKIP(128); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == ' ') SKIP(122); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 129: - ADVANCE_MAP( - '!', 1718, - '#', 2188, - ',', 1707, - '.', 1723, - ';', 1716, - '?', 1717, - ']', 1466, - '\t', 1710, - ' ', 1710, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1711); + if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '#') ADVANCE(2195); + if (lookahead == ':') ADVANCE(1716); + if (lookahead == '{') ADVANCE(1502); + if (lookahead == '\t' || + lookahead == ' ') SKIP(119); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 130: ADVANCE_MAP( - '!', 1718, - '#', 2188, - '.', 1722, - ':', 1713, - '>', 1479, - '?', 1717, - 'E', 333, - 'G', 333, - 'K', 333, - 'M', 333, - 'P', 333, - 'T', 333, - ']', 1466, - 'd', 346, - 'e', 332, - 'g', 332, - 'h', 451, - 'k', 332, - 'm', 335, - 'n', 469, - 'p', 332, - 's', 376, - 't', 332, - 'u', 469, - 'w', 408, - '}', 1499, - 0xb5, 469, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '\n', 1710, + '\r', 1710, + '!', 1722, + '#', 2192, + '(', 1564, + '*', 1516, + '+', 1581, + '-', 1499, + '.', 1726, + '/', 1571, + ':', 1716, + ';', 1454, + '<', 1553, + '=', 677, + '>', 1484, + '?', 1720, + '[', 1468, + ']', 1469, + 'a', 423, + 'b', 402, + 'e', 289, + 'h', 347, + 'i', 424, + 'l', 401, + 'm', 438, + 'n', 436, + 'o', 283, + 's', 487, + 'x', 433, + '|', 1455, + '}', 1503, + '\t', 1711, + ' ', 1711, + 0x0b, 1710, + '\f', 1710, + ',', 1710, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); END_STATE(); case 131: ADVANCE_MAP( - '!', 1718, - '#', 2188, + '!', 1721, + '"', 1688, + '#', 2192, + '$', 186, + '\'', 1691, '.', 1723, - ':', 1463, - '>', 1479, - '?', 1717, - ']', 1466, - '}', 1499, - '\t', 1712, - ' ', 1712, + ';', 1719, + '?', 1720, + '`', 1695, + '\t', 131, + ' ', 131, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(322); END_STATE(); case 132: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1604, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1721, + '"', 1688, + '#', 2192, + '$', 186, + '\'', 1691, + '.', 1723, + ';', 1719, + '?', 1720, + '`', 1695, + '\t', 131, + ' ', 131, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(146); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(322); + if (lookahead != 0 && + (lookahead < '&' || '.' < lookahead) && + (lookahead < ':' || '@' < lookahead) && + lookahead != '[' && + lookahead != ']' && + lookahead != '^' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1734); END_STATE(); case 133: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1815, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1721, + '"', 1688, + '#', 2192, + '\'', 1691, + '+', 705, + '-', 303, + '.', 1730, + '?', 1720, + 'I', 812, + 'N', 808, + '_', 719, + '`', 1695, + 'a', 757, + 'c', 724, + 'd', 734, + 'e', 762, + 'f', 726, + 'i', 718, + 'l', 742, + 'm', 728, + 'n', 801, + 't', 775, + 'u', 788, + 'w', 754, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(146); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(133); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); END_STATE(); case 134: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1805, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - 0xb5, 1891, + '!', 1721, + '"', 1688, + '#', 2192, + '\'', 1691, + '+', 705, + '-', 303, + '.', 1730, + 'I', 812, + 'N', 808, + '_', 719, + '`', 1695, + 'a', 757, + 'c', 724, + 'd', 734, + 'e', 762, + 'f', 726, + 'i', 718, + 'l', 742, + 'm', 728, + 'n', 801, + 't', 775, + 'u', 788, + 'w', 754, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(134); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); END_STATE(); case 135: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1721, + '#', 2192, + ',', 1710, + '.', 1727, + ';', 1719, + '?', 1720, + ']', 1469, + '\t', 1713, + ' ', 1713, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1714); END_STATE(); case 136: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1805, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - 0xb5, 1891, + '!', 1721, + '#', 2192, + '.', 1726, + ':', 1716, + '?', 1720, + ']', 1469, + '}', 1503, + '\t', 1715, + ' ', 1715, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(1710); END_STATE(); case 137: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1805, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - 0xb5, 1891, + '!', 1721, + '#', 2192, + '.', 1727, + ':', 1716, + '?', 1720, + ']', 1469, + '}', 1503, + '\t', 1715, + ' ', 1715, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(1710); END_STATE(); case 138: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'B', 1653, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1808, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1879, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - 0xb5, 1891, + '!', 1797, + '#', 2192, + '$', 1473, + '(', 1564, + '*', 1515, + '+', 1579, + '-', 1497, + '.', 1607, + '/', 1570, + '<', 1553, + '=', 1798, + '>', 1484, + '_', 1817, + 'a', 1869, + 'b', 1856, + 'e', 1870, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1883, + 's', 1903, + 'x', 1875, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(152); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); END_STATE(); case 139: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1797, + '#', 2192, + '$', 1473, + '(', 1564, + '*', 1515, + '+', 1579, + '-', 1497, + '.', 1819, + '/', 1570, + '<', 1553, + '=', 1798, + '>', 1484, + '_', 1817, + 'a', 1869, + 'b', 1856, + 'e', 1870, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1883, + 's', 1903, + 'x', 1875, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(152); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); END_STATE(); case 140: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1797, + '#', 2192, + '(', 1564, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1598, + '/', 1570, + '<', 1553, + '=', 1798, + '>', 1484, + 'B', 1656, + 'E', 1811, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + 'a', 1869, + 'b', 1659, + 'd', 1828, + 'e', 1809, + 'g', 1813, + 'h', 1826, + 'i', 1867, + 'k', 1813, + 'l', 1855, + 'm', 1815, + 'n', 1876, + 'o', 1883, + 'p', 1813, + 's', 1842, + 't', 1813, + 'u', 1895, + 'w', 1862, + 'x', 1875, + 0xb5, 1895, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(153); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 141: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1797, + '#', 2192, + '(', 1564, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1598, + '/', 1570, + '<', 1553, + '=', 1798, + '>', 1484, + 'E', 1823, + 'a', 1869, + 'b', 1856, + 'e', 1820, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1883, + 's', 1903, + 'x', 1875, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(153); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 142: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1594, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1797, + '#', 2192, + '(', 1564, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1794, + '/', 1570, + '<', 1553, + '=', 1798, + '>', 1484, + 'B', 1656, + 'E', 1811, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + '_', 1817, + 'a', 1869, + 'b', 1659, + 'd', 1828, + 'e', 1809, + 'g', 1813, + 'h', 1826, + 'i', 1867, + 'k', 1813, + 'l', 1855, + 'm', 1815, + 'n', 1876, + 'o', 1883, + 'p', 1813, + 's', 1842, + 't', 1813, + 'u', 1895, + 'w', 1862, + 'x', 1875, + 0xb5, 1895, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(153); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 143: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1797, + '#', 2192, + '(', 1564, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1794, + '/', 1570, + '<', 1553, + '=', 1798, + '>', 1484, + 'B', 1656, + 'E', 1811, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + 'a', 1869, + 'b', 1659, + 'd', 1828, + 'e', 1809, + 'g', 1813, + 'h', 1826, + 'i', 1867, + 'k', 1813, + 'l', 1855, + 'm', 1815, + 'n', 1876, + 'o', 1883, + 'p', 1813, + 's', 1842, + 't', 1813, + 'u', 1895, + 'w', 1862, + 'x', 1875, + 0xb5, 1895, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(153); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 144: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1816, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1797, + '#', 2192, + '(', 1564, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1794, + '/', 1570, + '<', 1553, + '=', 1798, + '>', 1484, + 'B', 1656, + 'E', 1814, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + 'a', 1869, + 'b', 1659, + 'd', 1828, + 'e', 1812, + 'g', 1813, + 'h', 1826, + 'i', 1867, + 'k', 1813, + 'l', 1855, + 'm', 1815, + 'n', 1876, + 'o', 1883, + 'p', 1813, + 's', 1842, + 't', 1813, + 'u', 1895, + 'w', 1862, + 'x', 1875, + 0xb5, 1895, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(153); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 145: ADVANCE_MAP( - '!', 1793, - '#', 2188, - '(', 1561, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 1794, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1866, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1879, - 's', 1899, - 'x', 1871, + '!', 1797, + '#', 2192, + '(', 1564, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1794, + '/', 1570, + '<', 1553, + '=', 1798, + '>', 1484, + 'E', 1823, + '_', 1817, + 'a', 1869, + 'b', 1856, + 'e', 1820, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1883, + 's', 1903, + 'x', 1875, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(153); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 146: ADVANCE_MAP( - '!', 320, - '#', 2188, - '$', 1470, - '*', 1512, - '+', 1577, - '-', 1494, - '.', 337, - '/', 1567, - '<', 1550, - '=', 321, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 425, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 452, - 's', 486, - 'x', 431, + '!', 1797, + '#', 2192, + '(', 1564, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1794, + '/', 1570, + '<', 1553, + '=', 1798, + '>', 1484, + 'E', 1823, + 'a', 1869, + 'b', 1856, + 'e', 1820, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1883, + 's', 1903, + 'x', 1875, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(146); + lookahead == ' ') SKIP(153); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 147: ADVANCE_MAP( - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - '<', 1550, - '=', 321, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 425, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 452, - 's', 486, - 'x', 431, + '!', 1797, + '#', 2192, + '(', 1564, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1794, + '/', 1570, + '<', 1553, + '=', 1798, + '>', 1484, + 'a', 1869, + 'b', 1856, + 'e', 1870, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1883, + 's', 1903, + 'x', 1875, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); + lookahead == ' ') SKIP(153); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 148: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1561, - '+', 2000, - '-', 307, - '.', 1998, - '0', 1624, - ';', 1716, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, - '\t', 151, - ' ', 151, - 'I', 2051, - 'i', 2051, + '!', 1797, + '#', 2192, + '(', 1564, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1597, + '/', 1570, + '<', 1553, + '=', 1798, + '>', 1484, + 'E', 1823, + 'a', 1869, + 'b', 1856, + 'e', 1820, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1883, + 's', 1903, + 'x', 1875, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(318); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + if (lookahead == '\t' || + lookahead == ' ') SKIP(153); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 149: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 1580, - '-', 1491, - '.', 701, - '0', 1628, - ':', 1463, - '<', 1141, - '>', 1479, - '@', 1481, - 'I', 809, - 'N', 805, - ']', 1466, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '}', 1499, - '\t', 1712, - ' ', 1712, + '!', 1797, + '#', 2192, + '(', 1564, + '*', 1515, + '+', 1578, + '-', 1490, + '/', 1570, + '<', 1553, + '=', 1798, + '>', 1484, + 'E', 1823, + '_', 1817, + 'a', 1869, + 'b', 1856, + 'e', 1820, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1883, + 's', 1903, + 'x', 1875, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + if (lookahead == '\t' || + lookahead == ' ') SKIP(153); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 150: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 307, - '.', 1998, - '0', 1624, - ':', 1713, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, + '!', 1797, + '#', 2192, + '(', 1564, + '*', 1515, + '+', 1578, + '-', 1490, + '/', 1570, + '<', 1553, + '=', 1798, + '>', 1484, + 'E', 1823, + 'a', 1869, + 'b', 1856, + 'e', 1820, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1883, + 's', 1903, + 'x', 1875, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(150); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || ';' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + lookahead == ' ') SKIP(153); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 151: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 307, - '.', 1998, - '0', 1624, - ';', 1716, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, - '\t', 151, - ' ', 151, - 'I', 2051, - 'i', 2051, + '!', 1797, + '#', 2192, + '(', 1564, + '*', 1515, + '+', 1578, + '-', 1490, + '/', 1570, + '<', 1553, + '=', 1798, + '>', 1484, + 'a', 1869, + 'b', 1856, + 'e', 1870, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1883, + 's', 1903, + 'x', 1875, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(318); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + if (lookahead == '\t' || + lookahead == ' ') SKIP(153); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 152: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 307, - '.', 1998, - '0', 1624, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, + '!', 324, + '#', 2192, + '$', 1473, + '*', 1515, + '+', 1580, + '-', 1498, + '.', 340, + '/', 1570, + '<', 1553, + '=', 325, + '>', 1484, + 'a', 423, + 'b', 402, + 'e', 427, + 'h', 347, + 'i', 424, + 'l', 401, + 'm', 438, + 'n', 436, + 'o', 453, + 's', 487, + 'x', 433, ); if (lookahead == '\t' || lookahead == ' ') SKIP(152); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); END_STATE(); case 153: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 307, - '.', 1998, - ':', 1713, - 'N', 2047, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, + '!', 324, + '#', 2192, + '*', 1515, + '+', 1578, + '-', 1490, + '/', 1570, + '<', 1553, + '=', 325, + '>', 1484, + 'a', 423, + 'b', 402, + 'e', 427, + 'h', 347, + 'i', 424, + 'l', 401, + 'm', 438, + 'n', 436, + 'o', 453, + 's', 487, + 'x', 433, ); if (lookahead == '\t' || lookahead == ' ') SKIP(153); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + END_STATE(); + case 154: + ADVANCE_MAP( + '"', 1688, + '#', 2192, + '$', 1473, + '\'', 1691, + '(', 1470, + '+', 2004, + ',', 1710, + '-', 311, + '.', 2002, + '0', 1627, + 'N', 2051, + '[', 1468, + '_', 1505, + '`', 1695, + 'f', 2019, + 'n', 2047, + 't', 2034, + '{', 1502, + '}', 1503, + '\t', 1712, + ' ', 1712, + 'I', 2055, + 'i', 2055, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1710); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || ';' < lookahead) && - lookahead != '[' && + lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2074); END_STATE(); - case 154: + case 155: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 307, - '.', 1998, - 'N', 2047, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, + '"', 1688, + '#', 2192, + '$', 1473, + '\'', 1691, + '(', 1470, + '+', 2004, + '-', 311, + '.', 2002, + '0', 1627, + 'N', 2051, + '[', 1468, + '_', 2016, + '`', 1695, + 'f', 2019, + 'n', 2047, + 't', 2034, + '{', 1502, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(154); + lookahead == ' ') SKIP(155); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + lookahead == 'i') ADVANCE(2055); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2074); END_STATE(); - case 155: + case 156: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 2082, - '-', 2081, - '.', 2083, - '0', 1625, - 'N', 2100, - '[', 1465, - ']', 1466, - '_', 2087, - '`', 1692, - 'f', 2090, - 'n', 2099, - 't', 2096, - '{', 1498, - '\t', 1712, - ' ', 1712, - 'I', 2106, - 'i', 2106, + '"', 1688, + '#', 2192, + '$', 1473, + '\'', 1691, + '(', 1470, + '+', 2086, + '-', 2085, + '.', 2084, + '0', 1628, + 'N', 2104, + '[', 1468, + ']', 1469, + '_', 2091, + '`', 1695, + 'f', 2094, + 'n', 2103, + 't', 2100, + '{', 1502, + '\t', 1715, + ' ', 1715, + 'I', 2110, + 'i', 2110, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); + lookahead == ',') ADVANCE(1710); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2128); - END_STATE(); - case 156: - if (lookahead == '"') ADVANCE(1685); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1471); - if (lookahead == '\'') ADVANCE(1688); - if (lookahead == '(') ADVANCE(1467); - if (lookahead == '`') ADVANCE(1692); - if (lookahead == '\t' || - lookahead == ' ') SKIP(156); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2132); END_STATE(); case 157: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1470, - '\'', 1688, - '(', 1467, - '+', 2000, - ',', 1707, - '-', 307, - '.', 1998, - '0', 1624, - 'N', 2047, - '[', 1465, - '_', 1501, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, - '}', 1499, - '\t', 1709, - ' ', 1709, - 'I', 2051, - 'i', 2051, + '"', 1688, + '#', 2192, + '$', 1474, + '\'', 1691, + '(', 1564, + '+', 2004, + '-', 311, + '.', 2002, + '0', 1627, + ';', 1719, + 'N', 2051, + '[', 1468, + '_', 2016, + '`', 1695, + 'f', 2019, + 'n', 2047, + 't', 2034, + '{', 1502, + '\t', 160, + ' ', 160, + 'I', 2055, + 'i', 2055, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1707); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(322); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2074); END_STATE(); case 158: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1470, - '\'', 1688, - '(', 1467, - '+', 2000, - '-', 307, - '.', 1998, - '0', 1624, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'f', 2015, - 'n', 2043, - 't', 2030, - '{', 1498, + '"', 1688, + '#', 2192, + '$', 1474, + '\'', 1691, + '(', 1470, + '+', 1583, + '-', 1495, + '.', 704, + '0', 1631, + '<', 1144, + '>', 1483, + 'I', 812, + 'N', 808, + ']', 1469, + '_', 719, + '`', 1695, + 'a', 757, + 'c', 724, + 'd', 734, + 'e', 762, + 'f', 726, + 'i', 718, + 'l', 742, + 'm', 728, + 'n', 801, + 't', 775, + 'u', 788, + 'w', 754, + '}', 1503, + '\t', 1715, + ' ', 1715, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(158); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2051); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(1710); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1647); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2070); + (lookahead < '0' || '>' < lookahead) && + lookahead != '@' && + lookahead != '[' && + (lookahead < ']' || 'a' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(827); END_STATE(); case 159: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '$', 1470, - '\'', 1688, - '(', 1467, - '+', 2082, - '-', 2081, - '.', 2080, - '0', 1625, - 'N', 2100, - '[', 1465, - ']', 1466, - '_', 2087, - '`', 1692, - 'f', 2090, - 'n', 2099, - 't', 2096, - '{', 1498, - '\t', 1712, - ' ', 1712, - 'I', 2106, - 'i', 2106, + '"', 1688, + '#', 2192, + '$', 1474, + '\'', 1691, + '(', 1470, + '+', 2004, + '-', 311, + '.', 2002, + '0', 1627, + ':', 1716, + 'N', 2051, + '[', 1468, + '_', 2016, + '`', 1695, + 'f', 2019, + 'n', 2047, + 't', 2034, + '{', 1502, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if (lookahead == '\t' || + lookahead == ' ') SKIP(159); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2055); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2128); + (lookahead < '0' || ';' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2074); END_STATE(); case 160: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '(', 1561, - '+', 702, - '-', 307, - '.', 718, - ':', 1463, - '>', 1479, - 'I', 809, - 'N', 805, - ']', 1466, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '}', 1499, - '\t', 1712, - ' ', 1712, + '"', 1688, + '#', 2192, + '$', 1474, + '\'', 1691, + '(', 1470, + '+', 2004, + '-', 311, + '.', 2002, + '0', 1627, + ';', 1719, + 'N', 2051, + '[', 1468, + '_', 2016, + '`', 1695, + 'f', 2019, + 'n', 2047, + 't', 2034, + '{', 1502, + '\t', 160, + ' ', 160, + 'I', 2055, + 'i', 2055, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(322); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2074); END_STATE(); case 161: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 307, - '.', 718, - ':', 1713, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '"', 1688, + '#', 2192, + '$', 1474, + '\'', 1691, + '(', 1470, + '+', 2004, + '-', 311, + '.', 2002, + '0', 1627, + 'N', 2051, + '[', 1468, + '_', 2016, + '`', 1695, + 'f', 2019, + 'n', 2047, + 't', 2034, + '{', 1502, ); if (lookahead == '\t' || lookahead == ' ') SKIP(161); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2055); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2074); END_STATE(); case 162: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 299, - '.', 1726, - '?', 1717, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '"', 1688, + '#', 2192, + '$', 1474, + '\'', 1691, + '(', 1470, + '+', 2004, + '-', 311, + '.', 2002, + ':', 1716, + 'N', 2051, + '_', 2016, + '`', 1695, + 'f', 2019, + 'n', 2047, + 't', 2034, ); if (lookahead == '\t' || lookahead == ' ') SKIP(162); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2055); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || ';' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2074); END_STATE(); case 163: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 299, - '.', 1726, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '"', 1688, + '#', 2192, + '$', 1474, + '\'', 1691, + '(', 1470, + '+', 2004, + '-', 311, + '.', 2002, + 'N', 2051, + '_', 2016, + '`', 1695, + 'f', 2019, + 'n', 2047, + 't', 2034, ); if (lookahead == '\t' || lookahead == ' ') SKIP(163); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2055); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2074); END_STATE(); case 164: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 299, - '.', 718, - ':', 1713, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '"', 1688, + '#', 2192, + '$', 1474, + '\'', 1691, + '(', 1470, + '+', 2086, + '-', 2085, + '.', 2087, + '0', 1628, + 'N', 2104, + '[', 1468, + ']', 1469, + '_', 2091, + '`', 1695, + 'f', 2094, + 'n', 2103, + 't', 2100, + '{', 1502, + '\t', 1715, + ' ', 1715, + 'I', 2110, + 'i', 2110, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(164); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(1710); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2132); END_STATE(); case 165: - ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 299, - '.', 718, - '=', 1729, - 'I', 1443, - 'N', 1438, - '_', 1379, - '`', 1692, - 'a', 1403, - 'c', 1380, - 'd', 1387, - 'e', 1408, - 'f', 1381, - 'i', 1378, - 'l', 1394, - 'm', 1383, - 'n', 1434, - 't', 1417, - 'u', 1423, - 'w', 1400, - ); + if (lookahead == '"') ADVANCE(1688); + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '$') ADVANCE(1474); + if (lookahead == '\'') ADVANCE(1691); + if (lookahead == '(') ADVANCE(1470); + if (lookahead == '`') ADVANCE(1695); if (lookahead == '\t' || - lookahead == ' ') SKIP(166); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1379); - if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1447); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == ' ') SKIP(165); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1991); END_STATE(); case 166: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 299, - '.', 718, - 'I', 809, - 'N', 805, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '"', 1688, + '#', 2192, + '\'', 1691, + '+', 705, + '-', 311, + '.', 721, + ':', 1716, + 'I', 812, + 'N', 808, + '_', 719, + '`', 1695, + 'a', 757, + 'c', 724, + 'd', 734, + 'e', 762, + 'f', 726, + 'i', 718, + 'l', 742, + 'm', 728, + 'n', 801, + 't', 775, + 'u', 788, + 'w', 754, ); if (lookahead == '\t' || lookahead == ' ') SKIP(166); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); END_STATE(); case 167: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 1782, - '.', 1596, - 'E', 709, - 'G', 714, - 'I', 809, - 'K', 714, - 'M', 714, - 'N', 805, - 'P', 714, - 'T', 714, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 722, - 'e', 708, - 'f', 723, - 'g', 713, - 'h', 774, - 'i', 715, - 'k', 713, - 'l', 739, - 'm', 710, - 'n', 782, - 'p', 713, - 's', 740, - 't', 712, - 'u', 784, - 'w', 750, - 0xb5, 783, + '"', 1688, + '#', 2192, + '\'', 1691, + '+', 705, + '-', 311, + '.', 721, + 'I', 812, + 'N', 808, + ']', 1469, + '_', 719, + '`', 1695, + 'a', 757, + 'c', 724, + 'd', 734, + 'e', 762, + 'f', 726, + 'i', 718, + 'l', 742, + 'm', 728, + 'n', 801, + 't', 775, + 'u', 788, + 'w', 754, + '\t', 1715, + ' ', 1715, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(1710); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); + END_STATE(); + case 168: + ADVANCE_MAP( + '"', 1688, + '#', 2192, + '\'', 1691, + '+', 705, + '-', 303, + '.', 1730, + '?', 1720, + 'I', 812, + 'N', 808, + '_', 719, + '`', 1695, + 'a', 757, + 'c', 724, + 'd', 734, + 'e', 762, + 'f', 726, + 'i', 718, + 'l', 742, + 'm', 728, + 'n', 801, + 't', 775, + 'u', 788, + 'w', 754, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(166); + lookahead == ' ') SKIP(168); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); + END_STATE(); + case 169: + ADVANCE_MAP( + '"', 1688, + '#', 2192, + '\'', 1691, + '+', 705, + '-', 303, + '.', 1730, + 'I', 812, + 'N', 808, + '_', 719, + '`', 1695, + 'a', 757, + 'c', 724, + 'd', 734, + 'e', 762, + 'f', 726, + 'i', 718, + 'l', 742, + 'm', 728, + 'n', 801, + 't', 775, + 'u', 788, + 'w', 754, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(169); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); + END_STATE(); + case 170: + ADVANCE_MAP( + '"', 1688, + '#', 2192, + '\'', 1691, + '+', 705, + '-', 303, + '.', 721, + ':', 1716, + 'I', 812, + 'N', 808, + '_', 719, + '`', 1695, + 'a', 757, + 'c', 724, + 'd', 734, + 'e', 762, + 'f', 726, + 'i', 718, + 'l', 742, + 'm', 728, + 'n', 801, + 't', 775, + 'u', 788, + 'w', 754, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(170); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); + END_STATE(); + case 171: + ADVANCE_MAP( + '"', 1688, + '#', 2192, + '\'', 1691, + '+', 705, + '-', 303, + '.', 721, + '=', 1733, + 'I', 1446, + 'N', 1441, + '_', 1382, + '`', 1695, + 'a', 1406, + 'c', 1383, + 'd', 1390, + 'e', 1411, + 'f', 1384, + 'i', 1381, + 'l', 1397, + 'm', 1386, + 'n', 1437, + 't', 1420, + 'u', 1426, + 'w', 1403, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(172); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1382); + if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1450); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); + END_STATE(); + case 172: + ADVANCE_MAP( + '"', 1688, + '#', 2192, + '\'', 1691, + '+', 705, + '-', 303, + '.', 721, + 'I', 812, + 'N', 808, + '_', 719, + '`', 1695, + 'a', 757, + 'c', 724, + 'd', 734, + 'e', 762, + 'f', 726, + 'i', 718, + 'l', 742, + 'm', 728, + 'n', 801, + 't', 775, + 'u', 788, + 'w', 754, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(172); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); + END_STATE(); + case 173: + ADVANCE_MAP( + '"', 1688, + '#', 2192, + '\'', 1691, + '+', 705, + '-', 1786, + '.', 1599, + 'E', 712, + 'G', 717, + 'I', 812, + 'K', 717, + 'M', 717, + 'N', 808, + 'P', 717, + 'T', 717, + '_', 719, + '`', 1695, + 'a', 757, + 'c', 724, + 'd', 725, + 'e', 711, + 'f', 726, + 'g', 716, + 'h', 777, + 'i', 718, + 'k', 716, + 'l', 742, + 'm', 713, + 'n', 785, + 'p', 716, + 's', 743, + 't', 715, + 'u', 787, + 'w', 753, + 0xb5, 786, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(172); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + lookahead == 'b') ADVANCE(1656); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == '^') ADVANCE(1938); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(827); END_STATE(); - case 168: + case 174: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 1782, - '.', 718, - 'I', 809, - 'N', 805, - '[', 1665, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, + '"', 1688, + '#', 2192, + '\'', 1691, + '+', 705, + '-', 1786, + '.', 721, + 'I', 812, + 'N', 808, + '[', 1668, + '_', 719, + '`', 1695, + 'a', 757, + 'c', 724, + 'd', 734, + 'e', 762, + 'f', 726, + 'i', 718, + 'l', 742, + 'm', 728, + 'n', 801, + 't', 775, + 'u', 788, + 'w', 754, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(166); + lookahead == ' ') SKIP(172); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == '^') ADVANCE(1938); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(827); END_STATE(); - case 169: + case 175: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 1782, - '.', 700, - 'E', 709, - 'G', 714, - 'I', 809, - 'K', 714, - 'M', 714, - 'N', 805, - 'P', 714, - 'T', 714, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 722, - 'e', 708, - 'f', 723, - 'g', 713, - 'h', 774, - 'i', 715, - 'k', 713, - 'l', 739, - 'm', 710, - 'n', 782, - 'p', 713, - 's', 740, - 't', 712, - 'u', 784, - 'w', 750, - 0xb5, 783, + '"', 1688, + '#', 2192, + '\'', 1691, + '+', 705, + '-', 1786, + '.', 703, + 'E', 712, + 'G', 717, + 'I', 812, + 'K', 717, + 'M', 717, + 'N', 808, + 'P', 717, + 'T', 717, + '_', 719, + '`', 1695, + 'a', 757, + 'c', 724, + 'd', 725, + 'e', 711, + 'f', 726, + 'g', 716, + 'h', 777, + 'i', 718, + 'k', 716, + 'l', 742, + 'm', 713, + 'n', 785, + 'p', 716, + 's', 743, + 't', 715, + 'u', 787, + 'w', 753, + 0xb5, 786, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(166); + lookahead == ' ') SKIP(172); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + lookahead == 'b') ADVANCE(1656); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == '^') ADVANCE(1938); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(827); END_STATE(); - case 170: + case 176: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 1782, - '.', 700, - 'E', 709, - 'G', 714, - 'I', 809, - 'K', 714, - 'M', 714, - 'N', 805, - 'P', 714, - 'T', 714, - '_', 720, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 722, - 'e', 708, - 'f', 723, - 'g', 713, - 'h', 774, - 'i', 715, - 'k', 713, - 'l', 739, - 'm', 710, - 'n', 782, - 'p', 713, - 's', 740, - 't', 712, - 'u', 784, - 'w', 750, - 0xb5, 783, + '"', 1688, + '#', 2192, + '\'', 1691, + '+', 705, + '-', 1786, + '.', 703, + 'E', 712, + 'G', 717, + 'I', 812, + 'K', 717, + 'M', 717, + 'N', 808, + 'P', 717, + 'T', 717, + '_', 723, + '`', 1695, + 'a', 757, + 'c', 724, + 'd', 725, + 'e', 711, + 'f', 726, + 'g', 716, + 'h', 777, + 'i', 718, + 'k', 716, + 'l', 742, + 'm', 713, + 'n', 785, + 'p', 716, + 's', 743, + 't', 715, + 'u', 787, + 'w', 753, + 0xb5, 786, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(166); + lookahead == ' ') SKIP(172); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + lookahead == 'b') ADVANCE(1656); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == '^') ADVANCE(1938); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(827); END_STATE(); - case 171: + case 177: ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 702, - '-', 1782, - '.', 700, - 'E', 714, - 'G', 714, - 'I', 809, - 'K', 714, - 'M', 714, - 'N', 805, - 'P', 714, - 'T', 714, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 722, - 'e', 711, - 'f', 723, - 'g', 713, - 'h', 774, - 'i', 715, - 'k', 713, - 'l', 739, - 'm', 710, - 'n', 782, - 'p', 713, - 's', 740, - 't', 712, - 'u', 784, - 'w', 750, - 0xb5, 783, + '"', 1688, + '#', 2192, + '\'', 1691, + '+', 705, + '-', 1786, + '.', 703, + 'E', 717, + 'G', 717, + 'I', 812, + 'K', 717, + 'M', 717, + 'N', 808, + 'P', 717, + 'T', 717, + '_', 719, + '`', 1695, + 'a', 757, + 'c', 724, + 'd', 725, + 'e', 714, + 'f', 726, + 'g', 716, + 'h', 777, + 'i', 718, + 'k', 716, + 'l', 742, + 'm', 713, + 'n', 785, + 'p', 716, + 's', 743, + 't', 715, + 'u', 787, + 'w', 753, + 0xb5, 786, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(166); + lookahead == ' ') SKIP(172); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + lookahead == 'b') ADVANCE(1656); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == '^') ADVANCE(1938); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); - END_STATE(); - case 172: - ADVANCE_MAP( - '"', 1685, - '#', 2188, - '\'', 1688, - '+', 2139, - '-', 2138, - '.', 2137, - '>', 1479, - 'N', 2154, - '_', 2141, - '`', 1692, - 'f', 2144, - 'n', 2153, - 't', 2150, - '\t', 1712, - ' ', 1712, - 'I', 2160, - 'i', 2160, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); - if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || ';' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2174); + (lookahead < '{' || '}' < lookahead)) ADVANCE(827); END_STATE(); - case 173: - if (lookahead == '"') ADVANCE(1685); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '\'') ADVANCE(1688); - if (lookahead == '`') ADVANCE(1692); + case 178: + if (lookahead == '"') ADVANCE(1688); + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '\'') ADVANCE(1691); + if (lookahead == '`') ADVANCE(1695); if (lookahead == '\t' || - lookahead == ' ') SKIP(173); + lookahead == ' ') SKIP(178); END_STATE(); - case 174: + case 179: ADVANCE_MAP( - '"', 1685, - '#', 2191, - '$', 1472, - '\'', 1688, - '(', 1467, - '+', 848, - '-', 847, - '.', 849, - '0', 865, - ':', 1713, - 'N', 1020, - '[', 1465, - '_', 866, - '`', 1692, - 'f', 874, - 'n', 1010, - 't', 959, - '{', 1498, + '"', 1688, + '#', 2195, + '$', 1475, + '\'', 1691, + '(', 1470, + '+', 851, + '-', 850, + '.', 852, + '0', 868, + ':', 1716, + 'N', 1023, + '[', 1468, + '_', 869, + '`', 1695, + 'f', 877, + 'n', 1013, + 't', 962, + '{', 1502, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(150); + lookahead == ' ') SKIP(159); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); + lookahead == 'i') ADVANCE(1028); if (lookahead == ',' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2070); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(872); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2074); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(875); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1046); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1049); END_STATE(); - case 175: + case 180: ADVANCE_MAP( - '"', 1685, - '#', 2191, - '$', 1472, - '\'', 1688, - '(', 1467, - '+', 848, - '-', 847, - '.', 849, - '0', 865, - 'N', 1020, - '[', 1465, - '_', 866, - '`', 1692, - 'f', 874, - 'n', 1010, - 't', 959, - '{', 1498, + '"', 1688, + '#', 2195, + '$', 1475, + '\'', 1691, + '(', 1470, + '+', 851, + '-', 850, + '.', 852, + '0', 868, + 'N', 1023, + '[', 1468, + '_', 869, + '`', 1695, + 'f', 877, + 'n', 1013, + 't', 962, + '{', 1502, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(152); + lookahead == ' ') SKIP(161); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); + lookahead == 'i') ADVANCE(1028); if (lookahead == ',' || lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2070); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(872); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2074); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(875); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1046); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1049); END_STATE(); - case 176: + case 181: ADVANCE_MAP( - '"', 1685, - '#', 2191, - '$', 1472, - '\'', 1688, - '(', 1467, - '+', 848, - '-', 847, - '.', 849, - ':', 1713, - 'N', 1020, - '_', 866, - '`', 1692, - 'f', 874, - 'n', 1010, - 't', 959, + '"', 1688, + '#', 2195, + '$', 1475, + '\'', 1691, + '(', 1470, + '+', 851, + '-', 850, + '.', 852, + ':', 1716, + 'N', 1023, + '_', 869, + '`', 1695, + 'f', 877, + 'n', 1013, + 't', 962, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(153); + lookahead == ' ') SKIP(162); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); + lookahead == 'i') ADVANCE(1028); if (lookahead == ',' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2070); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(872); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2074); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(875); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1046); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1049); END_STATE(); - case 177: + case 182: ADVANCE_MAP( - '"', 1685, - '#', 2191, - '$', 1472, - '\'', 1688, - '(', 1467, - '+', 848, - '-', 847, - '.', 849, - 'N', 1020, - '_', 866, - '`', 1692, - 'f', 874, - 'n', 1010, - 't', 959, + '"', 1688, + '#', 2195, + '$', 1475, + '\'', 1691, + '(', 1470, + '+', 851, + '-', 850, + '.', 852, + 'N', 1023, + '_', 869, + '`', 1695, + 'f', 877, + 'n', 1013, + 't', 962, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(154); + lookahead == ' ') SKIP(163); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); + lookahead == 'i') ADVANCE(1028); if (lookahead == ',' || lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2070); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(872); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2074); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(875); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1046); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1049); END_STATE(); - case 178: + case 183: ADVANCE_MAP( - '"', 1685, - '#', 2191, - '\'', 1688, - '+', 848, - '-', 847, - '.', 866, - ':', 1713, - 'I', 1025, - 'N', 1020, - '_', 866, - '`', 1692, - 'a', 932, - 'c', 879, - 'd', 895, - 'e', 935, - 'f', 873, - 'i', 861, - 'l', 905, - 'm', 881, - 'n', 1010, - 't', 964, - 'u', 980, - 'w', 916, + '"', 1688, + '#', 2195, + '\'', 1691, + '+', 851, + '-', 850, + '.', 869, + ':', 1716, + 'I', 1028, + 'N', 1023, + '_', 869, + '`', 1695, + 'a', 935, + 'c', 882, + 'd', 898, + 'e', 938, + 'f', 876, + 'i', 864, + 'l', 908, + 'm', 884, + 'n', 1013, + 't', 967, + 'u', 983, + 'w', 919, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(161); + lookahead == ' ') SKIP(166); if (lookahead == '$' || lookahead == '@' || - lookahead == '^') ADVANCE(1046); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + lookahead == '^') ADVANCE(1049); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); - case 179: + case 184: ADVANCE_MAP( - '"', 1685, - '#', 2191, - '\'', 1688, - '+', 848, - '-', 840, - '.', 866, - ':', 1713, - 'I', 1025, - 'N', 1020, - '_', 866, - '`', 1692, - 'a', 932, - 'c', 879, - 'd', 895, - 'e', 935, - 'f', 873, - 'i', 861, - 'l', 905, - 'm', 881, - 'n', 1010, - 't', 964, - 'u', 980, - 'w', 916, + '"', 1688, + '#', 2195, + '\'', 1691, + '+', 851, + '-', 843, + '.', 869, + ':', 1716, + 'I', 1028, + 'N', 1023, + '_', 869, + '`', 1695, + 'a', 935, + 'c', 882, + 'd', 898, + 'e', 938, + 'f', 876, + 'i', 864, + 'l', 908, + 'm', 884, + 'n', 1013, + 't', 967, + 'u', 983, + 'w', 919, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(164); + lookahead == ' ') SKIP(170); if (lookahead == '$' || lookahead == '@' || - lookahead == '^') ADVANCE(1046); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + lookahead == '^') ADVANCE(1049); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); - case 180: - if (lookahead == '"') ADVANCE(1685); - if (lookahead == '#') ADVANCE(1687); - if (lookahead == '\\') ADVANCE(512); + case 185: + if (lookahead == '"') ADVANCE(1688); + if (lookahead == '#') ADVANCE(1690); + if (lookahead == '\\') ADVANCE(513); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1686); - if (lookahead != 0) ADVANCE(1687); + lookahead == ' ') ADVANCE(1689); + if (lookahead != 0) ADVANCE(1690); END_STATE(); - case 181: - if (lookahead == '"') ADVANCE(1702); - if (lookahead == '\'') ADVANCE(1701); + case 186: + if (lookahead == '"') ADVANCE(1705); + if (lookahead == '\'') ADVANCE(1704); END_STATE(); - case 182: - if (lookahead == '"') ADVANCE(1703); - if (lookahead == '#') ADVANCE(1698); - if (lookahead == '(') ADVANCE(1467); - if (lookahead == '\\') ADVANCE(507); + case 187: + if (lookahead == '"') ADVANCE(1706); + if (lookahead == '#') ADVANCE(1701); + if (lookahead == '(') ADVANCE(1470); + if (lookahead == '\\') ADVANCE(508); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1697); - if (lookahead != 0) ADVANCE(1698); + lookahead == ' ') ADVANCE(1700); + if (lookahead != 0) ADVANCE(1701); END_STATE(); - case 183: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(1604); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == '{') ADVANCE(1498); + case 188: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '$') ADVANCE(1473); + if (lookahead == '(') ADVANCE(1564); + if (lookahead == '.') ADVANCE(1607); + if (lookahead == '_') ADVANCE(1817); + if (lookahead == '{') ADVANCE(1502); if (lookahead == '\t' || - lookahead == ' ') SKIP(192); + lookahead == ' ') SKIP(197); if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == '-') ADVANCE(1795); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); END_STATE(); - case 184: + case 189: ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1603, - ']', 1466, - '_', 1944, - '}', 1499, - '\t', 1712, - ' ', 1712, - '+', 1938, - '-', 1938, + '#', 2192, + '$', 1473, + '(', 1564, + '.', 1605, + ']', 1469, + '_', 1979, + '}', 1503, + '\t', 1715, + ' ', 1715, + '+', 1967, + '-', 1967, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '[' && - lookahead != '_' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + lookahead == ',') ADVANCE(1710); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1990); END_STATE(); - case 185: + case 190: ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1972, - '_', 1975, - '}', 1499, - '\t', 1712, - ' ', 1712, - '+', 1963, - '-', 1963, + '#', 2192, + '$', 1473, + '(', 1564, + '.', 1976, + '_', 1979, + '}', 1503, + '\t', 1715, + ' ', 1715, + '+', 1967, + '-', 1967, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1710); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1990); END_STATE(); - case 186: + case 191: ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1945, - ']', 1466, - '_', 1944, - '\t', 1712, - ' ', 1712, - '+', 1938, - '-', 1938, + '#', 2192, + '$', 1473, + '(', 1564, + '.', 1949, + ']', 1469, + '_', 1948, + '\t', 1715, + ' ', 1715, + '+', 1942, + '-', 1942, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1710); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -16082,24 +16181,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); END_STATE(); - case 187: + case 192: ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1936, - ']', 1466, - '_', 1944, - '\t', 1712, - ' ', 1712, - '+', 1938, - '-', 1938, + '#', 2192, + '$', 1473, + '(', 1564, + '.', 1940, + ']', 1469, + '_', 1948, + '\t', 1715, + ' ', 1715, + '+', 1942, + '-', 1942, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1710); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -16107,136 +16206,143 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); END_STATE(); - case 188: + case 193: ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1602, - '_', 1975, - '}', 1499, - '\t', 1712, - ' ', 1712, - '+', 1963, - '-', 1963, + '#', 2192, + '$', 1473, + '(', 1564, + '.', 1606, + ']', 1469, + '_', 1948, + '\t', 1715, + ' ', 1715, + '+', 1942, + '-', 1942, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1710); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if (lookahead != 0 && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != '_' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); END_STATE(); - case 189: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(1815); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == '{') ADVANCE(1498); + case 194: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '$') ADVANCE(1473); + if (lookahead == '(') ADVANCE(1564); + if (lookahead == '.') ADVANCE(1819); + if (lookahead == '_') ADVANCE(1817); + if (lookahead == '{') ADVANCE(1502); if (lookahead == '\t' || - lookahead == ' ') SKIP(192); + lookahead == ' ') SKIP(197); if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == '-') ADVANCE(1795); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); END_STATE(); - case 190: + case 195: ADVANCE_MAP( - '#', 2188, - '$', 1470, - '(', 1561, - '.', 1598, - '[', 1665, - ']', 1466, - '_', 1944, - '}', 1499, - '\t', 1712, - ' ', 1712, - '+', 1938, - '-', 1938, + '#', 2192, + '$', 1473, + '(', 1564, + '.', 1601, + '[', 1668, + ']', 1469, + '_', 1948, + '}', 1503, + '\t', 1715, + ' ', 1715, + '+', 1942, + '-', 1942, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1710); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); END_STATE(); - case 191: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '.') ADVANCE(337); - if (lookahead == ']') ADVANCE(1466); + case 196: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '$') ADVANCE(1473); + if (lookahead == '.') ADVANCE(340); + if (lookahead == ']') ADVANCE(1469); if (lookahead == '\t' || - lookahead == ' ') SKIP(191); + lookahead == ' ') SKIP(196); if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + lookahead == '-') ADVANCE(318); END_STATE(); - case 192: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '.') ADVANCE(337); - if (lookahead == '{') ADVANCE(1498); + case 197: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '$') ADVANCE(1473); + if (lookahead == '.') ADVANCE(340); + if (lookahead == '{') ADVANCE(1502); if (lookahead == '\t' || - lookahead == ' ') SKIP(192); + lookahead == ' ') SKIP(197); if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + lookahead == '-') ADVANCE(318); END_STATE(); - case 193: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '.') ADVANCE(337); + case 198: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '$') ADVANCE(1473); + if (lookahead == '.') ADVANCE(340); if (lookahead == '\t' || - lookahead == ' ') SKIP(193); + lookahead == ' ') SKIP(198); if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + lookahead == '-') ADVANCE(318); END_STATE(); - case 194: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == ':') ADVANCE(1713); + case 199: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '$') ADVANCE(1473); + if (lookahead == ':') ADVANCE(1716); if (lookahead == '\t' || - lookahead == ' ') SKIP(194); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + lookahead == ' ') SKIP(199); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1376); END_STATE(); - case 195: + case 200: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1595, - 'E', 1940, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - 'd', 1949, - 'e', 1939, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - '}', 1499, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2192, + '(', 1564, + '.', 1598, + 'E', 1944, + 'G', 1946, + 'K', 1946, + 'M', 1946, + 'P', 1946, + 'T', 1946, + ']', 1469, + 'd', 1953, + 'e', 1943, + 'g', 1945, + 'h', 1959, + 'k', 1945, + 'm', 1947, + 'n', 1960, + 'p', 1945, + 's', 1956, + 't', 1945, + 'u', 1960, + 'w', 1957, + '}', 1503, + 0xb5, 1960, + '\t', 1715, + ' ', 1715, + 'B', 1656, + 'b', 1656, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1710); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16244,40 +16350,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); END_STATE(); - case 196: + case 201: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1595, - 'E', 1940, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - 'd', 1949, - 'e', 1939, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2192, + '(', 1564, + '.', 1598, + 'E', 1944, + 'G', 1946, + 'K', 1946, + 'M', 1946, + 'P', 1946, + 'T', 1946, + ']', 1469, + 'd', 1953, + 'e', 1943, + 'g', 1945, + 'h', 1959, + 'k', 1945, + 'm', 1947, + 'n', 1960, + 'p', 1945, + 's', 1956, + 't', 1945, + 'u', 1960, + 'w', 1957, + 0xb5, 1960, + '\t', 1715, + ' ', 1715, + 'B', 1656, + 'b', 1656, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1710); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16285,56 +16391,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); END_STATE(); - case 197: + case 202: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1595, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - '}', 1499, - 0xb5, 1983, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2192, + '(', 1564, + '.', 1598, + 'E', 1971, + 'G', 1973, + 'K', 1973, + 'M', 1973, + 'P', 1973, + 'T', 1973, + 'd', 1980, + 'e', 1970, + 'g', 1972, + 'h', 1986, + 'k', 1972, + 'm', 1974, + 'n', 1987, + 'p', 1972, + 's', 1983, + 't', 1972, + 'u', 1987, + 'w', 1984, + '}', 1503, + 0xb5, 1987, + '\t', 1715, + ' ', 1715, + 'B', 1656, + 'b', 1656, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1710); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); - case 198: + case 203: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1595, - ']', 1466, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2192, + '(', 1564, + '.', 1598, + ']', 1469, + '}', 1503, + '\t', 1715, + ' ', 1715, + 'E', 1951, + 'e', 1951, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1710); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16342,21 +16448,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); END_STATE(); - case 199: + case 204: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1595, - ']', 1466, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2192, + '(', 1564, + '.', 1598, + ']', 1469, + '\t', 1715, + ' ', 1715, + 'E', 1951, + 'e', 1951, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1710); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16364,37 +16470,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); END_STATE(); - case 200: + case 205: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1595, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1973, - 'e', 1973, + '#', 2192, + '(', 1564, + '.', 1598, + '}', 1503, + '\t', 1715, + ' ', 1715, + 'E', 1977, + 'e', 1977, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1710); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); - case 201: + case 206: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1594, - ']', 1466, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2192, + '(', 1564, + '.', 1597, + ']', 1469, + '}', 1503, + '\t', 1715, + ' ', 1715, + 'E', 1951, + 'e', 1951, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1710); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16402,102 +16508,58 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); - END_STATE(); - case 202: - ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1594, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1973, - 'e', 1973, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); END_STATE(); - case 203: + case 207: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - 'E', 1940, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - '_', 1944, - 'd', 1949, - 'e', 1939, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - '}', 1499, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2192, + '(', 1564, + '.', 1597, + '}', 1503, + '\t', 1715, + ' ', 1715, + 'E', 1977, + 'e', 1977, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '#' && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '[' && - lookahead != '_' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + lookahead == ',') ADVANCE(1710); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); - case 204: + case 208: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - 'E', 1940, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - '_', 1944, - 'd', 1949, - 'e', 1939, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2192, + '(', 1564, + '.', 1939, + 'E', 1944, + 'G', 1946, + 'K', 1946, + 'M', 1946, + 'P', 1946, + 'T', 1946, + ']', 1469, + '_', 1948, + 'd', 1953, + 'e', 1943, + 'g', 1945, + 'h', 1959, + 'k', 1945, + 'm', 1947, + 'n', 1960, + 'p', 1945, + 's', 1956, + 't', 1945, + 'u', 1960, + 'w', 1957, + '}', 1503, + 0xb5, 1960, + '\t', 1715, + ' ', 1715, + 'B', 1656, + 'b', 1656, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1710); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16506,41 +16568,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); END_STATE(); - case 205: + case 209: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - 'E', 1940, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - 'd', 1949, - 'e', 1939, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - '}', 1499, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2192, + '(', 1564, + '.', 1939, + 'E', 1944, + 'G', 1946, + 'K', 1946, + 'M', 1946, + 'P', 1946, + 'T', 1946, + ']', 1469, + 'd', 1953, + 'e', 1943, + 'g', 1945, + 'h', 1959, + 'k', 1945, + 'm', 1947, + 'n', 1960, + 'p', 1945, + 's', 1956, + 't', 1945, + 'u', 1960, + 'w', 1957, + '}', 1503, + 0xb5, 1960, + '\t', 1715, + ' ', 1715, + 'B', 1656, + 'b', 1656, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1710); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16548,40 +16610,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); END_STATE(); - case 206: + case 210: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - 'E', 1940, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - 'd', 1949, - 'e', 1939, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2192, + '(', 1564, + '.', 1939, + 'E', 1944, + 'G', 1946, + 'K', 1946, + 'M', 1946, + 'P', 1946, + 'T', 1946, + ']', 1469, + 'd', 1953, + 'e', 1943, + 'g', 1945, + 'h', 1959, + 'k', 1945, + 'm', 1947, + 'n', 1960, + 'p', 1945, + 's', 1956, + 't', 1945, + 'u', 1960, + 'w', 1957, + 0xb5, 1960, + '\t', 1715, + ' ', 1715, + 'B', 1656, + 'b', 1656, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1710); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16589,41 +16651,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); END_STATE(); - case 207: + case 211: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - 'E', 1942, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - 'd', 1949, - 'e', 1941, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - '}', 1499, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2192, + '(', 1564, + '.', 1939, + 'E', 1946, + 'G', 1946, + 'K', 1946, + 'M', 1946, + 'P', 1946, + 'T', 1946, + ']', 1469, + 'd', 1953, + 'e', 1945, + 'g', 1945, + 'h', 1959, + 'k', 1945, + 'm', 1947, + 'n', 1960, + 'p', 1945, + 's', 1956, + 't', 1945, + 'u', 1960, + 'w', 1957, + '}', 1503, + 0xb5, 1960, + '\t', 1715, + ' ', 1715, + 'B', 1656, + 'b', 1656, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1710); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16631,40 +16693,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); END_STATE(); - case 208: + case 212: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - 'E', 1942, - 'G', 1942, - 'K', 1942, - 'M', 1942, - 'P', 1942, - 'T', 1942, - ']', 1466, - 'd', 1949, - 'e', 1941, - 'g', 1941, - 'h', 1955, - 'k', 1941, - 'm', 1943, - 'n', 1956, - 'p', 1941, - 's', 1952, - 't', 1941, - 'u', 1956, - 'w', 1953, - 0xb5, 1956, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2192, + '(', 1564, + '.', 1939, + 'E', 1946, + 'G', 1946, + 'K', 1946, + 'M', 1946, + 'P', 1946, + 'T', 1946, + ']', 1469, + 'd', 1953, + 'e', 1945, + 'g', 1945, + 'h', 1959, + 'k', 1945, + 'm', 1947, + 'n', 1960, + 'p', 1945, + 's', 1956, + 't', 1945, + 'u', 1960, + 'w', 1957, + 0xb5, 1960, + '\t', 1715, + ' ', 1715, + 'B', 1656, + 'b', 1656, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1710); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16672,24 +16734,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); END_STATE(); - case 209: + case 213: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - ']', 1466, - '_', 1944, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2192, + '(', 1564, + '.', 1939, + ']', 1469, + '_', 1948, + '}', 1503, + '\t', 1715, + ' ', 1715, + 'E', 1951, + 'e', 1951, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1710); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16698,23 +16760,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); END_STATE(); - case 210: + case 214: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - ']', 1466, - '_', 1944, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2192, + '(', 1564, + '.', 1939, + ']', 1469, + '_', 1948, + '\t', 1715, + ' ', 1715, + 'E', 1951, + 'e', 1951, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1710); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16723,22 +16785,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); END_STATE(); - case 211: + case 215: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - ']', 1466, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2192, + '(', 1564, + '.', 1939, + ']', 1469, + '}', 1503, + '\t', 1715, + ' ', 1715, + 'E', 1951, + 'e', 1951, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1710); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16746,18 +16808,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); END_STATE(); - case 212: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(1935); - if (lookahead == ']') ADVANCE(1466); - if (lookahead == '}') ADVANCE(1499); + case 216: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '(') ADVANCE(1564); + if (lookahead == '.') ADVANCE(1939); + if (lookahead == ']') ADVANCE(1469); + if (lookahead == '}') ADVANCE(1503); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1715); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1710); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16765,21 +16827,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); END_STATE(); - case 213: + case 217: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1935, - ']', 1466, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2192, + '(', 1564, + '.', 1939, + ']', 1469, + '\t', 1715, + ' ', 1715, + 'E', 1951, + 'e', 1951, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1710); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16787,17 +16849,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); END_STATE(); - case 214: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(1935); - if (lookahead == ']') ADVANCE(1466); + case 218: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '(') ADVANCE(1564); + if (lookahead == '.') ADVANCE(1939); + if (lookahead == ']') ADVANCE(1469); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1715); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1710); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16805,23 +16867,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); END_STATE(); - case 215: + case 219: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1937, - ']', 1466, - '_', 1944, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2192, + '(', 1564, + '.', 1941, + ']', 1469, + '_', 1948, + '\t', 1715, + ' ', 1715, + 'E', 1951, + 'e', 1951, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1710); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16830,21 +16892,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); END_STATE(); - case 216: + case 220: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1937, - ']', 1466, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2192, + '(', 1564, + '.', 1941, + ']', 1469, + '\t', 1715, + ' ', 1715, + 'E', 1951, + 'e', 1951, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1710); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16852,17 +16914,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); END_STATE(); - case 217: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(1937); - if (lookahead == ']') ADVANCE(1466); + case 221: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '(') ADVANCE(1564); + if (lookahead == '.') ADVANCE(1941); + if (lookahead == ']') ADVANCE(1469); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1715); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1710); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16870,21 +16932,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); END_STATE(); - case 218: + case 222: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1597, - ']', 1466, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2192, + '(', 1564, + '.', 1600, + ']', 1469, + '\t', 1715, + ' ', 1715, + 'E', 1951, + 'e', 1951, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1710); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16892,169 +16954,169 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); END_STATE(); - case 219: + case 223: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1960, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - '_', 1975, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - '}', 1499, - 0xb5, 1983, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2192, + '(', 1564, + '.', 1964, + 'E', 1971, + 'G', 1973, + 'K', 1973, + 'M', 1973, + 'P', 1973, + 'T', 1973, + '_', 1979, + 'd', 1980, + 'e', 1970, + 'g', 1972, + 'h', 1986, + 'k', 1972, + 'm', 1974, + 'n', 1987, + 'p', 1972, + 's', 1983, + 't', 1972, + 'u', 1987, + 'w', 1984, + '}', 1503, + 0xb5, 1987, + '\t', 1715, + ' ', 1715, + 'B', 1656, + 'b', 1656, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1710); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); - case 220: + case 224: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1960, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - '}', 1499, - 0xb5, 1983, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2192, + '(', 1564, + '.', 1964, + 'E', 1971, + 'G', 1973, + 'K', 1973, + 'M', 1973, + 'P', 1973, + 'T', 1973, + 'd', 1980, + 'e', 1970, + 'g', 1972, + 'h', 1986, + 'k', 1972, + 'm', 1974, + 'n', 1987, + 'p', 1972, + 's', 1983, + 't', 1972, + 'u', 1987, + 'w', 1984, + '}', 1503, + 0xb5, 1987, + '\t', 1715, + ' ', 1715, + 'B', 1656, + 'b', 1656, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1710); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); - case 221: + case 225: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1960, - 'E', 1969, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1976, - 'e', 1968, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - '}', 1499, - 0xb5, 1983, - '\t', 1712, - ' ', 1712, - 'B', 1653, - 'b', 1653, + '#', 2192, + '(', 1564, + '.', 1964, + 'E', 1973, + 'G', 1973, + 'K', 1973, + 'M', 1973, + 'P', 1973, + 'T', 1973, + 'd', 1980, + 'e', 1972, + 'g', 1972, + 'h', 1986, + 'k', 1972, + 'm', 1974, + 'n', 1987, + 'p', 1972, + 's', 1983, + 't', 1972, + 'u', 1987, + 'w', 1984, + '}', 1503, + 0xb5, 1987, + '\t', 1715, + ' ', 1715, + 'B', 1656, + 'b', 1656, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1710); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); - case 222: + case 226: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1960, - '_', 1975, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1973, - 'e', 1973, + '#', 2192, + '(', 1564, + '.', 1964, + '_', 1979, + '}', 1503, + '\t', 1715, + ' ', 1715, + 'E', 1977, + 'e', 1977, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1710); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); - case 223: + case 227: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '.', 1960, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1973, - 'e', 1973, + '#', 2192, + '(', 1564, + '.', 1964, + '}', 1503, + '\t', 1715, + ' ', 1715, + 'E', 1977, + 'e', 1977, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1710); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); - case 224: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(1960); - if (lookahead == '}') ADVANCE(1499); + case 228: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '(') ADVANCE(1564); + if (lookahead == '.') ADVANCE(1964); + if (lookahead == '}') ADVANCE(1503); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1715); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1710); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); - case 225: + case 229: ADVANCE_MAP( - '#', 2188, - '(', 1561, - ']', 1466, - '_', 1944, - '\t', 1712, - ' ', 1712, - 'E', 1947, - 'e', 1947, + '#', 2192, + '(', 1564, + ']', 1469, + '_', 1948, + '\t', 1715, + ' ', 1715, + 'E', 1951, + 'e', 1951, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ',') ADVANCE(1710); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17063,17 +17125,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); END_STATE(); - case 226: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == ']') ADVANCE(1466); - if (lookahead == '}') ADVANCE(1499); + case 230: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '(') ADVANCE(1564); + if (lookahead == ']') ADVANCE(1469); + if (lookahead == '}') ADVANCE(1503); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1715); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1710); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17081,18 +17143,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); END_STATE(); - case 227: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == ']') ADVANCE(1466); + case 231: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '(') ADVANCE(1564); + if (lookahead == ']') ADVANCE(1469); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1715); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1947); + lookahead == 'e') ADVANCE(1951); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1710); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17100,668 +17162,668 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1959); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); END_STATE(); - case 228: + case 232: ADVANCE_MAP( - '#', 2188, - '(', 1561, - '_', 1975, - '}', 1499, - '\t', 1712, - ' ', 1712, - 'E', 1973, - 'e', 1973, + '#', 2192, + '(', 1564, + '_', 1979, + '}', 1503, + '\t', 1715, + ' ', 1715, + 'E', 1977, + 'e', 1977, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1710); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); - case 229: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '{') ADVANCE(1498); + case 233: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '(') ADVANCE(1564); + if (lookahead == '{') ADVANCE(1502); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(274); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); - case 230: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '}') ADVANCE(1499); + case 234: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '(') ADVANCE(1564); + if (lookahead == '}') ADVANCE(1503); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1715); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); + lookahead == 'e') ADVANCE(1977); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1710); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); - case 231: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '}') ADVANCE(1499); + case 235: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '(') ADVANCE(1564); + if (lookahead == '}') ADVANCE(1503); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1715); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ',') ADVANCE(1710); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); - case 232: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); + case 236: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '(') ADVANCE(1564); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ' ') SKIP(276); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); - case 233: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1561); + case 237: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '(') ADVANCE(1564); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + lookahead == ' ') SKIP(276); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); END_STATE(); - case 234: + case 238: ADVANCE_MAP( - '#', 2188, - '(', 1467, - '-', 1783, - '.', 1595, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '[', 1465, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, + '#', 2192, + '(', 1470, + '-', 1787, + '.', 1598, + 'E', 1811, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + '[', 1468, + 'd', 1828, + 'e', 1810, + 'g', 1813, + 'h', 1882, + 'k', 1813, + 'm', 1816, + 'n', 1895, + 'p', 1813, + 's', 1843, + 't', 1813, + 'u', 1895, + 'w', 1862, + 0xb5, 1895, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(240); + lookahead == ' ') SKIP(244); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); - case 235: + case 239: ADVANCE_MAP( - '#', 2188, - '(', 1467, - '-', 1783, - '.', 1790, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '[', 1465, - '_', 1813, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, + '#', 2192, + '(', 1470, + '-', 1787, + '.', 1794, + 'E', 1811, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + '[', 1468, + '_', 1817, + 'd', 1828, + 'e', 1810, + 'g', 1813, + 'h', 1882, + 'k', 1813, + 'm', 1816, + 'n', 1895, + 'p', 1813, + 's', 1843, + 't', 1813, + 'u', 1895, + 'w', 1862, + 0xb5, 1895, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(240); + lookahead == ' ') SKIP(244); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1656); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); - case 236: + case 240: ADVANCE_MAP( - '#', 2188, - '(', 1467, - '-', 1783, - '.', 1790, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '[', 1465, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, + '#', 2192, + '(', 1470, + '-', 1787, + '.', 1794, + 'E', 1811, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + '[', 1468, + 'd', 1828, + 'e', 1810, + 'g', 1813, + 'h', 1882, + 'k', 1813, + 'm', 1816, + 'n', 1895, + 'p', 1813, + 's', 1843, + 't', 1813, + 'u', 1895, + 'w', 1862, + 0xb5, 1895, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(240); + lookahead == ' ') SKIP(244); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); - case 237: + case 241: ADVANCE_MAP( - '#', 2188, - '(', 1467, - '-', 1783, - '.', 1790, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '[', 1465, - 'd', 1824, - 'e', 1809, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 0xb5, 1891, + '#', 2192, + '(', 1470, + '-', 1787, + '.', 1794, + 'E', 1814, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + '[', 1468, + 'd', 1828, + 'e', 1813, + 'g', 1813, + 'h', 1882, + 'k', 1813, + 'm', 1816, + 'n', 1895, + 'p', 1813, + 's', 1843, + 't', 1813, + 'u', 1895, + 'w', 1862, + 0xb5, 1895, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(240); + lookahead == ' ') SKIP(244); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); - case 238: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1467); - if (lookahead == '-') ADVANCE(1783); - if (lookahead == '[') ADVANCE(1465); + case 242: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '(') ADVANCE(1470); + if (lookahead == '-') ADVANCE(1787); + if (lookahead == '[') ADVANCE(1468); if (lookahead == '\t' || - lookahead == ' ') SKIP(240); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(244); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); - case 239: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1467); - if (lookahead == '-') ADVANCE(297); - if (lookahead == '=') ADVANCE(1729); - if (lookahead == '[') ADVANCE(1465); + case 243: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '(') ADVANCE(1470); + if (lookahead == '-') ADVANCE(301); + if (lookahead == '=') ADVANCE(1733); + if (lookahead == '[') ADVANCE(1468); if (lookahead == '\t' || - lookahead == ' ') SKIP(240); - if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1447); + lookahead == ' ') SKIP(244); + if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1450); END_STATE(); - case 240: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '(') ADVANCE(1467); - if (lookahead == '-') ADVANCE(297); - if (lookahead == '[') ADVANCE(1465); + case 244: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '(') ADVANCE(1470); + if (lookahead == '-') ADVANCE(301); + if (lookahead == '[') ADVANCE(1468); if (lookahead == '\t' || - lookahead == ' ') SKIP(240); + lookahead == ' ') SKIP(244); END_STATE(); - case 241: + case 245: ADVANCE_MAP( - '#', 2188, - '.', 1595, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '{', 1498, - 0xb5, 1891, + '#', 2192, + '.', 1598, + 'E', 1811, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + 'd', 1828, + 'e', 1810, + 'g', 1813, + 'h', 1882, + 'k', 1813, + 'm', 1816, + 'n', 1895, + 'p', 1813, + 's', 1843, + 't', 1813, + 'u', 1895, + 'w', 1862, + '{', 1502, + 0xb5, 1895, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(274); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); - case 242: + case 246: ADVANCE_MAP( - '#', 2188, - '.', 1595, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - 0xb5, 1983, + '#', 2192, + '.', 1598, + 'E', 1971, + 'G', 1973, + 'K', 1973, + 'M', 1973, + 'P', 1973, + 'T', 1973, + 'd', 1980, + 'e', 1970, + 'g', 1972, + 'h', 1986, + 'k', 1972, + 'm', 1974, + 'n', 1987, + 'p', 1972, + 's', 1983, + 't', 1972, + 'u', 1987, + 'w', 1984, + 0xb5, 1987, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(276); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); - case 243: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1595); - if (lookahead == '{') ADVANCE(1498); + case 247: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '.') ADVANCE(1598); + if (lookahead == '{') ADVANCE(1502); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(274); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1823); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); - case 244: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1595); + case 248: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '.') ADVANCE(1598); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(276); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'e') ADVANCE(1977); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); - case 245: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1720); - if (lookahead == 'i') ADVANCE(1361); + case 249: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '.') ADVANCE(1723); + if (lookahead == 'i') ADVANCE(1364); if (lookahead == '\t' || - lookahead == ' ') SKIP(245); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1373); + lookahead == ' ') SKIP(249); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1376); END_STATE(); - case 246: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1604); - if (lookahead == '_') ADVANCE(1813); + case 250: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '.') ADVANCE(1607); + if (lookahead == '_') ADVANCE(1817); if (lookahead == '\t' || - lookahead == ' ') SKIP(255); + lookahead == ' ') SKIP(259); if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '-') ADVANCE(1795); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); - case 247: + case 251: ADVANCE_MAP( - '#', 2188, - '.', 1790, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '{', 1498, - 0xb5, 1891, + '#', 2192, + '.', 1794, + 'E', 1811, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + '_', 1817, + 'd', 1828, + 'e', 1810, + 'g', 1813, + 'h', 1882, + 'k', 1813, + 'm', 1816, + 'n', 1895, + 'p', 1813, + 's', 1843, + 't', 1813, + 'u', 1895, + 'w', 1862, + '{', 1502, + 0xb5, 1895, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(274); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1656); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); - case 248: + case 252: ADVANCE_MAP( - '#', 2188, - '.', 1790, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1806, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '{', 1498, - 0xb5, 1891, + '#', 2192, + '.', 1794, + 'E', 1811, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + 'd', 1828, + 'e', 1810, + 'g', 1813, + 'h', 1882, + 'k', 1813, + 'm', 1816, + 'n', 1895, + 'p', 1813, + 's', 1843, + 't', 1813, + 'u', 1895, + 'w', 1862, + '{', 1502, + 0xb5, 1895, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(274); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); - case 249: + case 253: ADVANCE_MAP( - '#', 2188, - '.', 1790, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1809, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '{', 1498, - 0xb5, 1891, + '#', 2192, + '.', 1794, + 'E', 1814, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + 'd', 1828, + 'e', 1813, + 'g', 1813, + 'h', 1882, + 'k', 1813, + 'm', 1816, + 'n', 1895, + 'p', 1813, + 's', 1843, + 't', 1813, + 'u', 1895, + 'w', 1862, + '{', 1502, + 0xb5, 1895, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(274); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); - case 250: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == '{') ADVANCE(1498); + case 254: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '.') ADVANCE(1794); + if (lookahead == '_') ADVANCE(1817); + if (lookahead == '{') ADVANCE(1502); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(274); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1823); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); - case 251: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '{') ADVANCE(1498); + case 255: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '.') ADVANCE(1794); + if (lookahead == '{') ADVANCE(1502); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(274); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1823); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); - case 252: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1790); - if (lookahead == '{') ADVANCE(1498); + case 256: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '.') ADVANCE(1794); + if (lookahead == '{') ADVANCE(1502); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(274); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); - case 253: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1594); - if (lookahead == '{') ADVANCE(1498); + case 257: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '.') ADVANCE(1597); + if (lookahead == '{') ADVANCE(1502); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(274); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1823); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); - case 254: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1594); + case 258: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '.') ADVANCE(1597); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(276); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'e') ADVANCE(1977); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); - case 255: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(337); + case 259: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '.') ADVANCE(340); if (lookahead == '\t' || - lookahead == ' ') SKIP(255); + lookahead == ' ') SKIP(259); if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + lookahead == '-') ADVANCE(318); END_STATE(); - case 256: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1972); - if (lookahead == '_') ADVANCE(1975); + case 260: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '.') ADVANCE(1605); + if (lookahead == '_') ADVANCE(1979); if (lookahead == '\t' || - lookahead == ' ') SKIP(255); + lookahead == ' ') SKIP(259); if (lookahead == '+' || - lookahead == '-') ADVANCE(1963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == '-') ADVANCE(1967); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); - case 257: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1602); - if (lookahead == '_') ADVANCE(1975); + case 261: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '.') ADVANCE(1976); + if (lookahead == '_') ADVANCE(1979); if (lookahead == '\t' || - lookahead == ' ') SKIP(255); + lookahead == ' ') SKIP(259); if (lookahead == '+' || - lookahead == '-') ADVANCE(1963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == '-') ADVANCE(1967); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); - case 258: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1815); - if (lookahead == '_') ADVANCE(1813); + case 262: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '.') ADVANCE(1819); + if (lookahead == '_') ADVANCE(1817); if (lookahead == '\t' || - lookahead == ' ') SKIP(255); + lookahead == ' ') SKIP(259); if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == '-') ADVANCE(1795); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); - case 259: + case 263: ADVANCE_MAP( - '#', 2188, - '.', 1960, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - '_', 1975, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - 0xb5, 1983, + '#', 2192, + '.', 1964, + 'E', 1971, + 'G', 1973, + 'K', 1973, + 'M', 1973, + 'P', 1973, + 'T', 1973, + '_', 1979, + 'd', 1980, + 'e', 1970, + 'g', 1972, + 'h', 1986, + 'k', 1972, + 'm', 1974, + 'n', 1987, + 'p', 1972, + 's', 1983, + 't', 1972, + 'u', 1987, + 'w', 1984, + 0xb5, 1987, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(276); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'b') ADVANCE(1656); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); - case 260: + case 264: ADVANCE_MAP( - '#', 2188, - '.', 1960, - 'E', 1967, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1976, - 'e', 1966, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - 0xb5, 1983, + '#', 2192, + '.', 1964, + 'E', 1971, + 'G', 1973, + 'K', 1973, + 'M', 1973, + 'P', 1973, + 'T', 1973, + 'd', 1980, + 'e', 1970, + 'g', 1972, + 'h', 1986, + 'k', 1972, + 'm', 1974, + 'n', 1987, + 'p', 1972, + 's', 1983, + 't', 1972, + 'u', 1987, + 'w', 1984, + 0xb5, 1987, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(276); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); - case 261: + case 265: ADVANCE_MAP( - '#', 2188, - '.', 1960, - 'E', 1969, - 'G', 1969, - 'K', 1969, - 'M', 1969, - 'P', 1969, - 'T', 1969, - 'd', 1976, - 'e', 1968, - 'g', 1968, - 'h', 1982, - 'k', 1968, - 'm', 1970, - 'n', 1983, - 'p', 1968, - 's', 1979, - 't', 1968, - 'u', 1983, - 'w', 1980, - 0xb5, 1983, + '#', 2192, + '.', 1964, + 'E', 1973, + 'G', 1973, + 'K', 1973, + 'M', 1973, + 'P', 1973, + 'T', 1973, + 'd', 1980, + 'e', 1972, + 'g', 1972, + 'h', 1986, + 'k', 1972, + 'm', 1974, + 'n', 1987, + 'p', 1972, + 's', 1983, + 't', 1972, + 'u', 1987, + 'w', 1984, + 0xb5, 1987, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(276); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); - case 262: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1960); - if (lookahead == '_') ADVANCE(1975); + case 266: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '.') ADVANCE(1964); + if (lookahead == '_') ADVANCE(1979); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(276); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'e') ADVANCE(1977); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); - case 263: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1960); + case 267: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '.') ADVANCE(1964); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(276); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'e') ADVANCE(1977); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); - case 264: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(1960); + case 268: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '.') ADVANCE(1964); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == ' ') SKIP(276); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); - case 265: + case 269: ADVANCE_MAP( - '#', 2188, - ':', 1713, - 'a', 413, - 'c', 439, - 'd', 374, - 'e', 518, - 'm', 437, - 'u', 475, + '#', 2192, + ':', 1716, + 'a', 415, + 'c', 441, + 'd', 377, + 'e', 519, + 'm', 439, + 'u', 476, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(265); + lookahead == ' ') SKIP(269); END_STATE(); - case 266: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == ':') ADVANCE(1713); + case 270: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == ':') ADVANCE(1716); if (lookahead == '\t' || - lookahead == ' ') SKIP(266); + lookahead == ' ') SKIP(270); END_STATE(); - case 267: + case 271: ADVANCE_MAP( - '#', 2188, - '>', 1479, - '[', 1465, - ']', 1466, - 'c', 1351, - 'f', 1370, - 'i', 1359, - 'o', 1362, - 'v', 1347, - '\t', 1712, - ' ', 1712, + '#', 2192, + '>', 1483, + '[', 1468, + ']', 1469, + 'c', 1354, + 'f', 1373, + 'i', 1362, + 'o', 1365, + 'v', 1350, + '\t', 1715, + ' ', 1715, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1710); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && @@ -17769,75 +17831,75 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '^' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1373); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1376); END_STATE(); - case 268: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '_') ADVANCE(1813); - if (lookahead == '{') ADVANCE(1498); + case 272: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '_') ADVANCE(1817); + if (lookahead == '{') ADVANCE(1502); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(274); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1823); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); - case 269: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '_') ADVANCE(1975); + case 273: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '_') ADVANCE(1979); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(276); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'e') ADVANCE(1977); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); - case 270: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '{') ADVANCE(1498); + case 274: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '{') ADVANCE(1502); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(274); END_STATE(); - case 271: - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '{') ADVANCE(1498); + case 275: + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '{') ADVANCE(1502); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); + lookahead == ' ') SKIP(274); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1819); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'e') ADVANCE(1823); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); - case 272: - if (lookahead == '#') ADVANCE(2188); + case 276: + if (lookahead == '#') ADVANCE(2192); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(276); END_STATE(); - case 273: - if (lookahead == '#') ADVANCE(2188); + case 277: + if (lookahead == '#') ADVANCE(2192); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(276); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1973); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'e') ADVANCE(1977); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); - case 274: - if (lookahead == '#') ADVANCE(2188); + case 278: + if (lookahead == '#') ADVANCE(2192); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1461); + lookahead == ' ') SKIP(276); + if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1464); END_STATE(); - case 275: - if (lookahead == '#') ADVANCE(2188); + case 279: + if (lookahead == '#') ADVANCE(2192); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if (set_contains(sym_param_short_flag_identifier_character_set_1, 770, lookahead)) ADVANCE(1497); + lookahead == ' ') SKIP(276); + if (set_contains(sym_param_short_flag_identifier_character_set_1, 770, lookahead)) ADVANCE(1501); END_STATE(); - case 276: - if (lookahead == '#') ADVANCE(2191); - if (lookahead == '$') ADVANCE(1473); - if (lookahead == ':') ADVANCE(1713); + case 280: + if (lookahead == '#') ADVANCE(2195); + if (lookahead == '$') ADVANCE(1476); + if (lookahead == ':') ADVANCE(1716); if (lookahead == '\t' || - lookahead == ' ') SKIP(194); + lookahead == ' ') SKIP(199); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -17846,14529 +17908,14622 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '.' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1046); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1030); + lookahead == '^') ADVANCE(1049); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1033); END_STATE(); - case 277: + case 281: ADVANCE_MAP( - '#', 2191, - ':', 1713, - 'a', 932, - 'c', 951, - 'd', 895, - 'e', 1019, - 'm', 952, - 'u', 980, + '#', 2195, + ':', 1716, + 'a', 935, + 'c', 954, + 'd', 898, + 'e', 1022, + 'm', 955, + 'u', 983, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(265); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); - END_STATE(); - case 278: - if (lookahead == '#') ADVANCE(1700); - if (lookahead == '\'') ADVANCE(1691); - if (lookahead == '(') ADVANCE(1467); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1699); - if (lookahead != 0) ADVANCE(1700); - END_STATE(); - case 279: - if (lookahead == '+') ADVANCE(378); - if (lookahead == '>') ADVANCE(1739); - if (lookahead == 'r') ADVANCE(1531); - if (lookahead == 'u') ADVANCE(488); - END_STATE(); - case 280: - if (lookahead == '+') ADVANCE(339); - if (lookahead == '-') ADVANCE(341); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == '_') ADVANCE(341); - if (lookahead == 'l') ADVANCE(473); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'r') ADVANCE(453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - END_STATE(); - case 281: - if (lookahead == '+') ADVANCE(379); - if (lookahead == '>') ADVANCE(1735); + lookahead == ' ') SKIP(269); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 282: - ADVANCE_MAP( - '+', 430, - '>', 1737, - 'I', 534, - 'i', 534, - 'n', 364, - 'r', 453, - 'B', 1653, - 'b', 1653, - ); + if (lookahead == '#') ADVANCE(1703); + if (lookahead == '\'') ADVANCE(1694); + if (lookahead == '(') ADVANCE(1470); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1702); + if (lookahead != 0) ADVANCE(1703); END_STATE(); case 283: - if (lookahead == '+') ADVANCE(430); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'l') ADVANCE(473); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'r') ADVANCE(453); + if (lookahead == '+') ADVANCE(380); + if (lookahead == '>') ADVANCE(1743); + if (lookahead == 'r') ADVANCE(1534); + if (lookahead == 'u') ADVANCE(489); END_STATE(); case 284: - if (lookahead == '+') ADVANCE(430); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'l') ADVANCE(473); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'r') ADVANCE(453); - if (lookahead == 'x') ADVANCE(445); + if (lookahead == '+') ADVANCE(342); + if (lookahead == '-') ADVANCE(344); + if (lookahead == '>') ADVANCE(1741); + if (lookahead == '_') ADVANCE(344); + if (lookahead == 'l') ADVANCE(474); + if (lookahead == 'n') ADVANCE(367); + if (lookahead == 'r') ADVANCE(454); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); END_STATE(); case 285: - if (lookahead == '+') ADVANCE(430); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'r') ADVANCE(453); + if (lookahead == '+') ADVANCE(381); + if (lookahead == '>') ADVANCE(1739); END_STATE(); case 286: - if (lookahead == '+') ADVANCE(429); - if (lookahead == '>') ADVANCE(1733); + ADVANCE_MAP( + '+', 432, + '>', 1741, + 'I', 535, + 'i', 535, + 'n', 367, + 'r', 454, + 'B', 1656, + 'b', 1656, + ); END_STATE(); case 287: - if (lookahead == '+') ADVANCE(438); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'r') ADVANCE(458); + if (lookahead == '+') ADVANCE(432); + if (lookahead == '>') ADVANCE(1741); + if (lookahead == 'l') ADVANCE(474); + if (lookahead == 'n') ADVANCE(367); + if (lookahead == 'r') ADVANCE(454); END_STATE(); case 288: - if (lookahead == '+') ADVANCE(438); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'r') ADVANCE(458); + if (lookahead == '+') ADVANCE(432); + if (lookahead == '>') ADVANCE(1741); + if (lookahead == 'l') ADVANCE(474); + if (lookahead == 'n') ADVANCE(367); + if (lookahead == 'r') ADVANCE(454); + if (lookahead == 'x') ADVANCE(447); END_STATE(); case 289: - if (lookahead == '+') ADVANCE(380); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'r') ADVANCE(1531); - if (lookahead == 'u') ADVANCE(493); + if (lookahead == '+') ADVANCE(432); + if (lookahead == '>') ADVANCE(1741); + if (lookahead == 'n') ADVANCE(367); + if (lookahead == 'r') ADVANCE(454); END_STATE(); case 290: - if (lookahead == '+') ADVANCE(380); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'u') ADVANCE(493); + if (lookahead == '+') ADVANCE(431); + if (lookahead == '>') ADVANCE(1737); END_STATE(); case 291: - if (lookahead == '+') ADVANCE(443); - if (lookahead == '>') ADVANCE(526); + if (lookahead == '+') ADVANCE(440); + if (lookahead == '>') ADVANCE(524); + if (lookahead == 'n') ADVANCE(367); + if (lookahead == 'r') ADVANCE(459); END_STATE(); case 292: - if (lookahead == '+') ADVANCE(384); - if (lookahead == '>') ADVANCE(528); + if (lookahead == '+') ADVANCE(440); + if (lookahead == '>') ADVANCE(524); + if (lookahead == 'r') ADVANCE(459); END_STATE(); case 293: - if (lookahead == '-') ADVANCE(355); + if (lookahead == '+') ADVANCE(382); + if (lookahead == '>') ADVANCE(525); + if (lookahead == 'r') ADVANCE(1534); + if (lookahead == 'u') ADVANCE(494); END_STATE(); case 294: - if (lookahead == '-') ADVANCE(385); + if (lookahead == '+') ADVANCE(382); + if (lookahead == '>') ADVANCE(525); + if (lookahead == 'u') ADVANCE(494); END_STATE(); case 295: - if (lookahead == '-') ADVANCE(385); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); + if (lookahead == '+') ADVANCE(445); + if (lookahead == '>') ADVANCE(527); END_STATE(); case 296: - if (lookahead == '-') ADVANCE(513); + if (lookahead == '+') ADVANCE(386); + if (lookahead == '>') ADVANCE(529); END_STATE(); case 297: - if (lookahead == '-') ADVANCE(1484); + if (lookahead == '-') ADVANCE(358); END_STATE(); case 298: - if (lookahead == '-') ADVANCE(1484); - if (lookahead == '.') ADVANCE(336); - if (lookahead == '>') ADVANCE(1464); - if (lookahead == '_') ADVANCE(308); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if (lookahead == '-') ADVANCE(387); END_STATE(); case 299: - if (lookahead == '-') ADVANCE(1484); - if (lookahead == '.') ADVANCE(336); - if (lookahead == '_') ADVANCE(308); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if (lookahead == '-') ADVANCE(387); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1563); END_STATE(); case 300: - if (lookahead == '-') ADVANCE(433); + if (lookahead == '-') ADVANCE(514); END_STATE(); case 301: - if (lookahead == '-') ADVANCE(490); + if (lookahead == '-') ADVANCE(1488); END_STATE(); case 302: - if (lookahead == '-') ADVANCE(560); + if (lookahead == '-') ADVANCE(1488); + if (lookahead == '.') ADVANCE(339); + if (lookahead == '>') ADVANCE(1467); + if (lookahead == '_') ADVANCE(312); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(540); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); END_STATE(); case 303: - if (lookahead == '-') ADVANCE(514); + if (lookahead == '-') ADVANCE(1488); + if (lookahead == '.') ADVANCE(339); + if (lookahead == '_') ADVANCE(312); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(540); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); END_STATE(); case 304: - if (lookahead == '-') ADVANCE(515); + if (lookahead == '-') ADVANCE(435); END_STATE(); case 305: - if (lookahead == '-') ADVANCE(450); + if (lookahead == '-') ADVANCE(491); END_STATE(); case 306: - if (lookahead == '-') ADVANCE(516); + if (lookahead == '-') ADVANCE(561); END_STATE(); case 307: - if (lookahead == '.') ADVANCE(336); - if (lookahead == '_') ADVANCE(308); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if (lookahead == '-') ADVANCE(515); END_STATE(); case 308: - if (lookahead == '.') ADVANCE(336); - if (lookahead == '_') ADVANCE(308); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if (lookahead == '-') ADVANCE(516); END_STATE(); case 309: - if (lookahead == '.') ADVANCE(1507); - if (lookahead == '_') ADVANCE(343); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if (lookahead == '-') ADVANCE(452); END_STATE(); case 310: - if (lookahead == '.') ADVANCE(1593); + if (lookahead == '-') ADVANCE(517); END_STATE(); case 311: - if (lookahead == '.') ADVANCE(1482); + if (lookahead == '.') ADVANCE(339); + if (lookahead == '_') ADVANCE(312); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(540); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); END_STATE(); case 312: - if (lookahead == '.') ADVANCE(311); + if (lookahead == '.') ADVANCE(339); + if (lookahead == '_') ADVANCE(312); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); END_STATE(); case 313: - if (lookahead == '.') ADVANCE(311); - if (lookahead == '_') ADVANCE(337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if (lookahead == '.') ADVANCE(1511); + if (lookahead == '_') ADVANCE(346); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); END_STATE(); case 314: - if (lookahead == '.') ADVANCE(338); - if (lookahead == '_') ADVANCE(314); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if (lookahead == '.') ADVANCE(1596); END_STATE(); case 315: - if (lookahead == '2') ADVANCE(548); - if (lookahead == '0' || - lookahead == '1') ADVANCE(554); + if (lookahead == '.') ADVANCE(1486); END_STATE(); case 316: - if (lookahead == ':') ADVANCE(555); + if (lookahead == '.') ADVANCE(315); END_STATE(); case 317: - if (lookahead == ':') ADVANCE(556); + if (lookahead == '.') ADVANCE(315); + if (lookahead == '_') ADVANCE(340); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); END_STATE(); case 318: - if (lookahead == ';') ADVANCE(1716); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(318); + if (lookahead == '.') ADVANCE(341); + if (lookahead == '_') ADVANCE(318); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); END_STATE(); case 319: - if (lookahead == '=') ADVANCE(1139); - if (lookahead == '~') ADVANCE(1121); + if (lookahead == '2') ADVANCE(549); + if (lookahead == '0' || + lookahead == '1') ADVANCE(555); END_STATE(); case 320: - if (lookahead == '=') ADVANCE(1548); - if (lookahead == '~') ADVANCE(1554); + if (lookahead == ':') ADVANCE(556); END_STATE(); case 321: - if (lookahead == '=') ADVANCE(1547); - if (lookahead == '>') ADVANCE(1500); - if (lookahead == '~') ADVANCE(1553); + if (lookahead == ':') ADVANCE(557); END_STATE(); case 322: - if (lookahead == '=') ADVANCE(1547); - if (lookahead == '~') ADVANCE(1553); + if (lookahead == ';') ADVANCE(1719); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(322); END_STATE(); case 323: - if (lookahead == '>') ADVANCE(1500); + if (lookahead == '=') ADVANCE(1142); + if (lookahead == '~') ADVANCE(1124); END_STATE(); case 324: - if (lookahead == '>') ADVANCE(1747); + if (lookahead == '=') ADVANCE(1551); + if (lookahead == '~') ADVANCE(1557); END_STATE(); case 325: - if (lookahead == '>') ADVANCE(1745); + if (lookahead == '=') ADVANCE(1550); + if (lookahead == '>') ADVANCE(1504); + if (lookahead == '~') ADVANCE(1556); END_STATE(); case 326: - if (lookahead == '>') ADVANCE(1741); + if (lookahead == '=') ADVANCE(1550); + if (lookahead == '~') ADVANCE(1556); END_STATE(); case 327: - if (lookahead == '>') ADVANCE(1743); + if (lookahead == '>') ADVANCE(1504); END_STATE(); case 328: - if (lookahead == '>') ADVANCE(525); + if (lookahead == '>') ADVANCE(1751); END_STATE(); case 329: - if (lookahead == '>') ADVANCE(527); + if (lookahead == '>') ADVANCE(1749); END_STATE(); case 330: - if (lookahead == '>') ADVANCE(529); + if (lookahead == '>') ADVANCE(1745); END_STATE(); case 331: - if (lookahead == '>') ADVANCE(530); + if (lookahead == '>') ADVANCE(1747); END_STATE(); case 332: - if (lookahead == 'I') ADVANCE(534); - if (lookahead == 'i') ADVANCE(534); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + if (lookahead == '>') ADVANCE(526); END_STATE(); case 333: - if (lookahead == 'I') ADVANCE(534); - if (lookahead == 'i') ADVANCE(357); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + if (lookahead == '>') ADVANCE(528); END_STATE(); case 334: - if (lookahead == 'I') ADVANCE(534); - if (lookahead == 'i') ADVANCE(420); - if (lookahead == 'o') ADVANCE(362); - if (lookahead == 's') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + if (lookahead == '>') ADVANCE(530); END_STATE(); case 335: - if (lookahead == 'I') ADVANCE(534); - if (lookahead == 'i') ADVANCE(420); - if (lookahead == 's') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + if (lookahead == '>') ADVANCE(531); END_STATE(); case 336: - if (lookahead == '_') ADVANCE(336); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if (lookahead == 'I') ADVANCE(535); + if (lookahead == 'i') ADVANCE(535); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); END_STATE(); case 337: - if (lookahead == '_') ADVANCE(337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if (lookahead == 'I') ADVANCE(535); + if (lookahead == 'i') ADVANCE(360); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); END_STATE(); case 338: - if (lookahead == '_') ADVANCE(338); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if (lookahead == 'I') ADVANCE(535); + if (lookahead == 'i') ADVANCE(422); + if (lookahead == 'o') ADVANCE(365); + if (lookahead == 's') ADVANCE(1661); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); END_STATE(); case 339: - if (lookahead == '_') ADVANCE(341); - if (lookahead == 'o') ADVANCE(324); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if (lookahead == '_') ADVANCE(339); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); END_STATE(); case 340: - if (lookahead == '_') ADVANCE(341); - if (lookahead == '+' || - lookahead == '-') ADVANCE(341); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if (lookahead == '_') ADVANCE(340); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); END_STATE(); case 341: if (lookahead == '_') ADVANCE(341); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); END_STATE(); case 342: - if (lookahead == '_') ADVANCE(342); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (lookahead == '_') ADVANCE(344); + if (lookahead == 'o') ADVANCE(328); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); END_STATE(); case 343: - if (lookahead == '_') ADVANCE(343); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if (lookahead == '_') ADVANCE(344); + if (lookahead == '+' || + lookahead == '-') ADVANCE(344); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); END_STATE(); case 344: - if (lookahead == 'a') ADVANCE(470); + if (lookahead == '_') ADVANCE(344); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); END_STATE(); case 345: - if (lookahead == 'a') ADVANCE(470); - if (lookahead == 'r') ADVANCE(1658); + if (lookahead == '_') ADVANCE(345); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); END_STATE(); case 346: - if (lookahead == 'a') ADVANCE(519); + if (lookahead == '_') ADVANCE(346); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); END_STATE(); case 347: - if (lookahead == 'a') ADVANCE(418); + if (lookahead == 'a') ADVANCE(471); END_STATE(); case 348: - if (lookahead == 'a') ADVANCE(462); + if (lookahead == 'a') ADVANCE(471); + if (lookahead == 'r') ADVANCE(1661); END_STATE(); case 349: - if (lookahead == 'a') ADVANCE(471); + if (lookahead == 'a') ADVANCE(520); END_STATE(); case 350: - if (lookahead == 'a') ADVANCE(468); + if (lookahead == 'a') ADVANCE(420); END_STATE(); case 351: - if (lookahead == 'a') ADVANCE(482); + if (lookahead == 'a') ADVANCE(463); END_STATE(); case 352: - if (lookahead == 'a') ADVANCE(499); + if (lookahead == 'a') ADVANCE(472); END_STATE(); case 353: - if (lookahead == 'a') ADVANCE(501); + if (lookahead == 'a') ADVANCE(469); END_STATE(); case 354: - if (lookahead == 'a') ADVANCE(500); + if (lookahead == 'a') ADVANCE(483); END_STATE(); case 355: - if (lookahead == 'a') ADVANCE(426); - if (lookahead == 'o') ADVANCE(455); - if (lookahead == 's') ADVANCE(391); - if (lookahead == 'x') ADVANCE(440); + if (lookahead == 'a') ADVANCE(500); END_STATE(); case 356: - if (lookahead == 'a') ADVANCE(467); + if (lookahead == 'a') ADVANCE(502); END_STATE(); case 357: - if (lookahead == 'b') ADVANCE(1653); + if (lookahead == 'a') ADVANCE(501); END_STATE(); case 358: - if (lookahead == 'c') ADVANCE(1658); + if (lookahead == 'a') ADVANCE(428); + if (lookahead == 'o') ADVANCE(456); + if (lookahead == 's') ADVANCE(393); + if (lookahead == 'x') ADVANCE(442); END_STATE(); case 359: - if (lookahead == 'c') ADVANCE(390); + if (lookahead == 'a') ADVANCE(468); END_STATE(); case 360: - if (lookahead == 'c') ADVANCE(383); + if (lookahead == 'b') ADVANCE(1656); END_STATE(); case 361: - if (lookahead == 'd') ADVANCE(1527); + if (lookahead == 'c') ADVANCE(1661); END_STATE(); case 362: - if (lookahead == 'd') ADVANCE(1571); + if (lookahead == 'c') ADVANCE(392); END_STATE(); case 363: - if (lookahead == 'd') ADVANCE(1585); + if (lookahead == 'c') ADVANCE(385); END_STATE(); case 364: - if (lookahead == 'd') ADVANCE(472); + if (lookahead == 'd') ADVANCE(1530); END_STATE(); case 365: - if (lookahead == 'd') ADVANCE(509); + if (lookahead == 'd') ADVANCE(1574); END_STATE(); case 366: - if (lookahead == 'd') ADVANCE(478); + if (lookahead == 'd') ADVANCE(1588); END_STATE(); case 367: - if (lookahead == 'e') ADVANCE(1047); + if (lookahead == 'd') ADVANCE(473); END_STATE(); case 368: - if (lookahead == 'e') ADVANCE(1071); + if (lookahead == 'd') ADVANCE(510); END_STATE(); case 369: - if (lookahead == 'e') ADVANCE(1089); + if (lookahead == 'd') ADVANCE(479); END_STATE(); case 370: - if (lookahead == 'e') ADVANCE(1092); + if (lookahead == 'e') ADVANCE(1050); END_STATE(); case 371: - if (lookahead == 'e') ADVANCE(1056); + if (lookahead == 'e') ADVANCE(1074); END_STATE(); case 372: - if (lookahead == 'e') ADVANCE(1556); + if (lookahead == 'e') ADVANCE(1092); END_STATE(); case 373: - if (lookahead == 'e') ADVANCE(1558); + if (lookahead == 'e') ADVANCE(1095); END_STATE(); case 374: - if (lookahead == 'e') ADVANCE(388); + if (lookahead == 'e') ADVANCE(1059); END_STATE(); case 375: - if (lookahead == 'e') ADVANCE(1478); + if (lookahead == 'e') ADVANCE(1559); END_STATE(); case 376: - if (lookahead == 'e') ADVANCE(358); + if (lookahead == 'e') ADVANCE(1561); END_STATE(); case 377: - if (lookahead == 'e') ADVANCE(358); - if (lookahead == 't') ADVANCE(348); + if (lookahead == 'e') ADVANCE(390); END_STATE(); case 378: - if (lookahead == 'e') ADVANCE(325); + if (lookahead == 'e') ADVANCE(1481); END_STATE(); case 379: - if (lookahead == 'e') ADVANCE(463); + if (lookahead == 'e') ADVANCE(361); + if (lookahead == 't') ADVANCE(351); END_STATE(); case 380: if (lookahead == 'e') ADVANCE(329); END_STATE(); case 381: - if (lookahead == 'e') ADVANCE(459); + if (lookahead == 'e') ADVANCE(464); END_STATE(); case 382: - if (lookahead == 'e') ADVANCE(461); + if (lookahead == 'e') ADVANCE(333); END_STATE(); case 383: - if (lookahead == 'e') ADVANCE(415); + if (lookahead == 'e') ADVANCE(460); END_STATE(); case 384: - if (lookahead == 'e') ADVANCE(464); + if (lookahead == 'e') ADVANCE(462); END_STATE(); case 385: - if (lookahead == 'e') ADVANCE(428); - if (lookahead == 'h') ADVANCE(349); - if (lookahead == 'i') ADVANCE(423); - if (lookahead == 'l') ADVANCE(406); - if (lookahead == 's') ADVANCE(506); + if (lookahead == 'e') ADVANCE(417); END_STATE(); case 386: - if (lookahead == 'f') ADVANCE(1068); + if (lookahead == 'e') ADVANCE(465); END_STATE(); case 387: - if (lookahead == 'f') ADVANCE(1068); - if (lookahead == 'n') ADVANCE(1083); + if (lookahead == 'e') ADVANCE(430); + if (lookahead == 'h') ADVANCE(352); + if (lookahead == 'i') ADVANCE(425); + if (lookahead == 'l') ADVANCE(408); + if (lookahead == 's') ADVANCE(507); END_STATE(); case 388: - if (lookahead == 'f') ADVANCE(825); + if (lookahead == 'f') ADVANCE(1071); END_STATE(); case 389: - if (lookahead == 'f') ADVANCE(1477); + if (lookahead == 'f') ADVANCE(1071); + if (lookahead == 'n') ADVANCE(1086); END_STATE(); case 390: - if (lookahead == 'h') ADVANCE(1077); + if (lookahead == 'f') ADVANCE(828); END_STATE(); case 391: - if (lookahead == 'h') ADVANCE(412); + if (lookahead == 'f') ADVANCE(1480); END_STATE(); case 392: - if (lookahead == 'h') ADVANCE(1543); + if (lookahead == 'h') ADVANCE(1080); END_STATE(); case 393: - if (lookahead == 'h') ADVANCE(1539); + if (lookahead == 'h') ADVANCE(414); END_STATE(); case 394: - if (lookahead == 'h') ADVANCE(1545); + if (lookahead == 'h') ADVANCE(1546); END_STATE(); case 395: - if (lookahead == 'h') ADVANCE(1541); + if (lookahead == 'h') ADVANCE(1542); END_STATE(); case 396: - if (lookahead == 'h') ADVANCE(1474); + if (lookahead == 'h') ADVANCE(1548); END_STATE(); case 397: - if (lookahead == 'h') ADVANCE(1475); + if (lookahead == 'h') ADVANCE(1544); END_STATE(); case 398: - if (lookahead == 'h') ADVANCE(300); + if (lookahead == 'h') ADVANCE(1477); END_STATE(); case 399: - if (lookahead == 'i') ADVANCE(409); + if (lookahead == 'h') ADVANCE(1478); END_STATE(); case 400: - if (lookahead == 'i') ADVANCE(481); + if (lookahead == 'h') ADVANCE(304); END_STATE(); case 401: - if (lookahead == 'i') ADVANCE(489); + if (lookahead == 'i') ADVANCE(411); END_STATE(); case 402: - if (lookahead == 'i') ADVANCE(491); + if (lookahead == 'i') ADVANCE(482); END_STATE(); case 403: - if (lookahead == 'i') ADVANCE(494); + if (lookahead == 'i') ADVANCE(490); END_STATE(); case 404: - if (lookahead == 'i') ADVANCE(495); + if (lookahead == 'i') ADVANCE(492); END_STATE(); case 405: - if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'i') ADVANCE(495); END_STATE(); case 406: - if (lookahead == 'i') ADVANCE(410); + if (lookahead == 'i') ADVANCE(496); END_STATE(); case 407: - if (lookahead == 'i') ADVANCE(350); + if (lookahead == 'i') ADVANCE(497); END_STATE(); case 408: - if (lookahead == 'k') ADVANCE(1658); + if (lookahead == 'i') ADVANCE(412); END_STATE(); case 409: - if (lookahead == 'k') ADVANCE(372); + if (lookahead == 'i') ADVANCE(353); END_STATE(); case 410: - if (lookahead == 'k') ADVANCE(373); + if (lookahead == 'k') ADVANCE(1661); END_STATE(); case 411: - if (lookahead == 'l') ADVANCE(1095); + if (lookahead == 'k') ADVANCE(375); END_STATE(); case 412: - if (lookahead == 'l') ADVANCE(1581); - if (lookahead == 'r') ADVANCE(1583); + if (lookahead == 'k') ADVANCE(376); END_STATE(); case 413: - if (lookahead == 'l') ADVANCE(407); + if (lookahead == 'l') ADVANCE(1098); END_STATE(); case 414: - if (lookahead == 'l') ADVANCE(411); + if (lookahead == 'l') ADVANCE(1584); + if (lookahead == 'r') ADVANCE(1586); END_STATE(); case 415: - if (lookahead == 'l') ADVANCE(416); + if (lookahead == 'l') ADVANCE(409); END_STATE(); case 416: - if (lookahead == 'l') ADVANCE(305); + if (lookahead == 'l') ADVANCE(413); END_STATE(); case 417: - if (lookahead == 'l') ADVANCE(371); + if (lookahead == 'l') ADVANCE(418); END_STATE(); case 418: - if (lookahead == 'l') ADVANCE(474); + if (lookahead == 'l') ADVANCE(309); END_STATE(); case 419: - if (lookahead == 'n') ADVANCE(1053); + if (lookahead == 'l') ADVANCE(374); END_STATE(); case 420: - if (lookahead == 'n') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + if (lookahead == 'l') ADVANCE(475); END_STATE(); case 421: - if (lookahead == 'n') ADVANCE(361); + if (lookahead == 'n') ADVANCE(1056); END_STATE(); case 422: - if (lookahead == 'n') ADVANCE(1083); + if (lookahead == 'n') ADVANCE(1661); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); END_STATE(); case 423: - if (lookahead == 'n') ADVANCE(1533); + if (lookahead == 'n') ADVANCE(364); END_STATE(); case 424: - if (lookahead == 'n') ADVANCE(1476); + if (lookahead == 'n') ADVANCE(1086); END_STATE(); case 425: - if (lookahead == 'n') ADVANCE(364); + if (lookahead == 'n') ADVANCE(1536); END_STATE(); case 426: - if (lookahead == 'n') ADVANCE(363); + if (lookahead == 'n') ADVANCE(1479); END_STATE(); case 427: - if (lookahead == 'n') ADVANCE(476); + if (lookahead == 'n') ADVANCE(367); END_STATE(); case 428: if (lookahead == 'n') ADVANCE(366); END_STATE(); case 429: - if (lookahead == 'o') ADVANCE(508); + if (lookahead == 'n') ADVANCE(477); END_STATE(); case 430: - if (lookahead == 'o') ADVANCE(324); + if (lookahead == 'n') ADVANCE(369); END_STATE(); case 431: - if (lookahead == 'o') ADVANCE(454); + if (lookahead == 'o') ADVANCE(509); END_STATE(); case 432: - if (lookahead == 'o') ADVANCE(389); + if (lookahead == 'o') ADVANCE(328); END_STATE(); case 433: - if (lookahead == 'o') ADVANCE(447); + if (lookahead == 'o') ADVANCE(455); END_STATE(); case 434: - if (lookahead == 'o') ADVANCE(487); + if (lookahead == 'o') ADVANCE(391); END_STATE(); case 435: - if (lookahead == 'o') ADVANCE(487); - if (lookahead == 's') ADVANCE(1658); + if (lookahead == 'o') ADVANCE(449); END_STATE(); case 436: - if (lookahead == 'o') ADVANCE(362); + if (lookahead == 'o') ADVANCE(488); END_STATE(); case 437: - if (lookahead == 'o') ADVANCE(365); + if (lookahead == 'o') ADVANCE(488); + if (lookahead == 's') ADVANCE(1661); END_STATE(); case 438: - if (lookahead == 'o') ADVANCE(328); + if (lookahead == 'o') ADVANCE(365); END_STATE(); case 439: - if (lookahead == 'o') ADVANCE(427); + if (lookahead == 'o') ADVANCE(368); END_STATE(); case 440: - if (lookahead == 'o') ADVANCE(456); + if (lookahead == 'o') ADVANCE(332); END_STATE(); case 441: - if (lookahead == 'o') ADVANCE(484); + if (lookahead == 'o') ADVANCE(429); END_STATE(); case 442: - if (lookahead == 'o') ADVANCE(485); - if (lookahead == 'u') ADVANCE(414); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(540); + if (lookahead == 'o') ADVANCE(457); END_STATE(); case 443: - if (lookahead == 'o') ADVANCE(511); + if (lookahead == 'o') ADVANCE(485); END_STATE(); case 444: - if (lookahead == 'o') ADVANCE(466); + if (lookahead == 'o') ADVANCE(486); + if (lookahead == 'u') ADVANCE(416); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(541); END_STATE(); case 445: - if (lookahead == 'p') ADVANCE(444); - if (lookahead == 't') ADVANCE(381); + if (lookahead == 'o') ADVANCE(512); END_STATE(); case 446: - if (lookahead == 'p') ADVANCE(375); + if (lookahead == 'o') ADVANCE(467); END_STATE(); case 447: - if (lookahead == 'p') ADVANCE(498); + if (lookahead == 'p') ADVANCE(446); + if (lookahead == 't') ADVANCE(383); END_STATE(); case 448: - if (lookahead == 'p') ADVANCE(352); + if (lookahead == 'p') ADVANCE(378); END_STATE(); case 449: - if (lookahead == 'p') ADVANCE(353); + if (lookahead == 'p') ADVANCE(499); END_STATE(); case 450: - if (lookahead == 'p') ADVANCE(354); + if (lookahead == 'p') ADVANCE(355); END_STATE(); case 451: - if (lookahead == 'r') ADVANCE(1658); + if (lookahead == 'p') ADVANCE(356); END_STATE(); case 452: - if (lookahead == 'r') ADVANCE(1531); + if (lookahead == 'p') ADVANCE(357); END_STATE(); case 453: - if (lookahead == 'r') ADVANCE(286); + if (lookahead == 'r') ADVANCE(1534); END_STATE(); case 454: - if (lookahead == 'r') ADVANCE(1529); + if (lookahead == 'r') ADVANCE(290); END_STATE(); case 455: - if (lookahead == 'r') ADVANCE(1589); + if (lookahead == 'r') ADVANCE(1532); END_STATE(); case 456: - if (lookahead == 'r') ADVANCE(1587); + if (lookahead == 'r') ADVANCE(1592); END_STATE(); case 457: - if (lookahead == 'r') ADVANCE(510); + if (lookahead == 'r') ADVANCE(1590); END_STATE(); case 458: - if (lookahead == 'r') ADVANCE(291); + if (lookahead == 'r') ADVANCE(511); END_STATE(); case 459: - if (lookahead == 'r') ADVANCE(419); + if (lookahead == 'r') ADVANCE(295); END_STATE(); case 460: - if (lookahead == 'r') ADVANCE(327); + if (lookahead == 'r') ADVANCE(421); END_STATE(); case 461: - if (lookahead == 'r') ADVANCE(424); + if (lookahead == 'r') ADVANCE(331); END_STATE(); case 462: - if (lookahead == 'r') ADVANCE(504); + if (lookahead == 'r') ADVANCE(426); END_STATE(); case 463: - if (lookahead == 'r') ADVANCE(460); + if (lookahead == 'r') ADVANCE(505); END_STATE(); case 464: - if (lookahead == 'r') ADVANCE(465); + if (lookahead == 'r') ADVANCE(461); END_STATE(); case 465: - if (lookahead == 'r') ADVANCE(331); + if (lookahead == 'r') ADVANCE(466); END_STATE(); case 466: - if (lookahead == 'r') ADVANCE(483); + if (lookahead == 'r') ADVANCE(335); END_STATE(); case 467: - if (lookahead == 'r') ADVANCE(505); + if (lookahead == 'r') ADVANCE(484); END_STATE(); case 468: - if (lookahead == 's') ADVANCE(670); + if (lookahead == 'r') ADVANCE(506); END_STATE(); case 469: - if (lookahead == 's') ADVANCE(1658); + if (lookahead == 's') ADVANCE(673); END_STATE(); case 470: - if (lookahead == 's') ADVANCE(1535); + if (lookahead == 's') ADVANCE(1661); END_STATE(); case 471: - if (lookahead == 's') ADVANCE(1537); + if (lookahead == 's') ADVANCE(1538); END_STATE(); case 472: - if (lookahead == 's') ADVANCE(296); + if (lookahead == 's') ADVANCE(1540); END_STATE(); case 473: - if (lookahead == 's') ADVANCE(368); + if (lookahead == 's') ADVANCE(300); END_STATE(); case 474: - if (lookahead == 's') ADVANCE(370); + if (lookahead == 's') ADVANCE(371); END_STATE(); case 475: - if (lookahead == 's') ADVANCE(367); + if (lookahead == 's') ADVANCE(373); END_STATE(); case 476: - if (lookahead == 's') ADVANCE(480); + if (lookahead == 's') ADVANCE(370); END_STATE(); case 477: - if (lookahead == 's') ADVANCE(303); + if (lookahead == 's') ADVANCE(481); END_STATE(); case 478: - if (lookahead == 's') ADVANCE(304); + if (lookahead == 's') ADVANCE(307); END_STATE(); case 479: - if (lookahead == 's') ADVANCE(306); + if (lookahead == 's') ADVANCE(308); END_STATE(); case 480: - if (lookahead == 't') ADVANCE(682); + if (lookahead == 's') ADVANCE(310); END_STATE(); case 481: - if (lookahead == 't') ADVANCE(293); + if (lookahead == 't') ADVANCE(685); END_STATE(); case 482: - if (lookahead == 't') ADVANCE(359); + if (lookahead == 't') ADVANCE(297); END_STATE(); case 483: - if (lookahead == 't') ADVANCE(666); + if (lookahead == 't') ADVANCE(362); END_STATE(); case 484: - if (lookahead == 't') ADVANCE(295); + if (lookahead == 't') ADVANCE(669); END_STATE(); case 485: - if (lookahead == 't') ADVANCE(549); + if (lookahead == 't') ADVANCE(299); END_STATE(); case 486: - if (lookahead == 't') ADVANCE(348); + if (lookahead == 't') ADVANCE(550); END_STATE(); case 487: - if (lookahead == 't') ADVANCE(294); + if (lookahead == 't') ADVANCE(351); END_STATE(); case 488: - if (lookahead == 't') ADVANCE(281); + if (lookahead == 't') ADVANCE(298); END_STATE(); case 489: - if (lookahead == 't') ADVANCE(392); + if (lookahead == 't') ADVANCE(285); END_STATE(); case 490: - if (lookahead == 't') ADVANCE(520); + if (lookahead == 't') ADVANCE(394); END_STATE(); case 491: - if (lookahead == 't') ADVANCE(393); + if (lookahead == 't') ADVANCE(521); END_STATE(); case 492: - if (lookahead == 't') ADVANCE(326); + if (lookahead == 't') ADVANCE(395); END_STATE(); case 493: - if (lookahead == 't') ADVANCE(292); + if (lookahead == 't') ADVANCE(330); END_STATE(); case 494: - if (lookahead == 't') ADVANCE(394); + if (lookahead == 't') ADVANCE(296); END_STATE(); case 495: - if (lookahead == 't') ADVANCE(395); + if (lookahead == 't') ADVANCE(396); END_STATE(); case 496: - if (lookahead == 't') ADVANCE(398); + if (lookahead == 't') ADVANCE(397); END_STATE(); case 497: - if (lookahead == 't') ADVANCE(330); + if (lookahead == 't') ADVANCE(400); END_STATE(); case 498: - if (lookahead == 't') ADVANCE(301); + if (lookahead == 't') ADVANCE(334); END_STATE(); case 499: - if (lookahead == 't') ADVANCE(396); + if (lookahead == 't') ADVANCE(305); END_STATE(); case 500: - if (lookahead == 't') ADVANCE(397); + if (lookahead == 't') ADVANCE(398); END_STATE(); case 501: - if (lookahead == 't') ADVANCE(503); + if (lookahead == 't') ADVANCE(399); END_STATE(); case 502: - if (lookahead == 't') ADVANCE(381); + if (lookahead == 't') ADVANCE(504); END_STATE(); case 503: - if (lookahead == 't') ADVANCE(382); + if (lookahead == 't') ADVANCE(383); END_STATE(); case 504: - if (lookahead == 't') ADVANCE(477); + if (lookahead == 't') ADVANCE(384); END_STATE(); case 505: - if (lookahead == 't') ADVANCE(479); + if (lookahead == 't') ADVANCE(478); END_STATE(); case 506: - if (lookahead == 't') ADVANCE(356); + if (lookahead == 't') ADVANCE(480); END_STATE(); case 507: - if (lookahead == 'u') ADVANCE(521); - if (lookahead == 'x') ADVANCE(568); - if (lookahead != 0) ADVANCE(1704); + if (lookahead == 't') ADVANCE(359); END_STATE(); case 508: - if (lookahead == 'u') ADVANCE(492); + if (lookahead == 'u') ADVANCE(522); + if (lookahead == 'x') ADVANCE(569); + if (lookahead != 0) ADVANCE(1707); END_STATE(); case 509: - if (lookahead == 'u') ADVANCE(417); + if (lookahead == 'u') ADVANCE(493); END_STATE(); case 510: - if (lookahead == 'u') ADVANCE(369); + if (lookahead == 'u') ADVANCE(419); END_STATE(); case 511: - if (lookahead == 'u') ADVANCE(497); + if (lookahead == 'u') ADVANCE(372); END_STATE(); case 512: - if (lookahead == 'u') ADVANCE(522); - if (lookahead == 'x') ADVANCE(569); - if (lookahead != 0) ADVANCE(1696); + if (lookahead == 'u') ADVANCE(498); END_STATE(); case 513: - if (lookahead == 'w') ADVANCE(401); + if (lookahead == 'u') ADVANCE(523); + if (lookahead == 'x') ADVANCE(570); + if (lookahead != 0) ADVANCE(1699); END_STATE(); case 514: - if (lookahead == 'w') ADVANCE(402); + if (lookahead == 'w') ADVANCE(403); END_STATE(); case 515: - if (lookahead == 'w') ADVANCE(403); + if (lookahead == 'w') ADVANCE(404); END_STATE(); case 516: - if (lookahead == 'w') ADVANCE(404); + if (lookahead == 'w') ADVANCE(405); END_STATE(); case 517: - if (lookahead == 'w') ADVANCE(405); + if (lookahead == 'w') ADVANCE(406); END_STATE(); case 518: - if (lookahead == 'x') ADVANCE(502); + if (lookahead == 'w') ADVANCE(407); END_STATE(); case 519: - if (lookahead == 'y') ADVANCE(1658); + if (lookahead == 'x') ADVANCE(503); END_STATE(); case 520: - if (lookahead == 'y') ADVANCE(446); + if (lookahead == 'y') ADVANCE(1661); END_STATE(); case 521: - if (lookahead == '{') ADVANCE(565); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(563); + if (lookahead == 'y') ADVANCE(448); END_STATE(); case 522: - if (lookahead == '{') ADVANCE(567); + if (lookahead == '{') ADVANCE(566); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(570); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(564); END_STATE(); case 523: - if (lookahead == '|') ADVANCE(1455); + if (lookahead == '{') ADVANCE(568); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(571); END_STATE(); case 524: - if (lookahead == '|') ADVANCE(1456); + if (lookahead == '|') ADVANCE(1458); END_STATE(); case 525: - if (lookahead == '|') ADVANCE(1460); + if (lookahead == '|') ADVANCE(1459); END_STATE(); case 526: - if (lookahead == '|') ADVANCE(1453); + if (lookahead == '|') ADVANCE(1463); END_STATE(); case 527: - if (lookahead == '|') ADVANCE(1459); + if (lookahead == '|') ADVANCE(1456); END_STATE(); case 528: - if (lookahead == '|') ADVANCE(1454); + if (lookahead == '|') ADVANCE(1462); END_STATE(); case 529: if (lookahead == '|') ADVANCE(1457); END_STATE(); case 530: - if (lookahead == '|') ADVANCE(1458); + if (lookahead == '|') ADVANCE(1460); END_STATE(); case 531: - if (lookahead == '}') ADVANCE(1704); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(531); + if (lookahead == '|') ADVANCE(1461); END_STATE(); case 532: - if (lookahead == '}') ADVANCE(1696); + if (lookahead == '}') ADVANCE(1707); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(532); END_STATE(); case 533: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(540); + if (lookahead == '}') ADVANCE(1699); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(533); END_STATE(); case 534: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(541); END_STATE(); case 535: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1105); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); END_STATE(); case 536: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1103); + lookahead == 'f') ADVANCE(1108); END_STATE(); case 537: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(544); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1106); END_STATE(); case 538: if (lookahead == 'I' || lookahead == 'i') ADVANCE(545); END_STATE(); case 539: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(535); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(546); END_STATE(); case 540: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1109); + lookahead == 'n') ADVANCE(536); END_STATE(); case 541: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(537); + lookahead == 'n') ADVANCE(1112); END_STATE(); case 542: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(536); + lookahead == 'n') ADVANCE(538); END_STATE(); case 543: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(538); + lookahead == 'n') ADVANCE(537); END_STATE(); case 544: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(547); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(539); END_STATE(); case 545: if (lookahead == 'T' || - lookahead == 't') ADVANCE(546); + lookahead == 't') ADVANCE(548); END_STATE(); case 546: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1098); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(547); END_STATE(); case 547: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1104); + lookahead == 'y') ADVANCE(1101); END_STATE(); case 548: - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1671); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1107); END_STATE(); case 549: - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1674); END_STATE(); case 550: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(317); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1563); END_STATE(); case 551: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1668); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(321); END_STATE(); case 552: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); END_STATE(); case 553: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1679); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1670); END_STATE(); case 554: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1682); END_STATE(); case 555: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(550); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); END_STATE(); case 556: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(551); END_STATE(); case 557: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1678); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(552); END_STATE(); case 558: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(302); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1681); END_STATE(); case 559: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); END_STATE(); case 560: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(557); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(559); END_STATE(); case 561: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(558); END_STATE(); case 562: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(561); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(320); END_STATE(); case 563: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(568); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(562); END_STATE(); case 564: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1704); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(569); END_STATE(); case 565: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(531); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1707); END_STATE(); case 566: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1696); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(532); END_STATE(); case 567: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(532); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1699); END_STATE(); case 568: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(564); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(533); END_STATE(); case 569: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(566); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(565); END_STATE(); case 570: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(569); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(567); END_STATE(); case 571: - if (eof) ADVANCE(661); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(570); + END_STATE(); + case 572: + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1718, - '"', 1685, - '#', 2188, - '$', 1471, - '&', 824, - '\'', 1688, - '(', 1467, - ')', 1468, - '*', 1512, - '+', 1575, - ',', 1469, - '-', 1486, - '.', 1721, - '/', 1570, - ':', 1713, - ';', 1451, - '<', 1549, - '=', 673, - '>', 1480, - '?', 1717, - '@', 1462, - '[', 1465, - ']', 1466, - '^', 1731, - '_', 1502, - '`', 1692, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1482, + '\r', 9, + '!', 1721, + '"', 1688, + '#', 2192, + '$', 1473, + '&', 827, + '\'', 1691, + '(', 1470, + ')', 1471, + '*', 1515, + '+', 1578, + ',', 1472, + '-', 1490, + '.', 1724, + '/', 1573, + ':', 1716, + ';', 1454, + '<', 1552, + '=', 676, + '>', 1484, + '?', 1720, + '@', 1465, + '[', 1468, + ']', 1469, + '^', 1735, + '_', 1506, + '`', 1695, + '{', 1502, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(571); + lookahead == ' ') SKIP(572); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1373); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1376); END_STATE(); - case 572: - if (eof) ADVANCE(661); + case 573: + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1718, - '"', 1685, - '#', 2188, - '\'', 1688, - ')', 1468, - '*', 1511, - '+', 702, - '-', 307, - '.', 1726, - ';', 1451, - '?', 1717, - 'I', 809, - 'N', 805, - '[', 1465, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 1721, + '"', 1688, + '#', 2192, + '\'', 1691, + ')', 1471, + '*', 1514, + '+', 705, + '-', 311, + '.', 1730, + ';', 1454, + '?', 1720, + 'I', 812, + 'N', 808, + '[', 1468, + '_', 719, + '`', 1695, + 'a', 757, + 'c', 724, + 'd', 734, + 'e', 762, + 'f', 726, + 'i', 718, + 'l', 742, + 'm', 728, + 'n', 801, + 't', 775, + 'u', 788, + 'w', 754, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(572); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == ' ') SKIP(573); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); - END_STATE(); - case 573: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1718, - '"', 1685, - '#', 2188, - '\'', 1688, - ')', 1468, - '*', 1511, - '+', 702, - '-', 307, - '.', 1726, - ';', 1451, - 'I', 809, - 'N', 805, - '[', 1465, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '}', 1499, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(573); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + (lookahead < '{' || '}' < lookahead)) ADVANCE(827); END_STATE(); case 574: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1718, - '#', 2188, - '(', 1467, - ')', 1468, - '-', 297, - '.', 1720, - ':', 1713, - ';', 1451, - '=', 675, - '>', 1479, - '?', 1717, - '[', 1465, - 'a', 421, - 'e', 288, - 'i', 387, - 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 1721, + '"', 1688, + '#', 2192, + '\'', 1691, + ')', 1471, + '*', 1514, + '+', 705, + '-', 311, + '.', 1730, + ';', 1454, + 'I', 812, + 'N', 808, + '[', 1468, + '_', 719, + '`', 1695, + 'a', 757, + 'c', 724, + 'd', 734, + 'e', 762, + 'f', 726, + 'i', 718, + 'l', 742, + 'm', 728, + 'n', 801, + 't', 775, + 'u', 788, + 'w', 754, + '}', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(574); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); END_STATE(); case 575: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1718, - '#', 2188, - '(', 1467, - ')', 1468, - '-', 297, - '.', 1722, - ':', 1713, - ';', 1451, - '=', 675, - '>', 1479, - '?', 1717, - '[', 1465, - 'a', 421, - 'e', 288, - 'i', 387, - 'o', 289, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 1721, + '#', 2192, + '(', 1470, + ')', 1471, + '-', 301, + '.', 1723, + ':', 1716, + ';', 1454, + '=', 678, + '>', 1483, + '?', 1720, + '[', 1468, + 'a', 423, + 'e', 292, + 'i', 389, + 'o', 293, + 'x', 433, + '{', 1502, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(574); + lookahead == ' ') SKIP(575); END_STATE(); case 576: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1718, - '#', 2188, - ')', 1468, - '.', 1722, - ';', 1451, - '=', 1729, - '?', 1717, - 'e', 1374, - 'o', 1375, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '\n', 1451, + '\r', 9, + '!', 1721, + '#', 2192, + '(', 1470, + ')', 1471, + '-', 301, + '.', 1726, + ':', 1716, + ';', 1454, + '=', 678, + '>', 1483, + '?', 1720, + '[', 1468, + 'a', 423, + 'e', 292, + 'i', 389, + 'o', 293, + 'x', 433, + '{', 1502, + '|', 1455, + '}', 1503, ); - if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1447); + if (lookahead == '\t' || + lookahead == ' ') SKIP(575); END_STATE(); case 577: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1719, - '#', 2188, - '$', 1509, - '\'', 1691, - '(', 1561, - ')', 1468, - '*', 1513, - '+', 1578, - '-', 1495, - '.', 1722, - '/', 1568, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 674, - '>', 1480, - '?', 1717, - '@', 1462, - ']', 1466, - '`', 1695, - 'a', 421, - 'b', 400, - 'c', 351, - 'd', 374, - 'e', 284, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 1721, + '#', 2192, + ')', 1471, + '.', 1726, + ';', 1454, + '=', 1733, + '?', 1720, + 'e', 1377, + 'o', 1378, + '|', 1455, + '}', 1503, + '\t', 1453, + ' ', 1453, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(580); + if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1450); END_STATE(); case 578: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1719, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1722, - '/', 1567, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 321, - '>', 1480, - '?', 1717, - 'B', 1653, - 'E', 333, - 'G', 333, - 'K', 333, - 'M', 333, - 'P', 333, - 'T', 333, - '[', 1665, - 'a', 421, - 'b', 1655, - 'd', 346, - 'e', 282, - 'g', 332, - 'h', 345, - 'i', 387, - 'k', 332, - 'l', 399, - 'm', 334, - 'n', 435, - 'o', 279, - 'p', 332, - 's', 377, - 't', 332, - 'u', 469, - 'w', 408, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, - 0xb5, 469, + '\n', 1451, + '\r', 9, + '!', 1722, + '#', 2192, + '$', 1513, + '\'', 1694, + '(', 1564, + ')', 1471, + '*', 1516, + '+', 1581, + '-', 1499, + '.', 1726, + '/', 1571, + ':', 1716, + ';', 1454, + '<', 1553, + '=', 677, + '>', 1484, + '?', 1720, + '@', 1465, + ']', 1469, + '`', 1698, + 'a', 423, + 'b', 402, + 'c', 354, + 'd', 377, + 'e', 288, + 'h', 347, + 'i', 424, + 'l', 401, + 'm', 438, + 'n', 436, + 'o', 283, + 's', 487, + 'x', 433, + '{', 1502, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(579); + lookahead == ' ') SKIP(581); END_STATE(); case 579: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1719, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1720, - '/', 1567, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 321, - '>', 1480, - '?', 1717, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 387, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(579); - END_STATE(); + '\n', 1451, + '\r', 9, + '!', 1722, + '#', 2192, + '(', 1564, + ')', 1471, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1726, + '/', 1570, + ':', 1716, + ';', 1454, + '<', 1553, + '=', 325, + '>', 1484, + '?', 1720, + 'B', 1656, + 'E', 337, + 'G', 337, + 'K', 337, + 'M', 337, + 'P', 337, + 'T', 337, + '[', 1668, + 'a', 423, + 'b', 1658, + 'd', 349, + 'e', 286, + 'g', 336, + 'h', 348, + 'i', 389, + 'k', 336, + 'l', 401, + 'm', 338, + 'n', 437, + 'o', 283, + 'p', 336, + 's', 379, + 't', 336, + 'u', 470, + 'w', 410, + 'x', 433, + '{', 1502, + '|', 1455, + '}', 1503, + 0xb5, 470, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(580); + END_STATE(); case 580: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1719, - '#', 2188, - ')', 1468, - '*', 1513, + '\n', 1451, + '\r', 9, + '!', 1722, + '#', 2192, + ')', 1471, + '*', 1515, '+', 1578, - '-', 1495, - '.', 1720, - '/', 1568, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 674, - '>', 1480, - '?', 1717, - '@', 1462, - ']', 1466, - 'a', 421, - 'b', 400, - 'c', 351, - 'd', 374, - 'e', 284, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '-', 1490, + '.', 1723, + '/', 1570, + ':', 1716, + ';', 1454, + '<', 1553, + '=', 325, + '>', 1484, + '?', 1720, + 'a', 423, + 'b', 402, + 'e', 289, + 'h', 347, + 'i', 389, + 'l', 401, + 'm', 438, + 'n', 436, + 'o', 283, + 's', 487, + 'x', 433, + '{', 1502, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(580); END_STATE(); case 581: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1604, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1772, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 1722, + '#', 2192, + ')', 1471, + '*', 1516, + '+', 1581, + '-', 1499, + '.', 1723, + '/', 1571, + ':', 1716, + ';', 1454, + '<', 1553, + '=', 677, + '>', 1484, + '?', 1720, + '@', 1465, + ']', 1469, + 'a', 423, + 'b', 402, + 'c', 354, + 'd', 377, + 'e', 288, + 'h', 347, + 'i', 424, + 'l', 401, + 'm', 438, + 'n', 436, + 'o', 283, + 's', 487, + 'x', 433, + '{', 1502, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(613); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(1934); + lookahead == ' ') SKIP(581); END_STATE(); case 582: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1604, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '$', 1473, + '(', 1564, + ')', 1471, + '*', 1515, + '+', 1579, + '-', 1497, + '.', 1607, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 1799, + '>', 1484, + '_', 1817, + 'a', 1869, + 'b', 1856, 'e', 1776, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1767, + 's', 1903, + 'x', 1875, + '{', 1502, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(615); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(614); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '_' || 'b' < lookahead)) ADVANCE(1938); END_STATE(); case 583: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1815, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1772, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '$', 1473, + '(', 1564, + ')', 1471, + '*', 1515, + '+', 1579, + '-', 1497, + '.', 1607, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 1799, + '>', 1484, + '_', 1817, + 'a', 1869, + 'b', 1856, + 'e', 1780, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1782, + 's', 1903, + 'x', 1875, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(614); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(616); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); END_STATE(); case 584: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1576, - '-', 1493, - '.', 1815, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - '_', 1813, - 'a', 1865, - 'b', 1852, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '$', 1473, + '(', 1564, + ')', 1471, + '*', 1515, + '+', 1579, + '-', 1497, + '.', 1819, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 1799, + '>', 1484, + '_', 1817, + 'a', 1869, + 'b', 1856, 'e', 1776, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1767, + 's', 1903, + 'x', 1875, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(615); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); END_STATE(); case 585: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1764, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1763, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '$', 1473, + '(', 1564, + ')', 1471, + '*', 1515, + '+', 1579, + '-', 1497, + '.', 1819, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 1799, + '>', 1484, + '_', 1817, + 'a', 1869, + 'b', 1856, + 'e', 1780, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1782, + 's', 1903, + 'x', 1875, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(616); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); END_STATE(); case 586: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1766, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1778, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + ')', 1471, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1598, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 1799, + '>', 1484, + 'B', 1656, + 'E', 1811, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + 'a', 1869, + 'b', 1659, + 'd', 1828, + 'e', 1768, + 'g', 1813, + 'h', 1826, + 'i', 1867, + 'k', 1813, + 'l', 1855, + 'm', 1815, + 'n', 1876, + 'o', 1767, + 'p', 1813, + 's', 1842, + 't', 1813, + 'u', 1895, + 'w', 1862, + 'x', 1875, + '|', 1455, + '}', 1503, + 0xb5, 1895, ); if (lookahead == '\t' || lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 587: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1765, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + ')', 1471, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1598, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 1799, + '>', 1484, + 'B', 1656, + 'E', 1811, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + 'a', 1869, + 'b', 1659, + 'd', 1828, + 'e', 1770, + 'g', 1813, + 'h', 1826, + 'i', 1867, + 'k', 1813, + 'l', 1855, + 'm', 1815, + 'n', 1876, + 'o', 1782, + 'p', 1813, + 's', 1842, + 't', 1813, + 'u', 1895, + 'w', 1862, + 'x', 1875, + '|', 1455, + '}', 1503, + 0xb5, 1895, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); + lookahead == ' ') SKIP(620); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + END_STATE(); + case 588: + if (eof) ADVANCE(664); + ADVANCE_MAP( + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + ')', 1471, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1598, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 1799, + '>', 1484, + 'E', 1823, + 'a', 1869, + 'b', 1856, + 'e', 1769, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1767, + 's', 1903, + 'x', 1875, + '{', 1502, + '|', 1455, + '}', 1503, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(618); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1934); - END_STATE(); - case 588: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1595, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1768, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1938); END_STATE(); case 589: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1764, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1763, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + ')', 1471, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1598, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 1799, + '>', 1484, + 'E', 1823, + 'a', 1869, + 'b', 1856, + 'e', 1772, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1782, + 's', 1903, + 'x', 1875, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(620); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 590: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1766, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1778, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + ')', 1471, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1794, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 1799, + '>', 1484, + 'B', 1656, + 'E', 1811, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + '_', 1817, + 'a', 1869, + 'b', 1659, + 'd', 1828, + 'e', 1768, + 'g', 1813, + 'h', 1826, + 'i', 1867, + 'k', 1813, + 'l', 1855, + 'm', 1815, + 'n', 1876, + 'o', 1767, + 'p', 1813, + 's', 1842, + 't', 1813, + 'u', 1895, + 'w', 1862, + 'x', 1875, + '|', 1455, + '}', 1503, + 0xb5, 1895, ); if (lookahead == '\t' || lookahead == ' ') SKIP(619); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 591: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1764, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1763, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + ')', 1471, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1794, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 1799, + '>', 1484, + 'B', 1656, + 'E', 1811, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + '_', 1817, + 'a', 1869, + 'b', 1659, + 'd', 1828, + 'e', 1770, + 'g', 1813, + 'h', 1826, + 'i', 1867, + 'k', 1813, + 'l', 1855, + 'm', 1815, + 'n', 1876, + 'o', 1782, + 'p', 1813, + 's', 1842, + 't', 1813, + 'u', 1895, + 'w', 1862, + 'x', 1875, + '|', 1455, + '}', 1503, + 0xb5, 1895, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(620); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 592: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1766, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1778, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + ')', 1471, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1794, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 1799, + '>', 1484, + 'B', 1656, + 'E', 1811, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + 'a', 1869, + 'b', 1659, + 'd', 1828, + 'e', 1768, + 'g', 1813, + 'h', 1826, + 'i', 1867, + 'k', 1813, + 'l', 1855, + 'm', 1815, + 'n', 1876, + 'o', 1767, + 'p', 1813, + 's', 1842, + 't', 1813, + 'u', 1895, + 'w', 1862, + 'x', 1875, + '|', 1455, + '}', 1503, + 0xb5, 1895, ); if (lookahead == '\t' || lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 593: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1771, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1763, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + ')', 1471, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1794, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 1799, + '>', 1484, + 'B', 1656, + 'E', 1811, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + 'a', 1869, + 'b', 1659, + 'd', 1828, + 'e', 1770, + 'g', 1813, + 'h', 1826, + 'i', 1867, + 'k', 1813, + 'l', 1855, + 'm', 1815, + 'n', 1876, + 'o', 1782, + 'p', 1813, + 's', 1842, + 't', 1813, + 'u', 1895, + 'w', 1862, + 'x', 1875, + '|', 1455, + '}', 1503, + 0xb5, 1895, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(620); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 594: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'B', 1653, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'b', 1656, - 'd', 1824, - 'e', 1774, - 'g', 1809, - 'h', 1822, - 'i', 1863, - 'k', 1809, - 'l', 1851, - 'm', 1811, - 'n', 1872, - 'o', 1778, - 'p', 1809, - 's', 1838, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + ')', 1471, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1794, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 1799, + '>', 1484, + 'B', 1656, + 'E', 1814, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + 'a', 1869, + 'b', 1659, + 'd', 1828, + 'e', 1775, + 'g', 1813, + 'h', 1826, + 'i', 1867, + 'k', 1813, + 'l', 1855, + 'm', 1815, + 'n', 1876, + 'o', 1767, + 'p', 1813, + 's', 1842, + 't', 1813, + 'u', 1895, + 'w', 1862, + 'x', 1875, + '|', 1455, + '}', 1503, + 0xb5, 1895, ); if (lookahead == '\t' || lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 595: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1765, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + ')', 1471, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1794, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 1799, + '>', 1484, + 'B', 1656, + 'E', 1814, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + 'a', 1869, + 'b', 1659, + 'd', 1828, + 'e', 1778, + 'g', 1813, + 'h', 1826, + 'i', 1867, + 'k', 1813, + 'l', 1855, + 'm', 1815, + 'n', 1876, + 'o', 1782, + 'p', 1813, + 's', 1842, + 't', 1813, + 'u', 1895, + 'w', 1862, + 'x', 1875, + '|', 1455, + '}', 1503, + 0xb5, 1895, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + lookahead == ' ') SKIP(620); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + END_STATE(); + case 596: + if (eof) ADVANCE(664); + ADVANCE_MAP( + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + ')', 1471, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1794, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 1799, + '>', 1484, + 'E', 1823, + '_', 1817, + 'a', 1869, + 'b', 1856, + 'e', 1769, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1767, + 's', 1903, + 'x', 1875, + '{', 1502, + '|', 1455, + '}', 1503, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(618); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(1934); + (lookahead < '_' || 'b' < lookahead)) ADVANCE(1938); END_STATE(); - case 596: - if (eof) ADVANCE(661); + case 597: + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1768, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + ')', 1471, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1794, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 1799, + '>', 1484, + 'E', 1823, + '_', 1817, + 'a', 1869, + 'b', 1856, + 'e', 1772, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1782, + 's', 1903, + 'x', 1875, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(620); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); - case 597: - if (eof) ADVANCE(661); + case 598: + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1765, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + ')', 1471, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1794, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 1799, + '>', 1484, + 'E', 1823, + 'a', 1869, + 'b', 1856, + 'e', 1769, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1767, + 's', 1903, + 'x', 1875, + '{', 1502, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); + lookahead == ' ') SKIP(618); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1934); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1938); END_STATE(); - case 598: - if (eof) ADVANCE(661); + case 599: + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1768, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + ')', 1471, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1794, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 1799, + '>', 1484, + 'E', 1823, + 'a', 1869, + 'b', 1856, + 'e', 1772, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1782, + 's', 1903, + 'x', 1875, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(620); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); - case 599: - if (eof) ADVANCE(661); + case 600: + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1772, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + ')', 1471, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1794, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 1799, + '>', 1484, + 'a', 1869, + 'b', 1856, + 'e', 1776, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1767, + 's', 1903, + 'x', 1875, + '{', 1502, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); + lookahead == ' ') SKIP(618); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1934); - END_STATE(); - case 600: - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1790, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'a', 1865, - 'b', 1852, - 'e', 1776, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1938); END_STATE(); case 601: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1594, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1765, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + ')', 1471, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1794, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 1799, + '>', 1484, + 'a', 1869, + 'b', 1856, + 'e', 1780, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1782, + 's', 1903, + 'x', 1875, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(620); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 602: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1594, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1768, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + ')', 1471, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1597, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 1799, + '>', 1484, + 'E', 1823, + 'a', 1869, + 'b', 1856, + 'e', 1769, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1767, + 's', 1903, + 'x', 1875, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 603: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1765, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + ')', 1471, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1597, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 1799, + '>', 1484, + 'E', 1823, + 'a', 1869, + 'b', 1856, + 'e', 1772, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1782, + 's', 1903, + 'x', 1875, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(620); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 604: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'b', 1852, - 'e', 1768, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + ')', 1471, + '*', 1515, + '+', 1578, + '-', 1490, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 1799, + '>', 1484, + 'E', 1823, + '_', 1817, + 'a', 1869, + 'b', 1856, + 'e', 1769, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1767, + 's', 1903, + 'x', 1875, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(619); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 605: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1765, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + ')', 1471, + '*', 1515, + '+', 1578, + '-', 1490, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 1799, + '>', 1484, + 'E', 1823, + '_', 1817, + 'a', 1869, + 'b', 1856, + 'e', 1772, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1782, + 's', 1903, + 'x', 1875, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(620); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 606: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'E', 1819, - 'a', 1865, - 'b', 1852, - 'e', 1768, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + ')', 1471, + '*', 1515, + '+', 1578, + '-', 1490, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 1799, + '>', 1484, + 'E', 1823, + 'a', 1869, + 'b', 1856, + 'e', 1769, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1767, + 's', 1903, + 'x', 1875, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 607: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'a', 1865, - 'b', 1852, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + ')', 1471, + '*', 1515, + '+', 1578, + '-', 1490, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 1799, + '>', 1484, + 'E', 1823, + 'a', 1869, + 'b', 1856, 'e', 1772, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1763, - 's', 1899, - 'x', 1871, - '{', 1498, - '|', 1452, - '}', 1499, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1782, + 's', 1903, + 'x', 1875, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1934); + lookahead == ' ') SKIP(620); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 608: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1793, - '#', 2188, - '(', 1561, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 1795, - '>', 1480, - 'a', 1865, - 'b', 1852, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + ')', 1471, + '*', 1515, + '+', 1578, + '-', 1490, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 1799, + '>', 1484, + 'a', 1869, + 'b', 1856, 'e', 1776, - 'h', 1823, - 'i', 1863, - 'l', 1851, - 'm', 1874, - 'n', 1873, - 'o', 1778, - 's', 1899, - 'x', 1871, - '|', 1452, - '}', 1499, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1767, + 's', 1903, + 'x', 1875, + '{', 1502, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(618); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1938); END_STATE(); case 609: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 852, - '#', 2191, - ')', 1468, - '*', 1514, - '+', 1579, - '-', 1496, - '/', 1569, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 936, - 'b', 918, - 'e', 829, - 'h', 875, - 'i', 937, - 'l', 917, - 'm', 949, - 'n', 950, - 'o', 828, - 's', 995, - 'x', 948, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 1797, + '#', 2192, + '(', 1564, + ')', 1471, + '*', 1515, + '+', 1578, + '-', 1490, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 1799, + '>', 1484, + 'a', 1869, + 'b', 1856, + 'e', 1780, + 'h', 1827, + 'i', 1867, + 'l', 1855, + 'm', 1878, + 'n', 1877, + 'o', 1782, + 's', 1903, + 'x', 1875, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(616); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1046); + lookahead == ' ') SKIP(620); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 610: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 852, - '#', 2191, - ')', 1468, - '*', 1514, - '+', 1579, - '-', 1496, - '/', 1569, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 936, - 'b', 918, - 'e', 833, - 'h', 875, - 'i', 937, - 'l', 917, - 'm', 949, - 'n', 950, - 'o', 832, - 's', 995, - 'x', 948, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 855, + '#', 2195, + ')', 1471, + '*', 1517, + '+', 1582, + '-', 1500, + '/', 1572, + ':', 1716, + ';', 1454, + '<', 1553, + '=', 326, + '>', 1484, + 'a', 939, + 'b', 921, + 'e', 832, + 'h', 878, + 'i', 940, + 'l', 920, + 'm', 952, + 'n', 953, + 'o', 831, + 's', 998, + 'x', 951, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1046); + lookahead == ' ') SKIP(617); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1049); END_STATE(); case 611: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '.', 1594, - '/', 1567, - ':', 1463, - ';', 1451, - '<', 1550, - '=', 321, - '>', 1480, - 'E', 340, - '[', 1465, - 'a', 421, - 'b', 400, - 'c', 351, - 'e', 280, - 'f', 347, - 'h', 344, - 'i', 387, - 'l', 399, - 'm', 436, - 'n', 441, - 'o', 279, - 's', 486, - 't', 457, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 855, + '#', 2195, + ')', 1471, + '*', 1517, + '+', 1582, + '-', 1500, + '/', 1572, + ';', 1454, + '<', 1553, + '=', 326, + '>', 1484, + 'a', 939, + 'b', 921, + 'e', 836, + 'h', 878, + 'i', 940, + 'l', 920, + 'm', 952, + 'n', 953, + 'o', 835, + 's', 998, + 'x', 951, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(612); + lookahead == ' ') SKIP(620); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1049); END_STATE(); case 612: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '$', 1470, - '(', 1467, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ':', 1463, - ';', 1451, - '<', 1550, - '=', 321, - '>', 1480, - '[', 1465, - 'a', 421, - 'b', 400, - 'c', 351, - 'e', 283, - 'f', 347, - 'h', 344, - 'i', 387, - 'l', 399, - 'm', 436, - 'n', 441, - 'o', 279, - 's', 486, - 't', 457, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 324, + '#', 2192, + '$', 1473, + '(', 1470, + ')', 1471, + '*', 1515, + '+', 1578, + '-', 1490, + '.', 1597, + '/', 1570, + ':', 1466, + ';', 1454, + '<', 1553, + '=', 325, + '>', 1484, + 'E', 343, + '[', 1468, + 'a', 423, + 'b', 402, + 'c', 354, + 'e', 284, + 'f', 350, + 'h', 347, + 'i', 389, + 'l', 401, + 'm', 438, + 'n', 443, + 'o', 283, + 's', 487, + 't', 458, + 'x', 433, + '{', 1502, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(612); + lookahead == ' ') SKIP(613); END_STATE(); case 613: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '$', 1470, - ')', 1468, - '*', 1512, - '+', 1577, - '-', 1494, - '.', 337, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 324, + '#', 2192, + '$', 1473, + '(', 1470, + ')', 1471, + '*', 1515, + '+', 1578, + '-', 1490, + '/', 1570, + ':', 1466, + ';', 1454, + '<', 1553, + '=', 325, + '>', 1484, + '[', 1468, + 'a', 423, + 'b', 402, + 'c', 354, + 'e', 287, + 'f', 350, + 'h', 347, + 'i', 389, + 'l', 401, + 'm', 438, + 'n', 443, + 'o', 283, + 's', 487, + 't', 458, + 'x', 433, + '{', 1502, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(613); END_STATE(); case 614: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '$', 1470, - ')', 1468, - '*', 1512, - '+', 1577, - '-', 1494, - '.', 337, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 324, + '#', 2192, + '$', 1473, + ')', 1471, + '*', 1515, + '+', 1580, + '-', 1498, + '.', 340, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 326, + '>', 1484, + 'a', 423, + 'b', 402, + 'e', 289, + 'h', 347, + 'i', 424, + 'l', 401, + 'm', 438, + 'n', 436, + 'o', 283, + 's', 487, + 'x', 433, + '{', 1502, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(614); END_STATE(); case 615: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '$', 1470, - ')', 1468, - '*', 1512, - '+', 1577, - '-', 1494, - '.', 337, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 287, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 289, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 324, + '#', 2192, + '$', 1473, + ')', 1471, + '*', 1515, + '+', 1580, + '-', 1498, + '.', 340, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 326, + '>', 1484, + 'a', 423, + 'b', 402, + 'e', 289, + 'h', 347, + 'i', 424, + 'l', 401, + 'm', 438, + 'n', 436, + 'o', 283, + 's', 487, + 'x', 433, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(615); END_STATE(); case 616: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ':', 1713, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 324, + '#', 2192, + '$', 1473, + ')', 1471, + '*', 1515, + '+', 1580, + '-', 1498, + '.', 340, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 326, + '>', 1484, + 'a', 423, + 'b', 402, + 'e', 291, + 'h', 347, + 'i', 424, + 'l', 401, + 'm', 438, + 'n', 436, + 'o', 293, + 's', 487, + 'x', 433, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(616); END_STATE(); case 617: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 324, + '#', 2192, + ')', 1471, + '*', 1515, + '+', 1578, + '-', 1490, + '/', 1570, + ':', 1716, + ';', 1454, + '<', 1553, + '=', 326, + '>', 1484, + 'a', 423, + 'b', 402, + 'e', 289, + 'h', 347, + 'i', 424, + 'l', 401, + 'm', 438, + 'n', 436, + 'o', 283, + 's', 487, + 'x', 433, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(617); END_STATE(); case 618: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 324, + '#', 2192, + ')', 1471, + '*', 1515, + '+', 1578, + '-', 1490, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 326, + '>', 1484, + 'a', 423, + 'b', 402, + 'e', 289, + 'h', 347, + 'i', 424, + 'l', 401, + 'm', 438, + 'n', 436, + 'o', 283, + 's', 487, + 'x', 433, + '{', 1502, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(618); END_STATE(); case 619: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - ')', 1468, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 287, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 289, - 's', 486, - 'x', 431, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 324, + '#', 2192, + ')', 1471, + '*', 1515, + '+', 1578, + '-', 1490, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 326, + '>', 1484, + 'a', 423, + 'b', 402, + 'e', 289, + 'h', 347, + 'i', 424, + 'l', 401, + 'm', 438, + 'n', 436, + 'o', 283, + 's', 487, + 'x', 433, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(619); END_STATE(); case 620: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 285, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 279, - 's', 486, - 'x', 431, - '|', 1452, + '\n', 1451, + '\r', 9, + '!', 324, + '#', 2192, + ')', 1471, + '*', 1515, + '+', 1578, + '-', 1490, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 326, + '>', 1484, + 'a', 423, + 'b', 402, + 'e', 291, + 'h', 347, + 'i', 424, + 'l', 401, + 'm', 438, + 'n', 436, + 'o', 293, + 's', 487, + 'x', 433, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(620); END_STATE(); case 621: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 320, - '#', 2188, - '*', 1512, - '+', 1575, - '-', 1486, - '/', 1567, - ';', 1451, - '<', 1550, - '=', 322, - '>', 1480, - 'a', 421, - 'b', 400, - 'e', 287, - 'h', 344, - 'i', 422, - 'l', 399, - 'm', 436, - 'n', 434, - 'o', 289, - 's', 486, - 'x', 431, - '|', 1452, + '\n', 1451, + '\r', 9, + '!', 324, + '#', 2192, + '*', 1515, + '+', 1578, + '-', 1490, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 326, + '>', 1484, + 'a', 423, + 'b', 402, + 'e', 289, + 'h', 347, + 'i', 424, + 'l', 401, + 'm', 438, + 'n', 436, + 'o', 283, + 's', 487, + 'x', 433, + '|', 1455, ); if (lookahead == '\t' || lookahead == ' ') SKIP(621); END_STATE(); case 622: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - ')', 1616, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - ':', 1463, - ';', 1451, - '=', 673, - '@', 1462, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 324, + '#', 2192, + '*', 1515, + '+', 1578, + '-', 1490, + '/', 1570, + ';', 1454, + '<', 1553, + '=', 326, + '>', 1484, + 'a', 423, + 'b', 402, + 'e', 291, + 'h', 347, + 'i', 424, + 'l', 401, + 'm', 438, + 'n', 436, + 'o', 293, + 's', 487, + 'x', 433, + '|', 1455, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(623); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead)) ADVANCE(824); + lookahead == ' ') SKIP(622); END_STATE(); case 623: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - ')', 1468, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - ':', 1463, - ';', 1451, - '=', 673, - '@', 1462, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '"', 1688, + '#', 2192, + '$', 1474, + '\'', 1691, + '(', 1470, + ')', 1619, + '+', 705, + '-', 1495, + '.', 700, + '0', 1626, + ':', 1466, + ';', 1454, + '=', 676, + '@', 1465, + 'I', 812, + 'N', 808, + '[', 1468, + '^', 1735, + '_', 719, + '`', 1695, + 'a', 757, + 'c', 724, + 'd', 734, + 'e', 762, + 'f', 726, + 'i', 718, + 'l', 742, + 'm', 728, + 'n', 772, + 't', 775, + 'u', 788, + 'w', 750, + '{', 1502, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(623); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); + lookahead == ' ') SKIP(624); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead)) ADVANCE(824); + (lookahead < ']' || 'a' < lookahead)) ADVANCE(827); END_STATE(); case 624: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '$', 1471, - '\'', 1688, - '(', 1467, - ')', 1468, - '+', 2000, - '-', 1488, - '.', 1999, - '0', 1624, - ';', 1451, - 'N', 2047, - '[', 1465, - '_', 2012, - '`', 1692, - 'e', 1989, - 'f', 2015, - 'n', 2043, - 'o', 1990, - 't', 2030, - '{', 1498, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, - 'I', 2051, - 'i', 2051, + '\n', 1451, + '\r', 9, + '"', 1688, + '#', 2192, + '$', 1474, + '\'', 1691, + '(', 1470, + ')', 1471, + '+', 705, + '-', 1495, + '.', 700, + '0', 1626, + ':', 1466, + ';', 1454, + '=', 676, + '@', 1465, + 'I', 812, + 'N', 808, + '[', 1468, + '^', 1735, + '_', 719, + '`', 1695, + 'a', 757, + 'c', 724, + 'd', 734, + 'e', 762, + 'f', 726, + 'i', 718, + 'l', 742, + 'm', 728, + 'n', 772, + 't', 775, + 'u', 788, + 'w', 750, + '{', 1502, + '|', 1455, + '}', 1503, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (lookahead == '\t' || + lookahead == ' ') SKIP(624); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2070); + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'a' < lookahead)) ADVANCE(827); END_STATE(); case 625: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '\'', 1688, - '(', 1467, - ')', 1468, - '*', 1511, - '+', 702, - '-', 298, - '.', 718, - ';', 1451, - '<', 1141, - '=', 673, - '>', 1479, - '@', 1481, - 'I', 809, - 'N', 805, - '[', 1465, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, - '}', 1499, + '\n', 1451, + '\r', 9, + '"', 1688, + '#', 2192, + '$', 1474, + '\'', 1691, + '(', 1470, + ')', 1471, + '+', 1583, + ',', 1472, + '-', 1495, + '.', 701, + '0', 1626, + ':', 1466, + ';', 1454, + '<', 1144, + '=', 327, + '>', 1483, + '@', 1465, + 'I', 812, + 'N', 808, + '[', 1468, + ']', 1469, + '^', 1735, + '_', 719, + '`', 1695, + 'a', 757, + 'c', 724, + 'd', 734, + 'e', 762, + 'f', 726, + 'i', 718, + 'l', 742, + 'm', 728, + 'n', 772, + 't', 775, + 'u', 788, + 'w', 750, + '{', 1502, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(626); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(827); END_STATE(); case 626: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '\'', 1688, - '(', 1467, - ')', 1468, - '*', 1511, - '+', 702, - '-', 298, - '.', 718, - ';', 1451, - '=', 673, - '>', 1479, - 'I', 809, - 'N', 805, - '[', 1465, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '{', 1498, - '}', 1499, + '\n', 1451, + '\r', 9, + '"', 1688, + '#', 2192, + '$', 1474, + '\'', 1691, + '(', 1470, + ')', 1471, + '+', 1583, + ',', 1472, + '-', 1495, + '.', 701, + '0', 1626, + ':', 1466, + ';', 1454, + '=', 327, + '>', 1483, + '@', 1465, + 'I', 812, + 'N', 808, + '[', 1468, + ']', 1469, + '^', 1735, + '_', 719, + '`', 1695, + 'a', 757, + 'c', 724, + 'd', 734, + 'e', 762, + 'f', 726, + 'i', 718, + 'l', 742, + 'm', 728, + 'n', 772, + 't', 775, + 'u', 788, + 'w', 750, + '{', 1502, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(626); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '0' || '>' < lookahead)) ADVANCE(827); END_STATE(); case 627: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '\'', 1688, - ')', 1468, - '*', 1511, - '+', 702, - '-', 307, - '.', 1726, - ';', 1451, - '?', 1717, - 'I', 809, - 'N', 805, - '[', 1465, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '}', 1499, + '\n', 1451, + '\r', 9, + '"', 1688, + '#', 2192, + '$', 1474, + '\'', 1691, + '(', 1470, + ')', 1471, + '+', 2004, + '-', 1492, + '.', 2003, + '0', 1627, + ';', 1454, + 'N', 2051, + '[', 1468, + '_', 2016, + '`', 1695, + 'e', 1993, + 'f', 2019, + 'n', 2047, + 'o', 1994, + 't', 2034, + '{', 1502, + '|', 1455, + '}', 1503, + '\t', 1453, + ' ', 1453, + 'I', 2055, + 'i', 2055, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(627); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || '.' < lookahead) && - (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + lookahead != ']') ADVANCE(2074); END_STATE(); case 628: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2188, - '\'', 1688, - ')', 1468, - '*', 1511, - '+', 702, - '-', 307, - '.', 1726, - ';', 1451, - 'I', 809, - 'N', 805, - '[', 1465, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 798, - 't', 772, - 'u', 785, - 'w', 751, - '}', 1499, + '\n', 1451, + '\r', 9, + '"', 1688, + '#', 2192, + '\'', 1691, + '(', 1470, + ')', 1471, + '*', 1514, + '+', 705, + '-', 302, + '.', 721, + ';', 1454, + '<', 1144, + '=', 676, + '>', 1483, + '@', 1485, + 'I', 812, + 'N', 808, + '[', 1468, + '_', 719, + '`', 1695, + 'a', 757, + 'c', 724, + 'd', 734, + 'e', 762, + 'f', 726, + 'i', 718, + 'l', 742, + 'm', 728, + 'n', 801, + 't', 775, + 'u', 788, + 'w', 754, + '{', 1502, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(628); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(824); + lookahead == ' ') SKIP(629); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || '.' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'a' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(827); END_STATE(); case 629: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '"', 1685, - '#', 2190, - '$', 1471, - '\'', 1688, - '(', 1467, - '+', 702, - '-', 1491, - '.', 697, - '0', 1623, - ';', 1451, - '@', 1462, - 'I', 809, - 'N', 805, - '[', 1465, - '^', 1731, - '_', 716, - '`', 1692, - 'a', 754, - 'c', 721, - 'd', 731, - 'e', 759, - 'f', 723, - 'i', 715, - 'l', 739, - 'm', 725, - 'n', 769, - 't', 772, - 'u', 785, - 'w', 747, - '{', 1498, + '\n', 1451, + '\r', 9, + '"', 1688, + '#', 2192, + '\'', 1691, + '(', 1470, + ')', 1471, + '*', 1514, + '+', 705, + '-', 302, + '.', 721, + ';', 1454, + '=', 676, + '>', 1483, + 'I', 812, + 'N', 808, + '[', 1468, + '_', 719, + '`', 1695, + 'a', 757, + 'c', 724, + 'd', 734, + 'e', 762, + 'f', 726, + 'i', 718, + 'l', 742, + 'm', 728, + 'n', 801, + 't', 775, + 'u', 788, + 'w', 754, + '{', 1502, + '}', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(629); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1639); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); END_STATE(); case 630: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '.', 1604, - ';', 1451, - '[', 1665, - '_', 1813, - 'e', 1777, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, - '+', 1791, - '-', 1791, + '\n', 1451, + '\r', 9, + '"', 1688, + '#', 2192, + '\'', 1691, + ')', 1471, + '*', 1514, + '+', 705, + '-', 311, + '.', 1730, + ';', 1454, + '?', 1720, + 'I', 812, + 'N', 808, + '[', 1468, + '_', 719, + '`', 1695, + 'a', 757, + 'c', 724, + 'd', 734, + 'e', 762, + 'f', 726, + 'i', 718, + 'l', 742, + 'm', 728, + 'n', 801, + 't', 775, + 'u', 788, + 'w', 754, + '}', 1503, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + if (lookahead == '\t' || + lookahead == ' ') SKIP(630); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ']' && - lookahead != '_' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1934); + (lookahead < '\'' || '.' < lookahead) && + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'a' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(827); END_STATE(); case 631: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '.', 1604, - ';', 1451, - '_', 1813, - 'a', 1865, - 'e', 1777, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '"', 1688, + '#', 2192, + '\'', 1691, + ')', 1471, + '*', 1514, + '+', 705, + '-', 311, + '.', 1730, + ';', 1454, + 'I', 812, + 'N', 808, + '[', 1468, + '_', 719, + '`', 1695, + 'a', 757, + 'c', 724, + 'd', 734, + 'e', 762, + 'f', 726, + 'i', 718, + 'l', 742, + 'm', 728, + 'n', 801, + 't', 775, + 'u', 788, + 'w', 754, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(634); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(631); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); END_STATE(); case 632: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '.', 1815, - ';', 1451, - '_', 1813, - 'a', 1865, - 'e', 1777, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '"', 1688, + '#', 2194, + '$', 1474, + '\'', 1691, + '(', 1470, + '+', 705, + '-', 1495, + '.', 700, + '0', 1626, + ';', 1454, + '@', 1465, + 'I', 812, + 'N', 808, + '[', 1468, + '^', 1735, + '_', 719, + '`', 1695, + 'a', 757, + 'c', 724, + 'd', 734, + 'e', 762, + 'f', 726, + 'i', 718, + 'l', 742, + 'm', 728, + 'n', 772, + 't', 775, + 'u', 788, + 'w', 750, + '{', 1502, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(634); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(632); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'a' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(827); END_STATE(); case 633: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - '(', 1561, - ')', 1468, - '.', 1815, - ';', 1451, - '_', 1813, - 'e', 1777, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, - '+', 1791, - '-', 1791, + '\n', 1451, + '\r', 9, + '#', 2192, + '$', 1473, + '(', 1564, + ')', 1471, + '.', 1607, + ';', 1454, + '[', 1668, + '_', 1817, + 'e', 1781, + 'o', 1783, + '|', 1455, + '}', 1503, + '\t', 1453, + ' ', 1453, + '+', 1795, + '-', 1795, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + lookahead != '_' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1938); END_STATE(); case 634: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '$', 1470, - ')', 1468, - '.', 337, - ';', 1451, - 'a', 421, - 'e', 288, - 'o', 289, - 'x', 431, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '#', 2192, + '$', 1473, + '(', 1564, + ')', 1471, + '.', 1607, + ';', 1454, + '_', 1817, + 'a', 1869, + 'e', 1781, + 'o', 1782, + 'x', 1875, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(634); + lookahead == ' ') SKIP(637); if (lookahead == '+' || - lookahead == '-') ADVANCE(314); + lookahead == '-') ADVANCE(1795); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); END_STATE(); case 635: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1595, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'd', 1824, - 'e', 1767, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1778, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '\n', 1451, + '\r', 9, + '#', 2192, + '$', 1473, + '(', 1564, + ')', 1471, + '.', 1819, + ';', 1454, + '_', 1817, + 'a', 1869, + 'e', 1781, + 'o', 1782, + 'x', 1875, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(637); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1795); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); END_STATE(); case 636: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1595, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1767, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1779, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - '}', 1499, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '\n', 1451, + '\r', 9, + '#', 2192, + '$', 1473, + '(', 1564, + ')', 1471, + '.', 1819, + ';', 1454, + '_', 1817, + 'e', 1781, + 'o', 1783, + '|', 1455, + '}', 1503, + '\t', 1453, + ' ', 1453, + '+', 1795, + '-', 1795, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); END_STATE(); case 637: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1595, - ';', 1451, - 'E', 1819, - 'a', 1865, - 'e', 1769, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '#', 2192, + '$', 1473, + ')', 1471, + '.', 340, + ';', 1454, + 'a', 423, + 'e', 292, + 'o', 293, + 'x', 433, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == ' ') SKIP(637); + if (lookahead == '+' || + lookahead == '-') ADVANCE(318); END_STATE(); case 638: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1595, - ';', 1451, - 'E', 1819, - 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1564, + ')', 1471, + '.', 1598, + ';', 1454, + 'E', 1811, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + 'a', 1869, + 'd', 1828, + 'e', 1771, + 'g', 1813, + 'h', 1882, + 'k', 1813, + 'm', 1816, + 'n', 1895, + 'o', 1782, + 'p', 1813, + 's', 1843, + 't', 1813, + 'u', 1895, + 'w', 1862, + 'x', 1875, + '|', 1455, + '}', 1503, + 0xb5, 1895, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(663); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 639: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'a', 1865, - 'd', 1824, - 'e', 1767, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1778, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1564, + ')', 1471, + '.', 1598, + ';', 1454, + 'E', 1811, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + 'd', 1828, + 'e', 1771, + 'g', 1813, + 'h', 1882, + 'k', 1813, + 'm', 1816, + 'n', 1895, + 'o', 1783, + 'p', 1813, + 's', 1843, + 't', 1813, + 'u', 1895, + 'w', 1862, + '|', 1455, + '}', 1503, + 0xb5, 1895, + '\t', 1453, + ' ', 1453, + 'B', 1656, + 'b', 1656, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 640: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - '_', 1813, - 'd', 1824, - 'e', 1767, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1779, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - '}', 1499, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1564, + ')', 1471, + '.', 1598, + ';', 1454, + 'E', 1823, + 'a', 1869, + 'e', 1773, + 'o', 1782, + 'x', 1875, + '|', 1455, + '}', 1503, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(663); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 641: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'd', 1824, - 'e', 1767, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1778, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1564, + ')', 1471, + '.', 1598, + ';', 1454, + 'E', 1823, + 'e', 1773, + 'o', 1783, + '|', 1455, + '}', 1503, + '\t', 1453, + ' ', 1453, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 642: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1807, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1767, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1779, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - '}', 1499, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1564, + ')', 1471, + '.', 1794, + ';', 1454, + 'E', 1811, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + '_', 1817, + 'a', 1869, + 'd', 1828, + 'e', 1771, + 'g', 1813, + 'h', 1882, + 'k', 1813, + 'm', 1816, + 'n', 1895, + 'o', 1782, + 'p', 1813, + 's', 1843, + 't', 1813, + 'u', 1895, + 'w', 1862, + 'x', 1875, + '|', 1455, + '}', 1503, + 0xb5, 1895, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(663); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 643: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'a', 1865, - 'd', 1824, - 'e', 1775, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1778, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - 'x', 1871, - '|', 1452, - '}', 1499, - 0xb5, 1891, + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1564, + ')', 1471, + '.', 1794, + ';', 1454, + 'E', 1811, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + '_', 1817, + 'd', 1828, + 'e', 1771, + 'g', 1813, + 'h', 1882, + 'k', 1813, + 'm', 1816, + 'n', 1895, + 'o', 1783, + 'p', 1813, + 's', 1843, + 't', 1813, + 'u', 1895, + 'w', 1862, + '|', 1455, + '}', 1503, + 0xb5, 1895, + '\t', 1453, + ' ', 1453, + 'B', 1656, + 'b', 1656, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 644: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1810, - 'G', 1810, - 'K', 1810, - 'M', 1810, - 'P', 1810, - 'T', 1810, - 'd', 1824, - 'e', 1775, - 'g', 1809, - 'h', 1878, - 'k', 1809, - 'm', 1812, - 'n', 1891, - 'o', 1779, - 'p', 1809, - 's', 1839, - 't', 1809, - 'u', 1891, - 'w', 1858, - '|', 1452, - '}', 1499, - 0xb5, 1891, - '\t', 1450, - ' ', 1450, - 'B', 1653, - 'b', 1653, + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1564, + ')', 1471, + '.', 1794, + ';', 1454, + 'E', 1811, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + 'a', 1869, + 'd', 1828, + 'e', 1771, + 'g', 1813, + 'h', 1882, + 'k', 1813, + 'm', 1816, + 'n', 1895, + 'o', 1782, + 'p', 1813, + 's', 1843, + 't', 1813, + 'u', 1895, + 'w', 1862, + 'x', 1875, + '|', 1455, + '}', 1503, + 0xb5, 1895, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(663); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 645: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'e', 1769, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1564, + ')', 1471, + '.', 1794, + ';', 1454, + 'E', 1811, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + 'd', 1828, + 'e', 1771, + 'g', 1813, + 'h', 1882, + 'k', 1813, + 'm', 1816, + 'n', 1895, + 'o', 1783, + 'p', 1813, + 's', 1843, + 't', 1813, + 'u', 1895, + 'w', 1862, + '|', 1455, + '}', 1503, + 0xb5, 1895, + '\t', 1453, + ' ', 1453, + 'B', 1656, + 'b', 1656, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 646: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1819, - '_', 1813, - 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1564, + ')', 1471, + '.', 1794, + ';', 1454, + 'E', 1814, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + 'a', 1869, + 'd', 1828, + 'e', 1779, + 'g', 1813, + 'h', 1882, + 'k', 1813, + 'm', 1816, + 'n', 1895, + 'o', 1782, + 'p', 1813, + 's', 1843, + 't', 1813, + 'u', 1895, + 'w', 1862, + 'x', 1875, + '|', 1455, + '}', 1503, + 0xb5, 1895, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(663); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 647: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1819, - 'a', 1865, - 'e', 1769, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1564, + ')', 1471, + '.', 1794, + ';', 1454, + 'E', 1814, + 'G', 1814, + 'K', 1814, + 'M', 1814, + 'P', 1814, + 'T', 1814, + 'd', 1828, + 'e', 1779, + 'g', 1813, + 'h', 1882, + 'k', 1813, + 'm', 1816, + 'n', 1895, + 'o', 1783, + 'p', 1813, + 's', 1843, + 't', 1813, + 'u', 1895, + 'w', 1862, + '|', 1455, + '}', 1503, + 0xb5, 1895, + '\t', 1453, + ' ', 1453, + 'B', 1656, + 'b', 1656, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 648: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'E', 1819, - 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1564, + ')', 1471, + '.', 1794, + ';', 1454, + 'E', 1823, + '_', 1817, + 'a', 1869, + 'e', 1773, + 'o', 1782, + 'x', 1875, + '|', 1455, + '}', 1503, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(663); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 649: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'a', 1865, - 'e', 1777, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1564, + ')', 1471, + '.', 1794, + ';', 1454, + 'E', 1823, + '_', 1817, + 'e', 1773, + 'o', 1783, + '|', 1455, + '}', 1503, + '\t', 1453, + ' ', 1453, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 650: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1790, - ';', 1451, - 'e', 1777, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1564, + ')', 1471, + '.', 1794, + ';', 1454, + 'E', 1823, + 'a', 1869, + 'e', 1773, + 'o', 1782, + 'x', 1875, + '|', 1455, + '}', 1503, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(663); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 651: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1594, - ';', 1451, - 'E', 1819, - 'a', 1865, - 'e', 1769, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1564, + ')', 1471, + '.', 1794, + ';', 1454, + 'E', 1823, + 'e', 1773, + 'o', 1783, + '|', 1455, + '}', 1503, + '\t', 1453, + ' ', 1453, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 652: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - '.', 1594, - ';', 1451, - 'E', 1819, - 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1564, + ')', 1471, + '.', 1794, + ';', 1454, + 'a', 1869, + 'e', 1781, + 'o', 1782, + 'x', 1875, + '|', 1455, + '}', 1503, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(663); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 653: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'E', 1819, - '_', 1813, - 'a', 1865, - 'e', 1769, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1564, + ')', 1471, + '.', 1794, + ';', 1454, + 'e', 1781, + 'o', 1783, + '|', 1455, + '}', 1503, + '\t', 1453, + ' ', 1453, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 654: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'E', 1819, - '_', 1813, - 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1564, + ')', 1471, + '.', 1597, + ';', 1454, + 'E', 1823, + 'a', 1869, + 'e', 1773, + 'o', 1782, + 'x', 1875, + '|', 1455, + '}', 1503, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(663); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 655: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'E', 1819, - 'a', 1865, - 'e', 1769, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1564, + ')', 1471, + '.', 1597, + ';', 1454, + 'E', 1823, + 'e', 1773, + 'o', 1783, + '|', 1455, + '}', 1503, + '\t', 1453, + ' ', 1453, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 656: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'E', 1819, - 'e', 1769, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1564, + ')', 1471, + ';', 1454, + 'E', 1823, + '_', 1817, + 'a', 1869, + 'e', 1773, + 'o', 1782, + 'x', 1875, + '|', 1455, + '}', 1503, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(663); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 657: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'a', 1865, - 'e', 1777, - 'o', 1778, - 'x', 1871, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1564, + ')', 1471, + ';', 1454, + 'E', 1823, + '_', 1817, + 'e', 1773, + 'o', 1783, + '|', 1455, + '}', 1503, + '\t', 1453, + ' ', 1453, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(660); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 658: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - '(', 1561, - ')', 1468, - ';', 1451, - 'e', 1777, - 'o', 1779, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1564, + ')', 1471, + ';', 1454, + 'E', 1823, + 'a', 1869, + 'e', 1773, + 'o', 1782, + 'x', 1875, + '|', 1455, + '}', 1503, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '\t' || + lookahead == ' ') SKIP(663); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 659: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - ')', 1468, - ';', 1451, - '=', 1729, - 'e', 1756, - 'o', 1757, - '|', 1452, - '}', 1499, - '\t', 1450, - ' ', 1450, + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1564, + ')', 1471, + ';', 1454, + 'E', 1823, + 'e', 1773, + 'o', 1783, + '|', 1455, + '}', 1503, + '\t', 1453, + ' ', 1453, ); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 660: - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '#', 2188, - ')', 1468, - ';', 1451, - 'a', 421, - 'e', 288, - 'o', 289, - 'x', 431, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1564, + ')', 1471, + ';', 1454, + 'a', 1869, + 'e', 1781, + 'o', 1782, + 'x', 1875, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(660); + lookahead == ' ') SKIP(663); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 661: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (eof) ADVANCE(664); + ADVANCE_MAP( + '\n', 1451, + '\r', 9, + '#', 2192, + '(', 1564, + ')', 1471, + ';', 1454, + 'e', 1781, + 'o', 1783, + '|', 1455, + '}', 1503, + '\t', 1453, + ' ', 1453, + ); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 662: - ACCEPT_TOKEN(anon_sym_POUND_BANG); + if (eof) ADVANCE(664); + ADVANCE_MAP( + '\n', 1451, + '\r', 9, + '#', 2192, + ')', 1471, + ';', 1454, + '=', 1733, + 'e', 1760, + 'o', 1761, + '|', 1455, + '}', 1503, + '\t', 1453, + ' ', 1453, + ); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1766); END_STATE(); case 663: - ACCEPT_TOKEN(aux_sym_shebang_token1); + if (eof) ADVANCE(664); + ADVANCE_MAP( + '\n', 1451, + '\r', 9, + '#', 2192, + ')', 1471, + ';', 1454, + 'a', 423, + 'e', 292, + 'o', 293, + 'x', 433, + '|', 1455, + '}', 1503, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(663); END_STATE(); case 664: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(663); - if (lookahead == '\r') ADVANCE(665); - if (lookahead == '#') ADVANCE(2189); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(664); - if (lookahead != 0) ADVANCE(665); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 665: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(663); - if (lookahead == '\r') ADVANCE(665); - if (lookahead != 0) ADVANCE(665); + ACCEPT_TOKEN(anon_sym_POUND_BANG); END_STATE(); case 666: - ACCEPT_TOKEN(anon_sym_export); + ACCEPT_TOKEN(aux_sym_shebang_token1); END_STATE(); case 667: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(1395); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(aux_sym_shebang_token1); + if (lookahead == '\n') ADVANCE(666); + if (lookahead == '\r') ADVANCE(668); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(667); + if (lookahead != 0) ADVANCE(668); END_STATE(); case 668: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(742); + ACCEPT_TOKEN(aux_sym_shebang_token1); + if (lookahead == '\n') ADVANCE(666); + if (lookahead == '\r') ADVANCE(668); + if (lookahead != 0) ADVANCE(668); END_STATE(); case 669: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); END_STATE(); case 670: - ACCEPT_TOKEN(anon_sym_alias); + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '-') ADVANCE(1398); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 671: - ACCEPT_TOKEN(anon_sym_alias); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '-') ADVANCE(745); END_STATE(); case 672: - ACCEPT_TOKEN(anon_sym_alias); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '-') ADVANCE(905); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 673: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_alias); END_STATE(); case 674: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(1547); - if (lookahead == '~') ADVANCE(1553); + ACCEPT_TOKEN(anon_sym_alias); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 675: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(1500); + ACCEPT_TOKEN(anon_sym_alias); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 676: - ACCEPT_TOKEN(anon_sym_let); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 677: - ACCEPT_TOKEN(anon_sym_let); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(1550); + if (lookahead == '~') ADVANCE(1556); END_STATE(); case 678: - ACCEPT_TOKEN(anon_sym_let); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(1504); END_STATE(); case 679: - ACCEPT_TOKEN(anon_sym_mut); + ACCEPT_TOKEN(anon_sym_let); END_STATE(); case 680: - ACCEPT_TOKEN(anon_sym_mut); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_let); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 681: - ACCEPT_TOKEN(anon_sym_mut); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_let); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 682: - ACCEPT_TOKEN(anon_sym_const); + ACCEPT_TOKEN(anon_sym_mut); END_STATE(); case 683: - ACCEPT_TOKEN(anon_sym_const); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_mut); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 684: - ACCEPT_TOKEN(anon_sym_const); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_mut); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 685: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 686: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_const); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 687: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_const); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 688: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 689: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 690: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '$') ADVANCE(1617); - if (lookahead == '(') ADVANCE(1591); - if (lookahead == '{') ADVANCE(1706); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 691: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(766); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'l') ADVANCE(786); - if (lookahead == 'r') ADVANCE(775); - if (lookahead == 'x') ADVANCE(771); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 692: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(767); - if (lookahead == '>') ADVANCE(526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); END_STATE(); case 693: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(745); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'u') ADVANCE(795); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '$') ADVANCE(1620); + if (lookahead == '(') ADVANCE(1594); + if (lookahead == '{') ADVANCE(1709); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 694: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(744); - if (lookahead == '>') ADVANCE(528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '+') ADVANCE(769); + if (lookahead == '>') ADVANCE(524); + if (lookahead == 'l') ADVANCE(789); + if (lookahead == 'r') ADVANCE(778); + if (lookahead == 'x') ADVANCE(774); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 695: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(821); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '+') ADVANCE(770); + if (lookahead == '>') ADVANCE(527); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 696: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(804); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '+') ADVANCE(748); + if (lookahead == '>') ADVANCE(525); + if (lookahead == 'u') ADVANCE(798); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 697: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1507); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '+') ADVANCE(747); + if (lookahead == '>') ADVANCE(529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 698: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1504); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '-') ADVANCE(824); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 699: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(690); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '.') ADVANCE(807); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 700: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1593); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '.') ADVANCE(1511); + if (lookahead == '_') ADVANCE(721); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 701: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(699); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '.') ADVANCE(1508); + if (lookahead == '_') ADVANCE(721); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 702: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(717); - if (lookahead == '_') ADVANCE(702); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '.') ADVANCE(693); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 703: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ':') ADVANCE(555); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '.') ADVANCE(1596); + if (lookahead == '_') ADVANCE(721); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 704: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(525); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '.') ADVANCE(702); + if (lookahead == '_') ADVANCE(721); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 705: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '.') ADVANCE(720); + if (lookahead == '_') ADVANCE(705); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 706: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == ':') ADVANCE(556); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 707: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(530); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '>') ADVANCE(526); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 708: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - 'I', 806, - '_', 719, - 'i', 806, - 'l', 786, - 'x', 771, - '+', 719, - '-', 719, - 'B', 1653, - 'b', 1653, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '>') ADVANCE(528); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 709: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(806); - if (lookahead == '_') ADVANCE(719); - if (lookahead == 'i') ADVANCE(726); - if (lookahead == '+' || - lookahead == '-') ADVANCE(719); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '>') ADVANCE(530); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 710: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - 'I', 806, - 'a', 796, - 'i', 763, - 'o', 730, - 's', 1658, - 'u', 791, - 'B', 1653, - 'b', 1653, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '>') ADVANCE(531); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 711: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(806); - if (lookahead == 'i') ADVANCE(806); - if (lookahead == 'l') ADVANCE(786); - if (lookahead == 'x') ADVANCE(771); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ADVANCE_MAP( + 'I', 809, + '_', 722, + 'i', 809, + 'l', 789, + 'x', 774, + '+', 722, + '-', 722, + 'B', 1656, + 'b', 1656, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 712: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(806); - if (lookahead == 'i') ADVANCE(806); - if (lookahead == 'r') ADVANCE(799); + if (lookahead == 'I') ADVANCE(809); + if (lookahead == '_') ADVANCE(722); + if (lookahead == 'i') ADVANCE(729); + if (lookahead == '+' || + lookahead == '-') ADVANCE(722); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + lookahead == 'b') ADVANCE(1656); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 713: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(806); - if (lookahead == 'i') ADVANCE(806); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + ADVANCE_MAP( + 'I', 809, + 'a', 799, + 'i', 766, + 'o', 733, + 's', 1661, + 'u', 794, + 'B', 1656, + 'b', 1656, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 714: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(806); - if (lookahead == 'i') ADVANCE(726); + if (lookahead == 'I') ADVANCE(809); + if (lookahead == 'i') ADVANCE(809); + if (lookahead == 'l') ADVANCE(789); + if (lookahead == 'x') ADVANCE(774); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 715: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(807); - if (lookahead == 'f') ADVANCE(1068); - if (lookahead == 'n') ADVANCE(1084); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'I') ADVANCE(809); + if (lookahead == 'i') ADVANCE(809); + if (lookahead == 'r') ADVANCE(802); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 716: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(716); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'I') ADVANCE(809); + if (lookahead == 'i') ADVANCE(809); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 717: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(717); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'I') ADVANCE(809); + if (lookahead == 'i') ADVANCE(729); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 718: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'N') ADVANCE(810); + if (lookahead == 'f') ADVANCE(1071); + if (lookahead == 'n') ADVANCE(1087); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 719: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(719); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 720: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(720); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 721: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(789); - if (lookahead == 'o') ADVANCE(764); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '_') ADVANCE(721); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 722: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(803); - if (lookahead == 'e') ADVANCE(746); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '_') ADVANCE(722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 723: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(760); - if (lookahead == 'o') ADVANCE(773); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '_') ADVANCE(723); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 724: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(781); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'a') ADVANCE(792); + if (lookahead == 'o') ADVANCE(767); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 725: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(796); - if (lookahead == 'o') ADVANCE(730); - if (lookahead == 'u') ADVANCE(791); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'a') ADVANCE(806); + if (lookahead == 'e') ADVANCE(749); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 726: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'a') ADVANCE(763); + if (lookahead == 'o') ADVANCE(776); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 727: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'a') ADVANCE(784); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 728: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(748); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'a') ADVANCE(799); + if (lookahead == 'o') ADVANCE(733); + if (lookahead == 'u') ADVANCE(794); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 729: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(749); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 730: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(801); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'c') ADVANCE(1661); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 731: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(746); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'c') ADVANCE(751); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 732: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1047); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'c') ADVANCE(752); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 733: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1071); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'd') ADVANCE(804); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 734: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1089); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(749); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 735: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1092); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(1050); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 736: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(1074); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 737: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1065); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(1092); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 738: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1056); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(1095); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 739: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(790); - if (lookahead == 'o') ADVANCE(765); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(1529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 740: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(727); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(1068); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 741: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(778); - if (lookahead == 'i') ADVANCE(757); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(1059); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 742: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(762); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(793); + if (lookahead == 'o') ADVANCE(768); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 743: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(776); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(730); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 744: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(779); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(781); + if (lookahead == 'i') ADVANCE(760); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 745: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(705); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(765); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 746: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(825); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(779); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 747: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(741); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(782); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 748: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1077); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'e') ADVANCE(708); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 749: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1080); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'f') ADVANCE(828); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 750: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(753); - if (lookahead == 'k') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'h') ADVANCE(744); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 751: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(753); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'h') ADVANCE(1080); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 752: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(724); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'h') ADVANCE(1083); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 753: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(757); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'h') ADVANCE(756); + if (lookahead == 'k') ADVANCE(1661); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 754: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(752); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'h') ADVANCE(756); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 755: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1095); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'i') ADVANCE(727); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 756: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(755); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'i') ADVANCE(760); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 757: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(737); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(755); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 758: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(738); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(1098); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 759: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(786); - if (lookahead == 'x') ADVANCE(771); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(758); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 760: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(788); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(740); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 761: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1053); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(741); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 762: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(802); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(789); + if (lookahead == 'x') ADVANCE(774); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 763: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'l') ADVANCE(791); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 764: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(787); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'n') ADVANCE(1056); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 765: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(770); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'n') ADVANCE(805); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 766: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(704); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'n') ADVANCE(1661); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 767: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(800); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'n') ADVANCE(790); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 768: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(777); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'o') ADVANCE(773); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 769: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(792); - if (lookahead == 'u') ADVANCE(756); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(810); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'o') ADVANCE(707); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 770: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1062); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'o') ADVANCE(803); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 771: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(768); - if (lookahead == 't') ADVANCE(743); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'o') ADVANCE(780); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 772: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(799); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'o') ADVANCE(795); + if (lookahead == 'u') ADVANCE(759); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(813); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 773: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1059); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'p') ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 774: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'p') ADVANCE(771); + if (lookahead == 't') ADVANCE(746); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 775: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(692); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(802); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 776: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(761); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(1062); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 777: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(794); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(1661); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 778: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(736); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(695); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 779: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(780); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(764); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 780: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(707); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(797); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 781: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(670); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(739); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 782: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1658); - if (lookahead == 'u') ADVANCE(756); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(810); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(783); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 783: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'r') ADVANCE(710); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 784: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1659); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(673); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 785: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(732); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(1661); + if (lookahead == 'u') ADVANCE(759); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(813); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 786: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(733); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(1661); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 787: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(793); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(1662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 788: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 's') ADVANCE(735); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 789: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(728); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(736); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 790: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(676); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(796); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 791: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(679); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 's') ADVANCE(738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 792: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(815); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 793: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(682); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(679); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 794: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(668); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(682); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 795: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(694); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(818); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 796: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(729); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(685); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 797: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(706); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(671); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 798: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(756); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(810); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(697); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 799: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(734); - if (lookahead == 'y') ADVANCE(1074); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(732); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 800: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(797); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 't') ADVANCE(709); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 801: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(758); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'u') ADVANCE(759); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(813); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 802: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'v') ADVANCE(1050); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'u') ADVANCE(737); + if (lookahead == 'y') ADVANCE(1077); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 803: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'u') ADVANCE(800); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 804: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '{') ADVANCE(1706); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'u') ADVANCE(761); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 805: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(810); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'v') ADVANCE(1053); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 806: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'y') ADVANCE(1661); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 807: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1099); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '{') ADVANCE(1709); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 808: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(812); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(813); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 809: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(807); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 810: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1109); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1102); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 811: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(808); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(815); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 812: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(813); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(810); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 813: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1098); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1112); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 814: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(1649); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(811); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 815: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(816); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 816: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1650); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1101); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 817: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(695); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(1652); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 818: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1563); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 819: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(703); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(1653); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 820: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(817); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(698); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 821: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(818); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1677); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 822: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(819); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(706); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 823: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1648); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(820); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 824: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(821); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 825: - ACCEPT_TOKEN(anon_sym_def); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(822); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 826: - ACCEPT_TOKEN(anon_sym_def); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1651); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 827: - ACCEPT_TOKEN(anon_sym_def); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); END_STATE(); case 828: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(900); - if (lookahead == '>') ADVANCE(1739); - if (lookahead == 'r') ADVANCE(1532); - if (lookahead == 'u') ADVANCE(993); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_def); END_STATE(); case 829: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(945); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'n') ADVANCE(889); - if (lookahead == 'r') ADVANCE(960); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_def); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 830: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(901); - if (lookahead == '>') ADVANCE(1735); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_def); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 831: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(947); - if (lookahead == '>') ADVANCE(1733); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(903); + if (lookahead == '>') ADVANCE(1743); + if (lookahead == 'r') ADVANCE(1535); + if (lookahead == 'u') ADVANCE(996); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 832: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(903); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'r') ADVANCE(1532); - if (lookahead == 'u') ADVANCE(999); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(948); + if (lookahead == '>') ADVANCE(1741); + if (lookahead == 'n') ADVANCE(892); + if (lookahead == 'r') ADVANCE(963); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 833: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(953); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'n') ADVANCE(889); - if (lookahead == 'r') ADVANCE(966); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(904); + if (lookahead == '>') ADVANCE(1739); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 834: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(955); - if (lookahead == '>') ADVANCE(526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(950); + if (lookahead == '>') ADVANCE(1737); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 835: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == '+') ADVANCE(906); - if (lookahead == '>') ADVANCE(528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(525); + if (lookahead == 'r') ADVANCE(1535); + if (lookahead == 'u') ADVANCE(1002); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 836: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1036); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(956); + if (lookahead == '>') ADVANCE(524); + if (lookahead == 'n') ADVANCE(892); + if (lookahead == 'r') ADVANCE(969); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 837: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(880); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(958); + if (lookahead == '>') ADVANCE(527); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 838: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(907); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(909); + if (lookahead == '>') ADVANCE(529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 839: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1039); + if (lookahead == '_') ADVANCE(869); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 840: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1485); - if (lookahead == '.') ADVANCE(866); - if (lookahead == '_') ADVANCE(848); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(883); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 841: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1038); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(910); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 842: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1016); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1018); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 843: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1042); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1489); + if (lookahead == '.') ADVANCE(869); + if (lookahead == '_') ADVANCE(851); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1028); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 844: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1017); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1041); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 845: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1018); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1019); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 846: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1044); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 847: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '.') ADVANCE(866); - if (lookahead == '_') ADVANCE(848); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1020); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 848: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '.') ADVANCE(866); - if (lookahead == '_') ADVANCE(848); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1021); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 849: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '.') ADVANCE(1508); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-') ADVANCE(1047); + if (lookahead == '_') ADVANCE(869); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 850: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ':') ADVANCE(555); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '.') ADVANCE(869); + if (lookahead == '_') ADVANCE(851); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1028); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 851: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ':') ADVANCE(2069); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '.') ADVANCE(869); + if (lookahead == '_') ADVANCE(851); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 852: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '=') ADVANCE(1548); - if (lookahead == '~') ADVANCE(1555); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '.') ADVANCE(1512); + if (lookahead == '_') ADVANCE(869); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 853: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1747); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == ':') ADVANCE(556); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 854: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1745); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == ':') ADVANCE(2073); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 855: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1741); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '=') ADVANCE(1551); + if (lookahead == '~') ADVANCE(1558); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 856: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1743); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(1751); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 857: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(525); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(1749); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 858: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(1745); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 859: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(1747); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 860: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(530); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(526); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 861: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'N') ADVANCE(1021); - if (lookahead == 'f') ADVANCE(1070); - if (lookahead == 'n') ADVANCE(1085); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(528); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 862: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'T') ADVANCE(1039); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(530); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 863: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'T') ADVANCE(1040); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '>') ADVANCE(531); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 864: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (lookahead == 'b') ADVANCE(1652); - if (lookahead == 'o') ADVANCE(1662); - if (lookahead == 'x') ADVANCE(1664); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(868); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'N') ADVANCE(1024); + if (lookahead == 'f') ADVANCE(1073); + if (lookahead == 'n') ADVANCE(1088); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 865: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (lookahead == 'b') ADVANCE(1652); - if (lookahead == 'o') ADVANCE(1662); - if (lookahead == 'x') ADVANCE(1664); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(871); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'T') ADVANCE(1042); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 866: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'T') ADVANCE(1043); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 867: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(836); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(869); + if (lookahead == 'b') ADVANCE(1655); + if (lookahead == 'o') ADVANCE(1665); + if (lookahead == 'x') ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(871); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 868: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(867); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(869); + if (lookahead == 'b') ADVANCE(1655); + if (lookahead == 'o') ADVANCE(1665); + if (lookahead == 'x') ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(874); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 869: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(868); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(869); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 870: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(846); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(869); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(839); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 871: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); + if (lookahead == '_') ADVANCE(869); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(870); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 872: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(866); + if (lookahead == '_') ADVANCE(869); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(871); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 873: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(928); - if (lookahead == 'o') ADVANCE(965); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(869); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(849); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 874: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(928); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(869); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(873); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 875: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(975); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '_') ADVANCE(869); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(874); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 876: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(969); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(931); + if (lookahead == 'o') ADVANCE(968); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 877: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(976); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 878: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(977); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(978); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 879: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(987); - if (lookahead == 'o') ADVANCE(942); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(972); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 880: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(941); - if (lookahead == 'o') ADVANCE(962); - if (lookahead == 's') ADVANCE(909); - if (lookahead == 'x') ADVANCE(954); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(979); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 881: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(1003); - if (lookahead == 'o') ADVANCE(888); - if (lookahead == 'u') ADVANCE(989); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(980); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 882: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(974); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(990); + if (lookahead == 'o') ADVANCE(945); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 883: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'c') ADVANCE(914); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(944); + if (lookahead == 'o') ADVANCE(965); + if (lookahead == 's') ADVANCE(912); + if (lookahead == 'x') ADVANCE(957); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 884: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'c') ADVANCE(915); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(1006); + if (lookahead == 'o') ADVANCE(891); + if (lookahead == 'u') ADVANCE(992); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 885: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'a') ADVANCE(977); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 886: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1572); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'c') ADVANCE(917); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 887: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1586); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'c') ADVANCE(918); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 888: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1013); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'd') ADVANCE(1531); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 889: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(979); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'd') ADVANCE(1575); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 890: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'd') ADVANCE(1589); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 891: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1091); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'd') ADVANCE(1016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 892: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1094); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'd') ADVANCE(982); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 893: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1557); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'd') ADVANCE(987); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 894: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1559); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1094); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 895: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(908); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1097); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 896: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1049); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1560); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 897: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1073); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1562); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 898: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1067); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(911); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 899: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1058); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1052); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 900: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(854); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1076); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 901: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(970); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1070); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 902: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(940); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(1061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 903: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(858); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(857); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 904: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(968); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(973); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 905: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(988); - if (lookahead == 'o') ADVANCE(946); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(943); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 906: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(972); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(861); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 907: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(943); - if (lookahead == 'h') ADVANCE(877); - if (lookahead == 'i') ADVANCE(938); - if (lookahead == 'l') ADVANCE(924); - if (lookahead == 's') ADVANCE(1007); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(971); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 908: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'f') ADVANCE(827); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(991); + if (lookahead == 'o') ADVANCE(949); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 909: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(930); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(975); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 910: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1544); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'e') ADVANCE(946); + if (lookahead == 'h') ADVANCE(880); + if (lookahead == 'i') ADVANCE(941); + if (lookahead == 'l') ADVANCE(927); + if (lookahead == 's') ADVANCE(1010); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 911: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1540); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'f') ADVANCE(830); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 912: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1546); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(933); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 913: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1542); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(1547); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 914: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1079); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(1543); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 915: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1082); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(1549); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 916: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(919); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(1545); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 917: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(926); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(1082); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 918: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(992); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(1085); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 919: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(933); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'h') ADVANCE(922); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 920: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(994); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(929); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 921: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(995); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 922: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(1000); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(936); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 923: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(1001); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(997); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 924: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(927); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(1001); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 925: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(878); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(1003); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 926: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'k') ADVANCE(893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(1004); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 927: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'k') ADVANCE(894); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(930); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 928: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(978); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'i') ADVANCE(881); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 929: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(1097); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'k') ADVANCE(896); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 930: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(1582); - if (lookahead == 'r') ADVANCE(1584); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'k') ADVANCE(897); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 931: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(929); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(981); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 932: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(925); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(1100); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 933: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(898); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(1585); + if (lookahead == 'r') ADVANCE(1587); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 934: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(899); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(932); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 935: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(981); - if (lookahead == 'x') ADVANCE(958); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(928); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 936: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(885); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(901); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 937: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1088); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(902); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 938: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1534); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'l') ADVANCE(984); + if (lookahead == 'x') ADVANCE(961); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 939: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1055); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(888); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 940: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1014); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(1091); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 941: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(887); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(1537); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 942: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(982); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(1058); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 943: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(890); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(1017); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 944: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(986); - if (lookahead == 'u') ADVANCE(931); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(890); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 945: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(853); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(985); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 946: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(957); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'n') ADVANCE(893); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 947: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(1011); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(989); + if (lookahead == 'u') ADVANCE(934); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1027); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 948: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(961); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(856); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 949: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(886); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(960); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 950: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(996); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(1014); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 951: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(942); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(964); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 952: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(888); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(889); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 953: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(857); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(999); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 954: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(963); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(945); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 955: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(1012); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(891); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 956: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(973); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(860); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 957: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'p') ADVANCE(1064); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(966); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 958: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'p') ADVANCE(956); - if (lookahead == 't') ADVANCE(904); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(1015); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 959: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1009); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'o') ADVANCE(976); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 960: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(831); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'p') ADVANCE(1067); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 961: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1530); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'p') ADVANCE(959); + if (lookahead == 't') ADVANCE(907); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 962: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1590); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1012); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 963: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1588); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(834); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 964: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1008); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1533); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 965: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1061); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1593); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 966: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(834); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1591); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 967: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(856); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1011); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 968: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(939); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1064); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 969: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1005); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(837); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 970: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(967); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(859); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 971: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(860); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(942); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 972: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(971); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1008); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 973: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(991); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(970); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 974: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1006); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(863); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 975: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(1536); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(974); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 976: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(1538); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(994); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 977: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'r') ADVANCE(1009); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 978: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(892); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(1539); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 979: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(839); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(1541); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 980: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(896); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(675); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 981: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(897); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(895); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 982: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(990); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(842); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 983: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(842); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(899); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 984: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(844); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(900); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 985: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(845); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(993); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 986: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(1031); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(845); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 987: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(883); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(847); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 988: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(678); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 's') ADVANCE(848); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 989: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(1034); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 990: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(684); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(886); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 991: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(669); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 992: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(837); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(684); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 993: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(830); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(687); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 994: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(910); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 995: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(876); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(840); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 996: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(838); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(833); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 997: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(855); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(913); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 998: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(911); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(879); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 999: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(835); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(841); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1000: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(912); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(858); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1001: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(913); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(914); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1002: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(859); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(838); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1003: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(884); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(915); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1004: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(904); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(916); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1005: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(983); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(862); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1006: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(985); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(887); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1007: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(882); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(907); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1008: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(891); - if (lookahead == 'y') ADVANCE(1076); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(986); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1009: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(891); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(988); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1010: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(931); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 't') ADVANCE(885); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1011: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(997); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'u') ADVANCE(894); + if (lookahead == 'y') ADVANCE(1079); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1012: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(1002); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'u') ADVANCE(894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1013: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'u') ADVANCE(934); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1027); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1014: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'v') ADVANCE(1052); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'u') ADVANCE(1000); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1015: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'w') ADVANCE(920); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'u') ADVANCE(1005); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1016: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'w') ADVANCE(921); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'u') ADVANCE(937); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1017: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'w') ADVANCE(922); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'v') ADVANCE(1055); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1018: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'w') ADVANCE(923); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1019: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'x') ADVANCE(1004); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'w') ADVANCE(924); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1020: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'w') ADVANCE(925); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1021: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1023); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'w') ADVANCE(926); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1022: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1027); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'x') ADVANCE(1007); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1023: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1026); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1027); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1024: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1046); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1026); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1025: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1021); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1030); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1026: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1022); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1029); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1027: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1028); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1028: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1046); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1024); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1029: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(1029); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1025); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1030: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-' || - lookahead == '.' || - lookahead == '?' || - lookahead == '@') ADVANCE(1046); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1030); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1031); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1031: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1032: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '7') || + if (lookahead == '0' || + lookahead == '1' || lookahead == '_') ADVANCE(1032); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1033: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(841); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '-' || + lookahead == '.' || + lookahead == '?' || + lookahead == '@') ADVANCE(1049); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1033); END_STATE(); case 1034: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(862); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1563); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1035: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(850); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(1035); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1036: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1033); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(844); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1037: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(851); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(865); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1038: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1034); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(853); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1039: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1035); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1036); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1040: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1037); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(854); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1041: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(863); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1037); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1042: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1038); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1043: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(843); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1040); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1044: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1043); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1045: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1045); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1044); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1046: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(846); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1047: - ACCEPT_TOKEN(anon_sym_use); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1048: - ACCEPT_TOKEN(anon_sym_use); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1048); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1049: - ACCEPT_TOKEN(anon_sym_use); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1050: - ACCEPT_TOKEN(anon_sym_export_DASHenv); + ACCEPT_TOKEN(anon_sym_use); END_STATE(); case 1051: - ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_use); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1052: - ACCEPT_TOKEN(anon_sym_export_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_use); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1053: - ACCEPT_TOKEN(anon_sym_extern); + ACCEPT_TOKEN(anon_sym_export_DASHenv); END_STATE(); case 1054: - ACCEPT_TOKEN(anon_sym_extern); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_export_DASHenv); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1055: - ACCEPT_TOKEN(anon_sym_extern); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_export_DASHenv); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1056: - ACCEPT_TOKEN(anon_sym_module); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 1057: - ACCEPT_TOKEN(anon_sym_module); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_extern); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1058: - ACCEPT_TOKEN(anon_sym_module); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_extern); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1059: - ACCEPT_TOKEN(anon_sym_for); + ACCEPT_TOKEN(anon_sym_module); END_STATE(); case 1060: - ACCEPT_TOKEN(anon_sym_for); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_module); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1061: - ACCEPT_TOKEN(anon_sym_for); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_module); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1062: - ACCEPT_TOKEN(anon_sym_loop); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 1063: - ACCEPT_TOKEN(anon_sym_loop); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_for); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1064: - ACCEPT_TOKEN(anon_sym_loop); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_for); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1065: - ACCEPT_TOKEN(anon_sym_while); + ACCEPT_TOKEN(anon_sym_loop); END_STATE(); case 1066: - ACCEPT_TOKEN(anon_sym_while); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_loop); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1067: - ACCEPT_TOKEN(anon_sym_while); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_loop); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1068: - ACCEPT_TOKEN(anon_sym_if); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 1069: - ACCEPT_TOKEN(anon_sym_if); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_while); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1070: - ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_while); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1071: - ACCEPT_TOKEN(anon_sym_else); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 1072: - ACCEPT_TOKEN(anon_sym_else); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_if); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1073: - ACCEPT_TOKEN(anon_sym_else); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_if); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1074: - ACCEPT_TOKEN(anon_sym_try); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 1075: - ACCEPT_TOKEN(anon_sym_try); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_else); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1076: - ACCEPT_TOKEN(anon_sym_try); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_else); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1077: - ACCEPT_TOKEN(anon_sym_catch); + ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 1078: - ACCEPT_TOKEN(anon_sym_catch); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_try); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1079: - ACCEPT_TOKEN(anon_sym_catch); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_try); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1080: - ACCEPT_TOKEN(anon_sym_match); + ACCEPT_TOKEN(anon_sym_catch); END_STATE(); case 1081: - ACCEPT_TOKEN(anon_sym_match); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_catch); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1082: - ACCEPT_TOKEN(anon_sym_match); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_catch); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1083: - ACCEPT_TOKEN(anon_sym_in); + ACCEPT_TOKEN(anon_sym_match); END_STATE(); case 1084: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1099); + ACCEPT_TOKEN(anon_sym_match); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1085: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1023); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_match); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1086: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1441); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); END_STATE(); case 1087: ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1102); END_STATE(); case 1088: ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1026); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1089: - ACCEPT_TOKEN(anon_sym_true); + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1444); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1090: - ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_in); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1091: - ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_in); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1092: - ACCEPT_TOKEN(anon_sym_false); + ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 1093: - ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_true); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1094: - ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_true); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1095: - ACCEPT_TOKEN(anon_sym_null); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 1096: - ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(anon_sym_false); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1097: - ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_false); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1098: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + ACCEPT_TOKEN(anon_sym_null); END_STATE(); case 1099: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(811); + ACCEPT_TOKEN(anon_sym_null); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1100: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2052); + ACCEPT_TOKEN(anon_sym_null); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1101: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2107); END_STATE(); case 1102: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2161); + lookahead == 'i') ADVANCE(814); END_STATE(); case 1103: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(543); + lookahead == 'i') ADVANCE(2056); END_STATE(); case 1104: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2111); END_STATE(); case 1105: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(541); + lookahead == 'i') ADVANCE(2165); END_STATE(); case 1106: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1931); + lookahead == 'i') ADVANCE(544); END_STATE(); case 1107: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2109); END_STATE(); case 1108: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2163); + lookahead == 'i') ADVANCE(542); END_STATE(); case 1109: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1935); END_STATE(); case 1110: - ACCEPT_TOKEN(anon_sym_STAR_STAR); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2113); END_STATE(); case 1111: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2167); END_STATE(); case 1112: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(1110); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); END_STATE(); case 1113: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(1116); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 1114: - ACCEPT_TOKEN(anon_sym_SLASH); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 1115: - ACCEPT_TOKEN(anon_sym_mod); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(1113); END_STATE(); case 1116: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(1119); END_STATE(); case 1117: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1111); + ACCEPT_TOKEN(anon_sym_SLASH); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1118: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_mod); END_STATE(); case 1119: - ACCEPT_TOKEN(anon_sym_bit_DASHshl); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); case 1120: - ACCEPT_TOKEN(anon_sym_bit_DASHshr); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(1114); END_STATE(); case 1121: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 1122: - ACCEPT_TOKEN(anon_sym_BANG_TILDE); + ACCEPT_TOKEN(anon_sym_bit_DASHshl); END_STATE(); case 1123: - ACCEPT_TOKEN(anon_sym_like); + ACCEPT_TOKEN(anon_sym_bit_DASHshr); END_STATE(); case 1124: - ACCEPT_TOKEN(anon_sym_not_DASHlike); + ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); case 1125: - ACCEPT_TOKEN(anon_sym_bit_DASHand); + ACCEPT_TOKEN(anon_sym_BANG_TILDE); END_STATE(); case 1126: - ACCEPT_TOKEN(anon_sym_bit_DASHxor); + ACCEPT_TOKEN(anon_sym_like); END_STATE(); case 1127: - ACCEPT_TOKEN(anon_sym_bit_DASHor); + ACCEPT_TOKEN(anon_sym_not_DASHlike); END_STATE(); case 1128: - ACCEPT_TOKEN(anon_sym_and); + ACCEPT_TOKEN(anon_sym_bit_DASHand); END_STATE(); case 1129: - ACCEPT_TOKEN(anon_sym_xor); + ACCEPT_TOKEN(anon_sym_bit_DASHxor); END_STATE(); case 1130: - ACCEPT_TOKEN(anon_sym_or); + ACCEPT_TOKEN(anon_sym_bit_DASHor); END_STATE(); case 1131: - ACCEPT_TOKEN(anon_sym_in2); + ACCEPT_TOKEN(anon_sym_and); END_STATE(); case 1132: - ACCEPT_TOKEN(anon_sym_not_DASHin); + ACCEPT_TOKEN(anon_sym_xor); END_STATE(); case 1133: - ACCEPT_TOKEN(anon_sym_has); + ACCEPT_TOKEN(anon_sym_or); END_STATE(); case 1134: - ACCEPT_TOKEN(anon_sym_not_DASHhas); + ACCEPT_TOKEN(anon_sym_in2); END_STATE(); case 1135: - ACCEPT_TOKEN(anon_sym_starts_DASHwith); + ACCEPT_TOKEN(anon_sym_not_DASHin); END_STATE(); case 1136: - ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith); + ACCEPT_TOKEN(anon_sym_has); END_STATE(); case 1137: - ACCEPT_TOKEN(anon_sym_ends_DASHwith); + ACCEPT_TOKEN(anon_sym_not_DASHhas); END_STATE(); case 1138: - ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith); + ACCEPT_TOKEN(anon_sym_starts_DASHwith); END_STATE(); case 1139: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith); END_STATE(); case 1140: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_ends_DASHwith); END_STATE(); case 1141: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith); END_STATE(); case 1142: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(1143); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 1143: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 1144: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(1145); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 1145: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(1146); END_STATE(); case 1146: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(21); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 1147: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(1148); END_STATE(); case 1148: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(21); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 1149: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + ')', 1471, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1598, + '/', 1116, + ';', 1454, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, + 'E', 1222, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1193, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1194, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1150: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + ')', 1471, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1598, + '/', 1116, + ';', 1454, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, + 'E', 1222, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1201, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1202, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(21); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1151: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + ')', 1471, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1211, + '/', 1116, + ';', 1454, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, + 'E', 1222, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + '_', 1230, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1193, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1194, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(29); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1152: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + ')', 1471, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1211, + '/', 1116, + ';', 1454, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1193, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + '_', 1230, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1201, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1202, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(21); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(30); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1153: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + ')', 1471, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1211, + '/', 1116, + ';', 1454, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1196, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1193, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1194, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1154: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1194, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1191, - 's', 1302, - 'x', 1275, - '|', 1452, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + ')', 1471, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1211, + '/', 1116, + ';', 1454, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, + 'E', 1222, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1201, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1202, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(21); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1155: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - ')', 1468, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1197, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1199, - 's', 1302, - 'x', 1275, - '|', 1452, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + ')', 1471, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1211, + '/', 1116, + ';', 1454, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, + 'E', 1225, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1196, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1194, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1156: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ':', 1713, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + ')', 1471, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1211, + '/', 1116, + ';', 1454, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, + 'E', 1225, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1199, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1202, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1157: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + ')', 1471, + '*', 1115, + '+', 1120, + '-', 1121, + '/', 1116, + ';', 1454, + '<', 1145, + '=', 323, + '>', 1147, + 'a', 1269, + 'b', 1258, + 'e', 1197, + 'h', 1233, + 'i', 1271, + 'l', 1259, + 'm', 1279, + 'n', 1283, + 'o', 1194, + 's', 1305, + 'x', 1278, + '|', 1455, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1158: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + ')', 1471, + '*', 1115, + '+', 1120, + '-', 1121, + '/', 1116, + ';', 1454, + '<', 1145, + '=', 323, + '>', 1147, + 'a', 1269, + 'b', 1258, + 'e', 1200, + 'h', 1233, + 'i', 1271, + 'l', 1259, + 'm', 1279, + 'n', 1283, + 'o', 1202, + 's', 1305, + 'x', 1278, + '|', 1455, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1159: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1598, + '/', 1116, + ':', 1716, + ';', 1454, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, + 'E', 1222, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1193, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1194, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + '}', 1503, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(31); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1160: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1598, + '/', 1116, + ';', 1454, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, + 'E', 1222, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1193, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1194, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + '}', 1503, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(32); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1161: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ':', 1713, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1598, + '/', 1116, + ';', 1454, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, + 'E', 1222, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1201, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1202, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + '}', 1503, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(33); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1162: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ':', 1713, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1598, + '/', 1116, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, + 'E', 1222, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1193, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1194, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(34); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1163: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ':', 1713, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1598, + '/', 1116, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1193, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1201, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1202, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(35); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1164: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1211, + '/', 1116, + ':', 1716, + ';', 1454, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, + 'E', 1222, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + '_', 1230, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1193, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1194, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + '}', 1503, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(31); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1165: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1211, + '/', 1116, + ':', 1716, + ';', 1454, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, + 'E', 1222, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1193, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1194, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + '}', 1503, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(31); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1166: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1211, + '/', 1116, + ':', 1716, + ';', 1454, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, + 'E', 1225, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1196, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1194, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + '}', 1503, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(31); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1167: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1211, + '/', 1116, + ';', 1454, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, + 'E', 1222, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + '_', 1230, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1193, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1194, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + '}', 1503, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(32); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1168: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1211, + '/', 1116, + ';', 1454, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1193, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + '_', 1230, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1201, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1202, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + '}', 1503, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(33); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1169: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1211, + '/', 1116, + ';', 1454, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1196, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - '}', 1499, - 0xb5, 1294, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1193, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1194, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + '}', 1503, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(32); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1170: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1211, + '/', 1116, + ';', 1454, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, + 'E', 1222, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1201, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1202, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + '}', 1503, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(33); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1171: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1211, + '/', 1116, + ';', 1454, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, + 'E', 1225, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1196, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1194, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + '}', 1503, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(32); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1172: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1211, + '/', 1116, + ';', 1454, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, + 'E', 1225, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1199, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1202, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + '}', 1503, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(33); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1173: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1211, + '/', 1116, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, + 'E', 1222, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + '_', 1230, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1193, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1194, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(34); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1174: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1211, + '/', 1116, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1193, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + '_', 1230, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1201, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1202, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(35); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1175: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1211, + '/', 1116, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1196, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1193, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1194, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(34); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1176: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1194, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1191, - 's', 1302, - 'x', 1275, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1211, + '/', 1116, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, + 'E', 1222, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1201, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1202, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(35); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1177: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1197, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1199, - 's', 1302, - 'x', 1275, - '|', 1452, - '}', 1499, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1211, + '/', 1116, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, + 'E', 1225, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1196, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1194, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(34); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1178: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1194, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1191, - 's', 1302, - 'x', 1275, - '|', 1452, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1211, + '/', 1116, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, + 'E', 1225, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1199, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1202, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(35); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1179: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '/', 1116, + ';', 1454, + '<', 1145, + '=', 323, + '>', 1147, + 'a', 1269, + 'b', 1258, 'e', 1197, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1199, - 's', 1302, - 'x', 1275, - '|', 1452, + 'h', 1233, + 'i', 1271, + 'l', 1259, + 'm', 1279, + 'n', 1283, + 'o', 1194, + 's', 1305, + 'x', 1278, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(32); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1180: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1594, - '/', 1113, - ':', 1713, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '/', 1116, + ';', 1454, + '<', 1145, + '=', 323, + '>', 1147, + 'a', 1269, + 'b', 1258, + 'e', 1200, + 'h', 1233, + 'i', 1271, + 'l', 1259, + 'm', 1279, + 'n', 1283, + 'o', 1202, + 's', 1305, + 'x', 1278, + '|', 1455, + '}', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(266); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(33); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1181: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1594, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '/', 1116, + '<', 1145, + '=', 323, + '>', 1147, + 'a', 1269, + 'b', 1258, + 'e', 1197, + 'h', 1233, + 'i', 1271, + 'l', 1259, + 'm', 1279, + 'n', 1283, + 'o', 1194, + 's', 1305, + 'x', 1278, + '|', 1455, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(34); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1182: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ':', 1713, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '/', 1116, + '<', 1145, + '=', 323, + '>', 1147, + 'a', 1269, + 'b', 1258, + 'e', 1200, + 'h', 1233, + 'i', 1271, + 'l', 1259, + 'm', 1279, + 'n', 1283, + 'o', 1202, + 's', 1305, + 'x', 1278, + '|', 1455, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(266); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(35); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1183: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ':', 1713, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1597, + '/', 1116, + ':', 1716, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, + 'E', 1222, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1221, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1285, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(266); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(270); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1184: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ':', 1713, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1597, + '/', 1116, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1220, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1221, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1285, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(266); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(276); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1185: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '/', 1116, + ':', 1716, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, + 'E', 1222, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + '_', 1230, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1221, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1285, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(270); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1186: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1218, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '/', 1116, + ':', 1716, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, + 'E', 1222, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1221, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1285, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(270); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1187: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1220, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1282, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - 0xb5, 1294, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '/', 1116, + ':', 1716, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, + 'E', 1225, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1223, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1285, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(270); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1188: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1270, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1282, - 's', 1302, - 'x', 1275, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '/', 1116, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, + 'E', 1222, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + '_', 1230, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1221, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1285, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(276); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1189: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '#') ADVANCE(2188); + ADVANCE_MAP( + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '/', 1116, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, + 'E', 1222, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1221, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1285, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + 0xb5, 1297, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(276); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1190: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '+', 1224, - '-', 1226, - '>', 1737, - 'I', 1322, - '_', 1226, - 'i', 1322, - 'n', 1240, - 'r', 1283, - 'B', 1653, - 'b', 1653, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '/', 1116, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, + 'E', 1225, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1223, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1285, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + 0xb5, 1297, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '\t' || + lookahead == ' ') SKIP(276); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1191: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1245); - if (lookahead == '>') ADVANCE(1739); - if (lookahead == 'r') ADVANCE(1130); - if (lookahead == 'u') ADVANCE(1304); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '/', 1116, + '<', 1145, + '=', 323, + '>', 1147, + 'a', 1269, + 'b', 1258, + 'e', 1273, + 'h', 1233, + 'i', 1271, + 'l', 1259, + 'm', 1279, + 'n', 1283, + 'o', 1285, + 's', 1305, + 'x', 1278, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(276); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1192: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1274); - if (lookahead == '>') ADVANCE(1733); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '\t' || + lookahead == ' ') SKIP(276); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1193: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '+', 1273, - '>', 1737, - 'I', 1322, - 'i', 1322, - 'n', 1240, - 'r', 1283, - 'B', 1653, - 'b', 1653, + '+', 1227, + '-', 1229, + '>', 1741, + 'I', 1325, + '_', 1229, + 'i', 1325, + 'n', 1243, + 'r', 1286, + 'B', 1656, + 'b', 1656, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1194: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1273); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'n') ADVANCE(1240); - if (lookahead == 'r') ADVANCE(1283); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1248); + if (lookahead == '>') ADVANCE(1743); + if (lookahead == 'r') ADVANCE(1133); + if (lookahead == 'u') ADVANCE(1307); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1195: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1246); - if (lookahead == '>') ADVANCE(1735); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1277); + if (lookahead == '>') ADVANCE(1737); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1196: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '+', 1277, - '>', 523, - 'I', 1322, - 'i', 1322, - 'n', 1240, - 'r', 1288, - 'B', 1653, - 'b', 1653, + '+', 1276, + '>', 1741, + 'I', 1325, + 'i', 1325, + 'n', 1243, + 'r', 1286, + 'B', 1656, + 'b', 1656, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1197: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1277); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'n') ADVANCE(1240); - if (lookahead == 'r') ADVANCE(1288); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1276); + if (lookahead == '>') ADVANCE(1741); + if (lookahead == 'n') ADVANCE(1243); + if (lookahead == 'r') ADVANCE(1286); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1198: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '+', 1225, - '-', 1226, - '>', 523, - 'I', 1322, - '_', 1226, - 'i', 1322, - 'n', 1240, - 'r', 1288, - 'B', 1653, - 'b', 1653, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1249); + if (lookahead == '>') ADVANCE(1739); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1199: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1247); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'r') ADVANCE(1130); - if (lookahead == 'u') ADVANCE(1308); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '+', 1280, + '>', 524, + 'I', 1325, + 'i', 1325, + 'n', 1243, + 'r', 1291, + 'B', 1656, + 'b', 1656, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1200: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1281); - if (lookahead == '>') ADVANCE(526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1280); + if (lookahead == '>') ADVANCE(524); + if (lookahead == 'n') ADVANCE(1243); + if (lookahead == 'r') ADVANCE(1291); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1201: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1248); - if (lookahead == '>') ADVANCE(528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + '+', 1228, + '-', 1229, + '>', 524, + 'I', 1325, + '_', 1229, + 'i', 1325, + 'n', 1243, + 'r', 1291, + 'B', 1656, + 'b', 1656, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1202: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1233); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1250); + if (lookahead == '>') ADVANCE(525); + if (lookahead == 'r') ADVANCE(1133); + if (lookahead == 'u') ADVANCE(1311); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1203: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1249); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1284); + if (lookahead == '>') ADVANCE(527); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1204: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1317); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '+') ADVANCE(1251); + if (lookahead == '>') ADVANCE(529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1205: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1318); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '-') ADVANCE(1236); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1206: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1319); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '-') ADVANCE(1252); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1207: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == '-') ADVANCE(1320); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1208: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '.') ADVANCE(1593); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '-') ADVANCE(1321); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1209: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '=') ADVANCE(1140); - if (lookahead == '~') ADVANCE(1122); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '-') ADVANCE(1322); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1210: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1747); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '-') ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1211: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1745); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '.') ADVANCE(1596); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1212: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1741); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '=') ADVANCE(1143); + if (lookahead == '~') ADVANCE(1125); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1213: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1743); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(1751); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1214: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(525); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(1749); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1215: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(1745); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1216: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(1747); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1217: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(530); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(526); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1218: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - 'I', 1322, - '_', 1226, - 'i', 1322, - 'n', 1240, - '+', 1226, - '-', 1226, - 'B', 1653, - 'b', 1653, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(528); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1219: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1322); - if (lookahead == '_') ADVANCE(1226); - if (lookahead == 'i') ADVANCE(1235); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1226); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(530); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1220: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1322); - if (lookahead == 'i') ADVANCE(1322); - if (lookahead == 'n') ADVANCE(1240); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '>') ADVANCE(531); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1221: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1322); - if (lookahead == 'i') ADVANCE(1322); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + ADVANCE_MAP( + 'I', 1325, + '_', 1229, + 'i', 1325, + 'n', 1243, + '+', 1229, + '-', 1229, + 'B', 1656, + 'b', 1656, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1222: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1322); - if (lookahead == 'i') ADVANCE(1235); + if (lookahead == 'I') ADVANCE(1325); + if (lookahead == '_') ADVANCE(1229); + if (lookahead == 'i') ADVANCE(1238); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1229); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + lookahead == 'b') ADVANCE(1656); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1223: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1322); - if (lookahead == 'i') ADVANCE(1267); - if (lookahead == 'o') ADVANCE(1238); - if (lookahead == 's') ADVANCE(1658); + if (lookahead == 'I') ADVANCE(1325); + if (lookahead == 'i') ADVANCE(1325); + if (lookahead == 'n') ADVANCE(1243); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1224: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '_') ADVANCE(1226); - if (lookahead == 'o') ADVANCE(1210); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'I') ADVANCE(1325); + if (lookahead == 'i') ADVANCE(1325); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1225: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '_') ADVANCE(1226); - if (lookahead == 'o') ADVANCE(1214); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'I') ADVANCE(1325); + if (lookahead == 'i') ADVANCE(1238); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1226: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '_') ADVANCE(1226); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'I') ADVANCE(1325); + if (lookahead == 'i') ADVANCE(1270); + if (lookahead == 'o') ADVANCE(1241); + if (lookahead == 's') ADVANCE(1661); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1227: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '_') ADVANCE(1227); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '_') ADVANCE(1229); + if (lookahead == 'o') ADVANCE(1213); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1228: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1321); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '_') ADVANCE(1229); + if (lookahead == 'o') ADVANCE(1217); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1229: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1295); - if (lookahead == 'r') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '_') ADVANCE(1229); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1230: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1295); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == '_') ADVANCE(1230); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1231: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1287); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1324); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1232: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1296); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1298); + if (lookahead == 'r') ADVANCE(1661); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1233: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1271); - if (lookahead == 'o') ADVANCE(1285); - if (lookahead == 's') ADVANCE(1250); - if (lookahead == 'x') ADVANCE(1278); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1298); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1234: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1293); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1290); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1235: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1299); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1236: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'c') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1274); + if (lookahead == 'o') ADVANCE(1288); + if (lookahead == 's') ADVANCE(1253); + if (lookahead == 'x') ADVANCE(1281); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1237: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1128); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'a') ADVANCE(1296); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1238: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1115); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1239: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1125); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'c') ADVANCE(1661); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1240: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1297); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'd') ADVANCE(1131); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1241: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1299); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'd') ADVANCE(1118); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1242: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1236); - if (lookahead == 't') ADVANCE(1231); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'd') ADVANCE(1128); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1243: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1123); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'd') ADVANCE(1300); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1244: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1124); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'd') ADVANCE(1302); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1245: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1211); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1239); + if (lookahead == 't') ADVANCE(1234); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1246: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1290); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1126); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1247: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1215); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1127); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1248: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1291); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1214); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1249: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1272); - if (lookahead == 'h') ADVANCE(1232); - if (lookahead == 'i') ADVANCE(1269); - if (lookahead == 'l') ADVANCE(1261); - if (lookahead == 's') ADVANCE(1314); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1293); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1250: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1265); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1218); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1251: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1137); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1294); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1252: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1135); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'e') ADVANCE(1275); + if (lookahead == 'h') ADVANCE(1235); + if (lookahead == 'i') ADVANCE(1272); + if (lookahead == 'l') ADVANCE(1264); + if (lookahead == 's') ADVANCE(1317); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1253: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1138); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'h') ADVANCE(1268); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1254: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1136); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'h') ADVANCE(1140); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1255: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1301); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'h') ADVANCE(1138); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1256: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1263); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'h') ADVANCE(1141); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1257: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1305); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'h') ADVANCE(1139); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1258: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1307); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1304); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1259: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1309); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1266); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1260: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1310); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1308); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1261: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1264); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1310); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1262: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'k') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1312); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1263: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'k') ADVANCE(1243); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1313); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1264: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'k') ADVANCE(1244); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'i') ADVANCE(1267); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1265: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'l') ADVANCE(1119); - if (lookahead == 'r') ADVANCE(1120); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'k') ADVANCE(1661); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1266: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1237); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'k') ADVANCE(1246); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1267: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'k') ADVANCE(1247); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1268: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1131); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'l') ADVANCE(1122); + if (lookahead == 'r') ADVANCE(1123); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1269: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1132); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1240); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1270: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1240); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1661); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1271: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1239); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1134); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1272: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1241); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1135); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1273: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1210); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1243); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1274: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1315); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1242); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1275: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1284); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'n') ADVANCE(1244); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1276: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1238); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1213); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1277: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1214); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1318); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1278: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1286); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1287); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1279: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1303); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1241); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1280: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1303); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1217); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1281: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1316); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1289); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1282: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1130); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1306); + if (lookahead == 's') ADVANCE(1661); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1283: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1192); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1306); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1284: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1129); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'o') ADVANCE(1319); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1285: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1127); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1133); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1286: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1126); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1195); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1287: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1312); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1132); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1288: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1200); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1130); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1289: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1213); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1129); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1290: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1289); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1315); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1291: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1292); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1203); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1292: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1217); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1216); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1293: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1313); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1292); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1294: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1295); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1295: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1133); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1220); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1296: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1134); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'r') ADVANCE(1316); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1297: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1204); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 's') ADVANCE(1661); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1298: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1205); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 's') ADVANCE(1136); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1299: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1206); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 's') ADVANCE(1137); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1300: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 's') ADVANCE(1207); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1301: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1202); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 's') ADVANCE(1208); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1302: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1231); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 's') ADVANCE(1209); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1303: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1203); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 's') ADVANCE(1210); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1304: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1195); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1205); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1305: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1251); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1234); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1306: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1212); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1206); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1307: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1252); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1198); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1308: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1201); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1254); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1309: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1253); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1215); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1310: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1254); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1255); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1311: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1216); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1204); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1312: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1298); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1256); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1313: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1300); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1257); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1314: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1234); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1219); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1315: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'u') ADVANCE(1306); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1301); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1316: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'u') ADVANCE(1311); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1303); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1317: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'w') ADVANCE(1257); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 't') ADVANCE(1237); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1318: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'w') ADVANCE(1258); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'u') ADVANCE(1309); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1319: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'w') ADVANCE(1259); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'u') ADVANCE(1314); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1320: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 'w') ADVANCE(1260); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1321: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'y') ADVANCE(1658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'w') ADVANCE(1261); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1322: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'w') ADVANCE(1262); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1323: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1323); + if (lookahead == 'w') ADVANCE(1263); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1324: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if (lookahead == 'y') ADVANCE(1661); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1325: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1595, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1326: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); - ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); END_STATE(); case 1327: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - '_', 1227, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1598, + '/', 1116, + ';', 1454, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, + 'E', 1222, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1193, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1194, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + 0xb5, 1297, ); if (lookahead == '\t' || lookahead == ' ') SKIP(621); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1328: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1190, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1598, + '/', 1116, + ';', 1454, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, + 'E', 1222, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1201, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1202, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(622); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1329: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, - 'E', 1219, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1198, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1211, + '/', 1116, + ';', 1454, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, + 'E', 1222, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + '_', 1230, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1193, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1194, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + 0xb5, 1297, ); if (lookahead == '\t' || lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1330: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1211, + '/', 1116, + ';', 1454, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1193, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1191, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + '_', 1230, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1201, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1202, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(622); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1331: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '.', 1208, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'B', 1653, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1211, + '/', 1116, + ';', 1454, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, 'E', 1222, - 'G', 1222, - 'K', 1222, - 'M', 1222, - 'P', 1222, - 'T', 1222, - 'a', 1266, - 'b', 1654, - 'd', 1228, - 'e', 1196, - 'g', 1221, - 'h', 1229, - 'i', 1268, - 'k', 1221, - 'l', 1256, - 'm', 1223, - 'n', 1279, - 'o', 1199, - 'p', 1221, - 's', 1242, - 't', 1221, - 'u', 1294, - 'w', 1262, - 'x', 1275, - '|', 1452, - 0xb5, 1294, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1193, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1194, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + 0xb5, 1297, ); if (lookahead == '\t' || lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1332: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1194, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1191, - 's', 1302, - 'x', 1275, - '|', 1452, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1211, + '/', 1116, + ';', 1454, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, + 'E', 1222, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1201, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1202, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + 0xb5, 1297, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + lookahead == ' ') SKIP(622); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1333: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(661); + if (eof) ADVANCE(664); ADVANCE_MAP( - '\n', 1448, - '\r', 1, - '!', 1209, - '#', 2188, - '*', 1112, - '+', 1117, - '-', 1118, - '/', 1113, - ';', 1451, - '<', 1142, - '=', 319, - '>', 1144, - 'a', 1266, - 'b', 1255, - 'e', 1197, - 'h', 1230, - 'i', 1268, - 'l', 1256, - 'm', 1276, - 'n', 1280, - 'o', 1199, - 's', 1302, - 'x', 1275, - '|', 1452, + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1211, + '/', 1116, + ';', 1454, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, + 'E', 1225, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1196, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1194, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + 0xb5, 1297, ); if (lookahead == '\t' || lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1323); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1334: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1346); - if (lookahead == '-') ADVANCE(1974); - if (lookahead == 'I') ADVANCE(1372); - if (lookahead == '_') ADVANCE(1346); - if (lookahead == 'i') ADVANCE(1372); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (eof) ADVANCE(664); + ADVANCE_MAP( + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '.', 1211, + '/', 1116, + ';', 1454, + '<', 1145, + '=', 323, + '>', 1147, + 'B', 1656, + 'E', 1225, + 'G', 1225, + 'K', 1225, + 'M', 1225, + 'P', 1225, + 'T', 1225, + 'a', 1269, + 'b', 1657, + 'd', 1231, + 'e', 1199, + 'g', 1224, + 'h', 1232, + 'i', 1271, + 'k', 1224, + 'l', 1259, + 'm', 1226, + 'n', 1282, + 'o', 1202, + 'p', 1224, + 's', 1245, + 't', 1224, + 'u', 1297, + 'w', 1265, + 'x', 1278, + '|', 1455, + 0xb5, 1297, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(622); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1335: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1346); - if (lookahead == '-') ADVANCE(1974); - if (lookahead == 'I') ADVANCE(1372); - if (lookahead == '_') ADVANCE(1346); - if (lookahead == 'i') ADVANCE(1349); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (eof) ADVANCE(664); + ADVANCE_MAP( + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '/', 1116, + ';', 1454, + '<', 1145, + '=', 323, + '>', 1147, + 'a', 1269, + 'b', 1258, + 'e', 1197, + 'h', 1233, + 'i', 1271, + 'l', 1259, + 'm', 1279, + 'n', 1283, + 'o', 1194, + 's', 1305, + 'x', 1278, + '|', 1455, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(621); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1336: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1346); - if (lookahead == '-') ADVANCE(1974); - if (lookahead == '_') ADVANCE(1346); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (eof) ADVANCE(664); + ADVANCE_MAP( + '\n', 1451, + '\r', 9, + '!', 1212, + '#', 2192, + '*', 1115, + '+', 1120, + '-', 1121, + '/', 1116, + ';', 1454, + '<', 1145, + '=', 323, + '>', 1147, + 'a', 1269, + 'b', 1258, + 'e', 1200, + 'h', 1233, + 'i', 1271, + 'l', 1259, + 'm', 1279, + 'n', 1283, + 'o', 1202, + 's', 1305, + 'x', 1278, + '|', 1455, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(622); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); END_STATE(); case 1337: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(448); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '+') ADVANCE(1349); + if (lookahead == '-') ADVANCE(1978); + if (lookahead == 'I') ADVANCE(1375); + if (lookahead == '_') ADVANCE(1349); + if (lookahead == 'i') ADVANCE(1375); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1660); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1338: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(360); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '+') ADVANCE(1349); + if (lookahead == '-') ADVANCE(1978); + if (lookahead == 'I') ADVANCE(1375); + if (lookahead == '_') ADVANCE(1349); + if (lookahead == 'i') ADVANCE(1352); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1660); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1339: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(432); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '+') ADVANCE(1349); + if (lookahead == '-') ADVANCE(1978); + if (lookahead == '_') ADVANCE(1349); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1340: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(449); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '-') ADVANCE(450); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1341: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(517); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '-') ADVANCE(363); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1342: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1372); - if (lookahead == 'i') ADVANCE(1372); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '-') ADVANCE(434); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1343: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1372); - if (lookahead == 'i') ADVANCE(1349); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '-') ADVANCE(451); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1344: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1372); - if (lookahead == 'i') ADVANCE(1360); - if (lookahead == 's') ADVANCE(1660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '-') ADVANCE(518); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1345: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1345); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'I') ADVANCE(1375); + if (lookahead == 'i') ADVANCE(1375); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1660); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1346: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1346); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'I') ADVANCE(1375); + if (lookahead == 'i') ADVANCE(1352); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1660); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1347: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(1367); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'I') ADVANCE(1375); + if (lookahead == 'i') ADVANCE(1363); + if (lookahead == 's') ADVANCE(1663); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1660); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1348: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(1371); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '_') ADVANCE(1348); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1349: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '_') ADVANCE(1349); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1350: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(1660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'a') ADVANCE(1370); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1351: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1355); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'a') ADVANCE(1374); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1352: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1339); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'b') ADVANCE(1660); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1353: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1350); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'c') ADVANCE(1663); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1354: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(1660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'e') ADVANCE(1358); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1355: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1356); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'e') ADVANCE(1342); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1356: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1337); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'e') ADVANCE(1353); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1357: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1338); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'k') ADVANCE(1663); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1358: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1357); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'l') ADVANCE(1359); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1359: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(1364); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'l') ADVANCE(1340); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1360: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1660); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'l') ADVANCE(1341); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1361: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1087); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'l') ADVANCE(1360); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1362: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1352); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'm') ADVANCE(1367); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1363: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(1365); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'n') ADVANCE(1663); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1660); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1364: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(1363); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'n') ADVANCE(1090); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1365: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1369); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'n') ADVANCE(1355); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1366: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'o') ADVANCE(1368); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1367: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1341); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'p') ADVANCE(1366); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1368: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'r') ADVANCE(1372); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1369: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1340); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'r') ADVANCE(1663); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1370: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(1358); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'r') ADVANCE(1344); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1371: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(1660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 's') ADVANCE(1663); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1372: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1657); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 't') ADVANCE(1343); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1373: ACCEPT_TOKEN(sym_identifier); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == 'u') ADVANCE(1361); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1374: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(438); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'r') ADVANCE(1419); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'y') ADVANCE(1663); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1375: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(380); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'u') ADVANCE(1432); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1660); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1376: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(443); - if (lookahead == '>') ADVANCE(526); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + ACCEPT_TOKEN(sym_identifier); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1377: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(384); - if (lookahead == '>') ADVANCE(528); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == '+') ADVANCE(440); + if (lookahead == '>') ADVANCE(524); + if (lookahead == 'r') ADVANCE(1422); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1378: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N') ADVANCE(1439); - if (lookahead == 'f') ADVANCE(1069); - if (lookahead == 'n') ADVANCE(1086); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == '+') ADVANCE(382); + if (lookahead == '>') ADVANCE(525); + if (lookahead == 'u') ADVANCE(1435); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1379: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(1379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1379); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == '+') ADVANCE(445); + if (lookahead == '>') ADVANCE(527); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1380: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1427); - if (lookahead == 'o') ADVANCE(1412); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == '+') ADVANCE(386); + if (lookahead == '>') ADVANCE(529); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1381: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1409); - if (lookahead == 'o') ADVANCE(1418); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'N') ADVANCE(1442); + if (lookahead == 'f') ADVANCE(1072); + if (lookahead == 'n') ADVANCE(1089); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1382: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1422); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == '_') ADVANCE(1382); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1382); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1383: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1433); - if (lookahead == 'o') ADVANCE(1386); - if (lookahead == 'u') ADVANCE(1429); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'a') ADVANCE(1430); + if (lookahead == 'o') ADVANCE(1415); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1384: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(1398); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'a') ADVANCE(1412); + if (lookahead == 'o') ADVANCE(1421); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1385: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(1399); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'a') ADVANCE(1425); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1386: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(1436); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'a') ADVANCE(1436); + if (lookahead == 'o') ADVANCE(1389); + if (lookahead == 'u') ADVANCE(1432); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1387: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1397); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'c') ADVANCE(1401); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1388: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1048); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'c') ADVANCE(1402); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1389: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1072); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'd') ADVANCE(1439); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1390: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1090); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1400); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1391: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1093); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1051); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1392: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1066); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1075); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1393: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1057); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1093); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1394: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1428); - if (lookahead == 'o') ADVANCE(1413); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1096); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1395: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1411); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1069); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1396: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1420); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1060); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1397: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'f') ADVANCE(826); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1431); + if (lookahead == 'o') ADVANCE(1416); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1398: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1078); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1414); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1399: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1081); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'e') ADVANCE(1423); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1400: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1402); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'f') ADVANCE(829); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1401: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(1382); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'h') ADVANCE(1081); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1402: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(1406); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'h') ADVANCE(1084); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1403: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1401); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'h') ADVANCE(1405); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1404: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1096); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'i') ADVANCE(1385); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1405: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1404); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'i') ADVANCE(1409); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1406: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1392); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'l') ADVANCE(1404); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1407: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1393); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'l') ADVANCE(1099); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1408: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1424); - if (lookahead == 'x') ADVANCE(1416); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'l') ADVANCE(1407); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1409: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1426); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'l') ADVANCE(1395); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1410: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1054); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'l') ADVANCE(1396); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1411: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1437); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'l') ADVANCE(1427); + if (lookahead == 'x') ADVANCE(1419); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1412: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1425); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'l') ADVANCE(1429); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1413: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1415); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'n') ADVANCE(1057); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1414: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1421); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'n') ADVANCE(1440); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1415: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(1063); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'n') ADVANCE(1428); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1416: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(1414); - if (lookahead == 't') ADVANCE(1396); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'o') ADVANCE(1418); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1417: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1435); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'o') ADVANCE(1424); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1418: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1060); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'p') ADVANCE(1066); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1419: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1376); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'p') ADVANCE(1417); + if (lookahead == 't') ADVANCE(1399); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1420: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1410); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'r') ADVANCE(1438); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1421: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1431); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'r') ADVANCE(1063); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1422: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(671); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'r') ADVANCE(1379); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1423: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1388); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'r') ADVANCE(1413); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1424: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1389); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'r') ADVANCE(1434); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1425: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1430); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 's') ADVANCE(674); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1426: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 's') ADVANCE(1391); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1427: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1384); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 's') ADVANCE(1392); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1428: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(677); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 's') ADVANCE(1433); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1429: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(680); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 's') ADVANCE(1394); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1430: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(683); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 't') ADVANCE(1387); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1431: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(667); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 't') ADVANCE(680); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1432: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1377); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 't') ADVANCE(683); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1433: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1385); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 't') ADVANCE(686); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1434: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1405); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1442); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 't') ADVANCE(670); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1435: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1390); - if (lookahead == 'y') ADVANCE(1075); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 't') ADVANCE(1380); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1436: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1407); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 't') ADVANCE(1388); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1437: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(1051); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'u') ADVANCE(1408); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1445); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1438: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1442); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'u') ADVANCE(1393); + if (lookahead == 'y') ADVANCE(1078); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1439: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1441); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'u') ADVANCE(1410); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1440: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1445); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'v') ADVANCE(1054); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1441: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1444); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1445); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1442: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1447); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1444); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1443: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1439); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1448); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1444: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1440); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1447); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1445: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1446); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1450); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1446: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1447); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1442); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1447: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1447); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1443); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1448: - ACCEPT_TOKEN(sym__newline); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1449); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1449: - ACCEPT_TOKEN(sym__space); - if (lookahead == ':') ADVANCE(1713); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1449); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1450); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1450: - ACCEPT_TOKEN(sym__space); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1450); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1451: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(sym__newline); END_STATE(); case 1452: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(sym__space); + if (lookahead == ':') ADVANCE(1716); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1452); END_STATE(); case 1453: - ACCEPT_TOKEN(anon_sym_err_GT_PIPE); + ACCEPT_TOKEN(sym__space); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1453); END_STATE(); case 1454: - ACCEPT_TOKEN(anon_sym_out_GT_PIPE); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 1455: - ACCEPT_TOKEN(anon_sym_e_GT_PIPE); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 1456: - ACCEPT_TOKEN(anon_sym_o_GT_PIPE); + ACCEPT_TOKEN(anon_sym_err_GT_PIPE); END_STATE(); case 1457: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); + ACCEPT_TOKEN(anon_sym_out_GT_PIPE); END_STATE(); case 1458: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); + ACCEPT_TOKEN(anon_sym_e_GT_PIPE); END_STATE(); case 1459: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); + ACCEPT_TOKEN(anon_sym_o_GT_PIPE); END_STATE(); case 1460: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); END_STATE(); case 1461: - ACCEPT_TOKEN(sym_attribute_identifier); - if (set_contains(sym_attribute_identifier_character_set_2, 801, lookahead)) ADVANCE(1461); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); END_STATE(); case 1462: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); END_STATE(); case 1463: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); END_STATE(); case 1464: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(sym_attribute_identifier); + if (set_contains(sym_attribute_identifier_character_set_2, 801, lookahead)) ADVANCE(1464); END_STATE(); case 1465: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 1466: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 1467: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 1468: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 1469: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 1470: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 1471: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(1702); - if (lookahead == '\'') ADVANCE(1701); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 1472: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(1702); - if (lookahead == '\'') ADVANCE(1701); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 1473: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); END_STATE(); case 1474: - ACCEPT_TOKEN(anon_sym_cell_DASHpath); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '"') ADVANCE(1705); + if (lookahead == '\'') ADVANCE(1704); END_STATE(); case 1475: - ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '"') ADVANCE(1705); + if (lookahead == '\'') ADVANCE(1704); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1476: - ACCEPT_TOKEN(anon_sym_import_DASHpattern); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1477: - ACCEPT_TOKEN(anon_sym_one_DASHof); + ACCEPT_TOKEN(anon_sym_cell_DASHpath); END_STATE(); case 1478: - ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); + ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); END_STATE(); case 1479: - ACCEPT_TOKEN(anon_sym_GT2); + ACCEPT_TOKEN(anon_sym_import_DASHpattern); END_STATE(); case 1480: - ACCEPT_TOKEN(anon_sym_GT2); - if (lookahead == '=') ADVANCE(1552); + ACCEPT_TOKEN(anon_sym_one_DASHof); END_STATE(); case 1481: - ACCEPT_TOKEN(anon_sym_AT2); + ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); END_STATE(); case 1482: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_LF); END_STATE(); case 1483: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_GT2); END_STATE(); case 1484: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_GT2); + if (lookahead == '=') ADVANCE(1555); END_STATE(); case 1485: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_AT2); END_STATE(); case 1486: - ACCEPT_TOKEN(anon_sym_DASH2); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 1487: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1484); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 1488: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1484); - if (lookahead == '.') ADVANCE(336); - if (lookahead == '_') ADVANCE(308); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 1489: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1484); - if (lookahead == '.') ADVANCE(1971); - if (lookahead == '_') ADVANCE(1963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + ACCEPT_TOKEN(anon_sym_DASH_DASH); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1490: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1484); - if (lookahead == '.') ADVANCE(338); - if (lookahead == '_') ADVANCE(314); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); END_STATE(); case 1491: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(336); - if (lookahead == '_') ADVANCE(308); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if (lookahead == '-') ADVANCE(1488); END_STATE(); case 1492: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(866); - if (lookahead == '_') ADVANCE(848); + if (lookahead == '-') ADVANCE(1488); + if (lookahead == '.') ADVANCE(339); + if (lookahead == '_') ADVANCE(312); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1025); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + lookahead == 'i') ADVANCE(540); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); END_STATE(); case 1493: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(1814); - if (lookahead == '_') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if (lookahead == '-') ADVANCE(1488); + if (lookahead == '.') ADVANCE(1975); + if (lookahead == '_') ADVANCE(1967); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); END_STATE(); case 1494: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(338); - if (lookahead == '_') ADVANCE(314); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + if (lookahead == '-') ADVANCE(1488); + if (lookahead == '.') ADVANCE(341); + if (lookahead == '_') ADVANCE(318); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); END_STATE(); case 1495: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '=') ADVANCE(686); + if (lookahead == '.') ADVANCE(339); + if (lookahead == '_') ADVANCE(312); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(540); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); END_STATE(); case 1496: ACCEPT_TOKEN(anon_sym_DASH2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '.') ADVANCE(869); + if (lookahead == '_') ADVANCE(851); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1028); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1497: - ACCEPT_TOKEN(sym_param_short_flag_identifier); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '.') ADVANCE(1818); + if (lookahead == '_') ADVANCE(1795); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); END_STATE(); case 1498: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '.') ADVANCE(341); + if (lookahead == '_') ADVANCE(318); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); END_STATE(); case 1499: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '=') ADVANCE(689); END_STATE(); case 1500: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_DASH2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1501: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(2012); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + ACCEPT_TOKEN(sym_param_short_flag_identifier); END_STATE(); case 1502: - ACCEPT_TOKEN(anon_sym__); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 1503: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 1504: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(690); - if (lookahead == '<') ADVANCE(1606); - if (lookahead == '=') ADVANCE(1605); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 1505: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(1988); - if (lookahead == '<') ADVANCE(1606); - if (lookahead == '=') ADVANCE(1605); + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '_') ADVANCE(2016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); END_STATE(); case 1506: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(2078); - if (lookahead == '<') ADVANCE(1606); - if (lookahead == '=') ADVANCE(1605); + ACCEPT_TOKEN(anon_sym__); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1507: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(1606); - if (lookahead == '=') ADVANCE(1605); END_STATE(); case 1508: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(1606); - if (lookahead == '=') ADVANCE(1605); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1046); + if (lookahead == '.') ADVANCE(693); + if (lookahead == '<') ADVANCE(1609); + if (lookahead == '=') ADVANCE(1608); END_STATE(); case 1509: - ACCEPT_TOKEN(anon_sym_DOLLAR2); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(1992); + if (lookahead == '<') ADVANCE(1609); + if (lookahead == '=') ADVANCE(1608); END_STATE(); case 1510: - ACCEPT_TOKEN(anon_sym_DOLLAR2); - if (lookahead == '"') ADVANCE(1702); - if (lookahead == '\'') ADVANCE(1701); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(2082); + if (lookahead == '<') ADVANCE(1609); + if (lookahead == '=') ADVANCE(1608); END_STATE(); case 1511: - ACCEPT_TOKEN(anon_sym_STAR2); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '<') ADVANCE(1609); + if (lookahead == '=') ADVANCE(1608); END_STATE(); case 1512: - ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(1562); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '<') ADVANCE(1609); + if (lookahead == '=') ADVANCE(1608); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1049); END_STATE(); case 1513: - ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(1562); - if (lookahead == '=') ADVANCE(687); + ACCEPT_TOKEN(anon_sym_DOLLAR2); END_STATE(); case 1514: ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(1563); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); END_STATE(); case 1515: - ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'a') ADVANCE(1518); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '*') ADVANCE(1565); END_STATE(); case 1516: - ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'e') ADVANCE(1089); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '*') ADVANCE(1565); + if (lookahead == '=') ADVANCE(690); END_STATE(); case 1517: - ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'e') ADVANCE(1092); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '*') ADVANCE(1566); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1518: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'l') ADVANCE(1521); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if (lookahead == 'a') ADVANCE(1521); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1528); END_STATE(); case 1519: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'o') ADVANCE(1522); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if (lookahead == 'e') ADVANCE(1092); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1528); END_STATE(); case 1520: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'r') ADVANCE(1523); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if (lookahead == 'e') ADVANCE(1095); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1528); END_STATE(); case 1521: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 's') ADVANCE(1517); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if (lookahead == 'l') ADVANCE(1524); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1528); END_STATE(); case 1522: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 't') ADVANCE(1524); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if (lookahead == 'o') ADVANCE(1525); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1528); END_STATE(); case 1523: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'u') ADVANCE(1516); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if (lookahead == 'r') ADVANCE(1526); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1528); END_STATE(); case 1524: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if (lookahead == 's') ADVANCE(1520); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1528); END_STATE(); case 1525: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1525); + if (lookahead == 't') ADVANCE(1527); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1528); END_STATE(); case 1526: - ACCEPT_TOKEN(anon_sym_where); + ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); + if (lookahead == 'u') ADVANCE(1519); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1528); END_STATE(); case 1527: - ACCEPT_TOKEN(anon_sym_and2); + ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1563); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1528); END_STATE(); case 1528: - ACCEPT_TOKEN(anon_sym_and2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1528); END_STATE(); case 1529: - ACCEPT_TOKEN(anon_sym_xor2); + ACCEPT_TOKEN(anon_sym_where); END_STATE(); case 1530: - ACCEPT_TOKEN(anon_sym_xor2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_and2); END_STATE(); case 1531: - ACCEPT_TOKEN(anon_sym_or2); + ACCEPT_TOKEN(anon_sym_and2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1532: - ACCEPT_TOKEN(anon_sym_or2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_xor2); END_STATE(); case 1533: - ACCEPT_TOKEN(anon_sym_not_DASHin2); + ACCEPT_TOKEN(anon_sym_xor2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1534: - ACCEPT_TOKEN(anon_sym_not_DASHin2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_or2); END_STATE(); case 1535: - ACCEPT_TOKEN(anon_sym_has2); + ACCEPT_TOKEN(anon_sym_or2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1536: - ACCEPT_TOKEN(anon_sym_has2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_not_DASHin2); END_STATE(); case 1537: - ACCEPT_TOKEN(anon_sym_not_DASHhas2); + ACCEPT_TOKEN(anon_sym_not_DASHin2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1538: - ACCEPT_TOKEN(anon_sym_not_DASHhas2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_has2); END_STATE(); case 1539: - ACCEPT_TOKEN(anon_sym_starts_DASHwith2); + ACCEPT_TOKEN(anon_sym_has2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1540: - ACCEPT_TOKEN(anon_sym_starts_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_not_DASHhas2); END_STATE(); case 1541: - ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); + ACCEPT_TOKEN(anon_sym_not_DASHhas2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1542: - ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_starts_DASHwith2); END_STATE(); case 1543: - ACCEPT_TOKEN(anon_sym_ends_DASHwith2); + ACCEPT_TOKEN(anon_sym_starts_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1544: - ACCEPT_TOKEN(anon_sym_ends_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); END_STATE(); case 1545: - ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); + ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1546: - ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_ends_DASHwith2); END_STATE(); case 1547: - ACCEPT_TOKEN(anon_sym_EQ_EQ2); + ACCEPT_TOKEN(anon_sym_ends_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1548: - ACCEPT_TOKEN(anon_sym_BANG_EQ2); + ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); END_STATE(); case 1549: - ACCEPT_TOKEN(anon_sym_LT2); + ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1550: - ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(1551); + ACCEPT_TOKEN(anon_sym_EQ_EQ2); END_STATE(); case 1551: - ACCEPT_TOKEN(anon_sym_LT_EQ2); + ACCEPT_TOKEN(anon_sym_BANG_EQ2); END_STATE(); case 1552: - ACCEPT_TOKEN(anon_sym_GT_EQ2); + ACCEPT_TOKEN(anon_sym_LT2); END_STATE(); case 1553: - ACCEPT_TOKEN(anon_sym_EQ_TILDE2); + ACCEPT_TOKEN(anon_sym_LT2); + if (lookahead == '=') ADVANCE(1554); END_STATE(); case 1554: - ACCEPT_TOKEN(anon_sym_BANG_TILDE2); + ACCEPT_TOKEN(anon_sym_LT_EQ2); END_STATE(); case 1555: - ACCEPT_TOKEN(anon_sym_BANG_TILDE2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_GT_EQ2); END_STATE(); case 1556: - ACCEPT_TOKEN(anon_sym_like2); + ACCEPT_TOKEN(anon_sym_EQ_TILDE2); END_STATE(); case 1557: - ACCEPT_TOKEN(anon_sym_like2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_BANG_TILDE2); END_STATE(); case 1558: - ACCEPT_TOKEN(anon_sym_not_DASHlike2); + ACCEPT_TOKEN(anon_sym_BANG_TILDE2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1559: - ACCEPT_TOKEN(anon_sym_not_DASHlike2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_like2); END_STATE(); case 1560: - ACCEPT_TOKEN(aux_sym_expr_unary_token1); + ACCEPT_TOKEN(anon_sym_like2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1561: - ACCEPT_TOKEN(anon_sym_LPAREN2); + ACCEPT_TOKEN(anon_sym_not_DASHlike2); END_STATE(); case 1562: - ACCEPT_TOKEN(anon_sym_STAR_STAR2); + ACCEPT_TOKEN(anon_sym_not_DASHlike2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1563: - ACCEPT_TOKEN(anon_sym_STAR_STAR2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(aux_sym_expr_unary_token1); END_STATE(); case 1564: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); case 1565: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); - if (lookahead == '=') ADVANCE(689); + ACCEPT_TOKEN(anon_sym_STAR_STAR2); END_STATE(); case 1566: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_STAR_STAR2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1567: - ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(1573); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); END_STATE(); case 1568: - ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(1573); - if (lookahead == '=') ADVANCE(688); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + if (lookahead == '=') ADVANCE(692); END_STATE(); case 1569: - ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(1574); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1570: ACCEPT_TOKEN(anon_sym_SLASH2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if (lookahead == '/') ADVANCE(1576); END_STATE(); case 1571: - ACCEPT_TOKEN(anon_sym_mod2); + ACCEPT_TOKEN(anon_sym_SLASH2); + if (lookahead == '/') ADVANCE(1576); + if (lookahead == '=') ADVANCE(691); END_STATE(); case 1572: - ACCEPT_TOKEN(anon_sym_mod2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_SLASH2); + if (lookahead == '/') ADVANCE(1577); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1573: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); + ACCEPT_TOKEN(anon_sym_SLASH2); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1574: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_mod2); END_STATE(); case 1575: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1564); + ACCEPT_TOKEN(anon_sym_mod2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1576: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1564); - if (lookahead == '.') ADVANCE(1814); - if (lookahead == '_') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); END_STATE(); case 1577: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1564); - if (lookahead == '.') ADVANCE(338); - if (lookahead == '_') ADVANCE(314); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1578: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1565); - if (lookahead == '=') ADVANCE(685); + if (lookahead == '+') ADVANCE(1567); END_STATE(); case 1579: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1566); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if (lookahead == '+') ADVANCE(1567); + if (lookahead == '.') ADVANCE(1818); + if (lookahead == '_') ADVANCE(1795); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); END_STATE(); case 1580: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(717); - if (lookahead == '_') ADVANCE(702); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + if (lookahead == '+') ADVANCE(1567); + if (lookahead == '.') ADVANCE(341); + if (lookahead == '_') ADVANCE(318); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); END_STATE(); case 1581: - ACCEPT_TOKEN(anon_sym_bit_DASHshl2); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(1568); + if (lookahead == '=') ADVANCE(688); END_STATE(); case 1582: - ACCEPT_TOKEN(anon_sym_bit_DASHshl2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(1569); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1583: - ACCEPT_TOKEN(anon_sym_bit_DASHshr2); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '.') ADVANCE(720); + if (lookahead == '_') ADVANCE(705); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); END_STATE(); case 1584: - ACCEPT_TOKEN(anon_sym_bit_DASHshr2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_bit_DASHshl2); END_STATE(); case 1585: - ACCEPT_TOKEN(anon_sym_bit_DASHand2); + ACCEPT_TOKEN(anon_sym_bit_DASHshl2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1586: - ACCEPT_TOKEN(anon_sym_bit_DASHand2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_bit_DASHshr2); END_STATE(); case 1587: - ACCEPT_TOKEN(anon_sym_bit_DASHxor2); + ACCEPT_TOKEN(anon_sym_bit_DASHshr2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1588: - ACCEPT_TOKEN(anon_sym_bit_DASHxor2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_bit_DASHand2); END_STATE(); case 1589: - ACCEPT_TOKEN(anon_sym_bit_DASHor2); + ACCEPT_TOKEN(anon_sym_bit_DASHand2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1590: - ACCEPT_TOKEN(anon_sym_bit_DASHor2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ACCEPT_TOKEN(anon_sym_bit_DASHxor2); END_STATE(); case 1591: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); + ACCEPT_TOKEN(anon_sym_bit_DASHxor2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1592: - ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(1482); - if (lookahead == '<') ADVANCE(1608); - if (lookahead == '=') ADVANCE(1607); + ACCEPT_TOKEN(anon_sym_bit_DASHor2); END_STATE(); case 1593: - ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '<') ADVANCE(1608); - if (lookahead == '=') ADVANCE(1607); + ACCEPT_TOKEN(anon_sym_bit_DASHor2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1594: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); END_STATE(); case 1595: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1593); + ACCEPT_TOKEN(anon_sym_DOT_DOT2); + if (lookahead == '.') ADVANCE(1486); + if (lookahead == '<') ADVANCE(1611); + if (lookahead == '=') ADVANCE(1610); END_STATE(); case 1596: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1593); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + ACCEPT_TOKEN(anon_sym_DOT_DOT2); + if (lookahead == '<') ADVANCE(1611); + if (lookahead == '=') ADVANCE(1610); END_STATE(); case 1597: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1503); END_STATE(); case 1598: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1503); - if (lookahead == '_') ADVANCE(1945); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if (lookahead == '.') ADVANCE(1596); END_STATE(); case 1599: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1592); + if (lookahead == '.') ADVANCE(1596); + if (lookahead == '_') ADVANCE(721); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); END_STATE(); case 1600: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1962); + if (lookahead == '.') ADVANCE(1507); END_STATE(); case 1601: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1962); - if (lookahead == '_') ADVANCE(1972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if (lookahead == '.') ADVANCE(1507); + if (lookahead == '_') ADVANCE(1949); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); END_STATE(); case 1602: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if (lookahead == '.') ADVANCE(1595); END_STATE(); case 1603: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1945); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if (lookahead == '.') ADVANCE(1966); END_STATE(); case 1604: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1815); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if (lookahead == '.') ADVANCE(1966); + if (lookahead == '_') ADVANCE(1976); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); END_STATE(); case 1605: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '_') ADVANCE(1976); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); END_STATE(); case 1606: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '_') ADVANCE(1949); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); END_STATE(); case 1607: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '_') ADVANCE(1819); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); END_STATE(); case 1608: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); END_STATE(); case 1609: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1609); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); END_STATE(); case 1610: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1610); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1610); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); END_STATE(); case 1611: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); - if (lookahead == '_') ADVANCE(1611); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); END_STATE(); case 1612: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); if (lookahead == '_') ADVANCE(1612); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); END_STATE(); case 1613: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); if (lookahead == '_') ADVANCE(1613); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1614: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); if (lookahead == '_') ADVANCE(1614); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); END_STATE(); case 1615: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); if (lookahead == '_') ADVANCE(1615); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); END_STATE(); case 1616: - ACCEPT_TOKEN(anon_sym_RPAREN2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(1616); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); END_STATE(); case 1617: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); + if (lookahead == '_') ADVANCE(1617); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); END_STATE(); case 1618: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(820); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); + if (lookahead == '_') ADVANCE(1618); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1619: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2064); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + ACCEPT_TOKEN(anon_sym_RPAREN2); END_STATE(); case 1620: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2118); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); END_STATE(); case 1621: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2170); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (lookahead == '-') ADVANCE(823); + if (lookahead == '_') ADVANCE(1647); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); END_STATE(); case 1622: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(559); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (lookahead == '-') ADVANCE(2068); + if (lookahead == '_') ADVANCE(1647); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); END_STATE(); case 1623: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (lookahead == 'b') ADVANCE(1651); - if (lookahead == 'o') ADVANCE(1661); - if (lookahead == 'x') ADVANCE(1663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1630); + if (lookahead == '-') ADVANCE(2122); + if (lookahead == '_') ADVANCE(1647); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); END_STATE(); case 1624: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (lookahead == 'b') ADVANCE(1651); - if (lookahead == 'o') ADVANCE(1661); - if (lookahead == 'x') ADVANCE(1663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if (lookahead == '-') ADVANCE(2174); + if (lookahead == '_') ADVANCE(1647); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); END_STATE(); case 1625: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (lookahead == 'b') ADVANCE(1651); - if (lookahead == 'o') ADVANCE(1661); - if (lookahead == 'x') ADVANCE(1663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); + if (lookahead == '-') ADVANCE(560); + if (lookahead == '_') ADVANCE(1647); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); END_STATE(); case 1626: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (lookahead == 'b') ADVANCE(1651); - if (lookahead == 'o') ADVANCE(1661); - if (lookahead == 'x') ADVANCE(1663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if (lookahead == '_') ADVANCE(1647); + if (lookahead == 'b') ADVANCE(1654); + if (lookahead == 'o') ADVANCE(1664); + if (lookahead == 'x') ADVANCE(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); END_STATE(); case 1627: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (lookahead == 'b') ADVANCE(1651); - if (lookahead == 'o') ADVANCE(1661); - if (lookahead == 'x') ADVANCE(1663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if (lookahead == '_') ADVANCE(1647); + if (lookahead == 'b') ADVANCE(1654); + if (lookahead == 'o') ADVANCE(1664); + if (lookahead == 'x') ADVANCE(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); END_STATE(); case 1628: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (lookahead == 'b') ADVANCE(814); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'x') ADVANCE(823); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (lookahead == '_') ADVANCE(1647); + if (lookahead == 'b') ADVANCE(1654); + if (lookahead == 'o') ADVANCE(1664); + if (lookahead == 'x') ADVANCE(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); END_STATE(); case 1629: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if (lookahead == '_') ADVANCE(1647); + if (lookahead == 'b') ADVANCE(1654); + if (lookahead == 'o') ADVANCE(1664); + if (lookahead == 'x') ADVANCE(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); END_STATE(); case 1630: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1629); + if (lookahead == '_') ADVANCE(1647); + if (lookahead == 'b') ADVANCE(1654); + if (lookahead == 'o') ADVANCE(1664); + if (lookahead == 'x') ADVANCE(1666); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); END_STATE(); case 1631: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1619); + if (lookahead == '_') ADVANCE(1647); + if (lookahead == 'b') ADVANCE(817); + if (lookahead == 'o') ADVANCE(819); + if (lookahead == 'x') ADVANCE(826); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); END_STATE(); case 1632: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1631); + if (lookahead == '_') ADVANCE(1647); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1621); END_STATE(); case 1633: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1620); + if (lookahead == '_') ADVANCE(1647); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); END_STATE(); case 1634: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); + if (lookahead == '_') ADVANCE(1647); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1622); END_STATE(); case 1635: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1622); + if (lookahead == '_') ADVANCE(1647); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); END_STATE(); case 1636: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); + if (lookahead == '_') ADVANCE(1647); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1623); END_STATE(); case 1637: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1621); + if (lookahead == '_') ADVANCE(1647); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); END_STATE(); case 1638: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if (lookahead == '_') ADVANCE(1647); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1625); END_STATE(); case 1639: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1630); + if (lookahead == '_') ADVANCE(1647); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); END_STATE(); case 1640: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if (lookahead == '_') ADVANCE(1647); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1624); END_STATE(); case 1641: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); + if (lookahead == '_') ADVANCE(1647); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); END_STATE(); case 1642: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if (lookahead == '_') ADVANCE(1647); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); END_STATE(); case 1643: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if (lookahead == '_') ADVANCE(1647); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); END_STATE(); case 1644: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (lookahead == '_') ADVANCE(1647); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); END_STATE(); case 1645: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); - if (lookahead == '_') ADVANCE(1645); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(1647); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); END_STATE(); case 1646: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(1646); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(1647); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); END_STATE(); case 1647: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token4); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); if (lookahead == '_') ADVANCE(1647); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); END_STATE(); case 1648: + ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + END_STATE(); + case 1649: + ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); + if (lookahead == '_') ADVANCE(1649); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + END_STATE(); + case 1650: + ACCEPT_TOKEN(aux_sym__val_number_decimal_token4); + if (lookahead == '_') ADVANCE(1650); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); + END_STATE(); + case 1651: ACCEPT_TOKEN(aux_sym__val_number_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1648); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1651); END_STATE(); - case 1649: + case 1652: ACCEPT_TOKEN(aux_sym__val_number_token2); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1649); + lookahead == '_') ADVANCE(1652); END_STATE(); - case 1650: + case 1653: ACCEPT_TOKEN(aux_sym__val_number_token3); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1650); + lookahead == '_') ADVANCE(1653); END_STATE(); - case 1651: + case 1654: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1649); + lookahead == '_') ADVANCE(1652); END_STATE(); - case 1652: + case 1655: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1029); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + lookahead == '_') ADVANCE(1032); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); - case 1653: + case 1656: ACCEPT_TOKEN(sym_filesize_unit); END_STATE(); - case 1654: + case 1657: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(1301); + if (lookahead == 'i') ADVANCE(1304); END_STATE(); - case 1655: + case 1658: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(481); + if (lookahead == 'i') ADVANCE(482); END_STATE(); - case 1656: + case 1659: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(1898); + if (lookahead == 'i') ADVANCE(1902); END_STATE(); - case 1657: + case 1660: ACCEPT_TOKEN(sym_filesize_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); - case 1658: + case 1661: ACCEPT_TOKEN(sym_duration_unit); END_STATE(); - case 1659: + case 1662: ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(1047); + if (lookahead == 'e') ADVANCE(1050); END_STATE(); - case 1660: + case 1663: ACCEPT_TOKEN(sym_duration_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1373); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); - case 1661: + case 1664: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1650); + lookahead == '_') ADVANCE(1653); END_STATE(); - case 1662: + case 1665: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1032); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + lookahead == '_') ADVANCE(1035); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); - case 1663: + case 1666: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1648); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1651); END_STATE(); - case 1664: + case 1667: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1045); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1048); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); - case 1665: + case 1668: ACCEPT_TOKEN(anon_sym_LBRACK2); END_STATE(); - case 1666: + case 1669: ACCEPT_TOKEN(sym_hex_digit); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1666); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1669); END_STATE(); - case 1667: + case 1670: ACCEPT_TOKEN(sym_val_date); END_STATE(); - case 1668: + case 1671: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(553); + if (lookahead == '.') ADVANCE(554); if (lookahead == '+' || - lookahead == '-') ADVANCE(315); + lookahead == '-') ADVANCE(319); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); + lookahead == 'z') ADVANCE(1670); END_STATE(); - case 1669: + case 1672: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(2062); + if (lookahead == '.') ADVANCE(2066); if (lookahead == '+' || - lookahead == '-') ADVANCE(2001); + lookahead == '-') ADVANCE(2005); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); + lookahead == 'z') ADVANCE(1670); END_STATE(); - case 1670: + case 1673: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(2121); + if (lookahead == '.') ADVANCE(2125); if (lookahead == '+' || - lookahead == '-') ADVANCE(2084); + lookahead == '-') ADVANCE(2088); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); - END_STATE(); - case 1671: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(1682); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(552); - END_STATE(); - case 1672: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(1683); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2057); - END_STATE(); - case 1673: - ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(1684); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2115); + lookahead == 'z') ADVANCE(1670); END_STATE(); case 1674: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(822); + if (lookahead == ':') ADVANCE(1685); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(553); END_STATE(); case 1675: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2066); + if (lookahead == ':') ADVANCE(1686); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2061); END_STATE(); case 1676: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2124); + if (lookahead == ':') ADVANCE(1687); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2119); END_STATE(); case 1677: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2172); + if (lookahead == 'T') ADVANCE(825); END_STATE(); case 1678: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(562); + if (lookahead == 'T') ADVANCE(2070); END_STATE(); case 1679: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '+' || - lookahead == '-') ADVANCE(315); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1679); + if (lookahead == 'T') ADVANCE(2128); END_STATE(); case 1680: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2001); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1680); + if (lookahead == 'T') ADVANCE(2176); END_STATE(); case 1681: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2084); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1681); + if (lookahead == 'T') ADVANCE(563); END_STATE(); case 1682: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(552); + if (lookahead == '+' || + lookahead == '-') ADVANCE(319); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(1670); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1682); END_STATE(); case 1683: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2057); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2005); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(1670); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1683); END_STATE(); case 1684: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2115); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2088); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(1670); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1684); END_STATE(); case 1685: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(sym_val_date); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(553); END_STATE(); case 1686: + ACCEPT_TOKEN(sym_val_date); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2061); + END_STATE(); + case 1687: + ACCEPT_TOKEN(sym_val_date); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2119); + END_STATE(); + case 1688: + ACCEPT_TOKEN(anon_sym_DQUOTE); + END_STATE(); + case 1689: ACCEPT_TOKEN(sym__escaped_str_content); - if (lookahead == '#') ADVANCE(1687); + if (lookahead == '#') ADVANCE(1690); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1686); + lookahead == ' ') ADVANCE(1689); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && - lookahead != '\\') ADVANCE(1687); + lookahead != '\\') ADVANCE(1690); END_STATE(); - case 1687: + case 1690: ACCEPT_TOKEN(sym__escaped_str_content); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(1687); + lookahead != '\\') ADVANCE(1690); END_STATE(); - case 1688: + case 1691: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 1689: + case 1692: ACCEPT_TOKEN(aux_sym__str_single_quotes_token1); - if (lookahead == '#') ADVANCE(1690); + if (lookahead == '#') ADVANCE(1693); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1689); + lookahead == ' ') ADVANCE(1692); if (lookahead != 0 && - lookahead != '\'') ADVANCE(1690); + lookahead != '\'') ADVANCE(1693); END_STATE(); - case 1690: + case 1693: ACCEPT_TOKEN(aux_sym__str_single_quotes_token1); if (lookahead != 0 && - lookahead != '\'') ADVANCE(1690); + lookahead != '\'') ADVANCE(1693); END_STATE(); - case 1691: + case 1694: ACCEPT_TOKEN(anon_sym_SQUOTE2); END_STATE(); - case 1692: + case 1695: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 1693: + case 1696: ACCEPT_TOKEN(aux_sym__str_back_ticks_token1); - if (lookahead == '#') ADVANCE(1694); + if (lookahead == '#') ADVANCE(1697); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1693); + lookahead == ' ') ADVANCE(1696); if (lookahead != 0 && - lookahead != '`') ADVANCE(1694); + lookahead != '`') ADVANCE(1697); END_STATE(); - case 1694: + case 1697: ACCEPT_TOKEN(aux_sym__str_back_ticks_token1); if (lookahead != 0 && - lookahead != '`') ADVANCE(1694); + lookahead != '`') ADVANCE(1697); END_STATE(); - case 1695: + case 1698: ACCEPT_TOKEN(anon_sym_BQUOTE2); END_STATE(); - case 1696: + case 1699: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 1697: + case 1700: ACCEPT_TOKEN(sym_escaped_interpolated_content); - if (lookahead == '#') ADVANCE(1698); + if (lookahead == '#') ADVANCE(1701); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1697); + lookahead == ' ') ADVANCE(1700); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && lookahead != '(' && - lookahead != '\\') ADVANCE(1698); + lookahead != '\\') ADVANCE(1701); END_STATE(); - case 1698: + case 1701: ACCEPT_TOKEN(sym_escaped_interpolated_content); if (lookahead != 0 && lookahead != '"' && lookahead != '(' && - lookahead != '\\') ADVANCE(1698); + lookahead != '\\') ADVANCE(1701); END_STATE(); - case 1699: + case 1702: ACCEPT_TOKEN(sym_unescaped_interpolated_content); - if (lookahead == '#') ADVANCE(1700); + if (lookahead == '#') ADVANCE(1703); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1699); + lookahead == ' ') ADVANCE(1702); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(1700); + lookahead != '(') ADVANCE(1703); END_STATE(); - case 1700: + case 1703: ACCEPT_TOKEN(sym_unescaped_interpolated_content); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(1700); + lookahead != '(') ADVANCE(1703); END_STATE(); - case 1701: + case 1704: ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); END_STATE(); - case 1702: + case 1705: ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); END_STATE(); - case 1703: + case 1706: ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); - case 1704: + case 1707: ACCEPT_TOKEN(sym_inter_escape_sequence); END_STATE(); - case 1705: + case 1708: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACK); END_STATE(); - case 1706: + case 1709: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACE); END_STATE(); - case 1707: + case 1710: ACCEPT_TOKEN(sym__entry_separator); END_STATE(); - case 1708: + case 1711: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == '\n') ADVANCE(1707); - if (lookahead == '\r') ADVANCE(1707); + if (lookahead == '\n') ADVANCE(1710); + if (lookahead == '\r') ADVANCE(1710); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1708); + lookahead == ' ') ADVANCE(1711); if (lookahead == 0x0b || lookahead == '\f' || - lookahead == ',') ADVANCE(1707); + lookahead == ',') ADVANCE(1710); END_STATE(); - case 1709: + case 1712: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(1707); + if (lookahead == ',') ADVANCE(1710); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1709); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1707); + lookahead == ' ') ADVANCE(1712); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1710); END_STATE(); - case 1710: + case 1713: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(1707); + if (lookahead == ',') ADVANCE(1710); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1710); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1711); + lookahead == ' ') ADVANCE(1713); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1714); END_STATE(); - case 1711: + case 1714: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ';') ADVANCE(1716); + if (lookahead == ';') ADVANCE(1719); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(318); + lookahead == ' ') ADVANCE(322); END_STATE(); - case 1712: + case 1715: ACCEPT_TOKEN(sym__entry_separator); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1712); + lookahead == ' ') ADVANCE(1715); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1707); - END_STATE(); - case 1713: - ACCEPT_TOKEN(anon_sym_COLON2); - END_STATE(); - case 1714: - ACCEPT_TOKEN(aux_sym__record_key_token1); - if (lookahead == '#') ADVANCE(2192); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1715); - END_STATE(); - case 1715: - ACCEPT_TOKEN(aux_sym__record_key_token1); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1715); + lookahead == ',') ADVANCE(1710); END_STATE(); case 1716: - ACCEPT_TOKEN(sym__table_head_separator); + ACCEPT_TOKEN(anon_sym_COLON2); END_STATE(); case 1717: - ACCEPT_TOKEN(anon_sym_QMARK2); + ACCEPT_TOKEN(aux_sym__record_key_token1); + if (lookahead == '#') ADVANCE(2196); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1718); END_STATE(); case 1718: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(aux_sym__record_key_token1); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1718); END_STATE(); case 1719: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(1548); - if (lookahead == '~') ADVANCE(1554); + ACCEPT_TOKEN(sym__table_head_separator); END_STATE(); case 1720: - ACCEPT_TOKEN(anon_sym_DOT2); + ACCEPT_TOKEN(anon_sym_QMARK2); END_STATE(); case 1721: - ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(696); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 1722: - ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1593); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(1551); + if (lookahead == '~') ADVANCE(1557); END_STATE(); case 1723: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1503); END_STATE(); case 1724: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1592); + if (lookahead == '.') ADVANCE(699); END_STATE(); case 1725: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(311); + if (lookahead == '.') ADVANCE(1511); + if (lookahead == '_') ADVANCE(2147); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); END_STATE(); case 1726: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '_') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); + if (lookahead == '.') ADVANCE(1596); END_STATE(); case 1727: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '"') ADVANCE(1685); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '\'') ADVANCE(1688); - if (lookahead == '`') ADVANCE(1692); - if (lookahead == '\t' || - lookahead == ' ') SKIP(173); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1728); + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '.') ADVANCE(1507); END_STATE(); case 1728: - ACCEPT_TOKEN(aux_sym_path_token1); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1728); + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '.') ADVANCE(1595); END_STATE(); case 1729: - ACCEPT_TOKEN(anon_sym_EQ2); + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '.') ADVANCE(315); END_STATE(); case 1730: - ACCEPT_TOKEN(aux_sym_env_var_token1); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1730); + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '_') ADVANCE(721); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); END_STATE(); case 1731: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == '"') ADVANCE(1688); + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '\'') ADVANCE(1691); + if (lookahead == '`') ADVANCE(1695); + if (lookahead == '\t' || + lookahead == ' ') SKIP(178); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1732); END_STATE(); case 1732: - ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(1748); + ACCEPT_TOKEN(aux_sym_path_token1); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1732); END_STATE(); case 1733: - ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(1748); - if (lookahead == '|') ADVANCE(1453); + ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); case 1734: - ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(1749); + ACCEPT_TOKEN(aux_sym_env_var_token1); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1734); END_STATE(); case 1735: - ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(1749); - if (lookahead == '|') ADVANCE(1454); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 1736: - ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(1750); + ACCEPT_TOKEN(anon_sym_err_GT); + if (lookahead == '>') ADVANCE(1752); END_STATE(); case 1737: - ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(1750); - if (lookahead == '|') ADVANCE(1455); + ACCEPT_TOKEN(anon_sym_err_GT); + if (lookahead == '>') ADVANCE(1752); + if (lookahead == '|') ADVANCE(1456); END_STATE(); case 1738: - ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(1751); + ACCEPT_TOKEN(anon_sym_out_GT); + if (lookahead == '>') ADVANCE(1753); END_STATE(); case 1739: - ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(1751); - if (lookahead == '|') ADVANCE(1456); + ACCEPT_TOKEN(anon_sym_out_GT); + if (lookahead == '>') ADVANCE(1753); + if (lookahead == '|') ADVANCE(1457); END_STATE(); case 1740: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(1752); + ACCEPT_TOKEN(anon_sym_e_GT); + if (lookahead == '>') ADVANCE(1754); END_STATE(); case 1741: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(1752); - if (lookahead == '|') ADVANCE(1457); + ACCEPT_TOKEN(anon_sym_e_GT); + if (lookahead == '>') ADVANCE(1754); + if (lookahead == '|') ADVANCE(1458); END_STATE(); case 1742: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(1753); + ACCEPT_TOKEN(anon_sym_o_GT); + if (lookahead == '>') ADVANCE(1755); END_STATE(); case 1743: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(1753); - if (lookahead == '|') ADVANCE(1458); + ACCEPT_TOKEN(anon_sym_o_GT); + if (lookahead == '>') ADVANCE(1755); + if (lookahead == '|') ADVANCE(1459); END_STATE(); case 1744: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(1754); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + if (lookahead == '>') ADVANCE(1756); END_STATE(); case 1745: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(1754); - if (lookahead == '|') ADVANCE(1459); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + if (lookahead == '>') ADVANCE(1756); + if (lookahead == '|') ADVANCE(1460); END_STATE(); case 1746: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(1755); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + if (lookahead == '>') ADVANCE(1757); END_STATE(); case 1747: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(1755); - if (lookahead == '|') ADVANCE(1460); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + if (lookahead == '>') ADVANCE(1757); + if (lookahead == '|') ADVANCE(1461); END_STATE(); case 1748: - ACCEPT_TOKEN(anon_sym_err_GT_GT); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + if (lookahead == '>') ADVANCE(1758); END_STATE(); case 1749: - ACCEPT_TOKEN(anon_sym_out_GT_GT); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + if (lookahead == '>') ADVANCE(1758); + if (lookahead == '|') ADVANCE(1462); END_STATE(); case 1750: - ACCEPT_TOKEN(anon_sym_e_GT_GT); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + if (lookahead == '>') ADVANCE(1759); END_STATE(); case 1751: - ACCEPT_TOKEN(anon_sym_o_GT_GT); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + if (lookahead == '>') ADVANCE(1759); + if (lookahead == '|') ADVANCE(1463); END_STATE(); case 1752: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); + ACCEPT_TOKEN(anon_sym_err_GT_GT); END_STATE(); case 1753: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); + ACCEPT_TOKEN(anon_sym_out_GT_GT); END_STATE(); case 1754: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); + ACCEPT_TOKEN(anon_sym_e_GT_GT); END_STATE(); case 1755: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); + ACCEPT_TOKEN(anon_sym_o_GT_GT); END_STATE(); case 1756: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(438); - if (lookahead == '>') ADVANCE(523); - if (lookahead == 'r') ADVANCE(1760); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); END_STATE(); case 1757: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(380); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'u') ADVANCE(1761); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); END_STATE(); case 1758: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(443); - if (lookahead == '>') ADVANCE(526); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); END_STATE(); case 1759: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(384); - if (lookahead == '>') ADVANCE(528); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); END_STATE(); case 1760: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(1758); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + if (lookahead == '+') ADVANCE(440); + if (lookahead == '>') ADVANCE(524); + if (lookahead == 'r') ADVANCE(1764); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1766); END_STATE(); case 1761: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(1759); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + if (lookahead == '+') ADVANCE(382); + if (lookahead == '>') ADVANCE(525); + if (lookahead == 'u') ADVANCE(1765); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1766); END_STATE(); case 1762: ACCEPT_TOKEN(sym_short_flag_identifier); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1762); + if (lookahead == '+') ADVANCE(445); + if (lookahead == '>') ADVANCE(527); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1766); END_STATE(); case 1763: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1840); - if (lookahead == '>') ADVANCE(1739); - if (lookahead == 'r') ADVANCE(1531); - if (lookahead == 'u') ADVANCE(1901); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(386); + if (lookahead == '>') ADVANCE(529); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1766); END_STATE(); case 1764: - ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1817, - '-', 1820, - '>', 1737, - 'I', 1927, - '_', 1820, - 'i', 1927, - 'n', 1834, - 'r', 1883, - 'B', 1653, - 'b', 1653, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'r') ADVANCE(1762); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1766); END_STATE(); case 1765: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1817); - if (lookahead == '-') ADVANCE(1820); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'n') ADVANCE(1834); - if (lookahead == 'r') ADVANCE(1883); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 't') ADVANCE(1763); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1766); END_STATE(); case 1766: - ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1818, - '-', 1820, - '>', 1919, - 'I', 1927, - '_', 1820, - 'i', 1927, - 'n', 1834, - 'r', 1884, - 'B', 1653, - 'b', 1653, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1766); END_STATE(); case 1767: ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1818, - '-', 1820, - '>', 1919, - 'I', 1927, - '_', 1820, - 'i', 1927, - 'r', 1884, - 'B', 1653, - 'b', 1653, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1844); + if (lookahead == '>') ADVANCE(1743); + if (lookahead == 'r') ADVANCE(1534); + if (lookahead == 'u') ADVANCE(1905); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1768: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1818); - if (lookahead == '-') ADVANCE(1820); - if (lookahead == '>') ADVANCE(1919); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'n') ADVANCE(1834); - if (lookahead == 'r') ADVANCE(1884); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ADVANCE_MAP( + '+', 1821, + '-', 1824, + '>', 1741, + 'I', 1931, + '_', 1824, + 'i', 1931, + 'n', 1838, + 'r', 1887, + 'B', 1656, + 'b', 1656, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1769: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1818); - if (lookahead == '-') ADVANCE(1820); - if (lookahead == '>') ADVANCE(1919); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'r') ADVANCE(1884); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1821); + if (lookahead == '-') ADVANCE(1824); + if (lookahead == '>') ADVANCE(1741); + if (lookahead == '_') ADVANCE(1824); + if (lookahead == 'n') ADVANCE(1838); + if (lookahead == 'r') ADVANCE(1887); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1770: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1841); - if (lookahead == '>') ADVANCE(1735); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ADVANCE_MAP( + '+', 1822, + '-', 1824, + '>', 1923, + 'I', 1931, + '_', 1824, + 'i', 1931, + 'n', 1838, + 'r', 1888, + 'B', 1656, + 'b', 1656, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1771: ACCEPT_TOKEN(sym__unquoted_pattern); ADVANCE_MAP( - '+', 1869, - '>', 1737, - 'I', 1927, - 'i', 1927, - 'n', 1834, - 'r', 1883, - 'B', 1653, - 'b', 1653, + '+', 1822, + '-', 1824, + '>', 1923, + 'I', 1931, + '_', 1824, + 'i', 1931, + 'r', 1888, + 'B', 1656, + 'b', 1656, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1772: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1869); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'n') ADVANCE(1834); - if (lookahead == 'r') ADVANCE(1883); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1822); + if (lookahead == '-') ADVANCE(1824); + if (lookahead == '>') ADVANCE(1923); + if (lookahead == '_') ADVANCE(1824); + if (lookahead == 'n') ADVANCE(1838); + if (lookahead == 'r') ADVANCE(1888); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1773: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1870); - if (lookahead == '>') ADVANCE(1733); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1822); + if (lookahead == '-') ADVANCE(1824); + if (lookahead == '>') ADVANCE(1923); + if (lookahead == '_') ADVANCE(1824); + if (lookahead == 'r') ADVANCE(1888); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1774: ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1875, - '>', 1919, - 'I', 1927, - 'i', 1927, - 'n', 1834, - 'r', 1884, - 'B', 1653, - 'b', 1653, - ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1845); + if (lookahead == '>') ADVANCE(1739); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1775: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1875); - if (lookahead == '>') ADVANCE(1919); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == 'i') ADVANCE(1927); - if (lookahead == 'r') ADVANCE(1884); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ADVANCE_MAP( + '+', 1873, + '>', 1741, + 'I', 1931, + 'i', 1931, + 'n', 1838, + 'r', 1887, + 'B', 1656, + 'b', 1656, + ); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1776: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1875); - if (lookahead == '>') ADVANCE(1919); - if (lookahead == 'n') ADVANCE(1834); - if (lookahead == 'r') ADVANCE(1884); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1873); + if (lookahead == '>') ADVANCE(1741); + if (lookahead == 'n') ADVANCE(1838); + if (lookahead == 'r') ADVANCE(1887); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1777: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1875); - if (lookahead == '>') ADVANCE(1919); - if (lookahead == 'r') ADVANCE(1884); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1874); + if (lookahead == '>') ADVANCE(1737); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1778: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1842); - if (lookahead == '>') ADVANCE(1920); - if (lookahead == 'r') ADVANCE(1531); - if (lookahead == 'u') ADVANCE(1905); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ADVANCE_MAP( + '+', 1879, + '>', 1923, + 'I', 1931, + 'i', 1931, + 'n', 1838, + 'r', 1888, + 'B', 1656, + 'b', 1656, + ); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1779: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1842); - if (lookahead == '>') ADVANCE(1920); - if (lookahead == 'u') ADVANCE(1905); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1879); + if (lookahead == '>') ADVANCE(1923); + if (lookahead == 'I') ADVANCE(1931); + if (lookahead == 'i') ADVANCE(1931); + if (lookahead == 'r') ADVANCE(1888); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1780: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1877); - if (lookahead == '>') ADVANCE(1922); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1879); + if (lookahead == '>') ADVANCE(1923); + if (lookahead == 'n') ADVANCE(1838); + if (lookahead == 'r') ADVANCE(1888); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1781: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1843); - if (lookahead == '>') ADVANCE(1924); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1879); + if (lookahead == '>') ADVANCE(1923); + if (lookahead == 'r') ADVANCE(1888); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1782: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1484); - if (lookahead == '.') ADVANCE(1821); - if (lookahead == '_') ADVANCE(1792); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1930); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1846); + if (lookahead == '>') ADVANCE(1924); + if (lookahead == 'r') ADVANCE(1534); + if (lookahead == 'u') ADVANCE(1909); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1783: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1484); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1846); + if (lookahead == '>') ADVANCE(1924); + if (lookahead == 'u') ADVANCE(1909); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1784: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1827); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1881); + if (lookahead == '>') ADVANCE(1926); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1785: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1844); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '+') ADVANCE(1847); + if (lookahead == '>') ADVANCE(1928); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1786: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1914); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '-') ADVANCE(1488); + if (lookahead == '.') ADVANCE(1825); + if (lookahead == '_') ADVANCE(1796); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1934); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1787: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1915); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '-') ADVANCE(1488); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1788: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1916); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '-') ADVANCE(1831); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1789: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1917); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '-') ADVANCE(1848); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1790: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '.') ADVANCE(1593); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '-') ADVANCE(1918); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1791: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '.') ADVANCE(1814); - if (lookahead == '_') ADVANCE(1791); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '-') ADVANCE(1919); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1792: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '.') ADVANCE(1821); - if (lookahead == '_') ADVANCE(1792); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '-') ADVANCE(1920); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1793: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '=') ADVANCE(1548); - if (lookahead == '~') ADVANCE(1554); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '-') ADVANCE(1921); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1794: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '=') ADVANCE(1547); - if (lookahead == '>') ADVANCE(1500); - if (lookahead == '~') ADVANCE(1553); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '.') ADVANCE(1596); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1795: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '=') ADVANCE(1547); - if (lookahead == '~') ADVANCE(1553); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '.') ADVANCE(1818); + if (lookahead == '_') ADVANCE(1795); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1796: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1500); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '.') ADVANCE(1825); + if (lookahead == '_') ADVANCE(1796); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1797: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1747); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '=') ADVANCE(1551); + if (lookahead == '~') ADVANCE(1557); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1798: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1745); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '=') ADVANCE(1550); + if (lookahead == '>') ADVANCE(1504); + if (lookahead == '~') ADVANCE(1556); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1799: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1741); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '=') ADVANCE(1550); + if (lookahead == '~') ADVANCE(1556); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1800: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1743); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1504); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1801: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1921); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1751); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1802: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1923); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1749); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1803: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1925); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1745); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1804: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1926); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1747); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1805: ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - 'I', 1927, - '_', 1820, - 'i', 1927, - 'n', 1834, - '+', 1820, - '-', 1820, - 'B', 1653, - 'b', 1653, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1925); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1806: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'i') ADVANCE(1927); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1820); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1927); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1807: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'i') ADVANCE(1829); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1820); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1929); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1808: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == 'i') ADVANCE(1927); - if (lookahead == 'n') ADVANCE(1834); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '>') ADVANCE(1930); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1809: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == 'i') ADVANCE(1927); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + ADVANCE_MAP( + 'I', 1931, + '_', 1824, + 'i', 1931, + 'n', 1838, + '+', 1824, + '-', 1824, + 'B', 1656, + 'b', 1656, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1810: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == 'i') ADVANCE(1829); + if (lookahead == 'I') ADVANCE(1931); + if (lookahead == '_') ADVANCE(1824); + if (lookahead == 'i') ADVANCE(1931); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1824); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1656); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1811: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == 'i') ADVANCE(1862); - if (lookahead == 'o') ADVANCE(1832); - if (lookahead == 's') ADVANCE(1658); + if (lookahead == 'I') ADVANCE(1931); + if (lookahead == '_') ADVANCE(1824); + if (lookahead == 'i') ADVANCE(1833); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1824); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1656); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1812: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1927); - if (lookahead == 'i') ADVANCE(1862); - if (lookahead == 's') ADVANCE(1658); + if (lookahead == 'I') ADVANCE(1931); + if (lookahead == 'i') ADVANCE(1931); + if (lookahead == 'n') ADVANCE(1838); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1813: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1813); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'I') ADVANCE(1931); + if (lookahead == 'i') ADVANCE(1931); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1814: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1814); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'I') ADVANCE(1931); + if (lookahead == 'i') ADVANCE(1833); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1815: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1815); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'I') ADVANCE(1931); + if (lookahead == 'i') ADVANCE(1866); + if (lookahead == 'o') ADVANCE(1836); + if (lookahead == 's') ADVANCE(1661); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1816: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'n') ADVANCE(1834); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1820); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'I') ADVANCE(1931); + if (lookahead == 'i') ADVANCE(1866); + if (lookahead == 's') ADVANCE(1661); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1817: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'o') ADVANCE(1797); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '_') ADVANCE(1817); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1818: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == 'o') ADVANCE(1801); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '_') ADVANCE(1818); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1819: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1820); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1820); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '_') ADVANCE(1819); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1820: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1820); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '_') ADVANCE(1824); + if (lookahead == 'n') ADVANCE(1838); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1821: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1821); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '_') ADVANCE(1824); + if (lookahead == 'o') ADVANCE(1801); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1822: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1892); - if (lookahead == 'r') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '_') ADVANCE(1824); + if (lookahead == 'o') ADVANCE(1805); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1823: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1892); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '_') ADVANCE(1824); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1824: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1918); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '_') ADVANCE(1824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1825: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1886); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '_') ADVANCE(1825); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1826: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1893); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'a') ADVANCE(1896); + if (lookahead == 'r') ADVANCE(1661); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1827: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1867); - if (lookahead == 'o') ADVANCE(1881); - if (lookahead == 's') ADVANCE(1850); - if (lookahead == 'x') ADVANCE(1876); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'a') ADVANCE(1896); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1828: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1890); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'a') ADVANCE(1922); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1829: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'a') ADVANCE(1890); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1830: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'c') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'a') ADVANCE(1897); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1831: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1527); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'a') ADVANCE(1871); + if (lookahead == 'o') ADVANCE(1885); + if (lookahead == 's') ADVANCE(1854); + if (lookahead == 'x') ADVANCE(1880); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1832: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1571); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'a') ADVANCE(1894); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1833: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1585); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1834: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1894); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'c') ADVANCE(1661); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1835: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1896); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'd') ADVANCE(1530); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1836: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1556); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'd') ADVANCE(1574); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1837: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1558); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'd') ADVANCE(1588); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1838: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1830); - if (lookahead == 't') ADVANCE(1825); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'd') ADVANCE(1898); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1839: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1830); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'd') ADVANCE(1900); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1840: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1798); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1559); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1841: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1887); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1561); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1842: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1802); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1834); + if (lookahead == 't') ADVANCE(1829); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1843: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1888); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1834); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1844: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1868); - if (lookahead == 'h') ADVANCE(1826); - if (lookahead == 'i') ADVANCE(1864); - if (lookahead == 'l') ADVANCE(1857); - if (lookahead == 's') ADVANCE(1911); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1802); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1845: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'f') ADVANCE(1068); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1891); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1846: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1543); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1806); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1847: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1539); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1892); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1848: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1545); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'e') ADVANCE(1872); + if (lookahead == 'h') ADVANCE(1830); + if (lookahead == 'i') ADVANCE(1868); + if (lookahead == 'l') ADVANCE(1861); + if (lookahead == 's') ADVANCE(1915); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1849: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1541); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'f') ADVANCE(1071); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1850: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1861); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'h') ADVANCE(1546); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1851: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1859); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'h') ADVANCE(1542); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1852: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1898); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'h') ADVANCE(1548); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1853: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1902); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'h') ADVANCE(1544); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1854: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1904); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'h') ADVANCE(1865); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1855: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1906); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'i') ADVANCE(1863); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1856: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1907); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'i') ADVANCE(1902); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1857: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1860); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'i') ADVANCE(1906); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1858: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'k') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'i') ADVANCE(1908); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1859: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'k') ADVANCE(1836); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'i') ADVANCE(1910); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1860: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'k') ADVANCE(1837); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'i') ADVANCE(1911); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1861: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'l') ADVANCE(1581); - if (lookahead == 'r') ADVANCE(1583); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'i') ADVANCE(1864); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1862: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'k') ADVANCE(1661); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1863: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1083); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'k') ADVANCE(1840); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1864: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1533); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'k') ADVANCE(1841); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1865: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1831); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'l') ADVANCE(1584); + if (lookahead == 'r') ADVANCE(1586); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1866: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1834); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'n') ADVANCE(1661); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1867: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1833); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'n') ADVANCE(1086); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1868: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1835); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'n') ADVANCE(1536); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1869: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1797); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'n') ADVANCE(1835); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1870: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1912); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'n') ADVANCE(1838); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1871: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1880); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'n') ADVANCE(1837); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1872: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1900); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'n') ADVANCE(1839); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1873: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1900); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1801); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1874: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1832); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1916); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1875: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1801); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1884); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1876: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1882); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1904); + if (lookahead == 's') ADVANCE(1661); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1877: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1913); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1904); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1878: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1836); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1879: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1531); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1805); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1880: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1529); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1886); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1881: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1589); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'o') ADVANCE(1917); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1882: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1587); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1661); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1883: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1773); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1534); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1884: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1780); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1532); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1885: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1800); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1592); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1886: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1909); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1590); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1887: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1885); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1777); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1888: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1889); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1784); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1889: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 'r') ADVANCE(1804); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1890: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1910); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1913); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1891: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1889); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1892: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1535); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1893); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1893: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1537); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1808); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1894: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1786); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'r') ADVANCE(1914); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1895: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1787); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 's') ADVANCE(1661); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1896: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1788); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 's') ADVANCE(1538); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1897: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1789); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 's') ADVANCE(1540); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1898: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1784); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 's') ADVANCE(1790); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1899: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1825); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 's') ADVANCE(1791); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1900: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1785); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 's') ADVANCE(1792); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1901: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1770); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 's') ADVANCE(1793); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1902: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1846); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1788); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1903: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1799); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1829); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1904: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1847); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1789); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1905: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1781); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1774); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1906: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1848); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1850); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1907: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1849); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1803); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1908: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1803); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1851); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1909: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1895); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1785); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1910: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1897); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1852); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1911: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1828); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1853); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1912: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'u') ADVANCE(1903); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1807); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1913: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'u') ADVANCE(1908); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1899); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1914: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'w') ADVANCE(1853); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1901); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1915: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'w') ADVANCE(1854); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 't') ADVANCE(1832); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1916: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'w') ADVANCE(1855); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'u') ADVANCE(1907); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1917: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'w') ADVANCE(1856); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'u') ADVANCE(1912); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1918: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'y') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'w') ADVANCE(1857); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1919: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1455); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'w') ADVANCE(1858); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1920: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1456); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'w') ADVANCE(1859); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1921: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1460); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'w') ADVANCE(1860); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1922: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1453); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'y') ADVANCE(1661); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1923: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1459); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '|') ADVANCE(1458); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1924: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1454); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '|') ADVANCE(1459); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1925: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1457); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '|') ADVANCE(1463); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1926: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1458); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '|') ADVANCE(1456); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1927: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '|') ADVANCE(1462); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1928: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1106); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '|') ADVANCE(1457); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1929: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1932); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '|') ADVANCE(1460); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1930: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1928); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == '|') ADVANCE(1461); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1931: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1929); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1932: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1933); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1109); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1933: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1104); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1936); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1934: ACCEPT_TOKEN(sym__unquoted_pattern); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1934); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1932); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1935: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1593); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1933); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1936: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1503); - if (lookahead == '_') ADVANCE(1945); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1937); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1937: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1503); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1107); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1938: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1946); - if (lookahead == '_') ADVANCE(1938); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + ACCEPT_TOKEN(sym__unquoted_pattern); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); END_STATE(); case 1939: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1958); - if (lookahead == '_') ADVANCE(1948); - if (lookahead == 'i') ADVANCE(1958); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1948); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == '.') ADVANCE(1596); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); END_STATE(); case 1940: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1958); - if (lookahead == '_') ADVANCE(1948); - if (lookahead == 'i') ADVANCE(1950); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1948); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == '.') ADVANCE(1507); + if (lookahead == '_') ADVANCE(1949); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); END_STATE(); case 1941: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1958); - if (lookahead == 'i') ADVANCE(1958); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == '.') ADVANCE(1507); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); END_STATE(); case 1942: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1958); - if (lookahead == 'i') ADVANCE(1950); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == '.') ADVANCE(1950); + if (lookahead == '_') ADVANCE(1942); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); END_STATE(); case 1943: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1958); - if (lookahead == 'i') ADVANCE(1954); - if (lookahead == 's') ADVANCE(1658); + if (lookahead == 'I') ADVANCE(1962); + if (lookahead == '_') ADVANCE(1952); + if (lookahead == 'i') ADVANCE(1962); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1952); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + lookahead == 'b') ADVANCE(1656); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); END_STATE(); case 1944: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1944); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'I') ADVANCE(1962); + if (lookahead == '_') ADVANCE(1952); + if (lookahead == 'i') ADVANCE(1954); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1952); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); END_STATE(); case 1945: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1945); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'I') ADVANCE(1962); + if (lookahead == 'i') ADVANCE(1962); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); END_STATE(); case 1946: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1946); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'I') ADVANCE(1962); + if (lookahead == 'i') ADVANCE(1954); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); END_STATE(); case 1947: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1948); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1948); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'I') ADVANCE(1962); + if (lookahead == 'i') ADVANCE(1958); + if (lookahead == 's') ADVANCE(1661); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); END_STATE(); case 1948: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); if (lookahead == '_') ADVANCE(1948); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); END_STATE(); case 1949: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'a') ADVANCE(1957); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == '_') ADVANCE(1949); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); END_STATE(); case 1950: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == '_') ADVANCE(1950); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); END_STATE(); case 1951: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'c') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == '_') ADVANCE(1952); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1952); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); END_STATE(); case 1952: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'e') ADVANCE(1951); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == '_') ADVANCE(1952); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); END_STATE(); case 1953: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'k') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'a') ADVANCE(1961); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); END_STATE(); case 1954: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'n') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); END_STATE(); case 1955: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'r') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'c') ADVANCE(1661); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); END_STATE(); case 1956: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'e') ADVANCE(1955); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); END_STATE(); case 1957: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'y') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'k') ADVANCE(1661); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); END_STATE(); case 1958: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 'n') ADVANCE(1661); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); END_STATE(); case 1959: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1959); + if (lookahead == 'r') ADVANCE(1661); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); END_STATE(); case 1960: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1593); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 's') ADVANCE(1661); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); END_STATE(); case 1961: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1592); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 'y') ADVANCE(1661); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); END_STATE(); case 1962: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1482); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); END_STATE(); case 1963: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1971); - if (lookahead == '_') ADVANCE(1963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); END_STATE(); case 1964: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1962); - if (lookahead == '_') ADVANCE(1972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '.') ADVANCE(1596); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); case 1965: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1962); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '.') ADVANCE(1595); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); case 1966: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1985); - if (lookahead == '_') ADVANCE(1974); - if (lookahead == 'i') ADVANCE(1985); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1974); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '.') ADVANCE(1486); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); case 1967: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1985); - if (lookahead == '_') ADVANCE(1974); - if (lookahead == 'i') ADVANCE(1977); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1974); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); + if (lookahead == '.') ADVANCE(1975); + if (lookahead == '_') ADVANCE(1967); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); case 1968: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1985); - if (lookahead == 'i') ADVANCE(1985); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '.') ADVANCE(1966); + if (lookahead == '_') ADVANCE(1976); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); case 1969: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1985); - if (lookahead == 'i') ADVANCE(1977); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '.') ADVANCE(1966); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); case 1970: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1985); - if (lookahead == 'i') ADVANCE(1981); - if (lookahead == 's') ADVANCE(1658); + if (lookahead == 'I') ADVANCE(1989); + if (lookahead == '_') ADVANCE(1978); + if (lookahead == 'i') ADVANCE(1989); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1978); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'b') ADVANCE(1656); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); case 1971: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(1971); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'I') ADVANCE(1989); + if (lookahead == '_') ADVANCE(1978); + if (lookahead == 'i') ADVANCE(1981); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1978); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); case 1972: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(1972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'I') ADVANCE(1989); + if (lookahead == 'i') ADVANCE(1989); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); case 1973: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(1974); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1974); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'I') ADVANCE(1989); + if (lookahead == 'i') ADVANCE(1981); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); case 1974: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(1974); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'I') ADVANCE(1989); + if (lookahead == 'i') ADVANCE(1985); + if (lookahead == 's') ADVANCE(1661); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); case 1975: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); if (lookahead == '_') ADVANCE(1975); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); case 1976: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'a') ADVANCE(1984); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '_') ADVANCE(1976); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); case 1977: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '_') ADVANCE(1978); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1978); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); case 1978: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'c') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '_') ADVANCE(1978); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); case 1979: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'e') ADVANCE(1978); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == '_') ADVANCE(1979); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); case 1980: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'k') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'a') ADVANCE(1988); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); case 1981: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'n') ADVANCE(1658); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); case 1982: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'r') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'c') ADVANCE(1661); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); case 1983: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 's') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'e') ADVANCE(1982); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); case 1984: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'y') ADVANCE(1658); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'k') ADVANCE(1661); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); case 1985: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 'n') ADVANCE(1661); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1653); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); case 1986: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1986); + if (lookahead == 'r') ADVANCE(1661); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); case 1987: - ACCEPT_TOKEN(sym__unquoted_naive); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - lookahead != '(' && - lookahead != ')' && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1987); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 's') ADVANCE(1661); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); case 1988: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '$') ADVANCE(1617); - if (lookahead == '(') ADVANCE(1591); - if (lookahead == '[') ADVANCE(1705); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 'y') ADVANCE(1661); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); case 1989: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2025); - if (lookahead == '>') ADVANCE(1737); - if (lookahead == 'r') ADVANCE(2031); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1656); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); case 1990: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2018); - if (lookahead == '>') ADVANCE(1739); - if (lookahead == 'u') ADVANCE(2039); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); END_STATE(); case 1991: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2026); - if (lookahead == '>') ADVANCE(1733); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + ACCEPT_TOKEN(sym__unquoted_naive); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '(' && + lookahead != ')' && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1991); END_STATE(); case 1992: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2019); - if (lookahead == '>') ADVANCE(1735); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '$') ADVANCE(1620); + if (lookahead == '(') ADVANCE(1594); + if (lookahead == '[') ADVANCE(1708); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 1993: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2028); - if (lookahead == '>') ADVANCE(1736); - if (lookahead == 'r') ADVANCE(2032); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '+') ADVANCE(2029); + if (lookahead == '>') ADVANCE(1741); + if (lookahead == 'r') ADVANCE(2035); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 1994: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2020); - if (lookahead == '>') ADVANCE(1738); - if (lookahead == 'u') ADVANCE(2041); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '+') ADVANCE(2022); + if (lookahead == '>') ADVANCE(1743); + if (lookahead == 'u') ADVANCE(2043); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 1995: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2029); - if (lookahead == '>') ADVANCE(1732); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '+') ADVANCE(2030); + if (lookahead == '>') ADVANCE(1737); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 1996: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2021); - if (lookahead == '>') ADVANCE(1734); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '+') ADVANCE(2023); + if (lookahead == '>') ADVANCE(1739); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 1997: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(2065); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '+') ADVANCE(2032); + if (lookahead == '>') ADVANCE(1740); + if (lookahead == 'r') ADVANCE(2036); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 1998: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(1507); - if (lookahead == '_') ADVANCE(2014); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '+') ADVANCE(2024); + if (lookahead == '>') ADVANCE(1742); + if (lookahead == 'u') ADVANCE(2045); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 1999: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(1505); - if (lookahead == '_') ADVANCE(2014); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '+') ADVANCE(2033); + if (lookahead == '>') ADVANCE(1736); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2000: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(2013); - if (lookahead == '_') ADVANCE(2000); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '+') ADVANCE(2025); + if (lookahead == '>') ADVANCE(1738); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2001: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '2') ADVANCE(2055); - if (lookahead == '0' || - lookahead == '1') ADVANCE(2063); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '-') ADVANCE(2069); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2002: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(2067); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '.') ADVANCE(1511); + if (lookahead == '_') ADVANCE(2018); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2003: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(2069); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '.') ADVANCE(1509); + if (lookahead == '_') ADVANCE(2018); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2004: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1747); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '.') ADVANCE(2017); + if (lookahead == '_') ADVANCE(2004); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2005: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1745); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '2') ADVANCE(2059); + if (lookahead == '0' || + lookahead == '1') ADVANCE(2067); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2006: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1741); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == ':') ADVANCE(2071); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2007: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1743); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == ':') ADVANCE(2073); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2008: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1746); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '>') ADVANCE(1751); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2009: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1744); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '>') ADVANCE(1749); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2010: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1740); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '>') ADVANCE(1745); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2011: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1742); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '>') ADVANCE(1747); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2012: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2012); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '>') ADVANCE(1750); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2013: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2013); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '>') ADVANCE(1748); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2014: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2014); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '>') ADVANCE(1744); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2015: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(2023); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '>') ADVANCE(1746); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2016: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(1089); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '_') ADVANCE(2016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2017: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(1092); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '_') ADVANCE(2017); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2018: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2005); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == '_') ADVANCE(2018); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2019: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2033); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'a') ADVANCE(2027); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2020: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2009); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'e') ADVANCE(1092); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2021: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2036); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'e') ADVANCE(1095); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2022: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(1095); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'e') ADVANCE(2009); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2023: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2037); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'e') ADVANCE(2037); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2024: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2022); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'e') ADVANCE(2013); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2025: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2004); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'e') ADVANCE(2040); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2026: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2045); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'l') ADVANCE(1098); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2027: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2038); - if (lookahead == 'u') ADVANCE(2024); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2050); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'l') ADVANCE(2041); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2028: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2008); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'l') ADVANCE(2026); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2029: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2046); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'o') ADVANCE(2008); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2030: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2044); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'o') ADVANCE(2049); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2031: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(1991); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'o') ADVANCE(2042); + if (lookahead == 'u') ADVANCE(2028); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2054); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2032: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(1995); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'o') ADVANCE(2012); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2033: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2034); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'o') ADVANCE(2050); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2034: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2007); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'r') ADVANCE(2048); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2035: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2011); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'r') ADVANCE(1995); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2036: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2035); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'r') ADVANCE(1999); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2037: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(2017); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'r') ADVANCE(2038); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2038: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2056); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'r') ADVANCE(2011); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2039: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(1992); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'r') ADVANCE(2015); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2040: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2006); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'r') ADVANCE(2039); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2041: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(1996); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 's') ADVANCE(2021); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2042: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2010); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 't') ADVANCE(2060); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2043: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2024); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2050); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 't') ADVANCE(1996); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2044: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2016); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 't') ADVANCE(2010); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2045: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2040); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 't') ADVANCE(2000); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2046: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2042); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 't') ADVANCE(2014); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2047: ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == 'u') ADVANCE(2028); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2050); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + lookahead == 'a') ADVANCE(2054); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2048: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1100); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'u') ADVANCE(2020); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2049: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2053); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'u') ADVANCE(2044); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2050: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1109); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'u') ADVANCE(2046); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2051: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2048); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2054); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2052: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2049); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1103); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2053: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2054); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2057); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2054: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1098); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1112); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2055: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1672); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2052); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2056: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1560); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2053); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2057: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2058); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2058: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1997); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1101); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2059: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2003); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2060: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1675); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1563); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2061: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1669); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1670); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2062: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2001); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2063: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2007); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2064: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2058); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1678); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2065: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2060); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2066: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2059); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1683); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2067: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2061); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1675); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2068: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2002); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2062); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2069: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2068); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2064); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2070: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2063); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2071: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(2074); - if (lookahead == '_') ADVANCE(2075); - if (lookahead == '\t' || - lookahead == ' ') SKIP(193); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2073); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2077); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2065); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2072: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(2074); - if (lookahead == '_') ADVANCE(2075); - if (lookahead == '\t' || - lookahead == ' ') SKIP(255); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2073); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2077); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2006); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2073: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(2076); - if (lookahead == '_') ADVANCE(2073); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2077); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2072); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2074: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(2074); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2077); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); END_STATE(); case 2075: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(2075); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2077); + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '$') ADVANCE(1473); + if (lookahead == '(') ADVANCE(1564); + if (lookahead == '.') ADVANCE(2078); + if (lookahead == '_') ADVANCE(2079); + if (lookahead == '\t' || + lookahead == ' ') SKIP(198); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2081); END_STATE(); case 2076: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(2076); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2077); + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '.') ADVANCE(2078); + if (lookahead == '_') ADVANCE(2079); + if (lookahead == '\t' || + lookahead == ' ') SKIP(259); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2081); END_STATE(); case 2077: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2077); + if (lookahead == '.') ADVANCE(2080); + if (lookahead == '_') ADVANCE(2077); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2081); END_STATE(); case 2078: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '$') ADVANCE(1617); - if (lookahead == '(') ADVANCE(1591); - if (lookahead == '[') ADVANCE(1705); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(2078); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2081); END_STATE(); case 2079: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '-') ADVANCE(2123); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(2079); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2081); END_STATE(); case 2080: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(1507); - if (lookahead == '_') ADVANCE(2089); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '_') ADVANCE(2080); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2081); END_STATE(); case 2081: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(2088); - if (lookahead == '_') ADVANCE(2082); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2108); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2081); END_STATE(); case 2082: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(2088); - if (lookahead == '_') ADVANCE(2082); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == '$') ADVANCE(1620); + if (lookahead == '(') ADVANCE(1594); + if (lookahead == '[') ADVANCE(1708); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2132); END_STATE(); case 2083: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(1506); - if (lookahead == '_') ADVANCE(2089); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == '-') ADVANCE(2127); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2084: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '2') ADVANCE(2114); - if (lookahead == '0' || - lookahead == '1') ADVANCE(2122); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == '.') ADVANCE(1511); + if (lookahead == '_') ADVANCE(2093); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2085: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(2125); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == '.') ADVANCE(2092); + if (lookahead == '_') ADVANCE(2086); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2112); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2086: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(2127); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == '.') ADVANCE(2092); + if (lookahead == '_') ADVANCE(2086); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2087: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(2087); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == '.') ADVANCE(1510); + if (lookahead == '_') ADVANCE(2093); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2088: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(2088); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == '2') ADVANCE(2118); + if (lookahead == '0' || + lookahead == '1') ADVANCE(2126); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2089: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(2089); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == ':') ADVANCE(2129); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2090: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'a') ADVANCE(2094); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == ':') ADVANCE(2131); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2091: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(1089); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == '_') ADVANCE(2091); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2092: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(1092); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == '_') ADVANCE(2092); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2093: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(1095); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == '_') ADVANCE(2093); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2094: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(2097); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'a') ADVANCE(2098); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2095: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(2093); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'e') ADVANCE(1092); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2096: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(2098); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'e') ADVANCE(1095); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2097: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 's') ADVANCE(2092); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'l') ADVANCE(1098); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2098: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(2091); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'l') ADVANCE(2101); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2099: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(2095); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2105); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'l') ADVANCE(2097); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2100: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2105); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'r') ADVANCE(2102); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2101: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1107); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 's') ADVANCE(2096); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2102: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1101); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'u') ADVANCE(2095); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2103: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2110); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'u') ADVANCE(2099); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2109); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2104: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2111); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2109); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2105: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1109); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1110); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2106: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2102); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1104); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2107: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2103); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2114); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2108: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2101); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2115); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2109: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2104); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + lookahead == 'n') ADVANCE(1112); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2110: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2112); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2106); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2111: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2113); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2107); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2112: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1098); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2105); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2113: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1104); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2108); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2114: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1673); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2116); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2115: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1667); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2117); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2116: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2079); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1101); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2117: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2086); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1107); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2118: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2116); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2119: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1670); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2120: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1670); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2083); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2121: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1681); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2090); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2122: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2120); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2123: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2119); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1679); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2124: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2117); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2125: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2120); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1684); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2126: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2085); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2127: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2126); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2123); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2128: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2121); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2129: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1509); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(2132); - if (lookahead == ']') ADVANCE(1466); - if (lookahead == '_') ADVANCE(2133); - if (lookahead == '\t' || - lookahead == ' ') SKIP(191); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2131); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2135); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2124); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2130: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(2132); - if (lookahead == '_') ADVANCE(2133); - if (lookahead == '\t' || - lookahead == ' ') SKIP(193); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2131); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2135); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2089); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2131: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(2134); - if (lookahead == '_') ADVANCE(2131); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2135); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2130); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2132: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(2132); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2135); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); END_STATE(); case 2133: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(2133); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2135); + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '$') ADVANCE(1513); + if (lookahead == '(') ADVANCE(1564); + if (lookahead == '.') ADVANCE(2136); + if (lookahead == ']') ADVANCE(1469); + if (lookahead == '_') ADVANCE(2137); + if (lookahead == '\t' || + lookahead == ' ') SKIP(196); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2135); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2139); END_STATE(); case 2134: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(2134); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2135); + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '$') ADVANCE(1473); + if (lookahead == '(') ADVANCE(1564); + if (lookahead == '.') ADVANCE(2136); + if (lookahead == '_') ADVANCE(2137); + if (lookahead == '\t' || + lookahead == ' ') SKIP(198); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2135); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2139); END_STATE(); case 2135: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2135); + if (lookahead == '.') ADVANCE(2138); + if (lookahead == '_') ADVANCE(2135); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2139); END_STATE(); case 2136: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '-') ADVANCE(2171); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(2136); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2139); END_STATE(); case 2137: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(1507); - if (lookahead == '_') ADVANCE(2143); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(2137); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2139); END_STATE(); case 2138: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(2142); - if (lookahead == '_') ADVANCE(2139); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2162); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '_') ADVANCE(2138); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2139); END_STATE(); case 2139: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(2142); - if (lookahead == '_') ADVANCE(2139); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1645); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2139); END_STATE(); case 2140: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == ':') ADVANCE(555); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == '-') ADVANCE(2175); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); case 2141: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(2141); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == '.') ADVANCE(1511); + if (lookahead == '_') ADVANCE(2147); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); case 2142: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(2142); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == '.') ADVANCE(2146); + if (lookahead == '_') ADVANCE(2143); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2166); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); case 2143: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '.') ADVANCE(2146); if (lookahead == '_') ADVANCE(2143); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); case 2144: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'a') ADVANCE(2148); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == ':') ADVANCE(556); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); case 2145: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(1089); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == '_') ADVANCE(2145); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); case 2146: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(1092); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == '_') ADVANCE(2146); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); case 2147: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(1095); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == '_') ADVANCE(2147); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); case 2148: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(2151); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'a') ADVANCE(2152); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); case 2149: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(2147); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'e') ADVANCE(1092); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); case 2150: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(2152); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'e') ADVANCE(1095); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); case 2151: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 's') ADVANCE(2146); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'l') ADVANCE(1098); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); case 2152: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(2145); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'l') ADVANCE(2155); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); case 2153: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(2149); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2159); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'l') ADVANCE(2151); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); case 2154: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2159); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'r') ADVANCE(2156); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); case 2155: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1108); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 's') ADVANCE(2150); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); case 2156: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1102); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'u') ADVANCE(2149); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); case 2157: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2164); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'u') ADVANCE(2153); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2163); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); case 2158: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2165); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2163); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); case 2159: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1109); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1111); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); case 2160: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2156); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1105); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); case 2161: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2157); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2168); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); case 2162: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2155); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2169); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); case 2163: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2158); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + lookahead == 'n') ADVANCE(1112); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); case 2164: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2166); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2160); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); case 2165: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2167); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2161); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); case 2166: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1098); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2159); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); case 2167: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1104); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2162); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); case 2168: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2136); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2170); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); case 2169: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2140); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2171); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); case 2170: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2168); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1101); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); case 2171: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2173); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1107); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); case 2172: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2169); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2140); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); case 2173: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1677); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2144); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); case 2174: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2172); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); END_STATE(); case 2175: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2177); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + END_STATE(); + case 2176: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2173); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + END_STATE(); + case 2177: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + END_STATE(); + case 2178: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + END_STATE(); + case 2179: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '$') ADVANCE(1470); - if (lookahead == '(') ADVANCE(1561); - if (lookahead == '.') ADVANCE(2178); - if (lookahead == '_') ADVANCE(2179); + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '$') ADVANCE(1473); + if (lookahead == '(') ADVANCE(1564); + if (lookahead == '.') ADVANCE(2182); + if (lookahead == '_') ADVANCE(2183); if (lookahead == '\t' || - lookahead == ' ') SKIP(193); + lookahead == ' ') SKIP(198); if (lookahead == '+' || - lookahead == '-') ADVANCE(2177); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2181); + lookahead == '-') ADVANCE(2181); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2185); END_STATE(); - case 2176: + case 2180: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '#') ADVANCE(2188); - if (lookahead == '.') ADVANCE(2178); - if (lookahead == '_') ADVANCE(2179); + if (lookahead == '#') ADVANCE(2192); + if (lookahead == '.') ADVANCE(2182); + if (lookahead == '_') ADVANCE(2183); if (lookahead == '\t' || - lookahead == ' ') SKIP(255); + lookahead == ' ') SKIP(259); if (lookahead == '+' || - lookahead == '-') ADVANCE(2177); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2181); + lookahead == '-') ADVANCE(2181); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2185); END_STATE(); - case 2177: + case 2181: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(2180); - if (lookahead == '_') ADVANCE(2177); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1611); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2181); + if (lookahead == '.') ADVANCE(2184); + if (lookahead == '_') ADVANCE(2181); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2185); END_STATE(); - case 2178: + case 2182: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(2178); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2181); + if (lookahead == '_') ADVANCE(2182); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2185); END_STATE(); - case 2179: + case 2183: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(2179); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1609); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2181); + if (lookahead == '_') ADVANCE(2183); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2185); END_STATE(); - case 2180: + case 2184: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(2180); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2181); + if (lookahead == '_') ADVANCE(2184); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2185); END_STATE(); - case 2181: + case 2185: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2181); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2185); END_STATE(); - case 2182: + case 2186: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); - if (lookahead == '#') ADVANCE(2195); + if (lookahead == '#') ADVANCE(2199); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2183); + lookahead != '|') ADVANCE(2187); END_STATE(); - case 2183: + case 2187: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32376,20 +32531,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2183); + lookahead != '|') ADVANCE(2187); END_STATE(); - case 2184: + case 2188: ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); - if (lookahead == '#') ADVANCE(2194); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2185); + if (lookahead == '#') ADVANCE(2198); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2189); END_STATE(); - case 2185: + case 2189: ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2185); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2189); END_STATE(); - case 2186: + case 2190: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); - if (lookahead == '#') ADVANCE(2193); + if (lookahead == '#') ADVANCE(2197); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -32398,9 +32553,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2187); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2191); END_STATE(); - case 2187: + case 2191: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32410,30 +32565,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2187); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2191); END_STATE(); - case 2188: + case 2192: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 2189: + case 2193: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '\n') ADVANCE(663); - if (lookahead == '\r') ADVANCE(665); - if (lookahead != 0) ADVANCE(665); + if (lookahead == '\n') ADVANCE(666); + if (lookahead == '\r') ADVANCE(668); + if (lookahead != 0) ADVANCE(668); END_STATE(); - case 2190: + case 2194: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(662); + if (lookahead == '!') ADVANCE(665); END_STATE(); - case 2191: + case 2195: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); - case 2192: + case 2196: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1715); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1718); END_STATE(); - case 2193: + case 2197: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32443,13 +32598,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2187); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2191); END_STATE(); - case 2194: + case 2198: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2185); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2189); END_STATE(); - case 2195: + case 2199: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32457,26 +32612,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2183); + lookahead != '|') ADVANCE(2187); END_STATE(); - case 2196: + case 2200: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2198); + lookahead != '\n') ADVANCE(2202); END_STATE(); - case 2197: + case 2201: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '#') ADVANCE(2196); + if (lookahead == '#') ADVANCE(2200); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2197); + lookahead == ' ') ADVANCE(2201); if (lookahead != 0 && lookahead != '\t' && - lookahead != '\n') ADVANCE(2198); + lookahead != '\n') ADVANCE(2202); END_STATE(); - case 2198: + case 2202: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2198); + lookahead != '\n') ADVANCE(2202); END_STATE(); default: return false; @@ -33024,5212 +33179,5268 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 629, .external_lex_state = 2}, - [2] = {.lex_state = 31, .external_lex_state = 2}, - [3] = {.lex_state = 31, .external_lex_state = 2}, - [4] = {.lex_state = 31, .external_lex_state = 2}, - [5] = {.lex_state = 31, .external_lex_state = 2}, - [6] = {.lex_state = 31, .external_lex_state = 2}, - [7] = {.lex_state = 31, .external_lex_state = 2}, - [8] = {.lex_state = 31, .external_lex_state = 2}, - [9] = {.lex_state = 31, .external_lex_state = 2}, - [10] = {.lex_state = 31, .external_lex_state = 2}, - [11] = {.lex_state = 31, .external_lex_state = 2}, - [12] = {.lex_state = 31, .external_lex_state = 2}, - [13] = {.lex_state = 31, .external_lex_state = 2}, - [14] = {.lex_state = 31, .external_lex_state = 2}, - [15] = {.lex_state = 31, .external_lex_state = 2}, - [16] = {.lex_state = 622, .external_lex_state = 2}, - [17] = {.lex_state = 622, .external_lex_state = 2}, - [18] = {.lex_state = 622, .external_lex_state = 2}, - [19] = {.lex_state = 622, .external_lex_state = 2}, - [20] = {.lex_state = 622, .external_lex_state = 2}, - [21] = {.lex_state = 622, .external_lex_state = 2}, - [22] = {.lex_state = 622, .external_lex_state = 2}, - [23] = {.lex_state = 622, .external_lex_state = 2}, - [24] = {.lex_state = 622, .external_lex_state = 2}, - [25] = {.lex_state = 622, .external_lex_state = 2}, - [26] = {.lex_state = 622, .external_lex_state = 2}, - [27] = {.lex_state = 622, .external_lex_state = 2}, - [28] = {.lex_state = 622, .external_lex_state = 2}, - [29] = {.lex_state = 622, .external_lex_state = 2}, - [30] = {.lex_state = 622, .external_lex_state = 2}, - [31] = {.lex_state = 622, .external_lex_state = 2}, - [32] = {.lex_state = 622, .external_lex_state = 2}, - [33] = {.lex_state = 622, .external_lex_state = 2}, - [34] = {.lex_state = 622, .external_lex_state = 2}, - [35] = {.lex_state = 29, .external_lex_state = 2}, - [36] = {.lex_state = 29, .external_lex_state = 2}, - [37] = {.lex_state = 622, .external_lex_state = 2}, - [38] = {.lex_state = 29, .external_lex_state = 2}, - [39] = {.lex_state = 29, .external_lex_state = 2}, - [40] = {.lex_state = 622, .external_lex_state = 2}, - [41] = {.lex_state = 29, .external_lex_state = 2}, - [42] = {.lex_state = 622, .external_lex_state = 2}, - [43] = {.lex_state = 29, .external_lex_state = 2}, - [44] = {.lex_state = 622, .external_lex_state = 2}, - [45] = {.lex_state = 622, .external_lex_state = 2}, - [46] = {.lex_state = 29, .external_lex_state = 2}, - [47] = {.lex_state = 29, .external_lex_state = 2}, - [48] = {.lex_state = 29, .external_lex_state = 2}, - [49] = {.lex_state = 622, .external_lex_state = 2}, - [50] = {.lex_state = 29, .external_lex_state = 2}, - [51] = {.lex_state = 29, .external_lex_state = 2}, - [52] = {.lex_state = 29, .external_lex_state = 2}, - [53] = {.lex_state = 622, .external_lex_state = 2}, - [54] = {.lex_state = 29, .external_lex_state = 2}, - [55] = {.lex_state = 622, .external_lex_state = 2}, - [56] = {.lex_state = 29, .external_lex_state = 2}, - [57] = {.lex_state = 622, .external_lex_state = 2}, - [58] = {.lex_state = 29, .external_lex_state = 2}, - [59] = {.lex_state = 622, .external_lex_state = 2}, - [60] = {.lex_state = 29, .external_lex_state = 2}, - [61] = {.lex_state = 622, .external_lex_state = 2}, - [62] = {.lex_state = 29, .external_lex_state = 2}, - [63] = {.lex_state = 622, .external_lex_state = 2}, - [64] = {.lex_state = 622, .external_lex_state = 2}, - [65] = {.lex_state = 29, .external_lex_state = 2}, - [66] = {.lex_state = 622, .external_lex_state = 2}, - [67] = {.lex_state = 29, .external_lex_state = 2}, - [68] = {.lex_state = 29, .external_lex_state = 2}, - [69] = {.lex_state = 622, .external_lex_state = 2}, - [70] = {.lex_state = 29, .external_lex_state = 2}, - [71] = {.lex_state = 622, .external_lex_state = 2}, - [72] = {.lex_state = 29, .external_lex_state = 2}, - [73] = {.lex_state = 622, .external_lex_state = 2}, - [74] = {.lex_state = 29, .external_lex_state = 2}, - [75] = {.lex_state = 622, .external_lex_state = 2}, - [76] = {.lex_state = 622, .external_lex_state = 2}, - [77] = {.lex_state = 29, .external_lex_state = 2}, - [78] = {.lex_state = 622, .external_lex_state = 2}, - [79] = {.lex_state = 622, .external_lex_state = 2}, - [80] = {.lex_state = 622, .external_lex_state = 2}, - [81] = {.lex_state = 622, .external_lex_state = 2}, - [82] = {.lex_state = 622, .external_lex_state = 2}, - [83] = {.lex_state = 622, .external_lex_state = 2}, - [84] = {.lex_state = 622, .external_lex_state = 2}, - [85] = {.lex_state = 622, .external_lex_state = 2}, - [86] = {.lex_state = 622, .external_lex_state = 2}, - [87] = {.lex_state = 622, .external_lex_state = 2}, - [88] = {.lex_state = 622, .external_lex_state = 2}, - [89] = {.lex_state = 622, .external_lex_state = 2}, - [90] = {.lex_state = 622, .external_lex_state = 2}, - [91] = {.lex_state = 622, .external_lex_state = 2}, - [92] = {.lex_state = 1156}, - [93] = {.lex_state = 1161}, - [94] = {.lex_state = 1324}, - [95] = {.lex_state = 1146}, - [96] = {.lex_state = 1148}, - [97] = {.lex_state = 1326}, - [98] = {.lex_state = 1162}, - [99] = {.lex_state = 1162}, - [100] = {.lex_state = 1157}, - [101] = {.lex_state = 1164}, - [102] = {.lex_state = 1166}, - [103] = {.lex_state = 624, .external_lex_state = 2}, - [104] = {.lex_state = 1326}, - [105] = {.lex_state = 1163}, - [106] = {.lex_state = 1163}, - [107] = {.lex_state = 1150}, - [108] = {.lex_state = 1163}, - [109] = {.lex_state = 42, .external_lex_state = 2}, - [110] = {.lex_state = 1324}, - [111] = {.lex_state = 1328}, + [1] = {.lex_state = 632, .external_lex_state = 2}, + [2] = {.lex_state = 625, .external_lex_state = 2}, + [3] = {.lex_state = 625, .external_lex_state = 2}, + [4] = {.lex_state = 625, .external_lex_state = 2}, + [5] = {.lex_state = 625, .external_lex_state = 2}, + [6] = {.lex_state = 625, .external_lex_state = 2}, + [7] = {.lex_state = 625, .external_lex_state = 2}, + [8] = {.lex_state = 625, .external_lex_state = 2}, + [9] = {.lex_state = 625, .external_lex_state = 2}, + [10] = {.lex_state = 625, .external_lex_state = 2}, + [11] = {.lex_state = 625, .external_lex_state = 2}, + [12] = {.lex_state = 625, .external_lex_state = 2}, + [13] = {.lex_state = 625, .external_lex_state = 2}, + [14] = {.lex_state = 625, .external_lex_state = 2}, + [15] = {.lex_state = 625, .external_lex_state = 2}, + [16] = {.lex_state = 623, .external_lex_state = 2}, + [17] = {.lex_state = 623, .external_lex_state = 2}, + [18] = {.lex_state = 623, .external_lex_state = 2}, + [19] = {.lex_state = 623, .external_lex_state = 2}, + [20] = {.lex_state = 623, .external_lex_state = 2}, + [21] = {.lex_state = 623, .external_lex_state = 2}, + [22] = {.lex_state = 623, .external_lex_state = 2}, + [23] = {.lex_state = 623, .external_lex_state = 2}, + [24] = {.lex_state = 623, .external_lex_state = 2}, + [25] = {.lex_state = 623, .external_lex_state = 2}, + [26] = {.lex_state = 623, .external_lex_state = 2}, + [27] = {.lex_state = 623, .external_lex_state = 2}, + [28] = {.lex_state = 623, .external_lex_state = 2}, + [29] = {.lex_state = 623, .external_lex_state = 2}, + [30] = {.lex_state = 623, .external_lex_state = 2}, + [31] = {.lex_state = 623, .external_lex_state = 2}, + [32] = {.lex_state = 623, .external_lex_state = 2}, + [33] = {.lex_state = 623, .external_lex_state = 2}, + [34] = {.lex_state = 623, .external_lex_state = 2}, + [35] = {.lex_state = 623, .external_lex_state = 2}, + [36] = {.lex_state = 40, .external_lex_state = 2}, + [37] = {.lex_state = 623, .external_lex_state = 2}, + [38] = {.lex_state = 40, .external_lex_state = 2}, + [39] = {.lex_state = 623, .external_lex_state = 2}, + [40] = {.lex_state = 623, .external_lex_state = 2}, + [41] = {.lex_state = 40, .external_lex_state = 2}, + [42] = {.lex_state = 40, .external_lex_state = 2}, + [43] = {.lex_state = 623, .external_lex_state = 2}, + [44] = {.lex_state = 40, .external_lex_state = 2}, + [45] = {.lex_state = 40, .external_lex_state = 2}, + [46] = {.lex_state = 40, .external_lex_state = 2}, + [47] = {.lex_state = 623, .external_lex_state = 2}, + [48] = {.lex_state = 40, .external_lex_state = 2}, + [49] = {.lex_state = 623, .external_lex_state = 2}, + [50] = {.lex_state = 40, .external_lex_state = 2}, + [51] = {.lex_state = 623, .external_lex_state = 2}, + [52] = {.lex_state = 40, .external_lex_state = 2}, + [53] = {.lex_state = 623, .external_lex_state = 2}, + [54] = {.lex_state = 623, .external_lex_state = 2}, + [55] = {.lex_state = 40, .external_lex_state = 2}, + [56] = {.lex_state = 40, .external_lex_state = 2}, + [57] = {.lex_state = 623, .external_lex_state = 2}, + [58] = {.lex_state = 40, .external_lex_state = 2}, + [59] = {.lex_state = 623, .external_lex_state = 2}, + [60] = {.lex_state = 623, .external_lex_state = 2}, + [61] = {.lex_state = 40, .external_lex_state = 2}, + [62] = {.lex_state = 623, .external_lex_state = 2}, + [63] = {.lex_state = 40, .external_lex_state = 2}, + [64] = {.lex_state = 623, .external_lex_state = 2}, + [65] = {.lex_state = 623, .external_lex_state = 2}, + [66] = {.lex_state = 40, .external_lex_state = 2}, + [67] = {.lex_state = 623, .external_lex_state = 2}, + [68] = {.lex_state = 40, .external_lex_state = 2}, + [69] = {.lex_state = 40, .external_lex_state = 2}, + [70] = {.lex_state = 40, .external_lex_state = 2}, + [71] = {.lex_state = 40, .external_lex_state = 2}, + [72] = {.lex_state = 40, .external_lex_state = 2}, + [73] = {.lex_state = 40, .external_lex_state = 2}, + [74] = {.lex_state = 40, .external_lex_state = 2}, + [75] = {.lex_state = 40, .external_lex_state = 2}, + [76] = {.lex_state = 623, .external_lex_state = 2}, + [77] = {.lex_state = 623, .external_lex_state = 2}, + [78] = {.lex_state = 623, .external_lex_state = 2}, + [79] = {.lex_state = 623, .external_lex_state = 2}, + [80] = {.lex_state = 623, .external_lex_state = 2}, + [81] = {.lex_state = 623, .external_lex_state = 2}, + [82] = {.lex_state = 623, .external_lex_state = 2}, + [83] = {.lex_state = 623, .external_lex_state = 2}, + [84] = {.lex_state = 623, .external_lex_state = 2}, + [85] = {.lex_state = 623, .external_lex_state = 2}, + [86] = {.lex_state = 623, .external_lex_state = 2}, + [87] = {.lex_state = 623, .external_lex_state = 2}, + [88] = {.lex_state = 623, .external_lex_state = 2}, + [89] = {.lex_state = 623, .external_lex_state = 2}, + [90] = {.lex_state = 623, .external_lex_state = 2}, + [91] = {.lex_state = 623, .external_lex_state = 2}, + [92] = {.lex_state = 1159}, + [93] = {.lex_state = 1164}, + [94] = {.lex_state = 1327}, + [95] = {.lex_state = 1151}, + [96] = {.lex_state = 1149}, + [97] = {.lex_state = 1165}, + [98] = {.lex_state = 1329}, + [99] = {.lex_state = 1165}, + [100] = {.lex_state = 1160}, + [101] = {.lex_state = 1167}, + [102] = {.lex_state = 1329}, + [103] = {.lex_state = 1153}, + [104] = {.lex_state = 1331}, + [105] = {.lex_state = 1153}, + [106] = {.lex_state = 1166}, + [107] = {.lex_state = 51, .external_lex_state = 2}, + [108] = {.lex_state = 627, .external_lex_state = 2}, + [109] = {.lex_state = 1166}, + [110] = {.lex_state = 1169}, + [111] = {.lex_state = 1331}, [112] = {.lex_state = 1166}, - [113] = {.lex_state = 1150}, - [114] = {.lex_state = 1328}, - [115] = {.lex_state = 1163}, - [116] = {.lex_state = 1152}, - [117] = {.lex_state = 1152}, - [118] = {.lex_state = 1152}, - [119] = {.lex_state = 1328}, - [120] = {.lex_state = 624, .external_lex_state = 2}, - [121] = {.lex_state = 1168}, - [122] = {.lex_state = 1328}, - [123] = {.lex_state = 1168}, - [124] = {.lex_state = 1330}, - [125] = {.lex_state = 1168}, - [126] = {.lex_state = 1168}, - [127] = {.lex_state = 1152}, - [128] = {.lex_state = 624, .external_lex_state = 2}, - [129] = {.lex_state = 1330}, - [130] = {.lex_state = 1159}, - [131] = {.lex_state = 1170}, - [132] = {.lex_state = 1330}, - [133] = {.lex_state = 1330}, - [134] = {.lex_state = 1330}, - [135] = {.lex_state = 1172}, - [136] = {.lex_state = 1330}, - [137] = {.lex_state = 1330}, - [138] = {.lex_state = 1330}, - [139] = {.lex_state = 1172}, - [140] = {.lex_state = 1174}, - [141] = {.lex_state = 1174}, - [142] = {.lex_state = 1174}, - [143] = {.lex_state = 1174}, - [144] = {.lex_state = 1332}, - [145] = {.lex_state = 1176}, - [146] = {.lex_state = 1154}, - [147] = {.lex_state = 1154}, - [148] = {.lex_state = 1176}, - [149] = {.lex_state = 1176}, - [150] = {.lex_state = 1332}, - [151] = {.lex_state = 1176}, - [152] = {.lex_state = 622, .external_lex_state = 2}, - [153] = {.lex_state = 622, .external_lex_state = 2}, - [154] = {.lex_state = 622, .external_lex_state = 2}, - [155] = {.lex_state = 622, .external_lex_state = 2}, - [156] = {.lex_state = 622, .external_lex_state = 2}, - [157] = {.lex_state = 622, .external_lex_state = 2}, - [158] = {.lex_state = 622, .external_lex_state = 2}, - [159] = {.lex_state = 622, .external_lex_state = 2}, - [160] = {.lex_state = 622, .external_lex_state = 2}, - [161] = {.lex_state = 622, .external_lex_state = 2}, - [162] = {.lex_state = 622, .external_lex_state = 2}, - [163] = {.lex_state = 622, .external_lex_state = 2}, - [164] = {.lex_state = 622, .external_lex_state = 2}, - [165] = {.lex_state = 622, .external_lex_state = 2}, - [166] = {.lex_state = 622, .external_lex_state = 2}, - [167] = {.lex_state = 622, .external_lex_state = 2}, - [168] = {.lex_state = 622, .external_lex_state = 2}, - [169] = {.lex_state = 622, .external_lex_state = 2}, - [170] = {.lex_state = 622, .external_lex_state = 2}, - [171] = {.lex_state = 622, .external_lex_state = 2}, - [172] = {.lex_state = 1332}, - [173] = {.lex_state = 1332}, - [174] = {.lex_state = 622, .external_lex_state = 2}, - [175] = {.lex_state = 622, .external_lex_state = 2}, - [176] = {.lex_state = 622, .external_lex_state = 2}, - [177] = {.lex_state = 622, .external_lex_state = 2}, - [178] = {.lex_state = 622, .external_lex_state = 2}, - [179] = {.lex_state = 622, .external_lex_state = 2}, - [180] = {.lex_state = 622, .external_lex_state = 2}, - [181] = {.lex_state = 622, .external_lex_state = 2}, - [182] = {.lex_state = 622, .external_lex_state = 2}, - [183] = {.lex_state = 622, .external_lex_state = 2}, - [184] = {.lex_state = 622, .external_lex_state = 2}, - [185] = {.lex_state = 622, .external_lex_state = 2}, - [186] = {.lex_state = 622, .external_lex_state = 2}, - [187] = {.lex_state = 622, .external_lex_state = 2}, - [188] = {.lex_state = 622, .external_lex_state = 2}, - [189] = {.lex_state = 1178}, - [190] = {.lex_state = 1178}, - [191] = {.lex_state = 622, .external_lex_state = 2}, - [192] = {.lex_state = 622, .external_lex_state = 2}, - [193] = {.lex_state = 622, .external_lex_state = 2}, - [194] = {.lex_state = 43, .external_lex_state = 2}, - [195] = {.lex_state = 34, .external_lex_state = 2}, - [196] = {.lex_state = 34, .external_lex_state = 2}, - [197] = {.lex_state = 34, .external_lex_state = 2}, - [198] = {.lex_state = 34, .external_lex_state = 2}, - [199] = {.lex_state = 34, .external_lex_state = 2}, - [200] = {.lex_state = 34, .external_lex_state = 2}, - [201] = {.lex_state = 34, .external_lex_state = 2}, - [202] = {.lex_state = 34, .external_lex_state = 2}, - [203] = {.lex_state = 34, .external_lex_state = 2}, - [204] = {.lex_state = 34, .external_lex_state = 2}, - [205] = {.lex_state = 34, .external_lex_state = 2}, - [206] = {.lex_state = 34, .external_lex_state = 2}, - [207] = {.lex_state = 34, .external_lex_state = 2}, - [208] = {.lex_state = 34, .external_lex_state = 2}, - [209] = {.lex_state = 34, .external_lex_state = 2}, - [210] = {.lex_state = 34, .external_lex_state = 2}, - [211] = {.lex_state = 34, .external_lex_state = 2}, - [212] = {.lex_state = 34, .external_lex_state = 2}, - [213] = {.lex_state = 34, .external_lex_state = 2}, - [214] = {.lex_state = 34, .external_lex_state = 2}, - [215] = {.lex_state = 34, .external_lex_state = 2}, - [216] = {.lex_state = 34, .external_lex_state = 2}, - [217] = {.lex_state = 34, .external_lex_state = 2}, - [218] = {.lex_state = 34, .external_lex_state = 2}, - [219] = {.lex_state = 34, .external_lex_state = 2}, - [220] = {.lex_state = 34, .external_lex_state = 2}, - [221] = {.lex_state = 34, .external_lex_state = 2}, - [222] = {.lex_state = 34, .external_lex_state = 2}, - [223] = {.lex_state = 34, .external_lex_state = 2}, - [224] = {.lex_state = 34, .external_lex_state = 2}, - [225] = {.lex_state = 34, .external_lex_state = 2}, - [226] = {.lex_state = 34, .external_lex_state = 2}, - [227] = {.lex_state = 34, .external_lex_state = 2}, - [228] = {.lex_state = 34, .external_lex_state = 2}, - [229] = {.lex_state = 34, .external_lex_state = 2}, - [230] = {.lex_state = 34, .external_lex_state = 2}, - [231] = {.lex_state = 34, .external_lex_state = 2}, - [232] = {.lex_state = 34, .external_lex_state = 2}, - [233] = {.lex_state = 34, .external_lex_state = 2}, - [234] = {.lex_state = 34, .external_lex_state = 2}, - [235] = {.lex_state = 34, .external_lex_state = 2}, - [236] = {.lex_state = 34, .external_lex_state = 2}, - [237] = {.lex_state = 34, .external_lex_state = 2}, - [238] = {.lex_state = 34, .external_lex_state = 2}, - [239] = {.lex_state = 34, .external_lex_state = 2}, - [240] = {.lex_state = 34, .external_lex_state = 2}, - [241] = {.lex_state = 34, .external_lex_state = 2}, - [242] = {.lex_state = 34, .external_lex_state = 2}, - [243] = {.lex_state = 34, .external_lex_state = 2}, - [244] = {.lex_state = 34, .external_lex_state = 2}, - [245] = {.lex_state = 34, .external_lex_state = 2}, - [246] = {.lex_state = 34, .external_lex_state = 2}, - [247] = {.lex_state = 34, .external_lex_state = 2}, - [248] = {.lex_state = 34, .external_lex_state = 2}, - [249] = {.lex_state = 34, .external_lex_state = 2}, - [250] = {.lex_state = 34, .external_lex_state = 2}, - [251] = {.lex_state = 34, .external_lex_state = 2}, - [252] = {.lex_state = 34, .external_lex_state = 2}, - [253] = {.lex_state = 34, .external_lex_state = 2}, - [254] = {.lex_state = 34, .external_lex_state = 2}, - [255] = {.lex_state = 34, .external_lex_state = 2}, - [256] = {.lex_state = 34, .external_lex_state = 2}, - [257] = {.lex_state = 34, .external_lex_state = 2}, - [258] = {.lex_state = 34, .external_lex_state = 2}, - [259] = {.lex_state = 34, .external_lex_state = 2}, - [260] = {.lex_state = 34, .external_lex_state = 2}, - [261] = {.lex_state = 34, .external_lex_state = 2}, - [262] = {.lex_state = 34, .external_lex_state = 2}, - [263] = {.lex_state = 34, .external_lex_state = 2}, - [264] = {.lex_state = 34, .external_lex_state = 2}, - [265] = {.lex_state = 34, .external_lex_state = 2}, - [266] = {.lex_state = 34, .external_lex_state = 2}, - [267] = {.lex_state = 1158}, - [268] = {.lex_state = 1327}, - [269] = {.lex_state = 1147}, - [270] = {.lex_state = 1149}, - [271] = {.lex_state = 1165}, - [272] = {.lex_state = 1325}, - [273] = {.lex_state = 1167}, - [274] = {.lex_state = 34, .external_lex_state = 2}, - [275] = {.lex_state = 34, .external_lex_state = 2}, - [276] = {.lex_state = 34, .external_lex_state = 2}, - [277] = {.lex_state = 1325}, - [278] = {.lex_state = 1327}, - [279] = {.lex_state = 1167}, - [280] = {.lex_state = 34, .external_lex_state = 2}, - [281] = {.lex_state = 34, .external_lex_state = 2}, - [282] = {.lex_state = 1329}, - [283] = {.lex_state = 34, .external_lex_state = 2}, - [284] = {.lex_state = 1329}, - [285] = {.lex_state = 34, .external_lex_state = 2}, - [286] = {.lex_state = 1151}, - [287] = {.lex_state = 34, .external_lex_state = 2}, - [288] = {.lex_state = 34, .external_lex_state = 2}, - [289] = {.lex_state = 34, .external_lex_state = 2}, - [290] = {.lex_state = 34, .external_lex_state = 2}, - [291] = {.lex_state = 34, .external_lex_state = 2}, - [292] = {.lex_state = 34, .external_lex_state = 2}, - [293] = {.lex_state = 1151}, - [294] = {.lex_state = 1153}, - [295] = {.lex_state = 1329}, - [296] = {.lex_state = 1171}, - [297] = {.lex_state = 1169}, - [298] = {.lex_state = 1331}, - [299] = {.lex_state = 1331}, - [300] = {.lex_state = 1331}, - [301] = {.lex_state = 1153}, - [302] = {.lex_state = 1169}, - [303] = {.lex_state = 1153}, - [304] = {.lex_state = 1153}, - [305] = {.lex_state = 1169}, - [306] = {.lex_state = 1331}, - [307] = {.lex_state = 1169}, - [308] = {.lex_state = 1160}, - [309] = {.lex_state = 1329}, - [310] = {.lex_state = 1173}, - [311] = {.lex_state = 1331}, - [312] = {.lex_state = 1331}, - [313] = {.lex_state = 1331}, - [314] = {.lex_state = 1331}, - [315] = {.lex_state = 1173}, - [316] = {.lex_state = 1175}, - [317] = {.lex_state = 1175}, - [318] = {.lex_state = 1175}, - [319] = {.lex_state = 1175}, - [320] = {.lex_state = 44, .external_lex_state = 2}, - [321] = {.lex_state = 44, .external_lex_state = 2}, - [322] = {.lex_state = 44, .external_lex_state = 2}, - [323] = {.lex_state = 1333}, - [324] = {.lex_state = 1155}, - [325] = {.lex_state = 1177}, - [326] = {.lex_state = 1177}, - [327] = {.lex_state = 1155}, - [328] = {.lex_state = 1333}, - [329] = {.lex_state = 1333}, - [330] = {.lex_state = 1333}, - [331] = {.lex_state = 1179}, - [332] = {.lex_state = 1179}, - [333] = {.lex_state = 124}, - [334] = {.lex_state = 124}, - [335] = {.lex_state = 577}, - [336] = {.lex_state = 124}, - [337] = {.lex_state = 577}, - [338] = {.lex_state = 577}, - [339] = {.lex_state = 124}, - [340] = {.lex_state = 124}, - [341] = {.lex_state = 124}, - [342] = {.lex_state = 124}, - [343] = {.lex_state = 577}, - [344] = {.lex_state = 577}, - [345] = {.lex_state = 44, .external_lex_state = 2}, - [346] = {.lex_state = 577}, - [347] = {.lex_state = 44, .external_lex_state = 2}, - [348] = {.lex_state = 44, .external_lex_state = 2}, - [349] = {.lex_state = 577}, - [350] = {.lex_state = 44, .external_lex_state = 2}, - [351] = {.lex_state = 124}, - [352] = {.lex_state = 124}, - [353] = {.lex_state = 577}, - [354] = {.lex_state = 44, .external_lex_state = 2}, - [355] = {.lex_state = 577}, - [356] = {.lex_state = 44, .external_lex_state = 2}, - [357] = {.lex_state = 124}, - [358] = {.lex_state = 44, .external_lex_state = 2}, - [359] = {.lex_state = 44, .external_lex_state = 2}, - [360] = {.lex_state = 124}, - [361] = {.lex_state = 577}, - [362] = {.lex_state = 44, .external_lex_state = 2}, - [363] = {.lex_state = 124}, - [364] = {.lex_state = 124}, - [365] = {.lex_state = 124}, - [366] = {.lex_state = 44, .external_lex_state = 2}, - [367] = {.lex_state = 44, .external_lex_state = 2}, - [368] = {.lex_state = 124}, - [369] = {.lex_state = 577}, - [370] = {.lex_state = 577}, - [371] = {.lex_state = 44, .external_lex_state = 2}, - [372] = {.lex_state = 577}, - [373] = {.lex_state = 124}, - [374] = {.lex_state = 577}, - [375] = {.lex_state = 577}, - [376] = {.lex_state = 44, .external_lex_state = 2}, - [377] = {.lex_state = 581}, - [378] = {.lex_state = 581}, - [379] = {.lex_state = 44, .external_lex_state = 2}, - [380] = {.lex_state = 44, .external_lex_state = 2}, - [381] = {.lex_state = 577}, - [382] = {.lex_state = 577}, - [383] = {.lex_state = 44, .external_lex_state = 2}, - [384] = {.lex_state = 44, .external_lex_state = 2}, - [385] = {.lex_state = 577}, - [386] = {.lex_state = 44, .external_lex_state = 2}, - [387] = {.lex_state = 44, .external_lex_state = 2}, - [388] = {.lex_state = 577}, - [389] = {.lex_state = 581}, - [390] = {.lex_state = 577}, - [391] = {.lex_state = 577}, - [392] = {.lex_state = 577}, - [393] = {.lex_state = 577}, - [394] = {.lex_state = 577}, - [395] = {.lex_state = 577}, - [396] = {.lex_state = 44, .external_lex_state = 2}, - [397] = {.lex_state = 124}, - [398] = {.lex_state = 583}, - [399] = {.lex_state = 578}, - [400] = {.lex_state = 581}, - [401] = {.lex_state = 581}, - [402] = {.lex_state = 577}, - [403] = {.lex_state = 581}, - [404] = {.lex_state = 577}, - [405] = {.lex_state = 577}, - [406] = {.lex_state = 578}, - [407] = {.lex_state = 583}, - [408] = {.lex_state = 581}, - [409] = {.lex_state = 581}, - [410] = {.lex_state = 581}, - [411] = {.lex_state = 581}, + [113] = {.lex_state = 1166}, + [114] = {.lex_state = 1169}, + [115] = {.lex_state = 1327}, + [116] = {.lex_state = 1162}, + [117] = {.lex_state = 1331}, + [118] = {.lex_state = 1155}, + [119] = {.lex_state = 1331}, + [120] = {.lex_state = 1333}, + [121] = {.lex_state = 1171}, + [122] = {.lex_state = 1333}, + [123] = {.lex_state = 1171}, + [124] = {.lex_state = 1155}, + [125] = {.lex_state = 1171}, + [126] = {.lex_state = 1171}, + [127] = {.lex_state = 1155}, + [128] = {.lex_state = 1333}, + [129] = {.lex_state = 1333}, + [130] = {.lex_state = 627, .external_lex_state = 2}, + [131] = {.lex_state = 1173}, + [132] = {.lex_state = 1155}, + [133] = {.lex_state = 627, .external_lex_state = 2}, + [134] = {.lex_state = 1175}, + [135] = {.lex_state = 1333}, + [136] = {.lex_state = 1333}, + [137] = {.lex_state = 1333}, + [138] = {.lex_state = 1175}, + [139] = {.lex_state = 1333}, + [140] = {.lex_state = 1177}, + [141] = {.lex_state = 1177}, + [142] = {.lex_state = 1177}, + [143] = {.lex_state = 1177}, + [144] = {.lex_state = 1335}, + [145] = {.lex_state = 1179}, + [146] = {.lex_state = 1335}, + [147] = {.lex_state = 1157}, + [148] = {.lex_state = 1179}, + [149] = {.lex_state = 1157}, + [150] = {.lex_state = 1179}, + [151] = {.lex_state = 1179}, + [152] = {.lex_state = 623, .external_lex_state = 2}, + [153] = {.lex_state = 623, .external_lex_state = 2}, + [154] = {.lex_state = 623, .external_lex_state = 2}, + [155] = {.lex_state = 623, .external_lex_state = 2}, + [156] = {.lex_state = 1335}, + [157] = {.lex_state = 623, .external_lex_state = 2}, + [158] = {.lex_state = 623, .external_lex_state = 2}, + [159] = {.lex_state = 623, .external_lex_state = 2}, + [160] = {.lex_state = 623, .external_lex_state = 2}, + [161] = {.lex_state = 623, .external_lex_state = 2}, + [162] = {.lex_state = 1335}, + [163] = {.lex_state = 623, .external_lex_state = 2}, + [164] = {.lex_state = 623, .external_lex_state = 2}, + [165] = {.lex_state = 623, .external_lex_state = 2}, + [166] = {.lex_state = 623, .external_lex_state = 2}, + [167] = {.lex_state = 623, .external_lex_state = 2}, + [168] = {.lex_state = 623, .external_lex_state = 2}, + [169] = {.lex_state = 623, .external_lex_state = 2}, + [170] = {.lex_state = 623, .external_lex_state = 2}, + [171] = {.lex_state = 623, .external_lex_state = 2}, + [172] = {.lex_state = 623, .external_lex_state = 2}, + [173] = {.lex_state = 623, .external_lex_state = 2}, + [174] = {.lex_state = 623, .external_lex_state = 2}, + [175] = {.lex_state = 623, .external_lex_state = 2}, + [176] = {.lex_state = 623, .external_lex_state = 2}, + [177] = {.lex_state = 623, .external_lex_state = 2}, + [178] = {.lex_state = 623, .external_lex_state = 2}, + [179] = {.lex_state = 623, .external_lex_state = 2}, + [180] = {.lex_state = 623, .external_lex_state = 2}, + [181] = {.lex_state = 623, .external_lex_state = 2}, + [182] = {.lex_state = 623, .external_lex_state = 2}, + [183] = {.lex_state = 623, .external_lex_state = 2}, + [184] = {.lex_state = 623, .external_lex_state = 2}, + [185] = {.lex_state = 623, .external_lex_state = 2}, + [186] = {.lex_state = 623, .external_lex_state = 2}, + [187] = {.lex_state = 623, .external_lex_state = 2}, + [188] = {.lex_state = 623, .external_lex_state = 2}, + [189] = {.lex_state = 1181}, + [190] = {.lex_state = 623, .external_lex_state = 2}, + [191] = {.lex_state = 623, .external_lex_state = 2}, + [192] = {.lex_state = 623, .external_lex_state = 2}, + [193] = {.lex_state = 1181}, + [194] = {.lex_state = 52, .external_lex_state = 2}, + [195] = {.lex_state = 43, .external_lex_state = 2}, + [196] = {.lex_state = 43, .external_lex_state = 2}, + [197] = {.lex_state = 43, .external_lex_state = 2}, + [198] = {.lex_state = 43, .external_lex_state = 2}, + [199] = {.lex_state = 43, .external_lex_state = 2}, + [200] = {.lex_state = 43, .external_lex_state = 2}, + [201] = {.lex_state = 43, .external_lex_state = 2}, + [202] = {.lex_state = 43, .external_lex_state = 2}, + [203] = {.lex_state = 43, .external_lex_state = 2}, + [204] = {.lex_state = 43, .external_lex_state = 2}, + [205] = {.lex_state = 43, .external_lex_state = 2}, + [206] = {.lex_state = 43, .external_lex_state = 2}, + [207] = {.lex_state = 43, .external_lex_state = 2}, + [208] = {.lex_state = 43, .external_lex_state = 2}, + [209] = {.lex_state = 43, .external_lex_state = 2}, + [210] = {.lex_state = 43, .external_lex_state = 2}, + [211] = {.lex_state = 43, .external_lex_state = 2}, + [212] = {.lex_state = 43, .external_lex_state = 2}, + [213] = {.lex_state = 43, .external_lex_state = 2}, + [214] = {.lex_state = 43, .external_lex_state = 2}, + [215] = {.lex_state = 43, .external_lex_state = 2}, + [216] = {.lex_state = 43, .external_lex_state = 2}, + [217] = {.lex_state = 43, .external_lex_state = 2}, + [218] = {.lex_state = 43, .external_lex_state = 2}, + [219] = {.lex_state = 43, .external_lex_state = 2}, + [220] = {.lex_state = 43, .external_lex_state = 2}, + [221] = {.lex_state = 43, .external_lex_state = 2}, + [222] = {.lex_state = 43, .external_lex_state = 2}, + [223] = {.lex_state = 43, .external_lex_state = 2}, + [224] = {.lex_state = 43, .external_lex_state = 2}, + [225] = {.lex_state = 43, .external_lex_state = 2}, + [226] = {.lex_state = 43, .external_lex_state = 2}, + [227] = {.lex_state = 43, .external_lex_state = 2}, + [228] = {.lex_state = 43, .external_lex_state = 2}, + [229] = {.lex_state = 43, .external_lex_state = 2}, + [230] = {.lex_state = 43, .external_lex_state = 2}, + [231] = {.lex_state = 43, .external_lex_state = 2}, + [232] = {.lex_state = 43, .external_lex_state = 2}, + [233] = {.lex_state = 43, .external_lex_state = 2}, + [234] = {.lex_state = 43, .external_lex_state = 2}, + [235] = {.lex_state = 43, .external_lex_state = 2}, + [236] = {.lex_state = 43, .external_lex_state = 2}, + [237] = {.lex_state = 43, .external_lex_state = 2}, + [238] = {.lex_state = 43, .external_lex_state = 2}, + [239] = {.lex_state = 43, .external_lex_state = 2}, + [240] = {.lex_state = 43, .external_lex_state = 2}, + [241] = {.lex_state = 43, .external_lex_state = 2}, + [242] = {.lex_state = 43, .external_lex_state = 2}, + [243] = {.lex_state = 43, .external_lex_state = 2}, + [244] = {.lex_state = 43, .external_lex_state = 2}, + [245] = {.lex_state = 43, .external_lex_state = 2}, + [246] = {.lex_state = 43, .external_lex_state = 2}, + [247] = {.lex_state = 43, .external_lex_state = 2}, + [248] = {.lex_state = 43, .external_lex_state = 2}, + [249] = {.lex_state = 43, .external_lex_state = 2}, + [250] = {.lex_state = 43, .external_lex_state = 2}, + [251] = {.lex_state = 43, .external_lex_state = 2}, + [252] = {.lex_state = 43, .external_lex_state = 2}, + [253] = {.lex_state = 43, .external_lex_state = 2}, + [254] = {.lex_state = 43, .external_lex_state = 2}, + [255] = {.lex_state = 43, .external_lex_state = 2}, + [256] = {.lex_state = 43, .external_lex_state = 2}, + [257] = {.lex_state = 43, .external_lex_state = 2}, + [258] = {.lex_state = 43, .external_lex_state = 2}, + [259] = {.lex_state = 43, .external_lex_state = 2}, + [260] = {.lex_state = 43, .external_lex_state = 2}, + [261] = {.lex_state = 43, .external_lex_state = 2}, + [262] = {.lex_state = 43, .external_lex_state = 2}, + [263] = {.lex_state = 43, .external_lex_state = 2}, + [264] = {.lex_state = 43, .external_lex_state = 2}, + [265] = {.lex_state = 43, .external_lex_state = 2}, + [266] = {.lex_state = 43, .external_lex_state = 2}, + [267] = {.lex_state = 1328}, + [268] = {.lex_state = 1168}, + [269] = {.lex_state = 1161}, + [270] = {.lex_state = 1150}, + [271] = {.lex_state = 1152}, + [272] = {.lex_state = 1330}, + [273] = {.lex_state = 1154}, + [274] = {.lex_state = 1170}, + [275] = {.lex_state = 43, .external_lex_state = 2}, + [276] = {.lex_state = 1170}, + [277] = {.lex_state = 1328}, + [278] = {.lex_state = 43, .external_lex_state = 2}, + [279] = {.lex_state = 1330}, + [280] = {.lex_state = 43, .external_lex_state = 2}, + [281] = {.lex_state = 43, .external_lex_state = 2}, + [282] = {.lex_state = 43, .external_lex_state = 2}, + [283] = {.lex_state = 43, .external_lex_state = 2}, + [284] = {.lex_state = 43, .external_lex_state = 2}, + [285] = {.lex_state = 43, .external_lex_state = 2}, + [286] = {.lex_state = 43, .external_lex_state = 2}, + [287] = {.lex_state = 1332}, + [288] = {.lex_state = 43, .external_lex_state = 2}, + [289] = {.lex_state = 43, .external_lex_state = 2}, + [290] = {.lex_state = 43, .external_lex_state = 2}, + [291] = {.lex_state = 43, .external_lex_state = 2}, + [292] = {.lex_state = 1332}, + [293] = {.lex_state = 1154}, + [294] = {.lex_state = 1172}, + [295] = {.lex_state = 1172}, + [296] = {.lex_state = 1163}, + [297] = {.lex_state = 1174}, + [298] = {.lex_state = 1334}, + [299] = {.lex_state = 1156}, + [300] = {.lex_state = 1156}, + [301] = {.lex_state = 1334}, + [302] = {.lex_state = 1332}, + [303] = {.lex_state = 1172}, + [304] = {.lex_state = 1156}, + [305] = {.lex_state = 1156}, + [306] = {.lex_state = 1334}, + [307] = {.lex_state = 1332}, + [308] = {.lex_state = 1334}, + [309] = {.lex_state = 1172}, + [310] = {.lex_state = 1176}, + [311] = {.lex_state = 1176}, + [312] = {.lex_state = 1334}, + [313] = {.lex_state = 1334}, + [314] = {.lex_state = 1334}, + [315] = {.lex_state = 1334}, + [316] = {.lex_state = 1178}, + [317] = {.lex_state = 1178}, + [318] = {.lex_state = 1178}, + [319] = {.lex_state = 1178}, + [320] = {.lex_state = 53, .external_lex_state = 2}, + [321] = {.lex_state = 53, .external_lex_state = 2}, + [322] = {.lex_state = 53, .external_lex_state = 2}, + [323] = {.lex_state = 1180}, + [324] = {.lex_state = 1158}, + [325] = {.lex_state = 1180}, + [326] = {.lex_state = 1336}, + [327] = {.lex_state = 1336}, + [328] = {.lex_state = 1158}, + [329] = {.lex_state = 1336}, + [330] = {.lex_state = 1336}, + [331] = {.lex_state = 1182}, + [332] = {.lex_state = 1182}, + [333] = {.lex_state = 578}, + [334] = {.lex_state = 130}, + [335] = {.lex_state = 130}, + [336] = {.lex_state = 578}, + [337] = {.lex_state = 130}, + [338] = {.lex_state = 578}, + [339] = {.lex_state = 53, .external_lex_state = 2}, + [340] = {.lex_state = 578}, + [341] = {.lex_state = 578}, + [342] = {.lex_state = 53, .external_lex_state = 2}, + [343] = {.lex_state = 53, .external_lex_state = 2}, + [344] = {.lex_state = 578}, + [345] = {.lex_state = 578}, + [346] = {.lex_state = 578}, + [347] = {.lex_state = 578}, + [348] = {.lex_state = 578}, + [349] = {.lex_state = 130}, + [350] = {.lex_state = 130}, + [351] = {.lex_state = 130}, + [352] = {.lex_state = 130}, + [353] = {.lex_state = 130}, + [354] = {.lex_state = 53, .external_lex_state = 2}, + [355] = {.lex_state = 130}, + [356] = {.lex_state = 130}, + [357] = {.lex_state = 130}, + [358] = {.lex_state = 53, .external_lex_state = 2}, + [359] = {.lex_state = 53, .external_lex_state = 2}, + [360] = {.lex_state = 53, .external_lex_state = 2}, + [361] = {.lex_state = 53, .external_lex_state = 2}, + [362] = {.lex_state = 53, .external_lex_state = 2}, + [363] = {.lex_state = 53, .external_lex_state = 2}, + [364] = {.lex_state = 53, .external_lex_state = 2}, + [365] = {.lex_state = 130}, + [366] = {.lex_state = 130}, + [367] = {.lex_state = 130}, + [368] = {.lex_state = 130}, + [369] = {.lex_state = 53, .external_lex_state = 2}, + [370] = {.lex_state = 578}, + [371] = {.lex_state = 578}, + [372] = {.lex_state = 578}, + [373] = {.lex_state = 578}, + [374] = {.lex_state = 130}, + [375] = {.lex_state = 578}, + [376] = {.lex_state = 53, .external_lex_state = 2}, + [377] = {.lex_state = 582}, + [378] = {.lex_state = 578}, + [379] = {.lex_state = 582}, + [380] = {.lex_state = 578}, + [381] = {.lex_state = 578}, + [382] = {.lex_state = 578}, + [383] = {.lex_state = 578}, + [384] = {.lex_state = 578}, + [385] = {.lex_state = 53, .external_lex_state = 2}, + [386] = {.lex_state = 578}, + [387] = {.lex_state = 578}, + [388] = {.lex_state = 53, .external_lex_state = 2}, + [389] = {.lex_state = 578}, + [390] = {.lex_state = 53, .external_lex_state = 2}, + [391] = {.lex_state = 582}, + [392] = {.lex_state = 53, .external_lex_state = 2}, + [393] = {.lex_state = 130}, + [394] = {.lex_state = 578}, + [395] = {.lex_state = 53, .external_lex_state = 2}, + [396] = {.lex_state = 53, .external_lex_state = 2}, + [397] = {.lex_state = 53, .external_lex_state = 2}, + [398] = {.lex_state = 582}, + [399] = {.lex_state = 584}, + [400] = {.lex_state = 582}, + [401] = {.lex_state = 582}, + [402] = {.lex_state = 582}, + [403] = {.lex_state = 579}, + [404] = {.lex_state = 582}, + [405] = {.lex_state = 579}, + [406] = {.lex_state = 582}, + [407] = {.lex_state = 578}, + [408] = {.lex_state = 579}, + [409] = {.lex_state = 578}, + [410] = {.lex_state = 582}, + [411] = {.lex_state = 584}, [412] = {.lex_state = 578}, - [413] = {.lex_state = 577}, - [414] = {.lex_state = 578}, - [415] = {.lex_state = 578}, - [416] = {.lex_state = 583}, - [417] = {.lex_state = 577}, - [418] = {.lex_state = 583}, - [419] = {.lex_state = 581}, - [420] = {.lex_state = 578}, - [421] = {.lex_state = 585}, - [422] = {.lex_state = 589}, - [423] = {.lex_state = 578}, - [424] = {.lex_state = 578}, - [425] = {.lex_state = 578}, - [426] = {.lex_state = 578}, - [427] = {.lex_state = 578}, + [413] = {.lex_state = 579}, + [414] = {.lex_state = 582}, + [415] = {.lex_state = 582}, + [416] = {.lex_state = 579}, + [417] = {.lex_state = 579}, + [418] = {.lex_state = 578}, + [419] = {.lex_state = 579}, + [420] = {.lex_state = 579}, + [421] = {.lex_state = 584}, + [422] = {.lex_state = 579}, + [423] = {.lex_state = 579}, + [424] = {.lex_state = 579}, + [425] = {.lex_state = 579}, + [426] = {.lex_state = 579}, + [427] = {.lex_state = 590}, [428] = {.lex_state = 578}, [429] = {.lex_state = 578}, - [430] = {.lex_state = 581}, - [431] = {.lex_state = 577}, - [432] = {.lex_state = 577}, - [433] = {.lex_state = 585}, - [434] = {.lex_state = 577}, - [435] = {.lex_state = 591}, - [436] = {.lex_state = 591}, - [437] = {.lex_state = 578}, - [438] = {.lex_state = 577}, - [439] = {.lex_state = 577}, + [430] = {.lex_state = 578}, + [431] = {.lex_state = 584}, + [432] = {.lex_state = 586}, + [433] = {.lex_state = 582}, + [434] = {.lex_state = 578}, + [435] = {.lex_state = 579}, + [436] = {.lex_state = 579}, + [437] = {.lex_state = 582}, + [438] = {.lex_state = 582}, + [439] = {.lex_state = 578}, [440] = {.lex_state = 578}, - [441] = {.lex_state = 578}, - [442] = {.lex_state = 595}, - [443] = {.lex_state = 581}, - [444] = {.lex_state = 587}, - [445] = {.lex_state = 577}, - [446] = {.lex_state = 593}, + [441] = {.lex_state = 579}, + [442] = {.lex_state = 590}, + [443] = {.lex_state = 588}, + [444] = {.lex_state = 579}, + [445] = {.lex_state = 592}, + [446] = {.lex_state = 596}, [447] = {.lex_state = 578}, - [448] = {.lex_state = 581}, - [449] = {.lex_state = 581}, - [450] = {.lex_state = 581}, - [451] = {.lex_state = 581}, - [452] = {.lex_state = 581}, - [453] = {.lex_state = 577}, - [454] = {.lex_state = 589}, - [455] = {.lex_state = 40, .external_lex_state = 2}, - [456] = {.lex_state = 40, .external_lex_state = 2}, - [457] = {.lex_state = 40, .external_lex_state = 2}, - [458] = {.lex_state = 40, .external_lex_state = 2}, - [459] = {.lex_state = 597}, - [460] = {.lex_state = 40, .external_lex_state = 2}, - [461] = {.lex_state = 40, .external_lex_state = 2}, - [462] = {.lex_state = 593}, - [463] = {.lex_state = 593}, - [464] = {.lex_state = 44, .external_lex_state = 2}, - [465] = {.lex_state = 578}, + [448] = {.lex_state = 586}, + [449] = {.lex_state = 592}, + [450] = {.lex_state = 594}, + [451] = {.lex_state = 578}, + [452] = {.lex_state = 582}, + [453] = {.lex_state = 582}, + [454] = {.lex_state = 582}, + [455] = {.lex_state = 598}, + [456] = {.lex_state = 49, .external_lex_state = 2}, + [457] = {.lex_state = 49, .external_lex_state = 2}, + [458] = {.lex_state = 53, .external_lex_state = 2}, + [459] = {.lex_state = 49, .external_lex_state = 2}, + [460] = {.lex_state = 579}, + [461] = {.lex_state = 592}, + [462] = {.lex_state = 579}, + [463] = {.lex_state = 592}, + [464] = {.lex_state = 598}, + [465] = {.lex_state = 49, .external_lex_state = 2}, [466] = {.lex_state = 578}, - [467] = {.lex_state = 593}, - [468] = {.lex_state = 40, .external_lex_state = 2}, - [469] = {.lex_state = 591}, - [470] = {.lex_state = 597}, - [471] = {.lex_state = 577}, - [472] = {.lex_state = 591}, - [473] = {.lex_state = 593}, - [474] = {.lex_state = 577}, - [475] = {.lex_state = 40, .external_lex_state = 2}, - [476] = {.lex_state = 593}, - [477] = {.lex_state = 595}, - [478] = {.lex_state = 578}, - [479] = {.lex_state = 578}, - [480] = {.lex_state = 578}, - [481] = {.lex_state = 587}, - [482] = {.lex_state = 578}, - [483] = {.lex_state = 578}, - [484] = {.lex_state = 578}, - [485] = {.lex_state = 578}, - [486] = {.lex_state = 578}, - [487] = {.lex_state = 578}, - [488] = {.lex_state = 578}, - [489] = {.lex_state = 578}, - [490] = {.lex_state = 599}, - [491] = {.lex_state = 578}, - [492] = {.lex_state = 578}, - [493] = {.lex_state = 578}, - [494] = {.lex_state = 578}, - [495] = {.lex_state = 593}, - [496] = {.lex_state = 578}, - [497] = {.lex_state = 578}, - [498] = {.lex_state = 578}, - [499] = {.lex_state = 593}, - [500] = {.lex_state = 599}, - [501] = {.lex_state = 40, .external_lex_state = 2}, - [502] = {.lex_state = 578}, - [503] = {.lex_state = 599}, - [504] = {.lex_state = 41, .external_lex_state = 2}, - [505] = {.lex_state = 41, .external_lex_state = 2}, - [506] = {.lex_state = 41, .external_lex_state = 2}, - [507] = {.lex_state = 41, .external_lex_state = 2}, - [508] = {.lex_state = 41, .external_lex_state = 2}, - [509] = {.lex_state = 41, .external_lex_state = 2}, - [510] = {.lex_state = 41, .external_lex_state = 2}, - [511] = {.lex_state = 41, .external_lex_state = 2}, - [512] = {.lex_state = 41, .external_lex_state = 2}, - [513] = {.lex_state = 41, .external_lex_state = 2}, - [514] = {.lex_state = 41, .external_lex_state = 2}, - [515] = {.lex_state = 41, .external_lex_state = 2}, - [516] = {.lex_state = 41, .external_lex_state = 2}, - [517] = {.lex_state = 578}, - [518] = {.lex_state = 578}, - [519] = {.lex_state = 41, .external_lex_state = 2}, - [520] = {.lex_state = 41, .external_lex_state = 2}, - [521] = {.lex_state = 41, .external_lex_state = 2}, - [522] = {.lex_state = 41, .external_lex_state = 2}, - [523] = {.lex_state = 41, .external_lex_state = 2}, - [524] = {.lex_state = 41, .external_lex_state = 2}, - [525] = {.lex_state = 41, .external_lex_state = 2}, - [526] = {.lex_state = 41, .external_lex_state = 2}, - [527] = {.lex_state = 41, .external_lex_state = 2}, - [528] = {.lex_state = 41, .external_lex_state = 2}, - [529] = {.lex_state = 41, .external_lex_state = 2}, - [530] = {.lex_state = 41, .external_lex_state = 2}, - [531] = {.lex_state = 41, .external_lex_state = 2}, - [532] = {.lex_state = 41, .external_lex_state = 2}, - [533] = {.lex_state = 41, .external_lex_state = 2}, - [534] = {.lex_state = 41, .external_lex_state = 2}, - [535] = {.lex_state = 41, .external_lex_state = 2}, - [536] = {.lex_state = 41, .external_lex_state = 2}, - [537] = {.lex_state = 41, .external_lex_state = 2}, - [538] = {.lex_state = 41, .external_lex_state = 2}, - [539] = {.lex_state = 41, .external_lex_state = 2}, - [540] = {.lex_state = 611}, - [541] = {.lex_state = 41, .external_lex_state = 2}, - [542] = {.lex_state = 41, .external_lex_state = 2}, - [543] = {.lex_state = 41, .external_lex_state = 2}, - [544] = {.lex_state = 41, .external_lex_state = 2}, - [545] = {.lex_state = 41, .external_lex_state = 2}, - [546] = {.lex_state = 41, .external_lex_state = 2}, - [547] = {.lex_state = 41, .external_lex_state = 2}, - [548] = {.lex_state = 41, .external_lex_state = 2}, - [549] = {.lex_state = 41, .external_lex_state = 2}, - [550] = {.lex_state = 41, .external_lex_state = 2}, - [551] = {.lex_state = 41, .external_lex_state = 2}, - [552] = {.lex_state = 41, .external_lex_state = 2}, - [553] = {.lex_state = 41, .external_lex_state = 2}, - [554] = {.lex_state = 41, .external_lex_state = 2}, - [555] = {.lex_state = 41, .external_lex_state = 2}, - [556] = {.lex_state = 41, .external_lex_state = 2}, - [557] = {.lex_state = 41, .external_lex_state = 2}, - [558] = {.lex_state = 41, .external_lex_state = 2}, - [559] = {.lex_state = 41, .external_lex_state = 2}, - [560] = {.lex_state = 41, .external_lex_state = 2}, - [561] = {.lex_state = 41, .external_lex_state = 2}, - [562] = {.lex_state = 41, .external_lex_state = 2}, - [563] = {.lex_state = 41, .external_lex_state = 2}, - [564] = {.lex_state = 41, .external_lex_state = 2}, - [565] = {.lex_state = 41, .external_lex_state = 2}, - [566] = {.lex_state = 41, .external_lex_state = 2}, - [567] = {.lex_state = 41, .external_lex_state = 2}, - [568] = {.lex_state = 41, .external_lex_state = 2}, - [569] = {.lex_state = 41, .external_lex_state = 2}, - [570] = {.lex_state = 41, .external_lex_state = 2}, - [571] = {.lex_state = 41, .external_lex_state = 2}, - [572] = {.lex_state = 41, .external_lex_state = 2}, - [573] = {.lex_state = 41, .external_lex_state = 2}, - [574] = {.lex_state = 41, .external_lex_state = 2}, - [575] = {.lex_state = 41, .external_lex_state = 2}, - [576] = {.lex_state = 41, .external_lex_state = 2}, - [577] = {.lex_state = 41, .external_lex_state = 2}, - [578] = {.lex_state = 41, .external_lex_state = 2}, - [579] = {.lex_state = 41, .external_lex_state = 2}, - [580] = {.lex_state = 41, .external_lex_state = 2}, - [581] = {.lex_state = 41, .external_lex_state = 2}, - [582] = {.lex_state = 41, .external_lex_state = 2}, - [583] = {.lex_state = 41, .external_lex_state = 2}, - [584] = {.lex_state = 41, .external_lex_state = 2}, - [585] = {.lex_state = 41, .external_lex_state = 2}, - [586] = {.lex_state = 41, .external_lex_state = 2}, - [587] = {.lex_state = 41, .external_lex_state = 2}, - [588] = {.lex_state = 41, .external_lex_state = 2}, - [589] = {.lex_state = 41, .external_lex_state = 2}, - [590] = {.lex_state = 41, .external_lex_state = 2}, - [591] = {.lex_state = 41, .external_lex_state = 2}, - [592] = {.lex_state = 41, .external_lex_state = 2}, - [593] = {.lex_state = 41, .external_lex_state = 2}, - [594] = {.lex_state = 41, .external_lex_state = 2}, - [595] = {.lex_state = 41, .external_lex_state = 2}, - [596] = {.lex_state = 41, .external_lex_state = 2}, - [597] = {.lex_state = 41, .external_lex_state = 2}, - [598] = {.lex_state = 41, .external_lex_state = 2}, - [599] = {.lex_state = 41, .external_lex_state = 2}, - [600] = {.lex_state = 41, .external_lex_state = 2}, - [601] = {.lex_state = 41, .external_lex_state = 2}, - [602] = {.lex_state = 41, .external_lex_state = 2}, - [603] = {.lex_state = 41, .external_lex_state = 2}, - [604] = {.lex_state = 41, .external_lex_state = 2}, - [605] = {.lex_state = 41, .external_lex_state = 2}, - [606] = {.lex_state = 41, .external_lex_state = 2}, - [607] = {.lex_state = 41, .external_lex_state = 2}, - [608] = {.lex_state = 41, .external_lex_state = 2}, - [609] = {.lex_state = 41, .external_lex_state = 2}, - [610] = {.lex_state = 41, .external_lex_state = 2}, - [611] = {.lex_state = 41, .external_lex_state = 2}, - [612] = {.lex_state = 41, .external_lex_state = 2}, - [613] = {.lex_state = 41, .external_lex_state = 2}, - [614] = {.lex_state = 41, .external_lex_state = 2}, - [615] = {.lex_state = 597}, - [616] = {.lex_state = 41, .external_lex_state = 2}, - [617] = {.lex_state = 41, .external_lex_state = 2}, - [618] = {.lex_state = 40, .external_lex_state = 2}, - [619] = {.lex_state = 41, .external_lex_state = 2}, - [620] = {.lex_state = 41, .external_lex_state = 2}, - [621] = {.lex_state = 41, .external_lex_state = 2}, - [622] = {.lex_state = 41, .external_lex_state = 2}, - [623] = {.lex_state = 41, .external_lex_state = 2}, - [624] = {.lex_state = 41, .external_lex_state = 2}, - [625] = {.lex_state = 40, .external_lex_state = 2}, - [626] = {.lex_state = 41, .external_lex_state = 2}, - [627] = {.lex_state = 41, .external_lex_state = 2}, - [628] = {.lex_state = 41, .external_lex_state = 2}, - [629] = {.lex_state = 44, .external_lex_state = 2}, - [630] = {.lex_state = 44, .external_lex_state = 2}, - [631] = {.lex_state = 41, .external_lex_state = 2}, - [632] = {.lex_state = 41, .external_lex_state = 2}, - [633] = {.lex_state = 41, .external_lex_state = 2}, - [634] = {.lex_state = 41, .external_lex_state = 2}, - [635] = {.lex_state = 41, .external_lex_state = 2}, - [636] = {.lex_state = 41, .external_lex_state = 2}, - [637] = {.lex_state = 41, .external_lex_state = 2}, - [638] = {.lex_state = 41, .external_lex_state = 2}, - [639] = {.lex_state = 41, .external_lex_state = 2}, - [640] = {.lex_state = 41, .external_lex_state = 2}, - [641] = {.lex_state = 41, .external_lex_state = 2}, - [642] = {.lex_state = 599}, - [643] = {.lex_state = 41, .external_lex_state = 2}, - [644] = {.lex_state = 41, .external_lex_state = 2}, - [645] = {.lex_state = 599}, - [646] = {.lex_state = 41, .external_lex_state = 2}, - [647] = {.lex_state = 41, .external_lex_state = 2}, - [648] = {.lex_state = 41, .external_lex_state = 2}, - [649] = {.lex_state = 41, .external_lex_state = 2}, - [650] = {.lex_state = 41, .external_lex_state = 2}, - [651] = {.lex_state = 41, .external_lex_state = 2}, - [652] = {.lex_state = 41, .external_lex_state = 2}, - [653] = {.lex_state = 41, .external_lex_state = 2}, - [654] = {.lex_state = 41, .external_lex_state = 2}, - [655] = {.lex_state = 41, .external_lex_state = 2}, - [656] = {.lex_state = 41, .external_lex_state = 2}, - [657] = {.lex_state = 44, .external_lex_state = 2}, - [658] = {.lex_state = 41, .external_lex_state = 2}, - [659] = {.lex_state = 41, .external_lex_state = 2}, - [660] = {.lex_state = 41, .external_lex_state = 2}, - [661] = {.lex_state = 41, .external_lex_state = 2}, - [662] = {.lex_state = 41, .external_lex_state = 2}, - [663] = {.lex_state = 41, .external_lex_state = 2}, - [664] = {.lex_state = 597}, - [665] = {.lex_state = 41, .external_lex_state = 2}, - [666] = {.lex_state = 41, .external_lex_state = 2}, - [667] = {.lex_state = 41, .external_lex_state = 2}, - [668] = {.lex_state = 41, .external_lex_state = 2}, - [669] = {.lex_state = 41, .external_lex_state = 2}, - [670] = {.lex_state = 41, .external_lex_state = 2}, - [671] = {.lex_state = 41, .external_lex_state = 2}, - [672] = {.lex_state = 601}, - [673] = {.lex_state = 599}, - [674] = {.lex_state = 578}, - [675] = {.lex_state = 578}, - [676] = {.lex_state = 578}, - [677] = {.lex_state = 578}, - [678] = {.lex_state = 599}, - [679] = {.lex_state = 578}, - [680] = {.lex_state = 599}, - [681] = {.lex_state = 578}, - [682] = {.lex_state = 578}, - [683] = {.lex_state = 578}, - [684] = {.lex_state = 599}, - [685] = {.lex_state = 578}, - [686] = {.lex_state = 578}, - [687] = {.lex_state = 578}, - [688] = {.lex_state = 578}, - [689] = {.lex_state = 578}, - [690] = {.lex_state = 578}, - [691] = {.lex_state = 611}, - [692] = {.lex_state = 578}, - [693] = {.lex_state = 599}, - [694] = {.lex_state = 578}, - [695] = {.lex_state = 578}, - [696] = {.lex_state = 603}, - [697] = {.lex_state = 578}, - [698] = {.lex_state = 578}, - [699] = {.lex_state = 578}, - [700] = {.lex_state = 578}, - [701] = {.lex_state = 578}, - [702] = {.lex_state = 578}, - [703] = {.lex_state = 578}, - [704] = {.lex_state = 578}, - [705] = {.lex_state = 578}, - [706] = {.lex_state = 578}, - [707] = {.lex_state = 578}, - [708] = {.lex_state = 578}, - [709] = {.lex_state = 578}, - [710] = {.lex_state = 578}, - [711] = {.lex_state = 578}, - [712] = {.lex_state = 578}, - [713] = {.lex_state = 41, .external_lex_state = 2}, - [714] = {.lex_state = 41, .external_lex_state = 2}, - [715] = {.lex_state = 41, .external_lex_state = 2}, - [716] = {.lex_state = 41, .external_lex_state = 2}, - [717] = {.lex_state = 41, .external_lex_state = 2}, - [718] = {.lex_state = 41, .external_lex_state = 2}, - [719] = {.lex_state = 578}, - [720] = {.lex_state = 578}, - [721] = {.lex_state = 578}, - [722] = {.lex_state = 578}, - [723] = {.lex_state = 578}, - [724] = {.lex_state = 578}, - [725] = {.lex_state = 41, .external_lex_state = 2}, - [726] = {.lex_state = 578}, - [727] = {.lex_state = 578}, - [728] = {.lex_state = 578}, - [729] = {.lex_state = 578}, - [730] = {.lex_state = 578}, - [731] = {.lex_state = 41, .external_lex_state = 2}, - [732] = {.lex_state = 41, .external_lex_state = 2}, - [733] = {.lex_state = 41, .external_lex_state = 2}, - [734] = {.lex_state = 41, .external_lex_state = 2}, - [735] = {.lex_state = 578}, - [736] = {.lex_state = 578}, - [737] = {.lex_state = 578}, - [738] = {.lex_state = 578}, - [739] = {.lex_state = 578}, - [740] = {.lex_state = 578}, - [741] = {.lex_state = 578}, - [742] = {.lex_state = 578}, - [743] = {.lex_state = 578}, - [744] = {.lex_state = 578}, - [745] = {.lex_state = 41, .external_lex_state = 2}, - [746] = {.lex_state = 578}, - [747] = {.lex_state = 578}, - [748] = {.lex_state = 41, .external_lex_state = 2}, - [749] = {.lex_state = 41, .external_lex_state = 2}, - [750] = {.lex_state = 41, .external_lex_state = 2}, - [751] = {.lex_state = 41, .external_lex_state = 2}, - [752] = {.lex_state = 41, .external_lex_state = 2}, - [753] = {.lex_state = 41, .external_lex_state = 2}, - [754] = {.lex_state = 41, .external_lex_state = 2}, - [755] = {.lex_state = 41, .external_lex_state = 2}, - [756] = {.lex_state = 41, .external_lex_state = 2}, - [757] = {.lex_state = 41, .external_lex_state = 2}, - [758] = {.lex_state = 41, .external_lex_state = 2}, - [759] = {.lex_state = 41, .external_lex_state = 2}, - [760] = {.lex_state = 41, .external_lex_state = 2}, - [761] = {.lex_state = 578}, - [762] = {.lex_state = 41, .external_lex_state = 2}, - [763] = {.lex_state = 578}, - [764] = {.lex_state = 578}, - [765] = {.lex_state = 41, .external_lex_state = 2}, - [766] = {.lex_state = 578}, - [767] = {.lex_state = 578}, - [768] = {.lex_state = 41, .external_lex_state = 2}, - [769] = {.lex_state = 578}, - [770] = {.lex_state = 578}, - [771] = {.lex_state = 578}, - [772] = {.lex_state = 578}, - [773] = {.lex_state = 578}, - [774] = {.lex_state = 578}, - [775] = {.lex_state = 578}, - [776] = {.lex_state = 578}, - [777] = {.lex_state = 578}, - [778] = {.lex_state = 578}, - [779] = {.lex_state = 611}, - [780] = {.lex_state = 578}, - [781] = {.lex_state = 578}, - [782] = {.lex_state = 578}, - [783] = {.lex_state = 578}, - [784] = {.lex_state = 578}, - [785] = {.lex_state = 578}, - [786] = {.lex_state = 603}, - [787] = {.lex_state = 578}, - [788] = {.lex_state = 36, .external_lex_state = 2}, - [789] = {.lex_state = 40, .external_lex_state = 2}, - [790] = {.lex_state = 578}, - [791] = {.lex_state = 601}, - [792] = {.lex_state = 578}, - [793] = {.lex_state = 578}, - [794] = {.lex_state = 578}, - [795] = {.lex_state = 605}, - [796] = {.lex_state = 41, .external_lex_state = 2}, - [797] = {.lex_state = 578}, - [798] = {.lex_state = 578}, - [799] = {.lex_state = 578}, - [800] = {.lex_state = 578}, - [801] = {.lex_state = 578}, - [802] = {.lex_state = 578}, - [803] = {.lex_state = 578}, - [804] = {.lex_state = 578}, - [805] = {.lex_state = 578}, - [806] = {.lex_state = 578}, - [807] = {.lex_state = 578}, - [808] = {.lex_state = 578}, - [809] = {.lex_state = 578}, - [810] = {.lex_state = 578}, - [811] = {.lex_state = 41, .external_lex_state = 2}, - [812] = {.lex_state = 41, .external_lex_state = 2}, - [813] = {.lex_state = 41, .external_lex_state = 2}, - [814] = {.lex_state = 41, .external_lex_state = 2}, - [815] = {.lex_state = 41, .external_lex_state = 2}, - [816] = {.lex_state = 41, .external_lex_state = 2}, - [817] = {.lex_state = 41, .external_lex_state = 2}, - [818] = {.lex_state = 41, .external_lex_state = 2}, - [819] = {.lex_state = 41, .external_lex_state = 2}, - [820] = {.lex_state = 41, .external_lex_state = 2}, - [821] = {.lex_state = 41, .external_lex_state = 2}, - [822] = {.lex_state = 41, .external_lex_state = 2}, - [823] = {.lex_state = 41, .external_lex_state = 2}, - [824] = {.lex_state = 578}, - [825] = {.lex_state = 578}, - [826] = {.lex_state = 40, .external_lex_state = 2}, - [827] = {.lex_state = 578}, - [828] = {.lex_state = 578}, - [829] = {.lex_state = 578}, - [830] = {.lex_state = 578}, - [831] = {.lex_state = 578}, - [832] = {.lex_state = 578}, - [833] = {.lex_state = 578}, - [834] = {.lex_state = 578}, - [835] = {.lex_state = 578}, - [836] = {.lex_state = 40, .external_lex_state = 2}, - [837] = {.lex_state = 40, .external_lex_state = 2}, - [838] = {.lex_state = 41, .external_lex_state = 2}, - [839] = {.lex_state = 41, .external_lex_state = 2}, - [840] = {.lex_state = 41, .external_lex_state = 2}, - [841] = {.lex_state = 41, .external_lex_state = 2}, - [842] = {.lex_state = 41, .external_lex_state = 2}, - [843] = {.lex_state = 41, .external_lex_state = 2}, - [844] = {.lex_state = 41, .external_lex_state = 2}, - [845] = {.lex_state = 41, .external_lex_state = 2}, - [846] = {.lex_state = 41, .external_lex_state = 2}, - [847] = {.lex_state = 41, .external_lex_state = 2}, - [848] = {.lex_state = 41, .external_lex_state = 2}, - [849] = {.lex_state = 41, .external_lex_state = 2}, - [850] = {.lex_state = 41, .external_lex_state = 2}, - [851] = {.lex_state = 578}, - [852] = {.lex_state = 578}, - [853] = {.lex_state = 578}, - [854] = {.lex_state = 578}, - [855] = {.lex_state = 578}, - [856] = {.lex_state = 578}, - [857] = {.lex_state = 578}, - [858] = {.lex_state = 578}, - [859] = {.lex_state = 578}, - [860] = {.lex_state = 578}, - [861] = {.lex_state = 578}, - [862] = {.lex_state = 578}, - [863] = {.lex_state = 578}, - [864] = {.lex_state = 578}, - [865] = {.lex_state = 41, .external_lex_state = 2}, - [866] = {.lex_state = 41, .external_lex_state = 2}, - [867] = {.lex_state = 41, .external_lex_state = 2}, - [868] = {.lex_state = 41, .external_lex_state = 2}, - [869] = {.lex_state = 41, .external_lex_state = 2}, - [870] = {.lex_state = 41, .external_lex_state = 2}, - [871] = {.lex_state = 41, .external_lex_state = 2}, - [872] = {.lex_state = 41, .external_lex_state = 2}, - [873] = {.lex_state = 41, .external_lex_state = 2}, - [874] = {.lex_state = 41, .external_lex_state = 2}, - [875] = {.lex_state = 41, .external_lex_state = 2}, - [876] = {.lex_state = 41, .external_lex_state = 2}, - [877] = {.lex_state = 41, .external_lex_state = 2}, - [878] = {.lex_state = 40, .external_lex_state = 2}, - [879] = {.lex_state = 40, .external_lex_state = 2}, - [880] = {.lex_state = 41, .external_lex_state = 2}, - [881] = {.lex_state = 36, .external_lex_state = 2}, - [882] = {.lex_state = 41, .external_lex_state = 2}, - [883] = {.lex_state = 41, .external_lex_state = 2}, - [884] = {.lex_state = 41, .external_lex_state = 2}, - [885] = {.lex_state = 36, .external_lex_state = 2}, - [886] = {.lex_state = 607}, - [887] = {.lex_state = 578}, - [888] = {.lex_state = 578}, - [889] = {.lex_state = 41, .external_lex_state = 2}, - [890] = {.lex_state = 41, .external_lex_state = 2}, - [891] = {.lex_state = 41, .external_lex_state = 2}, - [892] = {.lex_state = 41, .external_lex_state = 2}, - [893] = {.lex_state = 41, .external_lex_state = 2}, - [894] = {.lex_state = 41, .external_lex_state = 2}, - [895] = {.lex_state = 605}, - [896] = {.lex_state = 578}, - [897] = {.lex_state = 578}, - [898] = {.lex_state = 578}, - [899] = {.lex_state = 578}, - [900] = {.lex_state = 578}, - [901] = {.lex_state = 578}, - [902] = {.lex_state = 578}, - [903] = {.lex_state = 578}, - [904] = {.lex_state = 578}, - [905] = {.lex_state = 607}, - [906] = {.lex_state = 578}, - [907] = {.lex_state = 607}, - [908] = {.lex_state = 607}, - [909] = {.lex_state = 578}, - [910] = {.lex_state = 578}, - [911] = {.lex_state = 578}, - [912] = {.lex_state = 36, .external_lex_state = 2}, - [913] = {.lex_state = 578}, - [914] = {.lex_state = 578}, - [915] = {.lex_state = 578}, - [916] = {.lex_state = 578}, - [917] = {.lex_state = 578}, - [918] = {.lex_state = 578}, - [919] = {.lex_state = 578}, - [920] = {.lex_state = 578}, - [921] = {.lex_state = 50, .external_lex_state = 2}, - [922] = {.lex_state = 578}, - [923] = {.lex_state = 578}, - [924] = {.lex_state = 578}, - [925] = {.lex_state = 578}, - [926] = {.lex_state = 578}, - [927] = {.lex_state = 578}, - [928] = {.lex_state = 578}, - [929] = {.lex_state = 578}, - [930] = {.lex_state = 578}, - [931] = {.lex_state = 607}, - [932] = {.lex_state = 578}, - [933] = {.lex_state = 578}, - [934] = {.lex_state = 578}, - [935] = {.lex_state = 578}, - [936] = {.lex_state = 578}, - [937] = {.lex_state = 607}, - [938] = {.lex_state = 578}, - [939] = {.lex_state = 578}, - [940] = {.lex_state = 605}, - [941] = {.lex_state = 607}, - [942] = {.lex_state = 578}, - [943] = {.lex_state = 578}, - [944] = {.lex_state = 578}, - [945] = {.lex_state = 578}, - [946] = {.lex_state = 578}, - [947] = {.lex_state = 578}, - [948] = {.lex_state = 607}, - [949] = {.lex_state = 578}, - [950] = {.lex_state = 578}, - [951] = {.lex_state = 578}, - [952] = {.lex_state = 578}, - [953] = {.lex_state = 578}, - [954] = {.lex_state = 607}, - [955] = {.lex_state = 578}, - [956] = {.lex_state = 578}, - [957] = {.lex_state = 605}, - [958] = {.lex_state = 607}, - [959] = {.lex_state = 607}, - [960] = {.lex_state = 607}, - [961] = {.lex_state = 607}, - [962] = {.lex_state = 50, .external_lex_state = 2}, - [963] = {.lex_state = 50, .external_lex_state = 2}, - [964] = {.lex_state = 36, .external_lex_state = 2}, - [965] = {.lex_state = 36, .external_lex_state = 2}, - [966] = {.lex_state = 36, .external_lex_state = 2}, - [967] = {.lex_state = 607}, - [968] = {.lex_state = 578}, - [969] = {.lex_state = 578}, - [970] = {.lex_state = 607}, - [971] = {.lex_state = 47, .external_lex_state = 2}, - [972] = {.lex_state = 578}, - [973] = {.lex_state = 607}, - [974] = {.lex_state = 578}, - [975] = {.lex_state = 607}, - [976] = {.lex_state = 50, .external_lex_state = 2}, - [977] = {.lex_state = 50, .external_lex_state = 2}, - [978] = {.lex_state = 622, .external_lex_state = 2}, - [979] = {.lex_state = 578}, - [980] = {.lex_state = 578}, - [981] = {.lex_state = 578}, - [982] = {.lex_state = 578}, - [983] = {.lex_state = 578}, - [984] = {.lex_state = 578}, - [985] = {.lex_state = 41, .external_lex_state = 2}, - [986] = {.lex_state = 578}, - [987] = {.lex_state = 41, .external_lex_state = 2}, - [988] = {.lex_state = 41, .external_lex_state = 2}, - [989] = {.lex_state = 578}, - [990] = {.lex_state = 578}, - [991] = {.lex_state = 578}, - [992] = {.lex_state = 578}, - [993] = {.lex_state = 578}, - [994] = {.lex_state = 578}, - [995] = {.lex_state = 578}, - [996] = {.lex_state = 578}, - [997] = {.lex_state = 578}, - [998] = {.lex_state = 578}, - [999] = {.lex_state = 578}, - [1000] = {.lex_state = 578}, - [1001] = {.lex_state = 578}, - [1002] = {.lex_state = 578}, - [1003] = {.lex_state = 578}, - [1004] = {.lex_state = 578}, - [1005] = {.lex_state = 622, .external_lex_state = 2}, - [1006] = {.lex_state = 578}, - [1007] = {.lex_state = 578}, - [1008] = {.lex_state = 578}, - [1009] = {.lex_state = 578}, - [1010] = {.lex_state = 578}, - [1011] = {.lex_state = 578}, - [1012] = {.lex_state = 578}, - [1013] = {.lex_state = 578}, - [1014] = {.lex_state = 578}, - [1015] = {.lex_state = 578}, - [1016] = {.lex_state = 578}, - [1017] = {.lex_state = 578}, - [1018] = {.lex_state = 578}, - [1019] = {.lex_state = 578}, - [1020] = {.lex_state = 578}, - [1021] = {.lex_state = 47, .external_lex_state = 2}, - [1022] = {.lex_state = 578}, - [1023] = {.lex_state = 578}, - [1024] = {.lex_state = 578}, - [1025] = {.lex_state = 607}, - [1026] = {.lex_state = 607}, - [1027] = {.lex_state = 578}, - [1028] = {.lex_state = 607}, - [1029] = {.lex_state = 578}, - [1030] = {.lex_state = 578}, - [1031] = {.lex_state = 578}, - [1032] = {.lex_state = 578}, - [1033] = {.lex_state = 578}, - [1034] = {.lex_state = 578}, - [1035] = {.lex_state = 578}, - [1036] = {.lex_state = 578}, - [1037] = {.lex_state = 578}, - [1038] = {.lex_state = 578}, - [1039] = {.lex_state = 578}, - [1040] = {.lex_state = 578}, - [1041] = {.lex_state = 578}, - [1042] = {.lex_state = 578}, - [1043] = {.lex_state = 609}, - [1044] = {.lex_state = 578}, - [1045] = {.lex_state = 578}, - [1046] = {.lex_state = 578}, - [1047] = {.lex_state = 607}, - [1048] = {.lex_state = 578}, - [1049] = {.lex_state = 607}, - [1050] = {.lex_state = 607}, - [1051] = {.lex_state = 578}, - [1052] = {.lex_state = 578}, - [1053] = {.lex_state = 578}, - [1054] = {.lex_state = 578}, - [1055] = {.lex_state = 578}, - [1056] = {.lex_state = 578}, - [1057] = {.lex_state = 578}, - [1058] = {.lex_state = 578}, - [1059] = {.lex_state = 578}, - [1060] = {.lex_state = 578}, - [1061] = {.lex_state = 578}, - [1062] = {.lex_state = 578}, - [1063] = {.lex_state = 607}, - [1064] = {.lex_state = 578}, - [1065] = {.lex_state = 578}, - [1066] = {.lex_state = 578}, - [1067] = {.lex_state = 578}, - [1068] = {.lex_state = 607}, - [1069] = {.lex_state = 578}, - [1070] = {.lex_state = 578}, - [1071] = {.lex_state = 578}, - [1072] = {.lex_state = 578}, - [1073] = {.lex_state = 578}, - [1074] = {.lex_state = 578}, - [1075] = {.lex_state = 578}, - [1076] = {.lex_state = 578}, - [1077] = {.lex_state = 578}, - [1078] = {.lex_state = 578}, - [1079] = {.lex_state = 578}, - [1080] = {.lex_state = 578}, - [1081] = {.lex_state = 578}, - [1082] = {.lex_state = 578}, - [1083] = {.lex_state = 607}, - [1084] = {.lex_state = 578}, - [1085] = {.lex_state = 578}, - [1086] = {.lex_state = 578}, - [1087] = {.lex_state = 578}, - [1088] = {.lex_state = 578}, - [1089] = {.lex_state = 578}, - [1090] = {.lex_state = 607}, - [1091] = {.lex_state = 578}, - [1092] = {.lex_state = 578}, - [1093] = {.lex_state = 578}, - [1094] = {.lex_state = 578}, - [1095] = {.lex_state = 578}, - [1096] = {.lex_state = 578}, - [1097] = {.lex_state = 578}, - [1098] = {.lex_state = 578}, - [1099] = {.lex_state = 578}, - [1100] = {.lex_state = 578}, - [1101] = {.lex_state = 578}, - [1102] = {.lex_state = 578}, - [1103] = {.lex_state = 578}, - [1104] = {.lex_state = 578}, - [1105] = {.lex_state = 578}, - [1106] = {.lex_state = 578}, - [1107] = {.lex_state = 578}, - [1108] = {.lex_state = 578}, - [1109] = {.lex_state = 41, .external_lex_state = 2}, - [1110] = {.lex_state = 41, .external_lex_state = 2}, - [1111] = {.lex_state = 41, .external_lex_state = 2}, - [1112] = {.lex_state = 609}, - [1113] = {.lex_state = 609}, - [1114] = {.lex_state = 609}, - [1115] = {.lex_state = 578}, - [1116] = {.lex_state = 578}, - [1117] = {.lex_state = 36, .external_lex_state = 2}, - [1118] = {.lex_state = 36, .external_lex_state = 2}, - [1119] = {.lex_state = 578}, - [1120] = {.lex_state = 578}, - [1121] = {.lex_state = 578}, - [1122] = {.lex_state = 611}, - [1123] = {.lex_state = 578}, - [1124] = {.lex_state = 578}, - [1125] = {.lex_state = 47, .external_lex_state = 2}, - [1126] = {.lex_state = 578}, - [1127] = {.lex_state = 578}, - [1128] = {.lex_state = 578}, - [1129] = {.lex_state = 622, .external_lex_state = 2}, - [1130] = {.lex_state = 578}, - [1131] = {.lex_state = 578}, - [1132] = {.lex_state = 578}, - [1133] = {.lex_state = 578}, - [1134] = {.lex_state = 578}, - [1135] = {.lex_state = 578}, - [1136] = {.lex_state = 578}, - [1137] = {.lex_state = 578}, - [1138] = {.lex_state = 578}, - [1139] = {.lex_state = 578}, - [1140] = {.lex_state = 578}, - [1141] = {.lex_state = 578}, - [1142] = {.lex_state = 578}, - [1143] = {.lex_state = 578}, - [1144] = {.lex_state = 578}, - [1145] = {.lex_state = 578}, - [1146] = {.lex_state = 578}, - [1147] = {.lex_state = 578}, - [1148] = {.lex_state = 578}, - [1149] = {.lex_state = 46, .external_lex_state = 2}, - [1150] = {.lex_state = 578}, - [1151] = {.lex_state = 46, .external_lex_state = 2}, - [1152] = {.lex_state = 578}, - [1153] = {.lex_state = 578}, - [1154] = {.lex_state = 578}, - [1155] = {.lex_state = 578}, - [1156] = {.lex_state = 578}, - [1157] = {.lex_state = 578}, - [1158] = {.lex_state = 578}, - [1159] = {.lex_state = 578}, - [1160] = {.lex_state = 578}, - [1161] = {.lex_state = 578}, - [1162] = {.lex_state = 578}, - [1163] = {.lex_state = 609}, - [1164] = {.lex_state = 578}, - [1165] = {.lex_state = 578}, - [1166] = {.lex_state = 578}, - [1167] = {.lex_state = 578}, - [1168] = {.lex_state = 578}, - [1169] = {.lex_state = 578}, - [1170] = {.lex_state = 578}, - [1171] = {.lex_state = 578}, - [1172] = {.lex_state = 609}, - [1173] = {.lex_state = 578}, - [1174] = {.lex_state = 578}, - [1175] = {.lex_state = 578}, - [1176] = {.lex_state = 578}, - [1177] = {.lex_state = 578}, - [1178] = {.lex_state = 578}, - [1179] = {.lex_state = 578}, - [1180] = {.lex_state = 578}, - [1181] = {.lex_state = 578}, - [1182] = {.lex_state = 578}, - [1183] = {.lex_state = 578}, - [1184] = {.lex_state = 578}, - [1185] = {.lex_state = 578}, - [1186] = {.lex_state = 578}, - [1187] = {.lex_state = 578}, - [1188] = {.lex_state = 578}, - [1189] = {.lex_state = 578}, - [1190] = {.lex_state = 578}, - [1191] = {.lex_state = 578}, - [1192] = {.lex_state = 578}, - [1193] = {.lex_state = 578}, - [1194] = {.lex_state = 578}, - [1195] = {.lex_state = 578}, - [1196] = {.lex_state = 578}, - [1197] = {.lex_state = 578}, - [1198] = {.lex_state = 578}, - [1199] = {.lex_state = 578}, - [1200] = {.lex_state = 578}, - [1201] = {.lex_state = 578}, - [1202] = {.lex_state = 578}, - [1203] = {.lex_state = 578}, - [1204] = {.lex_state = 578}, - [1205] = {.lex_state = 607}, - [1206] = {.lex_state = 578}, - [1207] = {.lex_state = 609}, - [1208] = {.lex_state = 578}, - [1209] = {.lex_state = 578}, - [1210] = {.lex_state = 578}, - [1211] = {.lex_state = 578}, - [1212] = {.lex_state = 578}, - [1213] = {.lex_state = 578}, - [1214] = {.lex_state = 578}, - [1215] = {.lex_state = 578}, - [1216] = {.lex_state = 578}, - [1217] = {.lex_state = 578}, - [1218] = {.lex_state = 578}, - [1219] = {.lex_state = 578}, - [1220] = {.lex_state = 578}, - [1221] = {.lex_state = 578}, - [1222] = {.lex_state = 578}, - [1223] = {.lex_state = 578}, - [1224] = {.lex_state = 578}, - [1225] = {.lex_state = 578}, - [1226] = {.lex_state = 578}, - [1227] = {.lex_state = 578}, - [1228] = {.lex_state = 578}, - [1229] = {.lex_state = 578}, - [1230] = {.lex_state = 50, .external_lex_state = 2}, - [1231] = {.lex_state = 578}, - [1232] = {.lex_state = 50, .external_lex_state = 2}, - [1233] = {.lex_state = 578}, - [1234] = {.lex_state = 578}, - [1235] = {.lex_state = 578}, - [1236] = {.lex_state = 578}, - [1237] = {.lex_state = 46, .external_lex_state = 2}, - [1238] = {.lex_state = 578}, - [1239] = {.lex_state = 609}, - [1240] = {.lex_state = 50, .external_lex_state = 2}, - [1241] = {.lex_state = 578}, - [1242] = {.lex_state = 609}, - [1243] = {.lex_state = 578}, - [1244] = {.lex_state = 578}, - [1245] = {.lex_state = 578}, - [1246] = {.lex_state = 578}, - [1247] = {.lex_state = 578}, - [1248] = {.lex_state = 578}, - [1249] = {.lex_state = 578}, - [1250] = {.lex_state = 578}, - [1251] = {.lex_state = 578}, - [1252] = {.lex_state = 31, .external_lex_state = 2}, - [1253] = {.lex_state = 578}, - [1254] = {.lex_state = 578}, - [1255] = {.lex_state = 578}, - [1256] = {.lex_state = 50, .external_lex_state = 2}, - [1257] = {.lex_state = 50, .external_lex_state = 2}, - [1258] = {.lex_state = 50, .external_lex_state = 2}, - [1259] = {.lex_state = 50, .external_lex_state = 2}, - [1260] = {.lex_state = 46, .external_lex_state = 2}, - [1261] = {.lex_state = 578}, - [1262] = {.lex_state = 578}, - [1263] = {.lex_state = 578}, - [1264] = {.lex_state = 578}, - [1265] = {.lex_state = 578}, - [1266] = {.lex_state = 578}, - [1267] = {.lex_state = 578}, - [1268] = {.lex_state = 578}, - [1269] = {.lex_state = 578}, - [1270] = {.lex_state = 578}, - [1271] = {.lex_state = 578}, - [1272] = {.lex_state = 578}, - [1273] = {.lex_state = 578}, - [1274] = {.lex_state = 578}, - [1275] = {.lex_state = 622, .external_lex_state = 2}, - [1276] = {.lex_state = 578}, - [1277] = {.lex_state = 578}, - [1278] = {.lex_state = 578}, - [1279] = {.lex_state = 578}, - [1280] = {.lex_state = 578}, - [1281] = {.lex_state = 578}, - [1282] = {.lex_state = 578}, - [1283] = {.lex_state = 578}, - [1284] = {.lex_state = 578}, - [1285] = {.lex_state = 578}, - [1286] = {.lex_state = 578}, - [1287] = {.lex_state = 45, .external_lex_state = 2}, - [1288] = {.lex_state = 578}, - [1289] = {.lex_state = 578}, - [1290] = {.lex_state = 578}, - [1291] = {.lex_state = 45, .external_lex_state = 2}, - [1292] = {.lex_state = 578}, - [1293] = {.lex_state = 578}, - [1294] = {.lex_state = 578}, - [1295] = {.lex_state = 578}, - [1296] = {.lex_state = 578}, - [1297] = {.lex_state = 578}, - [1298] = {.lex_state = 578}, - [1299] = {.lex_state = 578}, - [1300] = {.lex_state = 578}, - [1301] = {.lex_state = 578}, - [1302] = {.lex_state = 578}, - [1303] = {.lex_state = 578}, - [1304] = {.lex_state = 578}, - [1305] = {.lex_state = 578}, - [1306] = {.lex_state = 578}, - [1307] = {.lex_state = 578}, - [1308] = {.lex_state = 578}, - [1309] = {.lex_state = 578}, - [1310] = {.lex_state = 578}, - [1311] = {.lex_state = 578}, - [1312] = {.lex_state = 578}, - [1313] = {.lex_state = 578}, - [1314] = {.lex_state = 578}, - [1315] = {.lex_state = 578}, - [1316] = {.lex_state = 578}, - [1317] = {.lex_state = 578}, - [1318] = {.lex_state = 578}, - [1319] = {.lex_state = 578}, - [1320] = {.lex_state = 578}, - [1321] = {.lex_state = 578}, - [1322] = {.lex_state = 578}, - [1323] = {.lex_state = 578}, - [1324] = {.lex_state = 578}, - [1325] = {.lex_state = 578}, - [1326] = {.lex_state = 578}, - [1327] = {.lex_state = 578}, - [1328] = {.lex_state = 622, .external_lex_state = 2}, - [1329] = {.lex_state = 45, .external_lex_state = 2}, - [1330] = {.lex_state = 578}, - [1331] = {.lex_state = 45, .external_lex_state = 2}, - [1332] = {.lex_state = 578}, - [1333] = {.lex_state = 578}, - [1334] = {.lex_state = 578}, - [1335] = {.lex_state = 578}, - [1336] = {.lex_state = 578}, - [1337] = {.lex_state = 578}, - [1338] = {.lex_state = 622, .external_lex_state = 2}, - [1339] = {.lex_state = 578}, - [1340] = {.lex_state = 578}, - [1341] = {.lex_state = 578}, - [1342] = {.lex_state = 578}, - [1343] = {.lex_state = 578}, - [1344] = {.lex_state = 578}, - [1345] = {.lex_state = 578}, - [1346] = {.lex_state = 174, .external_lex_state = 2}, - [1347] = {.lex_state = 46, .external_lex_state = 2}, - [1348] = {.lex_state = 175, .external_lex_state = 2}, - [1349] = {.lex_state = 175, .external_lex_state = 2}, - [1350] = {.lex_state = 29, .external_lex_state = 2}, - [1351] = {.lex_state = 45, .external_lex_state = 2}, - [1352] = {.lex_state = 45, .external_lex_state = 2}, - [1353] = {.lex_state = 45, .external_lex_state = 2}, - [1354] = {.lex_state = 29, .external_lex_state = 2}, - [1355] = {.lex_state = 622, .external_lex_state = 2}, - [1356] = {.lex_state = 29, .external_lex_state = 2}, - [1357] = {.lex_state = 29, .external_lex_state = 2}, - [1358] = {.lex_state = 629, .external_lex_state = 2}, - [1359] = {.lex_state = 622, .external_lex_state = 2}, - [1360] = {.lex_state = 46, .external_lex_state = 2}, - [1361] = {.lex_state = 46, .external_lex_state = 2}, - [1362] = {.lex_state = 148, .external_lex_state = 2}, - [1363] = {.lex_state = 622, .external_lex_state = 2}, - [1364] = {.lex_state = 622, .external_lex_state = 2}, - [1365] = {.lex_state = 148, .external_lex_state = 2}, - [1366] = {.lex_state = 29, .external_lex_state = 2}, - [1367] = {.lex_state = 622, .external_lex_state = 2}, - [1368] = {.lex_state = 622, .external_lex_state = 2}, - [1369] = {.lex_state = 622, .external_lex_state = 2}, - [1370] = {.lex_state = 622, .external_lex_state = 2}, - [1371] = {.lex_state = 622, .external_lex_state = 2}, - [1372] = {.lex_state = 46, .external_lex_state = 2}, - [1373] = {.lex_state = 148, .external_lex_state = 2}, - [1374] = {.lex_state = 148, .external_lex_state = 2}, - [1375] = {.lex_state = 148, .external_lex_state = 2}, - [1376] = {.lex_state = 622, .external_lex_state = 2}, - [1377] = {.lex_state = 622, .external_lex_state = 2}, - [1378] = {.lex_state = 622, .external_lex_state = 2}, - [1379] = {.lex_state = 582}, - [1380] = {.lex_state = 622, .external_lex_state = 2}, - [1381] = {.lex_state = 29, .external_lex_state = 2}, - [1382] = {.lex_state = 622, .external_lex_state = 2}, - [1383] = {.lex_state = 622, .external_lex_state = 2}, - [1384] = {.lex_state = 622, .external_lex_state = 2}, - [1385] = {.lex_state = 622, .external_lex_state = 2}, - [1386] = {.lex_state = 582}, - [1387] = {.lex_state = 584}, - [1388] = {.lex_state = 584}, - [1389] = {.lex_state = 622, .external_lex_state = 2}, - [1390] = {.lex_state = 34, .external_lex_state = 2}, - [1391] = {.lex_state = 622, .external_lex_state = 2}, - [1392] = {.lex_state = 34, .external_lex_state = 2}, - [1393] = {.lex_state = 622, .external_lex_state = 2}, - [1394] = {.lex_state = 47, .external_lex_state = 2}, - [1395] = {.lex_state = 33, .external_lex_state = 2}, - [1396] = {.lex_state = 584}, - [1397] = {.lex_state = 584}, - [1398] = {.lex_state = 33, .external_lex_state = 2}, - [1399] = {.lex_state = 622, .external_lex_state = 2}, - [1400] = {.lex_state = 586}, - [1401] = {.lex_state = 590}, - [1402] = {.lex_state = 590}, - [1403] = {.lex_state = 592}, - [1404] = {.lex_state = 33, .external_lex_state = 2}, - [1405] = {.lex_state = 34, .external_lex_state = 2}, - [1406] = {.lex_state = 594}, - [1407] = {.lex_state = 33, .external_lex_state = 2}, - [1408] = {.lex_state = 586}, - [1409] = {.lex_state = 33, .external_lex_state = 2}, - [1410] = {.lex_state = 592}, - [1411] = {.lex_state = 33, .external_lex_state = 2}, - [1412] = {.lex_state = 47, .external_lex_state = 2}, - [1413] = {.lex_state = 592}, - [1414] = {.lex_state = 588}, - [1415] = {.lex_state = 594}, - [1416] = {.lex_state = 34, .external_lex_state = 2}, - [1417] = {.lex_state = 158, .external_lex_state = 2}, - [1418] = {.lex_state = 47, .external_lex_state = 2}, - [1419] = {.lex_state = 596}, - [1420] = {.lex_state = 158, .external_lex_state = 2}, - [1421] = {.lex_state = 594}, - [1422] = {.lex_state = 592}, - [1423] = {.lex_state = 594}, - [1424] = {.lex_state = 47, .external_lex_state = 2}, - [1425] = {.lex_state = 594}, - [1426] = {.lex_state = 596}, - [1427] = {.lex_state = 588}, - [1428] = {.lex_state = 594}, - [1429] = {.lex_state = 598}, - [1430] = {.lex_state = 594}, - [1431] = {.lex_state = 598}, - [1432] = {.lex_state = 594}, - [1433] = {.lex_state = 600}, - [1434] = {.lex_state = 600}, - [1435] = {.lex_state = 600}, - [1436] = {.lex_state = 600}, - [1437] = {.lex_state = 600}, - [1438] = {.lex_state = 598}, - [1439] = {.lex_state = 598}, - [1440] = {.lex_state = 602}, - [1441] = {.lex_state = 600}, - [1442] = {.lex_state = 604}, - [1443] = {.lex_state = 600}, - [1444] = {.lex_state = 600}, - [1445] = {.lex_state = 625, .external_lex_state = 2}, - [1446] = {.lex_state = 578}, - [1447] = {.lex_state = 625, .external_lex_state = 2}, - [1448] = {.lex_state = 600}, - [1449] = {.lex_state = 600}, - [1450] = {.lex_state = 578}, - [1451] = {.lex_state = 606}, - [1452] = {.lex_state = 606}, - [1453] = {.lex_state = 37, .external_lex_state = 2}, - [1454] = {.lex_state = 37, .external_lex_state = 2}, - [1455] = {.lex_state = 625, .external_lex_state = 2}, - [1456] = {.lex_state = 604}, - [1457] = {.lex_state = 37, .external_lex_state = 2}, - [1458] = {.lex_state = 625, .external_lex_state = 2}, - [1459] = {.lex_state = 602}, - [1460] = {.lex_state = 608}, - [1461] = {.lex_state = 608}, - [1462] = {.lex_state = 608}, - [1463] = {.lex_state = 608}, - [1464] = {.lex_state = 149, .external_lex_state = 2}, - [1465] = {.lex_state = 608}, - [1466] = {.lex_state = 149, .external_lex_state = 2}, - [1467] = {.lex_state = 149, .external_lex_state = 2}, - [1468] = {.lex_state = 149, .external_lex_state = 2}, - [1469] = {.lex_state = 149, .external_lex_state = 2}, - [1470] = {.lex_state = 608}, - [1471] = {.lex_state = 608}, - [1472] = {.lex_state = 608}, - [1473] = {.lex_state = 149, .external_lex_state = 2}, - [1474] = {.lex_state = 149, .external_lex_state = 2}, - [1475] = {.lex_state = 149, .external_lex_state = 2}, - [1476] = {.lex_state = 606}, - [1477] = {.lex_state = 608}, - [1478] = {.lex_state = 149, .external_lex_state = 2}, - [1479] = {.lex_state = 608}, - [1480] = {.lex_state = 149, .external_lex_state = 2}, - [1481] = {.lex_state = 606}, - [1482] = {.lex_state = 608}, - [1483] = {.lex_state = 149, .external_lex_state = 2}, - [1484] = {.lex_state = 149, .external_lex_state = 2}, - [1485] = {.lex_state = 149, .external_lex_state = 2}, - [1486] = {.lex_state = 608}, - [1487] = {.lex_state = 608}, - [1488] = {.lex_state = 610}, - [1489] = {.lex_state = 149, .external_lex_state = 2}, - [1490] = {.lex_state = 608}, - [1491] = {.lex_state = 149, .external_lex_state = 2}, - [1492] = {.lex_state = 608}, - [1493] = {.lex_state = 610}, - [1494] = {.lex_state = 608}, - [1495] = {.lex_state = 608}, - [1496] = {.lex_state = 149, .external_lex_state = 2}, - [1497] = {.lex_state = 608}, - [1498] = {.lex_state = 40, .external_lex_state = 2}, - [1499] = {.lex_state = 608}, - [1500] = {.lex_state = 608}, - [1501] = {.lex_state = 608}, - [1502] = {.lex_state = 608}, - [1503] = {.lex_state = 608}, - [1504] = {.lex_state = 608}, - [1505] = {.lex_state = 608}, - [1506] = {.lex_state = 608}, - [1507] = {.lex_state = 608}, - [1508] = {.lex_state = 610}, - [1509] = {.lex_state = 89}, - [1510] = {.lex_state = 578}, - [1511] = {.lex_state = 610}, - [1512] = {.lex_state = 610}, - [1513] = {.lex_state = 89}, - [1514] = {.lex_state = 89}, - [1515] = {.lex_state = 40, .external_lex_state = 2}, - [1516] = {.lex_state = 89}, - [1517] = {.lex_state = 89}, - [1518] = {.lex_state = 610}, - [1519] = {.lex_state = 6}, - [1520] = {.lex_state = 608}, - [1521] = {.lex_state = 89}, - [1522] = {.lex_state = 89}, - [1523] = {.lex_state = 89}, - [1524] = {.lex_state = 89}, - [1525] = {.lex_state = 179, .external_lex_state = 2}, - [1526] = {.lex_state = 89}, - [1527] = {.lex_state = 89}, - [1528] = {.lex_state = 89}, - [1529] = {.lex_state = 89}, - [1530] = {.lex_state = 37, .external_lex_state = 2}, - [1531] = {.lex_state = 89}, - [1532] = {.lex_state = 89}, - [1533] = {.lex_state = 89}, - [1534] = {.lex_state = 89}, - [1535] = {.lex_state = 89}, - [1536] = {.lex_state = 89}, - [1537] = {.lex_state = 37, .external_lex_state = 2}, - [1538] = {.lex_state = 89}, - [1539] = {.lex_state = 89}, - [1540] = {.lex_state = 89}, - [1541] = {.lex_state = 89}, - [1542] = {.lex_state = 89}, - [1543] = {.lex_state = 89}, - [1544] = {.lex_state = 89}, - [1545] = {.lex_state = 89}, - [1546] = {.lex_state = 89}, - [1547] = {.lex_state = 89}, - [1548] = {.lex_state = 89}, - [1549] = {.lex_state = 89}, - [1550] = {.lex_state = 37, .external_lex_state = 2}, - [1551] = {.lex_state = 89}, - [1552] = {.lex_state = 89}, - [1553] = {.lex_state = 89}, - [1554] = {.lex_state = 89}, - [1555] = {.lex_state = 89}, - [1556] = {.lex_state = 89}, - [1557] = {.lex_state = 89}, - [1558] = {.lex_state = 89}, - [1559] = {.lex_state = 89}, - [1560] = {.lex_state = 89}, - [1561] = {.lex_state = 89}, - [1562] = {.lex_state = 89}, - [1563] = {.lex_state = 37, .external_lex_state = 2}, - [1564] = {.lex_state = 578}, - [1565] = {.lex_state = 578}, - [1566] = {.lex_state = 578}, - [1567] = {.lex_state = 578}, - [1568] = {.lex_state = 578}, - [1569] = {.lex_state = 578}, - [1570] = {.lex_state = 578}, - [1571] = {.lex_state = 578}, - [1572] = {.lex_state = 578}, - [1573] = {.lex_state = 578}, - [1574] = {.lex_state = 578}, - [1575] = {.lex_state = 578}, - [1576] = {.lex_state = 89}, - [1577] = {.lex_state = 37, .external_lex_state = 2}, - [1578] = {.lex_state = 578}, - [1579] = {.lex_state = 578}, - [1580] = {.lex_state = 578}, - [1581] = {.lex_state = 578}, - [1582] = {.lex_state = 578}, - [1583] = {.lex_state = 578}, - [1584] = {.lex_state = 578}, - [1585] = {.lex_state = 578}, - [1586] = {.lex_state = 578}, - [1587] = {.lex_state = 578}, - [1588] = {.lex_state = 578}, - [1589] = {.lex_state = 578}, - [1590] = {.lex_state = 578}, - [1591] = {.lex_state = 578}, - [1592] = {.lex_state = 578}, - [1593] = {.lex_state = 578}, - [1594] = {.lex_state = 578}, - [1595] = {.lex_state = 578}, - [1596] = {.lex_state = 578}, - [1597] = {.lex_state = 578}, - [1598] = {.lex_state = 578}, - [1599] = {.lex_state = 578}, - [1600] = {.lex_state = 578}, - [1601] = {.lex_state = 578}, - [1602] = {.lex_state = 578}, - [1603] = {.lex_state = 578}, - [1604] = {.lex_state = 89}, - [1605] = {.lex_state = 578}, - [1606] = {.lex_state = 578}, - [1607] = {.lex_state = 578}, - [1608] = {.lex_state = 578}, - [1609] = {.lex_state = 578}, - [1610] = {.lex_state = 578}, - [1611] = {.lex_state = 578}, - [1612] = {.lex_state = 578}, - [1613] = {.lex_state = 578}, - [1614] = {.lex_state = 578}, - [1615] = {.lex_state = 578}, - [1616] = {.lex_state = 578}, - [1617] = {.lex_state = 578}, - [1618] = {.lex_state = 578}, - [1619] = {.lex_state = 578}, - [1620] = {.lex_state = 578}, - [1621] = {.lex_state = 578}, - [1622] = {.lex_state = 578}, - [1623] = {.lex_state = 578}, - [1624] = {.lex_state = 578}, - [1625] = {.lex_state = 578}, - [1626] = {.lex_state = 578}, - [1627] = {.lex_state = 578}, - [1628] = {.lex_state = 578}, - [1629] = {.lex_state = 578}, - [1630] = {.lex_state = 578}, - [1631] = {.lex_state = 578}, - [1632] = {.lex_state = 578}, - [1633] = {.lex_state = 578}, - [1634] = {.lex_state = 578}, - [1635] = {.lex_state = 578}, - [1636] = {.lex_state = 578}, - [1637] = {.lex_state = 578}, - [1638] = {.lex_state = 578}, - [1639] = {.lex_state = 578}, - [1640] = {.lex_state = 578}, - [1641] = {.lex_state = 578}, - [1642] = {.lex_state = 578}, - [1643] = {.lex_state = 578}, - [1644] = {.lex_state = 578}, - [1645] = {.lex_state = 578}, - [1646] = {.lex_state = 578}, - [1647] = {.lex_state = 578}, - [1648] = {.lex_state = 578}, - [1649] = {.lex_state = 578}, - [1650] = {.lex_state = 578}, - [1651] = {.lex_state = 578}, - [1652] = {.lex_state = 578}, - [1653] = {.lex_state = 578}, - [1654] = {.lex_state = 578}, - [1655] = {.lex_state = 578}, - [1656] = {.lex_state = 578}, - [1657] = {.lex_state = 578}, - [1658] = {.lex_state = 578}, - [1659] = {.lex_state = 578}, - [1660] = {.lex_state = 578}, - [1661] = {.lex_state = 578}, - [1662] = {.lex_state = 89}, - [1663] = {.lex_state = 89}, - [1664] = {.lex_state = 89}, - [1665] = {.lex_state = 578}, - [1666] = {.lex_state = 578}, - [1667] = {.lex_state = 578}, - [1668] = {.lex_state = 578}, - [1669] = {.lex_state = 578}, - [1670] = {.lex_state = 578}, - [1671] = {.lex_state = 578}, - [1672] = {.lex_state = 578}, - [1673] = {.lex_state = 578}, - [1674] = {.lex_state = 578}, - [1675] = {.lex_state = 578}, - [1676] = {.lex_state = 578}, - [1677] = {.lex_state = 37, .external_lex_state = 2}, - [1678] = {.lex_state = 578}, - [1679] = {.lex_state = 7}, - [1680] = {.lex_state = 179, .external_lex_state = 2}, - [1681] = {.lex_state = 578}, - [1682] = {.lex_state = 578}, - [1683] = {.lex_state = 578}, - [1684] = {.lex_state = 578}, - [1685] = {.lex_state = 578}, - [1686] = {.lex_state = 578}, - [1687] = {.lex_state = 578}, - [1688] = {.lex_state = 89}, - [1689] = {.lex_state = 578}, - [1690] = {.lex_state = 578}, - [1691] = {.lex_state = 578}, - [1692] = {.lex_state = 578}, - [1693] = {.lex_state = 578}, - [1694] = {.lex_state = 179, .external_lex_state = 2}, - [1695] = {.lex_state = 132}, - [1696] = {.lex_state = 578}, - [1697] = {.lex_state = 7}, - [1698] = {.lex_state = 37, .external_lex_state = 2}, - [1699] = {.lex_state = 37, .external_lex_state = 2}, - [1700] = {.lex_state = 37, .external_lex_state = 2}, - [1701] = {.lex_state = 37, .external_lex_state = 2}, - [1702] = {.lex_state = 37, .external_lex_state = 2}, - [1703] = {.lex_state = 37, .external_lex_state = 2}, - [1704] = {.lex_state = 8}, - [1705] = {.lex_state = 132}, - [1706] = {.lex_state = 10}, - [1707] = {.lex_state = 133}, - [1708] = {.lex_state = 133}, - [1709] = {.lex_state = 37, .external_lex_state = 2}, - [1710] = {.lex_state = 37, .external_lex_state = 2}, - [1711] = {.lex_state = 132}, - [1712] = {.lex_state = 37, .external_lex_state = 2}, - [1713] = {.lex_state = 37, .external_lex_state = 2}, - [1714] = {.lex_state = 37, .external_lex_state = 2}, - [1715] = {.lex_state = 132}, - [1716] = {.lex_state = 178, .external_lex_state = 2}, - [1717] = {.lex_state = 132}, - [1718] = {.lex_state = 12}, - [1719] = {.lex_state = 89}, - [1720] = {.lex_state = 136}, - [1721] = {.lex_state = 178, .external_lex_state = 2}, - [1722] = {.lex_state = 11}, - [1723] = {.lex_state = 132}, - [1724] = {.lex_state = 178, .external_lex_state = 2}, - [1725] = {.lex_state = 11}, - [1726] = {.lex_state = 89}, - [1727] = {.lex_state = 628, .external_lex_state = 2}, - [1728] = {.lex_state = 132}, - [1729] = {.lex_state = 132}, - [1730] = {.lex_state = 132}, - [1731] = {.lex_state = 89}, - [1732] = {.lex_state = 89}, - [1733] = {.lex_state = 572, .external_lex_state = 2}, - [1734] = {.lex_state = 628, .external_lex_state = 2}, - [1735] = {.lex_state = 628, .external_lex_state = 2}, - [1736] = {.lex_state = 134}, - [1737] = {.lex_state = 89}, - [1738] = {.lex_state = 628, .external_lex_state = 2}, - [1739] = {.lex_state = 138}, - [1740] = {.lex_state = 178, .external_lex_state = 2}, - [1741] = {.lex_state = 628, .external_lex_state = 2}, - [1742] = {.lex_state = 628, .external_lex_state = 2}, - [1743] = {.lex_state = 628, .external_lex_state = 2}, - [1744] = {.lex_state = 167, .external_lex_state = 2}, - [1745] = {.lex_state = 89}, - [1746] = {.lex_state = 89}, - [1747] = {.lex_state = 9}, - [1748] = {.lex_state = 170, .external_lex_state = 2}, - [1749] = {.lex_state = 572, .external_lex_state = 2}, - [1750] = {.lex_state = 572, .external_lex_state = 2}, - [1751] = {.lex_state = 572, .external_lex_state = 2}, - [1752] = {.lex_state = 572, .external_lex_state = 2}, - [1753] = {.lex_state = 178, .external_lex_state = 2}, - [1754] = {.lex_state = 572, .external_lex_state = 2}, - [1755] = {.lex_state = 178, .external_lex_state = 2}, - [1756] = {.lex_state = 178, .external_lex_state = 2}, - [1757] = {.lex_state = 12}, - [1758] = {.lex_state = 89}, - [1759] = {.lex_state = 12}, - [1760] = {.lex_state = 12}, - [1761] = {.lex_state = 137}, - [1762] = {.lex_state = 137}, - [1763] = {.lex_state = 37, .external_lex_state = 2}, - [1764] = {.lex_state = 37, .external_lex_state = 2}, - [1765] = {.lex_state = 13}, - [1766] = {.lex_state = 178, .external_lex_state = 2}, - [1767] = {.lex_state = 178, .external_lex_state = 2}, - [1768] = {.lex_state = 178, .external_lex_state = 2}, - [1769] = {.lex_state = 89}, - [1770] = {.lex_state = 37, .external_lex_state = 2}, - [1771] = {.lex_state = 178, .external_lex_state = 2}, - [1772] = {.lex_state = 572, .external_lex_state = 2}, - [1773] = {.lex_state = 178, .external_lex_state = 2}, - [1774] = {.lex_state = 628, .external_lex_state = 2}, - [1775] = {.lex_state = 178, .external_lex_state = 2}, - [1776] = {.lex_state = 572, .external_lex_state = 2}, - [1777] = {.lex_state = 138}, - [1778] = {.lex_state = 37, .external_lex_state = 2}, - [1779] = {.lex_state = 37, .external_lex_state = 2}, - [1780] = {.lex_state = 572, .external_lex_state = 2}, - [1781] = {.lex_state = 89}, - [1782] = {.lex_state = 89}, - [1783] = {.lex_state = 89}, - [1784] = {.lex_state = 89}, - [1785] = {.lex_state = 37, .external_lex_state = 2}, - [1786] = {.lex_state = 572, .external_lex_state = 2}, - [1787] = {.lex_state = 572, .external_lex_state = 2}, - [1788] = {.lex_state = 89}, - [1789] = {.lex_state = 89}, - [1790] = {.lex_state = 37, .external_lex_state = 2}, - [1791] = {.lex_state = 89}, - [1792] = {.lex_state = 89}, - [1793] = {.lex_state = 89}, - [1794] = {.lex_state = 89}, - [1795] = {.lex_state = 627, .external_lex_state = 2}, - [1796] = {.lex_state = 138}, - [1797] = {.lex_state = 89}, - [1798] = {.lex_state = 138}, - [1799] = {.lex_state = 37, .external_lex_state = 2}, - [1800] = {.lex_state = 572, .external_lex_state = 2}, - [1801] = {.lex_state = 14}, - [1802] = {.lex_state = 572, .external_lex_state = 2}, - [1803] = {.lex_state = 14}, - [1804] = {.lex_state = 139}, - [1805] = {.lex_state = 135}, - [1806] = {.lex_state = 572, .external_lex_state = 2}, - [1807] = {.lex_state = 89}, - [1808] = {.lex_state = 89}, - [1809] = {.lex_state = 37, .external_lex_state = 2}, - [1810] = {.lex_state = 89}, - [1811] = {.lex_state = 89}, - [1812] = {.lex_state = 628, .external_lex_state = 2}, - [1813] = {.lex_state = 628, .external_lex_state = 2}, - [1814] = {.lex_state = 89}, - [1815] = {.lex_state = 89}, - [1816] = {.lex_state = 573, .external_lex_state = 2}, - [1817] = {.lex_state = 37, .external_lex_state = 2}, - [1818] = {.lex_state = 37, .external_lex_state = 2}, - [1819] = {.lex_state = 37, .external_lex_state = 2}, - [1820] = {.lex_state = 37, .external_lex_state = 2}, - [1821] = {.lex_state = 37, .external_lex_state = 2}, - [1822] = {.lex_state = 37, .external_lex_state = 2}, - [1823] = {.lex_state = 169, .external_lex_state = 2}, - [1824] = {.lex_state = 169, .external_lex_state = 2}, - [1825] = {.lex_state = 628, .external_lex_state = 2}, - [1826] = {.lex_state = 15}, - [1827] = {.lex_state = 15}, - [1828] = {.lex_state = 89}, - [1829] = {.lex_state = 15}, - [1830] = {.lex_state = 578}, - [1831] = {.lex_state = 89}, - [1832] = {.lex_state = 627, .external_lex_state = 2}, - [1833] = {.lex_state = 628, .external_lex_state = 2}, - [1834] = {.lex_state = 15}, - [1835] = {.lex_state = 15}, - [1836] = {.lex_state = 140}, - [1837] = {.lex_state = 573, .external_lex_state = 2}, - [1838] = {.lex_state = 89}, - [1839] = {.lex_state = 140}, - [1840] = {.lex_state = 171, .external_lex_state = 2}, - [1841] = {.lex_state = 171, .external_lex_state = 2}, - [1842] = {.lex_state = 171, .external_lex_state = 2}, - [1843] = {.lex_state = 171, .external_lex_state = 2}, - [1844] = {.lex_state = 628, .external_lex_state = 2}, - [1845] = {.lex_state = 625, .external_lex_state = 2}, - [1846] = {.lex_state = 89}, - [1847] = {.lex_state = 141}, - [1848] = {.lex_state = 141}, - [1849] = {.lex_state = 141}, - [1850] = {.lex_state = 141}, - [1851] = {.lex_state = 89}, - [1852] = {.lex_state = 625, .external_lex_state = 2}, - [1853] = {.lex_state = 176, .external_lex_state = 2}, - [1854] = {.lex_state = 625, .external_lex_state = 2}, - [1855] = {.lex_state = 141}, - [1856] = {.lex_state = 625, .external_lex_state = 2}, + [467] = {.lex_state = 594}, + [468] = {.lex_state = 49, .external_lex_state = 2}, + [469] = {.lex_state = 594}, + [470] = {.lex_state = 594}, + [471] = {.lex_state = 49, .external_lex_state = 2}, + [472] = {.lex_state = 594}, + [473] = {.lex_state = 578}, + [474] = {.lex_state = 49, .external_lex_state = 2}, + [475] = {.lex_state = 600}, + [476] = {.lex_state = 579}, + [477] = {.lex_state = 594}, + [478] = {.lex_state = 600}, + [479] = {.lex_state = 579}, + [480] = {.lex_state = 579}, + [481] = {.lex_state = 579}, + [482] = {.lex_state = 579}, + [483] = {.lex_state = 579}, + [484] = {.lex_state = 579}, + [485] = {.lex_state = 600}, + [486] = {.lex_state = 579}, + [487] = {.lex_state = 579}, + [488] = {.lex_state = 579}, + [489] = {.lex_state = 594}, + [490] = {.lex_state = 579}, + [491] = {.lex_state = 579}, + [492] = {.lex_state = 594}, + [493] = {.lex_state = 579}, + [494] = {.lex_state = 579}, + [495] = {.lex_state = 579}, + [496] = {.lex_state = 588}, + [497] = {.lex_state = 596}, + [498] = {.lex_state = 579}, + [499] = {.lex_state = 579}, + [500] = {.lex_state = 579}, + [501] = {.lex_state = 49, .external_lex_state = 2}, + [502] = {.lex_state = 579}, + [503] = {.lex_state = 50, .external_lex_state = 2}, + [504] = {.lex_state = 50, .external_lex_state = 2}, + [505] = {.lex_state = 50, .external_lex_state = 2}, + [506] = {.lex_state = 50, .external_lex_state = 2}, + [507] = {.lex_state = 50, .external_lex_state = 2}, + [508] = {.lex_state = 50, .external_lex_state = 2}, + [509] = {.lex_state = 50, .external_lex_state = 2}, + [510] = {.lex_state = 50, .external_lex_state = 2}, + [511] = {.lex_state = 50, .external_lex_state = 2}, + [512] = {.lex_state = 50, .external_lex_state = 2}, + [513] = {.lex_state = 50, .external_lex_state = 2}, + [514] = {.lex_state = 50, .external_lex_state = 2}, + [515] = {.lex_state = 598}, + [516] = {.lex_state = 579}, + [517] = {.lex_state = 612}, + [518] = {.lex_state = 50, .external_lex_state = 2}, + [519] = {.lex_state = 50, .external_lex_state = 2}, + [520] = {.lex_state = 50, .external_lex_state = 2}, + [521] = {.lex_state = 50, .external_lex_state = 2}, + [522] = {.lex_state = 50, .external_lex_state = 2}, + [523] = {.lex_state = 50, .external_lex_state = 2}, + [524] = {.lex_state = 50, .external_lex_state = 2}, + [525] = {.lex_state = 50, .external_lex_state = 2}, + [526] = {.lex_state = 50, .external_lex_state = 2}, + [527] = {.lex_state = 50, .external_lex_state = 2}, + [528] = {.lex_state = 50, .external_lex_state = 2}, + [529] = {.lex_state = 50, .external_lex_state = 2}, + [530] = {.lex_state = 50, .external_lex_state = 2}, + [531] = {.lex_state = 50, .external_lex_state = 2}, + [532] = {.lex_state = 50, .external_lex_state = 2}, + [533] = {.lex_state = 50, .external_lex_state = 2}, + [534] = {.lex_state = 50, .external_lex_state = 2}, + [535] = {.lex_state = 50, .external_lex_state = 2}, + [536] = {.lex_state = 50, .external_lex_state = 2}, + [537] = {.lex_state = 50, .external_lex_state = 2}, + [538] = {.lex_state = 50, .external_lex_state = 2}, + [539] = {.lex_state = 50, .external_lex_state = 2}, + [540] = {.lex_state = 50, .external_lex_state = 2}, + [541] = {.lex_state = 50, .external_lex_state = 2}, + [542] = {.lex_state = 50, .external_lex_state = 2}, + [543] = {.lex_state = 50, .external_lex_state = 2}, + [544] = {.lex_state = 600}, + [545] = {.lex_state = 600}, + [546] = {.lex_state = 598}, + [547] = {.lex_state = 579}, + [548] = {.lex_state = 53, .external_lex_state = 2}, + [549] = {.lex_state = 49, .external_lex_state = 2}, + [550] = {.lex_state = 50, .external_lex_state = 2}, + [551] = {.lex_state = 50, .external_lex_state = 2}, + [552] = {.lex_state = 50, .external_lex_state = 2}, + [553] = {.lex_state = 50, .external_lex_state = 2}, + [554] = {.lex_state = 50, .external_lex_state = 2}, + [555] = {.lex_state = 50, .external_lex_state = 2}, + [556] = {.lex_state = 50, .external_lex_state = 2}, + [557] = {.lex_state = 50, .external_lex_state = 2}, + [558] = {.lex_state = 50, .external_lex_state = 2}, + [559] = {.lex_state = 50, .external_lex_state = 2}, + [560] = {.lex_state = 50, .external_lex_state = 2}, + [561] = {.lex_state = 50, .external_lex_state = 2}, + [562] = {.lex_state = 50, .external_lex_state = 2}, + [563] = {.lex_state = 50, .external_lex_state = 2}, + [564] = {.lex_state = 50, .external_lex_state = 2}, + [565] = {.lex_state = 50, .external_lex_state = 2}, + [566] = {.lex_state = 50, .external_lex_state = 2}, + [567] = {.lex_state = 50, .external_lex_state = 2}, + [568] = {.lex_state = 50, .external_lex_state = 2}, + [569] = {.lex_state = 50, .external_lex_state = 2}, + [570] = {.lex_state = 50, .external_lex_state = 2}, + [571] = {.lex_state = 50, .external_lex_state = 2}, + [572] = {.lex_state = 50, .external_lex_state = 2}, + [573] = {.lex_state = 50, .external_lex_state = 2}, + [574] = {.lex_state = 50, .external_lex_state = 2}, + [575] = {.lex_state = 50, .external_lex_state = 2}, + [576] = {.lex_state = 50, .external_lex_state = 2}, + [577] = {.lex_state = 50, .external_lex_state = 2}, + [578] = {.lex_state = 50, .external_lex_state = 2}, + [579] = {.lex_state = 50, .external_lex_state = 2}, + [580] = {.lex_state = 50, .external_lex_state = 2}, + [581] = {.lex_state = 50, .external_lex_state = 2}, + [582] = {.lex_state = 50, .external_lex_state = 2}, + [583] = {.lex_state = 50, .external_lex_state = 2}, + [584] = {.lex_state = 50, .external_lex_state = 2}, + [585] = {.lex_state = 50, .external_lex_state = 2}, + [586] = {.lex_state = 50, .external_lex_state = 2}, + [587] = {.lex_state = 50, .external_lex_state = 2}, + [588] = {.lex_state = 50, .external_lex_state = 2}, + [589] = {.lex_state = 50, .external_lex_state = 2}, + [590] = {.lex_state = 50, .external_lex_state = 2}, + [591] = {.lex_state = 50, .external_lex_state = 2}, + [592] = {.lex_state = 50, .external_lex_state = 2}, + [593] = {.lex_state = 50, .external_lex_state = 2}, + [594] = {.lex_state = 50, .external_lex_state = 2}, + [595] = {.lex_state = 50, .external_lex_state = 2}, + [596] = {.lex_state = 50, .external_lex_state = 2}, + [597] = {.lex_state = 50, .external_lex_state = 2}, + [598] = {.lex_state = 50, .external_lex_state = 2}, + [599] = {.lex_state = 50, .external_lex_state = 2}, + [600] = {.lex_state = 50, .external_lex_state = 2}, + [601] = {.lex_state = 50, .external_lex_state = 2}, + [602] = {.lex_state = 50, .external_lex_state = 2}, + [603] = {.lex_state = 50, .external_lex_state = 2}, + [604] = {.lex_state = 50, .external_lex_state = 2}, + [605] = {.lex_state = 50, .external_lex_state = 2}, + [606] = {.lex_state = 50, .external_lex_state = 2}, + [607] = {.lex_state = 50, .external_lex_state = 2}, + [608] = {.lex_state = 50, .external_lex_state = 2}, + [609] = {.lex_state = 50, .external_lex_state = 2}, + [610] = {.lex_state = 50, .external_lex_state = 2}, + [611] = {.lex_state = 50, .external_lex_state = 2}, + [612] = {.lex_state = 50, .external_lex_state = 2}, + [613] = {.lex_state = 50, .external_lex_state = 2}, + [614] = {.lex_state = 50, .external_lex_state = 2}, + [615] = {.lex_state = 49, .external_lex_state = 2}, + [616] = {.lex_state = 50, .external_lex_state = 2}, + [617] = {.lex_state = 50, .external_lex_state = 2}, + [618] = {.lex_state = 50, .external_lex_state = 2}, + [619] = {.lex_state = 50, .external_lex_state = 2}, + [620] = {.lex_state = 50, .external_lex_state = 2}, + [621] = {.lex_state = 50, .external_lex_state = 2}, + [622] = {.lex_state = 50, .external_lex_state = 2}, + [623] = {.lex_state = 50, .external_lex_state = 2}, + [624] = {.lex_state = 50, .external_lex_state = 2}, + [625] = {.lex_state = 50, .external_lex_state = 2}, + [626] = {.lex_state = 50, .external_lex_state = 2}, + [627] = {.lex_state = 50, .external_lex_state = 2}, + [628] = {.lex_state = 50, .external_lex_state = 2}, + [629] = {.lex_state = 50, .external_lex_state = 2}, + [630] = {.lex_state = 50, .external_lex_state = 2}, + [631] = {.lex_state = 50, .external_lex_state = 2}, + [632] = {.lex_state = 50, .external_lex_state = 2}, + [633] = {.lex_state = 50, .external_lex_state = 2}, + [634] = {.lex_state = 50, .external_lex_state = 2}, + [635] = {.lex_state = 50, .external_lex_state = 2}, + [636] = {.lex_state = 50, .external_lex_state = 2}, + [637] = {.lex_state = 50, .external_lex_state = 2}, + [638] = {.lex_state = 50, .external_lex_state = 2}, + [639] = {.lex_state = 50, .external_lex_state = 2}, + [640] = {.lex_state = 50, .external_lex_state = 2}, + [641] = {.lex_state = 50, .external_lex_state = 2}, + [642] = {.lex_state = 50, .external_lex_state = 2}, + [643] = {.lex_state = 50, .external_lex_state = 2}, + [644] = {.lex_state = 50, .external_lex_state = 2}, + [645] = {.lex_state = 50, .external_lex_state = 2}, + [646] = {.lex_state = 50, .external_lex_state = 2}, + [647] = {.lex_state = 50, .external_lex_state = 2}, + [648] = {.lex_state = 50, .external_lex_state = 2}, + [649] = {.lex_state = 50, .external_lex_state = 2}, + [650] = {.lex_state = 50, .external_lex_state = 2}, + [651] = {.lex_state = 50, .external_lex_state = 2}, + [652] = {.lex_state = 50, .external_lex_state = 2}, + [653] = {.lex_state = 50, .external_lex_state = 2}, + [654] = {.lex_state = 50, .external_lex_state = 2}, + [655] = {.lex_state = 50, .external_lex_state = 2}, + [656] = {.lex_state = 50, .external_lex_state = 2}, + [657] = {.lex_state = 50, .external_lex_state = 2}, + [658] = {.lex_state = 50, .external_lex_state = 2}, + [659] = {.lex_state = 50, .external_lex_state = 2}, + [660] = {.lex_state = 50, .external_lex_state = 2}, + [661] = {.lex_state = 50, .external_lex_state = 2}, + [662] = {.lex_state = 50, .external_lex_state = 2}, + [663] = {.lex_state = 50, .external_lex_state = 2}, + [664] = {.lex_state = 50, .external_lex_state = 2}, + [665] = {.lex_state = 50, .external_lex_state = 2}, + [666] = {.lex_state = 50, .external_lex_state = 2}, + [667] = {.lex_state = 53, .external_lex_state = 2}, + [668] = {.lex_state = 53, .external_lex_state = 2}, + [669] = {.lex_state = 50, .external_lex_state = 2}, + [670] = {.lex_state = 50, .external_lex_state = 2}, + [671] = {.lex_state = 579}, + [672] = {.lex_state = 579}, + [673] = {.lex_state = 579}, + [674] = {.lex_state = 579}, + [675] = {.lex_state = 600}, + [676] = {.lex_state = 579}, + [677] = {.lex_state = 579}, + [678] = {.lex_state = 600}, + [679] = {.lex_state = 579}, + [680] = {.lex_state = 579}, + [681] = {.lex_state = 579}, + [682] = {.lex_state = 579}, + [683] = {.lex_state = 612}, + [684] = {.lex_state = 579}, + [685] = {.lex_state = 600}, + [686] = {.lex_state = 579}, + [687] = {.lex_state = 579}, + [688] = {.lex_state = 579}, + [689] = {.lex_state = 579}, + [690] = {.lex_state = 602}, + [691] = {.lex_state = 579}, + [692] = {.lex_state = 579}, + [693] = {.lex_state = 579}, + [694] = {.lex_state = 579}, + [695] = {.lex_state = 579}, + [696] = {.lex_state = 600}, + [697] = {.lex_state = 579}, + [698] = {.lex_state = 579}, + [699] = {.lex_state = 579}, + [700] = {.lex_state = 579}, + [701] = {.lex_state = 579}, + [702] = {.lex_state = 579}, + [703] = {.lex_state = 579}, + [704] = {.lex_state = 579}, + [705] = {.lex_state = 579}, + [706] = {.lex_state = 600}, + [707] = {.lex_state = 579}, + [708] = {.lex_state = 579}, + [709] = {.lex_state = 579}, + [710] = {.lex_state = 604}, + [711] = {.lex_state = 579}, + [712] = {.lex_state = 579}, + [713] = {.lex_state = 50, .external_lex_state = 2}, + [714] = {.lex_state = 50, .external_lex_state = 2}, + [715] = {.lex_state = 579}, + [716] = {.lex_state = 50, .external_lex_state = 2}, + [717] = {.lex_state = 50, .external_lex_state = 2}, + [718] = {.lex_state = 579}, + [719] = {.lex_state = 50, .external_lex_state = 2}, + [720] = {.lex_state = 50, .external_lex_state = 2}, + [721] = {.lex_state = 49, .external_lex_state = 2}, + [722] = {.lex_state = 579}, + [723] = {.lex_state = 579}, + [724] = {.lex_state = 579}, + [725] = {.lex_state = 579}, + [726] = {.lex_state = 50, .external_lex_state = 2}, + [727] = {.lex_state = 50, .external_lex_state = 2}, + [728] = {.lex_state = 579}, + [729] = {.lex_state = 50, .external_lex_state = 2}, + [730] = {.lex_state = 579}, + [731] = {.lex_state = 50, .external_lex_state = 2}, + [732] = {.lex_state = 579}, + [733] = {.lex_state = 50, .external_lex_state = 2}, + [734] = {.lex_state = 579}, + [735] = {.lex_state = 612}, + [736] = {.lex_state = 50, .external_lex_state = 2}, + [737] = {.lex_state = 579}, + [738] = {.lex_state = 50, .external_lex_state = 2}, + [739] = {.lex_state = 579}, + [740] = {.lex_state = 50, .external_lex_state = 2}, + [741] = {.lex_state = 579}, + [742] = {.lex_state = 50, .external_lex_state = 2}, + [743] = {.lex_state = 579}, + [744] = {.lex_state = 50, .external_lex_state = 2}, + [745] = {.lex_state = 579}, + [746] = {.lex_state = 50, .external_lex_state = 2}, + [747] = {.lex_state = 579}, + [748] = {.lex_state = 50, .external_lex_state = 2}, + [749] = {.lex_state = 50, .external_lex_state = 2}, + [750] = {.lex_state = 49, .external_lex_state = 2}, + [751] = {.lex_state = 45, .external_lex_state = 2}, + [752] = {.lex_state = 50, .external_lex_state = 2}, + [753] = {.lex_state = 50, .external_lex_state = 2}, + [754] = {.lex_state = 579}, + [755] = {.lex_state = 604}, + [756] = {.lex_state = 50, .external_lex_state = 2}, + [757] = {.lex_state = 50, .external_lex_state = 2}, + [758] = {.lex_state = 50, .external_lex_state = 2}, + [759] = {.lex_state = 50, .external_lex_state = 2}, + [760] = {.lex_state = 579}, + [761] = {.lex_state = 49, .external_lex_state = 2}, + [762] = {.lex_state = 579}, + [763] = {.lex_state = 579}, + [764] = {.lex_state = 579}, + [765] = {.lex_state = 579}, + [766] = {.lex_state = 602}, + [767] = {.lex_state = 579}, + [768] = {.lex_state = 579}, + [769] = {.lex_state = 606}, + [770] = {.lex_state = 579}, + [771] = {.lex_state = 606}, + [772] = {.lex_state = 579}, + [773] = {.lex_state = 579}, + [774] = {.lex_state = 579}, + [775] = {.lex_state = 579}, + [776] = {.lex_state = 579}, + [777] = {.lex_state = 579}, + [778] = {.lex_state = 579}, + [779] = {.lex_state = 579}, + [780] = {.lex_state = 579}, + [781] = {.lex_state = 579}, + [782] = {.lex_state = 579}, + [783] = {.lex_state = 579}, + [784] = {.lex_state = 579}, + [785] = {.lex_state = 50, .external_lex_state = 2}, + [786] = {.lex_state = 50, .external_lex_state = 2}, + [787] = {.lex_state = 50, .external_lex_state = 2}, + [788] = {.lex_state = 50, .external_lex_state = 2}, + [789] = {.lex_state = 50, .external_lex_state = 2}, + [790] = {.lex_state = 50, .external_lex_state = 2}, + [791] = {.lex_state = 50, .external_lex_state = 2}, + [792] = {.lex_state = 50, .external_lex_state = 2}, + [793] = {.lex_state = 50, .external_lex_state = 2}, + [794] = {.lex_state = 50, .external_lex_state = 2}, + [795] = {.lex_state = 50, .external_lex_state = 2}, + [796] = {.lex_state = 50, .external_lex_state = 2}, + [797] = {.lex_state = 50, .external_lex_state = 2}, + [798] = {.lex_state = 579}, + [799] = {.lex_state = 45, .external_lex_state = 2}, + [800] = {.lex_state = 579}, + [801] = {.lex_state = 579}, + [802] = {.lex_state = 579}, + [803] = {.lex_state = 608}, + [804] = {.lex_state = 579}, + [805] = {.lex_state = 579}, + [806] = {.lex_state = 579}, + [807] = {.lex_state = 579}, + [808] = {.lex_state = 50, .external_lex_state = 2}, + [809] = {.lex_state = 579}, + [810] = {.lex_state = 579}, + [811] = {.lex_state = 579}, + [812] = {.lex_state = 579}, + [813] = {.lex_state = 579}, + [814] = {.lex_state = 579}, + [815] = {.lex_state = 579}, + [816] = {.lex_state = 579}, + [817] = {.lex_state = 579}, + [818] = {.lex_state = 579}, + [819] = {.lex_state = 579}, + [820] = {.lex_state = 579}, + [821] = {.lex_state = 49, .external_lex_state = 2}, + [822] = {.lex_state = 49, .external_lex_state = 2}, + [823] = {.lex_state = 49, .external_lex_state = 2}, + [824] = {.lex_state = 579}, + [825] = {.lex_state = 579}, + [826] = {.lex_state = 50, .external_lex_state = 2}, + [827] = {.lex_state = 50, .external_lex_state = 2}, + [828] = {.lex_state = 50, .external_lex_state = 2}, + [829] = {.lex_state = 50, .external_lex_state = 2}, + [830] = {.lex_state = 50, .external_lex_state = 2}, + [831] = {.lex_state = 50, .external_lex_state = 2}, + [832] = {.lex_state = 50, .external_lex_state = 2}, + [833] = {.lex_state = 50, .external_lex_state = 2}, + [834] = {.lex_state = 50, .external_lex_state = 2}, + [835] = {.lex_state = 50, .external_lex_state = 2}, + [836] = {.lex_state = 50, .external_lex_state = 2}, + [837] = {.lex_state = 50, .external_lex_state = 2}, + [838] = {.lex_state = 50, .external_lex_state = 2}, + [839] = {.lex_state = 579}, + [840] = {.lex_state = 579}, + [841] = {.lex_state = 579}, + [842] = {.lex_state = 579}, + [843] = {.lex_state = 579}, + [844] = {.lex_state = 579}, + [845] = {.lex_state = 579}, + [846] = {.lex_state = 579}, + [847] = {.lex_state = 579}, + [848] = {.lex_state = 579}, + [849] = {.lex_state = 579}, + [850] = {.lex_state = 579}, + [851] = {.lex_state = 50, .external_lex_state = 2}, + [852] = {.lex_state = 50, .external_lex_state = 2}, + [853] = {.lex_state = 50, .external_lex_state = 2}, + [854] = {.lex_state = 50, .external_lex_state = 2}, + [855] = {.lex_state = 50, .external_lex_state = 2}, + [856] = {.lex_state = 50, .external_lex_state = 2}, + [857] = {.lex_state = 50, .external_lex_state = 2}, + [858] = {.lex_state = 50, .external_lex_state = 2}, + [859] = {.lex_state = 50, .external_lex_state = 2}, + [860] = {.lex_state = 50, .external_lex_state = 2}, + [861] = {.lex_state = 50, .external_lex_state = 2}, + [862] = {.lex_state = 50, .external_lex_state = 2}, + [863] = {.lex_state = 50, .external_lex_state = 2}, + [864] = {.lex_state = 579}, + [865] = {.lex_state = 579}, + [866] = {.lex_state = 579}, + [867] = {.lex_state = 579}, + [868] = {.lex_state = 579}, + [869] = {.lex_state = 579}, + [870] = {.lex_state = 579}, + [871] = {.lex_state = 50, .external_lex_state = 2}, + [872] = {.lex_state = 50, .external_lex_state = 2}, + [873] = {.lex_state = 50, .external_lex_state = 2}, + [874] = {.lex_state = 50, .external_lex_state = 2}, + [875] = {.lex_state = 50, .external_lex_state = 2}, + [876] = {.lex_state = 50, .external_lex_state = 2}, + [877] = {.lex_state = 50, .external_lex_state = 2}, + [878] = {.lex_state = 50, .external_lex_state = 2}, + [879] = {.lex_state = 50, .external_lex_state = 2}, + [880] = {.lex_state = 50, .external_lex_state = 2}, + [881] = {.lex_state = 50, .external_lex_state = 2}, + [882] = {.lex_state = 50, .external_lex_state = 2}, + [883] = {.lex_state = 50, .external_lex_state = 2}, + [884] = {.lex_state = 579}, + [885] = {.lex_state = 579}, + [886] = {.lex_state = 579}, + [887] = {.lex_state = 579}, + [888] = {.lex_state = 579}, + [889] = {.lex_state = 579}, + [890] = {.lex_state = 579}, + [891] = {.lex_state = 579}, + [892] = {.lex_state = 579}, + [893] = {.lex_state = 45, .external_lex_state = 2}, + [894] = {.lex_state = 579}, + [895] = {.lex_state = 579}, + [896] = {.lex_state = 579}, + [897] = {.lex_state = 579}, + [898] = {.lex_state = 579}, + [899] = {.lex_state = 608}, + [900] = {.lex_state = 579}, + [901] = {.lex_state = 45, .external_lex_state = 2}, + [902] = {.lex_state = 579}, + [903] = {.lex_state = 608}, + [904] = {.lex_state = 579}, + [905] = {.lex_state = 55, .external_lex_state = 2}, + [906] = {.lex_state = 579}, + [907] = {.lex_state = 579}, + [908] = {.lex_state = 45, .external_lex_state = 2}, + [909] = {.lex_state = 579}, + [910] = {.lex_state = 55, .external_lex_state = 2}, + [911] = {.lex_state = 579}, + [912] = {.lex_state = 579}, + [913] = {.lex_state = 579}, + [914] = {.lex_state = 608}, + [915] = {.lex_state = 579}, + [916] = {.lex_state = 579}, + [917] = {.lex_state = 579}, + [918] = {.lex_state = 608}, + [919] = {.lex_state = 579}, + [920] = {.lex_state = 608}, + [921] = {.lex_state = 579}, + [922] = {.lex_state = 579}, + [923] = {.lex_state = 608}, + [924] = {.lex_state = 579}, + [925] = {.lex_state = 579}, + [926] = {.lex_state = 579}, + [927] = {.lex_state = 579}, + [928] = {.lex_state = 579}, + [929] = {.lex_state = 579}, + [930] = {.lex_state = 579}, + [931] = {.lex_state = 579}, + [932] = {.lex_state = 606}, + [933] = {.lex_state = 579}, + [934] = {.lex_state = 579}, + [935] = {.lex_state = 579}, + [936] = {.lex_state = 579}, + [937] = {.lex_state = 579}, + [938] = {.lex_state = 579}, + [939] = {.lex_state = 55, .external_lex_state = 2}, + [940] = {.lex_state = 579}, + [941] = {.lex_state = 579}, + [942] = {.lex_state = 579}, + [943] = {.lex_state = 579}, + [944] = {.lex_state = 608}, + [945] = {.lex_state = 579}, + [946] = {.lex_state = 579}, + [947] = {.lex_state = 579}, + [948] = {.lex_state = 579}, + [949] = {.lex_state = 608}, + [950] = {.lex_state = 579}, + [951] = {.lex_state = 608}, + [952] = {.lex_state = 579}, + [953] = {.lex_state = 608}, + [954] = {.lex_state = 606}, + [955] = {.lex_state = 608}, + [956] = {.lex_state = 608}, + [957] = {.lex_state = 579}, + [958] = {.lex_state = 579}, + [959] = {.lex_state = 579}, + [960] = {.lex_state = 579}, + [961] = {.lex_state = 579}, + [962] = {.lex_state = 579}, + [963] = {.lex_state = 579}, + [964] = {.lex_state = 38, .external_lex_state = 2}, + [965] = {.lex_state = 623, .external_lex_state = 2}, + [966] = {.lex_state = 608}, + [967] = {.lex_state = 579}, + [968] = {.lex_state = 608}, + [969] = {.lex_state = 608}, + [970] = {.lex_state = 608}, + [971] = {.lex_state = 608}, + [972] = {.lex_state = 579}, + [973] = {.lex_state = 579}, + [974] = {.lex_state = 579}, + [975] = {.lex_state = 55, .external_lex_state = 2}, + [976] = {.lex_state = 55, .external_lex_state = 2}, + [977] = {.lex_state = 579}, + [978] = {.lex_state = 38, .external_lex_state = 2}, + [979] = {.lex_state = 579}, + [980] = {.lex_state = 610}, + [981] = {.lex_state = 579}, + [982] = {.lex_state = 579}, + [983] = {.lex_state = 579}, + [984] = {.lex_state = 579}, + [985] = {.lex_state = 579}, + [986] = {.lex_state = 579}, + [987] = {.lex_state = 579}, + [988] = {.lex_state = 610}, + [989] = {.lex_state = 579}, + [990] = {.lex_state = 612}, + [991] = {.lex_state = 579}, + [992] = {.lex_state = 579}, + [993] = {.lex_state = 579}, + [994] = {.lex_state = 579}, + [995] = {.lex_state = 579}, + [996] = {.lex_state = 579}, + [997] = {.lex_state = 623, .external_lex_state = 2}, + [998] = {.lex_state = 579}, + [999] = {.lex_state = 579}, + [1000] = {.lex_state = 579}, + [1001] = {.lex_state = 579}, + [1002] = {.lex_state = 610}, + [1003] = {.lex_state = 579}, + [1004] = {.lex_state = 579}, + [1005] = {.lex_state = 579}, + [1006] = {.lex_state = 608}, + [1007] = {.lex_state = 579}, + [1008] = {.lex_state = 579}, + [1009] = {.lex_state = 579}, + [1010] = {.lex_state = 579}, + [1011] = {.lex_state = 579}, + [1012] = {.lex_state = 579}, + [1013] = {.lex_state = 579}, + [1014] = {.lex_state = 579}, + [1015] = {.lex_state = 608}, + [1016] = {.lex_state = 579}, + [1017] = {.lex_state = 610}, + [1018] = {.lex_state = 579}, + [1019] = {.lex_state = 579}, + [1020] = {.lex_state = 579}, + [1021] = {.lex_state = 579}, + [1022] = {.lex_state = 579}, + [1023] = {.lex_state = 579}, + [1024] = {.lex_state = 579}, + [1025] = {.lex_state = 579}, + [1026] = {.lex_state = 579}, + [1027] = {.lex_state = 579}, + [1028] = {.lex_state = 579}, + [1029] = {.lex_state = 579}, + [1030] = {.lex_state = 579}, + [1031] = {.lex_state = 579}, + [1032] = {.lex_state = 579}, + [1033] = {.lex_state = 579}, + [1034] = {.lex_state = 579}, + [1035] = {.lex_state = 579}, + [1036] = {.lex_state = 579}, + [1037] = {.lex_state = 579}, + [1038] = {.lex_state = 579}, + [1039] = {.lex_state = 579}, + [1040] = {.lex_state = 579}, + [1041] = {.lex_state = 45, .external_lex_state = 2}, + [1042] = {.lex_state = 579}, + [1043] = {.lex_state = 579}, + [1044] = {.lex_state = 579}, + [1045] = {.lex_state = 579}, + [1046] = {.lex_state = 579}, + [1047] = {.lex_state = 45, .external_lex_state = 2}, + [1048] = {.lex_state = 579}, + [1049] = {.lex_state = 579}, + [1050] = {.lex_state = 579}, + [1051] = {.lex_state = 579}, + [1052] = {.lex_state = 579}, + [1053] = {.lex_state = 579}, + [1054] = {.lex_state = 608}, + [1055] = {.lex_state = 579}, + [1056] = {.lex_state = 579}, + [1057] = {.lex_state = 579}, + [1058] = {.lex_state = 579}, + [1059] = {.lex_state = 579}, + [1060] = {.lex_state = 45, .external_lex_state = 2}, + [1061] = {.lex_state = 579}, + [1062] = {.lex_state = 579}, + [1063] = {.lex_state = 579}, + [1064] = {.lex_state = 45, .external_lex_state = 2}, + [1065] = {.lex_state = 579}, + [1066] = {.lex_state = 579}, + [1067] = {.lex_state = 579}, + [1068] = {.lex_state = 579}, + [1069] = {.lex_state = 38, .external_lex_state = 2}, + [1070] = {.lex_state = 50, .external_lex_state = 2}, + [1071] = {.lex_state = 579}, + [1072] = {.lex_state = 50, .external_lex_state = 2}, + [1073] = {.lex_state = 50, .external_lex_state = 2}, + [1074] = {.lex_state = 579}, + [1075] = {.lex_state = 579}, + [1076] = {.lex_state = 579}, + [1077] = {.lex_state = 579}, + [1078] = {.lex_state = 579}, + [1079] = {.lex_state = 579}, + [1080] = {.lex_state = 579}, + [1081] = {.lex_state = 579}, + [1082] = {.lex_state = 579}, + [1083] = {.lex_state = 50, .external_lex_state = 2}, + [1084] = {.lex_state = 579}, + [1085] = {.lex_state = 579}, + [1086] = {.lex_state = 608}, + [1087] = {.lex_state = 579}, + [1088] = {.lex_state = 50, .external_lex_state = 2}, + [1089] = {.lex_state = 608}, + [1090] = {.lex_state = 579}, + [1091] = {.lex_state = 50, .external_lex_state = 2}, + [1092] = {.lex_state = 579}, + [1093] = {.lex_state = 579}, + [1094] = {.lex_state = 579}, + [1095] = {.lex_state = 579}, + [1096] = {.lex_state = 579}, + [1097] = {.lex_state = 579}, + [1098] = {.lex_state = 579}, + [1099] = {.lex_state = 579}, + [1100] = {.lex_state = 579}, + [1101] = {.lex_state = 579}, + [1102] = {.lex_state = 579}, + [1103] = {.lex_state = 579}, + [1104] = {.lex_state = 579}, + [1105] = {.lex_state = 579}, + [1106] = {.lex_state = 579}, + [1107] = {.lex_state = 608}, + [1108] = {.lex_state = 579}, + [1109] = {.lex_state = 579}, + [1110] = {.lex_state = 608}, + [1111] = {.lex_state = 579}, + [1112] = {.lex_state = 579}, + [1113] = {.lex_state = 579}, + [1114] = {.lex_state = 579}, + [1115] = {.lex_state = 579}, + [1116] = {.lex_state = 608}, + [1117] = {.lex_state = 623, .external_lex_state = 2}, + [1118] = {.lex_state = 608}, + [1119] = {.lex_state = 579}, + [1120] = {.lex_state = 579}, + [1121] = {.lex_state = 579}, + [1122] = {.lex_state = 579}, + [1123] = {.lex_state = 579}, + [1124] = {.lex_state = 579}, + [1125] = {.lex_state = 579}, + [1126] = {.lex_state = 579}, + [1127] = {.lex_state = 579}, + [1128] = {.lex_state = 579}, + [1129] = {.lex_state = 579}, + [1130] = {.lex_state = 579}, + [1131] = {.lex_state = 579}, + [1132] = {.lex_state = 579}, + [1133] = {.lex_state = 579}, + [1134] = {.lex_state = 579}, + [1135] = {.lex_state = 579}, + [1136] = {.lex_state = 579}, + [1137] = {.lex_state = 579}, + [1138] = {.lex_state = 579}, + [1139] = {.lex_state = 579}, + [1140] = {.lex_state = 579}, + [1141] = {.lex_state = 579}, + [1142] = {.lex_state = 579}, + [1143] = {.lex_state = 579}, + [1144] = {.lex_state = 579}, + [1145] = {.lex_state = 579}, + [1146] = {.lex_state = 579}, + [1147] = {.lex_state = 579}, + [1148] = {.lex_state = 579}, + [1149] = {.lex_state = 579}, + [1150] = {.lex_state = 579}, + [1151] = {.lex_state = 579}, + [1152] = {.lex_state = 579}, + [1153] = {.lex_state = 579}, + [1154] = {.lex_state = 579}, + [1155] = {.lex_state = 579}, + [1156] = {.lex_state = 579}, + [1157] = {.lex_state = 55, .external_lex_state = 2}, + [1158] = {.lex_state = 579}, + [1159] = {.lex_state = 579}, + [1160] = {.lex_state = 579}, + [1161] = {.lex_state = 579}, + [1162] = {.lex_state = 55, .external_lex_state = 2}, + [1163] = {.lex_state = 579}, + [1164] = {.lex_state = 579}, + [1165] = {.lex_state = 579}, + [1166] = {.lex_state = 579}, + [1167] = {.lex_state = 610}, + [1168] = {.lex_state = 579}, + [1169] = {.lex_state = 579}, + [1170] = {.lex_state = 55, .external_lex_state = 2}, + [1171] = {.lex_state = 579}, + [1172] = {.lex_state = 579}, + [1173] = {.lex_state = 579}, + [1174] = {.lex_state = 579}, + [1175] = {.lex_state = 579}, + [1176] = {.lex_state = 579}, + [1177] = {.lex_state = 579}, + [1178] = {.lex_state = 579}, + [1179] = {.lex_state = 579}, + [1180] = {.lex_state = 579}, + [1181] = {.lex_state = 579}, + [1182] = {.lex_state = 625, .external_lex_state = 2}, + [1183] = {.lex_state = 579}, + [1184] = {.lex_state = 579}, + [1185] = {.lex_state = 579}, + [1186] = {.lex_state = 579}, + [1187] = {.lex_state = 579}, + [1188] = {.lex_state = 579}, + [1189] = {.lex_state = 579}, + [1190] = {.lex_state = 579}, + [1191] = {.lex_state = 579}, + [1192] = {.lex_state = 579}, + [1193] = {.lex_state = 579}, + [1194] = {.lex_state = 579}, + [1195] = {.lex_state = 579}, + [1196] = {.lex_state = 579}, + [1197] = {.lex_state = 579}, + [1198] = {.lex_state = 579}, + [1199] = {.lex_state = 579}, + [1200] = {.lex_state = 579}, + [1201] = {.lex_state = 37, .external_lex_state = 2}, + [1202] = {.lex_state = 579}, + [1203] = {.lex_state = 579}, + [1204] = {.lex_state = 579}, + [1205] = {.lex_state = 579}, + [1206] = {.lex_state = 579}, + [1207] = {.lex_state = 579}, + [1208] = {.lex_state = 579}, + [1209] = {.lex_state = 579}, + [1210] = {.lex_state = 579}, + [1211] = {.lex_state = 579}, + [1212] = {.lex_state = 579}, + [1213] = {.lex_state = 579}, + [1214] = {.lex_state = 579}, + [1215] = {.lex_state = 579}, + [1216] = {.lex_state = 579}, + [1217] = {.lex_state = 579}, + [1218] = {.lex_state = 579}, + [1219] = {.lex_state = 579}, + [1220] = {.lex_state = 579}, + [1221] = {.lex_state = 37, .external_lex_state = 2}, + [1222] = {.lex_state = 579}, + [1223] = {.lex_state = 579}, + [1224] = {.lex_state = 579}, + [1225] = {.lex_state = 55, .external_lex_state = 2}, + [1226] = {.lex_state = 579}, + [1227] = {.lex_state = 579}, + [1228] = {.lex_state = 610}, + [1229] = {.lex_state = 37, .external_lex_state = 2}, + [1230] = {.lex_state = 579}, + [1231] = {.lex_state = 579}, + [1232] = {.lex_state = 610}, + [1233] = {.lex_state = 579}, + [1234] = {.lex_state = 610}, + [1235] = {.lex_state = 579}, + [1236] = {.lex_state = 579}, + [1237] = {.lex_state = 579}, + [1238] = {.lex_state = 579}, + [1239] = {.lex_state = 608}, + [1240] = {.lex_state = 579}, + [1241] = {.lex_state = 610}, + [1242] = {.lex_state = 579}, + [1243] = {.lex_state = 579}, + [1244] = {.lex_state = 579}, + [1245] = {.lex_state = 579}, + [1246] = {.lex_state = 579}, + [1247] = {.lex_state = 579}, + [1248] = {.lex_state = 579}, + [1249] = {.lex_state = 579}, + [1250] = {.lex_state = 579}, + [1251] = {.lex_state = 579}, + [1252] = {.lex_state = 579}, + [1253] = {.lex_state = 579}, + [1254] = {.lex_state = 579}, + [1255] = {.lex_state = 579}, + [1256] = {.lex_state = 55, .external_lex_state = 2}, + [1257] = {.lex_state = 55, .external_lex_state = 2}, + [1258] = {.lex_state = 55, .external_lex_state = 2}, + [1259] = {.lex_state = 37, .external_lex_state = 2}, + [1260] = {.lex_state = 579}, + [1261] = {.lex_state = 579}, + [1262] = {.lex_state = 579}, + [1263] = {.lex_state = 579}, + [1264] = {.lex_state = 623, .external_lex_state = 2}, + [1265] = {.lex_state = 579}, + [1266] = {.lex_state = 579}, + [1267] = {.lex_state = 579}, + [1268] = {.lex_state = 579}, + [1269] = {.lex_state = 579}, + [1270] = {.lex_state = 579}, + [1271] = {.lex_state = 579}, + [1272] = {.lex_state = 579}, + [1273] = {.lex_state = 623, .external_lex_state = 2}, + [1274] = {.lex_state = 579}, + [1275] = {.lex_state = 579}, + [1276] = {.lex_state = 579}, + [1277] = {.lex_state = 579}, + [1278] = {.lex_state = 579}, + [1279] = {.lex_state = 579}, + [1280] = {.lex_state = 579}, + [1281] = {.lex_state = 579}, + [1282] = {.lex_state = 579}, + [1283] = {.lex_state = 579}, + [1284] = {.lex_state = 579}, + [1285] = {.lex_state = 579}, + [1286] = {.lex_state = 579}, + [1287] = {.lex_state = 579}, + [1288] = {.lex_state = 579}, + [1289] = {.lex_state = 579}, + [1290] = {.lex_state = 579}, + [1291] = {.lex_state = 579}, + [1292] = {.lex_state = 579}, + [1293] = {.lex_state = 579}, + [1294] = {.lex_state = 579}, + [1295] = {.lex_state = 579}, + [1296] = {.lex_state = 579}, + [1297] = {.lex_state = 579}, + [1298] = {.lex_state = 579}, + [1299] = {.lex_state = 579}, + [1300] = {.lex_state = 54, .external_lex_state = 2}, + [1301] = {.lex_state = 579}, + [1302] = {.lex_state = 579}, + [1303] = {.lex_state = 579}, + [1304] = {.lex_state = 579}, + [1305] = {.lex_state = 579}, + [1306] = {.lex_state = 579}, + [1307] = {.lex_state = 579}, + [1308] = {.lex_state = 579}, + [1309] = {.lex_state = 579}, + [1310] = {.lex_state = 579}, + [1311] = {.lex_state = 579}, + [1312] = {.lex_state = 579}, + [1313] = {.lex_state = 579}, + [1314] = {.lex_state = 579}, + [1315] = {.lex_state = 579}, + [1316] = {.lex_state = 579}, + [1317] = {.lex_state = 54, .external_lex_state = 2}, + [1318] = {.lex_state = 579}, + [1319] = {.lex_state = 579}, + [1320] = {.lex_state = 579}, + [1321] = {.lex_state = 579}, + [1322] = {.lex_state = 579}, + [1323] = {.lex_state = 579}, + [1324] = {.lex_state = 579}, + [1325] = {.lex_state = 579}, + [1326] = {.lex_state = 579}, + [1327] = {.lex_state = 579}, + [1328] = {.lex_state = 579}, + [1329] = {.lex_state = 579}, + [1330] = {.lex_state = 579}, + [1331] = {.lex_state = 579}, + [1332] = {.lex_state = 54, .external_lex_state = 2}, + [1333] = {.lex_state = 54, .external_lex_state = 2}, + [1334] = {.lex_state = 579}, + [1335] = {.lex_state = 579}, + [1336] = {.lex_state = 579}, + [1337] = {.lex_state = 579}, + [1338] = {.lex_state = 579}, + [1339] = {.lex_state = 579}, + [1340] = {.lex_state = 579}, + [1341] = {.lex_state = 579}, + [1342] = {.lex_state = 579}, + [1343] = {.lex_state = 623, .external_lex_state = 2}, + [1344] = {.lex_state = 579}, + [1345] = {.lex_state = 179, .external_lex_state = 2}, + [1346] = {.lex_state = 37, .external_lex_state = 2}, + [1347] = {.lex_state = 40, .external_lex_state = 2}, + [1348] = {.lex_state = 54, .external_lex_state = 2}, + [1349] = {.lex_state = 54, .external_lex_state = 2}, + [1350] = {.lex_state = 40, .external_lex_state = 2}, + [1351] = {.lex_state = 40, .external_lex_state = 2}, + [1352] = {.lex_state = 54, .external_lex_state = 2}, + [1353] = {.lex_state = 623, .external_lex_state = 2}, + [1354] = {.lex_state = 180, .external_lex_state = 2}, + [1355] = {.lex_state = 180, .external_lex_state = 2}, + [1356] = {.lex_state = 40, .external_lex_state = 2}, + [1357] = {.lex_state = 623, .external_lex_state = 2}, + [1358] = {.lex_state = 632, .external_lex_state = 2}, + [1359] = {.lex_state = 623, .external_lex_state = 2}, + [1360] = {.lex_state = 157, .external_lex_state = 2}, + [1361] = {.lex_state = 623, .external_lex_state = 2}, + [1362] = {.lex_state = 623, .external_lex_state = 2}, + [1363] = {.lex_state = 623, .external_lex_state = 2}, + [1364] = {.lex_state = 37, .external_lex_state = 2}, + [1365] = {.lex_state = 623, .external_lex_state = 2}, + [1366] = {.lex_state = 40, .external_lex_state = 2}, + [1367] = {.lex_state = 157, .external_lex_state = 2}, + [1368] = {.lex_state = 37, .external_lex_state = 2}, + [1369] = {.lex_state = 37, .external_lex_state = 2}, + [1370] = {.lex_state = 157, .external_lex_state = 2}, + [1371] = {.lex_state = 157, .external_lex_state = 2}, + [1372] = {.lex_state = 623, .external_lex_state = 2}, + [1373] = {.lex_state = 157, .external_lex_state = 2}, + [1374] = {.lex_state = 623, .external_lex_state = 2}, + [1375] = {.lex_state = 40, .external_lex_state = 2}, + [1376] = {.lex_state = 623, .external_lex_state = 2}, + [1377] = {.lex_state = 623, .external_lex_state = 2}, + [1378] = {.lex_state = 623, .external_lex_state = 2}, + [1379] = {.lex_state = 623, .external_lex_state = 2}, + [1380] = {.lex_state = 623, .external_lex_state = 2}, + [1381] = {.lex_state = 623, .external_lex_state = 2}, + [1382] = {.lex_state = 583}, + [1383] = {.lex_state = 623, .external_lex_state = 2}, + [1384] = {.lex_state = 623, .external_lex_state = 2}, + [1385] = {.lex_state = 623, .external_lex_state = 2}, + [1386] = {.lex_state = 583}, + [1387] = {.lex_state = 43, .external_lex_state = 2}, + [1388] = {.lex_state = 43, .external_lex_state = 2}, + [1389] = {.lex_state = 623, .external_lex_state = 2}, + [1390] = {.lex_state = 585}, + [1391] = {.lex_state = 585}, + [1392] = {.lex_state = 585}, + [1393] = {.lex_state = 42, .external_lex_state = 2}, + [1394] = {.lex_state = 623, .external_lex_state = 2}, + [1395] = {.lex_state = 38, .external_lex_state = 2}, + [1396] = {.lex_state = 585}, + [1397] = {.lex_state = 587}, + [1398] = {.lex_state = 591}, + [1399] = {.lex_state = 42, .external_lex_state = 2}, + [1400] = {.lex_state = 623, .external_lex_state = 2}, + [1401] = {.lex_state = 587}, + [1402] = {.lex_state = 595}, + [1403] = {.lex_state = 43, .external_lex_state = 2}, + [1404] = {.lex_state = 42, .external_lex_state = 2}, + [1405] = {.lex_state = 42, .external_lex_state = 2}, + [1406] = {.lex_state = 42, .external_lex_state = 2}, + [1407] = {.lex_state = 593}, + [1408] = {.lex_state = 591}, + [1409] = {.lex_state = 593}, + [1410] = {.lex_state = 595}, + [1411] = {.lex_state = 597}, + [1412] = {.lex_state = 595}, + [1413] = {.lex_state = 595}, + [1414] = {.lex_state = 43, .external_lex_state = 2}, + [1415] = {.lex_state = 593}, + [1416] = {.lex_state = 155, .external_lex_state = 2}, + [1417] = {.lex_state = 42, .external_lex_state = 2}, + [1418] = {.lex_state = 38, .external_lex_state = 2}, + [1419] = {.lex_state = 38, .external_lex_state = 2}, + [1420] = {.lex_state = 595}, + [1421] = {.lex_state = 589}, + [1422] = {.lex_state = 155, .external_lex_state = 2}, + [1423] = {.lex_state = 38, .external_lex_state = 2}, + [1424] = {.lex_state = 593}, + [1425] = {.lex_state = 599}, + [1426] = {.lex_state = 595}, + [1427] = {.lex_state = 595}, + [1428] = {.lex_state = 597}, + [1429] = {.lex_state = 595}, + [1430] = {.lex_state = 589}, + [1431] = {.lex_state = 599}, + [1432] = {.lex_state = 601}, + [1433] = {.lex_state = 599}, + [1434] = {.lex_state = 601}, + [1435] = {.lex_state = 601}, + [1436] = {.lex_state = 601}, + [1437] = {.lex_state = 599}, + [1438] = {.lex_state = 601}, + [1439] = {.lex_state = 601}, + [1440] = {.lex_state = 601}, + [1441] = {.lex_state = 603}, + [1442] = {.lex_state = 628, .external_lex_state = 2}, + [1443] = {.lex_state = 601}, + [1444] = {.lex_state = 628, .external_lex_state = 2}, + [1445] = {.lex_state = 601}, + [1446] = {.lex_state = 605}, + [1447] = {.lex_state = 579}, + [1448] = {.lex_state = 601}, + [1449] = {.lex_state = 46, .external_lex_state = 2}, + [1450] = {.lex_state = 628, .external_lex_state = 2}, + [1451] = {.lex_state = 46, .external_lex_state = 2}, + [1452] = {.lex_state = 603}, + [1453] = {.lex_state = 605}, + [1454] = {.lex_state = 628, .external_lex_state = 2}, + [1455] = {.lex_state = 579}, + [1456] = {.lex_state = 607}, + [1457] = {.lex_state = 607}, + [1458] = {.lex_state = 46, .external_lex_state = 2}, + [1459] = {.lex_state = 609}, + [1460] = {.lex_state = 158, .external_lex_state = 2}, + [1461] = {.lex_state = 609}, + [1462] = {.lex_state = 158, .external_lex_state = 2}, + [1463] = {.lex_state = 158, .external_lex_state = 2}, + [1464] = {.lex_state = 609}, + [1465] = {.lex_state = 609}, + [1466] = {.lex_state = 609}, + [1467] = {.lex_state = 609}, + [1468] = {.lex_state = 609}, + [1469] = {.lex_state = 609}, + [1470] = {.lex_state = 609}, + [1471] = {.lex_state = 609}, + [1472] = {.lex_state = 158, .external_lex_state = 2}, + [1473] = {.lex_state = 158, .external_lex_state = 2}, + [1474] = {.lex_state = 158, .external_lex_state = 2}, + [1475] = {.lex_state = 158, .external_lex_state = 2}, + [1476] = {.lex_state = 158, .external_lex_state = 2}, + [1477] = {.lex_state = 158, .external_lex_state = 2}, + [1478] = {.lex_state = 158, .external_lex_state = 2}, + [1479] = {.lex_state = 158, .external_lex_state = 2}, + [1480] = {.lex_state = 158, .external_lex_state = 2}, + [1481] = {.lex_state = 158, .external_lex_state = 2}, + [1482] = {.lex_state = 607}, + [1483] = {.lex_state = 607}, + [1484] = {.lex_state = 609}, + [1485] = {.lex_state = 609}, + [1486] = {.lex_state = 609}, + [1487] = {.lex_state = 158, .external_lex_state = 2}, + [1488] = {.lex_state = 609}, + [1489] = {.lex_state = 611}, + [1490] = {.lex_state = 609}, + [1491] = {.lex_state = 609}, + [1492] = {.lex_state = 158, .external_lex_state = 2}, + [1493] = {.lex_state = 611}, + [1494] = {.lex_state = 611}, + [1495] = {.lex_state = 609}, + [1496] = {.lex_state = 609}, + [1497] = {.lex_state = 609}, + [1498] = {.lex_state = 609}, + [1499] = {.lex_state = 609}, + [1500] = {.lex_state = 49, .external_lex_state = 2}, + [1501] = {.lex_state = 609}, + [1502] = {.lex_state = 609}, + [1503] = {.lex_state = 609}, + [1504] = {.lex_state = 609}, + [1505] = {.lex_state = 609}, + [1506] = {.lex_state = 609}, + [1507] = {.lex_state = 158, .external_lex_state = 2}, + [1508] = {.lex_state = 609}, + [1509] = {.lex_state = 579}, + [1510] = {.lex_state = 579}, + [1511] = {.lex_state = 579}, + [1512] = {.lex_state = 579}, + [1513] = {.lex_state = 579}, + [1514] = {.lex_state = 579}, + [1515] = {.lex_state = 579}, + [1516] = {.lex_state = 579}, + [1517] = {.lex_state = 579}, + [1518] = {.lex_state = 579}, + [1519] = {.lex_state = 579}, + [1520] = {.lex_state = 579}, + [1521] = {.lex_state = 579}, + [1522] = {.lex_state = 579}, + [1523] = {.lex_state = 579}, + [1524] = {.lex_state = 95}, + [1525] = {.lex_state = 579}, + [1526] = {.lex_state = 95}, + [1527] = {.lex_state = 579}, + [1528] = {.lex_state = 95}, + [1529] = {.lex_state = 579}, + [1530] = {.lex_state = 579}, + [1531] = {.lex_state = 579}, + [1532] = {.lex_state = 95}, + [1533] = {.lex_state = 579}, + [1534] = {.lex_state = 95}, + [1535] = {.lex_state = 579}, + [1536] = {.lex_state = 95}, + [1537] = {.lex_state = 579}, + [1538] = {.lex_state = 579}, + [1539] = {.lex_state = 579}, + [1540] = {.lex_state = 95}, + [1541] = {.lex_state = 95}, + [1542] = {.lex_state = 579}, + [1543] = {.lex_state = 95}, + [1544] = {.lex_state = 579}, + [1545] = {.lex_state = 579}, + [1546] = {.lex_state = 579}, + [1547] = {.lex_state = 579}, + [1548] = {.lex_state = 579}, + [1549] = {.lex_state = 579}, + [1550] = {.lex_state = 579}, + [1551] = {.lex_state = 579}, + [1552] = {.lex_state = 579}, + [1553] = {.lex_state = 579}, + [1554] = {.lex_state = 579}, + [1555] = {.lex_state = 579}, + [1556] = {.lex_state = 579}, + [1557] = {.lex_state = 579}, + [1558] = {.lex_state = 579}, + [1559] = {.lex_state = 579}, + [1560] = {.lex_state = 579}, + [1561] = {.lex_state = 579}, + [1562] = {.lex_state = 579}, + [1563] = {.lex_state = 579}, + [1564] = {.lex_state = 579}, + [1565] = {.lex_state = 579}, + [1566] = {.lex_state = 579}, + [1567] = {.lex_state = 579}, + [1568] = {.lex_state = 579}, + [1569] = {.lex_state = 579}, + [1570] = {.lex_state = 579}, + [1571] = {.lex_state = 579}, + [1572] = {.lex_state = 579}, + [1573] = {.lex_state = 579}, + [1574] = {.lex_state = 579}, + [1575] = {.lex_state = 579}, + [1576] = {.lex_state = 579}, + [1577] = {.lex_state = 579}, + [1578] = {.lex_state = 579}, + [1579] = {.lex_state = 579}, + [1580] = {.lex_state = 95}, + [1581] = {.lex_state = 95}, + [1582] = {.lex_state = 14}, + [1583] = {.lex_state = 49, .external_lex_state = 2}, + [1584] = {.lex_state = 579}, + [1585] = {.lex_state = 579}, + [1586] = {.lex_state = 579}, + [1587] = {.lex_state = 579}, + [1588] = {.lex_state = 579}, + [1589] = {.lex_state = 579}, + [1590] = {.lex_state = 579}, + [1591] = {.lex_state = 579}, + [1592] = {.lex_state = 579}, + [1593] = {.lex_state = 579}, + [1594] = {.lex_state = 579}, + [1595] = {.lex_state = 579}, + [1596] = {.lex_state = 579}, + [1597] = {.lex_state = 95}, + [1598] = {.lex_state = 579}, + [1599] = {.lex_state = 95}, + [1600] = {.lex_state = 579}, + [1601] = {.lex_state = 95}, + [1602] = {.lex_state = 95}, + [1603] = {.lex_state = 95}, + [1604] = {.lex_state = 95}, + [1605] = {.lex_state = 95}, + [1606] = {.lex_state = 95}, + [1607] = {.lex_state = 95}, + [1608] = {.lex_state = 95}, + [1609] = {.lex_state = 95}, + [1610] = {.lex_state = 95}, + [1611] = {.lex_state = 95}, + [1612] = {.lex_state = 46, .external_lex_state = 2}, + [1613] = {.lex_state = 579}, + [1614] = {.lex_state = 579}, + [1615] = {.lex_state = 46, .external_lex_state = 2}, + [1616] = {.lex_state = 95}, + [1617] = {.lex_state = 579}, + [1618] = {.lex_state = 579}, + [1619] = {.lex_state = 579}, + [1620] = {.lex_state = 579}, + [1621] = {.lex_state = 579}, + [1622] = {.lex_state = 579}, + [1623] = {.lex_state = 579}, + [1624] = {.lex_state = 579}, + [1625] = {.lex_state = 579}, + [1626] = {.lex_state = 579}, + [1627] = {.lex_state = 579}, + [1628] = {.lex_state = 579}, + [1629] = {.lex_state = 579}, + [1630] = {.lex_state = 579}, + [1631] = {.lex_state = 611}, + [1632] = {.lex_state = 95}, + [1633] = {.lex_state = 95}, + [1634] = {.lex_state = 95}, + [1635] = {.lex_state = 46, .external_lex_state = 2}, + [1636] = {.lex_state = 95}, + [1637] = {.lex_state = 579}, + [1638] = {.lex_state = 579}, + [1639] = {.lex_state = 579}, + [1640] = {.lex_state = 579}, + [1641] = {.lex_state = 579}, + [1642] = {.lex_state = 95}, + [1643] = {.lex_state = 95}, + [1644] = {.lex_state = 95}, + [1645] = {.lex_state = 95}, + [1646] = {.lex_state = 95}, + [1647] = {.lex_state = 95}, + [1648] = {.lex_state = 46, .external_lex_state = 2}, + [1649] = {.lex_state = 95}, + [1650] = {.lex_state = 579}, + [1651] = {.lex_state = 579}, + [1652] = {.lex_state = 579}, + [1653] = {.lex_state = 579}, + [1654] = {.lex_state = 184, .external_lex_state = 2}, + [1655] = {.lex_state = 611}, + [1656] = {.lex_state = 611}, + [1657] = {.lex_state = 95}, + [1658] = {.lex_state = 95}, + [1659] = {.lex_state = 95}, + [1660] = {.lex_state = 579}, + [1661] = {.lex_state = 579}, + [1662] = {.lex_state = 579}, + [1663] = {.lex_state = 95}, + [1664] = {.lex_state = 579}, + [1665] = {.lex_state = 95}, + [1666] = {.lex_state = 95}, + [1667] = {.lex_state = 579}, + [1668] = {.lex_state = 95}, + [1669] = {.lex_state = 95}, + [1670] = {.lex_state = 95}, + [1671] = {.lex_state = 46, .external_lex_state = 2}, + [1672] = {.lex_state = 579}, + [1673] = {.lex_state = 95}, + [1674] = {.lex_state = 95}, + [1675] = {.lex_state = 579}, + [1676] = {.lex_state = 95}, + [1677] = {.lex_state = 579}, + [1678] = {.lex_state = 138}, + [1679] = {.lex_state = 15}, + [1680] = {.lex_state = 579}, + [1681] = {.lex_state = 95}, + [1682] = {.lex_state = 579}, + [1683] = {.lex_state = 579}, + [1684] = {.lex_state = 579}, + [1685] = {.lex_state = 15}, + [1686] = {.lex_state = 579}, + [1687] = {.lex_state = 184, .external_lex_state = 2}, + [1688] = {.lex_state = 579}, + [1689] = {.lex_state = 579}, + [1690] = {.lex_state = 184, .external_lex_state = 2}, + [1691] = {.lex_state = 579}, + [1692] = {.lex_state = 579}, + [1693] = {.lex_state = 579}, + [1694] = {.lex_state = 579}, + [1695] = {.lex_state = 579}, + [1696] = {.lex_state = 139}, + [1697] = {.lex_state = 46, .external_lex_state = 2}, + [1698] = {.lex_state = 139}, + [1699] = {.lex_state = 16}, + [1700] = {.lex_state = 46, .external_lex_state = 2}, + [1701] = {.lex_state = 138}, + [1702] = {.lex_state = 46, .external_lex_state = 2}, + [1703] = {.lex_state = 46, .external_lex_state = 2}, + [1704] = {.lex_state = 46, .external_lex_state = 2}, + [1705] = {.lex_state = 46, .external_lex_state = 2}, + [1706] = {.lex_state = 46, .external_lex_state = 2}, + [1707] = {.lex_state = 46, .external_lex_state = 2}, + [1708] = {.lex_state = 46, .external_lex_state = 2}, + [1709] = {.lex_state = 46, .external_lex_state = 2}, + [1710] = {.lex_state = 138}, + [1711] = {.lex_state = 46, .external_lex_state = 2}, + [1712] = {.lex_state = 18}, + [1713] = {.lex_state = 631, .external_lex_state = 2}, + [1714] = {.lex_state = 20}, + [1715] = {.lex_state = 140}, + [1716] = {.lex_state = 95}, + [1717] = {.lex_state = 138}, + [1718] = {.lex_state = 138}, + [1719] = {.lex_state = 138}, + [1720] = {.lex_state = 631, .external_lex_state = 2}, + [1721] = {.lex_state = 95}, + [1722] = {.lex_state = 19}, + [1723] = {.lex_state = 95}, + [1724] = {.lex_state = 19}, + [1725] = {.lex_state = 95}, + [1726] = {.lex_state = 573, .external_lex_state = 2}, + [1727] = {.lex_state = 183, .external_lex_state = 2}, + [1728] = {.lex_state = 183, .external_lex_state = 2}, + [1729] = {.lex_state = 142}, + [1730] = {.lex_state = 138}, + [1731] = {.lex_state = 95}, + [1732] = {.lex_state = 138}, + [1733] = {.lex_state = 631, .external_lex_state = 2}, + [1734] = {.lex_state = 138}, + [1735] = {.lex_state = 183, .external_lex_state = 2}, + [1736] = {.lex_state = 95}, + [1737] = {.lex_state = 183, .external_lex_state = 2}, + [1738] = {.lex_state = 573, .external_lex_state = 2}, + [1739] = {.lex_state = 144}, + [1740] = {.lex_state = 631, .external_lex_state = 2}, + [1741] = {.lex_state = 631, .external_lex_state = 2}, + [1742] = {.lex_state = 173, .external_lex_state = 2}, + [1743] = {.lex_state = 17}, + [1744] = {.lex_state = 176, .external_lex_state = 2}, + [1745] = {.lex_state = 573, .external_lex_state = 2}, + [1746] = {.lex_state = 573, .external_lex_state = 2}, + [1747] = {.lex_state = 573, .external_lex_state = 2}, + [1748] = {.lex_state = 573, .external_lex_state = 2}, + [1749] = {.lex_state = 573, .external_lex_state = 2}, + [1750] = {.lex_state = 573, .external_lex_state = 2}, + [1751] = {.lex_state = 143}, + [1752] = {.lex_state = 631, .external_lex_state = 2}, + [1753] = {.lex_state = 143}, + [1754] = {.lex_state = 21}, + [1755] = {.lex_state = 183, .external_lex_state = 2}, + [1756] = {.lex_state = 183, .external_lex_state = 2}, + [1757] = {.lex_state = 183, .external_lex_state = 2}, + [1758] = {.lex_state = 183, .external_lex_state = 2}, + [1759] = {.lex_state = 183, .external_lex_state = 2}, + [1760] = {.lex_state = 183, .external_lex_state = 2}, + [1761] = {.lex_state = 631, .external_lex_state = 2}, + [1762] = {.lex_state = 183, .external_lex_state = 2}, + [1763] = {.lex_state = 95}, + [1764] = {.lex_state = 95}, + [1765] = {.lex_state = 631, .external_lex_state = 2}, + [1766] = {.lex_state = 95}, + [1767] = {.lex_state = 95}, + [1768] = {.lex_state = 46, .external_lex_state = 2}, + [1769] = {.lex_state = 46, .external_lex_state = 2}, + [1770] = {.lex_state = 20}, + [1771] = {.lex_state = 95}, + [1772] = {.lex_state = 20}, + [1773] = {.lex_state = 46, .external_lex_state = 2}, + [1774] = {.lex_state = 20}, + [1775] = {.lex_state = 183, .external_lex_state = 2}, + [1776] = {.lex_state = 183, .external_lex_state = 2}, + [1777] = {.lex_state = 46, .external_lex_state = 2}, + [1778] = {.lex_state = 175, .external_lex_state = 2}, + [1779] = {.lex_state = 95}, + [1780] = {.lex_state = 46, .external_lex_state = 2}, + [1781] = {.lex_state = 573, .external_lex_state = 2}, + [1782] = {.lex_state = 573, .external_lex_state = 2}, + [1783] = {.lex_state = 46, .external_lex_state = 2}, + [1784] = {.lex_state = 573, .external_lex_state = 2}, + [1785] = {.lex_state = 95}, + [1786] = {.lex_state = 631, .external_lex_state = 2}, + [1787] = {.lex_state = 573, .external_lex_state = 2}, + [1788] = {.lex_state = 46, .external_lex_state = 2}, + [1789] = {.lex_state = 46, .external_lex_state = 2}, + [1790] = {.lex_state = 574, .external_lex_state = 2}, + [1791] = {.lex_state = 573, .external_lex_state = 2}, + [1792] = {.lex_state = 95}, + [1793] = {.lex_state = 95}, + [1794] = {.lex_state = 95}, + [1795] = {.lex_state = 95}, + [1796] = {.lex_state = 95}, + [1797] = {.lex_state = 630, .external_lex_state = 2}, + [1798] = {.lex_state = 95}, + [1799] = {.lex_state = 144}, + [1800] = {.lex_state = 631, .external_lex_state = 2}, + [1801] = {.lex_state = 95}, + [1802] = {.lex_state = 95}, + [1803] = {.lex_state = 175, .external_lex_state = 2}, + [1804] = {.lex_state = 95}, + [1805] = {.lex_state = 95}, + [1806] = {.lex_state = 95}, + [1807] = {.lex_state = 95}, + [1808] = {.lex_state = 95}, + [1809] = {.lex_state = 144}, + [1810] = {.lex_state = 144}, + [1811] = {.lex_state = 22}, + [1812] = {.lex_state = 95}, + [1813] = {.lex_state = 573, .external_lex_state = 2}, + [1814] = {.lex_state = 22}, + [1815] = {.lex_state = 46, .external_lex_state = 2}, + [1816] = {.lex_state = 145}, + [1817] = {.lex_state = 46, .external_lex_state = 2}, + [1818] = {.lex_state = 46, .external_lex_state = 2}, + [1819] = {.lex_state = 46, .external_lex_state = 2}, + [1820] = {.lex_state = 141}, + [1821] = {.lex_state = 46, .external_lex_state = 2}, + [1822] = {.lex_state = 46, .external_lex_state = 2}, + [1823] = {.lex_state = 46, .external_lex_state = 2}, + [1824] = {.lex_state = 95}, + [1825] = {.lex_state = 23}, + [1826] = {.lex_state = 579}, + [1827] = {.lex_state = 23}, + [1828] = {.lex_state = 23}, + [1829] = {.lex_state = 146}, + [1830] = {.lex_state = 146}, + [1831] = {.lex_state = 23}, + [1832] = {.lex_state = 23}, + [1833] = {.lex_state = 631, .external_lex_state = 2}, + [1834] = {.lex_state = 631, .external_lex_state = 2}, + [1835] = {.lex_state = 95}, + [1836] = {.lex_state = 631, .external_lex_state = 2}, + [1837] = {.lex_state = 630, .external_lex_state = 2}, + [1838] = {.lex_state = 177, .external_lex_state = 2}, + [1839] = {.lex_state = 177, .external_lex_state = 2}, + [1840] = {.lex_state = 177, .external_lex_state = 2}, + [1841] = {.lex_state = 177, .external_lex_state = 2}, + [1842] = {.lex_state = 95}, + [1843] = {.lex_state = 95}, + [1844] = {.lex_state = 574, .external_lex_state = 2}, + [1845] = {.lex_state = 95}, + [1846] = {.lex_state = 628, .external_lex_state = 2}, + [1847] = {.lex_state = 25}, + [1848] = {.lex_state = 147}, + [1849] = {.lex_state = 1183}, + [1850] = {.lex_state = 181, .external_lex_state = 2}, + [1851] = {.lex_state = 628, .external_lex_state = 2}, + [1852] = {.lex_state = 628, .external_lex_state = 2}, + [1853] = {.lex_state = 628, .external_lex_state = 2}, + [1854] = {.lex_state = 95}, + [1855] = {.lex_state = 628, .external_lex_state = 2}, + [1856] = {.lex_state = 628, .external_lex_state = 2}, [1857] = {.lex_state = 628, .external_lex_state = 2}, - [1858] = {.lex_state = 625, .external_lex_state = 2}, - [1859] = {.lex_state = 1182}, - [1860] = {.lex_state = 625, .external_lex_state = 2}, - [1861] = {.lex_state = 625, .external_lex_state = 2}, - [1862] = {.lex_state = 625, .external_lex_state = 2}, - [1863] = {.lex_state = 89}, - [1864] = {.lex_state = 17}, - [1865] = {.lex_state = 625, .external_lex_state = 2}, - [1866] = {.lex_state = 625, .external_lex_state = 2}, + [1858] = {.lex_state = 628, .external_lex_state = 2}, + [1859] = {.lex_state = 271}, + [1860] = {.lex_state = 631, .external_lex_state = 2}, + [1861] = {.lex_state = 1185}, + [1862] = {.lex_state = 631, .external_lex_state = 2}, + [1863] = {.lex_state = 628, .external_lex_state = 2}, + [1864] = {.lex_state = 631, .external_lex_state = 2}, + [1865] = {.lex_state = 628, .external_lex_state = 2}, + [1866] = {.lex_state = 628, .external_lex_state = 2}, [1867] = {.lex_state = 628, .external_lex_state = 2}, - [1868] = {.lex_state = 628, .external_lex_state = 2}, - [1869] = {.lex_state = 625, .external_lex_state = 2}, - [1870] = {.lex_state = 625, .external_lex_state = 2}, - [1871] = {.lex_state = 625, .external_lex_state = 2}, - [1872] = {.lex_state = 625, .external_lex_state = 2}, - [1873] = {.lex_state = 625, .external_lex_state = 2}, - [1874] = {.lex_state = 625, .external_lex_state = 2}, - [1875] = {.lex_state = 578}, - [1876] = {.lex_state = 267}, - [1877] = {.lex_state = 89}, - [1878] = {.lex_state = 1180}, - [1879] = {.lex_state = 16}, - [1880] = {.lex_state = 625, .external_lex_state = 2}, - [1881] = {.lex_state = 625, .external_lex_state = 2}, - [1882] = {.lex_state = 127, .external_lex_state = 2}, - [1883] = {.lex_state = 163, .external_lex_state = 2}, - [1884] = {.lex_state = 625, .external_lex_state = 2}, - [1885] = {.lex_state = 625, .external_lex_state = 2}, - [1886] = {.lex_state = 625, .external_lex_state = 2}, - [1887] = {.lex_state = 625, .external_lex_state = 2}, - [1888] = {.lex_state = 163, .external_lex_state = 2}, - [1889] = {.lex_state = 625, .external_lex_state = 2}, - [1890] = {.lex_state = 625, .external_lex_state = 2}, - [1891] = {.lex_state = 625, .external_lex_state = 2}, - [1892] = {.lex_state = 143}, - [1893] = {.lex_state = 1181}, - [1894] = {.lex_state = 163, .external_lex_state = 2}, - [1895] = {.lex_state = 142}, - [1896] = {.lex_state = 625, .external_lex_state = 2}, - [1897] = {.lex_state = 177, .external_lex_state = 2}, - [1898] = {.lex_state = 625, .external_lex_state = 2}, - [1899] = {.lex_state = 18}, - [1900] = {.lex_state = 177, .external_lex_state = 2}, - [1901] = {.lex_state = 163, .external_lex_state = 2}, - [1902] = {.lex_state = 1185}, - [1903] = {.lex_state = 267}, - [1904] = {.lex_state = 18}, - [1905] = {.lex_state = 1183}, - [1906] = {.lex_state = 625, .external_lex_state = 2}, - [1907] = {.lex_state = 625, .external_lex_state = 2}, - [1908] = {.lex_state = 625, .external_lex_state = 2}, - [1909] = {.lex_state = 163, .external_lex_state = 2}, - [1910] = {.lex_state = 625, .external_lex_state = 2}, - [1911] = {.lex_state = 163, .external_lex_state = 2}, - [1912] = {.lex_state = 1183}, - [1913] = {.lex_state = 625, .external_lex_state = 2}, - [1914] = {.lex_state = 625, .external_lex_state = 2}, - [1915] = {.lex_state = 625, .external_lex_state = 2}, - [1916] = {.lex_state = 163, .external_lex_state = 2}, - [1917] = {.lex_state = 144}, - [1918] = {.lex_state = 19}, - [1919] = {.lex_state = 19}, - [1920] = {.lex_state = 19}, - [1921] = {.lex_state = 267}, - [1922] = {.lex_state = 267}, - [1923] = {.lex_state = 267}, - [1924] = {.lex_state = 19}, - [1925] = {.lex_state = 19}, - [1926] = {.lex_state = 267}, - [1927] = {.lex_state = 19}, - [1928] = {.lex_state = 19}, - [1929] = {.lex_state = 144}, - [1930] = {.lex_state = 267}, - [1931] = {.lex_state = 267}, - [1932] = {.lex_state = 19}, - [1933] = {.lex_state = 19}, - [1934] = {.lex_state = 89}, - [1935] = {.lex_state = 267}, - [1936] = {.lex_state = 154, .external_lex_state = 2}, - [1937] = {.lex_state = 1184}, - [1938] = {.lex_state = 267}, - [1939] = {.lex_state = 1186}, - [1940] = {.lex_state = 165, .external_lex_state = 2}, - [1941] = {.lex_state = 127, .external_lex_state = 2}, - [1942] = {.lex_state = 1186}, - [1943] = {.lex_state = 154, .external_lex_state = 2}, - [1944] = {.lex_state = 1184}, - [1945] = {.lex_state = 1184}, - [1946] = {.lex_state = 1184}, - [1947] = {.lex_state = 163, .external_lex_state = 2}, - [1948] = {.lex_state = 163, .external_lex_state = 2}, - [1949] = {.lex_state = 19}, - [1950] = {.lex_state = 19}, - [1951] = {.lex_state = 19}, - [1952] = {.lex_state = 19}, - [1953] = {.lex_state = 127, .external_lex_state = 2}, - [1954] = {.lex_state = 127, .external_lex_state = 2}, - [1955] = {.lex_state = 578}, - [1956] = {.lex_state = 578}, - [1957] = {.lex_state = 578}, - [1958] = {.lex_state = 127, .external_lex_state = 2}, - [1959] = {.lex_state = 578}, - [1960] = {.lex_state = 578}, - [1961] = {.lex_state = 578}, - [1962] = {.lex_state = 578}, - [1963] = {.lex_state = 578}, - [1964] = {.lex_state = 127, .external_lex_state = 2}, - [1965] = {.lex_state = 127, .external_lex_state = 2}, - [1966] = {.lex_state = 578}, - [1967] = {.lex_state = 145}, - [1968] = {.lex_state = 160, .external_lex_state = 2}, - [1969] = {.lex_state = 145}, - [1970] = {.lex_state = 89}, - [1971] = {.lex_state = 145}, - [1972] = {.lex_state = 145}, - [1973] = {.lex_state = 145}, - [1974] = {.lex_state = 145}, - [1975] = {.lex_state = 267}, - [1976] = {.lex_state = 1187}, - [1977] = {.lex_state = 577}, - [1978] = {.lex_state = 145}, - [1979] = {.lex_state = 267}, - [1980] = {.lex_state = 37, .external_lex_state = 2}, - [1981] = {.lex_state = 44, .external_lex_state = 2}, - [1982] = {.lex_state = 578}, - [1983] = {.lex_state = 578}, - [1984] = {.lex_state = 578}, - [1985] = {.lex_state = 578}, - [1986] = {.lex_state = 578}, - [1987] = {.lex_state = 578}, - [1988] = {.lex_state = 578}, - [1989] = {.lex_state = 578}, - [1990] = {.lex_state = 160, .external_lex_state = 2}, - [1991] = {.lex_state = 578}, - [1992] = {.lex_state = 578}, - [1993] = {.lex_state = 578}, - [1994] = {.lex_state = 578}, - [1995] = {.lex_state = 155, .external_lex_state = 2}, - [1996] = {.lex_state = 578}, - [1997] = {.lex_state = 578}, - [1998] = {.lex_state = 578}, - [1999] = {.lex_state = 578}, - [2000] = {.lex_state = 578}, - [2001] = {.lex_state = 578}, - [2002] = {.lex_state = 578}, - [2003] = {.lex_state = 578}, - [2004] = {.lex_state = 578}, - [2005] = {.lex_state = 578}, - [2006] = {.lex_state = 578}, - [2007] = {.lex_state = 578}, - [2008] = {.lex_state = 578}, - [2009] = {.lex_state = 578}, - [2010] = {.lex_state = 578}, - [2011] = {.lex_state = 578}, - [2012] = {.lex_state = 578}, - [2013] = {.lex_state = 578}, - [2014] = {.lex_state = 578}, - [2015] = {.lex_state = 578}, - [2016] = {.lex_state = 578}, - [2017] = {.lex_state = 578}, - [2018] = {.lex_state = 578}, - [2019] = {.lex_state = 578}, - [2020] = {.lex_state = 578}, - [2021] = {.lex_state = 578}, - [2022] = {.lex_state = 578}, - [2023] = {.lex_state = 578}, - [2024] = {.lex_state = 578}, - [2025] = {.lex_state = 578}, - [2026] = {.lex_state = 578}, - [2027] = {.lex_state = 578}, - [2028] = {.lex_state = 578}, - [2029] = {.lex_state = 578}, - [2030] = {.lex_state = 578}, - [2031] = {.lex_state = 578}, - [2032] = {.lex_state = 578}, - [2033] = {.lex_state = 578}, - [2034] = {.lex_state = 578}, - [2035] = {.lex_state = 578}, - [2036] = {.lex_state = 578}, - [2037] = {.lex_state = 578}, - [2038] = {.lex_state = 578}, - [2039] = {.lex_state = 578}, - [2040] = {.lex_state = 578}, - [2041] = {.lex_state = 578}, - [2042] = {.lex_state = 578}, - [2043] = {.lex_state = 578}, - [2044] = {.lex_state = 578}, - [2045] = {.lex_state = 578}, - [2046] = {.lex_state = 578}, - [2047] = {.lex_state = 578}, - [2048] = {.lex_state = 578}, - [2049] = {.lex_state = 578}, - [2050] = {.lex_state = 578}, - [2051] = {.lex_state = 578}, - [2052] = {.lex_state = 578}, - [2053] = {.lex_state = 578}, - [2054] = {.lex_state = 578}, - [2055] = {.lex_state = 578}, - [2056] = {.lex_state = 578}, - [2057] = {.lex_state = 578}, - [2058] = {.lex_state = 578}, - [2059] = {.lex_state = 578}, - [2060] = {.lex_state = 578}, - [2061] = {.lex_state = 578}, - [2062] = {.lex_state = 578}, - [2063] = {.lex_state = 578}, - [2064] = {.lex_state = 578}, - [2065] = {.lex_state = 578}, - [2066] = {.lex_state = 578}, - [2067] = {.lex_state = 578}, - [2068] = {.lex_state = 578}, - [2069] = {.lex_state = 578}, - [2070] = {.lex_state = 578}, - [2071] = {.lex_state = 578}, + [1868] = {.lex_state = 95}, + [1869] = {.lex_state = 628, .external_lex_state = 2}, + [1870] = {.lex_state = 147}, + [1871] = {.lex_state = 147}, + [1872] = {.lex_state = 628, .external_lex_state = 2}, + [1873] = {.lex_state = 147}, + [1874] = {.lex_state = 579}, + [1875] = {.lex_state = 628, .external_lex_state = 2}, + [1876] = {.lex_state = 628, .external_lex_state = 2}, + [1877] = {.lex_state = 628, .external_lex_state = 2}, + [1878] = {.lex_state = 147}, + [1879] = {.lex_state = 24}, + [1880] = {.lex_state = 169, .external_lex_state = 2}, + [1881] = {.lex_state = 628, .external_lex_state = 2}, + [1882] = {.lex_state = 271}, + [1883] = {.lex_state = 628, .external_lex_state = 2}, + [1884] = {.lex_state = 628, .external_lex_state = 2}, + [1885] = {.lex_state = 628, .external_lex_state = 2}, + [1886] = {.lex_state = 628, .external_lex_state = 2}, + [1887] = {.lex_state = 628, .external_lex_state = 2}, + [1888] = {.lex_state = 26}, + [1889] = {.lex_state = 182, .external_lex_state = 2}, + [1890] = {.lex_state = 169, .external_lex_state = 2}, + [1891] = {.lex_state = 169, .external_lex_state = 2}, + [1892] = {.lex_state = 169, .external_lex_state = 2}, + [1893] = {.lex_state = 628, .external_lex_state = 2}, + [1894] = {.lex_state = 182, .external_lex_state = 2}, + [1895] = {.lex_state = 169, .external_lex_state = 2}, + [1896] = {.lex_state = 1188}, + [1897] = {.lex_state = 133, .external_lex_state = 2}, + [1898] = {.lex_state = 169, .external_lex_state = 2}, + [1899] = {.lex_state = 628, .external_lex_state = 2}, + [1900] = {.lex_state = 628, .external_lex_state = 2}, + [1901] = {.lex_state = 628, .external_lex_state = 2}, + [1902] = {.lex_state = 1184}, + [1903] = {.lex_state = 628, .external_lex_state = 2}, + [1904] = {.lex_state = 628, .external_lex_state = 2}, + [1905] = {.lex_state = 1186}, + [1906] = {.lex_state = 169, .external_lex_state = 2}, + [1907] = {.lex_state = 148}, + [1908] = {.lex_state = 628, .external_lex_state = 2}, + [1909] = {.lex_state = 628, .external_lex_state = 2}, + [1910] = {.lex_state = 26}, + [1911] = {.lex_state = 628, .external_lex_state = 2}, + [1912] = {.lex_state = 1186}, + [1913] = {.lex_state = 628, .external_lex_state = 2}, + [1914] = {.lex_state = 149}, + [1915] = {.lex_state = 628, .external_lex_state = 2}, + [1916] = {.lex_state = 271}, + [1917] = {.lex_state = 169, .external_lex_state = 2}, + [1918] = {.lex_state = 27}, + [1919] = {.lex_state = 133, .external_lex_state = 2}, + [1920] = {.lex_state = 169, .external_lex_state = 2}, + [1921] = {.lex_state = 133, .external_lex_state = 2}, + [1922] = {.lex_state = 133, .external_lex_state = 2}, + [1923] = {.lex_state = 133, .external_lex_state = 2}, + [1924] = {.lex_state = 133, .external_lex_state = 2}, + [1925] = {.lex_state = 133, .external_lex_state = 2}, + [1926] = {.lex_state = 163, .external_lex_state = 2}, + [1927] = {.lex_state = 27}, + [1928] = {.lex_state = 271}, + [1929] = {.lex_state = 271}, + [1930] = {.lex_state = 163, .external_lex_state = 2}, + [1931] = {.lex_state = 271}, + [1932] = {.lex_state = 1189}, + [1933] = {.lex_state = 27}, + [1934] = {.lex_state = 27}, + [1935] = {.lex_state = 27}, + [1936] = {.lex_state = 27}, + [1937] = {.lex_state = 271}, + [1938] = {.lex_state = 271}, + [1939] = {.lex_state = 579}, + [1940] = {.lex_state = 1187}, + [1941] = {.lex_state = 1189}, + [1942] = {.lex_state = 27}, + [1943] = {.lex_state = 95}, + [1944] = {.lex_state = 27}, + [1945] = {.lex_state = 27}, + [1946] = {.lex_state = 27}, + [1947] = {.lex_state = 27}, + [1948] = {.lex_state = 171, .external_lex_state = 2}, + [1949] = {.lex_state = 150}, + [1950] = {.lex_state = 27}, + [1951] = {.lex_state = 150}, + [1952] = {.lex_state = 1187}, + [1953] = {.lex_state = 271}, + [1954] = {.lex_state = 1187}, + [1955] = {.lex_state = 579}, + [1956] = {.lex_state = 579}, + [1957] = {.lex_state = 579}, + [1958] = {.lex_state = 27}, + [1959] = {.lex_state = 579}, + [1960] = {.lex_state = 1187}, + [1961] = {.lex_state = 579}, + [1962] = {.lex_state = 579}, + [1963] = {.lex_state = 579}, + [1964] = {.lex_state = 579}, + [1965] = {.lex_state = 271}, + [1966] = {.lex_state = 579}, + [1967] = {.lex_state = 579}, + [1968] = {.lex_state = 579}, + [1969] = {.lex_state = 579}, + [1970] = {.lex_state = 579}, + [1971] = {.lex_state = 579}, + [1972] = {.lex_state = 579}, + [1973] = {.lex_state = 579}, + [1974] = {.lex_state = 579}, + [1975] = {.lex_state = 579}, + [1976] = {.lex_state = 579}, + [1977] = {.lex_state = 579}, + [1978] = {.lex_state = 579}, + [1979] = {.lex_state = 579}, + [1980] = {.lex_state = 579}, + [1981] = {.lex_state = 579}, + [1982] = {.lex_state = 579}, + [1983] = {.lex_state = 579}, + [1984] = {.lex_state = 579}, + [1985] = {.lex_state = 579}, + [1986] = {.lex_state = 579}, + [1987] = {.lex_state = 579}, + [1988] = {.lex_state = 579}, + [1989] = {.lex_state = 579}, + [1990] = {.lex_state = 579}, + [1991] = {.lex_state = 579}, + [1992] = {.lex_state = 579}, + [1993] = {.lex_state = 579}, + [1994] = {.lex_state = 579}, + [1995] = {.lex_state = 579}, + [1996] = {.lex_state = 151}, + [1997] = {.lex_state = 579}, + [1998] = {.lex_state = 151}, + [1999] = {.lex_state = 579}, + [2000] = {.lex_state = 1190}, + [2001] = {.lex_state = 579}, + [2002] = {.lex_state = 151}, + [2003] = {.lex_state = 151}, + [2004] = {.lex_state = 579}, + [2005] = {.lex_state = 579}, + [2006] = {.lex_state = 167, .external_lex_state = 2}, + [2007] = {.lex_state = 579}, + [2008] = {.lex_state = 167, .external_lex_state = 2}, + [2009] = {.lex_state = 579}, + [2010] = {.lex_state = 151}, + [2011] = {.lex_state = 151}, + [2012] = {.lex_state = 579}, + [2013] = {.lex_state = 579}, + [2014] = {.lex_state = 579}, + [2015] = {.lex_state = 579}, + [2016] = {.lex_state = 579}, + [2017] = {.lex_state = 579}, + [2018] = {.lex_state = 579}, + [2019] = {.lex_state = 579}, + [2020] = {.lex_state = 579}, + [2021] = {.lex_state = 579}, + [2022] = {.lex_state = 579}, + [2023] = {.lex_state = 579}, + [2024] = {.lex_state = 579}, + [2025] = {.lex_state = 579}, + [2026] = {.lex_state = 579}, + [2027] = {.lex_state = 579}, + [2028] = {.lex_state = 579}, + [2029] = {.lex_state = 579}, + [2030] = {.lex_state = 579}, + [2031] = {.lex_state = 579}, + [2032] = {.lex_state = 579}, + [2033] = {.lex_state = 579}, + [2034] = {.lex_state = 579}, + [2035] = {.lex_state = 579}, + [2036] = {.lex_state = 27}, + [2037] = {.lex_state = 579}, + [2038] = {.lex_state = 579}, + [2039] = {.lex_state = 579}, + [2040] = {.lex_state = 579}, + [2041] = {.lex_state = 579}, + [2042] = {.lex_state = 579}, + [2043] = {.lex_state = 579}, + [2044] = {.lex_state = 579}, + [2045] = {.lex_state = 579}, + [2046] = {.lex_state = 579}, + [2047] = {.lex_state = 579}, + [2048] = {.lex_state = 579}, + [2049] = {.lex_state = 579}, + [2050] = {.lex_state = 579}, + [2051] = {.lex_state = 579}, + [2052] = {.lex_state = 579}, + [2053] = {.lex_state = 579}, + [2054] = {.lex_state = 579}, + [2055] = {.lex_state = 579}, + [2056] = {.lex_state = 579}, + [2057] = {.lex_state = 579}, + [2058] = {.lex_state = 579}, + [2059] = {.lex_state = 151}, + [2060] = {.lex_state = 271}, + [2061] = {.lex_state = 1190}, + [2062] = {.lex_state = 1190}, + [2063] = {.lex_state = 151}, + [2064] = {.lex_state = 271}, + [2065] = {.lex_state = 167, .external_lex_state = 2}, + [2066] = {.lex_state = 53, .external_lex_state = 2}, + [2067] = {.lex_state = 579}, + [2068] = {.lex_state = 579}, + [2069] = {.lex_state = 579}, + [2070] = {.lex_state = 53, .external_lex_state = 2}, + [2071] = {.lex_state = 1190}, [2072] = {.lex_state = 578}, - [2073] = {.lex_state = 578}, - [2074] = {.lex_state = 578}, - [2075] = {.lex_state = 578}, - [2076] = {.lex_state = 578}, - [2077] = {.lex_state = 578}, - [2078] = {.lex_state = 578}, - [2079] = {.lex_state = 578}, - [2080] = {.lex_state = 1187}, - [2081] = {.lex_state = 37, .external_lex_state = 2}, - [2082] = {.lex_state = 578}, - [2083] = {.lex_state = 578}, - [2084] = {.lex_state = 145}, - [2085] = {.lex_state = 1187}, - [2086] = {.lex_state = 44, .external_lex_state = 2}, - [2087] = {.lex_state = 155, .external_lex_state = 2}, - [2088] = {.lex_state = 89}, - [2089] = {.lex_state = 578}, - [2090] = {.lex_state = 1187}, - [2091] = {.lex_state = 160, .external_lex_state = 2}, - [2092] = {.lex_state = 145}, - [2093] = {.lex_state = 145}, - [2094] = {.lex_state = 162, .external_lex_state = 2}, - [2095] = {.lex_state = 128, .external_lex_state = 2}, - [2096] = {.lex_state = 145}, - [2097] = {.lex_state = 145}, - [2098] = {.lex_state = 19}, - [2099] = {.lex_state = 1187}, - [2100] = {.lex_state = 145}, - [2101] = {.lex_state = 1187}, - [2102] = {.lex_state = 155, .external_lex_state = 2}, - [2103] = {.lex_state = 1187}, - [2104] = {.lex_state = 155, .external_lex_state = 2}, - [2105] = {.lex_state = 155, .external_lex_state = 2}, - [2106] = {.lex_state = 44, .external_lex_state = 2}, - [2107] = {.lex_state = 1187}, - [2108] = {.lex_state = 160, .external_lex_state = 2}, - [2109] = {.lex_state = 1187}, - [2110] = {.lex_state = 160, .external_lex_state = 2}, - [2111] = {.lex_state = 163, .external_lex_state = 2}, - [2112] = {.lex_state = 155, .external_lex_state = 2}, - [2113] = {.lex_state = 160, .external_lex_state = 2}, - [2114] = {.lex_state = 168, .external_lex_state = 2}, - [2115] = {.lex_state = 168, .external_lex_state = 2}, - [2116] = {.lex_state = 168, .external_lex_state = 2}, - [2117] = {.lex_state = 44, .external_lex_state = 2}, - [2118] = {.lex_state = 155, .external_lex_state = 2}, - [2119] = {.lex_state = 168, .external_lex_state = 2}, - [2120] = {.lex_state = 160, .external_lex_state = 2}, - [2121] = {.lex_state = 37, .external_lex_state = 2}, - [2122] = {.lex_state = 168, .external_lex_state = 2}, - [2123] = {.lex_state = 578}, - [2124] = {.lex_state = 578}, - [2125] = {.lex_state = 145}, - [2126] = {.lex_state = 168, .external_lex_state = 2}, - [2127] = {.lex_state = 163, .external_lex_state = 2}, - [2128] = {.lex_state = 578}, - [2129] = {.lex_state = 578}, - [2130] = {.lex_state = 578}, - [2131] = {.lex_state = 578}, - [2132] = {.lex_state = 168, .external_lex_state = 2}, - [2133] = {.lex_state = 163, .external_lex_state = 2}, - [2134] = {.lex_state = 89}, - [2135] = {.lex_state = 37, .external_lex_state = 2}, - [2136] = {.lex_state = 37, .external_lex_state = 2}, - [2137] = {.lex_state = 578}, - [2138] = {.lex_state = 578}, - [2139] = {.lex_state = 578}, - [2140] = {.lex_state = 578}, - [2141] = {.lex_state = 578}, - [2142] = {.lex_state = 578}, - [2143] = {.lex_state = 578}, - [2144] = {.lex_state = 578}, - [2145] = {.lex_state = 578}, - [2146] = {.lex_state = 578}, - [2147] = {.lex_state = 578}, - [2148] = {.lex_state = 37, .external_lex_state = 2}, - [2149] = {.lex_state = 1188}, - [2150] = {.lex_state = 37, .external_lex_state = 2}, - [2151] = {.lex_state = 1188}, - [2152] = {.lex_state = 37, .external_lex_state = 2}, - [2153] = {.lex_state = 44, .external_lex_state = 2}, - [2154] = {.lex_state = 37, .external_lex_state = 2}, - [2155] = {.lex_state = 37, .external_lex_state = 2}, - [2156] = {.lex_state = 37, .external_lex_state = 2}, - [2157] = {.lex_state = 49, .external_lex_state = 2}, - [2158] = {.lex_state = 37, .external_lex_state = 2}, - [2159] = {.lex_state = 49, .external_lex_state = 2}, - [2160] = {.lex_state = 37, .external_lex_state = 2}, - [2161] = {.lex_state = 1188}, - [2162] = {.lex_state = 37, .external_lex_state = 2}, - [2163] = {.lex_state = 37, .external_lex_state = 2}, - [2164] = {.lex_state = 37, .external_lex_state = 2}, - [2165] = {.lex_state = 37, .external_lex_state = 2}, - [2166] = {.lex_state = 37, .external_lex_state = 2}, - [2167] = {.lex_state = 37, .external_lex_state = 2}, - [2168] = {.lex_state = 37, .external_lex_state = 2}, - [2169] = {.lex_state = 578}, - [2170] = {.lex_state = 578}, - [2171] = {.lex_state = 37, .external_lex_state = 2}, - [2172] = {.lex_state = 578}, - [2173] = {.lex_state = 37, .external_lex_state = 2}, - [2174] = {.lex_state = 37, .external_lex_state = 2}, - [2175] = {.lex_state = 578}, - [2176] = {.lex_state = 37, .external_lex_state = 2}, - [2177] = {.lex_state = 578}, - [2178] = {.lex_state = 37, .external_lex_state = 2}, - [2179] = {.lex_state = 37, .external_lex_state = 2}, - [2180] = {.lex_state = 37, .external_lex_state = 2}, - [2181] = {.lex_state = 37, .external_lex_state = 2}, - [2182] = {.lex_state = 37, .external_lex_state = 2}, - [2183] = {.lex_state = 37, .external_lex_state = 2}, - [2184] = {.lex_state = 578}, - [2185] = {.lex_state = 578}, - [2186] = {.lex_state = 578}, - [2187] = {.lex_state = 578}, - [2188] = {.lex_state = 578}, - [2189] = {.lex_state = 578}, - [2190] = {.lex_state = 578}, - [2191] = {.lex_state = 37, .external_lex_state = 2}, - [2192] = {.lex_state = 1188}, - [2193] = {.lex_state = 37, .external_lex_state = 2}, - [2194] = {.lex_state = 37, .external_lex_state = 2}, - [2195] = {.lex_state = 1188}, - [2196] = {.lex_state = 37, .external_lex_state = 2}, - [2197] = {.lex_state = 37, .external_lex_state = 2}, - [2198] = {.lex_state = 37, .external_lex_state = 2}, - [2199] = {.lex_state = 1188}, - [2200] = {.lex_state = 1188}, - [2201] = {.lex_state = 41, .external_lex_state = 2}, - [2202] = {.lex_state = 49, .external_lex_state = 2}, - [2203] = {.lex_state = 37, .external_lex_state = 2}, - [2204] = {.lex_state = 37, .external_lex_state = 2}, - [2205] = {.lex_state = 37, .external_lex_state = 2}, - [2206] = {.lex_state = 37, .external_lex_state = 2}, - [2207] = {.lex_state = 37, .external_lex_state = 2}, - [2208] = {.lex_state = 37, .external_lex_state = 2}, - [2209] = {.lex_state = 37, .external_lex_state = 2}, - [2210] = {.lex_state = 37, .external_lex_state = 2}, - [2211] = {.lex_state = 37, .external_lex_state = 2}, - [2212] = {.lex_state = 578}, - [2213] = {.lex_state = 578}, - [2214] = {.lex_state = 578}, - [2215] = {.lex_state = 578}, - [2216] = {.lex_state = 578}, - [2217] = {.lex_state = 577}, - [2218] = {.lex_state = 578}, - [2219] = {.lex_state = 41, .external_lex_state = 2}, - [2220] = {.lex_state = 578}, - [2221] = {.lex_state = 577}, - [2222] = {.lex_state = 157, .external_lex_state = 2}, - [2223] = {.lex_state = 157, .external_lex_state = 2}, - [2224] = {.lex_state = 49, .external_lex_state = 2}, - [2225] = {.lex_state = 157, .external_lex_state = 2}, - [2226] = {.lex_state = 45, .external_lex_state = 2}, - [2227] = {.lex_state = 157, .external_lex_state = 2}, - [2228] = {.lex_state = 575}, - [2229] = {.lex_state = 575}, - [2230] = {.lex_state = 575}, - [2231] = {.lex_state = 159, .external_lex_state = 2}, - [2232] = {.lex_state = 159, .external_lex_state = 2}, - [2233] = {.lex_state = 575}, - [2234] = {.lex_state = 159, .external_lex_state = 2}, - [2235] = {.lex_state = 159, .external_lex_state = 2}, - [2236] = {.lex_state = 159, .external_lex_state = 2}, - [2237] = {.lex_state = 47, .external_lex_state = 2}, - [2238] = {.lex_state = 159, .external_lex_state = 2}, - [2239] = {.lex_state = 157, .external_lex_state = 2}, - [2240] = {.lex_state = 157, .external_lex_state = 2}, - [2241] = {.lex_state = 46, .external_lex_state = 2}, - [2242] = {.lex_state = 575}, - [2243] = {.lex_state = 575}, - [2244] = {.lex_state = 45, .external_lex_state = 2}, - [2245] = {.lex_state = 159, .external_lex_state = 2}, - [2246] = {.lex_state = 49, .external_lex_state = 2}, - [2247] = {.lex_state = 47, .external_lex_state = 2}, - [2248] = {.lex_state = 159, .external_lex_state = 2}, - [2249] = {.lex_state = 49, .external_lex_state = 2}, - [2250] = {.lex_state = 49, .external_lex_state = 2}, - [2251] = {.lex_state = 46, .external_lex_state = 2}, - [2252] = {.lex_state = 159, .external_lex_state = 2}, - [2253] = {.lex_state = 47, .external_lex_state = 2}, - [2254] = {.lex_state = 577}, - [2255] = {.lex_state = 577}, - [2256] = {.lex_state = 577}, - [2257] = {.lex_state = 48, .external_lex_state = 2}, - [2258] = {.lex_state = 91}, - [2259] = {.lex_state = 48, .external_lex_state = 2}, - [2260] = {.lex_state = 577}, - [2261] = {.lex_state = 577}, - [2262] = {.lex_state = 577}, - [2263] = {.lex_state = 5}, - [2264] = {.lex_state = 48, .external_lex_state = 2}, - [2265] = {.lex_state = 48, .external_lex_state = 2}, - [2266] = {.lex_state = 48, .external_lex_state = 2}, - [2267] = {.lex_state = 48, .external_lex_state = 2}, - [2268] = {.lex_state = 48, .external_lex_state = 2}, - [2269] = {.lex_state = 48, .external_lex_state = 2}, - [2270] = {.lex_state = 48, .external_lex_state = 2}, - [2271] = {.lex_state = 48, .external_lex_state = 2}, - [2272] = {.lex_state = 48, .external_lex_state = 2}, - [2273] = {.lex_state = 578}, - [2274] = {.lex_state = 48, .external_lex_state = 2}, - [2275] = {.lex_state = 48, .external_lex_state = 2}, - [2276] = {.lex_state = 48, .external_lex_state = 2}, - [2277] = {.lex_state = 48, .external_lex_state = 2}, - [2278] = {.lex_state = 48, .external_lex_state = 2}, - [2279] = {.lex_state = 48, .external_lex_state = 2}, - [2280] = {.lex_state = 48, .external_lex_state = 2}, - [2281] = {.lex_state = 48, .external_lex_state = 2}, - [2282] = {.lex_state = 48, .external_lex_state = 2}, - [2283] = {.lex_state = 631}, - [2284] = {.lex_state = 48, .external_lex_state = 2}, - [2285] = {.lex_state = 48, .external_lex_state = 2}, - [2286] = {.lex_state = 48, .external_lex_state = 2}, - [2287] = {.lex_state = 48, .external_lex_state = 2}, - [2288] = {.lex_state = 48, .external_lex_state = 2}, - [2289] = {.lex_state = 48, .external_lex_state = 2}, - [2290] = {.lex_state = 578}, - [2291] = {.lex_state = 578}, - [2292] = {.lex_state = 578}, - [2293] = {.lex_state = 578}, - [2294] = {.lex_state = 48, .external_lex_state = 2}, - [2295] = {.lex_state = 48, .external_lex_state = 2}, - [2296] = {.lex_state = 5}, - [2297] = {.lex_state = 581}, - [2298] = {.lex_state = 631}, - [2299] = {.lex_state = 632}, - [2300] = {.lex_state = 632}, - [2301] = {.lex_state = 632}, - [2302] = {.lex_state = 48, .external_lex_state = 2}, - [2303] = {.lex_state = 48, .external_lex_state = 2}, - [2304] = {.lex_state = 632}, - [2305] = {.lex_state = 48, .external_lex_state = 2}, - [2306] = {.lex_state = 581}, - [2307] = {.lex_state = 581}, - [2308] = {.lex_state = 581}, - [2309] = {.lex_state = 581}, - [2310] = {.lex_state = 48, .external_lex_state = 2}, - [2311] = {.lex_state = 48, .external_lex_state = 2}, - [2312] = {.lex_state = 48, .external_lex_state = 2}, - [2313] = {.lex_state = 630}, - [2314] = {.lex_state = 581}, - [2315] = {.lex_state = 48, .external_lex_state = 2}, - [2316] = {.lex_state = 48, .external_lex_state = 2}, - [2317] = {.lex_state = 48, .external_lex_state = 2}, - [2318] = {.lex_state = 48, .external_lex_state = 2}, - [2319] = {.lex_state = 48, .external_lex_state = 2}, - [2320] = {.lex_state = 48, .external_lex_state = 2}, - [2321] = {.lex_state = 635}, - [2322] = {.lex_state = 639}, - [2323] = {.lex_state = 581}, - [2324] = {.lex_state = 641}, - [2325] = {.lex_state = 630}, - [2326] = {.lex_state = 630}, - [2327] = {.lex_state = 639}, - [2328] = {.lex_state = 635}, - [2329] = {.lex_state = 633}, - [2330] = {.lex_state = 633}, - [2331] = {.lex_state = 643}, - [2332] = {.lex_state = 581}, - [2333] = {.lex_state = 581}, - [2334] = {.lex_state = 581}, - [2335] = {.lex_state = 641}, - [2336] = {.lex_state = 643}, - [2337] = {.lex_state = 645}, - [2338] = {.lex_state = 643}, - [2339] = {.lex_state = 643}, - [2340] = {.lex_state = 630}, - [2341] = {.lex_state = 630}, - [2342] = {.lex_state = 643}, - [2343] = {.lex_state = 630}, - [2344] = {.lex_state = 630}, - [2345] = {.lex_state = 630}, - [2346] = {.lex_state = 633}, - [2347] = {.lex_state = 641}, - [2348] = {.lex_state = 637}, - [2349] = {.lex_state = 578}, - [2350] = {.lex_state = 640}, - [2351] = {.lex_state = 578}, - [2352] = {.lex_state = 636}, - [2353] = {.lex_state = 633}, - [2354] = {.lex_state = 641}, - [2355] = {.lex_state = 643}, - [2356] = {.lex_state = 630}, - [2357] = {.lex_state = 636}, - [2358] = {.lex_state = 630}, - [2359] = {.lex_state = 575}, - [2360] = {.lex_state = 647}, - [2361] = {.lex_state = 172, .external_lex_state = 2}, - [2362] = {.lex_state = 172, .external_lex_state = 2}, - [2363] = {.lex_state = 644}, - [2364] = {.lex_state = 577}, - [2365] = {.lex_state = 645}, - [2366] = {.lex_state = 647}, - [2367] = {.lex_state = 577}, - [2368] = {.lex_state = 640}, - [2369] = {.lex_state = 637}, - [2370] = {.lex_state = 577}, - [2371] = {.lex_state = 642}, - [2372] = {.lex_state = 172, .external_lex_state = 2}, - [2373] = {.lex_state = 172, .external_lex_state = 2}, - [2374] = {.lex_state = 2}, - [2375] = {.lex_state = 643}, - [2376] = {.lex_state = 172, .external_lex_state = 2}, - [2377] = {.lex_state = 630}, - [2378] = {.lex_state = 51}, - [2379] = {.lex_state = 643}, - [2380] = {.lex_state = 642}, - [2381] = {.lex_state = 630}, - [2382] = {.lex_state = 577}, - [2383] = {.lex_state = 52}, - [2384] = {.lex_state = 646}, - [2385] = {.lex_state = 172, .external_lex_state = 2}, - [2386] = {.lex_state = 49, .external_lex_state = 2}, - [2387] = {.lex_state = 577}, - [2388] = {.lex_state = 576}, - [2389] = {.lex_state = 577}, - [2390] = {.lex_state = 575}, - [2391] = {.lex_state = 644}, - [2392] = {.lex_state = 51}, - [2393] = {.lex_state = 642}, - [2394] = {.lex_state = 576}, - [2395] = {.lex_state = 53}, - [2396] = {.lex_state = 55}, - [2397] = {.lex_state = 644}, - [2398] = {.lex_state = 649}, - [2399] = {.lex_state = 642}, - [2400] = {.lex_state = 649}, - [2401] = {.lex_state = 649}, - [2402] = {.lex_state = 172, .external_lex_state = 2}, - [2403] = {.lex_state = 575}, - [2404] = {.lex_state = 576}, - [2405] = {.lex_state = 647}, - [2406] = {.lex_state = 649}, - [2407] = {.lex_state = 577}, - [2408] = {.lex_state = 575}, - [2409] = {.lex_state = 649}, - [2410] = {.lex_state = 644}, - [2411] = {.lex_state = 575}, - [2412] = {.lex_state = 576}, - [2413] = {.lex_state = 577}, - [2414] = {.lex_state = 577}, - [2415] = {.lex_state = 577}, - [2416] = {.lex_state = 577}, - [2417] = {.lex_state = 577}, - [2418] = {.lex_state = 52}, - [2419] = {.lex_state = 647}, - [2420] = {.lex_state = 575}, - [2421] = {.lex_state = 644}, - [2422] = {.lex_state = 575}, - [2423] = {.lex_state = 638}, - [2424] = {.lex_state = 649}, - [2425] = {.lex_state = 576}, - [2426] = {.lex_state = 644}, - [2427] = {.lex_state = 51}, - [2428] = {.lex_state = 51}, - [2429] = {.lex_state = 51}, - [2430] = {.lex_state = 576}, - [2431] = {.lex_state = 638}, - [2432] = {.lex_state = 576}, - [2433] = {.lex_state = 649}, - [2434] = {.lex_state = 576}, - [2435] = {.lex_state = 653}, - [2436] = {.lex_state = 649}, - [2437] = {.lex_state = 51}, - [2438] = {.lex_state = 649}, - [2439] = {.lex_state = 49, .external_lex_state = 2}, - [2440] = {.lex_state = 644}, - [2441] = {.lex_state = 576}, - [2442] = {.lex_state = 56}, - [2443] = {.lex_state = 646}, - [2444] = {.lex_state = 57}, - [2445] = {.lex_state = 2}, - [2446] = {.lex_state = 576}, - [2447] = {.lex_state = 651}, - [2448] = {.lex_state = 644}, - [2449] = {.lex_state = 648}, - [2450] = {.lex_state = 644}, - [2451] = {.lex_state = 576}, - [2452] = {.lex_state = 56}, - [2453] = {.lex_state = 649}, - [2454] = {.lex_state = 576}, - [2455] = {.lex_state = 576}, - [2456] = {.lex_state = 576}, - [2457] = {.lex_state = 576}, - [2458] = {.lex_state = 576}, - [2459] = {.lex_state = 575}, - [2460] = {.lex_state = 648}, - [2461] = {.lex_state = 2}, + [2073] = {.lex_state = 53, .external_lex_state = 2}, + [2074] = {.lex_state = 46, .external_lex_state = 2}, + [2075] = {.lex_state = 46, .external_lex_state = 2}, + [2076] = {.lex_state = 579}, + [2077] = {.lex_state = 579}, + [2078] = {.lex_state = 164, .external_lex_state = 2}, + [2079] = {.lex_state = 579}, + [2080] = {.lex_state = 579}, + [2081] = {.lex_state = 151}, + [2082] = {.lex_state = 167, .external_lex_state = 2}, + [2083] = {.lex_state = 579}, + [2084] = {.lex_state = 151}, + [2085] = {.lex_state = 151}, + [2086] = {.lex_state = 95}, + [2087] = {.lex_state = 1190}, + [2088] = {.lex_state = 579}, + [2089] = {.lex_state = 579}, + [2090] = {.lex_state = 1190}, + [2091] = {.lex_state = 1190}, + [2092] = {.lex_state = 164, .external_lex_state = 2}, + [2093] = {.lex_state = 167, .external_lex_state = 2}, + [2094] = {.lex_state = 1190}, + [2095] = {.lex_state = 1190}, + [2096] = {.lex_state = 164, .external_lex_state = 2}, + [2097] = {.lex_state = 164, .external_lex_state = 2}, + [2098] = {.lex_state = 579}, + [2099] = {.lex_state = 164, .external_lex_state = 2}, + [2100] = {.lex_state = 579}, + [2101] = {.lex_state = 579}, + [2102] = {.lex_state = 579}, + [2103] = {.lex_state = 579}, + [2104] = {.lex_state = 168, .external_lex_state = 2}, + [2105] = {.lex_state = 134, .external_lex_state = 2}, + [2106] = {.lex_state = 1190}, + [2107] = {.lex_state = 151}, + [2108] = {.lex_state = 151}, + [2109] = {.lex_state = 95}, + [2110] = {.lex_state = 579}, + [2111] = {.lex_state = 164, .external_lex_state = 2}, + [2112] = {.lex_state = 174, .external_lex_state = 2}, + [2113] = {.lex_state = 53, .external_lex_state = 2}, + [2114] = {.lex_state = 167, .external_lex_state = 2}, + [2115] = {.lex_state = 579}, + [2116] = {.lex_state = 579}, + [2117] = {.lex_state = 46, .external_lex_state = 2}, + [2118] = {.lex_state = 174, .external_lex_state = 2}, + [2119] = {.lex_state = 579}, + [2120] = {.lex_state = 174, .external_lex_state = 2}, + [2121] = {.lex_state = 174, .external_lex_state = 2}, + [2122] = {.lex_state = 174, .external_lex_state = 2}, + [2123] = {.lex_state = 169, .external_lex_state = 2}, + [2124] = {.lex_state = 579}, + [2125] = {.lex_state = 579}, + [2126] = {.lex_state = 174, .external_lex_state = 2}, + [2127] = {.lex_state = 579}, + [2128] = {.lex_state = 151}, + [2129] = {.lex_state = 164, .external_lex_state = 2}, + [2130] = {.lex_state = 169, .external_lex_state = 2}, + [2131] = {.lex_state = 95}, + [2132] = {.lex_state = 169, .external_lex_state = 2}, + [2133] = {.lex_state = 167, .external_lex_state = 2}, + [2134] = {.lex_state = 174, .external_lex_state = 2}, + [2135] = {.lex_state = 46, .external_lex_state = 2}, + [2136] = {.lex_state = 46, .external_lex_state = 2}, + [2137] = {.lex_state = 46, .external_lex_state = 2}, + [2138] = {.lex_state = 46, .external_lex_state = 2}, + [2139] = {.lex_state = 579}, + [2140] = {.lex_state = 46, .external_lex_state = 2}, + [2141] = {.lex_state = 579}, + [2142] = {.lex_state = 46, .external_lex_state = 2}, + [2143] = {.lex_state = 579}, + [2144] = {.lex_state = 579}, + [2145] = {.lex_state = 579}, + [2146] = {.lex_state = 579}, + [2147] = {.lex_state = 579}, + [2148] = {.lex_state = 5, .external_lex_state = 2}, + [2149] = {.lex_state = 579}, + [2150] = {.lex_state = 579}, + [2151] = {.lex_state = 46, .external_lex_state = 2}, + [2152] = {.lex_state = 579}, + [2153] = {.lex_state = 46, .external_lex_state = 2}, + [2154] = {.lex_state = 46, .external_lex_state = 2}, + [2155] = {.lex_state = 46, .external_lex_state = 2}, + [2156] = {.lex_state = 50, .external_lex_state = 2}, + [2157] = {.lex_state = 46, .external_lex_state = 2}, + [2158] = {.lex_state = 46, .external_lex_state = 2}, + [2159] = {.lex_state = 579}, + [2160] = {.lex_state = 46, .external_lex_state = 2}, + [2161] = {.lex_state = 46, .external_lex_state = 2}, + [2162] = {.lex_state = 46, .external_lex_state = 2}, + [2163] = {.lex_state = 46, .external_lex_state = 2}, + [2164] = {.lex_state = 46, .external_lex_state = 2}, + [2165] = {.lex_state = 46, .external_lex_state = 2}, + [2166] = {.lex_state = 46, .external_lex_state = 2}, + [2167] = {.lex_state = 46, .external_lex_state = 2}, + [2168] = {.lex_state = 46, .external_lex_state = 2}, + [2169] = {.lex_state = 46, .external_lex_state = 2}, + [2170] = {.lex_state = 579}, + [2171] = {.lex_state = 579}, + [2172] = {.lex_state = 579}, + [2173] = {.lex_state = 579}, + [2174] = {.lex_state = 579}, + [2175] = {.lex_state = 579}, + [2176] = {.lex_state = 579}, + [2177] = {.lex_state = 579}, + [2178] = {.lex_state = 579}, + [2179] = {.lex_state = 579}, + [2180] = {.lex_state = 579}, + [2181] = {.lex_state = 579}, + [2182] = {.lex_state = 1191}, + [2183] = {.lex_state = 46, .external_lex_state = 2}, + [2184] = {.lex_state = 46, .external_lex_state = 2}, + [2185] = {.lex_state = 5, .external_lex_state = 2}, + [2186] = {.lex_state = 46, .external_lex_state = 2}, + [2187] = {.lex_state = 46, .external_lex_state = 2}, + [2188] = {.lex_state = 46, .external_lex_state = 2}, + [2189] = {.lex_state = 46, .external_lex_state = 2}, + [2190] = {.lex_state = 46, .external_lex_state = 2}, + [2191] = {.lex_state = 46, .external_lex_state = 2}, + [2192] = {.lex_state = 46, .external_lex_state = 2}, + [2193] = {.lex_state = 5, .external_lex_state = 2}, + [2194] = {.lex_state = 46, .external_lex_state = 2}, + [2195] = {.lex_state = 46, .external_lex_state = 2}, + [2196] = {.lex_state = 46, .external_lex_state = 2}, + [2197] = {.lex_state = 46, .external_lex_state = 2}, + [2198] = {.lex_state = 46, .external_lex_state = 2}, + [2199] = {.lex_state = 46, .external_lex_state = 2}, + [2200] = {.lex_state = 46, .external_lex_state = 2}, + [2201] = {.lex_state = 46, .external_lex_state = 2}, + [2202] = {.lex_state = 1191}, + [2203] = {.lex_state = 46, .external_lex_state = 2}, + [2204] = {.lex_state = 5, .external_lex_state = 2}, + [2205] = {.lex_state = 46, .external_lex_state = 2}, + [2206] = {.lex_state = 1191}, + [2207] = {.lex_state = 1191}, + [2208] = {.lex_state = 1191}, + [2209] = {.lex_state = 1191}, + [2210] = {.lex_state = 1191}, + [2211] = {.lex_state = 1191}, + [2212] = {.lex_state = 53, .external_lex_state = 2}, + [2213] = {.lex_state = 46, .external_lex_state = 2}, + [2214] = {.lex_state = 579}, + [2215] = {.lex_state = 5, .external_lex_state = 2}, + [2216] = {.lex_state = 579}, + [2217] = {.lex_state = 5, .external_lex_state = 2}, + [2218] = {.lex_state = 579}, + [2219] = {.lex_state = 50, .external_lex_state = 2}, + [2220] = {.lex_state = 579}, + [2221] = {.lex_state = 579}, + [2222] = {.lex_state = 579}, + [2223] = {.lex_state = 578}, + [2224] = {.lex_state = 579}, + [2225] = {.lex_state = 154, .external_lex_state = 2}, + [2226] = {.lex_state = 154, .external_lex_state = 2}, + [2227] = {.lex_state = 154, .external_lex_state = 2}, + [2228] = {.lex_state = 578}, + [2229] = {.lex_state = 154, .external_lex_state = 2}, + [2230] = {.lex_state = 54, .external_lex_state = 2}, + [2231] = {.lex_state = 576}, + [2232] = {.lex_state = 576}, + [2233] = {.lex_state = 37, .external_lex_state = 2}, + [2234] = {.lex_state = 576}, + [2235] = {.lex_state = 156, .external_lex_state = 2}, + [2236] = {.lex_state = 156, .external_lex_state = 2}, + [2237] = {.lex_state = 156, .external_lex_state = 2}, + [2238] = {.lex_state = 154, .external_lex_state = 2}, + [2239] = {.lex_state = 576}, + [2240] = {.lex_state = 156, .external_lex_state = 2}, + [2241] = {.lex_state = 156, .external_lex_state = 2}, + [2242] = {.lex_state = 54, .external_lex_state = 2}, + [2243] = {.lex_state = 576}, + [2244] = {.lex_state = 154, .external_lex_state = 2}, + [2245] = {.lex_state = 576}, + [2246] = {.lex_state = 156, .external_lex_state = 2}, + [2247] = {.lex_state = 38, .external_lex_state = 2}, + [2248] = {.lex_state = 156, .external_lex_state = 2}, + [2249] = {.lex_state = 156, .external_lex_state = 2}, + [2250] = {.lex_state = 38, .external_lex_state = 2}, + [2251] = {.lex_state = 156, .external_lex_state = 2}, + [2252] = {.lex_state = 37, .external_lex_state = 2}, + [2253] = {.lex_state = 578}, + [2254] = {.lex_state = 38, .external_lex_state = 2}, + [2255] = {.lex_state = 578}, + [2256] = {.lex_state = 578}, + [2257] = {.lex_state = 39, .external_lex_state = 2}, + [2258] = {.lex_state = 578}, + [2259] = {.lex_state = 39, .external_lex_state = 2}, + [2260] = {.lex_state = 578}, + [2261] = {.lex_state = 578}, + [2262] = {.lex_state = 97}, + [2263] = {.lex_state = 13}, + [2264] = {.lex_state = 39, .external_lex_state = 2}, + [2265] = {.lex_state = 39, .external_lex_state = 2}, + [2266] = {.lex_state = 39, .external_lex_state = 2}, + [2267] = {.lex_state = 579}, + [2268] = {.lex_state = 39, .external_lex_state = 2}, + [2269] = {.lex_state = 39, .external_lex_state = 2}, + [2270] = {.lex_state = 39, .external_lex_state = 2}, + [2271] = {.lex_state = 39, .external_lex_state = 2}, + [2272] = {.lex_state = 39, .external_lex_state = 2}, + [2273] = {.lex_state = 39, .external_lex_state = 2}, + [2274] = {.lex_state = 39, .external_lex_state = 2}, + [2275] = {.lex_state = 39, .external_lex_state = 2}, + [2276] = {.lex_state = 39, .external_lex_state = 2}, + [2277] = {.lex_state = 39, .external_lex_state = 2}, + [2278] = {.lex_state = 39, .external_lex_state = 2}, + [2279] = {.lex_state = 39, .external_lex_state = 2}, + [2280] = {.lex_state = 39, .external_lex_state = 2}, + [2281] = {.lex_state = 39, .external_lex_state = 2}, + [2282] = {.lex_state = 634}, + [2283] = {.lex_state = 579}, + [2284] = {.lex_state = 579}, + [2285] = {.lex_state = 579}, + [2286] = {.lex_state = 579}, + [2287] = {.lex_state = 39, .external_lex_state = 2}, + [2288] = {.lex_state = 39, .external_lex_state = 2}, + [2289] = {.lex_state = 39, .external_lex_state = 2}, + [2290] = {.lex_state = 39, .external_lex_state = 2}, + [2291] = {.lex_state = 39, .external_lex_state = 2}, + [2292] = {.lex_state = 39, .external_lex_state = 2}, + [2293] = {.lex_state = 39, .external_lex_state = 2}, + [2294] = {.lex_state = 39, .external_lex_state = 2}, + [2295] = {.lex_state = 39, .external_lex_state = 2}, + [2296] = {.lex_state = 4, .external_lex_state = 2}, + [2297] = {.lex_state = 4, .external_lex_state = 2}, + [2298] = {.lex_state = 635}, + [2299] = {.lex_state = 582}, + [2300] = {.lex_state = 4, .external_lex_state = 2}, + [2301] = {.lex_state = 4, .external_lex_state = 2}, + [2302] = {.lex_state = 4, .external_lex_state = 2}, + [2303] = {.lex_state = 13}, + [2304] = {.lex_state = 635}, + [2305] = {.lex_state = 634}, + [2306] = {.lex_state = 1, .external_lex_state = 2}, + [2307] = {.lex_state = 4, .external_lex_state = 2}, + [2308] = {.lex_state = 39, .external_lex_state = 2}, + [2309] = {.lex_state = 633}, + [2310] = {.lex_state = 1, .external_lex_state = 2}, + [2311] = {.lex_state = 1, .external_lex_state = 2}, + [2312] = {.lex_state = 1, .external_lex_state = 2}, + [2313] = {.lex_state = 635}, + [2314] = {.lex_state = 1, .external_lex_state = 2}, + [2315] = {.lex_state = 1, .external_lex_state = 2}, + [2316] = {.lex_state = 1, .external_lex_state = 2}, + [2317] = {.lex_state = 635}, + [2318] = {.lex_state = 582}, + [2319] = {.lex_state = 582}, + [2320] = {.lex_state = 582}, + [2321] = {.lex_state = 582}, + [2322] = {.lex_state = 39, .external_lex_state = 2}, + [2323] = {.lex_state = 39, .external_lex_state = 2}, + [2324] = {.lex_state = 39, .external_lex_state = 2}, + [2325] = {.lex_state = 39, .external_lex_state = 2}, + [2326] = {.lex_state = 39, .external_lex_state = 2}, + [2327] = {.lex_state = 638}, + [2328] = {.lex_state = 642}, + [2329] = {.lex_state = 4, .external_lex_state = 2}, + [2330] = {.lex_state = 582}, + [2331] = {.lex_state = 39, .external_lex_state = 2}, + [2332] = {.lex_state = 39, .external_lex_state = 2}, + [2333] = {.lex_state = 39, .external_lex_state = 2}, + [2334] = {.lex_state = 39, .external_lex_state = 2}, + [2335] = {.lex_state = 39, .external_lex_state = 2}, + [2336] = {.lex_state = 39, .external_lex_state = 2}, + [2337] = {.lex_state = 7, .external_lex_state = 2}, + [2338] = {.lex_state = 636}, + [2339] = {.lex_state = 5, .external_lex_state = 2}, + [2340] = {.lex_state = 638}, + [2341] = {.lex_state = 642}, + [2342] = {.lex_state = 3, .external_lex_state = 2}, + [2343] = {.lex_state = 633}, + [2344] = {.lex_state = 646}, + [2345] = {.lex_state = 644}, + [2346] = {.lex_state = 644}, + [2347] = {.lex_state = 633}, + [2348] = {.lex_state = 5, .external_lex_state = 2}, + [2349] = {.lex_state = 582}, + [2350] = {.lex_state = 582}, + [2351] = {.lex_state = 582}, + [2352] = {.lex_state = 582}, + [2353] = {.lex_state = 636}, + [2354] = {.lex_state = 2, .external_lex_state = 2}, + [2355] = {.lex_state = 6, .external_lex_state = 2}, + [2356] = {.lex_state = 6, .external_lex_state = 2}, + [2357] = {.lex_state = 5, .external_lex_state = 2}, + [2358] = {.lex_state = 636}, + [2359] = {.lex_state = 5, .external_lex_state = 2}, + [2360] = {.lex_state = 5, .external_lex_state = 2}, + [2361] = {.lex_state = 644}, + [2362] = {.lex_state = 639}, + [2363] = {.lex_state = 5, .external_lex_state = 2}, + [2364] = {.lex_state = 640}, + [2365] = {.lex_state = 5, .external_lex_state = 2}, + [2366] = {.lex_state = 646}, + [2367] = {.lex_state = 7, .external_lex_state = 2}, + [2368] = {.lex_state = 4, .external_lex_state = 2}, + [2369] = {.lex_state = 636}, + [2370] = {.lex_state = 7, .external_lex_state = 2}, + [2371] = {.lex_state = 7, .external_lex_state = 2}, + [2372] = {.lex_state = 646}, + [2373] = {.lex_state = 4, .external_lex_state = 2}, + [2374] = {.lex_state = 5, .external_lex_state = 2}, + [2375] = {.lex_state = 646}, + [2376] = {.lex_state = 646}, + [2377] = {.lex_state = 643}, + [2378] = {.lex_state = 648}, + [2379] = {.lex_state = 5, .external_lex_state = 2}, + [2380] = {.lex_state = 7, .external_lex_state = 2}, + [2381] = {.lex_state = 7, .external_lex_state = 2}, + [2382] = {.lex_state = 7, .external_lex_state = 2}, + [2383] = {.lex_state = 7, .external_lex_state = 2}, + [2384] = {.lex_state = 4, .external_lex_state = 2}, + [2385] = {.lex_state = 633}, + [2386] = {.lex_state = 579}, + [2387] = {.lex_state = 633}, + [2388] = {.lex_state = 633}, + [2389] = {.lex_state = 579}, + [2390] = {.lex_state = 633}, + [2391] = {.lex_state = 7, .external_lex_state = 2}, + [2392] = {.lex_state = 7, .external_lex_state = 2}, + [2393] = {.lex_state = 644}, + [2394] = {.lex_state = 633}, + [2395] = {.lex_state = 5, .external_lex_state = 2}, + [2396] = {.lex_state = 5, .external_lex_state = 2}, + [2397] = {.lex_state = 5, .external_lex_state = 2}, + [2398] = {.lex_state = 650}, + [2399] = {.lex_state = 643}, + [2400] = {.lex_state = 5, .external_lex_state = 2}, + [2401] = {.lex_state = 5, .external_lex_state = 2}, + [2402] = {.lex_state = 578}, + [2403] = {.lex_state = 640}, + [2404] = {.lex_state = 633}, + [2405] = {.lex_state = 5, .external_lex_state = 2}, + [2406] = {.lex_state = 10}, + [2407] = {.lex_state = 576}, + [2408] = {.lex_state = 646}, + [2409] = {.lex_state = 633}, + [2410] = {.lex_state = 5, .external_lex_state = 2}, + [2411] = {.lex_state = 646}, + [2412] = {.lex_state = 5, .external_lex_state = 2}, + [2413] = {.lex_state = 5, .external_lex_state = 2}, + [2414] = {.lex_state = 648}, + [2415] = {.lex_state = 650}, + [2416] = {.lex_state = 56}, + [2417] = {.lex_state = 578}, + [2418] = {.lex_state = 646}, + [2419] = {.lex_state = 5, .external_lex_state = 2}, + [2420] = {.lex_state = 5, .external_lex_state = 2}, + [2421] = {.lex_state = 5, .external_lex_state = 2}, + [2422] = {.lex_state = 578}, + [2423] = {.lex_state = 5, .external_lex_state = 2}, + [2424] = {.lex_state = 633}, + [2425] = {.lex_state = 578}, + [2426] = {.lex_state = 645}, + [2427] = {.lex_state = 5, .external_lex_state = 2}, + [2428] = {.lex_state = 633}, + [2429] = {.lex_state = 645}, + [2430] = {.lex_state = 5, .external_lex_state = 2}, + [2431] = {.lex_state = 647}, + [2432] = {.lex_state = 5, .external_lex_state = 2}, + [2433] = {.lex_state = 5, .external_lex_state = 2}, + [2434] = {.lex_state = 639}, + [2435] = {.lex_state = 5, .external_lex_state = 2}, + [2436] = {.lex_state = 5, .external_lex_state = 2}, + [2437] = {.lex_state = 578}, + [2438] = {.lex_state = 650}, + [2439] = {.lex_state = 650}, + [2440] = {.lex_state = 56}, + [2441] = {.lex_state = 58}, + [2442] = {.lex_state = 60}, + [2443] = {.lex_state = 652}, + [2444] = {.lex_state = 652}, + [2445] = {.lex_state = 652}, + [2446] = {.lex_state = 647}, + [2447] = {.lex_state = 578}, + [2448] = {.lex_state = 645}, + [2449] = {.lex_state = 577}, + [2450] = {.lex_state = 645}, + [2451] = {.lex_state = 578}, + [2452] = {.lex_state = 577}, + [2453] = {.lex_state = 652}, + [2454] = {.lex_state = 577}, + [2455] = {.lex_state = 57}, + [2456] = {.lex_state = 57}, + [2457] = {.lex_state = 649}, + [2458] = {.lex_state = 577}, + [2459] = {.lex_state = 576}, + [2460] = {.lex_state = 647}, + [2461] = {.lex_state = 576}, [2462] = {.lex_state = 576}, - [2463] = {.lex_state = 576}, - [2464] = {.lex_state = 156, .external_lex_state = 2}, + [2463] = {.lex_state = 578}, + [2464] = {.lex_state = 647}, [2465] = {.lex_state = 576}, - [2466] = {.lex_state = 577}, - [2467] = {.lex_state = 2}, - [2468] = {.lex_state = 650}, - [2469] = {.lex_state = 644}, - [2470] = {.lex_state = 577}, - [2471] = {.lex_state = 655}, - [2472] = {.lex_state = 576}, - [2473] = {.lex_state = 57}, - [2474] = {.lex_state = 577}, + [2466] = {.lex_state = 576}, + [2467] = {.lex_state = 576}, + [2468] = {.lex_state = 647}, + [2469] = {.lex_state = 578}, + [2470] = {.lex_state = 578}, + [2471] = {.lex_state = 578}, + [2472] = {.lex_state = 578}, + [2473] = {.lex_state = 641}, + [2474] = {.lex_state = 652}, [2475] = {.lex_state = 577}, - [2476] = {.lex_state = 2}, + [2476] = {.lex_state = 656}, [2477] = {.lex_state = 577}, - [2478] = {.lex_state = 577}, - [2479] = {.lex_state = 577}, - [2480] = {.lex_state = 651}, - [2481] = {.lex_state = 577}, - [2482] = {.lex_state = 58}, - [2483] = {.lex_state = 57}, - [2484] = {.lex_state = 156, .external_lex_state = 2}, - [2485] = {.lex_state = 156, .external_lex_state = 2}, - [2486] = {.lex_state = 576}, - [2487] = {.lex_state = 650}, - [2488] = {.lex_state = 54}, - [2489] = {.lex_state = 576}, - [2490] = {.lex_state = 576}, - [2491] = {.lex_state = 2}, - [2492] = {.lex_state = 576}, - [2493] = {.lex_state = 648}, - [2494] = {.lex_state = 2}, - [2495] = {.lex_state = 156, .external_lex_state = 2}, + [2478] = {.lex_state = 61}, + [2479] = {.lex_state = 62}, + [2480] = {.lex_state = 577}, + [2481] = {.lex_state = 654}, + [2482] = {.lex_state = 576}, + [2483] = {.lex_state = 577}, + [2484] = {.lex_state = 56}, + [2485] = {.lex_state = 651}, + [2486] = {.lex_state = 577}, + [2487] = {.lex_state = 651}, + [2488] = {.lex_state = 647}, + [2489] = {.lex_state = 649}, + [2490] = {.lex_state = 652}, + [2491] = {.lex_state = 577}, + [2492] = {.lex_state = 652}, + [2493] = {.lex_state = 61}, + [2494] = {.lex_state = 647}, + [2495] = {.lex_state = 577}, [2496] = {.lex_state = 577}, - [2497] = {.lex_state = 577}, - [2498] = {.lex_state = 2}, - [2499] = {.lex_state = 655}, - [2500] = {.lex_state = 577}, - [2501] = {.lex_state = 577}, - [2502] = {.lex_state = 577}, - [2503] = {.lex_state = 577}, - [2504] = {.lex_state = 653}, - [2505] = {.lex_state = 650}, - [2506] = {.lex_state = 576}, - [2507] = {.lex_state = 57}, - [2508] = {.lex_state = 2}, - [2509] = {.lex_state = 650}, - [2510] = {.lex_state = 648}, - [2511] = {.lex_state = 2}, - [2512] = {.lex_state = 576}, - [2513] = {.lex_state = 577}, - [2514] = {.lex_state = 650}, - [2515] = {.lex_state = 657}, - [2516] = {.lex_state = 576}, - [2517] = {.lex_state = 2}, - [2518] = {.lex_state = 576}, - [2519] = {.lex_state = 576}, - [2520] = {.lex_state = 577}, - [2521] = {.lex_state = 576}, - [2522] = {.lex_state = 657}, - [2523] = {.lex_state = 657}, - [2524] = {.lex_state = 657}, - [2525] = {.lex_state = 59}, - [2526] = {.lex_state = 2}, - [2527] = {.lex_state = 657}, - [2528] = {.lex_state = 657}, - [2529] = {.lex_state = 650}, - [2530] = {.lex_state = 2}, - [2531] = {.lex_state = 650}, - [2532] = {.lex_state = 576}, - [2533] = {.lex_state = 657}, - [2534] = {.lex_state = 657}, - [2535] = {.lex_state = 657}, - [2536] = {.lex_state = 2}, - [2537] = {.lex_state = 577}, - [2538] = {.lex_state = 576}, - [2539] = {.lex_state = 576}, - [2540] = {.lex_state = 2}, - [2541] = {.lex_state = 2}, - [2542] = {.lex_state = 576}, - [2543] = {.lex_state = 654}, - [2544] = {.lex_state = 2}, - [2545] = {.lex_state = 576}, - [2546] = {.lex_state = 657}, - [2547] = {.lex_state = 577}, - [2548] = {.lex_state = 2}, - [2549] = {.lex_state = 576}, - [2550] = {.lex_state = 652}, - [2551] = {.lex_state = 576}, - [2552] = {.lex_state = 2}, - [2553] = {.lex_state = 576}, - [2554] = {.lex_state = 576}, - [2555] = {.lex_state = 655}, - [2556] = {.lex_state = 2}, - [2557] = {.lex_state = 576}, - [2558] = {.lex_state = 657}, - [2559] = {.lex_state = 650}, - [2560] = {.lex_state = 650}, - [2561] = {.lex_state = 2}, - [2562] = {.lex_state = 577}, - [2563] = {.lex_state = 577}, + [2497] = {.lex_state = 647}, + [2498] = {.lex_state = 577}, + [2499] = {.lex_state = 647}, + [2500] = {.lex_state = 56}, + [2501] = {.lex_state = 56}, + [2502] = {.lex_state = 56}, + [2503] = {.lex_state = 10}, + [2504] = {.lex_state = 577}, + [2505] = {.lex_state = 641}, + [2506] = {.lex_state = 652}, + [2507] = {.lex_state = 577}, + [2508] = {.lex_state = 577}, + [2509] = {.lex_state = 652}, + [2510] = {.lex_state = 652}, + [2511] = {.lex_state = 10}, + [2512] = {.lex_state = 651}, + [2513] = {.lex_state = 10}, + [2514] = {.lex_state = 578}, + [2515] = {.lex_state = 578}, + [2516] = {.lex_state = 578}, + [2517] = {.lex_state = 165, .external_lex_state = 2}, + [2518] = {.lex_state = 578}, + [2519] = {.lex_state = 62}, + [2520] = {.lex_state = 10}, + [2521] = {.lex_state = 577}, + [2522] = {.lex_state = 577}, + [2523] = {.lex_state = 577}, + [2524] = {.lex_state = 577}, + [2525] = {.lex_state = 62}, + [2526] = {.lex_state = 658}, + [2527] = {.lex_state = 658}, + [2528] = {.lex_state = 577}, + [2529] = {.lex_state = 654}, + [2530] = {.lex_state = 63}, + [2531] = {.lex_state = 578}, + [2532] = {.lex_state = 578}, + [2533] = {.lex_state = 578}, + [2534] = {.lex_state = 10}, + [2535] = {.lex_state = 651}, + [2536] = {.lex_state = 10}, + [2537] = {.lex_state = 165, .external_lex_state = 2}, + [2538] = {.lex_state = 653}, + [2539] = {.lex_state = 653}, + [2540] = {.lex_state = 653}, + [2541] = {.lex_state = 647}, + [2542] = {.lex_state = 10}, + [2543] = {.lex_state = 577}, + [2544] = {.lex_state = 653}, + [2545] = {.lex_state = 578}, + [2546] = {.lex_state = 577}, + [2547] = {.lex_state = 653}, + [2548] = {.lex_state = 165, .external_lex_state = 2}, + [2549] = {.lex_state = 656}, + [2550] = {.lex_state = 59}, + [2551] = {.lex_state = 165, .external_lex_state = 2}, + [2552] = {.lex_state = 10}, + [2553] = {.lex_state = 577}, + [2554] = {.lex_state = 577}, + [2555] = {.lex_state = 578}, + [2556] = {.lex_state = 578}, + [2557] = {.lex_state = 10}, + [2558] = {.lex_state = 62}, + [2559] = {.lex_state = 578}, + [2560] = {.lex_state = 578}, + [2561] = {.lex_state = 578}, + [2562] = {.lex_state = 578}, + [2563] = {.lex_state = 578}, [2564] = {.lex_state = 577}, - [2565] = {.lex_state = 650}, - [2566] = {.lex_state = 576}, - [2567] = {.lex_state = 577}, - [2568] = {.lex_state = 2}, - [2569] = {.lex_state = 657}, - [2570] = {.lex_state = 2}, - [2571] = {.lex_state = 657}, - [2572] = {.lex_state = 655}, - [2573] = {.lex_state = 576}, - [2574] = {.lex_state = 577}, - [2575] = {.lex_state = 2}, - [2576] = {.lex_state = 577}, - [2577] = {.lex_state = 59}, - [2578] = {.lex_state = 577}, - [2579] = {.lex_state = 577}, - [2580] = {.lex_state = 577}, + [2565] = {.lex_state = 577}, + [2566] = {.lex_state = 10}, + [2567] = {.lex_state = 660}, + [2568] = {.lex_state = 660}, + [2569] = {.lex_state = 64}, + [2570] = {.lex_state = 660}, + [2571] = {.lex_state = 578}, + [2572] = {.lex_state = 660}, + [2573] = {.lex_state = 660}, + [2574] = {.lex_state = 660}, + [2575] = {.lex_state = 578}, + [2576] = {.lex_state = 660}, + [2577] = {.lex_state = 578}, + [2578] = {.lex_state = 578}, + [2579] = {.lex_state = 578}, + [2580] = {.lex_state = 578}, [2581] = {.lex_state = 577}, - [2582] = {.lex_state = 652}, - [2583] = {.lex_state = 657}, - [2584] = {.lex_state = 2}, - [2585] = {.lex_state = 576}, - [2586] = {.lex_state = 656}, - [2587] = {.lex_state = 657}, - [2588] = {.lex_state = 60}, - [2589] = {.lex_state = 60}, - [2590] = {.lex_state = 112}, - [2591] = {.lex_state = 657}, - [2592] = {.lex_state = 2}, + [2582] = {.lex_state = 577}, + [2583] = {.lex_state = 10}, + [2584] = {.lex_state = 658}, + [2585] = {.lex_state = 10}, + [2586] = {.lex_state = 577}, + [2587] = {.lex_state = 660}, + [2588] = {.lex_state = 10}, + [2589] = {.lex_state = 660}, + [2590] = {.lex_state = 653}, + [2591] = {.lex_state = 660}, + [2592] = {.lex_state = 577}, [2593] = {.lex_state = 577}, - [2594] = {.lex_state = 576}, - [2595] = {.lex_state = 657}, - [2596] = {.lex_state = 640}, - [2597] = {.lex_state = 659}, - [2598] = {.lex_state = 640}, - [2599] = {.lex_state = 576}, - [2600] = {.lex_state = 657}, - [2601] = {.lex_state = 640}, - [2602] = {.lex_state = 576}, - [2603] = {.lex_state = 657}, - [2604] = {.lex_state = 640}, - [2605] = {.lex_state = 640}, - [2606] = {.lex_state = 640}, - [2607] = {.lex_state = 640}, - [2608] = {.lex_state = 640}, - [2609] = {.lex_state = 576}, - [2610] = {.lex_state = 60}, - [2611] = {.lex_state = 576}, - [2612] = {.lex_state = 60}, - [2613] = {.lex_state = 577}, - [2614] = {.lex_state = 657}, - [2615] = {.lex_state = 640}, - [2616] = {.lex_state = 2}, - [2617] = {.lex_state = 576}, - [2618] = {.lex_state = 657}, - [2619] = {.lex_state = 657}, - [2620] = {.lex_state = 657}, - [2621] = {.lex_state = 2}, - [2622] = {.lex_state = 640}, - [2623] = {.lex_state = 2}, - [2624] = {.lex_state = 2}, - [2625] = {.lex_state = 576}, - [2626] = {.lex_state = 657}, - [2627] = {.lex_state = 640}, - [2628] = {.lex_state = 576}, - [2629] = {.lex_state = 654}, - [2630] = {.lex_state = 576}, - [2631] = {.lex_state = 2}, - [2632] = {.lex_state = 577}, - [2633] = {.lex_state = 576}, - [2634] = {.lex_state = 576}, - [2635] = {.lex_state = 576}, - [2636] = {.lex_state = 576}, - [2637] = {.lex_state = 60}, - [2638] = {.lex_state = 656}, - [2639] = {.lex_state = 657}, - [2640] = {.lex_state = 576}, - [2641] = {.lex_state = 657}, - [2642] = {.lex_state = 657}, - [2643] = {.lex_state = 577}, - [2644] = {.lex_state = 640}, - [2645] = {.lex_state = 640}, - [2646] = {.lex_state = 577}, + [2594] = {.lex_state = 577}, + [2595] = {.lex_state = 10}, + [2596] = {.lex_state = 577}, + [2597] = {.lex_state = 10}, + [2598] = {.lex_state = 577}, + [2599] = {.lex_state = 653}, + [2600] = {.lex_state = 578}, + [2601] = {.lex_state = 10}, + [2602] = {.lex_state = 655}, + [2603] = {.lex_state = 658}, + [2604] = {.lex_state = 653}, + [2605] = {.lex_state = 657}, + [2606] = {.lex_state = 577}, + [2607] = {.lex_state = 577}, + [2608] = {.lex_state = 660}, + [2609] = {.lex_state = 577}, + [2610] = {.lex_state = 660}, + [2611] = {.lex_state = 577}, + [2612] = {.lex_state = 10}, + [2613] = {.lex_state = 10}, + [2614] = {.lex_state = 653}, + [2615] = {.lex_state = 660}, + [2616] = {.lex_state = 10}, + [2617] = {.lex_state = 653}, + [2618] = {.lex_state = 577}, + [2619] = {.lex_state = 577}, + [2620] = {.lex_state = 578}, + [2621] = {.lex_state = 10}, + [2622] = {.lex_state = 10}, + [2623] = {.lex_state = 64}, + [2624] = {.lex_state = 10}, + [2625] = {.lex_state = 578}, + [2626] = {.lex_state = 578}, + [2627] = {.lex_state = 578}, + [2628] = {.lex_state = 578}, + [2629] = {.lex_state = 578}, + [2630] = {.lex_state = 10}, + [2631] = {.lex_state = 577}, + [2632] = {.lex_state = 660}, + [2633] = {.lex_state = 10}, + [2634] = {.lex_state = 655}, + [2635] = {.lex_state = 65}, + [2636] = {.lex_state = 10}, + [2637] = {.lex_state = 577}, + [2638] = {.lex_state = 659}, + [2639] = {.lex_state = 577}, + [2640] = {.lex_state = 577}, + [2641] = {.lex_state = 660}, + [2642] = {.lex_state = 639}, + [2643] = {.lex_state = 657}, + [2644] = {.lex_state = 577}, + [2645] = {.lex_state = 578}, + [2646] = {.lex_state = 639}, [2647] = {.lex_state = 577}, - [2648] = {.lex_state = 577}, - [2649] = {.lex_state = 577}, - [2650] = {.lex_state = 577}, - [2651] = {.lex_state = 62}, + [2648] = {.lex_state = 660}, + [2649] = {.lex_state = 10}, + [2650] = {.lex_state = 65}, + [2651] = {.lex_state = 660}, [2652] = {.lex_state = 577}, - [2653] = {.lex_state = 577}, - [2654] = {.lex_state = 577}, - [2655] = {.lex_state = 577}, + [2653] = {.lex_state = 660}, + [2654] = {.lex_state = 578}, + [2655] = {.lex_state = 10}, [2656] = {.lex_state = 577}, - [2657] = {.lex_state = 577}, + [2657] = {.lex_state = 578}, [2658] = {.lex_state = 577}, [2659] = {.lex_state = 577}, - [2660] = {.lex_state = 577}, + [2660] = {.lex_state = 660}, [2661] = {.lex_state = 577}, - [2662] = {.lex_state = 577}, + [2662] = {.lex_state = 660}, [2663] = {.lex_state = 577}, - [2664] = {.lex_state = 577}, - [2665] = {.lex_state = 577}, - [2666] = {.lex_state = 577}, - [2667] = {.lex_state = 577}, + [2664] = {.lex_state = 10}, + [2665] = {.lex_state = 639}, + [2666] = {.lex_state = 660}, + [2667] = {.lex_state = 65}, [2668] = {.lex_state = 577}, - [2669] = {.lex_state = 577}, - [2670] = {.lex_state = 577}, - [2671] = {.lex_state = 577}, - [2672] = {.lex_state = 577}, - [2673] = {.lex_state = 577}, - [2674] = {.lex_state = 577}, - [2675] = {.lex_state = 577}, - [2676] = {.lex_state = 577}, + [2669] = {.lex_state = 662}, + [2670] = {.lex_state = 639}, + [2671] = {.lex_state = 65}, + [2672] = {.lex_state = 639}, + [2673] = {.lex_state = 639}, + [2674] = {.lex_state = 639}, + [2675] = {.lex_state = 639}, + [2676] = {.lex_state = 639}, [2677] = {.lex_state = 577}, - [2678] = {.lex_state = 577}, - [2679] = {.lex_state = 577}, - [2680] = {.lex_state = 577}, - [2681] = {.lex_state = 652}, - [2682] = {.lex_state = 640}, - [2683] = {.lex_state = 61}, - [2684] = {.lex_state = 577}, + [2678] = {.lex_state = 660}, + [2679] = {.lex_state = 10}, + [2680] = {.lex_state = 660}, + [2681] = {.lex_state = 660}, + [2682] = {.lex_state = 10}, + [2683] = {.lex_state = 639}, + [2684] = {.lex_state = 660}, [2685] = {.lex_state = 577}, - [2686] = {.lex_state = 577}, - [2687] = {.lex_state = 577}, - [2688] = {.lex_state = 577}, + [2686] = {.lex_state = 660}, + [2687] = {.lex_state = 639}, + [2688] = {.lex_state = 65}, [2689] = {.lex_state = 577}, - [2690] = {.lex_state = 577}, - [2691] = {.lex_state = 577}, - [2692] = {.lex_state = 577}, - [2693] = {.lex_state = 577}, - [2694] = {.lex_state = 577}, - [2695] = {.lex_state = 658}, - [2696] = {.lex_state = 656}, - [2697] = {.lex_state = 577}, - [2698] = {.lex_state = 577}, - [2699] = {.lex_state = 658}, - [2700] = {.lex_state = 577}, - [2701] = {.lex_state = 640}, - [2702] = {.lex_state = 577}, - [2703] = {.lex_state = 577}, - [2704] = {.lex_state = 640}, - [2705] = {.lex_state = 640}, - [2706] = {.lex_state = 640}, - [2707] = {.lex_state = 658}, - [2708] = {.lex_state = 658}, - [2709] = {.lex_state = 656}, - [2710] = {.lex_state = 658}, - [2711] = {.lex_state = 576}, + [2690] = {.lex_state = 118}, + [2691] = {.lex_state = 659}, + [2692] = {.lex_state = 660}, + [2693] = {.lex_state = 10}, + [2694] = {.lex_state = 578}, + [2695] = {.lex_state = 578}, + [2696] = {.lex_state = 578}, + [2697] = {.lex_state = 10}, + [2698] = {.lex_state = 578}, + [2699] = {.lex_state = 578}, + [2700] = {.lex_state = 661}, + [2701] = {.lex_state = 639}, + [2702] = {.lex_state = 578}, + [2703] = {.lex_state = 578}, + [2704] = {.lex_state = 578}, + [2705] = {.lex_state = 639}, + [2706] = {.lex_state = 633}, + [2707] = {.lex_state = 578}, + [2708] = {.lex_state = 578}, + [2709] = {.lex_state = 578}, + [2710] = {.lex_state = 578}, + [2711] = {.lex_state = 660}, [2712] = {.lex_state = 577}, - [2713] = {.lex_state = 658}, - [2714] = {.lex_state = 577}, - [2715] = {.lex_state = 577}, - [2716] = {.lex_state = 658}, - [2717] = {.lex_state = 658}, - [2718] = {.lex_state = 577}, - [2719] = {.lex_state = 577}, - [2720] = {.lex_state = 577}, - [2721] = {.lex_state = 659}, - [2722] = {.lex_state = 658}, - [2723] = {.lex_state = 658}, - [2724] = {.lex_state = 577}, - [2725] = {.lex_state = 577}, - [2726] = {.lex_state = 577}, - [2727] = {.lex_state = 577}, - [2728] = {.lex_state = 640}, - [2729] = {.lex_state = 577}, - [2730] = {.lex_state = 577}, - [2731] = {.lex_state = 577}, - [2732] = {.lex_state = 577}, - [2733] = {.lex_state = 630}, - [2734] = {.lex_state = 630}, - [2735] = {.lex_state = 577}, - [2736] = {.lex_state = 630}, - [2737] = {.lex_state = 630}, - [2738] = {.lex_state = 577}, - [2739] = {.lex_state = 577}, - [2740] = {.lex_state = 577}, - [2741] = {.lex_state = 577}, - [2742] = {.lex_state = 577}, - [2743] = {.lex_state = 577}, - [2744] = {.lex_state = 577}, - [2745] = {.lex_state = 577}, - [2746] = {.lex_state = 577}, - [2747] = {.lex_state = 577}, - [2748] = {.lex_state = 577}, - [2749] = {.lex_state = 577}, - [2750] = {.lex_state = 577}, - [2751] = {.lex_state = 577}, - [2752] = {.lex_state = 577}, - [2753] = {.lex_state = 577}, - [2754] = {.lex_state = 577}, - [2755] = {.lex_state = 577}, - [2756] = {.lex_state = 640}, - [2757] = {.lex_state = 577}, - [2758] = {.lex_state = 577}, - [2759] = {.lex_state = 577}, - [2760] = {.lex_state = 576}, - [2761] = {.lex_state = 640}, - [2762] = {.lex_state = 630}, - [2763] = {.lex_state = 577}, - [2764] = {.lex_state = 658}, - [2765] = {.lex_state = 577}, - [2766] = {.lex_state = 577}, - [2767] = {.lex_state = 577}, - [2768] = {.lex_state = 658}, - [2769] = {.lex_state = 658}, - [2770] = {.lex_state = 577}, - [2771] = {.lex_state = 577}, - [2772] = {.lex_state = 577}, - [2773] = {.lex_state = 577}, - [2774] = {.lex_state = 577}, - [2775] = {.lex_state = 577}, - [2776] = {.lex_state = 577}, - [2777] = {.lex_state = 577}, - [2778] = {.lex_state = 577}, - [2779] = {.lex_state = 577}, - [2780] = {.lex_state = 577}, - [2781] = {.lex_state = 577}, - [2782] = {.lex_state = 577}, - [2783] = {.lex_state = 577}, - [2784] = {.lex_state = 640}, - [2785] = {.lex_state = 2}, - [2786] = {.lex_state = 577}, - [2787] = {.lex_state = 2}, - [2788] = {.lex_state = 577}, - [2789] = {.lex_state = 576}, - [2790] = {.lex_state = 576}, - [2791] = {.lex_state = 2}, - [2792] = {.lex_state = 2}, - [2793] = {.lex_state = 2}, - [2794] = {.lex_state = 2}, - [2795] = {.lex_state = 2}, - [2796] = {.lex_state = 2}, - [2797] = {.lex_state = 577}, - [2798] = {.lex_state = 577}, - [2799] = {.lex_state = 577}, - [2800] = {.lex_state = 577}, - [2801] = {.lex_state = 577}, - [2802] = {.lex_state = 577}, - [2803] = {.lex_state = 577}, - [2804] = {.lex_state = 577}, - [2805] = {.lex_state = 577}, - [2806] = {.lex_state = 577}, - [2807] = {.lex_state = 577}, - [2808] = {.lex_state = 577}, - [2809] = {.lex_state = 577}, - [2810] = {.lex_state = 577}, - [2811] = {.lex_state = 577}, - [2812] = {.lex_state = 577}, - [2813] = {.lex_state = 577}, - [2814] = {.lex_state = 577}, - [2815] = {.lex_state = 657}, - [2816] = {.lex_state = 658}, - [2817] = {.lex_state = 658}, - [2818] = {.lex_state = 577}, - [2819] = {.lex_state = 658}, - [2820] = {.lex_state = 630}, - [2821] = {.lex_state = 2}, - [2822] = {.lex_state = 576}, - [2823] = {.lex_state = 577}, - [2824] = {.lex_state = 630}, - [2825] = {.lex_state = 63}, - [2826] = {.lex_state = 2}, - [2827] = {.lex_state = 577}, - [2828] = {.lex_state = 2}, - [2829] = {.lex_state = 112}, - [2830] = {.lex_state = 576}, - [2831] = {.lex_state = 577}, - [2832] = {.lex_state = 630}, - [2833] = {.lex_state = 576}, - [2834] = {.lex_state = 630}, - [2835] = {.lex_state = 112}, - [2836] = {.lex_state = 658}, - [2837] = {.lex_state = 658}, - [2838] = {.lex_state = 658}, - [2839] = {.lex_state = 624}, - [2840] = {.lex_state = 624}, - [2841] = {.lex_state = 577}, - [2842] = {.lex_state = 112}, - [2843] = {.lex_state = 2}, - [2844] = {.lex_state = 577}, - [2845] = {.lex_state = 577}, - [2846] = {.lex_state = 577}, - [2847] = {.lex_state = 2}, - [2848] = {.lex_state = 126, .external_lex_state = 2}, + [2713] = {.lex_state = 578}, + [2714] = {.lex_state = 578}, + [2715] = {.lex_state = 578}, + [2716] = {.lex_state = 578}, + [2717] = {.lex_state = 578}, + [2718] = {.lex_state = 578}, + [2719] = {.lex_state = 578}, + [2720] = {.lex_state = 578}, + [2721] = {.lex_state = 578}, + [2722] = {.lex_state = 639}, + [2723] = {.lex_state = 662}, + [2724] = {.lex_state = 639}, + [2725] = {.lex_state = 578}, + [2726] = {.lex_state = 578}, + [2727] = {.lex_state = 578}, + [2728] = {.lex_state = 578}, + [2729] = {.lex_state = 578}, + [2730] = {.lex_state = 578}, + [2731] = {.lex_state = 578}, + [2732] = {.lex_state = 578}, + [2733] = {.lex_state = 578}, + [2734] = {.lex_state = 639}, + [2735] = {.lex_state = 661}, + [2736] = {.lex_state = 661}, + [2737] = {.lex_state = 578}, + [2738] = {.lex_state = 578}, + [2739] = {.lex_state = 655}, + [2740] = {.lex_state = 578}, + [2741] = {.lex_state = 578}, + [2742] = {.lex_state = 578}, + [2743] = {.lex_state = 578}, + [2744] = {.lex_state = 659}, + [2745] = {.lex_state = 578}, + [2746] = {.lex_state = 578}, + [2747] = {.lex_state = 661}, + [2748] = {.lex_state = 578}, + [2749] = {.lex_state = 578}, + [2750] = {.lex_state = 66}, + [2751] = {.lex_state = 578}, + [2752] = {.lex_state = 578}, + [2753] = {.lex_state = 661}, + [2754] = {.lex_state = 578}, + [2755] = {.lex_state = 578}, + [2756] = {.lex_state = 578}, + [2757] = {.lex_state = 578}, + [2758] = {.lex_state = 578}, + [2759] = {.lex_state = 578}, + [2760] = {.lex_state = 578}, + [2761] = {.lex_state = 578}, + [2762] = {.lex_state = 659}, + [2763] = {.lex_state = 578}, + [2764] = {.lex_state = 578}, + [2765] = {.lex_state = 578}, + [2766] = {.lex_state = 578}, + [2767] = {.lex_state = 578}, + [2768] = {.lex_state = 578}, + [2769] = {.lex_state = 661}, + [2770] = {.lex_state = 578}, + [2771] = {.lex_state = 578}, + [2772] = {.lex_state = 578}, + [2773] = {.lex_state = 661}, + [2774] = {.lex_state = 578}, + [2775] = {.lex_state = 578}, + [2776] = {.lex_state = 578}, + [2777] = {.lex_state = 578}, + [2778] = {.lex_state = 578}, + [2779] = {.lex_state = 578}, + [2780] = {.lex_state = 578}, + [2781] = {.lex_state = 578}, + [2782] = {.lex_state = 578}, + [2783] = {.lex_state = 578}, + [2784] = {.lex_state = 578}, + [2785] = {.lex_state = 578}, + [2786] = {.lex_state = 578}, + [2787] = {.lex_state = 578}, + [2788] = {.lex_state = 578}, + [2789] = {.lex_state = 578}, + [2790] = {.lex_state = 578}, + [2791] = {.lex_state = 578}, + [2792] = {.lex_state = 578}, + [2793] = {.lex_state = 578}, + [2794] = {.lex_state = 577}, + [2795] = {.lex_state = 578}, + [2796] = {.lex_state = 578}, + [2797] = {.lex_state = 578}, + [2798] = {.lex_state = 578}, + [2799] = {.lex_state = 578}, + [2800] = {.lex_state = 578}, + [2801] = {.lex_state = 578}, + [2802] = {.lex_state = 578}, + [2803] = {.lex_state = 578}, + [2804] = {.lex_state = 578}, + [2805] = {.lex_state = 578}, + [2806] = {.lex_state = 578}, + [2807] = {.lex_state = 578}, + [2808] = {.lex_state = 578}, + [2809] = {.lex_state = 578}, + [2810] = {.lex_state = 578}, + [2811] = {.lex_state = 578}, + [2812] = {.lex_state = 578}, + [2813] = {.lex_state = 578}, + [2814] = {.lex_state = 578}, + [2815] = {.lex_state = 639}, + [2816] = {.lex_state = 578}, + [2817] = {.lex_state = 578}, + [2818] = {.lex_state = 661}, + [2819] = {.lex_state = 578}, + [2820] = {.lex_state = 578}, + [2821] = {.lex_state = 578}, + [2822] = {.lex_state = 578}, + [2823] = {.lex_state = 661}, + [2824] = {.lex_state = 639}, + [2825] = {.lex_state = 661}, + [2826] = {.lex_state = 578}, + [2827] = {.lex_state = 639}, + [2828] = {.lex_state = 661}, + [2829] = {.lex_state = 578}, + [2830] = {.lex_state = 661}, + [2831] = {.lex_state = 67}, + [2832] = {.lex_state = 578}, + [2833] = {.lex_state = 639}, + [2834] = {.lex_state = 639}, + [2835] = {.lex_state = 639}, + [2836] = {.lex_state = 578}, + [2837] = {.lex_state = 578}, + [2838] = {.lex_state = 578}, + [2839] = {.lex_state = 578}, + [2840] = {.lex_state = 10}, + [2841] = {.lex_state = 578}, + [2842] = {.lex_state = 578}, + [2843] = {.lex_state = 578}, + [2844] = {.lex_state = 578}, + [2845] = {.lex_state = 578}, + [2846] = {.lex_state = 578}, + [2847] = {.lex_state = 577}, + [2848] = {.lex_state = 578}, [2849] = {.lex_state = 577}, - [2850] = {.lex_state = 577}, - [2851] = {.lex_state = 577}, - [2852] = {.lex_state = 2}, - [2853] = {.lex_state = 577}, - [2854] = {.lex_state = 577}, - [2855] = {.lex_state = 577}, - [2856] = {.lex_state = 577}, - [2857] = {.lex_state = 624}, - [2858] = {.lex_state = 577}, - [2859] = {.lex_state = 577}, - [2860] = {.lex_state = 577}, - [2861] = {.lex_state = 577}, - [2862] = {.lex_state = 577}, - [2863] = {.lex_state = 2}, - [2864] = {.lex_state = 577}, - [2865] = {.lex_state = 577}, - [2866] = {.lex_state = 2}, - [2867] = {.lex_state = 624}, - [2868] = {.lex_state = 2}, - [2869] = {.lex_state = 112}, - [2870] = {.lex_state = 112}, - [2871] = {.lex_state = 2}, - [2872] = {.lex_state = 658}, - [2873] = {.lex_state = 658}, - [2874] = {.lex_state = 112}, - [2875] = {.lex_state = 658}, - [2876] = {.lex_state = 658}, - [2877] = {.lex_state = 630}, - [2878] = {.lex_state = 630}, - [2879] = {.lex_state = 2}, - [2880] = {.lex_state = 2}, - [2881] = {.lex_state = 630}, - [2882] = {.lex_state = 652}, - [2883] = {.lex_state = 63}, - [2884] = {.lex_state = 2}, - [2885] = {.lex_state = 576}, - [2886] = {.lex_state = 2}, - [2887] = {.lex_state = 2}, - [2888] = {.lex_state = 658}, - [2889] = {.lex_state = 2}, - [2890] = {.lex_state = 577}, - [2891] = {.lex_state = 577}, - [2892] = {.lex_state = 66}, - [2893] = {.lex_state = 576}, - [2894] = {.lex_state = 658}, - [2895] = {.lex_state = 576}, - [2896] = {.lex_state = 658}, - [2897] = {.lex_state = 576}, - [2898] = {.lex_state = 71}, - [2899] = {.lex_state = 2}, - [2900] = {.lex_state = 2}, - [2901] = {.lex_state = 2}, - [2902] = {.lex_state = 2}, - [2903] = {.lex_state = 658}, - [2904] = {.lex_state = 630}, - [2905] = {.lex_state = 624}, - [2906] = {.lex_state = 2}, - [2907] = {.lex_state = 576}, - [2908] = {.lex_state = 576}, - [2909] = {.lex_state = 2}, - [2910] = {.lex_state = 2}, - [2911] = {.lex_state = 576}, - [2912] = {.lex_state = 2}, - [2913] = {.lex_state = 2}, - [2914] = {.lex_state = 2}, - [2915] = {.lex_state = 577}, - [2916] = {.lex_state = 2}, - [2917] = {.lex_state = 624}, - [2918] = {.lex_state = 577}, - [2919] = {.lex_state = 577}, - [2920] = {.lex_state = 624}, - [2921] = {.lex_state = 624}, - [2922] = {.lex_state = 576}, - [2923] = {.lex_state = 61}, - [2924] = {.lex_state = 2}, - [2925] = {.lex_state = 2}, - [2926] = {.lex_state = 624}, - [2927] = {.lex_state = 60}, - [2928] = {.lex_state = 60}, - [2929] = {.lex_state = 624}, - [2930] = {.lex_state = 624}, - [2931] = {.lex_state = 624}, - [2932] = {.lex_state = 624}, - [2933] = {.lex_state = 624}, - [2934] = {.lex_state = 2}, - [2935] = {.lex_state = 630}, - [2936] = {.lex_state = 2}, - [2937] = {.lex_state = 577}, - [2938] = {.lex_state = 577}, - [2939] = {.lex_state = 577}, - [2940] = {.lex_state = 576}, - [2941] = {.lex_state = 66}, - [2942] = {.lex_state = 2}, - [2943] = {.lex_state = 2}, + [2850] = {.lex_state = 10}, + [2851] = {.lex_state = 10}, + [2852] = {.lex_state = 10}, + [2853] = {.lex_state = 10}, + [2854] = {.lex_state = 10}, + [2855] = {.lex_state = 578}, + [2856] = {.lex_state = 633}, + [2857] = {.lex_state = 633}, + [2858] = {.lex_state = 578}, + [2859] = {.lex_state = 633}, + [2860] = {.lex_state = 633}, + [2861] = {.lex_state = 661}, + [2862] = {.lex_state = 578}, + [2863] = {.lex_state = 578}, + [2864] = {.lex_state = 578}, + [2865] = {.lex_state = 578}, + [2866] = {.lex_state = 633}, + [2867] = {.lex_state = 10}, + [2868] = {.lex_state = 578}, + [2869] = {.lex_state = 10}, + [2870] = {.lex_state = 77}, + [2871] = {.lex_state = 633}, + [2872] = {.lex_state = 10}, + [2873] = {.lex_state = 578}, + [2874] = {.lex_state = 578}, + [2875] = {.lex_state = 661}, + [2876] = {.lex_state = 578}, + [2877] = {.lex_state = 578}, + [2878] = {.lex_state = 132, .external_lex_state = 2}, + [2879] = {.lex_state = 633}, + [2880] = {.lex_state = 10}, + [2881] = {.lex_state = 661}, + [2882] = {.lex_state = 10}, + [2883] = {.lex_state = 10}, + [2884] = {.lex_state = 633}, + [2885] = {.lex_state = 627}, + [2886] = {.lex_state = 578}, + [2887] = {.lex_state = 10}, + [2888] = {.lex_state = 118}, + [2889] = {.lex_state = 627}, + [2890] = {.lex_state = 71}, + [2891] = {.lex_state = 10}, + [2892] = {.lex_state = 10}, + [2893] = {.lex_state = 10}, + [2894] = {.lex_state = 627}, + [2895] = {.lex_state = 661}, + [2896] = {.lex_state = 661}, + [2897] = {.lex_state = 661}, + [2898] = {.lex_state = 10}, + [2899] = {.lex_state = 10}, + [2900] = {.lex_state = 633}, + [2901] = {.lex_state = 118}, + [2902] = {.lex_state = 578}, + [2903] = {.lex_state = 578}, + [2904] = {.lex_state = 578}, + [2905] = {.lex_state = 578}, + [2906] = {.lex_state = 578}, + [2907] = {.lex_state = 578}, + [2908] = {.lex_state = 578}, + [2909] = {.lex_state = 577}, + [2910] = {.lex_state = 627}, + [2911] = {.lex_state = 661}, + [2912] = {.lex_state = 661}, + [2913] = {.lex_state = 661}, + [2914] = {.lex_state = 578}, + [2915] = {.lex_state = 578}, + [2916] = {.lex_state = 578}, + [2917] = {.lex_state = 578}, + [2918] = {.lex_state = 661}, + [2919] = {.lex_state = 578}, + [2920] = {.lex_state = 627}, + [2921] = {.lex_state = 577}, + [2922] = {.lex_state = 578}, + [2923] = {.lex_state = 10}, + [2924] = {.lex_state = 661}, + [2925] = {.lex_state = 633}, + [2926] = {.lex_state = 661}, + [2927] = {.lex_state = 10}, + [2928] = {.lex_state = 661}, + [2929] = {.lex_state = 633}, + [2930] = {.lex_state = 10}, + [2931] = {.lex_state = 661}, + [2932] = {.lex_state = 577}, + [2933] = {.lex_state = 577}, + [2934] = {.lex_state = 10}, + [2935] = {.lex_state = 10}, + [2936] = {.lex_state = 577}, + [2937] = {.lex_state = 10}, + [2938] = {.lex_state = 655}, + [2939] = {.lex_state = 68}, + [2940] = {.lex_state = 578}, + [2941] = {.lex_state = 10}, + [2942] = {.lex_state = 578}, + [2943] = {.lex_state = 633}, [2944] = {.lex_state = 577}, - [2945] = {.lex_state = 60}, - [2946] = {.lex_state = 577}, - [2947] = {.lex_state = 624}, - [2948] = {.lex_state = 60}, - [2949] = {.lex_state = 190}, + [2945] = {.lex_state = 577}, + [2946] = {.lex_state = 10}, + [2947] = {.lex_state = 578}, + [2948] = {.lex_state = 10}, + [2949] = {.lex_state = 68}, [2950] = {.lex_state = 577}, - [2951] = {.lex_state = 2}, - [2952] = {.lex_state = 2}, - [2953] = {.lex_state = 577}, - [2954] = {.lex_state = 2}, - [2955] = {.lex_state = 624}, - [2956] = {.lex_state = 624}, - [2957] = {.lex_state = 624}, - [2958] = {.lex_state = 576}, - [2959] = {.lex_state = 576}, - [2960] = {.lex_state = 65}, - [2961] = {.lex_state = 60}, - [2962] = {.lex_state = 624}, - [2963] = {.lex_state = 577}, - [2964] = {.lex_state = 577}, - [2965] = {.lex_state = 576}, - [2966] = {.lex_state = 577}, - [2967] = {.lex_state = 624}, - [2968] = {.lex_state = 624}, - [2969] = {.lex_state = 60}, - [2970] = {.lex_state = 624}, - [2971] = {.lex_state = 624}, - [2972] = {.lex_state = 624}, - [2973] = {.lex_state = 624}, - [2974] = {.lex_state = 624}, - [2975] = {.lex_state = 624}, - [2976] = {.lex_state = 577}, - [2977] = {.lex_state = 624}, - [2978] = {.lex_state = 64}, - [2979] = {.lex_state = 624}, - [2980] = {.lex_state = 64}, - [2981] = {.lex_state = 624}, - [2982] = {.lex_state = 624}, - [2983] = {.lex_state = 64}, - [2984] = {.lex_state = 64}, - [2985] = {.lex_state = 624}, - [2986] = {.lex_state = 577}, - [2987] = {.lex_state = 624}, - [2988] = {.lex_state = 624}, - [2989] = {.lex_state = 64}, - [2990] = {.lex_state = 2}, - [2991] = {.lex_state = 64}, - [2992] = {.lex_state = 2}, - [2993] = {.lex_state = 64}, - [2994] = {.lex_state = 64}, - [2995] = {.lex_state = 64}, - [2996] = {.lex_state = 624}, - [2997] = {.lex_state = 624}, - [2998] = {.lex_state = 624}, - [2999] = {.lex_state = 67}, - [3000] = {.lex_state = 2}, - [3001] = {.lex_state = 658}, - [3002] = {.lex_state = 2}, - [3003] = {.lex_state = 624}, - [3004] = {.lex_state = 69}, - [3005] = {.lex_state = 624}, - [3006] = {.lex_state = 624}, - [3007] = {.lex_state = 64}, - [3008] = {.lex_state = 624}, - [3009] = {.lex_state = 624}, - [3010] = {.lex_state = 624}, - [3011] = {.lex_state = 624}, - [3012] = {.lex_state = 624}, - [3013] = {.lex_state = 624}, - [3014] = {.lex_state = 64}, - [3015] = {.lex_state = 64}, - [3016] = {.lex_state = 624}, - [3017] = {.lex_state = 624}, - [3018] = {.lex_state = 624}, - [3019] = {.lex_state = 624}, - [3020] = {.lex_state = 624}, - [3021] = {.lex_state = 624}, - [3022] = {.lex_state = 624}, - [3023] = {.lex_state = 624}, - [3024] = {.lex_state = 60}, - [3025] = {.lex_state = 624}, - [3026] = {.lex_state = 2}, - [3027] = {.lex_state = 624}, - [3028] = {.lex_state = 577}, - [3029] = {.lex_state = 577}, - [3030] = {.lex_state = 624}, - [3031] = {.lex_state = 624}, - [3032] = {.lex_state = 2}, - [3033] = {.lex_state = 624}, - [3034] = {.lex_state = 2}, - [3035] = {.lex_state = 2}, - [3036] = {.lex_state = 624}, - [3037] = {.lex_state = 624}, - [3038] = {.lex_state = 2}, - [3039] = {.lex_state = 69}, - [3040] = {.lex_state = 577}, - [3041] = {.lex_state = 577}, - [3042] = {.lex_state = 577}, - [3043] = {.lex_state = 624}, - [3044] = {.lex_state = 577}, - [3045] = {.lex_state = 630}, - [3046] = {.lex_state = 576}, - [3047] = {.lex_state = 577}, - [3048] = {.lex_state = 577}, - [3049] = {.lex_state = 624}, - [3050] = {.lex_state = 624}, - [3051] = {.lex_state = 624}, - [3052] = {.lex_state = 624}, - [3053] = {.lex_state = 2}, - [3054] = {.lex_state = 2}, - [3055] = {.lex_state = 64}, - [3056] = {.lex_state = 2}, - [3057] = {.lex_state = 577}, - [3058] = {.lex_state = 2}, - [3059] = {.lex_state = 624}, - [3060] = {.lex_state = 624}, - [3061] = {.lex_state = 2}, - [3062] = {.lex_state = 2}, - [3063] = {.lex_state = 624}, - [3064] = {.lex_state = 630}, - [3065] = {.lex_state = 48, .external_lex_state = 2}, - [3066] = {.lex_state = 624}, - [3067] = {.lex_state = 624}, - [3068] = {.lex_state = 2}, - [3069] = {.lex_state = 577}, - [3070] = {.lex_state = 624}, - [3071] = {.lex_state = 577}, - [3072] = {.lex_state = 2}, - [3073] = {.lex_state = 624}, - [3074] = {.lex_state = 624}, - [3075] = {.lex_state = 66}, - [3076] = {.lex_state = 577}, - [3077] = {.lex_state = 2}, - [3078] = {.lex_state = 624}, - [3079] = {.lex_state = 577}, - [3080] = {.lex_state = 184}, - [3081] = {.lex_state = 624}, - [3082] = {.lex_state = 66}, - [3083] = {.lex_state = 2}, - [3084] = {.lex_state = 624}, - [3085] = {.lex_state = 624}, - [3086] = {.lex_state = 624}, - [3087] = {.lex_state = 577}, - [3088] = {.lex_state = 2}, - [3089] = {.lex_state = 624}, - [3090] = {.lex_state = 68}, - [3091] = {.lex_state = 624}, - [3092] = {.lex_state = 624}, - [3093] = {.lex_state = 2}, - [3094] = {.lex_state = 624}, - [3095] = {.lex_state = 2}, - [3096] = {.lex_state = 577}, - [3097] = {.lex_state = 624}, - [3098] = {.lex_state = 624}, - [3099] = {.lex_state = 187}, - [3100] = {.lex_state = 577}, - [3101] = {.lex_state = 624}, - [3102] = {.lex_state = 577}, - [3103] = {.lex_state = 624}, - [3104] = {.lex_state = 48, .external_lex_state = 2}, - [3105] = {.lex_state = 2}, - [3106] = {.lex_state = 577}, - [3107] = {.lex_state = 624}, - [3108] = {.lex_state = 630}, - [3109] = {.lex_state = 577}, - [3110] = {.lex_state = 624}, - [3111] = {.lex_state = 624}, - [3112] = {.lex_state = 624}, + [2951] = {.lex_state = 577}, + [2952] = {.lex_state = 577}, + [2953] = {.lex_state = 578}, + [2954] = {.lex_state = 578}, + [2955] = {.lex_state = 118}, + [2956] = {.lex_state = 10}, + [2957] = {.lex_state = 10}, + [2958] = {.lex_state = 10}, + [2959] = {.lex_state = 10}, + [2960] = {.lex_state = 118}, + [2961] = {.lex_state = 118}, + [2962] = {.lex_state = 10}, + [2963] = {.lex_state = 661}, + [2964] = {.lex_state = 118}, + [2965] = {.lex_state = 578}, + [2966] = {.lex_state = 627}, + [2967] = {.lex_state = 627}, + [2968] = {.lex_state = 578}, + [2969] = {.lex_state = 627}, + [2970] = {.lex_state = 72}, + [2971] = {.lex_state = 627}, + [2972] = {.lex_state = 65}, + [2973] = {.lex_state = 10}, + [2974] = {.lex_state = 71}, + [2975] = {.lex_state = 578}, + [2976] = {.lex_state = 10}, + [2977] = {.lex_state = 578}, + [2978] = {.lex_state = 578}, + [2979] = {.lex_state = 69}, + [2980] = {.lex_state = 65}, + [2981] = {.lex_state = 70}, + [2982] = {.lex_state = 69}, + [2983] = {.lex_state = 627}, + [2984] = {.lex_state = 66}, + [2985] = {.lex_state = 10}, + [2986] = {.lex_state = 627}, + [2987] = {.lex_state = 10}, + [2988] = {.lex_state = 627}, + [2989] = {.lex_state = 578}, + [2990] = {.lex_state = 10}, + [2991] = {.lex_state = 69}, + [2992] = {.lex_state = 578}, + [2993] = {.lex_state = 627}, + [2994] = {.lex_state = 577}, + [2995] = {.lex_state = 577}, + [2996] = {.lex_state = 627}, + [2997] = {.lex_state = 10}, + [2998] = {.lex_state = 577}, + [2999] = {.lex_state = 10}, + [3000] = {.lex_state = 10}, + [3001] = {.lex_state = 578}, + [3002] = {.lex_state = 627}, + [3003] = {.lex_state = 627}, + [3004] = {.lex_state = 627}, + [3005] = {.lex_state = 627}, + [3006] = {.lex_state = 627}, + [3007] = {.lex_state = 627}, + [3008] = {.lex_state = 69}, + [3009] = {.lex_state = 627}, + [3010] = {.lex_state = 627}, + [3011] = {.lex_state = 578}, + [3012] = {.lex_state = 627}, + [3013] = {.lex_state = 627}, + [3014] = {.lex_state = 627}, + [3015] = {.lex_state = 627}, + [3016] = {.lex_state = 10}, + [3017] = {.lex_state = 10}, + [3018] = {.lex_state = 69}, + [3019] = {.lex_state = 627}, + [3020] = {.lex_state = 69}, + [3021] = {.lex_state = 627}, + [3022] = {.lex_state = 627}, + [3023] = {.lex_state = 627}, + [3024] = {.lex_state = 627}, + [3025] = {.lex_state = 627}, + [3026] = {.lex_state = 10}, + [3027] = {.lex_state = 627}, + [3028] = {.lex_state = 627}, + [3029] = {.lex_state = 633}, + [3030] = {.lex_state = 627}, + [3031] = {.lex_state = 578}, + [3032] = {.lex_state = 633}, + [3033] = {.lex_state = 661}, + [3034] = {.lex_state = 627}, + [3035] = {.lex_state = 577}, + [3036] = {.lex_state = 627}, + [3037] = {.lex_state = 578}, + [3038] = {.lex_state = 627}, + [3039] = {.lex_state = 627}, + [3040] = {.lex_state = 627}, + [3041] = {.lex_state = 627}, + [3042] = {.lex_state = 627}, + [3043] = {.lex_state = 39, .external_lex_state = 2}, + [3044] = {.lex_state = 10}, + [3045] = {.lex_state = 627}, + [3046] = {.lex_state = 633}, + [3047] = {.lex_state = 69}, + [3048] = {.lex_state = 627}, + [3049] = {.lex_state = 627}, + [3050] = {.lex_state = 578}, + [3051] = {.lex_state = 627}, + [3052] = {.lex_state = 10}, + [3053] = {.lex_state = 627}, + [3054] = {.lex_state = 578}, + [3055] = {.lex_state = 578}, + [3056] = {.lex_state = 10}, + [3057] = {.lex_state = 10}, + [3058] = {.lex_state = 627}, + [3059] = {.lex_state = 69}, + [3060] = {.lex_state = 627}, + [3061] = {.lex_state = 69}, + [3062] = {.lex_state = 627}, + [3063] = {.lex_state = 69}, + [3064] = {.lex_state = 10}, + [3065] = {.lex_state = 10}, + [3066] = {.lex_state = 10}, + [3067] = {.lex_state = 627}, + [3068] = {.lex_state = 627}, + [3069] = {.lex_state = 627}, + [3070] = {.lex_state = 74}, + [3071] = {.lex_state = 578}, + [3072] = {.lex_state = 10}, + [3073] = {.lex_state = 627}, + [3074] = {.lex_state = 65}, + [3075] = {.lex_state = 577}, + [3076] = {.lex_state = 627}, + [3077] = {.lex_state = 578}, + [3078] = {.lex_state = 627}, + [3079] = {.lex_state = 578}, + [3080] = {.lex_state = 10}, + [3081] = {.lex_state = 627}, + [3082] = {.lex_state = 65}, + [3083] = {.lex_state = 69}, + [3084] = {.lex_state = 65}, + [3085] = {.lex_state = 65}, + [3086] = {.lex_state = 578}, + [3087] = {.lex_state = 578}, + [3088] = {.lex_state = 10}, + [3089] = {.lex_state = 10}, + [3090] = {.lex_state = 578}, + [3091] = {.lex_state = 10}, + [3092] = {.lex_state = 627}, + [3093] = {.lex_state = 10}, + [3094] = {.lex_state = 10}, + [3095] = {.lex_state = 627}, + [3096] = {.lex_state = 578}, + [3097] = {.lex_state = 627}, + [3098] = {.lex_state = 578}, + [3099] = {.lex_state = 578}, + [3100] = {.lex_state = 627}, + [3101] = {.lex_state = 627}, + [3102] = {.lex_state = 195}, + [3103] = {.lex_state = 627}, + [3104] = {.lex_state = 627}, + [3105] = {.lex_state = 69}, + [3106] = {.lex_state = 69}, + [3107] = {.lex_state = 627}, + [3108] = {.lex_state = 627}, + [3109] = {.lex_state = 578}, + [3110] = {.lex_state = 74}, + [3111] = {.lex_state = 627}, + [3112] = {.lex_state = 627}, [3113] = {.lex_state = 577}, - [3114] = {.lex_state = 577}, - [3115] = {.lex_state = 577}, - [3116] = {.lex_state = 2}, - [3117] = {.lex_state = 71}, - [3118] = {.lex_state = 577}, - [3119] = {.lex_state = 190}, - [3120] = {.lex_state = 2}, - [3121] = {.lex_state = 624}, - [3122] = {.lex_state = 624}, - [3123] = {.lex_state = 624}, - [3124] = {.lex_state = 624}, - [3125] = {.lex_state = 624}, - [3126] = {.lex_state = 624}, - [3127] = {.lex_state = 68}, - [3128] = {.lex_state = 64}, - [3129] = {.lex_state = 60}, - [3130] = {.lex_state = 624}, - [3131] = {.lex_state = 2}, - [3132] = {.lex_state = 624}, - [3133] = {.lex_state = 624}, - [3134] = {.lex_state = 577}, - [3135] = {.lex_state = 624}, - [3136] = {.lex_state = 577}, - [3137] = {.lex_state = 2}, - [3138] = {.lex_state = 624}, - [3139] = {.lex_state = 2}, - [3140] = {.lex_state = 2}, - [3141] = {.lex_state = 624}, - [3142] = {.lex_state = 2}, - [3143] = {.lex_state = 624}, - [3144] = {.lex_state = 2}, - [3145] = {.lex_state = 577}, - [3146] = {.lex_state = 577}, - [3147] = {.lex_state = 624}, - [3148] = {.lex_state = 624}, - [3149] = {.lex_state = 70}, - [3150] = {.lex_state = 624}, - [3151] = {.lex_state = 2}, - [3152] = {.lex_state = 624}, - [3153] = {.lex_state = 624}, - [3154] = {.lex_state = 66}, - [3155] = {.lex_state = 624}, - [3156] = {.lex_state = 624}, - [3157] = {.lex_state = 60}, - [3158] = {.lex_state = 2}, - [3159] = {.lex_state = 577}, - [3160] = {.lex_state = 66}, - [3161] = {.lex_state = 577}, - [3162] = {.lex_state = 624}, - [3163] = {.lex_state = 624}, - [3164] = {.lex_state = 70}, - [3165] = {.lex_state = 624}, - [3166] = {.lex_state = 624}, - [3167] = {.lex_state = 577}, - [3168] = {.lex_state = 624}, - [3169] = {.lex_state = 577}, - [3170] = {.lex_state = 624}, - [3171] = {.lex_state = 2}, - [3172] = {.lex_state = 2}, - [3173] = {.lex_state = 577}, - [3174] = {.lex_state = 2}, - [3175] = {.lex_state = 187}, - [3176] = {.lex_state = 624}, - [3177] = {.lex_state = 624}, - [3178] = {.lex_state = 188}, - [3179] = {.lex_state = 2}, - [3180] = {.lex_state = 624}, - [3181] = {.lex_state = 624}, - [3182] = {.lex_state = 624}, - [3183] = {.lex_state = 577}, - [3184] = {.lex_state = 577}, - [3185] = {.lex_state = 577}, - [3186] = {.lex_state = 577}, - [3187] = {.lex_state = 577}, - [3188] = {.lex_state = 577}, - [3189] = {.lex_state = 577}, - [3190] = {.lex_state = 577}, - [3191] = {.lex_state = 577}, - [3192] = {.lex_state = 577}, - [3193] = {.lex_state = 577}, - [3194] = {.lex_state = 577}, - [3195] = {.lex_state = 624}, - [3196] = {.lex_state = 624}, - [3197] = {.lex_state = 624}, - [3198] = {.lex_state = 2}, - [3199] = {.lex_state = 624}, - [3200] = {.lex_state = 184}, - [3201] = {.lex_state = 624}, - [3202] = {.lex_state = 2}, - [3203] = {.lex_state = 624}, - [3204] = {.lex_state = 624}, - [3205] = {.lex_state = 624}, - [3206] = {.lex_state = 624}, - [3207] = {.lex_state = 577}, - [3208] = {.lex_state = 624}, - [3209] = {.lex_state = 577}, - [3210] = {.lex_state = 624}, - [3211] = {.lex_state = 577}, - [3212] = {.lex_state = 624}, - [3213] = {.lex_state = 624}, - [3214] = {.lex_state = 577}, - [3215] = {.lex_state = 577}, - [3216] = {.lex_state = 2129}, - [3217] = {.lex_state = 577}, - [3218] = {.lex_state = 577}, - [3219] = {.lex_state = 2}, - [3220] = {.lex_state = 2}, - [3221] = {.lex_state = 2}, - [3222] = {.lex_state = 577}, - [3223] = {.lex_state = 577}, - [3224] = {.lex_state = 577}, - [3225] = {.lex_state = 577}, - [3226] = {.lex_state = 2}, - [3227] = {.lex_state = 577}, - [3228] = {.lex_state = 577}, - [3229] = {.lex_state = 577}, - [3230] = {.lex_state = 577}, - [3231] = {.lex_state = 2}, - [3232] = {.lex_state = 577}, - [3233] = {.lex_state = 2}, - [3234] = {.lex_state = 2}, - [3235] = {.lex_state = 190}, - [3236] = {.lex_state = 190}, - [3237] = {.lex_state = 190}, - [3238] = {.lex_state = 630}, - [3239] = {.lex_state = 2}, - [3240] = {.lex_state = 630}, - [3241] = {.lex_state = 2}, - [3242] = {.lex_state = 2}, - [3243] = {.lex_state = 2}, - [3244] = {.lex_state = 2}, - [3245] = {.lex_state = 577}, - [3246] = {.lex_state = 577}, - [3247] = {.lex_state = 577}, - [3248] = {.lex_state = 94}, - [3249] = {.lex_state = 577}, - [3250] = {.lex_state = 577}, - [3251] = {.lex_state = 2}, - [3252] = {.lex_state = 577}, - [3253] = {.lex_state = 98}, - [3254] = {.lex_state = 2}, - [3255] = {.lex_state = 577}, - [3256] = {.lex_state = 2}, - [3257] = {.lex_state = 577}, - [3258] = {.lex_state = 577}, - [3259] = {.lex_state = 577}, - [3260] = {.lex_state = 2}, - [3261] = {.lex_state = 577}, - [3262] = {.lex_state = 577}, - [3263] = {.lex_state = 577}, - [3264] = {.lex_state = 630}, - [3265] = {.lex_state = 577}, - [3266] = {.lex_state = 577}, - [3267] = {.lex_state = 77}, - [3268] = {.lex_state = 130}, - [3269] = {.lex_state = 2}, - [3270] = {.lex_state = 79}, - [3271] = {.lex_state = 2}, - [3272] = {.lex_state = 577}, - [3273] = {.lex_state = 185}, - [3274] = {.lex_state = 2}, - [3275] = {.lex_state = 2}, - [3276] = {.lex_state = 195}, - [3277] = {.lex_state = 190}, - [3278] = {.lex_state = 577}, - [3279] = {.lex_state = 2}, - [3280] = {.lex_state = 577}, - [3281] = {.lex_state = 577}, - [3282] = {.lex_state = 577}, - [3283] = {.lex_state = 577}, - [3284] = {.lex_state = 2}, - [3285] = {.lex_state = 2}, - [3286] = {.lex_state = 185}, - [3287] = {.lex_state = 577}, - [3288] = {.lex_state = 577}, - [3289] = {.lex_state = 577}, - [3290] = {.lex_state = 2}, - [3291] = {.lex_state = 577}, - [3292] = {.lex_state = 630}, - [3293] = {.lex_state = 124}, - [3294] = {.lex_state = 577}, - [3295] = {.lex_state = 577}, - [3296] = {.lex_state = 577}, - [3297] = {.lex_state = 577}, - [3298] = {.lex_state = 203}, - [3299] = {.lex_state = 577}, - [3300] = {.lex_state = 2}, - [3301] = {.lex_state = 577}, - [3302] = {.lex_state = 577}, - [3303] = {.lex_state = 577}, - [3304] = {.lex_state = 2}, - [3305] = {.lex_state = 2}, - [3306] = {.lex_state = 2}, - [3307] = {.lex_state = 577}, - [3308] = {.lex_state = 577}, - [3309] = {.lex_state = 577}, - [3310] = {.lex_state = 577}, - [3311] = {.lex_state = 577}, - [3312] = {.lex_state = 577}, - [3313] = {.lex_state = 577}, - [3314] = {.lex_state = 2}, - [3315] = {.lex_state = 577}, - [3316] = {.lex_state = 577}, - [3317] = {.lex_state = 577}, - [3318] = {.lex_state = 577}, - [3319] = {.lex_state = 577}, - [3320] = {.lex_state = 577}, - [3321] = {.lex_state = 577}, - [3322] = {.lex_state = 577}, - [3323] = {.lex_state = 577}, - [3324] = {.lex_state = 577}, - [3325] = {.lex_state = 577}, - [3326] = {.lex_state = 577}, - [3327] = {.lex_state = 577}, - [3328] = {.lex_state = 2}, - [3329] = {.lex_state = 577}, - [3330] = {.lex_state = 577}, - [3331] = {.lex_state = 183}, - [3332] = {.lex_state = 577}, - [3333] = {.lex_state = 577}, - [3334] = {.lex_state = 577}, - [3335] = {.lex_state = 190}, - [3336] = {.lex_state = 190}, - [3337] = {.lex_state = 190}, - [3338] = {.lex_state = 190}, - [3339] = {.lex_state = 2129}, - [3340] = {.lex_state = 577}, - [3341] = {.lex_state = 577}, - [3342] = {.lex_state = 186}, - [3343] = {.lex_state = 2}, - [3344] = {.lex_state = 184}, - [3345] = {.lex_state = 2}, - [3346] = {.lex_state = 577}, - [3347] = {.lex_state = 2}, - [3348] = {.lex_state = 196}, - [3349] = {.lex_state = 577}, - [3350] = {.lex_state = 204}, - [3351] = {.lex_state = 2}, - [3352] = {.lex_state = 577}, - [3353] = {.lex_state = 186}, - [3354] = {.lex_state = 577}, - [3355] = {.lex_state = 611}, - [3356] = {.lex_state = 2}, - [3357] = {.lex_state = 208}, - [3358] = {.lex_state = 80}, - [3359] = {.lex_state = 611}, - [3360] = {.lex_state = 205}, - [3361] = {.lex_state = 189}, - [3362] = {.lex_state = 95}, - [3363] = {.lex_state = 2}, - [3364] = {.lex_state = 234}, - [3365] = {.lex_state = 577}, - [3366] = {.lex_state = 81}, - [3367] = {.lex_state = 2}, - [3368] = {.lex_state = 100}, - [3369] = {.lex_state = 124}, - [3370] = {.lex_state = 205}, - [3371] = {.lex_state = 2}, - [3372] = {.lex_state = 130}, - [3373] = {.lex_state = 100}, - [3374] = {.lex_state = 2}, - [3375] = {.lex_state = 581}, - [3376] = {.lex_state = 130}, - [3377] = {.lex_state = 130}, - [3378] = {.lex_state = 124}, - [3379] = {.lex_state = 130}, - [3380] = {.lex_state = 124}, - [3381] = {.lex_state = 611}, - [3382] = {.lex_state = 130}, - [3383] = {.lex_state = 130}, - [3384] = {.lex_state = 2}, - [3385] = {.lex_state = 189}, - [3386] = {.lex_state = 124}, - [3387] = {.lex_state = 190}, - [3388] = {.lex_state = 80}, - [3389] = {.lex_state = 190}, - [3390] = {.lex_state = 99}, - [3391] = {.lex_state = 2}, - [3392] = {.lex_state = 197}, - [3393] = {.lex_state = 611}, - [3394] = {.lex_state = 2}, - [3395] = {.lex_state = 577}, - [3396] = {.lex_state = 611}, - [3397] = {.lex_state = 219}, - [3398] = {.lex_state = 206}, - [3399] = {.lex_state = 206}, - [3400] = {.lex_state = 235}, - [3401] = {.lex_state = 2130}, - [3402] = {.lex_state = 1727, .external_lex_state = 2}, - [3403] = {.lex_state = 1727, .external_lex_state = 2}, - [3404] = {.lex_state = 1727, .external_lex_state = 2}, - [3405] = {.lex_state = 2071}, - [3406] = {.lex_state = 2071}, - [3407] = {.lex_state = 81}, - [3408] = {.lex_state = 1727, .external_lex_state = 2}, - [3409] = {.lex_state = 2130}, - [3410] = {.lex_state = 2130}, - [3411] = {.lex_state = 2071}, - [3412] = {.lex_state = 101}, - [3413] = {.lex_state = 82}, - [3414] = {.lex_state = 81}, - [3415] = {.lex_state = 1727, .external_lex_state = 2}, - [3416] = {.lex_state = 199}, - [3417] = {.lex_state = 2}, - [3418] = {.lex_state = 221}, - [3419] = {.lex_state = 236}, - [3420] = {.lex_state = 2071}, - [3421] = {.lex_state = 2071}, - [3422] = {.lex_state = 1727, .external_lex_state = 2}, - [3423] = {.lex_state = 209}, - [3424] = {.lex_state = 207}, - [3425] = {.lex_state = 102}, - [3426] = {.lex_state = 104}, - [3427] = {.lex_state = 581}, - [3428] = {.lex_state = 581}, - [3429] = {.lex_state = 207}, - [3430] = {.lex_state = 2071}, - [3431] = {.lex_state = 2071}, - [3432] = {.lex_state = 581}, - [3433] = {.lex_state = 1727, .external_lex_state = 2}, - [3434] = {.lex_state = 581}, - [3435] = {.lex_state = 130}, - [3436] = {.lex_state = 2071}, - [3437] = {.lex_state = 2071}, - [3438] = {.lex_state = 1727, .external_lex_state = 2}, - [3439] = {.lex_state = 198}, - [3440] = {.lex_state = 236}, - [3441] = {.lex_state = 1727, .external_lex_state = 2}, - [3442] = {.lex_state = 2071}, - [3443] = {.lex_state = 2071}, - [3444] = {.lex_state = 1727, .external_lex_state = 2}, - [3445] = {.lex_state = 101}, - [3446] = {.lex_state = 2071}, - [3447] = {.lex_state = 2071}, - [3448] = {.lex_state = 102}, - [3449] = {.lex_state = 2175}, - [3450] = {.lex_state = 220}, - [3451] = {.lex_state = 2071}, - [3452] = {.lex_state = 207}, - [3453] = {.lex_state = 2071}, - [3454] = {.lex_state = 1727, .external_lex_state = 2}, - [3455] = {.lex_state = 2071}, - [3456] = {.lex_state = 207}, - [3457] = {.lex_state = 2175}, - [3458] = {.lex_state = 2071}, - [3459] = {.lex_state = 1727, .external_lex_state = 2}, - [3460] = {.lex_state = 220}, - [3461] = {.lex_state = 2175}, - [3462] = {.lex_state = 2175}, - [3463] = {.lex_state = 2071}, - [3464] = {.lex_state = 2071}, - [3465] = {.lex_state = 2071}, - [3466] = {.lex_state = 2071}, - [3467] = {.lex_state = 1727, .external_lex_state = 2}, - [3468] = {.lex_state = 2071}, - [3469] = {.lex_state = 2071}, - [3470] = {.lex_state = 78}, - [3471] = {.lex_state = 2071}, - [3472] = {.lex_state = 2071}, - [3473] = {.lex_state = 2071}, - [3474] = {.lex_state = 2071}, - [3475] = {.lex_state = 2071}, - [3476] = {.lex_state = 1727, .external_lex_state = 2}, - [3477] = {.lex_state = 1727, .external_lex_state = 2}, - [3478] = {.lex_state = 2130}, - [3479] = {.lex_state = 1727, .external_lex_state = 2}, - [3480] = {.lex_state = 96}, - [3481] = {.lex_state = 208}, - [3482] = {.lex_state = 210}, - [3483] = {.lex_state = 1727, .external_lex_state = 2}, - [3484] = {.lex_state = 208}, - [3485] = {.lex_state = 208}, - [3486] = {.lex_state = 1727, .external_lex_state = 2}, - [3487] = {.lex_state = 102}, - [3488] = {.lex_state = 102}, - [3489] = {.lex_state = 81}, - [3490] = {.lex_state = 1727, .external_lex_state = 2}, - [3491] = {.lex_state = 221}, - [3492] = {.lex_state = 103}, - [3493] = {.lex_state = 89}, - [3494] = {.lex_state = 581}, - [3495] = {.lex_state = 581}, - [3496] = {.lex_state = 89}, - [3497] = {.lex_state = 221}, - [3498] = {.lex_state = 581}, - [3499] = {.lex_state = 581}, - [3500] = {.lex_state = 211}, - [3501] = {.lex_state = 103}, - [3502] = {.lex_state = 581}, - [3503] = {.lex_state = 581}, - [3504] = {.lex_state = 581}, - [3505] = {.lex_state = 131}, - [3506] = {.lex_state = 581}, - [3507] = {.lex_state = 581}, - [3508] = {.lex_state = 131}, - [3509] = {.lex_state = 581}, - [3510] = {.lex_state = 581}, - [3511] = {.lex_state = 131}, - [3512] = {.lex_state = 581}, - [3513] = {.lex_state = 581}, - [3514] = {.lex_state = 105}, - [3515] = {.lex_state = 581}, - [3516] = {.lex_state = 581}, - [3517] = {.lex_state = 581}, - [3518] = {.lex_state = 241}, - [3519] = {.lex_state = 581}, - [3520] = {.lex_state = 581}, - [3521] = {.lex_state = 581}, - [3522] = {.lex_state = 581}, - [3523] = {.lex_state = 581}, - [3524] = {.lex_state = 581}, - [3525] = {.lex_state = 581}, - [3526] = {.lex_state = 81}, - [3527] = {.lex_state = 581}, - [3528] = {.lex_state = 131}, - [3529] = {.lex_state = 581}, - [3530] = {.lex_state = 581}, - [3531] = {.lex_state = 581}, - [3532] = {.lex_state = 625}, - [3533] = {.lex_state = 581}, - [3534] = {.lex_state = 106}, - [3535] = {.lex_state = 581}, - [3536] = {.lex_state = 106}, - [3537] = {.lex_state = 581}, - [3538] = {.lex_state = 237}, - [3539] = {.lex_state = 581}, - [3540] = {.lex_state = 581}, - [3541] = {.lex_state = 237}, - [3542] = {.lex_state = 221}, - [3543] = {.lex_state = 581}, - [3544] = {.lex_state = 237}, - [3545] = {.lex_state = 581}, - [3546] = {.lex_state = 237}, - [3547] = {.lex_state = 581}, - [3548] = {.lex_state = 83}, - [3549] = {.lex_state = 103}, - [3550] = {.lex_state = 581}, - [3551] = {.lex_state = 581}, - [3552] = {.lex_state = 581}, - [3553] = {.lex_state = 211}, - [3554] = {.lex_state = 97}, - [3555] = {.lex_state = 208}, - [3556] = {.lex_state = 581}, - [3557] = {.lex_state = 581}, - [3558] = {.lex_state = 581}, - [3559] = {.lex_state = 222}, - [3560] = {.lex_state = 131}, - [3561] = {.lex_state = 103}, - [3562] = {.lex_state = 89}, - [3563] = {.lex_state = 83}, - [3564] = {.lex_state = 247}, - [3565] = {.lex_state = 213}, - [3566] = {.lex_state = 581}, - [3567] = {.lex_state = 581}, - [3568] = {.lex_state = 131}, - [3569] = {.lex_state = 213}, - [3570] = {.lex_state = 625}, - [3571] = {.lex_state = 200}, - [3572] = {.lex_state = 89}, - [3573] = {.lex_state = 245}, - [3574] = {.lex_state = 245}, - [3575] = {.lex_state = 108}, - [3576] = {.lex_state = 245}, - [3577] = {.lex_state = 107}, - [3578] = {.lex_state = 212}, - [3579] = {.lex_state = 107}, - [3580] = {.lex_state = 245}, - [3581] = {.lex_state = 129}, - [3582] = {.lex_state = 2}, - [3583] = {.lex_state = 212}, - [3584] = {.lex_state = 212}, - [3585] = {.lex_state = 107}, - [3586] = {.lex_state = 245}, - [3587] = {.lex_state = 245}, - [3588] = {.lex_state = 107}, - [3589] = {.lex_state = 248}, - [3590] = {.lex_state = 223}, - [3591] = {.lex_state = 578}, - [3592] = {.lex_state = 89}, - [3593] = {.lex_state = 89}, - [3594] = {.lex_state = 245}, - [3595] = {.lex_state = 108}, - [3596] = {.lex_state = 84}, - [3597] = {.lex_state = 84}, - [3598] = {.lex_state = 84}, - [3599] = {.lex_state = 277}, - [3600] = {.lex_state = 107}, - [3601] = {.lex_state = 248}, - [3602] = {.lex_state = 245}, - [3603] = {.lex_state = 214}, - [3604] = {.lex_state = 223}, - [3605] = {.lex_state = 245}, - [3606] = {.lex_state = 214}, - [3607] = {.lex_state = 245}, - [3608] = {.lex_state = 84}, - [3609] = {.lex_state = 259}, - [3610] = {.lex_state = 131}, - [3611] = {.lex_state = 242}, - [3612] = {.lex_state = 245}, - [3613] = {.lex_state = 578}, - [3614] = {.lex_state = 84}, - [3615] = {.lex_state = 245}, - [3616] = {.lex_state = 214}, - [3617] = {.lex_state = 214}, - [3618] = {.lex_state = 214}, - [3619] = {.lex_state = 245}, - [3620] = {.lex_state = 129}, - [3621] = {.lex_state = 131}, - [3622] = {.lex_state = 243}, - [3623] = {.lex_state = 276}, - [3624] = {.lex_state = 131}, - [3625] = {.lex_state = 578}, - [3626] = {.lex_state = 224}, - [3627] = {.lex_state = 46}, - [3628] = {.lex_state = 46}, - [3629] = {.lex_state = 46}, - [3630] = {.lex_state = 86}, - [3631] = {.lex_state = 110}, - [3632] = {.lex_state = 124}, - [3633] = {.lex_state = 46}, - [3634] = {.lex_state = 578}, - [3635] = {.lex_state = 578}, - [3636] = {.lex_state = 578}, - [3637] = {.lex_state = 215}, - [3638] = {.lex_state = 124}, - [3639] = {.lex_state = 224}, - [3640] = {.lex_state = 131}, - [3641] = {.lex_state = 46}, - [3642] = {.lex_state = 46}, - [3643] = {.lex_state = 246}, - [3644] = {.lex_state = 260}, - [3645] = {.lex_state = 109}, - [3646] = {.lex_state = 31}, - [3647] = {.lex_state = 124}, - [3648] = {.lex_state = 46}, - [3649] = {.lex_state = 224}, - [3650] = {.lex_state = 31}, - [3651] = {.lex_state = 46}, + [3114] = {.lex_state = 627}, + [3115] = {.lex_state = 627}, + [3116] = {.lex_state = 627}, + [3117] = {.lex_state = 627}, + [3118] = {.lex_state = 578}, + [3119] = {.lex_state = 627}, + [3120] = {.lex_state = 10}, + [3121] = {.lex_state = 578}, + [3122] = {.lex_state = 10}, + [3123] = {.lex_state = 65}, + [3124] = {.lex_state = 627}, + [3125] = {.lex_state = 627}, + [3126] = {.lex_state = 578}, + [3127] = {.lex_state = 578}, + [3128] = {.lex_state = 627}, + [3129] = {.lex_state = 627}, + [3130] = {.lex_state = 189}, + [3131] = {.lex_state = 195}, + [3132] = {.lex_state = 10}, + [3133] = {.lex_state = 10}, + [3134] = {.lex_state = 578}, + [3135] = {.lex_state = 578}, + [3136] = {.lex_state = 627}, + [3137] = {.lex_state = 77}, + [3138] = {.lex_state = 578}, + [3139] = {.lex_state = 627}, + [3140] = {.lex_state = 65}, + [3141] = {.lex_state = 10}, + [3142] = {.lex_state = 627}, + [3143] = {.lex_state = 627}, + [3144] = {.lex_state = 627}, + [3145] = {.lex_state = 10}, + [3146] = {.lex_state = 627}, + [3147] = {.lex_state = 627}, + [3148] = {.lex_state = 627}, + [3149] = {.lex_state = 627}, + [3150] = {.lex_state = 578}, + [3151] = {.lex_state = 627}, + [3152] = {.lex_state = 10}, + [3153] = {.lex_state = 578}, + [3154] = {.lex_state = 39, .external_lex_state = 2}, + [3155] = {.lex_state = 71}, + [3156] = {.lex_state = 189}, + [3157] = {.lex_state = 71}, + [3158] = {.lex_state = 10}, + [3159] = {.lex_state = 71}, + [3160] = {.lex_state = 627}, + [3161] = {.lex_state = 10}, + [3162] = {.lex_state = 627}, + [3163] = {.lex_state = 627}, + [3164] = {.lex_state = 627}, + [3165] = {.lex_state = 627}, + [3166] = {.lex_state = 627}, + [3167] = {.lex_state = 627}, + [3168] = {.lex_state = 627}, + [3169] = {.lex_state = 627}, + [3170] = {.lex_state = 627}, + [3171] = {.lex_state = 627}, + [3172] = {.lex_state = 10}, + [3173] = {.lex_state = 633}, + [3174] = {.lex_state = 75}, + [3175] = {.lex_state = 627}, + [3176] = {.lex_state = 578}, + [3177] = {.lex_state = 627}, + [3178] = {.lex_state = 578}, + [3179] = {.lex_state = 627}, + [3180] = {.lex_state = 627}, + [3181] = {.lex_state = 627}, + [3182] = {.lex_state = 627}, + [3183] = {.lex_state = 627}, + [3184] = {.lex_state = 627}, + [3185] = {.lex_state = 627}, + [3186] = {.lex_state = 627}, + [3187] = {.lex_state = 627}, + [3188] = {.lex_state = 627}, + [3189] = {.lex_state = 627}, + [3190] = {.lex_state = 578}, + [3191] = {.lex_state = 578}, + [3192] = {.lex_state = 73}, + [3193] = {.lex_state = 73}, + [3194] = {.lex_state = 627}, + [3195] = {.lex_state = 578}, + [3196] = {.lex_state = 10}, + [3197] = {.lex_state = 75}, + [3198] = {.lex_state = 627}, + [3199] = {.lex_state = 627}, + [3200] = {.lex_state = 627}, + [3201] = {.lex_state = 578}, + [3202] = {.lex_state = 578}, + [3203] = {.lex_state = 79}, + [3204] = {.lex_state = 578}, + [3205] = {.lex_state = 578}, + [3206] = {.lex_state = 578}, + [3207] = {.lex_state = 578}, + [3208] = {.lex_state = 627}, + [3209] = {.lex_state = 193}, + [3210] = {.lex_state = 578}, + [3211] = {.lex_state = 192}, + [3212] = {.lex_state = 578}, + [3213] = {.lex_state = 578}, + [3214] = {.lex_state = 578}, + [3215] = {.lex_state = 627}, + [3216] = {.lex_state = 627}, + [3217] = {.lex_state = 627}, + [3218] = {.lex_state = 627}, + [3219] = {.lex_state = 627}, + [3220] = {.lex_state = 627}, + [3221] = {.lex_state = 627}, + [3222] = {.lex_state = 10}, + [3223] = {.lex_state = 627}, + [3224] = {.lex_state = 627}, + [3225] = {.lex_state = 627}, + [3226] = {.lex_state = 578}, + [3227] = {.lex_state = 627}, + [3228] = {.lex_state = 578}, + [3229] = {.lex_state = 578}, + [3230] = {.lex_state = 578}, + [3231] = {.lex_state = 578}, + [3232] = {.lex_state = 578}, + [3233] = {.lex_state = 578}, + [3234] = {.lex_state = 578}, + [3235] = {.lex_state = 578}, + [3236] = {.lex_state = 578}, + [3237] = {.lex_state = 578}, + [3238] = {.lex_state = 578}, + [3239] = {.lex_state = 10}, + [3240] = {.lex_state = 627}, + [3241] = {.lex_state = 10}, + [3242] = {.lex_state = 192}, + [3243] = {.lex_state = 627}, + [3244] = {.lex_state = 627}, + [3245] = {.lex_state = 627}, + [3246] = {.lex_state = 627}, + [3247] = {.lex_state = 10}, + [3248] = {.lex_state = 10}, + [3249] = {.lex_state = 10}, + [3250] = {.lex_state = 10}, + [3251] = {.lex_state = 10}, + [3252] = {.lex_state = 10}, + [3253] = {.lex_state = 10}, + [3254] = {.lex_state = 65}, + [3255] = {.lex_state = 10}, + [3256] = {.lex_state = 10}, + [3257] = {.lex_state = 71}, + [3258] = {.lex_state = 10}, + [3259] = {.lex_state = 578}, + [3260] = {.lex_state = 578}, + [3261] = {.lex_state = 627}, + [3262] = {.lex_state = 627}, + [3263] = {.lex_state = 627}, + [3264] = {.lex_state = 633}, + [3265] = {.lex_state = 578}, + [3266] = {.lex_state = 10}, + [3267] = {.lex_state = 578}, + [3268] = {.lex_state = 208}, + [3269] = {.lex_state = 578}, + [3270] = {.lex_state = 578}, + [3271] = {.lex_state = 195}, + [3272] = {.lex_state = 195}, + [3273] = {.lex_state = 578}, + [3274] = {.lex_state = 578}, + [3275] = {.lex_state = 578}, + [3276] = {.lex_state = 578}, + [3277] = {.lex_state = 10}, + [3278] = {.lex_state = 578}, + [3279] = {.lex_state = 578}, + [3280] = {.lex_state = 578}, + [3281] = {.lex_state = 195}, + [3282] = {.lex_state = 10}, + [3283] = {.lex_state = 578}, + [3284] = {.lex_state = 578}, + [3285] = {.lex_state = 578}, + [3286] = {.lex_state = 10}, + [3287] = {.lex_state = 578}, + [3288] = {.lex_state = 578}, + [3289] = {.lex_state = 2133}, + [3290] = {.lex_state = 578}, + [3291] = {.lex_state = 10}, + [3292] = {.lex_state = 578}, + [3293] = {.lex_state = 190}, + [3294] = {.lex_state = 10}, + [3295] = {.lex_state = 578}, + [3296] = {.lex_state = 578}, + [3297] = {.lex_state = 578}, + [3298] = {.lex_state = 578}, + [3299] = {.lex_state = 578}, + [3300] = {.lex_state = 578}, + [3301] = {.lex_state = 578}, + [3302] = {.lex_state = 578}, + [3303] = {.lex_state = 578}, + [3304] = {.lex_state = 578}, + [3305] = {.lex_state = 578}, + [3306] = {.lex_state = 578}, + [3307] = {.lex_state = 578}, + [3308] = {.lex_state = 208}, + [3309] = {.lex_state = 10}, + [3310] = {.lex_state = 10}, + [3311] = {.lex_state = 578}, + [3312] = {.lex_state = 104}, + [3313] = {.lex_state = 10}, + [3314] = {.lex_state = 10}, + [3315] = {.lex_state = 136}, + [3316] = {.lex_state = 578}, + [3317] = {.lex_state = 578}, + [3318] = {.lex_state = 2133}, + [3319] = {.lex_state = 578}, + [3320] = {.lex_state = 191}, + [3321] = {.lex_state = 578}, + [3322] = {.lex_state = 578}, + [3323] = {.lex_state = 578}, + [3324] = {.lex_state = 578}, + [3325] = {.lex_state = 578}, + [3326] = {.lex_state = 578}, + [3327] = {.lex_state = 578}, + [3328] = {.lex_state = 10}, + [3329] = {.lex_state = 578}, + [3330] = {.lex_state = 191}, + [3331] = {.lex_state = 578}, + [3332] = {.lex_state = 578}, + [3333] = {.lex_state = 578}, + [3334] = {.lex_state = 578}, + [3335] = {.lex_state = 633}, + [3336] = {.lex_state = 633}, + [3337] = {.lex_state = 10}, + [3338] = {.lex_state = 10}, + [3339] = {.lex_state = 10}, + [3340] = {.lex_state = 578}, + [3341] = {.lex_state = 83}, + [3342] = {.lex_state = 578}, + [3343] = {.lex_state = 10}, + [3344] = {.lex_state = 578}, + [3345] = {.lex_state = 578}, + [3346] = {.lex_state = 578}, + [3347] = {.lex_state = 195}, + [3348] = {.lex_state = 10}, + [3349] = {.lex_state = 195}, + [3350] = {.lex_state = 10}, + [3351] = {.lex_state = 201}, + [3352] = {.lex_state = 578}, + [3353] = {.lex_state = 578}, + [3354] = {.lex_state = 578}, + [3355] = {.lex_state = 578}, + [3356] = {.lex_state = 10}, + [3357] = {.lex_state = 195}, + [3358] = {.lex_state = 578}, + [3359] = {.lex_state = 10}, + [3360] = {.lex_state = 195}, + [3361] = {.lex_state = 578}, + [3362] = {.lex_state = 10}, + [3363] = {.lex_state = 578}, + [3364] = {.lex_state = 85}, + [3365] = {.lex_state = 578}, + [3366] = {.lex_state = 578}, + [3367] = {.lex_state = 10}, + [3368] = {.lex_state = 189}, + [3369] = {.lex_state = 10}, + [3370] = {.lex_state = 10}, + [3371] = {.lex_state = 633}, + [3372] = {.lex_state = 578}, + [3373] = {.lex_state = 10}, + [3374] = {.lex_state = 10}, + [3375] = {.lex_state = 10}, + [3376] = {.lex_state = 10}, + [3377] = {.lex_state = 578}, + [3378] = {.lex_state = 578}, + [3379] = {.lex_state = 10}, + [3380] = {.lex_state = 100}, + [3381] = {.lex_state = 578}, + [3382] = {.lex_state = 188}, + [3383] = {.lex_state = 10}, + [3384] = {.lex_state = 10}, + [3385] = {.lex_state = 10}, + [3386] = {.lex_state = 578}, + [3387] = {.lex_state = 578}, + [3388] = {.lex_state = 578}, + [3389] = {.lex_state = 10}, + [3390] = {.lex_state = 578}, + [3391] = {.lex_state = 578}, + [3392] = {.lex_state = 10}, + [3393] = {.lex_state = 578}, + [3394] = {.lex_state = 578}, + [3395] = {.lex_state = 200}, + [3396] = {.lex_state = 190}, + [3397] = {.lex_state = 578}, + [3398] = {.lex_state = 578}, + [3399] = {.lex_state = 578}, + [3400] = {.lex_state = 10}, + [3401] = {.lex_state = 578}, + [3402] = {.lex_state = 195}, + [3403] = {.lex_state = 578}, + [3404] = {.lex_state = 194}, + [3405] = {.lex_state = 195}, + [3406] = {.lex_state = 86}, + [3407] = {.lex_state = 86}, + [3408] = {.lex_state = 202}, + [3409] = {.lex_state = 223}, + [3410] = {.lex_state = 238}, + [3411] = {.lex_state = 239}, + [3412] = {.lex_state = 194}, + [3413] = {.lex_state = 195}, + [3414] = {.lex_state = 210}, + [3415] = {.lex_state = 210}, + [3416] = {.lex_state = 101}, + [3417] = {.lex_state = 105}, + [3418] = {.lex_state = 130}, + [3419] = {.lex_state = 10}, + [3420] = {.lex_state = 106}, + [3421] = {.lex_state = 87}, + [3422] = {.lex_state = 209}, + [3423] = {.lex_state = 612}, + [3424] = {.lex_state = 130}, + [3425] = {.lex_state = 10}, + [3426] = {.lex_state = 209}, + [3427] = {.lex_state = 10}, + [3428] = {.lex_state = 10}, + [3429] = {.lex_state = 10}, + [3430] = {.lex_state = 212}, + [3431] = {.lex_state = 578}, + [3432] = {.lex_state = 106}, + [3433] = {.lex_state = 612}, + [3434] = {.lex_state = 10}, + [3435] = {.lex_state = 10}, + [3436] = {.lex_state = 612}, + [3437] = {.lex_state = 582}, + [3438] = {.lex_state = 612}, + [3439] = {.lex_state = 612}, + [3440] = {.lex_state = 10}, + [3441] = {.lex_state = 578}, + [3442] = {.lex_state = 130}, + [3443] = {.lex_state = 225}, + [3444] = {.lex_state = 107}, + [3445] = {.lex_state = 204}, + [3446] = {.lex_state = 240}, + [3447] = {.lex_state = 87}, + [3448] = {.lex_state = 136}, + [3449] = {.lex_state = 87}, + [3450] = {.lex_state = 582}, + [3451] = {.lex_state = 240}, + [3452] = {.lex_state = 2075}, + [3453] = {.lex_state = 2075}, + [3454] = {.lex_state = 2134}, + [3455] = {.lex_state = 2134}, + [3456] = {.lex_state = 1731, .external_lex_state = 2}, + [3457] = {.lex_state = 582}, + [3458] = {.lex_state = 211}, + [3459] = {.lex_state = 582}, + [3460] = {.lex_state = 2075}, + [3461] = {.lex_state = 2075}, + [3462] = {.lex_state = 213}, + [3463] = {.lex_state = 102}, + [3464] = {.lex_state = 211}, + [3465] = {.lex_state = 224}, + [3466] = {.lex_state = 211}, + [3467] = {.lex_state = 136}, + [3468] = {.lex_state = 108}, + [3469] = {.lex_state = 212}, + [3470] = {.lex_state = 136}, + [3471] = {.lex_state = 2179}, + [3472] = {.lex_state = 2179}, + [3473] = {.lex_state = 10}, + [3474] = {.lex_state = 2134}, + [3475] = {.lex_state = 136}, + [3476] = {.lex_state = 2134}, + [3477] = {.lex_state = 203}, + [3478] = {.lex_state = 2179}, + [3479] = {.lex_state = 2179}, + [3480] = {.lex_state = 214}, + [3481] = {.lex_state = 84}, + [3482] = {.lex_state = 2075}, + [3483] = {.lex_state = 2075}, + [3484] = {.lex_state = 1731, .external_lex_state = 2}, + [3485] = {.lex_state = 211}, + [3486] = {.lex_state = 212}, + [3487] = {.lex_state = 136}, + [3488] = {.lex_state = 582}, + [3489] = {.lex_state = 136}, + [3490] = {.lex_state = 136}, + [3491] = {.lex_state = 1731, .external_lex_state = 2}, + [3492] = {.lex_state = 212}, + [3493] = {.lex_state = 2075}, + [3494] = {.lex_state = 2075}, + [3495] = {.lex_state = 108}, + [3496] = {.lex_state = 110}, + [3497] = {.lex_state = 2075}, + [3498] = {.lex_state = 2075}, + [3499] = {.lex_state = 1731, .external_lex_state = 2}, + [3500] = {.lex_state = 2075}, + [3501] = {.lex_state = 2075}, + [3502] = {.lex_state = 1731, .external_lex_state = 2}, + [3503] = {.lex_state = 2075}, + [3504] = {.lex_state = 2075}, + [3505] = {.lex_state = 1731, .external_lex_state = 2}, + [3506] = {.lex_state = 2075}, + [3507] = {.lex_state = 2075}, + [3508] = {.lex_state = 1731, .external_lex_state = 2}, + [3509] = {.lex_state = 2075}, + [3510] = {.lex_state = 2075}, + [3511] = {.lex_state = 1731, .external_lex_state = 2}, + [3512] = {.lex_state = 2075}, + [3513] = {.lex_state = 2075}, + [3514] = {.lex_state = 1731, .external_lex_state = 2}, + [3515] = {.lex_state = 2075}, + [3516] = {.lex_state = 2075}, + [3517] = {.lex_state = 1731, .external_lex_state = 2}, + [3518] = {.lex_state = 2075}, + [3519] = {.lex_state = 2075}, + [3520] = {.lex_state = 1731, .external_lex_state = 2}, + [3521] = {.lex_state = 2075}, + [3522] = {.lex_state = 2075}, + [3523] = {.lex_state = 1731, .external_lex_state = 2}, + [3524] = {.lex_state = 2075}, + [3525] = {.lex_state = 2075}, + [3526] = {.lex_state = 1731, .external_lex_state = 2}, + [3527] = {.lex_state = 1731, .external_lex_state = 2}, + [3528] = {.lex_state = 1731, .external_lex_state = 2}, + [3529] = {.lex_state = 1731, .external_lex_state = 2}, + [3530] = {.lex_state = 1731, .external_lex_state = 2}, + [3531] = {.lex_state = 1731, .external_lex_state = 2}, + [3532] = {.lex_state = 1731, .external_lex_state = 2}, + [3533] = {.lex_state = 87}, + [3534] = {.lex_state = 107}, + [3535] = {.lex_state = 88}, + [3536] = {.lex_state = 130}, + [3537] = {.lex_state = 130}, + [3538] = {.lex_state = 224}, + [3539] = {.lex_state = 108}, + [3540] = {.lex_state = 108}, + [3541] = {.lex_state = 1731, .external_lex_state = 2}, + [3542] = {.lex_state = 89}, + [3543] = {.lex_state = 582}, + [3544] = {.lex_state = 103}, + [3545] = {.lex_state = 582}, + [3546] = {.lex_state = 582}, + [3547] = {.lex_state = 95}, + [3548] = {.lex_state = 582}, + [3549] = {.lex_state = 582}, + [3550] = {.lex_state = 225}, + [3551] = {.lex_state = 95}, + [3552] = {.lex_state = 582}, + [3553] = {.lex_state = 241}, + [3554] = {.lex_state = 241}, + [3555] = {.lex_state = 582}, + [3556] = {.lex_state = 226}, + [3557] = {.lex_state = 582}, + [3558] = {.lex_state = 582}, + [3559] = {.lex_state = 112}, + [3560] = {.lex_state = 217}, + [3561] = {.lex_state = 582}, + [3562] = {.lex_state = 582}, + [3563] = {.lex_state = 215}, + [3564] = {.lex_state = 582}, + [3565] = {.lex_state = 582}, + [3566] = {.lex_state = 112}, + [3567] = {.lex_state = 205}, + [3568] = {.lex_state = 628}, + [3569] = {.lex_state = 582}, + [3570] = {.lex_state = 582}, + [3571] = {.lex_state = 582}, + [3572] = {.lex_state = 582}, + [3573] = {.lex_state = 225}, + [3574] = {.lex_state = 241}, + [3575] = {.lex_state = 582}, + [3576] = {.lex_state = 582}, + [3577] = {.lex_state = 582}, + [3578] = {.lex_state = 582}, + [3579] = {.lex_state = 582}, + [3580] = {.lex_state = 215}, + [3581] = {.lex_state = 582}, + [3582] = {.lex_state = 87}, + [3583] = {.lex_state = 109}, + [3584] = {.lex_state = 582}, + [3585] = {.lex_state = 582}, + [3586] = {.lex_state = 225}, + [3587] = {.lex_state = 217}, + [3588] = {.lex_state = 109}, + [3589] = {.lex_state = 582}, + [3590] = {.lex_state = 109}, + [3591] = {.lex_state = 212}, + [3592] = {.lex_state = 582}, + [3593] = {.lex_state = 582}, + [3594] = {.lex_state = 582}, + [3595] = {.lex_state = 582}, + [3596] = {.lex_state = 111}, + [3597] = {.lex_state = 582}, + [3598] = {.lex_state = 582}, + [3599] = {.lex_state = 582}, + [3600] = {.lex_state = 582}, + [3601] = {.lex_state = 582}, + [3602] = {.lex_state = 582}, + [3603] = {.lex_state = 582}, + [3604] = {.lex_state = 582}, + [3605] = {.lex_state = 582}, + [3606] = {.lex_state = 582}, + [3607] = {.lex_state = 241}, + [3608] = {.lex_state = 95}, + [3609] = {.lex_state = 245}, + [3610] = {.lex_state = 89}, + [3611] = {.lex_state = 628}, + [3612] = {.lex_state = 109}, + [3613] = {.lex_state = 95}, + [3614] = {.lex_state = 251}, + [3615] = {.lex_state = 582}, + [3616] = {.lex_state = 582}, + [3617] = {.lex_state = 582}, + [3618] = {.lex_state = 95}, + [3619] = {.lex_state = 249}, + [3620] = {.lex_state = 281}, + [3621] = {.lex_state = 249}, + [3622] = {.lex_state = 246}, + [3623] = {.lex_state = 263}, + [3624] = {.lex_state = 249}, + [3625] = {.lex_state = 216}, + [3626] = {.lex_state = 579}, + [3627] = {.lex_state = 227}, + [3628] = {.lex_state = 218}, + [3629] = {.lex_state = 113}, + [3630] = {.lex_state = 249}, + [3631] = {.lex_state = 114}, + [3632] = {.lex_state = 218}, + [3633] = {.lex_state = 249}, + [3634] = {.lex_state = 137}, + [3635] = {.lex_state = 113}, + [3636] = {.lex_state = 137}, + [3637] = {.lex_state = 113}, + [3638] = {.lex_state = 137}, + [3639] = {.lex_state = 114}, + [3640] = {.lex_state = 135}, + [3641] = {.lex_state = 249}, + [3642] = {.lex_state = 249}, + [3643] = {.lex_state = 137}, + [3644] = {.lex_state = 10}, + [3645] = {.lex_state = 252}, + [3646] = {.lex_state = 135}, + [3647] = {.lex_state = 249}, + [3648] = {.lex_state = 249}, + [3649] = {.lex_state = 218}, + [3650] = {.lex_state = 249}, + [3651] = {.lex_state = 113}, [3652] = {.lex_state = 249}, - [3653] = {.lex_state = 89}, - [3654] = {.lex_state = 46}, - [3655] = {.lex_state = 124}, - [3656] = {.lex_state = 31}, - [3657] = {.lex_state = 46}, - [3658] = {.lex_state = 46}, - [3659] = {.lex_state = 46}, - [3660] = {.lex_state = 129}, - [3661] = {.lex_state = 124}, - [3662] = {.lex_state = 276}, - [3663] = {.lex_state = 124}, - [3664] = {.lex_state = 124}, - [3665] = {.lex_state = 31}, - [3666] = {.lex_state = 46}, - [3667] = {.lex_state = 131}, - [3668] = {.lex_state = 131}, - [3669] = {.lex_state = 124}, - [3670] = {.lex_state = 31}, - [3671] = {.lex_state = 277}, - [3672] = {.lex_state = 207}, - [3673] = {.lex_state = 212}, - [3674] = {.lex_state = 46}, - [3675] = {.lex_state = 31}, - [3676] = {.lex_state = 130}, - [3677] = {.lex_state = 129}, - [3678] = {.lex_state = 85}, - [3679] = {.lex_state = 218}, - [3680] = {.lex_state = 109}, - [3681] = {.lex_state = 250}, - [3682] = {.lex_state = 124}, - [3683] = {.lex_state = 109}, - [3684] = {.lex_state = 124}, - [3685] = {.lex_state = 31}, - [3686] = {.lex_state = 277}, - [3687] = {.lex_state = 109}, - [3688] = {.lex_state = 46}, - [3689] = {.lex_state = 276}, - [3690] = {.lex_state = 89}, - [3691] = {.lex_state = 46}, - [3692] = {.lex_state = 124}, - [3693] = {.lex_state = 224}, - [3694] = {.lex_state = 224}, - [3695] = {.lex_state = 277}, - [3696] = {.lex_state = 131}, - [3697] = {.lex_state = 31}, - [3698] = {.lex_state = 257}, - [3699] = {.lex_state = 89}, - [3700] = {.lex_state = 117}, - [3701] = {.lex_state = 131}, - [3702] = {.lex_state = 31}, - [3703] = {.lex_state = 89}, - [3704] = {.lex_state = 129}, - [3705] = {.lex_state = 109}, - [3706] = {.lex_state = 46}, - [3707] = {.lex_state = 131}, - [3708] = {.lex_state = 46}, - [3709] = {.lex_state = 31}, - [3710] = {.lex_state = 249}, - [3711] = {.lex_state = 124}, - [3712] = {.lex_state = 131}, - [3713] = {.lex_state = 46}, - [3714] = {.lex_state = 578}, - [3715] = {.lex_state = 578}, - [3716] = {.lex_state = 46}, - [3717] = {.lex_state = 249}, - [3718] = {.lex_state = 124}, - [3719] = {.lex_state = 212}, - [3720] = {.lex_state = 277}, - [3721] = {.lex_state = 46}, - [3722] = {.lex_state = 277}, - [3723] = {.lex_state = 260}, - [3724] = {.lex_state = 46}, - [3725] = {.lex_state = 277}, - [3726] = {.lex_state = 124}, - [3727] = {.lex_state = 46}, - [3728] = {.lex_state = 31}, - [3729] = {.lex_state = 46}, - [3730] = {.lex_state = 249}, - [3731] = {.lex_state = 276}, - [3732] = {.lex_state = 0}, - [3733] = {.lex_state = 577}, - [3734] = {.lex_state = 0}, - [3735] = {.lex_state = 0}, - [3736] = {.lex_state = 0}, - [3737] = {.lex_state = 659}, - [3738] = {.lex_state = 640}, - [3739] = {.lex_state = 244}, - [3740] = {.lex_state = 625}, - [3741] = {.lex_state = 625}, - [3742] = {.lex_state = 111}, - [3743] = {.lex_state = 276}, - [3744] = {.lex_state = 276}, - [3745] = {.lex_state = 276}, - [3746] = {.lex_state = 225}, - [3747] = {.lex_state = 182}, - [3748] = {.lex_state = 2072}, - [3749] = {.lex_state = 2072}, - [3750] = {.lex_state = 249}, - [3751] = {.lex_state = 182}, - [3752] = {.lex_state = 258}, - [3753] = {.lex_state = 31}, - [3754] = {.lex_state = 31}, - [3755] = {.lex_state = 129}, - [3756] = {.lex_state = 124}, - [3757] = {.lex_state = 124}, - [3758] = {.lex_state = 129}, - [3759] = {.lex_state = 251}, - [3760] = {.lex_state = 182}, - [3761] = {.lex_state = 0}, - [3762] = {.lex_state = 31}, - [3763] = {.lex_state = 0}, - [3764] = {.lex_state = 0}, - [3765] = {.lex_state = 201}, - [3766] = {.lex_state = 256}, - [3767] = {.lex_state = 31}, - [3768] = {.lex_state = 31}, - [3769] = {.lex_state = 31}, - [3770] = {.lex_state = 124}, + [3653] = {.lex_state = 90}, + [3654] = {.lex_state = 90}, + [3655] = {.lex_state = 216}, + [3656] = {.lex_state = 252}, + [3657] = {.lex_state = 218}, + [3658] = {.lex_state = 113}, + [3659] = {.lex_state = 579}, + [3660] = {.lex_state = 90}, + [3661] = {.lex_state = 130}, + [3662] = {.lex_state = 90}, + [3663] = {.lex_state = 95}, + [3664] = {.lex_state = 90}, + [3665] = {.lex_state = 249}, + [3666] = {.lex_state = 249}, + [3667] = {.lex_state = 227}, + [3668] = {.lex_state = 137}, + [3669] = {.lex_state = 216}, + [3670] = {.lex_state = 218}, + [3671] = {.lex_state = 137}, + [3672] = {.lex_state = 625}, + [3673] = {.lex_state = 264}, + [3674] = {.lex_state = 280}, + [3675] = {.lex_state = 260}, + [3676] = {.lex_state = 280}, + [3677] = {.lex_state = 216}, + [3678] = {.lex_state = 254}, + [3679] = {.lex_state = 130}, + [3680] = {.lex_state = 95}, + [3681] = {.lex_state = 130}, + [3682] = {.lex_state = 253}, + [3683] = {.lex_state = 116}, + [3684] = {.lex_state = 95}, + [3685] = {.lex_state = 37}, + [3686] = {.lex_state = 95}, + [3687] = {.lex_state = 137}, + [3688] = {.lex_state = 137}, + [3689] = {.lex_state = 222}, + [3690] = {.lex_state = 253}, + [3691] = {.lex_state = 625}, + [3692] = {.lex_state = 130}, + [3693] = {.lex_state = 130}, + [3694] = {.lex_state = 130}, + [3695] = {.lex_state = 115}, + [3696] = {.lex_state = 37}, + [3697] = {.lex_state = 115}, + [3698] = {.lex_state = 135}, + [3699] = {.lex_state = 130}, + [3700] = {.lex_state = 216}, + [3701] = {.lex_state = 281}, + [3702] = {.lex_state = 115}, + [3703] = {.lex_state = 137}, + [3704] = {.lex_state = 37}, + [3705] = {.lex_state = 281}, + [3706] = {.lex_state = 37}, + [3707] = {.lex_state = 37}, + [3708] = {.lex_state = 37}, + [3709] = {.lex_state = 37}, + [3710] = {.lex_state = 228}, + [3711] = {.lex_state = 250}, + [3712] = {.lex_state = 37}, + [3713] = {.lex_state = 211}, + [3714] = {.lex_state = 137}, + [3715] = {.lex_state = 228}, + [3716] = {.lex_state = 579}, + [3717] = {.lex_state = 625}, + [3718] = {.lex_state = 579}, + [3719] = {.lex_state = 137}, + [3720] = {.lex_state = 130}, + [3721] = {.lex_state = 130}, + [3722] = {.lex_state = 137}, + [3723] = {.lex_state = 281}, + [3724] = {.lex_state = 625}, + [3725] = {.lex_state = 137}, + [3726] = {.lex_state = 37}, + [3727] = {.lex_state = 625}, + [3728] = {.lex_state = 91}, + [3729] = {.lex_state = 625}, + [3730] = {.lex_state = 625}, + [3731] = {.lex_state = 115}, + [3732] = {.lex_state = 123}, + [3733] = {.lex_state = 130}, + [3734] = {.lex_state = 625}, + [3735] = {.lex_state = 135}, + [3736] = {.lex_state = 228}, + [3737] = {.lex_state = 130}, + [3738] = {.lex_state = 130}, + [3739] = {.lex_state = 137}, + [3740] = {.lex_state = 228}, + [3741] = {.lex_state = 219}, + [3742] = {.lex_state = 253}, + [3743] = {.lex_state = 130}, + [3744] = {.lex_state = 37}, + [3745] = {.lex_state = 625}, + [3746] = {.lex_state = 37}, + [3747] = {.lex_state = 37}, + [3748] = {.lex_state = 37}, + [3749] = {.lex_state = 228}, + [3750] = {.lex_state = 37}, + [3751] = {.lex_state = 37}, + [3752] = {.lex_state = 37}, + [3753] = {.lex_state = 37}, + [3754] = {.lex_state = 37}, + [3755] = {.lex_state = 37}, + [3756] = {.lex_state = 37}, + [3757] = {.lex_state = 37}, + [3758] = {.lex_state = 579}, + [3759] = {.lex_state = 208}, + [3760] = {.lex_state = 579}, + [3761] = {.lex_state = 579}, + [3762] = {.lex_state = 579}, + [3763] = {.lex_state = 130}, + [3764] = {.lex_state = 95}, + [3765] = {.lex_state = 264}, + [3766] = {.lex_state = 280}, + [3767] = {.lex_state = 625}, + [3768] = {.lex_state = 37}, + [3769] = {.lex_state = 625}, + [3770] = {.lex_state = 135}, [3771] = {.lex_state = 130}, - [3772] = {.lex_state = 89}, - [3773] = {.lex_state = 124}, - [3774] = {.lex_state = 190}, - [3775] = {.lex_state = 130}, - [3776] = {.lex_state = 130}, - [3777] = {.lex_state = 130}, - [3778] = {.lex_state = 124}, - [3779] = {.lex_state = 276}, - [3780] = {.lex_state = 124}, - [3781] = {.lex_state = 182}, - [3782] = {.lex_state = 2072}, - [3783] = {.lex_state = 2072}, - [3784] = {.lex_state = 182}, - [3785] = {.lex_state = 276}, - [3786] = {.lex_state = 276}, - [3787] = {.lex_state = 0}, - [3788] = {.lex_state = 0}, - [3789] = {.lex_state = 0}, - [3790] = {.lex_state = 0}, - [3791] = {.lex_state = 129}, - [3792] = {.lex_state = 119}, - [3793] = {.lex_state = 31}, - [3794] = {.lex_state = 129}, - [3795] = {.lex_state = 129}, - [3796] = {.lex_state = 124}, - [3797] = {.lex_state = 124}, - [3798] = {.lex_state = 129}, - [3799] = {.lex_state = 129}, - [3800] = {.lex_state = 129}, - [3801] = {.lex_state = 119}, - [3802] = {.lex_state = 276}, - [3803] = {.lex_state = 577}, - [3804] = {.lex_state = 276}, - [3805] = {.lex_state = 124}, - [3806] = {.lex_state = 124}, - [3807] = {.lex_state = 124}, - [3808] = {.lex_state = 2072}, - [3809] = {.lex_state = 2072}, - [3810] = {.lex_state = 87}, - [3811] = {.lex_state = 249}, - [3812] = {.lex_state = 131}, - [3813] = {.lex_state = 87}, - [3814] = {.lex_state = 182}, - [3815] = {.lex_state = 276}, - [3816] = {.lex_state = 276}, - [3817] = {.lex_state = 114}, - [3818] = {.lex_state = 182}, - [3819] = {.lex_state = 2072}, - [3820] = {.lex_state = 2072}, - [3821] = {.lex_state = 258}, - [3822] = {.lex_state = 31}, - [3823] = {.lex_state = 182}, - [3824] = {.lex_state = 0}, - [3825] = {.lex_state = 182}, - [3826] = {.lex_state = 2072}, - [3827] = {.lex_state = 2072}, - [3828] = {.lex_state = 182}, - [3829] = {.lex_state = 182}, - [3830] = {.lex_state = 2072}, - [3831] = {.lex_state = 2072}, - [3832] = {.lex_state = 182}, - [3833] = {.lex_state = 182}, - [3834] = {.lex_state = 182}, - [3835] = {.lex_state = 182}, - [3836] = {.lex_state = 182}, - [3837] = {.lex_state = 182}, - [3838] = {.lex_state = 228}, - [3839] = {.lex_state = 124}, - [3840] = {.lex_state = 182}, - [3841] = {.lex_state = 2176}, - [3842] = {.lex_state = 2176}, - [3843] = {.lex_state = 261}, - [3844] = {.lex_state = 239}, - [3845] = {.lex_state = 31}, - [3846] = {.lex_state = 124}, - [3847] = {.lex_state = 124}, - [3848] = {.lex_state = 216}, - [3849] = {.lex_state = 640}, - [3850] = {.lex_state = 216}, - [3851] = {.lex_state = 202}, - [3852] = {.lex_state = 640}, - [3853] = {.lex_state = 251}, - [3854] = {.lex_state = 261}, - [3855] = {.lex_state = 261}, - [3856] = {.lex_state = 261}, - [3857] = {.lex_state = 124}, - [3858] = {.lex_state = 124}, - [3859] = {.lex_state = 190}, - [3860] = {.lex_state = 124}, - [3861] = {.lex_state = 124}, - [3862] = {.lex_state = 124}, - [3863] = {.lex_state = 124}, - [3864] = {.lex_state = 276}, - [3865] = {.lex_state = 276}, - [3866] = {.lex_state = 276}, - [3867] = {.lex_state = 182}, - [3868] = {.lex_state = 262}, - [3869] = {.lex_state = 640}, - [3870] = {.lex_state = 640}, - [3871] = {.lex_state = 31}, - [3872] = {.lex_state = 640}, - [3873] = {.lex_state = 611}, - [3874] = {.lex_state = 276}, - [3875] = {.lex_state = 276}, - [3876] = {.lex_state = 276}, - [3877] = {.lex_state = 256}, - [3878] = {.lex_state = 31}, - [3879] = {.lex_state = 31}, - [3880] = {.lex_state = 118}, - [3881] = {.lex_state = 276}, - [3882] = {.lex_state = 276}, - [3883] = {.lex_state = 131}, - [3884] = {.lex_state = 88}, - [3885] = {.lex_state = 88}, - [3886] = {.lex_state = 88}, - [3887] = {.lex_state = 124}, - [3888] = {.lex_state = 217}, - [3889] = {.lex_state = 120}, - [3890] = {.lex_state = 88}, - [3891] = {.lex_state = 131}, - [3892] = {.lex_state = 88}, - [3893] = {.lex_state = 276}, - [3894] = {.lex_state = 0}, - [3895] = {.lex_state = 217}, - [3896] = {.lex_state = 217}, - [3897] = {.lex_state = 120}, - [3898] = {.lex_state = 88}, - [3899] = {.lex_state = 2}, - [3900] = {.lex_state = 278}, - [3901] = {.lex_state = 131}, - [3902] = {.lex_state = 278}, - [3903] = {.lex_state = 2}, - [3904] = {.lex_state = 131}, - [3905] = {.lex_state = 88}, - [3906] = {.lex_state = 129}, - [3907] = {.lex_state = 0}, - [3908] = {.lex_state = 252}, - [3909] = {.lex_state = 625}, - [3910] = {.lex_state = 625}, - [3911] = {.lex_state = 124}, - [3912] = {.lex_state = 180}, - [3913] = {.lex_state = 278}, - [3914] = {.lex_state = 622}, - [3915] = {.lex_state = 622}, - [3916] = {.lex_state = 252}, - [3917] = {.lex_state = 625}, - [3918] = {.lex_state = 126}, - [3919] = {.lex_state = 227}, - [3920] = {.lex_state = 278}, - [3921] = {.lex_state = 625}, - [3922] = {.lex_state = 0}, - [3923] = {.lex_state = 625}, - [3924] = {.lex_state = 160}, - [3925] = {.lex_state = 180}, - [3926] = {.lex_state = 278}, - [3927] = {.lex_state = 126}, - [3928] = {.lex_state = 0}, - [3929] = {.lex_state = 31}, - [3930] = {.lex_state = 120}, - [3931] = {.lex_state = 160}, - [3932] = {.lex_state = 124}, - [3933] = {.lex_state = 33}, - [3934] = {.lex_state = 180}, - [3935] = {.lex_state = 278}, - [3936] = {.lex_state = 201}, - [3937] = {.lex_state = 180}, - [3938] = {.lex_state = 278}, - [3939] = {.lex_state = 120}, - [3940] = {.lex_state = 190}, - [3941] = {.lex_state = 226}, - [3942] = {.lex_state = 124}, - [3943] = {.lex_state = 278}, - [3944] = {.lex_state = 625}, - [3945] = {.lex_state = 252}, - [3946] = {.lex_state = 180}, - [3947] = {.lex_state = 278}, - [3948] = {.lex_state = 124}, - [3949] = {.lex_state = 278}, - [3950] = {.lex_state = 124}, - [3951] = {.lex_state = 180}, - [3952] = {.lex_state = 278}, - [3953] = {.lex_state = 124}, - [3954] = {.lex_state = 0}, - [3955] = {.lex_state = 230}, - [3956] = {.lex_state = 0}, - [3957] = {.lex_state = 278}, - [3958] = {.lex_state = 149}, - [3959] = {.lex_state = 180}, - [3960] = {.lex_state = 278}, - [3961] = {.lex_state = 149}, - [3962] = {.lex_state = 120}, - [3963] = {.lex_state = 120}, - [3964] = {.lex_state = 278}, - [3965] = {.lex_state = 120}, - [3966] = {.lex_state = 180}, - [3967] = {.lex_state = 230}, - [3968] = {.lex_state = 180}, - [3969] = {.lex_state = 31}, - [3970] = {.lex_state = 180}, - [3971] = {.lex_state = 180}, - [3972] = {.lex_state = 89}, - [3973] = {.lex_state = 625}, - [3974] = {.lex_state = 180}, - [3975] = {.lex_state = 88}, - [3976] = {.lex_state = 124}, - [3977] = {.lex_state = 180}, - [3978] = {.lex_state = 180}, - [3979] = {.lex_state = 180}, - [3980] = {.lex_state = 180}, - [3981] = {.lex_state = 180}, - [3982] = {.lex_state = 124}, - [3983] = {.lex_state = 180}, - [3984] = {.lex_state = 625}, - [3985] = {.lex_state = 278}, - [3986] = {.lex_state = 276}, - [3987] = {.lex_state = 622}, - [3988] = {.lex_state = 622}, - [3989] = {.lex_state = 581}, - [3990] = {.lex_state = 252}, - [3991] = {.lex_state = 278}, - [3992] = {.lex_state = 217}, - [3993] = {.lex_state = 180}, - [3994] = {.lex_state = 217}, - [3995] = {.lex_state = 217}, - [3996] = {.lex_state = 89}, - [3997] = {.lex_state = 88}, - [3998] = {.lex_state = 581}, - [3999] = {.lex_state = 120}, - [4000] = {.lex_state = 278}, - [4001] = {.lex_state = 120}, - [4002] = {.lex_state = 278}, - [4003] = {.lex_state = 31}, - [4004] = {.lex_state = 217}, - [4005] = {.lex_state = 278}, - [4006] = {.lex_state = 217}, - [4007] = {.lex_state = 123}, - [4008] = {.lex_state = 129}, - [4009] = {.lex_state = 89}, - [4010] = {.lex_state = 0}, - [4011] = {.lex_state = 252}, - [4012] = {.lex_state = 2}, - [4013] = {.lex_state = 577}, - [4014] = {.lex_state = 217}, - [4015] = {.lex_state = 88}, - [4016] = {.lex_state = 120}, - [4017] = {.lex_state = 88}, - [4018] = {.lex_state = 263}, - [4019] = {.lex_state = 2}, - [4020] = {.lex_state = 31}, - [4021] = {.lex_state = 120}, - [4022] = {.lex_state = 263}, - [4023] = {.lex_state = 88}, - [4024] = {.lex_state = 622}, - [4025] = {.lex_state = 124}, - [4026] = {.lex_state = 217}, - [4027] = {.lex_state = 217}, - [4028] = {.lex_state = 37}, - [4029] = {.lex_state = 88}, - [4030] = {.lex_state = 46}, - [4031] = {.lex_state = 124}, - [4032] = {.lex_state = 120}, - [4033] = {.lex_state = 217}, - [4034] = {.lex_state = 120}, - [4035] = {.lex_state = 2}, - [4036] = {.lex_state = 217}, - [4037] = {.lex_state = 652}, - [4038] = {.lex_state = 121}, - [4039] = {.lex_state = 622}, - [4040] = {.lex_state = 126}, - [4041] = {.lex_state = 227}, - [4042] = {.lex_state = 120}, - [4043] = {.lex_state = 33}, - [4044] = {.lex_state = 0}, - [4045] = {.lex_state = 121}, - [4046] = {.lex_state = 2}, - [4047] = {.lex_state = 180}, - [4048] = {.lex_state = 190}, - [4049] = {.lex_state = 31}, - [4050] = {.lex_state = 182}, - [4051] = {.lex_state = 31}, - [4052] = {.lex_state = 31}, - [4053] = {.lex_state = 31}, - [4054] = {.lex_state = 31}, - [4055] = {.lex_state = 31}, - [4056] = {.lex_state = 31}, - [4057] = {.lex_state = 31}, - [4058] = {.lex_state = 31}, - [4059] = {.lex_state = 31}, - [4060] = {.lex_state = 0}, - [4061] = {.lex_state = 0}, - [4062] = {.lex_state = 31}, - [4063] = {.lex_state = 31}, - [4064] = {.lex_state = 31}, - [4065] = {.lex_state = 31}, - [4066] = {.lex_state = 31}, - [4067] = {.lex_state = 31}, - [4068] = {.lex_state = 31}, - [4069] = {.lex_state = 31}, - [4070] = {.lex_state = 31}, - [4071] = {.lex_state = 226}, - [4072] = {.lex_state = 226}, - [4073] = {.lex_state = 31}, - [4074] = {.lex_state = 31}, - [4075] = {.lex_state = 31}, - [4076] = {.lex_state = 31}, - [4077] = {.lex_state = 31}, - [4078] = {.lex_state = 31}, - [4079] = {.lex_state = 149}, - [4080] = {.lex_state = 149}, - [4081] = {.lex_state = 0}, - [4082] = {.lex_state = 0}, - [4083] = {.lex_state = 31}, - [4084] = {.lex_state = 31}, - [4085] = {.lex_state = 31}, - [4086] = {.lex_state = 31}, - [4087] = {.lex_state = 31}, - [4088] = {.lex_state = 31}, - [4089] = {.lex_state = 226}, - [4090] = {.lex_state = 31}, - [4091] = {.lex_state = 31}, - [4092] = {.lex_state = 31}, - [4093] = {.lex_state = 31}, - [4094] = {.lex_state = 31}, - [4095] = {.lex_state = 31}, - [4096] = {.lex_state = 31}, - [4097] = {.lex_state = 31}, - [4098] = {.lex_state = 31}, - [4099] = {.lex_state = 31}, - [4100] = {.lex_state = 149}, - [4101] = {.lex_state = 149}, - [4102] = {.lex_state = 149}, - [4103] = {.lex_state = 149}, - [4104] = {.lex_state = 31}, - [4105] = {.lex_state = 31}, - [4106] = {.lex_state = 31}, - [4107] = {.lex_state = 31}, - [4108] = {.lex_state = 31}, - [4109] = {.lex_state = 31}, - [4110] = {.lex_state = 31}, - [4111] = {.lex_state = 31}, - [4112] = {.lex_state = 31}, - [4113] = {.lex_state = 31}, - [4114] = {.lex_state = 231}, - [4115] = {.lex_state = 149}, - [4116] = {.lex_state = 577}, - [4117] = {.lex_state = 31}, - [4118] = {.lex_state = 231}, - [4119] = {.lex_state = 31}, - [4120] = {.lex_state = 31}, - [4121] = {.lex_state = 31}, - [4122] = {.lex_state = 31}, - [4123] = {.lex_state = 31}, - [4124] = {.lex_state = 31}, - [4125] = {.lex_state = 31}, - [4126] = {.lex_state = 0}, - [4127] = {.lex_state = 231}, - [4128] = {.lex_state = 245}, - [4129] = {.lex_state = 190}, - [4130] = {.lex_state = 190}, - [4131] = {.lex_state = 124}, - [4132] = {.lex_state = 0}, - [4133] = {.lex_state = 231}, - [4134] = {.lex_state = 577}, - [4135] = {.lex_state = 577}, - [4136] = {.lex_state = 577}, - [4137] = {.lex_state = 231}, - [4138] = {.lex_state = 124}, - [4139] = {.lex_state = 124}, - [4140] = {.lex_state = 31}, - [4141] = {.lex_state = 31}, - [4142] = {.lex_state = 31}, - [4143] = {.lex_state = 577}, - [4144] = {.lex_state = 231}, - [4145] = {.lex_state = 190}, - [4146] = {.lex_state = 190}, - [4147] = {.lex_state = 31}, - [4148] = {.lex_state = 231}, - [4149] = {.lex_state = 190}, - [4150] = {.lex_state = 124}, - [4151] = {.lex_state = 577}, - [4152] = {.lex_state = 238}, - [4153] = {.lex_state = 231}, - [4154] = {.lex_state = 238}, - [4155] = {.lex_state = 190}, - [4156] = {.lex_state = 31}, - [4157] = {.lex_state = 124}, - [4158] = {.lex_state = 245}, - [4159] = {.lex_state = 231}, - [4160] = {.lex_state = 231}, - [4161] = {.lex_state = 124}, - [4162] = {.lex_state = 0}, - [4163] = {.lex_state = 0}, - [4164] = {.lex_state = 0}, - [4165] = {.lex_state = 31}, - [4166] = {.lex_state = 238}, - [4167] = {.lex_state = 42}, - [4168] = {.lex_state = 131}, - [4169] = {.lex_state = 149}, - [4170] = {.lex_state = 31}, - [4171] = {.lex_state = 42}, - [4172] = {.lex_state = 226}, - [4173] = {.lex_state = 268}, - [4174] = {.lex_state = 93}, - [4175] = {.lex_state = 245}, - [4176] = {.lex_state = 238}, - [4177] = {.lex_state = 122}, - [4178] = {.lex_state = 126}, - [4179] = {.lex_state = 190}, - [4180] = {.lex_state = 93}, - [4181] = {.lex_state = 238}, - [4182] = {.lex_state = 238}, - [4183] = {.lex_state = 126}, - [4184] = {.lex_state = 0}, - [4185] = {.lex_state = 180}, - [4186] = {.lex_state = 190}, - [4187] = {.lex_state = 190}, - [4188] = {.lex_state = 190}, - [4189] = {.lex_state = 0}, - [4190] = {.lex_state = 31}, - [4191] = {.lex_state = 190}, - [4192] = {.lex_state = 0}, - [4193] = {.lex_state = 31}, - [4194] = {.lex_state = 31}, - [4195] = {.lex_state = 122}, - [4196] = {.lex_state = 0}, - [4197] = {.lex_state = 0}, - [4198] = {.lex_state = 180}, - [4199] = {.lex_state = 226}, - [4200] = {.lex_state = 31}, - [4201] = {.lex_state = 31}, - [4202] = {.lex_state = 190}, - [4203] = {.lex_state = 31}, - [4204] = {.lex_state = 31}, - [4205] = {.lex_state = 149}, - [4206] = {.lex_state = 149}, - [4207] = {.lex_state = 124}, - [4208] = {.lex_state = 190}, - [4209] = {.lex_state = 190}, - [4210] = {.lex_state = 190}, - [4211] = {.lex_state = 124}, - [4212] = {.lex_state = 190}, - [4213] = {.lex_state = 122}, - [4214] = {.lex_state = 0}, - [4215] = {.lex_state = 190}, - [4216] = {.lex_state = 190}, - [4217] = {.lex_state = 122}, - [4218] = {.lex_state = 190}, - [4219] = {.lex_state = 122}, - [4220] = {.lex_state = 31}, - [4221] = {.lex_state = 190}, - [4222] = {.lex_state = 190}, - [4223] = {.lex_state = 122}, - [4224] = {.lex_state = 190}, - [4225] = {.lex_state = 190}, - [4226] = {.lex_state = 122}, - [4227] = {.lex_state = 122}, - [4228] = {.lex_state = 123}, - [4229] = {.lex_state = 149}, - [4230] = {.lex_state = 123}, - [4231] = {.lex_state = 123}, - [4232] = {.lex_state = 252}, - [4233] = {.lex_state = 31}, - [4234] = {.lex_state = 245}, - [4235] = {.lex_state = 190}, - [4236] = {.lex_state = 126}, - [4237] = {.lex_state = 122}, - [4238] = {.lex_state = 0}, - [4239] = {.lex_state = 31}, - [4240] = {.lex_state = 0}, - [4241] = {.lex_state = 31}, - [4242] = {.lex_state = 253}, - [4243] = {.lex_state = 126}, - [4244] = {.lex_state = 126}, - [4245] = {.lex_state = 0}, - [4246] = {.lex_state = 122}, - [4247] = {.lex_state = 122}, - [4248] = {.lex_state = 31}, - [4249] = {.lex_state = 126}, - [4250] = {.lex_state = 126}, - [4251] = {.lex_state = 126}, - [4252] = {.lex_state = 31}, - [4253] = {.lex_state = 245}, - [4254] = {.lex_state = 88}, - [4255] = {.lex_state = 31}, - [4256] = {.lex_state = 264}, - [4257] = {.lex_state = 124}, - [4258] = {.lex_state = 149}, - [4259] = {.lex_state = 31}, - [4260] = {.lex_state = 129}, - [4261] = {.lex_state = 245}, - [4262] = {.lex_state = 31}, - [4263] = {.lex_state = 124}, - [4264] = {.lex_state = 0}, - [4265] = {.lex_state = 217}, - [4266] = {.lex_state = 245}, - [4267] = {.lex_state = 622}, - [4268] = {.lex_state = 624}, - [4269] = {.lex_state = 245}, - [4270] = {.lex_state = 226}, - [4271] = {.lex_state = 624}, - [4272] = {.lex_state = 226}, - [4273] = {.lex_state = 190}, - [4274] = {.lex_state = 245}, - [4275] = {.lex_state = 231}, - [4276] = {.lex_state = 625}, - [4277] = {.lex_state = 190}, - [4278] = {.lex_state = 245}, - [4279] = {.lex_state = 231}, - [4280] = {.lex_state = 149}, - [4281] = {.lex_state = 231}, - [4282] = {.lex_state = 245}, - [4283] = {.lex_state = 124}, - [4284] = {.lex_state = 245}, - [4285] = {.lex_state = 31}, - [4286] = {.lex_state = 31}, - [4287] = {.lex_state = 31}, - [4288] = {.lex_state = 31}, - [4289] = {.lex_state = 31}, - [4290] = {.lex_state = 31}, - [4291] = {.lex_state = 577}, - [4292] = {.lex_state = 0}, - [4293] = {.lex_state = 252}, - [4294] = {.lex_state = 149}, - [4295] = {.lex_state = 42}, - [4296] = {.lex_state = 149}, - [4297] = {.lex_state = 0}, - [4298] = {.lex_state = 0}, - [4299] = {.lex_state = 245}, - [4300] = {.lex_state = 31}, - [4301] = {.lex_state = 31}, - [4302] = {.lex_state = 31}, - [4303] = {.lex_state = 577}, - [4304] = {.lex_state = 31}, - [4305] = {.lex_state = 31}, - [4306] = {.lex_state = 31}, - [4307] = {.lex_state = 124}, - [4308] = {.lex_state = 226}, - [4309] = {.lex_state = 226}, - [4310] = {.lex_state = 182}, - [4311] = {.lex_state = 217}, - [4312] = {.lex_state = 124}, - [4313] = {.lex_state = 89}, - [4314] = {.lex_state = 182}, - [4315] = {.lex_state = 124}, - [4316] = {.lex_state = 624}, - [4317] = {.lex_state = 0}, - [4318] = {.lex_state = 124}, - [4319] = {.lex_state = 0}, - [4320] = {.lex_state = 124}, - [4321] = {.lex_state = 124}, - [4322] = {.lex_state = 129}, - [4323] = {.lex_state = 31}, - [4324] = {.lex_state = 31}, - [4325] = {.lex_state = 190}, - [4326] = {.lex_state = 190}, - [4327] = {.lex_state = 31}, - [4328] = {.lex_state = 124}, - [4329] = {.lex_state = 0}, - [4330] = {.lex_state = 124}, - [4331] = {.lex_state = 31}, - [4332] = {.lex_state = 264}, - [4333] = {.lex_state = 245}, - [4334] = {.lex_state = 245}, - [4335] = {.lex_state = 264}, - [4336] = {.lex_state = 264}, - [4337] = {.lex_state = 31}, - [4338] = {.lex_state = 0}, - [4339] = {.lex_state = 129}, - [4340] = {.lex_state = 264}, - [4341] = {.lex_state = 31}, - [4342] = {.lex_state = 31}, - [4343] = {.lex_state = 31}, - [4344] = {.lex_state = 31}, - [4345] = {.lex_state = 124}, - [4346] = {.lex_state = 31}, - [4347] = {.lex_state = 245}, - [4348] = {.lex_state = 122}, - [4349] = {.lex_state = 124}, - [4350] = {.lex_state = 31}, - [4351] = {.lex_state = 31}, - [4352] = {.lex_state = 0}, - [4353] = {.lex_state = 122}, - [4354] = {.lex_state = 122}, + [3772] = {.lex_state = 92}, + [3773] = {.lex_state = 130}, + [3774] = {.lex_state = 247}, + [3775] = {.lex_state = 37}, + [3776] = {.lex_state = 253}, + [3777] = {.lex_state = 115}, + [3778] = {.lex_state = 281}, + [3779] = {.lex_state = 281}, + [3780] = {.lex_state = 281}, + [3781] = {.lex_state = 37}, + [3782] = {.lex_state = 187}, + [3783] = {.lex_state = 130}, + [3784] = {.lex_state = 625}, + [3785] = {.lex_state = 130}, + [3786] = {.lex_state = 248}, + [3787] = {.lex_state = 625}, + [3788] = {.lex_state = 130}, + [3789] = {.lex_state = 187}, + [3790] = {.lex_state = 117}, + [3791] = {.lex_state = 2076}, + [3792] = {.lex_state = 2076}, + [3793] = {.lex_state = 625}, + [3794] = {.lex_state = 229}, + [3795] = {.lex_state = 625}, + [3796] = {.lex_state = 280}, + [3797] = {.lex_state = 135}, + [3798] = {.lex_state = 187}, + [3799] = {.lex_state = 280}, + [3800] = {.lex_state = 280}, + [3801] = {.lex_state = 625}, + [3802] = {.lex_state = 280}, + [3803] = {.lex_state = 187}, + [3804] = {.lex_state = 2076}, + [3805] = {.lex_state = 2076}, + [3806] = {.lex_state = 625}, + [3807] = {.lex_state = 206}, + [3808] = {.lex_state = 125}, + [3809] = {.lex_state = 187}, + [3810] = {.lex_state = 135}, + [3811] = {.lex_state = 135}, + [3812] = {.lex_state = 135}, + [3813] = {.lex_state = 628}, + [3814] = {.lex_state = 187}, + [3815] = {.lex_state = 187}, + [3816] = {.lex_state = 120}, + [3817] = {.lex_state = 187}, + [3818] = {.lex_state = 2076}, + [3819] = {.lex_state = 187}, + [3820] = {.lex_state = 2076}, + [3821] = {.lex_state = 253}, + [3822] = {.lex_state = 625}, + [3823] = {.lex_state = 130}, + [3824] = {.lex_state = 625}, + [3825] = {.lex_state = 187}, + [3826] = {.lex_state = 625}, + [3827] = {.lex_state = 187}, + [3828] = {.lex_state = 195}, + [3829] = {.lex_state = 2180}, + [3830] = {.lex_state = 130}, + [3831] = {.lex_state = 187}, + [3832] = {.lex_state = 639}, + [3833] = {.lex_state = 187}, + [3834] = {.lex_state = 130}, + [3835] = {.lex_state = 2076}, + [3836] = {.lex_state = 2076}, + [3837] = {.lex_state = 195}, + [3838] = {.lex_state = 639}, + [3839] = {.lex_state = 130}, + [3840] = {.lex_state = 280}, + [3841] = {.lex_state = 130}, + [3842] = {.lex_state = 253}, + [3843] = {.lex_state = 662}, + [3844] = {.lex_state = 625}, + [3845] = {.lex_state = 628}, + [3846] = {.lex_state = 220}, + [3847] = {.lex_state = 280}, + [3848] = {.lex_state = 625}, + [3849] = {.lex_state = 625}, + [3850] = {.lex_state = 220}, + [3851] = {.lex_state = 639}, + [3852] = {.lex_state = 639}, + [3853] = {.lex_state = 639}, + [3854] = {.lex_state = 639}, + [3855] = {.lex_state = 130}, + [3856] = {.lex_state = 243}, + [3857] = {.lex_state = 625}, + [3858] = {.lex_state = 2180}, + [3859] = {.lex_state = 135}, + [3860] = {.lex_state = 135}, + [3861] = {.lex_state = 135}, + [3862] = {.lex_state = 612}, + [3863] = {.lex_state = 207}, + [3864] = {.lex_state = 280}, + [3865] = {.lex_state = 125}, + [3866] = {.lex_state = 280}, + [3867] = {.lex_state = 261}, + [3868] = {.lex_state = 578}, + [3869] = {.lex_state = 625}, + [3870] = {.lex_state = 255}, + [3871] = {.lex_state = 265}, + [3872] = {.lex_state = 135}, + [3873] = {.lex_state = 578}, + [3874] = {.lex_state = 265}, + [3875] = {.lex_state = 95}, + [3876] = {.lex_state = 625}, + [3877] = {.lex_state = 625}, + [3878] = {.lex_state = 625}, + [3879] = {.lex_state = 130}, + [3880] = {.lex_state = 261}, + [3881] = {.lex_state = 265}, + [3882] = {.lex_state = 625}, + [3883] = {.lex_state = 130}, + [3884] = {.lex_state = 266}, + [3885] = {.lex_state = 187}, + [3886] = {.lex_state = 2076}, + [3887] = {.lex_state = 625}, + [3888] = {.lex_state = 625}, + [3889] = {.lex_state = 130}, + [3890] = {.lex_state = 2076}, + [3891] = {.lex_state = 130}, + [3892] = {.lex_state = 130}, + [3893] = {.lex_state = 130}, + [3894] = {.lex_state = 262}, + [3895] = {.lex_state = 187}, + [3896] = {.lex_state = 280}, + [3897] = {.lex_state = 255}, + [3898] = {.lex_state = 280}, + [3899] = {.lex_state = 280}, + [3900] = {.lex_state = 280}, + [3901] = {.lex_state = 625}, + [3902] = {.lex_state = 93}, + [3903] = {.lex_state = 262}, + [3904] = {.lex_state = 625}, + [3905] = {.lex_state = 124}, + [3906] = {.lex_state = 130}, + [3907] = {.lex_state = 625}, + [3908] = {.lex_state = 187}, + [3909] = {.lex_state = 2076}, + [3910] = {.lex_state = 2076}, + [3911] = {.lex_state = 130}, + [3912] = {.lex_state = 130}, + [3913] = {.lex_state = 625}, + [3914] = {.lex_state = 93}, + [3915] = {.lex_state = 280}, + [3916] = {.lex_state = 280}, + [3917] = {.lex_state = 280}, + [3918] = {.lex_state = 280}, + [3919] = {.lex_state = 280}, + [3920] = {.lex_state = 280}, + [3921] = {.lex_state = 137}, + [3922] = {.lex_state = 187}, + [3923] = {.lex_state = 265}, + [3924] = {.lex_state = 232}, + [3925] = {.lex_state = 187}, + [3926] = {.lex_state = 187}, + [3927] = {.lex_state = 137}, + [3928] = {.lex_state = 280}, + [3929] = {.lex_state = 130}, + [3930] = {.lex_state = 628}, + [3931] = {.lex_state = 231}, + [3932] = {.lex_state = 185}, + [3933] = {.lex_state = 282}, + [3934] = {.lex_state = 132}, + [3935] = {.lex_state = 234}, + [3936] = {.lex_state = 94}, + [3937] = {.lex_state = 282}, + [3938] = {.lex_state = 282}, + [3939] = {.lex_state = 628}, + [3940] = {.lex_state = 625}, + [3941] = {.lex_state = 282}, + [3942] = {.lex_state = 625}, + [3943] = {.lex_state = 185}, + [3944] = {.lex_state = 256}, + [3945] = {.lex_state = 95}, + [3946] = {.lex_state = 126}, + [3947] = {.lex_state = 95}, + [3948] = {.lex_state = 655}, + [3949] = {.lex_state = 127}, + [3950] = {.lex_state = 185}, + [3951] = {.lex_state = 625}, + [3952] = {.lex_state = 94}, + [3953] = {.lex_state = 623}, + [3954] = {.lex_state = 127}, + [3955] = {.lex_state = 126}, + [3956] = {.lex_state = 185}, + [3957] = {.lex_state = 625}, + [3958] = {.lex_state = 94}, + [3959] = {.lex_state = 280}, + [3960] = {.lex_state = 628}, + [3961] = {.lex_state = 185}, + [3962] = {.lex_state = 282}, + [3963] = {.lex_state = 625}, + [3964] = {.lex_state = 625}, + [3965] = {.lex_state = 185}, + [3966] = {.lex_state = 185}, + [3967] = {.lex_state = 282}, + [3968] = {.lex_state = 221}, + [3969] = {.lex_state = 628}, + [3970] = {.lex_state = 623}, + [3971] = {.lex_state = 185}, + [3972] = {.lex_state = 126}, + [3973] = {.lex_state = 221}, + [3974] = {.lex_state = 185}, + [3975] = {.lex_state = 94}, + [3976] = {.lex_state = 126}, + [3977] = {.lex_state = 185}, + [3978] = {.lex_state = 126}, + [3979] = {.lex_state = 582}, + [3980] = {.lex_state = 185}, + [3981] = {.lex_state = 221}, + [3982] = {.lex_state = 126}, + [3983] = {.lex_state = 185}, + [3984] = {.lex_state = 126}, + [3985] = {.lex_state = 185}, + [3986] = {.lex_state = 256}, + [3987] = {.lex_state = 185}, + [3988] = {.lex_state = 185}, + [3989] = {.lex_state = 628}, + [3990] = {.lex_state = 282}, + [3991] = {.lex_state = 628}, + [3992] = {.lex_state = 625}, + [3993] = {.lex_state = 10}, + [3994] = {.lex_state = 256}, + [3995] = {.lex_state = 221}, + [3996] = {.lex_state = 130}, + [3997] = {.lex_state = 221}, + [3998] = {.lex_state = 625}, + [3999] = {.lex_state = 94}, + [4000] = {.lex_state = 126}, + [4001] = {.lex_state = 221}, + [4002] = {.lex_state = 94}, + [4003] = {.lex_state = 126}, + [4004] = {.lex_state = 185}, + [4005] = {.lex_state = 126}, + [4006] = {.lex_state = 623}, + [4007] = {.lex_state = 221}, + [4008] = {.lex_state = 282}, + [4009] = {.lex_state = 582}, + [4010] = {.lex_state = 135}, + [4011] = {.lex_state = 130}, + [4012] = {.lex_state = 135}, + [4013] = {.lex_state = 137}, + [4014] = {.lex_state = 130}, + [4015] = {.lex_state = 94}, + [4016] = {.lex_state = 46}, + [4017] = {.lex_state = 94}, + [4018] = {.lex_state = 282}, + [4019] = {.lex_state = 132}, + [4020] = {.lex_state = 267}, + [4021] = {.lex_state = 221}, + [4022] = {.lex_state = 126}, + [4023] = {.lex_state = 130}, + [4024] = {.lex_state = 130}, + [4025] = {.lex_state = 126}, + [4026] = {.lex_state = 185}, + [4027] = {.lex_state = 282}, + [4028] = {.lex_state = 195}, + [4029] = {.lex_state = 94}, + [4030] = {.lex_state = 129}, + [4031] = {.lex_state = 234}, + [4032] = {.lex_state = 130}, + [4033] = {.lex_state = 280}, + [4034] = {.lex_state = 42}, + [4035] = {.lex_state = 267}, + [4036] = {.lex_state = 578}, + [4037] = {.lex_state = 95}, + [4038] = {.lex_state = 282}, + [4039] = {.lex_state = 256}, + [4040] = {.lex_state = 256}, + [4041] = {.lex_state = 282}, + [4042] = {.lex_state = 623}, + [4043] = {.lex_state = 230}, + [4044] = {.lex_state = 221}, + [4045] = {.lex_state = 625}, + [4046] = {.lex_state = 185}, + [4047] = {.lex_state = 628}, + [4048] = {.lex_state = 10}, + [4049] = {.lex_state = 185}, + [4050] = {.lex_state = 126}, + [4051] = {.lex_state = 282}, + [4052] = {.lex_state = 137}, + [4053] = {.lex_state = 221}, + [4054] = {.lex_state = 185}, + [4055] = {.lex_state = 282}, + [4056] = {.lex_state = 221}, + [4057] = {.lex_state = 221}, + [4058] = {.lex_state = 130}, + [4059] = {.lex_state = 185}, + [4060] = {.lex_state = 94}, + [4061] = {.lex_state = 282}, + [4062] = {.lex_state = 623}, + [4063] = {.lex_state = 94}, + [4064] = {.lex_state = 130}, + [4065] = {.lex_state = 282}, + [4066] = {.lex_state = 625}, + [4067] = {.lex_state = 282}, + [4068] = {.lex_state = 10}, + [4069] = {.lex_state = 94}, + [4070] = {.lex_state = 623}, + [4071] = {.lex_state = 42}, + [4072] = {.lex_state = 185}, + [4073] = {.lex_state = 10}, + [4074] = {.lex_state = 94}, + [4075] = {.lex_state = 625}, + [4076] = {.lex_state = 282}, + [4077] = {.lex_state = 10}, + [4078] = {.lex_state = 132}, + [4079] = {.lex_state = 206}, + [4080] = {.lex_state = 10}, + [4081] = {.lex_state = 37}, + [4082] = {.lex_state = 231}, + [4083] = {.lex_state = 628}, + [4084] = {.lex_state = 625}, + [4085] = {.lex_state = 282}, + [4086] = {.lex_state = 221}, + [4087] = {.lex_state = 126}, + [4088] = {.lex_state = 130}, + [4089] = {.lex_state = 625}, + [4090] = {.lex_state = 249}, + [4091] = {.lex_state = 132}, + [4092] = {.lex_state = 129}, + [4093] = {.lex_state = 257}, + [4094] = {.lex_state = 625}, + [4095] = {.lex_state = 230}, + [4096] = {.lex_state = 578}, + [4097] = {.lex_state = 137}, + [4098] = {.lex_state = 268}, + [4099] = {.lex_state = 625}, + [4100] = {.lex_state = 625}, + [4101] = {.lex_state = 625}, + [4102] = {.lex_state = 625}, + [4103] = {.lex_state = 625}, + [4104] = {.lex_state = 132}, + [4105] = {.lex_state = 625}, + [4106] = {.lex_state = 625}, + [4107] = {.lex_state = 230}, + [4108] = {.lex_state = 230}, + [4109] = {.lex_state = 230}, + [4110] = {.lex_state = 230}, + [4111] = {.lex_state = 132}, + [4112] = {.lex_state = 268}, + [4113] = {.lex_state = 625}, + [4114] = {.lex_state = 230}, + [4115] = {.lex_state = 268}, + [4116] = {.lex_state = 268}, + [4117] = {.lex_state = 128}, + [4118] = {.lex_state = 195}, + [4119] = {.lex_state = 235}, + [4120] = {.lex_state = 94}, + [4121] = {.lex_state = 256}, + [4122] = {.lex_state = 625}, + [4123] = {.lex_state = 625}, + [4124] = {.lex_state = 135}, + [4125] = {.lex_state = 132}, + [4126] = {.lex_state = 625}, + [4127] = {.lex_state = 132}, + [4128] = {.lex_state = 578}, + [4129] = {.lex_state = 625}, + [4130] = {.lex_state = 132}, + [4131] = {.lex_state = 235}, + [4132] = {.lex_state = 195}, + [4133] = {.lex_state = 129}, + [4134] = {.lex_state = 195}, + [4135] = {.lex_state = 195}, + [4136] = {.lex_state = 627}, + [4137] = {.lex_state = 235}, + [4138] = {.lex_state = 625}, + [4139] = {.lex_state = 195}, + [4140] = {.lex_state = 130}, + [4141] = {.lex_state = 130}, + [4142] = {.lex_state = 195}, + [4143] = {.lex_state = 195}, + [4144] = {.lex_state = 130}, + [4145] = {.lex_state = 195}, + [4146] = {.lex_state = 578}, + [4147] = {.lex_state = 578}, + [4148] = {.lex_state = 578}, + [4149] = {.lex_state = 130}, + [4150] = {.lex_state = 130}, + [4151] = {.lex_state = 128}, + [4152] = {.lex_state = 128}, + [4153] = {.lex_state = 135}, + [4154] = {.lex_state = 128}, + [4155] = {.lex_state = 625}, + [4156] = {.lex_state = 130}, + [4157] = {.lex_state = 135}, + [4158] = {.lex_state = 130}, + [4159] = {.lex_state = 195}, + [4160] = {.lex_state = 625}, + [4161] = {.lex_state = 249}, + [4162] = {.lex_state = 625}, + [4163] = {.lex_state = 625}, + [4164] = {.lex_state = 130}, + [4165] = {.lex_state = 130}, + [4166] = {.lex_state = 185}, + [4167] = {.lex_state = 625}, + [4168] = {.lex_state = 623}, + [4169] = {.lex_state = 625}, + [4170] = {.lex_state = 625}, + [4171] = {.lex_state = 130}, + [4172] = {.lex_state = 625}, + [4173] = {.lex_state = 625}, + [4174] = {.lex_state = 625}, + [4175] = {.lex_state = 625}, + [4176] = {.lex_state = 128}, + [4177] = {.lex_state = 158}, + [4178] = {.lex_state = 128}, + [4179] = {.lex_state = 158}, + [4180] = {.lex_state = 625}, + [4181] = {.lex_state = 625}, + [4182] = {.lex_state = 625}, + [4183] = {.lex_state = 625}, + [4184] = {.lex_state = 625}, + [4185] = {.lex_state = 268}, + [4186] = {.lex_state = 625}, + [4187] = {.lex_state = 625}, + [4188] = {.lex_state = 130}, + [4189] = {.lex_state = 625}, + [4190] = {.lex_state = 221}, + [4191] = {.lex_state = 99}, + [4192] = {.lex_state = 230}, + [4193] = {.lex_state = 230}, + [4194] = {.lex_state = 625}, + [4195] = {.lex_state = 51}, + [4196] = {.lex_state = 625}, + [4197] = {.lex_state = 130}, + [4198] = {.lex_state = 625}, + [4199] = {.lex_state = 625}, + [4200] = {.lex_state = 625}, + [4201] = {.lex_state = 130}, + [4202] = {.lex_state = 625}, + [4203] = {.lex_state = 256}, + [4204] = {.lex_state = 187}, + [4205] = {.lex_state = 130}, + [4206] = {.lex_state = 625}, + [4207] = {.lex_state = 625}, + [4208] = {.lex_state = 625}, + [4209] = {.lex_state = 625}, + [4210] = {.lex_state = 625}, + [4211] = {.lex_state = 625}, + [4212] = {.lex_state = 235}, + [4213] = {.lex_state = 625}, + [4214] = {.lex_state = 625}, + [4215] = {.lex_state = 235}, + [4216] = {.lex_state = 129}, + [4217] = {.lex_state = 625}, + [4218] = {.lex_state = 625}, + [4219] = {.lex_state = 625}, + [4220] = {.lex_state = 625}, + [4221] = {.lex_state = 625}, + [4222] = {.lex_state = 625}, + [4223] = {.lex_state = 625}, + [4224] = {.lex_state = 235}, + [4225] = {.lex_state = 130}, + [4226] = {.lex_state = 230}, + [4227] = {.lex_state = 195}, + [4228] = {.lex_state = 235}, + [4229] = {.lex_state = 235}, + [4230] = {.lex_state = 625}, + [4231] = {.lex_state = 235}, + [4232] = {.lex_state = 235}, + [4233] = {.lex_state = 130}, + [4234] = {.lex_state = 242}, + [4235] = {.lex_state = 235}, + [4236] = {.lex_state = 242}, + [4237] = {.lex_state = 625}, + [4238] = {.lex_state = 625}, + [4239] = {.lex_state = 625}, + [4240] = {.lex_state = 625}, + [4241] = {.lex_state = 625}, + [4242] = {.lex_state = 625}, + [4243] = {.lex_state = 625}, + [4244] = {.lex_state = 625}, + [4245] = {.lex_state = 235}, + [4246] = {.lex_state = 235}, + [4247] = {.lex_state = 625}, + [4248] = {.lex_state = 195}, + [4249] = {.lex_state = 195}, + [4250] = {.lex_state = 625}, + [4251] = {.lex_state = 625}, + [4252] = {.lex_state = 249}, + [4253] = {.lex_state = 195}, + [4254] = {.lex_state = 195}, + [4255] = {.lex_state = 195}, + [4256] = {.lex_state = 195}, + [4257] = {.lex_state = 625}, + [4258] = {.lex_state = 625}, + [4259] = {.lex_state = 130}, + [4260] = {.lex_state = 625}, + [4261] = {.lex_state = 625}, + [4262] = {.lex_state = 625}, + [4263] = {.lex_state = 625}, + [4264] = {.lex_state = 249}, + [4265] = {.lex_state = 230}, + [4266] = {.lex_state = 130}, + [4267] = {.lex_state = 625}, + [4268] = {.lex_state = 249}, + [4269] = {.lex_state = 578}, + [4270] = {.lex_state = 625}, + [4271] = {.lex_state = 625}, + [4272] = {.lex_state = 625}, + [4273] = {.lex_state = 242}, + [4274] = {.lex_state = 625}, + [4275] = {.lex_state = 625}, + [4276] = {.lex_state = 249}, + [4277] = {.lex_state = 625}, + [4278] = {.lex_state = 625}, + [4279] = {.lex_state = 625}, + [4280] = {.lex_state = 195}, + [4281] = {.lex_state = 137}, + [4282] = {.lex_state = 195}, + [4283] = {.lex_state = 625}, + [4284] = {.lex_state = 249}, + [4285] = {.lex_state = 195}, + [4286] = {.lex_state = 625}, + [4287] = {.lex_state = 625}, + [4288] = {.lex_state = 625}, + [4289] = {.lex_state = 128}, + [4290] = {.lex_state = 625}, + [4291] = {.lex_state = 249}, + [4292] = {.lex_state = 625}, + [4293] = {.lex_state = 128}, + [4294] = {.lex_state = 195}, + [4295] = {.lex_state = 0}, + [4296] = {.lex_state = 625}, + [4297] = {.lex_state = 249}, + [4298] = {.lex_state = 128}, + [4299] = {.lex_state = 249}, + [4300] = {.lex_state = 249}, + [4301] = {.lex_state = 195}, + [4302] = {.lex_state = 625}, + [4303] = {.lex_state = 249}, + [4304] = {.lex_state = 625}, + [4305] = {.lex_state = 625}, + [4306] = {.lex_state = 249}, + [4307] = {.lex_state = 625}, + [4308] = {.lex_state = 625}, + [4309] = {.lex_state = 625}, + [4310] = {.lex_state = 625}, + [4311] = {.lex_state = 625}, + [4312] = {.lex_state = 625}, + [4313] = {.lex_state = 578}, + [4314] = {.lex_state = 625}, + [4315] = {.lex_state = 625}, + [4316] = {.lex_state = 628}, + [4317] = {.lex_state = 625}, + [4318] = {.lex_state = 249}, + [4319] = {.lex_state = 185}, + [4320] = {.lex_state = 578}, + [4321] = {.lex_state = 195}, + [4322] = {.lex_state = 195}, + [4323] = {.lex_state = 625}, + [4324] = {.lex_state = 625}, + [4325] = {.lex_state = 625}, + [4326] = {.lex_state = 625}, + [4327] = {.lex_state = 625}, + [4328] = {.lex_state = 625}, + [4329] = {.lex_state = 625}, + [4330] = {.lex_state = 625}, + [4331] = {.lex_state = 242}, + [4332] = {.lex_state = 128}, + [4333] = {.lex_state = 625}, + [4334] = {.lex_state = 625}, + [4335] = {.lex_state = 625}, + [4336] = {.lex_state = 625}, + [4337] = {.lex_state = 625}, + [4338] = {.lex_state = 128}, + [4339] = {.lex_state = 625}, + [4340] = {.lex_state = 625}, + [4341] = {.lex_state = 51}, + [4342] = {.lex_state = 625}, + [4343] = {.lex_state = 625}, + [4344] = {.lex_state = 625}, + [4345] = {.lex_state = 625}, + [4346] = {.lex_state = 625}, + [4347] = {.lex_state = 242}, + [4348] = {.lex_state = 242}, + [4349] = {.lex_state = 625}, + [4350] = {.lex_state = 625}, + [4351] = {.lex_state = 625}, + [4352] = {.lex_state = 625}, + [4353] = {.lex_state = 195}, + [4354] = {.lex_state = 128}, [4355] = {.lex_state = 0}, - [4356] = {.lex_state = 0}, - [4357] = {.lex_state = 0}, - [4358] = {.lex_state = 31}, - [4359] = {.lex_state = 226}, - [4360] = {.lex_state = 0}, - [4361] = {.lex_state = 0}, - [4362] = {.lex_state = 0}, - [4363] = {.lex_state = 0}, - [4364] = {.lex_state = 226}, - [4365] = {.lex_state = 226}, - [4366] = {.lex_state = 124}, - [4367] = {.lex_state = 190}, - [4368] = {.lex_state = 0}, - [4369] = {.lex_state = 124}, - [4370] = {.lex_state = 149}, - [4371] = {.lex_state = 123}, - [4372] = {.lex_state = 0}, - [4373] = {.lex_state = 0}, - [4374] = {.lex_state = 124}, - [4375] = {.lex_state = 124}, - [4376] = {.lex_state = 46}, - [4377] = {.lex_state = 0}, - [4378] = {.lex_state = 0}, - [4379] = {.lex_state = 190}, - [4380] = {.lex_state = 46}, - [4381] = {.lex_state = 0}, - [4382] = {.lex_state = 46}, - [4383] = {.lex_state = 0}, - [4384] = {.lex_state = 31}, - [4385] = {.lex_state = 93}, - [4386] = {.lex_state = 229}, - [4387] = {.lex_state = 149}, - [4388] = {.lex_state = 0}, - [4389] = {.lex_state = 93}, - [4390] = {.lex_state = 0}, - [4391] = {.lex_state = 149}, - [4392] = {.lex_state = 0}, - [4393] = {.lex_state = 123}, - [4394] = {.lex_state = 629}, - [4395] = {.lex_state = 93}, - [4396] = {.lex_state = 229}, - [4397] = {.lex_state = 129}, - [4398] = {.lex_state = 31}, - [4399] = {.lex_state = 0}, - [4400] = {.lex_state = 231}, - [4401] = {.lex_state = 124}, - [4402] = {.lex_state = 124}, - [4403] = {.lex_state = 124}, - [4404] = {.lex_state = 254}, - [4405] = {.lex_state = 31}, - [4406] = {.lex_state = 93}, - [4407] = {.lex_state = 31}, - [4408] = {.lex_state = 124}, - [4409] = {.lex_state = 0}, - [4410] = {.lex_state = 124}, - [4411] = {.lex_state = 0}, - [4412] = {.lex_state = 31}, - [4413] = {.lex_state = 126}, - [4414] = {.lex_state = 577}, - [4415] = {.lex_state = 232}, - [4416] = {.lex_state = 93}, - [4417] = {.lex_state = 31}, - [4418] = {.lex_state = 93}, - [4419] = {.lex_state = 229}, - [4420] = {.lex_state = 0}, - [4421] = {.lex_state = 93}, - [4422] = {.lex_state = 0}, - [4423] = {.lex_state = 124}, - [4424] = {.lex_state = 0}, - [4425] = {.lex_state = 0}, - [4426] = {.lex_state = 0}, - [4427] = {.lex_state = 89}, - [4428] = {.lex_state = 31}, - [4429] = {.lex_state = 0}, - [4430] = {.lex_state = 0}, - [4431] = {.lex_state = 124}, - [4432] = {.lex_state = 0}, - [4433] = {.lex_state = 0}, - [4434] = {.lex_state = 0}, - [4435] = {.lex_state = 93}, - [4436] = {.lex_state = 93}, - [4437] = {.lex_state = 0}, - [4438] = {.lex_state = 124}, - [4439] = {.lex_state = 0}, - [4440] = {.lex_state = 190}, - [4441] = {.lex_state = 190}, - [4442] = {.lex_state = 34}, - [4443] = {.lex_state = 0}, - [4444] = {.lex_state = 124}, - [4445] = {.lex_state = 124}, - [4446] = {.lex_state = 93}, - [4447] = {.lex_state = 190}, - [4448] = {.lex_state = 93}, - [4449] = {.lex_state = 0}, - [4450] = {.lex_state = 0}, - [4451] = {.lex_state = 0}, - [4452] = {.lex_state = 124}, - [4453] = {.lex_state = 0}, - [4454] = {.lex_state = 149}, - [4455] = {.lex_state = 0}, - [4456] = {.lex_state = 0}, - [4457] = {.lex_state = 0}, - [4458] = {.lex_state = 0}, - [4459] = {.lex_state = 34}, - [4460] = {.lex_state = 31}, - [4461] = {.lex_state = 124}, - [4462] = {.lex_state = 0}, - [4463] = {.lex_state = 124}, - [4464] = {.lex_state = 124}, - [4465] = {.lex_state = 0}, - [4466] = {.lex_state = 124}, - [4467] = {.lex_state = 0}, - [4468] = {.lex_state = 0}, - [4469] = {.lex_state = 629}, - [4470] = {.lex_state = 31}, - [4471] = {.lex_state = 0}, - [4472] = {.lex_state = 124}, - [4473] = {.lex_state = 0}, - [4474] = {.lex_state = 0}, - [4475] = {.lex_state = 0}, - [4476] = {.lex_state = 624}, - [4477] = {.lex_state = 0}, - [4478] = {.lex_state = 149}, - [4479] = {.lex_state = 0}, - [4480] = {.lex_state = 123}, - [4481] = {.lex_state = 126}, - [4482] = {.lex_state = 149}, - [4483] = {.lex_state = 0}, - [4484] = {.lex_state = 34}, - [4485] = {.lex_state = 278}, - [4486] = {.lex_state = 124}, - [4487] = {.lex_state = 123}, - [4488] = {.lex_state = 278}, - [4489] = {.lex_state = 149}, - [4490] = {.lex_state = 180}, - [4491] = {.lex_state = 0}, - [4492] = {.lex_state = 123}, - [4493] = {.lex_state = 34}, - [4494] = {.lex_state = 278}, - [4495] = {.lex_state = 0}, - [4496] = {.lex_state = 0}, - [4497] = {.lex_state = 0}, - [4498] = {.lex_state = 34}, - [4499] = {.lex_state = 0}, - [4500] = {.lex_state = 46}, - [4501] = {.lex_state = 0}, - [4502] = {.lex_state = 42}, - [4503] = {.lex_state = 31}, - [4504] = {.lex_state = 124}, - [4505] = {.lex_state = 190}, - [4506] = {.lex_state = 46}, - [4507] = {.lex_state = 149}, - [4508] = {.lex_state = 190}, - [4509] = {.lex_state = 190}, - [4510] = {.lex_state = 93}, - [4511] = {.lex_state = 93}, - [4512] = {.lex_state = 124}, - [4513] = {.lex_state = 0}, - [4514] = {.lex_state = 0}, - [4515] = {.lex_state = 0}, - [4516] = {.lex_state = 149}, - [4517] = {.lex_state = 124}, - [4518] = {.lex_state = 0}, - [4519] = {.lex_state = 0}, - [4520] = {.lex_state = 34}, - [4521] = {.lex_state = 31}, - [4522] = {.lex_state = 129}, - [4523] = {.lex_state = 233}, - [4524] = {.lex_state = 31}, - [4525] = {.lex_state = 124}, - [4526] = {.lex_state = 124}, - [4527] = {.lex_state = 124}, - [4528] = {.lex_state = 124}, - [4529] = {.lex_state = 0}, - [4530] = {.lex_state = 124}, - [4531] = {.lex_state = 0}, - [4532] = {.lex_state = 0}, - [4533] = {.lex_state = 0}, - [4534] = {.lex_state = 0}, - [4535] = {.lex_state = 0}, - [4536] = {.lex_state = 611}, - [4537] = {.lex_state = 124}, - [4538] = {.lex_state = 34}, - [4539] = {.lex_state = 31}, - [4540] = {.lex_state = 124}, - [4541] = {.lex_state = 149}, - [4542] = {.lex_state = 149}, - [4543] = {.lex_state = 124}, - [4544] = {.lex_state = 190}, - [4545] = {.lex_state = 190}, - [4546] = {.lex_state = 124}, - [4547] = {.lex_state = 46}, - [4548] = {.lex_state = 124}, - [4549] = {.lex_state = 31}, - [4550] = {.lex_state = 190}, - [4551] = {.lex_state = 124}, - [4552] = {.lex_state = 0}, - [4553] = {.lex_state = 124}, - [4554] = {.lex_state = 129}, - [4555] = {.lex_state = 0}, - [4556] = {.lex_state = 271}, - [4557] = {.lex_state = 124}, - [4558] = {.lex_state = 31}, - [4559] = {.lex_state = 0}, - [4560] = {.lex_state = 226}, - [4561] = {.lex_state = 271}, - [4562] = {.lex_state = 0}, - [4563] = {.lex_state = 0}, - [4564] = {.lex_state = 124}, - [4565] = {.lex_state = 0}, - [4566] = {.lex_state = 31}, - [4567] = {.lex_state = 232}, - [4568] = {.lex_state = 190}, - [4569] = {.lex_state = 124}, - [4570] = {.lex_state = 0}, - [4571] = {.lex_state = 0}, - [4572] = {.lex_state = 124}, - [4573] = {.lex_state = 0}, - [4574] = {.lex_state = 124}, - [4575] = {.lex_state = 0}, - [4576] = {.lex_state = 0}, - [4577] = {.lex_state = 0}, - [4578] = {.lex_state = 31}, - [4579] = {.lex_state = 190}, - [4580] = {.lex_state = 31}, - [4581] = {.lex_state = 269}, - [4582] = {.lex_state = 124}, - [4583] = {.lex_state = 0}, - [4584] = {.lex_state = 46}, - [4585] = {.lex_state = 93}, - [4586] = {.lex_state = 124}, - [4587] = {.lex_state = 190}, - [4588] = {.lex_state = 124}, - [4589] = {.lex_state = 31}, - [4590] = {.lex_state = 124}, - [4591] = {.lex_state = 124}, - [4592] = {.lex_state = 0}, - [4593] = {.lex_state = 0}, - [4594] = {.lex_state = 149}, - [4595] = {.lex_state = 577}, - [4596] = {.lex_state = 31}, - [4597] = {.lex_state = 31}, - [4598] = {.lex_state = 190}, - [4599] = {.lex_state = 89}, - [4600] = {.lex_state = 0}, - [4601] = {.lex_state = 0}, - [4602] = {.lex_state = 93}, - [4603] = {.lex_state = 0}, - [4604] = {.lex_state = 0}, - [4605] = {.lex_state = 0}, - [4606] = {.lex_state = 0}, - [4607] = {.lex_state = 31}, - [4608] = {.lex_state = 124}, - [4609] = {.lex_state = 0}, - [4610] = {.lex_state = 149}, - [4611] = {.lex_state = 124}, - [4612] = {.lex_state = 229}, - [4613] = {.lex_state = 149}, - [4614] = {.lex_state = 149}, - [4615] = {.lex_state = 31}, - [4616] = {.lex_state = 190}, - [4617] = {.lex_state = 124}, - [4618] = {.lex_state = 93}, - [4619] = {.lex_state = 149}, - [4620] = {.lex_state = 149}, - [4621] = {.lex_state = 124}, - [4622] = {.lex_state = 31}, - [4623] = {.lex_state = 123}, - [4624] = {.lex_state = 124}, - [4625] = {.lex_state = 1714}, - [4626] = {.lex_state = 2182}, - [4627] = {.lex_state = 2182}, - [4628] = {.lex_state = 2182}, - [4629] = {.lex_state = 2182}, - [4630] = {.lex_state = 31}, - [4631] = {.lex_state = 2182}, - [4632] = {.lex_state = 2186}, - [4633] = {.lex_state = 2182}, - [4634] = {.lex_state = 2182}, - [4635] = {.lex_state = 2182}, - [4636] = {.lex_state = 0}, - [4637] = {.lex_state = 2186}, - [4638] = {.lex_state = 2186}, - [4639] = {.lex_state = 0}, - [4640] = {.lex_state = 0}, - [4641] = {.lex_state = 0}, - [4642] = {.lex_state = 0}, - [4643] = {.lex_state = 124}, - [4644] = {.lex_state = 2182}, - [4645] = {.lex_state = 229}, - [4646] = {.lex_state = 0}, - [4647] = {.lex_state = 0}, - [4648] = {.lex_state = 0}, - [4649] = {.lex_state = 0}, - [4650] = {.lex_state = 126}, - [4651] = {.lex_state = 0}, - [4652] = {.lex_state = 0}, - [4653] = {.lex_state = 0}, - [4654] = {.lex_state = 0}, - [4655] = {.lex_state = 0}, - [4656] = {.lex_state = 0}, + [4356] = {.lex_state = 230}, + [4357] = {.lex_state = 625}, + [4358] = {.lex_state = 230}, + [4359] = {.lex_state = 625}, + [4360] = {.lex_state = 221}, + [4361] = {.lex_state = 195}, + [4362] = {.lex_state = 95}, + [4363] = {.lex_state = 625}, + [4364] = {.lex_state = 130}, + [4365] = {.lex_state = 130}, + [4366] = {.lex_state = 625}, + [4367] = {.lex_state = 132}, + [4368] = {.lex_state = 128}, + [4369] = {.lex_state = 249}, + [4370] = {.lex_state = 249}, + [4371] = {.lex_state = 625}, + [4372] = {.lex_state = 195}, + [4373] = {.lex_state = 272}, + [4374] = {.lex_state = 132}, + [4375] = {.lex_state = 51}, + [4376] = {.lex_state = 187}, + [4377] = {.lex_state = 195}, + [4378] = {.lex_state = 99}, + [4379] = {.lex_state = 130}, + [4380] = {.lex_state = 130}, + [4381] = {.lex_state = 249}, + [4382] = {.lex_state = 627}, + [4383] = {.lex_state = 187}, + [4384] = {.lex_state = 137}, + [4385] = {.lex_state = 625}, + [4386] = {.lex_state = 625}, + [4387] = {.lex_state = 625}, + [4388] = {.lex_state = 195}, + [4389] = {.lex_state = 627}, + [4390] = {.lex_state = 625}, + [4391] = {.lex_state = 625}, + [4392] = {.lex_state = 625}, + [4393] = {.lex_state = 195}, + [4394] = {.lex_state = 128}, + [4395] = {.lex_state = 625}, + [4396] = {.lex_state = 625}, + [4397] = {.lex_state = 625}, + [4398] = {.lex_state = 195}, + [4399] = {.lex_state = 625}, + [4400] = {.lex_state = 273}, + [4401] = {.lex_state = 625}, + [4402] = {.lex_state = 258}, + [4403] = {.lex_state = 43}, + [4404] = {.lex_state = 99}, + [4405] = {.lex_state = 282}, + [4406] = {.lex_state = 130}, + [4407] = {.lex_state = 625}, + [4408] = {.lex_state = 130}, + [4409] = {.lex_state = 627}, + [4410] = {.lex_state = 625}, + [4411] = {.lex_state = 625}, + [4412] = {.lex_state = 625}, + [4413] = {.lex_state = 625}, + [4414] = {.lex_state = 625}, + [4415] = {.lex_state = 625}, + [4416] = {.lex_state = 625}, + [4417] = {.lex_state = 625}, + [4418] = {.lex_state = 195}, + [4419] = {.lex_state = 195}, + [4420] = {.lex_state = 625}, + [4421] = {.lex_state = 235}, + [4422] = {.lex_state = 130}, + [4423] = {.lex_state = 130}, + [4424] = {.lex_state = 625}, + [4425] = {.lex_state = 625}, + [4426] = {.lex_state = 130}, + [4427] = {.lex_state = 130}, + [4428] = {.lex_state = 625}, + [4429] = {.lex_state = 625}, + [4430] = {.lex_state = 625}, + [4431] = {.lex_state = 43}, + [4432] = {.lex_state = 130}, + [4433] = {.lex_state = 625}, + [4434] = {.lex_state = 130}, + [4435] = {.lex_state = 195}, + [4436] = {.lex_state = 625}, + [4437] = {.lex_state = 625}, + [4438] = {.lex_state = 625}, + [4439] = {.lex_state = 130}, + [4440] = {.lex_state = 43}, + [4441] = {.lex_state = 625}, + [4442] = {.lex_state = 625}, + [4443] = {.lex_state = 43}, + [4444] = {.lex_state = 129}, + [4445] = {.lex_state = 625}, + [4446] = {.lex_state = 625}, + [4447] = {.lex_state = 129}, + [4448] = {.lex_state = 130}, + [4449] = {.lex_state = 625}, + [4450] = {.lex_state = 130}, + [4451] = {.lex_state = 129}, + [4452] = {.lex_state = 130}, + [4453] = {.lex_state = 625}, + [4454] = {.lex_state = 275}, + [4455] = {.lex_state = 130}, + [4456] = {.lex_state = 625}, + [4457] = {.lex_state = 130}, + [4458] = {.lex_state = 625}, + [4459] = {.lex_state = 158}, + [4460] = {.lex_state = 158}, + [4461] = {.lex_state = 130}, + [4462] = {.lex_state = 236}, + [4463] = {.lex_state = 625}, + [4464] = {.lex_state = 129}, + [4465] = {.lex_state = 625}, + [4466] = {.lex_state = 625}, + [4467] = {.lex_state = 43}, + [4468] = {.lex_state = 195}, + [4469] = {.lex_state = 625}, + [4470] = {.lex_state = 625}, + [4471] = {.lex_state = 130}, + [4472] = {.lex_state = 625}, + [4473] = {.lex_state = 99}, + [4474] = {.lex_state = 158}, + [4475] = {.lex_state = 625}, + [4476] = {.lex_state = 99}, + [4477] = {.lex_state = 233}, + [4478] = {.lex_state = 625}, + [4479] = {.lex_state = 625}, + [4480] = {.lex_state = 43}, + [4481] = {.lex_state = 625}, + [4482] = {.lex_state = 195}, + [4483] = {.lex_state = 195}, + [4484] = {.lex_state = 43}, + [4485] = {.lex_state = 195}, + [4486] = {.lex_state = 195}, + [4487] = {.lex_state = 625}, + [4488] = {.lex_state = 625}, + [4489] = {.lex_state = 130}, + [4490] = {.lex_state = 625}, + [4491] = {.lex_state = 625}, + [4492] = {.lex_state = 130}, + [4493] = {.lex_state = 158}, + [4494] = {.lex_state = 625}, + [4495] = {.lex_state = 625}, + [4496] = {.lex_state = 625}, + [4497] = {.lex_state = 625}, + [4498] = {.lex_state = 625}, + [4499] = {.lex_state = 99}, + [4500] = {.lex_state = 625}, + [4501] = {.lex_state = 130}, + [4502] = {.lex_state = 99}, + [4503] = {.lex_state = 625}, + [4504] = {.lex_state = 625}, + [4505] = {.lex_state = 625}, + [4506] = {.lex_state = 625}, + [4507] = {.lex_state = 130}, + [4508] = {.lex_state = 625}, + [4509] = {.lex_state = 130}, + [4510] = {.lex_state = 625}, + [4511] = {.lex_state = 625}, + [4512] = {.lex_state = 99}, + [4513] = {.lex_state = 99}, + [4514] = {.lex_state = 99}, + [4515] = {.lex_state = 130}, + [4516] = {.lex_state = 625}, + [4517] = {.lex_state = 158}, + [4518] = {.lex_state = 130}, + [4519] = {.lex_state = 632}, + [4520] = {.lex_state = 130}, + [4521] = {.lex_state = 130}, + [4522] = {.lex_state = 158}, + [4523] = {.lex_state = 158}, + [4524] = {.lex_state = 99}, + [4525] = {.lex_state = 195}, + [4526] = {.lex_state = 158}, + [4527] = {.lex_state = 99}, + [4528] = {.lex_state = 158}, + [4529] = {.lex_state = 130}, + [4530] = {.lex_state = 130}, + [4531] = {.lex_state = 632}, + [4532] = {.lex_state = 99}, + [4533] = {.lex_state = 130}, + [4534] = {.lex_state = 625}, + [4535] = {.lex_state = 625}, + [4536] = {.lex_state = 578}, + [4537] = {.lex_state = 625}, + [4538] = {.lex_state = 99}, + [4539] = {.lex_state = 625}, + [4540] = {.lex_state = 625}, + [4541] = {.lex_state = 625}, + [4542] = {.lex_state = 132}, + [4543] = {.lex_state = 625}, + [4544] = {.lex_state = 237}, + [4545] = {.lex_state = 625}, + [4546] = {.lex_state = 625}, + [4547] = {.lex_state = 625}, + [4548] = {.lex_state = 625}, + [4549] = {.lex_state = 99}, + [4550] = {.lex_state = 99}, + [4551] = {.lex_state = 625}, + [4552] = {.lex_state = 625}, + [4553] = {.lex_state = 625}, + [4554] = {.lex_state = 37}, + [4555] = {.lex_state = 99}, + [4556] = {.lex_state = 233}, + [4557] = {.lex_state = 625}, + [4558] = {.lex_state = 135}, + [4559] = {.lex_state = 625}, + [4560] = {.lex_state = 625}, + [4561] = {.lex_state = 625}, + [4562] = {.lex_state = 43}, + [4563] = {.lex_state = 185}, + [4564] = {.lex_state = 625}, + [4565] = {.lex_state = 130}, + [4566] = {.lex_state = 99}, + [4567] = {.lex_state = 233}, + [4568] = {.lex_state = 195}, + [4569] = {.lex_state = 135}, + [4570] = {.lex_state = 195}, + [4571] = {.lex_state = 195}, + [4572] = {.lex_state = 625}, + [4573] = {.lex_state = 625}, + [4574] = {.lex_state = 625}, + [4575] = {.lex_state = 130}, + [4576] = {.lex_state = 130}, + [4577] = {.lex_state = 625}, + [4578] = {.lex_state = 625}, + [4579] = {.lex_state = 51}, + [4580] = {.lex_state = 625}, + [4581] = {.lex_state = 130}, + [4582] = {.lex_state = 625}, + [4583] = {.lex_state = 37}, + [4584] = {.lex_state = 625}, + [4585] = {.lex_state = 158}, + [4586] = {.lex_state = 37}, + [4587] = {.lex_state = 625}, + [4588] = {.lex_state = 158}, + [4589] = {.lex_state = 130}, + [4590] = {.lex_state = 625}, + [4591] = {.lex_state = 158}, + [4592] = {.lex_state = 37}, + [4593] = {.lex_state = 37}, + [4594] = {.lex_state = 37}, + [4595] = {.lex_state = 130}, + [4596] = {.lex_state = 130}, + [4597] = {.lex_state = 625}, + [4598] = {.lex_state = 625}, + [4599] = {.lex_state = 625}, + [4600] = {.lex_state = 130}, + [4601] = {.lex_state = 625}, + [4602] = {.lex_state = 130}, + [4603] = {.lex_state = 130}, + [4604] = {.lex_state = 130}, + [4605] = {.lex_state = 625}, + [4606] = {.lex_state = 625}, + [4607] = {.lex_state = 37}, + [4608] = {.lex_state = 625}, + [4609] = {.lex_state = 130}, + [4610] = {.lex_state = 625}, + [4611] = {.lex_state = 233}, + [4612] = {.lex_state = 130}, + [4613] = {.lex_state = 130}, + [4614] = {.lex_state = 282}, + [4615] = {.lex_state = 282}, + [4616] = {.lex_state = 130}, + [4617] = {.lex_state = 625}, + [4618] = {.lex_state = 195}, + [4619] = {.lex_state = 195}, + [4620] = {.lex_state = 625}, + [4621] = {.lex_state = 236}, + [4622] = {.lex_state = 195}, + [4623] = {.lex_state = 625}, + [4624] = {.lex_state = 195}, + [4625] = {.lex_state = 130}, + [4626] = {.lex_state = 130}, + [4627] = {.lex_state = 132}, + [4628] = {.lex_state = 275}, + [4629] = {.lex_state = 130}, + [4630] = {.lex_state = 130}, + [4631] = {.lex_state = 130}, + [4632] = {.lex_state = 625}, + [4633] = {.lex_state = 625}, + [4634] = {.lex_state = 130}, + [4635] = {.lex_state = 129}, + [4636] = {.lex_state = 578}, + [4637] = {.lex_state = 130}, + [4638] = {.lex_state = 135}, + [4639] = {.lex_state = 625}, + [4640] = {.lex_state = 95}, + [4641] = {.lex_state = 129}, + [4642] = {.lex_state = 130}, + [4643] = {.lex_state = 625}, + [4644] = {.lex_state = 612}, + [4645] = {.lex_state = 625}, + [4646] = {.lex_state = 625}, + [4647] = {.lex_state = 130}, + [4648] = {.lex_state = 625}, + [4649] = {.lex_state = 625}, + [4650] = {.lex_state = 130}, + [4651] = {.lex_state = 625}, + [4652] = {.lex_state = 95}, + [4653] = {.lex_state = 130}, + [4654] = {.lex_state = 625}, + [4655] = {.lex_state = 230}, + [4656] = {.lex_state = 625}, [4657] = {.lex_state = 0}, [4658] = {.lex_state = 0}, - [4659] = {.lex_state = 0}, - [4660] = {.lex_state = 149}, - [4661] = {.lex_state = 229}, - [4662] = {.lex_state = 124}, - [4663] = {.lex_state = 149}, - [4664] = {.lex_state = 93}, - [4665] = {.lex_state = 124}, - [4666] = {.lex_state = 629}, - [4667] = {.lex_state = 2182}, - [4668] = {.lex_state = 229}, - [4669] = {.lex_state = 0}, - [4670] = {.lex_state = 124}, - [4671] = {.lex_state = 229}, - [4672] = {.lex_state = 2182}, - [4673] = {.lex_state = 149}, - [4674] = {.lex_state = 2182}, - [4675] = {.lex_state = 0}, - [4676] = {.lex_state = 229}, - [4677] = {.lex_state = 229}, - [4678] = {.lex_state = 2182}, - [4679] = {.lex_state = 229}, - [4680] = {.lex_state = 578}, - [4681] = {.lex_state = 124}, - [4682] = {.lex_state = 126}, - [4683] = {.lex_state = 126}, - [4684] = {.lex_state = 229}, - [4685] = {.lex_state = 124}, - [4686] = {.lex_state = 0}, - [4687] = {.lex_state = 0}, - [4688] = {.lex_state = 124}, - [4689] = {.lex_state = 124}, - [4690] = {.lex_state = 0}, - [4691] = {.lex_state = 124}, - [4692] = {.lex_state = 124}, - [4693] = {.lex_state = 2182}, - [4694] = {.lex_state = 2182}, - [4695] = {.lex_state = 226}, + [4659] = {.lex_state = 130}, + [4660] = {.lex_state = 130}, + [4661] = {.lex_state = 0}, + [4662] = {.lex_state = 2190}, + [4663] = {.lex_state = 2190}, + [4664] = {.lex_state = 0}, + [4665] = {.lex_state = 0}, + [4666] = {.lex_state = 0}, + [4667] = {.lex_state = 233}, + [4668] = {.lex_state = 579}, + [4669] = {.lex_state = 130}, + [4670] = {.lex_state = 0}, + [4671] = {.lex_state = 0}, + [4672] = {.lex_state = 233}, + [4673] = {.lex_state = 0}, + [4674] = {.lex_state = 130}, + [4675] = {.lex_state = 130}, + [4676] = {.lex_state = 130}, + [4677] = {.lex_state = 632}, + [4678] = {.lex_state = 230}, + [4679] = {.lex_state = 0}, + [4680] = {.lex_state = 0}, + [4681] = {.lex_state = 130}, + [4682] = {.lex_state = 0}, + [4683] = {.lex_state = 233}, + [4684] = {.lex_state = 130}, + [4685] = {.lex_state = 0}, + [4686] = {.lex_state = 130}, + [4687] = {.lex_state = 627}, + [4688] = {.lex_state = 0}, + [4689] = {.lex_state = 130}, + [4690] = {.lex_state = 130}, + [4691] = {.lex_state = 0}, + [4692] = {.lex_state = 0}, + [4693] = {.lex_state = 130}, + [4694] = {.lex_state = 0}, + [4695] = {.lex_state = 130}, [4696] = {.lex_state = 0}, - [4697] = {.lex_state = 124}, - [4698] = {.lex_state = 0}, - [4699] = {.lex_state = 124}, - [4700] = {.lex_state = 0}, - [4701] = {.lex_state = 229}, - [4702] = {.lex_state = 0}, - [4703] = {.lex_state = 0}, - [4704] = {.lex_state = 0}, + [4697] = {.lex_state = 0}, + [4698] = {.lex_state = 130}, + [4699] = {.lex_state = 130}, + [4700] = {.lex_state = 130}, + [4701] = {.lex_state = 233}, + [4702] = {.lex_state = 130}, + [4703] = {.lex_state = 130}, + [4704] = {.lex_state = 43}, [4705] = {.lex_state = 0}, [4706] = {.lex_state = 0}, - [4707] = {.lex_state = 124}, - [4708] = {.lex_state = 34}, - [4709] = {.lex_state = 2186}, - [4710] = {.lex_state = 2186}, - [4711] = {.lex_state = 0}, + [4707] = {.lex_state = 0}, + [4708] = {.lex_state = 130}, + [4709] = {.lex_state = 130}, + [4710] = {.lex_state = 0}, + [4711] = {.lex_state = 578}, [4712] = {.lex_state = 0}, - [4713] = {.lex_state = 2184}, - [4714] = {.lex_state = 124}, - [4715] = {.lex_state = 0}, + [4713] = {.lex_state = 129}, + [4714] = {.lex_state = 130}, + [4715] = {.lex_state = 130}, [4716] = {.lex_state = 0}, - [4717] = {.lex_state = 229}, + [4717] = {.lex_state = 0}, [4718] = {.lex_state = 0}, - [4719] = {.lex_state = 124}, - [4720] = {.lex_state = 2186}, - [4721] = {.lex_state = 124}, - [4722] = {.lex_state = 124}, - [4723] = {.lex_state = 2184}, - [4724] = {.lex_state = 0}, - [4725] = {.lex_state = 0}, - [4726] = {.lex_state = 577}, - [4727] = {.lex_state = 124}, - [4728] = {.lex_state = 0}, - [4729] = {.lex_state = 0}, - [4730] = {.lex_state = 0}, - [4731] = {.lex_state = 0}, - [4732] = {.lex_state = 124}, - [4733] = {.lex_state = 229}, - [4734] = {.lex_state = 2184}, - [4735] = {.lex_state = 0}, - [4736] = {.lex_state = 124}, - [4737] = {.lex_state = 124}, - [4738] = {.lex_state = 123}, - [4739] = {.lex_state = 0}, - [4740] = {.lex_state = 0}, - [4741] = {.lex_state = 124}, - [4742] = {.lex_state = 124}, + [4719] = {.lex_state = 130}, + [4720] = {.lex_state = 625}, + [4721] = {.lex_state = 0}, + [4722] = {.lex_state = 578}, + [4723] = {.lex_state = 2186}, + [4724] = {.lex_state = 2190}, + [4725] = {.lex_state = 2186}, + [4726] = {.lex_state = 2186}, + [4727] = {.lex_state = 130}, + [4728] = {.lex_state = 2186}, + [4729] = {.lex_state = 233}, + [4730] = {.lex_state = 130}, + [4731] = {.lex_state = 130}, + [4732] = {.lex_state = 0}, + [4733] = {.lex_state = 130}, + [4734] = {.lex_state = 2188}, + [4735] = {.lex_state = 2186}, + [4736] = {.lex_state = 233}, + [4737] = {.lex_state = 130}, + [4738] = {.lex_state = 130}, + [4739] = {.lex_state = 130}, + [4740] = {.lex_state = 130}, + [4741] = {.lex_state = 2186}, + [4742] = {.lex_state = 99}, [4743] = {.lex_state = 0}, - [4744] = {.lex_state = 2}, - [4745] = {.lex_state = 2184}, - [4746] = {.lex_state = 124}, - [4747] = {.lex_state = 577}, - [4748] = {.lex_state = 124}, + [4744] = {.lex_state = 129}, + [4745] = {.lex_state = 0}, + [4746] = {.lex_state = 2188}, + [4747] = {.lex_state = 130}, + [4748] = {.lex_state = 0}, [4749] = {.lex_state = 0}, - [4750] = {.lex_state = 624}, - [4751] = {.lex_state = 124}, + [4750] = {.lex_state = 130}, + [4751] = {.lex_state = 130}, [4752] = {.lex_state = 0}, - [4753] = {.lex_state = 2182}, - [4754] = {.lex_state = 2182}, - [4755] = {.lex_state = 0}, - [4756] = {.lex_state = 124}, - [4757] = {.lex_state = 0}, - [4758] = {.lex_state = 0}, - [4759] = {.lex_state = 123}, - [4760] = {.lex_state = 0}, - [4761] = {.lex_state = 0}, - [4762] = {.lex_state = 229}, - [4763] = {.lex_state = 273}, - [4764] = {.lex_state = 124}, - [4765] = {.lex_state = 624}, - [4766] = {.lex_state = 124}, - [4767] = {.lex_state = 273}, - [4768] = {.lex_state = 124}, - [4769] = {.lex_state = 0}, + [4753] = {.lex_state = 130}, + [4754] = {.lex_state = 233}, + [4755] = {.lex_state = 2186}, + [4756] = {.lex_state = 625}, + [4757] = {.lex_state = 2186}, + [4758] = {.lex_state = 277}, + [4759] = {.lex_state = 2186}, + [4760] = {.lex_state = 2186}, + [4761] = {.lex_state = 2190}, + [4762] = {.lex_state = 0}, + [4763] = {.lex_state = 130}, + [4764] = {.lex_state = 0}, + [4765] = {.lex_state = 0}, + [4766] = {.lex_state = 233}, + [4767] = {.lex_state = 2190}, + [4768] = {.lex_state = 130}, + [4769] = {.lex_state = 130}, [4770] = {.lex_state = 0}, - [4771] = {.lex_state = 0}, - [4772] = {.lex_state = 124}, + [4771] = {.lex_state = 2186}, + [4772] = {.lex_state = 130}, [4773] = {.lex_state = 0}, - [4774] = {.lex_state = 0}, - [4775] = {.lex_state = 0}, - [4776] = {.lex_state = 124}, - [4777] = {.lex_state = 124}, - [4778] = {.lex_state = 2186}, - [4779] = {.lex_state = 124}, + [4774] = {.lex_state = 2186}, + [4775] = {.lex_state = 130}, + [4776] = {.lex_state = 233}, + [4777] = {.lex_state = 130}, + [4778] = {.lex_state = 132}, + [4779] = {.lex_state = 0}, [4780] = {.lex_state = 0}, - [4781] = {.lex_state = 2186}, - [4782] = {.lex_state = 2184}, - [4783] = {.lex_state = 31}, - [4784] = {.lex_state = 124}, - [4785] = {.lex_state = 149}, - [4786] = {.lex_state = 124}, - [4787] = {.lex_state = 149}, - [4788] = {.lex_state = 229}, - [4789] = {.lex_state = 124}, - [4790] = {.lex_state = 229}, - [4791] = {.lex_state = 0}, - [4792] = {.lex_state = 2186}, - [4793] = {.lex_state = 124}, - [4794] = {.lex_state = 0}, - [4795] = {.lex_state = 577}, - [4796] = {.lex_state = 577}, - [4797] = {.lex_state = 31}, - [4798] = {.lex_state = 0}, - [4799] = {.lex_state = 0}, - [4800] = {.lex_state = 31}, + [4781] = {.lex_state = 132}, + [4782] = {.lex_state = 0}, + [4783] = {.lex_state = 0}, + [4784] = {.lex_state = 233}, + [4785] = {.lex_state = 0}, + [4786] = {.lex_state = 0}, + [4787] = {.lex_state = 233}, + [4788] = {.lex_state = 233}, + [4789] = {.lex_state = 0}, + [4790] = {.lex_state = 2190}, + [4791] = {.lex_state = 2190}, + [4792] = {.lex_state = 0}, + [4793] = {.lex_state = 233}, + [4794] = {.lex_state = 130}, + [4795] = {.lex_state = 130}, + [4796] = {.lex_state = 2190}, + [4797] = {.lex_state = 2186}, + [4798] = {.lex_state = 233}, + [4799] = {.lex_state = 627}, + [4800] = {.lex_state = 0}, [4801] = {.lex_state = 0}, - [4802] = {.lex_state = 0}, - [4803] = {.lex_state = 31}, - [4804] = {.lex_state = 46}, + [4802] = {.lex_state = 2190}, + [4803] = {.lex_state = 0}, + [4804] = {.lex_state = 625}, [4805] = {.lex_state = 0}, - [4806] = {.lex_state = 1189}, - [4807] = {.lex_state = 0, .external_lex_state = 3}, - [4808] = {.lex_state = 123}, + [4806] = {.lex_state = 0}, + [4807] = {.lex_state = 0}, + [4808] = {.lex_state = 0}, [4809] = {.lex_state = 0}, [4810] = {.lex_state = 0}, - [4811] = {.lex_state = 0}, - [4812] = {.lex_state = 0}, - [4813] = {.lex_state = 123}, - [4814] = {.lex_state = 0}, - [4815] = {.lex_state = 577}, - [4816] = {.lex_state = 577}, - [4817] = {.lex_state = 31}, - [4818] = {.lex_state = 148}, - [4819] = {.lex_state = 31}, + [4811] = {.lex_state = 10}, + [4812] = {.lex_state = 277}, + [4813] = {.lex_state = 2188}, + [4814] = {.lex_state = 158}, + [4815] = {.lex_state = 2186}, + [4816] = {.lex_state = 2186}, + [4817] = {.lex_state = 1717}, + [4818] = {.lex_state = 0}, + [4819] = {.lex_state = 2188}, [4820] = {.lex_state = 2186}, - [4821] = {.lex_state = 31}, - [4822] = {.lex_state = 31}, - [4823] = {.lex_state = 0}, - [4824] = {.lex_state = 0, .external_lex_state = 3}, - [4825] = {.lex_state = 31}, + [4821] = {.lex_state = 130}, + [4822] = {.lex_state = 2186}, + [4823] = {.lex_state = 2188}, + [4824] = {.lex_state = 0}, + [4825] = {.lex_state = 0}, [4826] = {.lex_state = 0}, - [4827] = {.lex_state = 29}, - [4828] = {.lex_state = 0}, - [4829] = {.lex_state = 232}, - [4830] = {.lex_state = 0}, + [4827] = {.lex_state = 132}, + [4828] = {.lex_state = 0, .external_lex_state = 3}, + [4829] = {.lex_state = 0}, + [4830] = {.lex_state = 625}, [4831] = {.lex_state = 0}, - [4832] = {.lex_state = 577}, - [4833] = {.lex_state = 577}, - [4834] = {.lex_state = 31}, - [4835] = {.lex_state = 0, .external_lex_state = 3}, - [4836] = {.lex_state = 0}, - [4837] = {.lex_state = 1189}, + [4832] = {.lex_state = 578}, + [4833] = {.lex_state = 578}, + [4834] = {.lex_state = 129}, + [4835] = {.lex_state = 10}, + [4836] = {.lex_state = 1192}, + [4837] = {.lex_state = 625}, [4838] = {.lex_state = 0}, - [4839] = {.lex_state = 0, .external_lex_state = 3}, - [4840] = {.lex_state = 622}, - [4841] = {.lex_state = 0}, + [4839] = {.lex_state = 625}, + [4840] = {.lex_state = 1192}, + [4841] = {.lex_state = 1696}, [4842] = {.lex_state = 0}, - [4843] = {.lex_state = 29}, - [4844] = {.lex_state = 0, .external_lex_state = 3}, - [4845] = {.lex_state = 0}, - [4846] = {.lex_state = 577}, - [4847] = {.lex_state = 577}, - [4848] = {.lex_state = 31}, - [4849] = {.lex_state = 622}, - [4850] = {.lex_state = 622}, - [4851] = {.lex_state = 1189}, - [4852] = {.lex_state = 0, .external_lex_state = 3}, - [4853] = {.lex_state = 31}, - [4854] = {.lex_state = 2184}, - [4855] = {.lex_state = 229}, - [4856] = {.lex_state = 31}, - [4857] = {.lex_state = 0}, - [4858] = {.lex_state = 577}, - [4859] = {.lex_state = 577}, - [4860] = {.lex_state = 2}, - [4861] = {.lex_state = 229}, - [4862] = {.lex_state = 0, .external_lex_state = 3}, - [4863] = {.lex_state = 31}, - [4864] = {.lex_state = 31}, - [4865] = {.lex_state = 29}, - [4866] = {.lex_state = 0}, - [4867] = {.lex_state = 577}, - [4868] = {.lex_state = 577}, + [4843] = {.lex_state = 236}, + [4844] = {.lex_state = 0}, + [4845] = {.lex_state = 625}, + [4846] = {.lex_state = 625}, + [4847] = {.lex_state = 0, .external_lex_state = 4}, + [4848] = {.lex_state = 625}, + [4849] = {.lex_state = 0}, + [4850] = {.lex_state = 10}, + [4851] = {.lex_state = 0}, + [4852] = {.lex_state = 578}, + [4853] = {.lex_state = 0, .external_lex_state = 4}, + [4854] = {.lex_state = 0}, + [4855] = {.lex_state = 578}, + [4856] = {.lex_state = 578}, + [4857] = {.lex_state = 623}, + [4858] = {.lex_state = 0}, + [4859] = {.lex_state = 625}, + [4860] = {.lex_state = 0}, + [4861] = {.lex_state = 1192}, + [4862] = {.lex_state = 0}, + [4863] = {.lex_state = 278}, + [4864] = {.lex_state = 0, .external_lex_state = 4}, + [4865] = {.lex_state = 233}, + [4866] = {.lex_state = 233}, + [4867] = {.lex_state = 233}, + [4868] = {.lex_state = 0}, [4869] = {.lex_state = 0}, - [4870] = {.lex_state = 0}, - [4871] = {.lex_state = 0, .external_lex_state = 3}, - [4872] = {.lex_state = 123}, - [4873] = {.lex_state = 0}, - [4874] = {.lex_state = 232}, - [4875] = {.lex_state = 0}, - [4876] = {.lex_state = 577}, - [4877] = {.lex_state = 577}, - [4878] = {.lex_state = 0}, - [4879] = {.lex_state = 31}, - [4880] = {.lex_state = 0, .external_lex_state = 3}, - [4881] = {.lex_state = 0}, - [4882] = {.lex_state = 0}, - [4883] = {.lex_state = 577}, - [4884] = {.lex_state = 577}, - [4885] = {.lex_state = 229}, - [4886] = {.lex_state = 229}, - [4887] = {.lex_state = 0, .external_lex_state = 3}, - [4888] = {.lex_state = 232}, - [4889] = {.lex_state = 0}, - [4890] = {.lex_state = 577}, - [4891] = {.lex_state = 577}, - [4892] = {.lex_state = 31}, - [4893] = {.lex_state = 274}, - [4894] = {.lex_state = 0, .external_lex_state = 3}, - [4895] = {.lex_state = 31}, + [4870] = {.lex_state = 625}, + [4871] = {.lex_state = 0}, + [4872] = {.lex_state = 578}, + [4873] = {.lex_state = 578}, + [4874] = {.lex_state = 625}, + [4875] = {.lex_state = 625}, + [4876] = {.lex_state = 0}, + [4877] = {.lex_state = 0}, + [4878] = {.lex_state = 625}, + [4879] = {.lex_state = 0, .external_lex_state = 4}, + [4880] = {.lex_state = 625}, + [4881] = {.lex_state = 625}, + [4882] = {.lex_state = 625}, + [4883] = {.lex_state = 0}, + [4884] = {.lex_state = 1717}, + [4885] = {.lex_state = 0}, + [4886] = {.lex_state = 578}, + [4887] = {.lex_state = 578}, + [4888] = {.lex_state = 625}, + [4889] = {.lex_state = 0, .external_lex_state = 4}, + [4890] = {.lex_state = 157}, + [4891] = {.lex_state = 625}, + [4892] = {.lex_state = 0, .external_lex_state = 4}, + [4893] = {.lex_state = 0}, + [4894] = {.lex_state = 0}, + [4895] = {.lex_state = 0}, [4896] = {.lex_state = 0}, - [4897] = {.lex_state = 577}, - [4898] = {.lex_state = 577}, - [4899] = {.lex_state = 2}, + [4897] = {.lex_state = 0}, + [4898] = {.lex_state = 578}, + [4899] = {.lex_state = 578}, [4900] = {.lex_state = 0}, - [4901] = {.lex_state = 0, .external_lex_state = 3}, - [4902] = {.lex_state = 0}, + [4901] = {.lex_state = 625}, + [4902] = {.lex_state = 0, .external_lex_state = 4}, [4903] = {.lex_state = 0}, - [4904] = {.lex_state = 577}, - [4905] = {.lex_state = 577}, + [4904] = {.lex_state = 578}, + [4905] = {.lex_state = 578}, [4906] = {.lex_state = 0}, - [4907] = {.lex_state = 31}, - [4908] = {.lex_state = 0, .external_lex_state = 3}, - [4909] = {.lex_state = 31}, - [4910] = {.lex_state = 0}, - [4911] = {.lex_state = 577}, - [4912] = {.lex_state = 577}, - [4913] = {.lex_state = 31}, - [4914] = {.lex_state = 0, .external_lex_state = 3}, - [4915] = {.lex_state = 0}, - [4916] = {.lex_state = 577}, - [4917] = {.lex_state = 577}, - [4918] = {.lex_state = 0, .external_lex_state = 4}, - [4919] = {.lex_state = 0, .external_lex_state = 3}, - [4920] = {.lex_state = 31}, - [4921] = {.lex_state = 31}, - [4922] = {.lex_state = 0}, - [4923] = {.lex_state = 1689}, - [4924] = {.lex_state = 1693}, - [4925] = {.lex_state = 31}, - [4926] = {.lex_state = 31}, - [4927] = {.lex_state = 2186}, - [4928] = {.lex_state = 31}, + [4907] = {.lex_state = 0}, + [4908] = {.lex_state = 578}, + [4909] = {.lex_state = 578}, + [4910] = {.lex_state = 578}, + [4911] = {.lex_state = 10}, + [4912] = {.lex_state = 0, .external_lex_state = 4}, + [4913] = {.lex_state = 236}, + [4914] = {.lex_state = 1192}, + [4915] = {.lex_state = 625}, + [4916] = {.lex_state = 0}, + [4917] = {.lex_state = 578}, + [4918] = {.lex_state = 578}, + [4919] = {.lex_state = 623}, + [4920] = {.lex_state = 578}, + [4921] = {.lex_state = 0, .external_lex_state = 4}, + [4922] = {.lex_state = 623}, + [4923] = {.lex_state = 0}, + [4924] = {.lex_state = 578}, + [4925] = {.lex_state = 578}, + [4926] = {.lex_state = 0}, + [4927] = {.lex_state = 0}, + [4928] = {.lex_state = 0, .external_lex_state = 4}, [4929] = {.lex_state = 0}, [4930] = {.lex_state = 0}, - [4931] = {.lex_state = 0}, - [4932] = {.lex_state = 0}, + [4931] = {.lex_state = 578}, + [4932] = {.lex_state = 578}, [4933] = {.lex_state = 0}, - [4934] = {.lex_state = 0}, - [4935] = {.lex_state = 0}, - [4936] = {.lex_state = 0}, + [4934] = {.lex_state = 243}, + [4935] = {.lex_state = 0, .external_lex_state = 4}, + [4936] = {.lex_state = 279}, [4937] = {.lex_state = 0}, - [4938] = {.lex_state = 1714}, - [4939] = {.lex_state = 232}, - [4940] = {.lex_state = 31}, - [4941] = {.lex_state = 232}, - [4942] = {.lex_state = 31}, + [4938] = {.lex_state = 578}, + [4939] = {.lex_state = 578}, + [4940] = {.lex_state = 0}, + [4941] = {.lex_state = 40}, + [4942] = {.lex_state = 0, .external_lex_state = 4}, [4943] = {.lex_state = 0}, - [4944] = {.lex_state = 31}, - [4945] = {.lex_state = 624}, - [4946] = {.lex_state = 31}, - [4947] = {.lex_state = 229}, - [4948] = {.lex_state = 0, .external_lex_state = 3}, - [4949] = {.lex_state = 0}, - [4950] = {.lex_state = 0}, + [4944] = {.lex_state = 0}, + [4945] = {.lex_state = 578}, + [4946] = {.lex_state = 578}, + [4947] = {.lex_state = 0}, + [4948] = {.lex_state = 625}, + [4949] = {.lex_state = 0, .external_lex_state = 4}, + [4950] = {.lex_state = 1192}, [4951] = {.lex_state = 0}, - [4952] = {.lex_state = 577}, - [4953] = {.lex_state = 622}, - [4954] = {.lex_state = 577}, - [4955] = {.lex_state = 2182}, - [4956] = {.lex_state = 2}, + [4952] = {.lex_state = 578}, + [4953] = {.lex_state = 578}, + [4954] = {.lex_state = 0}, + [4955] = {.lex_state = 0, .external_lex_state = 4}, + [4956] = {.lex_state = 1192}, [4957] = {.lex_state = 0}, - [4958] = {.lex_state = 577}, - [4959] = {.lex_state = 232}, - [4960] = {.lex_state = 29}, - [4961] = {.lex_state = 31}, - [4962] = {.lex_state = 622}, - [4963] = {.lex_state = 622}, - [4964] = {.lex_state = 0}, - [4965] = {.lex_state = 0}, - [4966] = {.lex_state = 0}, - [4967] = {.lex_state = 1189}, - [4968] = {.lex_state = 622}, - [4969] = {.lex_state = 0}, - [4970] = {.lex_state = 29}, - [4971] = {.lex_state = 0}, - [4972] = {.lex_state = 0}, - [4973] = {.lex_state = 148}, - [4974] = {.lex_state = 622}, - [4975] = {.lex_state = 577}, - [4976] = {.lex_state = 577}, - [4977] = {.lex_state = 0}, - [4978] = {.lex_state = 233}, - [4979] = {.lex_state = 622}, - [4980] = {.lex_state = 622}, - [4981] = {.lex_state = 31}, - [4982] = {.lex_state = 29}, - [4983] = {.lex_state = 1189}, - [4984] = {.lex_state = 0}, + [4958] = {.lex_state = 578}, + [4959] = {.lex_state = 578}, + [4960] = {.lex_state = 0}, + [4961] = {.lex_state = 0, .external_lex_state = 4}, + [4962] = {.lex_state = 0}, + [4963] = {.lex_state = 578}, + [4964] = {.lex_state = 578}, + [4965] = {.lex_state = 623}, + [4966] = {.lex_state = 0, .external_lex_state = 4}, + [4967] = {.lex_state = 0}, + [4968] = {.lex_state = 578}, + [4969] = {.lex_state = 578}, + [4970] = {.lex_state = 0, .external_lex_state = 3}, + [4971] = {.lex_state = 236}, + [4972] = {.lex_state = 1192}, + [4973] = {.lex_state = 0}, + [4974] = {.lex_state = 0}, + [4975] = {.lex_state = 1692}, + [4976] = {.lex_state = 1696}, + [4977] = {.lex_state = 40}, + [4978] = {.lex_state = 0}, + [4979] = {.lex_state = 37}, + [4980] = {.lex_state = 623}, + [4981] = {.lex_state = 0}, + [4982] = {.lex_state = 623}, + [4983] = {.lex_state = 578}, + [4984] = {.lex_state = 667}, [4985] = {.lex_state = 0}, - [4986] = {.lex_state = 664}, - [4987] = {.lex_state = 31}, + [4986] = {.lex_state = 0}, + [4987] = {.lex_state = 578}, [4988] = {.lex_state = 0}, [4989] = {.lex_state = 0}, [4990] = {.lex_state = 0}, - [4991] = {.lex_state = 577}, - [4992] = {.lex_state = 2184}, - [4993] = {.lex_state = 2184}, - [4994] = {.lex_state = 0}, - [4995] = {.lex_state = 31}, - [4996] = {.lex_state = 232}, - [4997] = {.lex_state = 622}, - [4998] = {.lex_state = 0}, - [4999] = {.lex_state = 1189}, - [5000] = {.lex_state = 622}, - [5001] = {.lex_state = 229}, - [5002] = {.lex_state = 0}, - [5003] = {.lex_state = 29}, + [4991] = {.lex_state = 625}, + [4992] = {.lex_state = 625}, + [4993] = {.lex_state = 0}, + [4994] = {.lex_state = 625}, + [4995] = {.lex_state = 0}, + [4996] = {.lex_state = 0}, + [4997] = {.lex_state = 627}, + [4998] = {.lex_state = 625}, + [4999] = {.lex_state = 625}, + [5000] = {.lex_state = 40}, + [5001] = {.lex_state = 625}, + [5002] = {.lex_state = 625}, + [5003] = {.lex_state = 625}, [5004] = {.lex_state = 0}, - [5005] = {.lex_state = 624}, - [5006] = {.lex_state = 622}, + [5005] = {.lex_state = 623}, + [5006] = {.lex_state = 0}, [5007] = {.lex_state = 0}, [5008] = {.lex_state = 0}, - [5009] = {.lex_state = 123}, - [5010] = {.lex_state = 0}, - [5011] = {.lex_state = 31}, - [5012] = {.lex_state = 2}, - [5013] = {.lex_state = 0}, - [5014] = {.lex_state = 148}, - [5015] = {.lex_state = 46}, - [5016] = {.lex_state = 0}, - [5017] = {.lex_state = 31}, - [5018] = {.lex_state = 664}, - [5019] = {.lex_state = 0}, - [5020] = {.lex_state = 2}, - [5021] = {.lex_state = 123}, - [5022] = {.lex_state = 0}, - [5023] = {.lex_state = 1189}, - [5024] = {.lex_state = 0}, - [5025] = {.lex_state = 31}, - [5026] = {.lex_state = 577}, - [5027] = {.lex_state = 229}, - [5028] = {.lex_state = 0}, + [5009] = {.lex_state = 0}, + [5010] = {.lex_state = 236}, + [5011] = {.lex_state = 2188}, + [5012] = {.lex_state = 236}, + [5013] = {.lex_state = 233}, + [5014] = {.lex_state = 623}, + [5015] = {.lex_state = 623}, + [5016] = {.lex_state = 129}, + [5017] = {.lex_state = 627}, + [5018] = {.lex_state = 625}, + [5019] = {.lex_state = 236}, + [5020] = {.lex_state = 2188}, + [5021] = {.lex_state = 0}, + [5022] = {.lex_state = 625}, + [5023] = {.lex_state = 625}, + [5024] = {.lex_state = 2186}, + [5025] = {.lex_state = 0}, + [5026] = {.lex_state = 0, .external_lex_state = 4}, + [5027] = {.lex_state = 2186}, + [5028] = {.lex_state = 40}, [5029] = {.lex_state = 0}, - [5030] = {.lex_state = 1189}, + [5030] = {.lex_state = 233}, [5031] = {.lex_state = 0}, - [5032] = {.lex_state = 1689}, - [5033] = {.lex_state = 239}, - [5034] = {.lex_state = 0}, - [5035] = {.lex_state = 0}, + [5032] = {.lex_state = 236}, + [5033] = {.lex_state = 236}, + [5034] = {.lex_state = 129}, + [5035] = {.lex_state = 157}, [5036] = {.lex_state = 0}, - [5037] = {.lex_state = 148}, - [5038] = {.lex_state = 0, .external_lex_state = 3}, - [5039] = {.lex_state = 275}, + [5037] = {.lex_state = 623}, + [5038] = {.lex_state = 625}, + [5039] = {.lex_state = 625}, [5040] = {.lex_state = 0}, - [5041] = {.lex_state = 31}, - [5042] = {.lex_state = 0}, - [5043] = {.lex_state = 0}, - [5044] = {.lex_state = 0}, + [5041] = {.lex_state = 0}, + [5042] = {.lex_state = 236}, + [5043] = {.lex_state = 236}, + [5044] = {.lex_state = 10}, [5045] = {.lex_state = 0}, [5046] = {.lex_state = 0}, - [5047] = {.lex_state = 0}, - [5048] = {.lex_state = 2197}, - [5049] = {.lex_state = 31}, - [5050] = {.lex_state = 0}, - [5051] = {.lex_state = 0}, - [5052] = {.lex_state = 29}, - [5053] = {.lex_state = 31}, - [5054] = {.lex_state = 0}, + [5047] = {.lex_state = 625}, + [5048] = {.lex_state = 2190}, + [5049] = {.lex_state = 0}, + [5050] = {.lex_state = 578}, + [5051] = {.lex_state = 578}, + [5052] = {.lex_state = 625}, + [5053] = {.lex_state = 10}, + [5054] = {.lex_state = 1192}, [5055] = {.lex_state = 0}, - [5056] = {.lex_state = 0}, + [5056] = {.lex_state = 233}, [5057] = {.lex_state = 0}, [5058] = {.lex_state = 0}, - [5059] = {.lex_state = 0}, - [5060] = {.lex_state = 0, .external_lex_state = 4}, - [5061] = {.lex_state = 0}, - [5062] = {.lex_state = 1689}, - [5063] = {.lex_state = 1693}, - [5064] = {.lex_state = 0}, - [5065] = {.lex_state = 229}, + [5059] = {.lex_state = 129}, + [5060] = {.lex_state = 0}, + [5061] = {.lex_state = 625}, + [5062] = {.lex_state = 40}, + [5063] = {.lex_state = 0}, + [5064] = {.lex_state = 1192}, + [5065] = {.lex_state = 0}, [5066] = {.lex_state = 0}, - [5067] = {.lex_state = 624}, - [5068] = {.lex_state = 0}, - [5069] = {.lex_state = 577}, - [5070] = {.lex_state = 577}, - [5071] = {.lex_state = 2182}, - [5072] = {.lex_state = 123}, - [5073] = {.lex_state = 229}, - [5074] = {.lex_state = 232}, - [5075] = {.lex_state = 1189}, - [5076] = {.lex_state = 1189}, - [5077] = {.lex_state = 1693}, - [5078] = {.lex_state = 232}, - [5079] = {.lex_state = 0}, - [5080] = {.lex_state = 232}, - [5081] = {.lex_state = 229}, - [5082] = {.lex_state = 0, .external_lex_state = 4}, - [5083] = {.lex_state = 2186}, + [5067] = {.lex_state = 0}, + [5068] = {.lex_state = 0, .external_lex_state = 4}, + [5069] = {.lex_state = 157}, + [5070] = {.lex_state = 0, .external_lex_state = 3}, + [5071] = {.lex_state = 625}, + [5072] = {.lex_state = 236}, + [5073] = {.lex_state = 667}, + [5074] = {.lex_state = 40}, + [5075] = {.lex_state = 1192}, + [5076] = {.lex_state = 233}, + [5077] = {.lex_state = 0}, + [5078] = {.lex_state = 237}, + [5079] = {.lex_state = 0, .external_lex_state = 4}, + [5080] = {.lex_state = 2188}, + [5081] = {.lex_state = 623}, + [5082] = {.lex_state = 233}, + [5083] = {.lex_state = 157}, [5084] = {.lex_state = 0}, - [5085] = {.lex_state = 0}, - [5086] = {.lex_state = 622}, - [5087] = {.lex_state = 232}, + [5085] = {.lex_state = 2190}, + [5086] = {.lex_state = 0}, + [5087] = {.lex_state = 0}, [5088] = {.lex_state = 0}, [5089] = {.lex_state = 0}, - [5090] = {.lex_state = 0}, - [5091] = {.lex_state = 2182}, - [5092] = {.lex_state = 31}, - [5093] = {.lex_state = 0, .external_lex_state = 3}, - [5094] = {.lex_state = 0}, + [5090] = {.lex_state = 40}, + [5091] = {.lex_state = 625}, + [5092] = {.lex_state = 0}, + [5093] = {.lex_state = 0}, + [5094] = {.lex_state = 233}, [5095] = {.lex_state = 0}, - [5096] = {.lex_state = 0}, - [5097] = {.lex_state = 0, .external_lex_state = 4}, + [5096] = {.lex_state = 623}, + [5097] = {.lex_state = 0}, [5098] = {.lex_state = 0}, - [5099] = {.lex_state = 1689}, - [5100] = {.lex_state = 1693}, - [5101] = {.lex_state = 622}, - [5102] = {.lex_state = 624}, - [5103] = {.lex_state = 31}, - [5104] = {.lex_state = 229}, - [5105] = {.lex_state = 232}, - [5106] = {.lex_state = 123}, - [5107] = {.lex_state = 1189}, - [5108] = {.lex_state = 577}, - [5109] = {.lex_state = 0, .external_lex_state = 4}, + [5099] = {.lex_state = 0}, + [5100] = {.lex_state = 625}, + [5101] = {.lex_state = 625}, + [5102] = {.lex_state = 0}, + [5103] = {.lex_state = 625}, + [5104] = {.lex_state = 0}, + [5105] = {.lex_state = 578}, + [5106] = {.lex_state = 578}, + [5107] = {.lex_state = 0}, + [5108] = {.lex_state = 0}, + [5109] = {.lex_state = 233}, [5110] = {.lex_state = 0}, - [5111] = {.lex_state = 1689}, - [5112] = {.lex_state = 1693}, - [5113] = {.lex_state = 0, .external_lex_state = 4}, - [5114] = {.lex_state = 0}, - [5115] = {.lex_state = 1689}, - [5116] = {.lex_state = 1693}, - [5117] = {.lex_state = 0, .external_lex_state = 4}, - [5118] = {.lex_state = 0}, - [5119] = {.lex_state = 1689}, - [5120] = {.lex_state = 1693}, - [5121] = {.lex_state = 0, .external_lex_state = 4}, - [5122] = {.lex_state = 1689}, - [5123] = {.lex_state = 1693}, - [5124] = {.lex_state = 0, .external_lex_state = 4}, - [5125] = {.lex_state = 1689}, - [5126] = {.lex_state = 1693}, - [5127] = {.lex_state = 0, .external_lex_state = 4}, - [5128] = {.lex_state = 1689}, - [5129] = {.lex_state = 1693}, - [5130] = {.lex_state = 0, .external_lex_state = 4}, - [5131] = {.lex_state = 1689}, - [5132] = {.lex_state = 1693}, - [5133] = {.lex_state = 0, .external_lex_state = 4}, - [5134] = {.lex_state = 1689}, - [5135] = {.lex_state = 1693}, - [5136] = {.lex_state = 0, .external_lex_state = 4}, - [5137] = {.lex_state = 1689}, - [5138] = {.lex_state = 1693}, - [5139] = {.lex_state = 0, .external_lex_state = 4}, - [5140] = {.lex_state = 1689}, - [5141] = {.lex_state = 1693}, + [5111] = {.lex_state = 0, .external_lex_state = 3}, + [5112] = {.lex_state = 0}, + [5113] = {.lex_state = 1692}, + [5114] = {.lex_state = 1696}, + [5115] = {.lex_state = 0}, + [5116] = {.lex_state = 623}, + [5117] = {.lex_state = 1192}, + [5118] = {.lex_state = 627}, + [5119] = {.lex_state = 1192}, + [5120] = {.lex_state = 625}, + [5121] = {.lex_state = 0}, + [5122] = {.lex_state = 0}, + [5123] = {.lex_state = 0}, + [5124] = {.lex_state = 0}, + [5125] = {.lex_state = 625}, + [5126] = {.lex_state = 40}, + [5127] = {.lex_state = 40}, + [5128] = {.lex_state = 0}, + [5129] = {.lex_state = 1192}, + [5130] = {.lex_state = 578}, + [5131] = {.lex_state = 0}, + [5132] = {.lex_state = 578}, + [5133] = {.lex_state = 129}, + [5134] = {.lex_state = 0}, + [5135] = {.lex_state = 0}, + [5136] = {.lex_state = 0}, + [5137] = {.lex_state = 0}, + [5138] = {.lex_state = 0}, + [5139] = {.lex_state = 0}, + [5140] = {.lex_state = 0}, + [5141] = {.lex_state = 0, .external_lex_state = 4}, [5142] = {.lex_state = 0, .external_lex_state = 4}, - [5143] = {.lex_state = 1689}, - [5144] = {.lex_state = 1693}, - [5145] = {.lex_state = 0, .external_lex_state = 4}, - [5146] = {.lex_state = 1689}, - [5147] = {.lex_state = 1693}, - [5148] = {.lex_state = 0, .external_lex_state = 4}, - [5149] = {.lex_state = 1689}, - [5150] = {.lex_state = 1693}, - [5151] = {.lex_state = 0, .external_lex_state = 4}, - [5152] = {.lex_state = 1689}, - [5153] = {.lex_state = 1693}, - [5154] = {.lex_state = 0, .external_lex_state = 4}, - [5155] = {.lex_state = 1689}, - [5156] = {.lex_state = 1693}, - [5157] = {.lex_state = 0, .external_lex_state = 4}, - [5158] = {.lex_state = 1689}, - [5159] = {.lex_state = 1693}, - [5160] = {.lex_state = 2}, - [5161] = {.lex_state = 0}, + [5143] = {.lex_state = 623}, + [5144] = {.lex_state = 233}, + [5145] = {.lex_state = 233}, + [5146] = {.lex_state = 0}, + [5147] = {.lex_state = 0}, + [5148] = {.lex_state = 0, .external_lex_state = 3}, + [5149] = {.lex_state = 0}, + [5150] = {.lex_state = 1692}, + [5151] = {.lex_state = 1696}, + [5152] = {.lex_state = 0}, + [5153] = {.lex_state = 627}, + [5154] = {.lex_state = 37}, + [5155] = {.lex_state = 0}, + [5156] = {.lex_state = 625}, + [5157] = {.lex_state = 623}, + [5158] = {.lex_state = 0}, + [5159] = {.lex_state = 0}, + [5160] = {.lex_state = 0}, + [5161] = {.lex_state = 0, .external_lex_state = 3}, [5162] = {.lex_state = 0}, - [5163] = {.lex_state = 577}, - [5164] = {.lex_state = 577}, - [5165] = {.lex_state = 31}, + [5163] = {.lex_state = 1692}, + [5164] = {.lex_state = 1696}, + [5165] = {.lex_state = 0, .external_lex_state = 3}, [5166] = {.lex_state = 0}, - [5167] = {.lex_state = 577}, - [5168] = {.lex_state = 229}, - [5169] = {.lex_state = 0}, + [5167] = {.lex_state = 1692}, + [5168] = {.lex_state = 1696}, + [5169] = {.lex_state = 0, .external_lex_state = 3}, [5170] = {.lex_state = 0}, - [5171] = {.lex_state = 29}, - [5172] = {.lex_state = 0, .external_lex_state = 3}, - [5173] = {.lex_state = 229}, - [5174] = {.lex_state = 0}, - [5175] = {.lex_state = 0}, - [5176] = {.lex_state = 0}, - [5177] = {.lex_state = 0}, - [5178] = {.lex_state = 1189}, - [5179] = {.lex_state = 1189}, - [5180] = {.lex_state = 622}, - [5181] = {.lex_state = 31}, - [5182] = {.lex_state = 31}, - [5183] = {.lex_state = 0}, - [5184] = {.lex_state = 0}, - [5185] = {.lex_state = 229}, - [5186] = {.lex_state = 29}, - [5187] = {.lex_state = 0}, - [5188] = {.lex_state = 0}, - [5189] = {.lex_state = 0}, - [5190] = {.lex_state = 0}, - [5191] = {.lex_state = 31}, - [5192] = {.lex_state = 0}, - [5193] = {.lex_state = 577}, - [5194] = {.lex_state = 577}, - [5195] = {.lex_state = 577}, - [5196] = {.lex_state = 0}, - [5197] = {.lex_state = 31}, - [5198] = {.lex_state = 31}, - [5199] = {.lex_state = 0}, - [5200] = {.lex_state = 1189}, - [5201] = {.lex_state = 622}, - [5202] = {.lex_state = 0}, - [5203] = {.lex_state = 622}, - [5204] = {.lex_state = 0}, - [5205] = {.lex_state = 0, .external_lex_state = 3}, - [5206] = {(TSStateId)(-1),}, + [5171] = {.lex_state = 1692}, + [5172] = {.lex_state = 1696}, + [5173] = {.lex_state = 0, .external_lex_state = 3}, + [5174] = {.lex_state = 1692}, + [5175] = {.lex_state = 1696}, + [5176] = {.lex_state = 0, .external_lex_state = 3}, + [5177] = {.lex_state = 1692}, + [5178] = {.lex_state = 1696}, + [5179] = {.lex_state = 0, .external_lex_state = 3}, + [5180] = {.lex_state = 1692}, + [5181] = {.lex_state = 1696}, + [5182] = {.lex_state = 0, .external_lex_state = 3}, + [5183] = {.lex_state = 1692}, + [5184] = {.lex_state = 1696}, + [5185] = {.lex_state = 0, .external_lex_state = 3}, + [5186] = {.lex_state = 1692}, + [5187] = {.lex_state = 1696}, + [5188] = {.lex_state = 0, .external_lex_state = 3}, + [5189] = {.lex_state = 1692}, + [5190] = {.lex_state = 1696}, + [5191] = {.lex_state = 623}, + [5192] = {.lex_state = 1692}, + [5193] = {.lex_state = 1696}, + [5194] = {.lex_state = 0, .external_lex_state = 3}, + [5195] = {.lex_state = 1692}, + [5196] = {.lex_state = 1696}, + [5197] = {.lex_state = 0, .external_lex_state = 3}, + [5198] = {.lex_state = 1692}, + [5199] = {.lex_state = 1696}, + [5200] = {.lex_state = 0, .external_lex_state = 3}, + [5201] = {.lex_state = 1692}, + [5202] = {.lex_state = 1696}, + [5203] = {.lex_state = 0, .external_lex_state = 3}, + [5204] = {.lex_state = 1692}, + [5205] = {.lex_state = 1696}, + [5206] = {.lex_state = 0, .external_lex_state = 3}, + [5207] = {.lex_state = 1692}, + [5208] = {.lex_state = 1696}, + [5209] = {.lex_state = 0, .external_lex_state = 3}, + [5210] = {.lex_state = 1692}, + [5211] = {.lex_state = 1696}, + [5212] = {.lex_state = 0, .external_lex_state = 3}, + [5213] = {.lex_state = 1692}, + [5214] = {.lex_state = 1696}, + [5215] = {.lex_state = 0, .external_lex_state = 3}, + [5216] = {.lex_state = 1692}, + [5217] = {.lex_state = 1696}, + [5218] = {.lex_state = 0}, + [5219] = {.lex_state = 236}, + [5220] = {.lex_state = 0}, + [5221] = {.lex_state = 233}, + [5222] = {.lex_state = 10}, + [5223] = {.lex_state = 0}, + [5224] = {.lex_state = 578}, + [5225] = {.lex_state = 578}, + [5226] = {.lex_state = 578}, + [5227] = {.lex_state = 1692}, + [5228] = {.lex_state = 40}, + [5229] = {.lex_state = 1192}, + [5230] = {.lex_state = 2190}, + [5231] = {.lex_state = 0}, + [5232] = {.lex_state = 0}, + [5233] = {.lex_state = 0}, + [5234] = {.lex_state = 0}, + [5235] = {.lex_state = 0}, + [5236] = {.lex_state = 0}, + [5237] = {.lex_state = 625}, + [5238] = {.lex_state = 625}, + [5239] = {.lex_state = 1192}, + [5240] = {.lex_state = 625}, + [5241] = {.lex_state = 233}, + [5242] = {.lex_state = 0}, + [5243] = {.lex_state = 2186}, + [5244] = {.lex_state = 0}, + [5245] = {.lex_state = 129}, + [5246] = {.lex_state = 625}, + [5247] = {.lex_state = 625}, + [5248] = {.lex_state = 1192}, + [5249] = {.lex_state = 625}, + [5250] = {.lex_state = 623}, + [5251] = {.lex_state = 2201}, + [5252] = {.lex_state = 0, .external_lex_state = 4}, + [5253] = {.lex_state = 0}, + [5254] = {.lex_state = 625}, + [5255] = {.lex_state = 625}, + [5256] = {.lex_state = 129}, + [5257] = {.lex_state = 0}, + [5258] = {.lex_state = 0}, + [5259] = {.lex_state = 623}, + [5260] = {.lex_state = 625}, + [5261] = {.lex_state = 129}, + [5262] = {(TSStateId)(-1),}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -38288,6 +38499,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_variable] = ACTIONS(1), [anon_sym_record] = ACTIONS(1), [anon_sym_list] = ACTIONS(1), + [anon_sym_LF] = ACTIONS(1), [anon_sym_GT2] = ACTIONS(1), [anon_sym_oneof] = ACTIONS(1), [anon_sym_AT2] = ACTIONS(1), @@ -38311,8 +38523,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1), [anon_sym_SQUOTE] = ACTIONS(1), [anon_sym_BQUOTE] = ACTIONS(1), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1), [anon_sym_COLON2] = ACTIONS(1), [anon_sym_QMARK2] = ACTIONS(1), @@ -38327,76 +38537,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_end] = ACTIONS(1), }, [STATE(1)] = { - [sym_nu_script] = STATE(5188), - [sym_shebang] = STATE(71), - [sym__block_body_statement] = STATE(4292), - [sym__declaration] = STATE(4552), - [sym_decl_alias] = STATE(4513), - [sym_stmt_let] = STATE(4555), - [sym_stmt_mut] = STATE(4555), - [sym_stmt_const] = STATE(4555), - [sym_assignment] = STATE(4555), - [sym__mutable_assignment_pattern] = STATE(4381), - [sym__statement] = STATE(4552), - [sym_pipeline] = STATE(4555), - [sym__block_body] = STATE(5068), - [sym_cmd_identifier] = STATE(2895), - [aux_sym__repeat_newline] = STATE(4394), - [sym_attribute_list] = STATE(4414), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4513), - [sym_decl_export] = STATE(4513), - [sym_decl_extern] = STATE(4513), - [sym_decl_module] = STATE(4513), - [sym_decl_use] = STATE(4513), - [sym__ctrl_statement] = STATE(4555), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_for] = STATE(4479), - [sym_ctrl_loop] = STATE(4479), - [sym_ctrl_while] = STATE(4479), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3252), + [sym_nu_script] = STATE(5134), + [sym_shebang] = STATE(60), + [sym__block_body_statement] = STATE(4366), + [sym__declaration] = STATE(4632), + [sym_decl_alias] = STATE(4441), + [sym_stmt_let] = STATE(4465), + [sym_stmt_mut] = STATE(4465), + [sym_stmt_const] = STATE(4465), + [sym_assignment] = STATE(4465), + [sym__mutable_assignment_pattern] = STATE(4508), + [sym__statement] = STATE(4632), + [sym_pipeline] = STATE(4465), + [sym__block_body] = STATE(5115), + [sym_cmd_identifier] = STATE(2951), + [aux_sym__repeat_newline] = STATE(4531), + [sym_attribute_list] = STATE(4536), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4441), + [sym_decl_export] = STATE(4441), + [sym_decl_extern] = STATE(4441), + [sym_decl_module] = STATE(4441), + [sym_decl_use] = STATE(4441), + [sym__ctrl_statement] = STATE(4465), + [sym__ctrl_expression] = STATE(3333), + [sym_ctrl_for] = STATE(4546), + [sym_ctrl_loop] = STATE(4546), + [sym_ctrl_while] = STATE(4546), + [sym_ctrl_if] = STATE(3365), + [sym_ctrl_match] = STATE(3365), + [sym_ctrl_try] = STATE(3365), + [sym_pipe_element] = STATE(3098), + [sym_where_command] = STATE(3333), + [sym__expression] = STATE(2260), + [sym_expr_unary] = STATE(1276), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1276), + [sym__expr_binary_expression] = STATE(2222), + [sym_expr_parenthesized] = STATE(919), + [sym_val_range] = STATE(1276), + [sym__value] = STATE(1276), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(1294), + [sym_val_variable] = STATE(440), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(120), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3333), [sym_comment] = STATE(1), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(82), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(84), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(284), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_POUND_BANG] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), @@ -38459,85 +38669,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(105), }, [STATE(2)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(4930), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(25), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym_parameter_pipes] = STATE(49), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym__match_pattern_record_body] = STATE(5175), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4688), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4697), - [sym_val_variable] = STATE(397), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4688), - [sym_record_body] = STATE(4937), - [sym_record_entry] = STATE(4472), - [sym__record_key] = STATE(4982), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(4869), + [sym_cmd_identifier] = STATE(2690), + [aux_sym__repeat_newline] = STATE(24), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym_parameter_pipes] = STATE(47), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym__match_pattern_record_body] = STATE(5234), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(762), + [sym__spread_parenthesized] = STATE(4693), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym__spread_variable] = STATE(4695), + [sym_val_variable] = STATE(393), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(1215), + [sym__val_number_decimal] = STATE(106), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(1215), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(1215), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym__spread_record] = STATE(4693), + [sym_record_body] = STATE(4877), + [sym_record_entry] = STATE(4509), + [sym__record_key] = STATE(5228), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), [sym_comment] = STATE(2), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), [aux_sym__types_body_repeat1] = STATE(501), - [aux_sym__match_pattern_record_body_repeat1] = STATE(789), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym__match_pattern_record_body_repeat1] = STATE(761), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(823), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -38604,83 +38814,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(3)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(4836), - [sym_cmd_identifier] = STATE(2590), + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5088), + [sym_cmd_identifier] = STATE(2690), [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4688), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4697), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4688), - [sym_record_body] = STATE(4966), - [sym_record_entry] = STATE(4526), - [sym__record_key] = STATE(4982), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym_parameter_pipes] = STATE(54), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(762), + [sym__spread_parenthesized] = STATE(4693), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym__spread_variable] = STATE(4695), + [sym_val_variable] = STATE(418), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(1215), + [sym__val_number_decimal] = STATE(106), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(1215), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(1215), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym__spread_record] = STATE(4693), + [sym_record_body] = STATE(5147), + [sym_record_entry] = STATE(4520), + [sym__record_key] = STATE(5228), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), [sym_comment] = STATE(3), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym__types_body_repeat1] = STATE(615), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(823), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -38747,83 +38957,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(4)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(5043), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(16), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym_parameter_pipes] = STATE(64), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4688), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4697), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4688), - [sym_record_body] = STATE(5056), - [sym_record_entry] = STATE(4526), - [sym__record_key] = STATE(4982), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5155), + [sym_cmd_identifier] = STATE(2690), + [aux_sym__repeat_newline] = STATE(17), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym_parameter_pipes] = STATE(54), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(762), + [sym__spread_parenthesized] = STATE(4693), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym__spread_variable] = STATE(4695), + [sym_val_variable] = STATE(418), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(1215), + [sym__val_number_decimal] = STATE(106), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(1215), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(1215), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym__spread_record] = STATE(4693), + [sym_record_body] = STATE(5147), + [sym_record_entry] = STATE(4520), + [sym__record_key] = STATE(5228), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), [sym_comment] = STATE(4), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym__types_body_repeat1] = STATE(615), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(823), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -38890,83 +39100,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(5)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(5054), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(19), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4688), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4697), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4688), - [sym_record_body] = STATE(5089), - [sym_record_entry] = STATE(4526), - [sym__record_key] = STATE(4982), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5158), + [sym_cmd_identifier] = STATE(2690), + [aux_sym__repeat_newline] = STATE(26), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym_parameter_pipes] = STATE(65), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(762), + [sym__spread_parenthesized] = STATE(4693), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym__spread_variable] = STATE(4695), + [sym_val_variable] = STATE(418), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(1215), + [sym__val_number_decimal] = STATE(106), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(1215), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(1215), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym__spread_record] = STATE(4693), + [sym_record_body] = STATE(5107), + [sym_record_entry] = STATE(4520), + [sym__record_key] = STATE(5228), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), [sym_comment] = STATE(5), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym__types_body_repeat1] = STATE(615), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(823), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39033,83 +39243,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(6)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(4842), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(25), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym_parameter_pipes] = STATE(49), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4688), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4697), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4688), - [sym_record_body] = STATE(4937), - [sym_record_entry] = STATE(4526), - [sym__record_key] = STATE(4982), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5086), + [sym_cmd_identifier] = STATE(2690), + [aux_sym__repeat_newline] = STATE(18), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym_parameter_pipes] = STATE(40), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(762), + [sym__spread_parenthesized] = STATE(4693), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym__spread_variable] = STATE(4695), + [sym_val_variable] = STATE(418), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(1215), + [sym__val_number_decimal] = STATE(106), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(1215), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(1215), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym__spread_record] = STATE(4693), + [sym_record_body] = STATE(5092), + [sym_record_entry] = STATE(4520), + [sym__record_key] = STATE(5228), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), [sym_comment] = STATE(6), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym__types_body_repeat1] = STATE(615), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(823), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39176,83 +39386,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(7)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(4930), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(25), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym_parameter_pipes] = STATE(49), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4688), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4697), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4688), - [sym_record_body] = STATE(4937), - [sym_record_entry] = STATE(4526), - [sym__record_key] = STATE(4982), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(4981), + [sym_cmd_identifier] = STATE(2690), + [aux_sym__repeat_newline] = STATE(24), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym_parameter_pipes] = STATE(47), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(762), + [sym__spread_parenthesized] = STATE(4693), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym__spread_variable] = STATE(4695), + [sym_val_variable] = STATE(418), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(1215), + [sym__val_number_decimal] = STATE(106), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(1215), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(1215), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym__spread_record] = STATE(4693), + [sym_record_body] = STATE(4877), + [sym_record_entry] = STATE(4520), + [sym__record_key] = STATE(5228), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), [sym_comment] = STATE(7), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym__types_body_repeat1] = STATE(615), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(823), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39319,83 +39529,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(8)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(5166), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(19), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4688), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4697), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4688), - [sym_record_body] = STATE(5089), - [sym_record_entry] = STATE(4526), - [sym__record_key] = STATE(4982), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5158), + [sym_cmd_identifier] = STATE(2690), + [aux_sym__repeat_newline] = STATE(26), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym_parameter_pipes] = STATE(65), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(762), + [sym__spread_parenthesized] = STATE(4693), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym__spread_variable] = STATE(4695), + [sym_val_variable] = STATE(418), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(1215), + [sym__val_number_decimal] = STATE(106), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(1215), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(1215), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym__spread_record] = STATE(4693), + [sym_record_body] = STATE(5218), + [sym_record_entry] = STATE(4520), + [sym__record_key] = STATE(5228), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), [sym_comment] = STATE(8), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym__types_body_repeat1] = STATE(615), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(823), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39462,83 +39672,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(9)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(5184), - [sym_cmd_identifier] = STATE(2590), + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5159), + [sym_cmd_identifier] = STATE(2690), [aux_sym__repeat_newline] = STATE(18), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym_parameter_pipes] = STATE(53), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4688), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4697), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4688), - [sym_record_body] = STATE(5187), - [sym_record_entry] = STATE(4526), - [sym__record_key] = STATE(4982), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym_parameter_pipes] = STATE(40), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(762), + [sym__spread_parenthesized] = STATE(4693), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym__spread_variable] = STATE(4695), + [sym_val_variable] = STATE(418), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(1215), + [sym__val_number_decimal] = STATE(106), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(1215), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(1215), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym__spread_record] = STATE(4693), + [sym_record_body] = STATE(5092), + [sym_record_entry] = STATE(4520), + [sym__record_key] = STATE(5228), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), [sym_comment] = STATE(9), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym__types_body_repeat1] = STATE(615), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(823), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39605,83 +39815,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(10)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(5028), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(20), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym_parameter_pipes] = STATE(57), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4688), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4697), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4688), - [sym_record_body] = STATE(5045), - [sym_record_entry] = STATE(4526), - [sym__record_key] = STATE(4982), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(4883), + [sym_cmd_identifier] = STATE(2690), + [aux_sym__repeat_newline] = STATE(22), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym_parameter_pipes] = STATE(51), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(762), + [sym__spread_parenthesized] = STATE(4693), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym__spread_variable] = STATE(4695), + [sym_val_variable] = STATE(418), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(1215), + [sym__val_number_decimal] = STATE(106), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(1215), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(1215), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym__spread_record] = STATE(4693), + [sym_record_body] = STATE(4893), + [sym_record_entry] = STATE(4520), + [sym__record_key] = STATE(5228), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), [sym_comment] = STATE(10), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym__types_body_repeat1] = STATE(615), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(823), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39748,83 +39958,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(11)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(4949), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(23), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym_parameter_pipes] = STATE(61), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4688), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4697), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4688), - [sym_record_body] = STATE(4964), - [sym_record_entry] = STATE(4526), - [sym__record_key] = STATE(4982), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5040), + [sym_cmd_identifier] = STATE(2690), + [aux_sym__repeat_newline] = STATE(25), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym_parameter_pipes] = STATE(57), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(762), + [sym__spread_parenthesized] = STATE(4693), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym__spread_variable] = STATE(4695), + [sym_val_variable] = STATE(418), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(1215), + [sym__val_number_decimal] = STATE(106), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(1215), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(1215), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym__spread_record] = STATE(4693), + [sym_record_body] = STATE(5045), + [sym_record_entry] = STATE(4520), + [sym__record_key] = STATE(5228), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), [sym_comment] = STATE(11), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym__types_body_repeat1] = STATE(615), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(823), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39891,83 +40101,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(12)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(5043), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(16), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym_parameter_pipes] = STATE(64), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4688), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4697), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4688), - [sym_record_body] = STATE(5051), - [sym_record_entry] = STATE(4526), - [sym__record_key] = STATE(4982), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(4869), + [sym_cmd_identifier] = STATE(2690), + [aux_sym__repeat_newline] = STATE(24), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym_parameter_pipes] = STATE(47), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(762), + [sym__spread_parenthesized] = STATE(4693), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym__spread_variable] = STATE(4695), + [sym_val_variable] = STATE(418), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(1215), + [sym__val_number_decimal] = STATE(106), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(1215), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(1215), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym__spread_record] = STATE(4693), + [sym_record_body] = STATE(4877), + [sym_record_entry] = STATE(4520), + [sym__record_key] = STATE(5228), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), [sym_comment] = STATE(12), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym__types_body_repeat1] = STATE(615), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(823), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40034,83 +40244,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(13)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(5008), - [sym_cmd_identifier] = STATE(2590), + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5088), + [sym_cmd_identifier] = STATE(2690), [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4688), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4697), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4688), - [sym_record_body] = STATE(4966), - [sym_record_entry] = STATE(4526), - [sym__record_key] = STATE(4982), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym_parameter_pipes] = STATE(54), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(762), + [sym__spread_parenthesized] = STATE(4693), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym__spread_variable] = STATE(4695), + [sym_val_variable] = STATE(418), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(1215), + [sym__val_number_decimal] = STATE(106), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(1215), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(1215), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym__spread_record] = STATE(4693), + [sym_record_body] = STATE(4995), + [sym_record_entry] = STATE(4520), + [sym__record_key] = STATE(5228), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), [sym_comment] = STATE(13), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym__types_body_repeat1] = STATE(615), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(823), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40177,83 +40387,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(14)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(5008), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4688), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4697), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4688), - [sym_record_body] = STATE(4943), - [sym_record_entry] = STATE(4526), - [sym__record_key] = STATE(4982), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5093), + [sym_cmd_identifier] = STATE(2690), + [aux_sym__repeat_newline] = STATE(23), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym_parameter_pipes] = STATE(62), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(762), + [sym__spread_parenthesized] = STATE(4693), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym__spread_variable] = STATE(4695), + [sym_val_variable] = STATE(418), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(1215), + [sym__val_number_decimal] = STATE(106), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(1215), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(1215), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym__spread_record] = STATE(4693), + [sym_record_body] = STATE(5099), + [sym_record_entry] = STATE(4520), + [sym__record_key] = STATE(5228), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), [sym_comment] = STATE(14), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym__types_body_repeat1] = STATE(615), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(823), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40320,83 +40530,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(15)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(5054), - [sym_cmd_identifier] = STATE(2590), - [aux_sym__repeat_newline] = STATE(19), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(808), - [sym__spread_parenthesized] = STATE(4688), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym__spread_variable] = STATE(4697), - [sym_val_variable] = STATE(431), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(1153), - [sym__val_number_decimal] = STATE(115), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(1153), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(1153), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym__spread_record] = STATE(4688), - [sym_record_body] = STATE(5046), - [sym_record_entry] = STATE(4526), - [sym__record_key] = STATE(4982), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5086), + [sym_cmd_identifier] = STATE(2690), + [aux_sym__repeat_newline] = STATE(18), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym_parameter_pipes] = STATE(40), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(762), + [sym__spread_parenthesized] = STATE(4693), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym__spread_variable] = STATE(4695), + [sym_val_variable] = STATE(418), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(1215), + [sym__val_number_decimal] = STATE(106), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(1215), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(1215), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym__spread_record] = STATE(4693), + [sym_record_body] = STATE(5097), + [sym_record_entry] = STATE(4520), + [sym__record_key] = STATE(5228), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), [sym_comment] = STATE(15), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_pipe_element_repeat2] = STATE(292), - [aux_sym_record_body_repeat1] = STATE(826), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym__types_body_repeat1] = STATE(615), + [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_record_body_repeat1] = STATE(823), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40463,75 +40673,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(16)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(5094), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(1355), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym_parameter_pipes] = STATE(66), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5155), + [sym_cmd_identifier] = STATE(2712), + [aux_sym__repeat_newline] = STATE(17), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym_parameter_pipes] = STATE(54), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), [sym_comment] = STATE(16), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -40594,75 +40804,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(17)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(4971), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(1355), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym_parameter_pipes] = STATE(69), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5128), + [sym_cmd_identifier] = STATE(2712), + [aux_sym__repeat_newline] = STATE(1353), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym_parameter_pipes] = STATE(37), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), [sym_comment] = STATE(17), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -40725,75 +40935,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(18)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(4810), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(1355), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym_parameter_pipes] = STATE(55), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(4894), + [sym_cmd_identifier] = STATE(2712), + [aux_sym__repeat_newline] = STATE(1353), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym_parameter_pipes] = STATE(35), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), [sym_comment] = STATE(18), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -40856,75 +41066,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(19)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(5169), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(1355), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym_parameter_pipes] = STATE(44), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5086), + [sym_cmd_identifier] = STATE(2712), + [aux_sym__repeat_newline] = STATE(18), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym_parameter_pipes] = STATE(40), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), [sym_comment] = STATE(19), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -40987,75 +41197,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(20)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(4798), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(1355), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym_parameter_pipes] = STATE(59), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5088), + [sym_cmd_identifier] = STATE(2712), + [aux_sym__repeat_newline] = STATE(17), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym_parameter_pipes] = STATE(54), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), [sym_comment] = STATE(20), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41118,75 +41328,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(21)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(5166), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(19), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5159), + [sym_cmd_identifier] = STATE(2712), + [aux_sym__repeat_newline] = STATE(18), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym_parameter_pipes] = STATE(40), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), [sym_comment] = STATE(21), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41249,75 +41459,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(22)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(5054), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(19), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym_parameter_pipes] = STATE(42), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(4940), + [sym_cmd_identifier] = STATE(2712), + [aux_sym__repeat_newline] = STATE(1353), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym_parameter_pipes] = STATE(53), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), [sym_comment] = STATE(22), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41380,75 +41590,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(23)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(4990), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(1355), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym_parameter_pipes] = STATE(63), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5122), + [sym_cmd_identifier] = STATE(2712), + [aux_sym__repeat_newline] = STATE(1353), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym_parameter_pipes] = STATE(64), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), [sym_comment] = STATE(23), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41511,75 +41721,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(24)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(5008), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5041), + [sym_cmd_identifier] = STATE(2712), + [aux_sym__repeat_newline] = STATE(1353), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym_parameter_pipes] = STATE(49), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), [sym_comment] = STATE(24), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41642,75 +41852,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(25)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(5016), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(1355), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym_parameter_pipes] = STATE(73), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5058), + [sym_cmd_identifier] = STATE(2712), + [aux_sym__repeat_newline] = STATE(1353), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym_parameter_pipes] = STATE(59), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), [sym_comment] = STATE(25), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41773,75 +41983,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(26)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(4836), - [sym_cmd_identifier] = STATE(2711), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym_parameter_pipes] = STATE(45), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5233), + [sym_cmd_identifier] = STATE(2712), + [aux_sym__repeat_newline] = STATE(1353), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym_parameter_pipes] = STATE(67), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), [sym_comment] = STATE(26), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41904,73 +42114,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(27)] = { - [sym__block_body_statement_parenthesized] = STATE(3793), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), + [sym__block_body_statement_parenthesized] = STATE(3869), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5017), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym__parenthesized_body] = STATE(4992), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), [sym_comment] = STATE(27), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym__parenthesized_body_repeat2] = STATE(91), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42033,73 +42243,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(28)] = { - [sym__block_body_statement_parenthesized] = STATE(3793), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), + [sym__block_body_statement_parenthesized] = STATE(3869), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5197), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym__parenthesized_body] = STATE(5100), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), [sym_comment] = STATE(28), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym__parenthesized_body_repeat2] = STATE(91), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42162,73 +42372,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(29)] = { - [sym__block_body_statement_parenthesized] = STATE(3793), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), + [sym__block_body_statement_parenthesized] = STATE(3869), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5041), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym__parenthesized_body] = STATE(4848), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), [sym_comment] = STATE(29), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym__parenthesized_body_repeat2] = STATE(91), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42269,7 +42479,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_RPAREN2] = ACTIONS(351), + [anon_sym_RPAREN2] = ACTIONS(347), [aux_sym__val_number_decimal_token1] = ACTIONS(337), [aux_sym__val_number_decimal_token2] = ACTIONS(339), [aux_sym__val_number_decimal_token3] = ACTIONS(341), @@ -42291,73 +42501,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(30)] = { - [sym__block_body_statement_parenthesized] = STATE(3793), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), + [sym__block_body_statement_parenthesized] = STATE(3869), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5182), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym__parenthesized_body] = STATE(4837), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), [sym_comment] = STATE(30), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym__parenthesized_body_repeat2] = STATE(91), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42389,7 +42599,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(353), + [anon_sym_RPAREN] = ACTIONS(351), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -42398,7 +42608,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_RPAREN2] = ACTIONS(355), + [anon_sym_RPAREN2] = ACTIONS(335), [aux_sym__val_number_decimal_token1] = ACTIONS(337), [aux_sym__val_number_decimal_token2] = ACTIONS(339), [aux_sym__val_number_decimal_token3] = ACTIONS(341), @@ -42420,73 +42630,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(31)] = { - [sym__block_body_statement_parenthesized] = STATE(3793), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), + [sym__block_body_statement_parenthesized] = STATE(3869), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4921), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym__parenthesized_body] = STATE(4880), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), [sym_comment] = STATE(31), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym__parenthesized_body_repeat2] = STATE(91), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(253), + [anon_sym_use] = ACTIONS(255), + [anon_sym_export_DASHenv] = ACTIONS(257), + [anon_sym_extern] = ACTIONS(259), + [anon_sym_module] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_loop] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(327), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(329), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(353), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(333), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [anon_sym_RPAREN2] = ACTIONS(355), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(343), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(32)] = { + [sym__block_body_statement_parenthesized] = STATE(3869), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym__parenthesized_body] = STATE(5038), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), + [sym_comment] = STATE(32), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym__parenthesized_body_repeat2] = STATE(91), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42548,203 +42887,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(32)] = { - [sym__block_body_statement_parenthesized] = STATE(3793), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5049), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(32), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [sym__newline] = ACTIONS(153), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(361), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_RPAREN2] = ACTIONS(363), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, [STATE(33)] = { - [sym__block_body_statement_parenthesized] = STATE(3793), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), + [sym__block_body_statement_parenthesized] = STATE(3869), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4913), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym__parenthesized_body] = STATE(5156), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), [sym_comment] = STATE(33), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym__parenthesized_body_repeat2] = STATE(91), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42776,7 +42986,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(365), + [anon_sym_RPAREN] = ACTIONS(361), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -42807,73 +43017,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(34)] = { - [sym__block_body_statement_parenthesized] = STATE(3793), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), + [sym__block_body_statement_parenthesized] = STATE(3869), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4940), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym__parenthesized_body] = STATE(5260), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), [sym_comment] = STATE(34), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym__parenthesized_body_repeat2] = STATE(91), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42905,7 +43115,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(367), + [anon_sym_RPAREN] = ACTIONS(365), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -42914,7 +43124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_RPAREN2] = ACTIONS(359), + [anon_sym_RPAREN2] = ACTIONS(367), [aux_sym__val_number_decimal_token1] = ACTIONS(337), [aux_sym__val_number_decimal_token2] = ACTIONS(339), [aux_sym__val_number_decimal_token3] = ACTIONS(341), @@ -42936,78 +43146,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(35)] = { - [sym__block_body_statement_parenthesized] = STATE(3793), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4834), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5102), + [sym_cmd_identifier] = STATE(2712), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(121), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), [sym_comment] = STATE(35), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(281), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -43017,9 +43227,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -43034,19 +43244,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(369), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(369), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -43059,78 +43269,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(36)] = { - [sym__block_body_statement_parenthesized] = STATE(3793), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), + [sym__block_body_statement_parenthesized] = STATE(3869), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4961), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym__parenthesized_body] = STATE(5100), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), [sym_comment] = STATE(36), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym__parenthesized_body_repeat2] = STATE(91), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -43192,73 +43402,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(37)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(5055), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(4860), + [sym_cmd_identifier] = STATE(2712), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), [sym_comment] = STATE(37), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -43320,73 +43530,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(38)] = { - [sym__block_body_statement_parenthesized] = STATE(3793), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), + [sym__block_body_statement_parenthesized] = STATE(3869), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4821), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym__parenthesized_body] = STATE(4837), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), [sym_comment] = STATE(38), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym__parenthesized_body_repeat2] = STATE(91), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -43448,201 +43658,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(39)] = { - [sym__block_body_statement_parenthesized] = STATE(3793), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4921), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(39), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [sym__newline] = ACTIONS(153), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(377), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(40)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(4881), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(4842), + [sym_cmd_identifier] = STATE(2712), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), - [sym_comment] = STATE(40), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), + [sym_comment] = STATE(39), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -43677,7 +43759,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(379), + [anon_sym_RBRACE] = ACTIONS(377), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -43703,202 +43785,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(41)] = { - [sym__block_body_statement_parenthesized] = STATE(3793), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4920), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(41), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [sym__newline] = ACTIONS(153), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(381), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(42)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(4841), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [STATE(40)] = { + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(4896), + [sym_cmd_identifier] = STATE(2712), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), - [sym_comment] = STATE(42), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), + [sym_comment] = STATE(40), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -43933,7 +43887,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(383), + [anon_sym_RBRACE] = ACTIONS(379), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -43959,74 +43913,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(43)] = { - [sym__block_body_statement_parenthesized] = STATE(3793), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), + [STATE(41)] = { + [sym__block_body_statement_parenthesized] = STATE(3869), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4863), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(43), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym__parenthesized_body] = STATE(4901), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), + [sym_comment] = STATE(41), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym__parenthesized_body_repeat2] = STATE(91), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -44058,7 +44012,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(385), + [anon_sym_RPAREN] = ACTIONS(381), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -44087,79 +44041,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(44)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(5040), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), + [STATE(42)] = { + [sym__block_body_statement_parenthesized] = STATE(3869), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym__parenthesized_body] = STATE(5071), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), - [sym_comment] = STATE(44), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), + [sym_comment] = STATE(42), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym__parenthesized_body_repeat2] = STATE(91), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -44169,9 +44123,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -44186,19 +44140,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(383), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(387), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -44211,78 +44165,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(45)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(4805), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [STATE(43)] = { + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5067), + [sym_cmd_identifier] = STATE(2712), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), - [sym_comment] = STATE(45), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), + [sym_comment] = STATE(43), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -44317,7 +44271,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(389), + [anon_sym_RBRACE] = ACTIONS(385), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -44343,74 +44297,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(46)] = { - [sym__block_body_statement_parenthesized] = STATE(3793), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), + [STATE(44)] = { + [sym__block_body_statement_parenthesized] = STATE(3869), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4926), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(46), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym__parenthesized_body] = STATE(5023), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), + [sym_comment] = STATE(44), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym__parenthesized_body_repeat2] = STATE(91), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -44442,7 +44396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(391), + [anon_sym_RPAREN] = ACTIONS(387), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -44471,74 +44425,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(47)] = { - [sym__block_body_statement_parenthesized] = STATE(3793), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), + [STATE(45)] = { + [sym__block_body_statement_parenthesized] = STATE(3869), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5017), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(47), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym__parenthesized_body] = STATE(5038), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), + [sym_comment] = STATE(45), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym__parenthesized_body_repeat2] = STATE(91), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -44570,7 +44524,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(393), + [anon_sym_RPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -44599,74 +44553,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(48)] = { - [sym__block_body_statement_parenthesized] = STATE(3793), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), + [STATE(46)] = { + [sym__block_body_statement_parenthesized] = STATE(3869), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4981), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(48), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym__parenthesized_body] = STATE(4991), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), + [sym_comment] = STATE(46), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym__parenthesized_body_repeat2] = STATE(91), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -44698,7 +44652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(395), + [anon_sym_RPAREN] = ACTIONS(391), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -44727,74 +44681,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(49)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(5019), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [STATE(47)] = { + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5046), + [sym_cmd_identifier] = STATE(2712), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), - [sym_comment] = STATE(49), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), + [sym_comment] = STATE(47), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -44829,7 +44783,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(393), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -44855,74 +44809,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(50)] = { - [sym__block_body_statement_parenthesized] = STATE(3793), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), + [STATE(48)] = { + [sym__block_body_statement_parenthesized] = STATE(3869), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5025), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(50), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym__parenthesized_body] = STATE(5052), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), + [sym_comment] = STATE(48), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym__parenthesized_body_repeat2] = STATE(91), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -44954,7 +44908,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(399), + [anon_sym_RPAREN] = ACTIONS(395), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -44983,79 +44937,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(51)] = { - [sym__block_body_statement_parenthesized] = STATE(3793), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5049), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(51), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [STATE(49)] = { + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(4926), + [sym_cmd_identifier] = STATE(2712), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(121), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), + [sym_comment] = STATE(49), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(281), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -45065,9 +45019,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -45082,19 +45036,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(401), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(397), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -45107,78 +45061,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(52)] = { - [sym__block_body_statement_parenthesized] = STATE(3793), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), + [STATE(50)] = { + [sym__block_body_statement_parenthesized] = STATE(3869), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4913), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(52), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym__parenthesized_body] = STATE(4848), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), + [sym_comment] = STATE(50), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym__parenthesized_body_repeat2] = STATE(91), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -45210,7 +45164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(403), + [anon_sym_RPAREN] = ACTIONS(399), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -45239,74 +45193,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(53)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(4830), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [STATE(51)] = { + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(4947), + [sym_cmd_identifier] = STATE(2712), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), - [sym_comment] = STATE(53), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), + [sym_comment] = STATE(51), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -45341,7 +45295,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(405), + [anon_sym_RBRACE] = ACTIONS(401), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -45367,74 +45321,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(54)] = { - [sym__block_body_statement_parenthesized] = STATE(3793), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), + [STATE(52)] = { + [sym__block_body_statement_parenthesized] = STATE(3869), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4928), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(54), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym__parenthesized_body] = STATE(4948), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), + [sym_comment] = STATE(52), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym__parenthesized_body_repeat2] = STATE(91), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -45466,7 +45420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(407), + [anon_sym_RPAREN] = ACTIONS(403), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -45495,74 +45449,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(55)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(4801), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [STATE(53)] = { + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(4978), + [sym_cmd_identifier] = STATE(2712), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), - [sym_comment] = STATE(55), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), + [sym_comment] = STATE(53), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -45597,7 +45551,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(409), + [anon_sym_RBRACE] = ACTIONS(405), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -45623,79 +45577,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(56)] = { - [sym__block_body_statement_parenthesized] = STATE(3793), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4944), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(56), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [STATE(54)] = { + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5138), + [sym_cmd_identifier] = STATE(2712), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(121), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), + [sym_comment] = STATE(54), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(281), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -45705,9 +45659,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -45722,19 +45676,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(411), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(407), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -45747,83 +45701,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(57)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(4802), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), + [STATE(55)] = { + [sym__block_body_statement_parenthesized] = STATE(3869), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym__parenthesized_body] = STATE(5091), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), - [sym_comment] = STATE(57), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), + [sym_comment] = STATE(55), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym__parenthesized_body_repeat2] = STATE(91), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -45833,9 +45787,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -45850,19 +45804,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(409), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(413), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -45875,78 +45829,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(58)] = { - [sym__block_body_statement_parenthesized] = STATE(3793), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), + [STATE(56)] = { + [sym__block_body_statement_parenthesized] = STATE(3869), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4803), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(58), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym__parenthesized_body] = STATE(5022), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), + [sym_comment] = STATE(56), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym__parenthesized_body_repeat2] = STATE(91), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -45978,7 +45932,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(415), + [anon_sym_RPAREN] = ACTIONS(411), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -46007,74 +45961,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(59)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(4809), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [STATE(57)] = { + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5060), + [sym_cmd_identifier] = STATE(2712), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), - [sym_comment] = STATE(59), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), + [sym_comment] = STATE(57), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -46109,7 +46063,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(417), + [anon_sym_RBRACE] = ACTIONS(413), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -46135,74 +46089,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(60)] = { - [sym__block_body_statement_parenthesized] = STATE(3793), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), + [STATE(58)] = { + [sym__block_body_statement_parenthesized] = STATE(3869), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5041), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(60), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym__parenthesized_body] = STATE(5061), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), + [sym_comment] = STATE(58), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym__parenthesized_body_repeat2] = STATE(91), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -46234,7 +46188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(419), + [anon_sym_RPAREN] = ACTIONS(415), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -46263,74 +46217,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(61)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(4994), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [STATE(59)] = { + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5066), + [sym_cmd_identifier] = STATE(2712), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), - [sym_comment] = STATE(61), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), + [sym_comment] = STATE(59), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -46365,7 +46319,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(421), + [anon_sym_RBRACE] = ACTIONS(417), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -46391,74 +46345,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(62)] = { - [sym__block_body_statement_parenthesized] = STATE(3793), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), + [STATE(60)] = { + [sym__block_body_statement] = STATE(4366), + [sym__declaration] = STATE(4632), + [sym_decl_alias] = STATE(4441), + [sym_stmt_let] = STATE(4465), + [sym_stmt_mut] = STATE(4465), + [sym_stmt_const] = STATE(4465), + [sym_assignment] = STATE(4465), + [sym__mutable_assignment_pattern] = STATE(4508), + [sym__statement] = STATE(4632), + [sym_pipeline] = STATE(4465), + [sym__block_body] = STATE(5253), + [sym_cmd_identifier] = STATE(2951), + [sym_attribute_list] = STATE(4536), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4441), + [sym_decl_export] = STATE(4441), + [sym_decl_extern] = STATE(4441), + [sym_decl_module] = STATE(4441), + [sym_decl_use] = STATE(4441), + [sym__ctrl_statement] = STATE(4465), + [sym__ctrl_expression] = STATE(3333), + [sym_ctrl_for] = STATE(4546), + [sym_ctrl_loop] = STATE(4546), + [sym_ctrl_while] = STATE(4546), + [sym_ctrl_if] = STATE(3365), + [sym_ctrl_match] = STATE(3365), + [sym_ctrl_try] = STATE(3365), + [sym_pipe_element] = STATE(3098), + [sym_where_command] = STATE(3333), + [sym__expression] = STATE(2260), + [sym_expr_unary] = STATE(1276), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1276), + [sym__expr_binary_expression] = STATE(2222), + [sym_expr_parenthesized] = STATE(919), + [sym_val_range] = STATE(1276), + [sym__value] = STATE(1276), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(1294), + [sym_val_variable] = STATE(440), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(120), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3333), + [sym_comment] = STATE(60), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(80), + [aux_sym__block_body_repeat2] = STATE(84), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(284), + [ts_builtin_sym_end] = ACTIONS(419), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(21), + [anon_sym_use] = ACTIONS(23), + [anon_sym_export_DASHenv] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(27), + [anon_sym_module] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_loop] = ACTIONS(33), + [anon_sym_while] = ACTIONS(35), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(43), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [sym__newline] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(55), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(63), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(61)] = { + [sym__block_body_statement_parenthesized] = STATE(3869), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4995), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(62), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym__parenthesized_body] = STATE(5156), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), + [sym_comment] = STATE(61), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym__parenthesized_body_repeat2] = STATE(91), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -46490,7 +46572,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(423), + [anon_sym_RPAREN] = ACTIONS(421), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -46519,74 +46601,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(63)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(5007), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [STATE(62)] = { + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5124), + [sym_cmd_identifier] = STATE(2712), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), - [sym_comment] = STATE(63), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), + [sym_comment] = STATE(62), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -46621,7 +46703,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(425), + [anon_sym_RBRACE] = ACTIONS(423), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -46647,74 +46729,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(64)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(5096), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), + [STATE(63)] = { + [sym__block_body_statement_parenthesized] = STATE(3869), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym__parenthesized_body] = STATE(5125), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), + [sym_comment] = STATE(63), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym__parenthesized_body_repeat2] = STATE(91), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(253), + [anon_sym_use] = ACTIONS(255), + [anon_sym_export_DASHenv] = ACTIONS(257), + [anon_sym_extern] = ACTIONS(259), + [anon_sym_module] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_loop] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(327), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(329), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(425), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(333), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(343), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(64)] = { + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5131), + [sym_cmd_identifier] = STATE(2712), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), [sym_comment] = STATE(64), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -46776,73 +46986,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(65)] = { - [sym__block_body_statement_parenthesized] = STATE(3793), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5103), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5236), + [sym_cmd_identifier] = STATE(2712), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(121), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), [sym_comment] = STATE(65), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(281), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(253), + [anon_sym_use] = ACTIONS(255), + [anon_sym_export_DASHenv] = ACTIONS(257), + [anon_sym_extern] = ACTIONS(259), + [anon_sym_module] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_loop] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(429), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(66)] = { + [sym__block_body_statement_parenthesized] = STATE(3869), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym__parenthesized_body] = STATE(5237), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), + [sym_comment] = STATE(66), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym__parenthesized_body_repeat2] = STATE(91), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -46874,7 +47212,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(429), + [anon_sym_RPAREN] = ACTIONS(431), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -46903,74 +47241,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(66)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(5161), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [STATE(67)] = { + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5242), + [sym_cmd_identifier] = STATE(2712), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), - [sym_comment] = STATE(66), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), + [sym_comment] = STATE(67), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(79), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -47005,7 +47343,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(431), + [anon_sym_RBRACE] = ACTIONS(433), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -47031,74 +47369,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(67)] = { - [sym__block_body_statement_parenthesized] = STATE(3793), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), + [STATE(68)] = { + [sym__block_body_statement_parenthesized] = STATE(3869), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4800), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(67), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym__parenthesized_body] = STATE(4839), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), + [sym_comment] = STATE(68), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym__parenthesized_body_repeat2] = STATE(91), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -47130,7 +47468,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(433), + [anon_sym_RPAREN] = ACTIONS(435), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -47159,74 +47497,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(68)] = { - [sym__block_body_statement_parenthesized] = STATE(3793), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), + [STATE(69)] = { + [sym__block_body_statement_parenthesized] = STATE(3869), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4819), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(68), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym__parenthesized_body] = STATE(4859), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), + [sym_comment] = STATE(69), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym__parenthesized_body_repeat2] = STATE(91), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -47258,7 +47596,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(435), + [anon_sym_RPAREN] = ACTIONS(437), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -47287,79 +47625,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(69)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(4873), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), + [STATE(70)] = { + [sym__block_body_statement_parenthesized] = STATE(3869), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym__parenthesized_body] = STATE(4874), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), - [sym_comment] = STATE(69), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), + [sym_comment] = STATE(70), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym__parenthesized_body_repeat2] = STATE(91), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -47369,9 +47707,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -47386,19 +47724,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(437), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -47411,78 +47749,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(70)] = { - [sym__block_body_statement_parenthesized] = STATE(3793), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), + [STATE(71)] = { + [sym__block_body_statement_parenthesized] = STATE(3869), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4848), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(70), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym__parenthesized_body] = STATE(4888), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), + [sym_comment] = STATE(71), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym__parenthesized_body_repeat2] = STATE(91), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -47514,7 +47852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(439), + [anon_sym_RPAREN] = ACTIONS(441), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -47543,202 +47881,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(71)] = { - [sym__block_body_statement] = STATE(4292), - [sym__declaration] = STATE(4552), - [sym_decl_alias] = STATE(4513), - [sym_stmt_let] = STATE(4555), - [sym_stmt_mut] = STATE(4555), - [sym_stmt_const] = STATE(4555), - [sym_assignment] = STATE(4555), - [sym__mutable_assignment_pattern] = STATE(4381), - [sym__statement] = STATE(4552), - [sym_pipeline] = STATE(4555), - [sym__block_body] = STATE(5035), - [sym_cmd_identifier] = STATE(2895), - [sym_attribute_list] = STATE(4414), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4513), - [sym_decl_export] = STATE(4513), - [sym_decl_extern] = STATE(4513), - [sym_decl_module] = STATE(4513), - [sym_decl_use] = STATE(4513), - [sym__ctrl_statement] = STATE(4555), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_for] = STATE(4479), - [sym_ctrl_loop] = STATE(4479), - [sym_ctrl_while] = STATE(4479), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3252), - [sym_comment] = STATE(71), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(82), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(281), - [ts_builtin_sym_end] = ACTIONS(441), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(21), - [anon_sym_use] = ACTIONS(23), - [anon_sym_export_DASHenv] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_module] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_loop] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(43), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [sym__newline] = ACTIONS(55), - [anon_sym_SEMI] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(63), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, [STATE(72)] = { - [sym__block_body_statement_parenthesized] = STATE(3793), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), + [sym__block_body_statement_parenthesized] = STATE(3869), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4940), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym__parenthesized_body] = STATE(4992), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), [sym_comment] = STATE(72), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym__parenthesized_body_repeat2] = STATE(91), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -47800,78 +48010,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(73)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(5036), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), + [sym__block_body_statement_parenthesized] = STATE(3869), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym__parenthesized_body] = STATE(4846), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), [sym_comment] = STATE(73), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(76), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym__parenthesized_body_repeat2] = STATE(91), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -47881,9 +48091,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -47898,19 +48108,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(445), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(445), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -47923,77 +48133,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(74)] = { - [sym__block_body_statement] = STATE(4020), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(434), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym__block_body_statement] = STATE(4084), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym_cmd_identifier] = STATE(2712), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(447), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), [sym_comment] = STATE(74), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(1357), - [aux_sym__block_body_repeat2] = STATE(85), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(290), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat1] = STATE(1350), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(285), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -48055,78 +48265,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(75)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(4864), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(434), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym__block_body_statement_parenthesized] = STATE(3844), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), [sym_comment] = STATE(75), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(290), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym__block_body_repeat1] = STATE(1350), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym__parenthesized_body_repeat2] = STATE(85), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -48136,9 +48345,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -48153,11 +48362,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(461), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), @@ -48177,204 +48387,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(76)] = { - [sym__block_body_statement] = STATE(4020), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), + [sym__block_body_statement_parenthesized] = STATE(3869), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym__parenthesized_body] = STATE(5002), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), [sym_comment] = STATE(76), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat1] = STATE(1357), - [aux_sym__block_body_repeat2] = STATE(86), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [sym__newline] = ACTIONS(153), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(459), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(77)] = { - [sym__block_body_statement_parenthesized] = STATE(3767), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(77), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(1357), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(90), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym__parenthesized_body_repeat2] = STATE(91), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -48406,7 +48490,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(461), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -48435,74 +48518,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(78)] = { - [sym__block_body_statement] = STATE(3969), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym__block_body] = STATE(4987), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(434), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), - [sym_comment] = STATE(78), - [aux_sym_pipeline_repeat1] = STATE(188), + [STATE(77)] = { + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(4881), + [sym_cmd_identifier] = STATE(2712), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(447), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), + [sym_comment] = STATE(77), + [aux_sym_pipeline_repeat1] = STATE(191), [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(290), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(285), [anon_sym_export] = ACTIONS(447), [anon_sym_alias] = ACTIONS(449), [anon_sym_let] = ACTIONS(451), @@ -48562,206 +48645,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(79)] = { - [sym__block_body_statement] = STATE(4184), - [sym__declaration] = STATE(4552), - [sym_decl_alias] = STATE(4513), - [sym_stmt_let] = STATE(4555), - [sym_stmt_mut] = STATE(4555), - [sym_stmt_const] = STATE(4555), - [sym_assignment] = STATE(4555), - [sym__mutable_assignment_pattern] = STATE(4381), - [sym__statement] = STATE(4552), - [sym_pipeline] = STATE(4555), - [sym_cmd_identifier] = STATE(2895), - [sym_attribute_list] = STATE(4414), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4513), - [sym_decl_export] = STATE(4513), - [sym_decl_extern] = STATE(4513), - [sym_decl_module] = STATE(4513), - [sym_decl_use] = STATE(4513), - [sym__ctrl_statement] = STATE(4555), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_for] = STATE(4479), - [sym_ctrl_loop] = STATE(4479), - [sym_ctrl_while] = STATE(4479), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3252), - [sym_comment] = STATE(79), + [STATE(78)] = { + [sym__block_body_statement] = STATE(3963), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(4891), + [sym_cmd_identifier] = STATE(2712), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(447), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), + [sym_comment] = STATE(78), [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(1370), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(281), - [ts_builtin_sym_end] = ACTIONS(459), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(21), - [anon_sym_use] = ACTIONS(23), - [anon_sym_export_DASHenv] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_module] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_loop] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(43), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [sym__newline] = ACTIONS(55), - [anon_sym_SEMI] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(63), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(80)] = { - [sym__block_body_statement_parenthesized] = STATE(3793), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(4907), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(80), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym__block_body_repeat2] = STATE(88), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(285), + [anon_sym_export] = ACTIONS(447), + [anon_sym_alias] = ACTIONS(449), + [anon_sym_let] = ACTIONS(451), + [anon_sym_mut] = ACTIONS(453), + [anon_sym_const] = ACTIONS(455), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -48771,9 +48727,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(457), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -48792,7 +48748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), @@ -48812,83 +48768,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(81)] = { - [sym__block_body_statement_parenthesized] = STATE(3793), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym__parenthesized_body] = STATE(5165), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(81), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(77), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(83), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [STATE(79)] = { + [sym__block_body_statement] = STATE(4084), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym_cmd_identifier] = STATE(2712), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(121), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), + [sym_comment] = STATE(79), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(1350), + [aux_sym__block_body_repeat2] = STATE(82), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(281), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -48898,9 +48853,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -48918,15 +48873,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(459), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -48939,76 +48895,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(82)] = { - [sym__block_body_statement] = STATE(4184), - [sym__declaration] = STATE(4552), - [sym_decl_alias] = STATE(4513), - [sym_stmt_let] = STATE(4555), - [sym_stmt_mut] = STATE(4555), - [sym_stmt_const] = STATE(4555), - [sym_assignment] = STATE(4555), - [sym__mutable_assignment_pattern] = STATE(4381), - [sym__statement] = STATE(4552), - [sym_pipeline] = STATE(4555), - [sym_cmd_identifier] = STATE(2895), - [sym_attribute_list] = STATE(4414), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4513), - [sym_decl_export] = STATE(4513), - [sym_decl_extern] = STATE(4513), - [sym_decl_module] = STATE(4513), - [sym_decl_use] = STATE(4513), - [sym__ctrl_statement] = STATE(4555), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_for] = STATE(4479), - [sym_ctrl_loop] = STATE(4479), - [sym_ctrl_while] = STATE(4479), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3252), - [sym_comment] = STATE(82), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(281), + [STATE(80)] = { + [sym__block_body_statement] = STATE(4196), + [sym__declaration] = STATE(4632), + [sym_decl_alias] = STATE(4441), + [sym_stmt_let] = STATE(4465), + [sym_stmt_mut] = STATE(4465), + [sym_stmt_const] = STATE(4465), + [sym_assignment] = STATE(4465), + [sym__mutable_assignment_pattern] = STATE(4508), + [sym__statement] = STATE(4632), + [sym_pipeline] = STATE(4465), + [sym_cmd_identifier] = STATE(2951), + [sym_attribute_list] = STATE(4536), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4441), + [sym_decl_export] = STATE(4441), + [sym_decl_extern] = STATE(4441), + [sym_decl_module] = STATE(4441), + [sym_decl_use] = STATE(4441), + [sym__ctrl_statement] = STATE(4465), + [sym__ctrl_expression] = STATE(3333), + [sym_ctrl_for] = STATE(4546), + [sym_ctrl_loop] = STATE(4546), + [sym_ctrl_while] = STATE(4546), + [sym_ctrl_if] = STATE(3365), + [sym_ctrl_match] = STATE(3365), + [sym_ctrl_try] = STATE(3365), + [sym_pipe_element] = STATE(3098), + [sym_where_command] = STATE(3333), + [sym__expression] = STATE(2260), + [sym_expr_unary] = STATE(1276), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1276), + [sym__expr_binary_expression] = STATE(2222), + [sym_expr_parenthesized] = STATE(919), + [sym_val_range] = STATE(1276), + [sym__value] = STATE(1276), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(1294), + [sym_val_variable] = STATE(440), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(120), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3333), + [sym_comment] = STATE(80), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(1357), + [aux_sym__block_body_repeat2] = STATE(87), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(284), + [ts_builtin_sym_end] = ACTIONS(459), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -49035,6 +48993,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(51), [aux_sym_cmd_identifier_token4] = ACTIONS(51), [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [sym__newline] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(55), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), @@ -49066,71 +49026,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(83)] = { - [sym__block_body_statement_parenthesized] = STATE(3767), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), + [STATE(81)] = { + [sym__block_body_statement_parenthesized] = STATE(3869), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(83), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym__parenthesized_body] = STATE(4915), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), + [sym_comment] = STATE(81), [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), [aux_sym__parenthesized_body_repeat2] = STATE(91), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), @@ -49158,6 +49120,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(283), [aux_sym_cmd_identifier_token4] = ACTIONS(283), [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), @@ -49189,72 +49153,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(84)] = { - [sym__block_body_statement] = STATE(4020), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [STATE(82)] = { + [sym__block_body_statement] = STATE(3992), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym_cmd_identifier] = STATE(2712), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), - [sym_comment] = STATE(84), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), + [sym_comment] = STATE(82), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -49312,195 +49276,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(85)] = { - [sym__block_body_statement] = STATE(3929), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(434), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), - [sym_comment] = STATE(85), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(290), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(457), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(86)] = { - [sym__block_body_statement] = STATE(3929), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [STATE(83)] = { + [sym__block_body_statement] = STATE(4084), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym_cmd_identifier] = STATE(2712), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(451), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), - [sym_comment] = STATE(86), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(292), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), + [sym_comment] = STATE(83), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -49558,77 +49399,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(87)] = { - [sym__block_body_statement] = STATE(4020), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(434), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), - [sym_comment] = STATE(87), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(290), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), + [STATE(84)] = { + [sym__block_body_statement] = STATE(4196), + [sym__declaration] = STATE(4632), + [sym_decl_alias] = STATE(4441), + [sym_stmt_let] = STATE(4465), + [sym_stmt_mut] = STATE(4465), + [sym_stmt_const] = STATE(4465), + [sym_assignment] = STATE(4465), + [sym__mutable_assignment_pattern] = STATE(4508), + [sym__statement] = STATE(4632), + [sym_pipeline] = STATE(4465), + [sym_cmd_identifier] = STATE(2951), + [sym_attribute_list] = STATE(4536), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4441), + [sym_decl_export] = STATE(4441), + [sym_decl_extern] = STATE(4441), + [sym_decl_module] = STATE(4441), + [sym_decl_use] = STATE(4441), + [sym__ctrl_statement] = STATE(4465), + [sym__ctrl_expression] = STATE(3333), + [sym_ctrl_for] = STATE(4546), + [sym_ctrl_loop] = STATE(4546), + [sym_ctrl_while] = STATE(4546), + [sym_ctrl_if] = STATE(3365), + [sym_ctrl_match] = STATE(3365), + [sym_ctrl_try] = STATE(3365), + [sym_pipe_element] = STATE(3098), + [sym_where_command] = STATE(3333), + [sym__expression] = STATE(2260), + [sym_expr_unary] = STATE(1276), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1276), + [sym__expr_binary_expression] = STATE(2222), + [sym_expr_parenthesized] = STATE(919), + [sym_val_range] = STATE(1276), + [sym__value] = STATE(1276), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(1294), + [sym_val_variable] = STATE(440), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(120), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3333), + [sym_comment] = STATE(84), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(284), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(21), + [anon_sym_use] = ACTIONS(23), + [anon_sym_export_DASHenv] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(27), + [anon_sym_module] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_loop] = ACTIONS(33), + [anon_sym_while] = ACTIONS(35), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(43), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(63), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(85)] = { + [sym__block_body_statement_parenthesized] = STATE(3913), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), + [sym_comment] = STATE(85), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym__parenthesized_body_repeat2] = STATE(86), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -49638,9 +49602,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -49657,7 +49621,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), @@ -49677,76 +49641,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(88)] = { - [sym__block_body_statement] = STATE(4451), - [sym__declaration] = STATE(4285), - [sym_decl_alias] = STATE(4286), - [sym_stmt_let] = STATE(4287), - [sym_stmt_mut] = STATE(4287), - [sym_stmt_const] = STATE(4287), - [sym_assignment] = STATE(4287), - [sym__mutable_assignment_pattern] = STATE(4289), - [sym__statement] = STATE(4285), - [sym_pipeline] = STATE(4287), - [sym_cmd_identifier] = STATE(2711), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4286), - [sym_decl_export] = STATE(4286), - [sym_decl_extern] = STATE(4286), - [sym_decl_module] = STATE(4286), - [sym_decl_use] = STATE(4286), - [sym__ctrl_statement] = STATE(4287), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(474), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), - [sym_comment] = STATE(88), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(287), + [STATE(86)] = { + [sym__block_body_statement_parenthesized] = STATE(4122), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(466), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), + [sym_comment] = STATE(86), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym__parenthesized_body_repeat2] = STATE(86), [anon_sym_export] = ACTIONS(463), [anon_sym_alias] = ACTIONS(466), [anon_sym_let] = ACTIONS(469), @@ -49804,72 +49768,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(598), }, - [STATE(89)] = { - [sym__block_body_statement] = STATE(4317), - [sym__declaration] = STATE(4552), - [sym_decl_alias] = STATE(4513), - [sym_stmt_let] = STATE(4555), - [sym_stmt_mut] = STATE(4555), - [sym_stmt_const] = STATE(4555), - [sym_assignment] = STATE(4555), - [sym__mutable_assignment_pattern] = STATE(4381), - [sym__statement] = STATE(4552), - [sym_pipeline] = STATE(4555), - [sym_cmd_identifier] = STATE(2895), - [sym_attribute_list] = STATE(4414), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4513), - [sym_decl_export] = STATE(4513), - [sym_decl_extern] = STATE(4513), - [sym_decl_module] = STATE(4513), - [sym_decl_use] = STATE(4513), - [sym__ctrl_statement] = STATE(4555), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_for] = STATE(4479), - [sym_ctrl_loop] = STATE(4479), - [sym_ctrl_while] = STATE(4479), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(445), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3252), - [sym_comment] = STATE(89), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_repeat2] = STATE(281), + [STATE(87)] = { + [sym__block_body_statement] = STATE(4387), + [sym__declaration] = STATE(4632), + [sym_decl_alias] = STATE(4441), + [sym_stmt_let] = STATE(4465), + [sym_stmt_mut] = STATE(4465), + [sym_stmt_const] = STATE(4465), + [sym_assignment] = STATE(4465), + [sym__mutable_assignment_pattern] = STATE(4508), + [sym__statement] = STATE(4632), + [sym_pipeline] = STATE(4465), + [sym_cmd_identifier] = STATE(2951), + [sym_attribute_list] = STATE(4536), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4441), + [sym_decl_export] = STATE(4441), + [sym_decl_extern] = STATE(4441), + [sym_decl_module] = STATE(4441), + [sym_decl_use] = STATE(4441), + [sym__ctrl_statement] = STATE(4465), + [sym__ctrl_expression] = STATE(3333), + [sym_ctrl_for] = STATE(4546), + [sym_ctrl_loop] = STATE(4546), + [sym_ctrl_while] = STATE(4546), + [sym_ctrl_if] = STATE(3365), + [sym_ctrl_match] = STATE(3365), + [sym_ctrl_try] = STATE(3365), + [sym_pipe_element] = STATE(3098), + [sym_where_command] = STATE(3333), + [sym__expression] = STATE(2260), + [sym_expr_unary] = STATE(1276), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1276), + [sym__expr_binary_expression] = STATE(2222), + [sym_expr_parenthesized] = STATE(919), + [sym_val_range] = STATE(1276), + [sym__value] = STATE(1276), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(1294), + [sym_val_variable] = STATE(440), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(120), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3333), + [sym_comment] = STATE(87), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -49927,77 +49891,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(90)] = { - [sym__block_body_statement_parenthesized] = STATE(3822), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(438), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(90), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), - [aux_sym__parenthesized_body_repeat2] = STATE(91), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [STATE(88)] = { + [sym__block_body_statement] = STATE(4084), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym_cmd_identifier] = STATE(2712), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(447), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), + [sym_comment] = STATE(88), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(285), + [anon_sym_export] = ACTIONS(447), + [anon_sym_alias] = ACTIONS(449), + [anon_sym_let] = ACTIONS(451), + [anon_sym_mut] = ACTIONS(453), + [anon_sym_const] = ACTIONS(455), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -50007,9 +49971,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(457), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -50026,7 +49990,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), @@ -50046,76 +50010,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(91)] = { - [sym__block_body_statement_parenthesized] = STATE(4245), - [sym__declaration_parenthesized] = STATE(4398), - [sym_decl_alias_parenthesized] = STATE(4405), - [sym_stmt_let_parenthesized] = STATE(4407), - [sym_stmt_mut_parenthesized] = STATE(4407), - [sym_stmt_const_parenthesized] = STATE(4407), - [sym_assignment_parenthesized] = STATE(4407), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4412), - [sym__statement_parenthesized] = STATE(4398), - [sym_pipeline_parenthesized] = STATE(4407), - [sym_cmd_identifier] = STATE(2911), - [sym_attribute_list] = STATE(4595), - [sym_attribute] = STATE(4716), - [sym_decl_def] = STATE(4405), - [sym_decl_export] = STATE(4405), - [sym_decl_extern] = STATE(4405), - [sym_decl_module] = STATE(4405), - [sym_decl_use] = STATE(4405), - [sym__ctrl_statement] = STATE(4407), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_for] = STATE(4290), - [sym_ctrl_loop] = STATE(4290), - [sym_ctrl_while] = STATE(4290), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(471), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(91), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_attribute_list_repeat1] = STATE(3733), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), - [aux_sym__parenthesized_body_repeat2] = STATE(91), + [STATE(89)] = { + [sym__block_body_statement] = STATE(3992), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym_cmd_identifier] = STATE(2712), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(447), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), + [sym_comment] = STATE(89), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(285), + [anon_sym_export] = ACTIONS(447), + [anon_sym_alias] = ACTIONS(449), + [anon_sym_let] = ACTIONS(451), + [anon_sym_mut] = ACTIONS(453), + [anon_sym_const] = ACTIONS(455), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(253), + [anon_sym_use] = ACTIONS(255), + [anon_sym_export_DASHenv] = ACTIONS(257), + [anon_sym_extern] = ACTIONS(259), + [anon_sym_module] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_loop] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(457), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(90)] = { + [sym__block_body_statement] = STATE(4574), + [sym__declaration] = STATE(4304), + [sym_decl_alias] = STATE(4305), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4308), + [sym__statement] = STATE(4304), + [sym_pipeline] = STATE(4307), + [sym_cmd_identifier] = STATE(2712), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4305), + [sym_decl_export] = STATE(4305), + [sym_decl_extern] = STATE(4305), + [sym_decl_module] = STATE(4305), + [sym_decl_use] = STATE(4305), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(473), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), + [sym_comment] = STATE(90), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_repeat2] = STATE(282), [anon_sym_export] = ACTIONS(601), [anon_sym_alias] = ACTIONS(604), [anon_sym_let] = ACTIONS(607), @@ -50173,6 +50260,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(736), }, + [STATE(91)] = { + [sym__block_body_statement_parenthesized] = STATE(3844), + [sym__declaration_parenthesized] = STATE(4645), + [sym_decl_alias_parenthesized] = STATE(4648), + [sym_stmt_let_parenthesized] = STATE(4649), + [sym_stmt_mut_parenthesized] = STATE(4649), + [sym_stmt_const_parenthesized] = STATE(4649), + [sym_assignment_parenthesized] = STATE(4649), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), + [sym__statement_parenthesized] = STATE(4645), + [sym_pipeline_parenthesized] = STATE(4649), + [sym_cmd_identifier] = STATE(2950), + [sym_attribute_list] = STATE(4636), + [sym_attribute] = STATE(4756), + [sym_decl_def] = STATE(4648), + [sym_decl_export] = STATE(4648), + [sym_decl_extern] = STATE(4648), + [sym_decl_module] = STATE(4648), + [sym_decl_use] = STATE(4648), + [sym__ctrl_statement] = STATE(4649), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_for] = STATE(4310), + [sym_ctrl_loop] = STATE(4310), + [sym_ctrl_while] = STATE(4310), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), + [sym_comment] = STATE(91), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym_attribute_list_repeat1] = STATE(3873), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym__parenthesized_body_repeat2] = STATE(86), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(253), + [anon_sym_use] = ACTIONS(255), + [anon_sym_export_DASHenv] = ACTIONS(257), + [anon_sym_extern] = ACTIONS(259), + [anon_sym_module] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_loop] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(327), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(329), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(333), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(343), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, [STATE(92)] = { [sym_comment] = STATE(92), [anon_sym_in] = ACTIONS(739), @@ -50501,114 +50711,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(95)] = { [sym_comment] = STATE(95), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_RPAREN] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(759), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(761), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(739), - [anon_sym_out_GT_GT] = ACTIONS(739), - [anon_sym_e_GT_GT] = ACTIONS(739), - [anon_sym_o_GT_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(96)] = { - [sym_comment] = STATE(96), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -50693,8 +50795,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(763), - [aux_sym__immediate_decimal_token5] = ACTIONS(765), + [aux_sym__immediate_decimal_token1] = ACTIONS(759), + [aux_sym__immediate_decimal_token5] = ACTIONS(761), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -50715,8 +50817,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(96)] = { + [sym_comment] = STATE(96), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_RPAREN] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT] = ACTIONS(763), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token5] = ACTIONS(765), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_err_GT] = ACTIONS(739), + [anon_sym_out_GT] = ACTIONS(739), + [anon_sym_e_GT] = ACTIONS(739), + [anon_sym_o_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT] = ACTIONS(739), + [anon_sym_err_GT_GT] = ACTIONS(739), + [anon_sym_out_GT_GT] = ACTIONS(739), + [anon_sym_e_GT_GT] = ACTIONS(739), + [anon_sym_o_GT_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(97)] = { [sym_comment] = STATE(97), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token5] = ACTIONS(745), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_COLON2] = ACTIONS(739), + [anon_sym_err_GT] = ACTIONS(739), + [anon_sym_out_GT] = ACTIONS(739), + [anon_sym_e_GT] = ACTIONS(739), + [anon_sym_o_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT] = ACTIONS(739), + [anon_sym_err_GT_GT] = ACTIONS(739), + [anon_sym_out_GT_GT] = ACTIONS(739), + [anon_sym_e_GT_GT] = ACTIONS(739), + [anon_sym_o_GT_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(98)] = { + [sym_comment] = STATE(98), [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), @@ -50823,8 +51141,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(98)] = { - [sym_comment] = STATE(98), + [STATE(99)] = { + [sym_comment] = STATE(99), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -50931,114 +51249,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(99)] = { - [sym_comment] = STATE(99), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_RBRACE] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(745), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_COLON2] = ACTIONS(739), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(739), - [anon_sym_out_GT_GT] = ACTIONS(739), - [anon_sym_e_GT_GT] = ACTIONS(739), - [anon_sym_o_GT_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(100)] = { [sym_comment] = STATE(100), [anon_sym_in] = ACTIONS(739), @@ -51257,6 +51467,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(102)] = { [sym_comment] = STATE(102), + [anon_sym_in] = ACTIONS(747), + [anon_sym_STAR_STAR] = ACTIONS(749), + [anon_sym_PLUS_PLUS] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(747), + [anon_sym_SLASH] = ACTIONS(747), + [anon_sym_mod] = ACTIONS(749), + [anon_sym_SLASH_SLASH] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(747), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_bit_DASHshl] = ACTIONS(749), + [anon_sym_bit_DASHshr] = ACTIONS(749), + [anon_sym_EQ_TILDE] = ACTIONS(749), + [anon_sym_BANG_TILDE] = ACTIONS(749), + [anon_sym_like] = ACTIONS(749), + [anon_sym_not_DASHlike] = ACTIONS(749), + [anon_sym_bit_DASHand] = ACTIONS(749), + [anon_sym_bit_DASHxor] = ACTIONS(749), + [anon_sym_bit_DASHor] = ACTIONS(749), + [anon_sym_and] = ACTIONS(749), + [anon_sym_xor] = ACTIONS(749), + [anon_sym_or] = ACTIONS(749), + [anon_sym_in2] = ACTIONS(749), + [anon_sym_not_DASHin] = ACTIONS(749), + [anon_sym_has] = ACTIONS(749), + [anon_sym_not_DASHhas] = ACTIONS(749), + [anon_sym_starts_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), + [anon_sym_ends_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(749), + [anon_sym_BANG_EQ] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_LT_EQ] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_EQ] = ACTIONS(749), + [aux_sym_cmd_identifier_token6] = ACTIONS(747), + [sym__newline] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_err_GT_PIPE] = ACTIONS(747), + [anon_sym_out_GT_PIPE] = ACTIONS(747), + [anon_sym_e_GT_PIPE] = ACTIONS(747), + [anon_sym_o_GT_PIPE] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(747), + [anon_sym_xor2] = ACTIONS(747), + [anon_sym_or2] = ACTIONS(747), + [anon_sym_not_DASHin2] = ACTIONS(747), + [anon_sym_has2] = ACTIONS(747), + [anon_sym_not_DASHhas2] = ACTIONS(747), + [anon_sym_starts_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), + [anon_sym_ends_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), + [anon_sym_EQ_EQ2] = ACTIONS(747), + [anon_sym_BANG_EQ2] = ACTIONS(747), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(747), + [anon_sym_GT_EQ2] = ACTIONS(747), + [anon_sym_EQ_TILDE2] = ACTIONS(747), + [anon_sym_BANG_TILDE2] = ACTIONS(747), + [anon_sym_like2] = ACTIONS(747), + [anon_sym_not_DASHlike2] = ACTIONS(747), + [anon_sym_STAR_STAR2] = ACTIONS(747), + [anon_sym_PLUS_PLUS2] = ACTIONS(747), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(747), + [anon_sym_SLASH_SLASH2] = ACTIONS(747), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(747), + [anon_sym_bit_DASHshr2] = ACTIONS(747), + [anon_sym_bit_DASHand2] = ACTIONS(747), + [anon_sym_bit_DASHxor2] = ACTIONS(747), + [anon_sym_bit_DASHor2] = ACTIONS(747), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token1] = ACTIONS(785), + [aux_sym__immediate_decimal_token5] = ACTIONS(787), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_err_GT] = ACTIONS(747), + [anon_sym_out_GT] = ACTIONS(747), + [anon_sym_e_GT] = ACTIONS(747), + [anon_sym_o_GT] = ACTIONS(747), + [anon_sym_err_PLUSout_GT] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT] = ACTIONS(747), + [anon_sym_o_PLUSe_GT] = ACTIONS(747), + [anon_sym_e_PLUSo_GT] = ACTIONS(747), + [anon_sym_err_GT_GT] = ACTIONS(747), + [anon_sym_out_GT_GT] = ACTIONS(747), + [anon_sym_e_GT_GT] = ACTIONS(747), + [anon_sym_o_GT_GT] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(103)] = { + [sym_comment] = STATE(103), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -51304,9 +51621,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_RPAREN] = ACTIONS(739), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_RBRACE] = ACTIONS(739), [anon_sym_STAR2] = ACTIONS(739), [anon_sym_and2] = ACTIONS(739), [anon_sym_xor2] = ACTIONS(739), @@ -51341,7 +51658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(779), + [aux_sym__immediate_decimal_token5] = ACTIONS(765), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -51362,218 +51679,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(103)] = { - [sym_expr_parenthesized] = STATE(2598), - [sym__spread_parenthesized] = STATE(2970), - [sym_val_range] = STATE(2971), - [sym__val_range] = STATE(4396), - [sym__value] = STATE(2971), - [sym_val_nothing] = STATE(3021), - [sym_val_bool] = STATE(2695), - [sym__spread_variable] = STATE(2972), - [sym_val_variable] = STATE(2604), - [sym_val_cellpath] = STATE(3021), - [sym_val_number] = STATE(3021), - [sym__val_number_decimal] = STATE(2363), - [sym__val_number] = STATE(3023), - [sym_val_duration] = STATE(3021), - [sym_val_filesize] = STATE(3021), - [sym_val_binary] = STATE(3021), - [sym_val_string] = STATE(3021), - [sym__raw_str] = STATE(2454), - [sym__str_double_quotes] = STATE(2454), - [sym__str_single_quotes] = STATE(2454), - [sym__str_back_ticks] = STATE(2454), - [sym_val_interpolated] = STATE(3021), - [sym__inter_single_quotes] = STATE(3063), - [sym__inter_double_quotes] = STATE(3066), - [sym_val_list] = STATE(3021), - [sym__spread_list] = STATE(2970), - [sym_val_record] = STATE(3021), - [sym_val_table] = STATE(3021), - [sym_val_closure] = STATE(3021), - [sym__cmd_arg] = STATE(2973), - [sym_redirection] = STATE(2974), - [sym__flag] = STATE(2975), - [sym_short_flag] = STATE(2985), - [sym_long_flag] = STATE(2985), - [sym_unquoted] = STATE(2762), - [sym__unquoted_with_expr] = STATE(2988), - [sym__unquoted_anonymous_prefix] = STATE(4396), - [sym_comment] = STATE(103), - [anon_sym_true] = ACTIONS(785), - [anon_sym_false] = ACTIONS(785), - [anon_sym_null] = ACTIONS(787), - [aux_sym_cmd_identifier_token3] = ACTIONS(789), - [aux_sym_cmd_identifier_token4] = ACTIONS(789), - [aux_sym_cmd_identifier_token5] = ACTIONS(789), - [sym__newline] = ACTIONS(791), - [sym__space] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_LBRACK] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_RPAREN] = ACTIONS(791), - [anon_sym_DOLLAR] = ACTIONS(799), - [anon_sym_DASH_DASH] = ACTIONS(801), - [anon_sym_DASH2] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_RBRACE] = ACTIONS(791), - [anon_sym_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(809), - [anon_sym_DOT_DOT_EQ] = ACTIONS(811), - [anon_sym_DOT_DOT_LT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(813), - [aux_sym__val_number_decimal_token1] = ACTIONS(815), - [aux_sym__val_number_decimal_token2] = ACTIONS(815), - [aux_sym__val_number_decimal_token3] = ACTIONS(817), - [aux_sym__val_number_decimal_token4] = ACTIONS(817), - [aux_sym__val_number_token1] = ACTIONS(819), - [aux_sym__val_number_token2] = ACTIONS(819), - [aux_sym__val_number_token3] = ACTIONS(819), - [anon_sym_0b] = ACTIONS(821), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(825), - [anon_sym_DQUOTE] = ACTIONS(827), - [anon_sym_SQUOTE] = ACTIONS(829), - [anon_sym_BQUOTE] = ACTIONS(831), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(837), - [anon_sym_err_GT] = ACTIONS(839), - [anon_sym_out_GT] = ACTIONS(839), - [anon_sym_e_GT] = ACTIONS(839), - [anon_sym_o_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT] = ACTIONS(839), - [anon_sym_err_GT_GT] = ACTIONS(839), - [anon_sym_out_GT_GT] = ACTIONS(839), - [anon_sym_e_GT_GT] = ACTIONS(839), - [anon_sym_o_GT_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(839), - [aux_sym_unquoted_token1] = ACTIONS(841), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(843), - }, [STATE(104)] = { [sym_comment] = STATE(104), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(845), - [aux_sym__immediate_decimal_token5] = ACTIONS(847), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(747), - [anon_sym_out_GT_GT] = ACTIONS(747), - [anon_sym_e_GT_GT] = ACTIONS(747), - [anon_sym_o_GT_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), + [ts_builtin_sym_end] = ACTIONS(773), + [anon_sym_in] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(773), + [anon_sym_SLASH_SLASH] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_bit_DASHshl] = ACTIONS(773), + [anon_sym_bit_DASHshr] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_BANG_TILDE] = ACTIONS(773), + [anon_sym_like] = ACTIONS(773), + [anon_sym_not_DASHlike] = ACTIONS(773), + [anon_sym_bit_DASHand] = ACTIONS(773), + [anon_sym_bit_DASHxor] = ACTIONS(773), + [anon_sym_bit_DASHor] = ACTIONS(773), + [anon_sym_and] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(773), + [anon_sym_or] = ACTIONS(773), + [anon_sym_in2] = ACTIONS(773), + [anon_sym_not_DASHin] = ACTIONS(773), + [anon_sym_has] = ACTIONS(773), + [anon_sym_not_DASHhas] = ACTIONS(773), + [anon_sym_starts_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), + [anon_sym_ends_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [aux_sym_cmd_identifier_token6] = ACTIONS(771), + [sym__newline] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_err_GT_PIPE] = ACTIONS(771), + [anon_sym_out_GT_PIPE] = ACTIONS(771), + [anon_sym_e_GT_PIPE] = ACTIONS(771), + [anon_sym_o_GT_PIPE] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(771), + [anon_sym_xor2] = ACTIONS(771), + [anon_sym_or2] = ACTIONS(771), + [anon_sym_not_DASHin2] = ACTIONS(771), + [anon_sym_has2] = ACTIONS(771), + [anon_sym_not_DASHhas2] = ACTIONS(771), + [anon_sym_starts_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), + [anon_sym_ends_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), + [anon_sym_EQ_EQ2] = ACTIONS(771), + [anon_sym_BANG_EQ2] = ACTIONS(771), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(771), + [anon_sym_GT_EQ2] = ACTIONS(771), + [anon_sym_EQ_TILDE2] = ACTIONS(771), + [anon_sym_BANG_TILDE2] = ACTIONS(771), + [anon_sym_like2] = ACTIONS(771), + [anon_sym_not_DASHlike2] = ACTIONS(771), + [anon_sym_STAR_STAR2] = ACTIONS(771), + [anon_sym_PLUS_PLUS2] = ACTIONS(771), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(771), + [anon_sym_SLASH_SLASH2] = ACTIONS(771), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(771), + [anon_sym_bit_DASHshr2] = ACTIONS(771), + [anon_sym_bit_DASHand2] = ACTIONS(771), + [anon_sym_bit_DASHxor2] = ACTIONS(771), + [anon_sym_bit_DASHor2] = ACTIONS(771), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [aux_sym__immediate_decimal_token5] = ACTIONS(789), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_err_GT] = ACTIONS(771), + [anon_sym_out_GT] = ACTIONS(771), + [anon_sym_e_GT] = ACTIONS(771), + [anon_sym_o_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT] = ACTIONS(771), + [anon_sym_err_GT_GT] = ACTIONS(771), + [anon_sym_out_GT_GT] = ACTIONS(771), + [anon_sym_e_GT_GT] = ACTIONS(771), + [anon_sym_o_GT_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(103), }, [STATE(105)] = { @@ -51625,9 +51835,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_RPAREN] = ACTIONS(771), [anon_sym_GT2] = ACTIONS(771), [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), [anon_sym_STAR2] = ACTIONS(771), [anon_sym_and2] = ACTIONS(771), [anon_sym_xor2] = ACTIONS(771), @@ -51662,9 +51872,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [aux_sym__immediate_decimal_token5] = ACTIONS(791), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), - [anon_sym_COLON2] = ACTIONS(771), [anon_sym_err_GT] = ACTIONS(771), [anon_sym_out_GT] = ACTIONS(771), [anon_sym_e_GT] = ACTIONS(771), @@ -51685,113 +51895,327 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(106)] = { [sym_comment] = STATE(106), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_COLON2] = ACTIONS(849), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(849), - [anon_sym_out_GT_GT] = ACTIONS(849), - [anon_sym_e_GT_GT] = ACTIONS(849), - [anon_sym_o_GT_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(849), + [anon_sym_in] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_mod] = ACTIONS(795), + [anon_sym_SLASH_SLASH] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_bit_DASHshl] = ACTIONS(795), + [anon_sym_bit_DASHshr] = ACTIONS(795), + [anon_sym_EQ_TILDE] = ACTIONS(795), + [anon_sym_BANG_TILDE] = ACTIONS(795), + [anon_sym_like] = ACTIONS(795), + [anon_sym_not_DASHlike] = ACTIONS(795), + [anon_sym_bit_DASHand] = ACTIONS(795), + [anon_sym_bit_DASHxor] = ACTIONS(795), + [anon_sym_bit_DASHor] = ACTIONS(795), + [anon_sym_and] = ACTIONS(795), + [anon_sym_xor] = ACTIONS(795), + [anon_sym_or] = ACTIONS(795), + [anon_sym_in2] = ACTIONS(795), + [anon_sym_not_DASHin] = ACTIONS(795), + [anon_sym_has] = ACTIONS(795), + [anon_sym_not_DASHhas] = ACTIONS(795), + [anon_sym_starts_DASHwith] = ACTIONS(795), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(795), + [anon_sym_ends_DASHwith] = ACTIONS(795), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(795), + [anon_sym_EQ_EQ] = ACTIONS(795), + [anon_sym_BANG_EQ] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(797), + [anon_sym_LT_EQ] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(797), + [anon_sym_GT_EQ] = ACTIONS(795), + [aux_sym_cmd_identifier_token6] = ACTIONS(799), + [sym__newline] = ACTIONS(793), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_err_GT_PIPE] = ACTIONS(793), + [anon_sym_out_GT_PIPE] = ACTIONS(793), + [anon_sym_e_GT_PIPE] = ACTIONS(793), + [anon_sym_o_GT_PIPE] = ACTIONS(793), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(793), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(793), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(793), + [anon_sym_GT2] = ACTIONS(793), + [anon_sym_DASH2] = ACTIONS(793), + [anon_sym_RBRACE] = ACTIONS(793), + [anon_sym_STAR2] = ACTIONS(793), + [anon_sym_and2] = ACTIONS(793), + [anon_sym_xor2] = ACTIONS(793), + [anon_sym_or2] = ACTIONS(793), + [anon_sym_not_DASHin2] = ACTIONS(793), + [anon_sym_has2] = ACTIONS(793), + [anon_sym_not_DASHhas2] = ACTIONS(793), + [anon_sym_starts_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), + [anon_sym_ends_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), + [anon_sym_EQ_EQ2] = ACTIONS(793), + [anon_sym_BANG_EQ2] = ACTIONS(793), + [anon_sym_LT2] = ACTIONS(793), + [anon_sym_LT_EQ2] = ACTIONS(793), + [anon_sym_GT_EQ2] = ACTIONS(793), + [anon_sym_EQ_TILDE2] = ACTIONS(793), + [anon_sym_BANG_TILDE2] = ACTIONS(793), + [anon_sym_like2] = ACTIONS(793), + [anon_sym_not_DASHlike2] = ACTIONS(793), + [anon_sym_STAR_STAR2] = ACTIONS(793), + [anon_sym_PLUS_PLUS2] = ACTIONS(793), + [anon_sym_SLASH2] = ACTIONS(793), + [anon_sym_mod2] = ACTIONS(793), + [anon_sym_SLASH_SLASH2] = ACTIONS(793), + [anon_sym_PLUS2] = ACTIONS(793), + [anon_sym_bit_DASHshl2] = ACTIONS(793), + [anon_sym_bit_DASHshr2] = ACTIONS(793), + [anon_sym_bit_DASHand2] = ACTIONS(793), + [anon_sym_bit_DASHxor2] = ACTIONS(793), + [anon_sym_bit_DASHor2] = ACTIONS(793), + [anon_sym_DOT_DOT2] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(803), + [anon_sym_DOT_DOT_LT2] = ACTIONS(803), + [sym_filesize_unit] = ACTIONS(805), + [sym_duration_unit] = ACTIONS(807), + [anon_sym_COLON2] = ACTIONS(793), + [anon_sym_err_GT] = ACTIONS(793), + [anon_sym_out_GT] = ACTIONS(793), + [anon_sym_e_GT] = ACTIONS(793), + [anon_sym_o_GT] = ACTIONS(793), + [anon_sym_err_PLUSout_GT] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT] = ACTIONS(793), + [anon_sym_o_PLUSe_GT] = ACTIONS(793), + [anon_sym_e_PLUSo_GT] = ACTIONS(793), + [anon_sym_err_GT_GT] = ACTIONS(793), + [anon_sym_out_GT_GT] = ACTIONS(793), + [anon_sym_e_GT_GT] = ACTIONS(793), + [anon_sym_o_GT_GT] = ACTIONS(793), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(793), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(793), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(793), [anon_sym_POUND] = ACTIONS(103), }, [STATE(107)] = { + [sym_expr_parenthesized] = STATE(2670), + [sym__spread_parenthesized] = STATE(3003), + [sym_val_range] = STATE(3030), + [sym__val_range] = STATE(4477), + [sym__value] = STATE(3030), + [sym_val_nothing] = STATE(3022), + [sym_val_bool] = STATE(2861), + [sym__spread_variable] = STATE(3036), + [sym_val_variable] = STATE(2672), + [sym_val_cellpath] = STATE(3022), + [sym_val_number] = STATE(3022), + [sym__val_number_decimal] = STATE(2431), + [sym__val_number] = STATE(3024), + [sym_val_duration] = STATE(3022), + [sym_val_filesize] = STATE(3022), + [sym_val_binary] = STATE(3022), + [sym_val_string] = STATE(3022), + [sym__raw_str] = STATE(2508), + [sym__str_double_quotes] = STATE(2508), + [sym__str_single_quotes] = STATE(2508), + [sym__str_back_ticks] = STATE(2508), + [sym_val_interpolated] = STATE(3022), + [sym__inter_single_quotes] = STATE(2983), + [sym__inter_double_quotes] = STATE(3101), + [sym_val_list] = STATE(3022), + [sym__spread_list] = STATE(3003), + [sym_val_record] = STATE(3022), + [sym_val_table] = STATE(3022), + [sym_val_closure] = STATE(3022), + [sym__cmd_arg] = STATE(3051), + [sym_redirection] = STATE(3053), + [sym__flag] = STATE(3060), + [sym_short_flag] = STATE(3092), + [sym_long_flag] = STATE(3092), + [sym_unquoted] = STATE(2706), + [sym__unquoted_with_expr] = STATE(3107), + [sym__unquoted_anonymous_prefix] = STATE(4477), [sym_comment] = STATE(107), + [anon_sym_true] = ACTIONS(809), + [anon_sym_false] = ACTIONS(809), + [anon_sym_null] = ACTIONS(811), + [aux_sym_cmd_identifier_token3] = ACTIONS(813), + [aux_sym_cmd_identifier_token4] = ACTIONS(813), + [aux_sym_cmd_identifier_token5] = ACTIONS(813), + [sym__newline] = ACTIONS(815), + [sym__space] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(818), + [anon_sym_PIPE] = ACTIONS(818), + [anon_sym_err_GT_PIPE] = ACTIONS(818), + [anon_sym_out_GT_PIPE] = ACTIONS(818), + [anon_sym_e_GT_PIPE] = ACTIONS(818), + [anon_sym_o_GT_PIPE] = ACTIONS(818), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(818), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(818), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(818), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(818), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(826), + [anon_sym_DASH2] = ACTIONS(828), + [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_RBRACE] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(832), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(834), + [anon_sym_DOT_DOT_EQ] = ACTIONS(836), + [anon_sym_DOT_DOT_LT] = ACTIONS(836), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(838), + [aux_sym__val_number_decimal_token1] = ACTIONS(840), + [aux_sym__val_number_decimal_token2] = ACTIONS(840), + [aux_sym__val_number_decimal_token3] = ACTIONS(842), + [aux_sym__val_number_decimal_token4] = ACTIONS(842), + [aux_sym__val_number_token1] = ACTIONS(844), + [aux_sym__val_number_token2] = ACTIONS(844), + [aux_sym__val_number_token3] = ACTIONS(844), + [anon_sym_0b] = ACTIONS(846), + [anon_sym_0o] = ACTIONS(848), + [anon_sym_0x] = ACTIONS(848), + [sym_val_date] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(852), + [anon_sym_SQUOTE] = ACTIONS(854), + [anon_sym_BQUOTE] = ACTIONS(856), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(858), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(860), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(862), + [anon_sym_COLON2] = ACTIONS(864), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(866), + [anon_sym_out_GT_GT] = ACTIONS(866), + [anon_sym_e_GT_GT] = ACTIONS(866), + [anon_sym_o_GT_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(866), + [aux_sym_unquoted_token1] = ACTIONS(868), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(870), + }, + [STATE(108)] = { + [sym_expr_parenthesized] = STATE(2670), + [sym__spread_parenthesized] = STATE(3003), + [sym_val_range] = STATE(3030), + [sym__val_range] = STATE(4477), + [sym__value] = STATE(3030), + [sym_val_nothing] = STATE(3022), + [sym_val_bool] = STATE(2861), + [sym__spread_variable] = STATE(3036), + [sym_val_variable] = STATE(2672), + [sym_val_cellpath] = STATE(3022), + [sym_val_number] = STATE(3022), + [sym__val_number_decimal] = STATE(2431), + [sym__val_number] = STATE(3024), + [sym_val_duration] = STATE(3022), + [sym_val_filesize] = STATE(3022), + [sym_val_binary] = STATE(3022), + [sym_val_string] = STATE(3022), + [sym__raw_str] = STATE(2508), + [sym__str_double_quotes] = STATE(2508), + [sym__str_single_quotes] = STATE(2508), + [sym__str_back_ticks] = STATE(2508), + [sym_val_interpolated] = STATE(3022), + [sym__inter_single_quotes] = STATE(2983), + [sym__inter_double_quotes] = STATE(3101), + [sym_val_list] = STATE(3022), + [sym__spread_list] = STATE(3003), + [sym_val_record] = STATE(3022), + [sym_val_table] = STATE(3022), + [sym_val_closure] = STATE(3022), + [sym__cmd_arg] = STATE(3051), + [sym_redirection] = STATE(3053), + [sym__flag] = STATE(3060), + [sym_short_flag] = STATE(3092), + [sym_long_flag] = STATE(3092), + [sym_unquoted] = STATE(2706), + [sym__unquoted_with_expr] = STATE(3107), + [sym__unquoted_anonymous_prefix] = STATE(4477), + [sym_comment] = STATE(108), + [anon_sym_true] = ACTIONS(809), + [anon_sym_false] = ACTIONS(809), + [anon_sym_null] = ACTIONS(811), + [aux_sym_cmd_identifier_token3] = ACTIONS(813), + [aux_sym_cmd_identifier_token4] = ACTIONS(813), + [aux_sym_cmd_identifier_token5] = ACTIONS(813), + [sym__newline] = ACTIONS(818), + [sym__space] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(818), + [anon_sym_PIPE] = ACTIONS(818), + [anon_sym_err_GT_PIPE] = ACTIONS(818), + [anon_sym_out_GT_PIPE] = ACTIONS(818), + [anon_sym_e_GT_PIPE] = ACTIONS(818), + [anon_sym_o_GT_PIPE] = ACTIONS(818), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(818), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(818), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(818), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(818), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(822), + [anon_sym_RPAREN] = ACTIONS(818), + [anon_sym_DOLLAR] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(826), + [anon_sym_DASH2] = ACTIONS(828), + [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_RBRACE] = ACTIONS(818), + [anon_sym_DOT_DOT] = ACTIONS(832), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(834), + [anon_sym_DOT_DOT_EQ] = ACTIONS(836), + [anon_sym_DOT_DOT_LT] = ACTIONS(836), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(838), + [aux_sym__val_number_decimal_token1] = ACTIONS(840), + [aux_sym__val_number_decimal_token2] = ACTIONS(840), + [aux_sym__val_number_decimal_token3] = ACTIONS(842), + [aux_sym__val_number_decimal_token4] = ACTIONS(842), + [aux_sym__val_number_token1] = ACTIONS(844), + [aux_sym__val_number_token2] = ACTIONS(844), + [aux_sym__val_number_token3] = ACTIONS(844), + [anon_sym_0b] = ACTIONS(846), + [anon_sym_0o] = ACTIONS(848), + [anon_sym_0x] = ACTIONS(848), + [sym_val_date] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(852), + [anon_sym_SQUOTE] = ACTIONS(854), + [anon_sym_BQUOTE] = ACTIONS(856), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(858), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(860), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(862), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(866), + [anon_sym_out_GT_GT] = ACTIONS(866), + [anon_sym_e_GT_GT] = ACTIONS(866), + [anon_sym_o_GT_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(866), + [aux_sym_unquoted_token1] = ACTIONS(868), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(870), + }, + [STATE(109)] = { + [sym_comment] = STATE(109), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -51839,9 +52263,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_RPAREN] = ACTIONS(771), [anon_sym_GT2] = ACTIONS(771), [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(771), [anon_sym_STAR2] = ACTIONS(771), [anon_sym_and2] = ACTIONS(771), [anon_sym_xor2] = ACTIONS(771), @@ -51876,9 +52300,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(853), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), + [anon_sym_COLON2] = ACTIONS(771), [anon_sym_err_GT] = ACTIONS(771), [anon_sym_out_GT] = ACTIONS(771), [anon_sym_e_GT] = ACTIONS(771), @@ -51897,220 +52321,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(108)] = { - [sym_comment] = STATE(108), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_COLON2] = ACTIONS(747), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(747), - [anon_sym_out_GT_GT] = ACTIONS(747), - [anon_sym_e_GT_GT] = ACTIONS(747), - [anon_sym_o_GT_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(109)] = { - [sym_expr_parenthesized] = STATE(2598), - [sym__spread_parenthesized] = STATE(2970), - [sym_val_range] = STATE(2971), - [sym__val_range] = STATE(4396), - [sym__value] = STATE(2971), - [sym_val_nothing] = STATE(3021), - [sym_val_bool] = STATE(2695), - [sym__spread_variable] = STATE(2972), - [sym_val_variable] = STATE(2604), - [sym_val_cellpath] = STATE(3021), - [sym_val_number] = STATE(3021), - [sym__val_number_decimal] = STATE(2363), - [sym__val_number] = STATE(3023), - [sym_val_duration] = STATE(3021), - [sym_val_filesize] = STATE(3021), - [sym_val_binary] = STATE(3021), - [sym_val_string] = STATE(3021), - [sym__raw_str] = STATE(2454), - [sym__str_double_quotes] = STATE(2454), - [sym__str_single_quotes] = STATE(2454), - [sym__str_back_ticks] = STATE(2454), - [sym_val_interpolated] = STATE(3021), - [sym__inter_single_quotes] = STATE(3063), - [sym__inter_double_quotes] = STATE(3066), - [sym_val_list] = STATE(3021), - [sym__spread_list] = STATE(2970), - [sym_val_record] = STATE(3021), - [sym_val_table] = STATE(3021), - [sym_val_closure] = STATE(3021), - [sym__cmd_arg] = STATE(2973), - [sym_redirection] = STATE(2974), - [sym__flag] = STATE(2975), - [sym_short_flag] = STATE(2985), - [sym_long_flag] = STATE(2985), - [sym_unquoted] = STATE(2762), - [sym__unquoted_with_expr] = STATE(2988), - [sym__unquoted_anonymous_prefix] = STATE(4396), - [sym_comment] = STATE(109), - [anon_sym_true] = ACTIONS(785), - [anon_sym_false] = ACTIONS(785), - [anon_sym_null] = ACTIONS(787), - [aux_sym_cmd_identifier_token3] = ACTIONS(789), - [aux_sym_cmd_identifier_token4] = ACTIONS(789), - [aux_sym_cmd_identifier_token5] = ACTIONS(789), - [sym__newline] = ACTIONS(855), - [sym__space] = ACTIONS(855), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_LBRACK] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_DOLLAR] = ACTIONS(799), - [anon_sym_DASH_DASH] = ACTIONS(801), - [anon_sym_DASH2] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_RBRACE] = ACTIONS(791), - [anon_sym_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(809), - [anon_sym_DOT_DOT_EQ] = ACTIONS(811), - [anon_sym_DOT_DOT_LT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(813), - [aux_sym__val_number_decimal_token1] = ACTIONS(815), - [aux_sym__val_number_decimal_token2] = ACTIONS(815), - [aux_sym__val_number_decimal_token3] = ACTIONS(817), - [aux_sym__val_number_decimal_token4] = ACTIONS(817), - [aux_sym__val_number_token1] = ACTIONS(819), - [aux_sym__val_number_token2] = ACTIONS(819), - [aux_sym__val_number_token3] = ACTIONS(819), - [anon_sym_0b] = ACTIONS(821), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(825), - [anon_sym_DQUOTE] = ACTIONS(827), - [anon_sym_SQUOTE] = ACTIONS(829), - [anon_sym_BQUOTE] = ACTIONS(831), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(837), - [anon_sym_COLON2] = ACTIONS(858), - [anon_sym_err_GT] = ACTIONS(839), - [anon_sym_out_GT] = ACTIONS(839), - [anon_sym_e_GT] = ACTIONS(839), - [anon_sym_o_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT] = ACTIONS(839), - [anon_sym_err_GT_GT] = ACTIONS(839), - [anon_sym_out_GT_GT] = ACTIONS(839), - [anon_sym_e_GT_GT] = ACTIONS(839), - [anon_sym_o_GT_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(839), - [aux_sym_unquoted_token1] = ACTIONS(841), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(843), - }, [STATE(110)] = { [sym_comment] = STATE(110), [anon_sym_in] = ACTIONS(739), @@ -52162,6 +52372,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(739), [anon_sym_STAR2] = ACTIONS(739), [anon_sym_and2] = ACTIONS(739), [anon_sym_xor2] = ACTIONS(739), @@ -52194,10 +52405,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(860), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(862), + [aux_sym__immediate_decimal_token5] = ACTIONS(779), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -52327,6 +52537,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(112)] = { [sym_comment] = STATE(112), + [anon_sym_in] = ACTIONS(747), + [anon_sym_STAR_STAR] = ACTIONS(749), + [anon_sym_PLUS_PLUS] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(747), + [anon_sym_SLASH] = ACTIONS(747), + [anon_sym_mod] = ACTIONS(749), + [anon_sym_SLASH_SLASH] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(747), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_bit_DASHshl] = ACTIONS(749), + [anon_sym_bit_DASHshr] = ACTIONS(749), + [anon_sym_EQ_TILDE] = ACTIONS(749), + [anon_sym_BANG_TILDE] = ACTIONS(749), + [anon_sym_like] = ACTIONS(749), + [anon_sym_not_DASHlike] = ACTIONS(749), + [anon_sym_bit_DASHand] = ACTIONS(749), + [anon_sym_bit_DASHxor] = ACTIONS(749), + [anon_sym_bit_DASHor] = ACTIONS(749), + [anon_sym_and] = ACTIONS(749), + [anon_sym_xor] = ACTIONS(749), + [anon_sym_or] = ACTIONS(749), + [anon_sym_in2] = ACTIONS(749), + [anon_sym_not_DASHin] = ACTIONS(749), + [anon_sym_has] = ACTIONS(749), + [anon_sym_not_DASHhas] = ACTIONS(749), + [anon_sym_starts_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), + [anon_sym_ends_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(749), + [anon_sym_BANG_EQ] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_LT_EQ] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_EQ] = ACTIONS(749), + [aux_sym_cmd_identifier_token6] = ACTIONS(747), + [sym__newline] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_err_GT_PIPE] = ACTIONS(747), + [anon_sym_out_GT_PIPE] = ACTIONS(747), + [anon_sym_e_GT_PIPE] = ACTIONS(747), + [anon_sym_o_GT_PIPE] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_RBRACE] = ACTIONS(747), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(747), + [anon_sym_xor2] = ACTIONS(747), + [anon_sym_or2] = ACTIONS(747), + [anon_sym_not_DASHin2] = ACTIONS(747), + [anon_sym_has2] = ACTIONS(747), + [anon_sym_not_DASHhas2] = ACTIONS(747), + [anon_sym_starts_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), + [anon_sym_ends_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), + [anon_sym_EQ_EQ2] = ACTIONS(747), + [anon_sym_BANG_EQ2] = ACTIONS(747), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(747), + [anon_sym_GT_EQ2] = ACTIONS(747), + [anon_sym_EQ_TILDE2] = ACTIONS(747), + [anon_sym_BANG_TILDE2] = ACTIONS(747), + [anon_sym_like2] = ACTIONS(747), + [anon_sym_not_DASHlike2] = ACTIONS(747), + [anon_sym_STAR_STAR2] = ACTIONS(747), + [anon_sym_PLUS_PLUS2] = ACTIONS(747), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(747), + [anon_sym_SLASH_SLASH2] = ACTIONS(747), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(747), + [anon_sym_bit_DASHshr2] = ACTIONS(747), + [anon_sym_bit_DASHand2] = ACTIONS(747), + [anon_sym_bit_DASHxor2] = ACTIONS(747), + [anon_sym_bit_DASHor2] = ACTIONS(747), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_COLON2] = ACTIONS(747), + [anon_sym_err_GT] = ACTIONS(747), + [anon_sym_out_GT] = ACTIONS(747), + [anon_sym_e_GT] = ACTIONS(747), + [anon_sym_o_GT] = ACTIONS(747), + [anon_sym_err_PLUSout_GT] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT] = ACTIONS(747), + [anon_sym_o_PLUSe_GT] = ACTIONS(747), + [anon_sym_e_PLUSo_GT] = ACTIONS(747), + [anon_sym_err_GT_GT] = ACTIONS(747), + [anon_sym_out_GT_GT] = ACTIONS(747), + [anon_sym_e_GT_GT] = ACTIONS(747), + [anon_sym_o_GT_GT] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(113)] = { + [sym_comment] = STATE(113), + [anon_sym_in] = ACTIONS(874), + [anon_sym_STAR_STAR] = ACTIONS(876), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(874), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_mod] = ACTIONS(876), + [anon_sym_SLASH_SLASH] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(876), + [anon_sym_bit_DASHshl] = ACTIONS(876), + [anon_sym_bit_DASHshr] = ACTIONS(876), + [anon_sym_EQ_TILDE] = ACTIONS(876), + [anon_sym_BANG_TILDE] = ACTIONS(876), + [anon_sym_like] = ACTIONS(876), + [anon_sym_not_DASHlike] = ACTIONS(876), + [anon_sym_bit_DASHand] = ACTIONS(876), + [anon_sym_bit_DASHxor] = ACTIONS(876), + [anon_sym_bit_DASHor] = ACTIONS(876), + [anon_sym_and] = ACTIONS(876), + [anon_sym_xor] = ACTIONS(876), + [anon_sym_or] = ACTIONS(876), + [anon_sym_in2] = ACTIONS(876), + [anon_sym_not_DASHin] = ACTIONS(876), + [anon_sym_has] = ACTIONS(876), + [anon_sym_not_DASHhas] = ACTIONS(876), + [anon_sym_starts_DASHwith] = ACTIONS(876), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(876), + [anon_sym_ends_DASHwith] = ACTIONS(876), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(876), + [anon_sym_EQ_EQ] = ACTIONS(876), + [anon_sym_BANG_EQ] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_EQ] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_GT_EQ] = ACTIONS(876), + [aux_sym_cmd_identifier_token6] = ACTIONS(874), + [sym__newline] = ACTIONS(874), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_PIPE] = ACTIONS(874), + [anon_sym_err_GT_PIPE] = ACTIONS(874), + [anon_sym_out_GT_PIPE] = ACTIONS(874), + [anon_sym_e_GT_PIPE] = ACTIONS(874), + [anon_sym_o_GT_PIPE] = ACTIONS(874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(874), + [anon_sym_GT2] = ACTIONS(874), + [anon_sym_DASH2] = ACTIONS(874), + [anon_sym_RBRACE] = ACTIONS(874), + [anon_sym_STAR2] = ACTIONS(874), + [anon_sym_and2] = ACTIONS(874), + [anon_sym_xor2] = ACTIONS(874), + [anon_sym_or2] = ACTIONS(874), + [anon_sym_not_DASHin2] = ACTIONS(874), + [anon_sym_has2] = ACTIONS(874), + [anon_sym_not_DASHhas2] = ACTIONS(874), + [anon_sym_starts_DASHwith2] = ACTIONS(874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(874), + [anon_sym_ends_DASHwith2] = ACTIONS(874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(874), + [anon_sym_EQ_EQ2] = ACTIONS(874), + [anon_sym_BANG_EQ2] = ACTIONS(874), + [anon_sym_LT2] = ACTIONS(874), + [anon_sym_LT_EQ2] = ACTIONS(874), + [anon_sym_GT_EQ2] = ACTIONS(874), + [anon_sym_EQ_TILDE2] = ACTIONS(874), + [anon_sym_BANG_TILDE2] = ACTIONS(874), + [anon_sym_like2] = ACTIONS(874), + [anon_sym_not_DASHlike2] = ACTIONS(874), + [anon_sym_STAR_STAR2] = ACTIONS(874), + [anon_sym_PLUS_PLUS2] = ACTIONS(874), + [anon_sym_SLASH2] = ACTIONS(874), + [anon_sym_mod2] = ACTIONS(874), + [anon_sym_SLASH_SLASH2] = ACTIONS(874), + [anon_sym_PLUS2] = ACTIONS(874), + [anon_sym_bit_DASHshl2] = ACTIONS(874), + [anon_sym_bit_DASHshr2] = ACTIONS(874), + [anon_sym_bit_DASHand2] = ACTIONS(874), + [anon_sym_bit_DASHxor2] = ACTIONS(874), + [anon_sym_bit_DASHor2] = ACTIONS(874), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(874), + [sym_duration_unit] = ACTIONS(876), + [anon_sym_COLON2] = ACTIONS(874), + [anon_sym_err_GT] = ACTIONS(874), + [anon_sym_out_GT] = ACTIONS(874), + [anon_sym_e_GT] = ACTIONS(874), + [anon_sym_o_GT] = ACTIONS(874), + [anon_sym_err_PLUSout_GT] = ACTIONS(874), + [anon_sym_out_PLUSerr_GT] = ACTIONS(874), + [anon_sym_o_PLUSe_GT] = ACTIONS(874), + [anon_sym_e_PLUSo_GT] = ACTIONS(874), + [anon_sym_err_GT_GT] = ACTIONS(874), + [anon_sym_out_GT_GT] = ACTIONS(874), + [anon_sym_e_GT_GT] = ACTIONS(874), + [anon_sym_o_GT_GT] = ACTIONS(874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(874), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(114)] = { + [sym_comment] = STATE(114), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -52411,7 +52835,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(864), + [aux_sym__immediate_decimal_token5] = ACTIONS(878), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), [anon_sym_err_GT] = ACTIONS(771), @@ -52432,8 +52856,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(113)] = { - [sym_comment] = STATE(113), + [STATE(115)] = { + [sym_comment] = STATE(115), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -52481,7 +52905,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_RPAREN] = ACTIONS(739), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(739), [anon_sym_STAR2] = ACTIONS(739), @@ -52516,9 +52939,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT] = ACTIONS(880), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(761), + [aux_sym__immediate_decimal_token5] = ACTIONS(882), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -52539,540 +52963,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(114)] = { - [sym_comment] = STATE(114), - [ts_builtin_sym_end] = ACTIONS(773), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(866), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(115)] = { - [sym_comment] = STATE(115), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(870), - [anon_sym_PLUS_PLUS] = ACTIONS(870), - [anon_sym_STAR] = ACTIONS(872), - [anon_sym_SLASH] = ACTIONS(872), - [anon_sym_mod] = ACTIONS(870), - [anon_sym_SLASH_SLASH] = ACTIONS(870), - [anon_sym_PLUS] = ACTIONS(872), - [anon_sym_DASH] = ACTIONS(870), - [anon_sym_bit_DASHshl] = ACTIONS(870), - [anon_sym_bit_DASHshr] = ACTIONS(870), - [anon_sym_EQ_TILDE] = ACTIONS(870), - [anon_sym_BANG_TILDE] = ACTIONS(870), - [anon_sym_like] = ACTIONS(870), - [anon_sym_not_DASHlike] = ACTIONS(870), - [anon_sym_bit_DASHand] = ACTIONS(870), - [anon_sym_bit_DASHxor] = ACTIONS(870), - [anon_sym_bit_DASHor] = ACTIONS(870), - [anon_sym_and] = ACTIONS(870), - [anon_sym_xor] = ACTIONS(870), - [anon_sym_or] = ACTIONS(870), - [anon_sym_in2] = ACTIONS(870), - [anon_sym_not_DASHin] = ACTIONS(870), - [anon_sym_has] = ACTIONS(870), - [anon_sym_not_DASHhas] = ACTIONS(870), - [anon_sym_starts_DASHwith] = ACTIONS(870), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(870), - [anon_sym_ends_DASHwith] = ACTIONS(870), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(870), - [anon_sym_EQ_EQ] = ACTIONS(870), - [anon_sym_BANG_EQ] = ACTIONS(870), - [anon_sym_LT] = ACTIONS(872), - [anon_sym_LT_EQ] = ACTIONS(870), - [anon_sym_GT] = ACTIONS(872), - [anon_sym_GT_EQ] = ACTIONS(870), - [aux_sym_cmd_identifier_token6] = ACTIONS(874), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(880), - [sym_duration_unit] = ACTIONS(882), - [anon_sym_COLON2] = ACTIONS(868), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(116)] = { [sym_comment] = STATE(116), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_RPAREN] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(890), - [sym_duration_unit] = ACTIONS(892), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT] = ACTIONS(884), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token5] = ACTIONS(886), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_err_GT] = ACTIONS(739), + [anon_sym_out_GT] = ACTIONS(739), + [anon_sym_e_GT] = ACTIONS(739), + [anon_sym_o_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT] = ACTIONS(739), + [anon_sym_err_GT_GT] = ACTIONS(739), + [anon_sym_out_GT_GT] = ACTIONS(739), + [anon_sym_e_GT_GT] = ACTIONS(739), + [anon_sym_o_GT_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, [STATE(117)] = { [sym_comment] = STATE(117), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_RPAREN] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(118)] = { - [sym_comment] = STATE(118), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_RPAREN] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(849), - [anon_sym_out_GT_GT] = ACTIONS(849), - [anon_sym_e_GT_GT] = ACTIONS(849), - [anon_sym_o_GT_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(849), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(119)] = { - [sym_comment] = STATE(119), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -53156,7 +53154,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(862), + [aux_sym__immediate_decimal_token5] = ACTIONS(882), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -53177,220 +53175,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(120)] = { - [sym_expr_parenthesized] = STATE(2598), - [sym__spread_parenthesized] = STATE(2970), - [sym_val_range] = STATE(2971), - [sym__val_range] = STATE(4396), - [sym__value] = STATE(2971), - [sym_val_nothing] = STATE(3021), - [sym_val_bool] = STATE(2695), - [sym__spread_variable] = STATE(2972), - [sym_val_variable] = STATE(2604), - [sym_val_cellpath] = STATE(3021), - [sym_val_number] = STATE(3021), - [sym__val_number_decimal] = STATE(2363), - [sym__val_number] = STATE(3023), - [sym_val_duration] = STATE(3021), - [sym_val_filesize] = STATE(3021), - [sym_val_binary] = STATE(3021), - [sym_val_string] = STATE(3021), - [sym__raw_str] = STATE(2454), - [sym__str_double_quotes] = STATE(2454), - [sym__str_single_quotes] = STATE(2454), - [sym__str_back_ticks] = STATE(2454), - [sym_val_interpolated] = STATE(3021), - [sym__inter_single_quotes] = STATE(3063), - [sym__inter_double_quotes] = STATE(3066), - [sym_val_list] = STATE(3021), - [sym__spread_list] = STATE(2970), - [sym_val_record] = STATE(3021), - [sym_val_table] = STATE(3021), - [sym_val_closure] = STATE(3021), - [sym__cmd_arg] = STATE(3208), - [sym_redirection] = STATE(2974), - [sym__flag] = STATE(2975), - [sym_short_flag] = STATE(2985), - [sym_long_flag] = STATE(2985), - [sym_unquoted] = STATE(2762), - [sym__unquoted_with_expr] = STATE(2988), - [sym__unquoted_anonymous_prefix] = STATE(4396), - [sym_comment] = STATE(120), - [anon_sym_true] = ACTIONS(785), - [anon_sym_false] = ACTIONS(785), - [anon_sym_null] = ACTIONS(787), - [aux_sym_cmd_identifier_token3] = ACTIONS(789), - [aux_sym_cmd_identifier_token4] = ACTIONS(789), - [aux_sym_cmd_identifier_token5] = ACTIONS(789), - [sym__newline] = ACTIONS(894), - [sym__space] = ACTIONS(896), - [anon_sym_SEMI] = ACTIONS(894), - [anon_sym_PIPE] = ACTIONS(894), - [anon_sym_err_GT_PIPE] = ACTIONS(894), - [anon_sym_out_GT_PIPE] = ACTIONS(894), - [anon_sym_e_GT_PIPE] = ACTIONS(894), - [anon_sym_o_GT_PIPE] = ACTIONS(894), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(894), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(894), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(894), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(894), - [anon_sym_LBRACK] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_RPAREN] = ACTIONS(894), - [anon_sym_DOLLAR] = ACTIONS(799), - [anon_sym_DASH_DASH] = ACTIONS(801), - [anon_sym_DASH2] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(805), - [anon_sym_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(809), - [anon_sym_DOT_DOT_EQ] = ACTIONS(811), - [anon_sym_DOT_DOT_LT] = ACTIONS(811), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(813), - [aux_sym__val_number_decimal_token1] = ACTIONS(815), - [aux_sym__val_number_decimal_token2] = ACTIONS(815), - [aux_sym__val_number_decimal_token3] = ACTIONS(817), - [aux_sym__val_number_decimal_token4] = ACTIONS(817), - [aux_sym__val_number_token1] = ACTIONS(819), - [aux_sym__val_number_token2] = ACTIONS(819), - [aux_sym__val_number_token3] = ACTIONS(819), - [anon_sym_0b] = ACTIONS(821), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), - [sym_val_date] = ACTIONS(825), - [anon_sym_DQUOTE] = ACTIONS(827), - [anon_sym_SQUOTE] = ACTIONS(829), - [anon_sym_BQUOTE] = ACTIONS(831), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(837), - [anon_sym_err_GT] = ACTIONS(839), - [anon_sym_out_GT] = ACTIONS(839), - [anon_sym_e_GT] = ACTIONS(839), - [anon_sym_o_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT] = ACTIONS(839), - [anon_sym_err_GT_GT] = ACTIONS(839), - [anon_sym_out_GT_GT] = ACTIONS(839), - [anon_sym_e_GT_GT] = ACTIONS(839), - [anon_sym_o_GT_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(839), - [aux_sym_unquoted_token1] = ACTIONS(841), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(843), - }, - [STATE(121)] = { - [sym_comment] = STATE(121), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(898), - [sym_duration_unit] = ACTIONS(900), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), + [STATE(118)] = { + [sym_comment] = STATE(118), + [anon_sym_in] = ACTIONS(747), + [anon_sym_STAR_STAR] = ACTIONS(749), + [anon_sym_PLUS_PLUS] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(747), + [anon_sym_SLASH] = ACTIONS(747), + [anon_sym_mod] = ACTIONS(749), + [anon_sym_SLASH_SLASH] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(747), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_bit_DASHshl] = ACTIONS(749), + [anon_sym_bit_DASHshr] = ACTIONS(749), + [anon_sym_EQ_TILDE] = ACTIONS(749), + [anon_sym_BANG_TILDE] = ACTIONS(749), + [anon_sym_like] = ACTIONS(749), + [anon_sym_not_DASHlike] = ACTIONS(749), + [anon_sym_bit_DASHand] = ACTIONS(749), + [anon_sym_bit_DASHxor] = ACTIONS(749), + [anon_sym_bit_DASHor] = ACTIONS(749), + [anon_sym_and] = ACTIONS(749), + [anon_sym_xor] = ACTIONS(749), + [anon_sym_or] = ACTIONS(749), + [anon_sym_in2] = ACTIONS(749), + [anon_sym_not_DASHin] = ACTIONS(749), + [anon_sym_has] = ACTIONS(749), + [anon_sym_not_DASHhas] = ACTIONS(749), + [anon_sym_starts_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), + [anon_sym_ends_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(749), + [anon_sym_BANG_EQ] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_LT_EQ] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_EQ] = ACTIONS(749), + [aux_sym_cmd_identifier_token6] = ACTIONS(747), + [sym__newline] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_err_GT_PIPE] = ACTIONS(747), + [anon_sym_out_GT_PIPE] = ACTIONS(747), + [anon_sym_e_GT_PIPE] = ACTIONS(747), + [anon_sym_o_GT_PIPE] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(747), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(747), + [anon_sym_xor2] = ACTIONS(747), + [anon_sym_or2] = ACTIONS(747), + [anon_sym_not_DASHin2] = ACTIONS(747), + [anon_sym_has2] = ACTIONS(747), + [anon_sym_not_DASHhas2] = ACTIONS(747), + [anon_sym_starts_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), + [anon_sym_ends_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), + [anon_sym_EQ_EQ2] = ACTIONS(747), + [anon_sym_BANG_EQ2] = ACTIONS(747), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(747), + [anon_sym_GT_EQ2] = ACTIONS(747), + [anon_sym_EQ_TILDE2] = ACTIONS(747), + [anon_sym_BANG_TILDE2] = ACTIONS(747), + [anon_sym_like2] = ACTIONS(747), + [anon_sym_not_DASHlike2] = ACTIONS(747), + [anon_sym_STAR_STAR2] = ACTIONS(747), + [anon_sym_PLUS_PLUS2] = ACTIONS(747), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(747), + [anon_sym_SLASH_SLASH2] = ACTIONS(747), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(747), + [anon_sym_bit_DASHshr2] = ACTIONS(747), + [anon_sym_bit_DASHand2] = ACTIONS(747), + [anon_sym_bit_DASHxor2] = ACTIONS(747), + [anon_sym_bit_DASHor2] = ACTIONS(747), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_err_GT] = ACTIONS(747), + [anon_sym_out_GT] = ACTIONS(747), + [anon_sym_e_GT] = ACTIONS(747), + [anon_sym_o_GT] = ACTIONS(747), + [anon_sym_err_PLUSout_GT] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT] = ACTIONS(747), + [anon_sym_o_PLUSe_GT] = ACTIONS(747), + [anon_sym_e_PLUSo_GT] = ACTIONS(747), + [anon_sym_err_GT_GT] = ACTIONS(747), + [anon_sym_out_GT_GT] = ACTIONS(747), + [anon_sym_e_GT_GT] = ACTIONS(747), + [anon_sym_o_GT_GT] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(122)] = { - [sym_comment] = STATE(122), + [STATE(119)] = { + [sym_comment] = STATE(119), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -53474,7 +53366,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(902), + [aux_sym__immediate_decimal_token5] = ACTIONS(888), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), [anon_sym_err_GT] = ACTIONS(771), @@ -53495,6 +53387,324 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(120)] = { + [sym_comment] = STATE(120), + [ts_builtin_sym_end] = ACTIONS(890), + [anon_sym_in] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(892), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_SLASH] = ACTIONS(894), + [anon_sym_mod] = ACTIONS(892), + [anon_sym_SLASH_SLASH] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(892), + [anon_sym_bit_DASHshl] = ACTIONS(892), + [anon_sym_bit_DASHshr] = ACTIONS(892), + [anon_sym_EQ_TILDE] = ACTIONS(892), + [anon_sym_BANG_TILDE] = ACTIONS(892), + [anon_sym_like] = ACTIONS(892), + [anon_sym_not_DASHlike] = ACTIONS(892), + [anon_sym_bit_DASHand] = ACTIONS(892), + [anon_sym_bit_DASHxor] = ACTIONS(892), + [anon_sym_bit_DASHor] = ACTIONS(892), + [anon_sym_and] = ACTIONS(892), + [anon_sym_xor] = ACTIONS(892), + [anon_sym_or] = ACTIONS(892), + [anon_sym_in2] = ACTIONS(892), + [anon_sym_not_DASHin] = ACTIONS(892), + [anon_sym_has] = ACTIONS(892), + [anon_sym_not_DASHhas] = ACTIONS(892), + [anon_sym_starts_DASHwith] = ACTIONS(892), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(892), + [anon_sym_ends_DASHwith] = ACTIONS(892), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(892), + [anon_sym_EQ_EQ] = ACTIONS(892), + [anon_sym_BANG_EQ] = ACTIONS(892), + [anon_sym_LT] = ACTIONS(894), + [anon_sym_LT_EQ] = ACTIONS(892), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_GT_EQ] = ACTIONS(892), + [aux_sym_cmd_identifier_token6] = ACTIONS(896), + [sym__newline] = ACTIONS(793), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_err_GT_PIPE] = ACTIONS(793), + [anon_sym_out_GT_PIPE] = ACTIONS(793), + [anon_sym_e_GT_PIPE] = ACTIONS(793), + [anon_sym_o_GT_PIPE] = ACTIONS(793), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(793), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(793), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(793), + [anon_sym_GT2] = ACTIONS(793), + [anon_sym_DASH2] = ACTIONS(793), + [anon_sym_STAR2] = ACTIONS(793), + [anon_sym_and2] = ACTIONS(793), + [anon_sym_xor2] = ACTIONS(793), + [anon_sym_or2] = ACTIONS(793), + [anon_sym_not_DASHin2] = ACTIONS(793), + [anon_sym_has2] = ACTIONS(793), + [anon_sym_not_DASHhas2] = ACTIONS(793), + [anon_sym_starts_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), + [anon_sym_ends_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), + [anon_sym_EQ_EQ2] = ACTIONS(793), + [anon_sym_BANG_EQ2] = ACTIONS(793), + [anon_sym_LT2] = ACTIONS(793), + [anon_sym_LT_EQ2] = ACTIONS(793), + [anon_sym_GT_EQ2] = ACTIONS(793), + [anon_sym_EQ_TILDE2] = ACTIONS(793), + [anon_sym_BANG_TILDE2] = ACTIONS(793), + [anon_sym_like2] = ACTIONS(793), + [anon_sym_not_DASHlike2] = ACTIONS(793), + [anon_sym_STAR_STAR2] = ACTIONS(793), + [anon_sym_PLUS_PLUS2] = ACTIONS(793), + [anon_sym_SLASH2] = ACTIONS(793), + [anon_sym_mod2] = ACTIONS(793), + [anon_sym_SLASH_SLASH2] = ACTIONS(793), + [anon_sym_PLUS2] = ACTIONS(793), + [anon_sym_bit_DASHshl2] = ACTIONS(793), + [anon_sym_bit_DASHshr2] = ACTIONS(793), + [anon_sym_bit_DASHand2] = ACTIONS(793), + [anon_sym_bit_DASHxor2] = ACTIONS(793), + [anon_sym_bit_DASHor2] = ACTIONS(793), + [anon_sym_DOT_DOT2] = ACTIONS(898), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(900), + [anon_sym_DOT_DOT_LT2] = ACTIONS(900), + [sym_filesize_unit] = ACTIONS(902), + [sym_duration_unit] = ACTIONS(904), + [anon_sym_err_GT] = ACTIONS(793), + [anon_sym_out_GT] = ACTIONS(793), + [anon_sym_e_GT] = ACTIONS(793), + [anon_sym_o_GT] = ACTIONS(793), + [anon_sym_err_PLUSout_GT] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT] = ACTIONS(793), + [anon_sym_o_PLUSe_GT] = ACTIONS(793), + [anon_sym_e_PLUSo_GT] = ACTIONS(793), + [anon_sym_err_GT_GT] = ACTIONS(793), + [anon_sym_out_GT_GT] = ACTIONS(793), + [anon_sym_e_GT_GT] = ACTIONS(793), + [anon_sym_o_GT_GT] = ACTIONS(793), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(793), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(793), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(121)] = { + [sym_comment] = STATE(121), + [anon_sym_in] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(906), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(908), + [anon_sym_SLASH] = ACTIONS(908), + [anon_sym_mod] = ACTIONS(906), + [anon_sym_SLASH_SLASH] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(908), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_bit_DASHshl] = ACTIONS(906), + [anon_sym_bit_DASHshr] = ACTIONS(906), + [anon_sym_EQ_TILDE] = ACTIONS(906), + [anon_sym_BANG_TILDE] = ACTIONS(906), + [anon_sym_like] = ACTIONS(906), + [anon_sym_not_DASHlike] = ACTIONS(906), + [anon_sym_bit_DASHand] = ACTIONS(906), + [anon_sym_bit_DASHxor] = ACTIONS(906), + [anon_sym_bit_DASHor] = ACTIONS(906), + [anon_sym_and] = ACTIONS(906), + [anon_sym_xor] = ACTIONS(906), + [anon_sym_or] = ACTIONS(906), + [anon_sym_in2] = ACTIONS(906), + [anon_sym_not_DASHin] = ACTIONS(906), + [anon_sym_has] = ACTIONS(906), + [anon_sym_not_DASHhas] = ACTIONS(906), + [anon_sym_starts_DASHwith] = ACTIONS(906), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(906), + [anon_sym_ends_DASHwith] = ACTIONS(906), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(906), + [anon_sym_EQ_EQ] = ACTIONS(906), + [anon_sym_BANG_EQ] = ACTIONS(906), + [anon_sym_LT] = ACTIONS(908), + [anon_sym_LT_EQ] = ACTIONS(906), + [anon_sym_GT] = ACTIONS(908), + [anon_sym_GT_EQ] = ACTIONS(906), + [aux_sym_cmd_identifier_token6] = ACTIONS(910), + [sym__newline] = ACTIONS(793), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_err_GT_PIPE] = ACTIONS(793), + [anon_sym_out_GT_PIPE] = ACTIONS(793), + [anon_sym_e_GT_PIPE] = ACTIONS(793), + [anon_sym_o_GT_PIPE] = ACTIONS(793), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(793), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(793), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(793), + [anon_sym_GT2] = ACTIONS(793), + [anon_sym_DASH2] = ACTIONS(793), + [anon_sym_RBRACE] = ACTIONS(793), + [anon_sym_STAR2] = ACTIONS(793), + [anon_sym_and2] = ACTIONS(793), + [anon_sym_xor2] = ACTIONS(793), + [anon_sym_or2] = ACTIONS(793), + [anon_sym_not_DASHin2] = ACTIONS(793), + [anon_sym_has2] = ACTIONS(793), + [anon_sym_not_DASHhas2] = ACTIONS(793), + [anon_sym_starts_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), + [anon_sym_ends_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), + [anon_sym_EQ_EQ2] = ACTIONS(793), + [anon_sym_BANG_EQ2] = ACTIONS(793), + [anon_sym_LT2] = ACTIONS(793), + [anon_sym_LT_EQ2] = ACTIONS(793), + [anon_sym_GT_EQ2] = ACTIONS(793), + [anon_sym_EQ_TILDE2] = ACTIONS(793), + [anon_sym_BANG_TILDE2] = ACTIONS(793), + [anon_sym_like2] = ACTIONS(793), + [anon_sym_not_DASHlike2] = ACTIONS(793), + [anon_sym_STAR_STAR2] = ACTIONS(793), + [anon_sym_PLUS_PLUS2] = ACTIONS(793), + [anon_sym_SLASH2] = ACTIONS(793), + [anon_sym_mod2] = ACTIONS(793), + [anon_sym_SLASH_SLASH2] = ACTIONS(793), + [anon_sym_PLUS2] = ACTIONS(793), + [anon_sym_bit_DASHshl2] = ACTIONS(793), + [anon_sym_bit_DASHshr2] = ACTIONS(793), + [anon_sym_bit_DASHand2] = ACTIONS(793), + [anon_sym_bit_DASHxor2] = ACTIONS(793), + [anon_sym_bit_DASHor2] = ACTIONS(793), + [anon_sym_DOT_DOT2] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(803), + [anon_sym_DOT_DOT_LT2] = ACTIONS(803), + [sym_filesize_unit] = ACTIONS(912), + [sym_duration_unit] = ACTIONS(914), + [anon_sym_err_GT] = ACTIONS(793), + [anon_sym_out_GT] = ACTIONS(793), + [anon_sym_e_GT] = ACTIONS(793), + [anon_sym_o_GT] = ACTIONS(793), + [anon_sym_err_PLUSout_GT] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT] = ACTIONS(793), + [anon_sym_o_PLUSe_GT] = ACTIONS(793), + [anon_sym_e_PLUSo_GT] = ACTIONS(793), + [anon_sym_err_GT_GT] = ACTIONS(793), + [anon_sym_out_GT_GT] = ACTIONS(793), + [anon_sym_e_GT_GT] = ACTIONS(793), + [anon_sym_o_GT_GT] = ACTIONS(793), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(793), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(793), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(122)] = { + [sym_comment] = STATE(122), + [ts_builtin_sym_end] = ACTIONS(876), + [anon_sym_in] = ACTIONS(874), + [anon_sym_STAR_STAR] = ACTIONS(876), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(874), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_mod] = ACTIONS(876), + [anon_sym_SLASH_SLASH] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(876), + [anon_sym_bit_DASHshl] = ACTIONS(876), + [anon_sym_bit_DASHshr] = ACTIONS(876), + [anon_sym_EQ_TILDE] = ACTIONS(876), + [anon_sym_BANG_TILDE] = ACTIONS(876), + [anon_sym_like] = ACTIONS(876), + [anon_sym_not_DASHlike] = ACTIONS(876), + [anon_sym_bit_DASHand] = ACTIONS(876), + [anon_sym_bit_DASHxor] = ACTIONS(876), + [anon_sym_bit_DASHor] = ACTIONS(876), + [anon_sym_and] = ACTIONS(876), + [anon_sym_xor] = ACTIONS(876), + [anon_sym_or] = ACTIONS(876), + [anon_sym_in2] = ACTIONS(876), + [anon_sym_not_DASHin] = ACTIONS(876), + [anon_sym_has] = ACTIONS(876), + [anon_sym_not_DASHhas] = ACTIONS(876), + [anon_sym_starts_DASHwith] = ACTIONS(876), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(876), + [anon_sym_ends_DASHwith] = ACTIONS(876), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(876), + [anon_sym_EQ_EQ] = ACTIONS(876), + [anon_sym_BANG_EQ] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_EQ] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_GT_EQ] = ACTIONS(876), + [aux_sym_cmd_identifier_token6] = ACTIONS(874), + [sym__newline] = ACTIONS(874), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_PIPE] = ACTIONS(874), + [anon_sym_err_GT_PIPE] = ACTIONS(874), + [anon_sym_out_GT_PIPE] = ACTIONS(874), + [anon_sym_e_GT_PIPE] = ACTIONS(874), + [anon_sym_o_GT_PIPE] = ACTIONS(874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(874), + [anon_sym_GT2] = ACTIONS(874), + [anon_sym_DASH2] = ACTIONS(874), + [anon_sym_STAR2] = ACTIONS(874), + [anon_sym_and2] = ACTIONS(874), + [anon_sym_xor2] = ACTIONS(874), + [anon_sym_or2] = ACTIONS(874), + [anon_sym_not_DASHin2] = ACTIONS(874), + [anon_sym_has2] = ACTIONS(874), + [anon_sym_not_DASHhas2] = ACTIONS(874), + [anon_sym_starts_DASHwith2] = ACTIONS(874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(874), + [anon_sym_ends_DASHwith2] = ACTIONS(874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(874), + [anon_sym_EQ_EQ2] = ACTIONS(874), + [anon_sym_BANG_EQ2] = ACTIONS(874), + [anon_sym_LT2] = ACTIONS(874), + [anon_sym_LT_EQ2] = ACTIONS(874), + [anon_sym_GT_EQ2] = ACTIONS(874), + [anon_sym_EQ_TILDE2] = ACTIONS(874), + [anon_sym_BANG_TILDE2] = ACTIONS(874), + [anon_sym_like2] = ACTIONS(874), + [anon_sym_not_DASHlike2] = ACTIONS(874), + [anon_sym_STAR_STAR2] = ACTIONS(874), + [anon_sym_PLUS_PLUS2] = ACTIONS(874), + [anon_sym_SLASH2] = ACTIONS(874), + [anon_sym_mod2] = ACTIONS(874), + [anon_sym_SLASH_SLASH2] = ACTIONS(874), + [anon_sym_PLUS2] = ACTIONS(874), + [anon_sym_bit_DASHshl2] = ACTIONS(874), + [anon_sym_bit_DASHshr2] = ACTIONS(874), + [anon_sym_bit_DASHand2] = ACTIONS(874), + [anon_sym_bit_DASHxor2] = ACTIONS(874), + [anon_sym_bit_DASHor2] = ACTIONS(874), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(874), + [sym_duration_unit] = ACTIONS(876), + [anon_sym_err_GT] = ACTIONS(874), + [anon_sym_out_GT] = ACTIONS(874), + [anon_sym_e_GT] = ACTIONS(874), + [anon_sym_o_GT] = ACTIONS(874), + [anon_sym_err_PLUSout_GT] = ACTIONS(874), + [anon_sym_out_PLUSerr_GT] = ACTIONS(874), + [anon_sym_o_PLUSe_GT] = ACTIONS(874), + [anon_sym_e_PLUSo_GT] = ACTIONS(874), + [anon_sym_err_GT_GT] = ACTIONS(874), + [anon_sym_out_GT_GT] = ACTIONS(874), + [anon_sym_e_GT_GT] = ACTIONS(874), + [anon_sym_o_GT_GT] = ACTIONS(874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(874), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(123)] = { [sym_comment] = STATE(123), [anon_sym_in] = ACTIONS(747), @@ -53603,108 +53813,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(124)] = { [sym_comment] = STATE(124), - [ts_builtin_sym_end] = ACTIONS(749), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(747), - [anon_sym_out_GT_GT] = ACTIONS(747), - [anon_sym_e_GT_GT] = ACTIONS(747), - [anon_sym_o_GT_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), + [anon_sym_in] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(773), + [anon_sym_SLASH_SLASH] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_bit_DASHshl] = ACTIONS(773), + [anon_sym_bit_DASHshr] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_BANG_TILDE] = ACTIONS(773), + [anon_sym_like] = ACTIONS(773), + [anon_sym_not_DASHlike] = ACTIONS(773), + [anon_sym_bit_DASHand] = ACTIONS(773), + [anon_sym_bit_DASHxor] = ACTIONS(773), + [anon_sym_bit_DASHor] = ACTIONS(773), + [anon_sym_and] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(773), + [anon_sym_or] = ACTIONS(773), + [anon_sym_in2] = ACTIONS(773), + [anon_sym_not_DASHin] = ACTIONS(773), + [anon_sym_has] = ACTIONS(773), + [anon_sym_not_DASHhas] = ACTIONS(773), + [anon_sym_starts_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), + [anon_sym_ends_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [aux_sym_cmd_identifier_token6] = ACTIONS(771), + [sym__newline] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_err_GT_PIPE] = ACTIONS(771), + [anon_sym_out_GT_PIPE] = ACTIONS(771), + [anon_sym_e_GT_PIPE] = ACTIONS(771), + [anon_sym_o_GT_PIPE] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_RPAREN] = ACTIONS(771), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(771), + [anon_sym_xor2] = ACTIONS(771), + [anon_sym_or2] = ACTIONS(771), + [anon_sym_not_DASHin2] = ACTIONS(771), + [anon_sym_has2] = ACTIONS(771), + [anon_sym_not_DASHhas2] = ACTIONS(771), + [anon_sym_starts_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), + [anon_sym_ends_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), + [anon_sym_EQ_EQ2] = ACTIONS(771), + [anon_sym_BANG_EQ2] = ACTIONS(771), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(771), + [anon_sym_GT_EQ2] = ACTIONS(771), + [anon_sym_EQ_TILDE2] = ACTIONS(771), + [anon_sym_BANG_TILDE2] = ACTIONS(771), + [anon_sym_like2] = ACTIONS(771), + [anon_sym_not_DASHlike2] = ACTIONS(771), + [anon_sym_STAR_STAR2] = ACTIONS(771), + [anon_sym_PLUS_PLUS2] = ACTIONS(771), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(771), + [anon_sym_SLASH_SLASH2] = ACTIONS(771), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(771), + [anon_sym_bit_DASHshr2] = ACTIONS(771), + [anon_sym_bit_DASHand2] = ACTIONS(771), + [anon_sym_bit_DASHxor2] = ACTIONS(771), + [anon_sym_bit_DASHor2] = ACTIONS(771), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_err_GT] = ACTIONS(771), + [anon_sym_out_GT] = ACTIONS(771), + [anon_sym_e_GT] = ACTIONS(771), + [anon_sym_o_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT] = ACTIONS(771), + [anon_sym_err_GT_GT] = ACTIONS(771), + [anon_sym_out_GT_GT] = ACTIONS(771), + [anon_sym_e_GT_GT] = ACTIONS(771), + [anon_sym_o_GT_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(103), }, [STATE(125)] = { @@ -53815,112 +54025,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(126)] = { [sym_comment] = STATE(126), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(849), - [anon_sym_out_GT_GT] = ACTIONS(849), - [anon_sym_e_GT_GT] = ACTIONS(849), - [anon_sym_o_GT_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(849), + [anon_sym_in] = ACTIONS(874), + [anon_sym_STAR_STAR] = ACTIONS(876), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(874), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_mod] = ACTIONS(876), + [anon_sym_SLASH_SLASH] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(876), + [anon_sym_bit_DASHshl] = ACTIONS(876), + [anon_sym_bit_DASHshr] = ACTIONS(876), + [anon_sym_EQ_TILDE] = ACTIONS(876), + [anon_sym_BANG_TILDE] = ACTIONS(876), + [anon_sym_like] = ACTIONS(876), + [anon_sym_not_DASHlike] = ACTIONS(876), + [anon_sym_bit_DASHand] = ACTIONS(876), + [anon_sym_bit_DASHxor] = ACTIONS(876), + [anon_sym_bit_DASHor] = ACTIONS(876), + [anon_sym_and] = ACTIONS(876), + [anon_sym_xor] = ACTIONS(876), + [anon_sym_or] = ACTIONS(876), + [anon_sym_in2] = ACTIONS(876), + [anon_sym_not_DASHin] = ACTIONS(876), + [anon_sym_has] = ACTIONS(876), + [anon_sym_not_DASHhas] = ACTIONS(876), + [anon_sym_starts_DASHwith] = ACTIONS(876), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(876), + [anon_sym_ends_DASHwith] = ACTIONS(876), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(876), + [anon_sym_EQ_EQ] = ACTIONS(876), + [anon_sym_BANG_EQ] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_EQ] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_GT_EQ] = ACTIONS(876), + [aux_sym_cmd_identifier_token6] = ACTIONS(874), + [sym__newline] = ACTIONS(874), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_PIPE] = ACTIONS(874), + [anon_sym_err_GT_PIPE] = ACTIONS(874), + [anon_sym_out_GT_PIPE] = ACTIONS(874), + [anon_sym_e_GT_PIPE] = ACTIONS(874), + [anon_sym_o_GT_PIPE] = ACTIONS(874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(874), + [anon_sym_GT2] = ACTIONS(874), + [anon_sym_DASH2] = ACTIONS(874), + [anon_sym_RBRACE] = ACTIONS(874), + [anon_sym_STAR2] = ACTIONS(874), + [anon_sym_and2] = ACTIONS(874), + [anon_sym_xor2] = ACTIONS(874), + [anon_sym_or2] = ACTIONS(874), + [anon_sym_not_DASHin2] = ACTIONS(874), + [anon_sym_has2] = ACTIONS(874), + [anon_sym_not_DASHhas2] = ACTIONS(874), + [anon_sym_starts_DASHwith2] = ACTIONS(874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(874), + [anon_sym_ends_DASHwith2] = ACTIONS(874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(874), + [anon_sym_EQ_EQ2] = ACTIONS(874), + [anon_sym_BANG_EQ2] = ACTIONS(874), + [anon_sym_LT2] = ACTIONS(874), + [anon_sym_LT_EQ2] = ACTIONS(874), + [anon_sym_GT_EQ2] = ACTIONS(874), + [anon_sym_EQ_TILDE2] = ACTIONS(874), + [anon_sym_BANG_TILDE2] = ACTIONS(874), + [anon_sym_like2] = ACTIONS(874), + [anon_sym_not_DASHlike2] = ACTIONS(874), + [anon_sym_STAR_STAR2] = ACTIONS(874), + [anon_sym_PLUS_PLUS2] = ACTIONS(874), + [anon_sym_SLASH2] = ACTIONS(874), + [anon_sym_mod2] = ACTIONS(874), + [anon_sym_SLASH_SLASH2] = ACTIONS(874), + [anon_sym_PLUS2] = ACTIONS(874), + [anon_sym_bit_DASHshl2] = ACTIONS(874), + [anon_sym_bit_DASHshr2] = ACTIONS(874), + [anon_sym_bit_DASHand2] = ACTIONS(874), + [anon_sym_bit_DASHxor2] = ACTIONS(874), + [anon_sym_bit_DASHor2] = ACTIONS(874), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(874), + [sym_duration_unit] = ACTIONS(876), + [anon_sym_err_GT] = ACTIONS(874), + [anon_sym_out_GT] = ACTIONS(874), + [anon_sym_e_GT] = ACTIONS(874), + [anon_sym_o_GT] = ACTIONS(874), + [anon_sym_err_PLUSout_GT] = ACTIONS(874), + [anon_sym_out_PLUSerr_GT] = ACTIONS(874), + [anon_sym_o_PLUSe_GT] = ACTIONS(874), + [anon_sym_e_PLUSo_GT] = ACTIONS(874), + [anon_sym_err_GT_GT] = ACTIONS(874), + [anon_sym_out_GT_GT] = ACTIONS(874), + [anon_sym_e_GT_GT] = ACTIONS(874), + [anon_sym_o_GT_GT] = ACTIONS(874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(874), [anon_sym_POUND] = ACTIONS(103), }, [STATE(127)] = { [sym_comment] = STATE(127), + [anon_sym_in] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(906), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(908), + [anon_sym_SLASH] = ACTIONS(908), + [anon_sym_mod] = ACTIONS(906), + [anon_sym_SLASH_SLASH] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(908), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_bit_DASHshl] = ACTIONS(906), + [anon_sym_bit_DASHshr] = ACTIONS(906), + [anon_sym_EQ_TILDE] = ACTIONS(906), + [anon_sym_BANG_TILDE] = ACTIONS(906), + [anon_sym_like] = ACTIONS(906), + [anon_sym_not_DASHlike] = ACTIONS(906), + [anon_sym_bit_DASHand] = ACTIONS(906), + [anon_sym_bit_DASHxor] = ACTIONS(906), + [anon_sym_bit_DASHor] = ACTIONS(906), + [anon_sym_and] = ACTIONS(906), + [anon_sym_xor] = ACTIONS(906), + [anon_sym_or] = ACTIONS(906), + [anon_sym_in2] = ACTIONS(906), + [anon_sym_not_DASHin] = ACTIONS(906), + [anon_sym_has] = ACTIONS(906), + [anon_sym_not_DASHhas] = ACTIONS(906), + [anon_sym_starts_DASHwith] = ACTIONS(906), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(906), + [anon_sym_ends_DASHwith] = ACTIONS(906), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(906), + [anon_sym_EQ_EQ] = ACTIONS(906), + [anon_sym_BANG_EQ] = ACTIONS(906), + [anon_sym_LT] = ACTIONS(908), + [anon_sym_LT_EQ] = ACTIONS(906), + [anon_sym_GT] = ACTIONS(908), + [anon_sym_GT_EQ] = ACTIONS(906), + [aux_sym_cmd_identifier_token6] = ACTIONS(910), + [sym__newline] = ACTIONS(793), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_err_GT_PIPE] = ACTIONS(793), + [anon_sym_out_GT_PIPE] = ACTIONS(793), + [anon_sym_e_GT_PIPE] = ACTIONS(793), + [anon_sym_o_GT_PIPE] = ACTIONS(793), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(793), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(793), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(793), + [anon_sym_RPAREN] = ACTIONS(793), + [anon_sym_GT2] = ACTIONS(793), + [anon_sym_DASH2] = ACTIONS(793), + [anon_sym_STAR2] = ACTIONS(793), + [anon_sym_and2] = ACTIONS(793), + [anon_sym_xor2] = ACTIONS(793), + [anon_sym_or2] = ACTIONS(793), + [anon_sym_not_DASHin2] = ACTIONS(793), + [anon_sym_has2] = ACTIONS(793), + [anon_sym_not_DASHhas2] = ACTIONS(793), + [anon_sym_starts_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), + [anon_sym_ends_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), + [anon_sym_EQ_EQ2] = ACTIONS(793), + [anon_sym_BANG_EQ2] = ACTIONS(793), + [anon_sym_LT2] = ACTIONS(793), + [anon_sym_LT_EQ2] = ACTIONS(793), + [anon_sym_GT_EQ2] = ACTIONS(793), + [anon_sym_EQ_TILDE2] = ACTIONS(793), + [anon_sym_BANG_TILDE2] = ACTIONS(793), + [anon_sym_like2] = ACTIONS(793), + [anon_sym_not_DASHlike2] = ACTIONS(793), + [anon_sym_STAR_STAR2] = ACTIONS(793), + [anon_sym_PLUS_PLUS2] = ACTIONS(793), + [anon_sym_SLASH2] = ACTIONS(793), + [anon_sym_mod2] = ACTIONS(793), + [anon_sym_SLASH_SLASH2] = ACTIONS(793), + [anon_sym_PLUS2] = ACTIONS(793), + [anon_sym_bit_DASHshl2] = ACTIONS(793), + [anon_sym_bit_DASHshr2] = ACTIONS(793), + [anon_sym_bit_DASHand2] = ACTIONS(793), + [anon_sym_bit_DASHxor2] = ACTIONS(793), + [anon_sym_bit_DASHor2] = ACTIONS(793), + [anon_sym_DOT_DOT2] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(803), + [anon_sym_DOT_DOT_LT2] = ACTIONS(803), + [sym_filesize_unit] = ACTIONS(916), + [sym_duration_unit] = ACTIONS(918), + [anon_sym_err_GT] = ACTIONS(793), + [anon_sym_out_GT] = ACTIONS(793), + [anon_sym_e_GT] = ACTIONS(793), + [anon_sym_o_GT] = ACTIONS(793), + [anon_sym_err_PLUSout_GT] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT] = ACTIONS(793), + [anon_sym_o_PLUSe_GT] = ACTIONS(793), + [anon_sym_e_PLUSo_GT] = ACTIONS(793), + [anon_sym_err_GT_GT] = ACTIONS(793), + [anon_sym_out_GT_GT] = ACTIONS(793), + [anon_sym_e_GT_GT] = ACTIONS(793), + [anon_sym_o_GT_GT] = ACTIONS(793), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(793), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(793), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(128)] = { + [sym_comment] = STATE(128), + [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -53968,7 +54285,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), @@ -54025,112 +54341,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(128)] = { - [sym_expr_parenthesized] = STATE(2728), - [sym__spread_parenthesized] = STATE(3085), - [sym_val_range] = STATE(3166), - [sym__val_range] = STATE(4612), - [sym__value] = STATE(3166), - [sym_val_nothing] = STATE(3180), - [sym_val_bool] = STATE(2876), - [sym__spread_variable] = STATE(3170), - [sym_val_variable] = STATE(2645), - [sym_val_cellpath] = STATE(3180), - [sym_val_number] = STATE(3180), - [sym__val_number_decimal] = STATE(2397), - [sym__val_number] = STATE(3203), - [sym_val_duration] = STATE(3180), - [sym_val_filesize] = STATE(3180), - [sym_val_binary] = STATE(3180), - [sym_val_string] = STATE(3180), - [sym__raw_str] = STATE(2472), - [sym__str_double_quotes] = STATE(2472), - [sym__str_single_quotes] = STATE(2472), - [sym__str_back_ticks] = STATE(2472), - [sym_val_interpolated] = STATE(3180), - [sym__inter_single_quotes] = STATE(3091), - [sym__inter_double_quotes] = STATE(3098), - [sym_val_list] = STATE(3180), - [sym__spread_list] = STATE(3085), - [sym_val_record] = STATE(3180), - [sym_val_table] = STATE(3180), - [sym_val_closure] = STATE(3180), - [sym__cmd_arg] = STATE(3176), - [sym_redirection] = STATE(3181), - [sym__flag] = STATE(3196), - [sym_short_flag] = STATE(3210), - [sym_long_flag] = STATE(3210), - [sym_unquoted] = STATE(2832), - [sym__unquoted_with_expr] = STATE(3150), - [sym__unquoted_anonymous_prefix] = STATE(4612), - [sym_comment] = STATE(128), - [ts_builtin_sym_end] = ACTIONS(793), - [anon_sym_true] = ACTIONS(904), - [anon_sym_false] = ACTIONS(904), - [anon_sym_null] = ACTIONS(906), - [aux_sym_cmd_identifier_token3] = ACTIONS(908), - [aux_sym_cmd_identifier_token4] = ACTIONS(908), - [aux_sym_cmd_identifier_token5] = ACTIONS(908), - [sym__newline] = ACTIONS(791), - [sym__space] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_err_GT_PIPE] = ACTIONS(791), - [anon_sym_out_GT_PIPE] = ACTIONS(791), - [anon_sym_e_GT_PIPE] = ACTIONS(791), - [anon_sym_o_GT_PIPE] = ACTIONS(791), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), - [anon_sym_LBRACK] = ACTIONS(910), - [anon_sym_LPAREN] = ACTIONS(912), - [anon_sym_DOLLAR] = ACTIONS(914), - [anon_sym_DASH_DASH] = ACTIONS(916), - [anon_sym_DASH2] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_DOT_DOT] = ACTIONS(922), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(924), - [anon_sym_DOT_DOT_EQ] = ACTIONS(926), - [anon_sym_DOT_DOT_LT] = ACTIONS(926), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(928), - [aux_sym__val_number_decimal_token1] = ACTIONS(930), - [aux_sym__val_number_decimal_token2] = ACTIONS(930), - [aux_sym__val_number_decimal_token3] = ACTIONS(932), - [aux_sym__val_number_decimal_token4] = ACTIONS(932), - [aux_sym__val_number_token1] = ACTIONS(934), - [aux_sym__val_number_token2] = ACTIONS(934), - [aux_sym__val_number_token3] = ACTIONS(934), - [anon_sym_0b] = ACTIONS(936), - [anon_sym_0o] = ACTIONS(938), - [anon_sym_0x] = ACTIONS(938), - [sym_val_date] = ACTIONS(940), - [anon_sym_DQUOTE] = ACTIONS(942), - [anon_sym_SQUOTE] = ACTIONS(944), - [anon_sym_BQUOTE] = ACTIONS(946), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(948), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(952), - [anon_sym_err_GT] = ACTIONS(954), - [anon_sym_out_GT] = ACTIONS(954), - [anon_sym_e_GT] = ACTIONS(954), - [anon_sym_o_GT] = ACTIONS(954), - [anon_sym_err_PLUSout_GT] = ACTIONS(954), - [anon_sym_out_PLUSerr_GT] = ACTIONS(954), - [anon_sym_o_PLUSe_GT] = ACTIONS(954), - [anon_sym_e_PLUSo_GT] = ACTIONS(954), - [anon_sym_err_GT_GT] = ACTIONS(954), - [anon_sym_out_GT_GT] = ACTIONS(954), - [anon_sym_e_GT_GT] = ACTIONS(954), - [anon_sym_o_GT_GT] = ACTIONS(954), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(954), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(954), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(954), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(954), - [aux_sym_unquoted_token1] = ACTIONS(956), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(958), - }, [STATE(129)] = { [sym_comment] = STATE(129), [ts_builtin_sym_end] = ACTIONS(773), @@ -54238,110 +54448,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), }, [STATE(130)] = { + [sym_expr_parenthesized] = STATE(2724), + [sym__spread_parenthesized] = STATE(3194), + [sym_val_range] = STATE(3128), + [sym__val_range] = STATE(4611), + [sym__value] = STATE(3128), + [sym_val_nothing] = STATE(3144), + [sym_val_bool] = STATE(2897), + [sym__spread_variable] = STATE(3139), + [sym_val_variable] = STATE(2824), + [sym_val_cellpath] = STATE(3144), + [sym_val_number] = STATE(3144), + [sym__val_number_decimal] = STATE(2446), + [sym__val_number] = STATE(3146), + [sym_val_duration] = STATE(3144), + [sym_val_filesize] = STATE(3144), + [sym_val_binary] = STATE(3144), + [sym_val_string] = STATE(3144), + [sym__raw_str] = STATE(2543), + [sym__str_double_quotes] = STATE(2543), + [sym__str_single_quotes] = STATE(2543), + [sym__str_back_ticks] = STATE(2543), + [sym_val_interpolated] = STATE(3144), + [sym__inter_single_quotes] = STATE(3261), + [sym__inter_double_quotes] = STATE(3262), + [sym_val_list] = STATE(3144), + [sym__spread_list] = STATE(3194), + [sym_val_record] = STATE(3144), + [sym_val_table] = STATE(3144), + [sym_val_closure] = STATE(3144), + [sym__cmd_arg] = STATE(3160), + [sym_redirection] = STATE(3165), + [sym__flag] = STATE(3167), + [sym_short_flag] = STATE(3180), + [sym_long_flag] = STATE(3180), + [sym_unquoted] = STATE(2925), + [sym__unquoted_with_expr] = STATE(3147), + [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(130), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(960), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(962), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(739), - [anon_sym_out_GT_GT] = ACTIONS(739), - [anon_sym_e_GT_GT] = ACTIONS(739), - [anon_sym_o_GT_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), + [ts_builtin_sym_end] = ACTIONS(872), + [anon_sym_true] = ACTIONS(920), + [anon_sym_false] = ACTIONS(920), + [anon_sym_null] = ACTIONS(922), + [aux_sym_cmd_identifier_token3] = ACTIONS(924), + [aux_sym_cmd_identifier_token4] = ACTIONS(924), + [aux_sym_cmd_identifier_token5] = ACTIONS(924), + [sym__newline] = ACTIONS(818), + [sym__space] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(818), + [anon_sym_PIPE] = ACTIONS(818), + [anon_sym_err_GT_PIPE] = ACTIONS(818), + [anon_sym_out_GT_PIPE] = ACTIONS(818), + [anon_sym_e_GT_PIPE] = ACTIONS(818), + [anon_sym_o_GT_PIPE] = ACTIONS(818), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(818), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(818), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(818), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(818), + [anon_sym_LBRACK] = ACTIONS(926), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_DOLLAR] = ACTIONS(930), + [anon_sym_DASH_DASH] = ACTIONS(932), + [anon_sym_DASH2] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(936), + [anon_sym_DOT_DOT] = ACTIONS(938), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(940), + [anon_sym_DOT_DOT_EQ] = ACTIONS(942), + [anon_sym_DOT_DOT_LT] = ACTIONS(942), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(944), + [aux_sym__val_number_decimal_token1] = ACTIONS(946), + [aux_sym__val_number_decimal_token2] = ACTIONS(946), + [aux_sym__val_number_decimal_token3] = ACTIONS(948), + [aux_sym__val_number_decimal_token4] = ACTIONS(948), + [aux_sym__val_number_token1] = ACTIONS(950), + [aux_sym__val_number_token2] = ACTIONS(950), + [aux_sym__val_number_token3] = ACTIONS(950), + [anon_sym_0b] = ACTIONS(952), + [anon_sym_0o] = ACTIONS(954), + [anon_sym_0x] = ACTIONS(954), + [sym_val_date] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(958), + [anon_sym_SQUOTE] = ACTIONS(960), + [anon_sym_BQUOTE] = ACTIONS(962), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(964), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(968), + [anon_sym_err_GT] = ACTIONS(970), + [anon_sym_out_GT] = ACTIONS(970), + [anon_sym_e_GT] = ACTIONS(970), + [anon_sym_o_GT] = ACTIONS(970), + [anon_sym_err_PLUSout_GT] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT] = ACTIONS(970), + [anon_sym_o_PLUSe_GT] = ACTIONS(970), + [anon_sym_e_PLUSo_GT] = ACTIONS(970), + [anon_sym_err_GT_GT] = ACTIONS(970), + [anon_sym_out_GT_GT] = ACTIONS(970), + [anon_sym_e_GT_GT] = ACTIONS(970), + [anon_sym_o_GT_GT] = ACTIONS(970), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(970), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(970), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(970), + [aux_sym_unquoted_token1] = ACTIONS(972), [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(974), }, [STATE(131)] = { [sym_comment] = STATE(131), @@ -54427,8 +54637,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(964), - [aux_sym__immediate_decimal_token5] = ACTIONS(966), + [aux_sym__immediate_decimal_token1] = ACTIONS(976), + [aux_sym__immediate_decimal_token5] = ACTIONS(978), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -54451,218 +54661,428 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(132)] = { [sym_comment] = STATE(132), - [ts_builtin_sym_end] = ACTIONS(968), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(970), - [anon_sym_PLUS_PLUS] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_mod] = ACTIONS(970), - [anon_sym_SLASH_SLASH] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_bit_DASHshl] = ACTIONS(970), - [anon_sym_bit_DASHshr] = ACTIONS(970), - [anon_sym_EQ_TILDE] = ACTIONS(970), - [anon_sym_BANG_TILDE] = ACTIONS(970), - [anon_sym_like] = ACTIONS(970), - [anon_sym_not_DASHlike] = ACTIONS(970), - [anon_sym_bit_DASHand] = ACTIONS(970), - [anon_sym_bit_DASHxor] = ACTIONS(970), - [anon_sym_bit_DASHor] = ACTIONS(970), - [anon_sym_and] = ACTIONS(970), - [anon_sym_xor] = ACTIONS(970), - [anon_sym_or] = ACTIONS(970), - [anon_sym_in2] = ACTIONS(970), - [anon_sym_not_DASHin] = ACTIONS(970), - [anon_sym_has] = ACTIONS(970), - [anon_sym_not_DASHhas] = ACTIONS(970), - [anon_sym_starts_DASHwith] = ACTIONS(970), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(970), - [anon_sym_ends_DASHwith] = ACTIONS(970), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(970), - [anon_sym_EQ_EQ] = ACTIONS(970), - [anon_sym_BANG_EQ] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(972), - [anon_sym_LT_EQ] = ACTIONS(970), - [anon_sym_GT] = ACTIONS(972), - [anon_sym_GT_EQ] = ACTIONS(970), - [aux_sym_cmd_identifier_token6] = ACTIONS(974), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), - [anon_sym_DOT_DOT_LT2] = ACTIONS(978), - [sym_filesize_unit] = ACTIONS(980), - [sym_duration_unit] = ACTIONS(982), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), + [anon_sym_in] = ACTIONS(874), + [anon_sym_STAR_STAR] = ACTIONS(876), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(874), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_mod] = ACTIONS(876), + [anon_sym_SLASH_SLASH] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(876), + [anon_sym_bit_DASHshl] = ACTIONS(876), + [anon_sym_bit_DASHshr] = ACTIONS(876), + [anon_sym_EQ_TILDE] = ACTIONS(876), + [anon_sym_BANG_TILDE] = ACTIONS(876), + [anon_sym_like] = ACTIONS(876), + [anon_sym_not_DASHlike] = ACTIONS(876), + [anon_sym_bit_DASHand] = ACTIONS(876), + [anon_sym_bit_DASHxor] = ACTIONS(876), + [anon_sym_bit_DASHor] = ACTIONS(876), + [anon_sym_and] = ACTIONS(876), + [anon_sym_xor] = ACTIONS(876), + [anon_sym_or] = ACTIONS(876), + [anon_sym_in2] = ACTIONS(876), + [anon_sym_not_DASHin] = ACTIONS(876), + [anon_sym_has] = ACTIONS(876), + [anon_sym_not_DASHhas] = ACTIONS(876), + [anon_sym_starts_DASHwith] = ACTIONS(876), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(876), + [anon_sym_ends_DASHwith] = ACTIONS(876), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(876), + [anon_sym_EQ_EQ] = ACTIONS(876), + [anon_sym_BANG_EQ] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_EQ] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_GT_EQ] = ACTIONS(876), + [aux_sym_cmd_identifier_token6] = ACTIONS(874), + [sym__newline] = ACTIONS(874), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_PIPE] = ACTIONS(874), + [anon_sym_err_GT_PIPE] = ACTIONS(874), + [anon_sym_out_GT_PIPE] = ACTIONS(874), + [anon_sym_e_GT_PIPE] = ACTIONS(874), + [anon_sym_o_GT_PIPE] = ACTIONS(874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(874), + [anon_sym_RPAREN] = ACTIONS(874), + [anon_sym_GT2] = ACTIONS(874), + [anon_sym_DASH2] = ACTIONS(874), + [anon_sym_STAR2] = ACTIONS(874), + [anon_sym_and2] = ACTIONS(874), + [anon_sym_xor2] = ACTIONS(874), + [anon_sym_or2] = ACTIONS(874), + [anon_sym_not_DASHin2] = ACTIONS(874), + [anon_sym_has2] = ACTIONS(874), + [anon_sym_not_DASHhas2] = ACTIONS(874), + [anon_sym_starts_DASHwith2] = ACTIONS(874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(874), + [anon_sym_ends_DASHwith2] = ACTIONS(874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(874), + [anon_sym_EQ_EQ2] = ACTIONS(874), + [anon_sym_BANG_EQ2] = ACTIONS(874), + [anon_sym_LT2] = ACTIONS(874), + [anon_sym_LT_EQ2] = ACTIONS(874), + [anon_sym_GT_EQ2] = ACTIONS(874), + [anon_sym_EQ_TILDE2] = ACTIONS(874), + [anon_sym_BANG_TILDE2] = ACTIONS(874), + [anon_sym_like2] = ACTIONS(874), + [anon_sym_not_DASHlike2] = ACTIONS(874), + [anon_sym_STAR_STAR2] = ACTIONS(874), + [anon_sym_PLUS_PLUS2] = ACTIONS(874), + [anon_sym_SLASH2] = ACTIONS(874), + [anon_sym_mod2] = ACTIONS(874), + [anon_sym_SLASH_SLASH2] = ACTIONS(874), + [anon_sym_PLUS2] = ACTIONS(874), + [anon_sym_bit_DASHshl2] = ACTIONS(874), + [anon_sym_bit_DASHshr2] = ACTIONS(874), + [anon_sym_bit_DASHand2] = ACTIONS(874), + [anon_sym_bit_DASHxor2] = ACTIONS(874), + [anon_sym_bit_DASHor2] = ACTIONS(874), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(874), + [sym_duration_unit] = ACTIONS(876), + [anon_sym_err_GT] = ACTIONS(874), + [anon_sym_out_GT] = ACTIONS(874), + [anon_sym_e_GT] = ACTIONS(874), + [anon_sym_o_GT] = ACTIONS(874), + [anon_sym_err_PLUSout_GT] = ACTIONS(874), + [anon_sym_out_PLUSerr_GT] = ACTIONS(874), + [anon_sym_o_PLUSe_GT] = ACTIONS(874), + [anon_sym_e_PLUSo_GT] = ACTIONS(874), + [anon_sym_err_GT_GT] = ACTIONS(874), + [anon_sym_out_GT_GT] = ACTIONS(874), + [anon_sym_e_GT_GT] = ACTIONS(874), + [anon_sym_o_GT_GT] = ACTIONS(874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(874), [anon_sym_POUND] = ACTIONS(103), }, [STATE(133)] = { + [sym_expr_parenthesized] = STATE(2670), + [sym__spread_parenthesized] = STATE(3003), + [sym_val_range] = STATE(3030), + [sym__val_range] = STATE(4477), + [sym__value] = STATE(3030), + [sym_val_nothing] = STATE(3022), + [sym_val_bool] = STATE(2861), + [sym__spread_variable] = STATE(3036), + [sym_val_variable] = STATE(2672), + [sym_val_cellpath] = STATE(3022), + [sym_val_number] = STATE(3022), + [sym__val_number_decimal] = STATE(2431), + [sym__val_number] = STATE(3024), + [sym_val_duration] = STATE(3022), + [sym_val_filesize] = STATE(3022), + [sym_val_binary] = STATE(3022), + [sym_val_string] = STATE(3022), + [sym__raw_str] = STATE(2508), + [sym__str_double_quotes] = STATE(2508), + [sym__str_single_quotes] = STATE(2508), + [sym__str_back_ticks] = STATE(2508), + [sym_val_interpolated] = STATE(3022), + [sym__inter_single_quotes] = STATE(2983), + [sym__inter_double_quotes] = STATE(3101), + [sym_val_list] = STATE(3022), + [sym__spread_list] = STATE(3003), + [sym_val_record] = STATE(3022), + [sym_val_table] = STATE(3022), + [sym_val_closure] = STATE(3022), + [sym__cmd_arg] = STATE(3177), + [sym_redirection] = STATE(3053), + [sym__flag] = STATE(3060), + [sym_short_flag] = STATE(3092), + [sym_long_flag] = STATE(3092), + [sym_unquoted] = STATE(2706), + [sym__unquoted_with_expr] = STATE(3107), + [sym__unquoted_anonymous_prefix] = STATE(4477), [sym_comment] = STATE(133), - [ts_builtin_sym_end] = ACTIONS(851), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(849), - [anon_sym_out_GT_GT] = ACTIONS(849), - [anon_sym_e_GT_GT] = ACTIONS(849), - [anon_sym_o_GT_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(849), + [anon_sym_true] = ACTIONS(809), + [anon_sym_false] = ACTIONS(809), + [anon_sym_null] = ACTIONS(811), + [aux_sym_cmd_identifier_token3] = ACTIONS(813), + [aux_sym_cmd_identifier_token4] = ACTIONS(813), + [aux_sym_cmd_identifier_token5] = ACTIONS(813), + [sym__newline] = ACTIONS(980), + [sym__space] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(980), + [anon_sym_err_GT_PIPE] = ACTIONS(980), + [anon_sym_out_GT_PIPE] = ACTIONS(980), + [anon_sym_e_GT_PIPE] = ACTIONS(980), + [anon_sym_o_GT_PIPE] = ACTIONS(980), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(822), + [anon_sym_RPAREN] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(826), + [anon_sym_DASH2] = ACTIONS(828), + [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_DOT_DOT] = ACTIONS(832), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(834), + [anon_sym_DOT_DOT_EQ] = ACTIONS(836), + [anon_sym_DOT_DOT_LT] = ACTIONS(836), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(838), + [aux_sym__val_number_decimal_token1] = ACTIONS(840), + [aux_sym__val_number_decimal_token2] = ACTIONS(840), + [aux_sym__val_number_decimal_token3] = ACTIONS(842), + [aux_sym__val_number_decimal_token4] = ACTIONS(842), + [aux_sym__val_number_token1] = ACTIONS(844), + [aux_sym__val_number_token2] = ACTIONS(844), + [aux_sym__val_number_token3] = ACTIONS(844), + [anon_sym_0b] = ACTIONS(846), + [anon_sym_0o] = ACTIONS(848), + [anon_sym_0x] = ACTIONS(848), + [sym_val_date] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(852), + [anon_sym_SQUOTE] = ACTIONS(854), + [anon_sym_BQUOTE] = ACTIONS(856), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(858), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(860), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(862), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(866), + [anon_sym_out_GT_GT] = ACTIONS(866), + [anon_sym_e_GT_GT] = ACTIONS(866), + [anon_sym_o_GT_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(866), + [aux_sym_unquoted_token1] = ACTIONS(868), [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(870), }, [STATE(134)] = { [sym_comment] = STATE(134), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token5] = ACTIONS(886), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_err_GT] = ACTIONS(739), + [anon_sym_out_GT] = ACTIONS(739), + [anon_sym_e_GT] = ACTIONS(739), + [anon_sym_o_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT] = ACTIONS(739), + [anon_sym_err_GT_GT] = ACTIONS(739), + [anon_sym_out_GT_GT] = ACTIONS(739), + [anon_sym_e_GT_GT] = ACTIONS(739), + [anon_sym_o_GT_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(135)] = { + [sym_comment] = STATE(135), + [anon_sym_in] = ACTIONS(874), + [anon_sym_STAR_STAR] = ACTIONS(876), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(874), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_mod] = ACTIONS(876), + [anon_sym_SLASH_SLASH] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(876), + [anon_sym_bit_DASHshl] = ACTIONS(876), + [anon_sym_bit_DASHshr] = ACTIONS(876), + [anon_sym_EQ_TILDE] = ACTIONS(876), + [anon_sym_BANG_TILDE] = ACTIONS(876), + [anon_sym_like] = ACTIONS(876), + [anon_sym_not_DASHlike] = ACTIONS(876), + [anon_sym_bit_DASHand] = ACTIONS(876), + [anon_sym_bit_DASHxor] = ACTIONS(876), + [anon_sym_bit_DASHor] = ACTIONS(876), + [anon_sym_and] = ACTIONS(876), + [anon_sym_xor] = ACTIONS(876), + [anon_sym_or] = ACTIONS(876), + [anon_sym_in2] = ACTIONS(876), + [anon_sym_not_DASHin] = ACTIONS(876), + [anon_sym_has] = ACTIONS(876), + [anon_sym_not_DASHhas] = ACTIONS(876), + [anon_sym_starts_DASHwith] = ACTIONS(876), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(876), + [anon_sym_ends_DASHwith] = ACTIONS(876), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(876), + [anon_sym_EQ_EQ] = ACTIONS(876), + [anon_sym_BANG_EQ] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_EQ] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_GT_EQ] = ACTIONS(876), + [aux_sym_cmd_identifier_token6] = ACTIONS(874), + [sym__newline] = ACTIONS(874), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_PIPE] = ACTIONS(874), + [anon_sym_err_GT_PIPE] = ACTIONS(874), + [anon_sym_out_GT_PIPE] = ACTIONS(874), + [anon_sym_e_GT_PIPE] = ACTIONS(874), + [anon_sym_o_GT_PIPE] = ACTIONS(874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(874), + [anon_sym_GT2] = ACTIONS(874), + [anon_sym_DASH2] = ACTIONS(874), + [anon_sym_STAR2] = ACTIONS(874), + [anon_sym_and2] = ACTIONS(874), + [anon_sym_xor2] = ACTIONS(874), + [anon_sym_or2] = ACTIONS(874), + [anon_sym_not_DASHin2] = ACTIONS(874), + [anon_sym_has2] = ACTIONS(874), + [anon_sym_not_DASHhas2] = ACTIONS(874), + [anon_sym_starts_DASHwith2] = ACTIONS(874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(874), + [anon_sym_ends_DASHwith2] = ACTIONS(874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(874), + [anon_sym_EQ_EQ2] = ACTIONS(874), + [anon_sym_BANG_EQ2] = ACTIONS(874), + [anon_sym_LT2] = ACTIONS(874), + [anon_sym_LT_EQ2] = ACTIONS(874), + [anon_sym_GT_EQ2] = ACTIONS(874), + [anon_sym_EQ_TILDE2] = ACTIONS(874), + [anon_sym_BANG_TILDE2] = ACTIONS(874), + [anon_sym_like2] = ACTIONS(874), + [anon_sym_not_DASHlike2] = ACTIONS(874), + [anon_sym_STAR_STAR2] = ACTIONS(874), + [anon_sym_PLUS_PLUS2] = ACTIONS(874), + [anon_sym_SLASH2] = ACTIONS(874), + [anon_sym_mod2] = ACTIONS(874), + [anon_sym_SLASH_SLASH2] = ACTIONS(874), + [anon_sym_PLUS2] = ACTIONS(874), + [anon_sym_bit_DASHshl2] = ACTIONS(874), + [anon_sym_bit_DASHshr2] = ACTIONS(874), + [anon_sym_bit_DASHand2] = ACTIONS(874), + [anon_sym_bit_DASHxor2] = ACTIONS(874), + [anon_sym_bit_DASHor2] = ACTIONS(874), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(874), + [sym_duration_unit] = ACTIONS(876), + [anon_sym_err_GT] = ACTIONS(874), + [anon_sym_out_GT] = ACTIONS(874), + [anon_sym_e_GT] = ACTIONS(874), + [anon_sym_o_GT] = ACTIONS(874), + [anon_sym_err_PLUSout_GT] = ACTIONS(874), + [anon_sym_out_PLUSerr_GT] = ACTIONS(874), + [anon_sym_o_PLUSe_GT] = ACTIONS(874), + [anon_sym_e_PLUSo_GT] = ACTIONS(874), + [anon_sym_err_GT_GT] = ACTIONS(874), + [anon_sym_out_GT_GT] = ACTIONS(874), + [anon_sym_e_GT_GT] = ACTIONS(874), + [anon_sym_o_GT_GT] = ACTIONS(874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(874), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(136)] = { + [sym_comment] = STATE(136), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -54766,8 +55186,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(135)] = { - [sym_comment] = STATE(135), + [STATE(137)] = { + [sym_comment] = STATE(137), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -54805,6 +55225,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(773), [aux_sym_cmd_identifier_token6] = ACTIONS(771), [sym__newline] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(771), [anon_sym_PIPE] = ACTIONS(771), [anon_sym_err_GT_PIPE] = ACTIONS(771), [anon_sym_out_GT_PIPE] = ACTIONS(771), @@ -54850,7 +55271,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(984), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), [anon_sym_err_GT] = ACTIONS(771), @@ -54871,113 +55291,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(136)] = { - [sym_comment] = STATE(136), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(986), - [sym_duration_unit] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(137)] = { - [sym_comment] = STATE(137), + [STATE(138)] = { + [sym_comment] = STATE(138), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -55015,7 +55330,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(773), [aux_sym_cmd_identifier_token6] = ACTIONS(771), [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), [anon_sym_PIPE] = ACTIONS(771), [anon_sym_err_GT_PIPE] = ACTIONS(771), [anon_sym_out_GT_PIPE] = ACTIONS(771), @@ -55061,6 +55375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [aux_sym__immediate_decimal_token5] = ACTIONS(984), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), [anon_sym_err_GT] = ACTIONS(771), @@ -55081,426 +55396,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(138)] = { - [sym_comment] = STATE(138), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(849), - [anon_sym_out_GT_GT] = ACTIONS(849), - [anon_sym_e_GT_GT] = ACTIONS(849), - [anon_sym_o_GT_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(849), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(139)] = { [sym_comment] = STATE(139), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(962), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(739), - [anon_sym_out_GT_GT] = ACTIONS(739), - [anon_sym_e_GT_GT] = ACTIONS(739), - [anon_sym_o_GT_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), + [anon_sym_in] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(906), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(908), + [anon_sym_SLASH] = ACTIONS(908), + [anon_sym_mod] = ACTIONS(906), + [anon_sym_SLASH_SLASH] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(908), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_bit_DASHshl] = ACTIONS(906), + [anon_sym_bit_DASHshr] = ACTIONS(906), + [anon_sym_EQ_TILDE] = ACTIONS(906), + [anon_sym_BANG_TILDE] = ACTIONS(906), + [anon_sym_like] = ACTIONS(906), + [anon_sym_not_DASHlike] = ACTIONS(906), + [anon_sym_bit_DASHand] = ACTIONS(906), + [anon_sym_bit_DASHxor] = ACTIONS(906), + [anon_sym_bit_DASHor] = ACTIONS(906), + [anon_sym_and] = ACTIONS(906), + [anon_sym_xor] = ACTIONS(906), + [anon_sym_or] = ACTIONS(906), + [anon_sym_in2] = ACTIONS(906), + [anon_sym_not_DASHin] = ACTIONS(906), + [anon_sym_has] = ACTIONS(906), + [anon_sym_not_DASHhas] = ACTIONS(906), + [anon_sym_starts_DASHwith] = ACTIONS(906), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(906), + [anon_sym_ends_DASHwith] = ACTIONS(906), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(906), + [anon_sym_EQ_EQ] = ACTIONS(906), + [anon_sym_BANG_EQ] = ACTIONS(906), + [anon_sym_LT] = ACTIONS(908), + [anon_sym_LT_EQ] = ACTIONS(906), + [anon_sym_GT] = ACTIONS(908), + [anon_sym_GT_EQ] = ACTIONS(906), + [aux_sym_cmd_identifier_token6] = ACTIONS(910), + [sym__newline] = ACTIONS(793), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_err_GT_PIPE] = ACTIONS(793), + [anon_sym_out_GT_PIPE] = ACTIONS(793), + [anon_sym_e_GT_PIPE] = ACTIONS(793), + [anon_sym_o_GT_PIPE] = ACTIONS(793), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(793), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(793), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(793), + [anon_sym_GT2] = ACTIONS(793), + [anon_sym_DASH2] = ACTIONS(793), + [anon_sym_STAR2] = ACTIONS(793), + [anon_sym_and2] = ACTIONS(793), + [anon_sym_xor2] = ACTIONS(793), + [anon_sym_or2] = ACTIONS(793), + [anon_sym_not_DASHin2] = ACTIONS(793), + [anon_sym_has2] = ACTIONS(793), + [anon_sym_not_DASHhas2] = ACTIONS(793), + [anon_sym_starts_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), + [anon_sym_ends_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), + [anon_sym_EQ_EQ2] = ACTIONS(793), + [anon_sym_BANG_EQ2] = ACTIONS(793), + [anon_sym_LT2] = ACTIONS(793), + [anon_sym_LT_EQ2] = ACTIONS(793), + [anon_sym_GT_EQ2] = ACTIONS(793), + [anon_sym_EQ_TILDE2] = ACTIONS(793), + [anon_sym_BANG_TILDE2] = ACTIONS(793), + [anon_sym_like2] = ACTIONS(793), + [anon_sym_not_DASHlike2] = ACTIONS(793), + [anon_sym_STAR_STAR2] = ACTIONS(793), + [anon_sym_PLUS_PLUS2] = ACTIONS(793), + [anon_sym_SLASH2] = ACTIONS(793), + [anon_sym_mod2] = ACTIONS(793), + [anon_sym_SLASH_SLASH2] = ACTIONS(793), + [anon_sym_PLUS2] = ACTIONS(793), + [anon_sym_bit_DASHshl2] = ACTIONS(793), + [anon_sym_bit_DASHshr2] = ACTIONS(793), + [anon_sym_bit_DASHand2] = ACTIONS(793), + [anon_sym_bit_DASHxor2] = ACTIONS(793), + [anon_sym_bit_DASHor2] = ACTIONS(793), + [anon_sym_DOT_DOT2] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(803), + [anon_sym_DOT_DOT_LT2] = ACTIONS(803), + [sym_filesize_unit] = ACTIONS(986), + [sym_duration_unit] = ACTIONS(988), + [anon_sym_err_GT] = ACTIONS(793), + [anon_sym_out_GT] = ACTIONS(793), + [anon_sym_e_GT] = ACTIONS(793), + [anon_sym_o_GT] = ACTIONS(793), + [anon_sym_err_PLUSout_GT] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT] = ACTIONS(793), + [anon_sym_o_PLUSe_GT] = ACTIONS(793), + [anon_sym_e_PLUSo_GT] = ACTIONS(793), + [anon_sym_err_GT_GT] = ACTIONS(793), + [anon_sym_out_GT_GT] = ACTIONS(793), + [anon_sym_e_GT_GT] = ACTIONS(793), + [anon_sym_o_GT_GT] = ACTIONS(793), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(793), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(793), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(793), [anon_sym_POUND] = ACTIONS(103), }, [STATE(140)] = { [sym_comment] = STATE(140), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(141)] = { - [sym_comment] = STATE(141), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(990), - [sym_duration_unit] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(868), - [anon_sym_out_GT_GT] = ACTIONS(868), - [anon_sym_e_GT_GT] = ACTIONS(868), - [anon_sym_o_GT_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(868), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(142)] = { - [sym_comment] = STATE(142), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -55603,108 +55605,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(141)] = { + [sym_comment] = STATE(141), + [anon_sym_in] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(773), + [anon_sym_SLASH_SLASH] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_bit_DASHshl] = ACTIONS(773), + [anon_sym_bit_DASHshr] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_BANG_TILDE] = ACTIONS(773), + [anon_sym_like] = ACTIONS(773), + [anon_sym_not_DASHlike] = ACTIONS(773), + [anon_sym_bit_DASHand] = ACTIONS(773), + [anon_sym_bit_DASHxor] = ACTIONS(773), + [anon_sym_bit_DASHor] = ACTIONS(773), + [anon_sym_and] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(773), + [anon_sym_or] = ACTIONS(773), + [anon_sym_in2] = ACTIONS(773), + [anon_sym_not_DASHin] = ACTIONS(773), + [anon_sym_has] = ACTIONS(773), + [anon_sym_not_DASHhas] = ACTIONS(773), + [anon_sym_starts_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), + [anon_sym_ends_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [aux_sym_cmd_identifier_token6] = ACTIONS(771), + [sym__newline] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_err_GT_PIPE] = ACTIONS(771), + [anon_sym_out_GT_PIPE] = ACTIONS(771), + [anon_sym_e_GT_PIPE] = ACTIONS(771), + [anon_sym_o_GT_PIPE] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(771), + [anon_sym_xor2] = ACTIONS(771), + [anon_sym_or2] = ACTIONS(771), + [anon_sym_not_DASHin2] = ACTIONS(771), + [anon_sym_has2] = ACTIONS(771), + [anon_sym_not_DASHhas2] = ACTIONS(771), + [anon_sym_starts_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), + [anon_sym_ends_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), + [anon_sym_EQ_EQ2] = ACTIONS(771), + [anon_sym_BANG_EQ2] = ACTIONS(771), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(771), + [anon_sym_GT_EQ2] = ACTIONS(771), + [anon_sym_EQ_TILDE2] = ACTIONS(771), + [anon_sym_BANG_TILDE2] = ACTIONS(771), + [anon_sym_like2] = ACTIONS(771), + [anon_sym_not_DASHlike2] = ACTIONS(771), + [anon_sym_STAR_STAR2] = ACTIONS(771), + [anon_sym_PLUS_PLUS2] = ACTIONS(771), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(771), + [anon_sym_SLASH_SLASH2] = ACTIONS(771), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(771), + [anon_sym_bit_DASHshr2] = ACTIONS(771), + [anon_sym_bit_DASHand2] = ACTIONS(771), + [anon_sym_bit_DASHxor2] = ACTIONS(771), + [anon_sym_bit_DASHor2] = ACTIONS(771), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_err_GT] = ACTIONS(771), + [anon_sym_out_GT] = ACTIONS(771), + [anon_sym_e_GT] = ACTIONS(771), + [anon_sym_o_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT] = ACTIONS(771), + [anon_sym_err_GT_GT] = ACTIONS(771), + [anon_sym_out_GT_GT] = ACTIONS(771), + [anon_sym_e_GT_GT] = ACTIONS(771), + [anon_sym_o_GT_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(142)] = { + [sym_comment] = STATE(142), + [anon_sym_in] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(906), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(908), + [anon_sym_SLASH] = ACTIONS(908), + [anon_sym_mod] = ACTIONS(906), + [anon_sym_SLASH_SLASH] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(908), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_bit_DASHshl] = ACTIONS(906), + [anon_sym_bit_DASHshr] = ACTIONS(906), + [anon_sym_EQ_TILDE] = ACTIONS(906), + [anon_sym_BANG_TILDE] = ACTIONS(906), + [anon_sym_like] = ACTIONS(906), + [anon_sym_not_DASHlike] = ACTIONS(906), + [anon_sym_bit_DASHand] = ACTIONS(906), + [anon_sym_bit_DASHxor] = ACTIONS(906), + [anon_sym_bit_DASHor] = ACTIONS(906), + [anon_sym_and] = ACTIONS(906), + [anon_sym_xor] = ACTIONS(906), + [anon_sym_or] = ACTIONS(906), + [anon_sym_in2] = ACTIONS(906), + [anon_sym_not_DASHin] = ACTIONS(906), + [anon_sym_has] = ACTIONS(906), + [anon_sym_not_DASHhas] = ACTIONS(906), + [anon_sym_starts_DASHwith] = ACTIONS(906), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(906), + [anon_sym_ends_DASHwith] = ACTIONS(906), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(906), + [anon_sym_EQ_EQ] = ACTIONS(906), + [anon_sym_BANG_EQ] = ACTIONS(906), + [anon_sym_LT] = ACTIONS(908), + [anon_sym_LT_EQ] = ACTIONS(906), + [anon_sym_GT] = ACTIONS(908), + [anon_sym_GT_EQ] = ACTIONS(906), + [aux_sym_cmd_identifier_token6] = ACTIONS(910), + [sym__newline] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_err_GT_PIPE] = ACTIONS(793), + [anon_sym_out_GT_PIPE] = ACTIONS(793), + [anon_sym_e_GT_PIPE] = ACTIONS(793), + [anon_sym_o_GT_PIPE] = ACTIONS(793), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(793), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(793), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(793), + [anon_sym_GT2] = ACTIONS(793), + [anon_sym_DASH2] = ACTIONS(793), + [anon_sym_STAR2] = ACTIONS(793), + [anon_sym_and2] = ACTIONS(793), + [anon_sym_xor2] = ACTIONS(793), + [anon_sym_or2] = ACTIONS(793), + [anon_sym_not_DASHin2] = ACTIONS(793), + [anon_sym_has2] = ACTIONS(793), + [anon_sym_not_DASHhas2] = ACTIONS(793), + [anon_sym_starts_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), + [anon_sym_ends_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), + [anon_sym_EQ_EQ2] = ACTIONS(793), + [anon_sym_BANG_EQ2] = ACTIONS(793), + [anon_sym_LT2] = ACTIONS(793), + [anon_sym_LT_EQ2] = ACTIONS(793), + [anon_sym_GT_EQ2] = ACTIONS(793), + [anon_sym_EQ_TILDE2] = ACTIONS(793), + [anon_sym_BANG_TILDE2] = ACTIONS(793), + [anon_sym_like2] = ACTIONS(793), + [anon_sym_not_DASHlike2] = ACTIONS(793), + [anon_sym_STAR_STAR2] = ACTIONS(793), + [anon_sym_PLUS_PLUS2] = ACTIONS(793), + [anon_sym_SLASH2] = ACTIONS(793), + [anon_sym_mod2] = ACTIONS(793), + [anon_sym_SLASH_SLASH2] = ACTIONS(793), + [anon_sym_PLUS2] = ACTIONS(793), + [anon_sym_bit_DASHshl2] = ACTIONS(793), + [anon_sym_bit_DASHshr2] = ACTIONS(793), + [anon_sym_bit_DASHand2] = ACTIONS(793), + [anon_sym_bit_DASHxor2] = ACTIONS(793), + [anon_sym_bit_DASHor2] = ACTIONS(793), + [anon_sym_DOT_DOT2] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(803), + [anon_sym_DOT_DOT_LT2] = ACTIONS(803), + [sym_filesize_unit] = ACTIONS(990), + [sym_duration_unit] = ACTIONS(992), + [anon_sym_err_GT] = ACTIONS(793), + [anon_sym_out_GT] = ACTIONS(793), + [anon_sym_e_GT] = ACTIONS(793), + [anon_sym_o_GT] = ACTIONS(793), + [anon_sym_err_PLUSout_GT] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT] = ACTIONS(793), + [anon_sym_o_PLUSe_GT] = ACTIONS(793), + [anon_sym_e_PLUSo_GT] = ACTIONS(793), + [anon_sym_err_GT_GT] = ACTIONS(793), + [anon_sym_out_GT_GT] = ACTIONS(793), + [anon_sym_e_GT_GT] = ACTIONS(793), + [anon_sym_o_GT_GT] = ACTIONS(793), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(793), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(793), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(143)] = { [sym_comment] = STATE(143), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(849), - [anon_sym_out_GT_GT] = ACTIONS(849), - [anon_sym_e_GT_GT] = ACTIONS(849), - [anon_sym_o_GT_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(849), + [anon_sym_in] = ACTIONS(874), + [anon_sym_STAR_STAR] = ACTIONS(876), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(874), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_mod] = ACTIONS(876), + [anon_sym_SLASH_SLASH] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(876), + [anon_sym_bit_DASHshl] = ACTIONS(876), + [anon_sym_bit_DASHshr] = ACTIONS(876), + [anon_sym_EQ_TILDE] = ACTIONS(876), + [anon_sym_BANG_TILDE] = ACTIONS(876), + [anon_sym_like] = ACTIONS(876), + [anon_sym_not_DASHlike] = ACTIONS(876), + [anon_sym_bit_DASHand] = ACTIONS(876), + [anon_sym_bit_DASHxor] = ACTIONS(876), + [anon_sym_bit_DASHor] = ACTIONS(876), + [anon_sym_and] = ACTIONS(876), + [anon_sym_xor] = ACTIONS(876), + [anon_sym_or] = ACTIONS(876), + [anon_sym_in2] = ACTIONS(876), + [anon_sym_not_DASHin] = ACTIONS(876), + [anon_sym_has] = ACTIONS(876), + [anon_sym_not_DASHhas] = ACTIONS(876), + [anon_sym_starts_DASHwith] = ACTIONS(876), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(876), + [anon_sym_ends_DASHwith] = ACTIONS(876), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(876), + [anon_sym_EQ_EQ] = ACTIONS(876), + [anon_sym_BANG_EQ] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_EQ] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_GT_EQ] = ACTIONS(876), + [aux_sym_cmd_identifier_token6] = ACTIONS(874), + [sym__newline] = ACTIONS(874), + [anon_sym_PIPE] = ACTIONS(874), + [anon_sym_err_GT_PIPE] = ACTIONS(874), + [anon_sym_out_GT_PIPE] = ACTIONS(874), + [anon_sym_e_GT_PIPE] = ACTIONS(874), + [anon_sym_o_GT_PIPE] = ACTIONS(874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(874), + [anon_sym_GT2] = ACTIONS(874), + [anon_sym_DASH2] = ACTIONS(874), + [anon_sym_STAR2] = ACTIONS(874), + [anon_sym_and2] = ACTIONS(874), + [anon_sym_xor2] = ACTIONS(874), + [anon_sym_or2] = ACTIONS(874), + [anon_sym_not_DASHin2] = ACTIONS(874), + [anon_sym_has2] = ACTIONS(874), + [anon_sym_not_DASHhas2] = ACTIONS(874), + [anon_sym_starts_DASHwith2] = ACTIONS(874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(874), + [anon_sym_ends_DASHwith2] = ACTIONS(874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(874), + [anon_sym_EQ_EQ2] = ACTIONS(874), + [anon_sym_BANG_EQ2] = ACTIONS(874), + [anon_sym_LT2] = ACTIONS(874), + [anon_sym_LT_EQ2] = ACTIONS(874), + [anon_sym_GT_EQ2] = ACTIONS(874), + [anon_sym_EQ_TILDE2] = ACTIONS(874), + [anon_sym_BANG_TILDE2] = ACTIONS(874), + [anon_sym_like2] = ACTIONS(874), + [anon_sym_not_DASHlike2] = ACTIONS(874), + [anon_sym_STAR_STAR2] = ACTIONS(874), + [anon_sym_PLUS_PLUS2] = ACTIONS(874), + [anon_sym_SLASH2] = ACTIONS(874), + [anon_sym_mod2] = ACTIONS(874), + [anon_sym_SLASH_SLASH2] = ACTIONS(874), + [anon_sym_PLUS2] = ACTIONS(874), + [anon_sym_bit_DASHshl2] = ACTIONS(874), + [anon_sym_bit_DASHshr2] = ACTIONS(874), + [anon_sym_bit_DASHand2] = ACTIONS(874), + [anon_sym_bit_DASHxor2] = ACTIONS(874), + [anon_sym_bit_DASHor2] = ACTIONS(874), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(874), + [sym_duration_unit] = ACTIONS(876), + [anon_sym_err_GT] = ACTIONS(874), + [anon_sym_out_GT] = ACTIONS(874), + [anon_sym_e_GT] = ACTIONS(874), + [anon_sym_o_GT] = ACTIONS(874), + [anon_sym_err_PLUSout_GT] = ACTIONS(874), + [anon_sym_out_PLUSerr_GT] = ACTIONS(874), + [anon_sym_o_PLUSe_GT] = ACTIONS(874), + [anon_sym_e_PLUSo_GT] = ACTIONS(874), + [anon_sym_err_GT_GT] = ACTIONS(874), + [anon_sym_out_GT_GT] = ACTIONS(874), + [anon_sym_e_GT_GT] = ACTIONS(874), + [anon_sym_o_GT_GT] = ACTIONS(874), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(874), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(874), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(874), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(874), [anon_sym_POUND] = ACTIONS(103), }, [STATE(144)] = { @@ -55810,42 +56020,446 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(145)] = { [sym_comment] = STATE(145), + [anon_sym_in] = ACTIONS(1004), + [anon_sym_STAR_STAR] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1008), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_mod] = ACTIONS(1006), + [anon_sym_SLASH_SLASH] = ACTIONS(1006), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_bit_DASHshl] = ACTIONS(1006), + [anon_sym_bit_DASHshr] = ACTIONS(1006), + [anon_sym_EQ_TILDE] = ACTIONS(1006), + [anon_sym_BANG_TILDE] = ACTIONS(1006), + [anon_sym_like] = ACTIONS(1006), + [anon_sym_not_DASHlike] = ACTIONS(1006), + [anon_sym_bit_DASHand] = ACTIONS(1006), + [anon_sym_bit_DASHxor] = ACTIONS(1006), + [anon_sym_bit_DASHor] = ACTIONS(1006), + [anon_sym_and] = ACTIONS(1006), + [anon_sym_xor] = ACTIONS(1006), + [anon_sym_or] = ACTIONS(1006), + [anon_sym_in2] = ACTIONS(1006), + [anon_sym_not_DASHin] = ACTIONS(1006), + [anon_sym_has] = ACTIONS(1006), + [anon_sym_not_DASHhas] = ACTIONS(1006), + [anon_sym_starts_DASHwith] = ACTIONS(1006), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1006), + [anon_sym_ends_DASHwith] = ACTIONS(1006), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1006), + [anon_sym_EQ_EQ] = ACTIONS(1006), + [anon_sym_BANG_EQ] = ACTIONS(1006), + [anon_sym_LT] = ACTIONS(1008), + [anon_sym_LT_EQ] = ACTIONS(1006), + [anon_sym_GT] = ACTIONS(1008), + [anon_sym_GT_EQ] = ACTIONS(1006), + [aux_sym_cmd_identifier_token6] = ACTIONS(1010), + [sym__newline] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1004), + [anon_sym_err_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_GT_PIPE] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), + [anon_sym_GT2] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym_STAR2] = ACTIONS(1004), + [anon_sym_and2] = ACTIONS(1004), + [anon_sym_xor2] = ACTIONS(1004), + [anon_sym_or2] = ACTIONS(1004), + [anon_sym_not_DASHin2] = ACTIONS(1004), + [anon_sym_has2] = ACTIONS(1004), + [anon_sym_not_DASHhas2] = ACTIONS(1004), + [anon_sym_starts_DASHwith2] = ACTIONS(1004), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1004), + [anon_sym_ends_DASHwith2] = ACTIONS(1004), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1004), + [anon_sym_EQ_EQ2] = ACTIONS(1004), + [anon_sym_BANG_EQ2] = ACTIONS(1004), + [anon_sym_LT2] = ACTIONS(1004), + [anon_sym_LT_EQ2] = ACTIONS(1004), + [anon_sym_GT_EQ2] = ACTIONS(1004), + [anon_sym_EQ_TILDE2] = ACTIONS(1004), + [anon_sym_BANG_TILDE2] = ACTIONS(1004), + [anon_sym_like2] = ACTIONS(1004), + [anon_sym_not_DASHlike2] = ACTIONS(1004), + [anon_sym_STAR_STAR2] = ACTIONS(1004), + [anon_sym_PLUS_PLUS2] = ACTIONS(1004), + [anon_sym_SLASH2] = ACTIONS(1004), + [anon_sym_mod2] = ACTIONS(1004), + [anon_sym_SLASH_SLASH2] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(1004), + [anon_sym_bit_DASHshl2] = ACTIONS(1004), + [anon_sym_bit_DASHshr2] = ACTIONS(1004), + [anon_sym_bit_DASHand2] = ACTIONS(1004), + [anon_sym_bit_DASHxor2] = ACTIONS(1004), + [anon_sym_bit_DASHor2] = ACTIONS(1004), + [anon_sym_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(1004), + [anon_sym_out_GT_GT] = ACTIONS(1004), + [anon_sym_e_GT_GT] = ACTIONS(1004), + [anon_sym_o_GT_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(146)] = { + [sym_comment] = STATE(146), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_in] = ACTIONS(1004), + [anon_sym_STAR_STAR] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_SLASH] = ACTIONS(1000), + [anon_sym_mod] = ACTIONS(998), + [anon_sym_SLASH_SLASH] = ACTIONS(998), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_bit_DASHshl] = ACTIONS(998), + [anon_sym_bit_DASHshr] = ACTIONS(998), + [anon_sym_EQ_TILDE] = ACTIONS(998), + [anon_sym_BANG_TILDE] = ACTIONS(998), + [anon_sym_like] = ACTIONS(998), + [anon_sym_not_DASHlike] = ACTIONS(998), + [anon_sym_bit_DASHand] = ACTIONS(998), + [anon_sym_bit_DASHxor] = ACTIONS(998), + [anon_sym_bit_DASHor] = ACTIONS(998), + [anon_sym_and] = ACTIONS(998), + [anon_sym_xor] = ACTIONS(998), + [anon_sym_or] = ACTIONS(998), + [anon_sym_in2] = ACTIONS(998), + [anon_sym_not_DASHin] = ACTIONS(998), + [anon_sym_has] = ACTIONS(998), + [anon_sym_not_DASHhas] = ACTIONS(998), + [anon_sym_starts_DASHwith] = ACTIONS(998), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(998), + [anon_sym_ends_DASHwith] = ACTIONS(998), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(998), + [anon_sym_EQ_EQ] = ACTIONS(998), + [anon_sym_BANG_EQ] = ACTIONS(998), + [anon_sym_LT] = ACTIONS(1000), + [anon_sym_LT_EQ] = ACTIONS(998), + [anon_sym_GT] = ACTIONS(1000), + [anon_sym_GT_EQ] = ACTIONS(998), + [aux_sym_cmd_identifier_token6] = ACTIONS(1002), + [sym__newline] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1004), + [anon_sym_err_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_GT_PIPE] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), + [anon_sym_GT2] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_STAR2] = ACTIONS(1004), + [anon_sym_and2] = ACTIONS(1004), + [anon_sym_xor2] = ACTIONS(1004), + [anon_sym_or2] = ACTIONS(1004), + [anon_sym_not_DASHin2] = ACTIONS(1004), + [anon_sym_has2] = ACTIONS(1004), + [anon_sym_not_DASHhas2] = ACTIONS(1004), + [anon_sym_starts_DASHwith2] = ACTIONS(1004), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1004), + [anon_sym_ends_DASHwith2] = ACTIONS(1004), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1004), + [anon_sym_EQ_EQ2] = ACTIONS(1004), + [anon_sym_BANG_EQ2] = ACTIONS(1004), + [anon_sym_LT2] = ACTIONS(1004), + [anon_sym_LT_EQ2] = ACTIONS(1004), + [anon_sym_GT_EQ2] = ACTIONS(1004), + [anon_sym_EQ_TILDE2] = ACTIONS(1004), + [anon_sym_BANG_TILDE2] = ACTIONS(1004), + [anon_sym_like2] = ACTIONS(1004), + [anon_sym_not_DASHlike2] = ACTIONS(1004), + [anon_sym_STAR_STAR2] = ACTIONS(1004), + [anon_sym_PLUS_PLUS2] = ACTIONS(1004), + [anon_sym_SLASH2] = ACTIONS(1004), + [anon_sym_mod2] = ACTIONS(1004), + [anon_sym_SLASH_SLASH2] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(1004), + [anon_sym_bit_DASHshl2] = ACTIONS(1004), + [anon_sym_bit_DASHshr2] = ACTIONS(1004), + [anon_sym_bit_DASHand2] = ACTIONS(1004), + [anon_sym_bit_DASHxor2] = ACTIONS(1004), + [anon_sym_bit_DASHor2] = ACTIONS(1004), + [anon_sym_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(1004), + [anon_sym_out_GT_GT] = ACTIONS(1004), + [anon_sym_e_GT_GT] = ACTIONS(1004), + [anon_sym_o_GT_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(147)] = { + [sym_comment] = STATE(147), + [anon_sym_in] = ACTIONS(1004), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_like] = ACTIONS(1014), + [anon_sym_not_DASHlike] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_has] = ACTIONS(1014), + [anon_sym_not_DASHhas] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1014), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), + [sym__newline] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1004), + [anon_sym_err_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_GT_PIPE] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), + [anon_sym_RPAREN] = ACTIONS(1004), + [anon_sym_GT2] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_STAR2] = ACTIONS(1004), + [anon_sym_and2] = ACTIONS(1004), + [anon_sym_xor2] = ACTIONS(1004), + [anon_sym_or2] = ACTIONS(1004), + [anon_sym_not_DASHin2] = ACTIONS(1004), + [anon_sym_has2] = ACTIONS(1004), + [anon_sym_not_DASHhas2] = ACTIONS(1004), + [anon_sym_starts_DASHwith2] = ACTIONS(1004), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1004), + [anon_sym_ends_DASHwith2] = ACTIONS(1004), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1004), + [anon_sym_EQ_EQ2] = ACTIONS(1004), + [anon_sym_BANG_EQ2] = ACTIONS(1004), + [anon_sym_LT2] = ACTIONS(1004), + [anon_sym_LT_EQ2] = ACTIONS(1004), + [anon_sym_GT_EQ2] = ACTIONS(1004), + [anon_sym_EQ_TILDE2] = ACTIONS(1004), + [anon_sym_BANG_TILDE2] = ACTIONS(1004), + [anon_sym_like2] = ACTIONS(1004), + [anon_sym_not_DASHlike2] = ACTIONS(1004), + [anon_sym_STAR_STAR2] = ACTIONS(1004), + [anon_sym_PLUS_PLUS2] = ACTIONS(1004), + [anon_sym_SLASH2] = ACTIONS(1004), + [anon_sym_mod2] = ACTIONS(1004), + [anon_sym_SLASH_SLASH2] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(1004), + [anon_sym_bit_DASHshl2] = ACTIONS(1004), + [anon_sym_bit_DASHshr2] = ACTIONS(1004), + [anon_sym_bit_DASHand2] = ACTIONS(1004), + [anon_sym_bit_DASHxor2] = ACTIONS(1004), + [anon_sym_bit_DASHor2] = ACTIONS(1004), + [anon_sym_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(1004), + [anon_sym_out_GT_GT] = ACTIONS(1004), + [anon_sym_e_GT_GT] = ACTIONS(1004), + [anon_sym_o_GT_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(148)] = { + [sym_comment] = STATE(148), + [anon_sym_in] = ACTIONS(1004), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_like] = ACTIONS(1014), + [anon_sym_not_DASHlike] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_has] = ACTIONS(1014), + [anon_sym_not_DASHhas] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1014), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), + [sym__newline] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1004), + [anon_sym_err_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_GT_PIPE] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), + [anon_sym_GT2] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym_STAR2] = ACTIONS(1004), + [anon_sym_and2] = ACTIONS(1004), + [anon_sym_xor2] = ACTIONS(1004), + [anon_sym_or2] = ACTIONS(1004), + [anon_sym_not_DASHin2] = ACTIONS(1004), + [anon_sym_has2] = ACTIONS(1004), + [anon_sym_not_DASHhas2] = ACTIONS(1004), + [anon_sym_starts_DASHwith2] = ACTIONS(1004), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1004), + [anon_sym_ends_DASHwith2] = ACTIONS(1004), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1004), + [anon_sym_EQ_EQ2] = ACTIONS(1004), + [anon_sym_BANG_EQ2] = ACTIONS(1004), + [anon_sym_LT2] = ACTIONS(1004), + [anon_sym_LT_EQ2] = ACTIONS(1004), + [anon_sym_GT_EQ2] = ACTIONS(1004), + [anon_sym_EQ_TILDE2] = ACTIONS(1004), + [anon_sym_BANG_TILDE2] = ACTIONS(1004), + [anon_sym_like2] = ACTIONS(1004), + [anon_sym_not_DASHlike2] = ACTIONS(1004), + [anon_sym_STAR_STAR2] = ACTIONS(1004), + [anon_sym_PLUS_PLUS2] = ACTIONS(1004), + [anon_sym_SLASH2] = ACTIONS(1004), + [anon_sym_mod2] = ACTIONS(1004), + [anon_sym_SLASH_SLASH2] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(1004), + [anon_sym_bit_DASHshl2] = ACTIONS(1004), + [anon_sym_bit_DASHshr2] = ACTIONS(1004), + [anon_sym_bit_DASHand2] = ACTIONS(1004), + [anon_sym_bit_DASHxor2] = ACTIONS(1004), + [anon_sym_bit_DASHor2] = ACTIONS(1004), + [anon_sym_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(1004), + [anon_sym_out_GT_GT] = ACTIONS(1004), + [anon_sym_e_GT_GT] = ACTIONS(1004), + [anon_sym_o_GT_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(149)] = { + [sym_comment] = STATE(149), [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1004), - [anon_sym_PLUS_PLUS] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_mod] = ACTIONS(1004), - [anon_sym_SLASH_SLASH] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_bit_DASHshl] = ACTIONS(1004), - [anon_sym_bit_DASHshr] = ACTIONS(1004), - [anon_sym_EQ_TILDE] = ACTIONS(1004), - [anon_sym_BANG_TILDE] = ACTIONS(1004), - [anon_sym_like] = ACTIONS(1004), - [anon_sym_not_DASHlike] = ACTIONS(1004), - [anon_sym_bit_DASHand] = ACTIONS(1004), - [anon_sym_bit_DASHxor] = ACTIONS(1004), - [anon_sym_bit_DASHor] = ACTIONS(1004), - [anon_sym_and] = ACTIONS(1004), - [anon_sym_xor] = ACTIONS(1004), - [anon_sym_or] = ACTIONS(1004), - [anon_sym_in2] = ACTIONS(1004), - [anon_sym_not_DASHin] = ACTIONS(1004), - [anon_sym_has] = ACTIONS(1004), - [anon_sym_not_DASHhas] = ACTIONS(1004), - [anon_sym_starts_DASHwith] = ACTIONS(1004), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1004), - [anon_sym_ends_DASHwith] = ACTIONS(1004), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1004), - [anon_sym_EQ_EQ] = ACTIONS(1004), - [anon_sym_BANG_EQ] = ACTIONS(1004), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1004), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1004), - [aux_sym_cmd_identifier_token6] = ACTIONS(1008), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_like] = ACTIONS(1014), + [anon_sym_not_DASHlike] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_has] = ACTIONS(1014), + [anon_sym_not_DASHhas] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1014), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), [sym__newline] = ACTIONS(996), [anon_sym_SEMI] = ACTIONS(996), [anon_sym_PIPE] = ACTIONS(996), @@ -55857,9 +56471,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), + [anon_sym_RPAREN] = ACTIONS(996), [anon_sym_GT2] = ACTIONS(996), [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), [anon_sym_STAR2] = ACTIONS(996), [anon_sym_and2] = ACTIONS(996), [anon_sym_xor2] = ACTIONS(996), @@ -55909,44 +56523,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(146)] = { - [sym_comment] = STATE(146), + [STATE(150)] = { + [sym_comment] = STATE(150), [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), + [anon_sym_STAR_STAR] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1008), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_mod] = ACTIONS(1006), + [anon_sym_SLASH_SLASH] = ACTIONS(1006), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_bit_DASHshl] = ACTIONS(1006), + [anon_sym_bit_DASHshr] = ACTIONS(1006), + [anon_sym_EQ_TILDE] = ACTIONS(1006), + [anon_sym_BANG_TILDE] = ACTIONS(1006), + [anon_sym_like] = ACTIONS(1006), + [anon_sym_not_DASHlike] = ACTIONS(1006), + [anon_sym_bit_DASHand] = ACTIONS(1006), + [anon_sym_bit_DASHxor] = ACTIONS(1006), + [anon_sym_bit_DASHor] = ACTIONS(1006), + [anon_sym_and] = ACTIONS(1006), + [anon_sym_xor] = ACTIONS(1006), + [anon_sym_or] = ACTIONS(1006), + [anon_sym_in2] = ACTIONS(1006), + [anon_sym_not_DASHin] = ACTIONS(1006), + [anon_sym_has] = ACTIONS(1006), + [anon_sym_not_DASHhas] = ACTIONS(1006), + [anon_sym_starts_DASHwith] = ACTIONS(1006), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1006), + [anon_sym_ends_DASHwith] = ACTIONS(1006), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1006), + [anon_sym_EQ_EQ] = ACTIONS(1006), + [anon_sym_BANG_EQ] = ACTIONS(1006), + [anon_sym_LT] = ACTIONS(1008), + [anon_sym_LT_EQ] = ACTIONS(1006), + [anon_sym_GT] = ACTIONS(1008), + [anon_sym_GT_EQ] = ACTIONS(1006), + [aux_sym_cmd_identifier_token6] = ACTIONS(1010), [sym__newline] = ACTIONS(996), [anon_sym_SEMI] = ACTIONS(996), [anon_sym_PIPE] = ACTIONS(996), @@ -55958,9 +56572,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_RPAREN] = ACTIONS(996), [anon_sym_GT2] = ACTIONS(996), [anon_sym_DASH2] = ACTIONS(996), + [anon_sym_RBRACE] = ACTIONS(996), [anon_sym_STAR2] = ACTIONS(996), [anon_sym_and2] = ACTIONS(996), [anon_sym_xor2] = ACTIONS(996), @@ -56010,145 +56624,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(147)] = { - [sym_comment] = STATE(147), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_RPAREN] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(148)] = { - [sym_comment] = STATE(148), + [STATE(151)] = { + [sym_comment] = STATE(151), [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_like] = ACTIONS(1014), + [anon_sym_not_DASHlike] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_has] = ACTIONS(1014), + [anon_sym_not_DASHhas] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1014), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), [sym__newline] = ACTIONS(996), [anon_sym_SEMI] = ACTIONS(996), [anon_sym_PIPE] = ACTIONS(996), @@ -56212,553 +56725,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(149)] = { - [sym_comment] = STATE(149), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(150)] = { - [sym_comment] = STATE(150), - [ts_builtin_sym_end] = ACTIONS(1018), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(1000), - [anon_sym_SLASH] = ACTIONS(1000), - [anon_sym_mod] = ACTIONS(998), - [anon_sym_SLASH_SLASH] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_bit_DASHshl] = ACTIONS(998), - [anon_sym_bit_DASHshr] = ACTIONS(998), - [anon_sym_EQ_TILDE] = ACTIONS(998), - [anon_sym_BANG_TILDE] = ACTIONS(998), - [anon_sym_like] = ACTIONS(998), - [anon_sym_not_DASHlike] = ACTIONS(998), - [anon_sym_bit_DASHand] = ACTIONS(998), - [anon_sym_bit_DASHxor] = ACTIONS(998), - [anon_sym_bit_DASHor] = ACTIONS(998), - [anon_sym_and] = ACTIONS(998), - [anon_sym_xor] = ACTIONS(998), - [anon_sym_or] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_not_DASHin] = ACTIONS(998), - [anon_sym_has] = ACTIONS(998), - [anon_sym_not_DASHhas] = ACTIONS(998), - [anon_sym_starts_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(998), - [anon_sym_ends_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(998), - [anon_sym_EQ_EQ] = ACTIONS(998), - [anon_sym_BANG_EQ] = ACTIONS(998), - [anon_sym_LT] = ACTIONS(1000), - [anon_sym_LT_EQ] = ACTIONS(998), - [anon_sym_GT] = ACTIONS(1000), - [anon_sym_GT_EQ] = ACTIONS(998), - [aux_sym_cmd_identifier_token6] = ACTIONS(1002), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(151)] = { - [sym_comment] = STATE(151), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1004), - [anon_sym_PLUS_PLUS] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_mod] = ACTIONS(1004), - [anon_sym_SLASH_SLASH] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_bit_DASHshl] = ACTIONS(1004), - [anon_sym_bit_DASHshr] = ACTIONS(1004), - [anon_sym_EQ_TILDE] = ACTIONS(1004), - [anon_sym_BANG_TILDE] = ACTIONS(1004), - [anon_sym_like] = ACTIONS(1004), - [anon_sym_not_DASHlike] = ACTIONS(1004), - [anon_sym_bit_DASHand] = ACTIONS(1004), - [anon_sym_bit_DASHxor] = ACTIONS(1004), - [anon_sym_bit_DASHor] = ACTIONS(1004), - [anon_sym_and] = ACTIONS(1004), - [anon_sym_xor] = ACTIONS(1004), - [anon_sym_or] = ACTIONS(1004), - [anon_sym_in2] = ACTIONS(1004), - [anon_sym_not_DASHin] = ACTIONS(1004), - [anon_sym_has] = ACTIONS(1004), - [anon_sym_not_DASHhas] = ACTIONS(1004), - [anon_sym_starts_DASHwith] = ACTIONS(1004), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1004), - [anon_sym_ends_DASHwith] = ACTIONS(1004), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1004), - [anon_sym_EQ_EQ] = ACTIONS(1004), - [anon_sym_BANG_EQ] = ACTIONS(1004), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1004), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1004), - [aux_sym_cmd_identifier_token6] = ACTIONS(1008), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(152)] = { - [sym_pipeline] = STATE(4437), - [sym_cmd_identifier] = STATE(2895), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3252), + [sym_pipeline_parenthesized] = STATE(4506), + [sym_cmd_identifier] = STATE(2950), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), [sym_comment] = STATE(152), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_const] = ACTIONS(39), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(39), - [anon_sym_use] = ACTIONS(39), - [anon_sym_export_DASHenv] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_for] = ACTIONS(39), - [anon_sym_loop] = ACTIONS(39), - [anon_sym_while] = ACTIONS(39), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(43), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(153)] = { - [sym_pipeline] = STATE(4562), - [sym_cmd_identifier] = STATE(2895), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3252), - [sym_comment] = STATE(153), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_const] = ACTIONS(39), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(39), - [anon_sym_use] = ACTIONS(39), - [anon_sym_export_DASHenv] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_for] = ACTIONS(39), - [anon_sym_loop] = ACTIONS(39), - [anon_sym_while] = ACTIONS(39), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(43), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(154)] = { - [sym_pipeline] = STATE(4170), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), - [sym_comment] = STATE(154), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(292), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -56773,9 +56783,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -56787,18 +56797,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -56811,54 +56821,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(155)] = { - [sym_pipeline] = STATE(4203), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [STATE(153)] = { + [sym_pipeline] = STATE(4211), + [sym_cmd_identifier] = STATE(2712), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), - [sym_comment] = STATE(155), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(292), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), + [sym_comment] = STATE(153), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -56887,7 +56897,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -56915,50 +56925,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(156)] = { - [sym_pipeline] = STATE(4204), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [STATE(154)] = { + [sym_pipeline] = STATE(4169), + [sym_cmd_identifier] = STATE(2712), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), - [sym_comment] = STATE(156), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(292), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), + [sym_comment] = STATE(154), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -56987,7 +56997,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -57015,50 +57025,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(157)] = { - [sym_pipeline] = STATE(4054), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), - [sym_comment] = STATE(157), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(292), + [STATE(155)] = { + [sym_pipeline_parenthesized] = STATE(4506), + [sym_cmd_identifier] = STATE(2950), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), + [sym_comment] = STATE(155), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -57073,9 +57083,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(1022), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -57087,18 +57097,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57111,54 +57121,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(158)] = { - [sym_pipeline] = STATE(4059), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), - [sym_comment] = STATE(158), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(292), + [STATE(156)] = { + [sym_comment] = STATE(156), + [anon_sym_in] = ACTIONS(996), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_like] = ACTIONS(1014), + [anon_sym_not_DASHlike] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_has] = ACTIONS(1014), + [anon_sym_not_DASHhas] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1014), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), + [sym__newline] = ACTIONS(996), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_PIPE] = ACTIONS(996), + [anon_sym_err_GT_PIPE] = ACTIONS(996), + [anon_sym_out_GT_PIPE] = ACTIONS(996), + [anon_sym_e_GT_PIPE] = ACTIONS(996), + [anon_sym_o_GT_PIPE] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), + [anon_sym_GT2] = ACTIONS(996), + [anon_sym_DASH2] = ACTIONS(996), + [anon_sym_STAR2] = ACTIONS(996), + [anon_sym_and2] = ACTIONS(996), + [anon_sym_xor2] = ACTIONS(996), + [anon_sym_or2] = ACTIONS(996), + [anon_sym_not_DASHin2] = ACTIONS(996), + [anon_sym_has2] = ACTIONS(996), + [anon_sym_not_DASHhas2] = ACTIONS(996), + [anon_sym_starts_DASHwith2] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), + [anon_sym_ends_DASHwith2] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), + [anon_sym_EQ_EQ2] = ACTIONS(996), + [anon_sym_BANG_EQ2] = ACTIONS(996), + [anon_sym_LT2] = ACTIONS(996), + [anon_sym_LT_EQ2] = ACTIONS(996), + [anon_sym_GT_EQ2] = ACTIONS(996), + [anon_sym_EQ_TILDE2] = ACTIONS(996), + [anon_sym_BANG_TILDE2] = ACTIONS(996), + [anon_sym_like2] = ACTIONS(996), + [anon_sym_not_DASHlike2] = ACTIONS(996), + [anon_sym_STAR_STAR2] = ACTIONS(996), + [anon_sym_PLUS_PLUS2] = ACTIONS(996), + [anon_sym_SLASH2] = ACTIONS(996), + [anon_sym_mod2] = ACTIONS(996), + [anon_sym_SLASH_SLASH2] = ACTIONS(996), + [anon_sym_PLUS2] = ACTIONS(996), + [anon_sym_bit_DASHshl2] = ACTIONS(996), + [anon_sym_bit_DASHshr2] = ACTIONS(996), + [anon_sym_bit_DASHand2] = ACTIONS(996), + [anon_sym_bit_DASHxor2] = ACTIONS(996), + [anon_sym_bit_DASHor2] = ACTIONS(996), + [anon_sym_err_GT] = ACTIONS(996), + [anon_sym_out_GT] = ACTIONS(996), + [anon_sym_e_GT] = ACTIONS(996), + [anon_sym_o_GT] = ACTIONS(996), + [anon_sym_err_PLUSout_GT] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT] = ACTIONS(996), + [anon_sym_o_PLUSe_GT] = ACTIONS(996), + [anon_sym_e_PLUSo_GT] = ACTIONS(996), + [anon_sym_err_GT_GT] = ACTIONS(996), + [anon_sym_out_GT_GT] = ACTIONS(996), + [anon_sym_e_GT_GT] = ACTIONS(996), + [anon_sym_o_GT_GT] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(157)] = { + [sym_pipeline_parenthesized] = STATE(4540), + [sym_cmd_identifier] = STATE(2950), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), + [sym_comment] = STATE(157), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -57173,9 +57283,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(1022), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -57187,18 +57297,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57211,54 +57321,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(159)] = { - [sym_pipeline_parenthesized] = STATE(4384), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), + [STATE(158)] = { + [sym_pipeline_parenthesized] = STATE(4547), + [sym_cmd_identifier] = STATE(2950), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(159), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), + [sym_comment] = STATE(158), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -57273,7 +57383,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1022), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), @@ -57287,7 +57397,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -57295,10 +57405,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57315,50 +57425,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(160)] = { - [sym_pipeline] = STATE(4570), - [sym_cmd_identifier] = STATE(2895), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3252), - [sym_comment] = STATE(160), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(281), + [STATE(159)] = { + [sym_pipeline] = STATE(4415), + [sym_cmd_identifier] = STATE(2951), + [sym__ctrl_expression] = STATE(3333), + [sym_ctrl_if] = STATE(3365), + [sym_ctrl_match] = STATE(3365), + [sym_ctrl_try] = STATE(3365), + [sym_pipe_element] = STATE(3098), + [sym_where_command] = STATE(3333), + [sym__expression] = STATE(2260), + [sym_expr_unary] = STATE(1276), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1276), + [sym__expr_binary_expression] = STATE(2222), + [sym_expr_parenthesized] = STATE(919), + [sym_val_range] = STATE(1276), + [sym__value] = STATE(1276), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(1294), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(120), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3333), + [sym_comment] = STATE(159), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), [anon_sym_let] = ACTIONS(39), @@ -57387,7 +57497,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_DOT_DOT] = ACTIONS(69), @@ -57415,50 +57525,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(161)] = { - [sym_pipeline_parenthesized] = STATE(4566), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), + [STATE(160)] = { + [sym_pipeline_parenthesized] = STATE(4510), + [sym_cmd_identifier] = STATE(2950), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(161), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), + [sym_comment] = STATE(160), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -57473,7 +57583,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1022), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), @@ -57487,7 +57597,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -57495,10 +57605,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57515,50 +57625,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(162)] = { - [sym_pipeline_parenthesized] = STATE(4578), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), + [STATE(161)] = { + [sym_pipeline_parenthesized] = STATE(4511), + [sym_cmd_identifier] = STATE(2950), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(162), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), + [sym_comment] = STATE(161), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -57573,7 +57683,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1022), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), @@ -57587,7 +57697,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -57595,10 +57705,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57615,50 +57725,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(162)] = { + [sym_comment] = STATE(162), + [anon_sym_in] = ACTIONS(1004), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_like] = ACTIONS(1014), + [anon_sym_not_DASHlike] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_has] = ACTIONS(1014), + [anon_sym_not_DASHhas] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1014), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), + [sym__newline] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1004), + [anon_sym_err_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_GT_PIPE] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), + [anon_sym_GT2] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_STAR2] = ACTIONS(1004), + [anon_sym_and2] = ACTIONS(1004), + [anon_sym_xor2] = ACTIONS(1004), + [anon_sym_or2] = ACTIONS(1004), + [anon_sym_not_DASHin2] = ACTIONS(1004), + [anon_sym_has2] = ACTIONS(1004), + [anon_sym_not_DASHhas2] = ACTIONS(1004), + [anon_sym_starts_DASHwith2] = ACTIONS(1004), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1004), + [anon_sym_ends_DASHwith2] = ACTIONS(1004), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1004), + [anon_sym_EQ_EQ2] = ACTIONS(1004), + [anon_sym_BANG_EQ2] = ACTIONS(1004), + [anon_sym_LT2] = ACTIONS(1004), + [anon_sym_LT_EQ2] = ACTIONS(1004), + [anon_sym_GT_EQ2] = ACTIONS(1004), + [anon_sym_EQ_TILDE2] = ACTIONS(1004), + [anon_sym_BANG_TILDE2] = ACTIONS(1004), + [anon_sym_like2] = ACTIONS(1004), + [anon_sym_not_DASHlike2] = ACTIONS(1004), + [anon_sym_STAR_STAR2] = ACTIONS(1004), + [anon_sym_PLUS_PLUS2] = ACTIONS(1004), + [anon_sym_SLASH2] = ACTIONS(1004), + [anon_sym_mod2] = ACTIONS(1004), + [anon_sym_SLASH_SLASH2] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(1004), + [anon_sym_bit_DASHshl2] = ACTIONS(1004), + [anon_sym_bit_DASHshr2] = ACTIONS(1004), + [anon_sym_bit_DASHand2] = ACTIONS(1004), + [anon_sym_bit_DASHxor2] = ACTIONS(1004), + [anon_sym_bit_DASHor2] = ACTIONS(1004), + [anon_sym_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(1004), + [anon_sym_out_GT_GT] = ACTIONS(1004), + [anon_sym_e_GT_GT] = ACTIONS(1004), + [anon_sym_o_GT_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(163)] = { - [sym_pipeline_parenthesized] = STATE(4622), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), + [sym_pipeline] = STATE(4169), + [sym_cmd_identifier] = STATE(2712), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), [sym_comment] = STATE(163), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym_pipe_element_repeat2] = STATE(285), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -57673,9 +57883,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(457), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -57687,18 +57897,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57711,54 +57921,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(164)] = { - [sym_pipeline_parenthesized] = STATE(4558), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), + [sym_pipeline] = STATE(4174), + [sym_cmd_identifier] = STATE(2712), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), [sym_comment] = STATE(164), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym_pipe_element_repeat2] = STATE(285), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -57773,9 +57983,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(457), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -57787,18 +57997,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57811,54 +58021,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(165)] = { - [sym_pipeline] = STATE(4499), - [sym_cmd_identifier] = STATE(2895), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3252), + [sym_pipeline] = STATE(4175), + [sym_cmd_identifier] = STATE(2712), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), [sym_comment] = STATE(165), [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_pipe_element_repeat2] = STATE(285), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(457), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(166)] = { + [sym_pipeline] = STATE(4490), + [sym_cmd_identifier] = STATE(2951), + [sym__ctrl_expression] = STATE(3333), + [sym_ctrl_if] = STATE(3365), + [sym_ctrl_match] = STATE(3365), + [sym_ctrl_try] = STATE(3365), + [sym_pipe_element] = STATE(3098), + [sym_where_command] = STATE(3333), + [sym__expression] = STATE(2260), + [sym_expr_unary] = STATE(1276), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1276), + [sym__expr_binary_expression] = STATE(2222), + [sym_expr_parenthesized] = STATE(919), + [sym_val_range] = STATE(1276), + [sym__value] = STATE(1276), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(1294), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(120), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3333), + [sym_comment] = STATE(166), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), [anon_sym_let] = ACTIONS(39), @@ -57887,7 +58197,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_DOT_DOT] = ACTIONS(69), @@ -57915,50 +58225,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(166)] = { - [sym_pipeline] = STATE(4170), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), - [sym_comment] = STATE(166), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(290), + [STATE(167)] = { + [sym_pipeline] = STATE(4211), + [sym_cmd_identifier] = STATE(2712), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), + [sym_comment] = STATE(167), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym_pipe_element_repeat2] = STATE(285), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -57987,7 +58297,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58015,50 +58325,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(167)] = { - [sym_pipeline] = STATE(4203), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), - [sym_comment] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(290), + [STATE(168)] = { + [sym_pipeline] = STATE(4445), + [sym_cmd_identifier] = STATE(2951), + [sym__ctrl_expression] = STATE(3333), + [sym_ctrl_if] = STATE(3365), + [sym_ctrl_match] = STATE(3365), + [sym_ctrl_try] = STATE(3365), + [sym_pipe_element] = STATE(3098), + [sym_where_command] = STATE(3333), + [sym__expression] = STATE(2260), + [sym_expr_unary] = STATE(1276), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1276), + [sym__expr_binary_expression] = STATE(2222), + [sym_expr_parenthesized] = STATE(919), + [sym_val_range] = STATE(1276), + [sym__value] = STATE(1276), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(1294), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(120), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3333), + [sym_comment] = STATE(168), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym_pipe_element_repeat2] = STATE(284), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(39), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_const] = ACTIONS(39), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(39), + [anon_sym_use] = ACTIONS(39), + [anon_sym_export_DASHenv] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(39), + [anon_sym_for] = ACTIONS(39), + [anon_sym_loop] = ACTIONS(39), + [anon_sym_while] = ACTIONS(39), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(43), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(169)] = { + [sym_pipeline_parenthesized] = STATE(4540), + [sym_cmd_identifier] = STATE(2950), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), + [sym_comment] = STATE(169), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -58073,9 +58483,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -58087,11 +58497,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), @@ -58111,54 +58521,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(168)] = { - [sym_pipeline] = STATE(4204), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), - [sym_comment] = STATE(168), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(290), + [STATE(170)] = { + [sym_pipeline_parenthesized] = STATE(4547), + [sym_cmd_identifier] = STATE(2950), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), + [sym_comment] = STATE(170), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -58173,9 +58583,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -58187,11 +58597,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), @@ -58211,54 +58621,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(169)] = { - [sym_pipeline] = STATE(4054), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), - [sym_comment] = STATE(169), + [STATE(171)] = { + [sym_pipeline] = STATE(4169), + [sym_cmd_identifier] = STATE(2712), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), + [sym_comment] = STATE(171), [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(290), + [aux_sym_pipe_element_repeat2] = STATE(282), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -58273,7 +58683,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(1032), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -58287,7 +58697,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58295,10 +58705,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58315,50 +58725,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(170)] = { - [sym_pipeline] = STATE(4059), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), - [sym_comment] = STATE(170), + [STATE(172)] = { + [sym_pipeline] = STATE(4174), + [sym_cmd_identifier] = STATE(2712), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), + [sym_comment] = STATE(172), [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(290), + [aux_sym_pipe_element_repeat2] = STATE(282), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -58373,7 +58783,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(1032), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -58387,7 +58797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58395,10 +58805,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58415,50 +58825,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(171)] = { - [sym_pipeline_parenthesized] = STATE(4566), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(171), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [STATE(173)] = { + [sym_pipeline] = STATE(4175), + [sym_cmd_identifier] = STATE(2712), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), + [sym_comment] = STATE(173), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym_pipe_element_repeat2] = STATE(282), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -58473,9 +58883,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1032), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -58487,18 +58897,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58511,254 +58921,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(172)] = { - [sym_comment] = STATE(172), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(173)] = { - [sym_comment] = STATE(173), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(174)] = { - [sym_pipeline] = STATE(4170), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym_pipeline] = STATE(4206), + [sym_cmd_identifier] = STATE(2712), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), [sym_comment] = STATE(174), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(287), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym_pipe_element_repeat2] = STATE(282), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -58787,7 +58997,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58795,10 +59005,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58816,49 +59026,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(175)] = { - [sym_pipeline] = STATE(4203), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym_pipeline] = STATE(4211), + [sym_cmd_identifier] = STATE(2712), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), [sym_comment] = STATE(175), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(287), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym_pipe_element_repeat2] = STATE(282), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -58887,7 +59097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58895,10 +59105,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58916,149 +59126,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(176)] = { - [sym_pipeline] = STATE(4204), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym_pipeline] = STATE(4539), + [sym_cmd_identifier] = STATE(2951), + [sym__ctrl_expression] = STATE(3333), + [sym_ctrl_if] = STATE(3365), + [sym_ctrl_match] = STATE(3365), + [sym_ctrl_try] = STATE(3365), + [sym_pipe_element] = STATE(3098), + [sym_where_command] = STATE(3333), + [sym__expression] = STATE(2260), + [sym_expr_unary] = STATE(1276), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1276), + [sym__expr_binary_expression] = STATE(2222), + [sym_expr_parenthesized] = STATE(919), + [sym_val_range] = STATE(1276), + [sym__value] = STATE(1276), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(1294), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(120), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3333), [sym_comment] = STATE(176), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(287), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym_pipe_element_repeat2] = STATE(284), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(39), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_const] = ACTIONS(39), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(39), + [anon_sym_use] = ACTIONS(39), + [anon_sym_export_DASHenv] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(39), + [anon_sym_for] = ACTIONS(39), + [anon_sym_loop] = ACTIONS(39), + [anon_sym_while] = ACTIONS(39), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(43), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(177)] = { - [sym_pipeline] = STATE(4054), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym_pipeline_parenthesized] = STATE(4510), + [sym_cmd_identifier] = STATE(2950), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), [sym_comment] = STATE(177), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(287), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -59073,9 +59283,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -59087,18 +59297,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59111,54 +59321,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(178)] = { - [sym_pipeline] = STATE(4059), - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2818), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), + [sym_pipeline] = STATE(4442), + [sym_cmd_identifier] = STATE(2951), + [sym__ctrl_expression] = STATE(3333), + [sym_ctrl_if] = STATE(3365), + [sym_ctrl_match] = STATE(3365), + [sym_ctrl_try] = STATE(3365), + [sym_pipe_element] = STATE(3098), + [sym_where_command] = STATE(3333), + [sym__expression] = STATE(2260), + [sym_expr_unary] = STATE(1276), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1276), + [sym__expr_binary_expression] = STATE(2222), + [sym_expr_parenthesized] = STATE(919), + [sym_val_range] = STATE(1276), + [sym__value] = STATE(1276), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(1294), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(120), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3333), [sym_comment] = STATE(178), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(287), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym_pipe_element_repeat2] = STATE(284), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(39), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_const] = ACTIONS(39), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(39), + [anon_sym_use] = ACTIONS(39), + [anon_sym_export_DASHenv] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(39), + [anon_sym_for] = ACTIONS(39), + [anon_sym_loop] = ACTIONS(39), + [anon_sym_while] = ACTIONS(39), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(43), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(179)] = { + [sym_pipeline_parenthesized] = STATE(4511), + [sym_cmd_identifier] = STATE(2950), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2968), + [sym_where_command_parenthesized] = STATE(3324), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), + [sym_comment] = STATE(179), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -59173,9 +59483,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -59187,18 +59497,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59211,54 +59521,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(179)] = { - [sym_pipeline_parenthesized] = STATE(4578), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(179), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [STATE(180)] = { + [sym_pipeline] = STATE(4174), + [sym_cmd_identifier] = STATE(2712), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(121), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), + [sym_comment] = STATE(180), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -59273,9 +59583,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -59287,18 +59597,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59311,54 +59621,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(180)] = { - [sym_pipeline_parenthesized] = STATE(4384), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(180), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [STATE(181)] = { + [sym_pipeline] = STATE(4175), + [sym_cmd_identifier] = STATE(2712), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(121), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), + [sym_comment] = STATE(181), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -59373,9 +59683,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -59387,18 +59697,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59411,54 +59721,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(181)] = { - [sym_pipeline_parenthesized] = STATE(4622), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(181), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [STATE(182)] = { + [sym_pipeline] = STATE(4206), + [sym_cmd_identifier] = STATE(2712), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(121), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), + [sym_comment] = STATE(182), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -59473,9 +59783,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -59487,18 +59797,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59511,54 +59821,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(182)] = { - [sym_pipeline_parenthesized] = STATE(4558), - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2918), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(182), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [STATE(183)] = { + [sym_pipeline] = STATE(4206), + [sym_cmd_identifier] = STATE(2712), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2886), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), + [sym_comment] = STATE(183), + [aux_sym_pipeline_repeat1] = STATE(191), + [aux_sym_pipe_element_repeat2] = STATE(285), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -59573,9 +59883,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(457), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -59587,11 +59897,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), @@ -59611,54 +59921,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(183)] = { - [sym_pipeline] = STATE(4390), - [sym_cmd_identifier] = STATE(2895), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2953), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3252), - [sym_comment] = STATE(183), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(281), + [STATE(184)] = { + [sym_cmd_identifier] = STATE(2712), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(3323), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(142), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), + [sym_comment] = STATE(184), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(278), + [anon_sym_export] = ACTIONS(1034), + [anon_sym_alias] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1037), + [anon_sym_mut] = ACTIONS(1037), + [anon_sym_const] = ACTIONS(1037), + [aux_sym_cmd_identifier_token1] = ACTIONS(1040), + [anon_sym_def] = ACTIONS(1037), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_export_DASHenv] = ACTIONS(1037), + [anon_sym_extern] = ACTIONS(1037), + [anon_sym_module] = ACTIONS(1037), + [anon_sym_for] = ACTIONS(1037), + [anon_sym_loop] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_if] = ACTIONS(1043), + [anon_sym_else] = ACTIONS(1037), + [anon_sym_try] = ACTIONS(1046), + [anon_sym_catch] = ACTIONS(1037), + [anon_sym_match] = ACTIONS(1049), + [anon_sym_in] = ACTIONS(1034), + [anon_sym_true] = ACTIONS(1052), + [anon_sym_false] = ACTIONS(1052), + [anon_sym_null] = ACTIONS(1055), + [aux_sym_cmd_identifier_token3] = ACTIONS(1058), + [aux_sym_cmd_identifier_token4] = ACTIONS(1058), + [aux_sym_cmd_identifier_token5] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1064), + [anon_sym_DOLLAR] = ACTIONS(1067), + [anon_sym_DASH2] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_where] = ACTIONS(1079), + [aux_sym_expr_unary_token1] = ACTIONS(1082), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1085), + [anon_sym_DOT_DOT_LT] = ACTIONS(1085), + [aux_sym__val_number_decimal_token1] = ACTIONS(1088), + [aux_sym__val_number_decimal_token2] = ACTIONS(1091), + [aux_sym__val_number_decimal_token3] = ACTIONS(1094), + [aux_sym__val_number_decimal_token4] = ACTIONS(1094), + [aux_sym__val_number_token1] = ACTIONS(1097), + [aux_sym__val_number_token2] = ACTIONS(1097), + [aux_sym__val_number_token3] = ACTIONS(1097), + [anon_sym_0b] = ACTIONS(1100), + [anon_sym_0o] = ACTIONS(1103), + [anon_sym_0x] = ACTIONS(1103), + [sym_val_date] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1109), + [anon_sym_SQUOTE] = ACTIONS(1112), + [anon_sym_BQUOTE] = ACTIONS(1115), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1118), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1121), + [anon_sym_CARET] = ACTIONS(1124), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1127), + }, + [STATE(185)] = { + [sym_cmd_identifier] = STATE(2950), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(3276), + [sym_where_command_parenthesized] = STATE(3324), + [sym__expression_parenthesized] = STATE(2256), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(142), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), + [sym_comment] = STATE(185), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(286), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_alias] = ACTIONS(1133), + [anon_sym_let] = ACTIONS(1133), + [anon_sym_mut] = ACTIONS(1133), + [anon_sym_const] = ACTIONS(1133), + [aux_sym_cmd_identifier_token1] = ACTIONS(1136), + [anon_sym_def] = ACTIONS(1133), + [anon_sym_use] = ACTIONS(1133), + [anon_sym_export_DASHenv] = ACTIONS(1133), + [anon_sym_extern] = ACTIONS(1133), + [anon_sym_module] = ACTIONS(1133), + [anon_sym_for] = ACTIONS(1133), + [anon_sym_loop] = ACTIONS(1133), + [anon_sym_while] = ACTIONS(1133), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_else] = ACTIONS(1133), + [anon_sym_try] = ACTIONS(1142), + [anon_sym_catch] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1130), + [anon_sym_true] = ACTIONS(1148), + [anon_sym_false] = ACTIONS(1148), + [anon_sym_null] = ACTIONS(1151), + [aux_sym_cmd_identifier_token3] = ACTIONS(1154), + [aux_sym_cmd_identifier_token4] = ACTIONS(1154), + [aux_sym_cmd_identifier_token5] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1160), + [anon_sym_DOLLAR] = ACTIONS(1163), + [anon_sym_DASH2] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1169), + [anon_sym_DOT_DOT] = ACTIONS(1172), + [anon_sym_where] = ACTIONS(1175), + [aux_sym_expr_unary_token1] = ACTIONS(1178), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), + [anon_sym_DOT_DOT_LT] = ACTIONS(1181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1184), + [aux_sym__val_number_decimal_token2] = ACTIONS(1187), + [aux_sym__val_number_decimal_token3] = ACTIONS(1190), + [aux_sym__val_number_decimal_token4] = ACTIONS(1190), + [aux_sym__val_number_token1] = ACTIONS(1193), + [aux_sym__val_number_token2] = ACTIONS(1193), + [aux_sym__val_number_token3] = ACTIONS(1193), + [anon_sym_0b] = ACTIONS(1196), + [anon_sym_0o] = ACTIONS(1199), + [anon_sym_0x] = ACTIONS(1199), + [sym_val_date] = ACTIONS(1202), + [anon_sym_DQUOTE] = ACTIONS(1205), + [anon_sym_SQUOTE] = ACTIONS(1208), + [anon_sym_BQUOTE] = ACTIONS(1211), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1214), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1220), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1223), + }, + [STATE(186)] = { + [sym_cmd_identifier] = STATE(2951), + [sym__ctrl_expression] = STATE(3333), + [sym_ctrl_if] = STATE(3365), + [sym_ctrl_match] = STATE(3365), + [sym_ctrl_try] = STATE(3365), + [sym_pipe_element] = STATE(2992), + [sym_where_command] = STATE(3333), + [sym__expression] = STATE(2260), + [sym_expr_unary] = STATE(1276), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1276), + [sym__expr_binary_expression] = STATE(2222), + [sym_expr_parenthesized] = STATE(919), + [sym_val_range] = STATE(1276), + [sym__value] = STATE(1276), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(1294), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(120), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3333), + [sym_comment] = STATE(186), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(284), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), [anon_sym_let] = ACTIONS(39), @@ -59687,7 +60194,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_DOT_DOT] = ACTIONS(69), @@ -59715,49 +60222,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(184)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2846), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), - [sym_comment] = STATE(184), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(287), + [STATE(187)] = { + [sym_cmd_identifier] = STATE(2712), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2947), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(121), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), + [sym_comment] = STATE(187), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(281), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -59772,7 +60279,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -59786,7 +60293,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -59794,10 +60301,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59814,49 +60321,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(185)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2846), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), - [sym_comment] = STATE(185), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(292), + [STATE(188)] = { + [sym_cmd_identifier] = STATE(2712), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2947), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), + [sym_comment] = STATE(188), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(282), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -59871,7 +60378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(1032), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -59885,7 +60392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -59893,10 +60400,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59913,148 +60420,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(186)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(3228), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(141), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), - [sym_comment] = STATE(186), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(280), - [anon_sym_export] = ACTIONS(1034), - [anon_sym_alias] = ACTIONS(1037), - [anon_sym_let] = ACTIONS(1037), - [anon_sym_mut] = ACTIONS(1037), - [anon_sym_const] = ACTIONS(1037), - [aux_sym_cmd_identifier_token1] = ACTIONS(1040), - [anon_sym_def] = ACTIONS(1037), - [anon_sym_use] = ACTIONS(1037), - [anon_sym_export_DASHenv] = ACTIONS(1037), - [anon_sym_extern] = ACTIONS(1037), - [anon_sym_module] = ACTIONS(1037), - [anon_sym_for] = ACTIONS(1037), - [anon_sym_loop] = ACTIONS(1037), - [anon_sym_while] = ACTIONS(1037), - [anon_sym_if] = ACTIONS(1043), - [anon_sym_else] = ACTIONS(1037), - [anon_sym_try] = ACTIONS(1046), - [anon_sym_catch] = ACTIONS(1037), - [anon_sym_match] = ACTIONS(1049), - [anon_sym_in] = ACTIONS(1034), - [anon_sym_true] = ACTIONS(1052), - [anon_sym_false] = ACTIONS(1052), - [anon_sym_null] = ACTIONS(1055), - [aux_sym_cmd_identifier_token3] = ACTIONS(1058), - [aux_sym_cmd_identifier_token4] = ACTIONS(1058), - [aux_sym_cmd_identifier_token5] = ACTIONS(1058), - [anon_sym_LBRACK] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1064), - [anon_sym_DOLLAR] = ACTIONS(1067), - [anon_sym_DASH2] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_DOT_DOT] = ACTIONS(1076), - [anon_sym_where] = ACTIONS(1079), - [aux_sym_expr_unary_token1] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1085), - [anon_sym_DOT_DOT_LT] = ACTIONS(1085), - [aux_sym__val_number_decimal_token1] = ACTIONS(1088), - [aux_sym__val_number_decimal_token2] = ACTIONS(1091), - [aux_sym__val_number_decimal_token3] = ACTIONS(1094), - [aux_sym__val_number_decimal_token4] = ACTIONS(1094), - [aux_sym__val_number_token1] = ACTIONS(1097), - [aux_sym__val_number_token2] = ACTIONS(1097), - [aux_sym__val_number_token3] = ACTIONS(1097), - [anon_sym_0b] = ACTIONS(1100), - [anon_sym_0o] = ACTIONS(1103), - [anon_sym_0x] = ACTIONS(1103), - [sym_val_date] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1109), - [anon_sym_SQUOTE] = ACTIONS(1112), - [anon_sym_BQUOTE] = ACTIONS(1115), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1118), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1121), - [anon_sym_CARET] = ACTIONS(1124), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1127), + [STATE(189)] = { + [sym_comment] = STATE(189), + [anon_sym_in] = ACTIONS(996), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_like] = ACTIONS(1014), + [anon_sym_not_DASHlike] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_has] = ACTIONS(1014), + [anon_sym_not_DASHhas] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1014), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), + [sym__newline] = ACTIONS(996), + [anon_sym_PIPE] = ACTIONS(996), + [anon_sym_err_GT_PIPE] = ACTIONS(996), + [anon_sym_out_GT_PIPE] = ACTIONS(996), + [anon_sym_e_GT_PIPE] = ACTIONS(996), + [anon_sym_o_GT_PIPE] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), + [anon_sym_GT2] = ACTIONS(996), + [anon_sym_DASH2] = ACTIONS(996), + [anon_sym_STAR2] = ACTIONS(996), + [anon_sym_and2] = ACTIONS(996), + [anon_sym_xor2] = ACTIONS(996), + [anon_sym_or2] = ACTIONS(996), + [anon_sym_not_DASHin2] = ACTIONS(996), + [anon_sym_has2] = ACTIONS(996), + [anon_sym_not_DASHhas2] = ACTIONS(996), + [anon_sym_starts_DASHwith2] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), + [anon_sym_ends_DASHwith2] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), + [anon_sym_EQ_EQ2] = ACTIONS(996), + [anon_sym_BANG_EQ2] = ACTIONS(996), + [anon_sym_LT2] = ACTIONS(996), + [anon_sym_LT_EQ2] = ACTIONS(996), + [anon_sym_GT_EQ2] = ACTIONS(996), + [anon_sym_EQ_TILDE2] = ACTIONS(996), + [anon_sym_BANG_TILDE2] = ACTIONS(996), + [anon_sym_like2] = ACTIONS(996), + [anon_sym_not_DASHlike2] = ACTIONS(996), + [anon_sym_STAR_STAR2] = ACTIONS(996), + [anon_sym_PLUS_PLUS2] = ACTIONS(996), + [anon_sym_SLASH2] = ACTIONS(996), + [anon_sym_mod2] = ACTIONS(996), + [anon_sym_SLASH_SLASH2] = ACTIONS(996), + [anon_sym_PLUS2] = ACTIONS(996), + [anon_sym_bit_DASHshl2] = ACTIONS(996), + [anon_sym_bit_DASHshr2] = ACTIONS(996), + [anon_sym_bit_DASHand2] = ACTIONS(996), + [anon_sym_bit_DASHxor2] = ACTIONS(996), + [anon_sym_bit_DASHor2] = ACTIONS(996), + [anon_sym_err_GT] = ACTIONS(996), + [anon_sym_out_GT] = ACTIONS(996), + [anon_sym_e_GT] = ACTIONS(996), + [anon_sym_o_GT] = ACTIONS(996), + [anon_sym_err_PLUSout_GT] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT] = ACTIONS(996), + [anon_sym_o_PLUSe_GT] = ACTIONS(996), + [anon_sym_e_PLUSo_GT] = ACTIONS(996), + [anon_sym_err_GT_GT] = ACTIONS(996), + [anon_sym_out_GT_GT] = ACTIONS(996), + [anon_sym_e_GT_GT] = ACTIONS(996), + [anon_sym_o_GT_GT] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [anon_sym_POUND] = ACTIONS(103), }, - [STATE(187)] = { - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2976), - [sym_where_command_parenthesized] = STATE(3332), + [STATE(190)] = { + [sym_cmd_identifier] = STATE(2950), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2975), + [sym_where_command_parenthesized] = STATE(3324), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), - [sym_comment] = STATE(187), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(193), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(275), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), + [sym_comment] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -60069,7 +60576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1022), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), @@ -60083,7 +60590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -60091,10 +60598,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -60111,49 +60618,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(188)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__ctrl_expression] = STATE(3087), - [sym_ctrl_if] = STATE(3102), - [sym_ctrl_match] = STATE(3102), - [sym_ctrl_try] = STATE(3102), - [sym_pipe_element] = STATE(2846), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3087), - [sym_comment] = STATE(188), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(290), + [STATE(191)] = { + [sym_cmd_identifier] = STATE(2712), + [sym__ctrl_expression] = STATE(3150), + [sym_ctrl_if] = STATE(3153), + [sym_ctrl_match] = STATE(3153), + [sym_ctrl_try] = STATE(3153), + [sym_pipe_element] = STATE(2947), + [sym_where_command] = STATE(3150), + [sym__expression] = STATE(2253), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3150), + [sym_comment] = STATE(191), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(285), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -60182,7 +60689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -60210,346 +60717,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(189)] = { - [sym_comment] = STATE(189), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(190)] = { - [sym_comment] = STATE(190), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1016), - [anon_sym_out_GT_GT] = ACTIONS(1016), - [anon_sym_e_GT_GT] = ACTIONS(1016), - [anon_sym_o_GT_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(191)] = { - [sym_cmd_identifier] = STATE(2895), - [sym__ctrl_expression] = STATE(3252), - [sym_ctrl_if] = STATE(3266), - [sym_ctrl_match] = STATE(3266), - [sym_ctrl_try] = STATE(3266), - [sym_pipe_element] = STATE(2938), - [sym_where_command] = STATE(3252), - [sym__expression] = STATE(2261), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3252), - [sym_comment] = STATE(191), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_const] = ACTIONS(39), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(39), - [anon_sym_use] = ACTIONS(39), - [anon_sym_export_DASHenv] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_for] = ACTIONS(39), - [anon_sym_loop] = ACTIONS(39), - [anon_sym_while] = ACTIONS(39), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(43), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, [STATE(192)] = { - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(2976), - [sym_where_command_parenthesized] = STATE(3332), + [sym_cmd_identifier] = STATE(2950), + [sym__ctrl_expression_parenthesized] = STATE(3324), + [sym_ctrl_if_parenthesized] = STATE(3397), + [sym_ctrl_match] = STATE(3397), + [sym_ctrl_try_parenthesized] = STATE(3397), + [sym_pipe_element_parenthesized] = STATE(2975), + [sym_where_command_parenthesized] = STATE(3324), [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3275), [sym_comment] = STATE(192), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(193), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(283), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -60578,7 +60788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -60607,142 +60817,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(193)] = { - [sym_cmd_identifier] = STATE(2911), - [sym__ctrl_expression_parenthesized] = STATE(3332), - [sym_ctrl_if_parenthesized] = STATE(3215), - [sym_ctrl_match] = STATE(3215), - [sym_ctrl_try_parenthesized] = STATE(3215), - [sym_pipe_element_parenthesized] = STATE(3227), - [sym_where_command_parenthesized] = STATE(3332), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(141), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3262), [sym_comment] = STATE(193), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(193), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [anon_sym_export] = ACTIONS(1130), - [anon_sym_alias] = ACTIONS(1133), - [anon_sym_let] = ACTIONS(1133), - [anon_sym_mut] = ACTIONS(1133), - [anon_sym_const] = ACTIONS(1133), - [aux_sym_cmd_identifier_token1] = ACTIONS(1136), - [anon_sym_def] = ACTIONS(1133), - [anon_sym_use] = ACTIONS(1133), - [anon_sym_export_DASHenv] = ACTIONS(1133), - [anon_sym_extern] = ACTIONS(1133), - [anon_sym_module] = ACTIONS(1133), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_loop] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(1133), - [anon_sym_if] = ACTIONS(1139), - [anon_sym_else] = ACTIONS(1133), - [anon_sym_try] = ACTIONS(1142), - [anon_sym_catch] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1130), - [anon_sym_true] = ACTIONS(1148), - [anon_sym_false] = ACTIONS(1148), - [anon_sym_null] = ACTIONS(1151), - [aux_sym_cmd_identifier_token3] = ACTIONS(1154), - [aux_sym_cmd_identifier_token4] = ACTIONS(1154), - [aux_sym_cmd_identifier_token5] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(1160), - [anon_sym_DOLLAR] = ACTIONS(1163), - [anon_sym_DASH2] = ACTIONS(1166), - [anon_sym_LBRACE] = ACTIONS(1169), - [anon_sym_DOT_DOT] = ACTIONS(1172), - [anon_sym_where] = ACTIONS(1175), - [aux_sym_expr_unary_token1] = ACTIONS(1178), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), - [anon_sym_DOT_DOT_LT] = ACTIONS(1181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1184), - [aux_sym__val_number_decimal_token2] = ACTIONS(1187), - [aux_sym__val_number_decimal_token3] = ACTIONS(1190), - [aux_sym__val_number_decimal_token4] = ACTIONS(1190), - [aux_sym__val_number_token1] = ACTIONS(1193), - [aux_sym__val_number_token2] = ACTIONS(1193), - [aux_sym__val_number_token3] = ACTIONS(1193), - [anon_sym_0b] = ACTIONS(1196), - [anon_sym_0o] = ACTIONS(1199), - [anon_sym_0x] = ACTIONS(1199), - [sym_val_date] = ACTIONS(1202), - [anon_sym_DQUOTE] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1208), - [anon_sym_BQUOTE] = ACTIONS(1211), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1214), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1217), - [anon_sym_CARET] = ACTIONS(1220), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1223), + [anon_sym_in] = ACTIONS(1004), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_like] = ACTIONS(1014), + [anon_sym_not_DASHlike] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_has] = ACTIONS(1014), + [anon_sym_not_DASHhas] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1014), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), + [sym__newline] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1004), + [anon_sym_err_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_GT_PIPE] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), + [anon_sym_GT2] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_STAR2] = ACTIONS(1004), + [anon_sym_and2] = ACTIONS(1004), + [anon_sym_xor2] = ACTIONS(1004), + [anon_sym_or2] = ACTIONS(1004), + [anon_sym_not_DASHin2] = ACTIONS(1004), + [anon_sym_has2] = ACTIONS(1004), + [anon_sym_not_DASHhas2] = ACTIONS(1004), + [anon_sym_starts_DASHwith2] = ACTIONS(1004), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1004), + [anon_sym_ends_DASHwith2] = ACTIONS(1004), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1004), + [anon_sym_EQ_EQ2] = ACTIONS(1004), + [anon_sym_BANG_EQ2] = ACTIONS(1004), + [anon_sym_LT2] = ACTIONS(1004), + [anon_sym_LT_EQ2] = ACTIONS(1004), + [anon_sym_GT_EQ2] = ACTIONS(1004), + [anon_sym_EQ_TILDE2] = ACTIONS(1004), + [anon_sym_BANG_TILDE2] = ACTIONS(1004), + [anon_sym_like2] = ACTIONS(1004), + [anon_sym_not_DASHlike2] = ACTIONS(1004), + [anon_sym_STAR_STAR2] = ACTIONS(1004), + [anon_sym_PLUS_PLUS2] = ACTIONS(1004), + [anon_sym_SLASH2] = ACTIONS(1004), + [anon_sym_mod2] = ACTIONS(1004), + [anon_sym_SLASH_SLASH2] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(1004), + [anon_sym_bit_DASHshl2] = ACTIONS(1004), + [anon_sym_bit_DASHshr2] = ACTIONS(1004), + [anon_sym_bit_DASHand2] = ACTIONS(1004), + [anon_sym_bit_DASHxor2] = ACTIONS(1004), + [anon_sym_bit_DASHor2] = ACTIONS(1004), + [anon_sym_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(1004), + [anon_sym_out_GT_GT] = ACTIONS(1004), + [anon_sym_e_GT_GT] = ACTIONS(1004), + [anon_sym_o_GT_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(194)] = { - [sym_expr_parenthesized] = STATE(3738), - [sym__spread_parenthesized] = STATE(2970), - [sym_val_range] = STATE(2971), - [sym__val_range] = STATE(4396), - [sym__value] = STATE(2971), - [sym_val_nothing] = STATE(3021), - [sym_val_bool] = STATE(3975), - [sym__spread_variable] = STATE(2972), - [sym_val_variable] = STATE(3849), - [sym_val_cellpath] = STATE(3021), - [sym_val_number] = STATE(3021), - [sym__val_number_decimal] = STATE(3366), - [sym__val_number] = STATE(3023), - [sym_val_duration] = STATE(3021), - [sym_val_filesize] = STATE(3021), - [sym_val_binary] = STATE(3021), - [sym_val_string] = STATE(3021), - [sym__raw_str] = STATE(2454), - [sym__str_double_quotes] = STATE(2454), - [sym__str_single_quotes] = STATE(2454), - [sym__str_back_ticks] = STATE(2454), - [sym_val_interpolated] = STATE(3021), - [sym__inter_single_quotes] = STATE(3063), - [sym__inter_double_quotes] = STATE(3066), - [sym_val_list] = STATE(3021), - [sym__spread_list] = STATE(2970), - [sym_val_record] = STATE(3021), - [sym_val_table] = STATE(3021), - [sym_val_closure] = STATE(3021), - [sym__cmd_arg] = STATE(2973), - [sym_redirection] = STATE(2974), - [sym__flag] = STATE(2975), - [sym_short_flag] = STATE(2985), - [sym_long_flag] = STATE(2985), - [sym_unquoted] = STATE(2762), - [sym__unquoted_with_expr] = STATE(2988), - [sym__unquoted_anonymous_prefix] = STATE(4396), + [sym_expr_parenthesized] = STATE(3854), + [sym__spread_parenthesized] = STATE(3003), + [sym_val_range] = STATE(3030), + [sym__val_range] = STATE(4477), + [sym__value] = STATE(3030), + [sym_val_nothing] = STATE(3022), + [sym_val_bool] = STATE(4029), + [sym__spread_variable] = STATE(3036), + [sym_val_variable] = STATE(3832), + [sym_val_cellpath] = STATE(3022), + [sym_val_number] = STATE(3022), + [sym__val_number_decimal] = STATE(3421), + [sym__val_number] = STATE(3024), + [sym_val_duration] = STATE(3022), + [sym_val_filesize] = STATE(3022), + [sym_val_binary] = STATE(3022), + [sym_val_string] = STATE(3022), + [sym__raw_str] = STATE(2508), + [sym__str_double_quotes] = STATE(2508), + [sym__str_single_quotes] = STATE(2508), + [sym__str_back_ticks] = STATE(2508), + [sym_val_interpolated] = STATE(3022), + [sym__inter_single_quotes] = STATE(2983), + [sym__inter_double_quotes] = STATE(3101), + [sym_val_list] = STATE(3022), + [sym__spread_list] = STATE(3003), + [sym_val_record] = STATE(3022), + [sym_val_table] = STATE(3022), + [sym_val_closure] = STATE(3022), + [sym__cmd_arg] = STATE(3051), + [sym_redirection] = STATE(3053), + [sym__flag] = STATE(3060), + [sym_short_flag] = STATE(3092), + [sym_long_flag] = STATE(3092), + [sym_unquoted] = STATE(2706), + [sym__unquoted_with_expr] = STATE(3107), + [sym__unquoted_anonymous_prefix] = STATE(4477), [sym_comment] = STATE(194), [anon_sym_true] = ACTIONS(1226), [anon_sym_false] = ACTIONS(1226), @@ -60750,93 +60960,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(1230), [aux_sym_cmd_identifier_token4] = ACTIONS(1230), [aux_sym_cmd_identifier_token5] = ACTIONS(1230), - [sym__newline] = ACTIONS(791), - [sym__space] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_LBRACK] = ACTIONS(795), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_DOLLAR] = ACTIONS(799), + [sym__newline] = ACTIONS(818), + [sym__space] = ACTIONS(872), + [anon_sym_SEMI] = ACTIONS(818), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_LPAREN] = ACTIONS(822), + [anon_sym_DOLLAR] = ACTIONS(824), [anon_sym_DASH_DASH] = ACTIONS(1232), [anon_sym_DASH2] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(830), [anon_sym_DOT_DOT] = ACTIONS(1236), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(809), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(834), [anon_sym_DOT_DOT_EQ] = ACTIONS(1238), [anon_sym_DOT_DOT_LT] = ACTIONS(1238), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(813), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(838), [aux_sym__val_number_decimal_token1] = ACTIONS(1240), [aux_sym__val_number_decimal_token2] = ACTIONS(1240), [aux_sym__val_number_decimal_token3] = ACTIONS(1242), [aux_sym__val_number_decimal_token4] = ACTIONS(1242), - [aux_sym__val_number_token1] = ACTIONS(819), - [aux_sym__val_number_token2] = ACTIONS(819), - [aux_sym__val_number_token3] = ACTIONS(819), - [anon_sym_0b] = ACTIONS(821), - [anon_sym_0o] = ACTIONS(823), - [anon_sym_0x] = ACTIONS(823), + [aux_sym__val_number_token1] = ACTIONS(844), + [aux_sym__val_number_token2] = ACTIONS(844), + [aux_sym__val_number_token3] = ACTIONS(844), + [anon_sym_0b] = ACTIONS(846), + [anon_sym_0o] = ACTIONS(848), + [anon_sym_0x] = ACTIONS(848), [sym_val_date] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(827), - [anon_sym_SQUOTE] = ACTIONS(829), - [anon_sym_BQUOTE] = ACTIONS(831), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(837), - [anon_sym_err_GT] = ACTIONS(839), - [anon_sym_out_GT] = ACTIONS(839), - [anon_sym_e_GT] = ACTIONS(839), - [anon_sym_o_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT] = ACTIONS(839), - [anon_sym_err_GT_GT] = ACTIONS(839), - [anon_sym_out_GT_GT] = ACTIONS(839), - [anon_sym_e_GT_GT] = ACTIONS(839), - [anon_sym_o_GT_GT] = ACTIONS(839), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(839), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(839), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(839), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(839), - [aux_sym_unquoted_token1] = ACTIONS(841), + [anon_sym_DQUOTE] = ACTIONS(852), + [anon_sym_SQUOTE] = ACTIONS(854), + [anon_sym_BQUOTE] = ACTIONS(856), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(858), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(860), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(862), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(866), + [anon_sym_out_GT_GT] = ACTIONS(866), + [anon_sym_e_GT_GT] = ACTIONS(866), + [anon_sym_o_GT_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(866), + [aux_sym_unquoted_token1] = ACTIONS(868), [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(843), + [sym_raw_string_begin] = ACTIONS(870), }, [STATE(195)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(262), - [sym_ctrl_if_parenthesized] = STATE(3315), - [sym_block] = STATE(3316), - [sym__expression_parenthesized] = STATE(3316), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3316), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(264), + [sym_ctrl_if_parenthesized] = STATE(3398), + [sym_block] = STATE(3399), + [sym__expression_parenthesized] = STATE(3399), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(305), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3399), [sym_comment] = STATE(195), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -60867,7 +61077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -60895,41 +61105,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(196)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3245), - [sym_block] = STATE(3246), - [sym__expression_parenthesized] = STATE(3246), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3246), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(199), + [sym_ctrl_if_parenthesized] = STATE(3381), + [sym_block] = STATE(3316), + [sym__expression_parenthesized] = STATE(3316), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3316), [sym_comment] = STATE(196), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -60945,7 +61155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1262), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -60960,17 +61170,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -60988,41 +61198,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(197)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3249), - [sym_block] = STATE(3250), - [sym__expression_parenthesized] = STATE(3250), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3250), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(205), + [sym_ctrl_if_parenthesized] = STATE(3387), + [sym_block] = STATE(3334), + [sym__expression_parenthesized] = STATE(3334), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3334), [sym_comment] = STATE(197), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61038,7 +61248,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1262), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -61053,17 +61263,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61081,41 +61291,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(198)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(203), - [sym_ctrl_if_parenthesized] = STATE(3255), - [sym_block] = STATE(3257), - [sym__expression_parenthesized] = STATE(3257), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3257), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(207), + [sym_ctrl_if_parenthesized] = STATE(3386), + [sym_block] = STATE(3358), + [sym__expression_parenthesized] = STATE(3358), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3358), [sym_comment] = STATE(198), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61131,7 +61341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1262), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -61146,17 +61356,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61174,41 +61384,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(199)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3259), - [sym_block] = STATE(3261), - [sym__expression_parenthesized] = STATE(3261), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3261), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3390), + [sym_block] = STATE(3303), + [sym__expression_parenthesized] = STATE(3303), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3303), [sym_comment] = STATE(199), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61224,7 +61434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1262), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -61239,17 +61449,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61267,41 +61477,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(200)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3265), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3280), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(233), + [sym_ctrl_if_parenthesized] = STATE(3390), + [sym_block] = STATE(3303), + [sym__expression_parenthesized] = STATE(3303), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3303), [sym_comment] = STATE(200), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61317,7 +61527,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1262), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -61332,17 +61542,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61360,41 +61570,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(201)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(204), - [sym_ctrl_if_parenthesized] = STATE(3265), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3280), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3332), + [sym_block] = STATE(3321), + [sym__expression_parenthesized] = STATE(3321), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(305), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3321), [sym_comment] = STATE(201), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61425,7 +61635,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -61453,41 +61663,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(202)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3289), - [sym_block] = STATE(3291), - [sym__expression_parenthesized] = STATE(3291), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3291), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3346), + [sym_block] = STATE(3295), + [sym__expression_parenthesized] = STATE(3295), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(305), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3295), [sym_comment] = STATE(202), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61518,7 +61728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -61546,41 +61756,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(203)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3294), - [sym_block] = STATE(3296), - [sym__expression_parenthesized] = STATE(3296), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3296), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3342), + [sym_block] = STATE(3366), + [sym__expression_parenthesized] = STATE(3366), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(305), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3366), [sym_comment] = STATE(203), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61611,7 +61821,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -61639,41 +61849,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(204)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3297), - [sym_block] = STATE(3299), - [sym__expression_parenthesized] = STATE(3299), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3299), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(235), + [sym_ctrl_if_parenthesized] = STATE(3288), + [sym_block] = STATE(3326), + [sym__expression_parenthesized] = STATE(3326), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3326), [sym_comment] = STATE(204), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61689,7 +61899,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1262), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -61704,17 +61914,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61732,41 +61942,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(205)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(202), - [sym_ctrl_if_parenthesized] = STATE(3249), - [sym_block] = STATE(3250), - [sym__expression_parenthesized] = STATE(3250), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3250), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3344), + [sym_block] = STATE(3345), + [sym__expression_parenthesized] = STATE(3345), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3345), [sym_comment] = STATE(205), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61782,7 +61992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1262), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -61797,17 +62007,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61825,41 +62035,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(206)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(209), - [sym_ctrl_if_parenthesized] = STATE(3354), - [sym_block] = STATE(3217), - [sym__expression_parenthesized] = STATE(3217), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3217), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(237), + [sym_ctrl_if_parenthesized] = STATE(3344), + [sym_block] = STATE(3345), + [sym__expression_parenthesized] = STATE(3345), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3345), [sym_comment] = STATE(206), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61890,7 +62100,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -61918,41 +62128,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(207)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(212), - [sym_ctrl_if_parenthesized] = STATE(3308), - [sym_block] = STATE(3309), - [sym__expression_parenthesized] = STATE(3309), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3309), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3398), + [sym_block] = STATE(3399), + [sym__expression_parenthesized] = STATE(3399), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3399), [sym_comment] = STATE(207), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61983,7 +62193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -62011,40 +62221,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(208)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(214), - [sym_ctrl_if_parenthesized] = STATE(3315), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(211), + [sym_ctrl_if_parenthesized] = STATE(3381), [sym_block] = STATE(3316), [sym__expression_parenthesized] = STATE(3316), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(312), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), [sym_command] = STATE(3316), [sym_comment] = STATE(208), [anon_sym_export] = ACTIONS(277), @@ -62061,7 +62271,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1022), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -62076,17 +62286,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62104,41 +62314,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(209)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3330), - [sym_block] = STATE(3333), - [sym__expression_parenthesized] = STATE(3333), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3333), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(214), + [sym_ctrl_if_parenthesized] = STATE(3387), + [sym_block] = STATE(3334), + [sym__expression_parenthesized] = STATE(3334), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(312), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3334), [sym_comment] = STATE(209), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62154,7 +62364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1022), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -62169,17 +62379,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62197,41 +62407,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(210)] = { - [sym_cmd_identifier] = STATE(2905), + [sym_cmd_identifier] = STATE(2889), [aux_sym__repeat_newline] = STATE(216), - [sym_ctrl_if_parenthesized] = STATE(3330), - [sym_block] = STATE(3333), - [sym__expression_parenthesized] = STATE(3333), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3333), + [sym_ctrl_if_parenthesized] = STATE(3386), + [sym_block] = STATE(3358), + [sym__expression_parenthesized] = STATE(3358), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(312), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3358), [sym_comment] = STATE(210), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62247,7 +62457,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1022), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -62262,17 +62472,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62290,41 +62500,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(211)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(218), - [sym_ctrl_if_parenthesized] = STATE(3307), - [sym_block] = STATE(3311), - [sym__expression_parenthesized] = STATE(3311), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3311), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3390), + [sym_block] = STATE(3303), + [sym__expression_parenthesized] = STATE(3303), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(312), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3303), [sym_comment] = STATE(211), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62340,7 +62550,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1022), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -62355,17 +62565,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62383,41 +62593,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(212)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3313), - [sym_block] = STATE(3329), - [sym__expression_parenthesized] = STATE(3329), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3329), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(218), + [sym_ctrl_if_parenthesized] = STATE(3390), + [sym_block] = STATE(3303), + [sym__expression_parenthesized] = STATE(3303), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(312), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3303), [sym_comment] = STATE(212), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62433,7 +62643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1022), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -62448,17 +62658,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62476,41 +62686,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(213)] = { - [sym_cmd_identifier] = STATE(2905), + [sym_cmd_identifier] = STATE(2889), [aux_sym__repeat_newline] = STATE(220), - [sym_ctrl_if_parenthesized] = STATE(3313), - [sym_block] = STATE(3329), - [sym__expression_parenthesized] = STATE(3329), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3329), + [sym_ctrl_if_parenthesized] = STATE(3288), + [sym_block] = STATE(3326), + [sym__expression_parenthesized] = STATE(3326), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(312), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3326), [sym_comment] = STATE(213), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62526,7 +62736,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1022), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -62541,17 +62751,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62569,41 +62779,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(214)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3349), - [sym_block] = STATE(3352), - [sym__expression_parenthesized] = STATE(3352), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3352), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3344), + [sym_block] = STATE(3345), + [sym__expression_parenthesized] = STATE(3345), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(312), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3345), [sym_comment] = STATE(214), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62619,7 +62829,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1022), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -62634,17 +62844,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62662,41 +62872,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(215)] = { - [sym_cmd_identifier] = STATE(2905), + [sym_cmd_identifier] = STATE(2889), [aux_sym__repeat_newline] = STATE(222), - [sym_ctrl_if_parenthesized] = STATE(3349), - [sym_block] = STATE(3352), - [sym__expression_parenthesized] = STATE(3352), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3352), + [sym_ctrl_if_parenthesized] = STATE(3344), + [sym_block] = STATE(3345), + [sym__expression_parenthesized] = STATE(3345), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(312), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3345), [sym_comment] = STATE(215), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62712,7 +62922,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1022), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -62727,17 +62937,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62755,41 +62965,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(216)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3222), - [sym_block] = STATE(3223), - [sym__expression_parenthesized] = STATE(3223), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3223), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3398), + [sym_block] = STATE(3399), + [sym__expression_parenthesized] = STATE(3399), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(312), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3399), [sym_comment] = STATE(216), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62805,7 +63015,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1022), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -62820,17 +63030,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62848,41 +63058,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(217)] = { - [sym_cmd_identifier] = STATE(2905), + [sym_cmd_identifier] = STATE(2889), [aux_sym__repeat_newline] = STATE(224), - [sym_ctrl_if_parenthesized] = STATE(3222), - [sym_block] = STATE(3223), - [sym__expression_parenthesized] = STATE(3223), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3223), + [sym_ctrl_if_parenthesized] = STATE(3398), + [sym_block] = STATE(3399), + [sym__expression_parenthesized] = STATE(3399), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(312), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3399), [sym_comment] = STATE(217), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62898,7 +63108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1022), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -62913,17 +63123,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62941,41 +63151,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(218)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3245), - [sym_block] = STATE(3246), - [sym__expression_parenthesized] = STATE(3246), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3246), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3279), + [sym_block] = STATE(3280), + [sym__expression_parenthesized] = STATE(3280), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(312), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3280), [sym_comment] = STATE(218), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62991,7 +63201,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1022), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -63006,17 +63216,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63034,41 +63244,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(219)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(225), - [sym_ctrl_if_parenthesized] = STATE(3245), - [sym_block] = STATE(3246), - [sym__expression_parenthesized] = STATE(3246), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3246), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(226), + [sym_ctrl_if_parenthesized] = STATE(3279), + [sym_block] = STATE(3280), + [sym__expression_parenthesized] = STATE(3280), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(312), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3280), [sym_comment] = STATE(219), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63084,7 +63294,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1022), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -63099,17 +63309,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63127,41 +63337,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(220)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3249), - [sym_block] = STATE(3250), - [sym__expression_parenthesized] = STATE(3250), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3250), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3273), + [sym_block] = STATE(3363), + [sym__expression_parenthesized] = STATE(3363), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(312), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3363), [sym_comment] = STATE(220), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63177,7 +63387,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1022), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -63192,17 +63402,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63220,41 +63430,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(221)] = { - [sym_cmd_identifier] = STATE(2905), + [sym_cmd_identifier] = STATE(2889), [aux_sym__repeat_newline] = STATE(227), - [sym_ctrl_if_parenthesized] = STATE(3249), - [sym_block] = STATE(3250), - [sym__expression_parenthesized] = STATE(3250), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3250), + [sym_ctrl_if_parenthesized] = STATE(3273), + [sym_block] = STATE(3363), + [sym__expression_parenthesized] = STATE(3363), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(312), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3363), [sym_comment] = STATE(221), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63270,7 +63480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1022), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -63285,17 +63495,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63313,41 +63523,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(222)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3255), - [sym_block] = STATE(3257), - [sym__expression_parenthesized] = STATE(3257), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3257), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3340), + [sym_block] = STATE(3393), + [sym__expression_parenthesized] = STATE(3393), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(312), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3393), [sym_comment] = STATE(222), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63363,7 +63573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1022), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -63378,17 +63588,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63406,41 +63616,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(223)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(228), - [sym_ctrl_if_parenthesized] = STATE(3255), - [sym_block] = STATE(3257), - [sym__expression_parenthesized] = STATE(3257), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3257), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(229), + [sym_ctrl_if_parenthesized] = STATE(3340), + [sym_block] = STATE(3393), + [sym__expression_parenthesized] = STATE(3393), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(312), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3393), [sym_comment] = STATE(223), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63456,7 +63666,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1022), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -63471,17 +63681,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63499,41 +63709,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(224)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3259), - [sym_block] = STATE(3261), - [sym__expression_parenthesized] = STATE(3261), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3261), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3391), + [sym_block] = STATE(3354), + [sym__expression_parenthesized] = STATE(3354), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(312), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3354), [sym_comment] = STATE(224), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63549,7 +63759,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1022), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -63564,17 +63774,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63592,41 +63802,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(225)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3265), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3280), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(230), + [sym_ctrl_if_parenthesized] = STATE(3391), + [sym_block] = STATE(3354), + [sym__expression_parenthesized] = STATE(3354), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(312), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3354), [sym_comment] = STATE(225), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63642,7 +63852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1022), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -63657,17 +63867,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63685,41 +63895,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(226)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(229), - [sym_ctrl_if_parenthesized] = STATE(3265), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3280), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3394), + [sym_block] = STATE(3311), + [sym__expression_parenthesized] = STATE(3311), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(312), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3311), [sym_comment] = STATE(226), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63735,7 +63945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1022), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -63750,17 +63960,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63778,41 +63988,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(227)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3289), - [sym_block] = STATE(3291), - [sym__expression_parenthesized] = STATE(3291), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3291), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3342), + [sym_block] = STATE(3366), + [sym__expression_parenthesized] = STATE(3366), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(312), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3366), [sym_comment] = STATE(227), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63828,7 +64038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1022), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -63843,17 +64053,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63871,41 +64081,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(228)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3294), - [sym_block] = STATE(3296), - [sym__expression_parenthesized] = STATE(3296), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3296), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(266), + [sym_ctrl_if_parenthesized] = STATE(3342), + [sym_block] = STATE(3366), + [sym__expression_parenthesized] = STATE(3366), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(312), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3366), [sym_comment] = STATE(228), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63921,7 +64131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1022), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -63936,17 +64146,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63964,41 +64174,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(229)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3297), - [sym_block] = STATE(3299), - [sym__expression_parenthesized] = STATE(3299), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3299), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3329), + [sym_block] = STATE(3331), + [sym__expression_parenthesized] = STATE(3331), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(312), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3331), [sym_comment] = STATE(229), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64014,7 +64224,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1022), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -64029,17 +64239,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64057,41 +64267,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(230)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3255), - [sym_block] = STATE(3257), - [sym__expression_parenthesized] = STATE(3257), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3257), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3332), + [sym_block] = STATE(3321), + [sym__expression_parenthesized] = STATE(3321), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(312), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3321), [sym_comment] = STATE(230), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64107,7 +64317,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1022), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -64122,100 +64332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(231)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(266), - [sym_ctrl_if_parenthesized] = STATE(3354), - [sym_block] = STATE(3217), - [sym__expression_parenthesized] = STATE(3217), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3217), - [sym_comment] = STATE(231), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -64242,42 +64359,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(231)] = { + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(202), + [sym_ctrl_if_parenthesized] = STATE(3342), + [sym_block] = STATE(3366), + [sym__expression_parenthesized] = STATE(3366), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(305), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3366), + [sym_comment] = STATE(231), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(327), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1246), + [anon_sym_false] = ACTIONS(1246), + [anon_sym_null] = ACTIONS(1248), + [aux_sym_cmd_identifier_token3] = ACTIONS(1250), + [aux_sym_cmd_identifier_token4] = ACTIONS(1250), + [aux_sym_cmd_identifier_token5] = ACTIONS(1250), + [sym__newline] = ACTIONS(1252), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1256), + [aux_sym__val_number_decimal_token2] = ACTIONS(1258), + [aux_sym__val_number_decimal_token3] = ACTIONS(1260), + [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, [STATE(232)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(237), - [sym_ctrl_if_parenthesized] = STATE(3308), - [sym_block] = STATE(3309), - [sym__expression_parenthesized] = STATE(3309), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3309), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(239), + [sym_ctrl_if_parenthesized] = STATE(3398), + [sym_block] = STATE(3399), + [sym__expression_parenthesized] = STATE(3399), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3399), [sym_comment] = STATE(232), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64293,7 +64503,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1262), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -64308,17 +64518,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64336,41 +64546,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(233)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(239), - [sym_ctrl_if_parenthesized] = STATE(3315), - [sym_block] = STATE(3316), - [sym__expression_parenthesized] = STATE(3316), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3316), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3279), + [sym_block] = STATE(3280), + [sym__expression_parenthesized] = STATE(3280), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3280), [sym_comment] = STATE(233), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64386,7 +64596,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1262), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -64401,17 +64611,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64429,41 +64639,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(234)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(200), - [sym_ctrl_if_parenthesized] = STATE(3245), - [sym_block] = STATE(3246), - [sym__expression_parenthesized] = STATE(3246), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3246), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(241), + [sym_ctrl_if_parenthesized] = STATE(3279), + [sym_block] = STATE(3280), + [sym__expression_parenthesized] = STATE(3280), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3280), [sym_comment] = STATE(234), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64479,7 +64689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1262), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -64494,17 +64704,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64522,41 +64732,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(235)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(241), - [sym_ctrl_if_parenthesized] = STATE(3330), - [sym_block] = STATE(3333), - [sym__expression_parenthesized] = STATE(3333), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3333), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3273), + [sym_block] = STATE(3363), + [sym__expression_parenthesized] = STATE(3363), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3363), [sym_comment] = STATE(235), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64572,7 +64782,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1262), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -64587,17 +64797,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64615,41 +64825,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(236)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(243), - [sym_ctrl_if_parenthesized] = STATE(3307), - [sym_block] = STATE(3311), - [sym__expression_parenthesized] = STATE(3311), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3311), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(242), + [sym_ctrl_if_parenthesized] = STATE(3273), + [sym_block] = STATE(3363), + [sym__expression_parenthesized] = STATE(3363), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3363), [sym_comment] = STATE(236), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64665,7 +64875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1262), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -64680,17 +64890,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64708,41 +64918,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(237)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3313), - [sym_block] = STATE(3329), - [sym__expression_parenthesized] = STATE(3329), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3329), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3340), + [sym_block] = STATE(3393), + [sym__expression_parenthesized] = STATE(3393), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3393), [sym_comment] = STATE(237), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64758,7 +64968,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1262), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -64773,17 +64983,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64801,41 +65011,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(238)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(245), - [sym_ctrl_if_parenthesized] = STATE(3313), - [sym_block] = STATE(3329), - [sym__expression_parenthesized] = STATE(3329), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3329), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(253), + [sym_ctrl_if_parenthesized] = STATE(3340), + [sym_block] = STATE(3393), + [sym__expression_parenthesized] = STATE(3393), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3393), [sym_comment] = STATE(238), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64851,7 +65061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1262), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -64866,17 +65076,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64894,41 +65104,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(239)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3349), - [sym_block] = STATE(3352), - [sym__expression_parenthesized] = STATE(3352), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3352), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3391), + [sym_block] = STATE(3354), + [sym__expression_parenthesized] = STATE(3354), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3354), [sym_comment] = STATE(239), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64944,7 +65154,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1262), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -64959,17 +65169,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64987,41 +65197,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(240)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(247), - [sym_ctrl_if_parenthesized] = STATE(3349), - [sym_block] = STATE(3352), - [sym__expression_parenthesized] = STATE(3352), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3352), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(254), + [sym_ctrl_if_parenthesized] = STATE(3391), + [sym_block] = STATE(3354), + [sym__expression_parenthesized] = STATE(3354), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3354), [sym_comment] = STATE(240), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65037,7 +65247,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1262), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -65052,17 +65262,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65080,41 +65290,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(241)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3222), - [sym_block] = STATE(3223), - [sym__expression_parenthesized] = STATE(3223), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3223), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3394), + [sym_block] = STATE(3311), + [sym__expression_parenthesized] = STATE(3311), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3311), [sym_comment] = STATE(241), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65130,7 +65340,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1262), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -65145,17 +65355,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65173,41 +65383,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(242)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(249), - [sym_ctrl_if_parenthesized] = STATE(3222), - [sym_block] = STATE(3223), - [sym__expression_parenthesized] = STATE(3223), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3223), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3342), + [sym_block] = STATE(3366), + [sym__expression_parenthesized] = STATE(3366), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3366), [sym_comment] = STATE(242), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65223,7 +65433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1262), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -65238,17 +65448,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65266,41 +65476,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(243)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3245), - [sym_block] = STATE(3246), - [sym__expression_parenthesized] = STATE(3246), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3246), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(246), + [sym_ctrl_if_parenthesized] = STATE(3381), + [sym_block] = STATE(3316), + [sym__expression_parenthesized] = STATE(3316), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(305), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3316), [sym_comment] = STATE(243), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65316,7 +65526,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -65331,17 +65541,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1256), + [aux_sym__val_number_decimal_token2] = ACTIONS(1258), + [aux_sym__val_number_decimal_token3] = ACTIONS(1260), + [aux_sym__val_number_decimal_token4] = ACTIONS(1260), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65359,41 +65569,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(244)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(250), - [sym_ctrl_if_parenthesized] = STATE(3245), - [sym_block] = STATE(3246), - [sym__expression_parenthesized] = STATE(3246), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3246), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(249), + [sym_ctrl_if_parenthesized] = STATE(3387), + [sym_block] = STATE(3334), + [sym__expression_parenthesized] = STATE(3334), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(305), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3334), [sym_comment] = STATE(244), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65409,7 +65619,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -65424,17 +65634,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1256), + [aux_sym__val_number_decimal_token2] = ACTIONS(1258), + [aux_sym__val_number_decimal_token3] = ACTIONS(1260), + [aux_sym__val_number_decimal_token4] = ACTIONS(1260), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65452,41 +65662,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(245)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3249), - [sym_block] = STATE(3250), - [sym__expression_parenthesized] = STATE(3250), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3250), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(251), + [sym_ctrl_if_parenthesized] = STATE(3386), + [sym_block] = STATE(3358), + [sym__expression_parenthesized] = STATE(3358), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(305), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3358), [sym_comment] = STATE(245), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65502,7 +65712,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -65517,17 +65727,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1256), + [aux_sym__val_number_decimal_token2] = ACTIONS(1258), + [aux_sym__val_number_decimal_token3] = ACTIONS(1260), + [aux_sym__val_number_decimal_token4] = ACTIONS(1260), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65545,41 +65755,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(246)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(252), - [sym_ctrl_if_parenthesized] = STATE(3249), - [sym_block] = STATE(3250), - [sym__expression_parenthesized] = STATE(3250), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3250), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3390), + [sym_block] = STATE(3303), + [sym__expression_parenthesized] = STATE(3303), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(305), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3303), [sym_comment] = STATE(246), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65595,7 +65805,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -65610,17 +65820,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1256), + [aux_sym__val_number_decimal_token2] = ACTIONS(1258), + [aux_sym__val_number_decimal_token3] = ACTIONS(1260), + [aux_sym__val_number_decimal_token4] = ACTIONS(1260), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65638,41 +65848,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(247)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3255), - [sym_block] = STATE(3257), - [sym__expression_parenthesized] = STATE(3257), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3257), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(255), + [sym_ctrl_if_parenthesized] = STATE(3390), + [sym_block] = STATE(3303), + [sym__expression_parenthesized] = STATE(3303), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(305), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3303), [sym_comment] = STATE(247), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65688,7 +65898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -65703,17 +65913,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1256), + [aux_sym__val_number_decimal_token2] = ACTIONS(1258), + [aux_sym__val_number_decimal_token3] = ACTIONS(1260), + [aux_sym__val_number_decimal_token4] = ACTIONS(1260), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65731,41 +65941,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(248)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(253), - [sym_ctrl_if_parenthesized] = STATE(3255), - [sym_block] = STATE(3257), - [sym__expression_parenthesized] = STATE(3257), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3257), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(257), + [sym_ctrl_if_parenthesized] = STATE(3288), + [sym_block] = STATE(3326), + [sym__expression_parenthesized] = STATE(3326), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(305), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3326), [sym_comment] = STATE(248), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65781,7 +65991,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -65796,17 +66006,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1256), + [aux_sym__val_number_decimal_token2] = ACTIONS(1258), + [aux_sym__val_number_decimal_token3] = ACTIONS(1260), + [aux_sym__val_number_decimal_token4] = ACTIONS(1260), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65824,41 +66034,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(249)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3259), - [sym_block] = STATE(3261), - [sym__expression_parenthesized] = STATE(3261), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3261), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3344), + [sym_block] = STATE(3345), + [sym__expression_parenthesized] = STATE(3345), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(305), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3345), [sym_comment] = STATE(249), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65874,7 +66084,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -65889,17 +66099,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1256), + [aux_sym__val_number_decimal_token2] = ACTIONS(1258), + [aux_sym__val_number_decimal_token3] = ACTIONS(1260), + [aux_sym__val_number_decimal_token4] = ACTIONS(1260), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65917,41 +66127,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(250)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3265), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3280), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(259), + [sym_ctrl_if_parenthesized] = STATE(3344), + [sym_block] = STATE(3345), + [sym__expression_parenthesized] = STATE(3345), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(305), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3345), [sym_comment] = STATE(250), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65967,7 +66177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -65982,17 +66192,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1256), + [aux_sym__val_number_decimal_token2] = ACTIONS(1258), + [aux_sym__val_number_decimal_token3] = ACTIONS(1260), + [aux_sym__val_number_decimal_token4] = ACTIONS(1260), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66010,41 +66220,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(251)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(254), - [sym_ctrl_if_parenthesized] = STATE(3265), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3280), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3398), + [sym_block] = STATE(3399), + [sym__expression_parenthesized] = STATE(3399), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(305), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3399), [sym_comment] = STATE(251), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66060,7 +66270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -66075,17 +66285,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1256), + [aux_sym__val_number_decimal_token2] = ACTIONS(1258), + [aux_sym__val_number_decimal_token3] = ACTIONS(1260), + [aux_sym__val_number_decimal_token4] = ACTIONS(1260), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66103,41 +66313,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(252)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3289), - [sym_block] = STATE(3291), - [sym__expression_parenthesized] = STATE(3291), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3291), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(261), + [sym_ctrl_if_parenthesized] = STATE(3342), + [sym_block] = STATE(3366), + [sym__expression_parenthesized] = STATE(3366), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3366), [sym_comment] = STATE(252), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66153,7 +66363,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1262), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -66168,17 +66378,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66196,41 +66406,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(253)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3294), - [sym_block] = STATE(3296), - [sym__expression_parenthesized] = STATE(3296), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3296), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3329), + [sym_block] = STATE(3331), + [sym__expression_parenthesized] = STATE(3331), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3331), [sym_comment] = STATE(253), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66246,7 +66456,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1262), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -66261,17 +66471,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66289,41 +66499,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(254)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3297), - [sym_block] = STATE(3299), - [sym__expression_parenthesized] = STATE(3299), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3299), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3332), + [sym_block] = STATE(3321), + [sym__expression_parenthesized] = STATE(3321), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3321), [sym_comment] = STATE(254), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66339,7 +66549,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1262), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -66354,17 +66564,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66382,41 +66592,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(255)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(257), - [sym_ctrl_if_parenthesized] = STATE(3354), - [sym_block] = STATE(3217), - [sym__expression_parenthesized] = STATE(3217), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3217), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3279), + [sym_block] = STATE(3280), + [sym__expression_parenthesized] = STATE(3280), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(305), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3280), [sym_comment] = STATE(255), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66447,7 +66657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -66475,41 +66685,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(256)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(260), - [sym_ctrl_if_parenthesized] = STATE(3308), - [sym_block] = STATE(3309), - [sym__expression_parenthesized] = STATE(3309), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3309), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(263), + [sym_ctrl_if_parenthesized] = STATE(3279), + [sym_block] = STATE(3280), + [sym__expression_parenthesized] = STATE(3280), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(305), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3280), [sym_comment] = STATE(256), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66540,7 +66750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -66568,41 +66778,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(257)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3330), - [sym_block] = STATE(3333), - [sym__expression_parenthesized] = STATE(3333), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3333), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3273), + [sym_block] = STATE(3363), + [sym__expression_parenthesized] = STATE(3363), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(305), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3363), [sym_comment] = STATE(257), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66633,7 +66843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -66661,41 +66871,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(258)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(264), - [sym_ctrl_if_parenthesized] = STATE(3330), - [sym_block] = STATE(3333), - [sym__expression_parenthesized] = STATE(3333), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3333), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(203), + [sym_ctrl_if_parenthesized] = STATE(3273), + [sym_block] = STATE(3363), + [sym__expression_parenthesized] = STATE(3363), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(305), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3363), [sym_comment] = STATE(258), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66726,7 +66936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -66754,41 +66964,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(259)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(196), - [sym_ctrl_if_parenthesized] = STATE(3307), - [sym_block] = STATE(3311), - [sym__expression_parenthesized] = STATE(3311), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3311), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3340), + [sym_block] = STATE(3393), + [sym__expression_parenthesized] = STATE(3393), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(305), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3393), [sym_comment] = STATE(259), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66819,7 +67029,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -66847,41 +67057,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(260)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3313), - [sym_block] = STATE(3329), - [sym__expression_parenthesized] = STATE(3329), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3329), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(262), + [sym_ctrl_if_parenthesized] = STATE(3340), + [sym_block] = STATE(3393), + [sym__expression_parenthesized] = STATE(3393), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(305), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3393), [sym_comment] = STATE(260), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66912,7 +67122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -66940,41 +67150,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(261)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(197), - [sym_ctrl_if_parenthesized] = STATE(3313), - [sym_block] = STATE(3329), - [sym__expression_parenthesized] = STATE(3329), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3329), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3346), + [sym_block] = STATE(3295), + [sym__expression_parenthesized] = STATE(3295), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3295), [sym_comment] = STATE(261), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66990,7 +67200,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1262), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -67005,17 +67215,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67033,41 +67243,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(262)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3349), - [sym_block] = STATE(3352), - [sym__expression_parenthesized] = STATE(3352), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3352), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3329), + [sym_block] = STATE(3331), + [sym__expression_parenthesized] = STATE(3331), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(305), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3331), [sym_comment] = STATE(262), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67098,7 +67308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -67126,41 +67336,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(263)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(230), - [sym_ctrl_if_parenthesized] = STATE(3349), - [sym_block] = STATE(3352), - [sym__expression_parenthesized] = STATE(3352), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3352), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3394), + [sym_block] = STATE(3311), + [sym__expression_parenthesized] = STATE(3311), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(305), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3311), [sym_comment] = STATE(263), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67191,7 +67401,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -67219,41 +67429,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(264)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3222), - [sym_block] = STATE(3223), - [sym__expression_parenthesized] = STATE(3223), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3223), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3391), + [sym_block] = STATE(3354), + [sym__expression_parenthesized] = STATE(3354), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(305), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3354), [sym_comment] = STATE(264), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67284,7 +67494,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -67312,41 +67522,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(265)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(199), - [sym_ctrl_if_parenthesized] = STATE(3222), - [sym_block] = STATE(3223), - [sym__expression_parenthesized] = STATE(3223), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3223), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(201), + [sym_ctrl_if_parenthesized] = STATE(3391), + [sym_block] = STATE(3354), + [sym__expression_parenthesized] = STATE(3354), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(305), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3354), [sym_comment] = STATE(265), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67377,7 +67587,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -67405,41 +67615,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(266)] = { - [sym_cmd_identifier] = STATE(2905), - [aux_sym__repeat_newline] = STATE(1405), - [sym_ctrl_if_parenthesized] = STATE(3330), - [sym_block] = STATE(3333), - [sym__expression_parenthesized] = STATE(3333), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2130), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3333), + [sym_cmd_identifier] = STATE(2889), + [aux_sym__repeat_newline] = STATE(1403), + [sym_ctrl_if_parenthesized] = STATE(3346), + [sym_block] = STATE(3295), + [sym__expression_parenthesized] = STATE(3295), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2124), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(312), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3295), [sym_comment] = STATE(266), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67455,7 +67665,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1022), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -67470,7 +67680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -67499,6 +67709,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(267)] = { [sym_comment] = STATE(267), + [ts_builtin_sym_end] = ACTIONS(741), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -67548,7 +67759,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_RBRACE] = ACTIONS(739), [anon_sym_STAR2] = ACTIONS(739), [anon_sym_and2] = ACTIONS(739), [anon_sym_xor2] = ACTIONS(739), @@ -67591,7 +67801,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(268)] = { [sym_comment] = STATE(268), - [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -67641,6 +67850,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), [anon_sym_and2] = ACTIONS(747), [anon_sym_xor2] = ACTIONS(747), @@ -67730,9 +67940,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_RPAREN] = ACTIONS(739), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(739), [anon_sym_STAR2] = ACTIONS(739), [anon_sym_and2] = ACTIONS(739), [anon_sym_xor2] = ACTIONS(739), @@ -67775,94 +67985,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(270)] = { [sym_comment] = STATE(270), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1288), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_RPAREN] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT] = ACTIONS(1288), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), [aux_sym__immediate_decimal_token5] = ACTIONS(1290), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, [STATE(271)] = { @@ -67914,9 +68124,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), [anon_sym_and2] = ACTIONS(747), [anon_sym_xor2] = ACTIONS(747), @@ -67959,7 +68169,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(272)] = { [sym_comment] = STATE(272), - [ts_builtin_sym_end] = ACTIONS(741), + [ts_builtin_sym_end] = ACTIONS(749), + [anon_sym_in] = ACTIONS(747), + [anon_sym_STAR_STAR] = ACTIONS(749), + [anon_sym_PLUS_PLUS] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(747), + [anon_sym_SLASH] = ACTIONS(747), + [anon_sym_mod] = ACTIONS(749), + [anon_sym_SLASH_SLASH] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(747), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_bit_DASHshl] = ACTIONS(749), + [anon_sym_bit_DASHshr] = ACTIONS(749), + [anon_sym_EQ_TILDE] = ACTIONS(749), + [anon_sym_BANG_TILDE] = ACTIONS(749), + [anon_sym_like] = ACTIONS(749), + [anon_sym_not_DASHlike] = ACTIONS(749), + [anon_sym_bit_DASHand] = ACTIONS(749), + [anon_sym_bit_DASHxor] = ACTIONS(749), + [anon_sym_bit_DASHor] = ACTIONS(749), + [anon_sym_and] = ACTIONS(749), + [anon_sym_xor] = ACTIONS(749), + [anon_sym_or] = ACTIONS(749), + [anon_sym_in2] = ACTIONS(749), + [anon_sym_not_DASHin] = ACTIONS(749), + [anon_sym_has] = ACTIONS(749), + [anon_sym_not_DASHhas] = ACTIONS(749), + [anon_sym_starts_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), + [anon_sym_ends_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(749), + [anon_sym_BANG_EQ] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_LT_EQ] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_EQ] = ACTIONS(749), + [aux_sym_cmd_identifier_token6] = ACTIONS(747), + [sym__newline] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_err_GT_PIPE] = ACTIONS(747), + [anon_sym_out_GT_PIPE] = ACTIONS(747), + [anon_sym_e_GT_PIPE] = ACTIONS(747), + [anon_sym_o_GT_PIPE] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(747), + [anon_sym_xor2] = ACTIONS(747), + [anon_sym_or2] = ACTIONS(747), + [anon_sym_not_DASHin2] = ACTIONS(747), + [anon_sym_has2] = ACTIONS(747), + [anon_sym_not_DASHhas2] = ACTIONS(747), + [anon_sym_starts_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), + [anon_sym_ends_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), + [anon_sym_EQ_EQ2] = ACTIONS(747), + [anon_sym_BANG_EQ2] = ACTIONS(747), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(747), + [anon_sym_GT_EQ2] = ACTIONS(747), + [anon_sym_EQ_TILDE2] = ACTIONS(747), + [anon_sym_BANG_TILDE2] = ACTIONS(747), + [anon_sym_like2] = ACTIONS(747), + [anon_sym_not_DASHlike2] = ACTIONS(747), + [anon_sym_STAR_STAR2] = ACTIONS(747), + [anon_sym_PLUS_PLUS2] = ACTIONS(747), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(747), + [anon_sym_SLASH_SLASH2] = ACTIONS(747), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(747), + [anon_sym_bit_DASHshr2] = ACTIONS(747), + [anon_sym_bit_DASHand2] = ACTIONS(747), + [anon_sym_bit_DASHxor2] = ACTIONS(747), + [anon_sym_bit_DASHor2] = ACTIONS(747), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token1] = ACTIONS(1296), + [aux_sym__immediate_decimal_token5] = ACTIONS(1298), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(273)] = { + [sym_comment] = STATE(273), + [anon_sym_in] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(773), + [anon_sym_SLASH_SLASH] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_bit_DASHshl] = ACTIONS(773), + [anon_sym_bit_DASHshr] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_BANG_TILDE] = ACTIONS(773), + [anon_sym_like] = ACTIONS(773), + [anon_sym_not_DASHlike] = ACTIONS(773), + [anon_sym_bit_DASHand] = ACTIONS(773), + [anon_sym_bit_DASHxor] = ACTIONS(773), + [anon_sym_bit_DASHor] = ACTIONS(773), + [anon_sym_and] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(773), + [anon_sym_or] = ACTIONS(773), + [anon_sym_in2] = ACTIONS(773), + [anon_sym_not_DASHin] = ACTIONS(773), + [anon_sym_has] = ACTIONS(773), + [anon_sym_not_DASHhas] = ACTIONS(773), + [anon_sym_starts_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), + [anon_sym_ends_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [aux_sym_cmd_identifier_token6] = ACTIONS(771), + [sym__newline] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_err_GT_PIPE] = ACTIONS(771), + [anon_sym_out_GT_PIPE] = ACTIONS(771), + [anon_sym_e_GT_PIPE] = ACTIONS(771), + [anon_sym_o_GT_PIPE] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_RPAREN] = ACTIONS(771), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(771), + [anon_sym_xor2] = ACTIONS(771), + [anon_sym_or2] = ACTIONS(771), + [anon_sym_not_DASHin2] = ACTIONS(771), + [anon_sym_has2] = ACTIONS(771), + [anon_sym_not_DASHhas2] = ACTIONS(771), + [anon_sym_starts_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), + [anon_sym_ends_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), + [anon_sym_EQ_EQ2] = ACTIONS(771), + [anon_sym_BANG_EQ2] = ACTIONS(771), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(771), + [anon_sym_GT_EQ2] = ACTIONS(771), + [anon_sym_EQ_TILDE2] = ACTIONS(771), + [anon_sym_BANG_TILDE2] = ACTIONS(771), + [anon_sym_like2] = ACTIONS(771), + [anon_sym_not_DASHlike2] = ACTIONS(771), + [anon_sym_STAR_STAR2] = ACTIONS(771), + [anon_sym_PLUS_PLUS2] = ACTIONS(771), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(771), + [anon_sym_SLASH_SLASH2] = ACTIONS(771), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(771), + [anon_sym_bit_DASHshr2] = ACTIONS(771), + [anon_sym_bit_DASHand2] = ACTIONS(771), + [anon_sym_bit_DASHxor2] = ACTIONS(771), + [anon_sym_bit_DASHor2] = ACTIONS(771), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [aux_sym__immediate_decimal_token5] = ACTIONS(1300), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(274)] = { + [sym_comment] = STATE(274), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -68009,6 +68401,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(739), [anon_sym_STAR2] = ACTIONS(739), [anon_sym_and2] = ACTIONS(739), [anon_sym_xor2] = ACTIONS(739), @@ -68041,16 +68434,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1296), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1298), + [aux_sym__immediate_decimal_token5] = ACTIONS(1286), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(273)] = { - [sym_comment] = STATE(273), + [STATE(275)] = { + [sym_cmd_identifier] = STATE(2889), + [sym_ctrl_if] = STATE(3206), + [sym_block] = STATE(3207), + [sym__expression] = STATE(3207), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2221), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(294), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3207), + [sym_comment] = STATE(275), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(269), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1246), + [anon_sym_false] = ACTIONS(1246), + [anon_sym_null] = ACTIONS(1248), + [aux_sym_cmd_identifier_token3] = ACTIONS(1250), + [aux_sym_cmd_identifier_token4] = ACTIONS(1250), + [aux_sym_cmd_identifier_token5] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1302), + [aux_sym__val_number_decimal_token2] = ACTIONS(1304), + [aux_sym__val_number_decimal_token3] = ACTIONS(1306), + [aux_sym__val_number_decimal_token4] = ACTIONS(1306), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(276)] = { + [sym_comment] = STATE(276), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -68135,284 +68618,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1300), + [aux_sym__immediate_decimal_token5] = ACTIONS(1308), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(274)] = { - [sym_cmd_identifier] = STATE(2905), - [sym_ctrl_if] = STATE(3167), - [sym_block] = STATE(3136), - [sym__expression] = STATE(3136), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3136), - [sym_comment] = STATE(274), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(275)] = { - [sym_cmd_identifier] = STATE(2911), - [sym__expression_parenthesized] = STATE(2260), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3232), - [sym_comment] = STATE(275), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1390), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(276)] = { - [sym_cmd_identifier] = STATE(2905), - [sym_ctrl_if] = STATE(3167), - [sym_block] = STATE(3136), - [sym__expression] = STATE(3136), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(307), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3136), - [sym_comment] = STATE(276), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1302), - [aux_sym__val_number_decimal_token2] = ACTIONS(1304), - [aux_sym__val_number_decimal_token3] = ACTIONS(1306), - [aux_sym__val_number_decimal_token4] = ACTIONS(1306), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, [STATE(277)] = { [sym_comment] = STATE(277), [anon_sym_in] = ACTIONS(739), @@ -68496,16 +68706,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_DOT] = ACTIONS(1310), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1310), + [aux_sym__immediate_decimal_token5] = ACTIONS(1312), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, [STATE(278)] = { + [sym_cmd_identifier] = STATE(2712), + [sym__expression] = STATE(2255), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(142), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3191), [sym_comment] = STATE(278), + [aux_sym_pipe_element_repeat2] = STATE(1388), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1314), + [aux_sym__val_number_decimal_token2] = ACTIONS(1316), + [aux_sym__val_number_decimal_token3] = ACTIONS(1318), + [aux_sym__val_number_decimal_token4] = ACTIONS(1318), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(279)] = { + [sym_comment] = STATE(279), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -68589,139 +68890,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1312), - [aux_sym__immediate_decimal_token5] = ACTIONS(1314), + [aux_sym__immediate_decimal_token1] = ACTIONS(1320), + [aux_sym__immediate_decimal_token5] = ACTIONS(1322), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(279)] = { - [sym_comment] = STATE(279), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_RBRACE] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1278), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(280)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__expression] = STATE(2254), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(141), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3079), + [sym_cmd_identifier] = STATE(2889), + [sym_ctrl_if] = STATE(3206), + [sym_block] = STATE(3207), + [sym__expression] = STATE(3207), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2221), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3207), [sym_comment] = STATE(280), - [aux_sym_pipe_element_repeat2] = STATE(1392), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(1324), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1246), + [anon_sym_false] = ACTIONS(1246), + [anon_sym_null] = ACTIONS(1248), + [aux_sym_cmd_identifier_token3] = ACTIONS(1250), + [aux_sym_cmd_identifier_token4] = ACTIONS(1250), + [aux_sym_cmd_identifier_token5] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(281)] = { + [sym_cmd_identifier] = STATE(2712), + [sym__expression] = STATE(2255), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(121), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3191), + [sym_comment] = STATE(281), + [aux_sym_pipe_element_repeat2] = STATE(1388), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -68750,17 +69051,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1316), - [aux_sym__val_number_decimal_token2] = ACTIONS(1318), - [aux_sym__val_number_decimal_token3] = ACTIONS(1320), - [aux_sym__val_number_decimal_token4] = ACTIONS(1320), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -68777,42 +69078,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(281)] = { - [sym_cmd_identifier] = STATE(2895), - [sym__expression] = STATE(2262), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2218), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(132), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3334), - [sym_comment] = STATE(281), - [aux_sym_pipe_element_repeat2] = STATE(1392), + [STATE(282)] = { + [sym_cmd_identifier] = STATE(2712), + [sym__expression] = STATE(2255), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3191), + [sym_comment] = STATE(282), + [aux_sym_pipe_element_repeat2] = STATE(1388), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(283)] = { + [sym_cmd_identifier] = STATE(2889), + [sym_ctrl_if] = STATE(3206), + [sym_block] = STATE(3207), + [sym__expression] = STATE(3207), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2221), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(312), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3207), + [sym_comment] = STATE(283), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1246), + [anon_sym_false] = ACTIONS(1246), + [anon_sym_null] = ACTIONS(1248), + [aux_sym_cmd_identifier_token3] = ACTIONS(1250), + [aux_sym_cmd_identifier_token4] = ACTIONS(1250), + [aux_sym_cmd_identifier_token5] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(284)] = { + [sym_cmd_identifier] = STATE(2951), + [sym__expression] = STATE(2258), + [sym_expr_unary] = STATE(1276), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1276), + [sym__expr_binary_expression] = STATE(2222), + [sym_expr_parenthesized] = STATE(919), + [sym_val_range] = STATE(1276), + [sym__value] = STATE(1276), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(1294), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(120), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3292), + [sym_comment] = STATE(284), + [aux_sym_pipe_element_repeat2] = STATE(1388), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), [anon_sym_let] = ACTIONS(39), @@ -68841,7 +69324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_DOT_DOT] = ACTIONS(69), @@ -68868,133 +69351,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(282)] = { - [sym_comment] = STATE(282), - [ts_builtin_sym_end] = ACTIONS(741), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1298), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(283)] = { - [sym_cmd_identifier] = STATE(2911), - [sym__expression_parenthesized] = STATE(2260), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3232), - [sym_comment] = STATE(283), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1390), + [STATE(285)] = { + [sym_cmd_identifier] = STATE(2712), + [sym__expression] = STATE(2255), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2220), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4687), + [sym_command] = STATE(3191), + [sym_comment] = STATE(285), + [aux_sym_pipe_element_repeat2] = STATE(1388), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69023,7 +69415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -69046,12 +69438,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(286)] = { + [sym_cmd_identifier] = STATE(2950), + [sym__expression_parenthesized] = STATE(2261), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(142), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3355), + [sym_comment] = STATE(286), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1387), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1314), + [aux_sym__val_number_decimal_token2] = ACTIONS(1316), + [aux_sym__val_number_decimal_token3] = ACTIONS(1318), + [aux_sym__val_number_decimal_token4] = ACTIONS(1318), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(284)] = { - [sym_comment] = STATE(284), + [STATE(287)] = { + [sym_comment] = STATE(287), [ts_builtin_sym_end] = ACTIONS(773), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), @@ -69136,47 +69619,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1322), + [aux_sym__immediate_decimal_token5] = ACTIONS(1326), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(285)] = { - [sym_cmd_identifier] = STATE(2905), - [sym_ctrl_if] = STATE(3167), - [sym_block] = STATE(3136), - [sym__expression] = STATE(3136), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(319), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3136), - [sym_comment] = STATE(285), + [STATE(288)] = { + [sym_cmd_identifier] = STATE(3042), + [sym_ctrl_if] = STATE(3265), + [sym_block] = STATE(3269), + [sym__expression] = STATE(3269), + [sym_expr_unary] = STATE(1276), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1276), + [sym__expr_binary_expression] = STATE(2224), + [sym_expr_parenthesized] = STATE(919), + [sym_val_range] = STATE(1276), + [sym__value] = STATE(1276), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(1294), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(298), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_command] = STATE(3269), + [sym_comment] = STATE(288), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(39), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_const] = ACTIONS(39), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(39), + [anon_sym_use] = ACTIONS(39), + [anon_sym_export_DASHenv] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(39), + [anon_sym_for] = ACTIONS(39), + [anon_sym_loop] = ACTIONS(39), + [anon_sym_while] = ACTIONS(39), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(39), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(39), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(1328), + [anon_sym_false] = ACTIONS(1328), + [anon_sym_null] = ACTIONS(1330), + [aux_sym_cmd_identifier_token3] = ACTIONS(1332), + [aux_sym_cmd_identifier_token4] = ACTIONS(1332), + [aux_sym_cmd_identifier_token5] = ACTIONS(1332), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(69), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(1336), + [aux_sym__val_number_decimal_token2] = ACTIONS(1338), + [aux_sym__val_number_decimal_token3] = ACTIONS(1340), + [aux_sym__val_number_decimal_token4] = ACTIONS(1340), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(289)] = { + [sym_cmd_identifier] = STATE(2950), + [sym__expression_parenthesized] = STATE(2261), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3355), + [sym_comment] = STATE(289), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1387), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69191,7 +69765,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1324), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(343), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(290)] = { + [sym_cmd_identifier] = STATE(2889), + [sym_ctrl_if] = STATE(3206), + [sym_block] = STATE(3207), + [sym__expression] = STATE(3207), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2221), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(305), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_command] = STATE(3207), + [sym_comment] = STATE(290), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(457), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), @@ -69205,17 +69870,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1250), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(1254), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1256), + [aux_sym__val_number_decimal_token2] = ACTIONS(1258), + [aux_sym__val_number_decimal_token3] = ACTIONS(1260), + [aux_sym__val_number_decimal_token4] = ACTIONS(1260), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -69232,11 +69897,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(286)] = { - [sym_comment] = STATE(286), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), + [STATE(291)] = { + [sym_cmd_identifier] = STATE(2950), + [sym__expression_parenthesized] = STATE(2261), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2127), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_env_var] = STATE(4409), + [sym__command_parenthesized] = STATE(3355), + [sym_comment] = STATE(291), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1387), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(271), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(343), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(292)] = { + [sym_comment] = STATE(292), + [ts_builtin_sym_end] = ACTIONS(741), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), [anon_sym_STAR] = ACTIONS(739), [anon_sym_SLASH] = ACTIONS(739), [anon_sym_mod] = ACTIONS(741), @@ -69281,7 +70038,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_RPAREN] = ACTIONS(739), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(739), [anon_sym_STAR2] = ACTIONS(739), @@ -69318,740 +70074,284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1286), + [aux_sym__immediate_decimal_token5] = ACTIONS(1278), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(287)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__expression] = STATE(2254), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(136), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3079), - [sym_comment] = STATE(287), - [aux_sym_pipe_element_repeat2] = STATE(1392), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1026), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(288)] = { - [sym_cmd_identifier] = STATE(2905), - [sym_ctrl_if] = STATE(3167), - [sym_block] = STATE(3136), - [sym__expression] = STATE(3136), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(311), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_command] = STATE(3136), - [sym_comment] = STATE(288), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(289)] = { - [sym_cmd_identifier] = STATE(2911), - [sym__expression_parenthesized] = STATE(2260), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2123), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(141), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4476), - [sym__command_parenthesized] = STATE(3232), - [sym_comment] = STATE(289), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1390), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1316), - [aux_sym__val_number_decimal_token2] = ACTIONS(1318), - [aux_sym__val_number_decimal_token3] = ACTIONS(1320), - [aux_sym__val_number_decimal_token4] = ACTIONS(1320), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(290)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__expression] = STATE(2254), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(116), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3079), - [sym_comment] = STATE(290), - [aux_sym_pipe_element_repeat2] = STATE(1392), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(291)] = { - [sym_cmd_identifier] = STATE(2929), - [sym_ctrl_if] = STATE(3301), - [sym_block] = STATE(3302), - [sym__expression] = STATE(3302), - [sym_expr_unary] = STATE(1268), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1268), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(939), - [sym_val_range] = STATE(1268), - [sym__value] = STATE(1268), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1303), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(306), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_command] = STATE(3302), - [sym_comment] = STATE(291), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_const] = ACTIONS(39), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(39), - [anon_sym_use] = ACTIONS(39), - [anon_sym_export_DASHenv] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_for] = ACTIONS(39), - [anon_sym_loop] = ACTIONS(39), - [anon_sym_while] = ACTIONS(39), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(39), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(39), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(1326), - [anon_sym_false] = ACTIONS(1326), - [anon_sym_null] = ACTIONS(1328), - [aux_sym_cmd_identifier_token3] = ACTIONS(1330), - [aux_sym_cmd_identifier_token4] = ACTIONS(1330), - [aux_sym_cmd_identifier_token5] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_DOT_DOT] = ACTIONS(69), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(1334), - [aux_sym__val_number_decimal_token2] = ACTIONS(1336), - [aux_sym__val_number_decimal_token3] = ACTIONS(1338), - [aux_sym__val_number_decimal_token4] = ACTIONS(1338), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(292)] = { - [sym_cmd_identifier] = STATE(2711), - [sym__expression] = STATE(2254), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2213), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_env_var] = STATE(4750), - [sym_command] = STATE(3079), - [sym_comment] = STATE(292), - [aux_sym_pipe_element_repeat2] = STATE(1392), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, [STATE(293)] = { [sym_comment] = STATE(293), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_RPAREN] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1340), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_RPAREN] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token5] = ACTIONS(1290), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, [STATE(294)] = { [sym_comment] = STATE(294), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_RPAREN] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), + [anon_sym_in] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(906), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(908), + [anon_sym_SLASH] = ACTIONS(908), + [anon_sym_mod] = ACTIONS(906), + [anon_sym_SLASH_SLASH] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(908), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_bit_DASHshl] = ACTIONS(906), + [anon_sym_bit_DASHshr] = ACTIONS(906), + [anon_sym_EQ_TILDE] = ACTIONS(906), + [anon_sym_BANG_TILDE] = ACTIONS(906), + [anon_sym_like] = ACTIONS(906), + [anon_sym_not_DASHlike] = ACTIONS(906), + [anon_sym_bit_DASHand] = ACTIONS(906), + [anon_sym_bit_DASHxor] = ACTIONS(906), + [anon_sym_bit_DASHor] = ACTIONS(906), + [anon_sym_and] = ACTIONS(906), + [anon_sym_xor] = ACTIONS(906), + [anon_sym_or] = ACTIONS(906), + [anon_sym_in2] = ACTIONS(906), + [anon_sym_not_DASHin] = ACTIONS(906), + [anon_sym_has] = ACTIONS(906), + [anon_sym_not_DASHhas] = ACTIONS(906), + [anon_sym_starts_DASHwith] = ACTIONS(906), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(906), + [anon_sym_ends_DASHwith] = ACTIONS(906), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(906), + [anon_sym_EQ_EQ] = ACTIONS(906), + [anon_sym_BANG_EQ] = ACTIONS(906), + [anon_sym_LT] = ACTIONS(908), + [anon_sym_LT_EQ] = ACTIONS(906), + [anon_sym_GT] = ACTIONS(908), + [anon_sym_GT_EQ] = ACTIONS(906), + [aux_sym_cmd_identifier_token6] = ACTIONS(910), + [sym__newline] = ACTIONS(793), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_err_GT_PIPE] = ACTIONS(793), + [anon_sym_out_GT_PIPE] = ACTIONS(793), + [anon_sym_e_GT_PIPE] = ACTIONS(793), + [anon_sym_o_GT_PIPE] = ACTIONS(793), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(793), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(793), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(793), + [anon_sym_GT2] = ACTIONS(793), + [anon_sym_DASH2] = ACTIONS(793), + [anon_sym_RBRACE] = ACTIONS(793), + [anon_sym_STAR2] = ACTIONS(793), + [anon_sym_and2] = ACTIONS(793), + [anon_sym_xor2] = ACTIONS(793), + [anon_sym_or2] = ACTIONS(793), + [anon_sym_not_DASHin2] = ACTIONS(793), + [anon_sym_has2] = ACTIONS(793), + [anon_sym_not_DASHhas2] = ACTIONS(793), + [anon_sym_starts_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), + [anon_sym_ends_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), + [anon_sym_EQ_EQ2] = ACTIONS(793), + [anon_sym_BANG_EQ2] = ACTIONS(793), + [anon_sym_LT2] = ACTIONS(793), + [anon_sym_LT_EQ2] = ACTIONS(793), + [anon_sym_GT_EQ2] = ACTIONS(793), + [anon_sym_EQ_TILDE2] = ACTIONS(793), + [anon_sym_BANG_TILDE2] = ACTIONS(793), + [anon_sym_like2] = ACTIONS(793), + [anon_sym_not_DASHlike2] = ACTIONS(793), + [anon_sym_STAR_STAR2] = ACTIONS(793), + [anon_sym_PLUS_PLUS2] = ACTIONS(793), + [anon_sym_SLASH2] = ACTIONS(793), + [anon_sym_mod2] = ACTIONS(793), + [anon_sym_SLASH_SLASH2] = ACTIONS(793), + [anon_sym_PLUS2] = ACTIONS(793), + [anon_sym_bit_DASHshl2] = ACTIONS(793), + [anon_sym_bit_DASHshr2] = ACTIONS(793), + [anon_sym_bit_DASHand2] = ACTIONS(793), + [anon_sym_bit_DASHxor2] = ACTIONS(793), + [anon_sym_bit_DASHor2] = ACTIONS(793), + [anon_sym_DOT_DOT2] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(803), + [anon_sym_DOT_DOT_LT2] = ACTIONS(803), [sym_filesize_unit] = ACTIONS(1342), [sym_duration_unit] = ACTIONS(1344), [anon_sym_POUND] = ACTIONS(103), }, [STATE(295)] = { [sym_comment] = STATE(295), + [anon_sym_in] = ACTIONS(874), + [anon_sym_STAR_STAR] = ACTIONS(876), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(874), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_mod] = ACTIONS(876), + [anon_sym_SLASH_SLASH] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(876), + [anon_sym_bit_DASHshl] = ACTIONS(876), + [anon_sym_bit_DASHshr] = ACTIONS(876), + [anon_sym_EQ_TILDE] = ACTIONS(876), + [anon_sym_BANG_TILDE] = ACTIONS(876), + [anon_sym_like] = ACTIONS(876), + [anon_sym_not_DASHlike] = ACTIONS(876), + [anon_sym_bit_DASHand] = ACTIONS(876), + [anon_sym_bit_DASHxor] = ACTIONS(876), + [anon_sym_bit_DASHor] = ACTIONS(876), + [anon_sym_and] = ACTIONS(876), + [anon_sym_xor] = ACTIONS(876), + [anon_sym_or] = ACTIONS(876), + [anon_sym_in2] = ACTIONS(876), + [anon_sym_not_DASHin] = ACTIONS(876), + [anon_sym_has] = ACTIONS(876), + [anon_sym_not_DASHhas] = ACTIONS(876), + [anon_sym_starts_DASHwith] = ACTIONS(876), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(876), + [anon_sym_ends_DASHwith] = ACTIONS(876), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(876), + [anon_sym_EQ_EQ] = ACTIONS(876), + [anon_sym_BANG_EQ] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_EQ] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_GT_EQ] = ACTIONS(876), + [aux_sym_cmd_identifier_token6] = ACTIONS(874), + [sym__newline] = ACTIONS(874), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_PIPE] = ACTIONS(874), + [anon_sym_err_GT_PIPE] = ACTIONS(874), + [anon_sym_out_GT_PIPE] = ACTIONS(874), + [anon_sym_e_GT_PIPE] = ACTIONS(874), + [anon_sym_o_GT_PIPE] = ACTIONS(874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(874), + [anon_sym_GT2] = ACTIONS(874), + [anon_sym_DASH2] = ACTIONS(874), + [anon_sym_RBRACE] = ACTIONS(874), + [anon_sym_STAR2] = ACTIONS(874), + [anon_sym_and2] = ACTIONS(874), + [anon_sym_xor2] = ACTIONS(874), + [anon_sym_or2] = ACTIONS(874), + [anon_sym_not_DASHin2] = ACTIONS(874), + [anon_sym_has2] = ACTIONS(874), + [anon_sym_not_DASHhas2] = ACTIONS(874), + [anon_sym_starts_DASHwith2] = ACTIONS(874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(874), + [anon_sym_ends_DASHwith2] = ACTIONS(874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(874), + [anon_sym_EQ_EQ2] = ACTIONS(874), + [anon_sym_BANG_EQ2] = ACTIONS(874), + [anon_sym_LT2] = ACTIONS(874), + [anon_sym_LT_EQ2] = ACTIONS(874), + [anon_sym_GT_EQ2] = ACTIONS(874), + [anon_sym_EQ_TILDE2] = ACTIONS(874), + [anon_sym_BANG_TILDE2] = ACTIONS(874), + [anon_sym_like2] = ACTIONS(874), + [anon_sym_not_DASHlike2] = ACTIONS(874), + [anon_sym_STAR_STAR2] = ACTIONS(874), + [anon_sym_PLUS_PLUS2] = ACTIONS(874), + [anon_sym_SLASH2] = ACTIONS(874), + [anon_sym_mod2] = ACTIONS(874), + [anon_sym_SLASH_SLASH2] = ACTIONS(874), + [anon_sym_PLUS2] = ACTIONS(874), + [anon_sym_bit_DASHshl2] = ACTIONS(874), + [anon_sym_bit_DASHshr2] = ACTIONS(874), + [anon_sym_bit_DASHand2] = ACTIONS(874), + [anon_sym_bit_DASHxor2] = ACTIONS(874), + [anon_sym_bit_DASHor2] = ACTIONS(874), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(874), + [sym_duration_unit] = ACTIONS(876), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(296)] = { + [sym_comment] = STATE(296), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -70089,7 +70389,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(741), [aux_sym_cmd_identifier_token6] = ACTIONS(739), [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), [anon_sym_PIPE] = ACTIONS(739), [anon_sym_err_GT_PIPE] = ACTIONS(739), [anon_sym_out_GT_PIPE] = ACTIONS(739), @@ -70133,15 +70432,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT] = ACTIONS(1346), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1310), + [aux_sym__immediate_decimal_token5] = ACTIONS(1348), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(296)] = { - [sym_comment] = STATE(296), + [STATE(297)] = { + [sym_comment] = STATE(297), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -70224,14 +70524,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1346), - [aux_sym__immediate_decimal_token5] = ACTIONS(1348), + [aux_sym__immediate_decimal_token1] = ACTIONS(1350), + [aux_sym__immediate_decimal_token5] = ACTIONS(1352), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(297)] = { - [sym_comment] = STATE(297), + [STATE(298)] = { + [sym_comment] = STATE(298), + [ts_builtin_sym_end] = ACTIONS(890), + [anon_sym_in] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(892), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_SLASH] = ACTIONS(894), + [anon_sym_mod] = ACTIONS(892), + [anon_sym_SLASH_SLASH] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(892), + [anon_sym_bit_DASHshl] = ACTIONS(892), + [anon_sym_bit_DASHshr] = ACTIONS(892), + [anon_sym_EQ_TILDE] = ACTIONS(892), + [anon_sym_BANG_TILDE] = ACTIONS(892), + [anon_sym_like] = ACTIONS(892), + [anon_sym_not_DASHlike] = ACTIONS(892), + [anon_sym_bit_DASHand] = ACTIONS(892), + [anon_sym_bit_DASHxor] = ACTIONS(892), + [anon_sym_bit_DASHor] = ACTIONS(892), + [anon_sym_and] = ACTIONS(892), + [anon_sym_xor] = ACTIONS(892), + [anon_sym_or] = ACTIONS(892), + [anon_sym_in2] = ACTIONS(892), + [anon_sym_not_DASHin] = ACTIONS(892), + [anon_sym_has] = ACTIONS(892), + [anon_sym_not_DASHhas] = ACTIONS(892), + [anon_sym_starts_DASHwith] = ACTIONS(892), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(892), + [anon_sym_ends_DASHwith] = ACTIONS(892), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(892), + [anon_sym_EQ_EQ] = ACTIONS(892), + [anon_sym_BANG_EQ] = ACTIONS(892), + [anon_sym_LT] = ACTIONS(894), + [anon_sym_LT_EQ] = ACTIONS(892), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_GT_EQ] = ACTIONS(892), + [aux_sym_cmd_identifier_token6] = ACTIONS(896), + [sym__newline] = ACTIONS(793), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_err_GT_PIPE] = ACTIONS(793), + [anon_sym_out_GT_PIPE] = ACTIONS(793), + [anon_sym_e_GT_PIPE] = ACTIONS(793), + [anon_sym_o_GT_PIPE] = ACTIONS(793), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(793), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(793), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(793), + [anon_sym_GT2] = ACTIONS(793), + [anon_sym_DASH2] = ACTIONS(793), + [anon_sym_STAR2] = ACTIONS(793), + [anon_sym_and2] = ACTIONS(793), + [anon_sym_xor2] = ACTIONS(793), + [anon_sym_or2] = ACTIONS(793), + [anon_sym_not_DASHin2] = ACTIONS(793), + [anon_sym_has2] = ACTIONS(793), + [anon_sym_not_DASHhas2] = ACTIONS(793), + [anon_sym_starts_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), + [anon_sym_ends_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), + [anon_sym_EQ_EQ2] = ACTIONS(793), + [anon_sym_BANG_EQ2] = ACTIONS(793), + [anon_sym_LT2] = ACTIONS(793), + [anon_sym_LT_EQ2] = ACTIONS(793), + [anon_sym_GT_EQ2] = ACTIONS(793), + [anon_sym_EQ_TILDE2] = ACTIONS(793), + [anon_sym_BANG_TILDE2] = ACTIONS(793), + [anon_sym_like2] = ACTIONS(793), + [anon_sym_not_DASHlike2] = ACTIONS(793), + [anon_sym_STAR_STAR2] = ACTIONS(793), + [anon_sym_PLUS_PLUS2] = ACTIONS(793), + [anon_sym_SLASH2] = ACTIONS(793), + [anon_sym_mod2] = ACTIONS(793), + [anon_sym_SLASH_SLASH2] = ACTIONS(793), + [anon_sym_PLUS2] = ACTIONS(793), + [anon_sym_bit_DASHshl2] = ACTIONS(793), + [anon_sym_bit_DASHshr2] = ACTIONS(793), + [anon_sym_bit_DASHand2] = ACTIONS(793), + [anon_sym_bit_DASHxor2] = ACTIONS(793), + [anon_sym_bit_DASHor2] = ACTIONS(793), + [anon_sym_DOT_DOT2] = ACTIONS(898), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(900), + [anon_sym_DOT_DOT_LT2] = ACTIONS(900), + [sym_filesize_unit] = ACTIONS(1354), + [sym_duration_unit] = ACTIONS(1356), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(299)] = { + [sym_comment] = STATE(299), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -70279,9 +70669,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), [anon_sym_and2] = ACTIONS(747), [anon_sym_xor2] = ACTIONS(747), @@ -70320,9 +70710,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(298)] = { - [sym_comment] = STATE(298), - [ts_builtin_sym_end] = ACTIONS(773), + [STATE(300)] = { + [sym_comment] = STATE(300), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -70370,6 +70759,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_RPAREN] = ACTIONS(771), [anon_sym_GT2] = ACTIONS(771), [anon_sym_DASH2] = ACTIONS(771), [anon_sym_STAR2] = ACTIONS(771), @@ -70410,8 +70800,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_duration_unit] = ACTIONS(773), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(299)] = { - [sym_comment] = STATE(299), + [STATE(301)] = { + [sym_comment] = STATE(301), [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), @@ -70500,368 +70890,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(300)] = { - [sym_comment] = STATE(300), - [ts_builtin_sym_end] = ACTIONS(851), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(301)] = { - [sym_comment] = STATE(301), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_RPAREN] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(302)] = { [sym_comment] = STATE(302), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token5] = ACTIONS(1312), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, [STATE(303)] = { [sym_comment] = STATE(303), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_RPAREN] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(304)] = { - [sym_comment] = STATE(304), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -70909,9 +71029,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), [anon_sym_and2] = ACTIONS(747), [anon_sym_xor2] = ACTIONS(747), @@ -70950,8 +71070,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(304)] = { + [sym_comment] = STATE(304), + [anon_sym_in] = ACTIONS(874), + [anon_sym_STAR_STAR] = ACTIONS(876), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(874), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_mod] = ACTIONS(876), + [anon_sym_SLASH_SLASH] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(876), + [anon_sym_bit_DASHshl] = ACTIONS(876), + [anon_sym_bit_DASHshr] = ACTIONS(876), + [anon_sym_EQ_TILDE] = ACTIONS(876), + [anon_sym_BANG_TILDE] = ACTIONS(876), + [anon_sym_like] = ACTIONS(876), + [anon_sym_not_DASHlike] = ACTIONS(876), + [anon_sym_bit_DASHand] = ACTIONS(876), + [anon_sym_bit_DASHxor] = ACTIONS(876), + [anon_sym_bit_DASHor] = ACTIONS(876), + [anon_sym_and] = ACTIONS(876), + [anon_sym_xor] = ACTIONS(876), + [anon_sym_or] = ACTIONS(876), + [anon_sym_in2] = ACTIONS(876), + [anon_sym_not_DASHin] = ACTIONS(876), + [anon_sym_has] = ACTIONS(876), + [anon_sym_not_DASHhas] = ACTIONS(876), + [anon_sym_starts_DASHwith] = ACTIONS(876), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(876), + [anon_sym_ends_DASHwith] = ACTIONS(876), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(876), + [anon_sym_EQ_EQ] = ACTIONS(876), + [anon_sym_BANG_EQ] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_EQ] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_GT_EQ] = ACTIONS(876), + [aux_sym_cmd_identifier_token6] = ACTIONS(874), + [sym__newline] = ACTIONS(874), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_PIPE] = ACTIONS(874), + [anon_sym_err_GT_PIPE] = ACTIONS(874), + [anon_sym_out_GT_PIPE] = ACTIONS(874), + [anon_sym_e_GT_PIPE] = ACTIONS(874), + [anon_sym_o_GT_PIPE] = ACTIONS(874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(874), + [anon_sym_RPAREN] = ACTIONS(874), + [anon_sym_GT2] = ACTIONS(874), + [anon_sym_DASH2] = ACTIONS(874), + [anon_sym_STAR2] = ACTIONS(874), + [anon_sym_and2] = ACTIONS(874), + [anon_sym_xor2] = ACTIONS(874), + [anon_sym_or2] = ACTIONS(874), + [anon_sym_not_DASHin2] = ACTIONS(874), + [anon_sym_has2] = ACTIONS(874), + [anon_sym_not_DASHhas2] = ACTIONS(874), + [anon_sym_starts_DASHwith2] = ACTIONS(874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(874), + [anon_sym_ends_DASHwith2] = ACTIONS(874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(874), + [anon_sym_EQ_EQ2] = ACTIONS(874), + [anon_sym_BANG_EQ2] = ACTIONS(874), + [anon_sym_LT2] = ACTIONS(874), + [anon_sym_LT_EQ2] = ACTIONS(874), + [anon_sym_GT_EQ2] = ACTIONS(874), + [anon_sym_EQ_TILDE2] = ACTIONS(874), + [anon_sym_BANG_TILDE2] = ACTIONS(874), + [anon_sym_like2] = ACTIONS(874), + [anon_sym_not_DASHlike2] = ACTIONS(874), + [anon_sym_STAR_STAR2] = ACTIONS(874), + [anon_sym_PLUS_PLUS2] = ACTIONS(874), + [anon_sym_SLASH2] = ACTIONS(874), + [anon_sym_mod2] = ACTIONS(874), + [anon_sym_SLASH_SLASH2] = ACTIONS(874), + [anon_sym_PLUS2] = ACTIONS(874), + [anon_sym_bit_DASHshl2] = ACTIONS(874), + [anon_sym_bit_DASHshr2] = ACTIONS(874), + [anon_sym_bit_DASHand2] = ACTIONS(874), + [anon_sym_bit_DASHxor2] = ACTIONS(874), + [anon_sym_bit_DASHor2] = ACTIONS(874), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(874), + [sym_duration_unit] = ACTIONS(876), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(305)] = { [sym_comment] = STATE(305), + [anon_sym_in] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(906), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(908), + [anon_sym_SLASH] = ACTIONS(908), + [anon_sym_mod] = ACTIONS(906), + [anon_sym_SLASH_SLASH] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(908), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_bit_DASHshl] = ACTIONS(906), + [anon_sym_bit_DASHshr] = ACTIONS(906), + [anon_sym_EQ_TILDE] = ACTIONS(906), + [anon_sym_BANG_TILDE] = ACTIONS(906), + [anon_sym_like] = ACTIONS(906), + [anon_sym_not_DASHlike] = ACTIONS(906), + [anon_sym_bit_DASHand] = ACTIONS(906), + [anon_sym_bit_DASHxor] = ACTIONS(906), + [anon_sym_bit_DASHor] = ACTIONS(906), + [anon_sym_and] = ACTIONS(906), + [anon_sym_xor] = ACTIONS(906), + [anon_sym_or] = ACTIONS(906), + [anon_sym_in2] = ACTIONS(906), + [anon_sym_not_DASHin] = ACTIONS(906), + [anon_sym_has] = ACTIONS(906), + [anon_sym_not_DASHhas] = ACTIONS(906), + [anon_sym_starts_DASHwith] = ACTIONS(906), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(906), + [anon_sym_ends_DASHwith] = ACTIONS(906), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(906), + [anon_sym_EQ_EQ] = ACTIONS(906), + [anon_sym_BANG_EQ] = ACTIONS(906), + [anon_sym_LT] = ACTIONS(908), + [anon_sym_LT_EQ] = ACTIONS(906), + [anon_sym_GT] = ACTIONS(908), + [anon_sym_GT_EQ] = ACTIONS(906), + [aux_sym_cmd_identifier_token6] = ACTIONS(910), + [sym__newline] = ACTIONS(793), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_err_GT_PIPE] = ACTIONS(793), + [anon_sym_out_GT_PIPE] = ACTIONS(793), + [anon_sym_e_GT_PIPE] = ACTIONS(793), + [anon_sym_o_GT_PIPE] = ACTIONS(793), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(793), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(793), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(793), + [anon_sym_RPAREN] = ACTIONS(793), + [anon_sym_GT2] = ACTIONS(793), + [anon_sym_DASH2] = ACTIONS(793), + [anon_sym_STAR2] = ACTIONS(793), + [anon_sym_and2] = ACTIONS(793), + [anon_sym_xor2] = ACTIONS(793), + [anon_sym_or2] = ACTIONS(793), + [anon_sym_not_DASHin2] = ACTIONS(793), + [anon_sym_has2] = ACTIONS(793), + [anon_sym_not_DASHhas2] = ACTIONS(793), + [anon_sym_starts_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), + [anon_sym_ends_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), + [anon_sym_EQ_EQ2] = ACTIONS(793), + [anon_sym_BANG_EQ2] = ACTIONS(793), + [anon_sym_LT2] = ACTIONS(793), + [anon_sym_LT_EQ2] = ACTIONS(793), + [anon_sym_GT_EQ2] = ACTIONS(793), + [anon_sym_EQ_TILDE2] = ACTIONS(793), + [anon_sym_BANG_TILDE2] = ACTIONS(793), + [anon_sym_like2] = ACTIONS(793), + [anon_sym_not_DASHlike2] = ACTIONS(793), + [anon_sym_STAR_STAR2] = ACTIONS(793), + [anon_sym_PLUS_PLUS2] = ACTIONS(793), + [anon_sym_SLASH2] = ACTIONS(793), + [anon_sym_mod2] = ACTIONS(793), + [anon_sym_SLASH_SLASH2] = ACTIONS(793), + [anon_sym_PLUS2] = ACTIONS(793), + [anon_sym_bit_DASHshl2] = ACTIONS(793), + [anon_sym_bit_DASHshr2] = ACTIONS(793), + [anon_sym_bit_DASHand2] = ACTIONS(793), + [anon_sym_bit_DASHxor2] = ACTIONS(793), + [anon_sym_bit_DASHor2] = ACTIONS(793), + [anon_sym_DOT_DOT2] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(803), + [anon_sym_DOT_DOT_LT2] = ACTIONS(803), + [sym_filesize_unit] = ACTIONS(1358), + [sym_duration_unit] = ACTIONS(1360), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(306)] = { + [sym_comment] = STATE(306), + [ts_builtin_sym_end] = ACTIONS(773), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -71001,7 +71302,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), [anon_sym_GT2] = ACTIONS(771), [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), [anon_sym_STAR2] = ACTIONS(771), [anon_sym_and2] = ACTIONS(771), [anon_sym_xor2] = ACTIONS(771), @@ -71040,278 +71340,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_duration_unit] = ACTIONS(773), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(306)] = { - [sym_comment] = STATE(306), - [ts_builtin_sym_end] = ACTIONS(968), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(970), - [anon_sym_PLUS_PLUS] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_mod] = ACTIONS(970), - [anon_sym_SLASH_SLASH] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_bit_DASHshl] = ACTIONS(970), - [anon_sym_bit_DASHshr] = ACTIONS(970), - [anon_sym_EQ_TILDE] = ACTIONS(970), - [anon_sym_BANG_TILDE] = ACTIONS(970), - [anon_sym_like] = ACTIONS(970), - [anon_sym_not_DASHlike] = ACTIONS(970), - [anon_sym_bit_DASHand] = ACTIONS(970), - [anon_sym_bit_DASHxor] = ACTIONS(970), - [anon_sym_bit_DASHor] = ACTIONS(970), - [anon_sym_and] = ACTIONS(970), - [anon_sym_xor] = ACTIONS(970), - [anon_sym_or] = ACTIONS(970), - [anon_sym_in2] = ACTIONS(970), - [anon_sym_not_DASHin] = ACTIONS(970), - [anon_sym_has] = ACTIONS(970), - [anon_sym_not_DASHhas] = ACTIONS(970), - [anon_sym_starts_DASHwith] = ACTIONS(970), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(970), - [anon_sym_ends_DASHwith] = ACTIONS(970), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(970), - [anon_sym_EQ_EQ] = ACTIONS(970), - [anon_sym_BANG_EQ] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(972), - [anon_sym_LT_EQ] = ACTIONS(970), - [anon_sym_GT] = ACTIONS(972), - [anon_sym_GT_EQ] = ACTIONS(970), - [aux_sym_cmd_identifier_token6] = ACTIONS(974), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), - [anon_sym_DOT_DOT_LT2] = ACTIONS(978), - [sym_filesize_unit] = ACTIONS(1350), - [sym_duration_unit] = ACTIONS(1352), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(307)] = { [sym_comment] = STATE(307), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(1354), - [sym_duration_unit] = ACTIONS(1356), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(308)] = { - [sym_comment] = STATE(308), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1358), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1360), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(309)] = { - [sym_comment] = STATE(309), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -71400,8 +71430,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_duration_unit] = ACTIONS(773), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(310)] = { - [sym_comment] = STATE(310), + [STATE(308)] = { + [sym_comment] = STATE(308), + [ts_builtin_sym_end] = ACTIONS(876), + [anon_sym_in] = ACTIONS(874), + [anon_sym_STAR_STAR] = ACTIONS(876), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(874), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_mod] = ACTIONS(876), + [anon_sym_SLASH_SLASH] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(876), + [anon_sym_bit_DASHshl] = ACTIONS(876), + [anon_sym_bit_DASHshr] = ACTIONS(876), + [anon_sym_EQ_TILDE] = ACTIONS(876), + [anon_sym_BANG_TILDE] = ACTIONS(876), + [anon_sym_like] = ACTIONS(876), + [anon_sym_not_DASHlike] = ACTIONS(876), + [anon_sym_bit_DASHand] = ACTIONS(876), + [anon_sym_bit_DASHxor] = ACTIONS(876), + [anon_sym_bit_DASHor] = ACTIONS(876), + [anon_sym_and] = ACTIONS(876), + [anon_sym_xor] = ACTIONS(876), + [anon_sym_or] = ACTIONS(876), + [anon_sym_in2] = ACTIONS(876), + [anon_sym_not_DASHin] = ACTIONS(876), + [anon_sym_has] = ACTIONS(876), + [anon_sym_not_DASHhas] = ACTIONS(876), + [anon_sym_starts_DASHwith] = ACTIONS(876), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(876), + [anon_sym_ends_DASHwith] = ACTIONS(876), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(876), + [anon_sym_EQ_EQ] = ACTIONS(876), + [anon_sym_BANG_EQ] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_EQ] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_GT_EQ] = ACTIONS(876), + [aux_sym_cmd_identifier_token6] = ACTIONS(874), + [sym__newline] = ACTIONS(874), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_PIPE] = ACTIONS(874), + [anon_sym_err_GT_PIPE] = ACTIONS(874), + [anon_sym_out_GT_PIPE] = ACTIONS(874), + [anon_sym_e_GT_PIPE] = ACTIONS(874), + [anon_sym_o_GT_PIPE] = ACTIONS(874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(874), + [anon_sym_GT2] = ACTIONS(874), + [anon_sym_DASH2] = ACTIONS(874), + [anon_sym_STAR2] = ACTIONS(874), + [anon_sym_and2] = ACTIONS(874), + [anon_sym_xor2] = ACTIONS(874), + [anon_sym_or2] = ACTIONS(874), + [anon_sym_not_DASHin2] = ACTIONS(874), + [anon_sym_has2] = ACTIONS(874), + [anon_sym_not_DASHhas2] = ACTIONS(874), + [anon_sym_starts_DASHwith2] = ACTIONS(874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(874), + [anon_sym_ends_DASHwith2] = ACTIONS(874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(874), + [anon_sym_EQ_EQ2] = ACTIONS(874), + [anon_sym_BANG_EQ2] = ACTIONS(874), + [anon_sym_LT2] = ACTIONS(874), + [anon_sym_LT_EQ2] = ACTIONS(874), + [anon_sym_GT_EQ2] = ACTIONS(874), + [anon_sym_EQ_TILDE2] = ACTIONS(874), + [anon_sym_BANG_TILDE2] = ACTIONS(874), + [anon_sym_like2] = ACTIONS(874), + [anon_sym_not_DASHlike2] = ACTIONS(874), + [anon_sym_STAR_STAR2] = ACTIONS(874), + [anon_sym_PLUS_PLUS2] = ACTIONS(874), + [anon_sym_SLASH2] = ACTIONS(874), + [anon_sym_mod2] = ACTIONS(874), + [anon_sym_SLASH_SLASH2] = ACTIONS(874), + [anon_sym_PLUS2] = ACTIONS(874), + [anon_sym_bit_DASHshl2] = ACTIONS(874), + [anon_sym_bit_DASHshr2] = ACTIONS(874), + [anon_sym_bit_DASHand2] = ACTIONS(874), + [anon_sym_bit_DASHxor2] = ACTIONS(874), + [anon_sym_bit_DASHor2] = ACTIONS(874), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(874), + [sym_duration_unit] = ACTIONS(876), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(309)] = { + [sym_comment] = STATE(309), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -71439,6 +71559,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(773), [aux_sym_cmd_identifier_token6] = ACTIONS(771), [sym__newline] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(771), [anon_sym_PIPE] = ACTIONS(771), [anon_sym_err_GT_PIPE] = ACTIONS(771), [anon_sym_out_GT_PIPE] = ACTIONS(771), @@ -71450,6 +71571,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), [anon_sym_GT2] = ACTIONS(771), [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(771), [anon_sym_STAR2] = ACTIONS(771), [anon_sym_and2] = ACTIONS(771), [anon_sym_xor2] = ACTIONS(771), @@ -71484,102 +71606,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1364), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(311)] = { - [sym_comment] = STATE(311), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(1366), - [sym_duration_unit] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(312)] = { - [sym_comment] = STATE(312), + [STATE(310)] = { + [sym_comment] = STATE(310), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -71617,7 +71649,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(773), [aux_sym_cmd_identifier_token6] = ACTIONS(771), [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), [anon_sym_PIPE] = ACTIONS(771), [anon_sym_err_GT_PIPE] = ACTIONS(771), [anon_sym_out_GT_PIPE] = ACTIONS(771), @@ -71663,101 +71694,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [aux_sym__immediate_decimal_token5] = ACTIONS(1364), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(313)] = { - [sym_comment] = STATE(313), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), + [STATE(311)] = { + [sym_comment] = STATE(311), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token5] = ACTIONS(1348), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(314)] = { - [sym_comment] = STATE(314), + [STATE(312)] = { + [sym_comment] = STATE(312), + [anon_sym_in] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(906), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(908), + [anon_sym_SLASH] = ACTIONS(908), + [anon_sym_mod] = ACTIONS(906), + [anon_sym_SLASH_SLASH] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(908), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_bit_DASHshl] = ACTIONS(906), + [anon_sym_bit_DASHshr] = ACTIONS(906), + [anon_sym_EQ_TILDE] = ACTIONS(906), + [anon_sym_BANG_TILDE] = ACTIONS(906), + [anon_sym_like] = ACTIONS(906), + [anon_sym_not_DASHlike] = ACTIONS(906), + [anon_sym_bit_DASHand] = ACTIONS(906), + [anon_sym_bit_DASHxor] = ACTIONS(906), + [anon_sym_bit_DASHor] = ACTIONS(906), + [anon_sym_and] = ACTIONS(906), + [anon_sym_xor] = ACTIONS(906), + [anon_sym_or] = ACTIONS(906), + [anon_sym_in2] = ACTIONS(906), + [anon_sym_not_DASHin] = ACTIONS(906), + [anon_sym_has] = ACTIONS(906), + [anon_sym_not_DASHhas] = ACTIONS(906), + [anon_sym_starts_DASHwith] = ACTIONS(906), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(906), + [anon_sym_ends_DASHwith] = ACTIONS(906), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(906), + [anon_sym_EQ_EQ] = ACTIONS(906), + [anon_sym_BANG_EQ] = ACTIONS(906), + [anon_sym_LT] = ACTIONS(908), + [anon_sym_LT_EQ] = ACTIONS(906), + [anon_sym_GT] = ACTIONS(908), + [anon_sym_GT_EQ] = ACTIONS(906), + [aux_sym_cmd_identifier_token6] = ACTIONS(910), + [sym__newline] = ACTIONS(793), + [anon_sym_SEMI] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_err_GT_PIPE] = ACTIONS(793), + [anon_sym_out_GT_PIPE] = ACTIONS(793), + [anon_sym_e_GT_PIPE] = ACTIONS(793), + [anon_sym_o_GT_PIPE] = ACTIONS(793), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(793), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(793), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(793), + [anon_sym_GT2] = ACTIONS(793), + [anon_sym_DASH2] = ACTIONS(793), + [anon_sym_STAR2] = ACTIONS(793), + [anon_sym_and2] = ACTIONS(793), + [anon_sym_xor2] = ACTIONS(793), + [anon_sym_or2] = ACTIONS(793), + [anon_sym_not_DASHin2] = ACTIONS(793), + [anon_sym_has2] = ACTIONS(793), + [anon_sym_not_DASHhas2] = ACTIONS(793), + [anon_sym_starts_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), + [anon_sym_ends_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), + [anon_sym_EQ_EQ2] = ACTIONS(793), + [anon_sym_BANG_EQ2] = ACTIONS(793), + [anon_sym_LT2] = ACTIONS(793), + [anon_sym_LT_EQ2] = ACTIONS(793), + [anon_sym_GT_EQ2] = ACTIONS(793), + [anon_sym_EQ_TILDE2] = ACTIONS(793), + [anon_sym_BANG_TILDE2] = ACTIONS(793), + [anon_sym_like2] = ACTIONS(793), + [anon_sym_not_DASHlike2] = ACTIONS(793), + [anon_sym_STAR_STAR2] = ACTIONS(793), + [anon_sym_PLUS_PLUS2] = ACTIONS(793), + [anon_sym_SLASH2] = ACTIONS(793), + [anon_sym_mod2] = ACTIONS(793), + [anon_sym_SLASH_SLASH2] = ACTIONS(793), + [anon_sym_PLUS2] = ACTIONS(793), + [anon_sym_bit_DASHshl2] = ACTIONS(793), + [anon_sym_bit_DASHshr2] = ACTIONS(793), + [anon_sym_bit_DASHand2] = ACTIONS(793), + [anon_sym_bit_DASHxor2] = ACTIONS(793), + [anon_sym_bit_DASHor2] = ACTIONS(793), + [anon_sym_DOT_DOT2] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(803), + [anon_sym_DOT_DOT_LT2] = ACTIONS(803), + [sym_filesize_unit] = ACTIONS(1366), + [sym_duration_unit] = ACTIONS(1368), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(313)] = { + [sym_comment] = STATE(313), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -71845,97 +71966,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(314)] = { + [sym_comment] = STATE(314), + [anon_sym_in] = ACTIONS(874), + [anon_sym_STAR_STAR] = ACTIONS(876), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(874), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_mod] = ACTIONS(876), + [anon_sym_SLASH_SLASH] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(876), + [anon_sym_bit_DASHshl] = ACTIONS(876), + [anon_sym_bit_DASHshr] = ACTIONS(876), + [anon_sym_EQ_TILDE] = ACTIONS(876), + [anon_sym_BANG_TILDE] = ACTIONS(876), + [anon_sym_like] = ACTIONS(876), + [anon_sym_not_DASHlike] = ACTIONS(876), + [anon_sym_bit_DASHand] = ACTIONS(876), + [anon_sym_bit_DASHxor] = ACTIONS(876), + [anon_sym_bit_DASHor] = ACTIONS(876), + [anon_sym_and] = ACTIONS(876), + [anon_sym_xor] = ACTIONS(876), + [anon_sym_or] = ACTIONS(876), + [anon_sym_in2] = ACTIONS(876), + [anon_sym_not_DASHin] = ACTIONS(876), + [anon_sym_has] = ACTIONS(876), + [anon_sym_not_DASHhas] = ACTIONS(876), + [anon_sym_starts_DASHwith] = ACTIONS(876), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(876), + [anon_sym_ends_DASHwith] = ACTIONS(876), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(876), + [anon_sym_EQ_EQ] = ACTIONS(876), + [anon_sym_BANG_EQ] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_EQ] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_GT_EQ] = ACTIONS(876), + [aux_sym_cmd_identifier_token6] = ACTIONS(874), + [sym__newline] = ACTIONS(874), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_PIPE] = ACTIONS(874), + [anon_sym_err_GT_PIPE] = ACTIONS(874), + [anon_sym_out_GT_PIPE] = ACTIONS(874), + [anon_sym_e_GT_PIPE] = ACTIONS(874), + [anon_sym_o_GT_PIPE] = ACTIONS(874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(874), + [anon_sym_GT2] = ACTIONS(874), + [anon_sym_DASH2] = ACTIONS(874), + [anon_sym_STAR2] = ACTIONS(874), + [anon_sym_and2] = ACTIONS(874), + [anon_sym_xor2] = ACTIONS(874), + [anon_sym_or2] = ACTIONS(874), + [anon_sym_not_DASHin2] = ACTIONS(874), + [anon_sym_has2] = ACTIONS(874), + [anon_sym_not_DASHhas2] = ACTIONS(874), + [anon_sym_starts_DASHwith2] = ACTIONS(874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(874), + [anon_sym_ends_DASHwith2] = ACTIONS(874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(874), + [anon_sym_EQ_EQ2] = ACTIONS(874), + [anon_sym_BANG_EQ2] = ACTIONS(874), + [anon_sym_LT2] = ACTIONS(874), + [anon_sym_LT_EQ2] = ACTIONS(874), + [anon_sym_GT_EQ2] = ACTIONS(874), + [anon_sym_EQ_TILDE2] = ACTIONS(874), + [anon_sym_BANG_TILDE2] = ACTIONS(874), + [anon_sym_like2] = ACTIONS(874), + [anon_sym_not_DASHlike2] = ACTIONS(874), + [anon_sym_STAR_STAR2] = ACTIONS(874), + [anon_sym_PLUS_PLUS2] = ACTIONS(874), + [anon_sym_SLASH2] = ACTIONS(874), + [anon_sym_mod2] = ACTIONS(874), + [anon_sym_SLASH_SLASH2] = ACTIONS(874), + [anon_sym_PLUS2] = ACTIONS(874), + [anon_sym_bit_DASHshl2] = ACTIONS(874), + [anon_sym_bit_DASHshr2] = ACTIONS(874), + [anon_sym_bit_DASHand2] = ACTIONS(874), + [anon_sym_bit_DASHxor2] = ACTIONS(874), + [anon_sym_bit_DASHor2] = ACTIONS(874), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(874), + [sym_duration_unit] = ACTIONS(876), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(315)] = { [sym_comment] = STATE(315), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1360), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(316)] = { - [sym_comment] = STATE(316), [anon_sym_in] = ACTIONS(771), [anon_sym_STAR_STAR] = ACTIONS(773), [anon_sym_PLUS_PLUS] = ACTIONS(773), @@ -71973,6 +72094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(773), [aux_sym_cmd_identifier_token6] = ACTIONS(771), [sym__newline] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(771), [anon_sym_PIPE] = ACTIONS(771), [anon_sym_err_GT_PIPE] = ACTIONS(771), [anon_sym_out_GT_PIPE] = ACTIONS(771), @@ -72022,96 +72144,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_duration_unit] = ACTIONS(773), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(317)] = { - [sym_comment] = STATE(317), - [anon_sym_in] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(851), - [anon_sym_PLUS_PLUS] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(851), - [anon_sym_SLASH_SLASH] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_bit_DASHshl] = ACTIONS(851), - [anon_sym_bit_DASHshr] = ACTIONS(851), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_BANG_TILDE] = ACTIONS(851), - [anon_sym_like] = ACTIONS(851), - [anon_sym_not_DASHlike] = ACTIONS(851), - [anon_sym_bit_DASHand] = ACTIONS(851), - [anon_sym_bit_DASHxor] = ACTIONS(851), - [anon_sym_bit_DASHor] = ACTIONS(851), - [anon_sym_and] = ACTIONS(851), - [anon_sym_xor] = ACTIONS(851), - [anon_sym_or] = ACTIONS(851), - [anon_sym_in2] = ACTIONS(851), - [anon_sym_not_DASHin] = ACTIONS(851), - [anon_sym_has] = ACTIONS(851), - [anon_sym_not_DASHhas] = ACTIONS(851), - [anon_sym_starts_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(851), - [anon_sym_ends_DASHwith] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(851), - [aux_sym_cmd_identifier_token6] = ACTIONS(849), - [sym__newline] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_err_GT_PIPE] = ACTIONS(849), - [anon_sym_out_GT_PIPE] = ACTIONS(849), - [anon_sym_e_GT_PIPE] = ACTIONS(849), - [anon_sym_o_GT_PIPE] = ACTIONS(849), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(849), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(849), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(849), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(849), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(849), - [anon_sym_xor2] = ACTIONS(849), - [anon_sym_or2] = ACTIONS(849), - [anon_sym_not_DASHin2] = ACTIONS(849), - [anon_sym_has2] = ACTIONS(849), - [anon_sym_not_DASHhas2] = ACTIONS(849), - [anon_sym_starts_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(849), - [anon_sym_ends_DASHwith2] = ACTIONS(849), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(849), - [anon_sym_EQ_EQ2] = ACTIONS(849), - [anon_sym_BANG_EQ2] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(849), - [anon_sym_GT_EQ2] = ACTIONS(849), - [anon_sym_EQ_TILDE2] = ACTIONS(849), - [anon_sym_BANG_TILDE2] = ACTIONS(849), - [anon_sym_like2] = ACTIONS(849), - [anon_sym_not_DASHlike2] = ACTIONS(849), - [anon_sym_STAR_STAR2] = ACTIONS(849), - [anon_sym_PLUS_PLUS2] = ACTIONS(849), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(849), - [anon_sym_SLASH_SLASH2] = ACTIONS(849), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(849), - [anon_sym_bit_DASHshr2] = ACTIONS(849), - [anon_sym_bit_DASHand2] = ACTIONS(849), - [anon_sym_bit_DASHxor2] = ACTIONS(849), - [anon_sym_bit_DASHor2] = ACTIONS(849), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), + [STATE(316)] = { + [sym_comment] = STATE(316), + [anon_sym_in] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(906), + [anon_sym_PLUS_PLUS] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(908), + [anon_sym_SLASH] = ACTIONS(908), + [anon_sym_mod] = ACTIONS(906), + [anon_sym_SLASH_SLASH] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(908), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_bit_DASHshl] = ACTIONS(906), + [anon_sym_bit_DASHshr] = ACTIONS(906), + [anon_sym_EQ_TILDE] = ACTIONS(906), + [anon_sym_BANG_TILDE] = ACTIONS(906), + [anon_sym_like] = ACTIONS(906), + [anon_sym_not_DASHlike] = ACTIONS(906), + [anon_sym_bit_DASHand] = ACTIONS(906), + [anon_sym_bit_DASHxor] = ACTIONS(906), + [anon_sym_bit_DASHor] = ACTIONS(906), + [anon_sym_and] = ACTIONS(906), + [anon_sym_xor] = ACTIONS(906), + [anon_sym_or] = ACTIONS(906), + [anon_sym_in2] = ACTIONS(906), + [anon_sym_not_DASHin] = ACTIONS(906), + [anon_sym_has] = ACTIONS(906), + [anon_sym_not_DASHhas] = ACTIONS(906), + [anon_sym_starts_DASHwith] = ACTIONS(906), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(906), + [anon_sym_ends_DASHwith] = ACTIONS(906), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(906), + [anon_sym_EQ_EQ] = ACTIONS(906), + [anon_sym_BANG_EQ] = ACTIONS(906), + [anon_sym_LT] = ACTIONS(908), + [anon_sym_LT_EQ] = ACTIONS(906), + [anon_sym_GT] = ACTIONS(908), + [anon_sym_GT_EQ] = ACTIONS(906), + [aux_sym_cmd_identifier_token6] = ACTIONS(910), + [sym__newline] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_err_GT_PIPE] = ACTIONS(793), + [anon_sym_out_GT_PIPE] = ACTIONS(793), + [anon_sym_e_GT_PIPE] = ACTIONS(793), + [anon_sym_o_GT_PIPE] = ACTIONS(793), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(793), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(793), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(793), + [anon_sym_GT2] = ACTIONS(793), + [anon_sym_DASH2] = ACTIONS(793), + [anon_sym_STAR2] = ACTIONS(793), + [anon_sym_and2] = ACTIONS(793), + [anon_sym_xor2] = ACTIONS(793), + [anon_sym_or2] = ACTIONS(793), + [anon_sym_not_DASHin2] = ACTIONS(793), + [anon_sym_has2] = ACTIONS(793), + [anon_sym_not_DASHhas2] = ACTIONS(793), + [anon_sym_starts_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), + [anon_sym_ends_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), + [anon_sym_EQ_EQ2] = ACTIONS(793), + [anon_sym_BANG_EQ2] = ACTIONS(793), + [anon_sym_LT2] = ACTIONS(793), + [anon_sym_LT_EQ2] = ACTIONS(793), + [anon_sym_GT_EQ2] = ACTIONS(793), + [anon_sym_EQ_TILDE2] = ACTIONS(793), + [anon_sym_BANG_TILDE2] = ACTIONS(793), + [anon_sym_like2] = ACTIONS(793), + [anon_sym_not_DASHlike2] = ACTIONS(793), + [anon_sym_STAR_STAR2] = ACTIONS(793), + [anon_sym_PLUS_PLUS2] = ACTIONS(793), + [anon_sym_SLASH2] = ACTIONS(793), + [anon_sym_mod2] = ACTIONS(793), + [anon_sym_SLASH_SLASH2] = ACTIONS(793), + [anon_sym_PLUS2] = ACTIONS(793), + [anon_sym_bit_DASHshl2] = ACTIONS(793), + [anon_sym_bit_DASHshr2] = ACTIONS(793), + [anon_sym_bit_DASHand2] = ACTIONS(793), + [anon_sym_bit_DASHxor2] = ACTIONS(793), + [anon_sym_bit_DASHor2] = ACTIONS(793), + [anon_sym_DOT_DOT2] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(803), + [anon_sym_DOT_DOT_LT2] = ACTIONS(803), + [sym_filesize_unit] = ACTIONS(1370), + [sym_duration_unit] = ACTIONS(1372), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(318)] = { - [sym_comment] = STATE(318), + [STATE(317)] = { + [sym_comment] = STATE(317), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -72198,142 +72320,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(318)] = { + [sym_comment] = STATE(318), + [anon_sym_in] = ACTIONS(771), + [anon_sym_STAR_STAR] = ACTIONS(773), + [anon_sym_PLUS_PLUS] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(773), + [anon_sym_SLASH_SLASH] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_bit_DASHshl] = ACTIONS(773), + [anon_sym_bit_DASHshr] = ACTIONS(773), + [anon_sym_EQ_TILDE] = ACTIONS(773), + [anon_sym_BANG_TILDE] = ACTIONS(773), + [anon_sym_like] = ACTIONS(773), + [anon_sym_not_DASHlike] = ACTIONS(773), + [anon_sym_bit_DASHand] = ACTIONS(773), + [anon_sym_bit_DASHxor] = ACTIONS(773), + [anon_sym_bit_DASHor] = ACTIONS(773), + [anon_sym_and] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(773), + [anon_sym_or] = ACTIONS(773), + [anon_sym_in2] = ACTIONS(773), + [anon_sym_not_DASHin] = ACTIONS(773), + [anon_sym_has] = ACTIONS(773), + [anon_sym_not_DASHhas] = ACTIONS(773), + [anon_sym_starts_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), + [anon_sym_ends_DASHwith] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [aux_sym_cmd_identifier_token6] = ACTIONS(771), + [sym__newline] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_err_GT_PIPE] = ACTIONS(771), + [anon_sym_out_GT_PIPE] = ACTIONS(771), + [anon_sym_e_GT_PIPE] = ACTIONS(771), + [anon_sym_o_GT_PIPE] = ACTIONS(771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(771), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(771), + [anon_sym_xor2] = ACTIONS(771), + [anon_sym_or2] = ACTIONS(771), + [anon_sym_not_DASHin2] = ACTIONS(771), + [anon_sym_has2] = ACTIONS(771), + [anon_sym_not_DASHhas2] = ACTIONS(771), + [anon_sym_starts_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), + [anon_sym_ends_DASHwith2] = ACTIONS(771), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), + [anon_sym_EQ_EQ2] = ACTIONS(771), + [anon_sym_BANG_EQ2] = ACTIONS(771), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(771), + [anon_sym_GT_EQ2] = ACTIONS(771), + [anon_sym_EQ_TILDE2] = ACTIONS(771), + [anon_sym_BANG_TILDE2] = ACTIONS(771), + [anon_sym_like2] = ACTIONS(771), + [anon_sym_not_DASHlike2] = ACTIONS(771), + [anon_sym_STAR_STAR2] = ACTIONS(771), + [anon_sym_PLUS_PLUS2] = ACTIONS(771), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(771), + [anon_sym_SLASH_SLASH2] = ACTIONS(771), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(771), + [anon_sym_bit_DASHshr2] = ACTIONS(771), + [anon_sym_bit_DASHand2] = ACTIONS(771), + [anon_sym_bit_DASHxor2] = ACTIONS(771), + [anon_sym_bit_DASHor2] = ACTIONS(771), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(319)] = { [sym_comment] = STATE(319), - [anon_sym_in] = ACTIONS(868), - [anon_sym_STAR_STAR] = ACTIONS(884), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(884), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_bit_DASHshl] = ACTIONS(884), - [anon_sym_bit_DASHshr] = ACTIONS(884), - [anon_sym_EQ_TILDE] = ACTIONS(884), - [anon_sym_BANG_TILDE] = ACTIONS(884), - [anon_sym_like] = ACTIONS(884), - [anon_sym_not_DASHlike] = ACTIONS(884), - [anon_sym_bit_DASHand] = ACTIONS(884), - [anon_sym_bit_DASHxor] = ACTIONS(884), - [anon_sym_bit_DASHor] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_xor] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_in2] = ACTIONS(884), - [anon_sym_not_DASHin] = ACTIONS(884), - [anon_sym_has] = ACTIONS(884), - [anon_sym_not_DASHhas] = ACTIONS(884), - [anon_sym_starts_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(884), - [anon_sym_ends_DASHwith] = ACTIONS(884), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [aux_sym_cmd_identifier_token6] = ACTIONS(888), - [sym__newline] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_err_GT_PIPE] = ACTIONS(868), - [anon_sym_out_GT_PIPE] = ACTIONS(868), - [anon_sym_e_GT_PIPE] = ACTIONS(868), - [anon_sym_o_GT_PIPE] = ACTIONS(868), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(868), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(868), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(868), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(868), - [anon_sym_BANG_EQ2] = ACTIONS(868), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(868), - [anon_sym_GT_EQ2] = ACTIONS(868), - [anon_sym_EQ_TILDE2] = ACTIONS(868), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_DOT_DOT2] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(878), - [anon_sym_DOT_DOT_LT2] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(1370), - [sym_duration_unit] = ACTIONS(1372), + [anon_sym_in] = ACTIONS(874), + [anon_sym_STAR_STAR] = ACTIONS(876), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(874), + [anon_sym_SLASH] = ACTIONS(874), + [anon_sym_mod] = ACTIONS(876), + [anon_sym_SLASH_SLASH] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(876), + [anon_sym_bit_DASHshl] = ACTIONS(876), + [anon_sym_bit_DASHshr] = ACTIONS(876), + [anon_sym_EQ_TILDE] = ACTIONS(876), + [anon_sym_BANG_TILDE] = ACTIONS(876), + [anon_sym_like] = ACTIONS(876), + [anon_sym_not_DASHlike] = ACTIONS(876), + [anon_sym_bit_DASHand] = ACTIONS(876), + [anon_sym_bit_DASHxor] = ACTIONS(876), + [anon_sym_bit_DASHor] = ACTIONS(876), + [anon_sym_and] = ACTIONS(876), + [anon_sym_xor] = ACTIONS(876), + [anon_sym_or] = ACTIONS(876), + [anon_sym_in2] = ACTIONS(876), + [anon_sym_not_DASHin] = ACTIONS(876), + [anon_sym_has] = ACTIONS(876), + [anon_sym_not_DASHhas] = ACTIONS(876), + [anon_sym_starts_DASHwith] = ACTIONS(876), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(876), + [anon_sym_ends_DASHwith] = ACTIONS(876), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(876), + [anon_sym_EQ_EQ] = ACTIONS(876), + [anon_sym_BANG_EQ] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(874), + [anon_sym_LT_EQ] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(874), + [anon_sym_GT_EQ] = ACTIONS(876), + [aux_sym_cmd_identifier_token6] = ACTIONS(874), + [sym__newline] = ACTIONS(874), + [anon_sym_PIPE] = ACTIONS(874), + [anon_sym_err_GT_PIPE] = ACTIONS(874), + [anon_sym_out_GT_PIPE] = ACTIONS(874), + [anon_sym_e_GT_PIPE] = ACTIONS(874), + [anon_sym_o_GT_PIPE] = ACTIONS(874), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(874), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(874), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(874), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(874), + [anon_sym_GT2] = ACTIONS(874), + [anon_sym_DASH2] = ACTIONS(874), + [anon_sym_STAR2] = ACTIONS(874), + [anon_sym_and2] = ACTIONS(874), + [anon_sym_xor2] = ACTIONS(874), + [anon_sym_or2] = ACTIONS(874), + [anon_sym_not_DASHin2] = ACTIONS(874), + [anon_sym_has2] = ACTIONS(874), + [anon_sym_not_DASHhas2] = ACTIONS(874), + [anon_sym_starts_DASHwith2] = ACTIONS(874), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(874), + [anon_sym_ends_DASHwith2] = ACTIONS(874), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(874), + [anon_sym_EQ_EQ2] = ACTIONS(874), + [anon_sym_BANG_EQ2] = ACTIONS(874), + [anon_sym_LT2] = ACTIONS(874), + [anon_sym_LT_EQ2] = ACTIONS(874), + [anon_sym_GT_EQ2] = ACTIONS(874), + [anon_sym_EQ_TILDE2] = ACTIONS(874), + [anon_sym_BANG_TILDE2] = ACTIONS(874), + [anon_sym_like2] = ACTIONS(874), + [anon_sym_not_DASHlike2] = ACTIONS(874), + [anon_sym_STAR_STAR2] = ACTIONS(874), + [anon_sym_PLUS_PLUS2] = ACTIONS(874), + [anon_sym_SLASH2] = ACTIONS(874), + [anon_sym_mod2] = ACTIONS(874), + [anon_sym_SLASH_SLASH2] = ACTIONS(874), + [anon_sym_PLUS2] = ACTIONS(874), + [anon_sym_bit_DASHshl2] = ACTIONS(874), + [anon_sym_bit_DASHshr2] = ACTIONS(874), + [anon_sym_bit_DASHand2] = ACTIONS(874), + [anon_sym_bit_DASHxor2] = ACTIONS(874), + [anon_sym_bit_DASHor2] = ACTIONS(874), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(874), + [sym_duration_unit] = ACTIONS(876), [anon_sym_POUND] = ACTIONS(103), }, [STATE(320)] = { - [aux_sym__repeat_newline] = STATE(4288), - [sym__match_pattern_expression] = STATE(4235), - [sym__match_pattern_value] = STATE(4440), - [sym__match_pattern_list_body] = STATE(4599), - [sym__match_pattern_list] = STATE(4441), - [sym__match_pattern_rest] = STATE(5174), - [sym__match_pattern_record] = STATE(4447), - [sym_expr_parenthesized] = STATE(3857), - [sym__spread_parenthesized] = STATE(4721), - [sym_val_range] = STATE(4544), - [sym__val_range] = STATE(4523), - [sym__value] = STATE(4776), - [sym_val_nothing] = STATE(4545), - [sym_val_bool] = STATE(4004), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(3858), - [sym_val_cellpath] = STATE(4452), - [sym_val_number] = STATE(4545), - [sym__val_number_decimal] = STATE(3357), - [sym__val_number] = STATE(4130), - [sym_val_duration] = STATE(4545), - [sym_val_filesize] = STATE(4545), - [sym_val_binary] = STATE(4545), - [sym_val_string] = STATE(4545), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4452), - [sym__inter_single_quotes] = STATE(4504), - [sym__inter_double_quotes] = STATE(4369), - [sym_val_list] = STATE(4554), - [sym__spread_list] = STATE(4721), - [sym_list_body] = STATE(5010), - [sym_val_entry] = STATE(4375), - [sym_val_record] = STATE(4452), - [sym__table_head] = STATE(3685), - [sym_val_table] = STATE(4545), - [sym_val_closure] = STATE(4452), - [sym__unquoted_in_list] = STATE(3859), - [sym__unquoted_in_list_with_expr] = STATE(4776), - [sym__unquoted_anonymous_prefix] = STATE(4523), + [aux_sym__repeat_newline] = STATE(4123), + [sym__match_pattern_expression] = STATE(4388), + [sym__match_pattern_value] = STATE(4618), + [sym__match_pattern_list_body] = STATE(4640), + [sym__match_pattern_list] = STATE(4619), + [sym__match_pattern_rest] = STATE(5232), + [sym__match_pattern_record] = STATE(4622), + [sym_expr_parenthesized] = STATE(3830), + [sym__spread_parenthesized] = STATE(4700), + [sym_val_range] = STATE(4418), + [sym__val_range] = STATE(4544), + [sym__value] = STATE(4730), + [sym_val_nothing] = STATE(4419), + [sym_val_bool] = STATE(4086), + [sym__spread_variable] = STATE(4795), + [sym_val_variable] = STATE(3834), + [sym_val_cellpath] = STATE(4604), + [sym_val_number] = STATE(4419), + [sym__val_number_decimal] = STATE(3430), + [sym__val_number] = STATE(4361), + [sym_val_duration] = STATE(4419), + [sym_val_filesize] = STATE(4419), + [sym_val_binary] = STATE(4419), + [sym_val_string] = STATE(4419), + [sym__raw_str] = STATE(3638), + [sym__str_double_quotes] = STATE(3638), + [sym__str_single_quotes] = STATE(3638), + [sym__str_back_ticks] = STATE(3638), + [sym_val_interpolated] = STATE(4604), + [sym__inter_single_quotes] = STATE(4595), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4558), + [sym__spread_list] = STATE(4700), + [sym_list_body] = STATE(5036), + [sym_val_entry] = STATE(4576), + [sym_val_record] = STATE(4604), + [sym__table_head] = STATE(3730), + [sym_val_table] = STATE(4419), + [sym_val_closure] = STATE(4604), + [sym__unquoted_in_list] = STATE(3837), + [sym__unquoted_in_list_with_expr] = STATE(4730), + [sym__unquoted_anonymous_prefix] = STATE(4544), [sym_comment] = STATE(320), - [aux_sym__types_body_repeat1] = STATE(371), - [aux_sym_parameter_repeat2] = STATE(4009), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1418), - [aux_sym_list_body_repeat1] = STATE(629), + [aux_sym__types_body_repeat1] = STATE(369), + [aux_sym_parameter_repeat2] = STATE(3945), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1423), + [aux_sym_list_body_repeat1] = STATE(548), [anon_sym_true] = ACTIONS(1374), [anon_sym_false] = ACTIONS(1374), [anon_sym_null] = ACTIONS(1376), @@ -72374,53 +72584,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1426), }, [STATE(321)] = { - [aux_sym__repeat_newline] = STATE(4288), - [sym__match_pattern_expression] = STATE(4235), - [sym__match_pattern_value] = STATE(4440), - [sym__match_pattern_list_body] = STATE(4599), - [sym__match_pattern_list] = STATE(4441), - [sym__match_pattern_rest] = STATE(5174), - [sym__match_pattern_record] = STATE(4447), - [sym_expr_parenthesized] = STATE(3857), - [sym__spread_parenthesized] = STATE(4721), - [sym_val_range] = STATE(4544), - [sym__val_range] = STATE(4523), - [sym__value] = STATE(4776), - [sym_val_nothing] = STATE(4545), - [sym_val_bool] = STATE(4004), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(3858), - [sym_val_cellpath] = STATE(4452), - [sym_val_number] = STATE(4545), - [sym__val_number_decimal] = STATE(3357), - [sym__val_number] = STATE(4130), - [sym_val_duration] = STATE(4545), - [sym_val_filesize] = STATE(4545), - [sym_val_binary] = STATE(4545), - [sym_val_string] = STATE(4545), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4452), - [sym__inter_single_quotes] = STATE(4504), - [sym__inter_double_quotes] = STATE(4369), - [sym_val_list] = STATE(4554), - [sym__spread_list] = STATE(4721), - [sym_list_body] = STATE(5177), - [sym_val_entry] = STATE(4375), - [sym_val_record] = STATE(4452), - [sym__table_head] = STATE(3685), - [sym_val_table] = STATE(4545), - [sym_val_closure] = STATE(4452), - [sym__unquoted_in_list] = STATE(3859), - [sym__unquoted_in_list_with_expr] = STATE(4776), - [sym__unquoted_anonymous_prefix] = STATE(4523), + [aux_sym__repeat_newline] = STATE(4123), + [sym__match_pattern_expression] = STATE(4388), + [sym__match_pattern_value] = STATE(4618), + [sym__match_pattern_list_body] = STATE(4640), + [sym__match_pattern_list] = STATE(4619), + [sym__match_pattern_rest] = STATE(5232), + [sym__match_pattern_record] = STATE(4622), + [sym_expr_parenthesized] = STATE(3830), + [sym__spread_parenthesized] = STATE(4700), + [sym_val_range] = STATE(4418), + [sym__val_range] = STATE(4544), + [sym__value] = STATE(4730), + [sym_val_nothing] = STATE(4419), + [sym_val_bool] = STATE(4086), + [sym__spread_variable] = STATE(4795), + [sym_val_variable] = STATE(3834), + [sym_val_cellpath] = STATE(4604), + [sym_val_number] = STATE(4419), + [sym__val_number_decimal] = STATE(3430), + [sym__val_number] = STATE(4361), + [sym_val_duration] = STATE(4419), + [sym_val_filesize] = STATE(4419), + [sym_val_binary] = STATE(4419), + [sym_val_string] = STATE(4419), + [sym__raw_str] = STATE(3638), + [sym__str_double_quotes] = STATE(3638), + [sym__str_single_quotes] = STATE(3638), + [sym__str_back_ticks] = STATE(3638), + [sym_val_interpolated] = STATE(4604), + [sym__inter_single_quotes] = STATE(4595), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4558), + [sym__spread_list] = STATE(4700), + [sym_list_body] = STATE(4876), + [sym_val_entry] = STATE(4576), + [sym_val_record] = STATE(4604), + [sym__table_head] = STATE(3730), + [sym_val_table] = STATE(4419), + [sym_val_closure] = STATE(4604), + [sym__unquoted_in_list] = STATE(3837), + [sym__unquoted_in_list_with_expr] = STATE(4730), + [sym__unquoted_anonymous_prefix] = STATE(4544), [sym_comment] = STATE(321), - [aux_sym__types_body_repeat1] = STATE(371), - [aux_sym_parameter_repeat2] = STATE(4009), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1418), - [aux_sym_list_body_repeat1] = STATE(629), + [aux_sym__types_body_repeat1] = STATE(369), + [aux_sym_parameter_repeat2] = STATE(3945), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1423), + [aux_sym_list_body_repeat1] = STATE(548), [anon_sym_true] = ACTIONS(1374), [anon_sym_false] = ACTIONS(1374), [anon_sym_null] = ACTIONS(1376), @@ -72461,53 +72671,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1426), }, [STATE(322)] = { - [aux_sym__repeat_newline] = STATE(4288), - [sym__match_pattern_expression] = STATE(4235), - [sym__match_pattern_value] = STATE(4440), - [sym__match_pattern_list_body] = STATE(4599), - [sym__match_pattern_list] = STATE(4441), - [sym__match_pattern_rest] = STATE(5174), - [sym__match_pattern_record] = STATE(4447), - [sym_expr_parenthesized] = STATE(3857), - [sym__spread_parenthesized] = STATE(4721), - [sym_val_range] = STATE(4544), - [sym__val_range] = STATE(4523), - [sym__value] = STATE(4776), - [sym_val_nothing] = STATE(4545), - [sym_val_bool] = STATE(4004), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(3858), - [sym_val_cellpath] = STATE(4452), - [sym_val_number] = STATE(4545), - [sym__val_number_decimal] = STATE(3357), - [sym__val_number] = STATE(4130), - [sym_val_duration] = STATE(4545), - [sym_val_filesize] = STATE(4545), - [sym_val_binary] = STATE(4545), - [sym_val_string] = STATE(4545), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4452), - [sym__inter_single_quotes] = STATE(4504), - [sym__inter_double_quotes] = STATE(4369), - [sym_val_list] = STATE(4554), - [sym__spread_list] = STATE(4721), - [sym_list_body] = STATE(4902), - [sym_val_entry] = STATE(4375), - [sym_val_record] = STATE(4452), - [sym__table_head] = STATE(3685), - [sym_val_table] = STATE(4545), - [sym_val_closure] = STATE(4452), - [sym__unquoted_in_list] = STATE(3859), - [sym__unquoted_in_list_with_expr] = STATE(4776), - [sym__unquoted_anonymous_prefix] = STATE(4523), + [aux_sym__repeat_newline] = STATE(4123), + [sym__match_pattern_expression] = STATE(4388), + [sym__match_pattern_value] = STATE(4618), + [sym__match_pattern_list_body] = STATE(4640), + [sym__match_pattern_list] = STATE(4619), + [sym__match_pattern_rest] = STATE(5232), + [sym__match_pattern_record] = STATE(4622), + [sym_expr_parenthesized] = STATE(3830), + [sym__spread_parenthesized] = STATE(4700), + [sym_val_range] = STATE(4418), + [sym__val_range] = STATE(4544), + [sym__value] = STATE(4730), + [sym_val_nothing] = STATE(4419), + [sym_val_bool] = STATE(4086), + [sym__spread_variable] = STATE(4795), + [sym_val_variable] = STATE(3834), + [sym_val_cellpath] = STATE(4604), + [sym_val_number] = STATE(4419), + [sym__val_number_decimal] = STATE(3430), + [sym__val_number] = STATE(4361), + [sym_val_duration] = STATE(4419), + [sym_val_filesize] = STATE(4419), + [sym_val_binary] = STATE(4419), + [sym_val_string] = STATE(4419), + [sym__raw_str] = STATE(3638), + [sym__str_double_quotes] = STATE(3638), + [sym__str_single_quotes] = STATE(3638), + [sym__str_back_ticks] = STATE(3638), + [sym_val_interpolated] = STATE(4604), + [sym__inter_single_quotes] = STATE(4595), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4558), + [sym__spread_list] = STATE(4700), + [sym_list_body] = STATE(4844), + [sym_val_entry] = STATE(4576), + [sym_val_record] = STATE(4604), + [sym__table_head] = STATE(3730), + [sym_val_table] = STATE(4419), + [sym_val_closure] = STATE(4604), + [sym__unquoted_in_list] = STATE(3837), + [sym__unquoted_in_list_with_expr] = STATE(4730), + [sym__unquoted_anonymous_prefix] = STATE(4544), [sym_comment] = STATE(322), - [aux_sym__types_body_repeat1] = STATE(371), - [aux_sym_parameter_repeat2] = STATE(4009), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1418), - [aux_sym_list_body_repeat1] = STATE(629), + [aux_sym__types_body_repeat1] = STATE(369), + [aux_sym_parameter_repeat2] = STATE(3945), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1423), + [aux_sym_list_body_repeat1] = STATE(548), [anon_sym_true] = ACTIONS(1374), [anon_sym_false] = ACTIONS(1374), [anon_sym_null] = ACTIONS(1376), @@ -72549,127 +72759,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(323)] = { [sym_comment] = STATE(323), - [ts_builtin_sym_end] = ACTIONS(1018), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(1000), - [anon_sym_SLASH] = ACTIONS(1000), - [anon_sym_mod] = ACTIONS(998), - [anon_sym_SLASH_SLASH] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_bit_DASHshl] = ACTIONS(998), - [anon_sym_bit_DASHshr] = ACTIONS(998), - [anon_sym_EQ_TILDE] = ACTIONS(998), - [anon_sym_BANG_TILDE] = ACTIONS(998), - [anon_sym_like] = ACTIONS(998), - [anon_sym_not_DASHlike] = ACTIONS(998), - [anon_sym_bit_DASHand] = ACTIONS(998), - [anon_sym_bit_DASHxor] = ACTIONS(998), - [anon_sym_bit_DASHor] = ACTIONS(998), - [anon_sym_and] = ACTIONS(998), - [anon_sym_xor] = ACTIONS(998), - [anon_sym_or] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_not_DASHin] = ACTIONS(998), - [anon_sym_has] = ACTIONS(998), - [anon_sym_not_DASHhas] = ACTIONS(998), - [anon_sym_starts_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(998), - [anon_sym_ends_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(998), - [anon_sym_EQ_EQ] = ACTIONS(998), - [anon_sym_BANG_EQ] = ACTIONS(998), - [anon_sym_LT] = ACTIONS(1000), - [anon_sym_LT_EQ] = ACTIONS(998), - [anon_sym_GT] = ACTIONS(1000), - [anon_sym_GT_EQ] = ACTIONS(998), - [aux_sym_cmd_identifier_token6] = ACTIONS(1002), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(324)] = { - [sym_comment] = STATE(324), [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_like] = ACTIONS(1014), + [anon_sym_not_DASHlike] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_has] = ACTIONS(1014), + [anon_sym_not_DASHhas] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1014), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), [sym__newline] = ACTIONS(996), [anon_sym_SEMI] = ACTIONS(996), [anon_sym_PIPE] = ACTIONS(996), @@ -72681,9 +72806,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_RPAREN] = ACTIONS(996), [anon_sym_GT2] = ACTIONS(996), [anon_sym_DASH2] = ACTIONS(996), + [anon_sym_RBRACE] = ACTIONS(996), [anon_sym_STAR2] = ACTIONS(996), [anon_sym_and2] = ACTIONS(996), [anon_sym_xor2] = ACTIONS(996), @@ -72717,263 +72842,263 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHor2] = ACTIONS(996), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(324)] = { + [sym_comment] = STATE(324), + [anon_sym_in] = ACTIONS(1004), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_like] = ACTIONS(1014), + [anon_sym_not_DASHlike] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_has] = ACTIONS(1014), + [anon_sym_not_DASHhas] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1014), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), + [sym__newline] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1004), + [anon_sym_err_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_GT_PIPE] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), + [anon_sym_RPAREN] = ACTIONS(1004), + [anon_sym_GT2] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_STAR2] = ACTIONS(1004), + [anon_sym_and2] = ACTIONS(1004), + [anon_sym_xor2] = ACTIONS(1004), + [anon_sym_or2] = ACTIONS(1004), + [anon_sym_not_DASHin2] = ACTIONS(1004), + [anon_sym_has2] = ACTIONS(1004), + [anon_sym_not_DASHhas2] = ACTIONS(1004), + [anon_sym_starts_DASHwith2] = ACTIONS(1004), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1004), + [anon_sym_ends_DASHwith2] = ACTIONS(1004), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1004), + [anon_sym_EQ_EQ2] = ACTIONS(1004), + [anon_sym_BANG_EQ2] = ACTIONS(1004), + [anon_sym_LT2] = ACTIONS(1004), + [anon_sym_LT_EQ2] = ACTIONS(1004), + [anon_sym_GT_EQ2] = ACTIONS(1004), + [anon_sym_EQ_TILDE2] = ACTIONS(1004), + [anon_sym_BANG_TILDE2] = ACTIONS(1004), + [anon_sym_like2] = ACTIONS(1004), + [anon_sym_not_DASHlike2] = ACTIONS(1004), + [anon_sym_STAR_STAR2] = ACTIONS(1004), + [anon_sym_PLUS_PLUS2] = ACTIONS(1004), + [anon_sym_SLASH2] = ACTIONS(1004), + [anon_sym_mod2] = ACTIONS(1004), + [anon_sym_SLASH_SLASH2] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(1004), + [anon_sym_bit_DASHshl2] = ACTIONS(1004), + [anon_sym_bit_DASHshr2] = ACTIONS(1004), + [anon_sym_bit_DASHand2] = ACTIONS(1004), + [anon_sym_bit_DASHxor2] = ACTIONS(1004), + [anon_sym_bit_DASHor2] = ACTIONS(1004), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(325)] = { [sym_comment] = STATE(325), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), + [anon_sym_in] = ACTIONS(1004), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_like] = ACTIONS(1014), + [anon_sym_not_DASHlike] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_has] = ACTIONS(1014), + [anon_sym_not_DASHhas] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1014), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), + [sym__newline] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1004), + [anon_sym_err_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_GT_PIPE] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), + [anon_sym_GT2] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym_STAR2] = ACTIONS(1004), + [anon_sym_and2] = ACTIONS(1004), + [anon_sym_xor2] = ACTIONS(1004), + [anon_sym_or2] = ACTIONS(1004), + [anon_sym_not_DASHin2] = ACTIONS(1004), + [anon_sym_has2] = ACTIONS(1004), + [anon_sym_not_DASHhas2] = ACTIONS(1004), + [anon_sym_starts_DASHwith2] = ACTIONS(1004), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1004), + [anon_sym_ends_DASHwith2] = ACTIONS(1004), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1004), + [anon_sym_EQ_EQ2] = ACTIONS(1004), + [anon_sym_BANG_EQ2] = ACTIONS(1004), + [anon_sym_LT2] = ACTIONS(1004), + [anon_sym_LT_EQ2] = ACTIONS(1004), + [anon_sym_GT_EQ2] = ACTIONS(1004), + [anon_sym_EQ_TILDE2] = ACTIONS(1004), + [anon_sym_BANG_TILDE2] = ACTIONS(1004), + [anon_sym_like2] = ACTIONS(1004), + [anon_sym_not_DASHlike2] = ACTIONS(1004), + [anon_sym_STAR_STAR2] = ACTIONS(1004), + [anon_sym_PLUS_PLUS2] = ACTIONS(1004), + [anon_sym_SLASH2] = ACTIONS(1004), + [anon_sym_mod2] = ACTIONS(1004), + [anon_sym_SLASH_SLASH2] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(1004), + [anon_sym_bit_DASHshl2] = ACTIONS(1004), + [anon_sym_bit_DASHshr2] = ACTIONS(1004), + [anon_sym_bit_DASHand2] = ACTIONS(1004), + [anon_sym_bit_DASHxor2] = ACTIONS(1004), + [anon_sym_bit_DASHor2] = ACTIONS(1004), [anon_sym_POUND] = ACTIONS(103), }, [STATE(326)] = { [sym_comment] = STATE(326), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_RBRACE] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_in] = ACTIONS(1004), + [anon_sym_STAR_STAR] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_SLASH] = ACTIONS(1000), + [anon_sym_mod] = ACTIONS(998), + [anon_sym_SLASH_SLASH] = ACTIONS(998), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_DASH] = ACTIONS(998), + [anon_sym_bit_DASHshl] = ACTIONS(998), + [anon_sym_bit_DASHshr] = ACTIONS(998), + [anon_sym_EQ_TILDE] = ACTIONS(998), + [anon_sym_BANG_TILDE] = ACTIONS(998), + [anon_sym_like] = ACTIONS(998), + [anon_sym_not_DASHlike] = ACTIONS(998), + [anon_sym_bit_DASHand] = ACTIONS(998), + [anon_sym_bit_DASHxor] = ACTIONS(998), + [anon_sym_bit_DASHor] = ACTIONS(998), + [anon_sym_and] = ACTIONS(998), + [anon_sym_xor] = ACTIONS(998), + [anon_sym_or] = ACTIONS(998), + [anon_sym_in2] = ACTIONS(998), + [anon_sym_not_DASHin] = ACTIONS(998), + [anon_sym_has] = ACTIONS(998), + [anon_sym_not_DASHhas] = ACTIONS(998), + [anon_sym_starts_DASHwith] = ACTIONS(998), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(998), + [anon_sym_ends_DASHwith] = ACTIONS(998), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(998), + [anon_sym_EQ_EQ] = ACTIONS(998), + [anon_sym_BANG_EQ] = ACTIONS(998), + [anon_sym_LT] = ACTIONS(1000), + [anon_sym_LT_EQ] = ACTIONS(998), + [anon_sym_GT] = ACTIONS(1000), + [anon_sym_GT_EQ] = ACTIONS(998), + [aux_sym_cmd_identifier_token6] = ACTIONS(1002), + [sym__newline] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1004), + [anon_sym_err_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_GT_PIPE] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), + [anon_sym_GT2] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_STAR2] = ACTIONS(1004), + [anon_sym_and2] = ACTIONS(1004), + [anon_sym_xor2] = ACTIONS(1004), + [anon_sym_or2] = ACTIONS(1004), + [anon_sym_not_DASHin2] = ACTIONS(1004), + [anon_sym_has2] = ACTIONS(1004), + [anon_sym_not_DASHhas2] = ACTIONS(1004), + [anon_sym_starts_DASHwith2] = ACTIONS(1004), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1004), + [anon_sym_ends_DASHwith2] = ACTIONS(1004), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1004), + [anon_sym_EQ_EQ2] = ACTIONS(1004), + [anon_sym_BANG_EQ2] = ACTIONS(1004), + [anon_sym_LT2] = ACTIONS(1004), + [anon_sym_LT_EQ2] = ACTIONS(1004), + [anon_sym_GT_EQ2] = ACTIONS(1004), + [anon_sym_EQ_TILDE2] = ACTIONS(1004), + [anon_sym_BANG_TILDE2] = ACTIONS(1004), + [anon_sym_like2] = ACTIONS(1004), + [anon_sym_not_DASHlike2] = ACTIONS(1004), + [anon_sym_STAR_STAR2] = ACTIONS(1004), + [anon_sym_PLUS_PLUS2] = ACTIONS(1004), + [anon_sym_SLASH2] = ACTIONS(1004), + [anon_sym_mod2] = ACTIONS(1004), + [anon_sym_SLASH_SLASH2] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(1004), + [anon_sym_bit_DASHshl2] = ACTIONS(1004), + [anon_sym_bit_DASHshr2] = ACTIONS(1004), + [anon_sym_bit_DASHand2] = ACTIONS(1004), + [anon_sym_bit_DASHxor2] = ACTIONS(1004), + [anon_sym_bit_DASHor2] = ACTIONS(1004), [anon_sym_POUND] = ACTIONS(103), }, [STATE(327)] = { [sym_comment] = STATE(327), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_RPAREN] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(328)] = { - [sym_comment] = STATE(328), [ts_builtin_sym_end] = ACTIONS(994), [anon_sym_in] = ACTIONS(996), [anon_sym_STAR_STAR] = ACTIONS(998), @@ -73057,128 +73182,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHor2] = ACTIONS(996), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(329)] = { - [sym_comment] = STATE(329), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(330)] = { - [sym_comment] = STATE(330), + [STATE(328)] = { + [sym_comment] = STATE(328), [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_like] = ACTIONS(1014), + [anon_sym_not_DASHlike] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_has] = ACTIONS(1014), + [anon_sym_not_DASHhas] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1014), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), [sym__newline] = ACTIONS(996), [anon_sym_SEMI] = ACTIONS(996), [anon_sym_PIPE] = ACTIONS(996), @@ -73190,6 +73231,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), + [anon_sym_RPAREN] = ACTIONS(996), [anon_sym_GT2] = ACTIONS(996), [anon_sym_DASH2] = ACTIONS(996), [anon_sym_STAR2] = ACTIONS(996), @@ -73225,45 +73267,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHor2] = ACTIONS(996), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(331)] = { - [sym_comment] = STATE(331), + [STATE(329)] = { + [sym_comment] = STATE(329), [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_like] = ACTIONS(1014), + [anon_sym_not_DASHlike] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_has] = ACTIONS(1014), + [anon_sym_not_DASHhas] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1014), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), [sym__newline] = ACTIONS(996), + [anon_sym_SEMI] = ACTIONS(996), [anon_sym_PIPE] = ACTIONS(996), [anon_sym_err_GT_PIPE] = ACTIONS(996), [anon_sym_out_GT_PIPE] = ACTIONS(996), @@ -73308,151 +73351,318 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHor2] = ACTIONS(996), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(330)] = { + [sym_comment] = STATE(330), + [anon_sym_in] = ACTIONS(1004), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_like] = ACTIONS(1014), + [anon_sym_not_DASHlike] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_has] = ACTIONS(1014), + [anon_sym_not_DASHhas] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1014), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), + [sym__newline] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1004), + [anon_sym_err_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_GT_PIPE] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), + [anon_sym_GT2] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_STAR2] = ACTIONS(1004), + [anon_sym_and2] = ACTIONS(1004), + [anon_sym_xor2] = ACTIONS(1004), + [anon_sym_or2] = ACTIONS(1004), + [anon_sym_not_DASHin2] = ACTIONS(1004), + [anon_sym_has2] = ACTIONS(1004), + [anon_sym_not_DASHhas2] = ACTIONS(1004), + [anon_sym_starts_DASHwith2] = ACTIONS(1004), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1004), + [anon_sym_ends_DASHwith2] = ACTIONS(1004), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1004), + [anon_sym_EQ_EQ2] = ACTIONS(1004), + [anon_sym_BANG_EQ2] = ACTIONS(1004), + [anon_sym_LT2] = ACTIONS(1004), + [anon_sym_LT_EQ2] = ACTIONS(1004), + [anon_sym_GT_EQ2] = ACTIONS(1004), + [anon_sym_EQ_TILDE2] = ACTIONS(1004), + [anon_sym_BANG_TILDE2] = ACTIONS(1004), + [anon_sym_like2] = ACTIONS(1004), + [anon_sym_not_DASHlike2] = ACTIONS(1004), + [anon_sym_STAR_STAR2] = ACTIONS(1004), + [anon_sym_PLUS_PLUS2] = ACTIONS(1004), + [anon_sym_SLASH2] = ACTIONS(1004), + [anon_sym_mod2] = ACTIONS(1004), + [anon_sym_SLASH_SLASH2] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(1004), + [anon_sym_bit_DASHshl2] = ACTIONS(1004), + [anon_sym_bit_DASHshr2] = ACTIONS(1004), + [anon_sym_bit_DASHand2] = ACTIONS(1004), + [anon_sym_bit_DASHxor2] = ACTIONS(1004), + [anon_sym_bit_DASHor2] = ACTIONS(1004), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(331)] = { + [sym_comment] = STATE(331), + [anon_sym_in] = ACTIONS(1004), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_like] = ACTIONS(1014), + [anon_sym_not_DASHlike] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_has] = ACTIONS(1014), + [anon_sym_not_DASHhas] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1014), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), + [sym__newline] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1004), + [anon_sym_err_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_GT_PIPE] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), + [anon_sym_GT2] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_STAR2] = ACTIONS(1004), + [anon_sym_and2] = ACTIONS(1004), + [anon_sym_xor2] = ACTIONS(1004), + [anon_sym_or2] = ACTIONS(1004), + [anon_sym_not_DASHin2] = ACTIONS(1004), + [anon_sym_has2] = ACTIONS(1004), + [anon_sym_not_DASHhas2] = ACTIONS(1004), + [anon_sym_starts_DASHwith2] = ACTIONS(1004), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1004), + [anon_sym_ends_DASHwith2] = ACTIONS(1004), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1004), + [anon_sym_EQ_EQ2] = ACTIONS(1004), + [anon_sym_BANG_EQ2] = ACTIONS(1004), + [anon_sym_LT2] = ACTIONS(1004), + [anon_sym_LT_EQ2] = ACTIONS(1004), + [anon_sym_GT_EQ2] = ACTIONS(1004), + [anon_sym_EQ_TILDE2] = ACTIONS(1004), + [anon_sym_BANG_TILDE2] = ACTIONS(1004), + [anon_sym_like2] = ACTIONS(1004), + [anon_sym_not_DASHlike2] = ACTIONS(1004), + [anon_sym_STAR_STAR2] = ACTIONS(1004), + [anon_sym_PLUS_PLUS2] = ACTIONS(1004), + [anon_sym_SLASH2] = ACTIONS(1004), + [anon_sym_mod2] = ACTIONS(1004), + [anon_sym_SLASH_SLASH2] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(1004), + [anon_sym_bit_DASHshl2] = ACTIONS(1004), + [anon_sym_bit_DASHshr2] = ACTIONS(1004), + [anon_sym_bit_DASHand2] = ACTIONS(1004), + [anon_sym_bit_DASHxor2] = ACTIONS(1004), + [anon_sym_bit_DASHor2] = ACTIONS(1004), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(332)] = { [sym_comment] = STATE(332), - [anon_sym_in] = ACTIONS(1016), - [anon_sym_STAR_STAR] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1010), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1010), - [anon_sym_SLASH_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_bit_DASHshl] = ACTIONS(1010), - [anon_sym_bit_DASHshr] = ACTIONS(1010), - [anon_sym_EQ_TILDE] = ACTIONS(1010), - [anon_sym_BANG_TILDE] = ACTIONS(1010), - [anon_sym_like] = ACTIONS(1010), - [anon_sym_not_DASHlike] = ACTIONS(1010), - [anon_sym_bit_DASHand] = ACTIONS(1010), - [anon_sym_bit_DASHxor] = ACTIONS(1010), - [anon_sym_bit_DASHor] = ACTIONS(1010), - [anon_sym_and] = ACTIONS(1010), - [anon_sym_xor] = ACTIONS(1010), - [anon_sym_or] = ACTIONS(1010), - [anon_sym_in2] = ACTIONS(1010), - [anon_sym_not_DASHin] = ACTIONS(1010), - [anon_sym_has] = ACTIONS(1010), - [anon_sym_not_DASHhas] = ACTIONS(1010), - [anon_sym_starts_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1010), - [anon_sym_ends_DASHwith] = ACTIONS(1010), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1010), - [aux_sym_cmd_identifier_token6] = ACTIONS(1014), - [sym__newline] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_err_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_GT_PIPE] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1016), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1016), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1016), - [anon_sym_xor2] = ACTIONS(1016), - [anon_sym_or2] = ACTIONS(1016), - [anon_sym_not_DASHin2] = ACTIONS(1016), - [anon_sym_has2] = ACTIONS(1016), - [anon_sym_not_DASHhas2] = ACTIONS(1016), - [anon_sym_starts_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1016), - [anon_sym_ends_DASHwith2] = ACTIONS(1016), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1016), - [anon_sym_EQ_EQ2] = ACTIONS(1016), - [anon_sym_BANG_EQ2] = ACTIONS(1016), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1016), - [anon_sym_GT_EQ2] = ACTIONS(1016), - [anon_sym_EQ_TILDE2] = ACTIONS(1016), - [anon_sym_BANG_TILDE2] = ACTIONS(1016), - [anon_sym_like2] = ACTIONS(1016), - [anon_sym_not_DASHlike2] = ACTIONS(1016), - [anon_sym_STAR_STAR2] = ACTIONS(1016), - [anon_sym_PLUS_PLUS2] = ACTIONS(1016), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1016), - [anon_sym_SLASH_SLASH2] = ACTIONS(1016), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1016), - [anon_sym_bit_DASHshr2] = ACTIONS(1016), - [anon_sym_bit_DASHand2] = ACTIONS(1016), - [anon_sym_bit_DASHxor2] = ACTIONS(1016), - [anon_sym_bit_DASHor2] = ACTIONS(1016), + [anon_sym_in] = ACTIONS(996), + [anon_sym_STAR_STAR] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_mod] = ACTIONS(1014), + [anon_sym_SLASH_SLASH] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1014), + [anon_sym_bit_DASHshl] = ACTIONS(1014), + [anon_sym_bit_DASHshr] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1014), + [anon_sym_BANG_TILDE] = ACTIONS(1014), + [anon_sym_like] = ACTIONS(1014), + [anon_sym_not_DASHlike] = ACTIONS(1014), + [anon_sym_bit_DASHand] = ACTIONS(1014), + [anon_sym_bit_DASHxor] = ACTIONS(1014), + [anon_sym_bit_DASHor] = ACTIONS(1014), + [anon_sym_and] = ACTIONS(1014), + [anon_sym_xor] = ACTIONS(1014), + [anon_sym_or] = ACTIONS(1014), + [anon_sym_in2] = ACTIONS(1014), + [anon_sym_not_DASHin] = ACTIONS(1014), + [anon_sym_has] = ACTIONS(1014), + [anon_sym_not_DASHhas] = ACTIONS(1014), + [anon_sym_starts_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), + [anon_sym_ends_DASHwith] = ACTIONS(1014), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1014), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), + [sym__newline] = ACTIONS(996), + [anon_sym_PIPE] = ACTIONS(996), + [anon_sym_err_GT_PIPE] = ACTIONS(996), + [anon_sym_out_GT_PIPE] = ACTIONS(996), + [anon_sym_e_GT_PIPE] = ACTIONS(996), + [anon_sym_o_GT_PIPE] = ACTIONS(996), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), + [anon_sym_GT2] = ACTIONS(996), + [anon_sym_DASH2] = ACTIONS(996), + [anon_sym_STAR2] = ACTIONS(996), + [anon_sym_and2] = ACTIONS(996), + [anon_sym_xor2] = ACTIONS(996), + [anon_sym_or2] = ACTIONS(996), + [anon_sym_not_DASHin2] = ACTIONS(996), + [anon_sym_has2] = ACTIONS(996), + [anon_sym_not_DASHhas2] = ACTIONS(996), + [anon_sym_starts_DASHwith2] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), + [anon_sym_ends_DASHwith2] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), + [anon_sym_EQ_EQ2] = ACTIONS(996), + [anon_sym_BANG_EQ2] = ACTIONS(996), + [anon_sym_LT2] = ACTIONS(996), + [anon_sym_LT_EQ2] = ACTIONS(996), + [anon_sym_GT_EQ2] = ACTIONS(996), + [anon_sym_EQ_TILDE2] = ACTIONS(996), + [anon_sym_BANG_TILDE2] = ACTIONS(996), + [anon_sym_like2] = ACTIONS(996), + [anon_sym_not_DASHlike2] = ACTIONS(996), + [anon_sym_STAR_STAR2] = ACTIONS(996), + [anon_sym_PLUS_PLUS2] = ACTIONS(996), + [anon_sym_SLASH2] = ACTIONS(996), + [anon_sym_mod2] = ACTIONS(996), + [anon_sym_SLASH_SLASH2] = ACTIONS(996), + [anon_sym_PLUS2] = ACTIONS(996), + [anon_sym_bit_DASHshl2] = ACTIONS(996), + [anon_sym_bit_DASHshr2] = ACTIONS(996), + [anon_sym_bit_DASHand2] = ACTIONS(996), + [anon_sym_bit_DASHxor2] = ACTIONS(996), + [anon_sym_bit_DASHor2] = ACTIONS(996), [anon_sym_POUND] = ACTIONS(103), }, [STATE(333)] = { - [sym_cell_path] = STATE(368), - [sym_path] = STATE(339), + [sym_cell_path] = STATE(407), + [sym_path] = STATE(394), [sym_comment] = STATE(333), - [aux_sym__where_predicate_lhs_repeat1] = STATE(363), + [aux_sym__where_predicate_lhs_repeat1] = STATE(340), [anon_sym_EQ] = ACTIONS(1432), - [anon_sym_PLUS_EQ] = ACTIONS(1432), - [anon_sym_DASH_EQ] = ACTIONS(1432), - [anon_sym_STAR_EQ] = ACTIONS(1432), - [anon_sym_SLASH_EQ] = ACTIONS(1432), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1432), - [anon_sym_in] = ACTIONS(1432), - [sym__newline] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_err_GT_PIPE] = ACTIONS(1432), - [anon_sym_out_GT_PIPE] = ACTIONS(1432), - [anon_sym_e_GT_PIPE] = ACTIONS(1432), - [anon_sym_o_GT_PIPE] = ACTIONS(1432), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1432), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1432), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1432), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1432), + [anon_sym_PLUS_EQ] = ACTIONS(1434), + [anon_sym_DASH_EQ] = ACTIONS(1434), + [anon_sym_STAR_EQ] = ACTIONS(1434), + [anon_sym_SLASH_EQ] = ACTIONS(1434), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1434), + [anon_sym_in] = ACTIONS(1434), + [sym__newline] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym_PIPE] = ACTIONS(1434), + [anon_sym_err_GT_PIPE] = ACTIONS(1434), + [anon_sym_out_GT_PIPE] = ACTIONS(1434), + [anon_sym_e_GT_PIPE] = ACTIONS(1434), + [anon_sym_o_GT_PIPE] = ACTIONS(1434), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1434), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1434), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1434), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1434), + [anon_sym_RPAREN] = ACTIONS(1434), [anon_sym_GT2] = ACTIONS(1432), [anon_sym_DASH2] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1434), [anon_sym_STAR2] = ACTIONS(1432), - [anon_sym_and2] = ACTIONS(1432), - [anon_sym_xor2] = ACTIONS(1432), - [anon_sym_or2] = ACTIONS(1432), - [anon_sym_not_DASHin2] = ACTIONS(1432), - [anon_sym_has2] = ACTIONS(1432), - [anon_sym_not_DASHhas2] = ACTIONS(1432), - [anon_sym_starts_DASHwith2] = ACTIONS(1432), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1432), - [anon_sym_ends_DASHwith2] = ACTIONS(1432), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1432), - [anon_sym_EQ_EQ2] = ACTIONS(1432), - [anon_sym_BANG_EQ2] = ACTIONS(1432), + [anon_sym_and2] = ACTIONS(1434), + [anon_sym_xor2] = ACTIONS(1434), + [anon_sym_or2] = ACTIONS(1434), + [anon_sym_not_DASHin2] = ACTIONS(1434), + [anon_sym_has2] = ACTIONS(1434), + [anon_sym_not_DASHhas2] = ACTIONS(1434), + [anon_sym_starts_DASHwith2] = ACTIONS(1434), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1434), + [anon_sym_ends_DASHwith2] = ACTIONS(1434), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1434), + [anon_sym_EQ_EQ2] = ACTIONS(1434), + [anon_sym_BANG_EQ2] = ACTIONS(1434), [anon_sym_LT2] = ACTIONS(1432), - [anon_sym_LT_EQ2] = ACTIONS(1432), - [anon_sym_GT_EQ2] = ACTIONS(1432), - [anon_sym_EQ_TILDE2] = ACTIONS(1432), - [anon_sym_BANG_TILDE2] = ACTIONS(1432), - [anon_sym_like2] = ACTIONS(1432), - [anon_sym_not_DASHlike2] = ACTIONS(1432), - [anon_sym_STAR_STAR2] = ACTIONS(1432), + [anon_sym_LT_EQ2] = ACTIONS(1434), + [anon_sym_GT_EQ2] = ACTIONS(1434), + [anon_sym_EQ_TILDE2] = ACTIONS(1434), + [anon_sym_BANG_TILDE2] = ACTIONS(1434), + [anon_sym_like2] = ACTIONS(1434), + [anon_sym_not_DASHlike2] = ACTIONS(1434), + [anon_sym_STAR_STAR2] = ACTIONS(1434), [anon_sym_PLUS_PLUS2] = ACTIONS(1432), [anon_sym_SLASH2] = ACTIONS(1432), - [anon_sym_mod2] = ACTIONS(1432), - [anon_sym_SLASH_SLASH2] = ACTIONS(1432), + [anon_sym_mod2] = ACTIONS(1434), + [anon_sym_SLASH_SLASH2] = ACTIONS(1434), [anon_sym_PLUS2] = ACTIONS(1432), - [anon_sym_bit_DASHshl2] = ACTIONS(1432), - [anon_sym_bit_DASHshr2] = ACTIONS(1432), - [anon_sym_bit_DASHand2] = ACTIONS(1432), - [anon_sym_bit_DASHxor2] = ACTIONS(1432), - [anon_sym_bit_DASHor2] = ACTIONS(1432), + [anon_sym_bit_DASHshl2] = ACTIONS(1434), + [anon_sym_bit_DASHshr2] = ACTIONS(1434), + [anon_sym_bit_DASHand2] = ACTIONS(1434), + [anon_sym_bit_DASHxor2] = ACTIONS(1434), + [anon_sym_bit_DASHor2] = ACTIONS(1434), [anon_sym_DOT_DOT2] = ACTIONS(1432), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1434), [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), - [sym__entry_separator] = ACTIONS(1434), - [anon_sym_COLON2] = ACTIONS(1432), + [anon_sym_COLON2] = ACTIONS(1434), [anon_sym_DOT2] = ACTIONS(1436), [anon_sym_err_GT] = ACTIONS(1432), [anon_sym_out_GT] = ACTIONS(1432), @@ -73462,17 +73672,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT] = ACTIONS(1432), [anon_sym_o_PLUSe_GT] = ACTIONS(1432), [anon_sym_e_PLUSo_GT] = ACTIONS(1432), - [anon_sym_err_GT_GT] = ACTIONS(1432), - [anon_sym_out_GT_GT] = ACTIONS(1432), - [anon_sym_e_GT_GT] = ACTIONS(1432), - [anon_sym_o_GT_GT] = ACTIONS(1432), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1432), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1432), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1432), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1432), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_err_GT_GT] = ACTIONS(1434), + [anon_sym_out_GT_GT] = ACTIONS(1434), + [anon_sym_e_GT_GT] = ACTIONS(1434), + [anon_sym_o_GT_GT] = ACTIONS(1434), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1434), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1434), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1434), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(334)] = { + [sym__path_suffix] = STATE(352), [sym_comment] = STATE(334), [anon_sym_EQ] = ACTIONS(1438), [anon_sym_PLUS_EQ] = ACTIONS(1438), @@ -73492,11 +73703,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1438), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1438), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1438), - [anon_sym_RBRACK] = ACTIONS(1438), [anon_sym_GT2] = ACTIONS(1438), [anon_sym_DASH2] = ACTIONS(1438), [anon_sym_RBRACE] = ACTIONS(1438), - [anon_sym_DOT_DOT] = ACTIONS(1438), [anon_sym_STAR2] = ACTIONS(1438), [anon_sym_and2] = ACTIONS(1438), [anon_sym_xor2] = ACTIONS(1438), @@ -73534,6 +73743,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__entry_separator] = ACTIONS(1440), [anon_sym_COLON2] = ACTIONS(1438), [anon_sym_QMARK2] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1444), [anon_sym_DOT2] = ACTIONS(1438), [anon_sym_err_GT] = ACTIONS(1438), [anon_sym_out_GT] = ACTIONS(1438), @@ -73554,89 +73764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), }, [STATE(335)] = { - [sym_cell_path] = STATE(405), - [sym_path] = STATE(385), [sym_comment] = STATE(335), - [aux_sym__where_predicate_lhs_repeat1] = STATE(338), - [anon_sym_EQ] = ACTIONS(1432), - [anon_sym_PLUS_EQ] = ACTIONS(1434), - [anon_sym_DASH_EQ] = ACTIONS(1434), - [anon_sym_STAR_EQ] = ACTIONS(1434), - [anon_sym_SLASH_EQ] = ACTIONS(1434), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1434), - [anon_sym_in] = ACTIONS(1434), - [sym__newline] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_err_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_GT_PIPE] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1434), - [anon_sym_RPAREN] = ACTIONS(1434), - [anon_sym_GT2] = ACTIONS(1432), - [anon_sym_DASH2] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1434), - [anon_sym_STAR2] = ACTIONS(1432), - [anon_sym_and2] = ACTIONS(1434), - [anon_sym_xor2] = ACTIONS(1434), - [anon_sym_or2] = ACTIONS(1434), - [anon_sym_not_DASHin2] = ACTIONS(1434), - [anon_sym_has2] = ACTIONS(1434), - [anon_sym_not_DASHhas2] = ACTIONS(1434), - [anon_sym_starts_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1434), - [anon_sym_ends_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1434), - [anon_sym_EQ_EQ2] = ACTIONS(1434), - [anon_sym_BANG_EQ2] = ACTIONS(1434), - [anon_sym_LT2] = ACTIONS(1432), - [anon_sym_LT_EQ2] = ACTIONS(1434), - [anon_sym_GT_EQ2] = ACTIONS(1434), - [anon_sym_EQ_TILDE2] = ACTIONS(1434), - [anon_sym_BANG_TILDE2] = ACTIONS(1434), - [anon_sym_like2] = ACTIONS(1434), - [anon_sym_not_DASHlike2] = ACTIONS(1434), - [anon_sym_STAR_STAR2] = ACTIONS(1434), - [anon_sym_PLUS_PLUS2] = ACTIONS(1432), - [anon_sym_SLASH2] = ACTIONS(1432), - [anon_sym_mod2] = ACTIONS(1434), - [anon_sym_SLASH_SLASH2] = ACTIONS(1434), - [anon_sym_PLUS2] = ACTIONS(1432), - [anon_sym_bit_DASHshl2] = ACTIONS(1434), - [anon_sym_bit_DASHshr2] = ACTIONS(1434), - [anon_sym_bit_DASHand2] = ACTIONS(1434), - [anon_sym_bit_DASHxor2] = ACTIONS(1434), - [anon_sym_bit_DASHor2] = ACTIONS(1434), - [anon_sym_DOT_DOT2] = ACTIONS(1432), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1434), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), - [anon_sym_COLON2] = ACTIONS(1434), - [anon_sym_DOT2] = ACTIONS(1444), - [anon_sym_err_GT] = ACTIONS(1432), - [anon_sym_out_GT] = ACTIONS(1432), - [anon_sym_e_GT] = ACTIONS(1432), - [anon_sym_o_GT] = ACTIONS(1432), - [anon_sym_err_PLUSout_GT] = ACTIONS(1432), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1432), - [anon_sym_o_PLUSe_GT] = ACTIONS(1432), - [anon_sym_e_PLUSo_GT] = ACTIONS(1432), - [anon_sym_err_GT_GT] = ACTIONS(1434), - [anon_sym_out_GT_GT] = ACTIONS(1434), - [anon_sym_e_GT_GT] = ACTIONS(1434), - [anon_sym_o_GT_GT] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1434), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(336)] = { - [sym__path_suffix] = STATE(351), - [sym_comment] = STATE(336), [anon_sym_EQ] = ACTIONS(1446), [anon_sym_PLUS_EQ] = ACTIONS(1446), [anon_sym_DASH_EQ] = ACTIONS(1446), @@ -73655,9 +73783,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1446), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1446), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1446), + [anon_sym_RBRACK] = ACTIONS(1446), [anon_sym_GT2] = ACTIONS(1446), [anon_sym_DASH2] = ACTIONS(1446), [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_DOT_DOT] = ACTIONS(1446), [anon_sym_STAR2] = ACTIONS(1446), [anon_sym_and2] = ACTIONS(1446), [anon_sym_xor2] = ACTIONS(1446), @@ -73695,7 +73825,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__entry_separator] = ACTIONS(1448), [anon_sym_COLON2] = ACTIONS(1446), [anon_sym_QMARK2] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1452), [anon_sym_DOT2] = ACTIONS(1446), [anon_sym_err_GT] = ACTIONS(1446), [anon_sym_out_GT] = ACTIONS(1446), @@ -73715,91 +73844,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1446), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(336)] = { + [sym__path_suffix] = STATE(378), + [sym_comment] = STATE(336), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_PLUS_EQ] = ACTIONS(1440), + [anon_sym_DASH_EQ] = ACTIONS(1440), + [anon_sym_STAR_EQ] = ACTIONS(1440), + [anon_sym_SLASH_EQ] = ACTIONS(1440), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1440), + [anon_sym_in] = ACTIONS(1440), + [sym__newline] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1440), + [anon_sym_PIPE] = ACTIONS(1440), + [anon_sym_err_GT_PIPE] = ACTIONS(1440), + [anon_sym_out_GT_PIPE] = ACTIONS(1440), + [anon_sym_e_GT_PIPE] = ACTIONS(1440), + [anon_sym_o_GT_PIPE] = ACTIONS(1440), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), + [anon_sym_RPAREN] = ACTIONS(1440), + [anon_sym_GT2] = ACTIONS(1438), + [anon_sym_DASH2] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1440), + [anon_sym_STAR2] = ACTIONS(1438), + [anon_sym_and2] = ACTIONS(1440), + [anon_sym_xor2] = ACTIONS(1440), + [anon_sym_or2] = ACTIONS(1440), + [anon_sym_not_DASHin2] = ACTIONS(1440), + [anon_sym_has2] = ACTIONS(1440), + [anon_sym_not_DASHhas2] = ACTIONS(1440), + [anon_sym_starts_DASHwith2] = ACTIONS(1440), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), + [anon_sym_ends_DASHwith2] = ACTIONS(1440), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), + [anon_sym_EQ_EQ2] = ACTIONS(1440), + [anon_sym_BANG_EQ2] = ACTIONS(1440), + [anon_sym_LT2] = ACTIONS(1438), + [anon_sym_LT_EQ2] = ACTIONS(1440), + [anon_sym_GT_EQ2] = ACTIONS(1440), + [anon_sym_EQ_TILDE2] = ACTIONS(1440), + [anon_sym_BANG_TILDE2] = ACTIONS(1440), + [anon_sym_like2] = ACTIONS(1440), + [anon_sym_not_DASHlike2] = ACTIONS(1440), + [anon_sym_STAR_STAR2] = ACTIONS(1440), + [anon_sym_PLUS_PLUS2] = ACTIONS(1438), + [anon_sym_SLASH2] = ACTIONS(1438), + [anon_sym_mod2] = ACTIONS(1440), + [anon_sym_SLASH_SLASH2] = ACTIONS(1440), + [anon_sym_PLUS2] = ACTIONS(1438), + [anon_sym_bit_DASHshl2] = ACTIONS(1440), + [anon_sym_bit_DASHshr2] = ACTIONS(1440), + [anon_sym_bit_DASHand2] = ACTIONS(1440), + [anon_sym_bit_DASHxor2] = ACTIONS(1440), + [anon_sym_bit_DASHor2] = ACTIONS(1440), + [anon_sym_DOT_DOT2] = ACTIONS(1438), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), + [anon_sym_COLON2] = ACTIONS(1440), + [anon_sym_QMARK2] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_DOT2] = ACTIONS(1438), + [anon_sym_err_GT] = ACTIONS(1438), + [anon_sym_out_GT] = ACTIONS(1438), + [anon_sym_e_GT] = ACTIONS(1438), + [anon_sym_o_GT] = ACTIONS(1438), + [anon_sym_err_PLUSout_GT] = ACTIONS(1438), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), + [anon_sym_o_PLUSe_GT] = ACTIONS(1438), + [anon_sym_e_PLUSo_GT] = ACTIONS(1438), + [anon_sym_err_GT_GT] = ACTIONS(1440), + [anon_sym_out_GT_GT] = ACTIONS(1440), + [anon_sym_e_GT_GT] = ACTIONS(1440), + [anon_sym_o_GT_GT] = ACTIONS(1440), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(337)] = { - [sym__path_suffix] = STATE(388), + [sym_cell_path] = STATE(374), + [sym_path] = STATE(367), [sym_comment] = STATE(337), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_PLUS_EQ] = ACTIONS(1448), - [anon_sym_DASH_EQ] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1448), - [anon_sym_SLASH_EQ] = ACTIONS(1448), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1448), - [anon_sym_in] = ACTIONS(1448), - [sym__newline] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_err_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_GT_PIPE] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), - [anon_sym_RPAREN] = ACTIONS(1448), - [anon_sym_GT2] = ACTIONS(1446), - [anon_sym_DASH2] = ACTIONS(1446), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_STAR2] = ACTIONS(1446), - [anon_sym_and2] = ACTIONS(1448), - [anon_sym_xor2] = ACTIONS(1448), - [anon_sym_or2] = ACTIONS(1448), - [anon_sym_not_DASHin2] = ACTIONS(1448), - [anon_sym_has2] = ACTIONS(1448), - [anon_sym_not_DASHhas2] = ACTIONS(1448), - [anon_sym_starts_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1448), - [anon_sym_ends_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), - [anon_sym_EQ_EQ2] = ACTIONS(1448), - [anon_sym_BANG_EQ2] = ACTIONS(1448), - [anon_sym_LT2] = ACTIONS(1446), - [anon_sym_LT_EQ2] = ACTIONS(1448), - [anon_sym_GT_EQ2] = ACTIONS(1448), - [anon_sym_EQ_TILDE2] = ACTIONS(1448), - [anon_sym_BANG_TILDE2] = ACTIONS(1448), - [anon_sym_like2] = ACTIONS(1448), - [anon_sym_not_DASHlike2] = ACTIONS(1448), - [anon_sym_STAR_STAR2] = ACTIONS(1448), - [anon_sym_PLUS_PLUS2] = ACTIONS(1446), - [anon_sym_SLASH2] = ACTIONS(1446), - [anon_sym_mod2] = ACTIONS(1448), - [anon_sym_SLASH_SLASH2] = ACTIONS(1448), - [anon_sym_PLUS2] = ACTIONS(1446), - [anon_sym_bit_DASHshl2] = ACTIONS(1448), - [anon_sym_bit_DASHshr2] = ACTIONS(1448), - [anon_sym_bit_DASHand2] = ACTIONS(1448), - [anon_sym_bit_DASHxor2] = ACTIONS(1448), - [anon_sym_bit_DASHor2] = ACTIONS(1448), - [anon_sym_DOT_DOT2] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), - [anon_sym_COLON2] = ACTIONS(1448), - [anon_sym_QMARK2] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1456), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1446), - [anon_sym_out_GT] = ACTIONS(1446), - [anon_sym_e_GT] = ACTIONS(1446), - [anon_sym_o_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT] = ACTIONS(1446), - [anon_sym_err_GT_GT] = ACTIONS(1448), - [anon_sym_out_GT_GT] = ACTIONS(1448), - [anon_sym_e_GT_GT] = ACTIONS(1448), - [anon_sym_o_GT_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__where_predicate_lhs_repeat1] = STATE(365), + [anon_sym_EQ] = ACTIONS(1432), + [anon_sym_PLUS_EQ] = ACTIONS(1432), + [anon_sym_DASH_EQ] = ACTIONS(1432), + [anon_sym_STAR_EQ] = ACTIONS(1432), + [anon_sym_SLASH_EQ] = ACTIONS(1432), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1432), + [anon_sym_in] = ACTIONS(1432), + [sym__newline] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym_PIPE] = ACTIONS(1432), + [anon_sym_err_GT_PIPE] = ACTIONS(1432), + [anon_sym_out_GT_PIPE] = ACTIONS(1432), + [anon_sym_e_GT_PIPE] = ACTIONS(1432), + [anon_sym_o_GT_PIPE] = ACTIONS(1432), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1432), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1432), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1432), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1432), + [anon_sym_GT2] = ACTIONS(1432), + [anon_sym_DASH2] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1432), + [anon_sym_STAR2] = ACTIONS(1432), + [anon_sym_and2] = ACTIONS(1432), + [anon_sym_xor2] = ACTIONS(1432), + [anon_sym_or2] = ACTIONS(1432), + [anon_sym_not_DASHin2] = ACTIONS(1432), + [anon_sym_has2] = ACTIONS(1432), + [anon_sym_not_DASHhas2] = ACTIONS(1432), + [anon_sym_starts_DASHwith2] = ACTIONS(1432), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1432), + [anon_sym_ends_DASHwith2] = ACTIONS(1432), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1432), + [anon_sym_EQ_EQ2] = ACTIONS(1432), + [anon_sym_BANG_EQ2] = ACTIONS(1432), + [anon_sym_LT2] = ACTIONS(1432), + [anon_sym_LT_EQ2] = ACTIONS(1432), + [anon_sym_GT_EQ2] = ACTIONS(1432), + [anon_sym_EQ_TILDE2] = ACTIONS(1432), + [anon_sym_BANG_TILDE2] = ACTIONS(1432), + [anon_sym_like2] = ACTIONS(1432), + [anon_sym_not_DASHlike2] = ACTIONS(1432), + [anon_sym_STAR_STAR2] = ACTIONS(1432), + [anon_sym_PLUS_PLUS2] = ACTIONS(1432), + [anon_sym_SLASH2] = ACTIONS(1432), + [anon_sym_mod2] = ACTIONS(1432), + [anon_sym_SLASH_SLASH2] = ACTIONS(1432), + [anon_sym_PLUS2] = ACTIONS(1432), + [anon_sym_bit_DASHshl2] = ACTIONS(1432), + [anon_sym_bit_DASHshr2] = ACTIONS(1432), + [anon_sym_bit_DASHand2] = ACTIONS(1432), + [anon_sym_bit_DASHxor2] = ACTIONS(1432), + [anon_sym_bit_DASHor2] = ACTIONS(1432), + [anon_sym_DOT_DOT2] = ACTIONS(1432), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1434), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), + [sym__entry_separator] = ACTIONS(1434), + [anon_sym_COLON2] = ACTIONS(1432), + [anon_sym_DOT2] = ACTIONS(1456), + [anon_sym_err_GT] = ACTIONS(1432), + [anon_sym_out_GT] = ACTIONS(1432), + [anon_sym_e_GT] = ACTIONS(1432), + [anon_sym_o_GT] = ACTIONS(1432), + [anon_sym_err_PLUSout_GT] = ACTIONS(1432), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1432), + [anon_sym_o_PLUSe_GT] = ACTIONS(1432), + [anon_sym_e_PLUSo_GT] = ACTIONS(1432), + [anon_sym_err_GT_GT] = ACTIONS(1432), + [anon_sym_out_GT_GT] = ACTIONS(1432), + [anon_sym_e_GT_GT] = ACTIONS(1432), + [anon_sym_o_GT_GT] = ACTIONS(1432), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1432), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1432), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1432), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1432), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(338)] = { - [sym_path] = STATE(385), [sym_comment] = STATE(338), - [aux_sym__where_predicate_lhs_repeat1] = STATE(353), [anon_sym_EQ] = ACTIONS(1458), [anon_sym_PLUS_EQ] = ACTIONS(1460), [anon_sym_DASH_EQ] = ACTIONS(1460), @@ -73857,7 +74065,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ2] = ACTIONS(1460), [anon_sym_DOT_DOT_LT2] = ACTIONS(1460), [anon_sym_COLON2] = ACTIONS(1460), - [anon_sym_DOT2] = ACTIONS(1444), + [anon_sym_QMARK2] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_DOT2] = ACTIONS(1458), [anon_sym_err_GT] = ACTIONS(1458), [anon_sym_out_GT] = ACTIONS(1458), [anon_sym_e_GT] = ACTIONS(1458), @@ -73877,555 +74087,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(339)] = { + [aux_sym__repeat_newline] = STATE(4123), + [sym_expr_parenthesized] = STATE(4058), + [sym__spread_parenthesized] = STATE(4700), + [sym_val_range] = STATE(4730), + [sym__val_range] = STATE(4544), + [sym__value] = STATE(4730), + [sym_val_nothing] = STATE(4604), + [sym_val_bool] = STATE(4358), + [sym__spread_variable] = STATE(4795), + [sym_val_variable] = STATE(3879), + [sym_val_cellpath] = STATE(4604), + [sym_val_number] = STATE(4604), + [sym__val_number_decimal] = STATE(3485), + [sym__val_number] = STATE(4361), + [sym_val_duration] = STATE(4604), + [sym_val_filesize] = STATE(4604), + [sym_val_binary] = STATE(4604), + [sym_val_string] = STATE(4604), + [sym__raw_str] = STATE(3638), + [sym__str_double_quotes] = STATE(3638), + [sym__str_single_quotes] = STATE(3638), + [sym__str_back_ticks] = STATE(3638), + [sym_val_interpolated] = STATE(4604), + [sym__inter_single_quotes] = STATE(4595), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4558), + [sym__spread_list] = STATE(4700), + [sym_list_body] = STATE(4988), + [sym_val_entry] = STATE(4576), + [sym_val_record] = STATE(4604), + [sym__table_head] = STATE(3745), + [sym_val_table] = STATE(4604), + [sym_val_closure] = STATE(4604), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4730), + [sym__unquoted_anonymous_prefix] = STATE(4544), [sym_comment] = STATE(339), - [anon_sym_EQ] = ACTIONS(1462), - [anon_sym_PLUS_EQ] = ACTIONS(1462), - [anon_sym_DASH_EQ] = ACTIONS(1462), - [anon_sym_STAR_EQ] = ACTIONS(1462), - [anon_sym_SLASH_EQ] = ACTIONS(1462), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1462), - [anon_sym_in] = ACTIONS(1462), - [sym__newline] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym_PIPE] = ACTIONS(1462), - [anon_sym_err_GT_PIPE] = ACTIONS(1462), - [anon_sym_out_GT_PIPE] = ACTIONS(1462), - [anon_sym_e_GT_PIPE] = ACTIONS(1462), - [anon_sym_o_GT_PIPE] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1462), - [anon_sym_RBRACK] = ACTIONS(1462), - [anon_sym_GT2] = ACTIONS(1462), - [anon_sym_DASH2] = ACTIONS(1462), - [anon_sym_RBRACE] = ACTIONS(1462), - [anon_sym_DOT_DOT] = ACTIONS(1462), - [anon_sym_STAR2] = ACTIONS(1462), - [anon_sym_and2] = ACTIONS(1462), - [anon_sym_xor2] = ACTIONS(1462), - [anon_sym_or2] = ACTIONS(1462), - [anon_sym_not_DASHin2] = ACTIONS(1462), - [anon_sym_has2] = ACTIONS(1462), - [anon_sym_not_DASHhas2] = ACTIONS(1462), - [anon_sym_starts_DASHwith2] = ACTIONS(1462), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1462), - [anon_sym_ends_DASHwith2] = ACTIONS(1462), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1462), - [anon_sym_EQ_EQ2] = ACTIONS(1462), - [anon_sym_BANG_EQ2] = ACTIONS(1462), - [anon_sym_LT2] = ACTIONS(1462), - [anon_sym_LT_EQ2] = ACTIONS(1462), - [anon_sym_GT_EQ2] = ACTIONS(1462), - [anon_sym_EQ_TILDE2] = ACTIONS(1462), - [anon_sym_BANG_TILDE2] = ACTIONS(1462), - [anon_sym_like2] = ACTIONS(1462), - [anon_sym_not_DASHlike2] = ACTIONS(1462), - [anon_sym_STAR_STAR2] = ACTIONS(1462), - [anon_sym_PLUS_PLUS2] = ACTIONS(1462), - [anon_sym_SLASH2] = ACTIONS(1462), - [anon_sym_mod2] = ACTIONS(1462), - [anon_sym_SLASH_SLASH2] = ACTIONS(1462), - [anon_sym_PLUS2] = ACTIONS(1462), - [anon_sym_bit_DASHshl2] = ACTIONS(1462), - [anon_sym_bit_DASHshr2] = ACTIONS(1462), - [anon_sym_bit_DASHand2] = ACTIONS(1462), - [anon_sym_bit_DASHxor2] = ACTIONS(1462), - [anon_sym_bit_DASHor2] = ACTIONS(1462), - [anon_sym_DOT_DOT2] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [sym__entry_separator] = ACTIONS(1464), - [anon_sym_COLON2] = ACTIONS(1462), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), - [anon_sym_err_GT_GT] = ACTIONS(1462), - [anon_sym_out_GT_GT] = ACTIONS(1462), - [anon_sym_e_GT_GT] = ACTIONS(1462), - [anon_sym_o_GT_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1462), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(340)] = { - [sym_comment] = STATE(340), - [anon_sym_EQ] = ACTIONS(1466), - [anon_sym_PLUS_EQ] = ACTIONS(1466), - [anon_sym_DASH_EQ] = ACTIONS(1466), - [anon_sym_STAR_EQ] = ACTIONS(1466), - [anon_sym_SLASH_EQ] = ACTIONS(1466), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1466), - [anon_sym_in] = ACTIONS(1466), - [sym__newline] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym_PIPE] = ACTIONS(1466), - [anon_sym_err_GT_PIPE] = ACTIONS(1466), - [anon_sym_out_GT_PIPE] = ACTIONS(1466), - [anon_sym_e_GT_PIPE] = ACTIONS(1466), - [anon_sym_o_GT_PIPE] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1466), - [anon_sym_GT2] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1466), - [anon_sym_STAR2] = ACTIONS(1466), - [anon_sym_and2] = ACTIONS(1466), - [anon_sym_xor2] = ACTIONS(1466), - [anon_sym_or2] = ACTIONS(1466), - [anon_sym_not_DASHin2] = ACTIONS(1466), - [anon_sym_has2] = ACTIONS(1466), - [anon_sym_not_DASHhas2] = ACTIONS(1466), - [anon_sym_starts_DASHwith2] = ACTIONS(1466), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1466), - [anon_sym_ends_DASHwith2] = ACTIONS(1466), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1466), - [anon_sym_EQ_EQ2] = ACTIONS(1466), - [anon_sym_BANG_EQ2] = ACTIONS(1466), - [anon_sym_LT2] = ACTIONS(1466), - [anon_sym_LT_EQ2] = ACTIONS(1466), - [anon_sym_GT_EQ2] = ACTIONS(1466), - [anon_sym_EQ_TILDE2] = ACTIONS(1466), - [anon_sym_BANG_TILDE2] = ACTIONS(1466), - [anon_sym_like2] = ACTIONS(1466), - [anon_sym_not_DASHlike2] = ACTIONS(1466), - [anon_sym_STAR_STAR2] = ACTIONS(1466), - [anon_sym_PLUS_PLUS2] = ACTIONS(1466), - [anon_sym_SLASH2] = ACTIONS(1466), - [anon_sym_mod2] = ACTIONS(1466), - [anon_sym_SLASH_SLASH2] = ACTIONS(1466), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_bit_DASHshl2] = ACTIONS(1466), - [anon_sym_bit_DASHshr2] = ACTIONS(1466), - [anon_sym_bit_DASHand2] = ACTIONS(1466), - [anon_sym_bit_DASHxor2] = ACTIONS(1466), - [anon_sym_bit_DASHor2] = ACTIONS(1466), - [anon_sym_DOT_DOT2] = ACTIONS(1466), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), - [sym__entry_separator] = ACTIONS(1468), - [anon_sym_COLON2] = ACTIONS(1466), - [anon_sym_QMARK2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1466), - [anon_sym_out_GT_GT] = ACTIONS(1466), - [anon_sym_e_GT_GT] = ACTIONS(1466), - [anon_sym_o_GT_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1466), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(341)] = { - [sym_comment] = STATE(341), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_PLUS_EQ] = ACTIONS(1470), - [anon_sym_DASH_EQ] = ACTIONS(1470), - [anon_sym_STAR_EQ] = ACTIONS(1470), - [anon_sym_SLASH_EQ] = ACTIONS(1470), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1470), - [anon_sym_in] = ACTIONS(1470), - [sym__newline] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym_PIPE] = ACTIONS(1470), - [anon_sym_err_GT_PIPE] = ACTIONS(1470), - [anon_sym_out_GT_PIPE] = ACTIONS(1470), - [anon_sym_e_GT_PIPE] = ACTIONS(1470), - [anon_sym_o_GT_PIPE] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1470), - [anon_sym_GT2] = ACTIONS(1470), - [anon_sym_DASH2] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_STAR2] = ACTIONS(1470), - [anon_sym_and2] = ACTIONS(1470), - [anon_sym_xor2] = ACTIONS(1470), - [anon_sym_or2] = ACTIONS(1470), - [anon_sym_not_DASHin2] = ACTIONS(1470), - [anon_sym_has2] = ACTIONS(1470), - [anon_sym_not_DASHhas2] = ACTIONS(1470), - [anon_sym_starts_DASHwith2] = ACTIONS(1470), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1470), - [anon_sym_ends_DASHwith2] = ACTIONS(1470), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1470), - [anon_sym_EQ_EQ2] = ACTIONS(1470), - [anon_sym_BANG_EQ2] = ACTIONS(1470), - [anon_sym_LT2] = ACTIONS(1470), - [anon_sym_LT_EQ2] = ACTIONS(1470), - [anon_sym_GT_EQ2] = ACTIONS(1470), - [anon_sym_EQ_TILDE2] = ACTIONS(1470), - [anon_sym_BANG_TILDE2] = ACTIONS(1470), - [anon_sym_like2] = ACTIONS(1470), - [anon_sym_not_DASHlike2] = ACTIONS(1470), - [anon_sym_STAR_STAR2] = ACTIONS(1470), - [anon_sym_PLUS_PLUS2] = ACTIONS(1470), - [anon_sym_SLASH2] = ACTIONS(1470), - [anon_sym_mod2] = ACTIONS(1470), - [anon_sym_SLASH_SLASH2] = ACTIONS(1470), - [anon_sym_PLUS2] = ACTIONS(1470), - [anon_sym_bit_DASHshl2] = ACTIONS(1470), - [anon_sym_bit_DASHshr2] = ACTIONS(1470), - [anon_sym_bit_DASHand2] = ACTIONS(1470), - [anon_sym_bit_DASHxor2] = ACTIONS(1470), - [anon_sym_bit_DASHor2] = ACTIONS(1470), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [sym__entry_separator] = ACTIONS(1472), - [anon_sym_COLON2] = ACTIONS(1470), - [anon_sym_QMARK2] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1470), - [anon_sym_out_GT_GT] = ACTIONS(1470), - [anon_sym_e_GT_GT] = ACTIONS(1470), - [anon_sym_o_GT_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(342)] = { - [sym_comment] = STATE(342), - [anon_sym_EQ] = ACTIONS(1474), - [anon_sym_PLUS_EQ] = ACTIONS(1474), - [anon_sym_DASH_EQ] = ACTIONS(1474), - [anon_sym_STAR_EQ] = ACTIONS(1474), - [anon_sym_SLASH_EQ] = ACTIONS(1474), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1474), - [anon_sym_in] = ACTIONS(1474), - [sym__newline] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym_PIPE] = ACTIONS(1474), - [anon_sym_err_GT_PIPE] = ACTIONS(1474), - [anon_sym_out_GT_PIPE] = ACTIONS(1474), - [anon_sym_e_GT_PIPE] = ACTIONS(1474), - [anon_sym_o_GT_PIPE] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1474), - [anon_sym_GT2] = ACTIONS(1474), - [anon_sym_DASH2] = ACTIONS(1474), - [anon_sym_RBRACE] = ACTIONS(1474), - [anon_sym_STAR2] = ACTIONS(1474), - [anon_sym_and2] = ACTIONS(1474), - [anon_sym_xor2] = ACTIONS(1474), - [anon_sym_or2] = ACTIONS(1474), - [anon_sym_not_DASHin2] = ACTIONS(1474), - [anon_sym_has2] = ACTIONS(1474), - [anon_sym_not_DASHhas2] = ACTIONS(1474), - [anon_sym_starts_DASHwith2] = ACTIONS(1474), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1474), - [anon_sym_ends_DASHwith2] = ACTIONS(1474), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1474), - [anon_sym_EQ_EQ2] = ACTIONS(1474), - [anon_sym_BANG_EQ2] = ACTIONS(1474), - [anon_sym_LT2] = ACTIONS(1474), - [anon_sym_LT_EQ2] = ACTIONS(1474), - [anon_sym_GT_EQ2] = ACTIONS(1474), - [anon_sym_EQ_TILDE2] = ACTIONS(1474), - [anon_sym_BANG_TILDE2] = ACTIONS(1474), - [anon_sym_like2] = ACTIONS(1474), - [anon_sym_not_DASHlike2] = ACTIONS(1474), - [anon_sym_STAR_STAR2] = ACTIONS(1474), - [anon_sym_PLUS_PLUS2] = ACTIONS(1474), - [anon_sym_SLASH2] = ACTIONS(1474), - [anon_sym_mod2] = ACTIONS(1474), - [anon_sym_SLASH_SLASH2] = ACTIONS(1474), - [anon_sym_PLUS2] = ACTIONS(1474), - [anon_sym_bit_DASHshl2] = ACTIONS(1474), - [anon_sym_bit_DASHshr2] = ACTIONS(1474), - [anon_sym_bit_DASHand2] = ACTIONS(1474), - [anon_sym_bit_DASHxor2] = ACTIONS(1474), - [anon_sym_bit_DASHor2] = ACTIONS(1474), - [anon_sym_DOT_DOT2] = ACTIONS(1474), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1476), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1476), - [sym__entry_separator] = ACTIONS(1476), - [anon_sym_COLON2] = ACTIONS(1474), - [anon_sym_QMARK2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_DOT2] = ACTIONS(1474), - [anon_sym_err_GT] = ACTIONS(1474), - [anon_sym_out_GT] = ACTIONS(1474), - [anon_sym_e_GT] = ACTIONS(1474), - [anon_sym_o_GT] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT] = ACTIONS(1474), - [anon_sym_err_GT_GT] = ACTIONS(1474), - [anon_sym_out_GT_GT] = ACTIONS(1474), - [anon_sym_e_GT_GT] = ACTIONS(1474), - [anon_sym_o_GT_GT] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1474), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(343)] = { - [sym_comment] = STATE(343), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_PLUS_EQ] = ACTIONS(1480), - [anon_sym_DASH_EQ] = ACTIONS(1480), - [anon_sym_STAR_EQ] = ACTIONS(1480), - [anon_sym_SLASH_EQ] = ACTIONS(1480), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1480), - [anon_sym_in] = ACTIONS(1480), - [sym__newline] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_err_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_GT_PIPE] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1480), - [anon_sym_RPAREN] = ACTIONS(1480), - [anon_sym_GT2] = ACTIONS(1478), - [anon_sym_DASH2] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_STAR2] = ACTIONS(1478), - [anon_sym_and2] = ACTIONS(1480), - [anon_sym_xor2] = ACTIONS(1480), - [anon_sym_or2] = ACTIONS(1480), - [anon_sym_not_DASHin2] = ACTIONS(1480), - [anon_sym_has2] = ACTIONS(1480), - [anon_sym_not_DASHhas2] = ACTIONS(1480), - [anon_sym_starts_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1480), - [anon_sym_ends_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1480), - [anon_sym_EQ_EQ2] = ACTIONS(1480), - [anon_sym_BANG_EQ2] = ACTIONS(1480), - [anon_sym_LT2] = ACTIONS(1478), - [anon_sym_LT_EQ2] = ACTIONS(1480), - [anon_sym_GT_EQ2] = ACTIONS(1480), - [anon_sym_EQ_TILDE2] = ACTIONS(1480), - [anon_sym_BANG_TILDE2] = ACTIONS(1480), - [anon_sym_like2] = ACTIONS(1480), - [anon_sym_not_DASHlike2] = ACTIONS(1480), - [anon_sym_STAR_STAR2] = ACTIONS(1480), - [anon_sym_PLUS_PLUS2] = ACTIONS(1478), - [anon_sym_SLASH2] = ACTIONS(1478), - [anon_sym_mod2] = ACTIONS(1480), - [anon_sym_SLASH_SLASH2] = ACTIONS(1480), - [anon_sym_PLUS2] = ACTIONS(1478), - [anon_sym_bit_DASHshl2] = ACTIONS(1480), - [anon_sym_bit_DASHshr2] = ACTIONS(1480), - [anon_sym_bit_DASHand2] = ACTIONS(1480), - [anon_sym_bit_DASHxor2] = ACTIONS(1480), - [anon_sym_bit_DASHor2] = ACTIONS(1480), - [anon_sym_DOT_DOT2] = ACTIONS(1478), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1480), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1480), - [anon_sym_COLON2] = ACTIONS(1480), - [anon_sym_QMARK2] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_DOT2] = ACTIONS(1478), - [anon_sym_err_GT] = ACTIONS(1478), - [anon_sym_out_GT] = ACTIONS(1478), - [anon_sym_e_GT] = ACTIONS(1478), - [anon_sym_o_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT] = ACTIONS(1478), - [anon_sym_err_GT_GT] = ACTIONS(1480), - [anon_sym_out_GT_GT] = ACTIONS(1480), - [anon_sym_e_GT_GT] = ACTIONS(1480), - [anon_sym_o_GT_GT] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1480), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(344)] = { - [sym_comment] = STATE(344), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_PLUS_EQ] = ACTIONS(1472), - [anon_sym_DASH_EQ] = ACTIONS(1472), - [anon_sym_STAR_EQ] = ACTIONS(1472), - [anon_sym_SLASH_EQ] = ACTIONS(1472), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1472), - [anon_sym_in] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_RPAREN] = ACTIONS(1472), - [anon_sym_GT2] = ACTIONS(1470), - [anon_sym_DASH2] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_STAR2] = ACTIONS(1470), - [anon_sym_and2] = ACTIONS(1472), - [anon_sym_xor2] = ACTIONS(1472), - [anon_sym_or2] = ACTIONS(1472), - [anon_sym_not_DASHin2] = ACTIONS(1472), - [anon_sym_has2] = ACTIONS(1472), - [anon_sym_not_DASHhas2] = ACTIONS(1472), - [anon_sym_starts_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1472), - [anon_sym_ends_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1472), - [anon_sym_EQ_EQ2] = ACTIONS(1472), - [anon_sym_BANG_EQ2] = ACTIONS(1472), - [anon_sym_LT2] = ACTIONS(1470), - [anon_sym_LT_EQ2] = ACTIONS(1472), - [anon_sym_GT_EQ2] = ACTIONS(1472), - [anon_sym_EQ_TILDE2] = ACTIONS(1472), - [anon_sym_BANG_TILDE2] = ACTIONS(1472), - [anon_sym_like2] = ACTIONS(1472), - [anon_sym_not_DASHlike2] = ACTIONS(1472), - [anon_sym_STAR_STAR2] = ACTIONS(1472), - [anon_sym_PLUS_PLUS2] = ACTIONS(1470), - [anon_sym_SLASH2] = ACTIONS(1470), - [anon_sym_mod2] = ACTIONS(1472), - [anon_sym_SLASH_SLASH2] = ACTIONS(1472), - [anon_sym_PLUS2] = ACTIONS(1470), - [anon_sym_bit_DASHshl2] = ACTIONS(1472), - [anon_sym_bit_DASHshr2] = ACTIONS(1472), - [anon_sym_bit_DASHand2] = ACTIONS(1472), - [anon_sym_bit_DASHxor2] = ACTIONS(1472), - [anon_sym_bit_DASHor2] = ACTIONS(1472), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [anon_sym_COLON2] = ACTIONS(1472), - [anon_sym_QMARK2] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(345)] = { - [aux_sym__repeat_newline] = STATE(4288), - [sym_expr_parenthesized] = STATE(3911), - [sym__spread_parenthesized] = STATE(4721), - [sym_val_range] = STATE(4776), - [sym__val_range] = STATE(4523), - [sym__value] = STATE(4776), - [sym_val_nothing] = STATE(4452), - [sym_val_bool] = STATE(4309), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4452), - [sym_val_number] = STATE(4452), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4130), - [sym_val_duration] = STATE(4452), - [sym_val_filesize] = STATE(4452), - [sym_val_binary] = STATE(4452), - [sym_val_string] = STATE(4452), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4452), - [sym__inter_single_quotes] = STATE(4504), - [sym__inter_double_quotes] = STATE(4369), - [sym_val_list] = STATE(4554), - [sym__spread_list] = STATE(4721), - [sym_list_body] = STATE(5183), - [sym_val_entry] = STATE(4375), - [sym_val_record] = STATE(4452), - [sym__table_head] = STATE(3656), - [sym_val_table] = STATE(4452), - [sym_val_closure] = STATE(4452), - [sym__unquoted_in_list] = STATE(4312), - [sym__unquoted_in_list_with_expr] = STATE(4776), - [sym__unquoted_anonymous_prefix] = STATE(4523), - [sym_comment] = STATE(345), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4329), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1492), + [aux_sym__types_body_repeat1] = STATE(458), + [aux_sym_parameter_repeat2] = STATE(4189), + [aux_sym_list_body_repeat1] = STATE(548), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), + [sym__newline] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_RBRACK] = ACTIONS(1472), [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -74436,156 +74166,236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(346)] = { - [sym_comment] = STATE(346), - [anon_sym_EQ] = ACTIONS(1474), - [anon_sym_PLUS_EQ] = ACTIONS(1476), - [anon_sym_DASH_EQ] = ACTIONS(1476), - [anon_sym_STAR_EQ] = ACTIONS(1476), - [anon_sym_SLASH_EQ] = ACTIONS(1476), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1476), - [anon_sym_in] = ACTIONS(1476), - [sym__newline] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_err_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_GT_PIPE] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1476), - [anon_sym_RPAREN] = ACTIONS(1476), - [anon_sym_GT2] = ACTIONS(1474), - [anon_sym_DASH2] = ACTIONS(1474), - [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_STAR2] = ACTIONS(1474), - [anon_sym_and2] = ACTIONS(1476), - [anon_sym_xor2] = ACTIONS(1476), - [anon_sym_or2] = ACTIONS(1476), - [anon_sym_not_DASHin2] = ACTIONS(1476), - [anon_sym_has2] = ACTIONS(1476), - [anon_sym_not_DASHhas2] = ACTIONS(1476), - [anon_sym_starts_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1476), - [anon_sym_ends_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1476), - [anon_sym_EQ_EQ2] = ACTIONS(1476), - [anon_sym_BANG_EQ2] = ACTIONS(1476), - [anon_sym_LT2] = ACTIONS(1474), - [anon_sym_LT_EQ2] = ACTIONS(1476), - [anon_sym_GT_EQ2] = ACTIONS(1476), - [anon_sym_EQ_TILDE2] = ACTIONS(1476), - [anon_sym_BANG_TILDE2] = ACTIONS(1476), - [anon_sym_like2] = ACTIONS(1476), - [anon_sym_not_DASHlike2] = ACTIONS(1476), - [anon_sym_STAR_STAR2] = ACTIONS(1476), - [anon_sym_PLUS_PLUS2] = ACTIONS(1474), - [anon_sym_SLASH2] = ACTIONS(1474), - [anon_sym_mod2] = ACTIONS(1476), - [anon_sym_SLASH_SLASH2] = ACTIONS(1476), - [anon_sym_PLUS2] = ACTIONS(1474), - [anon_sym_bit_DASHshl2] = ACTIONS(1476), - [anon_sym_bit_DASHshr2] = ACTIONS(1476), - [anon_sym_bit_DASHand2] = ACTIONS(1476), - [anon_sym_bit_DASHxor2] = ACTIONS(1476), - [anon_sym_bit_DASHor2] = ACTIONS(1476), - [anon_sym_DOT_DOT2] = ACTIONS(1474), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1476), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1476), - [anon_sym_COLON2] = ACTIONS(1476), - [anon_sym_QMARK2] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_DOT2] = ACTIONS(1474), - [anon_sym_err_GT] = ACTIONS(1474), - [anon_sym_out_GT] = ACTIONS(1474), - [anon_sym_e_GT] = ACTIONS(1474), - [anon_sym_o_GT] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT] = ACTIONS(1474), - [anon_sym_err_GT_GT] = ACTIONS(1476), - [anon_sym_out_GT_GT] = ACTIONS(1476), - [anon_sym_e_GT_GT] = ACTIONS(1476), - [anon_sym_o_GT_GT] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1476), + [STATE(340)] = { + [sym_path] = STATE(394), + [sym_comment] = STATE(340), + [aux_sym__where_predicate_lhs_repeat1] = STATE(341), + [anon_sym_EQ] = ACTIONS(1490), + [anon_sym_PLUS_EQ] = ACTIONS(1492), + [anon_sym_DASH_EQ] = ACTIONS(1492), + [anon_sym_STAR_EQ] = ACTIONS(1492), + [anon_sym_SLASH_EQ] = ACTIONS(1492), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1492), + [anon_sym_in] = ACTIONS(1492), + [sym__newline] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_err_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_GT_PIPE] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), + [anon_sym_RPAREN] = ACTIONS(1492), + [anon_sym_GT2] = ACTIONS(1490), + [anon_sym_DASH2] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_STAR2] = ACTIONS(1490), + [anon_sym_and2] = ACTIONS(1492), + [anon_sym_xor2] = ACTIONS(1492), + [anon_sym_or2] = ACTIONS(1492), + [anon_sym_not_DASHin2] = ACTIONS(1492), + [anon_sym_has2] = ACTIONS(1492), + [anon_sym_not_DASHhas2] = ACTIONS(1492), + [anon_sym_starts_DASHwith2] = ACTIONS(1492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1492), + [anon_sym_ends_DASHwith2] = ACTIONS(1492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1492), + [anon_sym_EQ_EQ2] = ACTIONS(1492), + [anon_sym_BANG_EQ2] = ACTIONS(1492), + [anon_sym_LT2] = ACTIONS(1490), + [anon_sym_LT_EQ2] = ACTIONS(1492), + [anon_sym_GT_EQ2] = ACTIONS(1492), + [anon_sym_EQ_TILDE2] = ACTIONS(1492), + [anon_sym_BANG_TILDE2] = ACTIONS(1492), + [anon_sym_like2] = ACTIONS(1492), + [anon_sym_not_DASHlike2] = ACTIONS(1492), + [anon_sym_STAR_STAR2] = ACTIONS(1492), + [anon_sym_PLUS_PLUS2] = ACTIONS(1490), + [anon_sym_SLASH2] = ACTIONS(1490), + [anon_sym_mod2] = ACTIONS(1492), + [anon_sym_SLASH_SLASH2] = ACTIONS(1492), + [anon_sym_PLUS2] = ACTIONS(1490), + [anon_sym_bit_DASHshl2] = ACTIONS(1492), + [anon_sym_bit_DASHshr2] = ACTIONS(1492), + [anon_sym_bit_DASHand2] = ACTIONS(1492), + [anon_sym_bit_DASHxor2] = ACTIONS(1492), + [anon_sym_bit_DASHor2] = ACTIONS(1492), + [anon_sym_DOT_DOT2] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1492), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1492), + [anon_sym_COLON2] = ACTIONS(1492), + [anon_sym_DOT2] = ACTIONS(1436), + [anon_sym_err_GT] = ACTIONS(1490), + [anon_sym_out_GT] = ACTIONS(1490), + [anon_sym_e_GT] = ACTIONS(1490), + [anon_sym_o_GT] = ACTIONS(1490), + [anon_sym_err_PLUSout_GT] = ACTIONS(1490), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1490), + [anon_sym_o_PLUSe_GT] = ACTIONS(1490), + [anon_sym_e_PLUSo_GT] = ACTIONS(1490), + [anon_sym_err_GT_GT] = ACTIONS(1492), + [anon_sym_out_GT_GT] = ACTIONS(1492), + [anon_sym_e_GT_GT] = ACTIONS(1492), + [anon_sym_o_GT_GT] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(347)] = { - [aux_sym__repeat_newline] = STATE(4288), - [sym_expr_parenthesized] = STATE(3911), - [sym__spread_parenthesized] = STATE(4721), - [sym_val_range] = STATE(4776), - [sym__val_range] = STATE(4523), - [sym__value] = STATE(4776), - [sym_val_nothing] = STATE(4452), - [sym_val_bool] = STATE(4309), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4452), - [sym_val_number] = STATE(4452), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4130), - [sym_val_duration] = STATE(4452), - [sym_val_filesize] = STATE(4452), - [sym_val_binary] = STATE(4452), - [sym_val_string] = STATE(4452), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4452), - [sym__inter_single_quotes] = STATE(4504), - [sym__inter_double_quotes] = STATE(4369), - [sym_val_list] = STATE(4554), - [sym__spread_list] = STATE(4721), - [sym_list_body] = STATE(5177), - [sym_val_entry] = STATE(4375), - [sym_val_record] = STATE(4452), - [sym__table_head] = STATE(3697), - [sym_val_table] = STATE(4452), - [sym_val_closure] = STATE(4452), - [sym__unquoted_in_list] = STATE(4312), - [sym__unquoted_in_list_with_expr] = STATE(4776), - [sym__unquoted_anonymous_prefix] = STATE(4523), - [sym_comment] = STATE(347), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4329), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1510), + [STATE(341)] = { + [sym_path] = STATE(394), + [sym_comment] = STATE(341), + [aux_sym__where_predicate_lhs_repeat1] = STATE(341), + [anon_sym_EQ] = ACTIONS(1494), + [anon_sym_PLUS_EQ] = ACTIONS(1496), + [anon_sym_DASH_EQ] = ACTIONS(1496), + [anon_sym_STAR_EQ] = ACTIONS(1496), + [anon_sym_SLASH_EQ] = ACTIONS(1496), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1496), + [anon_sym_in] = ACTIONS(1496), + [sym__newline] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym_PIPE] = ACTIONS(1496), + [anon_sym_err_GT_PIPE] = ACTIONS(1496), + [anon_sym_out_GT_PIPE] = ACTIONS(1496), + [anon_sym_e_GT_PIPE] = ACTIONS(1496), + [anon_sym_o_GT_PIPE] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1496), + [anon_sym_RPAREN] = ACTIONS(1496), + [anon_sym_GT2] = ACTIONS(1494), + [anon_sym_DASH2] = ACTIONS(1494), + [anon_sym_RBRACE] = ACTIONS(1496), + [anon_sym_STAR2] = ACTIONS(1494), + [anon_sym_and2] = ACTIONS(1496), + [anon_sym_xor2] = ACTIONS(1496), + [anon_sym_or2] = ACTIONS(1496), + [anon_sym_not_DASHin2] = ACTIONS(1496), + [anon_sym_has2] = ACTIONS(1496), + [anon_sym_not_DASHhas2] = ACTIONS(1496), + [anon_sym_starts_DASHwith2] = ACTIONS(1496), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1496), + [anon_sym_ends_DASHwith2] = ACTIONS(1496), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1496), + [anon_sym_EQ_EQ2] = ACTIONS(1496), + [anon_sym_BANG_EQ2] = ACTIONS(1496), + [anon_sym_LT2] = ACTIONS(1494), + [anon_sym_LT_EQ2] = ACTIONS(1496), + [anon_sym_GT_EQ2] = ACTIONS(1496), + [anon_sym_EQ_TILDE2] = ACTIONS(1496), + [anon_sym_BANG_TILDE2] = ACTIONS(1496), + [anon_sym_like2] = ACTIONS(1496), + [anon_sym_not_DASHlike2] = ACTIONS(1496), + [anon_sym_STAR_STAR2] = ACTIONS(1496), + [anon_sym_PLUS_PLUS2] = ACTIONS(1494), + [anon_sym_SLASH2] = ACTIONS(1494), + [anon_sym_mod2] = ACTIONS(1496), + [anon_sym_SLASH_SLASH2] = ACTIONS(1496), + [anon_sym_PLUS2] = ACTIONS(1494), + [anon_sym_bit_DASHshl2] = ACTIONS(1496), + [anon_sym_bit_DASHshr2] = ACTIONS(1496), + [anon_sym_bit_DASHand2] = ACTIONS(1496), + [anon_sym_bit_DASHxor2] = ACTIONS(1496), + [anon_sym_bit_DASHor2] = ACTIONS(1496), + [anon_sym_DOT_DOT2] = ACTIONS(1494), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1496), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1496), + [anon_sym_COLON2] = ACTIONS(1496), + [anon_sym_DOT2] = ACTIONS(1498), + [anon_sym_err_GT] = ACTIONS(1494), + [anon_sym_out_GT] = ACTIONS(1494), + [anon_sym_e_GT] = ACTIONS(1494), + [anon_sym_o_GT] = ACTIONS(1494), + [anon_sym_err_PLUSout_GT] = ACTIONS(1494), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1494), + [anon_sym_o_PLUSe_GT] = ACTIONS(1494), + [anon_sym_e_PLUSo_GT] = ACTIONS(1494), + [anon_sym_err_GT_GT] = ACTIONS(1496), + [anon_sym_out_GT_GT] = ACTIONS(1496), + [anon_sym_e_GT_GT] = ACTIONS(1496), + [anon_sym_o_GT_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1496), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(342)] = { + [aux_sym__repeat_newline] = STATE(4123), + [sym_expr_parenthesized] = STATE(4058), + [sym__spread_parenthesized] = STATE(4700), + [sym_val_range] = STATE(4730), + [sym__val_range] = STATE(4544), + [sym__value] = STATE(4730), + [sym_val_nothing] = STATE(4604), + [sym_val_bool] = STATE(4358), + [sym__spread_variable] = STATE(4795), + [sym_val_variable] = STATE(3879), + [sym_val_cellpath] = STATE(4604), + [sym_val_number] = STATE(4604), + [sym__val_number_decimal] = STATE(3485), + [sym__val_number] = STATE(4361), + [sym_val_duration] = STATE(4604), + [sym_val_filesize] = STATE(4604), + [sym_val_binary] = STATE(4604), + [sym_val_string] = STATE(4604), + [sym__raw_str] = STATE(3638), + [sym__str_double_quotes] = STATE(3638), + [sym__str_single_quotes] = STATE(3638), + [sym__str_back_ticks] = STATE(3638), + [sym_val_interpolated] = STATE(4604), + [sym__inter_single_quotes] = STATE(4595), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4558), + [sym__spread_list] = STATE(4700), + [sym_list_body] = STATE(4844), + [sym_val_entry] = STATE(4576), + [sym_val_record] = STATE(4604), + [sym__table_head] = STATE(3691), + [sym_val_table] = STATE(4604), + [sym_val_closure] = STATE(4604), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4730), + [sym__unquoted_anonymous_prefix] = STATE(4544), + [sym_comment] = STATE(342), + [aux_sym__types_body_repeat1] = STATE(458), + [aux_sym_parameter_repeat2] = STATE(4189), + [aux_sym_list_body_repeat1] = STATE(548), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), + [sym__newline] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_RBRACK] = ACTIONS(1501), [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -74596,76 +74406,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(348)] = { - [aux_sym__repeat_newline] = STATE(4288), - [sym_expr_parenthesized] = STATE(3911), - [sym__spread_parenthesized] = STATE(4721), - [sym_val_range] = STATE(4776), - [sym__val_range] = STATE(4523), - [sym__value] = STATE(4776), - [sym_val_nothing] = STATE(4452), - [sym_val_bool] = STATE(4309), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4452), - [sym_val_number] = STATE(4452), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4130), - [sym_val_duration] = STATE(4452), - [sym_val_filesize] = STATE(4452), - [sym_val_binary] = STATE(4452), - [sym_val_string] = STATE(4452), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4452), - [sym__inter_single_quotes] = STATE(4504), - [sym__inter_double_quotes] = STATE(4369), - [sym_val_list] = STATE(4554), - [sym__spread_list] = STATE(4721), - [sym_list_body] = STATE(4932), - [sym_val_entry] = STATE(4375), - [sym_val_record] = STATE(4452), - [sym__table_head] = STATE(3646), - [sym_val_table] = STATE(4452), - [sym_val_closure] = STATE(4452), - [sym__unquoted_in_list] = STATE(4312), - [sym__unquoted_in_list_with_expr] = STATE(4776), - [sym__unquoted_anonymous_prefix] = STATE(4523), - [sym_comment] = STATE(348), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4329), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1512), + [STATE(343)] = { + [aux_sym__repeat_newline] = STATE(4123), + [sym_expr_parenthesized] = STATE(4058), + [sym__spread_parenthesized] = STATE(4700), + [sym_val_range] = STATE(4730), + [sym__val_range] = STATE(4544), + [sym__value] = STATE(4730), + [sym_val_nothing] = STATE(4604), + [sym_val_bool] = STATE(4358), + [sym__spread_variable] = STATE(4795), + [sym_val_variable] = STATE(3879), + [sym_val_cellpath] = STATE(4604), + [sym_val_number] = STATE(4604), + [sym__val_number_decimal] = STATE(3485), + [sym__val_number] = STATE(4361), + [sym_val_duration] = STATE(4604), + [sym_val_filesize] = STATE(4604), + [sym_val_binary] = STATE(4604), + [sym_val_string] = STATE(4604), + [sym__raw_str] = STATE(3638), + [sym__str_double_quotes] = STATE(3638), + [sym__str_single_quotes] = STATE(3638), + [sym__str_back_ticks] = STATE(3638), + [sym_val_interpolated] = STATE(4604), + [sym__inter_single_quotes] = STATE(4595), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4558), + [sym__spread_list] = STATE(4700), + [sym_list_body] = STATE(5084), + [sym_val_entry] = STATE(4576), + [sym_val_record] = STATE(4604), + [sym__table_head] = STATE(3672), + [sym_val_table] = STATE(4604), + [sym_val_closure] = STATE(4604), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4730), + [sym__unquoted_anonymous_prefix] = STATE(4544), + [sym_comment] = STATE(343), + [aux_sym__types_body_repeat1] = STATE(458), + [aux_sym_parameter_repeat2] = STATE(4189), + [aux_sym_list_body_repeat1] = STATE(548), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), + [sym__newline] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_RBRACK] = ACTIONS(1503), [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -74676,156 +74486,876 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, + [STATE(344)] = { + [sym_comment] = STATE(344), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_PLUS_EQ] = ACTIONS(1507), + [anon_sym_DASH_EQ] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1507), + [anon_sym_SLASH_EQ] = ACTIONS(1507), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1507), + [anon_sym_in] = ACTIONS(1507), + [sym__newline] = ACTIONS(1507), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_PIPE] = ACTIONS(1507), + [anon_sym_err_GT_PIPE] = ACTIONS(1507), + [anon_sym_out_GT_PIPE] = ACTIONS(1507), + [anon_sym_e_GT_PIPE] = ACTIONS(1507), + [anon_sym_o_GT_PIPE] = ACTIONS(1507), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1507), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1507), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1507), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1507), + [anon_sym_RPAREN] = ACTIONS(1507), + [anon_sym_GT2] = ACTIONS(1505), + [anon_sym_DASH2] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(1507), + [anon_sym_STAR2] = ACTIONS(1505), + [anon_sym_and2] = ACTIONS(1507), + [anon_sym_xor2] = ACTIONS(1507), + [anon_sym_or2] = ACTIONS(1507), + [anon_sym_not_DASHin2] = ACTIONS(1507), + [anon_sym_has2] = ACTIONS(1507), + [anon_sym_not_DASHhas2] = ACTIONS(1507), + [anon_sym_starts_DASHwith2] = ACTIONS(1507), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1507), + [anon_sym_ends_DASHwith2] = ACTIONS(1507), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1507), + [anon_sym_EQ_EQ2] = ACTIONS(1507), + [anon_sym_BANG_EQ2] = ACTIONS(1507), + [anon_sym_LT2] = ACTIONS(1505), + [anon_sym_LT_EQ2] = ACTIONS(1507), + [anon_sym_GT_EQ2] = ACTIONS(1507), + [anon_sym_EQ_TILDE2] = ACTIONS(1507), + [anon_sym_BANG_TILDE2] = ACTIONS(1507), + [anon_sym_like2] = ACTIONS(1507), + [anon_sym_not_DASHlike2] = ACTIONS(1507), + [anon_sym_STAR_STAR2] = ACTIONS(1507), + [anon_sym_PLUS_PLUS2] = ACTIONS(1505), + [anon_sym_SLASH2] = ACTIONS(1505), + [anon_sym_mod2] = ACTIONS(1507), + [anon_sym_SLASH_SLASH2] = ACTIONS(1507), + [anon_sym_PLUS2] = ACTIONS(1505), + [anon_sym_bit_DASHshl2] = ACTIONS(1507), + [anon_sym_bit_DASHshr2] = ACTIONS(1507), + [anon_sym_bit_DASHand2] = ACTIONS(1507), + [anon_sym_bit_DASHxor2] = ACTIONS(1507), + [anon_sym_bit_DASHor2] = ACTIONS(1507), + [anon_sym_DOT_DOT2] = ACTIONS(1505), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1507), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1507), + [anon_sym_COLON2] = ACTIONS(1507), + [anon_sym_QMARK2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_DOT2] = ACTIONS(1505), + [anon_sym_err_GT] = ACTIONS(1505), + [anon_sym_out_GT] = ACTIONS(1505), + [anon_sym_e_GT] = ACTIONS(1505), + [anon_sym_o_GT] = ACTIONS(1505), + [anon_sym_err_PLUSout_GT] = ACTIONS(1505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1505), + [anon_sym_o_PLUSe_GT] = ACTIONS(1505), + [anon_sym_e_PLUSo_GT] = ACTIONS(1505), + [anon_sym_err_GT_GT] = ACTIONS(1507), + [anon_sym_out_GT_GT] = ACTIONS(1507), + [anon_sym_e_GT_GT] = ACTIONS(1507), + [anon_sym_o_GT_GT] = ACTIONS(1507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1507), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(345)] = { + [sym_comment] = STATE(345), + [anon_sym_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1511), + [anon_sym_DASH_EQ] = ACTIONS(1511), + [anon_sym_STAR_EQ] = ACTIONS(1511), + [anon_sym_SLASH_EQ] = ACTIONS(1511), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1511), + [anon_sym_in] = ACTIONS(1511), + [sym__newline] = ACTIONS(1511), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_err_GT_PIPE] = ACTIONS(1511), + [anon_sym_out_GT_PIPE] = ACTIONS(1511), + [anon_sym_e_GT_PIPE] = ACTIONS(1511), + [anon_sym_o_GT_PIPE] = ACTIONS(1511), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1511), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1511), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1511), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1511), + [anon_sym_RPAREN] = ACTIONS(1511), + [anon_sym_GT2] = ACTIONS(1509), + [anon_sym_DASH2] = ACTIONS(1509), + [anon_sym_RBRACE] = ACTIONS(1511), + [anon_sym_STAR2] = ACTIONS(1509), + [anon_sym_and2] = ACTIONS(1511), + [anon_sym_xor2] = ACTIONS(1511), + [anon_sym_or2] = ACTIONS(1511), + [anon_sym_not_DASHin2] = ACTIONS(1511), + [anon_sym_has2] = ACTIONS(1511), + [anon_sym_not_DASHhas2] = ACTIONS(1511), + [anon_sym_starts_DASHwith2] = ACTIONS(1511), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1511), + [anon_sym_ends_DASHwith2] = ACTIONS(1511), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1511), + [anon_sym_EQ_EQ2] = ACTIONS(1511), + [anon_sym_BANG_EQ2] = ACTIONS(1511), + [anon_sym_LT2] = ACTIONS(1509), + [anon_sym_LT_EQ2] = ACTIONS(1511), + [anon_sym_GT_EQ2] = ACTIONS(1511), + [anon_sym_EQ_TILDE2] = ACTIONS(1511), + [anon_sym_BANG_TILDE2] = ACTIONS(1511), + [anon_sym_like2] = ACTIONS(1511), + [anon_sym_not_DASHlike2] = ACTIONS(1511), + [anon_sym_STAR_STAR2] = ACTIONS(1511), + [anon_sym_PLUS_PLUS2] = ACTIONS(1509), + [anon_sym_SLASH2] = ACTIONS(1509), + [anon_sym_mod2] = ACTIONS(1511), + [anon_sym_SLASH_SLASH2] = ACTIONS(1511), + [anon_sym_PLUS2] = ACTIONS(1509), + [anon_sym_bit_DASHshl2] = ACTIONS(1511), + [anon_sym_bit_DASHshr2] = ACTIONS(1511), + [anon_sym_bit_DASHand2] = ACTIONS(1511), + [anon_sym_bit_DASHxor2] = ACTIONS(1511), + [anon_sym_bit_DASHor2] = ACTIONS(1511), + [anon_sym_DOT_DOT2] = ACTIONS(1509), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1511), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1511), + [anon_sym_COLON2] = ACTIONS(1511), + [anon_sym_QMARK2] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1509), + [anon_sym_DOT2] = ACTIONS(1509), + [anon_sym_err_GT] = ACTIONS(1509), + [anon_sym_out_GT] = ACTIONS(1509), + [anon_sym_e_GT] = ACTIONS(1509), + [anon_sym_o_GT] = ACTIONS(1509), + [anon_sym_err_PLUSout_GT] = ACTIONS(1509), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1509), + [anon_sym_o_PLUSe_GT] = ACTIONS(1509), + [anon_sym_e_PLUSo_GT] = ACTIONS(1509), + [anon_sym_err_GT_GT] = ACTIONS(1511), + [anon_sym_out_GT_GT] = ACTIONS(1511), + [anon_sym_e_GT_GT] = ACTIONS(1511), + [anon_sym_o_GT_GT] = ACTIONS(1511), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1511), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1511), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1511), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1511), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(346)] = { + [sym_comment] = STATE(346), + [anon_sym_EQ] = ACTIONS(1513), + [anon_sym_PLUS_EQ] = ACTIONS(1515), + [anon_sym_DASH_EQ] = ACTIONS(1515), + [anon_sym_STAR_EQ] = ACTIONS(1515), + [anon_sym_SLASH_EQ] = ACTIONS(1515), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1515), + [anon_sym_in] = ACTIONS(1515), + [sym__newline] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_err_GT_PIPE] = ACTIONS(1515), + [anon_sym_out_GT_PIPE] = ACTIONS(1515), + [anon_sym_e_GT_PIPE] = ACTIONS(1515), + [anon_sym_o_GT_PIPE] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1515), + [anon_sym_RPAREN] = ACTIONS(1515), + [anon_sym_GT2] = ACTIONS(1513), + [anon_sym_DASH2] = ACTIONS(1513), + [anon_sym_RBRACE] = ACTIONS(1515), + [anon_sym_STAR2] = ACTIONS(1513), + [anon_sym_and2] = ACTIONS(1515), + [anon_sym_xor2] = ACTIONS(1515), + [anon_sym_or2] = ACTIONS(1515), + [anon_sym_not_DASHin2] = ACTIONS(1515), + [anon_sym_has2] = ACTIONS(1515), + [anon_sym_not_DASHhas2] = ACTIONS(1515), + [anon_sym_starts_DASHwith2] = ACTIONS(1515), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1515), + [anon_sym_ends_DASHwith2] = ACTIONS(1515), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1515), + [anon_sym_EQ_EQ2] = ACTIONS(1515), + [anon_sym_BANG_EQ2] = ACTIONS(1515), + [anon_sym_LT2] = ACTIONS(1513), + [anon_sym_LT_EQ2] = ACTIONS(1515), + [anon_sym_GT_EQ2] = ACTIONS(1515), + [anon_sym_EQ_TILDE2] = ACTIONS(1515), + [anon_sym_BANG_TILDE2] = ACTIONS(1515), + [anon_sym_like2] = ACTIONS(1515), + [anon_sym_not_DASHlike2] = ACTIONS(1515), + [anon_sym_STAR_STAR2] = ACTIONS(1515), + [anon_sym_PLUS_PLUS2] = ACTIONS(1513), + [anon_sym_SLASH2] = ACTIONS(1513), + [anon_sym_mod2] = ACTIONS(1515), + [anon_sym_SLASH_SLASH2] = ACTIONS(1515), + [anon_sym_PLUS2] = ACTIONS(1513), + [anon_sym_bit_DASHshl2] = ACTIONS(1515), + [anon_sym_bit_DASHshr2] = ACTIONS(1515), + [anon_sym_bit_DASHand2] = ACTIONS(1515), + [anon_sym_bit_DASHxor2] = ACTIONS(1515), + [anon_sym_bit_DASHor2] = ACTIONS(1515), + [anon_sym_DOT_DOT2] = ACTIONS(1513), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1515), + [anon_sym_COLON2] = ACTIONS(1515), + [anon_sym_QMARK2] = ACTIONS(1515), + [anon_sym_BANG] = ACTIONS(1513), + [anon_sym_DOT2] = ACTIONS(1513), + [anon_sym_err_GT] = ACTIONS(1513), + [anon_sym_out_GT] = ACTIONS(1513), + [anon_sym_e_GT] = ACTIONS(1513), + [anon_sym_o_GT] = ACTIONS(1513), + [anon_sym_err_PLUSout_GT] = ACTIONS(1513), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1513), + [anon_sym_o_PLUSe_GT] = ACTIONS(1513), + [anon_sym_e_PLUSo_GT] = ACTIONS(1513), + [anon_sym_err_GT_GT] = ACTIONS(1515), + [anon_sym_out_GT_GT] = ACTIONS(1515), + [anon_sym_e_GT_GT] = ACTIONS(1515), + [anon_sym_o_GT_GT] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1515), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(347)] = { + [sym_comment] = STATE(347), + [anon_sym_EQ] = ACTIONS(1517), + [anon_sym_PLUS_EQ] = ACTIONS(1519), + [anon_sym_DASH_EQ] = ACTIONS(1519), + [anon_sym_STAR_EQ] = ACTIONS(1519), + [anon_sym_SLASH_EQ] = ACTIONS(1519), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1519), + [anon_sym_in] = ACTIONS(1519), + [sym__newline] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_err_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_GT_PIPE] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(1519), + [anon_sym_GT2] = ACTIONS(1517), + [anon_sym_DASH2] = ACTIONS(1517), + [anon_sym_RBRACE] = ACTIONS(1519), + [anon_sym_STAR2] = ACTIONS(1517), + [anon_sym_and2] = ACTIONS(1519), + [anon_sym_xor2] = ACTIONS(1519), + [anon_sym_or2] = ACTIONS(1519), + [anon_sym_not_DASHin2] = ACTIONS(1519), + [anon_sym_has2] = ACTIONS(1519), + [anon_sym_not_DASHhas2] = ACTIONS(1519), + [anon_sym_starts_DASHwith2] = ACTIONS(1519), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1519), + [anon_sym_ends_DASHwith2] = ACTIONS(1519), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1519), + [anon_sym_EQ_EQ2] = ACTIONS(1519), + [anon_sym_BANG_EQ2] = ACTIONS(1519), + [anon_sym_LT2] = ACTIONS(1517), + [anon_sym_LT_EQ2] = ACTIONS(1519), + [anon_sym_GT_EQ2] = ACTIONS(1519), + [anon_sym_EQ_TILDE2] = ACTIONS(1519), + [anon_sym_BANG_TILDE2] = ACTIONS(1519), + [anon_sym_like2] = ACTIONS(1519), + [anon_sym_not_DASHlike2] = ACTIONS(1519), + [anon_sym_STAR_STAR2] = ACTIONS(1519), + [anon_sym_PLUS_PLUS2] = ACTIONS(1517), + [anon_sym_SLASH2] = ACTIONS(1517), + [anon_sym_mod2] = ACTIONS(1519), + [anon_sym_SLASH_SLASH2] = ACTIONS(1519), + [anon_sym_PLUS2] = ACTIONS(1517), + [anon_sym_bit_DASHshl2] = ACTIONS(1519), + [anon_sym_bit_DASHshr2] = ACTIONS(1519), + [anon_sym_bit_DASHand2] = ACTIONS(1519), + [anon_sym_bit_DASHxor2] = ACTIONS(1519), + [anon_sym_bit_DASHor2] = ACTIONS(1519), + [anon_sym_DOT_DOT2] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), + [anon_sym_COLON2] = ACTIONS(1519), + [anon_sym_QMARK2] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1517), + [anon_sym_DOT2] = ACTIONS(1517), + [anon_sym_err_GT] = ACTIONS(1517), + [anon_sym_out_GT] = ACTIONS(1517), + [anon_sym_e_GT] = ACTIONS(1517), + [anon_sym_o_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT] = ACTIONS(1517), + [anon_sym_err_GT_GT] = ACTIONS(1519), + [anon_sym_out_GT_GT] = ACTIONS(1519), + [anon_sym_e_GT_GT] = ACTIONS(1519), + [anon_sym_o_GT_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(348)] = { + [sym_comment] = STATE(348), + [anon_sym_EQ] = ACTIONS(1521), + [anon_sym_PLUS_EQ] = ACTIONS(1523), + [anon_sym_DASH_EQ] = ACTIONS(1523), + [anon_sym_STAR_EQ] = ACTIONS(1523), + [anon_sym_SLASH_EQ] = ACTIONS(1523), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1523), + [anon_sym_in] = ACTIONS(1523), + [sym__newline] = ACTIONS(1523), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_PIPE] = ACTIONS(1523), + [anon_sym_err_GT_PIPE] = ACTIONS(1523), + [anon_sym_out_GT_PIPE] = ACTIONS(1523), + [anon_sym_e_GT_PIPE] = ACTIONS(1523), + [anon_sym_o_GT_PIPE] = ACTIONS(1523), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1523), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1523), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1523), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1523), + [anon_sym_RPAREN] = ACTIONS(1523), + [anon_sym_GT2] = ACTIONS(1521), + [anon_sym_DASH2] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(1523), + [anon_sym_STAR2] = ACTIONS(1521), + [anon_sym_and2] = ACTIONS(1523), + [anon_sym_xor2] = ACTIONS(1523), + [anon_sym_or2] = ACTIONS(1523), + [anon_sym_not_DASHin2] = ACTIONS(1523), + [anon_sym_has2] = ACTIONS(1523), + [anon_sym_not_DASHhas2] = ACTIONS(1523), + [anon_sym_starts_DASHwith2] = ACTIONS(1523), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1523), + [anon_sym_ends_DASHwith2] = ACTIONS(1523), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1523), + [anon_sym_EQ_EQ2] = ACTIONS(1523), + [anon_sym_BANG_EQ2] = ACTIONS(1523), + [anon_sym_LT2] = ACTIONS(1521), + [anon_sym_LT_EQ2] = ACTIONS(1523), + [anon_sym_GT_EQ2] = ACTIONS(1523), + [anon_sym_EQ_TILDE2] = ACTIONS(1523), + [anon_sym_BANG_TILDE2] = ACTIONS(1523), + [anon_sym_like2] = ACTIONS(1523), + [anon_sym_not_DASHlike2] = ACTIONS(1523), + [anon_sym_STAR_STAR2] = ACTIONS(1523), + [anon_sym_PLUS_PLUS2] = ACTIONS(1521), + [anon_sym_SLASH2] = ACTIONS(1521), + [anon_sym_mod2] = ACTIONS(1523), + [anon_sym_SLASH_SLASH2] = ACTIONS(1523), + [anon_sym_PLUS2] = ACTIONS(1521), + [anon_sym_bit_DASHshl2] = ACTIONS(1523), + [anon_sym_bit_DASHshr2] = ACTIONS(1523), + [anon_sym_bit_DASHand2] = ACTIONS(1523), + [anon_sym_bit_DASHxor2] = ACTIONS(1523), + [anon_sym_bit_DASHor2] = ACTIONS(1523), + [anon_sym_DOT_DOT2] = ACTIONS(1521), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1523), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1523), + [anon_sym_COLON2] = ACTIONS(1523), + [anon_sym_QMARK2] = ACTIONS(1523), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_DOT2] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1521), + [anon_sym_out_GT] = ACTIONS(1521), + [anon_sym_e_GT] = ACTIONS(1521), + [anon_sym_o_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT] = ACTIONS(1521), + [anon_sym_err_GT_GT] = ACTIONS(1523), + [anon_sym_out_GT_GT] = ACTIONS(1523), + [anon_sym_e_GT_GT] = ACTIONS(1523), + [anon_sym_o_GT_GT] = ACTIONS(1523), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1523), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1523), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1523), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1523), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(349)] = { [sym_comment] = STATE(349), - [anon_sym_EQ] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(1516), - [anon_sym_DASH_EQ] = ACTIONS(1516), - [anon_sym_STAR_EQ] = ACTIONS(1516), - [anon_sym_SLASH_EQ] = ACTIONS(1516), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1516), - [anon_sym_in] = ACTIONS(1516), - [sym__newline] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_err_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_GT_PIPE] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1516), - [anon_sym_RPAREN] = ACTIONS(1516), - [anon_sym_GT2] = ACTIONS(1514), - [anon_sym_DASH2] = ACTIONS(1514), - [anon_sym_RBRACE] = ACTIONS(1516), - [anon_sym_STAR2] = ACTIONS(1514), - [anon_sym_and2] = ACTIONS(1516), - [anon_sym_xor2] = ACTIONS(1516), - [anon_sym_or2] = ACTIONS(1516), - [anon_sym_not_DASHin2] = ACTIONS(1516), - [anon_sym_has2] = ACTIONS(1516), - [anon_sym_not_DASHhas2] = ACTIONS(1516), - [anon_sym_starts_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1516), - [anon_sym_ends_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1516), - [anon_sym_EQ_EQ2] = ACTIONS(1516), - [anon_sym_BANG_EQ2] = ACTIONS(1516), - [anon_sym_LT2] = ACTIONS(1514), - [anon_sym_LT_EQ2] = ACTIONS(1516), - [anon_sym_GT_EQ2] = ACTIONS(1516), - [anon_sym_EQ_TILDE2] = ACTIONS(1516), - [anon_sym_BANG_TILDE2] = ACTIONS(1516), - [anon_sym_like2] = ACTIONS(1516), - [anon_sym_not_DASHlike2] = ACTIONS(1516), - [anon_sym_STAR_STAR2] = ACTIONS(1516), - [anon_sym_PLUS_PLUS2] = ACTIONS(1514), - [anon_sym_SLASH2] = ACTIONS(1514), - [anon_sym_mod2] = ACTIONS(1516), - [anon_sym_SLASH_SLASH2] = ACTIONS(1516), - [anon_sym_PLUS2] = ACTIONS(1514), - [anon_sym_bit_DASHshl2] = ACTIONS(1516), - [anon_sym_bit_DASHshr2] = ACTIONS(1516), - [anon_sym_bit_DASHand2] = ACTIONS(1516), - [anon_sym_bit_DASHxor2] = ACTIONS(1516), - [anon_sym_bit_DASHor2] = ACTIONS(1516), - [anon_sym_DOT_DOT2] = ACTIONS(1514), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1516), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1516), - [anon_sym_COLON2] = ACTIONS(1516), - [anon_sym_QMARK2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_DOT2] = ACTIONS(1514), - [anon_sym_err_GT] = ACTIONS(1514), - [anon_sym_out_GT] = ACTIONS(1514), - [anon_sym_e_GT] = ACTIONS(1514), - [anon_sym_o_GT] = ACTIONS(1514), - [anon_sym_err_PLUSout_GT] = ACTIONS(1514), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1514), - [anon_sym_o_PLUSe_GT] = ACTIONS(1514), - [anon_sym_e_PLUSo_GT] = ACTIONS(1514), - [anon_sym_err_GT_GT] = ACTIONS(1516), - [anon_sym_out_GT_GT] = ACTIONS(1516), - [anon_sym_e_GT_GT] = ACTIONS(1516), - [anon_sym_o_GT_GT] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1516), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_PLUS_EQ] = ACTIONS(1505), + [anon_sym_DASH_EQ] = ACTIONS(1505), + [anon_sym_STAR_EQ] = ACTIONS(1505), + [anon_sym_SLASH_EQ] = ACTIONS(1505), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1505), + [anon_sym_in] = ACTIONS(1505), + [sym__newline] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_PIPE] = ACTIONS(1505), + [anon_sym_err_GT_PIPE] = ACTIONS(1505), + [anon_sym_out_GT_PIPE] = ACTIONS(1505), + [anon_sym_e_GT_PIPE] = ACTIONS(1505), + [anon_sym_o_GT_PIPE] = ACTIONS(1505), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1505), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1505), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1505), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1505), + [anon_sym_GT2] = ACTIONS(1505), + [anon_sym_DASH2] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(1505), + [anon_sym_STAR2] = ACTIONS(1505), + [anon_sym_and2] = ACTIONS(1505), + [anon_sym_xor2] = ACTIONS(1505), + [anon_sym_or2] = ACTIONS(1505), + [anon_sym_not_DASHin2] = ACTIONS(1505), + [anon_sym_has2] = ACTIONS(1505), + [anon_sym_not_DASHhas2] = ACTIONS(1505), + [anon_sym_starts_DASHwith2] = ACTIONS(1505), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1505), + [anon_sym_ends_DASHwith2] = ACTIONS(1505), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1505), + [anon_sym_EQ_EQ2] = ACTIONS(1505), + [anon_sym_BANG_EQ2] = ACTIONS(1505), + [anon_sym_LT2] = ACTIONS(1505), + [anon_sym_LT_EQ2] = ACTIONS(1505), + [anon_sym_GT_EQ2] = ACTIONS(1505), + [anon_sym_EQ_TILDE2] = ACTIONS(1505), + [anon_sym_BANG_TILDE2] = ACTIONS(1505), + [anon_sym_like2] = ACTIONS(1505), + [anon_sym_not_DASHlike2] = ACTIONS(1505), + [anon_sym_STAR_STAR2] = ACTIONS(1505), + [anon_sym_PLUS_PLUS2] = ACTIONS(1505), + [anon_sym_SLASH2] = ACTIONS(1505), + [anon_sym_mod2] = ACTIONS(1505), + [anon_sym_SLASH_SLASH2] = ACTIONS(1505), + [anon_sym_PLUS2] = ACTIONS(1505), + [anon_sym_bit_DASHshl2] = ACTIONS(1505), + [anon_sym_bit_DASHshr2] = ACTIONS(1505), + [anon_sym_bit_DASHand2] = ACTIONS(1505), + [anon_sym_bit_DASHxor2] = ACTIONS(1505), + [anon_sym_bit_DASHor2] = ACTIONS(1505), + [anon_sym_DOT_DOT2] = ACTIONS(1505), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1507), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1507), + [sym__entry_separator] = ACTIONS(1507), + [anon_sym_COLON2] = ACTIONS(1505), + [anon_sym_QMARK2] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_DOT2] = ACTIONS(1505), + [anon_sym_err_GT] = ACTIONS(1505), + [anon_sym_out_GT] = ACTIONS(1505), + [anon_sym_e_GT] = ACTIONS(1505), + [anon_sym_o_GT] = ACTIONS(1505), + [anon_sym_err_PLUSout_GT] = ACTIONS(1505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1505), + [anon_sym_o_PLUSe_GT] = ACTIONS(1505), + [anon_sym_e_PLUSo_GT] = ACTIONS(1505), + [anon_sym_err_GT_GT] = ACTIONS(1505), + [anon_sym_out_GT_GT] = ACTIONS(1505), + [anon_sym_e_GT_GT] = ACTIONS(1505), + [anon_sym_o_GT_GT] = ACTIONS(1505), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1505), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1505), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1505), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1505), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(350)] = { - [aux_sym__repeat_newline] = STATE(4288), - [sym_expr_parenthesized] = STATE(3911), - [sym__spread_parenthesized] = STATE(4721), - [sym_val_range] = STATE(4776), - [sym__val_range] = STATE(4523), - [sym__value] = STATE(4776), - [sym_val_nothing] = STATE(4452), - [sym_val_bool] = STATE(4309), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4452), - [sym_val_number] = STATE(4452), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4130), - [sym_val_duration] = STATE(4452), - [sym_val_filesize] = STATE(4452), - [sym_val_binary] = STATE(4452), - [sym_val_string] = STATE(4452), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4452), - [sym__inter_single_quotes] = STATE(4504), - [sym__inter_double_quotes] = STATE(4369), - [sym_val_list] = STATE(4554), - [sym__spread_list] = STATE(4721), - [sym_list_body] = STATE(4811), - [sym_val_entry] = STATE(4375), - [sym_val_record] = STATE(4452), - [sym__table_head] = STATE(3709), - [sym_val_table] = STATE(4452), - [sym_val_closure] = STATE(4452), - [sym__unquoted_in_list] = STATE(4312), - [sym__unquoted_in_list_with_expr] = STATE(4776), - [sym__unquoted_anonymous_prefix] = STATE(4523), [sym_comment] = STATE(350), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4329), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1518), + [anon_sym_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1509), + [anon_sym_in] = ACTIONS(1509), + [sym__newline] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1509), + [anon_sym_PIPE] = ACTIONS(1509), + [anon_sym_err_GT_PIPE] = ACTIONS(1509), + [anon_sym_out_GT_PIPE] = ACTIONS(1509), + [anon_sym_e_GT_PIPE] = ACTIONS(1509), + [anon_sym_o_GT_PIPE] = ACTIONS(1509), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1509), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1509), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1509), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1509), + [anon_sym_GT2] = ACTIONS(1509), + [anon_sym_DASH2] = ACTIONS(1509), + [anon_sym_RBRACE] = ACTIONS(1509), + [anon_sym_STAR2] = ACTIONS(1509), + [anon_sym_and2] = ACTIONS(1509), + [anon_sym_xor2] = ACTIONS(1509), + [anon_sym_or2] = ACTIONS(1509), + [anon_sym_not_DASHin2] = ACTIONS(1509), + [anon_sym_has2] = ACTIONS(1509), + [anon_sym_not_DASHhas2] = ACTIONS(1509), + [anon_sym_starts_DASHwith2] = ACTIONS(1509), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1509), + [anon_sym_ends_DASHwith2] = ACTIONS(1509), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1509), + [anon_sym_EQ_EQ2] = ACTIONS(1509), + [anon_sym_BANG_EQ2] = ACTIONS(1509), + [anon_sym_LT2] = ACTIONS(1509), + [anon_sym_LT_EQ2] = ACTIONS(1509), + [anon_sym_GT_EQ2] = ACTIONS(1509), + [anon_sym_EQ_TILDE2] = ACTIONS(1509), + [anon_sym_BANG_TILDE2] = ACTIONS(1509), + [anon_sym_like2] = ACTIONS(1509), + [anon_sym_not_DASHlike2] = ACTIONS(1509), + [anon_sym_STAR_STAR2] = ACTIONS(1509), + [anon_sym_PLUS_PLUS2] = ACTIONS(1509), + [anon_sym_SLASH2] = ACTIONS(1509), + [anon_sym_mod2] = ACTIONS(1509), + [anon_sym_SLASH_SLASH2] = ACTIONS(1509), + [anon_sym_PLUS2] = ACTIONS(1509), + [anon_sym_bit_DASHshl2] = ACTIONS(1509), + [anon_sym_bit_DASHshr2] = ACTIONS(1509), + [anon_sym_bit_DASHand2] = ACTIONS(1509), + [anon_sym_bit_DASHxor2] = ACTIONS(1509), + [anon_sym_bit_DASHor2] = ACTIONS(1509), + [anon_sym_DOT_DOT2] = ACTIONS(1509), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1511), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1511), + [sym__entry_separator] = ACTIONS(1511), + [anon_sym_COLON2] = ACTIONS(1509), + [anon_sym_QMARK2] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(1509), + [anon_sym_DOT2] = ACTIONS(1509), + [anon_sym_err_GT] = ACTIONS(1509), + [anon_sym_out_GT] = ACTIONS(1509), + [anon_sym_e_GT] = ACTIONS(1509), + [anon_sym_o_GT] = ACTIONS(1509), + [anon_sym_err_PLUSout_GT] = ACTIONS(1509), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1509), + [anon_sym_o_PLUSe_GT] = ACTIONS(1509), + [anon_sym_e_PLUSo_GT] = ACTIONS(1509), + [anon_sym_err_GT_GT] = ACTIONS(1509), + [anon_sym_out_GT_GT] = ACTIONS(1509), + [anon_sym_e_GT_GT] = ACTIONS(1509), + [anon_sym_o_GT_GT] = ACTIONS(1509), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1509), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1509), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1509), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1509), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(351)] = { + [sym_comment] = STATE(351), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_PLUS_EQ] = ACTIONS(1458), + [anon_sym_DASH_EQ] = ACTIONS(1458), + [anon_sym_STAR_EQ] = ACTIONS(1458), + [anon_sym_SLASH_EQ] = ACTIONS(1458), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1458), + [anon_sym_in] = ACTIONS(1458), + [sym__newline] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_err_GT_PIPE] = ACTIONS(1458), + [anon_sym_out_GT_PIPE] = ACTIONS(1458), + [anon_sym_e_GT_PIPE] = ACTIONS(1458), + [anon_sym_o_GT_PIPE] = ACTIONS(1458), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1458), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1458), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1458), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1458), + [anon_sym_GT2] = ACTIONS(1458), + [anon_sym_DASH2] = ACTIONS(1458), + [anon_sym_RBRACE] = ACTIONS(1458), + [anon_sym_STAR2] = ACTIONS(1458), + [anon_sym_and2] = ACTIONS(1458), + [anon_sym_xor2] = ACTIONS(1458), + [anon_sym_or2] = ACTIONS(1458), + [anon_sym_not_DASHin2] = ACTIONS(1458), + [anon_sym_has2] = ACTIONS(1458), + [anon_sym_not_DASHhas2] = ACTIONS(1458), + [anon_sym_starts_DASHwith2] = ACTIONS(1458), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1458), + [anon_sym_ends_DASHwith2] = ACTIONS(1458), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1458), + [anon_sym_EQ_EQ2] = ACTIONS(1458), + [anon_sym_BANG_EQ2] = ACTIONS(1458), + [anon_sym_LT2] = ACTIONS(1458), + [anon_sym_LT_EQ2] = ACTIONS(1458), + [anon_sym_GT_EQ2] = ACTIONS(1458), + [anon_sym_EQ_TILDE2] = ACTIONS(1458), + [anon_sym_BANG_TILDE2] = ACTIONS(1458), + [anon_sym_like2] = ACTIONS(1458), + [anon_sym_not_DASHlike2] = ACTIONS(1458), + [anon_sym_STAR_STAR2] = ACTIONS(1458), + [anon_sym_PLUS_PLUS2] = ACTIONS(1458), + [anon_sym_SLASH2] = ACTIONS(1458), + [anon_sym_mod2] = ACTIONS(1458), + [anon_sym_SLASH_SLASH2] = ACTIONS(1458), + [anon_sym_PLUS2] = ACTIONS(1458), + [anon_sym_bit_DASHshl2] = ACTIONS(1458), + [anon_sym_bit_DASHshr2] = ACTIONS(1458), + [anon_sym_bit_DASHand2] = ACTIONS(1458), + [anon_sym_bit_DASHxor2] = ACTIONS(1458), + [anon_sym_bit_DASHor2] = ACTIONS(1458), + [anon_sym_DOT_DOT2] = ACTIONS(1458), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1460), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1460), + [sym__entry_separator] = ACTIONS(1460), + [anon_sym_COLON2] = ACTIONS(1458), + [anon_sym_QMARK2] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_DOT2] = ACTIONS(1458), + [anon_sym_err_GT] = ACTIONS(1458), + [anon_sym_out_GT] = ACTIONS(1458), + [anon_sym_e_GT] = ACTIONS(1458), + [anon_sym_o_GT] = ACTIONS(1458), + [anon_sym_err_PLUSout_GT] = ACTIONS(1458), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1458), + [anon_sym_o_PLUSe_GT] = ACTIONS(1458), + [anon_sym_e_PLUSo_GT] = ACTIONS(1458), + [anon_sym_err_GT_GT] = ACTIONS(1458), + [anon_sym_out_GT_GT] = ACTIONS(1458), + [anon_sym_e_GT_GT] = ACTIONS(1458), + [anon_sym_o_GT_GT] = ACTIONS(1458), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1458), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1458), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1458), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1458), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(352)] = { + [sym_comment] = STATE(352), + [anon_sym_EQ] = ACTIONS(1525), + [anon_sym_PLUS_EQ] = ACTIONS(1525), + [anon_sym_DASH_EQ] = ACTIONS(1525), + [anon_sym_STAR_EQ] = ACTIONS(1525), + [anon_sym_SLASH_EQ] = ACTIONS(1525), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1525), + [anon_sym_in] = ACTIONS(1525), + [sym__newline] = ACTIONS(1525), + [anon_sym_SEMI] = ACTIONS(1525), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_err_GT_PIPE] = ACTIONS(1525), + [anon_sym_out_GT_PIPE] = ACTIONS(1525), + [anon_sym_e_GT_PIPE] = ACTIONS(1525), + [anon_sym_o_GT_PIPE] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1525), + [anon_sym_RBRACK] = ACTIONS(1525), + [anon_sym_GT2] = ACTIONS(1525), + [anon_sym_DASH2] = ACTIONS(1525), + [anon_sym_RBRACE] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1525), + [anon_sym_STAR2] = ACTIONS(1525), + [anon_sym_and2] = ACTIONS(1525), + [anon_sym_xor2] = ACTIONS(1525), + [anon_sym_or2] = ACTIONS(1525), + [anon_sym_not_DASHin2] = ACTIONS(1525), + [anon_sym_has2] = ACTIONS(1525), + [anon_sym_not_DASHhas2] = ACTIONS(1525), + [anon_sym_starts_DASHwith2] = ACTIONS(1525), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1525), + [anon_sym_ends_DASHwith2] = ACTIONS(1525), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1525), + [anon_sym_EQ_EQ2] = ACTIONS(1525), + [anon_sym_BANG_EQ2] = ACTIONS(1525), + [anon_sym_LT2] = ACTIONS(1525), + [anon_sym_LT_EQ2] = ACTIONS(1525), + [anon_sym_GT_EQ2] = ACTIONS(1525), + [anon_sym_EQ_TILDE2] = ACTIONS(1525), + [anon_sym_BANG_TILDE2] = ACTIONS(1525), + [anon_sym_like2] = ACTIONS(1525), + [anon_sym_not_DASHlike2] = ACTIONS(1525), + [anon_sym_STAR_STAR2] = ACTIONS(1525), + [anon_sym_PLUS_PLUS2] = ACTIONS(1525), + [anon_sym_SLASH2] = ACTIONS(1525), + [anon_sym_mod2] = ACTIONS(1525), + [anon_sym_SLASH_SLASH2] = ACTIONS(1525), + [anon_sym_PLUS2] = ACTIONS(1525), + [anon_sym_bit_DASHshl2] = ACTIONS(1525), + [anon_sym_bit_DASHshr2] = ACTIONS(1525), + [anon_sym_bit_DASHand2] = ACTIONS(1525), + [anon_sym_bit_DASHxor2] = ACTIONS(1525), + [anon_sym_bit_DASHor2] = ACTIONS(1525), + [anon_sym_DOT_DOT2] = ACTIONS(1525), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1527), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1527), + [sym__entry_separator] = ACTIONS(1527), + [anon_sym_COLON2] = ACTIONS(1525), + [anon_sym_DOT2] = ACTIONS(1525), + [anon_sym_err_GT] = ACTIONS(1525), + [anon_sym_out_GT] = ACTIONS(1525), + [anon_sym_e_GT] = ACTIONS(1525), + [anon_sym_o_GT] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT] = ACTIONS(1525), + [anon_sym_err_GT_GT] = ACTIONS(1525), + [anon_sym_out_GT_GT] = ACTIONS(1525), + [anon_sym_e_GT_GT] = ACTIONS(1525), + [anon_sym_o_GT_GT] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1525), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(353)] = { + [sym_comment] = STATE(353), + [anon_sym_EQ] = ACTIONS(1529), + [anon_sym_PLUS_EQ] = ACTIONS(1529), + [anon_sym_DASH_EQ] = ACTIONS(1529), + [anon_sym_STAR_EQ] = ACTIONS(1529), + [anon_sym_SLASH_EQ] = ACTIONS(1529), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1529), + [anon_sym_in] = ACTIONS(1529), + [sym__newline] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1529), + [anon_sym_PIPE] = ACTIONS(1529), + [anon_sym_err_GT_PIPE] = ACTIONS(1529), + [anon_sym_out_GT_PIPE] = ACTIONS(1529), + [anon_sym_e_GT_PIPE] = ACTIONS(1529), + [anon_sym_o_GT_PIPE] = ACTIONS(1529), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1529), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1529), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1529), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1529), + [anon_sym_RBRACK] = ACTIONS(1529), + [anon_sym_GT2] = ACTIONS(1529), + [anon_sym_DASH2] = ACTIONS(1529), + [anon_sym_RBRACE] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(1529), + [anon_sym_STAR2] = ACTIONS(1529), + [anon_sym_and2] = ACTIONS(1529), + [anon_sym_xor2] = ACTIONS(1529), + [anon_sym_or2] = ACTIONS(1529), + [anon_sym_not_DASHin2] = ACTIONS(1529), + [anon_sym_has2] = ACTIONS(1529), + [anon_sym_not_DASHhas2] = ACTIONS(1529), + [anon_sym_starts_DASHwith2] = ACTIONS(1529), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1529), + [anon_sym_ends_DASHwith2] = ACTIONS(1529), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1529), + [anon_sym_EQ_EQ2] = ACTIONS(1529), + [anon_sym_BANG_EQ2] = ACTIONS(1529), + [anon_sym_LT2] = ACTIONS(1529), + [anon_sym_LT_EQ2] = ACTIONS(1529), + [anon_sym_GT_EQ2] = ACTIONS(1529), + [anon_sym_EQ_TILDE2] = ACTIONS(1529), + [anon_sym_BANG_TILDE2] = ACTIONS(1529), + [anon_sym_like2] = ACTIONS(1529), + [anon_sym_not_DASHlike2] = ACTIONS(1529), + [anon_sym_STAR_STAR2] = ACTIONS(1529), + [anon_sym_PLUS_PLUS2] = ACTIONS(1529), + [anon_sym_SLASH2] = ACTIONS(1529), + [anon_sym_mod2] = ACTIONS(1529), + [anon_sym_SLASH_SLASH2] = ACTIONS(1529), + [anon_sym_PLUS2] = ACTIONS(1529), + [anon_sym_bit_DASHshl2] = ACTIONS(1529), + [anon_sym_bit_DASHshr2] = ACTIONS(1529), + [anon_sym_bit_DASHand2] = ACTIONS(1529), + [anon_sym_bit_DASHxor2] = ACTIONS(1529), + [anon_sym_bit_DASHor2] = ACTIONS(1529), + [anon_sym_DOT_DOT2] = ACTIONS(1529), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1531), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1531), + [sym__entry_separator] = ACTIONS(1531), + [anon_sym_COLON2] = ACTIONS(1529), + [anon_sym_DOT2] = ACTIONS(1529), + [anon_sym_err_GT] = ACTIONS(1529), + [anon_sym_out_GT] = ACTIONS(1529), + [anon_sym_e_GT] = ACTIONS(1529), + [anon_sym_o_GT] = ACTIONS(1529), + [anon_sym_err_PLUSout_GT] = ACTIONS(1529), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1529), + [anon_sym_o_PLUSe_GT] = ACTIONS(1529), + [anon_sym_e_PLUSo_GT] = ACTIONS(1529), + [anon_sym_err_GT_GT] = ACTIONS(1529), + [anon_sym_out_GT_GT] = ACTIONS(1529), + [anon_sym_e_GT_GT] = ACTIONS(1529), + [anon_sym_o_GT_GT] = ACTIONS(1529), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1529), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1529), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1529), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1529), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(354)] = { + [aux_sym__repeat_newline] = STATE(4123), + [sym_expr_parenthesized] = STATE(4058), + [sym__spread_parenthesized] = STATE(4700), + [sym_val_range] = STATE(4730), + [sym__val_range] = STATE(4544), + [sym__value] = STATE(4730), + [sym_val_nothing] = STATE(4604), + [sym_val_bool] = STATE(4358), + [sym__spread_variable] = STATE(4795), + [sym_val_variable] = STATE(3879), + [sym_val_cellpath] = STATE(4604), + [sym_val_number] = STATE(4604), + [sym__val_number_decimal] = STATE(3485), + [sym__val_number] = STATE(4361), + [sym_val_duration] = STATE(4604), + [sym_val_filesize] = STATE(4604), + [sym_val_binary] = STATE(4604), + [sym_val_string] = STATE(4604), + [sym__raw_str] = STATE(3638), + [sym__str_double_quotes] = STATE(3638), + [sym__str_single_quotes] = STATE(3638), + [sym__str_back_ticks] = STATE(3638), + [sym_val_interpolated] = STATE(4604), + [sym__inter_single_quotes] = STATE(4595), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4558), + [sym__spread_list] = STATE(4700), + [sym_list_body] = STATE(4876), + [sym_val_entry] = STATE(4576), + [sym_val_record] = STATE(4604), + [sym__table_head] = STATE(3691), + [sym_val_table] = STATE(4604), + [sym_val_closure] = STATE(4604), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4730), + [sym__unquoted_anonymous_prefix] = STATE(4544), + [sym_comment] = STATE(354), + [aux_sym__types_body_repeat1] = STATE(458), + [aux_sym_parameter_repeat2] = STATE(4189), + [aux_sym_list_body_repeat1] = STATE(548), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), + [sym__newline] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_RBRACK] = ACTIONS(1533), [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -74836,316 +75366,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(351)] = { - [sym_comment] = STATE(351), - [anon_sym_EQ] = ACTIONS(1520), - [anon_sym_PLUS_EQ] = ACTIONS(1520), - [anon_sym_DASH_EQ] = ACTIONS(1520), - [anon_sym_STAR_EQ] = ACTIONS(1520), - [anon_sym_SLASH_EQ] = ACTIONS(1520), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1520), - [anon_sym_in] = ACTIONS(1520), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_RBRACK] = ACTIONS(1520), - [anon_sym_GT2] = ACTIONS(1520), - [anon_sym_DASH2] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1520), - [anon_sym_STAR2] = ACTIONS(1520), - [anon_sym_and2] = ACTIONS(1520), - [anon_sym_xor2] = ACTIONS(1520), - [anon_sym_or2] = ACTIONS(1520), - [anon_sym_not_DASHin2] = ACTIONS(1520), - [anon_sym_has2] = ACTIONS(1520), - [anon_sym_not_DASHhas2] = ACTIONS(1520), - [anon_sym_starts_DASHwith2] = ACTIONS(1520), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1520), - [anon_sym_ends_DASHwith2] = ACTIONS(1520), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1520), - [anon_sym_EQ_EQ2] = ACTIONS(1520), - [anon_sym_BANG_EQ2] = ACTIONS(1520), - [anon_sym_LT2] = ACTIONS(1520), - [anon_sym_LT_EQ2] = ACTIONS(1520), - [anon_sym_GT_EQ2] = ACTIONS(1520), - [anon_sym_EQ_TILDE2] = ACTIONS(1520), - [anon_sym_BANG_TILDE2] = ACTIONS(1520), - [anon_sym_like2] = ACTIONS(1520), - [anon_sym_not_DASHlike2] = ACTIONS(1520), - [anon_sym_STAR_STAR2] = ACTIONS(1520), - [anon_sym_PLUS_PLUS2] = ACTIONS(1520), - [anon_sym_SLASH2] = ACTIONS(1520), - [anon_sym_mod2] = ACTIONS(1520), - [anon_sym_SLASH_SLASH2] = ACTIONS(1520), - [anon_sym_PLUS2] = ACTIONS(1520), - [anon_sym_bit_DASHshl2] = ACTIONS(1520), - [anon_sym_bit_DASHshr2] = ACTIONS(1520), - [anon_sym_bit_DASHand2] = ACTIONS(1520), - [anon_sym_bit_DASHxor2] = ACTIONS(1520), - [anon_sym_bit_DASHor2] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1520), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1522), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1522), - [sym__entry_separator] = ACTIONS(1522), - [anon_sym_COLON2] = ACTIONS(1520), - [anon_sym_DOT2] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1520), - [anon_sym_out_GT] = ACTIONS(1520), - [anon_sym_e_GT] = ACTIONS(1520), - [anon_sym_o_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT] = ACTIONS(1520), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), + [STATE(355)] = { + [sym_comment] = STATE(355), + [anon_sym_EQ] = ACTIONS(1513), + [anon_sym_PLUS_EQ] = ACTIONS(1513), + [anon_sym_DASH_EQ] = ACTIONS(1513), + [anon_sym_STAR_EQ] = ACTIONS(1513), + [anon_sym_SLASH_EQ] = ACTIONS(1513), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1513), + [anon_sym_in] = ACTIONS(1513), + [sym__newline] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1513), + [anon_sym_err_GT_PIPE] = ACTIONS(1513), + [anon_sym_out_GT_PIPE] = ACTIONS(1513), + [anon_sym_e_GT_PIPE] = ACTIONS(1513), + [anon_sym_o_GT_PIPE] = ACTIONS(1513), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1513), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1513), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1513), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1513), + [anon_sym_GT2] = ACTIONS(1513), + [anon_sym_DASH2] = ACTIONS(1513), + [anon_sym_RBRACE] = ACTIONS(1513), + [anon_sym_STAR2] = ACTIONS(1513), + [anon_sym_and2] = ACTIONS(1513), + [anon_sym_xor2] = ACTIONS(1513), + [anon_sym_or2] = ACTIONS(1513), + [anon_sym_not_DASHin2] = ACTIONS(1513), + [anon_sym_has2] = ACTIONS(1513), + [anon_sym_not_DASHhas2] = ACTIONS(1513), + [anon_sym_starts_DASHwith2] = ACTIONS(1513), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1513), + [anon_sym_ends_DASHwith2] = ACTIONS(1513), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1513), + [anon_sym_EQ_EQ2] = ACTIONS(1513), + [anon_sym_BANG_EQ2] = ACTIONS(1513), + [anon_sym_LT2] = ACTIONS(1513), + [anon_sym_LT_EQ2] = ACTIONS(1513), + [anon_sym_GT_EQ2] = ACTIONS(1513), + [anon_sym_EQ_TILDE2] = ACTIONS(1513), + [anon_sym_BANG_TILDE2] = ACTIONS(1513), + [anon_sym_like2] = ACTIONS(1513), + [anon_sym_not_DASHlike2] = ACTIONS(1513), + [anon_sym_STAR_STAR2] = ACTIONS(1513), + [anon_sym_PLUS_PLUS2] = ACTIONS(1513), + [anon_sym_SLASH2] = ACTIONS(1513), + [anon_sym_mod2] = ACTIONS(1513), + [anon_sym_SLASH_SLASH2] = ACTIONS(1513), + [anon_sym_PLUS2] = ACTIONS(1513), + [anon_sym_bit_DASHshl2] = ACTIONS(1513), + [anon_sym_bit_DASHshr2] = ACTIONS(1513), + [anon_sym_bit_DASHand2] = ACTIONS(1513), + [anon_sym_bit_DASHxor2] = ACTIONS(1513), + [anon_sym_bit_DASHor2] = ACTIONS(1513), + [anon_sym_DOT_DOT2] = ACTIONS(1513), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1515), + [sym__entry_separator] = ACTIONS(1515), + [anon_sym_COLON2] = ACTIONS(1513), + [anon_sym_QMARK2] = ACTIONS(1513), + [anon_sym_BANG] = ACTIONS(1513), + [anon_sym_DOT2] = ACTIONS(1513), + [anon_sym_err_GT] = ACTIONS(1513), + [anon_sym_out_GT] = ACTIONS(1513), + [anon_sym_e_GT] = ACTIONS(1513), + [anon_sym_o_GT] = ACTIONS(1513), + [anon_sym_err_PLUSout_GT] = ACTIONS(1513), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1513), + [anon_sym_o_PLUSe_GT] = ACTIONS(1513), + [anon_sym_e_PLUSo_GT] = ACTIONS(1513), + [anon_sym_err_GT_GT] = ACTIONS(1513), + [anon_sym_out_GT_GT] = ACTIONS(1513), + [anon_sym_e_GT_GT] = ACTIONS(1513), + [anon_sym_o_GT_GT] = ACTIONS(1513), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1513), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1513), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1513), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1513), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(352)] = { - [sym_comment] = STATE(352), - [anon_sym_EQ] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(1514), - [anon_sym_DASH_EQ] = ACTIONS(1514), - [anon_sym_STAR_EQ] = ACTIONS(1514), - [anon_sym_SLASH_EQ] = ACTIONS(1514), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1514), - [anon_sym_in] = ACTIONS(1514), - [sym__newline] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1514), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_err_GT_PIPE] = ACTIONS(1514), - [anon_sym_out_GT_PIPE] = ACTIONS(1514), - [anon_sym_e_GT_PIPE] = ACTIONS(1514), - [anon_sym_o_GT_PIPE] = ACTIONS(1514), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1514), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1514), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1514), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1514), - [anon_sym_GT2] = ACTIONS(1514), - [anon_sym_DASH2] = ACTIONS(1514), - [anon_sym_RBRACE] = ACTIONS(1514), - [anon_sym_STAR2] = ACTIONS(1514), - [anon_sym_and2] = ACTIONS(1514), - [anon_sym_xor2] = ACTIONS(1514), - [anon_sym_or2] = ACTIONS(1514), - [anon_sym_not_DASHin2] = ACTIONS(1514), - [anon_sym_has2] = ACTIONS(1514), - [anon_sym_not_DASHhas2] = ACTIONS(1514), - [anon_sym_starts_DASHwith2] = ACTIONS(1514), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1514), - [anon_sym_ends_DASHwith2] = ACTIONS(1514), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1514), - [anon_sym_EQ_EQ2] = ACTIONS(1514), - [anon_sym_BANG_EQ2] = ACTIONS(1514), - [anon_sym_LT2] = ACTIONS(1514), - [anon_sym_LT_EQ2] = ACTIONS(1514), - [anon_sym_GT_EQ2] = ACTIONS(1514), - [anon_sym_EQ_TILDE2] = ACTIONS(1514), - [anon_sym_BANG_TILDE2] = ACTIONS(1514), - [anon_sym_like2] = ACTIONS(1514), - [anon_sym_not_DASHlike2] = ACTIONS(1514), - [anon_sym_STAR_STAR2] = ACTIONS(1514), - [anon_sym_PLUS_PLUS2] = ACTIONS(1514), - [anon_sym_SLASH2] = ACTIONS(1514), - [anon_sym_mod2] = ACTIONS(1514), - [anon_sym_SLASH_SLASH2] = ACTIONS(1514), - [anon_sym_PLUS2] = ACTIONS(1514), - [anon_sym_bit_DASHshl2] = ACTIONS(1514), - [anon_sym_bit_DASHshr2] = ACTIONS(1514), - [anon_sym_bit_DASHand2] = ACTIONS(1514), - [anon_sym_bit_DASHxor2] = ACTIONS(1514), - [anon_sym_bit_DASHor2] = ACTIONS(1514), - [anon_sym_DOT_DOT2] = ACTIONS(1514), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1516), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1516), - [sym__entry_separator] = ACTIONS(1516), - [anon_sym_COLON2] = ACTIONS(1514), - [anon_sym_QMARK2] = ACTIONS(1514), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_DOT2] = ACTIONS(1514), - [anon_sym_err_GT] = ACTIONS(1514), - [anon_sym_out_GT] = ACTIONS(1514), - [anon_sym_e_GT] = ACTIONS(1514), - [anon_sym_o_GT] = ACTIONS(1514), - [anon_sym_err_PLUSout_GT] = ACTIONS(1514), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1514), - [anon_sym_o_PLUSe_GT] = ACTIONS(1514), - [anon_sym_e_PLUSo_GT] = ACTIONS(1514), - [anon_sym_err_GT_GT] = ACTIONS(1514), - [anon_sym_out_GT_GT] = ACTIONS(1514), - [anon_sym_e_GT_GT] = ACTIONS(1514), - [anon_sym_o_GT_GT] = ACTIONS(1514), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1514), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1514), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1514), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1514), + [STATE(356)] = { + [sym_comment] = STATE(356), + [anon_sym_EQ] = ACTIONS(1517), + [anon_sym_PLUS_EQ] = ACTIONS(1517), + [anon_sym_DASH_EQ] = ACTIONS(1517), + [anon_sym_STAR_EQ] = ACTIONS(1517), + [anon_sym_SLASH_EQ] = ACTIONS(1517), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1517), + [anon_sym_in] = ACTIONS(1517), + [sym__newline] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1517), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_err_GT_PIPE] = ACTIONS(1517), + [anon_sym_out_GT_PIPE] = ACTIONS(1517), + [anon_sym_e_GT_PIPE] = ACTIONS(1517), + [anon_sym_o_GT_PIPE] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1517), + [anon_sym_GT2] = ACTIONS(1517), + [anon_sym_DASH2] = ACTIONS(1517), + [anon_sym_RBRACE] = ACTIONS(1517), + [anon_sym_STAR2] = ACTIONS(1517), + [anon_sym_and2] = ACTIONS(1517), + [anon_sym_xor2] = ACTIONS(1517), + [anon_sym_or2] = ACTIONS(1517), + [anon_sym_not_DASHin2] = ACTIONS(1517), + [anon_sym_has2] = ACTIONS(1517), + [anon_sym_not_DASHhas2] = ACTIONS(1517), + [anon_sym_starts_DASHwith2] = ACTIONS(1517), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1517), + [anon_sym_ends_DASHwith2] = ACTIONS(1517), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1517), + [anon_sym_EQ_EQ2] = ACTIONS(1517), + [anon_sym_BANG_EQ2] = ACTIONS(1517), + [anon_sym_LT2] = ACTIONS(1517), + [anon_sym_LT_EQ2] = ACTIONS(1517), + [anon_sym_GT_EQ2] = ACTIONS(1517), + [anon_sym_EQ_TILDE2] = ACTIONS(1517), + [anon_sym_BANG_TILDE2] = ACTIONS(1517), + [anon_sym_like2] = ACTIONS(1517), + [anon_sym_not_DASHlike2] = ACTIONS(1517), + [anon_sym_STAR_STAR2] = ACTIONS(1517), + [anon_sym_PLUS_PLUS2] = ACTIONS(1517), + [anon_sym_SLASH2] = ACTIONS(1517), + [anon_sym_mod2] = ACTIONS(1517), + [anon_sym_SLASH_SLASH2] = ACTIONS(1517), + [anon_sym_PLUS2] = ACTIONS(1517), + [anon_sym_bit_DASHshl2] = ACTIONS(1517), + [anon_sym_bit_DASHshr2] = ACTIONS(1517), + [anon_sym_bit_DASHand2] = ACTIONS(1517), + [anon_sym_bit_DASHxor2] = ACTIONS(1517), + [anon_sym_bit_DASHor2] = ACTIONS(1517), + [anon_sym_DOT_DOT2] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), + [sym__entry_separator] = ACTIONS(1519), + [anon_sym_COLON2] = ACTIONS(1517), + [anon_sym_QMARK2] = ACTIONS(1517), + [anon_sym_BANG] = ACTIONS(1517), + [anon_sym_DOT2] = ACTIONS(1517), + [anon_sym_err_GT] = ACTIONS(1517), + [anon_sym_out_GT] = ACTIONS(1517), + [anon_sym_e_GT] = ACTIONS(1517), + [anon_sym_o_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT] = ACTIONS(1517), + [anon_sym_err_GT_GT] = ACTIONS(1517), + [anon_sym_out_GT_GT] = ACTIONS(1517), + [anon_sym_e_GT_GT] = ACTIONS(1517), + [anon_sym_o_GT_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1517), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(353)] = { - [sym_path] = STATE(385), - [sym_comment] = STATE(353), - [aux_sym__where_predicate_lhs_repeat1] = STATE(353), - [anon_sym_EQ] = ACTIONS(1524), - [anon_sym_PLUS_EQ] = ACTIONS(1526), - [anon_sym_DASH_EQ] = ACTIONS(1526), - [anon_sym_STAR_EQ] = ACTIONS(1526), - [anon_sym_SLASH_EQ] = ACTIONS(1526), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1526), - [anon_sym_in] = ACTIONS(1526), - [sym__newline] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1526), - [anon_sym_err_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_GT_PIPE] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1526), - [anon_sym_RPAREN] = ACTIONS(1526), - [anon_sym_GT2] = ACTIONS(1524), - [anon_sym_DASH2] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1526), - [anon_sym_STAR2] = ACTIONS(1524), - [anon_sym_and2] = ACTIONS(1526), - [anon_sym_xor2] = ACTIONS(1526), - [anon_sym_or2] = ACTIONS(1526), - [anon_sym_not_DASHin2] = ACTIONS(1526), - [anon_sym_has2] = ACTIONS(1526), - [anon_sym_not_DASHhas2] = ACTIONS(1526), - [anon_sym_starts_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1526), - [anon_sym_ends_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1526), - [anon_sym_EQ_EQ2] = ACTIONS(1526), - [anon_sym_BANG_EQ2] = ACTIONS(1526), - [anon_sym_LT2] = ACTIONS(1524), - [anon_sym_LT_EQ2] = ACTIONS(1526), - [anon_sym_GT_EQ2] = ACTIONS(1526), - [anon_sym_EQ_TILDE2] = ACTIONS(1526), - [anon_sym_BANG_TILDE2] = ACTIONS(1526), - [anon_sym_like2] = ACTIONS(1526), - [anon_sym_not_DASHlike2] = ACTIONS(1526), - [anon_sym_STAR_STAR2] = ACTIONS(1526), - [anon_sym_PLUS_PLUS2] = ACTIONS(1524), - [anon_sym_SLASH2] = ACTIONS(1524), - [anon_sym_mod2] = ACTIONS(1526), - [anon_sym_SLASH_SLASH2] = ACTIONS(1526), - [anon_sym_PLUS2] = ACTIONS(1524), - [anon_sym_bit_DASHshl2] = ACTIONS(1526), - [anon_sym_bit_DASHshr2] = ACTIONS(1526), - [anon_sym_bit_DASHand2] = ACTIONS(1526), - [anon_sym_bit_DASHxor2] = ACTIONS(1526), - [anon_sym_bit_DASHor2] = ACTIONS(1526), - [anon_sym_DOT_DOT2] = ACTIONS(1524), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1526), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1526), - [anon_sym_COLON2] = ACTIONS(1526), - [anon_sym_DOT2] = ACTIONS(1528), - [anon_sym_err_GT] = ACTIONS(1524), - [anon_sym_out_GT] = ACTIONS(1524), - [anon_sym_e_GT] = ACTIONS(1524), - [anon_sym_o_GT] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT] = ACTIONS(1524), - [anon_sym_err_GT_GT] = ACTIONS(1526), - [anon_sym_out_GT_GT] = ACTIONS(1526), - [anon_sym_e_GT_GT] = ACTIONS(1526), - [anon_sym_o_GT_GT] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1526), - [anon_sym_POUND] = ACTIONS(3), + [STATE(357)] = { + [sym_comment] = STATE(357), + [anon_sym_EQ] = ACTIONS(1521), + [anon_sym_PLUS_EQ] = ACTIONS(1521), + [anon_sym_DASH_EQ] = ACTIONS(1521), + [anon_sym_STAR_EQ] = ACTIONS(1521), + [anon_sym_SLASH_EQ] = ACTIONS(1521), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1521), + [anon_sym_in] = ACTIONS(1521), + [sym__newline] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_err_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_GT_PIPE] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1521), + [anon_sym_GT2] = ACTIONS(1521), + [anon_sym_DASH2] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym_STAR2] = ACTIONS(1521), + [anon_sym_and2] = ACTIONS(1521), + [anon_sym_xor2] = ACTIONS(1521), + [anon_sym_or2] = ACTIONS(1521), + [anon_sym_not_DASHin2] = ACTIONS(1521), + [anon_sym_has2] = ACTIONS(1521), + [anon_sym_not_DASHhas2] = ACTIONS(1521), + [anon_sym_starts_DASHwith2] = ACTIONS(1521), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1521), + [anon_sym_ends_DASHwith2] = ACTIONS(1521), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1521), + [anon_sym_EQ_EQ2] = ACTIONS(1521), + [anon_sym_BANG_EQ2] = ACTIONS(1521), + [anon_sym_LT2] = ACTIONS(1521), + [anon_sym_LT_EQ2] = ACTIONS(1521), + [anon_sym_GT_EQ2] = ACTIONS(1521), + [anon_sym_EQ_TILDE2] = ACTIONS(1521), + [anon_sym_BANG_TILDE2] = ACTIONS(1521), + [anon_sym_like2] = ACTIONS(1521), + [anon_sym_not_DASHlike2] = ACTIONS(1521), + [anon_sym_STAR_STAR2] = ACTIONS(1521), + [anon_sym_PLUS_PLUS2] = ACTIONS(1521), + [anon_sym_SLASH2] = ACTIONS(1521), + [anon_sym_mod2] = ACTIONS(1521), + [anon_sym_SLASH_SLASH2] = ACTIONS(1521), + [anon_sym_PLUS2] = ACTIONS(1521), + [anon_sym_bit_DASHshl2] = ACTIONS(1521), + [anon_sym_bit_DASHshr2] = ACTIONS(1521), + [anon_sym_bit_DASHand2] = ACTIONS(1521), + [anon_sym_bit_DASHxor2] = ACTIONS(1521), + [anon_sym_bit_DASHor2] = ACTIONS(1521), + [anon_sym_DOT_DOT2] = ACTIONS(1521), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1523), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1523), + [sym__entry_separator] = ACTIONS(1523), + [anon_sym_COLON2] = ACTIONS(1521), + [anon_sym_QMARK2] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_DOT2] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1521), + [anon_sym_out_GT] = ACTIONS(1521), + [anon_sym_e_GT] = ACTIONS(1521), + [anon_sym_o_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT] = ACTIONS(1521), + [anon_sym_err_GT_GT] = ACTIONS(1521), + [anon_sym_out_GT_GT] = ACTIONS(1521), + [anon_sym_e_GT_GT] = ACTIONS(1521), + [anon_sym_o_GT_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), + [anon_sym_POUND] = ACTIONS(103), }, - [STATE(354)] = { - [aux_sym__repeat_newline] = STATE(4288), - [sym_expr_parenthesized] = STATE(3911), - [sym__spread_parenthesized] = STATE(4721), - [sym_val_range] = STATE(4776), - [sym__val_range] = STATE(4523), - [sym__value] = STATE(4776), - [sym_val_nothing] = STATE(4452), - [sym_val_bool] = STATE(4309), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4452), - [sym_val_number] = STATE(4452), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4130), - [sym_val_duration] = STATE(4452), - [sym_val_filesize] = STATE(4452), - [sym_val_binary] = STATE(4452), - [sym_val_string] = STATE(4452), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4452), - [sym__inter_single_quotes] = STATE(4504), - [sym__inter_double_quotes] = STATE(4369), - [sym_val_list] = STATE(4554), - [sym__spread_list] = STATE(4721), - [sym_list_body] = STATE(4902), - [sym_val_entry] = STATE(4375), - [sym_val_record] = STATE(4452), - [sym__table_head] = STATE(3697), - [sym_val_table] = STATE(4452), - [sym_val_closure] = STATE(4452), - [sym__unquoted_in_list] = STATE(4312), - [sym__unquoted_in_list_with_expr] = STATE(4776), - [sym__unquoted_anonymous_prefix] = STATE(4523), - [sym_comment] = STATE(354), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4329), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1531), + [STATE(358)] = { + [aux_sym__repeat_newline] = STATE(4123), + [sym_expr_parenthesized] = STATE(4058), + [sym__spread_parenthesized] = STATE(4700), + [sym_val_range] = STATE(4730), + [sym__val_range] = STATE(4544), + [sym__value] = STATE(4730), + [sym_val_nothing] = STATE(4604), + [sym_val_bool] = STATE(4358), + [sym__spread_variable] = STATE(4795), + [sym_val_variable] = STATE(3879), + [sym_val_cellpath] = STATE(4604), + [sym_val_number] = STATE(4604), + [sym__val_number_decimal] = STATE(3485), + [sym__val_number] = STATE(4361), + [sym_val_duration] = STATE(4604), + [sym_val_filesize] = STATE(4604), + [sym_val_binary] = STATE(4604), + [sym_val_string] = STATE(4604), + [sym__raw_str] = STATE(3638), + [sym__str_double_quotes] = STATE(3638), + [sym__str_single_quotes] = STATE(3638), + [sym__str_back_ticks] = STATE(3638), + [sym_val_interpolated] = STATE(4604), + [sym__inter_single_quotes] = STATE(4595), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4558), + [sym__spread_list] = STATE(4700), + [sym_list_body] = STATE(5089), + [sym_val_entry] = STATE(4576), + [sym_val_record] = STATE(4604), + [sym__table_head] = STATE(3717), + [sym_val_table] = STATE(4604), + [sym_val_closure] = STATE(4604), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4730), + [sym__unquoted_anonymous_prefix] = STATE(4544), + [sym_comment] = STATE(358), + [aux_sym__types_body_repeat1] = STATE(458), + [aux_sym_parameter_repeat2] = STATE(4189), + [aux_sym_list_body_repeat1] = STATE(548), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), + [sym__newline] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_RBRACK] = ACTIONS(1535), [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -75156,156 +75686,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(355)] = { - [sym_comment] = STATE(355), - [anon_sym_EQ] = ACTIONS(1466), - [anon_sym_PLUS_EQ] = ACTIONS(1468), - [anon_sym_DASH_EQ] = ACTIONS(1468), - [anon_sym_STAR_EQ] = ACTIONS(1468), - [anon_sym_SLASH_EQ] = ACTIONS(1468), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1468), - [anon_sym_in] = ACTIONS(1468), + [STATE(359)] = { + [aux_sym__repeat_newline] = STATE(4123), + [sym_expr_parenthesized] = STATE(4058), + [sym__spread_parenthesized] = STATE(4700), + [sym_val_range] = STATE(4730), + [sym__val_range] = STATE(4544), + [sym__value] = STATE(4730), + [sym_val_nothing] = STATE(4604), + [sym_val_bool] = STATE(4358), + [sym__spread_variable] = STATE(4795), + [sym_val_variable] = STATE(3879), + [sym_val_cellpath] = STATE(4604), + [sym_val_number] = STATE(4604), + [sym__val_number_decimal] = STATE(3485), + [sym__val_number] = STATE(4361), + [sym_val_duration] = STATE(4604), + [sym_val_filesize] = STATE(4604), + [sym_val_binary] = STATE(4604), + [sym_val_string] = STATE(4604), + [sym__raw_str] = STATE(3638), + [sym__str_double_quotes] = STATE(3638), + [sym__str_single_quotes] = STATE(3638), + [sym__str_back_ticks] = STATE(3638), + [sym_val_interpolated] = STATE(4604), + [sym__inter_single_quotes] = STATE(4595), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4558), + [sym__spread_list] = STATE(4700), + [sym_list_body] = STATE(5152), + [sym_val_entry] = STATE(4576), + [sym_val_record] = STATE(4604), + [sym__table_head] = STATE(3724), + [sym_val_table] = STATE(4604), + [sym_val_closure] = STATE(4604), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4730), + [sym__unquoted_anonymous_prefix] = STATE(4544), + [sym_comment] = STATE(359), + [aux_sym__types_body_repeat1] = STATE(458), + [aux_sym_parameter_repeat2] = STATE(4189), + [aux_sym_list_body_repeat1] = STATE(548), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), [sym__newline] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_err_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_GT_PIPE] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), - [anon_sym_RPAREN] = ACTIONS(1468), - [anon_sym_GT2] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1468), - [anon_sym_STAR2] = ACTIONS(1466), - [anon_sym_and2] = ACTIONS(1468), - [anon_sym_xor2] = ACTIONS(1468), - [anon_sym_or2] = ACTIONS(1468), - [anon_sym_not_DASHin2] = ACTIONS(1468), - [anon_sym_has2] = ACTIONS(1468), - [anon_sym_not_DASHhas2] = ACTIONS(1468), - [anon_sym_starts_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), - [anon_sym_ends_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), - [anon_sym_EQ_EQ2] = ACTIONS(1468), - [anon_sym_BANG_EQ2] = ACTIONS(1468), - [anon_sym_LT2] = ACTIONS(1466), - [anon_sym_LT_EQ2] = ACTIONS(1468), - [anon_sym_GT_EQ2] = ACTIONS(1468), - [anon_sym_EQ_TILDE2] = ACTIONS(1468), - [anon_sym_BANG_TILDE2] = ACTIONS(1468), - [anon_sym_like2] = ACTIONS(1468), - [anon_sym_not_DASHlike2] = ACTIONS(1468), - [anon_sym_STAR_STAR2] = ACTIONS(1468), - [anon_sym_PLUS_PLUS2] = ACTIONS(1466), - [anon_sym_SLASH2] = ACTIONS(1466), - [anon_sym_mod2] = ACTIONS(1468), - [anon_sym_SLASH_SLASH2] = ACTIONS(1468), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_bit_DASHshl2] = ACTIONS(1468), - [anon_sym_bit_DASHshr2] = ACTIONS(1468), - [anon_sym_bit_DASHand2] = ACTIONS(1468), - [anon_sym_bit_DASHxor2] = ACTIONS(1468), - [anon_sym_bit_DASHor2] = ACTIONS(1468), - [anon_sym_DOT_DOT2] = ACTIONS(1466), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), - [anon_sym_COLON2] = ACTIONS(1468), - [anon_sym_QMARK2] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1468), - [anon_sym_out_GT_GT] = ACTIONS(1468), - [anon_sym_e_GT_GT] = ACTIONS(1468), - [anon_sym_o_GT_GT] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(356)] = { - [aux_sym__repeat_newline] = STATE(4288), - [sym_expr_parenthesized] = STATE(3911), - [sym__spread_parenthesized] = STATE(4721), - [sym_val_range] = STATE(4776), - [sym__val_range] = STATE(4523), - [sym__value] = STATE(4776), - [sym_val_nothing] = STATE(4452), - [sym_val_bool] = STATE(4309), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4452), - [sym_val_number] = STATE(4452), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4130), - [sym_val_duration] = STATE(4452), - [sym_val_filesize] = STATE(4452), - [sym_val_binary] = STATE(4452), - [sym_val_string] = STATE(4452), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4452), - [sym__inter_single_quotes] = STATE(4504), - [sym__inter_double_quotes] = STATE(4369), - [sym_val_list] = STATE(4554), - [sym__spread_list] = STATE(4721), - [sym_list_body] = STATE(5044), - [sym_val_entry] = STATE(4375), - [sym_val_record] = STATE(4452), - [sym__table_head] = STATE(3665), - [sym_val_table] = STATE(4452), - [sym_val_closure] = STATE(4452), - [sym__unquoted_in_list] = STATE(4312), - [sym__unquoted_in_list_with_expr] = STATE(4776), - [sym__unquoted_anonymous_prefix] = STATE(4523), - [sym_comment] = STATE(356), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4329), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1533), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_RBRACK] = ACTIONS(1537), [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -75316,156 +75766,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(357)] = { - [sym_comment] = STATE(357), - [anon_sym_EQ] = ACTIONS(1535), - [anon_sym_PLUS_EQ] = ACTIONS(1535), - [anon_sym_DASH_EQ] = ACTIONS(1535), - [anon_sym_STAR_EQ] = ACTIONS(1535), - [anon_sym_SLASH_EQ] = ACTIONS(1535), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1535), - [anon_sym_in] = ACTIONS(1535), - [sym__newline] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_PIPE] = ACTIONS(1535), - [anon_sym_err_GT_PIPE] = ACTIONS(1535), - [anon_sym_out_GT_PIPE] = ACTIONS(1535), - [anon_sym_e_GT_PIPE] = ACTIONS(1535), - [anon_sym_o_GT_PIPE] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1535), - [anon_sym_RBRACK] = ACTIONS(1535), - [anon_sym_GT2] = ACTIONS(1535), - [anon_sym_DASH2] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_DOT_DOT] = ACTIONS(1535), - [anon_sym_STAR2] = ACTIONS(1535), - [anon_sym_and2] = ACTIONS(1535), - [anon_sym_xor2] = ACTIONS(1535), - [anon_sym_or2] = ACTIONS(1535), - [anon_sym_not_DASHin2] = ACTIONS(1535), - [anon_sym_has2] = ACTIONS(1535), - [anon_sym_not_DASHhas2] = ACTIONS(1535), - [anon_sym_starts_DASHwith2] = ACTIONS(1535), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1535), - [anon_sym_ends_DASHwith2] = ACTIONS(1535), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1535), - [anon_sym_EQ_EQ2] = ACTIONS(1535), - [anon_sym_BANG_EQ2] = ACTIONS(1535), - [anon_sym_LT2] = ACTIONS(1535), - [anon_sym_LT_EQ2] = ACTIONS(1535), - [anon_sym_GT_EQ2] = ACTIONS(1535), - [anon_sym_EQ_TILDE2] = ACTIONS(1535), - [anon_sym_BANG_TILDE2] = ACTIONS(1535), - [anon_sym_like2] = ACTIONS(1535), - [anon_sym_not_DASHlike2] = ACTIONS(1535), - [anon_sym_STAR_STAR2] = ACTIONS(1535), - [anon_sym_PLUS_PLUS2] = ACTIONS(1535), - [anon_sym_SLASH2] = ACTIONS(1535), - [anon_sym_mod2] = ACTIONS(1535), - [anon_sym_SLASH_SLASH2] = ACTIONS(1535), - [anon_sym_PLUS2] = ACTIONS(1535), - [anon_sym_bit_DASHshl2] = ACTIONS(1535), - [anon_sym_bit_DASHshr2] = ACTIONS(1535), - [anon_sym_bit_DASHand2] = ACTIONS(1535), - [anon_sym_bit_DASHxor2] = ACTIONS(1535), - [anon_sym_bit_DASHor2] = ACTIONS(1535), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [sym__entry_separator] = ACTIONS(1537), - [anon_sym_COLON2] = ACTIONS(1535), - [anon_sym_DOT2] = ACTIONS(1535), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1535), - [anon_sym_out_GT_GT] = ACTIONS(1535), - [anon_sym_e_GT_GT] = ACTIONS(1535), - [anon_sym_o_GT_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1535), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(358)] = { - [aux_sym__repeat_newline] = STATE(4288), - [sym_expr_parenthesized] = STATE(3911), - [sym__spread_parenthesized] = STATE(4721), - [sym_val_range] = STATE(4776), - [sym__val_range] = STATE(4523), - [sym__value] = STATE(4776), - [sym_val_nothing] = STATE(4452), - [sym_val_bool] = STATE(4309), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4452), - [sym_val_number] = STATE(4452), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4130), - [sym_val_duration] = STATE(4452), - [sym_val_filesize] = STATE(4452), - [sym_val_binary] = STATE(4452), - [sym_val_string] = STATE(4452), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4452), - [sym__inter_single_quotes] = STATE(4504), - [sym__inter_double_quotes] = STATE(4369), - [sym_val_list] = STATE(4554), - [sym__spread_list] = STATE(4721), - [sym_list_body] = STATE(5196), - [sym_val_entry] = STATE(4375), - [sym_val_record] = STATE(4452), - [sym__table_head] = STATE(3675), - [sym_val_table] = STATE(4452), - [sym_val_closure] = STATE(4452), - [sym__unquoted_in_list] = STATE(4312), - [sym__unquoted_in_list_with_expr] = STATE(4776), - [sym__unquoted_anonymous_prefix] = STATE(4523), - [sym_comment] = STATE(358), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4329), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), + [STATE(360)] = { + [aux_sym__repeat_newline] = STATE(4123), + [sym_expr_parenthesized] = STATE(4058), + [sym__spread_parenthesized] = STATE(4700), + [sym_val_range] = STATE(4730), + [sym__val_range] = STATE(4544), + [sym__value] = STATE(4730), + [sym_val_nothing] = STATE(4604), + [sym_val_bool] = STATE(4358), + [sym__spread_variable] = STATE(4795), + [sym_val_variable] = STATE(3879), + [sym_val_cellpath] = STATE(4604), + [sym_val_number] = STATE(4604), + [sym__val_number_decimal] = STATE(3485), + [sym__val_number] = STATE(4361), + [sym_val_duration] = STATE(4604), + [sym_val_filesize] = STATE(4604), + [sym_val_binary] = STATE(4604), + [sym_val_string] = STATE(4604), + [sym__raw_str] = STATE(3638), + [sym__str_double_quotes] = STATE(3638), + [sym__str_single_quotes] = STATE(3638), + [sym__str_back_ticks] = STATE(3638), + [sym_val_interpolated] = STATE(4604), + [sym__inter_single_quotes] = STATE(4595), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4558), + [sym__spread_list] = STATE(4700), + [sym_list_body] = STATE(5258), + [sym_val_entry] = STATE(4576), + [sym_val_record] = STATE(4604), + [sym__table_head] = STATE(3727), + [sym_val_table] = STATE(4604), + [sym_val_closure] = STATE(4604), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4730), + [sym__unquoted_anonymous_prefix] = STATE(4544), + [sym_comment] = STATE(360), + [aux_sym__types_body_repeat1] = STATE(458), + [aux_sym_parameter_repeat2] = STATE(4189), + [aux_sym_list_body_repeat1] = STATE(548), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), + [sym__newline] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), [anon_sym_RBRACK] = ACTIONS(1539), [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -75476,76 +75846,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(359)] = { - [aux_sym__repeat_newline] = STATE(4288), - [sym_expr_parenthesized] = STATE(3911), - [sym__spread_parenthesized] = STATE(4721), - [sym_val_range] = STATE(4776), - [sym__val_range] = STATE(4523), - [sym__value] = STATE(4776), - [sym_val_nothing] = STATE(4452), - [sym_val_bool] = STATE(4309), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4452), - [sym_val_number] = STATE(4452), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4130), - [sym_val_duration] = STATE(4452), - [sym_val_filesize] = STATE(4452), - [sym_val_binary] = STATE(4452), - [sym_val_string] = STATE(4452), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4452), - [sym__inter_single_quotes] = STATE(4504), - [sym__inter_double_quotes] = STATE(4369), - [sym_val_list] = STATE(4554), - [sym__spread_list] = STATE(4721), - [sym_list_body] = STATE(5034), - [sym_val_entry] = STATE(4375), - [sym_val_record] = STATE(4452), - [sym__table_head] = STATE(3702), - [sym_val_table] = STATE(4452), - [sym_val_closure] = STATE(4452), - [sym__unquoted_in_list] = STATE(4312), - [sym__unquoted_in_list_with_expr] = STATE(4776), - [sym__unquoted_anonymous_prefix] = STATE(4523), - [sym_comment] = STATE(359), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4329), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), + [STATE(361)] = { + [aux_sym__repeat_newline] = STATE(4123), + [sym_expr_parenthesized] = STATE(4058), + [sym__spread_parenthesized] = STATE(4700), + [sym_val_range] = STATE(4730), + [sym__val_range] = STATE(4544), + [sym__value] = STATE(4730), + [sym_val_nothing] = STATE(4604), + [sym_val_bool] = STATE(4358), + [sym__spread_variable] = STATE(4795), + [sym_val_variable] = STATE(3879), + [sym_val_cellpath] = STATE(4604), + [sym_val_number] = STATE(4604), + [sym__val_number_decimal] = STATE(3485), + [sym__val_number] = STATE(4361), + [sym_val_duration] = STATE(4604), + [sym_val_filesize] = STATE(4604), + [sym_val_binary] = STATE(4604), + [sym_val_string] = STATE(4604), + [sym__raw_str] = STATE(3638), + [sym__str_double_quotes] = STATE(3638), + [sym__str_single_quotes] = STATE(3638), + [sym__str_back_ticks] = STATE(3638), + [sym_val_interpolated] = STATE(4604), + [sym__inter_single_quotes] = STATE(4595), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4558), + [sym__spread_list] = STATE(4700), + [sym_list_body] = STATE(4851), + [sym_val_entry] = STATE(4576), + [sym_val_record] = STATE(4604), + [sym__table_head] = STATE(3729), + [sym_val_table] = STATE(4604), + [sym_val_closure] = STATE(4604), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4730), + [sym__unquoted_anonymous_prefix] = STATE(4544), + [sym_comment] = STATE(361), + [aux_sym__types_body_repeat1] = STATE(458), + [aux_sym_parameter_repeat2] = STATE(4189), + [aux_sym_list_body_repeat1] = STATE(548), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), + [sym__newline] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), [anon_sym_RBRACK] = ACTIONS(1541), [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -75556,236 +75926,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(360)] = { - [sym_comment] = STATE(360), - [anon_sym_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1543), - [anon_sym_in] = ACTIONS(1543), - [sym__newline] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_PIPE] = ACTIONS(1543), - [anon_sym_err_GT_PIPE] = ACTIONS(1543), - [anon_sym_out_GT_PIPE] = ACTIONS(1543), - [anon_sym_e_GT_PIPE] = ACTIONS(1543), - [anon_sym_o_GT_PIPE] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1543), - [anon_sym_GT2] = ACTIONS(1543), - [anon_sym_DASH2] = ACTIONS(1543), - [anon_sym_RBRACE] = ACTIONS(1543), - [anon_sym_STAR2] = ACTIONS(1543), - [anon_sym_and2] = ACTIONS(1543), - [anon_sym_xor2] = ACTIONS(1543), - [anon_sym_or2] = ACTIONS(1543), - [anon_sym_not_DASHin2] = ACTIONS(1543), - [anon_sym_has2] = ACTIONS(1543), - [anon_sym_not_DASHhas2] = ACTIONS(1543), - [anon_sym_starts_DASHwith2] = ACTIONS(1543), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1543), - [anon_sym_ends_DASHwith2] = ACTIONS(1543), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1543), - [anon_sym_EQ_EQ2] = ACTIONS(1543), - [anon_sym_BANG_EQ2] = ACTIONS(1543), - [anon_sym_LT2] = ACTIONS(1543), - [anon_sym_LT_EQ2] = ACTIONS(1543), - [anon_sym_GT_EQ2] = ACTIONS(1543), - [anon_sym_EQ_TILDE2] = ACTIONS(1543), - [anon_sym_BANG_TILDE2] = ACTIONS(1543), - [anon_sym_like2] = ACTIONS(1543), - [anon_sym_not_DASHlike2] = ACTIONS(1543), - [anon_sym_STAR_STAR2] = ACTIONS(1543), - [anon_sym_PLUS_PLUS2] = ACTIONS(1543), - [anon_sym_SLASH2] = ACTIONS(1543), - [anon_sym_mod2] = ACTIONS(1543), - [anon_sym_SLASH_SLASH2] = ACTIONS(1543), - [anon_sym_PLUS2] = ACTIONS(1543), - [anon_sym_bit_DASHshl2] = ACTIONS(1543), - [anon_sym_bit_DASHshr2] = ACTIONS(1543), - [anon_sym_bit_DASHand2] = ACTIONS(1543), - [anon_sym_bit_DASHxor2] = ACTIONS(1543), - [anon_sym_bit_DASHor2] = ACTIONS(1543), - [anon_sym_DOT_DOT2] = ACTIONS(1543), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1545), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1545), - [sym__entry_separator] = ACTIONS(1545), - [anon_sym_COLON2] = ACTIONS(1543), - [anon_sym_QMARK2] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_DOT2] = ACTIONS(1543), - [anon_sym_err_GT] = ACTIONS(1543), - [anon_sym_out_GT] = ACTIONS(1543), - [anon_sym_e_GT] = ACTIONS(1543), - [anon_sym_o_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT] = ACTIONS(1543), - [anon_sym_err_GT_GT] = ACTIONS(1543), - [anon_sym_out_GT_GT] = ACTIONS(1543), - [anon_sym_e_GT_GT] = ACTIONS(1543), - [anon_sym_o_GT_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1543), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(361)] = { - [sym_comment] = STATE(361), - [anon_sym_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1545), - [anon_sym_DASH_EQ] = ACTIONS(1545), - [anon_sym_STAR_EQ] = ACTIONS(1545), - [anon_sym_SLASH_EQ] = ACTIONS(1545), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1545), - [anon_sym_in] = ACTIONS(1545), - [sym__newline] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_err_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_GT_PIPE] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1545), - [anon_sym_RPAREN] = ACTIONS(1545), - [anon_sym_GT2] = ACTIONS(1543), - [anon_sym_DASH2] = ACTIONS(1543), - [anon_sym_RBRACE] = ACTIONS(1545), - [anon_sym_STAR2] = ACTIONS(1543), - [anon_sym_and2] = ACTIONS(1545), - [anon_sym_xor2] = ACTIONS(1545), - [anon_sym_or2] = ACTIONS(1545), - [anon_sym_not_DASHin2] = ACTIONS(1545), - [anon_sym_has2] = ACTIONS(1545), - [anon_sym_not_DASHhas2] = ACTIONS(1545), - [anon_sym_starts_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1545), - [anon_sym_ends_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1545), - [anon_sym_EQ_EQ2] = ACTIONS(1545), - [anon_sym_BANG_EQ2] = ACTIONS(1545), - [anon_sym_LT2] = ACTIONS(1543), - [anon_sym_LT_EQ2] = ACTIONS(1545), - [anon_sym_GT_EQ2] = ACTIONS(1545), - [anon_sym_EQ_TILDE2] = ACTIONS(1545), - [anon_sym_BANG_TILDE2] = ACTIONS(1545), - [anon_sym_like2] = ACTIONS(1545), - [anon_sym_not_DASHlike2] = ACTIONS(1545), - [anon_sym_STAR_STAR2] = ACTIONS(1545), - [anon_sym_PLUS_PLUS2] = ACTIONS(1543), - [anon_sym_SLASH2] = ACTIONS(1543), - [anon_sym_mod2] = ACTIONS(1545), - [anon_sym_SLASH_SLASH2] = ACTIONS(1545), - [anon_sym_PLUS2] = ACTIONS(1543), - [anon_sym_bit_DASHshl2] = ACTIONS(1545), - [anon_sym_bit_DASHshr2] = ACTIONS(1545), - [anon_sym_bit_DASHand2] = ACTIONS(1545), - [anon_sym_bit_DASHxor2] = ACTIONS(1545), - [anon_sym_bit_DASHor2] = ACTIONS(1545), - [anon_sym_DOT_DOT2] = ACTIONS(1543), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1545), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1545), - [anon_sym_COLON2] = ACTIONS(1545), - [anon_sym_QMARK2] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_DOT2] = ACTIONS(1543), - [anon_sym_err_GT] = ACTIONS(1543), - [anon_sym_out_GT] = ACTIONS(1543), - [anon_sym_e_GT] = ACTIONS(1543), - [anon_sym_o_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT] = ACTIONS(1543), - [anon_sym_err_GT_GT] = ACTIONS(1545), - [anon_sym_out_GT_GT] = ACTIONS(1545), - [anon_sym_e_GT_GT] = ACTIONS(1545), - [anon_sym_o_GT_GT] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1545), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(362)] = { - [aux_sym__repeat_newline] = STATE(4288), - [sym_expr_parenthesized] = STATE(3911), - [sym__spread_parenthesized] = STATE(4721), - [sym_val_range] = STATE(4776), - [sym__val_range] = STATE(4523), - [sym__value] = STATE(4776), - [sym_val_nothing] = STATE(4452), - [sym_val_bool] = STATE(4309), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4452), - [sym_val_number] = STATE(4452), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4130), - [sym_val_duration] = STATE(4452), - [sym_val_filesize] = STATE(4452), - [sym_val_binary] = STATE(4452), - [sym_val_string] = STATE(4452), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4452), - [sym__inter_single_quotes] = STATE(4504), - [sym__inter_double_quotes] = STATE(4369), - [sym_val_list] = STATE(4554), - [sym__spread_list] = STATE(4721), - [sym_list_body] = STATE(5059), - [sym_val_entry] = STATE(4375), - [sym_val_record] = STATE(4452), - [sym__table_head] = STATE(3670), - [sym_val_table] = STATE(4452), - [sym_val_closure] = STATE(4452), - [sym__unquoted_in_list] = STATE(4312), - [sym__unquoted_in_list_with_expr] = STATE(4776), - [sym__unquoted_anonymous_prefix] = STATE(4523), + [aux_sym__repeat_newline] = STATE(4123), + [sym_expr_parenthesized] = STATE(4058), + [sym__spread_parenthesized] = STATE(4700), + [sym_val_range] = STATE(4730), + [sym__val_range] = STATE(4544), + [sym__value] = STATE(4730), + [sym_val_nothing] = STATE(4604), + [sym_val_bool] = STATE(4358), + [sym__spread_variable] = STATE(4795), + [sym_val_variable] = STATE(3879), + [sym_val_cellpath] = STATE(4604), + [sym_val_number] = STATE(4604), + [sym__val_number_decimal] = STATE(3485), + [sym__val_number] = STATE(4361), + [sym_val_duration] = STATE(4604), + [sym_val_filesize] = STATE(4604), + [sym_val_binary] = STATE(4604), + [sym_val_string] = STATE(4604), + [sym__raw_str] = STATE(3638), + [sym__str_double_quotes] = STATE(3638), + [sym__str_single_quotes] = STATE(3638), + [sym__str_back_ticks] = STATE(3638), + [sym_val_interpolated] = STATE(4604), + [sym__inter_single_quotes] = STATE(4595), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4558), + [sym__spread_list] = STATE(4700), + [sym_list_body] = STATE(5095), + [sym_val_entry] = STATE(4576), + [sym_val_record] = STATE(4604), + [sym__table_head] = STATE(3767), + [sym_val_table] = STATE(4604), + [sym_val_closure] = STATE(4604), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4730), + [sym__unquoted_anonymous_prefix] = STATE(4544), [sym_comment] = STATE(362), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4329), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1547), + [aux_sym__types_body_repeat1] = STATE(458), + [aux_sym_parameter_repeat2] = STATE(4189), + [aux_sym_list_body_repeat1] = STATE(548), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), + [sym__newline] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_RBRACK] = ACTIONS(1543), [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -75797,315 +76007,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1426), }, [STATE(363)] = { - [sym_path] = STATE(339), + [aux_sym__repeat_newline] = STATE(4123), + [sym_expr_parenthesized] = STATE(4058), + [sym__spread_parenthesized] = STATE(4700), + [sym_val_range] = STATE(4730), + [sym__val_range] = STATE(4544), + [sym__value] = STATE(4730), + [sym_val_nothing] = STATE(4604), + [sym_val_bool] = STATE(4358), + [sym__spread_variable] = STATE(4795), + [sym_val_variable] = STATE(3879), + [sym_val_cellpath] = STATE(4604), + [sym_val_number] = STATE(4604), + [sym__val_number_decimal] = STATE(3485), + [sym__val_number] = STATE(4361), + [sym_val_duration] = STATE(4604), + [sym_val_filesize] = STATE(4604), + [sym_val_binary] = STATE(4604), + [sym_val_string] = STATE(4604), + [sym__raw_str] = STATE(3638), + [sym__str_double_quotes] = STATE(3638), + [sym__str_single_quotes] = STATE(3638), + [sym__str_back_ticks] = STATE(3638), + [sym_val_interpolated] = STATE(4604), + [sym__inter_single_quotes] = STATE(4595), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4558), + [sym__spread_list] = STATE(4700), + [sym_list_body] = STATE(5065), + [sym_val_entry] = STATE(4576), + [sym_val_record] = STATE(4604), + [sym__table_head] = STATE(3734), + [sym_val_table] = STATE(4604), + [sym_val_closure] = STATE(4604), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4730), + [sym__unquoted_anonymous_prefix] = STATE(4544), [sym_comment] = STATE(363), - [aux_sym__where_predicate_lhs_repeat1] = STATE(364), - [anon_sym_EQ] = ACTIONS(1458), - [anon_sym_PLUS_EQ] = ACTIONS(1458), - [anon_sym_DASH_EQ] = ACTIONS(1458), - [anon_sym_STAR_EQ] = ACTIONS(1458), - [anon_sym_SLASH_EQ] = ACTIONS(1458), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1458), - [anon_sym_in] = ACTIONS(1458), - [sym__newline] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_err_GT_PIPE] = ACTIONS(1458), - [anon_sym_out_GT_PIPE] = ACTIONS(1458), - [anon_sym_e_GT_PIPE] = ACTIONS(1458), - [anon_sym_o_GT_PIPE] = ACTIONS(1458), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1458), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1458), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1458), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1458), - [anon_sym_GT2] = ACTIONS(1458), - [anon_sym_DASH2] = ACTIONS(1458), - [anon_sym_RBRACE] = ACTIONS(1458), - [anon_sym_STAR2] = ACTIONS(1458), - [anon_sym_and2] = ACTIONS(1458), - [anon_sym_xor2] = ACTIONS(1458), - [anon_sym_or2] = ACTIONS(1458), - [anon_sym_not_DASHin2] = ACTIONS(1458), - [anon_sym_has2] = ACTIONS(1458), - [anon_sym_not_DASHhas2] = ACTIONS(1458), - [anon_sym_starts_DASHwith2] = ACTIONS(1458), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1458), - [anon_sym_ends_DASHwith2] = ACTIONS(1458), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1458), - [anon_sym_EQ_EQ2] = ACTIONS(1458), - [anon_sym_BANG_EQ2] = ACTIONS(1458), - [anon_sym_LT2] = ACTIONS(1458), - [anon_sym_LT_EQ2] = ACTIONS(1458), - [anon_sym_GT_EQ2] = ACTIONS(1458), - [anon_sym_EQ_TILDE2] = ACTIONS(1458), - [anon_sym_BANG_TILDE2] = ACTIONS(1458), - [anon_sym_like2] = ACTIONS(1458), - [anon_sym_not_DASHlike2] = ACTIONS(1458), - [anon_sym_STAR_STAR2] = ACTIONS(1458), - [anon_sym_PLUS_PLUS2] = ACTIONS(1458), - [anon_sym_SLASH2] = ACTIONS(1458), - [anon_sym_mod2] = ACTIONS(1458), - [anon_sym_SLASH_SLASH2] = ACTIONS(1458), - [anon_sym_PLUS2] = ACTIONS(1458), - [anon_sym_bit_DASHshl2] = ACTIONS(1458), - [anon_sym_bit_DASHshr2] = ACTIONS(1458), - [anon_sym_bit_DASHand2] = ACTIONS(1458), - [anon_sym_bit_DASHxor2] = ACTIONS(1458), - [anon_sym_bit_DASHor2] = ACTIONS(1458), - [anon_sym_DOT_DOT2] = ACTIONS(1458), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1460), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1460), - [sym__entry_separator] = ACTIONS(1460), - [anon_sym_COLON2] = ACTIONS(1458), - [anon_sym_DOT2] = ACTIONS(1436), - [anon_sym_err_GT] = ACTIONS(1458), - [anon_sym_out_GT] = ACTIONS(1458), - [anon_sym_e_GT] = ACTIONS(1458), - [anon_sym_o_GT] = ACTIONS(1458), - [anon_sym_err_PLUSout_GT] = ACTIONS(1458), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1458), - [anon_sym_o_PLUSe_GT] = ACTIONS(1458), - [anon_sym_e_PLUSo_GT] = ACTIONS(1458), - [anon_sym_err_GT_GT] = ACTIONS(1458), - [anon_sym_out_GT_GT] = ACTIONS(1458), - [anon_sym_e_GT_GT] = ACTIONS(1458), - [anon_sym_o_GT_GT] = ACTIONS(1458), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1458), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1458), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1458), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1458), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(364)] = { - [sym_path] = STATE(339), - [sym_comment] = STATE(364), - [aux_sym__where_predicate_lhs_repeat1] = STATE(364), - [anon_sym_EQ] = ACTIONS(1524), - [anon_sym_PLUS_EQ] = ACTIONS(1524), - [anon_sym_DASH_EQ] = ACTIONS(1524), - [anon_sym_STAR_EQ] = ACTIONS(1524), - [anon_sym_SLASH_EQ] = ACTIONS(1524), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1524), - [anon_sym_in] = ACTIONS(1524), - [sym__newline] = ACTIONS(1524), - [anon_sym_SEMI] = ACTIONS(1524), - [anon_sym_PIPE] = ACTIONS(1524), - [anon_sym_err_GT_PIPE] = ACTIONS(1524), - [anon_sym_out_GT_PIPE] = ACTIONS(1524), - [anon_sym_e_GT_PIPE] = ACTIONS(1524), - [anon_sym_o_GT_PIPE] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1524), - [anon_sym_GT2] = ACTIONS(1524), - [anon_sym_DASH2] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1524), - [anon_sym_STAR2] = ACTIONS(1524), - [anon_sym_and2] = ACTIONS(1524), - [anon_sym_xor2] = ACTIONS(1524), - [anon_sym_or2] = ACTIONS(1524), - [anon_sym_not_DASHin2] = ACTIONS(1524), - [anon_sym_has2] = ACTIONS(1524), - [anon_sym_not_DASHhas2] = ACTIONS(1524), - [anon_sym_starts_DASHwith2] = ACTIONS(1524), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1524), - [anon_sym_ends_DASHwith2] = ACTIONS(1524), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1524), - [anon_sym_EQ_EQ2] = ACTIONS(1524), - [anon_sym_BANG_EQ2] = ACTIONS(1524), - [anon_sym_LT2] = ACTIONS(1524), - [anon_sym_LT_EQ2] = ACTIONS(1524), - [anon_sym_GT_EQ2] = ACTIONS(1524), - [anon_sym_EQ_TILDE2] = ACTIONS(1524), - [anon_sym_BANG_TILDE2] = ACTIONS(1524), - [anon_sym_like2] = ACTIONS(1524), - [anon_sym_not_DASHlike2] = ACTIONS(1524), - [anon_sym_STAR_STAR2] = ACTIONS(1524), - [anon_sym_PLUS_PLUS2] = ACTIONS(1524), - [anon_sym_SLASH2] = ACTIONS(1524), - [anon_sym_mod2] = ACTIONS(1524), - [anon_sym_SLASH_SLASH2] = ACTIONS(1524), - [anon_sym_PLUS2] = ACTIONS(1524), - [anon_sym_bit_DASHshl2] = ACTIONS(1524), - [anon_sym_bit_DASHshr2] = ACTIONS(1524), - [anon_sym_bit_DASHand2] = ACTIONS(1524), - [anon_sym_bit_DASHxor2] = ACTIONS(1524), - [anon_sym_bit_DASHor2] = ACTIONS(1524), - [anon_sym_DOT_DOT2] = ACTIONS(1524), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1526), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1526), - [sym__entry_separator] = ACTIONS(1526), - [anon_sym_COLON2] = ACTIONS(1524), - [anon_sym_DOT2] = ACTIONS(1549), - [anon_sym_err_GT] = ACTIONS(1524), - [anon_sym_out_GT] = ACTIONS(1524), - [anon_sym_e_GT] = ACTIONS(1524), - [anon_sym_o_GT] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT] = ACTIONS(1524), - [anon_sym_err_GT_GT] = ACTIONS(1524), - [anon_sym_out_GT_GT] = ACTIONS(1524), - [anon_sym_e_GT_GT] = ACTIONS(1524), - [anon_sym_o_GT_GT] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1524), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(365)] = { - [sym_comment] = STATE(365), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_PLUS_EQ] = ACTIONS(1478), - [anon_sym_DASH_EQ] = ACTIONS(1478), - [anon_sym_STAR_EQ] = ACTIONS(1478), - [anon_sym_SLASH_EQ] = ACTIONS(1478), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1478), - [anon_sym_in] = ACTIONS(1478), - [sym__newline] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_err_GT_PIPE] = ACTIONS(1478), - [anon_sym_out_GT_PIPE] = ACTIONS(1478), - [anon_sym_e_GT_PIPE] = ACTIONS(1478), - [anon_sym_o_GT_PIPE] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1478), - [anon_sym_GT2] = ACTIONS(1478), - [anon_sym_DASH2] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1478), - [anon_sym_STAR2] = ACTIONS(1478), - [anon_sym_and2] = ACTIONS(1478), - [anon_sym_xor2] = ACTIONS(1478), - [anon_sym_or2] = ACTIONS(1478), - [anon_sym_not_DASHin2] = ACTIONS(1478), - [anon_sym_has2] = ACTIONS(1478), - [anon_sym_not_DASHhas2] = ACTIONS(1478), - [anon_sym_starts_DASHwith2] = ACTIONS(1478), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1478), - [anon_sym_ends_DASHwith2] = ACTIONS(1478), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1478), - [anon_sym_EQ_EQ2] = ACTIONS(1478), - [anon_sym_BANG_EQ2] = ACTIONS(1478), - [anon_sym_LT2] = ACTIONS(1478), - [anon_sym_LT_EQ2] = ACTIONS(1478), - [anon_sym_GT_EQ2] = ACTIONS(1478), - [anon_sym_EQ_TILDE2] = ACTIONS(1478), - [anon_sym_BANG_TILDE2] = ACTIONS(1478), - [anon_sym_like2] = ACTIONS(1478), - [anon_sym_not_DASHlike2] = ACTIONS(1478), - [anon_sym_STAR_STAR2] = ACTIONS(1478), - [anon_sym_PLUS_PLUS2] = ACTIONS(1478), - [anon_sym_SLASH2] = ACTIONS(1478), - [anon_sym_mod2] = ACTIONS(1478), - [anon_sym_SLASH_SLASH2] = ACTIONS(1478), - [anon_sym_PLUS2] = ACTIONS(1478), - [anon_sym_bit_DASHshl2] = ACTIONS(1478), - [anon_sym_bit_DASHshr2] = ACTIONS(1478), - [anon_sym_bit_DASHand2] = ACTIONS(1478), - [anon_sym_bit_DASHxor2] = ACTIONS(1478), - [anon_sym_bit_DASHor2] = ACTIONS(1478), - [anon_sym_DOT_DOT2] = ACTIONS(1478), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1480), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1480), - [sym__entry_separator] = ACTIONS(1480), - [anon_sym_COLON2] = ACTIONS(1478), - [anon_sym_QMARK2] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_DOT2] = ACTIONS(1478), - [anon_sym_err_GT] = ACTIONS(1478), - [anon_sym_out_GT] = ACTIONS(1478), - [anon_sym_e_GT] = ACTIONS(1478), - [anon_sym_o_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT] = ACTIONS(1478), - [anon_sym_err_GT_GT] = ACTIONS(1478), - [anon_sym_out_GT_GT] = ACTIONS(1478), - [anon_sym_e_GT_GT] = ACTIONS(1478), - [anon_sym_o_GT_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1478), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(366)] = { - [aux_sym__repeat_newline] = STATE(4288), - [sym_expr_parenthesized] = STATE(3911), - [sym__spread_parenthesized] = STATE(4721), - [sym_val_range] = STATE(4776), - [sym__val_range] = STATE(4523), - [sym__value] = STATE(4776), - [sym_val_nothing] = STATE(4452), - [sym_val_bool] = STATE(4309), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4452), - [sym_val_number] = STATE(4452), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4130), - [sym_val_duration] = STATE(4452), - [sym_val_filesize] = STATE(4452), - [sym_val_binary] = STATE(4452), - [sym_val_string] = STATE(4452), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4452), - [sym__inter_single_quotes] = STATE(4504), - [sym__inter_double_quotes] = STATE(4369), - [sym_val_list] = STATE(4554), - [sym__spread_list] = STATE(4721), - [sym_list_body] = STATE(4936), - [sym_val_entry] = STATE(4375), - [sym_val_record] = STATE(4452), - [sym__table_head] = STATE(3650), - [sym_val_table] = STATE(4452), - [sym_val_closure] = STATE(4452), - [sym__unquoted_in_list] = STATE(4312), - [sym__unquoted_in_list_with_expr] = STATE(4776), - [sym__unquoted_anonymous_prefix] = STATE(4523), - [sym_comment] = STATE(366), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4329), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1552), + [aux_sym__types_body_repeat1] = STATE(458), + [aux_sym_parameter_repeat2] = STATE(4189), + [aux_sym_list_body_repeat1] = STATE(548), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), + [sym__newline] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_RBRACK] = ACTIONS(1545), [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -76116,76 +76086,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(367)] = { - [aux_sym__repeat_newline] = STATE(4288), - [sym_expr_parenthesized] = STATE(3911), - [sym__spread_parenthesized] = STATE(4721), - [sym_val_range] = STATE(4776), - [sym__val_range] = STATE(4523), - [sym__value] = STATE(4776), - [sym_val_nothing] = STATE(4452), - [sym_val_bool] = STATE(4309), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4452), - [sym_val_number] = STATE(4452), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4130), - [sym_val_duration] = STATE(4452), - [sym_val_filesize] = STATE(4452), - [sym_val_binary] = STATE(4452), - [sym_val_string] = STATE(4452), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4452), - [sym__inter_single_quotes] = STATE(4504), - [sym__inter_double_quotes] = STATE(4369), - [sym_val_list] = STATE(4554), - [sym__spread_list] = STATE(4721), - [sym_list_body] = STATE(4869), - [sym_val_entry] = STATE(4375), - [sym_val_record] = STATE(4452), - [sym__table_head] = STATE(3728), - [sym_val_table] = STATE(4452), - [sym_val_closure] = STATE(4452), - [sym__unquoted_in_list] = STATE(4312), - [sym__unquoted_in_list_with_expr] = STATE(4776), - [sym__unquoted_anonymous_prefix] = STATE(4523), - [sym_comment] = STATE(367), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4329), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1554), + [STATE(364)] = { + [aux_sym__repeat_newline] = STATE(4123), + [sym_expr_parenthesized] = STATE(4058), + [sym__spread_parenthesized] = STATE(4700), + [sym_val_range] = STATE(4730), + [sym__val_range] = STATE(4544), + [sym__value] = STATE(4730), + [sym_val_nothing] = STATE(4604), + [sym_val_bool] = STATE(4358), + [sym__spread_variable] = STATE(4795), + [sym_val_variable] = STATE(3879), + [sym_val_cellpath] = STATE(4604), + [sym_val_number] = STATE(4604), + [sym__val_number_decimal] = STATE(3485), + [sym__val_number] = STATE(4361), + [sym_val_duration] = STATE(4604), + [sym_val_filesize] = STATE(4604), + [sym_val_binary] = STATE(4604), + [sym_val_string] = STATE(4604), + [sym__raw_str] = STATE(3638), + [sym__str_double_quotes] = STATE(3638), + [sym__str_single_quotes] = STATE(3638), + [sym__str_back_ticks] = STATE(3638), + [sym_val_interpolated] = STATE(4604), + [sym__inter_single_quotes] = STATE(4595), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4558), + [sym__spread_list] = STATE(4700), + [sym_list_body] = STATE(5110), + [sym_val_entry] = STATE(4576), + [sym_val_record] = STATE(4604), + [sym__table_head] = STATE(3769), + [sym_val_table] = STATE(4604), + [sym_val_closure] = STATE(4604), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4730), + [sym__unquoted_anonymous_prefix] = STATE(4544), + [sym_comment] = STATE(364), + [aux_sym__types_body_repeat1] = STATE(458), + [aux_sym_parameter_repeat2] = STATE(4189), + [aux_sym_list_body_repeat1] = STATE(548), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), + [sym__newline] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_RBRACK] = ACTIONS(1547), [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -76196,169 +76166,409 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, + [STATE(365)] = { + [sym_path] = STATE(367), + [sym_comment] = STATE(365), + [aux_sym__where_predicate_lhs_repeat1] = STATE(366), + [anon_sym_EQ] = ACTIONS(1490), + [anon_sym_PLUS_EQ] = ACTIONS(1490), + [anon_sym_DASH_EQ] = ACTIONS(1490), + [anon_sym_STAR_EQ] = ACTIONS(1490), + [anon_sym_SLASH_EQ] = ACTIONS(1490), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1490), + [anon_sym_in] = ACTIONS(1490), + [sym__newline] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1490), + [anon_sym_err_GT_PIPE] = ACTIONS(1490), + [anon_sym_out_GT_PIPE] = ACTIONS(1490), + [anon_sym_e_GT_PIPE] = ACTIONS(1490), + [anon_sym_o_GT_PIPE] = ACTIONS(1490), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1490), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1490), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1490), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1490), + [anon_sym_GT2] = ACTIONS(1490), + [anon_sym_DASH2] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1490), + [anon_sym_STAR2] = ACTIONS(1490), + [anon_sym_and2] = ACTIONS(1490), + [anon_sym_xor2] = ACTIONS(1490), + [anon_sym_or2] = ACTIONS(1490), + [anon_sym_not_DASHin2] = ACTIONS(1490), + [anon_sym_has2] = ACTIONS(1490), + [anon_sym_not_DASHhas2] = ACTIONS(1490), + [anon_sym_starts_DASHwith2] = ACTIONS(1490), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1490), + [anon_sym_ends_DASHwith2] = ACTIONS(1490), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1490), + [anon_sym_EQ_EQ2] = ACTIONS(1490), + [anon_sym_BANG_EQ2] = ACTIONS(1490), + [anon_sym_LT2] = ACTIONS(1490), + [anon_sym_LT_EQ2] = ACTIONS(1490), + [anon_sym_GT_EQ2] = ACTIONS(1490), + [anon_sym_EQ_TILDE2] = ACTIONS(1490), + [anon_sym_BANG_TILDE2] = ACTIONS(1490), + [anon_sym_like2] = ACTIONS(1490), + [anon_sym_not_DASHlike2] = ACTIONS(1490), + [anon_sym_STAR_STAR2] = ACTIONS(1490), + [anon_sym_PLUS_PLUS2] = ACTIONS(1490), + [anon_sym_SLASH2] = ACTIONS(1490), + [anon_sym_mod2] = ACTIONS(1490), + [anon_sym_SLASH_SLASH2] = ACTIONS(1490), + [anon_sym_PLUS2] = ACTIONS(1490), + [anon_sym_bit_DASHshl2] = ACTIONS(1490), + [anon_sym_bit_DASHshr2] = ACTIONS(1490), + [anon_sym_bit_DASHand2] = ACTIONS(1490), + [anon_sym_bit_DASHxor2] = ACTIONS(1490), + [anon_sym_bit_DASHor2] = ACTIONS(1490), + [anon_sym_DOT_DOT2] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1492), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1492), + [sym__entry_separator] = ACTIONS(1492), + [anon_sym_COLON2] = ACTIONS(1490), + [anon_sym_DOT2] = ACTIONS(1456), + [anon_sym_err_GT] = ACTIONS(1490), + [anon_sym_out_GT] = ACTIONS(1490), + [anon_sym_e_GT] = ACTIONS(1490), + [anon_sym_o_GT] = ACTIONS(1490), + [anon_sym_err_PLUSout_GT] = ACTIONS(1490), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1490), + [anon_sym_o_PLUSe_GT] = ACTIONS(1490), + [anon_sym_e_PLUSo_GT] = ACTIONS(1490), + [anon_sym_err_GT_GT] = ACTIONS(1490), + [anon_sym_out_GT_GT] = ACTIONS(1490), + [anon_sym_e_GT_GT] = ACTIONS(1490), + [anon_sym_o_GT_GT] = ACTIONS(1490), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1490), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1490), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1490), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1490), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(366)] = { + [sym_path] = STATE(367), + [sym_comment] = STATE(366), + [aux_sym__where_predicate_lhs_repeat1] = STATE(366), + [anon_sym_EQ] = ACTIONS(1494), + [anon_sym_PLUS_EQ] = ACTIONS(1494), + [anon_sym_DASH_EQ] = ACTIONS(1494), + [anon_sym_STAR_EQ] = ACTIONS(1494), + [anon_sym_SLASH_EQ] = ACTIONS(1494), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1494), + [anon_sym_in] = ACTIONS(1494), + [sym__newline] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_err_GT_PIPE] = ACTIONS(1494), + [anon_sym_out_GT_PIPE] = ACTIONS(1494), + [anon_sym_e_GT_PIPE] = ACTIONS(1494), + [anon_sym_o_GT_PIPE] = ACTIONS(1494), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1494), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1494), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1494), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1494), + [anon_sym_GT2] = ACTIONS(1494), + [anon_sym_DASH2] = ACTIONS(1494), + [anon_sym_RBRACE] = ACTIONS(1494), + [anon_sym_STAR2] = ACTIONS(1494), + [anon_sym_and2] = ACTIONS(1494), + [anon_sym_xor2] = ACTIONS(1494), + [anon_sym_or2] = ACTIONS(1494), + [anon_sym_not_DASHin2] = ACTIONS(1494), + [anon_sym_has2] = ACTIONS(1494), + [anon_sym_not_DASHhas2] = ACTIONS(1494), + [anon_sym_starts_DASHwith2] = ACTIONS(1494), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1494), + [anon_sym_ends_DASHwith2] = ACTIONS(1494), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1494), + [anon_sym_EQ_EQ2] = ACTIONS(1494), + [anon_sym_BANG_EQ2] = ACTIONS(1494), + [anon_sym_LT2] = ACTIONS(1494), + [anon_sym_LT_EQ2] = ACTIONS(1494), + [anon_sym_GT_EQ2] = ACTIONS(1494), + [anon_sym_EQ_TILDE2] = ACTIONS(1494), + [anon_sym_BANG_TILDE2] = ACTIONS(1494), + [anon_sym_like2] = ACTIONS(1494), + [anon_sym_not_DASHlike2] = ACTIONS(1494), + [anon_sym_STAR_STAR2] = ACTIONS(1494), + [anon_sym_PLUS_PLUS2] = ACTIONS(1494), + [anon_sym_SLASH2] = ACTIONS(1494), + [anon_sym_mod2] = ACTIONS(1494), + [anon_sym_SLASH_SLASH2] = ACTIONS(1494), + [anon_sym_PLUS2] = ACTIONS(1494), + [anon_sym_bit_DASHshl2] = ACTIONS(1494), + [anon_sym_bit_DASHshr2] = ACTIONS(1494), + [anon_sym_bit_DASHand2] = ACTIONS(1494), + [anon_sym_bit_DASHxor2] = ACTIONS(1494), + [anon_sym_bit_DASHor2] = ACTIONS(1494), + [anon_sym_DOT_DOT2] = ACTIONS(1494), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1496), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1496), + [sym__entry_separator] = ACTIONS(1496), + [anon_sym_COLON2] = ACTIONS(1494), + [anon_sym_DOT2] = ACTIONS(1549), + [anon_sym_err_GT] = ACTIONS(1494), + [anon_sym_out_GT] = ACTIONS(1494), + [anon_sym_e_GT] = ACTIONS(1494), + [anon_sym_o_GT] = ACTIONS(1494), + [anon_sym_err_PLUSout_GT] = ACTIONS(1494), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1494), + [anon_sym_o_PLUSe_GT] = ACTIONS(1494), + [anon_sym_e_PLUSo_GT] = ACTIONS(1494), + [anon_sym_err_GT_GT] = ACTIONS(1494), + [anon_sym_out_GT_GT] = ACTIONS(1494), + [anon_sym_e_GT_GT] = ACTIONS(1494), + [anon_sym_o_GT_GT] = ACTIONS(1494), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1494), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1494), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1494), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1494), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(367)] = { + [sym_comment] = STATE(367), + [anon_sym_EQ] = ACTIONS(1552), + [anon_sym_PLUS_EQ] = ACTIONS(1552), + [anon_sym_DASH_EQ] = ACTIONS(1552), + [anon_sym_STAR_EQ] = ACTIONS(1552), + [anon_sym_SLASH_EQ] = ACTIONS(1552), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1552), + [anon_sym_in] = ACTIONS(1552), + [sym__newline] = ACTIONS(1552), + [anon_sym_SEMI] = ACTIONS(1552), + [anon_sym_PIPE] = ACTIONS(1552), + [anon_sym_err_GT_PIPE] = ACTIONS(1552), + [anon_sym_out_GT_PIPE] = ACTIONS(1552), + [anon_sym_e_GT_PIPE] = ACTIONS(1552), + [anon_sym_o_GT_PIPE] = ACTIONS(1552), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1552), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1552), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1552), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1552), + [anon_sym_RBRACK] = ACTIONS(1552), + [anon_sym_GT2] = ACTIONS(1552), + [anon_sym_DASH2] = ACTIONS(1552), + [anon_sym_RBRACE] = ACTIONS(1552), + [anon_sym_DOT_DOT] = ACTIONS(1552), + [anon_sym_STAR2] = ACTIONS(1552), + [anon_sym_and2] = ACTIONS(1552), + [anon_sym_xor2] = ACTIONS(1552), + [anon_sym_or2] = ACTIONS(1552), + [anon_sym_not_DASHin2] = ACTIONS(1552), + [anon_sym_has2] = ACTIONS(1552), + [anon_sym_not_DASHhas2] = ACTIONS(1552), + [anon_sym_starts_DASHwith2] = ACTIONS(1552), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1552), + [anon_sym_ends_DASHwith2] = ACTIONS(1552), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1552), + [anon_sym_EQ_EQ2] = ACTIONS(1552), + [anon_sym_BANG_EQ2] = ACTIONS(1552), + [anon_sym_LT2] = ACTIONS(1552), + [anon_sym_LT_EQ2] = ACTIONS(1552), + [anon_sym_GT_EQ2] = ACTIONS(1552), + [anon_sym_EQ_TILDE2] = ACTIONS(1552), + [anon_sym_BANG_TILDE2] = ACTIONS(1552), + [anon_sym_like2] = ACTIONS(1552), + [anon_sym_not_DASHlike2] = ACTIONS(1552), + [anon_sym_STAR_STAR2] = ACTIONS(1552), + [anon_sym_PLUS_PLUS2] = ACTIONS(1552), + [anon_sym_SLASH2] = ACTIONS(1552), + [anon_sym_mod2] = ACTIONS(1552), + [anon_sym_SLASH_SLASH2] = ACTIONS(1552), + [anon_sym_PLUS2] = ACTIONS(1552), + [anon_sym_bit_DASHshl2] = ACTIONS(1552), + [anon_sym_bit_DASHshr2] = ACTIONS(1552), + [anon_sym_bit_DASHand2] = ACTIONS(1552), + [anon_sym_bit_DASHxor2] = ACTIONS(1552), + [anon_sym_bit_DASHor2] = ACTIONS(1552), + [anon_sym_DOT_DOT2] = ACTIONS(1552), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1554), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1554), + [sym__entry_separator] = ACTIONS(1554), + [anon_sym_COLON2] = ACTIONS(1552), + [anon_sym_DOT2] = ACTIONS(1552), + [anon_sym_err_GT] = ACTIONS(1552), + [anon_sym_out_GT] = ACTIONS(1552), + [anon_sym_e_GT] = ACTIONS(1552), + [anon_sym_o_GT] = ACTIONS(1552), + [anon_sym_err_PLUSout_GT] = ACTIONS(1552), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1552), + [anon_sym_o_PLUSe_GT] = ACTIONS(1552), + [anon_sym_e_PLUSo_GT] = ACTIONS(1552), + [anon_sym_err_GT_GT] = ACTIONS(1552), + [anon_sym_out_GT_GT] = ACTIONS(1552), + [anon_sym_e_GT_GT] = ACTIONS(1552), + [anon_sym_o_GT_GT] = ACTIONS(1552), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1552), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1552), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1552), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1552), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(368)] = { [sym_comment] = STATE(368), - [anon_sym_EQ] = ACTIONS(1556), - [anon_sym_PLUS_EQ] = ACTIONS(1556), - [anon_sym_DASH_EQ] = ACTIONS(1556), - [anon_sym_STAR_EQ] = ACTIONS(1556), - [anon_sym_SLASH_EQ] = ACTIONS(1556), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1556), - [sym__newline] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_err_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_GT_PIPE] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1556), - [anon_sym_RBRACK] = ACTIONS(1556), - [anon_sym_GT2] = ACTIONS(1556), - [anon_sym_DASH2] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT_DOT] = ACTIONS(1556), - [anon_sym_STAR2] = ACTIONS(1556), - [anon_sym_and2] = ACTIONS(1556), - [anon_sym_xor2] = ACTIONS(1556), - [anon_sym_or2] = ACTIONS(1556), - [anon_sym_not_DASHin2] = ACTIONS(1556), - [anon_sym_has2] = ACTIONS(1556), - [anon_sym_not_DASHhas2] = ACTIONS(1556), - [anon_sym_starts_DASHwith2] = ACTIONS(1556), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1556), - [anon_sym_ends_DASHwith2] = ACTIONS(1556), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1556), - [anon_sym_EQ_EQ2] = ACTIONS(1556), - [anon_sym_BANG_EQ2] = ACTIONS(1556), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ2] = ACTIONS(1556), - [anon_sym_GT_EQ2] = ACTIONS(1556), - [anon_sym_EQ_TILDE2] = ACTIONS(1556), - [anon_sym_BANG_TILDE2] = ACTIONS(1556), - [anon_sym_like2] = ACTIONS(1556), - [anon_sym_not_DASHlike2] = ACTIONS(1556), - [anon_sym_STAR_STAR2] = ACTIONS(1556), - [anon_sym_PLUS_PLUS2] = ACTIONS(1556), - [anon_sym_SLASH2] = ACTIONS(1556), - [anon_sym_mod2] = ACTIONS(1556), - [anon_sym_SLASH_SLASH2] = ACTIONS(1556), - [anon_sym_PLUS2] = ACTIONS(1556), - [anon_sym_bit_DASHshl2] = ACTIONS(1556), - [anon_sym_bit_DASHshr2] = ACTIONS(1556), - [anon_sym_bit_DASHand2] = ACTIONS(1556), - [anon_sym_bit_DASHxor2] = ACTIONS(1556), - [anon_sym_bit_DASHor2] = ACTIONS(1556), - [anon_sym_DOT_DOT2] = ACTIONS(1556), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), - [sym__entry_separator] = ACTIONS(1558), - [anon_sym_COLON2] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [anon_sym_err_GT_GT] = ACTIONS(1556), - [anon_sym_out_GT_GT] = ACTIONS(1556), - [anon_sym_e_GT_GT] = ACTIONS(1556), - [anon_sym_o_GT_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1556), + [anon_sym_EQ] = ACTIONS(1446), + [anon_sym_PLUS_EQ] = ACTIONS(1446), + [anon_sym_DASH_EQ] = ACTIONS(1446), + [anon_sym_STAR_EQ] = ACTIONS(1446), + [anon_sym_SLASH_EQ] = ACTIONS(1446), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1446), + [anon_sym_in] = ACTIONS(1446), + [sym__newline] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym_PIPE] = ACTIONS(1446), + [anon_sym_err_GT_PIPE] = ACTIONS(1446), + [anon_sym_out_GT_PIPE] = ACTIONS(1446), + [anon_sym_e_GT_PIPE] = ACTIONS(1446), + [anon_sym_o_GT_PIPE] = ACTIONS(1446), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1446), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1446), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1446), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1446), + [anon_sym_GT2] = ACTIONS(1446), + [anon_sym_DASH2] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_STAR2] = ACTIONS(1446), + [anon_sym_and2] = ACTIONS(1446), + [anon_sym_xor2] = ACTIONS(1446), + [anon_sym_or2] = ACTIONS(1446), + [anon_sym_not_DASHin2] = ACTIONS(1446), + [anon_sym_has2] = ACTIONS(1446), + [anon_sym_not_DASHhas2] = ACTIONS(1446), + [anon_sym_starts_DASHwith2] = ACTIONS(1446), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1446), + [anon_sym_ends_DASHwith2] = ACTIONS(1446), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1446), + [anon_sym_EQ_EQ2] = ACTIONS(1446), + [anon_sym_BANG_EQ2] = ACTIONS(1446), + [anon_sym_LT2] = ACTIONS(1446), + [anon_sym_LT_EQ2] = ACTIONS(1446), + [anon_sym_GT_EQ2] = ACTIONS(1446), + [anon_sym_EQ_TILDE2] = ACTIONS(1446), + [anon_sym_BANG_TILDE2] = ACTIONS(1446), + [anon_sym_like2] = ACTIONS(1446), + [anon_sym_not_DASHlike2] = ACTIONS(1446), + [anon_sym_STAR_STAR2] = ACTIONS(1446), + [anon_sym_PLUS_PLUS2] = ACTIONS(1446), + [anon_sym_SLASH2] = ACTIONS(1446), + [anon_sym_mod2] = ACTIONS(1446), + [anon_sym_SLASH_SLASH2] = ACTIONS(1446), + [anon_sym_PLUS2] = ACTIONS(1446), + [anon_sym_bit_DASHshl2] = ACTIONS(1446), + [anon_sym_bit_DASHshr2] = ACTIONS(1446), + [anon_sym_bit_DASHand2] = ACTIONS(1446), + [anon_sym_bit_DASHxor2] = ACTIONS(1446), + [anon_sym_bit_DASHor2] = ACTIONS(1446), + [anon_sym_DOT_DOT2] = ACTIONS(1446), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), + [sym__entry_separator] = ACTIONS(1448), + [anon_sym_COLON2] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_DOT2] = ACTIONS(1446), + [anon_sym_err_GT] = ACTIONS(1446), + [anon_sym_out_GT] = ACTIONS(1446), + [anon_sym_e_GT] = ACTIONS(1446), + [anon_sym_o_GT] = ACTIONS(1446), + [anon_sym_err_PLUSout_GT] = ACTIONS(1446), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), + [anon_sym_o_PLUSe_GT] = ACTIONS(1446), + [anon_sym_e_PLUSo_GT] = ACTIONS(1446), + [anon_sym_err_GT_GT] = ACTIONS(1446), + [anon_sym_out_GT_GT] = ACTIONS(1446), + [anon_sym_e_GT_GT] = ACTIONS(1446), + [anon_sym_o_GT_GT] = ACTIONS(1446), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1446), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1446), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1446), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1446), [anon_sym_POUND] = ACTIONS(103), }, [STATE(369)] = { + [sym__match_pattern_expression] = STATE(4132), + [sym__match_pattern_value] = STATE(4618), + [sym__match_pattern_list] = STATE(4619), + [sym__match_pattern_record] = STATE(4622), + [sym_expr_parenthesized] = STATE(3830), + [sym__spread_parenthesized] = STATE(4700), + [sym_val_range] = STATE(4418), + [sym__val_range] = STATE(4544), + [sym__value] = STATE(4730), + [sym_val_nothing] = STATE(4419), + [sym_val_bool] = STATE(4086), + [sym__spread_variable] = STATE(4795), + [sym_val_variable] = STATE(3834), + [sym_val_cellpath] = STATE(4604), + [sym_val_number] = STATE(4419), + [sym__val_number_decimal] = STATE(3430), + [sym__val_number] = STATE(4361), + [sym_val_duration] = STATE(4419), + [sym_val_filesize] = STATE(4419), + [sym_val_binary] = STATE(4419), + [sym_val_string] = STATE(4419), + [sym__raw_str] = STATE(3638), + [sym__str_double_quotes] = STATE(3638), + [sym__str_single_quotes] = STATE(3638), + [sym__str_back_ticks] = STATE(3638), + [sym_val_interpolated] = STATE(4604), + [sym__inter_single_quotes] = STATE(4595), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4604), + [sym__spread_list] = STATE(4700), + [sym_val_entry] = STATE(4455), + [sym_val_record] = STATE(4604), + [sym_val_table] = STATE(4419), + [sym_val_closure] = STATE(4604), + [sym__unquoted_in_list] = STATE(3828), + [sym__unquoted_in_list_with_expr] = STATE(4730), + [sym__unquoted_anonymous_prefix] = STATE(4544), [sym_comment] = STATE(369), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_PLUS_EQ] = ACTIONS(1440), - [anon_sym_DASH_EQ] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1440), - [anon_sym_SLASH_EQ] = ACTIONS(1440), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1438), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_COLON2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1560), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), + [aux_sym__types_body_repeat1] = STATE(2113), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1419), + [aux_sym_list_body_repeat1] = STATE(667), + [anon_sym_true] = ACTIONS(1374), + [anon_sym_false] = ACTIONS(1374), + [anon_sym_null] = ACTIONS(1376), + [aux_sym_cmd_identifier_token3] = ACTIONS(1378), + [aux_sym_cmd_identifier_token4] = ACTIONS(1378), + [aux_sym_cmd_identifier_token5] = ACTIONS(1378), + [sym__newline] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_DOLLAR] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1560), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), + [anon_sym_DOT_DOT_LT] = ACTIONS(1396), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1398), + [aux_sym__val_number_decimal_token2] = ACTIONS(1400), + [aux_sym__val_number_decimal_token3] = ACTIONS(1402), + [aux_sym__val_number_decimal_token4] = ACTIONS(1402), + [aux_sym__val_number_token1] = ACTIONS(1404), + [aux_sym__val_number_token2] = ACTIONS(1404), + [aux_sym__val_number_token3] = ACTIONS(1404), + [anon_sym_0b] = ACTIONS(1406), + [anon_sym_0o] = ACTIONS(1408), + [anon_sym_0x] = ACTIONS(1408), + [sym_val_date] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_BQUOTE] = ACTIONS(1416), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1426), }, [STATE(370)] = { - [sym_cell_path] = STATE(453), - [sym_path] = STATE(417), + [sym_cell_path] = STATE(434), + [sym_path] = STATE(429), [sym_comment] = STATE(370), - [aux_sym__where_predicate_lhs_repeat1] = STATE(381), + [aux_sym__where_predicate_lhs_repeat1] = STATE(386), [ts_builtin_sym_end] = ACTIONS(1434), [anon_sym_EQ] = ACTIONS(1432), [anon_sym_PLUS_EQ] = ACTIONS(1434), @@ -76434,86 +76644,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(371)] = { - [sym__match_pattern_expression] = STATE(4325), - [sym__match_pattern_value] = STATE(4440), - [sym__match_pattern_list] = STATE(4441), - [sym__match_pattern_record] = STATE(4447), - [sym_expr_parenthesized] = STATE(3857), - [sym__spread_parenthesized] = STATE(4721), - [sym_val_range] = STATE(4544), - [sym__val_range] = STATE(4523), - [sym__value] = STATE(4776), - [sym_val_nothing] = STATE(4545), - [sym_val_bool] = STATE(4004), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(3858), - [sym_val_cellpath] = STATE(4452), - [sym_val_number] = STATE(4545), - [sym__val_number_decimal] = STATE(3357), - [sym__val_number] = STATE(4130), - [sym_val_duration] = STATE(4545), - [sym_val_filesize] = STATE(4545), - [sym_val_binary] = STATE(4545), - [sym_val_string] = STATE(4545), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4452), - [sym__inter_single_quotes] = STATE(4504), - [sym__inter_double_quotes] = STATE(4369), - [sym_val_list] = STATE(4452), - [sym__spread_list] = STATE(4721), - [sym_val_entry] = STATE(4557), - [sym_val_record] = STATE(4452), - [sym_val_table] = STATE(4545), - [sym_val_closure] = STATE(4452), - [sym__unquoted_in_list] = STATE(3774), - [sym__unquoted_in_list_with_expr] = STATE(4776), - [sym__unquoted_anonymous_prefix] = STATE(4523), [sym_comment] = STATE(371), - [aux_sym__types_body_repeat1] = STATE(2117), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1424), - [aux_sym_list_body_repeat1] = STATE(630), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [anon_sym_null] = ACTIONS(1376), - [aux_sym_cmd_identifier_token3] = ACTIONS(1378), - [aux_sym_cmd_identifier_token4] = ACTIONS(1378), - [aux_sym_cmd_identifier_token5] = ACTIONS(1378), - [sym__newline] = ACTIONS(1564), - [anon_sym_LBRACK] = ACTIONS(1566), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_DOT_DOT] = ACTIONS(1568), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), - [anon_sym_DOT_DOT_LT] = ACTIONS(1396), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [aux_sym__val_number_decimal_token3] = ACTIONS(1402), - [aux_sym__val_number_decimal_token4] = ACTIONS(1402), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, + [anon_sym_EQ] = ACTIONS(1446), + [anon_sym_PLUS_EQ] = ACTIONS(1448), + [anon_sym_DASH_EQ] = ACTIONS(1448), + [anon_sym_STAR_EQ] = ACTIONS(1448), + [anon_sym_SLASH_EQ] = ACTIONS(1448), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1448), + [anon_sym_in] = ACTIONS(1448), + [sym__newline] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1448), + [anon_sym_err_GT_PIPE] = ACTIONS(1448), + [anon_sym_out_GT_PIPE] = ACTIONS(1448), + [anon_sym_e_GT_PIPE] = ACTIONS(1448), + [anon_sym_o_GT_PIPE] = ACTIONS(1448), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1448), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), + [anon_sym_RPAREN] = ACTIONS(1448), + [anon_sym_GT2] = ACTIONS(1446), + [anon_sym_DASH2] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1448), + [anon_sym_STAR2] = ACTIONS(1446), + [anon_sym_and2] = ACTIONS(1448), + [anon_sym_xor2] = ACTIONS(1448), + [anon_sym_or2] = ACTIONS(1448), + [anon_sym_not_DASHin2] = ACTIONS(1448), + [anon_sym_has2] = ACTIONS(1448), + [anon_sym_not_DASHhas2] = ACTIONS(1448), + [anon_sym_starts_DASHwith2] = ACTIONS(1448), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1448), + [anon_sym_ends_DASHwith2] = ACTIONS(1448), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), + [anon_sym_EQ_EQ2] = ACTIONS(1448), + [anon_sym_BANG_EQ2] = ACTIONS(1448), + [anon_sym_LT2] = ACTIONS(1446), + [anon_sym_LT_EQ2] = ACTIONS(1448), + [anon_sym_GT_EQ2] = ACTIONS(1448), + [anon_sym_EQ_TILDE2] = ACTIONS(1448), + [anon_sym_BANG_TILDE2] = ACTIONS(1448), + [anon_sym_like2] = ACTIONS(1448), + [anon_sym_not_DASHlike2] = ACTIONS(1448), + [anon_sym_STAR_STAR2] = ACTIONS(1448), + [anon_sym_PLUS_PLUS2] = ACTIONS(1446), + [anon_sym_SLASH2] = ACTIONS(1446), + [anon_sym_mod2] = ACTIONS(1448), + [anon_sym_SLASH_SLASH2] = ACTIONS(1448), + [anon_sym_PLUS2] = ACTIONS(1446), + [anon_sym_bit_DASHshl2] = ACTIONS(1448), + [anon_sym_bit_DASHshr2] = ACTIONS(1448), + [anon_sym_bit_DASHand2] = ACTIONS(1448), + [anon_sym_bit_DASHxor2] = ACTIONS(1448), + [anon_sym_bit_DASHor2] = ACTIONS(1448), + [anon_sym_DOT_DOT2] = ACTIONS(1446), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), + [anon_sym_COLON2] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1564), + [anon_sym_DOT2] = ACTIONS(1446), + [anon_sym_err_GT] = ACTIONS(1446), + [anon_sym_out_GT] = ACTIONS(1446), + [anon_sym_e_GT] = ACTIONS(1446), + [anon_sym_o_GT] = ACTIONS(1446), + [anon_sym_err_PLUSout_GT] = ACTIONS(1446), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), + [anon_sym_o_PLUSe_GT] = ACTIONS(1446), + [anon_sym_e_PLUSo_GT] = ACTIONS(1446), + [anon_sym_err_GT_GT] = ACTIONS(1448), + [anon_sym_out_GT_GT] = ACTIONS(1448), + [anon_sym_e_GT_GT] = ACTIONS(1448), + [anon_sym_o_GT_GT] = ACTIONS(1448), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1448), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(372)] = { + [sym__path_suffix] = STATE(428), [sym_comment] = STATE(372), + [ts_builtin_sym_end] = ACTIONS(1440), [anon_sym_EQ] = ACTIONS(1438), [anon_sym_PLUS_EQ] = ACTIONS(1440), [anon_sym_DASH_EQ] = ACTIONS(1440), @@ -76532,10 +76744,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), [anon_sym_GT2] = ACTIONS(1438), [anon_sym_DASH2] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1440), [anon_sym_STAR2] = ACTIONS(1438), [anon_sym_and2] = ACTIONS(1440), [anon_sym_xor2] = ACTIONS(1440), @@ -76570,8 +76780,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1438), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_COLON2] = ACTIONS(1440), - [anon_sym_QMARK2] = ACTIONS(1570), + [anon_sym_QMARK2] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1568), [anon_sym_DOT2] = ACTIONS(1438), [anon_sym_err_GT] = ACTIONS(1438), [anon_sym_out_GT] = ACTIONS(1438), @@ -76593,87 +76803,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(373)] = { [sym_comment] = STATE(373), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_PLUS_EQ] = ACTIONS(1438), - [anon_sym_DASH_EQ] = ACTIONS(1438), - [anon_sym_STAR_EQ] = ACTIONS(1438), - [anon_sym_SLASH_EQ] = ACTIONS(1438), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1438), - [anon_sym_in] = ACTIONS(1438), - [sym__newline] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_PIPE] = ACTIONS(1438), - [anon_sym_err_GT_PIPE] = ACTIONS(1438), - [anon_sym_out_GT_PIPE] = ACTIONS(1438), - [anon_sym_e_GT_PIPE] = ACTIONS(1438), - [anon_sym_o_GT_PIPE] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1438), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1438), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1438), - [anon_sym_xor2] = ACTIONS(1438), - [anon_sym_or2] = ACTIONS(1438), - [anon_sym_not_DASHin2] = ACTIONS(1438), - [anon_sym_has2] = ACTIONS(1438), - [anon_sym_not_DASHhas2] = ACTIONS(1438), - [anon_sym_starts_DASHwith2] = ACTIONS(1438), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1438), - [anon_sym_ends_DASHwith2] = ACTIONS(1438), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1438), - [anon_sym_EQ_EQ2] = ACTIONS(1438), - [anon_sym_BANG_EQ2] = ACTIONS(1438), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1438), - [anon_sym_GT_EQ2] = ACTIONS(1438), - [anon_sym_EQ_TILDE2] = ACTIONS(1438), - [anon_sym_BANG_TILDE2] = ACTIONS(1438), - [anon_sym_like2] = ACTIONS(1438), - [anon_sym_not_DASHlike2] = ACTIONS(1438), - [anon_sym_STAR_STAR2] = ACTIONS(1438), - [anon_sym_PLUS_PLUS2] = ACTIONS(1438), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1438), - [anon_sym_SLASH_SLASH2] = ACTIONS(1438), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1438), - [anon_sym_bit_DASHshr2] = ACTIONS(1438), - [anon_sym_bit_DASHand2] = ACTIONS(1438), - [anon_sym_bit_DASHxor2] = ACTIONS(1438), - [anon_sym_bit_DASHor2] = ACTIONS(1438), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [sym__entry_separator] = ACTIONS(1440), - [anon_sym_COLON2] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1438), - [anon_sym_out_GT_GT] = ACTIONS(1438), - [anon_sym_e_GT_GT] = ACTIONS(1438), - [anon_sym_o_GT_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1438), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(374)] = { - [sym__path_suffix] = STATE(432), - [sym_comment] = STATE(374), - [ts_builtin_sym_end] = ACTIONS(1448), [anon_sym_EQ] = ACTIONS(1446), [anon_sym_PLUS_EQ] = ACTIONS(1448), [anon_sym_DASH_EQ] = ACTIONS(1448), @@ -76692,8 +76821,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), + [anon_sym_RPAREN] = ACTIONS(1448), [anon_sym_GT2] = ACTIONS(1446), [anon_sym_DASH2] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1448), [anon_sym_STAR2] = ACTIONS(1446), [anon_sym_and2] = ACTIONS(1448), [anon_sym_xor2] = ACTIONS(1448), @@ -76728,8 +76859,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1446), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), - [anon_sym_QMARK2] = ACTIONS(1572), - [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_COLON2] = ACTIONS(1448), + [anon_sym_QMARK2] = ACTIONS(1570), [anon_sym_DOT2] = ACTIONS(1446), [anon_sym_err_GT] = ACTIONS(1446), [anon_sym_out_GT] = ACTIONS(1446), @@ -76749,152 +76880,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(374)] = { + [sym_comment] = STATE(374), + [anon_sym_EQ] = ACTIONS(1572), + [anon_sym_PLUS_EQ] = ACTIONS(1572), + [anon_sym_DASH_EQ] = ACTIONS(1572), + [anon_sym_STAR_EQ] = ACTIONS(1572), + [anon_sym_SLASH_EQ] = ACTIONS(1572), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1572), + [anon_sym_in] = ACTIONS(1572), + [sym__newline] = ACTIONS(1572), + [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1572), + [anon_sym_err_GT_PIPE] = ACTIONS(1572), + [anon_sym_out_GT_PIPE] = ACTIONS(1572), + [anon_sym_e_GT_PIPE] = ACTIONS(1572), + [anon_sym_o_GT_PIPE] = ACTIONS(1572), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1572), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1572), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1572), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1572), + [anon_sym_RBRACK] = ACTIONS(1572), + [anon_sym_GT2] = ACTIONS(1572), + [anon_sym_DASH2] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1572), + [anon_sym_DOT_DOT] = ACTIONS(1572), + [anon_sym_STAR2] = ACTIONS(1572), + [anon_sym_and2] = ACTIONS(1572), + [anon_sym_xor2] = ACTIONS(1572), + [anon_sym_or2] = ACTIONS(1572), + [anon_sym_not_DASHin2] = ACTIONS(1572), + [anon_sym_has2] = ACTIONS(1572), + [anon_sym_not_DASHhas2] = ACTIONS(1572), + [anon_sym_starts_DASHwith2] = ACTIONS(1572), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1572), + [anon_sym_ends_DASHwith2] = ACTIONS(1572), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1572), + [anon_sym_EQ_EQ2] = ACTIONS(1572), + [anon_sym_BANG_EQ2] = ACTIONS(1572), + [anon_sym_LT2] = ACTIONS(1572), + [anon_sym_LT_EQ2] = ACTIONS(1572), + [anon_sym_GT_EQ2] = ACTIONS(1572), + [anon_sym_EQ_TILDE2] = ACTIONS(1572), + [anon_sym_BANG_TILDE2] = ACTIONS(1572), + [anon_sym_like2] = ACTIONS(1572), + [anon_sym_not_DASHlike2] = ACTIONS(1572), + [anon_sym_STAR_STAR2] = ACTIONS(1572), + [anon_sym_PLUS_PLUS2] = ACTIONS(1572), + [anon_sym_SLASH2] = ACTIONS(1572), + [anon_sym_mod2] = ACTIONS(1572), + [anon_sym_SLASH_SLASH2] = ACTIONS(1572), + [anon_sym_PLUS2] = ACTIONS(1572), + [anon_sym_bit_DASHshl2] = ACTIONS(1572), + [anon_sym_bit_DASHshr2] = ACTIONS(1572), + [anon_sym_bit_DASHand2] = ACTIONS(1572), + [anon_sym_bit_DASHxor2] = ACTIONS(1572), + [anon_sym_bit_DASHor2] = ACTIONS(1572), + [anon_sym_DOT_DOT2] = ACTIONS(1572), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1574), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1574), + [sym__entry_separator] = ACTIONS(1574), + [anon_sym_COLON2] = ACTIONS(1572), + [anon_sym_err_GT] = ACTIONS(1572), + [anon_sym_out_GT] = ACTIONS(1572), + [anon_sym_e_GT] = ACTIONS(1572), + [anon_sym_o_GT] = ACTIONS(1572), + [anon_sym_err_PLUSout_GT] = ACTIONS(1572), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1572), + [anon_sym_o_PLUSe_GT] = ACTIONS(1572), + [anon_sym_e_PLUSo_GT] = ACTIONS(1572), + [anon_sym_err_GT_GT] = ACTIONS(1572), + [anon_sym_out_GT_GT] = ACTIONS(1572), + [anon_sym_e_GT_GT] = ACTIONS(1572), + [anon_sym_o_GT_GT] = ACTIONS(1572), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1572), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1572), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1572), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1572), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(375)] = { [sym_comment] = STATE(375), - [ts_builtin_sym_end] = ACTIONS(1476), - [anon_sym_EQ] = ACTIONS(1474), - [anon_sym_PLUS_EQ] = ACTIONS(1476), - [anon_sym_DASH_EQ] = ACTIONS(1476), - [anon_sym_STAR_EQ] = ACTIONS(1476), - [anon_sym_SLASH_EQ] = ACTIONS(1476), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1476), - [anon_sym_in] = ACTIONS(1476), - [sym__newline] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_err_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_GT_PIPE] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1476), - [anon_sym_GT2] = ACTIONS(1474), - [anon_sym_DASH2] = ACTIONS(1474), - [anon_sym_STAR2] = ACTIONS(1474), - [anon_sym_and2] = ACTIONS(1476), - [anon_sym_xor2] = ACTIONS(1476), - [anon_sym_or2] = ACTIONS(1476), - [anon_sym_not_DASHin2] = ACTIONS(1476), - [anon_sym_has2] = ACTIONS(1476), - [anon_sym_not_DASHhas2] = ACTIONS(1476), - [anon_sym_starts_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1476), - [anon_sym_ends_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1476), - [anon_sym_EQ_EQ2] = ACTIONS(1476), - [anon_sym_BANG_EQ2] = ACTIONS(1476), - [anon_sym_LT2] = ACTIONS(1474), - [anon_sym_LT_EQ2] = ACTIONS(1476), - [anon_sym_GT_EQ2] = ACTIONS(1476), - [anon_sym_EQ_TILDE2] = ACTIONS(1476), - [anon_sym_BANG_TILDE2] = ACTIONS(1476), - [anon_sym_like2] = ACTIONS(1476), - [anon_sym_not_DASHlike2] = ACTIONS(1476), - [anon_sym_STAR_STAR2] = ACTIONS(1476), - [anon_sym_PLUS_PLUS2] = ACTIONS(1474), - [anon_sym_SLASH2] = ACTIONS(1474), - [anon_sym_mod2] = ACTIONS(1476), - [anon_sym_SLASH_SLASH2] = ACTIONS(1476), - [anon_sym_PLUS2] = ACTIONS(1474), - [anon_sym_bit_DASHshl2] = ACTIONS(1476), - [anon_sym_bit_DASHshr2] = ACTIONS(1476), - [anon_sym_bit_DASHand2] = ACTIONS(1476), - [anon_sym_bit_DASHxor2] = ACTIONS(1476), - [anon_sym_bit_DASHor2] = ACTIONS(1476), - [anon_sym_DOT_DOT2] = ACTIONS(1474), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1476), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1476), - [anon_sym_QMARK2] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_DOT2] = ACTIONS(1474), - [anon_sym_err_GT] = ACTIONS(1474), - [anon_sym_out_GT] = ACTIONS(1474), - [anon_sym_e_GT] = ACTIONS(1474), - [anon_sym_o_GT] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT] = ACTIONS(1474), - [anon_sym_err_GT_GT] = ACTIONS(1476), - [anon_sym_out_GT_GT] = ACTIONS(1476), - [anon_sym_e_GT_GT] = ACTIONS(1476), - [anon_sym_o_GT_GT] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1476), + [anon_sym_EQ] = ACTIONS(1529), + [anon_sym_PLUS_EQ] = ACTIONS(1531), + [anon_sym_DASH_EQ] = ACTIONS(1531), + [anon_sym_STAR_EQ] = ACTIONS(1531), + [anon_sym_SLASH_EQ] = ACTIONS(1531), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1531), + [anon_sym_in] = ACTIONS(1531), + [sym__newline] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1531), + [anon_sym_err_GT_PIPE] = ACTIONS(1531), + [anon_sym_out_GT_PIPE] = ACTIONS(1531), + [anon_sym_e_GT_PIPE] = ACTIONS(1531), + [anon_sym_o_GT_PIPE] = ACTIONS(1531), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1531), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1531), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1531), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1531), + [anon_sym_RPAREN] = ACTIONS(1531), + [anon_sym_GT2] = ACTIONS(1529), + [anon_sym_DASH2] = ACTIONS(1529), + [anon_sym_RBRACE] = ACTIONS(1531), + [anon_sym_STAR2] = ACTIONS(1529), + [anon_sym_and2] = ACTIONS(1531), + [anon_sym_xor2] = ACTIONS(1531), + [anon_sym_or2] = ACTIONS(1531), + [anon_sym_not_DASHin2] = ACTIONS(1531), + [anon_sym_has2] = ACTIONS(1531), + [anon_sym_not_DASHhas2] = ACTIONS(1531), + [anon_sym_starts_DASHwith2] = ACTIONS(1531), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1531), + [anon_sym_ends_DASHwith2] = ACTIONS(1531), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1531), + [anon_sym_EQ_EQ2] = ACTIONS(1531), + [anon_sym_BANG_EQ2] = ACTIONS(1531), + [anon_sym_LT2] = ACTIONS(1529), + [anon_sym_LT_EQ2] = ACTIONS(1531), + [anon_sym_GT_EQ2] = ACTIONS(1531), + [anon_sym_EQ_TILDE2] = ACTIONS(1531), + [anon_sym_BANG_TILDE2] = ACTIONS(1531), + [anon_sym_like2] = ACTIONS(1531), + [anon_sym_not_DASHlike2] = ACTIONS(1531), + [anon_sym_STAR_STAR2] = ACTIONS(1531), + [anon_sym_PLUS_PLUS2] = ACTIONS(1529), + [anon_sym_SLASH2] = ACTIONS(1529), + [anon_sym_mod2] = ACTIONS(1531), + [anon_sym_SLASH_SLASH2] = ACTIONS(1531), + [anon_sym_PLUS2] = ACTIONS(1529), + [anon_sym_bit_DASHshl2] = ACTIONS(1531), + [anon_sym_bit_DASHshr2] = ACTIONS(1531), + [anon_sym_bit_DASHand2] = ACTIONS(1531), + [anon_sym_bit_DASHxor2] = ACTIONS(1531), + [anon_sym_bit_DASHor2] = ACTIONS(1531), + [anon_sym_DOT_DOT2] = ACTIONS(1529), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1531), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1531), + [anon_sym_COLON2] = ACTIONS(1531), + [anon_sym_DOT2] = ACTIONS(1529), + [anon_sym_err_GT] = ACTIONS(1529), + [anon_sym_out_GT] = ACTIONS(1529), + [anon_sym_e_GT] = ACTIONS(1529), + [anon_sym_o_GT] = ACTIONS(1529), + [anon_sym_err_PLUSout_GT] = ACTIONS(1529), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1529), + [anon_sym_o_PLUSe_GT] = ACTIONS(1529), + [anon_sym_e_PLUSo_GT] = ACTIONS(1529), + [anon_sym_err_GT_GT] = ACTIONS(1531), + [anon_sym_out_GT_GT] = ACTIONS(1531), + [anon_sym_e_GT_GT] = ACTIONS(1531), + [anon_sym_o_GT_GT] = ACTIONS(1531), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1531), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1531), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1531), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1531), [anon_sym_POUND] = ACTIONS(3), }, [STATE(376)] = { - [sym_expr_parenthesized] = STATE(3911), - [sym__spread_parenthesized] = STATE(4721), - [sym_val_range] = STATE(4776), - [sym__val_range] = STATE(4523), - [sym__value] = STATE(4776), - [sym_val_nothing] = STATE(4452), - [sym_val_bool] = STATE(4309), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4452), - [sym_val_number] = STATE(4452), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4130), - [sym_val_duration] = STATE(4452), - [sym_val_filesize] = STATE(4452), - [sym_val_binary] = STATE(4452), - [sym_val_string] = STATE(4452), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4452), - [sym__inter_single_quotes] = STATE(4504), - [sym__inter_double_quotes] = STATE(4369), - [sym_val_list] = STATE(4452), - [sym__spread_list] = STATE(4721), - [sym_list_body] = STATE(4957), - [sym_val_entry] = STATE(4375), - [sym_val_record] = STATE(4452), - [sym_val_table] = STATE(4452), - [sym_val_closure] = STATE(4452), - [sym__unquoted_in_list] = STATE(4312), - [sym__unquoted_in_list_with_expr] = STATE(4776), - [sym__unquoted_anonymous_prefix] = STATE(4523), + [sym_expr_parenthesized] = STATE(4058), + [sym__spread_parenthesized] = STATE(4700), + [sym_val_range] = STATE(4730), + [sym__val_range] = STATE(4544), + [sym__value] = STATE(4730), + [sym_val_nothing] = STATE(4604), + [sym_val_bool] = STATE(4358), + [sym__spread_variable] = STATE(4795), + [sym_val_variable] = STATE(3879), + [sym_val_cellpath] = STATE(4604), + [sym_val_number] = STATE(4604), + [sym__val_number_decimal] = STATE(3485), + [sym__val_number] = STATE(4361), + [sym_val_duration] = STATE(4604), + [sym_val_filesize] = STATE(4604), + [sym_val_binary] = STATE(4604), + [sym_val_string] = STATE(4604), + [sym__raw_str] = STATE(3638), + [sym__str_double_quotes] = STATE(3638), + [sym__str_single_quotes] = STATE(3638), + [sym__str_back_ticks] = STATE(3638), + [sym_val_interpolated] = STATE(4604), + [sym__inter_single_quotes] = STATE(4595), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4604), + [sym__spread_list] = STATE(4700), + [sym_list_body] = STATE(4849), + [sym_val_entry] = STATE(4576), + [sym_val_record] = STATE(4604), + [sym_val_table] = STATE(4604), + [sym_val_closure] = STATE(4604), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4730), + [sym__unquoted_anonymous_prefix] = STATE(4544), [sym_comment] = STATE(376), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4329), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), + [aux_sym__types_body_repeat1] = STATE(458), + [aux_sym_parameter_repeat2] = STATE(4189), + [aux_sym_list_body_repeat1] = STATE(548), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), [sym__newline] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(1578), [anon_sym_RBRACK] = ACTIONS(1580), [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -76906,9 +77116,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1426), }, [STATE(377)] = { - [sym__expr_parenthesized_immediate] = STATE(692), - [sym__immediate_decimal] = STATE(675), - [sym_val_variable] = STATE(692), + [sym__expr_parenthesized_immediate] = STATE(707), + [sym__immediate_decimal] = STATE(708), + [sym_val_variable] = STATE(707), [sym_comment] = STATE(377), [anon_sym_in] = ACTIONS(1582), [sym__newline] = ACTIONS(1582), @@ -76984,243 +77194,319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(378)] = { - [sym__expr_parenthesized_immediate] = STATE(698), - [sym__immediate_decimal] = STATE(705), - [sym_val_variable] = STATE(698), [sym_comment] = STATE(378), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_RPAREN] = ACTIONS(1596), + [anon_sym_EQ] = ACTIONS(1525), + [anon_sym_PLUS_EQ] = ACTIONS(1527), + [anon_sym_DASH_EQ] = ACTIONS(1527), + [anon_sym_STAR_EQ] = ACTIONS(1527), + [anon_sym_SLASH_EQ] = ACTIONS(1527), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1527), + [anon_sym_in] = ACTIONS(1527), + [sym__newline] = ACTIONS(1527), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_err_GT_PIPE] = ACTIONS(1527), + [anon_sym_out_GT_PIPE] = ACTIONS(1527), + [anon_sym_e_GT_PIPE] = ACTIONS(1527), + [anon_sym_o_GT_PIPE] = ACTIONS(1527), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1527), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1527), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1527), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1527), + [anon_sym_RPAREN] = ACTIONS(1527), + [anon_sym_GT2] = ACTIONS(1525), + [anon_sym_DASH2] = ACTIONS(1525), + [anon_sym_RBRACE] = ACTIONS(1527), + [anon_sym_STAR2] = ACTIONS(1525), + [anon_sym_and2] = ACTIONS(1527), + [anon_sym_xor2] = ACTIONS(1527), + [anon_sym_or2] = ACTIONS(1527), + [anon_sym_not_DASHin2] = ACTIONS(1527), + [anon_sym_has2] = ACTIONS(1527), + [anon_sym_not_DASHhas2] = ACTIONS(1527), + [anon_sym_starts_DASHwith2] = ACTIONS(1527), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1527), + [anon_sym_ends_DASHwith2] = ACTIONS(1527), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1527), + [anon_sym_EQ_EQ2] = ACTIONS(1527), + [anon_sym_BANG_EQ2] = ACTIONS(1527), + [anon_sym_LT2] = ACTIONS(1525), + [anon_sym_LT_EQ2] = ACTIONS(1527), + [anon_sym_GT_EQ2] = ACTIONS(1527), + [anon_sym_EQ_TILDE2] = ACTIONS(1527), + [anon_sym_BANG_TILDE2] = ACTIONS(1527), + [anon_sym_like2] = ACTIONS(1527), + [anon_sym_not_DASHlike2] = ACTIONS(1527), + [anon_sym_STAR_STAR2] = ACTIONS(1527), + [anon_sym_PLUS_PLUS2] = ACTIONS(1525), + [anon_sym_SLASH2] = ACTIONS(1525), + [anon_sym_mod2] = ACTIONS(1527), + [anon_sym_SLASH_SLASH2] = ACTIONS(1527), + [anon_sym_PLUS2] = ACTIONS(1525), + [anon_sym_bit_DASHshl2] = ACTIONS(1527), + [anon_sym_bit_DASHshr2] = ACTIONS(1527), + [anon_sym_bit_DASHand2] = ACTIONS(1527), + [anon_sym_bit_DASHxor2] = ACTIONS(1527), + [anon_sym_bit_DASHor2] = ACTIONS(1527), + [anon_sym_DOT_DOT2] = ACTIONS(1525), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1527), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1527), + [anon_sym_COLON2] = ACTIONS(1527), + [anon_sym_DOT2] = ACTIONS(1525), + [anon_sym_err_GT] = ACTIONS(1525), + [anon_sym_out_GT] = ACTIONS(1525), + [anon_sym_e_GT] = ACTIONS(1525), + [anon_sym_o_GT] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT] = ACTIONS(1525), + [anon_sym_err_GT_GT] = ACTIONS(1527), + [anon_sym_out_GT_GT] = ACTIONS(1527), + [anon_sym_e_GT_GT] = ACTIONS(1527), + [anon_sym_o_GT_GT] = ACTIONS(1527), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1527), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1527), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1527), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1527), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(379)] = { + [sym__expr_parenthesized_immediate] = STATE(707), + [sym__immediate_decimal] = STATE(545), + [sym_val_variable] = STATE(707), + [sym_comment] = STATE(379), + [anon_sym_in] = ACTIONS(1582), + [sym__newline] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_err_GT_PIPE] = ACTIONS(1582), + [anon_sym_out_GT_PIPE] = ACTIONS(1582), + [anon_sym_e_GT_PIPE] = ACTIONS(1582), + [anon_sym_o_GT_PIPE] = ACTIONS(1582), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), + [anon_sym_RPAREN] = ACTIONS(1582), [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_RBRACE] = ACTIONS(1596), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), + [anon_sym_GT2] = ACTIONS(1586), + [anon_sym_DASH2] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1582), + [anon_sym_STAR2] = ACTIONS(1586), + [anon_sym_and2] = ACTIONS(1582), + [anon_sym_xor2] = ACTIONS(1582), + [anon_sym_or2] = ACTIONS(1582), + [anon_sym_not_DASHin2] = ACTIONS(1582), + [anon_sym_has2] = ACTIONS(1582), + [anon_sym_not_DASHhas2] = ACTIONS(1582), + [anon_sym_starts_DASHwith2] = ACTIONS(1582), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1582), + [anon_sym_ends_DASHwith2] = ACTIONS(1582), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1582), + [anon_sym_EQ_EQ2] = ACTIONS(1582), + [anon_sym_BANG_EQ2] = ACTIONS(1582), + [anon_sym_LT2] = ACTIONS(1586), + [anon_sym_LT_EQ2] = ACTIONS(1582), + [anon_sym_GT_EQ2] = ACTIONS(1582), + [anon_sym_EQ_TILDE2] = ACTIONS(1582), + [anon_sym_BANG_TILDE2] = ACTIONS(1582), + [anon_sym_like2] = ACTIONS(1582), + [anon_sym_not_DASHlike2] = ACTIONS(1582), [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [anon_sym_DOT] = ACTIONS(1600), + [anon_sym_STAR_STAR2] = ACTIONS(1582), + [anon_sym_PLUS_PLUS2] = ACTIONS(1582), + [anon_sym_SLASH2] = ACTIONS(1586), + [anon_sym_mod2] = ACTIONS(1582), + [anon_sym_SLASH_SLASH2] = ACTIONS(1582), + [anon_sym_PLUS2] = ACTIONS(1586), + [anon_sym_bit_DASHshl2] = ACTIONS(1582), + [anon_sym_bit_DASHshr2] = ACTIONS(1582), + [anon_sym_bit_DASHand2] = ACTIONS(1582), + [anon_sym_bit_DASHxor2] = ACTIONS(1582), + [anon_sym_bit_DASHor2] = ACTIONS(1582), + [anon_sym_DOT] = ACTIONS(1596), [aux_sym__immediate_decimal_token1] = ACTIONS(1592), [aux_sym__immediate_decimal_token2] = ACTIONS(1592), [aux_sym__immediate_decimal_token3] = ACTIONS(1594), [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(379)] = { - [sym_expr_parenthesized] = STATE(3911), - [sym__spread_parenthesized] = STATE(4721), - [sym_val_range] = STATE(4776), - [sym__val_range] = STATE(4523), - [sym__value] = STATE(4776), - [sym_val_nothing] = STATE(4452), - [sym_val_bool] = STATE(4309), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4452), - [sym_val_number] = STATE(4452), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4130), - [sym_val_duration] = STATE(4452), - [sym_val_filesize] = STATE(4452), - [sym_val_binary] = STATE(4452), - [sym_val_string] = STATE(4452), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4452), - [sym__inter_single_quotes] = STATE(4504), - [sym__inter_double_quotes] = STATE(4369), - [sym_val_list] = STATE(4452), - [sym__spread_list] = STATE(4721), - [sym_list_body] = STATE(4929), - [sym_val_entry] = STATE(4375), - [sym_val_record] = STATE(4452), - [sym_val_table] = STATE(4452), - [sym_val_closure] = STATE(4452), - [sym__unquoted_in_list] = STATE(4312), - [sym__unquoted_in_list_with_expr] = STATE(4776), - [sym__unquoted_anonymous_prefix] = STATE(4523), - [sym_comment] = STATE(379), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4329), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1602), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), + [anon_sym_err_GT] = ACTIONS(1586), + [anon_sym_out_GT] = ACTIONS(1586), + [anon_sym_e_GT] = ACTIONS(1586), + [anon_sym_o_GT] = ACTIONS(1586), + [anon_sym_err_PLUSout_GT] = ACTIONS(1586), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1586), + [anon_sym_o_PLUSe_GT] = ACTIONS(1586), + [anon_sym_e_PLUSo_GT] = ACTIONS(1586), + [anon_sym_err_GT_GT] = ACTIONS(1582), + [anon_sym_out_GT_GT] = ACTIONS(1582), + [anon_sym_e_GT_GT] = ACTIONS(1582), + [anon_sym_o_GT_GT] = ACTIONS(1582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), + [sym__unquoted_pattern] = ACTIONS(1598), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), }, [STATE(380)] = { - [sym_expr_parenthesized] = STATE(3911), - [sym__spread_parenthesized] = STATE(4721), - [sym_val_range] = STATE(4776), - [sym__val_range] = STATE(4523), - [sym__value] = STATE(4776), - [sym_val_nothing] = STATE(4452), - [sym_val_bool] = STATE(4309), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4452), - [sym_val_number] = STATE(4452), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4130), - [sym_val_duration] = STATE(4452), - [sym_val_filesize] = STATE(4452), - [sym_val_binary] = STATE(4452), - [sym_val_string] = STATE(4452), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4452), - [sym__inter_single_quotes] = STATE(4504), - [sym__inter_double_quotes] = STATE(4369), - [sym_val_list] = STATE(4452), - [sym__spread_list] = STATE(4721), - [sym_list_body] = STATE(5177), - [sym_val_entry] = STATE(4375), - [sym_val_record] = STATE(4452), - [sym_val_table] = STATE(4452), - [sym_val_closure] = STATE(4452), - [sym__unquoted_in_list] = STATE(4312), - [sym__unquoted_in_list_with_expr] = STATE(4776), - [sym__unquoted_anonymous_prefix] = STATE(4523), [sym_comment] = STATE(380), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4329), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), + [ts_builtin_sym_end] = ACTIONS(1507), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_PLUS_EQ] = ACTIONS(1507), + [anon_sym_DASH_EQ] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1507), + [anon_sym_SLASH_EQ] = ACTIONS(1507), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1507), + [anon_sym_in] = ACTIONS(1507), + [sym__newline] = ACTIONS(1507), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_PIPE] = ACTIONS(1507), + [anon_sym_err_GT_PIPE] = ACTIONS(1507), + [anon_sym_out_GT_PIPE] = ACTIONS(1507), + [anon_sym_e_GT_PIPE] = ACTIONS(1507), + [anon_sym_o_GT_PIPE] = ACTIONS(1507), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1507), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1507), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1507), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1507), + [anon_sym_GT2] = ACTIONS(1505), + [anon_sym_DASH2] = ACTIONS(1505), + [anon_sym_STAR2] = ACTIONS(1505), + [anon_sym_and2] = ACTIONS(1507), + [anon_sym_xor2] = ACTIONS(1507), + [anon_sym_or2] = ACTIONS(1507), + [anon_sym_not_DASHin2] = ACTIONS(1507), + [anon_sym_has2] = ACTIONS(1507), + [anon_sym_not_DASHhas2] = ACTIONS(1507), + [anon_sym_starts_DASHwith2] = ACTIONS(1507), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1507), + [anon_sym_ends_DASHwith2] = ACTIONS(1507), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1507), + [anon_sym_EQ_EQ2] = ACTIONS(1507), + [anon_sym_BANG_EQ2] = ACTIONS(1507), + [anon_sym_LT2] = ACTIONS(1505), + [anon_sym_LT_EQ2] = ACTIONS(1507), + [anon_sym_GT_EQ2] = ACTIONS(1507), + [anon_sym_EQ_TILDE2] = ACTIONS(1507), + [anon_sym_BANG_TILDE2] = ACTIONS(1507), + [anon_sym_like2] = ACTIONS(1507), + [anon_sym_not_DASHlike2] = ACTIONS(1507), + [anon_sym_STAR_STAR2] = ACTIONS(1507), + [anon_sym_PLUS_PLUS2] = ACTIONS(1505), + [anon_sym_SLASH2] = ACTIONS(1505), + [anon_sym_mod2] = ACTIONS(1507), + [anon_sym_SLASH_SLASH2] = ACTIONS(1507), + [anon_sym_PLUS2] = ACTIONS(1505), + [anon_sym_bit_DASHshl2] = ACTIONS(1507), + [anon_sym_bit_DASHshr2] = ACTIONS(1507), + [anon_sym_bit_DASHand2] = ACTIONS(1507), + [anon_sym_bit_DASHxor2] = ACTIONS(1507), + [anon_sym_bit_DASHor2] = ACTIONS(1507), + [anon_sym_DOT_DOT2] = ACTIONS(1505), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1507), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1507), + [anon_sym_QMARK2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_DOT2] = ACTIONS(1505), + [anon_sym_err_GT] = ACTIONS(1505), + [anon_sym_out_GT] = ACTIONS(1505), + [anon_sym_e_GT] = ACTIONS(1505), + [anon_sym_o_GT] = ACTIONS(1505), + [anon_sym_err_PLUSout_GT] = ACTIONS(1505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1505), + [anon_sym_o_PLUSe_GT] = ACTIONS(1505), + [anon_sym_e_PLUSo_GT] = ACTIONS(1505), + [anon_sym_err_GT_GT] = ACTIONS(1507), + [anon_sym_out_GT_GT] = ACTIONS(1507), + [anon_sym_e_GT_GT] = ACTIONS(1507), + [anon_sym_o_GT_GT] = ACTIONS(1507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1507), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), }, [STATE(381)] = { - [sym_path] = STATE(417), [sym_comment] = STATE(381), - [aux_sym__where_predicate_lhs_repeat1] = STATE(382), + [ts_builtin_sym_end] = ACTIONS(1511), + [anon_sym_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1511), + [anon_sym_DASH_EQ] = ACTIONS(1511), + [anon_sym_STAR_EQ] = ACTIONS(1511), + [anon_sym_SLASH_EQ] = ACTIONS(1511), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1511), + [anon_sym_in] = ACTIONS(1511), + [sym__newline] = ACTIONS(1511), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_err_GT_PIPE] = ACTIONS(1511), + [anon_sym_out_GT_PIPE] = ACTIONS(1511), + [anon_sym_e_GT_PIPE] = ACTIONS(1511), + [anon_sym_o_GT_PIPE] = ACTIONS(1511), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1511), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1511), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1511), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1511), + [anon_sym_GT2] = ACTIONS(1509), + [anon_sym_DASH2] = ACTIONS(1509), + [anon_sym_STAR2] = ACTIONS(1509), + [anon_sym_and2] = ACTIONS(1511), + [anon_sym_xor2] = ACTIONS(1511), + [anon_sym_or2] = ACTIONS(1511), + [anon_sym_not_DASHin2] = ACTIONS(1511), + [anon_sym_has2] = ACTIONS(1511), + [anon_sym_not_DASHhas2] = ACTIONS(1511), + [anon_sym_starts_DASHwith2] = ACTIONS(1511), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1511), + [anon_sym_ends_DASHwith2] = ACTIONS(1511), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1511), + [anon_sym_EQ_EQ2] = ACTIONS(1511), + [anon_sym_BANG_EQ2] = ACTIONS(1511), + [anon_sym_LT2] = ACTIONS(1509), + [anon_sym_LT_EQ2] = ACTIONS(1511), + [anon_sym_GT_EQ2] = ACTIONS(1511), + [anon_sym_EQ_TILDE2] = ACTIONS(1511), + [anon_sym_BANG_TILDE2] = ACTIONS(1511), + [anon_sym_like2] = ACTIONS(1511), + [anon_sym_not_DASHlike2] = ACTIONS(1511), + [anon_sym_STAR_STAR2] = ACTIONS(1511), + [anon_sym_PLUS_PLUS2] = ACTIONS(1509), + [anon_sym_SLASH2] = ACTIONS(1509), + [anon_sym_mod2] = ACTIONS(1511), + [anon_sym_SLASH_SLASH2] = ACTIONS(1511), + [anon_sym_PLUS2] = ACTIONS(1509), + [anon_sym_bit_DASHshl2] = ACTIONS(1511), + [anon_sym_bit_DASHshr2] = ACTIONS(1511), + [anon_sym_bit_DASHand2] = ACTIONS(1511), + [anon_sym_bit_DASHxor2] = ACTIONS(1511), + [anon_sym_bit_DASHor2] = ACTIONS(1511), + [anon_sym_DOT_DOT2] = ACTIONS(1509), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1511), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1511), + [anon_sym_QMARK2] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1509), + [anon_sym_DOT2] = ACTIONS(1509), + [anon_sym_err_GT] = ACTIONS(1509), + [anon_sym_out_GT] = ACTIONS(1509), + [anon_sym_e_GT] = ACTIONS(1509), + [anon_sym_o_GT] = ACTIONS(1509), + [anon_sym_err_PLUSout_GT] = ACTIONS(1509), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1509), + [anon_sym_o_PLUSe_GT] = ACTIONS(1509), + [anon_sym_e_PLUSo_GT] = ACTIONS(1509), + [anon_sym_err_GT_GT] = ACTIONS(1511), + [anon_sym_out_GT_GT] = ACTIONS(1511), + [anon_sym_e_GT_GT] = ACTIONS(1511), + [anon_sym_o_GT_GT] = ACTIONS(1511), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1511), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1511), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1511), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1511), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(382)] = { + [sym_comment] = STATE(382), [ts_builtin_sym_end] = ACTIONS(1460), [anon_sym_EQ] = ACTIONS(1458), [anon_sym_PLUS_EQ] = ACTIONS(1460), @@ -77276,7 +77562,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1458), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1460), [anon_sym_DOT_DOT_LT2] = ACTIONS(1460), - [anon_sym_DOT2] = ACTIONS(1562), + [anon_sym_QMARK2] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_DOT2] = ACTIONS(1458), [anon_sym_err_GT] = ACTIONS(1458), [anon_sym_out_GT] = ACTIONS(1458), [anon_sym_e_GT] = ACTIONS(1458), @@ -77295,152 +77583,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1460), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(382)] = { - [sym_path] = STATE(417), - [sym_comment] = STATE(382), - [aux_sym__where_predicate_lhs_repeat1] = STATE(382), - [ts_builtin_sym_end] = ACTIONS(1526), - [anon_sym_EQ] = ACTIONS(1524), - [anon_sym_PLUS_EQ] = ACTIONS(1526), - [anon_sym_DASH_EQ] = ACTIONS(1526), - [anon_sym_STAR_EQ] = ACTIONS(1526), - [anon_sym_SLASH_EQ] = ACTIONS(1526), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1526), - [anon_sym_in] = ACTIONS(1526), - [sym__newline] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1526), - [anon_sym_err_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_GT_PIPE] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1526), - [anon_sym_GT2] = ACTIONS(1524), - [anon_sym_DASH2] = ACTIONS(1524), - [anon_sym_STAR2] = ACTIONS(1524), - [anon_sym_and2] = ACTIONS(1526), - [anon_sym_xor2] = ACTIONS(1526), - [anon_sym_or2] = ACTIONS(1526), - [anon_sym_not_DASHin2] = ACTIONS(1526), - [anon_sym_has2] = ACTIONS(1526), - [anon_sym_not_DASHhas2] = ACTIONS(1526), - [anon_sym_starts_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1526), - [anon_sym_ends_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1526), - [anon_sym_EQ_EQ2] = ACTIONS(1526), - [anon_sym_BANG_EQ2] = ACTIONS(1526), - [anon_sym_LT2] = ACTIONS(1524), - [anon_sym_LT_EQ2] = ACTIONS(1526), - [anon_sym_GT_EQ2] = ACTIONS(1526), - [anon_sym_EQ_TILDE2] = ACTIONS(1526), - [anon_sym_BANG_TILDE2] = ACTIONS(1526), - [anon_sym_like2] = ACTIONS(1526), - [anon_sym_not_DASHlike2] = ACTIONS(1526), - [anon_sym_STAR_STAR2] = ACTIONS(1526), - [anon_sym_PLUS_PLUS2] = ACTIONS(1524), - [anon_sym_SLASH2] = ACTIONS(1524), - [anon_sym_mod2] = ACTIONS(1526), - [anon_sym_SLASH_SLASH2] = ACTIONS(1526), - [anon_sym_PLUS2] = ACTIONS(1524), - [anon_sym_bit_DASHshl2] = ACTIONS(1526), - [anon_sym_bit_DASHshr2] = ACTIONS(1526), - [anon_sym_bit_DASHand2] = ACTIONS(1526), - [anon_sym_bit_DASHxor2] = ACTIONS(1526), - [anon_sym_bit_DASHor2] = ACTIONS(1526), - [anon_sym_DOT_DOT2] = ACTIONS(1524), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1526), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1526), - [anon_sym_DOT2] = ACTIONS(1604), - [anon_sym_err_GT] = ACTIONS(1524), - [anon_sym_out_GT] = ACTIONS(1524), - [anon_sym_e_GT] = ACTIONS(1524), - [anon_sym_o_GT] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT] = ACTIONS(1524), - [anon_sym_err_GT_GT] = ACTIONS(1526), - [anon_sym_out_GT_GT] = ACTIONS(1526), - [anon_sym_e_GT_GT] = ACTIONS(1526), - [anon_sym_o_GT_GT] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1526), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(383)] = { - [sym_expr_parenthesized] = STATE(3911), - [sym__spread_parenthesized] = STATE(4721), - [sym_val_range] = STATE(4776), - [sym__val_range] = STATE(4523), - [sym__value] = STATE(4776), - [sym_val_nothing] = STATE(4452), - [sym_val_bool] = STATE(4309), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4452), - [sym_val_number] = STATE(4452), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4130), - [sym_val_duration] = STATE(4452), - [sym_val_filesize] = STATE(4452), - [sym_val_binary] = STATE(4452), - [sym_val_string] = STATE(4452), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4452), - [sym__inter_single_quotes] = STATE(4504), - [sym__inter_double_quotes] = STATE(4369), - [sym_val_list] = STATE(4452), - [sym__spread_list] = STATE(4721), - [sym_list_body] = STATE(4985), - [sym_val_entry] = STATE(4375), - [sym_val_record] = STATE(4452), - [sym_val_table] = STATE(4452), - [sym_val_closure] = STATE(4452), - [sym__unquoted_in_list] = STATE(4312), - [sym__unquoted_in_list_with_expr] = STATE(4776), - [sym__unquoted_anonymous_prefix] = STATE(4523), [sym_comment] = STATE(383), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4329), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), + [ts_builtin_sym_end] = ACTIONS(1515), + [anon_sym_EQ] = ACTIONS(1513), + [anon_sym_PLUS_EQ] = ACTIONS(1515), + [anon_sym_DASH_EQ] = ACTIONS(1515), + [anon_sym_STAR_EQ] = ACTIONS(1515), + [anon_sym_SLASH_EQ] = ACTIONS(1515), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1515), + [anon_sym_in] = ACTIONS(1515), + [sym__newline] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_err_GT_PIPE] = ACTIONS(1515), + [anon_sym_out_GT_PIPE] = ACTIONS(1515), + [anon_sym_e_GT_PIPE] = ACTIONS(1515), + [anon_sym_o_GT_PIPE] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1515), + [anon_sym_GT2] = ACTIONS(1513), + [anon_sym_DASH2] = ACTIONS(1513), + [anon_sym_STAR2] = ACTIONS(1513), + [anon_sym_and2] = ACTIONS(1515), + [anon_sym_xor2] = ACTIONS(1515), + [anon_sym_or2] = ACTIONS(1515), + [anon_sym_not_DASHin2] = ACTIONS(1515), + [anon_sym_has2] = ACTIONS(1515), + [anon_sym_not_DASHhas2] = ACTIONS(1515), + [anon_sym_starts_DASHwith2] = ACTIONS(1515), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1515), + [anon_sym_ends_DASHwith2] = ACTIONS(1515), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1515), + [anon_sym_EQ_EQ2] = ACTIONS(1515), + [anon_sym_BANG_EQ2] = ACTIONS(1515), + [anon_sym_LT2] = ACTIONS(1513), + [anon_sym_LT_EQ2] = ACTIONS(1515), + [anon_sym_GT_EQ2] = ACTIONS(1515), + [anon_sym_EQ_TILDE2] = ACTIONS(1515), + [anon_sym_BANG_TILDE2] = ACTIONS(1515), + [anon_sym_like2] = ACTIONS(1515), + [anon_sym_not_DASHlike2] = ACTIONS(1515), + [anon_sym_STAR_STAR2] = ACTIONS(1515), + [anon_sym_PLUS_PLUS2] = ACTIONS(1513), + [anon_sym_SLASH2] = ACTIONS(1513), + [anon_sym_mod2] = ACTIONS(1515), + [anon_sym_SLASH_SLASH2] = ACTIONS(1515), + [anon_sym_PLUS2] = ACTIONS(1513), + [anon_sym_bit_DASHshl2] = ACTIONS(1515), + [anon_sym_bit_DASHshr2] = ACTIONS(1515), + [anon_sym_bit_DASHand2] = ACTIONS(1515), + [anon_sym_bit_DASHxor2] = ACTIONS(1515), + [anon_sym_bit_DASHor2] = ACTIONS(1515), + [anon_sym_DOT_DOT2] = ACTIONS(1513), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1515), + [anon_sym_QMARK2] = ACTIONS(1515), + [anon_sym_BANG] = ACTIONS(1513), + [anon_sym_DOT2] = ACTIONS(1513), + [anon_sym_err_GT] = ACTIONS(1513), + [anon_sym_out_GT] = ACTIONS(1513), + [anon_sym_e_GT] = ACTIONS(1513), + [anon_sym_o_GT] = ACTIONS(1513), + [anon_sym_err_PLUSout_GT] = ACTIONS(1513), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1513), + [anon_sym_o_PLUSe_GT] = ACTIONS(1513), + [anon_sym_e_PLUSo_GT] = ACTIONS(1513), + [anon_sym_err_GT_GT] = ACTIONS(1515), + [anon_sym_out_GT_GT] = ACTIONS(1515), + [anon_sym_e_GT_GT] = ACTIONS(1515), + [anon_sym_o_GT_GT] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1515), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(384)] = { + [sym_comment] = STATE(384), + [ts_builtin_sym_end] = ACTIONS(1519), + [anon_sym_EQ] = ACTIONS(1517), + [anon_sym_PLUS_EQ] = ACTIONS(1519), + [anon_sym_DASH_EQ] = ACTIONS(1519), + [anon_sym_STAR_EQ] = ACTIONS(1519), + [anon_sym_SLASH_EQ] = ACTIONS(1519), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1519), + [anon_sym_in] = ACTIONS(1519), + [sym__newline] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_err_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_GT_PIPE] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), + [anon_sym_GT2] = ACTIONS(1517), + [anon_sym_DASH2] = ACTIONS(1517), + [anon_sym_STAR2] = ACTIONS(1517), + [anon_sym_and2] = ACTIONS(1519), + [anon_sym_xor2] = ACTIONS(1519), + [anon_sym_or2] = ACTIONS(1519), + [anon_sym_not_DASHin2] = ACTIONS(1519), + [anon_sym_has2] = ACTIONS(1519), + [anon_sym_not_DASHhas2] = ACTIONS(1519), + [anon_sym_starts_DASHwith2] = ACTIONS(1519), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1519), + [anon_sym_ends_DASHwith2] = ACTIONS(1519), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1519), + [anon_sym_EQ_EQ2] = ACTIONS(1519), + [anon_sym_BANG_EQ2] = ACTIONS(1519), + [anon_sym_LT2] = ACTIONS(1517), + [anon_sym_LT_EQ2] = ACTIONS(1519), + [anon_sym_GT_EQ2] = ACTIONS(1519), + [anon_sym_EQ_TILDE2] = ACTIONS(1519), + [anon_sym_BANG_TILDE2] = ACTIONS(1519), + [anon_sym_like2] = ACTIONS(1519), + [anon_sym_not_DASHlike2] = ACTIONS(1519), + [anon_sym_STAR_STAR2] = ACTIONS(1519), + [anon_sym_PLUS_PLUS2] = ACTIONS(1517), + [anon_sym_SLASH2] = ACTIONS(1517), + [anon_sym_mod2] = ACTIONS(1519), + [anon_sym_SLASH_SLASH2] = ACTIONS(1519), + [anon_sym_PLUS2] = ACTIONS(1517), + [anon_sym_bit_DASHshl2] = ACTIONS(1519), + [anon_sym_bit_DASHshr2] = ACTIONS(1519), + [anon_sym_bit_DASHand2] = ACTIONS(1519), + [anon_sym_bit_DASHxor2] = ACTIONS(1519), + [anon_sym_bit_DASHor2] = ACTIONS(1519), + [anon_sym_DOT_DOT2] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), + [anon_sym_QMARK2] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1517), + [anon_sym_DOT2] = ACTIONS(1517), + [anon_sym_err_GT] = ACTIONS(1517), + [anon_sym_out_GT] = ACTIONS(1517), + [anon_sym_e_GT] = ACTIONS(1517), + [anon_sym_o_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT] = ACTIONS(1517), + [anon_sym_err_GT_GT] = ACTIONS(1519), + [anon_sym_out_GT_GT] = ACTIONS(1519), + [anon_sym_e_GT_GT] = ACTIONS(1519), + [anon_sym_o_GT_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(385)] = { + [sym_expr_parenthesized] = STATE(4058), + [sym__spread_parenthesized] = STATE(4700), + [sym_val_range] = STATE(4730), + [sym__val_range] = STATE(4544), + [sym__value] = STATE(4730), + [sym_val_nothing] = STATE(4604), + [sym_val_bool] = STATE(4358), + [sym__spread_variable] = STATE(4795), + [sym_val_variable] = STATE(3879), + [sym_val_cellpath] = STATE(4604), + [sym_val_number] = STATE(4604), + [sym__val_number_decimal] = STATE(3485), + [sym__val_number] = STATE(4361), + [sym_val_duration] = STATE(4604), + [sym_val_filesize] = STATE(4604), + [sym_val_binary] = STATE(4604), + [sym_val_string] = STATE(4604), + [sym__raw_str] = STATE(3638), + [sym__str_double_quotes] = STATE(3638), + [sym__str_single_quotes] = STATE(3638), + [sym__str_back_ticks] = STATE(3638), + [sym_val_interpolated] = STATE(4604), + [sym__inter_single_quotes] = STATE(4595), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4604), + [sym__spread_list] = STATE(4700), + [sym_list_body] = STATE(4876), + [sym_val_entry] = STATE(4576), + [sym_val_record] = STATE(4604), + [sym_val_table] = STATE(4604), + [sym_val_closure] = STATE(4604), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4730), + [sym__unquoted_anonymous_prefix] = STATE(4544), + [sym_comment] = STATE(385), + [aux_sym__types_body_repeat1] = STATE(458), + [aux_sym_parameter_repeat2] = STATE(4189), + [aux_sym_list_body_repeat1] = STATE(548), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), [sym__newline] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1607), + [anon_sym_RBRACK] = ACTIONS(1533), [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -77451,74 +77817,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(384)] = { - [sym_expr_parenthesized] = STATE(3911), - [sym__spread_parenthesized] = STATE(4721), - [sym_val_range] = STATE(4776), - [sym__val_range] = STATE(4523), - [sym__value] = STATE(4776), - [sym_val_nothing] = STATE(4452), - [sym_val_bool] = STATE(4309), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4452), - [sym_val_number] = STATE(4452), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4130), - [sym_val_duration] = STATE(4452), - [sym_val_filesize] = STATE(4452), - [sym_val_binary] = STATE(4452), - [sym_val_string] = STATE(4452), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4452), - [sym__inter_single_quotes] = STATE(4504), - [sym__inter_double_quotes] = STATE(4369), - [sym_val_list] = STATE(4452), - [sym__spread_list] = STATE(4721), - [sym_list_body] = STATE(4811), - [sym_val_entry] = STATE(4375), - [sym_val_record] = STATE(4452), - [sym_val_table] = STATE(4452), - [sym_val_closure] = STATE(4452), - [sym__unquoted_in_list] = STATE(4312), - [sym__unquoted_in_list_with_expr] = STATE(4776), - [sym__unquoted_anonymous_prefix] = STATE(4523), - [sym_comment] = STATE(384), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4329), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), + [STATE(386)] = { + [sym_path] = STATE(429), + [sym_comment] = STATE(386), + [aux_sym__where_predicate_lhs_repeat1] = STATE(387), + [ts_builtin_sym_end] = ACTIONS(1492), + [anon_sym_EQ] = ACTIONS(1490), + [anon_sym_PLUS_EQ] = ACTIONS(1492), + [anon_sym_DASH_EQ] = ACTIONS(1492), + [anon_sym_STAR_EQ] = ACTIONS(1492), + [anon_sym_SLASH_EQ] = ACTIONS(1492), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1492), + [anon_sym_in] = ACTIONS(1492), + [sym__newline] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_err_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_GT_PIPE] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), + [anon_sym_GT2] = ACTIONS(1490), + [anon_sym_DASH2] = ACTIONS(1490), + [anon_sym_STAR2] = ACTIONS(1490), + [anon_sym_and2] = ACTIONS(1492), + [anon_sym_xor2] = ACTIONS(1492), + [anon_sym_or2] = ACTIONS(1492), + [anon_sym_not_DASHin2] = ACTIONS(1492), + [anon_sym_has2] = ACTIONS(1492), + [anon_sym_not_DASHhas2] = ACTIONS(1492), + [anon_sym_starts_DASHwith2] = ACTIONS(1492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1492), + [anon_sym_ends_DASHwith2] = ACTIONS(1492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1492), + [anon_sym_EQ_EQ2] = ACTIONS(1492), + [anon_sym_BANG_EQ2] = ACTIONS(1492), + [anon_sym_LT2] = ACTIONS(1490), + [anon_sym_LT_EQ2] = ACTIONS(1492), + [anon_sym_GT_EQ2] = ACTIONS(1492), + [anon_sym_EQ_TILDE2] = ACTIONS(1492), + [anon_sym_BANG_TILDE2] = ACTIONS(1492), + [anon_sym_like2] = ACTIONS(1492), + [anon_sym_not_DASHlike2] = ACTIONS(1492), + [anon_sym_STAR_STAR2] = ACTIONS(1492), + [anon_sym_PLUS_PLUS2] = ACTIONS(1490), + [anon_sym_SLASH2] = ACTIONS(1490), + [anon_sym_mod2] = ACTIONS(1492), + [anon_sym_SLASH_SLASH2] = ACTIONS(1492), + [anon_sym_PLUS2] = ACTIONS(1490), + [anon_sym_bit_DASHshl2] = ACTIONS(1492), + [anon_sym_bit_DASHshr2] = ACTIONS(1492), + [anon_sym_bit_DASHand2] = ACTIONS(1492), + [anon_sym_bit_DASHxor2] = ACTIONS(1492), + [anon_sym_bit_DASHor2] = ACTIONS(1492), + [anon_sym_DOT_DOT2] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1492), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1492), + [anon_sym_DOT2] = ACTIONS(1562), + [anon_sym_err_GT] = ACTIONS(1490), + [anon_sym_out_GT] = ACTIONS(1490), + [anon_sym_e_GT] = ACTIONS(1490), + [anon_sym_o_GT] = ACTIONS(1490), + [anon_sym_err_PLUSout_GT] = ACTIONS(1490), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1490), + [anon_sym_o_PLUSe_GT] = ACTIONS(1490), + [anon_sym_e_PLUSo_GT] = ACTIONS(1490), + [anon_sym_err_GT_GT] = ACTIONS(1492), + [anon_sym_out_GT_GT] = ACTIONS(1492), + [anon_sym_e_GT_GT] = ACTIONS(1492), + [anon_sym_o_GT_GT] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(387)] = { + [sym_path] = STATE(429), + [sym_comment] = STATE(387), + [aux_sym__where_predicate_lhs_repeat1] = STATE(387), + [ts_builtin_sym_end] = ACTIONS(1496), + [anon_sym_EQ] = ACTIONS(1494), + [anon_sym_PLUS_EQ] = ACTIONS(1496), + [anon_sym_DASH_EQ] = ACTIONS(1496), + [anon_sym_STAR_EQ] = ACTIONS(1496), + [anon_sym_SLASH_EQ] = ACTIONS(1496), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1496), + [anon_sym_in] = ACTIONS(1496), + [sym__newline] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym_PIPE] = ACTIONS(1496), + [anon_sym_err_GT_PIPE] = ACTIONS(1496), + [anon_sym_out_GT_PIPE] = ACTIONS(1496), + [anon_sym_e_GT_PIPE] = ACTIONS(1496), + [anon_sym_o_GT_PIPE] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1496), + [anon_sym_GT2] = ACTIONS(1494), + [anon_sym_DASH2] = ACTIONS(1494), + [anon_sym_STAR2] = ACTIONS(1494), + [anon_sym_and2] = ACTIONS(1496), + [anon_sym_xor2] = ACTIONS(1496), + [anon_sym_or2] = ACTIONS(1496), + [anon_sym_not_DASHin2] = ACTIONS(1496), + [anon_sym_has2] = ACTIONS(1496), + [anon_sym_not_DASHhas2] = ACTIONS(1496), + [anon_sym_starts_DASHwith2] = ACTIONS(1496), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1496), + [anon_sym_ends_DASHwith2] = ACTIONS(1496), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1496), + [anon_sym_EQ_EQ2] = ACTIONS(1496), + [anon_sym_BANG_EQ2] = ACTIONS(1496), + [anon_sym_LT2] = ACTIONS(1494), + [anon_sym_LT_EQ2] = ACTIONS(1496), + [anon_sym_GT_EQ2] = ACTIONS(1496), + [anon_sym_EQ_TILDE2] = ACTIONS(1496), + [anon_sym_BANG_TILDE2] = ACTIONS(1496), + [anon_sym_like2] = ACTIONS(1496), + [anon_sym_not_DASHlike2] = ACTIONS(1496), + [anon_sym_STAR_STAR2] = ACTIONS(1496), + [anon_sym_PLUS_PLUS2] = ACTIONS(1494), + [anon_sym_SLASH2] = ACTIONS(1494), + [anon_sym_mod2] = ACTIONS(1496), + [anon_sym_SLASH_SLASH2] = ACTIONS(1496), + [anon_sym_PLUS2] = ACTIONS(1494), + [anon_sym_bit_DASHshl2] = ACTIONS(1496), + [anon_sym_bit_DASHshr2] = ACTIONS(1496), + [anon_sym_bit_DASHand2] = ACTIONS(1496), + [anon_sym_bit_DASHxor2] = ACTIONS(1496), + [anon_sym_bit_DASHor2] = ACTIONS(1496), + [anon_sym_DOT_DOT2] = ACTIONS(1494), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1496), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1496), + [anon_sym_DOT2] = ACTIONS(1600), + [anon_sym_err_GT] = ACTIONS(1494), + [anon_sym_out_GT] = ACTIONS(1494), + [anon_sym_e_GT] = ACTIONS(1494), + [anon_sym_o_GT] = ACTIONS(1494), + [anon_sym_err_PLUSout_GT] = ACTIONS(1494), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1494), + [anon_sym_o_PLUSe_GT] = ACTIONS(1494), + [anon_sym_e_PLUSo_GT] = ACTIONS(1494), + [anon_sym_err_GT_GT] = ACTIONS(1496), + [anon_sym_out_GT_GT] = ACTIONS(1496), + [anon_sym_e_GT_GT] = ACTIONS(1496), + [anon_sym_o_GT_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1496), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(388)] = { + [sym_expr_parenthesized] = STATE(4058), + [sym__spread_parenthesized] = STATE(4700), + [sym_val_range] = STATE(4730), + [sym__val_range] = STATE(4544), + [sym__value] = STATE(4730), + [sym_val_nothing] = STATE(4604), + [sym_val_bool] = STATE(4358), + [sym__spread_variable] = STATE(4795), + [sym_val_variable] = STATE(3879), + [sym_val_cellpath] = STATE(4604), + [sym_val_number] = STATE(4604), + [sym__val_number_decimal] = STATE(3485), + [sym__val_number] = STATE(4361), + [sym_val_duration] = STATE(4604), + [sym_val_filesize] = STATE(4604), + [sym_val_binary] = STATE(4604), + [sym_val_string] = STATE(4604), + [sym__raw_str] = STATE(3638), + [sym__str_double_quotes] = STATE(3638), + [sym__str_single_quotes] = STATE(3638), + [sym__str_back_ticks] = STATE(3638), + [sym_val_interpolated] = STATE(4604), + [sym__inter_single_quotes] = STATE(4595), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4604), + [sym__spread_list] = STATE(4700), + [sym_list_body] = STATE(4996), + [sym_val_entry] = STATE(4576), + [sym_val_record] = STATE(4604), + [sym_val_table] = STATE(4604), + [sym_val_closure] = STATE(4604), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4730), + [sym__unquoted_anonymous_prefix] = STATE(4544), + [sym_comment] = STATE(388), + [aux_sym__types_body_repeat1] = STATE(458), + [aux_sym_parameter_repeat2] = STATE(4189), + [aux_sym_list_body_repeat1] = STATE(548), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), [sym__newline] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1518), + [anon_sym_RBRACK] = ACTIONS(1603), [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -77529,152 +78051,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(385)] = { - [sym_comment] = STATE(385), - [anon_sym_EQ] = ACTIONS(1462), - [anon_sym_PLUS_EQ] = ACTIONS(1464), - [anon_sym_DASH_EQ] = ACTIONS(1464), - [anon_sym_STAR_EQ] = ACTIONS(1464), - [anon_sym_SLASH_EQ] = ACTIONS(1464), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [sym__newline] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_err_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_GT_PIPE] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1464), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_GT2] = ACTIONS(1462), - [anon_sym_DASH2] = ACTIONS(1462), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_STAR2] = ACTIONS(1462), - [anon_sym_and2] = ACTIONS(1464), - [anon_sym_xor2] = ACTIONS(1464), - [anon_sym_or2] = ACTIONS(1464), - [anon_sym_not_DASHin2] = ACTIONS(1464), - [anon_sym_has2] = ACTIONS(1464), - [anon_sym_not_DASHhas2] = ACTIONS(1464), - [anon_sym_starts_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1464), - [anon_sym_ends_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1464), - [anon_sym_EQ_EQ2] = ACTIONS(1464), - [anon_sym_BANG_EQ2] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1462), - [anon_sym_LT_EQ2] = ACTIONS(1464), - [anon_sym_GT_EQ2] = ACTIONS(1464), - [anon_sym_EQ_TILDE2] = ACTIONS(1464), - [anon_sym_BANG_TILDE2] = ACTIONS(1464), - [anon_sym_like2] = ACTIONS(1464), - [anon_sym_not_DASHlike2] = ACTIONS(1464), - [anon_sym_STAR_STAR2] = ACTIONS(1464), - [anon_sym_PLUS_PLUS2] = ACTIONS(1462), - [anon_sym_SLASH2] = ACTIONS(1462), - [anon_sym_mod2] = ACTIONS(1464), - [anon_sym_SLASH_SLASH2] = ACTIONS(1464), - [anon_sym_PLUS2] = ACTIONS(1462), - [anon_sym_bit_DASHshl2] = ACTIONS(1464), - [anon_sym_bit_DASHshr2] = ACTIONS(1464), - [anon_sym_bit_DASHand2] = ACTIONS(1464), - [anon_sym_bit_DASHxor2] = ACTIONS(1464), - [anon_sym_bit_DASHor2] = ACTIONS(1464), - [anon_sym_DOT_DOT2] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [anon_sym_COLON2] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), - [anon_sym_err_GT_GT] = ACTIONS(1464), - [anon_sym_out_GT_GT] = ACTIONS(1464), - [anon_sym_e_GT_GT] = ACTIONS(1464), - [anon_sym_o_GT_GT] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1464), + [STATE(389)] = { + [sym_comment] = STATE(389), + [ts_builtin_sym_end] = ACTIONS(1523), + [anon_sym_EQ] = ACTIONS(1521), + [anon_sym_PLUS_EQ] = ACTIONS(1523), + [anon_sym_DASH_EQ] = ACTIONS(1523), + [anon_sym_STAR_EQ] = ACTIONS(1523), + [anon_sym_SLASH_EQ] = ACTIONS(1523), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1523), + [anon_sym_in] = ACTIONS(1523), + [sym__newline] = ACTIONS(1523), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_PIPE] = ACTIONS(1523), + [anon_sym_err_GT_PIPE] = ACTIONS(1523), + [anon_sym_out_GT_PIPE] = ACTIONS(1523), + [anon_sym_e_GT_PIPE] = ACTIONS(1523), + [anon_sym_o_GT_PIPE] = ACTIONS(1523), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1523), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1523), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1523), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1523), + [anon_sym_GT2] = ACTIONS(1521), + [anon_sym_DASH2] = ACTIONS(1521), + [anon_sym_STAR2] = ACTIONS(1521), + [anon_sym_and2] = ACTIONS(1523), + [anon_sym_xor2] = ACTIONS(1523), + [anon_sym_or2] = ACTIONS(1523), + [anon_sym_not_DASHin2] = ACTIONS(1523), + [anon_sym_has2] = ACTIONS(1523), + [anon_sym_not_DASHhas2] = ACTIONS(1523), + [anon_sym_starts_DASHwith2] = ACTIONS(1523), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1523), + [anon_sym_ends_DASHwith2] = ACTIONS(1523), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1523), + [anon_sym_EQ_EQ2] = ACTIONS(1523), + [anon_sym_BANG_EQ2] = ACTIONS(1523), + [anon_sym_LT2] = ACTIONS(1521), + [anon_sym_LT_EQ2] = ACTIONS(1523), + [anon_sym_GT_EQ2] = ACTIONS(1523), + [anon_sym_EQ_TILDE2] = ACTIONS(1523), + [anon_sym_BANG_TILDE2] = ACTIONS(1523), + [anon_sym_like2] = ACTIONS(1523), + [anon_sym_not_DASHlike2] = ACTIONS(1523), + [anon_sym_STAR_STAR2] = ACTIONS(1523), + [anon_sym_PLUS_PLUS2] = ACTIONS(1521), + [anon_sym_SLASH2] = ACTIONS(1521), + [anon_sym_mod2] = ACTIONS(1523), + [anon_sym_SLASH_SLASH2] = ACTIONS(1523), + [anon_sym_PLUS2] = ACTIONS(1521), + [anon_sym_bit_DASHshl2] = ACTIONS(1523), + [anon_sym_bit_DASHshr2] = ACTIONS(1523), + [anon_sym_bit_DASHand2] = ACTIONS(1523), + [anon_sym_bit_DASHxor2] = ACTIONS(1523), + [anon_sym_bit_DASHor2] = ACTIONS(1523), + [anon_sym_DOT_DOT2] = ACTIONS(1521), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1523), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1523), + [anon_sym_QMARK2] = ACTIONS(1523), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_DOT2] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1521), + [anon_sym_out_GT] = ACTIONS(1521), + [anon_sym_e_GT] = ACTIONS(1521), + [anon_sym_o_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT] = ACTIONS(1521), + [anon_sym_err_GT_GT] = ACTIONS(1523), + [anon_sym_out_GT_GT] = ACTIONS(1523), + [anon_sym_e_GT_GT] = ACTIONS(1523), + [anon_sym_o_GT_GT] = ACTIONS(1523), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1523), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1523), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1523), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1523), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(386)] = { - [sym_expr_parenthesized] = STATE(3911), - [sym__spread_parenthesized] = STATE(4721), - [sym_val_range] = STATE(4776), - [sym__val_range] = STATE(4523), - [sym__value] = STATE(4776), - [sym_val_nothing] = STATE(4452), - [sym_val_bool] = STATE(4309), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4452), - [sym_val_number] = STATE(4452), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4130), - [sym_val_duration] = STATE(4452), - [sym_val_filesize] = STATE(4452), - [sym_val_binary] = STATE(4452), - [sym_val_string] = STATE(4452), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4452), - [sym__inter_single_quotes] = STATE(4504), - [sym__inter_double_quotes] = STATE(4369), - [sym_val_list] = STATE(4452), - [sym__spread_list] = STATE(4721), - [sym_list_body] = STATE(5010), - [sym_val_entry] = STATE(4375), - [sym_val_record] = STATE(4452), - [sym_val_table] = STATE(4452), - [sym_val_closure] = STATE(4452), - [sym__unquoted_in_list] = STATE(4312), - [sym__unquoted_in_list_with_expr] = STATE(4776), - [sym__unquoted_anonymous_prefix] = STATE(4523), - [sym_comment] = STATE(386), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4329), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), + [STATE(390)] = { + [sym_expr_parenthesized] = STATE(4058), + [sym__spread_parenthesized] = STATE(4700), + [sym_val_range] = STATE(4730), + [sym__val_range] = STATE(4544), + [sym__value] = STATE(4730), + [sym_val_nothing] = STATE(4604), + [sym_val_bool] = STATE(4358), + [sym__spread_variable] = STATE(4795), + [sym_val_variable] = STATE(3879), + [sym_val_cellpath] = STATE(4604), + [sym_val_number] = STATE(4604), + [sym__val_number_decimal] = STATE(3485), + [sym__val_number] = STATE(4361), + [sym_val_duration] = STATE(4604), + [sym_val_filesize] = STATE(4604), + [sym_val_binary] = STATE(4604), + [sym_val_string] = STATE(4604), + [sym__raw_str] = STATE(3638), + [sym__str_double_quotes] = STATE(3638), + [sym__str_single_quotes] = STATE(3638), + [sym__str_back_ticks] = STATE(3638), + [sym_val_interpolated] = STATE(4604), + [sym__inter_single_quotes] = STATE(4595), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4604), + [sym__spread_list] = STATE(4700), + [sym_list_body] = STATE(5036), + [sym_val_entry] = STATE(4576), + [sym_val_record] = STATE(4604), + [sym_val_table] = STATE(4604), + [sym_val_closure] = STATE(4604), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4730), + [sym__unquoted_anonymous_prefix] = STATE(4544), + [sym_comment] = STATE(390), + [aux_sym__types_body_repeat1] = STATE(458), + [aux_sym_parameter_repeat2] = STATE(4189), + [aux_sym_list_body_repeat1] = STATE(548), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), [sym__newline] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1609), + [anon_sym_RBRACK] = ACTIONS(1605), [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -77685,74 +78207,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(387)] = { - [sym_expr_parenthesized] = STATE(3911), - [sym__spread_parenthesized] = STATE(4721), - [sym_val_range] = STATE(4776), - [sym__val_range] = STATE(4523), - [sym__value] = STATE(4776), - [sym_val_nothing] = STATE(4452), - [sym_val_bool] = STATE(4309), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4452), - [sym_val_number] = STATE(4452), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4130), - [sym_val_duration] = STATE(4452), - [sym_val_filesize] = STATE(4452), - [sym_val_binary] = STATE(4452), - [sym_val_string] = STATE(4452), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4452), - [sym__inter_single_quotes] = STATE(4504), - [sym__inter_double_quotes] = STATE(4369), - [sym_val_list] = STATE(4452), - [sym__spread_list] = STATE(4721), - [sym_list_body] = STATE(4828), - [sym_val_entry] = STATE(4375), - [sym_val_record] = STATE(4452), - [sym_val_table] = STATE(4452), - [sym_val_closure] = STATE(4452), - [sym__unquoted_in_list] = STATE(4312), - [sym__unquoted_in_list_with_expr] = STATE(4776), - [sym__unquoted_anonymous_prefix] = STATE(4523), - [sym_comment] = STATE(387), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4329), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), + [STATE(391)] = { + [sym__expr_parenthesized_immediate] = STATE(704), + [sym__immediate_decimal] = STATE(705), + [sym_val_variable] = STATE(704), + [sym_comment] = STATE(391), + [anon_sym_in] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_RPAREN] = ACTIONS(1607), + [anon_sym_DOLLAR] = ACTIONS(1584), + [anon_sym_GT2] = ACTIONS(1609), + [anon_sym_DASH2] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1609), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_has2] = ACTIONS(1607), + [anon_sym_not_DASHhas2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1609), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_like2] = ACTIONS(1607), + [anon_sym_not_DASHlike2] = ACTIONS(1607), + [anon_sym_LPAREN2] = ACTIONS(1588), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1609), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1609), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT] = ACTIONS(1611), + [aux_sym__immediate_decimal_token1] = ACTIONS(1592), + [aux_sym__immediate_decimal_token2] = ACTIONS(1592), + [aux_sym__immediate_decimal_token3] = ACTIONS(1594), + [aux_sym__immediate_decimal_token4] = ACTIONS(1594), + [anon_sym_err_GT] = ACTIONS(1609), + [anon_sym_out_GT] = ACTIONS(1609), + [anon_sym_e_GT] = ACTIONS(1609), + [anon_sym_o_GT] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT] = ACTIONS(1609), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(392)] = { + [sym_expr_parenthesized] = STATE(4058), + [sym__spread_parenthesized] = STATE(4700), + [sym_val_range] = STATE(4730), + [sym__val_range] = STATE(4544), + [sym__value] = STATE(4730), + [sym_val_nothing] = STATE(4604), + [sym_val_bool] = STATE(4358), + [sym__spread_variable] = STATE(4795), + [sym_val_variable] = STATE(3879), + [sym_val_cellpath] = STATE(4604), + [sym_val_number] = STATE(4604), + [sym__val_number_decimal] = STATE(3485), + [sym__val_number] = STATE(4361), + [sym_val_duration] = STATE(4604), + [sym_val_filesize] = STATE(4604), + [sym_val_binary] = STATE(4604), + [sym_val_string] = STATE(4604), + [sym__raw_str] = STATE(3638), + [sym__str_double_quotes] = STATE(3638), + [sym__str_single_quotes] = STATE(3638), + [sym__str_back_ticks] = STATE(3638), + [sym_val_interpolated] = STATE(4604), + [sym__inter_single_quotes] = STATE(4595), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4604), + [sym__spread_list] = STATE(4700), + [sym_list_body] = STATE(5110), + [sym_val_entry] = STATE(4576), + [sym_val_record] = STATE(4604), + [sym_val_table] = STATE(4604), + [sym_val_closure] = STATE(4604), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4730), + [sym__unquoted_anonymous_prefix] = STATE(4544), + [sym_comment] = STATE(392), + [aux_sym__types_body_repeat1] = STATE(458), + [aux_sym_parameter_repeat2] = STATE(4189), + [aux_sym_list_body_repeat1] = STATE(548), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), [sym__newline] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1611), + [anon_sym_RBRACK] = ACTIONS(1547), [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -77763,698 +78363,308 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(388)] = { - [sym_comment] = STATE(388), - [anon_sym_EQ] = ACTIONS(1520), - [anon_sym_PLUS_EQ] = ACTIONS(1522), - [anon_sym_DASH_EQ] = ACTIONS(1522), - [anon_sym_STAR_EQ] = ACTIONS(1522), - [anon_sym_SLASH_EQ] = ACTIONS(1522), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1522), - [anon_sym_in] = ACTIONS(1522), - [sym__newline] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_err_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_GT_PIPE] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1522), - [anon_sym_RPAREN] = ACTIONS(1522), - [anon_sym_GT2] = ACTIONS(1520), - [anon_sym_DASH2] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1522), - [anon_sym_STAR2] = ACTIONS(1520), - [anon_sym_and2] = ACTIONS(1522), - [anon_sym_xor2] = ACTIONS(1522), - [anon_sym_or2] = ACTIONS(1522), - [anon_sym_not_DASHin2] = ACTIONS(1522), - [anon_sym_has2] = ACTIONS(1522), - [anon_sym_not_DASHhas2] = ACTIONS(1522), - [anon_sym_starts_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1522), - [anon_sym_ends_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1522), - [anon_sym_EQ_EQ2] = ACTIONS(1522), - [anon_sym_BANG_EQ2] = ACTIONS(1522), - [anon_sym_LT2] = ACTIONS(1520), - [anon_sym_LT_EQ2] = ACTIONS(1522), - [anon_sym_GT_EQ2] = ACTIONS(1522), - [anon_sym_EQ_TILDE2] = ACTIONS(1522), - [anon_sym_BANG_TILDE2] = ACTIONS(1522), - [anon_sym_like2] = ACTIONS(1522), - [anon_sym_not_DASHlike2] = ACTIONS(1522), - [anon_sym_STAR_STAR2] = ACTIONS(1522), - [anon_sym_PLUS_PLUS2] = ACTIONS(1520), - [anon_sym_SLASH2] = ACTIONS(1520), - [anon_sym_mod2] = ACTIONS(1522), - [anon_sym_SLASH_SLASH2] = ACTIONS(1522), - [anon_sym_PLUS2] = ACTIONS(1520), - [anon_sym_bit_DASHshl2] = ACTIONS(1522), - [anon_sym_bit_DASHshr2] = ACTIONS(1522), - [anon_sym_bit_DASHand2] = ACTIONS(1522), - [anon_sym_bit_DASHxor2] = ACTIONS(1522), - [anon_sym_bit_DASHor2] = ACTIONS(1522), - [anon_sym_DOT_DOT2] = ACTIONS(1520), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1522), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1522), - [anon_sym_COLON2] = ACTIONS(1522), - [anon_sym_DOT2] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1520), - [anon_sym_out_GT] = ACTIONS(1520), - [anon_sym_e_GT] = ACTIONS(1520), - [anon_sym_o_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT] = ACTIONS(1520), - [anon_sym_err_GT_GT] = ACTIONS(1522), - [anon_sym_out_GT_GT] = ACTIONS(1522), - [anon_sym_e_GT_GT] = ACTIONS(1522), - [anon_sym_o_GT_GT] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1522), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(389)] = { - [sym__expr_parenthesized_immediate] = STATE(698), - [sym__immediate_decimal] = STATE(645), - [sym_val_variable] = STATE(698), - [sym_comment] = STATE(389), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_RPAREN] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_RBRACE] = ACTIONS(1596), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [anon_sym_DOT] = ACTIONS(1613), - [aux_sym__immediate_decimal_token1] = ACTIONS(1592), - [aux_sym__immediate_decimal_token2] = ACTIONS(1592), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), - [sym__unquoted_pattern] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(390)] = { - [sym_comment] = STATE(390), - [anon_sym_EQ] = ACTIONS(1535), - [anon_sym_PLUS_EQ] = ACTIONS(1537), - [anon_sym_DASH_EQ] = ACTIONS(1537), - [anon_sym_STAR_EQ] = ACTIONS(1537), - [anon_sym_SLASH_EQ] = ACTIONS(1537), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1537), - [anon_sym_in] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_RPAREN] = ACTIONS(1537), - [anon_sym_GT2] = ACTIONS(1535), - [anon_sym_DASH2] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_STAR2] = ACTIONS(1535), - [anon_sym_and2] = ACTIONS(1537), - [anon_sym_xor2] = ACTIONS(1537), - [anon_sym_or2] = ACTIONS(1537), - [anon_sym_not_DASHin2] = ACTIONS(1537), - [anon_sym_has2] = ACTIONS(1537), - [anon_sym_not_DASHhas2] = ACTIONS(1537), - [anon_sym_starts_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1537), - [anon_sym_ends_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1537), - [anon_sym_EQ_EQ2] = ACTIONS(1537), - [anon_sym_BANG_EQ2] = ACTIONS(1537), - [anon_sym_LT2] = ACTIONS(1535), - [anon_sym_LT_EQ2] = ACTIONS(1537), - [anon_sym_GT_EQ2] = ACTIONS(1537), - [anon_sym_EQ_TILDE2] = ACTIONS(1537), - [anon_sym_BANG_TILDE2] = ACTIONS(1537), - [anon_sym_like2] = ACTIONS(1537), - [anon_sym_not_DASHlike2] = ACTIONS(1537), - [anon_sym_STAR_STAR2] = ACTIONS(1537), - [anon_sym_PLUS_PLUS2] = ACTIONS(1535), - [anon_sym_SLASH2] = ACTIONS(1535), - [anon_sym_mod2] = ACTIONS(1537), - [anon_sym_SLASH_SLASH2] = ACTIONS(1537), - [anon_sym_PLUS2] = ACTIONS(1535), - [anon_sym_bit_DASHshl2] = ACTIONS(1537), - [anon_sym_bit_DASHshr2] = ACTIONS(1537), - [anon_sym_bit_DASHand2] = ACTIONS(1537), - [anon_sym_bit_DASHxor2] = ACTIONS(1537), - [anon_sym_bit_DASHor2] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [anon_sym_COLON2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(391)] = { - [sym_comment] = STATE(391), - [ts_builtin_sym_end] = ACTIONS(1480), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_PLUS_EQ] = ACTIONS(1480), - [anon_sym_DASH_EQ] = ACTIONS(1480), - [anon_sym_STAR_EQ] = ACTIONS(1480), - [anon_sym_SLASH_EQ] = ACTIONS(1480), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1480), - [anon_sym_in] = ACTIONS(1480), - [sym__newline] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_err_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_GT_PIPE] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1480), - [anon_sym_GT2] = ACTIONS(1478), - [anon_sym_DASH2] = ACTIONS(1478), - [anon_sym_STAR2] = ACTIONS(1478), - [anon_sym_and2] = ACTIONS(1480), - [anon_sym_xor2] = ACTIONS(1480), - [anon_sym_or2] = ACTIONS(1480), - [anon_sym_not_DASHin2] = ACTIONS(1480), - [anon_sym_has2] = ACTIONS(1480), - [anon_sym_not_DASHhas2] = ACTIONS(1480), - [anon_sym_starts_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1480), - [anon_sym_ends_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1480), - [anon_sym_EQ_EQ2] = ACTIONS(1480), - [anon_sym_BANG_EQ2] = ACTIONS(1480), - [anon_sym_LT2] = ACTIONS(1478), - [anon_sym_LT_EQ2] = ACTIONS(1480), - [anon_sym_GT_EQ2] = ACTIONS(1480), - [anon_sym_EQ_TILDE2] = ACTIONS(1480), - [anon_sym_BANG_TILDE2] = ACTIONS(1480), - [anon_sym_like2] = ACTIONS(1480), - [anon_sym_not_DASHlike2] = ACTIONS(1480), - [anon_sym_STAR_STAR2] = ACTIONS(1480), - [anon_sym_PLUS_PLUS2] = ACTIONS(1478), - [anon_sym_SLASH2] = ACTIONS(1478), - [anon_sym_mod2] = ACTIONS(1480), - [anon_sym_SLASH_SLASH2] = ACTIONS(1480), - [anon_sym_PLUS2] = ACTIONS(1478), - [anon_sym_bit_DASHshl2] = ACTIONS(1480), - [anon_sym_bit_DASHshr2] = ACTIONS(1480), - [anon_sym_bit_DASHand2] = ACTIONS(1480), - [anon_sym_bit_DASHxor2] = ACTIONS(1480), - [anon_sym_bit_DASHor2] = ACTIONS(1480), - [anon_sym_DOT_DOT2] = ACTIONS(1478), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1480), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1480), - [anon_sym_QMARK2] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_DOT2] = ACTIONS(1478), - [anon_sym_err_GT] = ACTIONS(1478), - [anon_sym_out_GT] = ACTIONS(1478), - [anon_sym_e_GT] = ACTIONS(1478), - [anon_sym_o_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT] = ACTIONS(1478), - [anon_sym_err_GT_GT] = ACTIONS(1480), - [anon_sym_out_GT_GT] = ACTIONS(1480), - [anon_sym_e_GT_GT] = ACTIONS(1480), - [anon_sym_o_GT_GT] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1480), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(392)] = { - [sym_comment] = STATE(392), - [ts_builtin_sym_end] = ACTIONS(1545), - [anon_sym_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1545), - [anon_sym_DASH_EQ] = ACTIONS(1545), - [anon_sym_STAR_EQ] = ACTIONS(1545), - [anon_sym_SLASH_EQ] = ACTIONS(1545), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1545), - [anon_sym_in] = ACTIONS(1545), - [sym__newline] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_err_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_GT_PIPE] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1545), - [anon_sym_GT2] = ACTIONS(1543), - [anon_sym_DASH2] = ACTIONS(1543), - [anon_sym_STAR2] = ACTIONS(1543), - [anon_sym_and2] = ACTIONS(1545), - [anon_sym_xor2] = ACTIONS(1545), - [anon_sym_or2] = ACTIONS(1545), - [anon_sym_not_DASHin2] = ACTIONS(1545), - [anon_sym_has2] = ACTIONS(1545), - [anon_sym_not_DASHhas2] = ACTIONS(1545), - [anon_sym_starts_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1545), - [anon_sym_ends_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1545), - [anon_sym_EQ_EQ2] = ACTIONS(1545), - [anon_sym_BANG_EQ2] = ACTIONS(1545), - [anon_sym_LT2] = ACTIONS(1543), - [anon_sym_LT_EQ2] = ACTIONS(1545), - [anon_sym_GT_EQ2] = ACTIONS(1545), - [anon_sym_EQ_TILDE2] = ACTIONS(1545), - [anon_sym_BANG_TILDE2] = ACTIONS(1545), - [anon_sym_like2] = ACTIONS(1545), - [anon_sym_not_DASHlike2] = ACTIONS(1545), - [anon_sym_STAR_STAR2] = ACTIONS(1545), - [anon_sym_PLUS_PLUS2] = ACTIONS(1543), - [anon_sym_SLASH2] = ACTIONS(1543), - [anon_sym_mod2] = ACTIONS(1545), - [anon_sym_SLASH_SLASH2] = ACTIONS(1545), - [anon_sym_PLUS2] = ACTIONS(1543), - [anon_sym_bit_DASHshl2] = ACTIONS(1545), - [anon_sym_bit_DASHshr2] = ACTIONS(1545), - [anon_sym_bit_DASHand2] = ACTIONS(1545), - [anon_sym_bit_DASHxor2] = ACTIONS(1545), - [anon_sym_bit_DASHor2] = ACTIONS(1545), - [anon_sym_DOT_DOT2] = ACTIONS(1543), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1545), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1545), - [anon_sym_QMARK2] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_DOT2] = ACTIONS(1543), - [anon_sym_err_GT] = ACTIONS(1543), - [anon_sym_out_GT] = ACTIONS(1543), - [anon_sym_e_GT] = ACTIONS(1543), - [anon_sym_o_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT] = ACTIONS(1543), - [anon_sym_err_GT_GT] = ACTIONS(1545), - [anon_sym_out_GT_GT] = ACTIONS(1545), - [anon_sym_e_GT_GT] = ACTIONS(1545), - [anon_sym_o_GT_GT] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1545), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(393)] = { [sym_comment] = STATE(393), - [ts_builtin_sym_end] = ACTIONS(1468), - [anon_sym_EQ] = ACTIONS(1466), - [anon_sym_PLUS_EQ] = ACTIONS(1468), - [anon_sym_DASH_EQ] = ACTIONS(1468), - [anon_sym_STAR_EQ] = ACTIONS(1468), - [anon_sym_SLASH_EQ] = ACTIONS(1468), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1468), - [anon_sym_in] = ACTIONS(1468), - [sym__newline] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_err_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_GT_PIPE] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), - [anon_sym_GT2] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1466), - [anon_sym_STAR2] = ACTIONS(1466), - [anon_sym_and2] = ACTIONS(1468), - [anon_sym_xor2] = ACTIONS(1468), - [anon_sym_or2] = ACTIONS(1468), - [anon_sym_not_DASHin2] = ACTIONS(1468), - [anon_sym_has2] = ACTIONS(1468), - [anon_sym_not_DASHhas2] = ACTIONS(1468), - [anon_sym_starts_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), - [anon_sym_ends_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), - [anon_sym_EQ_EQ2] = ACTIONS(1468), - [anon_sym_BANG_EQ2] = ACTIONS(1468), - [anon_sym_LT2] = ACTIONS(1466), - [anon_sym_LT_EQ2] = ACTIONS(1468), - [anon_sym_GT_EQ2] = ACTIONS(1468), - [anon_sym_EQ_TILDE2] = ACTIONS(1468), - [anon_sym_BANG_TILDE2] = ACTIONS(1468), - [anon_sym_like2] = ACTIONS(1468), - [anon_sym_not_DASHlike2] = ACTIONS(1468), - [anon_sym_STAR_STAR2] = ACTIONS(1468), - [anon_sym_PLUS_PLUS2] = ACTIONS(1466), - [anon_sym_SLASH2] = ACTIONS(1466), - [anon_sym_mod2] = ACTIONS(1468), - [anon_sym_SLASH_SLASH2] = ACTIONS(1468), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_bit_DASHshl2] = ACTIONS(1468), - [anon_sym_bit_DASHshr2] = ACTIONS(1468), - [anon_sym_bit_DASHand2] = ACTIONS(1468), - [anon_sym_bit_DASHxor2] = ACTIONS(1468), - [anon_sym_bit_DASHor2] = ACTIONS(1468), - [anon_sym_DOT_DOT2] = ACTIONS(1466), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), - [anon_sym_QMARK2] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1468), - [anon_sym_out_GT_GT] = ACTIONS(1468), - [anon_sym_e_GT_GT] = ACTIONS(1468), - [anon_sym_o_GT_GT] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__types_body_repeat2] = STATE(1460), + [anon_sym_EQ] = ACTIONS(1613), + [anon_sym_PLUS_EQ] = ACTIONS(1613), + [anon_sym_DASH_EQ] = ACTIONS(1613), + [anon_sym_STAR_EQ] = ACTIONS(1613), + [anon_sym_SLASH_EQ] = ACTIONS(1613), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1613), + [anon_sym_in] = ACTIONS(1615), + [sym__newline] = ACTIONS(1615), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_PIPE] = ACTIONS(1615), + [anon_sym_err_GT_PIPE] = ACTIONS(1615), + [anon_sym_out_GT_PIPE] = ACTIONS(1615), + [anon_sym_e_GT_PIPE] = ACTIONS(1615), + [anon_sym_o_GT_PIPE] = ACTIONS(1615), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1615), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1615), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1615), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1615), + [anon_sym_GT2] = ACTIONS(1615), + [anon_sym_DASH2] = ACTIONS(1615), + [anon_sym_RBRACE] = ACTIONS(1617), + [anon_sym_STAR2] = ACTIONS(1615), + [anon_sym_and2] = ACTIONS(1615), + [anon_sym_xor2] = ACTIONS(1615), + [anon_sym_or2] = ACTIONS(1615), + [anon_sym_not_DASHin2] = ACTIONS(1615), + [anon_sym_has2] = ACTIONS(1615), + [anon_sym_not_DASHhas2] = ACTIONS(1615), + [anon_sym_starts_DASHwith2] = ACTIONS(1615), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1615), + [anon_sym_ends_DASHwith2] = ACTIONS(1615), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1615), + [anon_sym_EQ_EQ2] = ACTIONS(1615), + [anon_sym_BANG_EQ2] = ACTIONS(1615), + [anon_sym_LT2] = ACTIONS(1615), + [anon_sym_LT_EQ2] = ACTIONS(1615), + [anon_sym_GT_EQ2] = ACTIONS(1615), + [anon_sym_EQ_TILDE2] = ACTIONS(1615), + [anon_sym_BANG_TILDE2] = ACTIONS(1615), + [anon_sym_like2] = ACTIONS(1615), + [anon_sym_not_DASHlike2] = ACTIONS(1615), + [anon_sym_STAR_STAR2] = ACTIONS(1615), + [anon_sym_PLUS_PLUS2] = ACTIONS(1615), + [anon_sym_SLASH2] = ACTIONS(1615), + [anon_sym_mod2] = ACTIONS(1615), + [anon_sym_SLASH_SLASH2] = ACTIONS(1615), + [anon_sym_PLUS2] = ACTIONS(1615), + [anon_sym_bit_DASHshl2] = ACTIONS(1615), + [anon_sym_bit_DASHshr2] = ACTIONS(1615), + [anon_sym_bit_DASHand2] = ACTIONS(1615), + [anon_sym_bit_DASHxor2] = ACTIONS(1615), + [anon_sym_bit_DASHor2] = ACTIONS(1615), + [anon_sym_DOT_DOT2] = ACTIONS(1619), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), + [sym__entry_separator] = ACTIONS(1623), + [anon_sym_COLON2] = ACTIONS(1625), + [anon_sym_err_GT] = ACTIONS(1615), + [anon_sym_out_GT] = ACTIONS(1615), + [anon_sym_e_GT] = ACTIONS(1615), + [anon_sym_o_GT] = ACTIONS(1615), + [anon_sym_err_PLUSout_GT] = ACTIONS(1615), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), + [anon_sym_o_PLUSe_GT] = ACTIONS(1615), + [anon_sym_e_PLUSo_GT] = ACTIONS(1615), + [anon_sym_err_GT_GT] = ACTIONS(1615), + [anon_sym_out_GT_GT] = ACTIONS(1615), + [anon_sym_e_GT_GT] = ACTIONS(1615), + [anon_sym_o_GT_GT] = ACTIONS(1615), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1615), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1615), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1615), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1615), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(394)] = { [sym_comment] = STATE(394), - [ts_builtin_sym_end] = ACTIONS(1472), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_PLUS_EQ] = ACTIONS(1472), - [anon_sym_DASH_EQ] = ACTIONS(1472), - [anon_sym_STAR_EQ] = ACTIONS(1472), - [anon_sym_SLASH_EQ] = ACTIONS(1472), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1472), - [anon_sym_in] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_GT2] = ACTIONS(1470), - [anon_sym_DASH2] = ACTIONS(1470), - [anon_sym_STAR2] = ACTIONS(1470), - [anon_sym_and2] = ACTIONS(1472), - [anon_sym_xor2] = ACTIONS(1472), - [anon_sym_or2] = ACTIONS(1472), - [anon_sym_not_DASHin2] = ACTIONS(1472), - [anon_sym_has2] = ACTIONS(1472), - [anon_sym_not_DASHhas2] = ACTIONS(1472), - [anon_sym_starts_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1472), - [anon_sym_ends_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1472), - [anon_sym_EQ_EQ2] = ACTIONS(1472), - [anon_sym_BANG_EQ2] = ACTIONS(1472), - [anon_sym_LT2] = ACTIONS(1470), - [anon_sym_LT_EQ2] = ACTIONS(1472), - [anon_sym_GT_EQ2] = ACTIONS(1472), - [anon_sym_EQ_TILDE2] = ACTIONS(1472), - [anon_sym_BANG_TILDE2] = ACTIONS(1472), - [anon_sym_like2] = ACTIONS(1472), - [anon_sym_not_DASHlike2] = ACTIONS(1472), - [anon_sym_STAR_STAR2] = ACTIONS(1472), - [anon_sym_PLUS_PLUS2] = ACTIONS(1470), - [anon_sym_SLASH2] = ACTIONS(1470), - [anon_sym_mod2] = ACTIONS(1472), - [anon_sym_SLASH_SLASH2] = ACTIONS(1472), - [anon_sym_PLUS2] = ACTIONS(1470), - [anon_sym_bit_DASHshl2] = ACTIONS(1472), - [anon_sym_bit_DASHshr2] = ACTIONS(1472), - [anon_sym_bit_DASHand2] = ACTIONS(1472), - [anon_sym_bit_DASHxor2] = ACTIONS(1472), - [anon_sym_bit_DASHor2] = ACTIONS(1472), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [anon_sym_QMARK2] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), + [anon_sym_EQ] = ACTIONS(1552), + [anon_sym_PLUS_EQ] = ACTIONS(1554), + [anon_sym_DASH_EQ] = ACTIONS(1554), + [anon_sym_STAR_EQ] = ACTIONS(1554), + [anon_sym_SLASH_EQ] = ACTIONS(1554), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1554), + [anon_sym_in] = ACTIONS(1554), + [sym__newline] = ACTIONS(1554), + [anon_sym_SEMI] = ACTIONS(1554), + [anon_sym_PIPE] = ACTIONS(1554), + [anon_sym_err_GT_PIPE] = ACTIONS(1554), + [anon_sym_out_GT_PIPE] = ACTIONS(1554), + [anon_sym_e_GT_PIPE] = ACTIONS(1554), + [anon_sym_o_GT_PIPE] = ACTIONS(1554), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1554), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1554), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1554), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1554), + [anon_sym_RPAREN] = ACTIONS(1554), + [anon_sym_GT2] = ACTIONS(1552), + [anon_sym_DASH2] = ACTIONS(1552), + [anon_sym_RBRACE] = ACTIONS(1554), + [anon_sym_STAR2] = ACTIONS(1552), + [anon_sym_and2] = ACTIONS(1554), + [anon_sym_xor2] = ACTIONS(1554), + [anon_sym_or2] = ACTIONS(1554), + [anon_sym_not_DASHin2] = ACTIONS(1554), + [anon_sym_has2] = ACTIONS(1554), + [anon_sym_not_DASHhas2] = ACTIONS(1554), + [anon_sym_starts_DASHwith2] = ACTIONS(1554), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1554), + [anon_sym_ends_DASHwith2] = ACTIONS(1554), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1554), + [anon_sym_EQ_EQ2] = ACTIONS(1554), + [anon_sym_BANG_EQ2] = ACTIONS(1554), + [anon_sym_LT2] = ACTIONS(1552), + [anon_sym_LT_EQ2] = ACTIONS(1554), + [anon_sym_GT_EQ2] = ACTIONS(1554), + [anon_sym_EQ_TILDE2] = ACTIONS(1554), + [anon_sym_BANG_TILDE2] = ACTIONS(1554), + [anon_sym_like2] = ACTIONS(1554), + [anon_sym_not_DASHlike2] = ACTIONS(1554), + [anon_sym_STAR_STAR2] = ACTIONS(1554), + [anon_sym_PLUS_PLUS2] = ACTIONS(1552), + [anon_sym_SLASH2] = ACTIONS(1552), + [anon_sym_mod2] = ACTIONS(1554), + [anon_sym_SLASH_SLASH2] = ACTIONS(1554), + [anon_sym_PLUS2] = ACTIONS(1552), + [anon_sym_bit_DASHshl2] = ACTIONS(1554), + [anon_sym_bit_DASHshr2] = ACTIONS(1554), + [anon_sym_bit_DASHand2] = ACTIONS(1554), + [anon_sym_bit_DASHxor2] = ACTIONS(1554), + [anon_sym_bit_DASHor2] = ACTIONS(1554), + [anon_sym_DOT_DOT2] = ACTIONS(1552), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1554), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1554), + [anon_sym_COLON2] = ACTIONS(1554), + [anon_sym_DOT2] = ACTIONS(1552), + [anon_sym_err_GT] = ACTIONS(1552), + [anon_sym_out_GT] = ACTIONS(1552), + [anon_sym_e_GT] = ACTIONS(1552), + [anon_sym_o_GT] = ACTIONS(1552), + [anon_sym_err_PLUSout_GT] = ACTIONS(1552), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1552), + [anon_sym_o_PLUSe_GT] = ACTIONS(1552), + [anon_sym_e_PLUSo_GT] = ACTIONS(1552), + [anon_sym_err_GT_GT] = ACTIONS(1554), + [anon_sym_out_GT_GT] = ACTIONS(1554), + [anon_sym_e_GT_GT] = ACTIONS(1554), + [anon_sym_o_GT_GT] = ACTIONS(1554), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1554), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1554), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1554), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1554), [anon_sym_POUND] = ACTIONS(3), }, [STATE(395)] = { + [sym_expr_parenthesized] = STATE(4058), + [sym__spread_parenthesized] = STATE(4700), + [sym_val_range] = STATE(4730), + [sym__val_range] = STATE(4544), + [sym__value] = STATE(4730), + [sym_val_nothing] = STATE(4604), + [sym_val_bool] = STATE(4358), + [sym__spread_variable] = STATE(4795), + [sym_val_variable] = STATE(3879), + [sym_val_cellpath] = STATE(4604), + [sym_val_number] = STATE(4604), + [sym__val_number_decimal] = STATE(3485), + [sym__val_number] = STATE(4361), + [sym_val_duration] = STATE(4604), + [sym_val_filesize] = STATE(4604), + [sym_val_binary] = STATE(4604), + [sym_val_string] = STATE(4604), + [sym__raw_str] = STATE(3638), + [sym__str_double_quotes] = STATE(3638), + [sym__str_single_quotes] = STATE(3638), + [sym__str_back_ticks] = STATE(3638), + [sym_val_interpolated] = STATE(4604), + [sym__inter_single_quotes] = STATE(4595), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4604), + [sym__spread_list] = STATE(4700), + [sym_list_body] = STATE(4851), + [sym_val_entry] = STATE(4576), + [sym_val_record] = STATE(4604), + [sym_val_table] = STATE(4604), + [sym_val_closure] = STATE(4604), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4730), + [sym__unquoted_anonymous_prefix] = STATE(4544), [sym_comment] = STATE(395), - [ts_builtin_sym_end] = ACTIONS(1516), - [anon_sym_EQ] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(1516), - [anon_sym_DASH_EQ] = ACTIONS(1516), - [anon_sym_STAR_EQ] = ACTIONS(1516), - [anon_sym_SLASH_EQ] = ACTIONS(1516), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1516), - [anon_sym_in] = ACTIONS(1516), - [sym__newline] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_err_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_GT_PIPE] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1516), - [anon_sym_GT2] = ACTIONS(1514), - [anon_sym_DASH2] = ACTIONS(1514), - [anon_sym_STAR2] = ACTIONS(1514), - [anon_sym_and2] = ACTIONS(1516), - [anon_sym_xor2] = ACTIONS(1516), - [anon_sym_or2] = ACTIONS(1516), - [anon_sym_not_DASHin2] = ACTIONS(1516), - [anon_sym_has2] = ACTIONS(1516), - [anon_sym_not_DASHhas2] = ACTIONS(1516), - [anon_sym_starts_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1516), - [anon_sym_ends_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1516), - [anon_sym_EQ_EQ2] = ACTIONS(1516), - [anon_sym_BANG_EQ2] = ACTIONS(1516), - [anon_sym_LT2] = ACTIONS(1514), - [anon_sym_LT_EQ2] = ACTIONS(1516), - [anon_sym_GT_EQ2] = ACTIONS(1516), - [anon_sym_EQ_TILDE2] = ACTIONS(1516), - [anon_sym_BANG_TILDE2] = ACTIONS(1516), - [anon_sym_like2] = ACTIONS(1516), - [anon_sym_not_DASHlike2] = ACTIONS(1516), - [anon_sym_STAR_STAR2] = ACTIONS(1516), - [anon_sym_PLUS_PLUS2] = ACTIONS(1514), - [anon_sym_SLASH2] = ACTIONS(1514), - [anon_sym_mod2] = ACTIONS(1516), - [anon_sym_SLASH_SLASH2] = ACTIONS(1516), - [anon_sym_PLUS2] = ACTIONS(1514), - [anon_sym_bit_DASHshl2] = ACTIONS(1516), - [anon_sym_bit_DASHshr2] = ACTIONS(1516), - [anon_sym_bit_DASHand2] = ACTIONS(1516), - [anon_sym_bit_DASHxor2] = ACTIONS(1516), - [anon_sym_bit_DASHor2] = ACTIONS(1516), - [anon_sym_DOT_DOT2] = ACTIONS(1514), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1516), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1516), - [anon_sym_QMARK2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_DOT2] = ACTIONS(1514), - [anon_sym_err_GT] = ACTIONS(1514), - [anon_sym_out_GT] = ACTIONS(1514), - [anon_sym_e_GT] = ACTIONS(1514), - [anon_sym_o_GT] = ACTIONS(1514), - [anon_sym_err_PLUSout_GT] = ACTIONS(1514), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1514), - [anon_sym_o_PLUSe_GT] = ACTIONS(1514), - [anon_sym_e_PLUSo_GT] = ACTIONS(1514), - [anon_sym_err_GT_GT] = ACTIONS(1516), - [anon_sym_out_GT_GT] = ACTIONS(1516), - [anon_sym_e_GT_GT] = ACTIONS(1516), - [anon_sym_o_GT_GT] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1516), + [aux_sym__types_body_repeat1] = STATE(458), + [aux_sym_parameter_repeat2] = STATE(4189), + [aux_sym_list_body_repeat1] = STATE(548), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), + [sym__newline] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(1578), + [anon_sym_RBRACK] = ACTIONS(1541), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_COMMA] = ACTIONS(1474), + [anon_sym_DOLLAR] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_token1] = ACTIONS(1404), + [aux_sym__val_number_token2] = ACTIONS(1404), + [aux_sym__val_number_token3] = ACTIONS(1404), + [anon_sym_0b] = ACTIONS(1406), + [anon_sym_0o] = ACTIONS(1408), + [anon_sym_0x] = ACTIONS(1408), + [sym_val_date] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_BQUOTE] = ACTIONS(1416), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1426), }, [STATE(396)] = { - [sym_expr_parenthesized] = STATE(3911), - [sym__spread_parenthesized] = STATE(4721), - [sym_val_range] = STATE(4776), - [sym__val_range] = STATE(4523), - [sym__value] = STATE(4776), - [sym_val_nothing] = STATE(4452), - [sym_val_bool] = STATE(4309), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4452), - [sym_val_number] = STATE(4452), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4130), - [sym_val_duration] = STATE(4452), - [sym_val_filesize] = STATE(4452), - [sym_val_binary] = STATE(4452), - [sym_val_string] = STATE(4452), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4452), - [sym__inter_single_quotes] = STATE(4504), - [sym__inter_double_quotes] = STATE(4369), - [sym_val_list] = STATE(4452), - [sym__spread_list] = STATE(4721), - [sym_list_body] = STATE(5059), - [sym_val_entry] = STATE(4375), - [sym_val_record] = STATE(4452), - [sym_val_table] = STATE(4452), - [sym_val_closure] = STATE(4452), - [sym__unquoted_in_list] = STATE(4312), - [sym__unquoted_in_list_with_expr] = STATE(4776), - [sym__unquoted_anonymous_prefix] = STATE(4523), + [sym_expr_parenthesized] = STATE(4058), + [sym__spread_parenthesized] = STATE(4700), + [sym_val_range] = STATE(4730), + [sym__val_range] = STATE(4544), + [sym__value] = STATE(4730), + [sym_val_nothing] = STATE(4604), + [sym_val_bool] = STATE(4358), + [sym__spread_variable] = STATE(4795), + [sym_val_variable] = STATE(3879), + [sym_val_cellpath] = STATE(4604), + [sym_val_number] = STATE(4604), + [sym__val_number_decimal] = STATE(3485), + [sym__val_number] = STATE(4361), + [sym_val_duration] = STATE(4604), + [sym_val_filesize] = STATE(4604), + [sym_val_binary] = STATE(4604), + [sym_val_string] = STATE(4604), + [sym__raw_str] = STATE(3638), + [sym__str_double_quotes] = STATE(3638), + [sym__str_single_quotes] = STATE(3638), + [sym__str_back_ticks] = STATE(3638), + [sym_val_interpolated] = STATE(4604), + [sym__inter_single_quotes] = STATE(4595), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4604), + [sym__spread_list] = STATE(4700), + [sym_list_body] = STATE(4868), + [sym_val_entry] = STATE(4576), + [sym_val_record] = STATE(4604), + [sym_val_table] = STATE(4604), + [sym_val_closure] = STATE(4604), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4730), + [sym__unquoted_anonymous_prefix] = STATE(4544), [sym_comment] = STATE(396), - [aux_sym__types_body_repeat1] = STATE(464), - [aux_sym_parameter_repeat2] = STATE(4329), - [aux_sym_list_body_repeat1] = STATE(629), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), + [aux_sym__types_body_repeat1] = STATE(458), + [aux_sym_parameter_repeat2] = STATE(4189), + [aux_sym_list_body_repeat1] = STATE(548), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), [sym__newline] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1547), + [anon_sym_RBRACK] = ACTIONS(1627), [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -78466,87 +78676,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1426), }, [STATE(397)] = { + [sym_expr_parenthesized] = STATE(4058), + [sym__spread_parenthesized] = STATE(4700), + [sym_val_range] = STATE(4730), + [sym__val_range] = STATE(4544), + [sym__value] = STATE(4730), + [sym_val_nothing] = STATE(4604), + [sym_val_bool] = STATE(4358), + [sym__spread_variable] = STATE(4795), + [sym_val_variable] = STATE(3879), + [sym_val_cellpath] = STATE(4604), + [sym_val_number] = STATE(4604), + [sym__val_number_decimal] = STATE(3485), + [sym__val_number] = STATE(4361), + [sym_val_duration] = STATE(4604), + [sym_val_filesize] = STATE(4604), + [sym_val_binary] = STATE(4604), + [sym_val_string] = STATE(4604), + [sym__raw_str] = STATE(3638), + [sym__str_double_quotes] = STATE(3638), + [sym__str_single_quotes] = STATE(3638), + [sym__str_back_ticks] = STATE(3638), + [sym_val_interpolated] = STATE(4604), + [sym__inter_single_quotes] = STATE(4595), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4604), + [sym__spread_list] = STATE(4700), + [sym_list_body] = STATE(5021), + [sym_val_entry] = STATE(4576), + [sym_val_record] = STATE(4604), + [sym_val_table] = STATE(4604), + [sym_val_closure] = STATE(4604), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4730), + [sym__unquoted_anonymous_prefix] = STATE(4544), [sym_comment] = STATE(397), - [aux_sym__types_body_repeat2] = STATE(1475), - [anon_sym_EQ] = ACTIONS(1617), - [anon_sym_PLUS_EQ] = ACTIONS(1617), - [anon_sym_DASH_EQ] = ACTIONS(1617), - [anon_sym_STAR_EQ] = ACTIONS(1617), - [anon_sym_SLASH_EQ] = ACTIONS(1617), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1617), - [anon_sym_in] = ACTIONS(1619), - [sym__newline] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_err_GT_PIPE] = ACTIONS(1619), - [anon_sym_out_GT_PIPE] = ACTIONS(1619), - [anon_sym_e_GT_PIPE] = ACTIONS(1619), - [anon_sym_o_GT_PIPE] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1619), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_RBRACE] = ACTIONS(1621), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1619), - [anon_sym_xor2] = ACTIONS(1619), - [anon_sym_or2] = ACTIONS(1619), - [anon_sym_not_DASHin2] = ACTIONS(1619), - [anon_sym_has2] = ACTIONS(1619), - [anon_sym_not_DASHhas2] = ACTIONS(1619), - [anon_sym_starts_DASHwith2] = ACTIONS(1619), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1619), - [anon_sym_ends_DASHwith2] = ACTIONS(1619), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1619), - [anon_sym_EQ_EQ2] = ACTIONS(1619), - [anon_sym_BANG_EQ2] = ACTIONS(1619), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1619), - [anon_sym_GT_EQ2] = ACTIONS(1619), - [anon_sym_EQ_TILDE2] = ACTIONS(1619), - [anon_sym_BANG_TILDE2] = ACTIONS(1619), - [anon_sym_like2] = ACTIONS(1619), - [anon_sym_not_DASHlike2] = ACTIONS(1619), - [anon_sym_STAR_STAR2] = ACTIONS(1619), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1619), - [anon_sym_SLASH_SLASH2] = ACTIONS(1619), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1619), - [anon_sym_bit_DASHshr2] = ACTIONS(1619), - [anon_sym_bit_DASHand2] = ACTIONS(1619), - [anon_sym_bit_DASHxor2] = ACTIONS(1619), - [anon_sym_bit_DASHor2] = ACTIONS(1619), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [sym__entry_separator] = ACTIONS(1627), - [anon_sym_COLON2] = ACTIONS(1629), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1619), - [anon_sym_out_GT_GT] = ACTIONS(1619), - [anon_sym_e_GT_GT] = ACTIONS(1619), - [anon_sym_o_GT_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1619), - [anon_sym_POUND] = ACTIONS(103), + [aux_sym__types_body_repeat1] = STATE(458), + [aux_sym_parameter_repeat2] = STATE(4189), + [aux_sym_list_body_repeat1] = STATE(548), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), + [sym__newline] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(1578), + [anon_sym_RBRACK] = ACTIONS(1629), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_COMMA] = ACTIONS(1474), + [anon_sym_DOLLAR] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_token1] = ACTIONS(1404), + [aux_sym__val_number_token2] = ACTIONS(1404), + [aux_sym__val_number_token3] = ACTIONS(1404), + [anon_sym_0b] = ACTIONS(1406), + [anon_sym_0o] = ACTIONS(1408), + [anon_sym_0x] = ACTIONS(1408), + [sym_val_date] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_BQUOTE] = ACTIONS(1416), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1426), }, [STATE(398)] = { - [sym__expr_parenthesized_immediate] = STATE(742), - [sym__immediate_decimal] = STATE(959), - [sym_val_variable] = STATE(742), + [sym__expr_parenthesized_immediate] = STATE(846), + [sym__immediate_decimal] = STATE(909), + [sym_val_variable] = STATE(846), [sym_comment] = STATE(398), [anon_sym_in] = ACTIONS(1631), [sym__newline] = ACTIONS(1631), @@ -78564,6 +78774,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1584), [anon_sym_GT2] = ACTIONS(1633), [anon_sym_DASH2] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1631), [anon_sym_RBRACE] = ACTIONS(1631), [anon_sym_STAR2] = ACTIONS(1633), [anon_sym_and2] = ACTIONS(1631), @@ -78599,8 +78810,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHor2] = ACTIONS(1631), [aux_sym__immediate_decimal_token1] = ACTIONS(1635), [aux_sym__immediate_decimal_token2] = ACTIONS(1635), - [aux_sym__immediate_decimal_token3] = ACTIONS(1637), - [aux_sym__immediate_decimal_token4] = ACTIONS(1637), + [aux_sym__immediate_decimal_token3] = ACTIONS(1594), + [aux_sym__immediate_decimal_token4] = ACTIONS(1594), [anon_sym_err_GT] = ACTIONS(1633), [anon_sym_out_GT] = ACTIONS(1633), [anon_sym_e_GT] = ACTIONS(1633), @@ -78617,91 +78828,552 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1631), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1631), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1631), - [sym__unquoted_pattern] = ACTIONS(1639), [anon_sym_POUND] = ACTIONS(3), }, [STATE(399)] = { - [sym_cell_path] = STATE(466), - [sym_path] = STATE(441), + [sym__expr_parenthesized_immediate] = STATE(846), + [sym__immediate_decimal] = STATE(903), + [sym_val_variable] = STATE(846), [sym_comment] = STATE(399), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1641), - [sym__newline] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_err_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_GT_PIPE] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), - [anon_sym_RPAREN] = ACTIONS(1641), - [anon_sym_GT2] = ACTIONS(1643), - [anon_sym_DASH2] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1641), - [anon_sym_RBRACE] = ACTIONS(1641), - [anon_sym_EQ_GT] = ACTIONS(1641), - [anon_sym_STAR2] = ACTIONS(1643), - [anon_sym_and2] = ACTIONS(1641), - [anon_sym_xor2] = ACTIONS(1641), - [anon_sym_or2] = ACTIONS(1641), - [anon_sym_not_DASHin2] = ACTIONS(1641), - [anon_sym_has2] = ACTIONS(1641), - [anon_sym_not_DASHhas2] = ACTIONS(1641), - [anon_sym_starts_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1641), - [anon_sym_ends_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1641), - [anon_sym_EQ_EQ2] = ACTIONS(1641), - [anon_sym_BANG_EQ2] = ACTIONS(1641), - [anon_sym_LT2] = ACTIONS(1643), - [anon_sym_LT_EQ2] = ACTIONS(1641), - [anon_sym_GT_EQ2] = ACTIONS(1641), - [anon_sym_EQ_TILDE2] = ACTIONS(1641), - [anon_sym_BANG_TILDE2] = ACTIONS(1641), - [anon_sym_like2] = ACTIONS(1641), - [anon_sym_not_DASHlike2] = ACTIONS(1641), - [anon_sym_STAR_STAR2] = ACTIONS(1641), - [anon_sym_PLUS_PLUS2] = ACTIONS(1641), - [anon_sym_SLASH2] = ACTIONS(1643), - [anon_sym_mod2] = ACTIONS(1641), - [anon_sym_SLASH_SLASH2] = ACTIONS(1641), - [anon_sym_PLUS2] = ACTIONS(1643), - [anon_sym_bit_DASHshl2] = ACTIONS(1641), - [anon_sym_bit_DASHshr2] = ACTIONS(1641), - [anon_sym_bit_DASHand2] = ACTIONS(1641), - [anon_sym_bit_DASHxor2] = ACTIONS(1641), - [anon_sym_bit_DASHor2] = ACTIONS(1641), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), - [anon_sym_COLON2] = ACTIONS(1641), - [anon_sym_DOT2] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1641), - [anon_sym_out_GT_GT] = ACTIONS(1641), - [anon_sym_e_GT_GT] = ACTIONS(1641), - [anon_sym_o_GT_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), + [anon_sym_in] = ACTIONS(1631), + [sym__newline] = ACTIONS(1631), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_PIPE] = ACTIONS(1631), + [anon_sym_err_GT_PIPE] = ACTIONS(1631), + [anon_sym_out_GT_PIPE] = ACTIONS(1631), + [anon_sym_e_GT_PIPE] = ACTIONS(1631), + [anon_sym_o_GT_PIPE] = ACTIONS(1631), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1631), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1631), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1631), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1631), + [anon_sym_RPAREN] = ACTIONS(1631), + [anon_sym_DOLLAR] = ACTIONS(1584), + [anon_sym_GT2] = ACTIONS(1633), + [anon_sym_DASH2] = ACTIONS(1633), + [anon_sym_RBRACE] = ACTIONS(1631), + [anon_sym_STAR2] = ACTIONS(1633), + [anon_sym_and2] = ACTIONS(1631), + [anon_sym_xor2] = ACTIONS(1631), + [anon_sym_or2] = ACTIONS(1631), + [anon_sym_not_DASHin2] = ACTIONS(1631), + [anon_sym_has2] = ACTIONS(1631), + [anon_sym_not_DASHhas2] = ACTIONS(1631), + [anon_sym_starts_DASHwith2] = ACTIONS(1631), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1631), + [anon_sym_ends_DASHwith2] = ACTIONS(1631), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1631), + [anon_sym_EQ_EQ2] = ACTIONS(1631), + [anon_sym_BANG_EQ2] = ACTIONS(1631), + [anon_sym_LT2] = ACTIONS(1633), + [anon_sym_LT_EQ2] = ACTIONS(1631), + [anon_sym_GT_EQ2] = ACTIONS(1631), + [anon_sym_EQ_TILDE2] = ACTIONS(1631), + [anon_sym_BANG_TILDE2] = ACTIONS(1631), + [anon_sym_like2] = ACTIONS(1631), + [anon_sym_not_DASHlike2] = ACTIONS(1631), + [anon_sym_LPAREN2] = ACTIONS(1588), + [anon_sym_STAR_STAR2] = ACTIONS(1631), + [anon_sym_PLUS_PLUS2] = ACTIONS(1631), + [anon_sym_SLASH2] = ACTIONS(1633), + [anon_sym_mod2] = ACTIONS(1631), + [anon_sym_SLASH_SLASH2] = ACTIONS(1631), + [anon_sym_PLUS2] = ACTIONS(1633), + [anon_sym_bit_DASHshl2] = ACTIONS(1631), + [anon_sym_bit_DASHshr2] = ACTIONS(1631), + [anon_sym_bit_DASHand2] = ACTIONS(1631), + [anon_sym_bit_DASHxor2] = ACTIONS(1631), + [anon_sym_bit_DASHor2] = ACTIONS(1631), + [aux_sym__immediate_decimal_token1] = ACTIONS(1637), + [aux_sym__immediate_decimal_token2] = ACTIONS(1637), + [aux_sym__immediate_decimal_token3] = ACTIONS(1639), + [aux_sym__immediate_decimal_token4] = ACTIONS(1639), + [anon_sym_err_GT] = ACTIONS(1633), + [anon_sym_out_GT] = ACTIONS(1633), + [anon_sym_e_GT] = ACTIONS(1633), + [anon_sym_o_GT] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT] = ACTIONS(1633), + [anon_sym_err_GT_GT] = ACTIONS(1631), + [anon_sym_out_GT_GT] = ACTIONS(1631), + [anon_sym_e_GT_GT] = ACTIONS(1631), + [anon_sym_o_GT_GT] = ACTIONS(1631), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1631), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1631), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1631), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1631), + [sym__unquoted_pattern] = ACTIONS(1641), [anon_sym_POUND] = ACTIONS(3), }, [STATE(400)] = { - [sym__expr_parenthesized_immediate] = STATE(721), - [sym__immediate_decimal] = STATE(722), - [sym_val_variable] = STATE(721), + [sym__expr_parenthesized_immediate] = STATE(840), + [sym__immediate_decimal] = STATE(841), + [sym_val_variable] = STATE(840), [sym_comment] = STATE(400), + [anon_sym_in] = 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_RPAREN] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(1584), + [anon_sym_GT2] = ACTIONS(1645), + [anon_sym_DASH2] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1643), + [anon_sym_RBRACE] = ACTIONS(1643), + [anon_sym_STAR2] = ACTIONS(1645), + [anon_sym_and2] = ACTIONS(1643), + [anon_sym_xor2] = ACTIONS(1643), + [anon_sym_or2] = ACTIONS(1643), + [anon_sym_not_DASHin2] = ACTIONS(1643), + [anon_sym_has2] = ACTIONS(1643), + [anon_sym_not_DASHhas2] = ACTIONS(1643), + [anon_sym_starts_DASHwith2] = ACTIONS(1643), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1643), + [anon_sym_ends_DASHwith2] = ACTIONS(1643), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1643), + [anon_sym_EQ_EQ2] = ACTIONS(1643), + [anon_sym_BANG_EQ2] = ACTIONS(1643), + [anon_sym_LT2] = ACTIONS(1645), + [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_like2] = ACTIONS(1643), + [anon_sym_not_DASHlike2] = ACTIONS(1643), + [anon_sym_LPAREN2] = ACTIONS(1588), + [anon_sym_STAR_STAR2] = ACTIONS(1643), + [anon_sym_PLUS_PLUS2] = ACTIONS(1643), + [anon_sym_SLASH2] = ACTIONS(1645), + [anon_sym_mod2] = ACTIONS(1643), + [anon_sym_SLASH_SLASH2] = ACTIONS(1643), + [anon_sym_PLUS2] = ACTIONS(1645), + [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(1635), + [aux_sym__immediate_decimal_token2] = ACTIONS(1635), + [aux_sym__immediate_decimal_token3] = ACTIONS(1594), + [aux_sym__immediate_decimal_token4] = ACTIONS(1594), + [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(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(3), + }, + [STATE(401)] = { + [sym__expr_parenthesized_immediate] = STATE(842), + [sym__immediate_decimal] = STATE(843), + [sym_val_variable] = STATE(842), + [sym_comment] = STATE(401), + [anon_sym_in] = 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_RPAREN] = ACTIONS(1647), + [anon_sym_DOLLAR] = ACTIONS(1584), + [anon_sym_GT2] = ACTIONS(1649), + [anon_sym_DASH2] = ACTIONS(1649), + [anon_sym_LBRACE] = ACTIONS(1647), + [anon_sym_RBRACE] = ACTIONS(1647), + [anon_sym_STAR2] = ACTIONS(1649), + [anon_sym_and2] = ACTIONS(1647), + [anon_sym_xor2] = ACTIONS(1647), + [anon_sym_or2] = ACTIONS(1647), + [anon_sym_not_DASHin2] = ACTIONS(1647), + [anon_sym_has2] = ACTIONS(1647), + [anon_sym_not_DASHhas2] = ACTIONS(1647), + [anon_sym_starts_DASHwith2] = ACTIONS(1647), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1647), + [anon_sym_ends_DASHwith2] = ACTIONS(1647), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1647), + [anon_sym_EQ_EQ2] = ACTIONS(1647), + [anon_sym_BANG_EQ2] = ACTIONS(1647), + [anon_sym_LT2] = ACTIONS(1649), + [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_like2] = ACTIONS(1647), + [anon_sym_not_DASHlike2] = ACTIONS(1647), + [anon_sym_LPAREN2] = ACTIONS(1588), + [anon_sym_STAR_STAR2] = ACTIONS(1647), + [anon_sym_PLUS_PLUS2] = ACTIONS(1647), + [anon_sym_SLASH2] = ACTIONS(1649), + [anon_sym_mod2] = ACTIONS(1647), + [anon_sym_SLASH_SLASH2] = ACTIONS(1647), + [anon_sym_PLUS2] = ACTIONS(1649), + [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), + [aux_sym__immediate_decimal_token1] = ACTIONS(1635), + [aux_sym__immediate_decimal_token2] = ACTIONS(1635), + [aux_sym__immediate_decimal_token3] = ACTIONS(1594), + [aux_sym__immediate_decimal_token4] = ACTIONS(1594), + [anon_sym_err_GT] = ACTIONS(1649), + [anon_sym_out_GT] = ACTIONS(1649), + [anon_sym_e_GT] = ACTIONS(1649), + [anon_sym_o_GT] = ACTIONS(1649), + [anon_sym_err_PLUSout_GT] = ACTIONS(1649), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1649), + [anon_sym_o_PLUSe_GT] = ACTIONS(1649), + [anon_sym_e_PLUSo_GT] = ACTIONS(1649), + [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_POUND] = ACTIONS(3), + }, + [STATE(402)] = { + [sym__expr_parenthesized_immediate] = STATE(844), + [sym__immediate_decimal] = STATE(845), + [sym_val_variable] = STATE(844), + [sym_comment] = STATE(402), + [anon_sym_in] = ACTIONS(1651), + [sym__newline] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1651), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_err_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_GT_PIPE] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1651), + [anon_sym_RPAREN] = ACTIONS(1651), + [anon_sym_DOLLAR] = ACTIONS(1584), + [anon_sym_GT2] = ACTIONS(1653), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_RBRACE] = ACTIONS(1651), + [anon_sym_STAR2] = ACTIONS(1653), + [anon_sym_and2] = ACTIONS(1651), + [anon_sym_xor2] = ACTIONS(1651), + [anon_sym_or2] = ACTIONS(1651), + [anon_sym_not_DASHin2] = ACTIONS(1651), + [anon_sym_has2] = ACTIONS(1651), + [anon_sym_not_DASHhas2] = ACTIONS(1651), + [anon_sym_starts_DASHwith2] = ACTIONS(1651), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1651), + [anon_sym_ends_DASHwith2] = ACTIONS(1651), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1651), + [anon_sym_EQ_EQ2] = ACTIONS(1651), + [anon_sym_BANG_EQ2] = ACTIONS(1651), + [anon_sym_LT2] = ACTIONS(1653), + [anon_sym_LT_EQ2] = ACTIONS(1651), + [anon_sym_GT_EQ2] = ACTIONS(1651), + [anon_sym_EQ_TILDE2] = ACTIONS(1651), + [anon_sym_BANG_TILDE2] = ACTIONS(1651), + [anon_sym_like2] = ACTIONS(1651), + [anon_sym_not_DASHlike2] = ACTIONS(1651), + [anon_sym_LPAREN2] = ACTIONS(1588), + [anon_sym_STAR_STAR2] = ACTIONS(1651), + [anon_sym_PLUS_PLUS2] = ACTIONS(1651), + [anon_sym_SLASH2] = ACTIONS(1653), + [anon_sym_mod2] = ACTIONS(1651), + [anon_sym_SLASH_SLASH2] = ACTIONS(1651), + [anon_sym_PLUS2] = ACTIONS(1653), + [anon_sym_bit_DASHshl2] = ACTIONS(1651), + [anon_sym_bit_DASHshr2] = ACTIONS(1651), + [anon_sym_bit_DASHand2] = ACTIONS(1651), + [anon_sym_bit_DASHxor2] = ACTIONS(1651), + [anon_sym_bit_DASHor2] = ACTIONS(1651), + [aux_sym__immediate_decimal_token1] = ACTIONS(1635), + [aux_sym__immediate_decimal_token2] = ACTIONS(1635), + [aux_sym__immediate_decimal_token3] = ACTIONS(1594), + [aux_sym__immediate_decimal_token4] = ACTIONS(1594), + [anon_sym_err_GT] = ACTIONS(1653), + [anon_sym_out_GT] = ACTIONS(1653), + [anon_sym_e_GT] = ACTIONS(1653), + [anon_sym_o_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT] = ACTIONS(1653), + [anon_sym_err_GT_GT] = ACTIONS(1651), + [anon_sym_out_GT_GT] = ACTIONS(1651), + [anon_sym_e_GT_GT] = ACTIONS(1651), + [anon_sym_o_GT_GT] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1651), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(403)] = { + [sym_cell_path] = STATE(460), + [sym_path] = STATE(435), + [sym_comment] = STATE(403), + [aux_sym__where_predicate_lhs_repeat1] = STATE(416), + [anon_sym_in] = ACTIONS(1655), + [sym__newline] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_err_GT_PIPE] = ACTIONS(1655), + [anon_sym_out_GT_PIPE] = ACTIONS(1655), + [anon_sym_e_GT_PIPE] = ACTIONS(1655), + [anon_sym_o_GT_PIPE] = ACTIONS(1655), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1655), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1655), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1655), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1655), + [anon_sym_RPAREN] = ACTIONS(1655), + [anon_sym_GT2] = ACTIONS(1657), + [anon_sym_DASH2] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_RBRACE] = ACTIONS(1655), + [anon_sym_EQ_GT] = ACTIONS(1655), + [anon_sym_STAR2] = ACTIONS(1657), + [anon_sym_and2] = ACTIONS(1655), + [anon_sym_xor2] = ACTIONS(1655), + [anon_sym_or2] = ACTIONS(1655), + [anon_sym_not_DASHin2] = ACTIONS(1655), + [anon_sym_has2] = ACTIONS(1655), + [anon_sym_not_DASHhas2] = ACTIONS(1655), + [anon_sym_starts_DASHwith2] = ACTIONS(1655), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1655), + [anon_sym_ends_DASHwith2] = ACTIONS(1655), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1655), + [anon_sym_EQ_EQ2] = ACTIONS(1655), + [anon_sym_BANG_EQ2] = ACTIONS(1655), + [anon_sym_LT2] = ACTIONS(1657), + [anon_sym_LT_EQ2] = ACTIONS(1655), + [anon_sym_GT_EQ2] = ACTIONS(1655), + [anon_sym_EQ_TILDE2] = ACTIONS(1655), + [anon_sym_BANG_TILDE2] = ACTIONS(1655), + [anon_sym_like2] = ACTIONS(1655), + [anon_sym_not_DASHlike2] = ACTIONS(1655), + [anon_sym_STAR_STAR2] = ACTIONS(1655), + [anon_sym_PLUS_PLUS2] = ACTIONS(1655), + [anon_sym_SLASH2] = ACTIONS(1657), + [anon_sym_mod2] = ACTIONS(1655), + [anon_sym_SLASH_SLASH2] = ACTIONS(1655), + [anon_sym_PLUS2] = ACTIONS(1657), + [anon_sym_bit_DASHshl2] = ACTIONS(1655), + [anon_sym_bit_DASHshr2] = ACTIONS(1655), + [anon_sym_bit_DASHand2] = ACTIONS(1655), + [anon_sym_bit_DASHxor2] = ACTIONS(1655), + [anon_sym_bit_DASHor2] = ACTIONS(1655), + [anon_sym_DOT_DOT2] = ACTIONS(1657), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1655), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1655), + [anon_sym_COLON2] = ACTIONS(1655), + [anon_sym_DOT2] = ACTIONS(1659), + [anon_sym_err_GT] = ACTIONS(1657), + [anon_sym_out_GT] = ACTIONS(1657), + [anon_sym_e_GT] = ACTIONS(1657), + [anon_sym_o_GT] = ACTIONS(1657), + [anon_sym_err_PLUSout_GT] = ACTIONS(1657), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1657), + [anon_sym_o_PLUSe_GT] = ACTIONS(1657), + [anon_sym_e_PLUSo_GT] = ACTIONS(1657), + [anon_sym_err_GT_GT] = ACTIONS(1655), + [anon_sym_out_GT_GT] = ACTIONS(1655), + [anon_sym_e_GT_GT] = ACTIONS(1655), + [anon_sym_o_GT_GT] = ACTIONS(1655), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1655), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1655), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1655), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1655), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(404)] = { + [sym__expr_parenthesized_immediate] = STATE(806), + [sym__immediate_decimal] = STATE(807), + [sym_val_variable] = STATE(806), + [sym_comment] = STATE(404), + [anon_sym_in] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_RPAREN] = ACTIONS(1607), + [anon_sym_DOLLAR] = ACTIONS(1584), + [anon_sym_GT2] = ACTIONS(1609), + [anon_sym_DASH2] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1609), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_has2] = ACTIONS(1607), + [anon_sym_not_DASHhas2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1609), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_like2] = ACTIONS(1607), + [anon_sym_not_DASHlike2] = ACTIONS(1607), + [anon_sym_LPAREN2] = ACTIONS(1588), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1609), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1609), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token1] = ACTIONS(1635), + [aux_sym__immediate_decimal_token2] = ACTIONS(1635), + [aux_sym__immediate_decimal_token3] = ACTIONS(1594), + [aux_sym__immediate_decimal_token4] = ACTIONS(1594), + [anon_sym_err_GT] = ACTIONS(1609), + [anon_sym_out_GT] = ACTIONS(1609), + [anon_sym_e_GT] = ACTIONS(1609), + [anon_sym_o_GT] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT] = ACTIONS(1609), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(405)] = { + [sym_cell_path] = STATE(462), + [sym_path] = STATE(435), + [sym_comment] = STATE(405), + [aux_sym__where_predicate_lhs_repeat1] = STATE(416), + [anon_sym_in] = 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(1663), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_EQ_GT] = ACTIONS(1661), + [anon_sym_STAR2] = ACTIONS(1663), + [anon_sym_and2] = ACTIONS(1661), + [anon_sym_xor2] = ACTIONS(1661), + [anon_sym_or2] = ACTIONS(1661), + [anon_sym_not_DASHin2] = ACTIONS(1661), + [anon_sym_has2] = ACTIONS(1661), + [anon_sym_not_DASHhas2] = ACTIONS(1661), + [anon_sym_starts_DASHwith2] = ACTIONS(1661), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1661), + [anon_sym_ends_DASHwith2] = ACTIONS(1661), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1661), + [anon_sym_EQ_EQ2] = ACTIONS(1661), + [anon_sym_BANG_EQ2] = ACTIONS(1661), + [anon_sym_LT2] = ACTIONS(1663), + [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_like2] = ACTIONS(1661), + [anon_sym_not_DASHlike2] = ACTIONS(1661), + [anon_sym_STAR_STAR2] = ACTIONS(1661), + [anon_sym_PLUS_PLUS2] = ACTIONS(1661), + [anon_sym_SLASH2] = ACTIONS(1663), + [anon_sym_mod2] = ACTIONS(1661), + [anon_sym_SLASH_SLASH2] = ACTIONS(1661), + [anon_sym_PLUS2] = ACTIONS(1663), + [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(1663), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), + [anon_sym_COLON2] = ACTIONS(1661), + [anon_sym_DOT2] = ACTIONS(1659), + [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(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), + }, + [STATE(406)] = { + [sym__expr_parenthesized_immediate] = STATE(809), + [sym__immediate_decimal] = STATE(924), + [sym_val_variable] = STATE(809), + [sym_comment] = STATE(406), [anon_sym_in] = ACTIONS(1582), [sym__newline] = ACTIONS(1582), [anon_sym_SEMI] = ACTIONS(1582), @@ -78752,8 +79424,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1582), [anon_sym_bit_DASHxor2] = ACTIONS(1582), [anon_sym_bit_DASHor2] = ACTIONS(1582), - [aux_sym__immediate_decimal_token1] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1647), + [aux_sym__immediate_decimal_token1] = ACTIONS(1635), + [aux_sym__immediate_decimal_token2] = ACTIONS(1635), [aux_sym__immediate_decimal_token3] = ACTIONS(1594), [aux_sym__immediate_decimal_token4] = ACTIONS(1594), [anon_sym_err_GT] = ACTIONS(1586), @@ -78774,246 +79446,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(401)] = { - [sym__expr_parenthesized_immediate] = STATE(929), - [sym__immediate_decimal] = STATE(673), - [sym_val_variable] = STATE(929), - [sym_comment] = STATE(401), - [ts_builtin_sym_end] = ACTIONS(1596), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [anon_sym_DOT] = ACTIONS(1653), - [aux_sym__immediate_decimal_token1] = ACTIONS(1655), - [aux_sym__immediate_decimal_token2] = ACTIONS(1655), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), - [sym__unquoted_pattern] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(402)] = { - [sym_comment] = STATE(402), - [ts_builtin_sym_end] = ACTIONS(1440), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_PLUS_EQ] = ACTIONS(1440), - [anon_sym_DASH_EQ] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1440), - [anon_sym_SLASH_EQ] = ACTIONS(1440), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1438), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1438), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_QMARK2] = ACTIONS(1659), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(403)] = { - [sym__expr_parenthesized_immediate] = STATE(723), - [sym__immediate_decimal] = STATE(896), - [sym_val_variable] = STATE(723), - [sym_comment] = STATE(403), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_RPAREN] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1596), - [anon_sym_RBRACE] = ACTIONS(1596), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [aux_sym__immediate_decimal_token1] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), + [STATE(407)] = { + [sym_comment] = STATE(407), + [anon_sym_EQ] = ACTIONS(1572), + [anon_sym_PLUS_EQ] = ACTIONS(1574), + [anon_sym_DASH_EQ] = ACTIONS(1574), + [anon_sym_STAR_EQ] = ACTIONS(1574), + [anon_sym_SLASH_EQ] = ACTIONS(1574), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1574), + [anon_sym_in] = ACTIONS(1574), + [sym__newline] = ACTIONS(1574), + [anon_sym_SEMI] = ACTIONS(1574), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_err_GT_PIPE] = ACTIONS(1574), + [anon_sym_out_GT_PIPE] = ACTIONS(1574), + [anon_sym_e_GT_PIPE] = ACTIONS(1574), + [anon_sym_o_GT_PIPE] = ACTIONS(1574), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1574), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1574), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1574), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1574), + [anon_sym_RPAREN] = ACTIONS(1574), + [anon_sym_GT2] = ACTIONS(1572), + [anon_sym_DASH2] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1574), + [anon_sym_STAR2] = ACTIONS(1572), + [anon_sym_and2] = ACTIONS(1574), + [anon_sym_xor2] = ACTIONS(1574), + [anon_sym_or2] = ACTIONS(1574), + [anon_sym_not_DASHin2] = ACTIONS(1574), + [anon_sym_has2] = ACTIONS(1574), + [anon_sym_not_DASHhas2] = ACTIONS(1574), + [anon_sym_starts_DASHwith2] = ACTIONS(1574), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1574), + [anon_sym_ends_DASHwith2] = ACTIONS(1574), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1574), + [anon_sym_EQ_EQ2] = ACTIONS(1574), + [anon_sym_BANG_EQ2] = ACTIONS(1574), + [anon_sym_LT2] = ACTIONS(1572), + [anon_sym_LT_EQ2] = ACTIONS(1574), + [anon_sym_GT_EQ2] = ACTIONS(1574), + [anon_sym_EQ_TILDE2] = ACTIONS(1574), + [anon_sym_BANG_TILDE2] = ACTIONS(1574), + [anon_sym_like2] = ACTIONS(1574), + [anon_sym_not_DASHlike2] = ACTIONS(1574), + [anon_sym_STAR_STAR2] = ACTIONS(1574), + [anon_sym_PLUS_PLUS2] = ACTIONS(1572), + [anon_sym_SLASH2] = ACTIONS(1572), + [anon_sym_mod2] = ACTIONS(1574), + [anon_sym_SLASH_SLASH2] = ACTIONS(1574), + [anon_sym_PLUS2] = ACTIONS(1572), + [anon_sym_bit_DASHshl2] = ACTIONS(1574), + [anon_sym_bit_DASHshr2] = ACTIONS(1574), + [anon_sym_bit_DASHand2] = ACTIONS(1574), + [anon_sym_bit_DASHxor2] = ACTIONS(1574), + [anon_sym_bit_DASHor2] = ACTIONS(1574), + [anon_sym_DOT_DOT2] = ACTIONS(1572), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1574), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1574), + [anon_sym_COLON2] = ACTIONS(1574), + [anon_sym_err_GT] = ACTIONS(1572), + [anon_sym_out_GT] = ACTIONS(1572), + [anon_sym_e_GT] = ACTIONS(1572), + [anon_sym_o_GT] = ACTIONS(1572), + [anon_sym_err_PLUSout_GT] = ACTIONS(1572), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1572), + [anon_sym_o_PLUSe_GT] = ACTIONS(1572), + [anon_sym_e_PLUSo_GT] = ACTIONS(1572), + [anon_sym_err_GT_GT] = ACTIONS(1574), + [anon_sym_out_GT_GT] = ACTIONS(1574), + [anon_sym_e_GT_GT] = ACTIONS(1574), + [anon_sym_o_GT_GT] = ACTIONS(1574), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1574), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1574), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1574), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1574), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(404)] = { - [sym_comment] = STATE(404), - [ts_builtin_sym_end] = ACTIONS(1440), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_PLUS_EQ] = ACTIONS(1440), - [anon_sym_DASH_EQ] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1440), - [anon_sym_SLASH_EQ] = ACTIONS(1440), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1440), + [STATE(408)] = { + [sym__path_suffix] = STATE(441), + [sym_comment] = STATE(408), [anon_sym_in] = ACTIONS(1440), [sym__newline] = ACTIONS(1440), [anon_sym_SEMI] = ACTIONS(1440), @@ -79026,8 +79538,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), + [anon_sym_RPAREN] = ACTIONS(1440), [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1438), + [anon_sym_DASH2] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_RBRACE] = ACTIONS(1440), + [anon_sym_EQ_GT] = ACTIONS(1440), [anon_sym_STAR2] = ACTIONS(1438), [anon_sym_and2] = ACTIONS(1440), [anon_sym_xor2] = ACTIONS(1440), @@ -79049,7 +79565,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like2] = ACTIONS(1440), [anon_sym_not_DASHlike2] = ACTIONS(1440), [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1438), + [anon_sym_PLUS_PLUS2] = ACTIONS(1440), [anon_sym_SLASH2] = ACTIONS(1438), [anon_sym_mod2] = ACTIONS(1440), [anon_sym_SLASH_SLASH2] = ACTIONS(1440), @@ -79062,7 +79578,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1438), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1661), + [anon_sym_COLON2] = ACTIONS(1440), + [anon_sym_QMARK2] = ACTIONS(1665), + [anon_sym_BANG] = ACTIONS(1667), [anon_sym_DOT2] = ACTIONS(1438), [anon_sym_err_GT] = ACTIONS(1438), [anon_sym_out_GT] = ACTIONS(1438), @@ -79082,86 +79600,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(405)] = { - [sym_comment] = STATE(405), - [anon_sym_EQ] = ACTIONS(1556), - [anon_sym_PLUS_EQ] = ACTIONS(1558), - [anon_sym_DASH_EQ] = ACTIONS(1558), - [anon_sym_STAR_EQ] = ACTIONS(1558), - [anon_sym_SLASH_EQ] = ACTIONS(1558), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1558), - [anon_sym_in] = ACTIONS(1558), - [sym__newline] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_PIPE] = ACTIONS(1558), - [anon_sym_err_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_GT_PIPE] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1558), - [anon_sym_RPAREN] = ACTIONS(1558), - [anon_sym_GT2] = ACTIONS(1556), - [anon_sym_DASH2] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_STAR2] = ACTIONS(1556), - [anon_sym_and2] = ACTIONS(1558), - [anon_sym_xor2] = ACTIONS(1558), - [anon_sym_or2] = ACTIONS(1558), - [anon_sym_not_DASHin2] = ACTIONS(1558), - [anon_sym_has2] = ACTIONS(1558), - [anon_sym_not_DASHhas2] = ACTIONS(1558), - [anon_sym_starts_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1558), - [anon_sym_ends_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1558), - [anon_sym_EQ_EQ2] = ACTIONS(1558), - [anon_sym_BANG_EQ2] = ACTIONS(1558), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ2] = ACTIONS(1558), - [anon_sym_GT_EQ2] = ACTIONS(1558), - [anon_sym_EQ_TILDE2] = ACTIONS(1558), - [anon_sym_BANG_TILDE2] = ACTIONS(1558), - [anon_sym_like2] = ACTIONS(1558), - [anon_sym_not_DASHlike2] = ACTIONS(1558), - [anon_sym_STAR_STAR2] = ACTIONS(1558), - [anon_sym_PLUS_PLUS2] = ACTIONS(1556), - [anon_sym_SLASH2] = ACTIONS(1556), - [anon_sym_mod2] = ACTIONS(1558), - [anon_sym_SLASH_SLASH2] = ACTIONS(1558), - [anon_sym_PLUS2] = ACTIONS(1556), - [anon_sym_bit_DASHshl2] = ACTIONS(1558), - [anon_sym_bit_DASHshr2] = ACTIONS(1558), - [anon_sym_bit_DASHand2] = ACTIONS(1558), - [anon_sym_bit_DASHxor2] = ACTIONS(1558), - [anon_sym_bit_DASHor2] = ACTIONS(1558), - [anon_sym_DOT_DOT2] = ACTIONS(1556), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), - [anon_sym_COLON2] = ACTIONS(1558), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [anon_sym_err_GT_GT] = ACTIONS(1558), - [anon_sym_out_GT_GT] = ACTIONS(1558), - [anon_sym_e_GT_GT] = ACTIONS(1558), - [anon_sym_o_GT_GT] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1558), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(406)] = { - [sym__path_suffix] = STATE(437), - [sym_comment] = STATE(406), + [STATE(409)] = { + [sym_comment] = STATE(409), + [ts_builtin_sym_end] = ACTIONS(1448), + [anon_sym_EQ] = ACTIONS(1446), + [anon_sym_PLUS_EQ] = ACTIONS(1448), + [anon_sym_DASH_EQ] = ACTIONS(1448), + [anon_sym_STAR_EQ] = ACTIONS(1448), + [anon_sym_SLASH_EQ] = ACTIONS(1448), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1448), [anon_sym_in] = ACTIONS(1448), [sym__newline] = ACTIONS(1448), [anon_sym_SEMI] = ACTIONS(1448), @@ -79174,12 +79621,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), - [anon_sym_RPAREN] = ACTIONS(1448), [anon_sym_GT2] = ACTIONS(1446), - [anon_sym_DASH2] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_EQ_GT] = ACTIONS(1448), + [anon_sym_DASH2] = ACTIONS(1446), [anon_sym_STAR2] = ACTIONS(1446), [anon_sym_and2] = ACTIONS(1448), [anon_sym_xor2] = ACTIONS(1448), @@ -79201,7 +79644,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like2] = ACTIONS(1448), [anon_sym_not_DASHlike2] = ACTIONS(1448), [anon_sym_STAR_STAR2] = ACTIONS(1448), - [anon_sym_PLUS_PLUS2] = ACTIONS(1448), + [anon_sym_PLUS_PLUS2] = ACTIONS(1446), [anon_sym_SLASH2] = ACTIONS(1446), [anon_sym_mod2] = ACTIONS(1448), [anon_sym_SLASH_SLASH2] = ACTIONS(1448), @@ -79214,9 +79657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1446), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), - [anon_sym_COLON2] = ACTIONS(1448), - [anon_sym_QMARK2] = ACTIONS(1663), - [anon_sym_BANG] = ACTIONS(1665), + [anon_sym_BANG] = ACTIONS(1669), [anon_sym_DOT2] = ACTIONS(1446), [anon_sym_err_GT] = ACTIONS(1446), [anon_sym_out_GT] = ACTIONS(1446), @@ -79236,930 +79677,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(407)] = { - [sym__expr_parenthesized_immediate] = STATE(723), - [sym__immediate_decimal] = STATE(954), - [sym_val_variable] = STATE(723), - [sym_comment] = STATE(407), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_RPAREN] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_RBRACE] = ACTIONS(1596), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [aux_sym__immediate_decimal_token1] = ACTIONS(1635), - [aux_sym__immediate_decimal_token2] = ACTIONS(1635), - [aux_sym__immediate_decimal_token3] = ACTIONS(1637), - [aux_sym__immediate_decimal_token4] = ACTIONS(1637), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), - [sym__unquoted_pattern] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(408)] = { - [sym__expr_parenthesized_immediate] = STATE(736), - [sym__immediate_decimal] = STATE(737), - [sym_val_variable] = STATE(736), - [sym_comment] = STATE(408), - [anon_sym_in] = ACTIONS(1667), - [sym__newline] = ACTIONS(1667), - [anon_sym_SEMI] = ACTIONS(1667), - [anon_sym_PIPE] = ACTIONS(1667), - [anon_sym_err_GT_PIPE] = ACTIONS(1667), - [anon_sym_out_GT_PIPE] = ACTIONS(1667), - [anon_sym_e_GT_PIPE] = ACTIONS(1667), - [anon_sym_o_GT_PIPE] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1667), - [anon_sym_RPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1667), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1667), - [anon_sym_xor2] = ACTIONS(1667), - [anon_sym_or2] = ACTIONS(1667), - [anon_sym_not_DASHin2] = ACTIONS(1667), - [anon_sym_has2] = ACTIONS(1667), - [anon_sym_not_DASHhas2] = ACTIONS(1667), - [anon_sym_starts_DASHwith2] = ACTIONS(1667), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1667), - [anon_sym_ends_DASHwith2] = ACTIONS(1667), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1667), - [anon_sym_EQ_EQ2] = ACTIONS(1667), - [anon_sym_BANG_EQ2] = ACTIONS(1667), - [anon_sym_LT2] = ACTIONS(1669), - [anon_sym_LT_EQ2] = ACTIONS(1667), - [anon_sym_GT_EQ2] = ACTIONS(1667), - [anon_sym_EQ_TILDE2] = ACTIONS(1667), - [anon_sym_BANG_TILDE2] = ACTIONS(1667), - [anon_sym_like2] = ACTIONS(1667), - [anon_sym_not_DASHlike2] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1667), - [anon_sym_PLUS_PLUS2] = ACTIONS(1667), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1667), - [anon_sym_SLASH_SLASH2] = ACTIONS(1667), - [anon_sym_PLUS2] = ACTIONS(1669), - [anon_sym_bit_DASHshl2] = ACTIONS(1667), - [anon_sym_bit_DASHshr2] = ACTIONS(1667), - [anon_sym_bit_DASHand2] = ACTIONS(1667), - [anon_sym_bit_DASHxor2] = ACTIONS(1667), - [anon_sym_bit_DASHor2] = ACTIONS(1667), - [aux_sym__immediate_decimal_token1] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(1667), - [anon_sym_out_GT_GT] = ACTIONS(1667), - [anon_sym_e_GT_GT] = ACTIONS(1667), - [anon_sym_o_GT_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(409)] = { - [sym__expr_parenthesized_immediate] = STATE(738), - [sym__immediate_decimal] = STATE(739), - [sym_val_variable] = STATE(738), - [sym_comment] = STATE(409), - [anon_sym_in] = ACTIONS(1671), - [sym__newline] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_err_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_GT_PIPE] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), - [anon_sym_RPAREN] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_RBRACE] = ACTIONS(1671), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1671), - [anon_sym_xor2] = ACTIONS(1671), - [anon_sym_or2] = ACTIONS(1671), - [anon_sym_not_DASHin2] = ACTIONS(1671), - [anon_sym_has2] = ACTIONS(1671), - [anon_sym_not_DASHhas2] = ACTIONS(1671), - [anon_sym_starts_DASHwith2] = ACTIONS(1671), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1671), - [anon_sym_ends_DASHwith2] = ACTIONS(1671), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1671), - [anon_sym_EQ_EQ2] = ACTIONS(1671), - [anon_sym_BANG_EQ2] = ACTIONS(1671), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1671), - [anon_sym_GT_EQ2] = ACTIONS(1671), - [anon_sym_EQ_TILDE2] = ACTIONS(1671), - [anon_sym_BANG_TILDE2] = ACTIONS(1671), - [anon_sym_like2] = ACTIONS(1671), - [anon_sym_not_DASHlike2] = ACTIONS(1671), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1671), - [anon_sym_PLUS_PLUS2] = ACTIONS(1671), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1671), - [anon_sym_SLASH_SLASH2] = ACTIONS(1671), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1671), - [anon_sym_bit_DASHshr2] = ACTIONS(1671), - [anon_sym_bit_DASHand2] = ACTIONS(1671), - [anon_sym_bit_DASHxor2] = ACTIONS(1671), - [anon_sym_bit_DASHor2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token1] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1671), - [anon_sym_out_GT_GT] = ACTIONS(1671), - [anon_sym_e_GT_GT] = ACTIONS(1671), - [anon_sym_o_GT_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1671), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(410)] = { - [sym__expr_parenthesized_immediate] = STATE(740), - [sym__immediate_decimal] = STATE(741), - [sym_val_variable] = STATE(740), + [sym__expr_parenthesized_immediate] = STATE(930), + [sym__immediate_decimal] = STATE(678), + [sym_val_variable] = STATE(930), [sym_comment] = STATE(410), - [anon_sym_in] = ACTIONS(1675), - [sym__newline] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1675), - [anon_sym_err_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_GT_PIPE] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), - [anon_sym_RPAREN] = ACTIONS(1675), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1677), - [anon_sym_DASH2] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1675), - [anon_sym_STAR2] = ACTIONS(1677), - [anon_sym_and2] = ACTIONS(1675), - [anon_sym_xor2] = ACTIONS(1675), - [anon_sym_or2] = ACTIONS(1675), - [anon_sym_not_DASHin2] = ACTIONS(1675), - [anon_sym_has2] = ACTIONS(1675), - [anon_sym_not_DASHhas2] = ACTIONS(1675), - [anon_sym_starts_DASHwith2] = ACTIONS(1675), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1675), - [anon_sym_ends_DASHwith2] = ACTIONS(1675), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1675), - [anon_sym_EQ_EQ2] = ACTIONS(1675), - [anon_sym_BANG_EQ2] = ACTIONS(1675), - [anon_sym_LT2] = ACTIONS(1677), - [anon_sym_LT_EQ2] = ACTIONS(1675), - [anon_sym_GT_EQ2] = ACTIONS(1675), - [anon_sym_EQ_TILDE2] = ACTIONS(1675), - [anon_sym_BANG_TILDE2] = ACTIONS(1675), - [anon_sym_like2] = ACTIONS(1675), - [anon_sym_not_DASHlike2] = ACTIONS(1675), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1675), - [anon_sym_PLUS_PLUS2] = ACTIONS(1675), - [anon_sym_SLASH2] = ACTIONS(1677), - [anon_sym_mod2] = ACTIONS(1675), - [anon_sym_SLASH_SLASH2] = ACTIONS(1675), - [anon_sym_PLUS2] = ACTIONS(1677), - [anon_sym_bit_DASHshl2] = ACTIONS(1675), - [anon_sym_bit_DASHshr2] = ACTIONS(1675), - [anon_sym_bit_DASHand2] = ACTIONS(1675), - [anon_sym_bit_DASHxor2] = ACTIONS(1675), - [anon_sym_bit_DASHor2] = ACTIONS(1675), - [aux_sym__immediate_decimal_token1] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1677), - [anon_sym_out_GT] = ACTIONS(1677), - [anon_sym_e_GT] = ACTIONS(1677), - [anon_sym_o_GT] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT] = ACTIONS(1677), - [anon_sym_err_GT_GT] = ACTIONS(1675), - [anon_sym_out_GT_GT] = ACTIONS(1675), - [anon_sym_e_GT_GT] = ACTIONS(1675), - [anon_sym_o_GT_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), + [ts_builtin_sym_end] = ACTIONS(1582), + [anon_sym_in] = ACTIONS(1582), + [sym__newline] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_err_GT_PIPE] = ACTIONS(1582), + [anon_sym_out_GT_PIPE] = ACTIONS(1582), + [anon_sym_e_GT_PIPE] = ACTIONS(1582), + [anon_sym_o_GT_PIPE] = ACTIONS(1582), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_GT2] = ACTIONS(1586), + [anon_sym_DASH2] = ACTIONS(1586), + [anon_sym_STAR2] = ACTIONS(1586), + [anon_sym_and2] = ACTIONS(1582), + [anon_sym_xor2] = ACTIONS(1582), + [anon_sym_or2] = ACTIONS(1582), + [anon_sym_not_DASHin2] = ACTIONS(1582), + [anon_sym_has2] = ACTIONS(1582), + [anon_sym_not_DASHhas2] = ACTIONS(1582), + [anon_sym_starts_DASHwith2] = ACTIONS(1582), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1582), + [anon_sym_ends_DASHwith2] = ACTIONS(1582), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1582), + [anon_sym_EQ_EQ2] = ACTIONS(1582), + [anon_sym_BANG_EQ2] = ACTIONS(1582), + [anon_sym_LT2] = ACTIONS(1586), + [anon_sym_LT_EQ2] = ACTIONS(1582), + [anon_sym_GT_EQ2] = ACTIONS(1582), + [anon_sym_EQ_TILDE2] = ACTIONS(1582), + [anon_sym_BANG_TILDE2] = ACTIONS(1582), + [anon_sym_like2] = ACTIONS(1582), + [anon_sym_not_DASHlike2] = ACTIONS(1582), + [anon_sym_LPAREN2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1582), + [anon_sym_PLUS_PLUS2] = ACTIONS(1582), + [anon_sym_SLASH2] = ACTIONS(1586), + [anon_sym_mod2] = ACTIONS(1582), + [anon_sym_SLASH_SLASH2] = ACTIONS(1582), + [anon_sym_PLUS2] = ACTIONS(1586), + [anon_sym_bit_DASHshl2] = ACTIONS(1582), + [anon_sym_bit_DASHshr2] = ACTIONS(1582), + [anon_sym_bit_DASHand2] = ACTIONS(1582), + [anon_sym_bit_DASHxor2] = ACTIONS(1582), + [anon_sym_bit_DASHor2] = ACTIONS(1582), + [anon_sym_DOT] = ACTIONS(1675), + [aux_sym__immediate_decimal_token1] = ACTIONS(1677), + [aux_sym__immediate_decimal_token2] = ACTIONS(1677), + [aux_sym__immediate_decimal_token3] = ACTIONS(1679), + [aux_sym__immediate_decimal_token4] = ACTIONS(1679), + [anon_sym_err_GT] = ACTIONS(1586), + [anon_sym_out_GT] = ACTIONS(1586), + [anon_sym_e_GT] = ACTIONS(1586), + [anon_sym_o_GT] = ACTIONS(1586), + [anon_sym_err_PLUSout_GT] = ACTIONS(1586), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1586), + [anon_sym_o_PLUSe_GT] = ACTIONS(1586), + [anon_sym_e_PLUSo_GT] = ACTIONS(1586), + [anon_sym_err_GT_GT] = ACTIONS(1582), + [anon_sym_out_GT_GT] = ACTIONS(1582), + [anon_sym_e_GT_GT] = ACTIONS(1582), + [anon_sym_o_GT_GT] = ACTIONS(1582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), + [sym__unquoted_pattern] = ACTIONS(1598), [anon_sym_POUND] = ACTIONS(3), }, [STATE(411)] = { - [sym__expr_parenthesized_immediate] = STATE(742), - [sym__immediate_decimal] = STATE(925), - [sym_val_variable] = STATE(742), + [sym__expr_parenthesized_immediate] = STATE(809), + [sym__immediate_decimal] = STATE(951), + [sym_val_variable] = STATE(809), [sym_comment] = STATE(411), - [anon_sym_in] = ACTIONS(1631), - [sym__newline] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_PIPE] = ACTIONS(1631), - [anon_sym_err_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_GT_PIPE] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1631), - [anon_sym_RPAREN] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_LBRACE] = ACTIONS(1631), - [anon_sym_RBRACE] = ACTIONS(1631), - [anon_sym_STAR2] = ACTIONS(1633), - [anon_sym_and2] = ACTIONS(1631), - [anon_sym_xor2] = ACTIONS(1631), - [anon_sym_or2] = ACTIONS(1631), - [anon_sym_not_DASHin2] = ACTIONS(1631), - [anon_sym_has2] = ACTIONS(1631), - [anon_sym_not_DASHhas2] = ACTIONS(1631), - [anon_sym_starts_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1631), - [anon_sym_ends_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1631), - [anon_sym_EQ_EQ2] = ACTIONS(1631), - [anon_sym_BANG_EQ2] = ACTIONS(1631), - [anon_sym_LT2] = ACTIONS(1633), - [anon_sym_LT_EQ2] = ACTIONS(1631), - [anon_sym_GT_EQ2] = ACTIONS(1631), - [anon_sym_EQ_TILDE2] = ACTIONS(1631), - [anon_sym_BANG_TILDE2] = ACTIONS(1631), - [anon_sym_like2] = ACTIONS(1631), - [anon_sym_not_DASHlike2] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1631), - [anon_sym_PLUS_PLUS2] = ACTIONS(1631), - [anon_sym_SLASH2] = ACTIONS(1633), - [anon_sym_mod2] = ACTIONS(1631), - [anon_sym_SLASH_SLASH2] = ACTIONS(1631), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_bit_DASHshl2] = ACTIONS(1631), - [anon_sym_bit_DASHshr2] = ACTIONS(1631), - [anon_sym_bit_DASHand2] = ACTIONS(1631), - [anon_sym_bit_DASHxor2] = ACTIONS(1631), - [anon_sym_bit_DASHor2] = ACTIONS(1631), - [aux_sym__immediate_decimal_token1] = ACTIONS(1647), - [aux_sym__immediate_decimal_token2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1631), - [anon_sym_out_GT_GT] = ACTIONS(1631), - [anon_sym_e_GT_GT] = ACTIONS(1631), - [anon_sym_o_GT_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1631), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(412)] = { - [sym_cell_path] = STATE(465), - [sym_path] = STATE(441), - [sym_comment] = STATE(412), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1679), - [sym__newline] = ACTIONS(1679), - [anon_sym_SEMI] = ACTIONS(1679), - [anon_sym_PIPE] = ACTIONS(1679), - [anon_sym_err_GT_PIPE] = ACTIONS(1679), - [anon_sym_out_GT_PIPE] = ACTIONS(1679), - [anon_sym_e_GT_PIPE] = ACTIONS(1679), - [anon_sym_o_GT_PIPE] = ACTIONS(1679), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1679), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1679), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1679), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1679), - [anon_sym_RPAREN] = ACTIONS(1679), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1679), - [anon_sym_RBRACE] = ACTIONS(1679), - [anon_sym_EQ_GT] = ACTIONS(1679), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1679), - [anon_sym_xor2] = ACTIONS(1679), - [anon_sym_or2] = ACTIONS(1679), - [anon_sym_not_DASHin2] = ACTIONS(1679), - [anon_sym_has2] = ACTIONS(1679), - [anon_sym_not_DASHhas2] = ACTIONS(1679), - [anon_sym_starts_DASHwith2] = ACTIONS(1679), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1679), - [anon_sym_ends_DASHwith2] = ACTIONS(1679), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1679), - [anon_sym_EQ_EQ2] = ACTIONS(1679), - [anon_sym_BANG_EQ2] = ACTIONS(1679), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1679), - [anon_sym_GT_EQ2] = ACTIONS(1679), - [anon_sym_EQ_TILDE2] = ACTIONS(1679), - [anon_sym_BANG_TILDE2] = ACTIONS(1679), - [anon_sym_like2] = ACTIONS(1679), - [anon_sym_not_DASHlike2] = ACTIONS(1679), - [anon_sym_STAR_STAR2] = ACTIONS(1679), - [anon_sym_PLUS_PLUS2] = ACTIONS(1679), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1679), - [anon_sym_SLASH_SLASH2] = ACTIONS(1679), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1679), - [anon_sym_bit_DASHshr2] = ACTIONS(1679), - [anon_sym_bit_DASHand2] = ACTIONS(1679), - [anon_sym_bit_DASHxor2] = ACTIONS(1679), - [anon_sym_bit_DASHor2] = ACTIONS(1679), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1679), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1679), - [anon_sym_COLON2] = ACTIONS(1679), - [anon_sym_DOT2] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1681), - [anon_sym_out_GT] = ACTIONS(1681), - [anon_sym_e_GT] = ACTIONS(1681), - [anon_sym_o_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT] = ACTIONS(1681), - [anon_sym_err_GT_GT] = ACTIONS(1679), - [anon_sym_out_GT_GT] = ACTIONS(1679), - [anon_sym_e_GT_GT] = ACTIONS(1679), - [anon_sym_o_GT_GT] = ACTIONS(1679), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1679), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1679), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1679), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(413)] = { - [sym_comment] = STATE(413), - [ts_builtin_sym_end] = ACTIONS(1537), - [anon_sym_EQ] = ACTIONS(1535), - [anon_sym_PLUS_EQ] = ACTIONS(1537), - [anon_sym_DASH_EQ] = ACTIONS(1537), - [anon_sym_STAR_EQ] = ACTIONS(1537), - [anon_sym_SLASH_EQ] = ACTIONS(1537), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1537), - [anon_sym_in] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_GT2] = ACTIONS(1535), - [anon_sym_DASH2] = ACTIONS(1535), - [anon_sym_STAR2] = ACTIONS(1535), - [anon_sym_and2] = ACTIONS(1537), - [anon_sym_xor2] = ACTIONS(1537), - [anon_sym_or2] = ACTIONS(1537), - [anon_sym_not_DASHin2] = ACTIONS(1537), - [anon_sym_has2] = ACTIONS(1537), - [anon_sym_not_DASHhas2] = ACTIONS(1537), - [anon_sym_starts_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1537), - [anon_sym_ends_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1537), - [anon_sym_EQ_EQ2] = ACTIONS(1537), - [anon_sym_BANG_EQ2] = ACTIONS(1537), - [anon_sym_LT2] = ACTIONS(1535), - [anon_sym_LT_EQ2] = ACTIONS(1537), - [anon_sym_GT_EQ2] = ACTIONS(1537), - [anon_sym_EQ_TILDE2] = ACTIONS(1537), - [anon_sym_BANG_TILDE2] = ACTIONS(1537), - [anon_sym_like2] = ACTIONS(1537), - [anon_sym_not_DASHlike2] = ACTIONS(1537), - [anon_sym_STAR_STAR2] = ACTIONS(1537), - [anon_sym_PLUS_PLUS2] = ACTIONS(1535), - [anon_sym_SLASH2] = ACTIONS(1535), - [anon_sym_mod2] = ACTIONS(1537), - [anon_sym_SLASH_SLASH2] = ACTIONS(1537), - [anon_sym_PLUS2] = ACTIONS(1535), - [anon_sym_bit_DASHshl2] = ACTIONS(1537), - [anon_sym_bit_DASHshr2] = ACTIONS(1537), - [anon_sym_bit_DASHand2] = ACTIONS(1537), - [anon_sym_bit_DASHxor2] = ACTIONS(1537), - [anon_sym_bit_DASHor2] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(414)] = { - [sym_cell_path] = STATE(492), - [sym_path] = STATE(441), - [sym_comment] = STATE(414), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1434), - [sym__newline] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_err_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_GT_PIPE] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1434), - [anon_sym_RPAREN] = ACTIONS(1434), - [anon_sym_GT2] = ACTIONS(1432), - [anon_sym_DASH2] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_RBRACE] = ACTIONS(1434), - [anon_sym_EQ_GT] = ACTIONS(1434), - [anon_sym_STAR2] = ACTIONS(1432), - [anon_sym_and2] = ACTIONS(1434), - [anon_sym_xor2] = ACTIONS(1434), - [anon_sym_or2] = ACTIONS(1434), - [anon_sym_not_DASHin2] = ACTIONS(1434), - [anon_sym_has2] = ACTIONS(1434), - [anon_sym_not_DASHhas2] = ACTIONS(1434), - [anon_sym_starts_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1434), - [anon_sym_ends_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1434), - [anon_sym_EQ_EQ2] = ACTIONS(1434), - [anon_sym_BANG_EQ2] = ACTIONS(1434), - [anon_sym_LT2] = ACTIONS(1432), - [anon_sym_LT_EQ2] = ACTIONS(1434), - [anon_sym_GT_EQ2] = ACTIONS(1434), - [anon_sym_EQ_TILDE2] = ACTIONS(1434), - [anon_sym_BANG_TILDE2] = ACTIONS(1434), - [anon_sym_like2] = ACTIONS(1434), - [anon_sym_not_DASHlike2] = ACTIONS(1434), - [anon_sym_STAR_STAR2] = ACTIONS(1434), - [anon_sym_PLUS_PLUS2] = ACTIONS(1434), - [anon_sym_SLASH2] = ACTIONS(1432), - [anon_sym_mod2] = ACTIONS(1434), - [anon_sym_SLASH_SLASH2] = ACTIONS(1434), - [anon_sym_PLUS2] = ACTIONS(1432), - [anon_sym_bit_DASHshl2] = ACTIONS(1434), - [anon_sym_bit_DASHshr2] = ACTIONS(1434), - [anon_sym_bit_DASHand2] = ACTIONS(1434), - [anon_sym_bit_DASHxor2] = ACTIONS(1434), - [anon_sym_bit_DASHor2] = ACTIONS(1434), - [anon_sym_DOT_DOT2] = ACTIONS(1432), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1434), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), - [anon_sym_DOT2] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1432), - [anon_sym_out_GT] = ACTIONS(1432), - [anon_sym_e_GT] = ACTIONS(1432), - [anon_sym_o_GT] = ACTIONS(1432), - [anon_sym_err_PLUSout_GT] = ACTIONS(1432), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1432), - [anon_sym_o_PLUSe_GT] = ACTIONS(1432), - [anon_sym_e_PLUSo_GT] = ACTIONS(1432), - [anon_sym_err_GT_GT] = ACTIONS(1434), - [anon_sym_out_GT_GT] = ACTIONS(1434), - [anon_sym_e_GT_GT] = ACTIONS(1434), - [anon_sym_o_GT_GT] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1434), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(415)] = { - [sym_comment] = STATE(415), - [anon_sym_in] = ACTIONS(1480), - [sym__newline] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_err_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_GT_PIPE] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1480), - [anon_sym_RPAREN] = ACTIONS(1480), - [anon_sym_GT2] = ACTIONS(1478), - [anon_sym_DASH2] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_EQ_GT] = ACTIONS(1480), - [anon_sym_STAR2] = ACTIONS(1478), - [anon_sym_and2] = ACTIONS(1480), - [anon_sym_xor2] = ACTIONS(1480), - [anon_sym_or2] = ACTIONS(1480), - [anon_sym_not_DASHin2] = ACTIONS(1480), - [anon_sym_has2] = ACTIONS(1480), - [anon_sym_not_DASHhas2] = ACTIONS(1480), - [anon_sym_starts_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1480), - [anon_sym_ends_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1480), - [anon_sym_EQ_EQ2] = ACTIONS(1480), - [anon_sym_BANG_EQ2] = ACTIONS(1480), - [anon_sym_LT2] = ACTIONS(1478), - [anon_sym_LT_EQ2] = ACTIONS(1480), - [anon_sym_GT_EQ2] = ACTIONS(1480), - [anon_sym_EQ_TILDE2] = ACTIONS(1480), - [anon_sym_BANG_TILDE2] = ACTIONS(1480), - [anon_sym_like2] = ACTIONS(1480), - [anon_sym_not_DASHlike2] = ACTIONS(1480), - [anon_sym_STAR_STAR2] = ACTIONS(1480), - [anon_sym_PLUS_PLUS2] = ACTIONS(1480), - [anon_sym_SLASH2] = ACTIONS(1478), - [anon_sym_mod2] = ACTIONS(1480), - [anon_sym_SLASH_SLASH2] = ACTIONS(1480), - [anon_sym_PLUS2] = ACTIONS(1478), - [anon_sym_bit_DASHshl2] = ACTIONS(1480), - [anon_sym_bit_DASHshr2] = ACTIONS(1480), - [anon_sym_bit_DASHand2] = ACTIONS(1480), - [anon_sym_bit_DASHxor2] = ACTIONS(1480), - [anon_sym_bit_DASHor2] = ACTIONS(1480), - [anon_sym_DOT_DOT2] = ACTIONS(1478), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1480), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1480), - [anon_sym_COLON2] = ACTIONS(1480), - [anon_sym_QMARK2] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_DOT2] = ACTIONS(1478), - [anon_sym_err_GT] = ACTIONS(1478), - [anon_sym_out_GT] = ACTIONS(1478), - [anon_sym_e_GT] = ACTIONS(1478), - [anon_sym_o_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT] = ACTIONS(1478), - [anon_sym_err_GT_GT] = ACTIONS(1480), - [anon_sym_out_GT_GT] = ACTIONS(1480), - [anon_sym_e_GT_GT] = ACTIONS(1480), - [anon_sym_o_GT_GT] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1480), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(416)] = { - [sym__expr_parenthesized_immediate] = STATE(1343), - [sym__immediate_decimal] = STATE(1090), - [sym_val_variable] = STATE(1343), - [sym_comment] = STATE(416), - [ts_builtin_sym_end] = ACTIONS(1631), - [anon_sym_in] = ACTIONS(1631), - [sym__newline] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_PIPE] = ACTIONS(1631), - [anon_sym_err_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_GT_PIPE] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_STAR2] = ACTIONS(1633), - [anon_sym_and2] = ACTIONS(1631), - [anon_sym_xor2] = ACTIONS(1631), - [anon_sym_or2] = ACTIONS(1631), - [anon_sym_not_DASHin2] = ACTIONS(1631), - [anon_sym_has2] = ACTIONS(1631), - [anon_sym_not_DASHhas2] = ACTIONS(1631), - [anon_sym_starts_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1631), - [anon_sym_ends_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1631), - [anon_sym_EQ_EQ2] = ACTIONS(1631), - [anon_sym_BANG_EQ2] = ACTIONS(1631), - [anon_sym_LT2] = ACTIONS(1633), - [anon_sym_LT_EQ2] = ACTIONS(1631), - [anon_sym_GT_EQ2] = ACTIONS(1631), - [anon_sym_EQ_TILDE2] = ACTIONS(1631), - [anon_sym_BANG_TILDE2] = ACTIONS(1631), - [anon_sym_like2] = ACTIONS(1631), - [anon_sym_not_DASHlike2] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1631), - [anon_sym_PLUS_PLUS2] = ACTIONS(1631), - [anon_sym_SLASH2] = ACTIONS(1633), - [anon_sym_mod2] = ACTIONS(1631), - [anon_sym_SLASH_SLASH2] = ACTIONS(1631), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_bit_DASHshl2] = ACTIONS(1631), - [anon_sym_bit_DASHshr2] = ACTIONS(1631), - [anon_sym_bit_DASHand2] = ACTIONS(1631), - [anon_sym_bit_DASHxor2] = ACTIONS(1631), - [anon_sym_bit_DASHor2] = ACTIONS(1631), - [aux_sym__immediate_decimal_token1] = ACTIONS(1683), - [aux_sym__immediate_decimal_token2] = ACTIONS(1683), - [aux_sym__immediate_decimal_token3] = ACTIONS(1685), - [aux_sym__immediate_decimal_token4] = ACTIONS(1685), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1631), - [anon_sym_out_GT_GT] = ACTIONS(1631), - [anon_sym_e_GT_GT] = ACTIONS(1631), - [anon_sym_o_GT_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1631), - [sym__unquoted_pattern] = ACTIONS(1639), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(417)] = { - [sym_comment] = STATE(417), - [ts_builtin_sym_end] = ACTIONS(1464), - [anon_sym_EQ] = ACTIONS(1462), - [anon_sym_PLUS_EQ] = ACTIONS(1464), - [anon_sym_DASH_EQ] = ACTIONS(1464), - [anon_sym_STAR_EQ] = ACTIONS(1464), - [anon_sym_SLASH_EQ] = ACTIONS(1464), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [sym__newline] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_err_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_GT_PIPE] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1464), - [anon_sym_GT2] = ACTIONS(1462), - [anon_sym_DASH2] = ACTIONS(1462), - [anon_sym_STAR2] = ACTIONS(1462), - [anon_sym_and2] = ACTIONS(1464), - [anon_sym_xor2] = ACTIONS(1464), - [anon_sym_or2] = ACTIONS(1464), - [anon_sym_not_DASHin2] = ACTIONS(1464), - [anon_sym_has2] = ACTIONS(1464), - [anon_sym_not_DASHhas2] = ACTIONS(1464), - [anon_sym_starts_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1464), - [anon_sym_ends_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1464), - [anon_sym_EQ_EQ2] = ACTIONS(1464), - [anon_sym_BANG_EQ2] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1462), - [anon_sym_LT_EQ2] = ACTIONS(1464), - [anon_sym_GT_EQ2] = ACTIONS(1464), - [anon_sym_EQ_TILDE2] = ACTIONS(1464), - [anon_sym_BANG_TILDE2] = ACTIONS(1464), - [anon_sym_like2] = ACTIONS(1464), - [anon_sym_not_DASHlike2] = ACTIONS(1464), - [anon_sym_STAR_STAR2] = ACTIONS(1464), - [anon_sym_PLUS_PLUS2] = ACTIONS(1462), - [anon_sym_SLASH2] = ACTIONS(1462), - [anon_sym_mod2] = ACTIONS(1464), - [anon_sym_SLASH_SLASH2] = ACTIONS(1464), - [anon_sym_PLUS2] = ACTIONS(1462), - [anon_sym_bit_DASHshl2] = ACTIONS(1464), - [anon_sym_bit_DASHshr2] = ACTIONS(1464), - [anon_sym_bit_DASHand2] = ACTIONS(1464), - [anon_sym_bit_DASHxor2] = ACTIONS(1464), - [anon_sym_bit_DASHor2] = ACTIONS(1464), - [anon_sym_DOT_DOT2] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), - [anon_sym_err_GT_GT] = ACTIONS(1464), - [anon_sym_out_GT_GT] = ACTIONS(1464), - [anon_sym_e_GT_GT] = ACTIONS(1464), - [anon_sym_o_GT_GT] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1464), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(418)] = { - [sym__expr_parenthesized_immediate] = STATE(1311), - [sym__immediate_decimal] = STATE(1068), - [sym_val_variable] = STATE(1311), - [sym_comment] = STATE(418), - [ts_builtin_sym_end] = ACTIONS(1596), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [aux_sym__immediate_decimal_token1] = ACTIONS(1683), - [aux_sym__immediate_decimal_token2] = ACTIONS(1683), - [aux_sym__immediate_decimal_token3] = ACTIONS(1685), - [aux_sym__immediate_decimal_token4] = ACTIONS(1685), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), - [sym__unquoted_pattern] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(419)] = { - [sym__expr_parenthesized_immediate] = STATE(918), - [sym__immediate_decimal] = STATE(920), - [sym_val_variable] = STATE(918), - [sym_comment] = STATE(419), - [ts_builtin_sym_end] = ACTIONS(1582), [anon_sym_in] = ACTIONS(1582), [sym__newline] = ACTIONS(1582), [anon_sym_SEMI] = ACTIONS(1582), @@ -80172,9 +79771,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1649), + [anon_sym_RPAREN] = ACTIONS(1582), + [anon_sym_DOLLAR] = ACTIONS(1584), [anon_sym_GT2] = ACTIONS(1586), [anon_sym_DASH2] = ACTIONS(1586), + [anon_sym_RBRACE] = ACTIONS(1582), [anon_sym_STAR2] = ACTIONS(1586), [anon_sym_and2] = ACTIONS(1582), [anon_sym_xor2] = ACTIONS(1582), @@ -80195,7 +79796,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(1582), [anon_sym_like2] = ACTIONS(1582), [anon_sym_not_DASHlike2] = ACTIONS(1582), - [anon_sym_LPAREN2] = ACTIONS(1651), + [anon_sym_LPAREN2] = ACTIONS(1588), [anon_sym_STAR_STAR2] = ACTIONS(1582), [anon_sym_PLUS_PLUS2] = ACTIONS(1582), [anon_sym_SLASH2] = ACTIONS(1586), @@ -80207,11 +79808,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1582), [anon_sym_bit_DASHxor2] = ACTIONS(1582), [anon_sym_bit_DASHor2] = ACTIONS(1582), - [anon_sym_DOT] = ACTIONS(1687), - [aux_sym__immediate_decimal_token1] = ACTIONS(1655), - [aux_sym__immediate_decimal_token2] = ACTIONS(1655), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), + [aux_sym__immediate_decimal_token1] = ACTIONS(1637), + [aux_sym__immediate_decimal_token2] = ACTIONS(1637), + [aux_sym__immediate_decimal_token3] = ACTIONS(1639), + [aux_sym__immediate_decimal_token4] = ACTIONS(1639), [anon_sym_err_GT] = ACTIONS(1586), [anon_sym_out_GT] = ACTIONS(1586), [anon_sym_e_GT] = ACTIONS(1586), @@ -80228,240 +79828,544 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), + [sym__unquoted_pattern] = ACTIONS(1598), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(420)] = { - [sym_path] = STATE(441), - [sym_comment] = STATE(420), - [aux_sym__where_predicate_lhs_repeat1] = STATE(420), - [anon_sym_in] = ACTIONS(1526), - [sym__newline] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1526), - [anon_sym_err_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_GT_PIPE] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1526), - [anon_sym_RPAREN] = ACTIONS(1526), - [anon_sym_GT2] = ACTIONS(1524), - [anon_sym_DASH2] = ACTIONS(1526), - [anon_sym_LBRACE] = ACTIONS(1526), - [anon_sym_RBRACE] = ACTIONS(1526), - [anon_sym_EQ_GT] = ACTIONS(1526), - [anon_sym_STAR2] = ACTIONS(1524), - [anon_sym_and2] = ACTIONS(1526), - [anon_sym_xor2] = ACTIONS(1526), - [anon_sym_or2] = ACTIONS(1526), - [anon_sym_not_DASHin2] = ACTIONS(1526), - [anon_sym_has2] = ACTIONS(1526), - [anon_sym_not_DASHhas2] = ACTIONS(1526), - [anon_sym_starts_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1526), - [anon_sym_ends_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1526), - [anon_sym_EQ_EQ2] = ACTIONS(1526), - [anon_sym_BANG_EQ2] = ACTIONS(1526), - [anon_sym_LT2] = ACTIONS(1524), - [anon_sym_LT_EQ2] = ACTIONS(1526), - [anon_sym_GT_EQ2] = ACTIONS(1526), - [anon_sym_EQ_TILDE2] = ACTIONS(1526), - [anon_sym_BANG_TILDE2] = ACTIONS(1526), - [anon_sym_like2] = ACTIONS(1526), - [anon_sym_not_DASHlike2] = ACTIONS(1526), - [anon_sym_STAR_STAR2] = ACTIONS(1526), - [anon_sym_PLUS_PLUS2] = ACTIONS(1526), - [anon_sym_SLASH2] = ACTIONS(1524), - [anon_sym_mod2] = ACTIONS(1526), - [anon_sym_SLASH_SLASH2] = ACTIONS(1526), - [anon_sym_PLUS2] = ACTIONS(1524), - [anon_sym_bit_DASHshl2] = ACTIONS(1526), - [anon_sym_bit_DASHshr2] = ACTIONS(1526), - [anon_sym_bit_DASHand2] = ACTIONS(1526), - [anon_sym_bit_DASHxor2] = ACTIONS(1526), - [anon_sym_bit_DASHor2] = ACTIONS(1526), - [anon_sym_DOT_DOT2] = ACTIONS(1524), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1526), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1526), - [anon_sym_COLON2] = ACTIONS(1526), - [anon_sym_DOT2] = ACTIONS(1689), - [anon_sym_err_GT] = ACTIONS(1524), - [anon_sym_out_GT] = ACTIONS(1524), - [anon_sym_e_GT] = ACTIONS(1524), - [anon_sym_o_GT] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT] = ACTIONS(1524), - [anon_sym_err_GT_GT] = ACTIONS(1526), - [anon_sym_out_GT_GT] = ACTIONS(1526), - [anon_sym_e_GT_GT] = ACTIONS(1526), - [anon_sym_o_GT_GT] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1526), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(421)] = { - [sym_comment] = STATE(421), - [anon_sym_in] = ACTIONS(741), - [sym__newline] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(741), - [anon_sym_err_GT_PIPE] = ACTIONS(741), - [anon_sym_out_GT_PIPE] = ACTIONS(741), - [anon_sym_e_GT_PIPE] = ACTIONS(741), - [anon_sym_o_GT_PIPE] = ACTIONS(741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(741), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(741), - [anon_sym_RBRACE] = ACTIONS(741), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(741), - [anon_sym_xor2] = ACTIONS(741), - [anon_sym_or2] = ACTIONS(741), - [anon_sym_not_DASHin2] = ACTIONS(741), - [anon_sym_has2] = ACTIONS(741), - [anon_sym_not_DASHhas2] = ACTIONS(741), - [anon_sym_starts_DASHwith2] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(741), - [anon_sym_ends_DASHwith2] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(741), - [anon_sym_EQ_EQ2] = ACTIONS(741), - [anon_sym_BANG_EQ2] = ACTIONS(741), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(741), - [anon_sym_GT_EQ2] = ACTIONS(741), - [anon_sym_EQ_TILDE2] = ACTIONS(741), - [anon_sym_BANG_TILDE2] = ACTIONS(741), - [anon_sym_like2] = ACTIONS(741), - [anon_sym_not_DASHlike2] = ACTIONS(741), - [anon_sym_LPAREN2] = ACTIONS(741), - [anon_sym_STAR_STAR2] = ACTIONS(741), - [anon_sym_PLUS_PLUS2] = ACTIONS(741), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(741), - [anon_sym_SLASH_SLASH2] = ACTIONS(741), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(741), - [anon_sym_bit_DASHshr2] = ACTIONS(741), - [anon_sym_bit_DASHand2] = ACTIONS(741), - [anon_sym_bit_DASHxor2] = ACTIONS(741), - [anon_sym_bit_DASHor2] = ACTIONS(741), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1692), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1694), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(741), - [anon_sym_out_GT_GT] = ACTIONS(741), - [anon_sym_e_GT_GT] = ACTIONS(741), - [anon_sym_o_GT_GT] = ACTIONS(741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(741), - [sym__unquoted_pattern] = ACTIONS(739), + [STATE(412)] = { + [sym_comment] = STATE(412), + [ts_builtin_sym_end] = ACTIONS(1448), + [anon_sym_EQ] = ACTIONS(1446), + [anon_sym_PLUS_EQ] = ACTIONS(1448), + [anon_sym_DASH_EQ] = ACTIONS(1448), + [anon_sym_STAR_EQ] = ACTIONS(1448), + [anon_sym_SLASH_EQ] = ACTIONS(1448), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1448), + [anon_sym_in] = ACTIONS(1448), + [sym__newline] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1448), + [anon_sym_err_GT_PIPE] = ACTIONS(1448), + [anon_sym_out_GT_PIPE] = ACTIONS(1448), + [anon_sym_e_GT_PIPE] = ACTIONS(1448), + [anon_sym_o_GT_PIPE] = ACTIONS(1448), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1448), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), + [anon_sym_GT2] = ACTIONS(1446), + [anon_sym_DASH2] = ACTIONS(1446), + [anon_sym_STAR2] = ACTIONS(1446), + [anon_sym_and2] = ACTIONS(1448), + [anon_sym_xor2] = ACTIONS(1448), + [anon_sym_or2] = ACTIONS(1448), + [anon_sym_not_DASHin2] = ACTIONS(1448), + [anon_sym_has2] = ACTIONS(1448), + [anon_sym_not_DASHhas2] = ACTIONS(1448), + [anon_sym_starts_DASHwith2] = ACTIONS(1448), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1448), + [anon_sym_ends_DASHwith2] = ACTIONS(1448), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), + [anon_sym_EQ_EQ2] = ACTIONS(1448), + [anon_sym_BANG_EQ2] = ACTIONS(1448), + [anon_sym_LT2] = ACTIONS(1446), + [anon_sym_LT_EQ2] = ACTIONS(1448), + [anon_sym_GT_EQ2] = ACTIONS(1448), + [anon_sym_EQ_TILDE2] = ACTIONS(1448), + [anon_sym_BANG_TILDE2] = ACTIONS(1448), + [anon_sym_like2] = ACTIONS(1448), + [anon_sym_not_DASHlike2] = ACTIONS(1448), + [anon_sym_STAR_STAR2] = ACTIONS(1448), + [anon_sym_PLUS_PLUS2] = ACTIONS(1446), + [anon_sym_SLASH2] = ACTIONS(1446), + [anon_sym_mod2] = ACTIONS(1448), + [anon_sym_SLASH_SLASH2] = ACTIONS(1448), + [anon_sym_PLUS2] = ACTIONS(1446), + [anon_sym_bit_DASHshl2] = ACTIONS(1448), + [anon_sym_bit_DASHshr2] = ACTIONS(1448), + [anon_sym_bit_DASHand2] = ACTIONS(1448), + [anon_sym_bit_DASHxor2] = ACTIONS(1448), + [anon_sym_bit_DASHor2] = ACTIONS(1448), + [anon_sym_DOT_DOT2] = ACTIONS(1446), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), + [anon_sym_QMARK2] = ACTIONS(1681), + [anon_sym_DOT2] = ACTIONS(1446), + [anon_sym_err_GT] = ACTIONS(1446), + [anon_sym_out_GT] = ACTIONS(1446), + [anon_sym_e_GT] = ACTIONS(1446), + [anon_sym_o_GT] = ACTIONS(1446), + [anon_sym_err_PLUSout_GT] = ACTIONS(1446), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), + [anon_sym_o_PLUSe_GT] = ACTIONS(1446), + [anon_sym_e_PLUSo_GT] = ACTIONS(1446), + [anon_sym_err_GT_GT] = ACTIONS(1448), + [anon_sym_out_GT_GT] = ACTIONS(1448), + [anon_sym_e_GT_GT] = ACTIONS(1448), + [anon_sym_o_GT_GT] = ACTIONS(1448), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1448), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(422)] = { - [sym_comment] = STATE(422), - [anon_sym_in] = ACTIONS(749), - [sym__newline] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(749), - [anon_sym_err_GT_PIPE] = ACTIONS(749), - [anon_sym_out_GT_PIPE] = ACTIONS(749), - [anon_sym_e_GT_PIPE] = ACTIONS(749), - [anon_sym_o_GT_PIPE] = ACTIONS(749), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(749), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(749), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(749), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(749), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(749), - [anon_sym_RBRACE] = ACTIONS(749), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(749), - [anon_sym_xor2] = ACTIONS(749), - [anon_sym_or2] = ACTIONS(749), - [anon_sym_not_DASHin2] = ACTIONS(749), - [anon_sym_has2] = ACTIONS(749), - [anon_sym_not_DASHhas2] = ACTIONS(749), - [anon_sym_starts_DASHwith2] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(749), - [anon_sym_ends_DASHwith2] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(749), - [anon_sym_EQ_EQ2] = ACTIONS(749), - [anon_sym_BANG_EQ2] = ACTIONS(749), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(749), - [anon_sym_GT_EQ2] = ACTIONS(749), - [anon_sym_EQ_TILDE2] = ACTIONS(749), - [anon_sym_BANG_TILDE2] = ACTIONS(749), - [anon_sym_like2] = ACTIONS(749), - [anon_sym_not_DASHlike2] = ACTIONS(749), - [anon_sym_LPAREN2] = ACTIONS(749), - [anon_sym_STAR_STAR2] = ACTIONS(749), - [anon_sym_PLUS_PLUS2] = ACTIONS(749), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(749), - [anon_sym_SLASH_SLASH2] = ACTIONS(749), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(749), - [anon_sym_bit_DASHshr2] = ACTIONS(749), - [anon_sym_bit_DASHand2] = ACTIONS(749), - [anon_sym_bit_DASHxor2] = ACTIONS(749), - [anon_sym_bit_DASHor2] = ACTIONS(749), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1696), - [aux_sym__immediate_decimal_token5] = ACTIONS(1698), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(749), - [anon_sym_out_GT_GT] = ACTIONS(749), - [anon_sym_e_GT_GT] = ACTIONS(749), - [anon_sym_o_GT_GT] = ACTIONS(749), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(749), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(749), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(749), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(749), - [sym__unquoted_pattern] = ACTIONS(747), + [STATE(413)] = { + [sym_comment] = STATE(413), + [anon_sym_in] = ACTIONS(1523), + [sym__newline] = ACTIONS(1523), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_PIPE] = ACTIONS(1523), + [anon_sym_err_GT_PIPE] = ACTIONS(1523), + [anon_sym_out_GT_PIPE] = ACTIONS(1523), + [anon_sym_e_GT_PIPE] = ACTIONS(1523), + [anon_sym_o_GT_PIPE] = ACTIONS(1523), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1523), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1523), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1523), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1523), + [anon_sym_RPAREN] = ACTIONS(1523), + [anon_sym_GT2] = ACTIONS(1521), + [anon_sym_DASH2] = ACTIONS(1523), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_RBRACE] = ACTIONS(1523), + [anon_sym_EQ_GT] = ACTIONS(1523), + [anon_sym_STAR2] = ACTIONS(1521), + [anon_sym_and2] = ACTIONS(1523), + [anon_sym_xor2] = ACTIONS(1523), + [anon_sym_or2] = ACTIONS(1523), + [anon_sym_not_DASHin2] = ACTIONS(1523), + [anon_sym_has2] = ACTIONS(1523), + [anon_sym_not_DASHhas2] = ACTIONS(1523), + [anon_sym_starts_DASHwith2] = ACTIONS(1523), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1523), + [anon_sym_ends_DASHwith2] = ACTIONS(1523), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1523), + [anon_sym_EQ_EQ2] = ACTIONS(1523), + [anon_sym_BANG_EQ2] = ACTIONS(1523), + [anon_sym_LT2] = ACTIONS(1521), + [anon_sym_LT_EQ2] = ACTIONS(1523), + [anon_sym_GT_EQ2] = ACTIONS(1523), + [anon_sym_EQ_TILDE2] = ACTIONS(1523), + [anon_sym_BANG_TILDE2] = ACTIONS(1523), + [anon_sym_like2] = ACTIONS(1523), + [anon_sym_not_DASHlike2] = ACTIONS(1523), + [anon_sym_STAR_STAR2] = ACTIONS(1523), + [anon_sym_PLUS_PLUS2] = ACTIONS(1523), + [anon_sym_SLASH2] = ACTIONS(1521), + [anon_sym_mod2] = ACTIONS(1523), + [anon_sym_SLASH_SLASH2] = ACTIONS(1523), + [anon_sym_PLUS2] = ACTIONS(1521), + [anon_sym_bit_DASHshl2] = ACTIONS(1523), + [anon_sym_bit_DASHshr2] = ACTIONS(1523), + [anon_sym_bit_DASHand2] = ACTIONS(1523), + [anon_sym_bit_DASHxor2] = ACTIONS(1523), + [anon_sym_bit_DASHor2] = ACTIONS(1523), + [anon_sym_DOT_DOT2] = ACTIONS(1521), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1523), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1523), + [anon_sym_COLON2] = ACTIONS(1523), + [anon_sym_QMARK2] = ACTIONS(1523), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_DOT2] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1521), + [anon_sym_out_GT] = ACTIONS(1521), + [anon_sym_e_GT] = ACTIONS(1521), + [anon_sym_o_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT] = ACTIONS(1521), + [anon_sym_err_GT_GT] = ACTIONS(1523), + [anon_sym_out_GT_GT] = ACTIONS(1523), + [anon_sym_e_GT_GT] = ACTIONS(1523), + [anon_sym_o_GT_GT] = ACTIONS(1523), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1523), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1523), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1523), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1523), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(423)] = { - [sym_path] = STATE(441), - [sym_comment] = STATE(423), - [aux_sym__where_predicate_lhs_repeat1] = STATE(420), + [STATE(414)] = { + [sym__expr_parenthesized_immediate] = STATE(930), + [sym__immediate_decimal] = STATE(963), + [sym_val_variable] = STATE(930), + [sym_comment] = STATE(414), + [ts_builtin_sym_end] = ACTIONS(1582), + [anon_sym_in] = ACTIONS(1582), + [sym__newline] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_err_GT_PIPE] = ACTIONS(1582), + [anon_sym_out_GT_PIPE] = ACTIONS(1582), + [anon_sym_e_GT_PIPE] = ACTIONS(1582), + [anon_sym_o_GT_PIPE] = ACTIONS(1582), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_GT2] = ACTIONS(1586), + [anon_sym_DASH2] = ACTIONS(1586), + [anon_sym_STAR2] = ACTIONS(1586), + [anon_sym_and2] = ACTIONS(1582), + [anon_sym_xor2] = ACTIONS(1582), + [anon_sym_or2] = ACTIONS(1582), + [anon_sym_not_DASHin2] = ACTIONS(1582), + [anon_sym_has2] = ACTIONS(1582), + [anon_sym_not_DASHhas2] = ACTIONS(1582), + [anon_sym_starts_DASHwith2] = ACTIONS(1582), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1582), + [anon_sym_ends_DASHwith2] = ACTIONS(1582), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1582), + [anon_sym_EQ_EQ2] = ACTIONS(1582), + [anon_sym_BANG_EQ2] = ACTIONS(1582), + [anon_sym_LT2] = ACTIONS(1586), + [anon_sym_LT_EQ2] = ACTIONS(1582), + [anon_sym_GT_EQ2] = ACTIONS(1582), + [anon_sym_EQ_TILDE2] = ACTIONS(1582), + [anon_sym_BANG_TILDE2] = ACTIONS(1582), + [anon_sym_like2] = ACTIONS(1582), + [anon_sym_not_DASHlike2] = ACTIONS(1582), + [anon_sym_LPAREN2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1582), + [anon_sym_PLUS_PLUS2] = ACTIONS(1582), + [anon_sym_SLASH2] = ACTIONS(1586), + [anon_sym_mod2] = ACTIONS(1582), + [anon_sym_SLASH_SLASH2] = ACTIONS(1582), + [anon_sym_PLUS2] = ACTIONS(1586), + [anon_sym_bit_DASHshl2] = ACTIONS(1582), + [anon_sym_bit_DASHshr2] = ACTIONS(1582), + [anon_sym_bit_DASHand2] = ACTIONS(1582), + [anon_sym_bit_DASHxor2] = ACTIONS(1582), + [anon_sym_bit_DASHor2] = ACTIONS(1582), + [anon_sym_DOT] = ACTIONS(1683), + [aux_sym__immediate_decimal_token1] = ACTIONS(1677), + [aux_sym__immediate_decimal_token2] = ACTIONS(1677), + [aux_sym__immediate_decimal_token3] = ACTIONS(1679), + [aux_sym__immediate_decimal_token4] = ACTIONS(1679), + [anon_sym_err_GT] = ACTIONS(1586), + [anon_sym_out_GT] = ACTIONS(1586), + [anon_sym_e_GT] = ACTIONS(1586), + [anon_sym_o_GT] = ACTIONS(1586), + [anon_sym_err_PLUSout_GT] = ACTIONS(1586), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1586), + [anon_sym_o_PLUSe_GT] = ACTIONS(1586), + [anon_sym_e_PLUSo_GT] = ACTIONS(1586), + [anon_sym_err_GT_GT] = ACTIONS(1582), + [anon_sym_out_GT_GT] = ACTIONS(1582), + [anon_sym_e_GT_GT] = ACTIONS(1582), + [anon_sym_o_GT_GT] = ACTIONS(1582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(415)] = { + [sym__expr_parenthesized_immediate] = STATE(928), + [sym__immediate_decimal] = STATE(929), + [sym_val_variable] = STATE(928), + [sym_comment] = STATE(415), + [ts_builtin_sym_end] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_GT2] = ACTIONS(1609), + [anon_sym_DASH2] = ACTIONS(1609), + [anon_sym_STAR2] = ACTIONS(1609), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_has2] = ACTIONS(1607), + [anon_sym_not_DASHhas2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1609), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_like2] = ACTIONS(1607), + [anon_sym_not_DASHlike2] = ACTIONS(1607), + [anon_sym_LPAREN2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1609), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1609), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT] = ACTIONS(1685), + [aux_sym__immediate_decimal_token1] = ACTIONS(1677), + [aux_sym__immediate_decimal_token2] = ACTIONS(1677), + [aux_sym__immediate_decimal_token3] = ACTIONS(1679), + [aux_sym__immediate_decimal_token4] = ACTIONS(1679), + [anon_sym_err_GT] = ACTIONS(1609), + [anon_sym_out_GT] = ACTIONS(1609), + [anon_sym_e_GT] = ACTIONS(1609), + [anon_sym_o_GT] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT] = ACTIONS(1609), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(416)] = { + [sym_path] = STATE(435), + [sym_comment] = STATE(416), + [aux_sym__where_predicate_lhs_repeat1] = STATE(423), + [anon_sym_in] = ACTIONS(1492), + [sym__newline] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_err_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_GT_PIPE] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), + [anon_sym_RPAREN] = ACTIONS(1492), + [anon_sym_GT2] = ACTIONS(1490), + [anon_sym_DASH2] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_EQ_GT] = ACTIONS(1492), + [anon_sym_STAR2] = ACTIONS(1490), + [anon_sym_and2] = ACTIONS(1492), + [anon_sym_xor2] = ACTIONS(1492), + [anon_sym_or2] = ACTIONS(1492), + [anon_sym_not_DASHin2] = ACTIONS(1492), + [anon_sym_has2] = ACTIONS(1492), + [anon_sym_not_DASHhas2] = ACTIONS(1492), + [anon_sym_starts_DASHwith2] = ACTIONS(1492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1492), + [anon_sym_ends_DASHwith2] = ACTIONS(1492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1492), + [anon_sym_EQ_EQ2] = ACTIONS(1492), + [anon_sym_BANG_EQ2] = ACTIONS(1492), + [anon_sym_LT2] = ACTIONS(1490), + [anon_sym_LT_EQ2] = ACTIONS(1492), + [anon_sym_GT_EQ2] = ACTIONS(1492), + [anon_sym_EQ_TILDE2] = ACTIONS(1492), + [anon_sym_BANG_TILDE2] = ACTIONS(1492), + [anon_sym_like2] = ACTIONS(1492), + [anon_sym_not_DASHlike2] = ACTIONS(1492), + [anon_sym_STAR_STAR2] = ACTIONS(1492), + [anon_sym_PLUS_PLUS2] = ACTIONS(1492), + [anon_sym_SLASH2] = ACTIONS(1490), + [anon_sym_mod2] = ACTIONS(1492), + [anon_sym_SLASH_SLASH2] = ACTIONS(1492), + [anon_sym_PLUS2] = ACTIONS(1490), + [anon_sym_bit_DASHshl2] = ACTIONS(1492), + [anon_sym_bit_DASHshr2] = ACTIONS(1492), + [anon_sym_bit_DASHand2] = ACTIONS(1492), + [anon_sym_bit_DASHxor2] = ACTIONS(1492), + [anon_sym_bit_DASHor2] = ACTIONS(1492), + [anon_sym_DOT_DOT2] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1492), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1492), + [anon_sym_COLON2] = ACTIONS(1492), + [anon_sym_DOT2] = ACTIONS(1659), + [anon_sym_err_GT] = ACTIONS(1490), + [anon_sym_out_GT] = ACTIONS(1490), + [anon_sym_e_GT] = ACTIONS(1490), + [anon_sym_o_GT] = ACTIONS(1490), + [anon_sym_err_PLUSout_GT] = ACTIONS(1490), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1490), + [anon_sym_o_PLUSe_GT] = ACTIONS(1490), + [anon_sym_e_PLUSo_GT] = ACTIONS(1490), + [anon_sym_err_GT_GT] = ACTIONS(1492), + [anon_sym_out_GT_GT] = ACTIONS(1492), + [anon_sym_e_GT_GT] = ACTIONS(1492), + [anon_sym_o_GT_GT] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(417)] = { + [sym_comment] = STATE(417), + [anon_sym_in] = ACTIONS(1511), + [sym__newline] = ACTIONS(1511), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_err_GT_PIPE] = ACTIONS(1511), + [anon_sym_out_GT_PIPE] = ACTIONS(1511), + [anon_sym_e_GT_PIPE] = ACTIONS(1511), + [anon_sym_o_GT_PIPE] = ACTIONS(1511), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1511), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1511), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1511), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1511), + [anon_sym_RPAREN] = ACTIONS(1511), + [anon_sym_GT2] = ACTIONS(1509), + [anon_sym_DASH2] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_RBRACE] = ACTIONS(1511), + [anon_sym_EQ_GT] = ACTIONS(1511), + [anon_sym_STAR2] = ACTIONS(1509), + [anon_sym_and2] = ACTIONS(1511), + [anon_sym_xor2] = ACTIONS(1511), + [anon_sym_or2] = ACTIONS(1511), + [anon_sym_not_DASHin2] = ACTIONS(1511), + [anon_sym_has2] = ACTIONS(1511), + [anon_sym_not_DASHhas2] = ACTIONS(1511), + [anon_sym_starts_DASHwith2] = ACTIONS(1511), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1511), + [anon_sym_ends_DASHwith2] = ACTIONS(1511), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1511), + [anon_sym_EQ_EQ2] = ACTIONS(1511), + [anon_sym_BANG_EQ2] = ACTIONS(1511), + [anon_sym_LT2] = ACTIONS(1509), + [anon_sym_LT_EQ2] = ACTIONS(1511), + [anon_sym_GT_EQ2] = ACTIONS(1511), + [anon_sym_EQ_TILDE2] = ACTIONS(1511), + [anon_sym_BANG_TILDE2] = ACTIONS(1511), + [anon_sym_like2] = ACTIONS(1511), + [anon_sym_not_DASHlike2] = ACTIONS(1511), + [anon_sym_STAR_STAR2] = ACTIONS(1511), + [anon_sym_PLUS_PLUS2] = ACTIONS(1511), + [anon_sym_SLASH2] = ACTIONS(1509), + [anon_sym_mod2] = ACTIONS(1511), + [anon_sym_SLASH_SLASH2] = ACTIONS(1511), + [anon_sym_PLUS2] = ACTIONS(1509), + [anon_sym_bit_DASHshl2] = ACTIONS(1511), + [anon_sym_bit_DASHshr2] = ACTIONS(1511), + [anon_sym_bit_DASHand2] = ACTIONS(1511), + [anon_sym_bit_DASHxor2] = ACTIONS(1511), + [anon_sym_bit_DASHor2] = ACTIONS(1511), + [anon_sym_DOT_DOT2] = ACTIONS(1509), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1511), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1511), + [anon_sym_COLON2] = ACTIONS(1511), + [anon_sym_QMARK2] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1509), + [anon_sym_DOT2] = ACTIONS(1509), + [anon_sym_err_GT] = ACTIONS(1509), + [anon_sym_out_GT] = ACTIONS(1509), + [anon_sym_e_GT] = ACTIONS(1509), + [anon_sym_o_GT] = ACTIONS(1509), + [anon_sym_err_PLUSout_GT] = ACTIONS(1509), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1509), + [anon_sym_o_PLUSe_GT] = ACTIONS(1509), + [anon_sym_e_PLUSo_GT] = ACTIONS(1509), + [anon_sym_err_GT_GT] = ACTIONS(1511), + [anon_sym_out_GT_GT] = ACTIONS(1511), + [anon_sym_e_GT_GT] = ACTIONS(1511), + [anon_sym_o_GT_GT] = ACTIONS(1511), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1511), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1511), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1511), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1511), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(418)] = { + [sym_comment] = STATE(418), + [anon_sym_EQ] = ACTIONS(1613), + [anon_sym_PLUS_EQ] = ACTIONS(1687), + [anon_sym_DASH_EQ] = ACTIONS(1687), + [anon_sym_STAR_EQ] = ACTIONS(1687), + [anon_sym_SLASH_EQ] = ACTIONS(1687), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(1689), + [sym__newline] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1689), + [anon_sym_err_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_GT_PIPE] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), + [anon_sym_GT2] = ACTIONS(1615), + [anon_sym_DASH2] = ACTIONS(1615), + [anon_sym_RBRACE] = ACTIONS(1689), + [anon_sym_STAR2] = ACTIONS(1615), + [anon_sym_and2] = ACTIONS(1689), + [anon_sym_xor2] = ACTIONS(1689), + [anon_sym_or2] = ACTIONS(1689), + [anon_sym_not_DASHin2] = ACTIONS(1689), + [anon_sym_has2] = ACTIONS(1689), + [anon_sym_not_DASHhas2] = ACTIONS(1689), + [anon_sym_starts_DASHwith2] = ACTIONS(1689), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1689), + [anon_sym_ends_DASHwith2] = ACTIONS(1689), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1689), + [anon_sym_EQ_EQ2] = ACTIONS(1689), + [anon_sym_BANG_EQ2] = ACTIONS(1689), + [anon_sym_LT2] = ACTIONS(1615), + [anon_sym_LT_EQ2] = ACTIONS(1689), + [anon_sym_GT_EQ2] = ACTIONS(1689), + [anon_sym_EQ_TILDE2] = ACTIONS(1689), + [anon_sym_BANG_TILDE2] = ACTIONS(1689), + [anon_sym_like2] = ACTIONS(1689), + [anon_sym_not_DASHlike2] = ACTIONS(1689), + [anon_sym_STAR_STAR2] = ACTIONS(1689), + [anon_sym_PLUS_PLUS2] = ACTIONS(1615), + [anon_sym_SLASH2] = ACTIONS(1615), + [anon_sym_mod2] = ACTIONS(1689), + [anon_sym_SLASH_SLASH2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(1615), + [anon_sym_bit_DASHshl2] = ACTIONS(1689), + [anon_sym_bit_DASHshr2] = ACTIONS(1689), + [anon_sym_bit_DASHand2] = ACTIONS(1689), + [anon_sym_bit_DASHxor2] = ACTIONS(1689), + [anon_sym_bit_DASHor2] = ACTIONS(1689), + [anon_sym_DOT_DOT2] = ACTIONS(1619), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), + [anon_sym_COLON2] = ACTIONS(1691), + [anon_sym_err_GT] = ACTIONS(1615), + [anon_sym_out_GT] = ACTIONS(1615), + [anon_sym_e_GT] = ACTIONS(1615), + [anon_sym_o_GT] = ACTIONS(1615), + [anon_sym_err_PLUSout_GT] = ACTIONS(1615), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), + [anon_sym_o_PLUSe_GT] = ACTIONS(1615), + [anon_sym_e_PLUSo_GT] = ACTIONS(1615), + [anon_sym_err_GT_GT] = ACTIONS(1689), + [anon_sym_out_GT_GT] = ACTIONS(1689), + [anon_sym_e_GT_GT] = ACTIONS(1689), + [anon_sym_o_GT_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(419)] = { + [sym_comment] = STATE(419), [anon_sym_in] = ACTIONS(1460), [sym__newline] = ACTIONS(1460), [anon_sym_SEMI] = ACTIONS(1460), @@ -80515,7 +80419,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ2] = ACTIONS(1460), [anon_sym_DOT_DOT_LT2] = ACTIONS(1460), [anon_sym_COLON2] = ACTIONS(1460), - [anon_sym_DOT2] = ACTIONS(1645), + [anon_sym_QMARK2] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_DOT2] = ACTIONS(1458), [anon_sym_err_GT] = ACTIONS(1458), [anon_sym_out_GT] = ACTIONS(1458), [anon_sym_e_GT] = ACTIONS(1458), @@ -80534,693 +80440,920 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1460), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(420)] = { + [sym_comment] = STATE(420), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_in] = ACTIONS(1448), + [sym__newline] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1448), + [anon_sym_err_GT_PIPE] = ACTIONS(1448), + [anon_sym_out_GT_PIPE] = ACTIONS(1448), + [anon_sym_e_GT_PIPE] = ACTIONS(1448), + [anon_sym_o_GT_PIPE] = ACTIONS(1448), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1448), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), + [anon_sym_RPAREN] = ACTIONS(1448), + [anon_sym_GT2] = ACTIONS(1446), + [anon_sym_DASH2] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_RBRACE] = ACTIONS(1448), + [anon_sym_EQ_GT] = ACTIONS(1448), + [anon_sym_STAR2] = ACTIONS(1446), + [anon_sym_and2] = ACTIONS(1448), + [anon_sym_xor2] = ACTIONS(1448), + [anon_sym_or2] = ACTIONS(1448), + [anon_sym_not_DASHin2] = ACTIONS(1448), + [anon_sym_has2] = ACTIONS(1448), + [anon_sym_not_DASHhas2] = ACTIONS(1448), + [anon_sym_starts_DASHwith2] = ACTIONS(1448), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1448), + [anon_sym_ends_DASHwith2] = ACTIONS(1448), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), + [anon_sym_EQ_EQ2] = ACTIONS(1448), + [anon_sym_BANG_EQ2] = ACTIONS(1448), + [anon_sym_LT2] = ACTIONS(1446), + [anon_sym_LT_EQ2] = ACTIONS(1448), + [anon_sym_GT_EQ2] = ACTIONS(1448), + [anon_sym_EQ_TILDE2] = ACTIONS(1448), + [anon_sym_BANG_TILDE2] = ACTIONS(1448), + [anon_sym_like2] = ACTIONS(1448), + [anon_sym_not_DASHlike2] = ACTIONS(1448), + [anon_sym_STAR_STAR2] = ACTIONS(1448), + [anon_sym_PLUS_PLUS2] = ACTIONS(1448), + [anon_sym_SLASH2] = ACTIONS(1446), + [anon_sym_mod2] = ACTIONS(1448), + [anon_sym_SLASH_SLASH2] = ACTIONS(1448), + [anon_sym_PLUS2] = ACTIONS(1446), + [anon_sym_bit_DASHshl2] = ACTIONS(1448), + [anon_sym_bit_DASHshr2] = ACTIONS(1448), + [anon_sym_bit_DASHand2] = ACTIONS(1448), + [anon_sym_bit_DASHxor2] = ACTIONS(1448), + [anon_sym_bit_DASHor2] = ACTIONS(1448), + [anon_sym_DOT_DOT2] = ACTIONS(1446), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), + [anon_sym_COLON2] = ACTIONS(1448), + [anon_sym_QMARK2] = ACTIONS(1693), + [anon_sym_DOT2] = ACTIONS(1446), + [anon_sym_err_GT] = ACTIONS(1446), + [anon_sym_out_GT] = ACTIONS(1446), + [anon_sym_e_GT] = ACTIONS(1446), + [anon_sym_o_GT] = ACTIONS(1446), + [anon_sym_err_PLUSout_GT] = ACTIONS(1446), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), + [anon_sym_o_PLUSe_GT] = ACTIONS(1446), + [anon_sym_e_PLUSo_GT] = ACTIONS(1446), + [anon_sym_err_GT_GT] = ACTIONS(1448), + [anon_sym_out_GT_GT] = ACTIONS(1448), + [anon_sym_e_GT_GT] = ACTIONS(1448), + [anon_sym_o_GT_GT] = ACTIONS(1448), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1448), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(421)] = { + [sym__expr_parenthesized_immediate] = STATE(1263), + [sym__immediate_decimal] = STATE(1015), + [sym_val_variable] = STATE(1263), + [sym_comment] = STATE(421), + [ts_builtin_sym_end] = ACTIONS(1582), + [anon_sym_in] = ACTIONS(1582), + [sym__newline] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_err_GT_PIPE] = ACTIONS(1582), + [anon_sym_out_GT_PIPE] = ACTIONS(1582), + [anon_sym_e_GT_PIPE] = ACTIONS(1582), + [anon_sym_o_GT_PIPE] = ACTIONS(1582), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_GT2] = ACTIONS(1586), + [anon_sym_DASH2] = ACTIONS(1586), + [anon_sym_STAR2] = ACTIONS(1586), + [anon_sym_and2] = ACTIONS(1582), + [anon_sym_xor2] = ACTIONS(1582), + [anon_sym_or2] = ACTIONS(1582), + [anon_sym_not_DASHin2] = ACTIONS(1582), + [anon_sym_has2] = ACTIONS(1582), + [anon_sym_not_DASHhas2] = ACTIONS(1582), + [anon_sym_starts_DASHwith2] = ACTIONS(1582), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1582), + [anon_sym_ends_DASHwith2] = ACTIONS(1582), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1582), + [anon_sym_EQ_EQ2] = ACTIONS(1582), + [anon_sym_BANG_EQ2] = ACTIONS(1582), + [anon_sym_LT2] = ACTIONS(1586), + [anon_sym_LT_EQ2] = ACTIONS(1582), + [anon_sym_GT_EQ2] = ACTIONS(1582), + [anon_sym_EQ_TILDE2] = ACTIONS(1582), + [anon_sym_BANG_TILDE2] = ACTIONS(1582), + [anon_sym_like2] = ACTIONS(1582), + [anon_sym_not_DASHlike2] = ACTIONS(1582), + [anon_sym_LPAREN2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1582), + [anon_sym_PLUS_PLUS2] = ACTIONS(1582), + [anon_sym_SLASH2] = ACTIONS(1586), + [anon_sym_mod2] = ACTIONS(1582), + [anon_sym_SLASH_SLASH2] = ACTIONS(1582), + [anon_sym_PLUS2] = ACTIONS(1586), + [anon_sym_bit_DASHshl2] = ACTIONS(1582), + [anon_sym_bit_DASHshr2] = ACTIONS(1582), + [anon_sym_bit_DASHand2] = ACTIONS(1582), + [anon_sym_bit_DASHxor2] = ACTIONS(1582), + [anon_sym_bit_DASHor2] = ACTIONS(1582), + [aux_sym__immediate_decimal_token1] = ACTIONS(1695), + [aux_sym__immediate_decimal_token2] = ACTIONS(1695), + [aux_sym__immediate_decimal_token3] = ACTIONS(1697), + [aux_sym__immediate_decimal_token4] = ACTIONS(1697), + [anon_sym_err_GT] = ACTIONS(1586), + [anon_sym_out_GT] = ACTIONS(1586), + [anon_sym_e_GT] = ACTIONS(1586), + [anon_sym_o_GT] = ACTIONS(1586), + [anon_sym_err_PLUSout_GT] = ACTIONS(1586), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1586), + [anon_sym_o_PLUSe_GT] = ACTIONS(1586), + [anon_sym_e_PLUSo_GT] = ACTIONS(1586), + [anon_sym_err_GT_GT] = ACTIONS(1582), + [anon_sym_out_GT_GT] = ACTIONS(1582), + [anon_sym_e_GT_GT] = ACTIONS(1582), + [anon_sym_o_GT_GT] = ACTIONS(1582), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), + [sym__unquoted_pattern] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(422)] = { + [sym_comment] = STATE(422), + [anon_sym_in] = ACTIONS(1507), + [sym__newline] = ACTIONS(1507), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_PIPE] = ACTIONS(1507), + [anon_sym_err_GT_PIPE] = ACTIONS(1507), + [anon_sym_out_GT_PIPE] = ACTIONS(1507), + [anon_sym_e_GT_PIPE] = ACTIONS(1507), + [anon_sym_o_GT_PIPE] = ACTIONS(1507), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1507), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1507), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1507), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1507), + [anon_sym_RPAREN] = ACTIONS(1507), + [anon_sym_GT2] = ACTIONS(1505), + [anon_sym_DASH2] = ACTIONS(1507), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(1507), + [anon_sym_EQ_GT] = ACTIONS(1507), + [anon_sym_STAR2] = ACTIONS(1505), + [anon_sym_and2] = ACTIONS(1507), + [anon_sym_xor2] = ACTIONS(1507), + [anon_sym_or2] = ACTIONS(1507), + [anon_sym_not_DASHin2] = ACTIONS(1507), + [anon_sym_has2] = ACTIONS(1507), + [anon_sym_not_DASHhas2] = ACTIONS(1507), + [anon_sym_starts_DASHwith2] = ACTIONS(1507), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1507), + [anon_sym_ends_DASHwith2] = ACTIONS(1507), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1507), + [anon_sym_EQ_EQ2] = ACTIONS(1507), + [anon_sym_BANG_EQ2] = ACTIONS(1507), + [anon_sym_LT2] = ACTIONS(1505), + [anon_sym_LT_EQ2] = ACTIONS(1507), + [anon_sym_GT_EQ2] = ACTIONS(1507), + [anon_sym_EQ_TILDE2] = ACTIONS(1507), + [anon_sym_BANG_TILDE2] = ACTIONS(1507), + [anon_sym_like2] = ACTIONS(1507), + [anon_sym_not_DASHlike2] = ACTIONS(1507), + [anon_sym_STAR_STAR2] = ACTIONS(1507), + [anon_sym_PLUS_PLUS2] = ACTIONS(1507), + [anon_sym_SLASH2] = ACTIONS(1505), + [anon_sym_mod2] = ACTIONS(1507), + [anon_sym_SLASH_SLASH2] = ACTIONS(1507), + [anon_sym_PLUS2] = ACTIONS(1505), + [anon_sym_bit_DASHshl2] = ACTIONS(1507), + [anon_sym_bit_DASHshr2] = ACTIONS(1507), + [anon_sym_bit_DASHand2] = ACTIONS(1507), + [anon_sym_bit_DASHxor2] = ACTIONS(1507), + [anon_sym_bit_DASHor2] = ACTIONS(1507), + [anon_sym_DOT_DOT2] = ACTIONS(1505), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1507), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1507), + [anon_sym_COLON2] = ACTIONS(1507), + [anon_sym_QMARK2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_DOT2] = ACTIONS(1505), + [anon_sym_err_GT] = ACTIONS(1505), + [anon_sym_out_GT] = ACTIONS(1505), + [anon_sym_e_GT] = ACTIONS(1505), + [anon_sym_o_GT] = ACTIONS(1505), + [anon_sym_err_PLUSout_GT] = ACTIONS(1505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1505), + [anon_sym_o_PLUSe_GT] = ACTIONS(1505), + [anon_sym_e_PLUSo_GT] = ACTIONS(1505), + [anon_sym_err_GT_GT] = ACTIONS(1507), + [anon_sym_out_GT_GT] = ACTIONS(1507), + [anon_sym_e_GT_GT] = ACTIONS(1507), + [anon_sym_o_GT_GT] = ACTIONS(1507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1507), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(423)] = { + [sym_path] = STATE(435), + [sym_comment] = STATE(423), + [aux_sym__where_predicate_lhs_repeat1] = STATE(423), + [anon_sym_in] = ACTIONS(1496), + [sym__newline] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym_PIPE] = ACTIONS(1496), + [anon_sym_err_GT_PIPE] = ACTIONS(1496), + [anon_sym_out_GT_PIPE] = ACTIONS(1496), + [anon_sym_e_GT_PIPE] = ACTIONS(1496), + [anon_sym_o_GT_PIPE] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1496), + [anon_sym_RPAREN] = ACTIONS(1496), + [anon_sym_GT2] = ACTIONS(1494), + [anon_sym_DASH2] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1496), + [anon_sym_EQ_GT] = ACTIONS(1496), + [anon_sym_STAR2] = ACTIONS(1494), + [anon_sym_and2] = ACTIONS(1496), + [anon_sym_xor2] = ACTIONS(1496), + [anon_sym_or2] = ACTIONS(1496), + [anon_sym_not_DASHin2] = ACTIONS(1496), + [anon_sym_has2] = ACTIONS(1496), + [anon_sym_not_DASHhas2] = ACTIONS(1496), + [anon_sym_starts_DASHwith2] = ACTIONS(1496), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1496), + [anon_sym_ends_DASHwith2] = ACTIONS(1496), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1496), + [anon_sym_EQ_EQ2] = ACTIONS(1496), + [anon_sym_BANG_EQ2] = ACTIONS(1496), + [anon_sym_LT2] = ACTIONS(1494), + [anon_sym_LT_EQ2] = ACTIONS(1496), + [anon_sym_GT_EQ2] = ACTIONS(1496), + [anon_sym_EQ_TILDE2] = ACTIONS(1496), + [anon_sym_BANG_TILDE2] = ACTIONS(1496), + [anon_sym_like2] = ACTIONS(1496), + [anon_sym_not_DASHlike2] = ACTIONS(1496), + [anon_sym_STAR_STAR2] = ACTIONS(1496), + [anon_sym_PLUS_PLUS2] = ACTIONS(1496), + [anon_sym_SLASH2] = ACTIONS(1494), + [anon_sym_mod2] = ACTIONS(1496), + [anon_sym_SLASH_SLASH2] = ACTIONS(1496), + [anon_sym_PLUS2] = ACTIONS(1494), + [anon_sym_bit_DASHshl2] = ACTIONS(1496), + [anon_sym_bit_DASHshr2] = ACTIONS(1496), + [anon_sym_bit_DASHand2] = ACTIONS(1496), + [anon_sym_bit_DASHxor2] = ACTIONS(1496), + [anon_sym_bit_DASHor2] = ACTIONS(1496), + [anon_sym_DOT_DOT2] = ACTIONS(1494), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1496), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1496), + [anon_sym_COLON2] = ACTIONS(1496), + [anon_sym_DOT2] = ACTIONS(1699), + [anon_sym_err_GT] = ACTIONS(1494), + [anon_sym_out_GT] = ACTIONS(1494), + [anon_sym_e_GT] = ACTIONS(1494), + [anon_sym_o_GT] = ACTIONS(1494), + [anon_sym_err_PLUSout_GT] = ACTIONS(1494), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1494), + [anon_sym_o_PLUSe_GT] = ACTIONS(1494), + [anon_sym_e_PLUSo_GT] = ACTIONS(1494), + [anon_sym_err_GT_GT] = ACTIONS(1496), + [anon_sym_out_GT_GT] = ACTIONS(1496), + [anon_sym_e_GT_GT] = ACTIONS(1496), + [anon_sym_o_GT_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1496), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(424)] = { + [sym_cell_path] = STATE(493), + [sym_path] = STATE(435), [sym_comment] = STATE(424), - [anon_sym_in] = ACTIONS(1545), - [sym__newline] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_err_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_GT_PIPE] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1545), - [anon_sym_RPAREN] = ACTIONS(1545), - [anon_sym_GT2] = ACTIONS(1543), - [anon_sym_DASH2] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_RBRACE] = ACTIONS(1545), - [anon_sym_EQ_GT] = ACTIONS(1545), - [anon_sym_STAR2] = ACTIONS(1543), - [anon_sym_and2] = ACTIONS(1545), - [anon_sym_xor2] = ACTIONS(1545), - [anon_sym_or2] = ACTIONS(1545), - [anon_sym_not_DASHin2] = ACTIONS(1545), - [anon_sym_has2] = ACTIONS(1545), - [anon_sym_not_DASHhas2] = ACTIONS(1545), - [anon_sym_starts_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1545), - [anon_sym_ends_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1545), - [anon_sym_EQ_EQ2] = ACTIONS(1545), - [anon_sym_BANG_EQ2] = ACTIONS(1545), - [anon_sym_LT2] = ACTIONS(1543), - [anon_sym_LT_EQ2] = ACTIONS(1545), - [anon_sym_GT_EQ2] = ACTIONS(1545), - [anon_sym_EQ_TILDE2] = ACTIONS(1545), - [anon_sym_BANG_TILDE2] = ACTIONS(1545), - [anon_sym_like2] = ACTIONS(1545), - [anon_sym_not_DASHlike2] = ACTIONS(1545), - [anon_sym_STAR_STAR2] = ACTIONS(1545), - [anon_sym_PLUS_PLUS2] = ACTIONS(1545), - [anon_sym_SLASH2] = ACTIONS(1543), - [anon_sym_mod2] = ACTIONS(1545), - [anon_sym_SLASH_SLASH2] = ACTIONS(1545), - [anon_sym_PLUS2] = ACTIONS(1543), - [anon_sym_bit_DASHshl2] = ACTIONS(1545), - [anon_sym_bit_DASHshr2] = ACTIONS(1545), - [anon_sym_bit_DASHand2] = ACTIONS(1545), - [anon_sym_bit_DASHxor2] = ACTIONS(1545), - [anon_sym_bit_DASHor2] = ACTIONS(1545), - [anon_sym_DOT_DOT2] = ACTIONS(1543), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1545), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1545), - [anon_sym_COLON2] = ACTIONS(1545), - [anon_sym_QMARK2] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_DOT2] = ACTIONS(1543), - [anon_sym_err_GT] = ACTIONS(1543), - [anon_sym_out_GT] = ACTIONS(1543), - [anon_sym_e_GT] = ACTIONS(1543), - [anon_sym_o_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT] = ACTIONS(1543), - [anon_sym_err_GT_GT] = ACTIONS(1545), - [anon_sym_out_GT_GT] = ACTIONS(1545), - [anon_sym_e_GT_GT] = ACTIONS(1545), - [anon_sym_o_GT_GT] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1545), + [aux_sym__where_predicate_lhs_repeat1] = STATE(416), + [anon_sym_in] = ACTIONS(1434), + [sym__newline] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym_PIPE] = ACTIONS(1434), + [anon_sym_err_GT_PIPE] = ACTIONS(1434), + [anon_sym_out_GT_PIPE] = ACTIONS(1434), + [anon_sym_e_GT_PIPE] = ACTIONS(1434), + [anon_sym_o_GT_PIPE] = ACTIONS(1434), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1434), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1434), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1434), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1434), + [anon_sym_RPAREN] = ACTIONS(1434), + [anon_sym_GT2] = ACTIONS(1432), + [anon_sym_DASH2] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_EQ_GT] = ACTIONS(1434), + [anon_sym_STAR2] = ACTIONS(1432), + [anon_sym_and2] = ACTIONS(1434), + [anon_sym_xor2] = ACTIONS(1434), + [anon_sym_or2] = ACTIONS(1434), + [anon_sym_not_DASHin2] = ACTIONS(1434), + [anon_sym_has2] = ACTIONS(1434), + [anon_sym_not_DASHhas2] = ACTIONS(1434), + [anon_sym_starts_DASHwith2] = ACTIONS(1434), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1434), + [anon_sym_ends_DASHwith2] = ACTIONS(1434), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1434), + [anon_sym_EQ_EQ2] = ACTIONS(1434), + [anon_sym_BANG_EQ2] = ACTIONS(1434), + [anon_sym_LT2] = ACTIONS(1432), + [anon_sym_LT_EQ2] = ACTIONS(1434), + [anon_sym_GT_EQ2] = ACTIONS(1434), + [anon_sym_EQ_TILDE2] = ACTIONS(1434), + [anon_sym_BANG_TILDE2] = ACTIONS(1434), + [anon_sym_like2] = ACTIONS(1434), + [anon_sym_not_DASHlike2] = ACTIONS(1434), + [anon_sym_STAR_STAR2] = ACTIONS(1434), + [anon_sym_PLUS_PLUS2] = ACTIONS(1434), + [anon_sym_SLASH2] = ACTIONS(1432), + [anon_sym_mod2] = ACTIONS(1434), + [anon_sym_SLASH_SLASH2] = ACTIONS(1434), + [anon_sym_PLUS2] = ACTIONS(1432), + [anon_sym_bit_DASHshl2] = ACTIONS(1434), + [anon_sym_bit_DASHshr2] = ACTIONS(1434), + [anon_sym_bit_DASHand2] = ACTIONS(1434), + [anon_sym_bit_DASHxor2] = ACTIONS(1434), + [anon_sym_bit_DASHor2] = ACTIONS(1434), + [anon_sym_DOT_DOT2] = ACTIONS(1432), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1434), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), + [anon_sym_DOT2] = ACTIONS(1659), + [anon_sym_err_GT] = ACTIONS(1432), + [anon_sym_out_GT] = ACTIONS(1432), + [anon_sym_e_GT] = ACTIONS(1432), + [anon_sym_o_GT] = ACTIONS(1432), + [anon_sym_err_PLUSout_GT] = ACTIONS(1432), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1432), + [anon_sym_o_PLUSe_GT] = ACTIONS(1432), + [anon_sym_e_PLUSo_GT] = ACTIONS(1432), + [anon_sym_err_GT_GT] = ACTIONS(1434), + [anon_sym_out_GT_GT] = ACTIONS(1434), + [anon_sym_e_GT_GT] = ACTIONS(1434), + [anon_sym_o_GT_GT] = ACTIONS(1434), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1434), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1434), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1434), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1434), [anon_sym_POUND] = ACTIONS(3), }, [STATE(425)] = { [sym_comment] = STATE(425), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1440), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1440), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_COLON2] = ACTIONS(1440), - [anon_sym_QMARK2] = ACTIONS(1700), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), + [anon_sym_in] = ACTIONS(1515), + [sym__newline] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_err_GT_PIPE] = ACTIONS(1515), + [anon_sym_out_GT_PIPE] = ACTIONS(1515), + [anon_sym_e_GT_PIPE] = ACTIONS(1515), + [anon_sym_o_GT_PIPE] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1515), + [anon_sym_RPAREN] = ACTIONS(1515), + [anon_sym_GT2] = ACTIONS(1513), + [anon_sym_DASH2] = ACTIONS(1515), + [anon_sym_LBRACE] = ACTIONS(1515), + [anon_sym_RBRACE] = ACTIONS(1515), + [anon_sym_EQ_GT] = ACTIONS(1515), + [anon_sym_STAR2] = ACTIONS(1513), + [anon_sym_and2] = ACTIONS(1515), + [anon_sym_xor2] = ACTIONS(1515), + [anon_sym_or2] = ACTIONS(1515), + [anon_sym_not_DASHin2] = ACTIONS(1515), + [anon_sym_has2] = ACTIONS(1515), + [anon_sym_not_DASHhas2] = ACTIONS(1515), + [anon_sym_starts_DASHwith2] = ACTIONS(1515), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1515), + [anon_sym_ends_DASHwith2] = ACTIONS(1515), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1515), + [anon_sym_EQ_EQ2] = ACTIONS(1515), + [anon_sym_BANG_EQ2] = ACTIONS(1515), + [anon_sym_LT2] = ACTIONS(1513), + [anon_sym_LT_EQ2] = ACTIONS(1515), + [anon_sym_GT_EQ2] = ACTIONS(1515), + [anon_sym_EQ_TILDE2] = ACTIONS(1515), + [anon_sym_BANG_TILDE2] = ACTIONS(1515), + [anon_sym_like2] = ACTIONS(1515), + [anon_sym_not_DASHlike2] = ACTIONS(1515), + [anon_sym_STAR_STAR2] = ACTIONS(1515), + [anon_sym_PLUS_PLUS2] = ACTIONS(1515), + [anon_sym_SLASH2] = ACTIONS(1513), + [anon_sym_mod2] = ACTIONS(1515), + [anon_sym_SLASH_SLASH2] = ACTIONS(1515), + [anon_sym_PLUS2] = ACTIONS(1513), + [anon_sym_bit_DASHshl2] = ACTIONS(1515), + [anon_sym_bit_DASHshr2] = ACTIONS(1515), + [anon_sym_bit_DASHand2] = ACTIONS(1515), + [anon_sym_bit_DASHxor2] = ACTIONS(1515), + [anon_sym_bit_DASHor2] = ACTIONS(1515), + [anon_sym_DOT_DOT2] = ACTIONS(1513), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1515), + [anon_sym_COLON2] = ACTIONS(1515), + [anon_sym_QMARK2] = ACTIONS(1515), + [anon_sym_BANG] = ACTIONS(1513), + [anon_sym_DOT2] = ACTIONS(1513), + [anon_sym_err_GT] = ACTIONS(1513), + [anon_sym_out_GT] = ACTIONS(1513), + [anon_sym_e_GT] = ACTIONS(1513), + [anon_sym_o_GT] = ACTIONS(1513), + [anon_sym_err_PLUSout_GT] = ACTIONS(1513), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1513), + [anon_sym_o_PLUSe_GT] = ACTIONS(1513), + [anon_sym_e_PLUSo_GT] = ACTIONS(1513), + [anon_sym_err_GT_GT] = ACTIONS(1515), + [anon_sym_out_GT_GT] = ACTIONS(1515), + [anon_sym_e_GT_GT] = ACTIONS(1515), + [anon_sym_o_GT_GT] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1515), [anon_sym_POUND] = ACTIONS(3), }, [STATE(426)] = { [sym_comment] = STATE(426), - [anon_sym_in] = ACTIONS(1468), - [sym__newline] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_err_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_GT_PIPE] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), - [anon_sym_RPAREN] = ACTIONS(1468), - [anon_sym_GT2] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_RBRACE] = ACTIONS(1468), - [anon_sym_EQ_GT] = ACTIONS(1468), - [anon_sym_STAR2] = ACTIONS(1466), - [anon_sym_and2] = ACTIONS(1468), - [anon_sym_xor2] = ACTIONS(1468), - [anon_sym_or2] = ACTIONS(1468), - [anon_sym_not_DASHin2] = ACTIONS(1468), - [anon_sym_has2] = ACTIONS(1468), - [anon_sym_not_DASHhas2] = ACTIONS(1468), - [anon_sym_starts_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), - [anon_sym_ends_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), - [anon_sym_EQ_EQ2] = ACTIONS(1468), - [anon_sym_BANG_EQ2] = ACTIONS(1468), - [anon_sym_LT2] = ACTIONS(1466), - [anon_sym_LT_EQ2] = ACTIONS(1468), - [anon_sym_GT_EQ2] = ACTIONS(1468), - [anon_sym_EQ_TILDE2] = ACTIONS(1468), - [anon_sym_BANG_TILDE2] = ACTIONS(1468), - [anon_sym_like2] = ACTIONS(1468), - [anon_sym_not_DASHlike2] = ACTIONS(1468), - [anon_sym_STAR_STAR2] = ACTIONS(1468), - [anon_sym_PLUS_PLUS2] = ACTIONS(1468), - [anon_sym_SLASH2] = ACTIONS(1466), - [anon_sym_mod2] = ACTIONS(1468), - [anon_sym_SLASH_SLASH2] = ACTIONS(1468), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_bit_DASHshl2] = ACTIONS(1468), - [anon_sym_bit_DASHshr2] = ACTIONS(1468), - [anon_sym_bit_DASHand2] = ACTIONS(1468), - [anon_sym_bit_DASHxor2] = ACTIONS(1468), - [anon_sym_bit_DASHor2] = ACTIONS(1468), - [anon_sym_DOT_DOT2] = ACTIONS(1466), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), - [anon_sym_COLON2] = ACTIONS(1468), - [anon_sym_QMARK2] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1468), - [anon_sym_out_GT_GT] = ACTIONS(1468), - [anon_sym_e_GT_GT] = ACTIONS(1468), - [anon_sym_o_GT_GT] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), + [anon_sym_in] = ACTIONS(1519), + [sym__newline] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_err_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_GT_PIPE] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(1519), + [anon_sym_GT2] = ACTIONS(1517), + [anon_sym_DASH2] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1519), + [anon_sym_RBRACE] = ACTIONS(1519), + [anon_sym_EQ_GT] = ACTIONS(1519), + [anon_sym_STAR2] = ACTIONS(1517), + [anon_sym_and2] = ACTIONS(1519), + [anon_sym_xor2] = ACTIONS(1519), + [anon_sym_or2] = ACTIONS(1519), + [anon_sym_not_DASHin2] = ACTIONS(1519), + [anon_sym_has2] = ACTIONS(1519), + [anon_sym_not_DASHhas2] = ACTIONS(1519), + [anon_sym_starts_DASHwith2] = ACTIONS(1519), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1519), + [anon_sym_ends_DASHwith2] = ACTIONS(1519), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1519), + [anon_sym_EQ_EQ2] = ACTIONS(1519), + [anon_sym_BANG_EQ2] = ACTIONS(1519), + [anon_sym_LT2] = ACTIONS(1517), + [anon_sym_LT_EQ2] = ACTIONS(1519), + [anon_sym_GT_EQ2] = ACTIONS(1519), + [anon_sym_EQ_TILDE2] = ACTIONS(1519), + [anon_sym_BANG_TILDE2] = ACTIONS(1519), + [anon_sym_like2] = ACTIONS(1519), + [anon_sym_not_DASHlike2] = ACTIONS(1519), + [anon_sym_STAR_STAR2] = ACTIONS(1519), + [anon_sym_PLUS_PLUS2] = ACTIONS(1519), + [anon_sym_SLASH2] = ACTIONS(1517), + [anon_sym_mod2] = ACTIONS(1519), + [anon_sym_SLASH_SLASH2] = ACTIONS(1519), + [anon_sym_PLUS2] = ACTIONS(1517), + [anon_sym_bit_DASHshl2] = ACTIONS(1519), + [anon_sym_bit_DASHshr2] = ACTIONS(1519), + [anon_sym_bit_DASHand2] = ACTIONS(1519), + [anon_sym_bit_DASHxor2] = ACTIONS(1519), + [anon_sym_bit_DASHor2] = ACTIONS(1519), + [anon_sym_DOT_DOT2] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), + [anon_sym_COLON2] = ACTIONS(1519), + [anon_sym_QMARK2] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1517), + [anon_sym_DOT2] = ACTIONS(1517), + [anon_sym_err_GT] = ACTIONS(1517), + [anon_sym_out_GT] = ACTIONS(1517), + [anon_sym_e_GT] = ACTIONS(1517), + [anon_sym_o_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT] = ACTIONS(1517), + [anon_sym_err_GT_GT] = ACTIONS(1519), + [anon_sym_out_GT_GT] = ACTIONS(1519), + [anon_sym_e_GT_GT] = ACTIONS(1519), + [anon_sym_o_GT_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), [anon_sym_POUND] = ACTIONS(3), }, [STATE(427)] = { [sym_comment] = STATE(427), - [anon_sym_in] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_RPAREN] = ACTIONS(1472), - [anon_sym_GT2] = ACTIONS(1470), - [anon_sym_DASH2] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_EQ_GT] = ACTIONS(1472), - [anon_sym_STAR2] = ACTIONS(1470), - [anon_sym_and2] = ACTIONS(1472), - [anon_sym_xor2] = ACTIONS(1472), - [anon_sym_or2] = ACTIONS(1472), - [anon_sym_not_DASHin2] = ACTIONS(1472), - [anon_sym_has2] = ACTIONS(1472), - [anon_sym_not_DASHhas2] = ACTIONS(1472), - [anon_sym_starts_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1472), - [anon_sym_ends_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1472), - [anon_sym_EQ_EQ2] = ACTIONS(1472), - [anon_sym_BANG_EQ2] = ACTIONS(1472), - [anon_sym_LT2] = ACTIONS(1470), - [anon_sym_LT_EQ2] = ACTIONS(1472), - [anon_sym_GT_EQ2] = ACTIONS(1472), - [anon_sym_EQ_TILDE2] = ACTIONS(1472), - [anon_sym_BANG_TILDE2] = ACTIONS(1472), - [anon_sym_like2] = ACTIONS(1472), - [anon_sym_not_DASHlike2] = ACTIONS(1472), - [anon_sym_STAR_STAR2] = ACTIONS(1472), - [anon_sym_PLUS_PLUS2] = ACTIONS(1472), - [anon_sym_SLASH2] = ACTIONS(1470), - [anon_sym_mod2] = ACTIONS(1472), - [anon_sym_SLASH_SLASH2] = ACTIONS(1472), - [anon_sym_PLUS2] = ACTIONS(1470), - [anon_sym_bit_DASHshl2] = ACTIONS(1472), - [anon_sym_bit_DASHshr2] = ACTIONS(1472), - [anon_sym_bit_DASHand2] = ACTIONS(1472), - [anon_sym_bit_DASHxor2] = ACTIONS(1472), - [anon_sym_bit_DASHor2] = ACTIONS(1472), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [anon_sym_COLON2] = ACTIONS(1472), - [anon_sym_QMARK2] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), + [anon_sym_in] = ACTIONS(749), + [sym__newline] = ACTIONS(749), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_PIPE] = ACTIONS(749), + [anon_sym_err_GT_PIPE] = ACTIONS(749), + [anon_sym_out_GT_PIPE] = ACTIONS(749), + [anon_sym_e_GT_PIPE] = ACTIONS(749), + [anon_sym_o_GT_PIPE] = ACTIONS(749), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(749), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(749), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(749), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(749), + [anon_sym_RPAREN] = ACTIONS(749), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(749), + [anon_sym_RBRACE] = ACTIONS(749), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(749), + [anon_sym_xor2] = ACTIONS(749), + [anon_sym_or2] = ACTIONS(749), + [anon_sym_not_DASHin2] = ACTIONS(749), + [anon_sym_has2] = ACTIONS(749), + [anon_sym_not_DASHhas2] = ACTIONS(749), + [anon_sym_starts_DASHwith2] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(749), + [anon_sym_ends_DASHwith2] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(749), + [anon_sym_EQ_EQ2] = ACTIONS(749), + [anon_sym_BANG_EQ2] = ACTIONS(749), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(749), + [anon_sym_GT_EQ2] = ACTIONS(749), + [anon_sym_EQ_TILDE2] = ACTIONS(749), + [anon_sym_BANG_TILDE2] = ACTIONS(749), + [anon_sym_like2] = ACTIONS(749), + [anon_sym_not_DASHlike2] = ACTIONS(749), + [anon_sym_LPAREN2] = ACTIONS(749), + [anon_sym_STAR_STAR2] = ACTIONS(749), + [anon_sym_PLUS_PLUS2] = ACTIONS(749), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(749), + [anon_sym_SLASH_SLASH2] = ACTIONS(749), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(749), + [anon_sym_bit_DASHshr2] = ACTIONS(749), + [anon_sym_bit_DASHand2] = ACTIONS(749), + [anon_sym_bit_DASHxor2] = ACTIONS(749), + [anon_sym_bit_DASHor2] = ACTIONS(749), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token1] = ACTIONS(1702), + [aux_sym__immediate_decimal_token5] = ACTIONS(1704), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_err_GT] = ACTIONS(747), + [anon_sym_out_GT] = ACTIONS(747), + [anon_sym_e_GT] = ACTIONS(747), + [anon_sym_o_GT] = ACTIONS(747), + [anon_sym_err_PLUSout_GT] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT] = ACTIONS(747), + [anon_sym_o_PLUSe_GT] = ACTIONS(747), + [anon_sym_e_PLUSo_GT] = ACTIONS(747), + [anon_sym_err_GT_GT] = ACTIONS(749), + [anon_sym_out_GT_GT] = ACTIONS(749), + [anon_sym_e_GT_GT] = ACTIONS(749), + [anon_sym_o_GT_GT] = ACTIONS(749), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(749), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(749), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(749), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(749), + [sym__unquoted_pattern] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(3), }, [STATE(428)] = { [sym_comment] = STATE(428), - [anon_sym_in] = ACTIONS(1476), - [sym__newline] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_err_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_GT_PIPE] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1476), - [anon_sym_RPAREN] = ACTIONS(1476), - [anon_sym_GT2] = ACTIONS(1474), - [anon_sym_DASH2] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_EQ_GT] = ACTIONS(1476), - [anon_sym_STAR2] = ACTIONS(1474), - [anon_sym_and2] = ACTIONS(1476), - [anon_sym_xor2] = ACTIONS(1476), - [anon_sym_or2] = ACTIONS(1476), - [anon_sym_not_DASHin2] = ACTIONS(1476), - [anon_sym_has2] = ACTIONS(1476), - [anon_sym_not_DASHhas2] = ACTIONS(1476), - [anon_sym_starts_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1476), - [anon_sym_ends_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1476), - [anon_sym_EQ_EQ2] = ACTIONS(1476), - [anon_sym_BANG_EQ2] = ACTIONS(1476), - [anon_sym_LT2] = ACTIONS(1474), - [anon_sym_LT_EQ2] = ACTIONS(1476), - [anon_sym_GT_EQ2] = ACTIONS(1476), - [anon_sym_EQ_TILDE2] = ACTIONS(1476), - [anon_sym_BANG_TILDE2] = ACTIONS(1476), - [anon_sym_like2] = ACTIONS(1476), - [anon_sym_not_DASHlike2] = ACTIONS(1476), - [anon_sym_STAR_STAR2] = ACTIONS(1476), - [anon_sym_PLUS_PLUS2] = ACTIONS(1476), - [anon_sym_SLASH2] = ACTIONS(1474), - [anon_sym_mod2] = ACTIONS(1476), - [anon_sym_SLASH_SLASH2] = ACTIONS(1476), - [anon_sym_PLUS2] = ACTIONS(1474), - [anon_sym_bit_DASHshl2] = ACTIONS(1476), - [anon_sym_bit_DASHshr2] = ACTIONS(1476), - [anon_sym_bit_DASHand2] = ACTIONS(1476), - [anon_sym_bit_DASHxor2] = ACTIONS(1476), - [anon_sym_bit_DASHor2] = ACTIONS(1476), - [anon_sym_DOT_DOT2] = ACTIONS(1474), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1476), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1476), - [anon_sym_COLON2] = ACTIONS(1476), - [anon_sym_QMARK2] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_DOT2] = ACTIONS(1474), - [anon_sym_err_GT] = ACTIONS(1474), - [anon_sym_out_GT] = ACTIONS(1474), - [anon_sym_e_GT] = ACTIONS(1474), - [anon_sym_o_GT] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT] = ACTIONS(1474), - [anon_sym_err_GT_GT] = ACTIONS(1476), - [anon_sym_out_GT_GT] = ACTIONS(1476), - [anon_sym_e_GT_GT] = ACTIONS(1476), - [anon_sym_o_GT_GT] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1476), + [ts_builtin_sym_end] = ACTIONS(1527), + [anon_sym_EQ] = ACTIONS(1525), + [anon_sym_PLUS_EQ] = ACTIONS(1527), + [anon_sym_DASH_EQ] = ACTIONS(1527), + [anon_sym_STAR_EQ] = ACTIONS(1527), + [anon_sym_SLASH_EQ] = ACTIONS(1527), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1527), + [anon_sym_in] = ACTIONS(1527), + [sym__newline] = ACTIONS(1527), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_err_GT_PIPE] = ACTIONS(1527), + [anon_sym_out_GT_PIPE] = ACTIONS(1527), + [anon_sym_e_GT_PIPE] = ACTIONS(1527), + [anon_sym_o_GT_PIPE] = ACTIONS(1527), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1527), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1527), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1527), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1527), + [anon_sym_GT2] = ACTIONS(1525), + [anon_sym_DASH2] = ACTIONS(1525), + [anon_sym_STAR2] = ACTIONS(1525), + [anon_sym_and2] = ACTIONS(1527), + [anon_sym_xor2] = ACTIONS(1527), + [anon_sym_or2] = ACTIONS(1527), + [anon_sym_not_DASHin2] = ACTIONS(1527), + [anon_sym_has2] = ACTIONS(1527), + [anon_sym_not_DASHhas2] = ACTIONS(1527), + [anon_sym_starts_DASHwith2] = ACTIONS(1527), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1527), + [anon_sym_ends_DASHwith2] = ACTIONS(1527), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1527), + [anon_sym_EQ_EQ2] = ACTIONS(1527), + [anon_sym_BANG_EQ2] = ACTIONS(1527), + [anon_sym_LT2] = ACTIONS(1525), + [anon_sym_LT_EQ2] = ACTIONS(1527), + [anon_sym_GT_EQ2] = ACTIONS(1527), + [anon_sym_EQ_TILDE2] = ACTIONS(1527), + [anon_sym_BANG_TILDE2] = ACTIONS(1527), + [anon_sym_like2] = ACTIONS(1527), + [anon_sym_not_DASHlike2] = ACTIONS(1527), + [anon_sym_STAR_STAR2] = ACTIONS(1527), + [anon_sym_PLUS_PLUS2] = ACTIONS(1525), + [anon_sym_SLASH2] = ACTIONS(1525), + [anon_sym_mod2] = ACTIONS(1527), + [anon_sym_SLASH_SLASH2] = ACTIONS(1527), + [anon_sym_PLUS2] = ACTIONS(1525), + [anon_sym_bit_DASHshl2] = ACTIONS(1527), + [anon_sym_bit_DASHshr2] = ACTIONS(1527), + [anon_sym_bit_DASHand2] = ACTIONS(1527), + [anon_sym_bit_DASHxor2] = ACTIONS(1527), + [anon_sym_bit_DASHor2] = ACTIONS(1527), + [anon_sym_DOT_DOT2] = ACTIONS(1525), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1527), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1527), + [anon_sym_DOT2] = ACTIONS(1525), + [anon_sym_err_GT] = ACTIONS(1525), + [anon_sym_out_GT] = ACTIONS(1525), + [anon_sym_e_GT] = ACTIONS(1525), + [anon_sym_o_GT] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT] = ACTIONS(1525), + [anon_sym_err_GT_GT] = ACTIONS(1527), + [anon_sym_out_GT_GT] = ACTIONS(1527), + [anon_sym_e_GT_GT] = ACTIONS(1527), + [anon_sym_o_GT_GT] = ACTIONS(1527), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1527), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1527), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1527), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1527), [anon_sym_POUND] = ACTIONS(3), }, [STATE(429)] = { [sym_comment] = STATE(429), - [anon_sym_in] = ACTIONS(1516), - [sym__newline] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_err_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_GT_PIPE] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1516), - [anon_sym_RPAREN] = ACTIONS(1516), - [anon_sym_GT2] = ACTIONS(1514), - [anon_sym_DASH2] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_RBRACE] = ACTIONS(1516), - [anon_sym_EQ_GT] = ACTIONS(1516), - [anon_sym_STAR2] = ACTIONS(1514), - [anon_sym_and2] = ACTIONS(1516), - [anon_sym_xor2] = ACTIONS(1516), - [anon_sym_or2] = ACTIONS(1516), - [anon_sym_not_DASHin2] = ACTIONS(1516), - [anon_sym_has2] = ACTIONS(1516), - [anon_sym_not_DASHhas2] = ACTIONS(1516), - [anon_sym_starts_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1516), - [anon_sym_ends_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1516), - [anon_sym_EQ_EQ2] = ACTIONS(1516), - [anon_sym_BANG_EQ2] = ACTIONS(1516), - [anon_sym_LT2] = ACTIONS(1514), - [anon_sym_LT_EQ2] = ACTIONS(1516), - [anon_sym_GT_EQ2] = ACTIONS(1516), - [anon_sym_EQ_TILDE2] = ACTIONS(1516), - [anon_sym_BANG_TILDE2] = ACTIONS(1516), - [anon_sym_like2] = ACTIONS(1516), - [anon_sym_not_DASHlike2] = ACTIONS(1516), - [anon_sym_STAR_STAR2] = ACTIONS(1516), - [anon_sym_PLUS_PLUS2] = ACTIONS(1516), - [anon_sym_SLASH2] = ACTIONS(1514), - [anon_sym_mod2] = ACTIONS(1516), - [anon_sym_SLASH_SLASH2] = ACTIONS(1516), - [anon_sym_PLUS2] = ACTIONS(1514), - [anon_sym_bit_DASHshl2] = ACTIONS(1516), - [anon_sym_bit_DASHshr2] = ACTIONS(1516), - [anon_sym_bit_DASHand2] = ACTIONS(1516), - [anon_sym_bit_DASHxor2] = ACTIONS(1516), - [anon_sym_bit_DASHor2] = ACTIONS(1516), - [anon_sym_DOT_DOT2] = ACTIONS(1514), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1516), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1516), - [anon_sym_COLON2] = ACTIONS(1516), - [anon_sym_QMARK2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_DOT2] = ACTIONS(1514), - [anon_sym_err_GT] = ACTIONS(1514), - [anon_sym_out_GT] = ACTIONS(1514), - [anon_sym_e_GT] = ACTIONS(1514), - [anon_sym_o_GT] = ACTIONS(1514), - [anon_sym_err_PLUSout_GT] = ACTIONS(1514), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1514), - [anon_sym_o_PLUSe_GT] = ACTIONS(1514), - [anon_sym_e_PLUSo_GT] = ACTIONS(1514), - [anon_sym_err_GT_GT] = ACTIONS(1516), - [anon_sym_out_GT_GT] = ACTIONS(1516), - [anon_sym_e_GT_GT] = ACTIONS(1516), - [anon_sym_o_GT_GT] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1516), + [ts_builtin_sym_end] = ACTIONS(1554), + [anon_sym_EQ] = ACTIONS(1552), + [anon_sym_PLUS_EQ] = ACTIONS(1554), + [anon_sym_DASH_EQ] = ACTIONS(1554), + [anon_sym_STAR_EQ] = ACTIONS(1554), + [anon_sym_SLASH_EQ] = ACTIONS(1554), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1554), + [anon_sym_in] = ACTIONS(1554), + [sym__newline] = ACTIONS(1554), + [anon_sym_SEMI] = ACTIONS(1554), + [anon_sym_PIPE] = ACTIONS(1554), + [anon_sym_err_GT_PIPE] = ACTIONS(1554), + [anon_sym_out_GT_PIPE] = ACTIONS(1554), + [anon_sym_e_GT_PIPE] = ACTIONS(1554), + [anon_sym_o_GT_PIPE] = ACTIONS(1554), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1554), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1554), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1554), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1554), + [anon_sym_GT2] = ACTIONS(1552), + [anon_sym_DASH2] = ACTIONS(1552), + [anon_sym_STAR2] = ACTIONS(1552), + [anon_sym_and2] = ACTIONS(1554), + [anon_sym_xor2] = ACTIONS(1554), + [anon_sym_or2] = ACTIONS(1554), + [anon_sym_not_DASHin2] = ACTIONS(1554), + [anon_sym_has2] = ACTIONS(1554), + [anon_sym_not_DASHhas2] = ACTIONS(1554), + [anon_sym_starts_DASHwith2] = ACTIONS(1554), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1554), + [anon_sym_ends_DASHwith2] = ACTIONS(1554), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1554), + [anon_sym_EQ_EQ2] = ACTIONS(1554), + [anon_sym_BANG_EQ2] = ACTIONS(1554), + [anon_sym_LT2] = ACTIONS(1552), + [anon_sym_LT_EQ2] = ACTIONS(1554), + [anon_sym_GT_EQ2] = ACTIONS(1554), + [anon_sym_EQ_TILDE2] = ACTIONS(1554), + [anon_sym_BANG_TILDE2] = ACTIONS(1554), + [anon_sym_like2] = ACTIONS(1554), + [anon_sym_not_DASHlike2] = ACTIONS(1554), + [anon_sym_STAR_STAR2] = ACTIONS(1554), + [anon_sym_PLUS_PLUS2] = ACTIONS(1552), + [anon_sym_SLASH2] = ACTIONS(1552), + [anon_sym_mod2] = ACTIONS(1554), + [anon_sym_SLASH_SLASH2] = ACTIONS(1554), + [anon_sym_PLUS2] = ACTIONS(1552), + [anon_sym_bit_DASHshl2] = ACTIONS(1554), + [anon_sym_bit_DASHshr2] = ACTIONS(1554), + [anon_sym_bit_DASHand2] = ACTIONS(1554), + [anon_sym_bit_DASHxor2] = ACTIONS(1554), + [anon_sym_bit_DASHor2] = ACTIONS(1554), + [anon_sym_DOT_DOT2] = ACTIONS(1552), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1554), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1554), + [anon_sym_DOT2] = ACTIONS(1552), + [anon_sym_err_GT] = ACTIONS(1552), + [anon_sym_out_GT] = ACTIONS(1552), + [anon_sym_e_GT] = ACTIONS(1552), + [anon_sym_o_GT] = ACTIONS(1552), + [anon_sym_err_PLUSout_GT] = ACTIONS(1552), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1552), + [anon_sym_o_PLUSe_GT] = ACTIONS(1552), + [anon_sym_e_PLUSo_GT] = ACTIONS(1552), + [anon_sym_err_GT_GT] = ACTIONS(1554), + [anon_sym_out_GT_GT] = ACTIONS(1554), + [anon_sym_e_GT_GT] = ACTIONS(1554), + [anon_sym_o_GT_GT] = ACTIONS(1554), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1554), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1554), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1554), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1554), [anon_sym_POUND] = ACTIONS(3), }, [STATE(430)] = { - [sym__expr_parenthesized_immediate] = STATE(929), - [sym__immediate_decimal] = STATE(934), - [sym_val_variable] = STATE(929), [sym_comment] = STATE(430), - [ts_builtin_sym_end] = ACTIONS(1596), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [anon_sym_DOT] = ACTIONS(1702), - [aux_sym__immediate_decimal_token1] = ACTIONS(1655), - [aux_sym__immediate_decimal_token2] = ACTIONS(1655), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), + [ts_builtin_sym_end] = ACTIONS(1531), + [anon_sym_EQ] = ACTIONS(1529), + [anon_sym_PLUS_EQ] = ACTIONS(1531), + [anon_sym_DASH_EQ] = ACTIONS(1531), + [anon_sym_STAR_EQ] = ACTIONS(1531), + [anon_sym_SLASH_EQ] = ACTIONS(1531), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1531), + [anon_sym_in] = ACTIONS(1531), + [sym__newline] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1531), + [anon_sym_err_GT_PIPE] = ACTIONS(1531), + [anon_sym_out_GT_PIPE] = ACTIONS(1531), + [anon_sym_e_GT_PIPE] = ACTIONS(1531), + [anon_sym_o_GT_PIPE] = ACTIONS(1531), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1531), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1531), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1531), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1531), + [anon_sym_GT2] = ACTIONS(1529), + [anon_sym_DASH2] = ACTIONS(1529), + [anon_sym_STAR2] = ACTIONS(1529), + [anon_sym_and2] = ACTIONS(1531), + [anon_sym_xor2] = ACTIONS(1531), + [anon_sym_or2] = ACTIONS(1531), + [anon_sym_not_DASHin2] = ACTIONS(1531), + [anon_sym_has2] = ACTIONS(1531), + [anon_sym_not_DASHhas2] = ACTIONS(1531), + [anon_sym_starts_DASHwith2] = ACTIONS(1531), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1531), + [anon_sym_ends_DASHwith2] = ACTIONS(1531), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1531), + [anon_sym_EQ_EQ2] = ACTIONS(1531), + [anon_sym_BANG_EQ2] = ACTIONS(1531), + [anon_sym_LT2] = ACTIONS(1529), + [anon_sym_LT_EQ2] = ACTIONS(1531), + [anon_sym_GT_EQ2] = ACTIONS(1531), + [anon_sym_EQ_TILDE2] = ACTIONS(1531), + [anon_sym_BANG_TILDE2] = ACTIONS(1531), + [anon_sym_like2] = ACTIONS(1531), + [anon_sym_not_DASHlike2] = ACTIONS(1531), + [anon_sym_STAR_STAR2] = ACTIONS(1531), + [anon_sym_PLUS_PLUS2] = ACTIONS(1529), + [anon_sym_SLASH2] = ACTIONS(1529), + [anon_sym_mod2] = ACTIONS(1531), + [anon_sym_SLASH_SLASH2] = ACTIONS(1531), + [anon_sym_PLUS2] = ACTIONS(1529), + [anon_sym_bit_DASHshl2] = ACTIONS(1531), + [anon_sym_bit_DASHshr2] = ACTIONS(1531), + [anon_sym_bit_DASHand2] = ACTIONS(1531), + [anon_sym_bit_DASHxor2] = ACTIONS(1531), + [anon_sym_bit_DASHor2] = ACTIONS(1531), + [anon_sym_DOT_DOT2] = ACTIONS(1529), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1531), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1531), + [anon_sym_DOT2] = ACTIONS(1529), + [anon_sym_err_GT] = ACTIONS(1529), + [anon_sym_out_GT] = ACTIONS(1529), + [anon_sym_e_GT] = ACTIONS(1529), + [anon_sym_o_GT] = ACTIONS(1529), + [anon_sym_err_PLUSout_GT] = ACTIONS(1529), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1529), + [anon_sym_o_PLUSe_GT] = ACTIONS(1529), + [anon_sym_e_PLUSo_GT] = ACTIONS(1529), + [anon_sym_err_GT_GT] = ACTIONS(1531), + [anon_sym_out_GT_GT] = ACTIONS(1531), + [anon_sym_e_GT_GT] = ACTIONS(1531), + [anon_sym_o_GT_GT] = ACTIONS(1531), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1531), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1531), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1531), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1531), [anon_sym_POUND] = ACTIONS(3), }, [STATE(431)] = { + [sym__expr_parenthesized_immediate] = STATE(1341), + [sym__immediate_decimal] = STATE(1089), + [sym_val_variable] = STATE(1341), [sym_comment] = STATE(431), - [anon_sym_EQ] = ACTIONS(1617), - [anon_sym_PLUS_EQ] = ACTIONS(1704), - [anon_sym_DASH_EQ] = ACTIONS(1704), - [anon_sym_STAR_EQ] = ACTIONS(1704), - [anon_sym_SLASH_EQ] = ACTIONS(1704), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1704), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_COLON2] = ACTIONS(1708), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [ts_builtin_sym_end] = ACTIONS(1631), + [anon_sym_in] = ACTIONS(1631), + [sym__newline] = ACTIONS(1631), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_PIPE] = ACTIONS(1631), + [anon_sym_err_GT_PIPE] = ACTIONS(1631), + [anon_sym_out_GT_PIPE] = ACTIONS(1631), + [anon_sym_e_GT_PIPE] = ACTIONS(1631), + [anon_sym_o_GT_PIPE] = ACTIONS(1631), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1631), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1631), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1631), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1631), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_GT2] = ACTIONS(1633), + [anon_sym_DASH2] = ACTIONS(1633), + [anon_sym_STAR2] = ACTIONS(1633), + [anon_sym_and2] = ACTIONS(1631), + [anon_sym_xor2] = ACTIONS(1631), + [anon_sym_or2] = ACTIONS(1631), + [anon_sym_not_DASHin2] = ACTIONS(1631), + [anon_sym_has2] = ACTIONS(1631), + [anon_sym_not_DASHhas2] = ACTIONS(1631), + [anon_sym_starts_DASHwith2] = ACTIONS(1631), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1631), + [anon_sym_ends_DASHwith2] = ACTIONS(1631), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1631), + [anon_sym_EQ_EQ2] = ACTIONS(1631), + [anon_sym_BANG_EQ2] = ACTIONS(1631), + [anon_sym_LT2] = ACTIONS(1633), + [anon_sym_LT_EQ2] = ACTIONS(1631), + [anon_sym_GT_EQ2] = ACTIONS(1631), + [anon_sym_EQ_TILDE2] = ACTIONS(1631), + [anon_sym_BANG_TILDE2] = ACTIONS(1631), + [anon_sym_like2] = ACTIONS(1631), + [anon_sym_not_DASHlike2] = ACTIONS(1631), + [anon_sym_LPAREN2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1631), + [anon_sym_PLUS_PLUS2] = ACTIONS(1631), + [anon_sym_SLASH2] = ACTIONS(1633), + [anon_sym_mod2] = ACTIONS(1631), + [anon_sym_SLASH_SLASH2] = ACTIONS(1631), + [anon_sym_PLUS2] = ACTIONS(1633), + [anon_sym_bit_DASHshl2] = ACTIONS(1631), + [anon_sym_bit_DASHshr2] = ACTIONS(1631), + [anon_sym_bit_DASHand2] = ACTIONS(1631), + [anon_sym_bit_DASHxor2] = ACTIONS(1631), + [anon_sym_bit_DASHor2] = ACTIONS(1631), + [aux_sym__immediate_decimal_token1] = ACTIONS(1695), + [aux_sym__immediate_decimal_token2] = ACTIONS(1695), + [aux_sym__immediate_decimal_token3] = ACTIONS(1697), + [aux_sym__immediate_decimal_token4] = ACTIONS(1697), + [anon_sym_err_GT] = ACTIONS(1633), + [anon_sym_out_GT] = ACTIONS(1633), + [anon_sym_e_GT] = ACTIONS(1633), + [anon_sym_o_GT] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT] = ACTIONS(1633), + [anon_sym_err_GT_GT] = ACTIONS(1631), + [anon_sym_out_GT_GT] = ACTIONS(1631), + [anon_sym_e_GT_GT] = ACTIONS(1631), + [anon_sym_o_GT_GT] = ACTIONS(1631), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1631), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1631), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1631), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1631), + [sym__unquoted_pattern] = ACTIONS(1641), [anon_sym_POUND] = ACTIONS(3), }, [STATE(432)] = { [sym_comment] = STATE(432), - [ts_builtin_sym_end] = ACTIONS(1522), - [anon_sym_EQ] = ACTIONS(1520), - [anon_sym_PLUS_EQ] = ACTIONS(1522), - [anon_sym_DASH_EQ] = ACTIONS(1522), - [anon_sym_STAR_EQ] = ACTIONS(1522), - [anon_sym_SLASH_EQ] = ACTIONS(1522), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1522), - [anon_sym_in] = ACTIONS(1522), - [sym__newline] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_err_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_GT_PIPE] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1522), - [anon_sym_GT2] = ACTIONS(1520), - [anon_sym_DASH2] = ACTIONS(1520), - [anon_sym_STAR2] = ACTIONS(1520), - [anon_sym_and2] = ACTIONS(1522), - [anon_sym_xor2] = ACTIONS(1522), - [anon_sym_or2] = ACTIONS(1522), - [anon_sym_not_DASHin2] = ACTIONS(1522), - [anon_sym_has2] = ACTIONS(1522), - [anon_sym_not_DASHhas2] = ACTIONS(1522), - [anon_sym_starts_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1522), - [anon_sym_ends_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1522), - [anon_sym_EQ_EQ2] = ACTIONS(1522), - [anon_sym_BANG_EQ2] = ACTIONS(1522), - [anon_sym_LT2] = ACTIONS(1520), - [anon_sym_LT_EQ2] = ACTIONS(1522), - [anon_sym_GT_EQ2] = ACTIONS(1522), - [anon_sym_EQ_TILDE2] = ACTIONS(1522), - [anon_sym_BANG_TILDE2] = ACTIONS(1522), - [anon_sym_like2] = ACTIONS(1522), - [anon_sym_not_DASHlike2] = ACTIONS(1522), - [anon_sym_STAR_STAR2] = ACTIONS(1522), - [anon_sym_PLUS_PLUS2] = ACTIONS(1520), - [anon_sym_SLASH2] = ACTIONS(1520), - [anon_sym_mod2] = ACTIONS(1522), - [anon_sym_SLASH_SLASH2] = ACTIONS(1522), - [anon_sym_PLUS2] = ACTIONS(1520), - [anon_sym_bit_DASHshl2] = ACTIONS(1522), - [anon_sym_bit_DASHshr2] = ACTIONS(1522), - [anon_sym_bit_DASHand2] = ACTIONS(1522), - [anon_sym_bit_DASHxor2] = ACTIONS(1522), - [anon_sym_bit_DASHor2] = ACTIONS(1522), - [anon_sym_DOT_DOT2] = ACTIONS(1520), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1522), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1522), - [anon_sym_DOT2] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1520), - [anon_sym_out_GT] = ACTIONS(1520), - [anon_sym_e_GT] = ACTIONS(1520), - [anon_sym_o_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT] = ACTIONS(1520), - [anon_sym_err_GT_GT] = ACTIONS(1522), - [anon_sym_out_GT_GT] = ACTIONS(1522), - [anon_sym_e_GT_GT] = ACTIONS(1522), - [anon_sym_o_GT_GT] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1522), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(433)] = { - [sym_comment] = STATE(433), - [ts_builtin_sym_end] = ACTIONS(741), [anon_sym_in] = ACTIONS(741), [sym__newline] = ACTIONS(741), [anon_sym_SEMI] = ACTIONS(741), @@ -81233,8 +81366,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(741), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(741), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(741), + [anon_sym_RPAREN] = ACTIONS(741), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(741), [anon_sym_STAR2] = ACTIONS(739), [anon_sym_and2] = ACTIONS(741), [anon_sym_xor2] = ACTIONS(741), @@ -81268,10 +81403,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(741), [anon_sym_bit_DASHor2] = ACTIONS(741), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1710), + [anon_sym_DOT] = ACTIONS(1706), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1712), + [aux_sym__immediate_decimal_token5] = ACTIONS(1708), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -81293,686 +81428,386 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(433)] = { + [sym__expr_parenthesized_immediate] = STATE(1335), + [sym__immediate_decimal] = STATE(1336), + [sym_val_variable] = STATE(1335), + [sym_comment] = STATE(433), + [ts_builtin_sym_end] = ACTIONS(1643), + [anon_sym_in] = 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(1671), + [anon_sym_GT2] = ACTIONS(1645), + [anon_sym_DASH2] = ACTIONS(1645), + [anon_sym_STAR2] = ACTIONS(1645), + [anon_sym_and2] = ACTIONS(1643), + [anon_sym_xor2] = ACTIONS(1643), + [anon_sym_or2] = ACTIONS(1643), + [anon_sym_not_DASHin2] = ACTIONS(1643), + [anon_sym_has2] = ACTIONS(1643), + [anon_sym_not_DASHhas2] = ACTIONS(1643), + [anon_sym_starts_DASHwith2] = ACTIONS(1643), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1643), + [anon_sym_ends_DASHwith2] = ACTIONS(1643), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1643), + [anon_sym_EQ_EQ2] = ACTIONS(1643), + [anon_sym_BANG_EQ2] = ACTIONS(1643), + [anon_sym_LT2] = ACTIONS(1645), + [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_like2] = ACTIONS(1643), + [anon_sym_not_DASHlike2] = ACTIONS(1643), + [anon_sym_LPAREN2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1643), + [anon_sym_PLUS_PLUS2] = ACTIONS(1643), + [anon_sym_SLASH2] = ACTIONS(1645), + [anon_sym_mod2] = ACTIONS(1643), + [anon_sym_SLASH_SLASH2] = ACTIONS(1643), + [anon_sym_PLUS2] = ACTIONS(1645), + [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(1710), + [aux_sym__immediate_decimal_token2] = ACTIONS(1710), + [aux_sym__immediate_decimal_token3] = ACTIONS(1679), + [aux_sym__immediate_decimal_token4] = ACTIONS(1679), + [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(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(3), + }, [STATE(434)] = { [sym_comment] = STATE(434), - [anon_sym_EQ] = ACTIONS(1714), - [anon_sym_PLUS_EQ] = ACTIONS(1716), - [anon_sym_DASH_EQ] = ACTIONS(1716), - [anon_sym_STAR_EQ] = ACTIONS(1716), - [anon_sym_SLASH_EQ] = ACTIONS(1716), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1716), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [ts_builtin_sym_end] = ACTIONS(1574), + [anon_sym_EQ] = ACTIONS(1572), + [anon_sym_PLUS_EQ] = ACTIONS(1574), + [anon_sym_DASH_EQ] = ACTIONS(1574), + [anon_sym_STAR_EQ] = ACTIONS(1574), + [anon_sym_SLASH_EQ] = ACTIONS(1574), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1574), + [anon_sym_in] = ACTIONS(1574), + [sym__newline] = ACTIONS(1574), + [anon_sym_SEMI] = ACTIONS(1574), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_err_GT_PIPE] = ACTIONS(1574), + [anon_sym_out_GT_PIPE] = ACTIONS(1574), + [anon_sym_e_GT_PIPE] = ACTIONS(1574), + [anon_sym_o_GT_PIPE] = ACTIONS(1574), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1574), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1574), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1574), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1574), + [anon_sym_GT2] = ACTIONS(1572), + [anon_sym_DASH2] = ACTIONS(1572), + [anon_sym_STAR2] = ACTIONS(1572), + [anon_sym_and2] = ACTIONS(1574), + [anon_sym_xor2] = ACTIONS(1574), + [anon_sym_or2] = ACTIONS(1574), + [anon_sym_not_DASHin2] = ACTIONS(1574), + [anon_sym_has2] = ACTIONS(1574), + [anon_sym_not_DASHhas2] = ACTIONS(1574), + [anon_sym_starts_DASHwith2] = ACTIONS(1574), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1574), + [anon_sym_ends_DASHwith2] = ACTIONS(1574), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1574), + [anon_sym_EQ_EQ2] = ACTIONS(1574), + [anon_sym_BANG_EQ2] = ACTIONS(1574), + [anon_sym_LT2] = ACTIONS(1572), + [anon_sym_LT_EQ2] = ACTIONS(1574), + [anon_sym_GT_EQ2] = ACTIONS(1574), + [anon_sym_EQ_TILDE2] = ACTIONS(1574), + [anon_sym_BANG_TILDE2] = ACTIONS(1574), + [anon_sym_like2] = ACTIONS(1574), + [anon_sym_not_DASHlike2] = ACTIONS(1574), + [anon_sym_STAR_STAR2] = ACTIONS(1574), + [anon_sym_PLUS_PLUS2] = ACTIONS(1572), + [anon_sym_SLASH2] = ACTIONS(1572), + [anon_sym_mod2] = ACTIONS(1574), + [anon_sym_SLASH_SLASH2] = ACTIONS(1574), + [anon_sym_PLUS2] = ACTIONS(1572), + [anon_sym_bit_DASHshl2] = ACTIONS(1574), + [anon_sym_bit_DASHshr2] = ACTIONS(1574), + [anon_sym_bit_DASHand2] = ACTIONS(1574), + [anon_sym_bit_DASHxor2] = ACTIONS(1574), + [anon_sym_bit_DASHor2] = ACTIONS(1574), + [anon_sym_DOT_DOT2] = ACTIONS(1572), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1574), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1574), + [anon_sym_err_GT] = ACTIONS(1572), + [anon_sym_out_GT] = ACTIONS(1572), + [anon_sym_e_GT] = ACTIONS(1572), + [anon_sym_o_GT] = ACTIONS(1572), + [anon_sym_err_PLUSout_GT] = ACTIONS(1572), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1572), + [anon_sym_o_PLUSe_GT] = ACTIONS(1572), + [anon_sym_e_PLUSo_GT] = ACTIONS(1572), + [anon_sym_err_GT_GT] = ACTIONS(1574), + [anon_sym_out_GT_GT] = ACTIONS(1574), + [anon_sym_e_GT_GT] = ACTIONS(1574), + [anon_sym_o_GT_GT] = ACTIONS(1574), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1574), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1574), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1574), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1574), [anon_sym_POUND] = ACTIONS(3), }, [STATE(435)] = { [sym_comment] = STATE(435), - [anon_sym_in] = ACTIONS(773), - [sym__newline] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_err_GT_PIPE] = ACTIONS(773), - [anon_sym_out_GT_PIPE] = ACTIONS(773), - [anon_sym_e_GT_PIPE] = ACTIONS(773), - [anon_sym_o_GT_PIPE] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(773), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(773), - [anon_sym_RBRACE] = ACTIONS(773), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(773), - [anon_sym_xor2] = ACTIONS(773), - [anon_sym_or2] = ACTIONS(773), - [anon_sym_not_DASHin2] = ACTIONS(773), - [anon_sym_has2] = ACTIONS(773), - [anon_sym_not_DASHhas2] = ACTIONS(773), - [anon_sym_starts_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(773), - [anon_sym_ends_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(773), - [anon_sym_EQ_EQ2] = ACTIONS(773), - [anon_sym_BANG_EQ2] = ACTIONS(773), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(773), - [anon_sym_GT_EQ2] = ACTIONS(773), - [anon_sym_EQ_TILDE2] = ACTIONS(773), - [anon_sym_BANG_TILDE2] = ACTIONS(773), - [anon_sym_like2] = ACTIONS(773), - [anon_sym_not_DASHlike2] = ACTIONS(773), - [anon_sym_LPAREN2] = ACTIONS(773), - [anon_sym_STAR_STAR2] = ACTIONS(773), - [anon_sym_PLUS_PLUS2] = ACTIONS(773), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(773), - [anon_sym_SLASH_SLASH2] = ACTIONS(773), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(773), - [anon_sym_bit_DASHshr2] = ACTIONS(773), - [anon_sym_bit_DASHand2] = ACTIONS(773), - [anon_sym_bit_DASHxor2] = ACTIONS(773), - [anon_sym_bit_DASHor2] = ACTIONS(773), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1718), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(773), - [anon_sym_out_GT_GT] = ACTIONS(773), - [anon_sym_e_GT_GT] = ACTIONS(773), - [anon_sym_o_GT_GT] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(773), - [sym__unquoted_pattern] = ACTIONS(771), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_in] = ACTIONS(1554), + [sym__newline] = ACTIONS(1554), + [anon_sym_SEMI] = ACTIONS(1554), + [anon_sym_PIPE] = ACTIONS(1554), + [anon_sym_err_GT_PIPE] = ACTIONS(1554), + [anon_sym_out_GT_PIPE] = ACTIONS(1554), + [anon_sym_e_GT_PIPE] = ACTIONS(1554), + [anon_sym_o_GT_PIPE] = ACTIONS(1554), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1554), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1554), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1554), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1554), + [anon_sym_RPAREN] = ACTIONS(1554), + [anon_sym_GT2] = ACTIONS(1552), + [anon_sym_DASH2] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1554), + [anon_sym_RBRACE] = ACTIONS(1554), + [anon_sym_EQ_GT] = ACTIONS(1554), + [anon_sym_STAR2] = ACTIONS(1552), + [anon_sym_and2] = ACTIONS(1554), + [anon_sym_xor2] = ACTIONS(1554), + [anon_sym_or2] = ACTIONS(1554), + [anon_sym_not_DASHin2] = ACTIONS(1554), + [anon_sym_has2] = ACTIONS(1554), + [anon_sym_not_DASHhas2] = ACTIONS(1554), + [anon_sym_starts_DASHwith2] = ACTIONS(1554), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1554), + [anon_sym_ends_DASHwith2] = ACTIONS(1554), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1554), + [anon_sym_EQ_EQ2] = ACTIONS(1554), + [anon_sym_BANG_EQ2] = ACTIONS(1554), + [anon_sym_LT2] = ACTIONS(1552), + [anon_sym_LT_EQ2] = ACTIONS(1554), + [anon_sym_GT_EQ2] = ACTIONS(1554), + [anon_sym_EQ_TILDE2] = ACTIONS(1554), + [anon_sym_BANG_TILDE2] = ACTIONS(1554), + [anon_sym_like2] = ACTIONS(1554), + [anon_sym_not_DASHlike2] = ACTIONS(1554), + [anon_sym_STAR_STAR2] = ACTIONS(1554), + [anon_sym_PLUS_PLUS2] = ACTIONS(1554), + [anon_sym_SLASH2] = ACTIONS(1552), + [anon_sym_mod2] = ACTIONS(1554), + [anon_sym_SLASH_SLASH2] = ACTIONS(1554), + [anon_sym_PLUS2] = ACTIONS(1552), + [anon_sym_bit_DASHshl2] = ACTIONS(1554), + [anon_sym_bit_DASHshr2] = ACTIONS(1554), + [anon_sym_bit_DASHand2] = ACTIONS(1554), + [anon_sym_bit_DASHxor2] = ACTIONS(1554), + [anon_sym_bit_DASHor2] = ACTIONS(1554), + [anon_sym_DOT_DOT2] = ACTIONS(1552), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1554), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1554), + [anon_sym_COLON2] = ACTIONS(1554), + [anon_sym_DOT2] = ACTIONS(1552), + [anon_sym_err_GT] = ACTIONS(1552), + [anon_sym_out_GT] = ACTIONS(1552), + [anon_sym_e_GT] = ACTIONS(1552), + [anon_sym_o_GT] = ACTIONS(1552), + [anon_sym_err_PLUSout_GT] = ACTIONS(1552), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1552), + [anon_sym_o_PLUSe_GT] = ACTIONS(1552), + [anon_sym_e_PLUSo_GT] = ACTIONS(1552), + [anon_sym_err_GT_GT] = ACTIONS(1554), + [anon_sym_out_GT_GT] = ACTIONS(1554), + [anon_sym_e_GT_GT] = ACTIONS(1554), + [anon_sym_o_GT_GT] = ACTIONS(1554), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1554), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1554), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1554), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1554), [anon_sym_POUND] = ACTIONS(3), }, [STATE(436)] = { [sym_comment] = STATE(436), - [anon_sym_in] = ACTIONS(741), - [sym__newline] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(741), - [anon_sym_err_GT_PIPE] = ACTIONS(741), - [anon_sym_out_GT_PIPE] = ACTIONS(741), - [anon_sym_e_GT_PIPE] = ACTIONS(741), - [anon_sym_o_GT_PIPE] = ACTIONS(741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(741), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(741), - [anon_sym_RBRACE] = ACTIONS(741), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(741), - [anon_sym_xor2] = ACTIONS(741), - [anon_sym_or2] = ACTIONS(741), - [anon_sym_not_DASHin2] = ACTIONS(741), - [anon_sym_has2] = ACTIONS(741), - [anon_sym_not_DASHhas2] = ACTIONS(741), - [anon_sym_starts_DASHwith2] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(741), - [anon_sym_ends_DASHwith2] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(741), - [anon_sym_EQ_EQ2] = ACTIONS(741), - [anon_sym_BANG_EQ2] = ACTIONS(741), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(741), - [anon_sym_GT_EQ2] = ACTIONS(741), - [anon_sym_EQ_TILDE2] = ACTIONS(741), - [anon_sym_BANG_TILDE2] = ACTIONS(741), - [anon_sym_like2] = ACTIONS(741), - [anon_sym_not_DASHlike2] = ACTIONS(741), - [anon_sym_LPAREN2] = ACTIONS(741), - [anon_sym_STAR_STAR2] = ACTIONS(741), - [anon_sym_PLUS_PLUS2] = ACTIONS(741), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(741), - [anon_sym_SLASH_SLASH2] = ACTIONS(741), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(741), - [anon_sym_bit_DASHshr2] = ACTIONS(741), - [anon_sym_bit_DASHand2] = ACTIONS(741), - [anon_sym_bit_DASHxor2] = ACTIONS(741), - [anon_sym_bit_DASHor2] = ACTIONS(741), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1694), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(741), - [anon_sym_out_GT_GT] = ACTIONS(741), - [anon_sym_e_GT_GT] = ACTIONS(741), - [anon_sym_o_GT_GT] = ACTIONS(741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(741), - [sym__unquoted_pattern] = ACTIONS(739), + [anon_sym_if] = ACTIONS(1531), + [anon_sym_in] = ACTIONS(1531), + [sym__newline] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1531), + [anon_sym_err_GT_PIPE] = ACTIONS(1531), + [anon_sym_out_GT_PIPE] = ACTIONS(1531), + [anon_sym_e_GT_PIPE] = ACTIONS(1531), + [anon_sym_o_GT_PIPE] = ACTIONS(1531), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1531), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1531), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1531), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1531), + [anon_sym_RPAREN] = ACTIONS(1531), + [anon_sym_GT2] = ACTIONS(1529), + [anon_sym_DASH2] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(1531), + [anon_sym_RBRACE] = ACTIONS(1531), + [anon_sym_EQ_GT] = ACTIONS(1531), + [anon_sym_STAR2] = ACTIONS(1529), + [anon_sym_and2] = ACTIONS(1531), + [anon_sym_xor2] = ACTIONS(1531), + [anon_sym_or2] = ACTIONS(1531), + [anon_sym_not_DASHin2] = ACTIONS(1531), + [anon_sym_has2] = ACTIONS(1531), + [anon_sym_not_DASHhas2] = ACTIONS(1531), + [anon_sym_starts_DASHwith2] = ACTIONS(1531), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1531), + [anon_sym_ends_DASHwith2] = ACTIONS(1531), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1531), + [anon_sym_EQ_EQ2] = ACTIONS(1531), + [anon_sym_BANG_EQ2] = ACTIONS(1531), + [anon_sym_LT2] = ACTIONS(1529), + [anon_sym_LT_EQ2] = ACTIONS(1531), + [anon_sym_GT_EQ2] = ACTIONS(1531), + [anon_sym_EQ_TILDE2] = ACTIONS(1531), + [anon_sym_BANG_TILDE2] = ACTIONS(1531), + [anon_sym_like2] = ACTIONS(1531), + [anon_sym_not_DASHlike2] = ACTIONS(1531), + [anon_sym_STAR_STAR2] = ACTIONS(1531), + [anon_sym_PLUS_PLUS2] = ACTIONS(1531), + [anon_sym_SLASH2] = ACTIONS(1529), + [anon_sym_mod2] = ACTIONS(1531), + [anon_sym_SLASH_SLASH2] = ACTIONS(1531), + [anon_sym_PLUS2] = ACTIONS(1529), + [anon_sym_bit_DASHshl2] = ACTIONS(1531), + [anon_sym_bit_DASHshr2] = ACTIONS(1531), + [anon_sym_bit_DASHand2] = ACTIONS(1531), + [anon_sym_bit_DASHxor2] = ACTIONS(1531), + [anon_sym_bit_DASHor2] = ACTIONS(1531), + [anon_sym_DOT_DOT2] = ACTIONS(1529), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1531), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1531), + [anon_sym_COLON2] = ACTIONS(1531), + [anon_sym_DOT2] = ACTIONS(1529), + [anon_sym_err_GT] = ACTIONS(1529), + [anon_sym_out_GT] = ACTIONS(1529), + [anon_sym_e_GT] = ACTIONS(1529), + [anon_sym_o_GT] = ACTIONS(1529), + [anon_sym_err_PLUSout_GT] = ACTIONS(1529), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1529), + [anon_sym_o_PLUSe_GT] = ACTIONS(1529), + [anon_sym_e_PLUSo_GT] = ACTIONS(1529), + [anon_sym_err_GT_GT] = ACTIONS(1531), + [anon_sym_out_GT_GT] = ACTIONS(1531), + [anon_sym_e_GT_GT] = ACTIONS(1531), + [anon_sym_o_GT_GT] = ACTIONS(1531), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1531), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1531), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1531), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1531), [anon_sym_POUND] = ACTIONS(3), }, [STATE(437)] = { + [sym__expr_parenthesized_immediate] = STATE(1328), + [sym__immediate_decimal] = STATE(1330), + [sym_val_variable] = STATE(1328), [sym_comment] = STATE(437), - [anon_sym_if] = ACTIONS(1522), - [anon_sym_in] = ACTIONS(1522), - [sym__newline] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_err_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_GT_PIPE] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1522), - [anon_sym_RPAREN] = ACTIONS(1522), - [anon_sym_GT2] = ACTIONS(1520), - [anon_sym_DASH2] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1522), - [anon_sym_RBRACE] = ACTIONS(1522), - [anon_sym_EQ_GT] = ACTIONS(1522), - [anon_sym_STAR2] = ACTIONS(1520), - [anon_sym_and2] = ACTIONS(1522), - [anon_sym_xor2] = ACTIONS(1522), - [anon_sym_or2] = ACTIONS(1522), - [anon_sym_not_DASHin2] = ACTIONS(1522), - [anon_sym_has2] = ACTIONS(1522), - [anon_sym_not_DASHhas2] = ACTIONS(1522), - [anon_sym_starts_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1522), - [anon_sym_ends_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1522), - [anon_sym_EQ_EQ2] = ACTIONS(1522), - [anon_sym_BANG_EQ2] = ACTIONS(1522), - [anon_sym_LT2] = ACTIONS(1520), - [anon_sym_LT_EQ2] = ACTIONS(1522), - [anon_sym_GT_EQ2] = ACTIONS(1522), - [anon_sym_EQ_TILDE2] = ACTIONS(1522), - [anon_sym_BANG_TILDE2] = ACTIONS(1522), - [anon_sym_like2] = ACTIONS(1522), - [anon_sym_not_DASHlike2] = ACTIONS(1522), - [anon_sym_STAR_STAR2] = ACTIONS(1522), - [anon_sym_PLUS_PLUS2] = ACTIONS(1522), - [anon_sym_SLASH2] = ACTIONS(1520), - [anon_sym_mod2] = ACTIONS(1522), - [anon_sym_SLASH_SLASH2] = ACTIONS(1522), - [anon_sym_PLUS2] = ACTIONS(1520), - [anon_sym_bit_DASHshl2] = ACTIONS(1522), - [anon_sym_bit_DASHshr2] = ACTIONS(1522), - [anon_sym_bit_DASHand2] = ACTIONS(1522), - [anon_sym_bit_DASHxor2] = ACTIONS(1522), - [anon_sym_bit_DASHor2] = ACTIONS(1522), - [anon_sym_DOT_DOT2] = ACTIONS(1520), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1522), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1522), - [anon_sym_COLON2] = ACTIONS(1522), - [anon_sym_DOT2] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1520), - [anon_sym_out_GT] = ACTIONS(1520), - [anon_sym_e_GT] = ACTIONS(1520), - [anon_sym_o_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT] = ACTIONS(1520), - [anon_sym_err_GT_GT] = ACTIONS(1522), - [anon_sym_out_GT_GT] = ACTIONS(1522), - [anon_sym_e_GT_GT] = ACTIONS(1522), - [anon_sym_o_GT_GT] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1522), + [ts_builtin_sym_end] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_GT2] = ACTIONS(1609), + [anon_sym_DASH2] = ACTIONS(1609), + [anon_sym_STAR2] = ACTIONS(1609), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_has2] = ACTIONS(1607), + [anon_sym_not_DASHhas2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1609), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_like2] = ACTIONS(1607), + [anon_sym_not_DASHlike2] = ACTIONS(1607), + [anon_sym_LPAREN2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1609), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1609), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token1] = ACTIONS(1710), + [aux_sym__immediate_decimal_token2] = ACTIONS(1710), + [aux_sym__immediate_decimal_token3] = ACTIONS(1679), + [aux_sym__immediate_decimal_token4] = ACTIONS(1679), + [anon_sym_err_GT] = ACTIONS(1609), + [anon_sym_out_GT] = ACTIONS(1609), + [anon_sym_e_GT] = ACTIONS(1609), + [anon_sym_o_GT] = ACTIONS(1609), + [anon_sym_err_PLUSout_GT] = ACTIONS(1609), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1609), + [anon_sym_o_PLUSe_GT] = ACTIONS(1609), + [anon_sym_e_PLUSo_GT] = ACTIONS(1609), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), [anon_sym_POUND] = ACTIONS(3), }, [STATE(438)] = { + [sym__expr_parenthesized_immediate] = STATE(1263), + [sym__immediate_decimal] = STATE(1265), + [sym_val_variable] = STATE(1263), [sym_comment] = STATE(438), - [anon_sym_EQ] = ACTIONS(1720), - [anon_sym_PLUS_EQ] = ACTIONS(1722), - [anon_sym_DASH_EQ] = ACTIONS(1722), - [anon_sym_STAR_EQ] = ACTIONS(1722), - [anon_sym_SLASH_EQ] = ACTIONS(1722), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(439)] = { - [sym_comment] = STATE(439), - [anon_sym_EQ] = ACTIONS(1617), - [anon_sym_PLUS_EQ] = ACTIONS(1704), - [anon_sym_DASH_EQ] = ACTIONS(1704), - [anon_sym_STAR_EQ] = ACTIONS(1704), - [anon_sym_SLASH_EQ] = ACTIONS(1704), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1704), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(440)] = { - [sym_comment] = STATE(440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1440), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1440), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_COLON2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(441)] = { - [sym_comment] = STATE(441), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [sym__newline] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_err_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_GT_PIPE] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1464), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_GT2] = ACTIONS(1462), - [anon_sym_DASH2] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_EQ_GT] = ACTIONS(1464), - [anon_sym_STAR2] = ACTIONS(1462), - [anon_sym_and2] = ACTIONS(1464), - [anon_sym_xor2] = ACTIONS(1464), - [anon_sym_or2] = ACTIONS(1464), - [anon_sym_not_DASHin2] = ACTIONS(1464), - [anon_sym_has2] = ACTIONS(1464), - [anon_sym_not_DASHhas2] = ACTIONS(1464), - [anon_sym_starts_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1464), - [anon_sym_ends_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1464), - [anon_sym_EQ_EQ2] = ACTIONS(1464), - [anon_sym_BANG_EQ2] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1462), - [anon_sym_LT_EQ2] = ACTIONS(1464), - [anon_sym_GT_EQ2] = ACTIONS(1464), - [anon_sym_EQ_TILDE2] = ACTIONS(1464), - [anon_sym_BANG_TILDE2] = ACTIONS(1464), - [anon_sym_like2] = ACTIONS(1464), - [anon_sym_not_DASHlike2] = ACTIONS(1464), - [anon_sym_STAR_STAR2] = ACTIONS(1464), - [anon_sym_PLUS_PLUS2] = ACTIONS(1464), - [anon_sym_SLASH2] = ACTIONS(1462), - [anon_sym_mod2] = ACTIONS(1464), - [anon_sym_SLASH_SLASH2] = ACTIONS(1464), - [anon_sym_PLUS2] = ACTIONS(1462), - [anon_sym_bit_DASHshl2] = ACTIONS(1464), - [anon_sym_bit_DASHshr2] = ACTIONS(1464), - [anon_sym_bit_DASHand2] = ACTIONS(1464), - [anon_sym_bit_DASHxor2] = ACTIONS(1464), - [anon_sym_bit_DASHor2] = ACTIONS(1464), - [anon_sym_DOT_DOT2] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [anon_sym_COLON2] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), - [anon_sym_err_GT_GT] = ACTIONS(1464), - [anon_sym_out_GT_GT] = ACTIONS(1464), - [anon_sym_e_GT_GT] = ACTIONS(1464), - [anon_sym_o_GT_GT] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1464), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(442)] = { - [sym_comment] = STATE(442), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_RBRACE] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [anon_sym_DOT_DOT2] = ACTIONS(1728), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1726), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1726), - [aux_sym__immediate_decimal_token1] = ACTIONS(1730), - [aux_sym__immediate_decimal_token5] = ACTIONS(1732), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(443)] = { - [sym__expr_parenthesized_immediate] = STATE(1269), - [sym__immediate_decimal] = STATE(1271), - [sym_val_variable] = STATE(1269), - [sym_comment] = STATE(443), [ts_builtin_sym_end] = ACTIONS(1582), [anon_sym_in] = ACTIONS(1582), [sym__newline] = ACTIONS(1582), @@ -81986,7 +81821,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1649), + [anon_sym_DOLLAR] = ACTIONS(1671), [anon_sym_GT2] = ACTIONS(1586), [anon_sym_DASH2] = ACTIONS(1586), [anon_sym_STAR2] = ACTIONS(1586), @@ -82009,7 +81844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(1582), [anon_sym_like2] = ACTIONS(1582), [anon_sym_not_DASHlike2] = ACTIONS(1582), - [anon_sym_LPAREN2] = ACTIONS(1651), + [anon_sym_LPAREN2] = ACTIONS(1673), [anon_sym_STAR_STAR2] = ACTIONS(1582), [anon_sym_PLUS_PLUS2] = ACTIONS(1582), [anon_sym_SLASH2] = ACTIONS(1586), @@ -82021,10 +81856,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1582), [anon_sym_bit_DASHxor2] = ACTIONS(1582), [anon_sym_bit_DASHor2] = ACTIONS(1582), - [aux_sym__immediate_decimal_token1] = ACTIONS(1734), - [aux_sym__immediate_decimal_token2] = ACTIONS(1734), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), + [aux_sym__immediate_decimal_token1] = ACTIONS(1710), + [aux_sym__immediate_decimal_token2] = ACTIONS(1710), + [aux_sym__immediate_decimal_token3] = ACTIONS(1679), + [aux_sym__immediate_decimal_token4] = ACTIONS(1679), [anon_sym_err_GT] = ACTIONS(1586), [anon_sym_out_GT] = ACTIONS(1586), [anon_sym_e_GT] = ACTIONS(1586), @@ -82043,758 +81878,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(444)] = { - [sym_comment] = STATE(444), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT_DOT2] = ACTIONS(1738), - [anon_sym_DOT] = ACTIONS(1740), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1736), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1736), - [aux_sym__immediate_decimal_token5] = ACTIONS(1742), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(445)] = { - [sym_comment] = STATE(445), - [ts_builtin_sym_end] = ACTIONS(1706), - [anon_sym_EQ] = ACTIONS(1744), - [anon_sym_PLUS_EQ] = ACTIONS(1746), - [anon_sym_DASH_EQ] = ACTIONS(1746), - [anon_sym_STAR_EQ] = ACTIONS(1746), - [anon_sym_SLASH_EQ] = ACTIONS(1746), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1748), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1750), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1750), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(446)] = { - [sym__expr_parenthesized_immediate] = STATE(4633), - [sym_comment] = STATE(446), - [anon_sym_in] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(968), - [anon_sym_xor2] = ACTIONS(968), - [anon_sym_or2] = ACTIONS(968), - [anon_sym_not_DASHin2] = ACTIONS(968), - [anon_sym_has2] = ACTIONS(968), - [anon_sym_not_DASHhas2] = ACTIONS(968), - [anon_sym_starts_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(968), - [anon_sym_ends_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(968), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(968), - [anon_sym_like2] = ACTIONS(968), - [anon_sym_not_DASHlike2] = ACTIONS(968), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(968), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(968), - [anon_sym_bit_DASHshr2] = ACTIONS(968), - [anon_sym_bit_DASHand2] = ACTIONS(968), - [anon_sym_bit_DASHxor2] = ACTIONS(968), - [anon_sym_bit_DASHor2] = ACTIONS(968), - [anon_sym_DOT_DOT2] = ACTIONS(1754), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1756), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1756), - [sym_filesize_unit] = ACTIONS(1758), - [sym_duration_unit] = ACTIONS(1760), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [sym__unquoted_pattern] = ACTIONS(1762), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(447)] = { - [sym_comment] = STATE(447), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_in] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_RPAREN] = ACTIONS(1537), - [anon_sym_GT2] = ACTIONS(1535), - [anon_sym_DASH2] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1537), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_EQ_GT] = ACTIONS(1537), - [anon_sym_STAR2] = ACTIONS(1535), - [anon_sym_and2] = ACTIONS(1537), - [anon_sym_xor2] = ACTIONS(1537), - [anon_sym_or2] = ACTIONS(1537), - [anon_sym_not_DASHin2] = ACTIONS(1537), - [anon_sym_has2] = ACTIONS(1537), - [anon_sym_not_DASHhas2] = ACTIONS(1537), - [anon_sym_starts_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1537), - [anon_sym_ends_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1537), - [anon_sym_EQ_EQ2] = ACTIONS(1537), - [anon_sym_BANG_EQ2] = ACTIONS(1537), - [anon_sym_LT2] = ACTIONS(1535), - [anon_sym_LT_EQ2] = ACTIONS(1537), - [anon_sym_GT_EQ2] = ACTIONS(1537), - [anon_sym_EQ_TILDE2] = ACTIONS(1537), - [anon_sym_BANG_TILDE2] = ACTIONS(1537), - [anon_sym_like2] = ACTIONS(1537), - [anon_sym_not_DASHlike2] = ACTIONS(1537), - [anon_sym_STAR_STAR2] = ACTIONS(1537), - [anon_sym_PLUS_PLUS2] = ACTIONS(1537), - [anon_sym_SLASH2] = ACTIONS(1535), - [anon_sym_mod2] = ACTIONS(1537), - [anon_sym_SLASH_SLASH2] = ACTIONS(1537), - [anon_sym_PLUS2] = ACTIONS(1535), - [anon_sym_bit_DASHshl2] = ACTIONS(1537), - [anon_sym_bit_DASHshr2] = ACTIONS(1537), - [anon_sym_bit_DASHand2] = ACTIONS(1537), - [anon_sym_bit_DASHxor2] = ACTIONS(1537), - [anon_sym_bit_DASHor2] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [anon_sym_COLON2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(448)] = { - [sym__expr_parenthesized_immediate] = STATE(1336), - [sym__immediate_decimal] = STATE(1337), - [sym_val_variable] = STATE(1336), - [sym_comment] = STATE(448), - [ts_builtin_sym_end] = ACTIONS(1667), - [anon_sym_in] = ACTIONS(1667), - [sym__newline] = ACTIONS(1667), - [anon_sym_SEMI] = ACTIONS(1667), - [anon_sym_PIPE] = ACTIONS(1667), - [anon_sym_err_GT_PIPE] = ACTIONS(1667), - [anon_sym_out_GT_PIPE] = ACTIONS(1667), - [anon_sym_e_GT_PIPE] = ACTIONS(1667), - [anon_sym_o_GT_PIPE] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1669), - [anon_sym_and2] = ACTIONS(1667), - [anon_sym_xor2] = ACTIONS(1667), - [anon_sym_or2] = ACTIONS(1667), - [anon_sym_not_DASHin2] = ACTIONS(1667), - [anon_sym_has2] = ACTIONS(1667), - [anon_sym_not_DASHhas2] = ACTIONS(1667), - [anon_sym_starts_DASHwith2] = ACTIONS(1667), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1667), - [anon_sym_ends_DASHwith2] = ACTIONS(1667), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1667), - [anon_sym_EQ_EQ2] = ACTIONS(1667), - [anon_sym_BANG_EQ2] = ACTIONS(1667), - [anon_sym_LT2] = ACTIONS(1669), - [anon_sym_LT_EQ2] = ACTIONS(1667), - [anon_sym_GT_EQ2] = ACTIONS(1667), - [anon_sym_EQ_TILDE2] = ACTIONS(1667), - [anon_sym_BANG_TILDE2] = ACTIONS(1667), - [anon_sym_like2] = ACTIONS(1667), - [anon_sym_not_DASHlike2] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1667), - [anon_sym_PLUS_PLUS2] = ACTIONS(1667), - [anon_sym_SLASH2] = ACTIONS(1669), - [anon_sym_mod2] = ACTIONS(1667), - [anon_sym_SLASH_SLASH2] = ACTIONS(1667), - [anon_sym_PLUS2] = ACTIONS(1669), - [anon_sym_bit_DASHshl2] = ACTIONS(1667), - [anon_sym_bit_DASHshr2] = ACTIONS(1667), - [anon_sym_bit_DASHand2] = ACTIONS(1667), - [anon_sym_bit_DASHxor2] = ACTIONS(1667), - [anon_sym_bit_DASHor2] = ACTIONS(1667), - [aux_sym__immediate_decimal_token1] = ACTIONS(1734), - [aux_sym__immediate_decimal_token2] = ACTIONS(1734), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1669), - [anon_sym_out_GT] = ACTIONS(1669), - [anon_sym_e_GT] = ACTIONS(1669), - [anon_sym_o_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT] = ACTIONS(1669), - [anon_sym_err_GT_GT] = ACTIONS(1667), - [anon_sym_out_GT_GT] = ACTIONS(1667), - [anon_sym_e_GT_GT] = ACTIONS(1667), - [anon_sym_o_GT_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1667), + [STATE(439)] = { + [sym_comment] = STATE(439), + [anon_sym_EQ] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(1714), + [anon_sym_DASH_EQ] = ACTIONS(1714), + [anon_sym_STAR_EQ] = ACTIONS(1714), + [anon_sym_SLASH_EQ] = ACTIONS(1714), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1714), + [anon_sym_in] = ACTIONS(1689), + [sym__newline] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1689), + [anon_sym_err_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_GT_PIPE] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), + [anon_sym_RPAREN] = ACTIONS(1689), + [anon_sym_GT2] = ACTIONS(1615), + [anon_sym_DASH2] = ACTIONS(1615), + [anon_sym_STAR2] = ACTIONS(1615), + [anon_sym_and2] = ACTIONS(1689), + [anon_sym_xor2] = ACTIONS(1689), + [anon_sym_or2] = ACTIONS(1689), + [anon_sym_not_DASHin2] = ACTIONS(1689), + [anon_sym_has2] = ACTIONS(1689), + [anon_sym_not_DASHhas2] = ACTIONS(1689), + [anon_sym_starts_DASHwith2] = ACTIONS(1689), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1689), + [anon_sym_ends_DASHwith2] = ACTIONS(1689), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1689), + [anon_sym_EQ_EQ2] = ACTIONS(1689), + [anon_sym_BANG_EQ2] = ACTIONS(1689), + [anon_sym_LT2] = ACTIONS(1615), + [anon_sym_LT_EQ2] = ACTIONS(1689), + [anon_sym_GT_EQ2] = ACTIONS(1689), + [anon_sym_EQ_TILDE2] = ACTIONS(1689), + [anon_sym_BANG_TILDE2] = ACTIONS(1689), + [anon_sym_like2] = ACTIONS(1689), + [anon_sym_not_DASHlike2] = ACTIONS(1689), + [anon_sym_STAR_STAR2] = ACTIONS(1689), + [anon_sym_PLUS_PLUS2] = ACTIONS(1615), + [anon_sym_SLASH2] = ACTIONS(1615), + [anon_sym_mod2] = ACTIONS(1689), + [anon_sym_SLASH_SLASH2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(1615), + [anon_sym_bit_DASHshl2] = ACTIONS(1689), + [anon_sym_bit_DASHshr2] = ACTIONS(1689), + [anon_sym_bit_DASHand2] = ACTIONS(1689), + [anon_sym_bit_DASHxor2] = ACTIONS(1689), + [anon_sym_bit_DASHor2] = ACTIONS(1689), + [anon_sym_DOT_DOT2] = ACTIONS(1619), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), + [anon_sym_err_GT] = ACTIONS(1615), + [anon_sym_out_GT] = ACTIONS(1615), + [anon_sym_e_GT] = ACTIONS(1615), + [anon_sym_o_GT] = ACTIONS(1615), + [anon_sym_err_PLUSout_GT] = ACTIONS(1615), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), + [anon_sym_o_PLUSe_GT] = ACTIONS(1615), + [anon_sym_e_PLUSo_GT] = ACTIONS(1615), + [anon_sym_err_GT_GT] = ACTIONS(1689), + [anon_sym_out_GT_GT] = ACTIONS(1689), + [anon_sym_e_GT_GT] = ACTIONS(1689), + [anon_sym_o_GT_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(449)] = { - [sym__expr_parenthesized_immediate] = STATE(1339), - [sym__immediate_decimal] = STATE(1340), - [sym_val_variable] = STATE(1339), - [sym_comment] = STATE(449), - [ts_builtin_sym_end] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [sym__newline] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_err_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_GT_PIPE] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1673), - [anon_sym_DASH2] = ACTIONS(1673), - [anon_sym_STAR2] = ACTIONS(1673), - [anon_sym_and2] = ACTIONS(1671), - [anon_sym_xor2] = ACTIONS(1671), - [anon_sym_or2] = ACTIONS(1671), - [anon_sym_not_DASHin2] = ACTIONS(1671), - [anon_sym_has2] = ACTIONS(1671), - [anon_sym_not_DASHhas2] = ACTIONS(1671), - [anon_sym_starts_DASHwith2] = ACTIONS(1671), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1671), - [anon_sym_ends_DASHwith2] = ACTIONS(1671), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1671), - [anon_sym_EQ_EQ2] = ACTIONS(1671), - [anon_sym_BANG_EQ2] = ACTIONS(1671), - [anon_sym_LT2] = ACTIONS(1673), - [anon_sym_LT_EQ2] = ACTIONS(1671), - [anon_sym_GT_EQ2] = ACTIONS(1671), - [anon_sym_EQ_TILDE2] = ACTIONS(1671), - [anon_sym_BANG_TILDE2] = ACTIONS(1671), - [anon_sym_like2] = ACTIONS(1671), - [anon_sym_not_DASHlike2] = ACTIONS(1671), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1671), - [anon_sym_PLUS_PLUS2] = ACTIONS(1671), - [anon_sym_SLASH2] = ACTIONS(1673), - [anon_sym_mod2] = ACTIONS(1671), - [anon_sym_SLASH_SLASH2] = ACTIONS(1671), - [anon_sym_PLUS2] = ACTIONS(1673), - [anon_sym_bit_DASHshl2] = ACTIONS(1671), - [anon_sym_bit_DASHshr2] = ACTIONS(1671), - [anon_sym_bit_DASHand2] = ACTIONS(1671), - [anon_sym_bit_DASHxor2] = ACTIONS(1671), - [anon_sym_bit_DASHor2] = ACTIONS(1671), - [aux_sym__immediate_decimal_token1] = ACTIONS(1734), - [aux_sym__immediate_decimal_token2] = ACTIONS(1734), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1673), - [anon_sym_out_GT] = ACTIONS(1673), - [anon_sym_e_GT] = ACTIONS(1673), - [anon_sym_o_GT] = ACTIONS(1673), - [anon_sym_err_PLUSout_GT] = ACTIONS(1673), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1673), - [anon_sym_o_PLUSe_GT] = ACTIONS(1673), - [anon_sym_e_PLUSo_GT] = ACTIONS(1673), - [anon_sym_err_GT_GT] = ACTIONS(1671), - [anon_sym_out_GT_GT] = ACTIONS(1671), - [anon_sym_e_GT_GT] = ACTIONS(1671), - [anon_sym_o_GT_GT] = ACTIONS(1671), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1671), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1671), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1671), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1671), + [STATE(440)] = { + [sym_comment] = STATE(440), + [ts_builtin_sym_end] = ACTIONS(1689), + [anon_sym_EQ] = ACTIONS(1716), + [anon_sym_PLUS_EQ] = ACTIONS(1718), + [anon_sym_DASH_EQ] = ACTIONS(1718), + [anon_sym_STAR_EQ] = ACTIONS(1718), + [anon_sym_SLASH_EQ] = ACTIONS(1718), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1718), + [anon_sym_in] = ACTIONS(1689), + [sym__newline] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1689), + [anon_sym_err_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_GT_PIPE] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), + [anon_sym_GT2] = ACTIONS(1615), + [anon_sym_DASH2] = ACTIONS(1615), + [anon_sym_STAR2] = ACTIONS(1615), + [anon_sym_and2] = ACTIONS(1689), + [anon_sym_xor2] = ACTIONS(1689), + [anon_sym_or2] = ACTIONS(1689), + [anon_sym_not_DASHin2] = ACTIONS(1689), + [anon_sym_has2] = ACTIONS(1689), + [anon_sym_not_DASHhas2] = ACTIONS(1689), + [anon_sym_starts_DASHwith2] = ACTIONS(1689), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1689), + [anon_sym_ends_DASHwith2] = ACTIONS(1689), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1689), + [anon_sym_EQ_EQ2] = ACTIONS(1689), + [anon_sym_BANG_EQ2] = ACTIONS(1689), + [anon_sym_LT2] = ACTIONS(1615), + [anon_sym_LT_EQ2] = ACTIONS(1689), + [anon_sym_GT_EQ2] = ACTIONS(1689), + [anon_sym_EQ_TILDE2] = ACTIONS(1689), + [anon_sym_BANG_TILDE2] = ACTIONS(1689), + [anon_sym_like2] = ACTIONS(1689), + [anon_sym_not_DASHlike2] = ACTIONS(1689), + [anon_sym_STAR_STAR2] = ACTIONS(1689), + [anon_sym_PLUS_PLUS2] = ACTIONS(1615), + [anon_sym_SLASH2] = ACTIONS(1615), + [anon_sym_mod2] = ACTIONS(1689), + [anon_sym_SLASH_SLASH2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(1615), + [anon_sym_bit_DASHshl2] = ACTIONS(1689), + [anon_sym_bit_DASHshr2] = ACTIONS(1689), + [anon_sym_bit_DASHand2] = ACTIONS(1689), + [anon_sym_bit_DASHxor2] = ACTIONS(1689), + [anon_sym_bit_DASHor2] = ACTIONS(1689), + [anon_sym_DOT_DOT2] = ACTIONS(1720), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1722), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1722), + [anon_sym_err_GT] = ACTIONS(1615), + [anon_sym_out_GT] = ACTIONS(1615), + [anon_sym_e_GT] = ACTIONS(1615), + [anon_sym_o_GT] = ACTIONS(1615), + [anon_sym_err_PLUSout_GT] = ACTIONS(1615), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), + [anon_sym_o_PLUSe_GT] = ACTIONS(1615), + [anon_sym_e_PLUSo_GT] = ACTIONS(1615), + [anon_sym_err_GT_GT] = ACTIONS(1689), + [anon_sym_out_GT_GT] = ACTIONS(1689), + [anon_sym_e_GT_GT] = ACTIONS(1689), + [anon_sym_o_GT_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(450)] = { - [sym__expr_parenthesized_immediate] = STATE(1341), - [sym__immediate_decimal] = STATE(1342), - [sym_val_variable] = STATE(1341), - [sym_comment] = STATE(450), - [ts_builtin_sym_end] = ACTIONS(1675), - [anon_sym_in] = ACTIONS(1675), - [sym__newline] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(1675), - [anon_sym_err_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_GT_PIPE] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1677), - [anon_sym_DASH2] = ACTIONS(1677), - [anon_sym_STAR2] = ACTIONS(1677), - [anon_sym_and2] = ACTIONS(1675), - [anon_sym_xor2] = ACTIONS(1675), - [anon_sym_or2] = ACTIONS(1675), - [anon_sym_not_DASHin2] = ACTIONS(1675), - [anon_sym_has2] = ACTIONS(1675), - [anon_sym_not_DASHhas2] = ACTIONS(1675), - [anon_sym_starts_DASHwith2] = ACTIONS(1675), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1675), - [anon_sym_ends_DASHwith2] = ACTIONS(1675), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1675), - [anon_sym_EQ_EQ2] = ACTIONS(1675), - [anon_sym_BANG_EQ2] = ACTIONS(1675), - [anon_sym_LT2] = ACTIONS(1677), - [anon_sym_LT_EQ2] = ACTIONS(1675), - [anon_sym_GT_EQ2] = ACTIONS(1675), - [anon_sym_EQ_TILDE2] = ACTIONS(1675), - [anon_sym_BANG_TILDE2] = ACTIONS(1675), - [anon_sym_like2] = ACTIONS(1675), - [anon_sym_not_DASHlike2] = ACTIONS(1675), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1675), - [anon_sym_PLUS_PLUS2] = ACTIONS(1675), - [anon_sym_SLASH2] = ACTIONS(1677), - [anon_sym_mod2] = ACTIONS(1675), - [anon_sym_SLASH_SLASH2] = ACTIONS(1675), - [anon_sym_PLUS2] = ACTIONS(1677), - [anon_sym_bit_DASHshl2] = ACTIONS(1675), - [anon_sym_bit_DASHshr2] = ACTIONS(1675), - [anon_sym_bit_DASHand2] = ACTIONS(1675), - [anon_sym_bit_DASHxor2] = ACTIONS(1675), - [anon_sym_bit_DASHor2] = ACTIONS(1675), - [aux_sym__immediate_decimal_token1] = ACTIONS(1734), - [aux_sym__immediate_decimal_token2] = ACTIONS(1734), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1677), - [anon_sym_out_GT] = ACTIONS(1677), - [anon_sym_e_GT] = ACTIONS(1677), - [anon_sym_o_GT] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT] = ACTIONS(1677), - [anon_sym_err_GT_GT] = ACTIONS(1675), - [anon_sym_out_GT_GT] = ACTIONS(1675), - [anon_sym_e_GT_GT] = ACTIONS(1675), - [anon_sym_o_GT_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1675), + [STATE(441)] = { + [sym_comment] = STATE(441), + [anon_sym_if] = ACTIONS(1527), + [anon_sym_in] = ACTIONS(1527), + [sym__newline] = ACTIONS(1527), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_err_GT_PIPE] = ACTIONS(1527), + [anon_sym_out_GT_PIPE] = ACTIONS(1527), + [anon_sym_e_GT_PIPE] = ACTIONS(1527), + [anon_sym_o_GT_PIPE] = ACTIONS(1527), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1527), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1527), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1527), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1527), + [anon_sym_RPAREN] = ACTIONS(1527), + [anon_sym_GT2] = ACTIONS(1525), + [anon_sym_DASH2] = ACTIONS(1527), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1527), + [anon_sym_EQ_GT] = ACTIONS(1527), + [anon_sym_STAR2] = ACTIONS(1525), + [anon_sym_and2] = ACTIONS(1527), + [anon_sym_xor2] = ACTIONS(1527), + [anon_sym_or2] = ACTIONS(1527), + [anon_sym_not_DASHin2] = ACTIONS(1527), + [anon_sym_has2] = ACTIONS(1527), + [anon_sym_not_DASHhas2] = ACTIONS(1527), + [anon_sym_starts_DASHwith2] = ACTIONS(1527), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1527), + [anon_sym_ends_DASHwith2] = ACTIONS(1527), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1527), + [anon_sym_EQ_EQ2] = ACTIONS(1527), + [anon_sym_BANG_EQ2] = ACTIONS(1527), + [anon_sym_LT2] = ACTIONS(1525), + [anon_sym_LT_EQ2] = ACTIONS(1527), + [anon_sym_GT_EQ2] = ACTIONS(1527), + [anon_sym_EQ_TILDE2] = ACTIONS(1527), + [anon_sym_BANG_TILDE2] = ACTIONS(1527), + [anon_sym_like2] = ACTIONS(1527), + [anon_sym_not_DASHlike2] = ACTIONS(1527), + [anon_sym_STAR_STAR2] = ACTIONS(1527), + [anon_sym_PLUS_PLUS2] = ACTIONS(1527), + [anon_sym_SLASH2] = ACTIONS(1525), + [anon_sym_mod2] = ACTIONS(1527), + [anon_sym_SLASH_SLASH2] = ACTIONS(1527), + [anon_sym_PLUS2] = ACTIONS(1525), + [anon_sym_bit_DASHshl2] = ACTIONS(1527), + [anon_sym_bit_DASHshr2] = ACTIONS(1527), + [anon_sym_bit_DASHand2] = ACTIONS(1527), + [anon_sym_bit_DASHxor2] = ACTIONS(1527), + [anon_sym_bit_DASHor2] = ACTIONS(1527), + [anon_sym_DOT_DOT2] = ACTIONS(1525), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1527), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1527), + [anon_sym_COLON2] = ACTIONS(1527), + [anon_sym_DOT2] = ACTIONS(1525), + [anon_sym_err_GT] = ACTIONS(1525), + [anon_sym_out_GT] = ACTIONS(1525), + [anon_sym_e_GT] = ACTIONS(1525), + [anon_sym_o_GT] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT] = ACTIONS(1525), + [anon_sym_err_GT_GT] = ACTIONS(1527), + [anon_sym_out_GT_GT] = ACTIONS(1527), + [anon_sym_e_GT_GT] = ACTIONS(1527), + [anon_sym_o_GT_GT] = ACTIONS(1527), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1527), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1527), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1527), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1527), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(451)] = { - [sym__expr_parenthesized_immediate] = STATE(1343), - [sym__immediate_decimal] = STATE(1344), - [sym_val_variable] = STATE(1343), - [sym_comment] = STATE(451), - [ts_builtin_sym_end] = ACTIONS(1631), - [anon_sym_in] = ACTIONS(1631), - [sym__newline] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_PIPE] = ACTIONS(1631), - [anon_sym_err_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_GT_PIPE] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_STAR2] = ACTIONS(1633), - [anon_sym_and2] = ACTIONS(1631), - [anon_sym_xor2] = ACTIONS(1631), - [anon_sym_or2] = ACTIONS(1631), - [anon_sym_not_DASHin2] = ACTIONS(1631), - [anon_sym_has2] = ACTIONS(1631), - [anon_sym_not_DASHhas2] = ACTIONS(1631), - [anon_sym_starts_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1631), - [anon_sym_ends_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1631), - [anon_sym_EQ_EQ2] = ACTIONS(1631), - [anon_sym_BANG_EQ2] = ACTIONS(1631), - [anon_sym_LT2] = ACTIONS(1633), - [anon_sym_LT_EQ2] = ACTIONS(1631), - [anon_sym_GT_EQ2] = ACTIONS(1631), - [anon_sym_EQ_TILDE2] = ACTIONS(1631), - [anon_sym_BANG_TILDE2] = ACTIONS(1631), - [anon_sym_like2] = ACTIONS(1631), - [anon_sym_not_DASHlike2] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1631), - [anon_sym_PLUS_PLUS2] = ACTIONS(1631), - [anon_sym_SLASH2] = ACTIONS(1633), - [anon_sym_mod2] = ACTIONS(1631), - [anon_sym_SLASH_SLASH2] = ACTIONS(1631), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_bit_DASHshl2] = ACTIONS(1631), - [anon_sym_bit_DASHshr2] = ACTIONS(1631), - [anon_sym_bit_DASHand2] = ACTIONS(1631), - [anon_sym_bit_DASHxor2] = ACTIONS(1631), - [anon_sym_bit_DASHor2] = ACTIONS(1631), - [aux_sym__immediate_decimal_token1] = ACTIONS(1734), - [aux_sym__immediate_decimal_token2] = ACTIONS(1734), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1631), - [anon_sym_out_GT_GT] = ACTIONS(1631), - [anon_sym_e_GT_GT] = ACTIONS(1631), - [anon_sym_o_GT_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1631), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(452)] = { - [sym__expr_parenthesized_immediate] = STATE(1311), - [sym__immediate_decimal] = STATE(1318), - [sym_val_variable] = STATE(1311), - [sym_comment] = STATE(452), - [ts_builtin_sym_end] = ACTIONS(1596), - [anon_sym_in] = ACTIONS(1596), - [sym__newline] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_err_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_GT_PIPE] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1596), - [anon_sym_DOLLAR] = ACTIONS(1649), - [anon_sym_GT2] = ACTIONS(1598), - [anon_sym_DASH2] = ACTIONS(1598), - [anon_sym_STAR2] = ACTIONS(1598), - [anon_sym_and2] = ACTIONS(1596), - [anon_sym_xor2] = ACTIONS(1596), - [anon_sym_or2] = ACTIONS(1596), - [anon_sym_not_DASHin2] = ACTIONS(1596), - [anon_sym_has2] = ACTIONS(1596), - [anon_sym_not_DASHhas2] = ACTIONS(1596), - [anon_sym_starts_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1596), - [anon_sym_ends_DASHwith2] = ACTIONS(1596), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1596), - [anon_sym_EQ_EQ2] = ACTIONS(1596), - [anon_sym_BANG_EQ2] = ACTIONS(1596), - [anon_sym_LT2] = ACTIONS(1598), - [anon_sym_LT_EQ2] = ACTIONS(1596), - [anon_sym_GT_EQ2] = ACTIONS(1596), - [anon_sym_EQ_TILDE2] = ACTIONS(1596), - [anon_sym_BANG_TILDE2] = ACTIONS(1596), - [anon_sym_like2] = ACTIONS(1596), - [anon_sym_not_DASHlike2] = ACTIONS(1596), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_STAR_STAR2] = ACTIONS(1596), - [anon_sym_PLUS_PLUS2] = ACTIONS(1596), - [anon_sym_SLASH2] = ACTIONS(1598), - [anon_sym_mod2] = ACTIONS(1596), - [anon_sym_SLASH_SLASH2] = ACTIONS(1596), - [anon_sym_PLUS2] = ACTIONS(1598), - [anon_sym_bit_DASHshl2] = ACTIONS(1596), - [anon_sym_bit_DASHshr2] = ACTIONS(1596), - [anon_sym_bit_DASHand2] = ACTIONS(1596), - [anon_sym_bit_DASHxor2] = ACTIONS(1596), - [anon_sym_bit_DASHor2] = ACTIONS(1596), - [aux_sym__immediate_decimal_token1] = ACTIONS(1734), - [aux_sym__immediate_decimal_token2] = ACTIONS(1734), - [aux_sym__immediate_decimal_token3] = ACTIONS(1657), - [aux_sym__immediate_decimal_token4] = ACTIONS(1657), - [anon_sym_err_GT] = ACTIONS(1598), - [anon_sym_out_GT] = ACTIONS(1598), - [anon_sym_e_GT] = ACTIONS(1598), - [anon_sym_o_GT] = ACTIONS(1598), - [anon_sym_err_PLUSout_GT] = ACTIONS(1598), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1598), - [anon_sym_o_PLUSe_GT] = ACTIONS(1598), - [anon_sym_e_PLUSo_GT] = ACTIONS(1598), - [anon_sym_err_GT_GT] = ACTIONS(1596), - [anon_sym_out_GT_GT] = ACTIONS(1596), - [anon_sym_e_GT_GT] = ACTIONS(1596), - [anon_sym_o_GT_GT] = ACTIONS(1596), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1596), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1596), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1596), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(453)] = { - [sym_comment] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_EQ] = ACTIONS(1556), - [anon_sym_PLUS_EQ] = ACTIONS(1558), - [anon_sym_DASH_EQ] = ACTIONS(1558), - [anon_sym_STAR_EQ] = ACTIONS(1558), - [anon_sym_SLASH_EQ] = ACTIONS(1558), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1558), - [anon_sym_in] = ACTIONS(1558), - [sym__newline] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_PIPE] = ACTIONS(1558), - [anon_sym_err_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_GT_PIPE] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1558), - [anon_sym_GT2] = ACTIONS(1556), - [anon_sym_DASH2] = ACTIONS(1556), - [anon_sym_STAR2] = ACTIONS(1556), - [anon_sym_and2] = ACTIONS(1558), - [anon_sym_xor2] = ACTIONS(1558), - [anon_sym_or2] = ACTIONS(1558), - [anon_sym_not_DASHin2] = ACTIONS(1558), - [anon_sym_has2] = ACTIONS(1558), - [anon_sym_not_DASHhas2] = ACTIONS(1558), - [anon_sym_starts_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1558), - [anon_sym_ends_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1558), - [anon_sym_EQ_EQ2] = ACTIONS(1558), - [anon_sym_BANG_EQ2] = ACTIONS(1558), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ2] = ACTIONS(1558), - [anon_sym_GT_EQ2] = ACTIONS(1558), - [anon_sym_EQ_TILDE2] = ACTIONS(1558), - [anon_sym_BANG_TILDE2] = ACTIONS(1558), - [anon_sym_like2] = ACTIONS(1558), - [anon_sym_not_DASHlike2] = ACTIONS(1558), - [anon_sym_STAR_STAR2] = ACTIONS(1558), - [anon_sym_PLUS_PLUS2] = ACTIONS(1556), - [anon_sym_SLASH2] = ACTIONS(1556), - [anon_sym_mod2] = ACTIONS(1558), - [anon_sym_SLASH_SLASH2] = ACTIONS(1558), - [anon_sym_PLUS2] = ACTIONS(1556), - [anon_sym_bit_DASHshl2] = ACTIONS(1558), - [anon_sym_bit_DASHshr2] = ACTIONS(1558), - [anon_sym_bit_DASHand2] = ACTIONS(1558), - [anon_sym_bit_DASHxor2] = ACTIONS(1558), - [anon_sym_bit_DASHor2] = ACTIONS(1558), - [anon_sym_DOT_DOT2] = ACTIONS(1556), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [anon_sym_err_GT_GT] = ACTIONS(1558), - [anon_sym_out_GT_GT] = ACTIONS(1558), - [anon_sym_e_GT_GT] = ACTIONS(1558), - [anon_sym_o_GT_GT] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1558), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(454)] = { - [sym_comment] = STATE(454), + [STATE(442)] = { + [sym_comment] = STATE(442), [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(749), [sym__newline] = ACTIONS(749), @@ -82845,8 +82155,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1764), - [aux_sym__immediate_decimal_token5] = ACTIONS(1766), + [aux_sym__immediate_decimal_token1] = ACTIONS(1724), + [aux_sym__immediate_decimal_token5] = ACTIONS(1726), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -82868,400 +82178,1004 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(455)] = { - [sym_cmd_identifier] = STATE(4167), - [sym__match_pattern_record_body] = STATE(5175), - [sym_expr_parenthesized] = STATE(5186), - [sym__spread_parenthesized] = STATE(4688), - [sym__spread_variable] = STATE(4697), - [sym_val_variable] = STATE(4283), - [sym_val_number] = STATE(5186), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(5186), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(5186), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4688), - [sym_record_entry] = STATE(4486), - [sym__record_key] = STATE(4982), - [sym_comment] = STATE(455), - [aux_sym__types_body_repeat1] = STATE(625), - [aux_sym__match_pattern_record_body_repeat1] = STATE(789), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1778), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [STATE(443)] = { + [sym_comment] = STATE(443), + [anon_sym_in] = ACTIONS(1728), + [sym__newline] = ACTIONS(1728), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_err_GT_PIPE] = ACTIONS(1728), + [anon_sym_out_GT_PIPE] = ACTIONS(1728), + [anon_sym_e_GT_PIPE] = ACTIONS(1728), + [anon_sym_o_GT_PIPE] = ACTIONS(1728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1728), + [anon_sym_RPAREN] = ACTIONS(1728), + [anon_sym_GT2] = ACTIONS(1730), + [anon_sym_DASH2] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1728), + [anon_sym_RBRACE] = ACTIONS(1728), + [anon_sym_STAR2] = ACTIONS(1730), + [anon_sym_and2] = ACTIONS(1728), + [anon_sym_xor2] = ACTIONS(1728), + [anon_sym_or2] = ACTIONS(1728), + [anon_sym_not_DASHin2] = ACTIONS(1728), + [anon_sym_has2] = ACTIONS(1728), + [anon_sym_not_DASHhas2] = ACTIONS(1728), + [anon_sym_starts_DASHwith2] = ACTIONS(1728), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1728), + [anon_sym_ends_DASHwith2] = ACTIONS(1728), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1728), + [anon_sym_EQ_EQ2] = ACTIONS(1728), + [anon_sym_BANG_EQ2] = ACTIONS(1728), + [anon_sym_LT2] = ACTIONS(1730), + [anon_sym_LT_EQ2] = ACTIONS(1728), + [anon_sym_GT_EQ2] = ACTIONS(1728), + [anon_sym_EQ_TILDE2] = ACTIONS(1728), + [anon_sym_BANG_TILDE2] = ACTIONS(1728), + [anon_sym_like2] = ACTIONS(1728), + [anon_sym_not_DASHlike2] = ACTIONS(1728), + [anon_sym_LPAREN2] = ACTIONS(1728), + [anon_sym_STAR_STAR2] = ACTIONS(1728), + [anon_sym_PLUS_PLUS2] = ACTIONS(1728), + [anon_sym_SLASH2] = ACTIONS(1730), + [anon_sym_mod2] = ACTIONS(1728), + [anon_sym_SLASH_SLASH2] = ACTIONS(1728), + [anon_sym_PLUS2] = ACTIONS(1730), + [anon_sym_bit_DASHshl2] = ACTIONS(1728), + [anon_sym_bit_DASHshr2] = ACTIONS(1728), + [anon_sym_bit_DASHand2] = ACTIONS(1728), + [anon_sym_bit_DASHxor2] = ACTIONS(1728), + [anon_sym_bit_DASHor2] = ACTIONS(1728), + [anon_sym_DOT_DOT2] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1732), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1728), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1728), + [aux_sym__immediate_decimal_token5] = ACTIONS(1734), + [anon_sym_err_GT] = ACTIONS(1730), + [anon_sym_out_GT] = ACTIONS(1730), + [anon_sym_e_GT] = ACTIONS(1730), + [anon_sym_o_GT] = ACTIONS(1730), + [anon_sym_err_PLUSout_GT] = ACTIONS(1730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1730), + [anon_sym_o_PLUSe_GT] = ACTIONS(1730), + [anon_sym_e_PLUSo_GT] = ACTIONS(1730), + [anon_sym_err_GT_GT] = ACTIONS(1728), + [anon_sym_out_GT_GT] = ACTIONS(1728), + [anon_sym_e_GT_GT] = ACTIONS(1728), + [anon_sym_o_GT_GT] = ACTIONS(1728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1728), + [sym__unquoted_pattern] = ACTIONS(1730), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(456)] = { - [sym_cmd_identifier] = STATE(4167), - [sym_expr_parenthesized] = STATE(5186), - [sym__spread_parenthesized] = STATE(4688), - [sym__spread_variable] = STATE(4697), - [sym_val_variable] = STATE(5186), - [sym_val_number] = STATE(5186), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(5186), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(5186), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4688), - [sym_record_body] = STATE(5190), - [sym_record_entry] = STATE(4526), - [sym__record_key] = STATE(4982), - [sym_comment] = STATE(456), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_record_body_repeat1] = STATE(826), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1796), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [STATE(444)] = { + [sym_comment] = STATE(444), + [anon_sym_in] = ACTIONS(1448), + [sym__newline] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1448), + [anon_sym_err_GT_PIPE] = ACTIONS(1448), + [anon_sym_out_GT_PIPE] = ACTIONS(1448), + [anon_sym_e_GT_PIPE] = ACTIONS(1448), + [anon_sym_o_GT_PIPE] = ACTIONS(1448), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1448), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), + [anon_sym_RPAREN] = ACTIONS(1448), + [anon_sym_GT2] = ACTIONS(1446), + [anon_sym_DASH2] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_RBRACE] = ACTIONS(1448), + [anon_sym_EQ_GT] = ACTIONS(1448), + [anon_sym_STAR2] = ACTIONS(1446), + [anon_sym_and2] = ACTIONS(1448), + [anon_sym_xor2] = ACTIONS(1448), + [anon_sym_or2] = ACTIONS(1448), + [anon_sym_not_DASHin2] = ACTIONS(1448), + [anon_sym_has2] = ACTIONS(1448), + [anon_sym_not_DASHhas2] = ACTIONS(1448), + [anon_sym_starts_DASHwith2] = ACTIONS(1448), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1448), + [anon_sym_ends_DASHwith2] = ACTIONS(1448), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), + [anon_sym_EQ_EQ2] = ACTIONS(1448), + [anon_sym_BANG_EQ2] = ACTIONS(1448), + [anon_sym_LT2] = ACTIONS(1446), + [anon_sym_LT_EQ2] = ACTIONS(1448), + [anon_sym_GT_EQ2] = ACTIONS(1448), + [anon_sym_EQ_TILDE2] = ACTIONS(1448), + [anon_sym_BANG_TILDE2] = ACTIONS(1448), + [anon_sym_like2] = ACTIONS(1448), + [anon_sym_not_DASHlike2] = ACTIONS(1448), + [anon_sym_STAR_STAR2] = ACTIONS(1448), + [anon_sym_PLUS_PLUS2] = ACTIONS(1448), + [anon_sym_SLASH2] = ACTIONS(1446), + [anon_sym_mod2] = ACTIONS(1448), + [anon_sym_SLASH_SLASH2] = ACTIONS(1448), + [anon_sym_PLUS2] = ACTIONS(1446), + [anon_sym_bit_DASHshl2] = ACTIONS(1448), + [anon_sym_bit_DASHshr2] = ACTIONS(1448), + [anon_sym_bit_DASHand2] = ACTIONS(1448), + [anon_sym_bit_DASHxor2] = ACTIONS(1448), + [anon_sym_bit_DASHor2] = ACTIONS(1448), + [anon_sym_DOT_DOT2] = ACTIONS(1446), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), + [anon_sym_COLON2] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1736), + [anon_sym_DOT2] = ACTIONS(1446), + [anon_sym_err_GT] = ACTIONS(1446), + [anon_sym_out_GT] = ACTIONS(1446), + [anon_sym_e_GT] = ACTIONS(1446), + [anon_sym_o_GT] = ACTIONS(1446), + [anon_sym_err_PLUSout_GT] = ACTIONS(1446), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), + [anon_sym_o_PLUSe_GT] = ACTIONS(1446), + [anon_sym_e_PLUSo_GT] = ACTIONS(1446), + [anon_sym_err_GT_GT] = ACTIONS(1448), + [anon_sym_out_GT_GT] = ACTIONS(1448), + [anon_sym_e_GT_GT] = ACTIONS(1448), + [anon_sym_o_GT_GT] = ACTIONS(1448), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1448), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(457)] = { - [sym_cmd_identifier] = STATE(4167), - [sym__match_pattern_record_body] = STATE(4838), - [sym_expr_parenthesized] = STATE(5186), - [sym__spread_parenthesized] = STATE(4688), - [sym__spread_variable] = STATE(4697), - [sym_val_variable] = STATE(4283), - [sym_val_number] = STATE(5186), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(5186), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(5186), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4688), - [sym_record_entry] = STATE(4486), - [sym__record_key] = STATE(4982), - [sym_comment] = STATE(457), - [aux_sym__types_body_repeat1] = STATE(625), - [aux_sym__match_pattern_record_body_repeat1] = STATE(789), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [STATE(445)] = { + [sym_comment] = STATE(445), + [anon_sym_in] = ACTIONS(741), + [sym__newline] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_err_GT_PIPE] = ACTIONS(741), + [anon_sym_out_GT_PIPE] = ACTIONS(741), + [anon_sym_e_GT_PIPE] = ACTIONS(741), + [anon_sym_o_GT_PIPE] = ACTIONS(741), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(741), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(741), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(741), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(741), + [anon_sym_RPAREN] = ACTIONS(741), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(741), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(741), + [anon_sym_xor2] = ACTIONS(741), + [anon_sym_or2] = ACTIONS(741), + [anon_sym_not_DASHin2] = ACTIONS(741), + [anon_sym_has2] = ACTIONS(741), + [anon_sym_not_DASHhas2] = ACTIONS(741), + [anon_sym_starts_DASHwith2] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(741), + [anon_sym_ends_DASHwith2] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(741), + [anon_sym_EQ_EQ2] = ACTIONS(741), + [anon_sym_BANG_EQ2] = ACTIONS(741), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(741), + [anon_sym_GT_EQ2] = ACTIONS(741), + [anon_sym_EQ_TILDE2] = ACTIONS(741), + [anon_sym_BANG_TILDE2] = ACTIONS(741), + [anon_sym_like2] = ACTIONS(741), + [anon_sym_not_DASHlike2] = ACTIONS(741), + [anon_sym_LPAREN2] = ACTIONS(741), + [anon_sym_STAR_STAR2] = ACTIONS(741), + [anon_sym_PLUS_PLUS2] = ACTIONS(741), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(741), + [anon_sym_SLASH_SLASH2] = ACTIONS(741), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(741), + [anon_sym_bit_DASHshr2] = ACTIONS(741), + [anon_sym_bit_DASHand2] = ACTIONS(741), + [anon_sym_bit_DASHxor2] = ACTIONS(741), + [anon_sym_bit_DASHor2] = ACTIONS(741), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token5] = ACTIONS(1708), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_err_GT] = ACTIONS(739), + [anon_sym_out_GT] = ACTIONS(739), + [anon_sym_e_GT] = ACTIONS(739), + [anon_sym_o_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT] = ACTIONS(739), + [anon_sym_err_GT_GT] = ACTIONS(741), + [anon_sym_out_GT_GT] = ACTIONS(741), + [anon_sym_e_GT_GT] = ACTIONS(741), + [anon_sym_o_GT_GT] = ACTIONS(741), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(741), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(741), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(741), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(741), + [sym__unquoted_pattern] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(458)] = { - [sym_cmd_identifier] = STATE(4167), - [sym__match_pattern_record_body] = STATE(4931), - [sym_expr_parenthesized] = STATE(5186), - [sym__spread_parenthesized] = STATE(4688), - [sym__spread_variable] = STATE(4697), - [sym_val_variable] = STATE(4283), - [sym_val_number] = STATE(5186), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(5186), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(5186), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4688), - [sym_record_entry] = STATE(4486), - [sym__record_key] = STATE(4982), - [sym_comment] = STATE(458), - [aux_sym__types_body_repeat1] = STATE(625), - [aux_sym__match_pattern_record_body_repeat1] = STATE(789), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1800), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [STATE(446)] = { + [sym_comment] = STATE(446), + [anon_sym_in] = ACTIONS(1738), + [sym__newline] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_err_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_GT_PIPE] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_RPAREN] = ACTIONS(1738), + [anon_sym_GT2] = ACTIONS(1740), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1738), + [anon_sym_STAR2] = ACTIONS(1740), + [anon_sym_and2] = ACTIONS(1738), + [anon_sym_xor2] = ACTIONS(1738), + [anon_sym_or2] = ACTIONS(1738), + [anon_sym_not_DASHin2] = ACTIONS(1738), + [anon_sym_has2] = ACTIONS(1738), + [anon_sym_not_DASHhas2] = ACTIONS(1738), + [anon_sym_starts_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), + [anon_sym_ends_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), + [anon_sym_EQ_EQ2] = ACTIONS(1738), + [anon_sym_BANG_EQ2] = ACTIONS(1738), + [anon_sym_LT2] = ACTIONS(1740), + [anon_sym_LT_EQ2] = ACTIONS(1738), + [anon_sym_GT_EQ2] = ACTIONS(1738), + [anon_sym_EQ_TILDE2] = ACTIONS(1738), + [anon_sym_BANG_TILDE2] = ACTIONS(1738), + [anon_sym_like2] = ACTIONS(1738), + [anon_sym_not_DASHlike2] = ACTIONS(1738), + [anon_sym_LPAREN2] = ACTIONS(1738), + [anon_sym_STAR_STAR2] = ACTIONS(1738), + [anon_sym_PLUS_PLUS2] = ACTIONS(1738), + [anon_sym_SLASH2] = ACTIONS(1740), + [anon_sym_mod2] = ACTIONS(1738), + [anon_sym_SLASH_SLASH2] = ACTIONS(1738), + [anon_sym_PLUS2] = ACTIONS(1740), + [anon_sym_bit_DASHshl2] = ACTIONS(1738), + [anon_sym_bit_DASHshr2] = ACTIONS(1738), + [anon_sym_bit_DASHand2] = ACTIONS(1738), + [anon_sym_bit_DASHxor2] = ACTIONS(1738), + [anon_sym_bit_DASHor2] = ACTIONS(1738), + [anon_sym_DOT_DOT2] = ACTIONS(1740), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1738), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1738), + [aux_sym__immediate_decimal_token1] = ACTIONS(1742), + [aux_sym__immediate_decimal_token5] = ACTIONS(1744), + [anon_sym_err_GT] = ACTIONS(1740), + [anon_sym_out_GT] = ACTIONS(1740), + [anon_sym_e_GT] = ACTIONS(1740), + [anon_sym_o_GT] = ACTIONS(1740), + [anon_sym_err_PLUSout_GT] = ACTIONS(1740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1740), + [anon_sym_o_PLUSe_GT] = ACTIONS(1740), + [anon_sym_e_PLUSo_GT] = ACTIONS(1740), + [anon_sym_err_GT_GT] = ACTIONS(1738), + [anon_sym_out_GT_GT] = ACTIONS(1738), + [anon_sym_e_GT_GT] = ACTIONS(1738), + [anon_sym_o_GT_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), + [sym__unquoted_pattern] = ACTIONS(1740), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(459)] = { - [sym_comment] = STATE(459), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [anon_sym_DOT_DOT2] = ACTIONS(1804), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1802), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1802), - [aux_sym__immediate_decimal_token5] = ACTIONS(1806), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), + [STATE(447)] = { + [sym_comment] = STATE(447), + [anon_sym_EQ] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1748), + [anon_sym_DASH_EQ] = ACTIONS(1748), + [anon_sym_STAR_EQ] = ACTIONS(1748), + [anon_sym_SLASH_EQ] = ACTIONS(1748), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1748), + [anon_sym_in] = ACTIONS(1689), + [sym__newline] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1689), + [anon_sym_err_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_GT_PIPE] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), + [anon_sym_RPAREN] = ACTIONS(1689), + [anon_sym_GT2] = ACTIONS(1615), + [anon_sym_DASH2] = ACTIONS(1615), + [anon_sym_STAR2] = ACTIONS(1615), + [anon_sym_and2] = ACTIONS(1689), + [anon_sym_xor2] = ACTIONS(1689), + [anon_sym_or2] = ACTIONS(1689), + [anon_sym_not_DASHin2] = ACTIONS(1689), + [anon_sym_has2] = ACTIONS(1689), + [anon_sym_not_DASHhas2] = ACTIONS(1689), + [anon_sym_starts_DASHwith2] = ACTIONS(1689), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1689), + [anon_sym_ends_DASHwith2] = ACTIONS(1689), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1689), + [anon_sym_EQ_EQ2] = ACTIONS(1689), + [anon_sym_BANG_EQ2] = ACTIONS(1689), + [anon_sym_LT2] = ACTIONS(1615), + [anon_sym_LT_EQ2] = ACTIONS(1689), + [anon_sym_GT_EQ2] = ACTIONS(1689), + [anon_sym_EQ_TILDE2] = ACTIONS(1689), + [anon_sym_BANG_TILDE2] = ACTIONS(1689), + [anon_sym_like2] = ACTIONS(1689), + [anon_sym_not_DASHlike2] = ACTIONS(1689), + [anon_sym_STAR_STAR2] = ACTIONS(1689), + [anon_sym_PLUS_PLUS2] = ACTIONS(1615), + [anon_sym_SLASH2] = ACTIONS(1615), + [anon_sym_mod2] = ACTIONS(1689), + [anon_sym_SLASH_SLASH2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(1615), + [anon_sym_bit_DASHshl2] = ACTIONS(1689), + [anon_sym_bit_DASHshr2] = ACTIONS(1689), + [anon_sym_bit_DASHand2] = ACTIONS(1689), + [anon_sym_bit_DASHxor2] = ACTIONS(1689), + [anon_sym_bit_DASHor2] = ACTIONS(1689), + [anon_sym_DOT_DOT2] = ACTIONS(1619), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), + [anon_sym_err_GT] = ACTIONS(1615), + [anon_sym_out_GT] = ACTIONS(1615), + [anon_sym_e_GT] = ACTIONS(1615), + [anon_sym_o_GT] = ACTIONS(1615), + [anon_sym_err_PLUSout_GT] = ACTIONS(1615), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), + [anon_sym_o_PLUSe_GT] = ACTIONS(1615), + [anon_sym_e_PLUSo_GT] = ACTIONS(1615), + [anon_sym_err_GT_GT] = ACTIONS(1689), + [anon_sym_out_GT_GT] = ACTIONS(1689), + [anon_sym_e_GT_GT] = ACTIONS(1689), + [anon_sym_o_GT_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(460)] = { - [sym_cmd_identifier] = STATE(4167), - [sym_expr_parenthesized] = STATE(5186), - [sym__spread_parenthesized] = STATE(4688), - [sym__spread_variable] = STATE(4697), - [sym_val_variable] = STATE(5186), - [sym_val_number] = STATE(5186), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(5186), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(5186), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4688), - [sym_record_body] = STATE(4937), - [sym_record_entry] = STATE(4526), - [sym__record_key] = STATE(4982), - [sym_comment] = STATE(460), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_record_body_repeat1] = STATE(826), + [STATE(448)] = { + [sym_comment] = STATE(448), + [ts_builtin_sym_end] = ACTIONS(741), + [anon_sym_in] = ACTIONS(741), + [sym__newline] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_err_GT_PIPE] = ACTIONS(741), + [anon_sym_out_GT_PIPE] = ACTIONS(741), + [anon_sym_e_GT_PIPE] = ACTIONS(741), + [anon_sym_o_GT_PIPE] = ACTIONS(741), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(741), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(741), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(741), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(741), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(741), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(741), + [anon_sym_xor2] = ACTIONS(741), + [anon_sym_or2] = ACTIONS(741), + [anon_sym_not_DASHin2] = ACTIONS(741), + [anon_sym_has2] = ACTIONS(741), + [anon_sym_not_DASHhas2] = ACTIONS(741), + [anon_sym_starts_DASHwith2] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(741), + [anon_sym_ends_DASHwith2] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(741), + [anon_sym_EQ_EQ2] = ACTIONS(741), + [anon_sym_BANG_EQ2] = ACTIONS(741), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(741), + [anon_sym_GT_EQ2] = ACTIONS(741), + [anon_sym_EQ_TILDE2] = ACTIONS(741), + [anon_sym_BANG_TILDE2] = ACTIONS(741), + [anon_sym_like2] = ACTIONS(741), + [anon_sym_not_DASHlike2] = ACTIONS(741), + [anon_sym_LPAREN2] = ACTIONS(741), + [anon_sym_STAR_STAR2] = ACTIONS(741), + [anon_sym_PLUS_PLUS2] = ACTIONS(741), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(741), + [anon_sym_SLASH_SLASH2] = ACTIONS(741), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(741), + [anon_sym_bit_DASHshr2] = ACTIONS(741), + [anon_sym_bit_DASHand2] = ACTIONS(741), + [anon_sym_bit_DASHxor2] = ACTIONS(741), + [anon_sym_bit_DASHor2] = ACTIONS(741), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token5] = ACTIONS(1752), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_err_GT] = ACTIONS(739), + [anon_sym_out_GT] = ACTIONS(739), + [anon_sym_e_GT] = ACTIONS(739), + [anon_sym_o_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT] = ACTIONS(739), + [anon_sym_err_GT_GT] = ACTIONS(741), + [anon_sym_out_GT_GT] = ACTIONS(741), + [anon_sym_e_GT_GT] = ACTIONS(741), + [anon_sym_o_GT_GT] = ACTIONS(741), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(741), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(741), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(741), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(741), + [sym__unquoted_pattern] = ACTIONS(739), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(449)] = { + [sym_comment] = STATE(449), + [anon_sym_in] = ACTIONS(773), + [sym__newline] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(773), + [anon_sym_err_GT_PIPE] = ACTIONS(773), + [anon_sym_out_GT_PIPE] = ACTIONS(773), + [anon_sym_e_GT_PIPE] = ACTIONS(773), + [anon_sym_o_GT_PIPE] = ACTIONS(773), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(773), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(773), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(773), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(773), + [anon_sym_RPAREN] = ACTIONS(773), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(773), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(773), + [anon_sym_xor2] = ACTIONS(773), + [anon_sym_or2] = ACTIONS(773), + [anon_sym_not_DASHin2] = ACTIONS(773), + [anon_sym_has2] = ACTIONS(773), + [anon_sym_not_DASHhas2] = ACTIONS(773), + [anon_sym_starts_DASHwith2] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(773), + [anon_sym_ends_DASHwith2] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(773), + [anon_sym_EQ_EQ2] = ACTIONS(773), + [anon_sym_BANG_EQ2] = ACTIONS(773), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(773), + [anon_sym_GT_EQ2] = ACTIONS(773), + [anon_sym_EQ_TILDE2] = ACTIONS(773), + [anon_sym_BANG_TILDE2] = ACTIONS(773), + [anon_sym_like2] = ACTIONS(773), + [anon_sym_not_DASHlike2] = ACTIONS(773), + [anon_sym_LPAREN2] = ACTIONS(773), + [anon_sym_STAR_STAR2] = ACTIONS(773), + [anon_sym_PLUS_PLUS2] = ACTIONS(773), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(773), + [anon_sym_SLASH_SLASH2] = ACTIONS(773), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(773), + [anon_sym_bit_DASHshr2] = ACTIONS(773), + [anon_sym_bit_DASHand2] = ACTIONS(773), + [anon_sym_bit_DASHxor2] = ACTIONS(773), + [anon_sym_bit_DASHor2] = ACTIONS(773), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [aux_sym__immediate_decimal_token5] = ACTIONS(1754), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_err_GT] = ACTIONS(771), + [anon_sym_out_GT] = ACTIONS(771), + [anon_sym_e_GT] = ACTIONS(771), + [anon_sym_o_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT] = ACTIONS(771), + [anon_sym_err_GT_GT] = ACTIONS(773), + [anon_sym_out_GT_GT] = ACTIONS(773), + [anon_sym_e_GT_GT] = ACTIONS(773), + [anon_sym_o_GT_GT] = ACTIONS(773), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(773), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(773), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(773), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(773), + [sym__unquoted_pattern] = ACTIONS(771), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(450)] = { + [sym__expr_parenthesized_immediate] = STATE(4726), + [sym_comment] = STATE(450), + [anon_sym_in] = ACTIONS(890), + [sym__newline] = ACTIONS(890), + [anon_sym_SEMI] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(890), + [anon_sym_err_GT_PIPE] = ACTIONS(890), + [anon_sym_out_GT_PIPE] = ACTIONS(890), + [anon_sym_e_GT_PIPE] = ACTIONS(890), + [anon_sym_o_GT_PIPE] = ACTIONS(890), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(890), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(890), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(890), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(890), + [anon_sym_RPAREN] = ACTIONS(890), + [anon_sym_GT2] = ACTIONS(793), + [anon_sym_DASH2] = ACTIONS(890), + [anon_sym_RBRACE] = ACTIONS(890), + [anon_sym_STAR2] = ACTIONS(793), + [anon_sym_and2] = ACTIONS(890), + [anon_sym_xor2] = ACTIONS(890), + [anon_sym_or2] = ACTIONS(890), + [anon_sym_not_DASHin2] = ACTIONS(890), + [anon_sym_has2] = ACTIONS(890), + [anon_sym_not_DASHhas2] = ACTIONS(890), + [anon_sym_starts_DASHwith2] = ACTIONS(890), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(890), + [anon_sym_ends_DASHwith2] = ACTIONS(890), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(890), + [anon_sym_EQ_EQ2] = ACTIONS(890), + [anon_sym_BANG_EQ2] = ACTIONS(890), + [anon_sym_LT2] = ACTIONS(793), + [anon_sym_LT_EQ2] = ACTIONS(890), + [anon_sym_GT_EQ2] = ACTIONS(890), + [anon_sym_EQ_TILDE2] = ACTIONS(890), + [anon_sym_BANG_TILDE2] = ACTIONS(890), + [anon_sym_like2] = ACTIONS(890), + [anon_sym_not_DASHlike2] = ACTIONS(890), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(890), + [anon_sym_PLUS_PLUS2] = ACTIONS(890), + [anon_sym_SLASH2] = ACTIONS(793), + [anon_sym_mod2] = ACTIONS(890), + [anon_sym_SLASH_SLASH2] = ACTIONS(890), + [anon_sym_PLUS2] = ACTIONS(793), + [anon_sym_bit_DASHshl2] = ACTIONS(890), + [anon_sym_bit_DASHshr2] = ACTIONS(890), + [anon_sym_bit_DASHand2] = ACTIONS(890), + [anon_sym_bit_DASHxor2] = ACTIONS(890), + [anon_sym_bit_DASHor2] = ACTIONS(890), + [anon_sym_DOT_DOT2] = ACTIONS(1758), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1760), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1760), + [sym_filesize_unit] = ACTIONS(1762), + [sym_duration_unit] = ACTIONS(1764), + [anon_sym_err_GT] = ACTIONS(793), + [anon_sym_out_GT] = ACTIONS(793), + [anon_sym_e_GT] = ACTIONS(793), + [anon_sym_o_GT] = ACTIONS(793), + [anon_sym_err_PLUSout_GT] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT] = ACTIONS(793), + [anon_sym_o_PLUSe_GT] = ACTIONS(793), + [anon_sym_e_PLUSo_GT] = ACTIONS(793), + [anon_sym_err_GT_GT] = ACTIONS(890), + [anon_sym_out_GT_GT] = ACTIONS(890), + [anon_sym_e_GT_GT] = ACTIONS(890), + [anon_sym_o_GT_GT] = ACTIONS(890), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(890), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(890), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(890), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(890), + [sym__unquoted_pattern] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(451)] = { + [sym_comment] = STATE(451), + [anon_sym_EQ] = ACTIONS(1613), + [anon_sym_PLUS_EQ] = ACTIONS(1687), + [anon_sym_DASH_EQ] = ACTIONS(1687), + [anon_sym_STAR_EQ] = ACTIONS(1687), + [anon_sym_SLASH_EQ] = ACTIONS(1687), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(1689), + [sym__newline] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1689), + [anon_sym_err_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_GT_PIPE] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), + [anon_sym_GT2] = ACTIONS(1615), + [anon_sym_DASH2] = ACTIONS(1615), + [anon_sym_RBRACE] = ACTIONS(1689), + [anon_sym_STAR2] = ACTIONS(1615), + [anon_sym_and2] = ACTIONS(1689), + [anon_sym_xor2] = ACTIONS(1689), + [anon_sym_or2] = ACTIONS(1689), + [anon_sym_not_DASHin2] = ACTIONS(1689), + [anon_sym_has2] = ACTIONS(1689), + [anon_sym_not_DASHhas2] = ACTIONS(1689), + [anon_sym_starts_DASHwith2] = ACTIONS(1689), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1689), + [anon_sym_ends_DASHwith2] = ACTIONS(1689), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1689), + [anon_sym_EQ_EQ2] = ACTIONS(1689), + [anon_sym_BANG_EQ2] = ACTIONS(1689), + [anon_sym_LT2] = ACTIONS(1615), + [anon_sym_LT_EQ2] = ACTIONS(1689), + [anon_sym_GT_EQ2] = ACTIONS(1689), + [anon_sym_EQ_TILDE2] = ACTIONS(1689), + [anon_sym_BANG_TILDE2] = ACTIONS(1689), + [anon_sym_like2] = ACTIONS(1689), + [anon_sym_not_DASHlike2] = ACTIONS(1689), + [anon_sym_STAR_STAR2] = ACTIONS(1689), + [anon_sym_PLUS_PLUS2] = ACTIONS(1615), + [anon_sym_SLASH2] = ACTIONS(1615), + [anon_sym_mod2] = ACTIONS(1689), + [anon_sym_SLASH_SLASH2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(1615), + [anon_sym_bit_DASHshl2] = ACTIONS(1689), + [anon_sym_bit_DASHshr2] = ACTIONS(1689), + [anon_sym_bit_DASHand2] = ACTIONS(1689), + [anon_sym_bit_DASHxor2] = ACTIONS(1689), + [anon_sym_bit_DASHor2] = ACTIONS(1689), + [anon_sym_DOT_DOT2] = ACTIONS(1619), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), + [anon_sym_err_GT] = ACTIONS(1615), + [anon_sym_out_GT] = ACTIONS(1615), + [anon_sym_e_GT] = ACTIONS(1615), + [anon_sym_o_GT] = ACTIONS(1615), + [anon_sym_err_PLUSout_GT] = ACTIONS(1615), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), + [anon_sym_o_PLUSe_GT] = ACTIONS(1615), + [anon_sym_e_PLUSo_GT] = ACTIONS(1615), + [anon_sym_err_GT_GT] = ACTIONS(1689), + [anon_sym_out_GT_GT] = ACTIONS(1689), + [anon_sym_e_GT_GT] = ACTIONS(1689), + [anon_sym_o_GT_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(452)] = { + [sym__expr_parenthesized_immediate] = STATE(1337), + [sym__immediate_decimal] = STATE(1338), + [sym_val_variable] = STATE(1337), + [sym_comment] = STATE(452), + [ts_builtin_sym_end] = ACTIONS(1647), + [anon_sym_in] = 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_DOLLAR] = ACTIONS(1671), + [anon_sym_GT2] = ACTIONS(1649), + [anon_sym_DASH2] = ACTIONS(1649), + [anon_sym_STAR2] = ACTIONS(1649), + [anon_sym_and2] = ACTIONS(1647), + [anon_sym_xor2] = ACTIONS(1647), + [anon_sym_or2] = ACTIONS(1647), + [anon_sym_not_DASHin2] = ACTIONS(1647), + [anon_sym_has2] = ACTIONS(1647), + [anon_sym_not_DASHhas2] = ACTIONS(1647), + [anon_sym_starts_DASHwith2] = ACTIONS(1647), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1647), + [anon_sym_ends_DASHwith2] = ACTIONS(1647), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1647), + [anon_sym_EQ_EQ2] = ACTIONS(1647), + [anon_sym_BANG_EQ2] = ACTIONS(1647), + [anon_sym_LT2] = ACTIONS(1649), + [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_like2] = ACTIONS(1647), + [anon_sym_not_DASHlike2] = ACTIONS(1647), + [anon_sym_LPAREN2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1647), + [anon_sym_PLUS_PLUS2] = ACTIONS(1647), + [anon_sym_SLASH2] = ACTIONS(1649), + [anon_sym_mod2] = ACTIONS(1647), + [anon_sym_SLASH_SLASH2] = ACTIONS(1647), + [anon_sym_PLUS2] = ACTIONS(1649), + [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), + [aux_sym__immediate_decimal_token1] = ACTIONS(1710), + [aux_sym__immediate_decimal_token2] = ACTIONS(1710), + [aux_sym__immediate_decimal_token3] = ACTIONS(1679), + [aux_sym__immediate_decimal_token4] = ACTIONS(1679), + [anon_sym_err_GT] = ACTIONS(1649), + [anon_sym_out_GT] = ACTIONS(1649), + [anon_sym_e_GT] = ACTIONS(1649), + [anon_sym_o_GT] = ACTIONS(1649), + [anon_sym_err_PLUSout_GT] = ACTIONS(1649), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1649), + [anon_sym_o_PLUSe_GT] = ACTIONS(1649), + [anon_sym_e_PLUSo_GT] = ACTIONS(1649), + [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_POUND] = ACTIONS(3), + }, + [STATE(453)] = { + [sym__expr_parenthesized_immediate] = STATE(1339), + [sym__immediate_decimal] = STATE(1340), + [sym_val_variable] = STATE(1339), + [sym_comment] = STATE(453), + [ts_builtin_sym_end] = ACTIONS(1651), + [anon_sym_in] = ACTIONS(1651), + [sym__newline] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1651), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_err_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_GT_PIPE] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1651), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_GT2] = ACTIONS(1653), + [anon_sym_DASH2] = ACTIONS(1653), + [anon_sym_STAR2] = ACTIONS(1653), + [anon_sym_and2] = ACTIONS(1651), + [anon_sym_xor2] = ACTIONS(1651), + [anon_sym_or2] = ACTIONS(1651), + [anon_sym_not_DASHin2] = ACTIONS(1651), + [anon_sym_has2] = ACTIONS(1651), + [anon_sym_not_DASHhas2] = ACTIONS(1651), + [anon_sym_starts_DASHwith2] = ACTIONS(1651), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1651), + [anon_sym_ends_DASHwith2] = ACTIONS(1651), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1651), + [anon_sym_EQ_EQ2] = ACTIONS(1651), + [anon_sym_BANG_EQ2] = ACTIONS(1651), + [anon_sym_LT2] = ACTIONS(1653), + [anon_sym_LT_EQ2] = ACTIONS(1651), + [anon_sym_GT_EQ2] = ACTIONS(1651), + [anon_sym_EQ_TILDE2] = ACTIONS(1651), + [anon_sym_BANG_TILDE2] = ACTIONS(1651), + [anon_sym_like2] = ACTIONS(1651), + [anon_sym_not_DASHlike2] = ACTIONS(1651), + [anon_sym_LPAREN2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1651), + [anon_sym_PLUS_PLUS2] = ACTIONS(1651), + [anon_sym_SLASH2] = ACTIONS(1653), + [anon_sym_mod2] = ACTIONS(1651), + [anon_sym_SLASH_SLASH2] = ACTIONS(1651), + [anon_sym_PLUS2] = ACTIONS(1653), + [anon_sym_bit_DASHshl2] = ACTIONS(1651), + [anon_sym_bit_DASHshr2] = ACTIONS(1651), + [anon_sym_bit_DASHand2] = ACTIONS(1651), + [anon_sym_bit_DASHxor2] = ACTIONS(1651), + [anon_sym_bit_DASHor2] = ACTIONS(1651), + [aux_sym__immediate_decimal_token1] = ACTIONS(1710), + [aux_sym__immediate_decimal_token2] = ACTIONS(1710), + [aux_sym__immediate_decimal_token3] = ACTIONS(1679), + [aux_sym__immediate_decimal_token4] = ACTIONS(1679), + [anon_sym_err_GT] = ACTIONS(1653), + [anon_sym_out_GT] = ACTIONS(1653), + [anon_sym_e_GT] = ACTIONS(1653), + [anon_sym_o_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT] = ACTIONS(1653), + [anon_sym_err_GT_GT] = ACTIONS(1651), + [anon_sym_out_GT_GT] = ACTIONS(1651), + [anon_sym_e_GT_GT] = ACTIONS(1651), + [anon_sym_o_GT_GT] = ACTIONS(1651), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1651), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1651), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1651), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1651), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(454)] = { + [sym__expr_parenthesized_immediate] = STATE(1341), + [sym__immediate_decimal] = STATE(1342), + [sym_val_variable] = STATE(1341), + [sym_comment] = STATE(454), + [ts_builtin_sym_end] = ACTIONS(1631), + [anon_sym_in] = ACTIONS(1631), + [sym__newline] = ACTIONS(1631), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_PIPE] = ACTIONS(1631), + [anon_sym_err_GT_PIPE] = ACTIONS(1631), + [anon_sym_out_GT_PIPE] = ACTIONS(1631), + [anon_sym_e_GT_PIPE] = ACTIONS(1631), + [anon_sym_o_GT_PIPE] = ACTIONS(1631), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1631), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1631), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1631), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1631), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_GT2] = ACTIONS(1633), + [anon_sym_DASH2] = ACTIONS(1633), + [anon_sym_STAR2] = ACTIONS(1633), + [anon_sym_and2] = ACTIONS(1631), + [anon_sym_xor2] = ACTIONS(1631), + [anon_sym_or2] = ACTIONS(1631), + [anon_sym_not_DASHin2] = ACTIONS(1631), + [anon_sym_has2] = ACTIONS(1631), + [anon_sym_not_DASHhas2] = ACTIONS(1631), + [anon_sym_starts_DASHwith2] = ACTIONS(1631), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1631), + [anon_sym_ends_DASHwith2] = ACTIONS(1631), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1631), + [anon_sym_EQ_EQ2] = ACTIONS(1631), + [anon_sym_BANG_EQ2] = ACTIONS(1631), + [anon_sym_LT2] = ACTIONS(1633), + [anon_sym_LT_EQ2] = ACTIONS(1631), + [anon_sym_GT_EQ2] = ACTIONS(1631), + [anon_sym_EQ_TILDE2] = ACTIONS(1631), + [anon_sym_BANG_TILDE2] = ACTIONS(1631), + [anon_sym_like2] = ACTIONS(1631), + [anon_sym_not_DASHlike2] = ACTIONS(1631), + [anon_sym_LPAREN2] = ACTIONS(1673), + [anon_sym_STAR_STAR2] = ACTIONS(1631), + [anon_sym_PLUS_PLUS2] = ACTIONS(1631), + [anon_sym_SLASH2] = ACTIONS(1633), + [anon_sym_mod2] = ACTIONS(1631), + [anon_sym_SLASH_SLASH2] = ACTIONS(1631), + [anon_sym_PLUS2] = ACTIONS(1633), + [anon_sym_bit_DASHshl2] = ACTIONS(1631), + [anon_sym_bit_DASHshr2] = ACTIONS(1631), + [anon_sym_bit_DASHand2] = ACTIONS(1631), + [anon_sym_bit_DASHxor2] = ACTIONS(1631), + [anon_sym_bit_DASHor2] = ACTIONS(1631), + [aux_sym__immediate_decimal_token1] = ACTIONS(1710), + [aux_sym__immediate_decimal_token2] = ACTIONS(1710), + [aux_sym__immediate_decimal_token3] = ACTIONS(1679), + [aux_sym__immediate_decimal_token4] = ACTIONS(1679), + [anon_sym_err_GT] = ACTIONS(1633), + [anon_sym_out_GT] = ACTIONS(1633), + [anon_sym_e_GT] = ACTIONS(1633), + [anon_sym_o_GT] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT] = ACTIONS(1633), + [anon_sym_err_GT_GT] = ACTIONS(1631), + [anon_sym_out_GT_GT] = ACTIONS(1631), + [anon_sym_e_GT_GT] = ACTIONS(1631), + [anon_sym_o_GT_GT] = ACTIONS(1631), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1631), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1631), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1631), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1631), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(455)] = { + [sym_comment] = STATE(455), + [anon_sym_in] = ACTIONS(1728), + [sym__newline] = ACTIONS(1728), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_err_GT_PIPE] = ACTIONS(1728), + [anon_sym_out_GT_PIPE] = ACTIONS(1728), + [anon_sym_e_GT_PIPE] = ACTIONS(1728), + [anon_sym_o_GT_PIPE] = ACTIONS(1728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1728), + [anon_sym_RPAREN] = ACTIONS(1728), + [anon_sym_GT2] = ACTIONS(1730), + [anon_sym_DASH2] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1728), + [anon_sym_RBRACE] = ACTIONS(1728), + [anon_sym_STAR2] = ACTIONS(1730), + [anon_sym_and2] = ACTIONS(1728), + [anon_sym_xor2] = ACTIONS(1728), + [anon_sym_or2] = ACTIONS(1728), + [anon_sym_not_DASHin2] = ACTIONS(1728), + [anon_sym_has2] = ACTIONS(1728), + [anon_sym_not_DASHhas2] = ACTIONS(1728), + [anon_sym_starts_DASHwith2] = ACTIONS(1728), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1728), + [anon_sym_ends_DASHwith2] = ACTIONS(1728), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1728), + [anon_sym_EQ_EQ2] = ACTIONS(1728), + [anon_sym_BANG_EQ2] = ACTIONS(1728), + [anon_sym_LT2] = ACTIONS(1730), + [anon_sym_LT_EQ2] = ACTIONS(1728), + [anon_sym_GT_EQ2] = ACTIONS(1728), + [anon_sym_EQ_TILDE2] = ACTIONS(1728), + [anon_sym_BANG_TILDE2] = ACTIONS(1728), + [anon_sym_like2] = ACTIONS(1728), + [anon_sym_not_DASHlike2] = ACTIONS(1728), + [anon_sym_LPAREN2] = ACTIONS(1728), + [anon_sym_STAR_STAR2] = ACTIONS(1728), + [anon_sym_PLUS_PLUS2] = ACTIONS(1728), + [anon_sym_SLASH2] = ACTIONS(1730), + [anon_sym_mod2] = ACTIONS(1728), + [anon_sym_SLASH_SLASH2] = ACTIONS(1728), + [anon_sym_PLUS2] = ACTIONS(1730), + [anon_sym_bit_DASHshl2] = ACTIONS(1728), + [anon_sym_bit_DASHshr2] = ACTIONS(1728), + [anon_sym_bit_DASHand2] = ACTIONS(1728), + [anon_sym_bit_DASHxor2] = ACTIONS(1728), + [anon_sym_bit_DASHor2] = ACTIONS(1728), + [anon_sym_DOT_DOT2] = ACTIONS(1730), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1728), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1728), + [aux_sym__immediate_decimal_token5] = ACTIONS(1734), + [anon_sym_err_GT] = ACTIONS(1730), + [anon_sym_out_GT] = ACTIONS(1730), + [anon_sym_e_GT] = ACTIONS(1730), + [anon_sym_o_GT] = ACTIONS(1730), + [anon_sym_err_PLUSout_GT] = ACTIONS(1730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1730), + [anon_sym_o_PLUSe_GT] = ACTIONS(1730), + [anon_sym_e_PLUSo_GT] = ACTIONS(1730), + [anon_sym_err_GT_GT] = ACTIONS(1728), + [anon_sym_out_GT_GT] = ACTIONS(1728), + [anon_sym_e_GT_GT] = ACTIONS(1728), + [anon_sym_o_GT_GT] = ACTIONS(1728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1728), + [sym__unquoted_pattern] = ACTIONS(1730), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(456)] = { + [sym_cmd_identifier] = STATE(4341), + [sym__match_pattern_record_body] = STATE(5234), + [sym_expr_parenthesized] = STATE(5062), + [sym__spread_parenthesized] = STATE(4693), + [sym__spread_variable] = STATE(4695), + [sym_val_variable] = STATE(4140), + [sym_val_number] = STATE(5062), + [sym__val_number_decimal] = STATE(1952), + [sym__val_number] = STATE(676), + [sym_val_string] = STATE(5062), + [sym__raw_str] = STATE(2243), + [sym__str_double_quotes] = STATE(2243), + [sym__str_single_quotes] = STATE(2243), + [sym__str_back_ticks] = STATE(2243), + [sym_val_interpolated] = STATE(5062), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym__spread_record] = STATE(4693), + [sym_record_entry] = STATE(4492), + [sym__record_key] = STATE(5228), + [sym_comment] = STATE(456), + [aux_sym__types_body_repeat1] = STATE(549), + [aux_sym__match_pattern_record_body_repeat1] = STATE(761), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -83290,9 +83204,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1770), [sym__newline] = ACTIONS(1772), [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_DOLLAR] = ACTIONS(1776), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1808), + [anon_sym_RBRACE] = ACTIONS(1778), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), @@ -83312,30 +83226,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(461)] = { - [sym_cmd_identifier] = STATE(4167), - [sym_expr_parenthesized] = STATE(5186), - [sym__spread_parenthesized] = STATE(4688), - [sym__spread_variable] = STATE(4697), - [sym_val_variable] = STATE(5186), - [sym_val_number] = STATE(5186), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(5186), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(5186), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4688), - [sym_record_body] = STATE(5199), - [sym_record_entry] = STATE(4526), - [sym__record_key] = STATE(4982), - [sym_comment] = STATE(461), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_record_body_repeat1] = STATE(826), + [STATE(457)] = { + [sym_cmd_identifier] = STATE(4341), + [sym_expr_parenthesized] = STATE(5062), + [sym__spread_parenthesized] = STATE(4693), + [sym__spread_variable] = STATE(4695), + [sym_val_variable] = STATE(5062), + [sym_val_number] = STATE(5062), + [sym__val_number_decimal] = STATE(1952), + [sym__val_number] = STATE(676), + [sym_val_string] = STATE(5062), + [sym__raw_str] = STATE(2243), + [sym__str_double_quotes] = STATE(2243), + [sym__str_single_quotes] = STATE(2243), + [sym__str_back_ticks] = STATE(2243), + [sym_val_interpolated] = STATE(5062), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym__spread_record] = STATE(4693), + [sym_record_body] = STATE(5087), + [sym_record_entry] = STATE(4520), + [sym__record_key] = STATE(5228), + [sym_comment] = STATE(457), + [aux_sym__types_body_repeat1] = STATE(615), + [aux_sym_record_body_repeat1] = STATE(823), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -83366,7 +83280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1774), [anon_sym_DOLLAR] = ACTIONS(1794), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1796), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), @@ -83386,218 +83300,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(462)] = { - [sym_comment] = STATE(462), - [anon_sym_in] = ACTIONS(851), - [sym__newline] = ACTIONS(851), - [anon_sym_SEMI] = ACTIONS(851), - [anon_sym_PIPE] = ACTIONS(851), - [anon_sym_err_GT_PIPE] = ACTIONS(851), - [anon_sym_out_GT_PIPE] = ACTIONS(851), - [anon_sym_e_GT_PIPE] = ACTIONS(851), - [anon_sym_o_GT_PIPE] = ACTIONS(851), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(851), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(851), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(851), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(851), - [anon_sym_RPAREN] = ACTIONS(851), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(851), - [anon_sym_RBRACE] = ACTIONS(851), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(851), - [anon_sym_xor2] = ACTIONS(851), - [anon_sym_or2] = ACTIONS(851), - [anon_sym_not_DASHin2] = ACTIONS(851), - [anon_sym_has2] = ACTIONS(851), - [anon_sym_not_DASHhas2] = ACTIONS(851), - [anon_sym_starts_DASHwith2] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(851), - [anon_sym_ends_DASHwith2] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(851), - [anon_sym_EQ_EQ2] = ACTIONS(851), - [anon_sym_BANG_EQ2] = ACTIONS(851), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(851), - [anon_sym_GT_EQ2] = ACTIONS(851), - [anon_sym_EQ_TILDE2] = ACTIONS(851), - [anon_sym_BANG_TILDE2] = ACTIONS(851), - [anon_sym_like2] = ACTIONS(851), - [anon_sym_not_DASHlike2] = ACTIONS(851), - [anon_sym_LPAREN2] = ACTIONS(851), - [anon_sym_STAR_STAR2] = ACTIONS(851), - [anon_sym_PLUS_PLUS2] = ACTIONS(851), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(851), - [anon_sym_SLASH_SLASH2] = ACTIONS(851), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(851), - [anon_sym_bit_DASHshr2] = ACTIONS(851), - [anon_sym_bit_DASHand2] = ACTIONS(851), - [anon_sym_bit_DASHxor2] = ACTIONS(851), - [anon_sym_bit_DASHor2] = ACTIONS(851), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(851), - [anon_sym_out_GT_GT] = ACTIONS(851), - [anon_sym_e_GT_GT] = ACTIONS(851), - [anon_sym_o_GT_GT] = ACTIONS(851), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(851), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(851), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(851), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(851), - [sym__unquoted_pattern] = ACTIONS(849), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(463)] = { - [sym__expr_parenthesized_immediate] = STATE(4753), - [sym_comment] = STATE(463), - [ts_builtin_sym_end] = ACTIONS(968), - [anon_sym_in] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(968), - [anon_sym_xor2] = ACTIONS(968), - [anon_sym_or2] = ACTIONS(968), - [anon_sym_not_DASHin2] = ACTIONS(968), - [anon_sym_has2] = ACTIONS(968), - [anon_sym_not_DASHhas2] = ACTIONS(968), - [anon_sym_starts_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(968), - [anon_sym_ends_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(968), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(968), - [anon_sym_like2] = ACTIONS(968), - [anon_sym_not_DASHlike2] = ACTIONS(968), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(968), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(968), - [anon_sym_bit_DASHshr2] = ACTIONS(968), - [anon_sym_bit_DASHand2] = ACTIONS(968), - [anon_sym_bit_DASHxor2] = ACTIONS(968), - [anon_sym_bit_DASHor2] = ACTIONS(968), - [anon_sym_DOT_DOT2] = ACTIONS(1812), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1814), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1814), - [sym_filesize_unit] = ACTIONS(1816), - [sym_duration_unit] = ACTIONS(1818), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [sym__unquoted_pattern] = ACTIONS(1820), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(464)] = { - [sym_expr_parenthesized] = STATE(3911), - [sym__spread_parenthesized] = STATE(4721), - [sym_val_range] = STATE(4776), - [sym__val_range] = STATE(4523), - [sym__value] = STATE(4776), - [sym_val_nothing] = STATE(4452), - [sym_val_bool] = STATE(4309), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4452), - [sym_val_number] = STATE(4452), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4130), - [sym_val_duration] = STATE(4452), - [sym_val_filesize] = STATE(4452), - [sym_val_binary] = STATE(4452), - [sym_val_string] = STATE(4452), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4452), - [sym__inter_single_quotes] = STATE(4504), - [sym__inter_double_quotes] = STATE(4369), - [sym_val_list] = STATE(4452), - [sym__spread_list] = STATE(4721), - [sym_val_entry] = STATE(4557), - [sym_val_record] = STATE(4452), - [sym_val_table] = STATE(4452), - [sym_val_closure] = STATE(4452), - [sym__unquoted_in_list] = STATE(4312), - [sym__unquoted_in_list_with_expr] = STATE(4776), - [sym__unquoted_anonymous_prefix] = STATE(4523), - [sym_comment] = STATE(464), - [aux_sym__types_body_repeat1] = STATE(2117), - [aux_sym_list_body_repeat1] = STATE(630), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [sym__newline] = ACTIONS(1564), + [STATE(458)] = { + [sym_expr_parenthesized] = STATE(4058), + [sym__spread_parenthesized] = STATE(4700), + [sym_val_range] = STATE(4730), + [sym__val_range] = STATE(4544), + [sym__value] = STATE(4730), + [sym_val_nothing] = STATE(4604), + [sym_val_bool] = STATE(4358), + [sym__spread_variable] = STATE(4795), + [sym_val_variable] = STATE(3879), + [sym_val_cellpath] = STATE(4604), + [sym_val_number] = STATE(4604), + [sym__val_number_decimal] = STATE(3485), + [sym__val_number] = STATE(4361), + [sym_val_duration] = STATE(4604), + [sym_val_filesize] = STATE(4604), + [sym_val_binary] = STATE(4604), + [sym_val_string] = STATE(4604), + [sym__raw_str] = STATE(3638), + [sym__str_double_quotes] = STATE(3638), + [sym__str_single_quotes] = STATE(3638), + [sym__str_back_ticks] = STATE(3638), + [sym_val_interpolated] = STATE(4604), + [sym__inter_single_quotes] = STATE(4595), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4604), + [sym__spread_list] = STATE(4700), + [sym_val_entry] = STATE(4455), + [sym_val_record] = STATE(4604), + [sym_val_table] = STATE(4604), + [sym_val_closure] = STATE(4604), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4730), + [sym__unquoted_anonymous_prefix] = STATE(4544), + [sym_comment] = STATE(458), + [aux_sym__types_body_repeat1] = STATE(2113), + [aux_sym_list_body_repeat1] = STATE(667), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), + [sym__newline] = ACTIONS(1556), [anon_sym_LBRACK] = ACTIONS(1578), [anon_sym_LPAREN] = ACTIONS(1386), [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), [aux_sym__val_number_token1] = ACTIONS(1404), [aux_sym__val_number_token2] = ACTIONS(1404), [aux_sym__val_number_token3] = ACTIONS(1404), [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), + [sym_val_date] = ACTIONS(1488), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -83608,252 +83374,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(465)] = { - [sym_comment] = STATE(465), - [anon_sym_if] = ACTIONS(1641), - [anon_sym_in] = ACTIONS(1641), - [sym__newline] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_err_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_GT_PIPE] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), - [anon_sym_RPAREN] = ACTIONS(1641), - [anon_sym_GT2] = ACTIONS(1643), - [anon_sym_DASH2] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1641), - [anon_sym_RBRACE] = ACTIONS(1641), - [anon_sym_EQ_GT] = ACTIONS(1641), - [anon_sym_STAR2] = ACTIONS(1643), - [anon_sym_and2] = ACTIONS(1641), - [anon_sym_xor2] = ACTIONS(1641), - [anon_sym_or2] = ACTIONS(1641), - [anon_sym_not_DASHin2] = ACTIONS(1641), - [anon_sym_has2] = ACTIONS(1641), - [anon_sym_not_DASHhas2] = ACTIONS(1641), - [anon_sym_starts_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1641), - [anon_sym_ends_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1641), - [anon_sym_EQ_EQ2] = ACTIONS(1641), - [anon_sym_BANG_EQ2] = ACTIONS(1641), - [anon_sym_LT2] = ACTIONS(1643), - [anon_sym_LT_EQ2] = ACTIONS(1641), - [anon_sym_GT_EQ2] = ACTIONS(1641), - [anon_sym_EQ_TILDE2] = ACTIONS(1641), - [anon_sym_BANG_TILDE2] = ACTIONS(1641), - [anon_sym_like2] = ACTIONS(1641), - [anon_sym_not_DASHlike2] = ACTIONS(1641), - [anon_sym_STAR_STAR2] = ACTIONS(1641), - [anon_sym_PLUS_PLUS2] = ACTIONS(1641), - [anon_sym_SLASH2] = ACTIONS(1643), - [anon_sym_mod2] = ACTIONS(1641), - [anon_sym_SLASH_SLASH2] = ACTIONS(1641), - [anon_sym_PLUS2] = ACTIONS(1643), - [anon_sym_bit_DASHshl2] = ACTIONS(1641), - [anon_sym_bit_DASHshr2] = ACTIONS(1641), - [anon_sym_bit_DASHand2] = ACTIONS(1641), - [anon_sym_bit_DASHxor2] = ACTIONS(1641), - [anon_sym_bit_DASHor2] = ACTIONS(1641), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), - [anon_sym_COLON2] = ACTIONS(1641), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1641), - [anon_sym_out_GT_GT] = ACTIONS(1641), - [anon_sym_e_GT_GT] = ACTIONS(1641), - [anon_sym_o_GT_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(466)] = { - [sym_comment] = STATE(466), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [sym__newline] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1822), - [anon_sym_PIPE] = ACTIONS(1822), - [anon_sym_err_GT_PIPE] = ACTIONS(1822), - [anon_sym_out_GT_PIPE] = ACTIONS(1822), - [anon_sym_e_GT_PIPE] = ACTIONS(1822), - [anon_sym_o_GT_PIPE] = ACTIONS(1822), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1822), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1822), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1822), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1822), - [anon_sym_RPAREN] = ACTIONS(1822), - [anon_sym_GT2] = ACTIONS(1824), - [anon_sym_DASH2] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1822), - [anon_sym_RBRACE] = ACTIONS(1822), - [anon_sym_EQ_GT] = ACTIONS(1822), - [anon_sym_STAR2] = ACTIONS(1824), - [anon_sym_and2] = ACTIONS(1822), - [anon_sym_xor2] = ACTIONS(1822), - [anon_sym_or2] = ACTIONS(1822), - [anon_sym_not_DASHin2] = ACTIONS(1822), - [anon_sym_has2] = ACTIONS(1822), - [anon_sym_not_DASHhas2] = ACTIONS(1822), - [anon_sym_starts_DASHwith2] = ACTIONS(1822), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1822), - [anon_sym_ends_DASHwith2] = ACTIONS(1822), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1822), - [anon_sym_EQ_EQ2] = ACTIONS(1822), - [anon_sym_BANG_EQ2] = ACTIONS(1822), - [anon_sym_LT2] = ACTIONS(1824), - [anon_sym_LT_EQ2] = ACTIONS(1822), - [anon_sym_GT_EQ2] = ACTIONS(1822), - [anon_sym_EQ_TILDE2] = ACTIONS(1822), - [anon_sym_BANG_TILDE2] = ACTIONS(1822), - [anon_sym_like2] = ACTIONS(1822), - [anon_sym_not_DASHlike2] = ACTIONS(1822), - [anon_sym_STAR_STAR2] = ACTIONS(1822), - [anon_sym_PLUS_PLUS2] = ACTIONS(1822), - [anon_sym_SLASH2] = ACTIONS(1824), - [anon_sym_mod2] = ACTIONS(1822), - [anon_sym_SLASH_SLASH2] = ACTIONS(1822), - [anon_sym_PLUS2] = ACTIONS(1824), - [anon_sym_bit_DASHshl2] = ACTIONS(1822), - [anon_sym_bit_DASHshr2] = ACTIONS(1822), - [anon_sym_bit_DASHand2] = ACTIONS(1822), - [anon_sym_bit_DASHxor2] = ACTIONS(1822), - [anon_sym_bit_DASHor2] = ACTIONS(1822), - [anon_sym_DOT_DOT2] = ACTIONS(1824), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), - [anon_sym_COLON2] = ACTIONS(1822), - [anon_sym_err_GT] = ACTIONS(1824), - [anon_sym_out_GT] = ACTIONS(1824), - [anon_sym_e_GT] = ACTIONS(1824), - [anon_sym_o_GT] = ACTIONS(1824), - [anon_sym_err_PLUSout_GT] = ACTIONS(1824), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1824), - [anon_sym_o_PLUSe_GT] = ACTIONS(1824), - [anon_sym_e_PLUSo_GT] = ACTIONS(1824), - [anon_sym_err_GT_GT] = ACTIONS(1822), - [anon_sym_out_GT_GT] = ACTIONS(1822), - [anon_sym_e_GT_GT] = ACTIONS(1822), - [anon_sym_o_GT_GT] = ACTIONS(1822), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1822), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1822), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1822), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(467)] = { - [sym_comment] = STATE(467), - [anon_sym_in] = ACTIONS(773), - [sym__newline] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_err_GT_PIPE] = ACTIONS(773), - [anon_sym_out_GT_PIPE] = ACTIONS(773), - [anon_sym_e_GT_PIPE] = ACTIONS(773), - [anon_sym_o_GT_PIPE] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(773), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(773), - [anon_sym_RBRACE] = ACTIONS(773), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(773), - [anon_sym_xor2] = ACTIONS(773), - [anon_sym_or2] = ACTIONS(773), - [anon_sym_not_DASHin2] = ACTIONS(773), - [anon_sym_has2] = ACTIONS(773), - [anon_sym_not_DASHhas2] = ACTIONS(773), - [anon_sym_starts_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(773), - [anon_sym_ends_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(773), - [anon_sym_EQ_EQ2] = ACTIONS(773), - [anon_sym_BANG_EQ2] = ACTIONS(773), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(773), - [anon_sym_GT_EQ2] = ACTIONS(773), - [anon_sym_EQ_TILDE2] = ACTIONS(773), - [anon_sym_BANG_TILDE2] = ACTIONS(773), - [anon_sym_like2] = ACTIONS(773), - [anon_sym_not_DASHlike2] = ACTIONS(773), - [anon_sym_LPAREN2] = ACTIONS(773), - [anon_sym_STAR_STAR2] = ACTIONS(773), - [anon_sym_PLUS_PLUS2] = ACTIONS(773), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(773), - [anon_sym_SLASH_SLASH2] = ACTIONS(773), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(773), - [anon_sym_bit_DASHshr2] = ACTIONS(773), - [anon_sym_bit_DASHand2] = ACTIONS(773), - [anon_sym_bit_DASHxor2] = ACTIONS(773), - [anon_sym_bit_DASHor2] = ACTIONS(773), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(773), - [anon_sym_out_GT_GT] = ACTIONS(773), - [anon_sym_e_GT_GT] = ACTIONS(773), - [anon_sym_o_GT_GT] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(773), - [sym__unquoted_pattern] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(468)] = { - [sym_cmd_identifier] = STATE(4167), - [sym_expr_parenthesized] = STATE(5186), - [sym__spread_parenthesized] = STATE(4688), - [sym__spread_variable] = STATE(4697), - [sym_val_variable] = STATE(5186), - [sym_val_number] = STATE(5186), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(5186), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(5186), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4688), - [sym_record_body] = STATE(5051), - [sym_record_entry] = STATE(4526), - [sym__record_key] = STATE(4982), - [sym_comment] = STATE(468), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_record_body_repeat1] = STATE(826), + [STATE(459)] = { + [sym_cmd_identifier] = STATE(4341), + [sym_expr_parenthesized] = STATE(5062), + [sym__spread_parenthesized] = STATE(4693), + [sym__spread_variable] = STATE(4695), + [sym_val_variable] = STATE(5062), + [sym_val_number] = STATE(5062), + [sym__val_number_decimal] = STATE(1952), + [sym__val_number] = STATE(676), + [sym_val_string] = STATE(5062), + [sym__raw_str] = STATE(2243), + [sym__str_double_quotes] = STATE(2243), + [sym__str_single_quotes] = STATE(2243), + [sym__str_back_ticks] = STATE(2243), + [sym_val_interpolated] = STATE(5062), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym__spread_record] = STATE(4693), + [sym_record_body] = STATE(4829), + [sym_record_entry] = STATE(4520), + [sym__record_key] = STATE(5228), + [sym_comment] = STATE(459), + [aux_sym__types_body_repeat1] = STATE(615), + [aux_sym_record_body_repeat1] = STATE(823), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -83884,7 +83428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1774), [anon_sym_DOLLAR] = ACTIONS(1794), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1826), + [anon_sym_RBRACE] = ACTIONS(1798), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), @@ -83904,8 +83448,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(469)] = { - [sym_comment] = STATE(469), + [STATE(460)] = { + [sym_comment] = STATE(460), + [anon_sym_if] = ACTIONS(1661), + [anon_sym_in] = 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(1663), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_RBRACE] = ACTIONS(1661), + [anon_sym_EQ_GT] = ACTIONS(1661), + [anon_sym_STAR2] = ACTIONS(1663), + [anon_sym_and2] = ACTIONS(1661), + [anon_sym_xor2] = ACTIONS(1661), + [anon_sym_or2] = ACTIONS(1661), + [anon_sym_not_DASHin2] = ACTIONS(1661), + [anon_sym_has2] = ACTIONS(1661), + [anon_sym_not_DASHhas2] = ACTIONS(1661), + [anon_sym_starts_DASHwith2] = ACTIONS(1661), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1661), + [anon_sym_ends_DASHwith2] = ACTIONS(1661), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1661), + [anon_sym_EQ_EQ2] = ACTIONS(1661), + [anon_sym_BANG_EQ2] = ACTIONS(1661), + [anon_sym_LT2] = ACTIONS(1663), + [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_like2] = ACTIONS(1661), + [anon_sym_not_DASHlike2] = ACTIONS(1661), + [anon_sym_STAR_STAR2] = ACTIONS(1661), + [anon_sym_PLUS_PLUS2] = ACTIONS(1661), + [anon_sym_SLASH2] = ACTIONS(1663), + [anon_sym_mod2] = ACTIONS(1661), + [anon_sym_SLASH_SLASH2] = ACTIONS(1661), + [anon_sym_PLUS2] = ACTIONS(1663), + [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(1663), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), + [anon_sym_COLON2] = ACTIONS(1661), + [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(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), + }, + [STATE(461)] = { + [sym_comment] = STATE(461), [ts_builtin_sym_end] = ACTIONS(741), [anon_sym_in] = ACTIONS(741), [sym__newline] = ACTIONS(741), @@ -83956,7 +83574,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1712), + [aux_sym__immediate_decimal_token5] = ACTIONS(1752), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -83978,156 +83596,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(470)] = { - [sym_comment] = STATE(470), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT_DOT2] = ACTIONS(1738), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1736), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1736), - [aux_sym__immediate_decimal_token5] = ACTIONS(1742), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(471)] = { - [sym_comment] = STATE(471), - [anon_sym_EQ] = ACTIONS(1828), - [anon_sym_PLUS_EQ] = ACTIONS(1830), - [anon_sym_DASH_EQ] = ACTIONS(1830), - [anon_sym_STAR_EQ] = ACTIONS(1830), - [anon_sym_SLASH_EQ] = ACTIONS(1830), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1830), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [STATE(462)] = { + [sym_comment] = STATE(462), + [anon_sym_if] = ACTIONS(1800), + [anon_sym_in] = ACTIONS(1800), + [sym__newline] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_PIPE] = ACTIONS(1800), + [anon_sym_err_GT_PIPE] = ACTIONS(1800), + [anon_sym_out_GT_PIPE] = ACTIONS(1800), + [anon_sym_e_GT_PIPE] = ACTIONS(1800), + [anon_sym_o_GT_PIPE] = ACTIONS(1800), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1800), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1800), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1800), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1800), + [anon_sym_RPAREN] = ACTIONS(1800), + [anon_sym_GT2] = ACTIONS(1802), + [anon_sym_DASH2] = ACTIONS(1800), + [anon_sym_LBRACE] = ACTIONS(1800), + [anon_sym_RBRACE] = ACTIONS(1800), + [anon_sym_EQ_GT] = ACTIONS(1800), + [anon_sym_STAR2] = ACTIONS(1802), + [anon_sym_and2] = ACTIONS(1800), + [anon_sym_xor2] = ACTIONS(1800), + [anon_sym_or2] = ACTIONS(1800), + [anon_sym_not_DASHin2] = ACTIONS(1800), + [anon_sym_has2] = ACTIONS(1800), + [anon_sym_not_DASHhas2] = ACTIONS(1800), + [anon_sym_starts_DASHwith2] = ACTIONS(1800), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1800), + [anon_sym_ends_DASHwith2] = ACTIONS(1800), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1800), + [anon_sym_EQ_EQ2] = ACTIONS(1800), + [anon_sym_BANG_EQ2] = ACTIONS(1800), + [anon_sym_LT2] = ACTIONS(1802), + [anon_sym_LT_EQ2] = ACTIONS(1800), + [anon_sym_GT_EQ2] = ACTIONS(1800), + [anon_sym_EQ_TILDE2] = ACTIONS(1800), + [anon_sym_BANG_TILDE2] = ACTIONS(1800), + [anon_sym_like2] = ACTIONS(1800), + [anon_sym_not_DASHlike2] = ACTIONS(1800), + [anon_sym_STAR_STAR2] = ACTIONS(1800), + [anon_sym_PLUS_PLUS2] = ACTIONS(1800), + [anon_sym_SLASH2] = ACTIONS(1802), + [anon_sym_mod2] = ACTIONS(1800), + [anon_sym_SLASH_SLASH2] = ACTIONS(1800), + [anon_sym_PLUS2] = ACTIONS(1802), + [anon_sym_bit_DASHshl2] = ACTIONS(1800), + [anon_sym_bit_DASHshr2] = ACTIONS(1800), + [anon_sym_bit_DASHand2] = ACTIONS(1800), + [anon_sym_bit_DASHxor2] = ACTIONS(1800), + [anon_sym_bit_DASHor2] = ACTIONS(1800), + [anon_sym_DOT_DOT2] = ACTIONS(1802), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1800), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1800), + [anon_sym_COLON2] = ACTIONS(1800), + [anon_sym_err_GT] = ACTIONS(1802), + [anon_sym_out_GT] = ACTIONS(1802), + [anon_sym_e_GT] = ACTIONS(1802), + [anon_sym_o_GT] = ACTIONS(1802), + [anon_sym_err_PLUSout_GT] = ACTIONS(1802), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1802), + [anon_sym_o_PLUSe_GT] = ACTIONS(1802), + [anon_sym_e_PLUSo_GT] = ACTIONS(1802), + [anon_sym_err_GT_GT] = ACTIONS(1800), + [anon_sym_out_GT_GT] = ACTIONS(1800), + [anon_sym_e_GT_GT] = ACTIONS(1800), + [anon_sym_o_GT_GT] = ACTIONS(1800), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1800), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1800), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1800), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1800), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(472)] = { - [sym_comment] = STATE(472), + [STATE(463)] = { + [sym_comment] = STATE(463), [ts_builtin_sym_end] = ACTIONS(773), [anon_sym_in] = ACTIONS(773), [sym__newline] = ACTIONS(773), @@ -84178,7 +83722,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(771), [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1832), + [aux_sym__immediate_decimal_token5] = ACTIONS(1804), [sym_filesize_unit] = ACTIONS(771), [sym_duration_unit] = ACTIONS(773), [anon_sym_err_GT] = ACTIONS(771), @@ -84200,8 +83744,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(473)] = { - [sym_comment] = STATE(473), + [STATE(464)] = { + [sym_comment] = STATE(464), + [anon_sym_in] = ACTIONS(1806), + [sym__newline] = ACTIONS(1806), + [anon_sym_SEMI] = ACTIONS(1806), + [anon_sym_PIPE] = ACTIONS(1806), + [anon_sym_err_GT_PIPE] = ACTIONS(1806), + [anon_sym_out_GT_PIPE] = ACTIONS(1806), + [anon_sym_e_GT_PIPE] = ACTIONS(1806), + [anon_sym_o_GT_PIPE] = ACTIONS(1806), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1806), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1806), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1806), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1806), + [anon_sym_RPAREN] = ACTIONS(1806), + [anon_sym_GT2] = ACTIONS(1808), + [anon_sym_DASH2] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(1806), + [anon_sym_RBRACE] = ACTIONS(1806), + [anon_sym_STAR2] = ACTIONS(1808), + [anon_sym_and2] = ACTIONS(1806), + [anon_sym_xor2] = ACTIONS(1806), + [anon_sym_or2] = ACTIONS(1806), + [anon_sym_not_DASHin2] = ACTIONS(1806), + [anon_sym_has2] = ACTIONS(1806), + [anon_sym_not_DASHhas2] = ACTIONS(1806), + [anon_sym_starts_DASHwith2] = ACTIONS(1806), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1806), + [anon_sym_ends_DASHwith2] = ACTIONS(1806), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1806), + [anon_sym_EQ_EQ2] = ACTIONS(1806), + [anon_sym_BANG_EQ2] = ACTIONS(1806), + [anon_sym_LT2] = ACTIONS(1808), + [anon_sym_LT_EQ2] = ACTIONS(1806), + [anon_sym_GT_EQ2] = ACTIONS(1806), + [anon_sym_EQ_TILDE2] = ACTIONS(1806), + [anon_sym_BANG_TILDE2] = ACTIONS(1806), + [anon_sym_like2] = ACTIONS(1806), + [anon_sym_not_DASHlike2] = ACTIONS(1806), + [anon_sym_LPAREN2] = ACTIONS(1806), + [anon_sym_STAR_STAR2] = ACTIONS(1806), + [anon_sym_PLUS_PLUS2] = ACTIONS(1806), + [anon_sym_SLASH2] = ACTIONS(1808), + [anon_sym_mod2] = ACTIONS(1806), + [anon_sym_SLASH_SLASH2] = ACTIONS(1806), + [anon_sym_PLUS2] = ACTIONS(1808), + [anon_sym_bit_DASHshl2] = ACTIONS(1806), + [anon_sym_bit_DASHshr2] = ACTIONS(1806), + [anon_sym_bit_DASHand2] = ACTIONS(1806), + [anon_sym_bit_DASHxor2] = ACTIONS(1806), + [anon_sym_bit_DASHor2] = ACTIONS(1806), + [anon_sym_DOT_DOT2] = ACTIONS(1808), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1806), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1806), + [aux_sym__immediate_decimal_token5] = ACTIONS(1810), + [anon_sym_err_GT] = ACTIONS(1808), + [anon_sym_out_GT] = ACTIONS(1808), + [anon_sym_e_GT] = ACTIONS(1808), + [anon_sym_o_GT] = ACTIONS(1808), + [anon_sym_err_PLUSout_GT] = ACTIONS(1808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1808), + [anon_sym_o_PLUSe_GT] = ACTIONS(1808), + [anon_sym_e_PLUSo_GT] = ACTIONS(1808), + [anon_sym_err_GT_GT] = ACTIONS(1806), + [anon_sym_out_GT_GT] = ACTIONS(1806), + [anon_sym_e_GT_GT] = ACTIONS(1806), + [anon_sym_o_GT_GT] = ACTIONS(1806), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1806), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1806), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1806), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1806), + [sym__unquoted_pattern] = ACTIONS(1808), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(465)] = { + [sym_cmd_identifier] = STATE(4341), + [sym__match_pattern_record_body] = STATE(4906), + [sym_expr_parenthesized] = STATE(5062), + [sym__spread_parenthesized] = STATE(4693), + [sym__spread_variable] = STATE(4695), + [sym_val_variable] = STATE(4140), + [sym_val_number] = STATE(5062), + [sym__val_number_decimal] = STATE(1952), + [sym__val_number] = STATE(676), + [sym_val_string] = STATE(5062), + [sym__raw_str] = STATE(2243), + [sym__str_double_quotes] = STATE(2243), + [sym__str_single_quotes] = STATE(2243), + [sym__str_back_ticks] = STATE(2243), + [sym_val_interpolated] = STATE(5062), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym__spread_record] = STATE(4693), + [sym_record_entry] = STATE(4492), + [sym__record_key] = STATE(5228), + [sym_comment] = STATE(465), + [aux_sym__types_body_repeat1] = STATE(549), + [aux_sym__match_pattern_record_body_repeat1] = STATE(761), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_null] = ACTIONS(1768), + [aux_sym_cmd_identifier_token3] = ACTIONS(1770), + [aux_sym_cmd_identifier_token4] = ACTIONS(1770), + [aux_sym_cmd_identifier_token5] = ACTIONS(1770), + [sym__newline] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1776), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_RBRACE] = ACTIONS(1812), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1780), + [aux_sym__val_number_decimal_token2] = ACTIONS(1782), + [aux_sym__val_number_decimal_token3] = ACTIONS(1784), + [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1792), + }, + [STATE(466)] = { + [sym_comment] = STATE(466), + [anon_sym_EQ] = ACTIONS(1814), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_STAR_EQ] = ACTIONS(1816), + [anon_sym_SLASH_EQ] = ACTIONS(1816), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1689), + [sym__newline] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1689), + [anon_sym_err_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_GT_PIPE] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), + [anon_sym_GT2] = ACTIONS(1615), + [anon_sym_DASH2] = ACTIONS(1615), + [anon_sym_STAR2] = ACTIONS(1615), + [anon_sym_and2] = ACTIONS(1689), + [anon_sym_xor2] = ACTIONS(1689), + [anon_sym_or2] = ACTIONS(1689), + [anon_sym_not_DASHin2] = ACTIONS(1689), + [anon_sym_has2] = ACTIONS(1689), + [anon_sym_not_DASHhas2] = ACTIONS(1689), + [anon_sym_starts_DASHwith2] = ACTIONS(1689), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1689), + [anon_sym_ends_DASHwith2] = ACTIONS(1689), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1689), + [anon_sym_EQ_EQ2] = ACTIONS(1689), + [anon_sym_BANG_EQ2] = ACTIONS(1689), + [anon_sym_LT2] = ACTIONS(1615), + [anon_sym_LT_EQ2] = ACTIONS(1689), + [anon_sym_GT_EQ2] = ACTIONS(1689), + [anon_sym_EQ_TILDE2] = ACTIONS(1689), + [anon_sym_BANG_TILDE2] = ACTIONS(1689), + [anon_sym_like2] = ACTIONS(1689), + [anon_sym_not_DASHlike2] = ACTIONS(1689), + [anon_sym_STAR_STAR2] = ACTIONS(1689), + [anon_sym_PLUS_PLUS2] = ACTIONS(1615), + [anon_sym_SLASH2] = ACTIONS(1615), + [anon_sym_mod2] = ACTIONS(1689), + [anon_sym_SLASH_SLASH2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(1615), + [anon_sym_bit_DASHshl2] = ACTIONS(1689), + [anon_sym_bit_DASHshr2] = ACTIONS(1689), + [anon_sym_bit_DASHand2] = ACTIONS(1689), + [anon_sym_bit_DASHxor2] = ACTIONS(1689), + [anon_sym_bit_DASHor2] = ACTIONS(1689), + [anon_sym_DOT_DOT2] = ACTIONS(1619), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), + [anon_sym_err_GT] = ACTIONS(1615), + [anon_sym_out_GT] = ACTIONS(1615), + [anon_sym_e_GT] = ACTIONS(1615), + [anon_sym_o_GT] = ACTIONS(1615), + [anon_sym_err_PLUSout_GT] = ACTIONS(1615), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), + [anon_sym_o_PLUSe_GT] = ACTIONS(1615), + [anon_sym_e_PLUSo_GT] = ACTIONS(1615), + [anon_sym_err_GT_GT] = ACTIONS(1689), + [anon_sym_out_GT_GT] = ACTIONS(1689), + [anon_sym_e_GT_GT] = ACTIONS(1689), + [anon_sym_o_GT_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(467)] = { + [sym_comment] = STATE(467), [anon_sym_in] = ACTIONS(749), [sym__newline] = ACTIONS(749), [anon_sym_SEMI] = ACTIONS(749), @@ -84274,104 +84040,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(474)] = { - [sym_comment] = STATE(474), - [anon_sym_EQ] = ACTIONS(1834), - [anon_sym_PLUS_EQ] = ACTIONS(1836), - [anon_sym_DASH_EQ] = ACTIONS(1836), - [anon_sym_STAR_EQ] = ACTIONS(1836), - [anon_sym_SLASH_EQ] = ACTIONS(1836), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1836), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1619), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1619), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(475)] = { - [sym_cmd_identifier] = STATE(4167), - [sym_expr_parenthesized] = STATE(5186), - [sym__spread_parenthesized] = STATE(4688), - [sym__spread_variable] = STATE(4697), - [sym_val_variable] = STATE(5186), - [sym_val_number] = STATE(5186), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(5186), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(5186), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4688), - [sym_record_body] = STATE(5056), - [sym_record_entry] = STATE(4526), - [sym__record_key] = STATE(4982), - [sym_comment] = STATE(475), - [aux_sym__types_body_repeat1] = STATE(618), - [aux_sym_record_body_repeat1] = STATE(826), + [STATE(468)] = { + [sym_cmd_identifier] = STATE(4341), + [sym__match_pattern_record_body] = STATE(4990), + [sym_expr_parenthesized] = STATE(5062), + [sym__spread_parenthesized] = STATE(4693), + [sym__spread_variable] = STATE(4695), + [sym_val_variable] = STATE(4140), + [sym_val_number] = STATE(5062), + [sym__val_number_decimal] = STATE(1952), + [sym__val_number] = STATE(676), + [sym_val_string] = STATE(5062), + [sym__raw_str] = STATE(2243), + [sym__str_double_quotes] = STATE(2243), + [sym__str_single_quotes] = STATE(2243), + [sym__str_back_ticks] = STATE(2243), + [sym_val_interpolated] = STATE(5062), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym__spread_record] = STATE(4693), + [sym_record_entry] = STATE(4492), + [sym__record_key] = STATE(5228), + [sym_comment] = STATE(468), + [aux_sym__types_body_repeat1] = STATE(549), + [aux_sym__match_pattern_record_body_repeat1] = STATE(761), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -84400,9 +84092,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1770), [sym__newline] = ACTIONS(1772), [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_DOLLAR] = ACTIONS(1776), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1818), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), @@ -84422,9 +84114,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(476)] = { - [sym_comment] = STATE(476), - [ts_builtin_sym_end] = ACTIONS(773), + [STATE(469)] = { + [sym_comment] = STATE(469), [anon_sym_in] = ACTIONS(773), [sym__newline] = ACTIONS(773), [anon_sym_SEMI] = ACTIONS(773), @@ -84437,8 +84128,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(773), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(773), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(773), + [anon_sym_RPAREN] = ACTIONS(773), [anon_sym_GT2] = ACTIONS(771), [anon_sym_DASH2] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(773), [anon_sym_STAR2] = ACTIONS(771), [anon_sym_and2] = ACTIONS(773), [anon_sym_xor2] = ACTIONS(773), @@ -84495,704 +84188,1366 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(771), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(477)] = { - [sym_comment] = STATE(477), - [ts_builtin_sym_end] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [anon_sym_DOT_DOT2] = ACTIONS(1728), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1726), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1726), - [aux_sym__immediate_decimal_token1] = ACTIONS(1840), - [aux_sym__immediate_decimal_token5] = ACTIONS(1842), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(478)] = { - [sym_cell_path] = STATE(935), - [sym_path] = STATE(783), - [sym_comment] = STATE(478), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1641), - [anon_sym_in] = ACTIONS(1641), - [sym__newline] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_err_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_GT_PIPE] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), - [anon_sym_GT2] = ACTIONS(1643), - [anon_sym_DASH2] = ACTIONS(1641), - [anon_sym_STAR2] = ACTIONS(1643), - [anon_sym_and2] = ACTIONS(1641), - [anon_sym_xor2] = ACTIONS(1641), - [anon_sym_or2] = ACTIONS(1641), - [anon_sym_not_DASHin2] = ACTIONS(1641), - [anon_sym_has2] = ACTIONS(1641), - [anon_sym_not_DASHhas2] = ACTIONS(1641), - [anon_sym_starts_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1641), - [anon_sym_ends_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1641), - [anon_sym_EQ_EQ2] = ACTIONS(1641), - [anon_sym_BANG_EQ2] = ACTIONS(1641), - [anon_sym_LT2] = ACTIONS(1643), - [anon_sym_LT_EQ2] = ACTIONS(1641), - [anon_sym_GT_EQ2] = ACTIONS(1641), - [anon_sym_EQ_TILDE2] = ACTIONS(1641), - [anon_sym_BANG_TILDE2] = ACTIONS(1641), - [anon_sym_like2] = ACTIONS(1641), - [anon_sym_not_DASHlike2] = ACTIONS(1641), - [anon_sym_STAR_STAR2] = ACTIONS(1641), - [anon_sym_PLUS_PLUS2] = ACTIONS(1641), - [anon_sym_SLASH2] = ACTIONS(1643), - [anon_sym_mod2] = ACTIONS(1641), - [anon_sym_SLASH_SLASH2] = ACTIONS(1641), - [anon_sym_PLUS2] = ACTIONS(1643), - [anon_sym_bit_DASHshl2] = ACTIONS(1641), - [anon_sym_bit_DASHshr2] = ACTIONS(1641), - [anon_sym_bit_DASHand2] = ACTIONS(1641), - [anon_sym_bit_DASHxor2] = ACTIONS(1641), - [anon_sym_bit_DASHor2] = ACTIONS(1641), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), - [anon_sym_DOT2] = ACTIONS(1844), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1641), - [anon_sym_out_GT_GT] = ACTIONS(1641), - [anon_sym_e_GT_GT] = ACTIONS(1641), - [anon_sym_o_GT_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(479)] = { - [sym_comment] = STATE(479), - [ts_builtin_sym_end] = ACTIONS(1468), - [anon_sym_in] = ACTIONS(1468), - [sym__newline] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_err_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_GT_PIPE] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1468), - [anon_sym_GT2] = ACTIONS(1466), - [anon_sym_DASH2] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_STAR2] = ACTIONS(1466), - [anon_sym_and2] = ACTIONS(1468), - [anon_sym_xor2] = ACTIONS(1468), - [anon_sym_or2] = ACTIONS(1468), - [anon_sym_not_DASHin2] = ACTIONS(1468), - [anon_sym_has2] = ACTIONS(1468), - [anon_sym_not_DASHhas2] = ACTIONS(1468), - [anon_sym_starts_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1468), - [anon_sym_ends_DASHwith2] = ACTIONS(1468), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1468), - [anon_sym_EQ_EQ2] = ACTIONS(1468), - [anon_sym_BANG_EQ2] = ACTIONS(1468), - [anon_sym_LT2] = ACTIONS(1466), - [anon_sym_LT_EQ2] = ACTIONS(1468), - [anon_sym_GT_EQ2] = ACTIONS(1468), - [anon_sym_EQ_TILDE2] = ACTIONS(1468), - [anon_sym_BANG_TILDE2] = ACTIONS(1468), - [anon_sym_like2] = ACTIONS(1468), - [anon_sym_not_DASHlike2] = ACTIONS(1468), - [anon_sym_STAR_STAR2] = ACTIONS(1468), - [anon_sym_PLUS_PLUS2] = ACTIONS(1468), - [anon_sym_SLASH2] = ACTIONS(1466), - [anon_sym_mod2] = ACTIONS(1468), - [anon_sym_SLASH_SLASH2] = ACTIONS(1468), - [anon_sym_PLUS2] = ACTIONS(1466), - [anon_sym_bit_DASHshl2] = ACTIONS(1468), - [anon_sym_bit_DASHshr2] = ACTIONS(1468), - [anon_sym_bit_DASHand2] = ACTIONS(1468), - [anon_sym_bit_DASHxor2] = ACTIONS(1468), - [anon_sym_bit_DASHor2] = ACTIONS(1468), - [anon_sym_DOT_DOT2] = ACTIONS(1466), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1468), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1468), - [anon_sym_QMARK2] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_DOT2] = ACTIONS(1466), - [anon_sym_err_GT] = ACTIONS(1466), - [anon_sym_out_GT] = ACTIONS(1466), - [anon_sym_e_GT] = ACTIONS(1466), - [anon_sym_o_GT] = ACTIONS(1466), - [anon_sym_err_PLUSout_GT] = ACTIONS(1466), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1466), - [anon_sym_o_PLUSe_GT] = ACTIONS(1466), - [anon_sym_e_PLUSo_GT] = ACTIONS(1466), - [anon_sym_err_GT_GT] = ACTIONS(1468), - [anon_sym_out_GT_GT] = ACTIONS(1468), - [anon_sym_e_GT_GT] = ACTIONS(1468), - [anon_sym_o_GT_GT] = ACTIONS(1468), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1468), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1468), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1468), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1468), + [STATE(470)] = { + [sym_comment] = STATE(470), + [anon_sym_in] = ACTIONS(876), + [sym__newline] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(876), + [anon_sym_err_GT_PIPE] = ACTIONS(876), + [anon_sym_out_GT_PIPE] = ACTIONS(876), + [anon_sym_e_GT_PIPE] = ACTIONS(876), + [anon_sym_o_GT_PIPE] = ACTIONS(876), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(876), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(876), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(876), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(876), + [anon_sym_RPAREN] = ACTIONS(876), + [anon_sym_GT2] = ACTIONS(874), + [anon_sym_DASH2] = ACTIONS(876), + [anon_sym_RBRACE] = ACTIONS(876), + [anon_sym_STAR2] = ACTIONS(874), + [anon_sym_and2] = ACTIONS(876), + [anon_sym_xor2] = ACTIONS(876), + [anon_sym_or2] = ACTIONS(876), + [anon_sym_not_DASHin2] = ACTIONS(876), + [anon_sym_has2] = ACTIONS(876), + [anon_sym_not_DASHhas2] = ACTIONS(876), + [anon_sym_starts_DASHwith2] = ACTIONS(876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(876), + [anon_sym_ends_DASHwith2] = ACTIONS(876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(876), + [anon_sym_EQ_EQ2] = ACTIONS(876), + [anon_sym_BANG_EQ2] = ACTIONS(876), + [anon_sym_LT2] = ACTIONS(874), + [anon_sym_LT_EQ2] = ACTIONS(876), + [anon_sym_GT_EQ2] = ACTIONS(876), + [anon_sym_EQ_TILDE2] = ACTIONS(876), + [anon_sym_BANG_TILDE2] = ACTIONS(876), + [anon_sym_like2] = ACTIONS(876), + [anon_sym_not_DASHlike2] = ACTIONS(876), + [anon_sym_LPAREN2] = ACTIONS(876), + [anon_sym_STAR_STAR2] = ACTIONS(876), + [anon_sym_PLUS_PLUS2] = ACTIONS(876), + [anon_sym_SLASH2] = ACTIONS(874), + [anon_sym_mod2] = ACTIONS(876), + [anon_sym_SLASH_SLASH2] = ACTIONS(876), + [anon_sym_PLUS2] = ACTIONS(874), + [anon_sym_bit_DASHshl2] = ACTIONS(876), + [anon_sym_bit_DASHshr2] = ACTIONS(876), + [anon_sym_bit_DASHand2] = ACTIONS(876), + [anon_sym_bit_DASHxor2] = ACTIONS(876), + [anon_sym_bit_DASHor2] = ACTIONS(876), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(874), + [sym_duration_unit] = ACTIONS(876), + [anon_sym_err_GT] = ACTIONS(874), + [anon_sym_out_GT] = ACTIONS(874), + [anon_sym_e_GT] = ACTIONS(874), + [anon_sym_o_GT] = ACTIONS(874), + [anon_sym_err_PLUSout_GT] = ACTIONS(874), + [anon_sym_out_PLUSerr_GT] = ACTIONS(874), + [anon_sym_o_PLUSe_GT] = ACTIONS(874), + [anon_sym_e_PLUSo_GT] = ACTIONS(874), + [anon_sym_err_GT_GT] = ACTIONS(876), + [anon_sym_out_GT_GT] = ACTIONS(876), + [anon_sym_e_GT_GT] = ACTIONS(876), + [anon_sym_o_GT_GT] = ACTIONS(876), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(876), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(876), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(876), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(876), + [sym__unquoted_pattern] = ACTIONS(874), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(480)] = { - [sym_comment] = STATE(480), - [ts_builtin_sym_end] = ACTIONS(1480), - [anon_sym_in] = ACTIONS(1480), - [sym__newline] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_err_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_GT_PIPE] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1480), - [anon_sym_GT2] = ACTIONS(1478), - [anon_sym_DASH2] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_STAR2] = ACTIONS(1478), - [anon_sym_and2] = ACTIONS(1480), - [anon_sym_xor2] = ACTIONS(1480), - [anon_sym_or2] = ACTIONS(1480), - [anon_sym_not_DASHin2] = ACTIONS(1480), - [anon_sym_has2] = ACTIONS(1480), - [anon_sym_not_DASHhas2] = ACTIONS(1480), - [anon_sym_starts_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1480), - [anon_sym_ends_DASHwith2] = ACTIONS(1480), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1480), - [anon_sym_EQ_EQ2] = ACTIONS(1480), - [anon_sym_BANG_EQ2] = ACTIONS(1480), - [anon_sym_LT2] = ACTIONS(1478), - [anon_sym_LT_EQ2] = ACTIONS(1480), - [anon_sym_GT_EQ2] = ACTIONS(1480), - [anon_sym_EQ_TILDE2] = ACTIONS(1480), - [anon_sym_BANG_TILDE2] = ACTIONS(1480), - [anon_sym_like2] = ACTIONS(1480), - [anon_sym_not_DASHlike2] = ACTIONS(1480), - [anon_sym_STAR_STAR2] = ACTIONS(1480), - [anon_sym_PLUS_PLUS2] = ACTIONS(1480), - [anon_sym_SLASH2] = ACTIONS(1478), - [anon_sym_mod2] = ACTIONS(1480), - [anon_sym_SLASH_SLASH2] = ACTIONS(1480), - [anon_sym_PLUS2] = ACTIONS(1478), - [anon_sym_bit_DASHshl2] = ACTIONS(1480), - [anon_sym_bit_DASHshr2] = ACTIONS(1480), - [anon_sym_bit_DASHand2] = ACTIONS(1480), - [anon_sym_bit_DASHxor2] = ACTIONS(1480), - [anon_sym_bit_DASHor2] = ACTIONS(1480), - [anon_sym_DOT_DOT2] = ACTIONS(1478), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1480), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1480), - [anon_sym_QMARK2] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_DOT2] = ACTIONS(1478), - [anon_sym_err_GT] = ACTIONS(1478), - [anon_sym_out_GT] = ACTIONS(1478), - [anon_sym_e_GT] = ACTIONS(1478), - [anon_sym_o_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT] = ACTIONS(1478), - [anon_sym_err_GT_GT] = ACTIONS(1480), - [anon_sym_out_GT_GT] = ACTIONS(1480), - [anon_sym_e_GT_GT] = ACTIONS(1480), - [anon_sym_o_GT_GT] = ACTIONS(1480), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1480), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1480), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1480), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1480), + [STATE(471)] = { + [sym_cmd_identifier] = STATE(4341), + [sym_expr_parenthesized] = STATE(5062), + [sym__spread_parenthesized] = STATE(4693), + [sym__spread_variable] = STATE(4695), + [sym_val_variable] = STATE(5062), + [sym_val_number] = STATE(5062), + [sym__val_number_decimal] = STATE(1952), + [sym__val_number] = STATE(676), + [sym_val_string] = STATE(5062), + [sym__raw_str] = STATE(2243), + [sym__str_double_quotes] = STATE(2243), + [sym__str_single_quotes] = STATE(2243), + [sym__str_back_ticks] = STATE(2243), + [sym_val_interpolated] = STATE(5062), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym__spread_record] = STATE(4693), + [sym_record_body] = STATE(5107), + [sym_record_entry] = STATE(4520), + [sym__record_key] = STATE(5228), + [sym_comment] = STATE(471), + [aux_sym__types_body_repeat1] = STATE(615), + [aux_sym_record_body_repeat1] = STATE(823), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_null] = ACTIONS(1768), + [aux_sym_cmd_identifier_token3] = ACTIONS(1770), + [aux_sym_cmd_identifier_token4] = ACTIONS(1770), + [aux_sym_cmd_identifier_token5] = ACTIONS(1770), + [sym__newline] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1780), + [aux_sym__val_number_decimal_token2] = ACTIONS(1782), + [aux_sym__val_number_decimal_token3] = ACTIONS(1784), + [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(481)] = { - [sym_comment] = STATE(481), - [ts_builtin_sym_end] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT_DOT2] = ACTIONS(1738), - [anon_sym_DOT] = ACTIONS(1846), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1736), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1736), - [aux_sym__immediate_decimal_token5] = ACTIONS(1848), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), + [STATE(472)] = { + [sym__expr_parenthesized_immediate] = STATE(4757), + [sym_comment] = STATE(472), + [ts_builtin_sym_end] = ACTIONS(890), + [anon_sym_in] = ACTIONS(890), + [sym__newline] = ACTIONS(890), + [anon_sym_SEMI] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(890), + [anon_sym_err_GT_PIPE] = ACTIONS(890), + [anon_sym_out_GT_PIPE] = ACTIONS(890), + [anon_sym_e_GT_PIPE] = ACTIONS(890), + [anon_sym_o_GT_PIPE] = ACTIONS(890), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(890), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(890), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(890), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(890), + [anon_sym_GT2] = ACTIONS(793), + [anon_sym_DASH2] = ACTIONS(890), + [anon_sym_STAR2] = ACTIONS(793), + [anon_sym_and2] = ACTIONS(890), + [anon_sym_xor2] = ACTIONS(890), + [anon_sym_or2] = ACTIONS(890), + [anon_sym_not_DASHin2] = ACTIONS(890), + [anon_sym_has2] = ACTIONS(890), + [anon_sym_not_DASHhas2] = ACTIONS(890), + [anon_sym_starts_DASHwith2] = ACTIONS(890), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(890), + [anon_sym_ends_DASHwith2] = ACTIONS(890), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(890), + [anon_sym_EQ_EQ2] = ACTIONS(890), + [anon_sym_BANG_EQ2] = ACTIONS(890), + [anon_sym_LT2] = ACTIONS(793), + [anon_sym_LT_EQ2] = ACTIONS(890), + [anon_sym_GT_EQ2] = ACTIONS(890), + [anon_sym_EQ_TILDE2] = ACTIONS(890), + [anon_sym_BANG_TILDE2] = ACTIONS(890), + [anon_sym_like2] = ACTIONS(890), + [anon_sym_not_DASHlike2] = ACTIONS(890), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(890), + [anon_sym_PLUS_PLUS2] = ACTIONS(890), + [anon_sym_SLASH2] = ACTIONS(793), + [anon_sym_mod2] = ACTIONS(890), + [anon_sym_SLASH_SLASH2] = ACTIONS(890), + [anon_sym_PLUS2] = ACTIONS(793), + [anon_sym_bit_DASHshl2] = ACTIONS(890), + [anon_sym_bit_DASHshr2] = ACTIONS(890), + [anon_sym_bit_DASHand2] = ACTIONS(890), + [anon_sym_bit_DASHxor2] = ACTIONS(890), + [anon_sym_bit_DASHor2] = ACTIONS(890), + [anon_sym_DOT_DOT2] = ACTIONS(1822), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1824), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1824), + [sym_filesize_unit] = ACTIONS(1826), + [sym_duration_unit] = ACTIONS(1828), + [anon_sym_err_GT] = ACTIONS(793), + [anon_sym_out_GT] = ACTIONS(793), + [anon_sym_e_GT] = ACTIONS(793), + [anon_sym_o_GT] = ACTIONS(793), + [anon_sym_err_PLUSout_GT] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT] = ACTIONS(793), + [anon_sym_o_PLUSe_GT] = ACTIONS(793), + [anon_sym_e_PLUSo_GT] = ACTIONS(793), + [anon_sym_err_GT_GT] = ACTIONS(890), + [anon_sym_out_GT_GT] = ACTIONS(890), + [anon_sym_e_GT_GT] = ACTIONS(890), + [anon_sym_o_GT_GT] = ACTIONS(890), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(890), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(890), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(890), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(890), + [sym__unquoted_pattern] = ACTIONS(1830), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(482)] = { - [sym_comment] = STATE(482), - [ts_builtin_sym_end] = ACTIONS(1476), - [anon_sym_in] = ACTIONS(1476), - [sym__newline] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_err_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_GT_PIPE] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1476), - [anon_sym_GT2] = ACTIONS(1474), - [anon_sym_DASH2] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_STAR2] = ACTIONS(1474), - [anon_sym_and2] = ACTIONS(1476), - [anon_sym_xor2] = ACTIONS(1476), - [anon_sym_or2] = ACTIONS(1476), - [anon_sym_not_DASHin2] = ACTIONS(1476), - [anon_sym_has2] = ACTIONS(1476), - [anon_sym_not_DASHhas2] = ACTIONS(1476), - [anon_sym_starts_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1476), - [anon_sym_ends_DASHwith2] = ACTIONS(1476), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1476), - [anon_sym_EQ_EQ2] = ACTIONS(1476), - [anon_sym_BANG_EQ2] = ACTIONS(1476), - [anon_sym_LT2] = ACTIONS(1474), - [anon_sym_LT_EQ2] = ACTIONS(1476), - [anon_sym_GT_EQ2] = ACTIONS(1476), - [anon_sym_EQ_TILDE2] = ACTIONS(1476), - [anon_sym_BANG_TILDE2] = ACTIONS(1476), - [anon_sym_like2] = ACTIONS(1476), - [anon_sym_not_DASHlike2] = ACTIONS(1476), - [anon_sym_STAR_STAR2] = ACTIONS(1476), - [anon_sym_PLUS_PLUS2] = ACTIONS(1476), - [anon_sym_SLASH2] = ACTIONS(1474), - [anon_sym_mod2] = ACTIONS(1476), - [anon_sym_SLASH_SLASH2] = ACTIONS(1476), - [anon_sym_PLUS2] = ACTIONS(1474), - [anon_sym_bit_DASHshl2] = ACTIONS(1476), - [anon_sym_bit_DASHshr2] = ACTIONS(1476), - [anon_sym_bit_DASHand2] = ACTIONS(1476), - [anon_sym_bit_DASHxor2] = ACTIONS(1476), - [anon_sym_bit_DASHor2] = ACTIONS(1476), - [anon_sym_DOT_DOT2] = ACTIONS(1474), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1476), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1476), - [anon_sym_QMARK2] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_DOT2] = ACTIONS(1474), - [anon_sym_err_GT] = ACTIONS(1474), - [anon_sym_out_GT] = ACTIONS(1474), - [anon_sym_e_GT] = ACTIONS(1474), - [anon_sym_o_GT] = ACTIONS(1474), - [anon_sym_err_PLUSout_GT] = ACTIONS(1474), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1474), - [anon_sym_o_PLUSe_GT] = ACTIONS(1474), - [anon_sym_e_PLUSo_GT] = ACTIONS(1474), - [anon_sym_err_GT_GT] = ACTIONS(1476), - [anon_sym_out_GT_GT] = ACTIONS(1476), - [anon_sym_e_GT_GT] = ACTIONS(1476), - [anon_sym_o_GT_GT] = ACTIONS(1476), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1476), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1476), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1476), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1476), + [STATE(473)] = { + [sym_comment] = STATE(473), + [anon_sym_EQ] = ACTIONS(1832), + [anon_sym_PLUS_EQ] = ACTIONS(1834), + [anon_sym_DASH_EQ] = ACTIONS(1834), + [anon_sym_STAR_EQ] = ACTIONS(1834), + [anon_sym_SLASH_EQ] = ACTIONS(1834), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1834), + [anon_sym_in] = ACTIONS(1689), + [sym__newline] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1689), + [anon_sym_err_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_GT_PIPE] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), + [anon_sym_GT2] = ACTIONS(1615), + [anon_sym_DASH2] = ACTIONS(1615), + [anon_sym_STAR2] = ACTIONS(1615), + [anon_sym_and2] = ACTIONS(1689), + [anon_sym_xor2] = ACTIONS(1689), + [anon_sym_or2] = ACTIONS(1689), + [anon_sym_not_DASHin2] = ACTIONS(1689), + [anon_sym_has2] = ACTIONS(1689), + [anon_sym_not_DASHhas2] = ACTIONS(1689), + [anon_sym_starts_DASHwith2] = ACTIONS(1689), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1689), + [anon_sym_ends_DASHwith2] = ACTIONS(1689), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1689), + [anon_sym_EQ_EQ2] = ACTIONS(1689), + [anon_sym_BANG_EQ2] = ACTIONS(1689), + [anon_sym_LT2] = ACTIONS(1615), + [anon_sym_LT_EQ2] = ACTIONS(1689), + [anon_sym_GT_EQ2] = ACTIONS(1689), + [anon_sym_EQ_TILDE2] = ACTIONS(1689), + [anon_sym_BANG_TILDE2] = ACTIONS(1689), + [anon_sym_like2] = ACTIONS(1689), + [anon_sym_not_DASHlike2] = ACTIONS(1689), + [anon_sym_STAR_STAR2] = ACTIONS(1689), + [anon_sym_PLUS_PLUS2] = ACTIONS(1615), + [anon_sym_SLASH2] = ACTIONS(1615), + [anon_sym_mod2] = ACTIONS(1689), + [anon_sym_SLASH_SLASH2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(1615), + [anon_sym_bit_DASHshl2] = ACTIONS(1689), + [anon_sym_bit_DASHshr2] = ACTIONS(1689), + [anon_sym_bit_DASHand2] = ACTIONS(1689), + [anon_sym_bit_DASHxor2] = ACTIONS(1689), + [anon_sym_bit_DASHor2] = ACTIONS(1689), + [anon_sym_DOT_DOT2] = ACTIONS(1619), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), + [anon_sym_err_GT] = ACTIONS(1615), + [anon_sym_out_GT] = ACTIONS(1615), + [anon_sym_e_GT] = ACTIONS(1615), + [anon_sym_o_GT] = ACTIONS(1615), + [anon_sym_err_PLUSout_GT] = ACTIONS(1615), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), + [anon_sym_o_PLUSe_GT] = ACTIONS(1615), + [anon_sym_e_PLUSo_GT] = ACTIONS(1615), + [anon_sym_err_GT_GT] = ACTIONS(1689), + [anon_sym_out_GT_GT] = ACTIONS(1689), + [anon_sym_e_GT_GT] = ACTIONS(1689), + [anon_sym_o_GT_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(483)] = { - [sym_comment] = STATE(483), - [ts_builtin_sym_end] = ACTIONS(1516), - [anon_sym_in] = ACTIONS(1516), - [sym__newline] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_err_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_GT_PIPE] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1516), - [anon_sym_GT2] = ACTIONS(1514), - [anon_sym_DASH2] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_STAR2] = ACTIONS(1514), - [anon_sym_and2] = ACTIONS(1516), - [anon_sym_xor2] = ACTIONS(1516), - [anon_sym_or2] = ACTIONS(1516), - [anon_sym_not_DASHin2] = ACTIONS(1516), - [anon_sym_has2] = ACTIONS(1516), - [anon_sym_not_DASHhas2] = ACTIONS(1516), - [anon_sym_starts_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1516), - [anon_sym_ends_DASHwith2] = ACTIONS(1516), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1516), - [anon_sym_EQ_EQ2] = ACTIONS(1516), - [anon_sym_BANG_EQ2] = ACTIONS(1516), - [anon_sym_LT2] = ACTIONS(1514), - [anon_sym_LT_EQ2] = ACTIONS(1516), - [anon_sym_GT_EQ2] = ACTIONS(1516), - [anon_sym_EQ_TILDE2] = ACTIONS(1516), - [anon_sym_BANG_TILDE2] = ACTIONS(1516), - [anon_sym_like2] = ACTIONS(1516), - [anon_sym_not_DASHlike2] = ACTIONS(1516), - [anon_sym_STAR_STAR2] = ACTIONS(1516), - [anon_sym_PLUS_PLUS2] = ACTIONS(1516), - [anon_sym_SLASH2] = ACTIONS(1514), - [anon_sym_mod2] = ACTIONS(1516), - [anon_sym_SLASH_SLASH2] = ACTIONS(1516), - [anon_sym_PLUS2] = ACTIONS(1514), - [anon_sym_bit_DASHshl2] = ACTIONS(1516), - [anon_sym_bit_DASHshr2] = ACTIONS(1516), - [anon_sym_bit_DASHand2] = ACTIONS(1516), - [anon_sym_bit_DASHxor2] = ACTIONS(1516), - [anon_sym_bit_DASHor2] = ACTIONS(1516), - [anon_sym_DOT_DOT2] = ACTIONS(1514), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1516), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1516), - [anon_sym_QMARK2] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_DOT2] = ACTIONS(1514), - [anon_sym_err_GT] = ACTIONS(1514), - [anon_sym_out_GT] = ACTIONS(1514), - [anon_sym_e_GT] = ACTIONS(1514), - [anon_sym_o_GT] = ACTIONS(1514), - [anon_sym_err_PLUSout_GT] = ACTIONS(1514), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1514), - [anon_sym_o_PLUSe_GT] = ACTIONS(1514), - [anon_sym_e_PLUSo_GT] = ACTIONS(1514), - [anon_sym_err_GT_GT] = ACTIONS(1516), - [anon_sym_out_GT_GT] = ACTIONS(1516), - [anon_sym_e_GT_GT] = ACTIONS(1516), - [anon_sym_o_GT_GT] = ACTIONS(1516), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1516), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1516), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1516), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1516), + [STATE(474)] = { + [sym_cmd_identifier] = STATE(4341), + [sym_expr_parenthesized] = STATE(5062), + [sym__spread_parenthesized] = STATE(4693), + [sym__spread_variable] = STATE(4695), + [sym_val_variable] = STATE(5062), + [sym_val_number] = STATE(5062), + [sym__val_number_decimal] = STATE(1952), + [sym__val_number] = STATE(676), + [sym_val_string] = STATE(5062), + [sym__raw_str] = STATE(2243), + [sym__str_double_quotes] = STATE(2243), + [sym__str_single_quotes] = STATE(2243), + [sym__str_back_ticks] = STATE(2243), + [sym_val_interpolated] = STATE(5062), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym__spread_record] = STATE(4693), + [sym_record_body] = STATE(5218), + [sym_record_entry] = STATE(4520), + [sym__record_key] = STATE(5228), + [sym_comment] = STATE(474), + [aux_sym__types_body_repeat1] = STATE(615), + [aux_sym_record_body_repeat1] = STATE(823), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_null] = ACTIONS(1768), + [aux_sym_cmd_identifier_token3] = ACTIONS(1770), + [aux_sym_cmd_identifier_token4] = ACTIONS(1770), + [aux_sym_cmd_identifier_token5] = ACTIONS(1770), + [sym__newline] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_RBRACE] = ACTIONS(1836), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1780), + [aux_sym__val_number_decimal_token2] = ACTIONS(1782), + [aux_sym__val_number_decimal_token3] = ACTIONS(1784), + [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(484)] = { - [sym_cell_path] = STATE(923), - [sym_path] = STATE(441), - [sym_comment] = STATE(484), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1850), - [sym__newline] = ACTIONS(1850), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_PIPE] = ACTIONS(1850), - [anon_sym_err_GT_PIPE] = ACTIONS(1850), - [anon_sym_out_GT_PIPE] = ACTIONS(1850), - [anon_sym_e_GT_PIPE] = ACTIONS(1850), - [anon_sym_o_GT_PIPE] = ACTIONS(1850), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1850), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1850), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1850), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1850), - [anon_sym_RPAREN] = ACTIONS(1850), - [anon_sym_GT2] = ACTIONS(1853), - [anon_sym_DASH2] = ACTIONS(1850), - [anon_sym_LBRACE] = ACTIONS(1850), - [anon_sym_RBRACE] = ACTIONS(1850), - [anon_sym_EQ_GT] = ACTIONS(1850), - [anon_sym_STAR2] = ACTIONS(1853), - [anon_sym_and2] = ACTIONS(1850), - [anon_sym_xor2] = ACTIONS(1850), - [anon_sym_or2] = ACTIONS(1850), - [anon_sym_not_DASHin2] = ACTIONS(1850), - [anon_sym_has2] = ACTIONS(1850), - [anon_sym_not_DASHhas2] = ACTIONS(1850), - [anon_sym_starts_DASHwith2] = ACTIONS(1850), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1850), - [anon_sym_ends_DASHwith2] = ACTIONS(1850), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1850), - [anon_sym_EQ_EQ2] = ACTIONS(1850), - [anon_sym_BANG_EQ2] = ACTIONS(1850), - [anon_sym_LT2] = ACTIONS(1853), - [anon_sym_LT_EQ2] = ACTIONS(1850), - [anon_sym_GT_EQ2] = ACTIONS(1850), - [anon_sym_EQ_TILDE2] = ACTIONS(1850), - [anon_sym_BANG_TILDE2] = ACTIONS(1850), - [anon_sym_like2] = ACTIONS(1850), - [anon_sym_not_DASHlike2] = ACTIONS(1850), - [anon_sym_STAR_STAR2] = ACTIONS(1850), - [anon_sym_PLUS_PLUS2] = ACTIONS(1850), - [anon_sym_SLASH2] = ACTIONS(1853), - [anon_sym_mod2] = ACTIONS(1850), - [anon_sym_SLASH_SLASH2] = ACTIONS(1850), - [anon_sym_PLUS2] = ACTIONS(1853), - [anon_sym_bit_DASHshl2] = ACTIONS(1850), - [anon_sym_bit_DASHshr2] = ACTIONS(1850), - [anon_sym_bit_DASHand2] = ACTIONS(1850), - [anon_sym_bit_DASHxor2] = ACTIONS(1850), - [anon_sym_bit_DASHor2] = ACTIONS(1850), - [anon_sym_DOT2] = ACTIONS(1856), - [anon_sym_err_GT] = ACTIONS(1853), - [anon_sym_out_GT] = ACTIONS(1853), - [anon_sym_e_GT] = ACTIONS(1853), - [anon_sym_o_GT] = ACTIONS(1853), - [anon_sym_err_PLUSout_GT] = ACTIONS(1853), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1853), - [anon_sym_o_PLUSe_GT] = ACTIONS(1853), - [anon_sym_e_PLUSo_GT] = ACTIONS(1853), - [anon_sym_err_GT_GT] = ACTIONS(1850), - [anon_sym_out_GT_GT] = ACTIONS(1850), - [anon_sym_e_GT_GT] = ACTIONS(1850), - [anon_sym_o_GT_GT] = ACTIONS(1850), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1850), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1850), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1850), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1850), + [STATE(475)] = { + [sym_comment] = STATE(475), + [anon_sym_in] = ACTIONS(1806), + [sym__newline] = ACTIONS(1806), + [anon_sym_SEMI] = ACTIONS(1806), + [anon_sym_PIPE] = ACTIONS(1806), + [anon_sym_err_GT_PIPE] = ACTIONS(1806), + [anon_sym_out_GT_PIPE] = ACTIONS(1806), + [anon_sym_e_GT_PIPE] = ACTIONS(1806), + [anon_sym_o_GT_PIPE] = ACTIONS(1806), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1806), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1806), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1806), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1806), + [anon_sym_RPAREN] = ACTIONS(1806), + [anon_sym_GT2] = ACTIONS(1808), + [anon_sym_DASH2] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(1806), + [anon_sym_RBRACE] = ACTIONS(1806), + [anon_sym_STAR2] = ACTIONS(1808), + [anon_sym_and2] = ACTIONS(1806), + [anon_sym_xor2] = ACTIONS(1806), + [anon_sym_or2] = ACTIONS(1806), + [anon_sym_not_DASHin2] = ACTIONS(1806), + [anon_sym_has2] = ACTIONS(1806), + [anon_sym_not_DASHhas2] = ACTIONS(1806), + [anon_sym_starts_DASHwith2] = ACTIONS(1806), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1806), + [anon_sym_ends_DASHwith2] = ACTIONS(1806), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1806), + [anon_sym_EQ_EQ2] = ACTIONS(1806), + [anon_sym_BANG_EQ2] = ACTIONS(1806), + [anon_sym_LT2] = ACTIONS(1808), + [anon_sym_LT_EQ2] = ACTIONS(1806), + [anon_sym_GT_EQ2] = ACTIONS(1806), + [anon_sym_EQ_TILDE2] = ACTIONS(1806), + [anon_sym_BANG_TILDE2] = ACTIONS(1806), + [anon_sym_like2] = ACTIONS(1806), + [anon_sym_not_DASHlike2] = ACTIONS(1806), + [anon_sym_LPAREN2] = ACTIONS(1806), + [anon_sym_STAR_STAR2] = ACTIONS(1806), + [anon_sym_PLUS_PLUS2] = ACTIONS(1806), + [anon_sym_SLASH2] = ACTIONS(1808), + [anon_sym_mod2] = ACTIONS(1806), + [anon_sym_SLASH_SLASH2] = ACTIONS(1806), + [anon_sym_PLUS2] = ACTIONS(1808), + [anon_sym_bit_DASHshl2] = ACTIONS(1806), + [anon_sym_bit_DASHshr2] = ACTIONS(1806), + [anon_sym_bit_DASHand2] = ACTIONS(1806), + [anon_sym_bit_DASHxor2] = ACTIONS(1806), + [anon_sym_bit_DASHor2] = ACTIONS(1806), + [anon_sym_DOT_DOT2] = ACTIONS(1808), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1806), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1806), + [anon_sym_err_GT] = ACTIONS(1808), + [anon_sym_out_GT] = ACTIONS(1808), + [anon_sym_e_GT] = ACTIONS(1808), + [anon_sym_o_GT] = ACTIONS(1808), + [anon_sym_err_PLUSout_GT] = ACTIONS(1808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1808), + [anon_sym_o_PLUSe_GT] = ACTIONS(1808), + [anon_sym_e_PLUSo_GT] = ACTIONS(1808), + [anon_sym_err_GT_GT] = ACTIONS(1806), + [anon_sym_out_GT_GT] = ACTIONS(1806), + [anon_sym_e_GT_GT] = ACTIONS(1806), + [anon_sym_o_GT_GT] = ACTIONS(1806), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1806), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1806), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1806), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1806), + [sym__unquoted_pattern] = ACTIONS(1808), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(485)] = { - [sym_cell_path] = STATE(936), - [sym_path] = STATE(441), - [sym_comment] = STATE(485), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1858), - [sym__newline] = ACTIONS(1858), - [anon_sym_SEMI] = ACTIONS(1858), - [anon_sym_PIPE] = ACTIONS(1858), - [anon_sym_err_GT_PIPE] = ACTIONS(1858), - [anon_sym_out_GT_PIPE] = ACTIONS(1858), - [anon_sym_e_GT_PIPE] = ACTIONS(1858), - [anon_sym_o_GT_PIPE] = ACTIONS(1858), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1858), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1858), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1858), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1858), - [anon_sym_RPAREN] = ACTIONS(1858), - [anon_sym_GT2] = ACTIONS(1860), - [anon_sym_DASH2] = ACTIONS(1858), - [anon_sym_LBRACE] = ACTIONS(1858), - [anon_sym_RBRACE] = ACTIONS(1858), - [anon_sym_EQ_GT] = ACTIONS(1858), - [anon_sym_STAR2] = ACTIONS(1860), - [anon_sym_and2] = ACTIONS(1858), - [anon_sym_xor2] = ACTIONS(1858), - [anon_sym_or2] = ACTIONS(1858), - [anon_sym_not_DASHin2] = ACTIONS(1858), - [anon_sym_has2] = ACTIONS(1858), - [anon_sym_not_DASHhas2] = ACTIONS(1858), - [anon_sym_starts_DASHwith2] = ACTIONS(1858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1858), - [anon_sym_ends_DASHwith2] = ACTIONS(1858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1858), - [anon_sym_EQ_EQ2] = ACTIONS(1858), - [anon_sym_BANG_EQ2] = ACTIONS(1858), - [anon_sym_LT2] = ACTIONS(1860), - [anon_sym_LT_EQ2] = ACTIONS(1858), - [anon_sym_GT_EQ2] = ACTIONS(1858), - [anon_sym_EQ_TILDE2] = ACTIONS(1858), - [anon_sym_BANG_TILDE2] = ACTIONS(1858), - [anon_sym_like2] = ACTIONS(1858), - [anon_sym_not_DASHlike2] = ACTIONS(1858), - [anon_sym_STAR_STAR2] = ACTIONS(1858), - [anon_sym_PLUS_PLUS2] = ACTIONS(1858), - [anon_sym_SLASH2] = ACTIONS(1860), - [anon_sym_mod2] = ACTIONS(1858), - [anon_sym_SLASH_SLASH2] = ACTIONS(1858), - [anon_sym_PLUS2] = ACTIONS(1860), - [anon_sym_bit_DASHshl2] = ACTIONS(1858), - [anon_sym_bit_DASHshr2] = ACTIONS(1858), - [anon_sym_bit_DASHand2] = ACTIONS(1858), - [anon_sym_bit_DASHxor2] = ACTIONS(1858), - [anon_sym_bit_DASHor2] = ACTIONS(1858), - [anon_sym_DOT2] = ACTIONS(1856), - [anon_sym_err_GT] = ACTIONS(1860), - [anon_sym_out_GT] = ACTIONS(1860), - [anon_sym_e_GT] = ACTIONS(1860), - [anon_sym_o_GT] = ACTIONS(1860), - [anon_sym_err_PLUSout_GT] = ACTIONS(1860), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1860), - [anon_sym_o_PLUSe_GT] = ACTIONS(1860), - [anon_sym_e_PLUSo_GT] = ACTIONS(1860), - [anon_sym_err_GT_GT] = ACTIONS(1858), - [anon_sym_out_GT_GT] = ACTIONS(1858), - [anon_sym_e_GT_GT] = ACTIONS(1858), - [anon_sym_o_GT_GT] = ACTIONS(1858), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1858), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1858), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1858), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1858), + [STATE(476)] = { + [sym_cell_path] = STATE(839), + [sym_path] = STATE(435), + [sym_comment] = STATE(476), + [aux_sym__where_predicate_lhs_repeat1] = STATE(416), + [anon_sym_in] = 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_RPAREN] = ACTIONS(1838), + [anon_sym_GT2] = ACTIONS(1840), + [anon_sym_DASH2] = ACTIONS(1838), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_EQ_GT] = ACTIONS(1838), + [anon_sym_STAR2] = ACTIONS(1840), + [anon_sym_and2] = ACTIONS(1838), + [anon_sym_xor2] = ACTIONS(1838), + [anon_sym_or2] = ACTIONS(1838), + [anon_sym_not_DASHin2] = ACTIONS(1838), + [anon_sym_has2] = ACTIONS(1838), + [anon_sym_not_DASHhas2] = ACTIONS(1838), + [anon_sym_starts_DASHwith2] = ACTIONS(1838), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1838), + [anon_sym_ends_DASHwith2] = ACTIONS(1838), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1838), + [anon_sym_EQ_EQ2] = ACTIONS(1838), + [anon_sym_BANG_EQ2] = ACTIONS(1838), + [anon_sym_LT2] = ACTIONS(1840), + [anon_sym_LT_EQ2] = ACTIONS(1838), + [anon_sym_GT_EQ2] = ACTIONS(1838), + [anon_sym_EQ_TILDE2] = ACTIONS(1838), + [anon_sym_BANG_TILDE2] = ACTIONS(1838), + [anon_sym_like2] = ACTIONS(1838), + [anon_sym_not_DASHlike2] = ACTIONS(1838), + [anon_sym_STAR_STAR2] = ACTIONS(1838), + [anon_sym_PLUS_PLUS2] = ACTIONS(1838), + [anon_sym_SLASH2] = ACTIONS(1840), + [anon_sym_mod2] = ACTIONS(1838), + [anon_sym_SLASH_SLASH2] = ACTIONS(1838), + [anon_sym_PLUS2] = ACTIONS(1840), + [anon_sym_bit_DASHshl2] = ACTIONS(1838), + [anon_sym_bit_DASHshr2] = ACTIONS(1838), + [anon_sym_bit_DASHand2] = ACTIONS(1838), + [anon_sym_bit_DASHxor2] = ACTIONS(1838), + [anon_sym_bit_DASHor2] = ACTIONS(1838), + [anon_sym_DOT2] = ACTIONS(1842), + [anon_sym_err_GT] = ACTIONS(1840), + [anon_sym_out_GT] = ACTIONS(1840), + [anon_sym_e_GT] = ACTIONS(1840), + [anon_sym_o_GT] = ACTIONS(1840), + [anon_sym_err_PLUSout_GT] = ACTIONS(1840), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1840), + [anon_sym_o_PLUSe_GT] = ACTIONS(1840), + [anon_sym_e_PLUSo_GT] = ACTIONS(1840), + [anon_sym_err_GT_GT] = ACTIONS(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), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(486)] = { - [sym_cell_path] = STATE(724), - [sym_path] = STATE(441), - [sym_comment] = STATE(486), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1862), - [sym__newline] = ACTIONS(1862), - [anon_sym_SEMI] = ACTIONS(1862), - [anon_sym_PIPE] = ACTIONS(1862), - [anon_sym_err_GT_PIPE] = ACTIONS(1862), - [anon_sym_out_GT_PIPE] = ACTIONS(1862), - [anon_sym_e_GT_PIPE] = ACTIONS(1862), - [anon_sym_o_GT_PIPE] = ACTIONS(1862), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1862), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1862), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1862), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1862), - [anon_sym_RPAREN] = ACTIONS(1862), - [anon_sym_GT2] = ACTIONS(1864), - [anon_sym_DASH2] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1862), - [anon_sym_RBRACE] = ACTIONS(1862), - [anon_sym_EQ_GT] = ACTIONS(1862), - [anon_sym_STAR2] = ACTIONS(1864), - [anon_sym_and2] = ACTIONS(1862), - [anon_sym_xor2] = ACTIONS(1862), - [anon_sym_or2] = ACTIONS(1862), - [anon_sym_not_DASHin2] = ACTIONS(1862), - [anon_sym_has2] = ACTIONS(1862), - [anon_sym_not_DASHhas2] = ACTIONS(1862), - [anon_sym_starts_DASHwith2] = ACTIONS(1862), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1862), - [anon_sym_ends_DASHwith2] = ACTIONS(1862), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1862), - [anon_sym_EQ_EQ2] = ACTIONS(1862), - [anon_sym_BANG_EQ2] = ACTIONS(1862), - [anon_sym_LT2] = ACTIONS(1864), - [anon_sym_LT_EQ2] = ACTIONS(1862), - [anon_sym_GT_EQ2] = ACTIONS(1862), - [anon_sym_EQ_TILDE2] = ACTIONS(1862), - [anon_sym_BANG_TILDE2] = ACTIONS(1862), + [STATE(477)] = { + [sym_comment] = STATE(477), + [ts_builtin_sym_end] = ACTIONS(773), + [anon_sym_in] = ACTIONS(773), + [sym__newline] = ACTIONS(773), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(773), + [anon_sym_err_GT_PIPE] = ACTIONS(773), + [anon_sym_out_GT_PIPE] = ACTIONS(773), + [anon_sym_e_GT_PIPE] = ACTIONS(773), + [anon_sym_o_GT_PIPE] = ACTIONS(773), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(773), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(773), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(773), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(773), + [anon_sym_GT2] = ACTIONS(771), + [anon_sym_DASH2] = ACTIONS(773), + [anon_sym_STAR2] = ACTIONS(771), + [anon_sym_and2] = ACTIONS(773), + [anon_sym_xor2] = ACTIONS(773), + [anon_sym_or2] = ACTIONS(773), + [anon_sym_not_DASHin2] = ACTIONS(773), + [anon_sym_has2] = ACTIONS(773), + [anon_sym_not_DASHhas2] = ACTIONS(773), + [anon_sym_starts_DASHwith2] = ACTIONS(773), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(773), + [anon_sym_ends_DASHwith2] = ACTIONS(773), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(773), + [anon_sym_EQ_EQ2] = ACTIONS(773), + [anon_sym_BANG_EQ2] = ACTIONS(773), + [anon_sym_LT2] = ACTIONS(771), + [anon_sym_LT_EQ2] = ACTIONS(773), + [anon_sym_GT_EQ2] = ACTIONS(773), + [anon_sym_EQ_TILDE2] = ACTIONS(773), + [anon_sym_BANG_TILDE2] = ACTIONS(773), + [anon_sym_like2] = ACTIONS(773), + [anon_sym_not_DASHlike2] = ACTIONS(773), + [anon_sym_LPAREN2] = ACTIONS(773), + [anon_sym_STAR_STAR2] = ACTIONS(773), + [anon_sym_PLUS_PLUS2] = ACTIONS(773), + [anon_sym_SLASH2] = ACTIONS(771), + [anon_sym_mod2] = ACTIONS(773), + [anon_sym_SLASH_SLASH2] = ACTIONS(773), + [anon_sym_PLUS2] = ACTIONS(771), + [anon_sym_bit_DASHshl2] = ACTIONS(773), + [anon_sym_bit_DASHshr2] = ACTIONS(773), + [anon_sym_bit_DASHand2] = ACTIONS(773), + [anon_sym_bit_DASHxor2] = ACTIONS(773), + [anon_sym_bit_DASHor2] = ACTIONS(773), + [anon_sym_DOT_DOT2] = ACTIONS(771), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), + [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [sym_filesize_unit] = ACTIONS(771), + [sym_duration_unit] = ACTIONS(773), + [anon_sym_err_GT] = ACTIONS(771), + [anon_sym_out_GT] = ACTIONS(771), + [anon_sym_e_GT] = ACTIONS(771), + [anon_sym_o_GT] = ACTIONS(771), + [anon_sym_err_PLUSout_GT] = ACTIONS(771), + [anon_sym_out_PLUSerr_GT] = ACTIONS(771), + [anon_sym_o_PLUSe_GT] = ACTIONS(771), + [anon_sym_e_PLUSo_GT] = ACTIONS(771), + [anon_sym_err_GT_GT] = ACTIONS(773), + [anon_sym_out_GT_GT] = ACTIONS(773), + [anon_sym_e_GT_GT] = ACTIONS(773), + [anon_sym_o_GT_GT] = ACTIONS(773), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(773), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(773), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(773), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(773), + [sym__unquoted_pattern] = ACTIONS(771), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(478)] = { + [sym_comment] = STATE(478), + [anon_sym_in] = ACTIONS(1844), + [sym__newline] = ACTIONS(1844), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_err_GT_PIPE] = ACTIONS(1844), + [anon_sym_out_GT_PIPE] = ACTIONS(1844), + [anon_sym_e_GT_PIPE] = ACTIONS(1844), + [anon_sym_o_GT_PIPE] = ACTIONS(1844), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1844), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1844), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1844), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1844), + [anon_sym_RPAREN] = ACTIONS(1844), + [anon_sym_GT2] = ACTIONS(1846), + [anon_sym_DASH2] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1844), + [anon_sym_RBRACE] = ACTIONS(1844), + [anon_sym_STAR2] = ACTIONS(1846), + [anon_sym_and2] = ACTIONS(1844), + [anon_sym_xor2] = ACTIONS(1844), + [anon_sym_or2] = ACTIONS(1844), + [anon_sym_not_DASHin2] = ACTIONS(1844), + [anon_sym_has2] = ACTIONS(1844), + [anon_sym_not_DASHhas2] = ACTIONS(1844), + [anon_sym_starts_DASHwith2] = ACTIONS(1844), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1844), + [anon_sym_ends_DASHwith2] = ACTIONS(1844), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1844), + [anon_sym_EQ_EQ2] = ACTIONS(1844), + [anon_sym_BANG_EQ2] = ACTIONS(1844), + [anon_sym_LT2] = ACTIONS(1846), + [anon_sym_LT_EQ2] = ACTIONS(1844), + [anon_sym_GT_EQ2] = ACTIONS(1844), + [anon_sym_EQ_TILDE2] = ACTIONS(1844), + [anon_sym_BANG_TILDE2] = ACTIONS(1844), + [anon_sym_like2] = ACTIONS(1844), + [anon_sym_not_DASHlike2] = ACTIONS(1844), + [anon_sym_LPAREN2] = ACTIONS(1844), + [anon_sym_STAR_STAR2] = ACTIONS(1844), + [anon_sym_PLUS_PLUS2] = ACTIONS(1844), + [anon_sym_SLASH2] = ACTIONS(1846), + [anon_sym_mod2] = ACTIONS(1844), + [anon_sym_SLASH_SLASH2] = ACTIONS(1844), + [anon_sym_PLUS2] = ACTIONS(1846), + [anon_sym_bit_DASHshl2] = ACTIONS(1844), + [anon_sym_bit_DASHshr2] = ACTIONS(1844), + [anon_sym_bit_DASHand2] = ACTIONS(1844), + [anon_sym_bit_DASHxor2] = ACTIONS(1844), + [anon_sym_bit_DASHor2] = ACTIONS(1844), + [anon_sym_DOT_DOT2] = ACTIONS(1846), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1844), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1844), + [anon_sym_err_GT] = ACTIONS(1846), + [anon_sym_out_GT] = ACTIONS(1846), + [anon_sym_e_GT] = ACTIONS(1846), + [anon_sym_o_GT] = ACTIONS(1846), + [anon_sym_err_PLUSout_GT] = ACTIONS(1846), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1846), + [anon_sym_o_PLUSe_GT] = ACTIONS(1846), + [anon_sym_e_PLUSo_GT] = ACTIONS(1846), + [anon_sym_err_GT_GT] = ACTIONS(1844), + [anon_sym_out_GT_GT] = ACTIONS(1844), + [anon_sym_e_GT_GT] = ACTIONS(1844), + [anon_sym_o_GT_GT] = ACTIONS(1844), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1844), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1844), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1844), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1844), + [sym__unquoted_pattern] = ACTIONS(1846), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(479)] = { + [sym_cell_path] = STATE(937), + [sym_path] = STATE(435), + [sym_comment] = STATE(479), + [aux_sym__where_predicate_lhs_repeat1] = STATE(416), + [anon_sym_in] = 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_RPAREN] = ACTIONS(1848), + [anon_sym_GT2] = ACTIONS(1850), + [anon_sym_DASH2] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1848), + [anon_sym_RBRACE] = ACTIONS(1848), + [anon_sym_EQ_GT] = ACTIONS(1848), + [anon_sym_STAR2] = ACTIONS(1850), + [anon_sym_and2] = ACTIONS(1848), + [anon_sym_xor2] = ACTIONS(1848), + [anon_sym_or2] = ACTIONS(1848), + [anon_sym_not_DASHin2] = ACTIONS(1848), + [anon_sym_has2] = ACTIONS(1848), + [anon_sym_not_DASHhas2] = ACTIONS(1848), + [anon_sym_starts_DASHwith2] = ACTIONS(1848), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1848), + [anon_sym_ends_DASHwith2] = ACTIONS(1848), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1848), + [anon_sym_EQ_EQ2] = ACTIONS(1848), + [anon_sym_BANG_EQ2] = ACTIONS(1848), + [anon_sym_LT2] = ACTIONS(1850), + [anon_sym_LT_EQ2] = ACTIONS(1848), + [anon_sym_GT_EQ2] = ACTIONS(1848), + [anon_sym_EQ_TILDE2] = ACTIONS(1848), + [anon_sym_BANG_TILDE2] = ACTIONS(1848), + [anon_sym_like2] = ACTIONS(1848), + [anon_sym_not_DASHlike2] = ACTIONS(1848), + [anon_sym_STAR_STAR2] = ACTIONS(1848), + [anon_sym_PLUS_PLUS2] = ACTIONS(1848), + [anon_sym_SLASH2] = ACTIONS(1850), + [anon_sym_mod2] = ACTIONS(1848), + [anon_sym_SLASH_SLASH2] = ACTIONS(1848), + [anon_sym_PLUS2] = ACTIONS(1850), + [anon_sym_bit_DASHshl2] = ACTIONS(1848), + [anon_sym_bit_DASHshr2] = ACTIONS(1848), + [anon_sym_bit_DASHand2] = ACTIONS(1848), + [anon_sym_bit_DASHxor2] = ACTIONS(1848), + [anon_sym_bit_DASHor2] = ACTIONS(1848), + [anon_sym_DOT2] = ACTIONS(1842), + [anon_sym_err_GT] = ACTIONS(1850), + [anon_sym_out_GT] = ACTIONS(1850), + [anon_sym_e_GT] = ACTIONS(1850), + [anon_sym_o_GT] = ACTIONS(1850), + [anon_sym_err_PLUSout_GT] = ACTIONS(1850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1850), + [anon_sym_o_PLUSe_GT] = ACTIONS(1850), + [anon_sym_e_PLUSo_GT] = ACTIONS(1850), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(480)] = { + [sym_comment] = STATE(480), + [ts_builtin_sym_end] = ACTIONS(1515), + [anon_sym_in] = ACTIONS(1515), + [sym__newline] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_err_GT_PIPE] = ACTIONS(1515), + [anon_sym_out_GT_PIPE] = ACTIONS(1515), + [anon_sym_e_GT_PIPE] = ACTIONS(1515), + [anon_sym_o_GT_PIPE] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1515), + [anon_sym_GT2] = ACTIONS(1513), + [anon_sym_DASH2] = ACTIONS(1515), + [anon_sym_LBRACE] = ACTIONS(1515), + [anon_sym_STAR2] = ACTIONS(1513), + [anon_sym_and2] = ACTIONS(1515), + [anon_sym_xor2] = ACTIONS(1515), + [anon_sym_or2] = ACTIONS(1515), + [anon_sym_not_DASHin2] = ACTIONS(1515), + [anon_sym_has2] = ACTIONS(1515), + [anon_sym_not_DASHhas2] = ACTIONS(1515), + [anon_sym_starts_DASHwith2] = ACTIONS(1515), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1515), + [anon_sym_ends_DASHwith2] = ACTIONS(1515), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1515), + [anon_sym_EQ_EQ2] = ACTIONS(1515), + [anon_sym_BANG_EQ2] = ACTIONS(1515), + [anon_sym_LT2] = ACTIONS(1513), + [anon_sym_LT_EQ2] = ACTIONS(1515), + [anon_sym_GT_EQ2] = ACTIONS(1515), + [anon_sym_EQ_TILDE2] = ACTIONS(1515), + [anon_sym_BANG_TILDE2] = ACTIONS(1515), + [anon_sym_like2] = ACTIONS(1515), + [anon_sym_not_DASHlike2] = ACTIONS(1515), + [anon_sym_STAR_STAR2] = ACTIONS(1515), + [anon_sym_PLUS_PLUS2] = ACTIONS(1515), + [anon_sym_SLASH2] = ACTIONS(1513), + [anon_sym_mod2] = ACTIONS(1515), + [anon_sym_SLASH_SLASH2] = ACTIONS(1515), + [anon_sym_PLUS2] = ACTIONS(1513), + [anon_sym_bit_DASHshl2] = ACTIONS(1515), + [anon_sym_bit_DASHshr2] = ACTIONS(1515), + [anon_sym_bit_DASHand2] = ACTIONS(1515), + [anon_sym_bit_DASHxor2] = ACTIONS(1515), + [anon_sym_bit_DASHor2] = ACTIONS(1515), + [anon_sym_DOT_DOT2] = ACTIONS(1513), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1515), + [anon_sym_QMARK2] = ACTIONS(1515), + [anon_sym_BANG] = ACTIONS(1513), + [anon_sym_DOT2] = ACTIONS(1513), + [anon_sym_err_GT] = ACTIONS(1513), + [anon_sym_out_GT] = ACTIONS(1513), + [anon_sym_e_GT] = ACTIONS(1513), + [anon_sym_o_GT] = ACTIONS(1513), + [anon_sym_err_PLUSout_GT] = ACTIONS(1513), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1513), + [anon_sym_o_PLUSe_GT] = ACTIONS(1513), + [anon_sym_e_PLUSo_GT] = ACTIONS(1513), + [anon_sym_err_GT_GT] = ACTIONS(1515), + [anon_sym_out_GT_GT] = ACTIONS(1515), + [anon_sym_e_GT_GT] = ACTIONS(1515), + [anon_sym_o_GT_GT] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1515), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(481)] = { + [sym_cell_path] = STATE(961), + [sym_path] = STATE(712), + [sym_comment] = STATE(481), + [aux_sym__where_predicate_lhs_repeat1] = STATE(547), + [ts_builtin_sym_end] = ACTIONS(1655), + [anon_sym_in] = ACTIONS(1655), + [sym__newline] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_err_GT_PIPE] = ACTIONS(1655), + [anon_sym_out_GT_PIPE] = ACTIONS(1655), + [anon_sym_e_GT_PIPE] = ACTIONS(1655), + [anon_sym_o_GT_PIPE] = ACTIONS(1655), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1655), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1655), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1655), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1655), + [anon_sym_GT2] = ACTIONS(1657), + [anon_sym_DASH2] = ACTIONS(1655), + [anon_sym_STAR2] = ACTIONS(1657), + [anon_sym_and2] = ACTIONS(1655), + [anon_sym_xor2] = ACTIONS(1655), + [anon_sym_or2] = ACTIONS(1655), + [anon_sym_not_DASHin2] = ACTIONS(1655), + [anon_sym_has2] = ACTIONS(1655), + [anon_sym_not_DASHhas2] = ACTIONS(1655), + [anon_sym_starts_DASHwith2] = ACTIONS(1655), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1655), + [anon_sym_ends_DASHwith2] = ACTIONS(1655), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1655), + [anon_sym_EQ_EQ2] = ACTIONS(1655), + [anon_sym_BANG_EQ2] = ACTIONS(1655), + [anon_sym_LT2] = ACTIONS(1657), + [anon_sym_LT_EQ2] = ACTIONS(1655), + [anon_sym_GT_EQ2] = ACTIONS(1655), + [anon_sym_EQ_TILDE2] = ACTIONS(1655), + [anon_sym_BANG_TILDE2] = ACTIONS(1655), + [anon_sym_like2] = ACTIONS(1655), + [anon_sym_not_DASHlike2] = ACTIONS(1655), + [anon_sym_STAR_STAR2] = ACTIONS(1655), + [anon_sym_PLUS_PLUS2] = ACTIONS(1655), + [anon_sym_SLASH2] = ACTIONS(1657), + [anon_sym_mod2] = ACTIONS(1655), + [anon_sym_SLASH_SLASH2] = ACTIONS(1655), + [anon_sym_PLUS2] = ACTIONS(1657), + [anon_sym_bit_DASHshl2] = ACTIONS(1655), + [anon_sym_bit_DASHshr2] = ACTIONS(1655), + [anon_sym_bit_DASHand2] = ACTIONS(1655), + [anon_sym_bit_DASHxor2] = ACTIONS(1655), + [anon_sym_bit_DASHor2] = ACTIONS(1655), + [anon_sym_DOT_DOT2] = ACTIONS(1657), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1655), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1655), + [anon_sym_DOT2] = ACTIONS(1852), + [anon_sym_err_GT] = ACTIONS(1657), + [anon_sym_out_GT] = ACTIONS(1657), + [anon_sym_e_GT] = ACTIONS(1657), + [anon_sym_o_GT] = ACTIONS(1657), + [anon_sym_err_PLUSout_GT] = ACTIONS(1657), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1657), + [anon_sym_o_PLUSe_GT] = ACTIONS(1657), + [anon_sym_e_PLUSo_GT] = ACTIONS(1657), + [anon_sym_err_GT_GT] = ACTIONS(1655), + [anon_sym_out_GT_GT] = ACTIONS(1655), + [anon_sym_e_GT_GT] = ACTIONS(1655), + [anon_sym_o_GT_GT] = ACTIONS(1655), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1655), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1655), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1655), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1655), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(482)] = { + [sym_comment] = STATE(482), + [ts_builtin_sym_end] = ACTIONS(1519), + [anon_sym_in] = ACTIONS(1519), + [sym__newline] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_err_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_GT_PIPE] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1519), + [anon_sym_GT2] = ACTIONS(1517), + [anon_sym_DASH2] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1519), + [anon_sym_STAR2] = ACTIONS(1517), + [anon_sym_and2] = ACTIONS(1519), + [anon_sym_xor2] = ACTIONS(1519), + [anon_sym_or2] = ACTIONS(1519), + [anon_sym_not_DASHin2] = ACTIONS(1519), + [anon_sym_has2] = ACTIONS(1519), + [anon_sym_not_DASHhas2] = ACTIONS(1519), + [anon_sym_starts_DASHwith2] = ACTIONS(1519), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1519), + [anon_sym_ends_DASHwith2] = ACTIONS(1519), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1519), + [anon_sym_EQ_EQ2] = ACTIONS(1519), + [anon_sym_BANG_EQ2] = ACTIONS(1519), + [anon_sym_LT2] = ACTIONS(1517), + [anon_sym_LT_EQ2] = ACTIONS(1519), + [anon_sym_GT_EQ2] = ACTIONS(1519), + [anon_sym_EQ_TILDE2] = ACTIONS(1519), + [anon_sym_BANG_TILDE2] = ACTIONS(1519), + [anon_sym_like2] = ACTIONS(1519), + [anon_sym_not_DASHlike2] = ACTIONS(1519), + [anon_sym_STAR_STAR2] = ACTIONS(1519), + [anon_sym_PLUS_PLUS2] = ACTIONS(1519), + [anon_sym_SLASH2] = ACTIONS(1517), + [anon_sym_mod2] = ACTIONS(1519), + [anon_sym_SLASH_SLASH2] = ACTIONS(1519), + [anon_sym_PLUS2] = ACTIONS(1517), + [anon_sym_bit_DASHshl2] = ACTIONS(1519), + [anon_sym_bit_DASHshr2] = ACTIONS(1519), + [anon_sym_bit_DASHand2] = ACTIONS(1519), + [anon_sym_bit_DASHxor2] = ACTIONS(1519), + [anon_sym_bit_DASHor2] = ACTIONS(1519), + [anon_sym_DOT_DOT2] = ACTIONS(1517), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1519), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1519), + [anon_sym_QMARK2] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1517), + [anon_sym_DOT2] = ACTIONS(1517), + [anon_sym_err_GT] = ACTIONS(1517), + [anon_sym_out_GT] = ACTIONS(1517), + [anon_sym_e_GT] = ACTIONS(1517), + [anon_sym_o_GT] = ACTIONS(1517), + [anon_sym_err_PLUSout_GT] = ACTIONS(1517), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1517), + [anon_sym_o_PLUSe_GT] = ACTIONS(1517), + [anon_sym_e_PLUSo_GT] = ACTIONS(1517), + [anon_sym_err_GT_GT] = ACTIONS(1519), + [anon_sym_out_GT_GT] = ACTIONS(1519), + [anon_sym_e_GT_GT] = ACTIONS(1519), + [anon_sym_o_GT_GT] = ACTIONS(1519), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1519), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1519), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1519), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(483)] = { + [sym_cell_path] = STATE(942), + [sym_path] = STATE(435), + [sym_comment] = STATE(483), + [aux_sym__where_predicate_lhs_repeat1] = STATE(416), + [anon_sym_in] = ACTIONS(1854), + [sym__newline] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1854), + [anon_sym_PIPE] = ACTIONS(1854), + [anon_sym_err_GT_PIPE] = ACTIONS(1854), + [anon_sym_out_GT_PIPE] = ACTIONS(1854), + [anon_sym_e_GT_PIPE] = ACTIONS(1854), + [anon_sym_o_GT_PIPE] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1854), + [anon_sym_RPAREN] = ACTIONS(1854), + [anon_sym_GT2] = ACTIONS(1856), + [anon_sym_DASH2] = ACTIONS(1854), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(1854), + [anon_sym_EQ_GT] = ACTIONS(1854), + [anon_sym_STAR2] = ACTIONS(1856), + [anon_sym_and2] = ACTIONS(1854), + [anon_sym_xor2] = ACTIONS(1854), + [anon_sym_or2] = ACTIONS(1854), + [anon_sym_not_DASHin2] = ACTIONS(1854), + [anon_sym_has2] = ACTIONS(1854), + [anon_sym_not_DASHhas2] = ACTIONS(1854), + [anon_sym_starts_DASHwith2] = ACTIONS(1854), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1854), + [anon_sym_ends_DASHwith2] = ACTIONS(1854), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1854), + [anon_sym_EQ_EQ2] = ACTIONS(1854), + [anon_sym_BANG_EQ2] = ACTIONS(1854), + [anon_sym_LT2] = ACTIONS(1856), + [anon_sym_LT_EQ2] = ACTIONS(1854), + [anon_sym_GT_EQ2] = ACTIONS(1854), + [anon_sym_EQ_TILDE2] = ACTIONS(1854), + [anon_sym_BANG_TILDE2] = ACTIONS(1854), + [anon_sym_like2] = ACTIONS(1854), + [anon_sym_not_DASHlike2] = ACTIONS(1854), + [anon_sym_STAR_STAR2] = ACTIONS(1854), + [anon_sym_PLUS_PLUS2] = ACTIONS(1854), + [anon_sym_SLASH2] = ACTIONS(1856), + [anon_sym_mod2] = ACTIONS(1854), + [anon_sym_SLASH_SLASH2] = ACTIONS(1854), + [anon_sym_PLUS2] = ACTIONS(1856), + [anon_sym_bit_DASHshl2] = ACTIONS(1854), + [anon_sym_bit_DASHshr2] = ACTIONS(1854), + [anon_sym_bit_DASHand2] = ACTIONS(1854), + [anon_sym_bit_DASHxor2] = ACTIONS(1854), + [anon_sym_bit_DASHor2] = ACTIONS(1854), + [anon_sym_DOT2] = ACTIONS(1842), + [anon_sym_err_GT] = ACTIONS(1856), + [anon_sym_out_GT] = ACTIONS(1856), + [anon_sym_e_GT] = ACTIONS(1856), + [anon_sym_o_GT] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT] = ACTIONS(1856), + [anon_sym_err_GT_GT] = ACTIONS(1854), + [anon_sym_out_GT_GT] = ACTIONS(1854), + [anon_sym_e_GT_GT] = ACTIONS(1854), + [anon_sym_o_GT_GT] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1854), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(484)] = { + [sym_comment] = STATE(484), + [ts_builtin_sym_end] = ACTIONS(1511), + [anon_sym_in] = ACTIONS(1511), + [sym__newline] = ACTIONS(1511), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_err_GT_PIPE] = ACTIONS(1511), + [anon_sym_out_GT_PIPE] = ACTIONS(1511), + [anon_sym_e_GT_PIPE] = ACTIONS(1511), + [anon_sym_o_GT_PIPE] = ACTIONS(1511), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1511), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1511), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1511), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1511), + [anon_sym_GT2] = ACTIONS(1509), + [anon_sym_DASH2] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_STAR2] = ACTIONS(1509), + [anon_sym_and2] = ACTIONS(1511), + [anon_sym_xor2] = ACTIONS(1511), + [anon_sym_or2] = ACTIONS(1511), + [anon_sym_not_DASHin2] = ACTIONS(1511), + [anon_sym_has2] = ACTIONS(1511), + [anon_sym_not_DASHhas2] = ACTIONS(1511), + [anon_sym_starts_DASHwith2] = ACTIONS(1511), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1511), + [anon_sym_ends_DASHwith2] = ACTIONS(1511), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1511), + [anon_sym_EQ_EQ2] = ACTIONS(1511), + [anon_sym_BANG_EQ2] = ACTIONS(1511), + [anon_sym_LT2] = ACTIONS(1509), + [anon_sym_LT_EQ2] = ACTIONS(1511), + [anon_sym_GT_EQ2] = ACTIONS(1511), + [anon_sym_EQ_TILDE2] = ACTIONS(1511), + [anon_sym_BANG_TILDE2] = ACTIONS(1511), + [anon_sym_like2] = ACTIONS(1511), + [anon_sym_not_DASHlike2] = ACTIONS(1511), + [anon_sym_STAR_STAR2] = ACTIONS(1511), + [anon_sym_PLUS_PLUS2] = ACTIONS(1511), + [anon_sym_SLASH2] = ACTIONS(1509), + [anon_sym_mod2] = ACTIONS(1511), + [anon_sym_SLASH_SLASH2] = ACTIONS(1511), + [anon_sym_PLUS2] = ACTIONS(1509), + [anon_sym_bit_DASHshl2] = ACTIONS(1511), + [anon_sym_bit_DASHshr2] = ACTIONS(1511), + [anon_sym_bit_DASHand2] = ACTIONS(1511), + [anon_sym_bit_DASHxor2] = ACTIONS(1511), + [anon_sym_bit_DASHor2] = ACTIONS(1511), + [anon_sym_DOT_DOT2] = ACTIONS(1509), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1511), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1511), + [anon_sym_QMARK2] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1509), + [anon_sym_DOT2] = ACTIONS(1509), + [anon_sym_err_GT] = ACTIONS(1509), + [anon_sym_out_GT] = ACTIONS(1509), + [anon_sym_e_GT] = ACTIONS(1509), + [anon_sym_o_GT] = ACTIONS(1509), + [anon_sym_err_PLUSout_GT] = ACTIONS(1509), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1509), + [anon_sym_o_PLUSe_GT] = ACTIONS(1509), + [anon_sym_e_PLUSo_GT] = ACTIONS(1509), + [anon_sym_err_GT_GT] = ACTIONS(1511), + [anon_sym_out_GT_GT] = ACTIONS(1511), + [anon_sym_e_GT_GT] = ACTIONS(1511), + [anon_sym_o_GT_GT] = ACTIONS(1511), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1511), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1511), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1511), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1511), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(485)] = { + [sym_comment] = STATE(485), + [anon_sym_in] = ACTIONS(1738), + [sym__newline] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_err_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_GT_PIPE] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_RPAREN] = ACTIONS(1738), + [anon_sym_GT2] = ACTIONS(1740), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1738), + [anon_sym_STAR2] = ACTIONS(1740), + [anon_sym_and2] = ACTIONS(1738), + [anon_sym_xor2] = ACTIONS(1738), + [anon_sym_or2] = ACTIONS(1738), + [anon_sym_not_DASHin2] = ACTIONS(1738), + [anon_sym_has2] = ACTIONS(1738), + [anon_sym_not_DASHhas2] = ACTIONS(1738), + [anon_sym_starts_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), + [anon_sym_ends_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), + [anon_sym_EQ_EQ2] = ACTIONS(1738), + [anon_sym_BANG_EQ2] = ACTIONS(1738), + [anon_sym_LT2] = ACTIONS(1740), + [anon_sym_LT_EQ2] = ACTIONS(1738), + [anon_sym_GT_EQ2] = ACTIONS(1738), + [anon_sym_EQ_TILDE2] = ACTIONS(1738), + [anon_sym_BANG_TILDE2] = ACTIONS(1738), + [anon_sym_like2] = ACTIONS(1738), + [anon_sym_not_DASHlike2] = ACTIONS(1738), + [anon_sym_LPAREN2] = ACTIONS(1738), + [anon_sym_STAR_STAR2] = ACTIONS(1738), + [anon_sym_PLUS_PLUS2] = ACTIONS(1738), + [anon_sym_SLASH2] = ACTIONS(1740), + [anon_sym_mod2] = ACTIONS(1738), + [anon_sym_SLASH_SLASH2] = ACTIONS(1738), + [anon_sym_PLUS2] = ACTIONS(1740), + [anon_sym_bit_DASHshl2] = ACTIONS(1738), + [anon_sym_bit_DASHshr2] = ACTIONS(1738), + [anon_sym_bit_DASHand2] = ACTIONS(1738), + [anon_sym_bit_DASHxor2] = ACTIONS(1738), + [anon_sym_bit_DASHor2] = ACTIONS(1738), + [anon_sym_DOT_DOT2] = ACTIONS(1740), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1738), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1738), + [anon_sym_err_GT] = ACTIONS(1740), + [anon_sym_out_GT] = ACTIONS(1740), + [anon_sym_e_GT] = ACTIONS(1740), + [anon_sym_o_GT] = ACTIONS(1740), + [anon_sym_err_PLUSout_GT] = ACTIONS(1740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1740), + [anon_sym_o_PLUSe_GT] = ACTIONS(1740), + [anon_sym_e_PLUSo_GT] = ACTIONS(1740), + [anon_sym_err_GT_GT] = ACTIONS(1738), + [anon_sym_out_GT_GT] = ACTIONS(1738), + [anon_sym_e_GT_GT] = ACTIONS(1738), + [anon_sym_o_GT_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), + [sym__unquoted_pattern] = ACTIONS(1740), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(486)] = { + [sym_comment] = STATE(486), + [ts_builtin_sym_end] = ACTIONS(1460), + [anon_sym_in] = ACTIONS(1460), + [sym__newline] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1460), + [anon_sym_PIPE] = ACTIONS(1460), + [anon_sym_err_GT_PIPE] = ACTIONS(1460), + [anon_sym_out_GT_PIPE] = ACTIONS(1460), + [anon_sym_e_GT_PIPE] = ACTIONS(1460), + [anon_sym_o_GT_PIPE] = ACTIONS(1460), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1460), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1460), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1460), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1460), + [anon_sym_GT2] = ACTIONS(1458), + [anon_sym_DASH2] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_STAR2] = ACTIONS(1458), + [anon_sym_and2] = ACTIONS(1460), + [anon_sym_xor2] = ACTIONS(1460), + [anon_sym_or2] = ACTIONS(1460), + [anon_sym_not_DASHin2] = ACTIONS(1460), + [anon_sym_has2] = ACTIONS(1460), + [anon_sym_not_DASHhas2] = ACTIONS(1460), + [anon_sym_starts_DASHwith2] = ACTIONS(1460), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1460), + [anon_sym_ends_DASHwith2] = ACTIONS(1460), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1460), + [anon_sym_EQ_EQ2] = ACTIONS(1460), + [anon_sym_BANG_EQ2] = ACTIONS(1460), + [anon_sym_LT2] = ACTIONS(1458), + [anon_sym_LT_EQ2] = ACTIONS(1460), + [anon_sym_GT_EQ2] = ACTIONS(1460), + [anon_sym_EQ_TILDE2] = ACTIONS(1460), + [anon_sym_BANG_TILDE2] = ACTIONS(1460), + [anon_sym_like2] = ACTIONS(1460), + [anon_sym_not_DASHlike2] = ACTIONS(1460), + [anon_sym_STAR_STAR2] = ACTIONS(1460), + [anon_sym_PLUS_PLUS2] = ACTIONS(1460), + [anon_sym_SLASH2] = ACTIONS(1458), + [anon_sym_mod2] = ACTIONS(1460), + [anon_sym_SLASH_SLASH2] = ACTIONS(1460), + [anon_sym_PLUS2] = ACTIONS(1458), + [anon_sym_bit_DASHshl2] = ACTIONS(1460), + [anon_sym_bit_DASHshr2] = ACTIONS(1460), + [anon_sym_bit_DASHand2] = ACTIONS(1460), + [anon_sym_bit_DASHxor2] = ACTIONS(1460), + [anon_sym_bit_DASHor2] = ACTIONS(1460), + [anon_sym_DOT_DOT2] = ACTIONS(1458), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1460), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1460), + [anon_sym_QMARK2] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_DOT2] = ACTIONS(1458), + [anon_sym_err_GT] = ACTIONS(1458), + [anon_sym_out_GT] = ACTIONS(1458), + [anon_sym_e_GT] = ACTIONS(1458), + [anon_sym_o_GT] = ACTIONS(1458), + [anon_sym_err_PLUSout_GT] = ACTIONS(1458), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1458), + [anon_sym_o_PLUSe_GT] = ACTIONS(1458), + [anon_sym_e_PLUSo_GT] = ACTIONS(1458), + [anon_sym_err_GT_GT] = ACTIONS(1460), + [anon_sym_out_GT_GT] = ACTIONS(1460), + [anon_sym_e_GT_GT] = ACTIONS(1460), + [anon_sym_o_GT_GT] = ACTIONS(1460), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1460), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1460), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1460), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1460), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(487)] = { + [sym__path_suffix] = STATE(754), + [sym_comment] = STATE(487), + [ts_builtin_sym_end] = ACTIONS(1440), + [anon_sym_in] = ACTIONS(1440), + [sym__newline] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1440), + [anon_sym_PIPE] = ACTIONS(1440), + [anon_sym_err_GT_PIPE] = ACTIONS(1440), + [anon_sym_out_GT_PIPE] = ACTIONS(1440), + [anon_sym_e_GT_PIPE] = ACTIONS(1440), + [anon_sym_o_GT_PIPE] = ACTIONS(1440), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), + [anon_sym_GT2] = ACTIONS(1438), + [anon_sym_DASH2] = ACTIONS(1440), + [anon_sym_STAR2] = ACTIONS(1438), + [anon_sym_and2] = ACTIONS(1440), + [anon_sym_xor2] = ACTIONS(1440), + [anon_sym_or2] = ACTIONS(1440), + [anon_sym_not_DASHin2] = ACTIONS(1440), + [anon_sym_has2] = ACTIONS(1440), + [anon_sym_not_DASHhas2] = ACTIONS(1440), + [anon_sym_starts_DASHwith2] = ACTIONS(1440), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), + [anon_sym_ends_DASHwith2] = ACTIONS(1440), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), + [anon_sym_EQ_EQ2] = ACTIONS(1440), + [anon_sym_BANG_EQ2] = ACTIONS(1440), + [anon_sym_LT2] = ACTIONS(1438), + [anon_sym_LT_EQ2] = ACTIONS(1440), + [anon_sym_GT_EQ2] = ACTIONS(1440), + [anon_sym_EQ_TILDE2] = ACTIONS(1440), + [anon_sym_BANG_TILDE2] = ACTIONS(1440), + [anon_sym_like2] = ACTIONS(1440), + [anon_sym_not_DASHlike2] = ACTIONS(1440), + [anon_sym_STAR_STAR2] = ACTIONS(1440), + [anon_sym_PLUS_PLUS2] = ACTIONS(1440), + [anon_sym_SLASH2] = ACTIONS(1438), + [anon_sym_mod2] = ACTIONS(1440), + [anon_sym_SLASH_SLASH2] = ACTIONS(1440), + [anon_sym_PLUS2] = ACTIONS(1438), + [anon_sym_bit_DASHshl2] = ACTIONS(1440), + [anon_sym_bit_DASHshr2] = ACTIONS(1440), + [anon_sym_bit_DASHand2] = ACTIONS(1440), + [anon_sym_bit_DASHxor2] = ACTIONS(1440), + [anon_sym_bit_DASHor2] = ACTIONS(1440), + [anon_sym_DOT_DOT2] = ACTIONS(1438), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), + [anon_sym_QMARK2] = ACTIONS(1858), + [anon_sym_BANG] = ACTIONS(1860), + [anon_sym_DOT2] = ACTIONS(1438), + [anon_sym_err_GT] = ACTIONS(1438), + [anon_sym_out_GT] = ACTIONS(1438), + [anon_sym_e_GT] = ACTIONS(1438), + [anon_sym_o_GT] = ACTIONS(1438), + [anon_sym_err_PLUSout_GT] = ACTIONS(1438), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), + [anon_sym_o_PLUSe_GT] = ACTIONS(1438), + [anon_sym_e_PLUSo_GT] = ACTIONS(1438), + [anon_sym_err_GT_GT] = ACTIONS(1440), + [anon_sym_out_GT_GT] = ACTIONS(1440), + [anon_sym_e_GT_GT] = ACTIONS(1440), + [anon_sym_o_GT_GT] = ACTIONS(1440), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(488)] = { + [sym_cell_path] = STATE(927), + [sym_path] = STATE(435), + [sym_comment] = STATE(488), + [aux_sym__where_predicate_lhs_repeat1] = STATE(416), + [anon_sym_in] = ACTIONS(1862), + [sym__newline] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_PIPE] = ACTIONS(1862), + [anon_sym_err_GT_PIPE] = ACTIONS(1862), + [anon_sym_out_GT_PIPE] = ACTIONS(1862), + [anon_sym_e_GT_PIPE] = ACTIONS(1862), + [anon_sym_o_GT_PIPE] = ACTIONS(1862), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1862), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1862), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1862), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_GT2] = ACTIONS(1864), + [anon_sym_DASH2] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_RBRACE] = ACTIONS(1862), + [anon_sym_EQ_GT] = ACTIONS(1862), + [anon_sym_STAR2] = ACTIONS(1864), + [anon_sym_and2] = ACTIONS(1862), + [anon_sym_xor2] = ACTIONS(1862), + [anon_sym_or2] = ACTIONS(1862), + [anon_sym_not_DASHin2] = ACTIONS(1862), + [anon_sym_has2] = ACTIONS(1862), + [anon_sym_not_DASHhas2] = ACTIONS(1862), + [anon_sym_starts_DASHwith2] = ACTIONS(1862), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1862), + [anon_sym_ends_DASHwith2] = ACTIONS(1862), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1862), + [anon_sym_EQ_EQ2] = ACTIONS(1862), + [anon_sym_BANG_EQ2] = ACTIONS(1862), + [anon_sym_LT2] = ACTIONS(1864), + [anon_sym_LT_EQ2] = ACTIONS(1862), + [anon_sym_GT_EQ2] = ACTIONS(1862), + [anon_sym_EQ_TILDE2] = ACTIONS(1862), + [anon_sym_BANG_TILDE2] = ACTIONS(1862), [anon_sym_like2] = ACTIONS(1862), [anon_sym_not_DASHlike2] = ACTIONS(1862), [anon_sym_STAR_STAR2] = ACTIONS(1862), @@ -85206,7 +85561,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1862), [anon_sym_bit_DASHxor2] = ACTIONS(1862), [anon_sym_bit_DASHor2] = ACTIONS(1862), - [anon_sym_DOT2] = ACTIONS(1856), + [anon_sym_DOT2] = ACTIONS(1842), [anon_sym_err_GT] = ACTIONS(1864), [anon_sym_out_GT] = ACTIONS(1864), [anon_sym_e_GT] = ACTIONS(1864), @@ -85225,157 +85580,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1862), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(487)] = { - [sym_comment] = STATE(487), - [ts_builtin_sym_end] = ACTIONS(1545), - [anon_sym_in] = ACTIONS(1545), - [sym__newline] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_err_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_GT_PIPE] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1545), - [anon_sym_GT2] = ACTIONS(1543), - [anon_sym_DASH2] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_STAR2] = ACTIONS(1543), - [anon_sym_and2] = ACTIONS(1545), - [anon_sym_xor2] = ACTIONS(1545), - [anon_sym_or2] = ACTIONS(1545), - [anon_sym_not_DASHin2] = ACTIONS(1545), - [anon_sym_has2] = ACTIONS(1545), - [anon_sym_not_DASHhas2] = ACTIONS(1545), - [anon_sym_starts_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1545), - [anon_sym_ends_DASHwith2] = ACTIONS(1545), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1545), - [anon_sym_EQ_EQ2] = ACTIONS(1545), - [anon_sym_BANG_EQ2] = ACTIONS(1545), - [anon_sym_LT2] = ACTIONS(1543), - [anon_sym_LT_EQ2] = ACTIONS(1545), - [anon_sym_GT_EQ2] = ACTIONS(1545), - [anon_sym_EQ_TILDE2] = ACTIONS(1545), - [anon_sym_BANG_TILDE2] = ACTIONS(1545), - [anon_sym_like2] = ACTIONS(1545), - [anon_sym_not_DASHlike2] = ACTIONS(1545), - [anon_sym_STAR_STAR2] = ACTIONS(1545), - [anon_sym_PLUS_PLUS2] = ACTIONS(1545), - [anon_sym_SLASH2] = ACTIONS(1543), - [anon_sym_mod2] = ACTIONS(1545), - [anon_sym_SLASH_SLASH2] = ACTIONS(1545), - [anon_sym_PLUS2] = ACTIONS(1543), - [anon_sym_bit_DASHshl2] = ACTIONS(1545), - [anon_sym_bit_DASHshr2] = ACTIONS(1545), - [anon_sym_bit_DASHand2] = ACTIONS(1545), - [anon_sym_bit_DASHxor2] = ACTIONS(1545), - [anon_sym_bit_DASHor2] = ACTIONS(1545), - [anon_sym_DOT_DOT2] = ACTIONS(1543), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1545), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1545), - [anon_sym_QMARK2] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_DOT2] = ACTIONS(1543), - [anon_sym_err_GT] = ACTIONS(1543), - [anon_sym_out_GT] = ACTIONS(1543), - [anon_sym_e_GT] = ACTIONS(1543), - [anon_sym_o_GT] = ACTIONS(1543), - [anon_sym_err_PLUSout_GT] = ACTIONS(1543), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1543), - [anon_sym_o_PLUSe_GT] = ACTIONS(1543), - [anon_sym_e_PLUSo_GT] = ACTIONS(1543), - [anon_sym_err_GT_GT] = ACTIONS(1545), - [anon_sym_out_GT_GT] = ACTIONS(1545), - [anon_sym_e_GT_GT] = ACTIONS(1545), - [anon_sym_o_GT_GT] = ACTIONS(1545), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1545), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1545), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1545), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1545), + [STATE(489)] = { + [sym_comment] = STATE(489), + [ts_builtin_sym_end] = ACTIONS(876), + [anon_sym_in] = ACTIONS(876), + [sym__newline] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(876), + [anon_sym_err_GT_PIPE] = ACTIONS(876), + [anon_sym_out_GT_PIPE] = ACTIONS(876), + [anon_sym_e_GT_PIPE] = ACTIONS(876), + [anon_sym_o_GT_PIPE] = ACTIONS(876), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(876), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(876), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(876), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(876), + [anon_sym_GT2] = ACTIONS(874), + [anon_sym_DASH2] = ACTIONS(876), + [anon_sym_STAR2] = ACTIONS(874), + [anon_sym_and2] = ACTIONS(876), + [anon_sym_xor2] = ACTIONS(876), + [anon_sym_or2] = ACTIONS(876), + [anon_sym_not_DASHin2] = ACTIONS(876), + [anon_sym_has2] = ACTIONS(876), + [anon_sym_not_DASHhas2] = ACTIONS(876), + [anon_sym_starts_DASHwith2] = ACTIONS(876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(876), + [anon_sym_ends_DASHwith2] = ACTIONS(876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(876), + [anon_sym_EQ_EQ2] = ACTIONS(876), + [anon_sym_BANG_EQ2] = ACTIONS(876), + [anon_sym_LT2] = ACTIONS(874), + [anon_sym_LT_EQ2] = ACTIONS(876), + [anon_sym_GT_EQ2] = ACTIONS(876), + [anon_sym_EQ_TILDE2] = ACTIONS(876), + [anon_sym_BANG_TILDE2] = ACTIONS(876), + [anon_sym_like2] = ACTIONS(876), + [anon_sym_not_DASHlike2] = ACTIONS(876), + [anon_sym_LPAREN2] = ACTIONS(876), + [anon_sym_STAR_STAR2] = ACTIONS(876), + [anon_sym_PLUS_PLUS2] = ACTIONS(876), + [anon_sym_SLASH2] = ACTIONS(874), + [anon_sym_mod2] = ACTIONS(876), + [anon_sym_SLASH_SLASH2] = ACTIONS(876), + [anon_sym_PLUS2] = ACTIONS(874), + [anon_sym_bit_DASHshl2] = ACTIONS(876), + [anon_sym_bit_DASHshr2] = ACTIONS(876), + [anon_sym_bit_DASHand2] = ACTIONS(876), + [anon_sym_bit_DASHxor2] = ACTIONS(876), + [anon_sym_bit_DASHor2] = ACTIONS(876), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(874), + [sym_duration_unit] = ACTIONS(876), + [anon_sym_err_GT] = ACTIONS(874), + [anon_sym_out_GT] = ACTIONS(874), + [anon_sym_e_GT] = ACTIONS(874), + [anon_sym_o_GT] = ACTIONS(874), + [anon_sym_err_PLUSout_GT] = ACTIONS(874), + [anon_sym_out_PLUSerr_GT] = ACTIONS(874), + [anon_sym_o_PLUSe_GT] = ACTIONS(874), + [anon_sym_e_PLUSo_GT] = ACTIONS(874), + [anon_sym_err_GT_GT] = ACTIONS(876), + [anon_sym_out_GT_GT] = ACTIONS(876), + [anon_sym_e_GT_GT] = ACTIONS(876), + [anon_sym_o_GT_GT] = ACTIONS(876), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(876), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(876), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(876), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(876), + [sym__unquoted_pattern] = ACTIONS(874), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(488)] = { - [sym_comment] = STATE(488), - [ts_builtin_sym_end] = ACTIONS(1472), - [anon_sym_in] = ACTIONS(1472), - [sym__newline] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_err_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_GT_PIPE] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1472), - [anon_sym_GT2] = ACTIONS(1470), - [anon_sym_DASH2] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1472), - [anon_sym_STAR2] = ACTIONS(1470), - [anon_sym_and2] = ACTIONS(1472), - [anon_sym_xor2] = ACTIONS(1472), - [anon_sym_or2] = ACTIONS(1472), - [anon_sym_not_DASHin2] = ACTIONS(1472), - [anon_sym_has2] = ACTIONS(1472), - [anon_sym_not_DASHhas2] = ACTIONS(1472), - [anon_sym_starts_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1472), - [anon_sym_ends_DASHwith2] = ACTIONS(1472), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1472), - [anon_sym_EQ_EQ2] = ACTIONS(1472), - [anon_sym_BANG_EQ2] = ACTIONS(1472), - [anon_sym_LT2] = ACTIONS(1470), - [anon_sym_LT_EQ2] = ACTIONS(1472), - [anon_sym_GT_EQ2] = ACTIONS(1472), - [anon_sym_EQ_TILDE2] = ACTIONS(1472), - [anon_sym_BANG_TILDE2] = ACTIONS(1472), - [anon_sym_like2] = ACTIONS(1472), - [anon_sym_not_DASHlike2] = ACTIONS(1472), - [anon_sym_STAR_STAR2] = ACTIONS(1472), - [anon_sym_PLUS_PLUS2] = ACTIONS(1472), - [anon_sym_SLASH2] = ACTIONS(1470), - [anon_sym_mod2] = ACTIONS(1472), - [anon_sym_SLASH_SLASH2] = ACTIONS(1472), - [anon_sym_PLUS2] = ACTIONS(1470), - [anon_sym_bit_DASHshl2] = ACTIONS(1472), - [anon_sym_bit_DASHshr2] = ACTIONS(1472), - [anon_sym_bit_DASHand2] = ACTIONS(1472), - [anon_sym_bit_DASHxor2] = ACTIONS(1472), - [anon_sym_bit_DASHor2] = ACTIONS(1472), - [anon_sym_DOT_DOT2] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1472), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1472), - [anon_sym_QMARK2] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_DOT2] = ACTIONS(1470), - [anon_sym_err_GT] = ACTIONS(1470), - [anon_sym_out_GT] = ACTIONS(1470), - [anon_sym_e_GT] = ACTIONS(1470), - [anon_sym_o_GT] = ACTIONS(1470), - [anon_sym_err_PLUSout_GT] = ACTIONS(1470), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1470), - [anon_sym_o_PLUSe_GT] = ACTIONS(1470), - [anon_sym_e_PLUSo_GT] = ACTIONS(1470), - [anon_sym_err_GT_GT] = ACTIONS(1472), - [anon_sym_out_GT_GT] = ACTIONS(1472), - [anon_sym_e_GT_GT] = ACTIONS(1472), - [anon_sym_o_GT_GT] = ACTIONS(1472), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1472), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1472), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1472), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1472), + [STATE(490)] = { + [sym_comment] = STATE(490), + [ts_builtin_sym_end] = ACTIONS(1507), + [anon_sym_in] = ACTIONS(1507), + [sym__newline] = ACTIONS(1507), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_PIPE] = ACTIONS(1507), + [anon_sym_err_GT_PIPE] = ACTIONS(1507), + [anon_sym_out_GT_PIPE] = ACTIONS(1507), + [anon_sym_e_GT_PIPE] = ACTIONS(1507), + [anon_sym_o_GT_PIPE] = ACTIONS(1507), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1507), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1507), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1507), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1507), + [anon_sym_GT2] = ACTIONS(1505), + [anon_sym_DASH2] = ACTIONS(1507), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_STAR2] = ACTIONS(1505), + [anon_sym_and2] = ACTIONS(1507), + [anon_sym_xor2] = ACTIONS(1507), + [anon_sym_or2] = ACTIONS(1507), + [anon_sym_not_DASHin2] = ACTIONS(1507), + [anon_sym_has2] = ACTIONS(1507), + [anon_sym_not_DASHhas2] = ACTIONS(1507), + [anon_sym_starts_DASHwith2] = ACTIONS(1507), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1507), + [anon_sym_ends_DASHwith2] = ACTIONS(1507), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1507), + [anon_sym_EQ_EQ2] = ACTIONS(1507), + [anon_sym_BANG_EQ2] = ACTIONS(1507), + [anon_sym_LT2] = ACTIONS(1505), + [anon_sym_LT_EQ2] = ACTIONS(1507), + [anon_sym_GT_EQ2] = ACTIONS(1507), + [anon_sym_EQ_TILDE2] = ACTIONS(1507), + [anon_sym_BANG_TILDE2] = ACTIONS(1507), + [anon_sym_like2] = ACTIONS(1507), + [anon_sym_not_DASHlike2] = ACTIONS(1507), + [anon_sym_STAR_STAR2] = ACTIONS(1507), + [anon_sym_PLUS_PLUS2] = ACTIONS(1507), + [anon_sym_SLASH2] = ACTIONS(1505), + [anon_sym_mod2] = ACTIONS(1507), + [anon_sym_SLASH_SLASH2] = ACTIONS(1507), + [anon_sym_PLUS2] = ACTIONS(1505), + [anon_sym_bit_DASHshl2] = ACTIONS(1507), + [anon_sym_bit_DASHshr2] = ACTIONS(1507), + [anon_sym_bit_DASHand2] = ACTIONS(1507), + [anon_sym_bit_DASHxor2] = ACTIONS(1507), + [anon_sym_bit_DASHor2] = ACTIONS(1507), + [anon_sym_DOT_DOT2] = ACTIONS(1505), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1507), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1507), + [anon_sym_QMARK2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_DOT2] = ACTIONS(1505), + [anon_sym_err_GT] = ACTIONS(1505), + [anon_sym_out_GT] = ACTIONS(1505), + [anon_sym_e_GT] = ACTIONS(1505), + [anon_sym_o_GT] = ACTIONS(1505), + [anon_sym_err_PLUSout_GT] = ACTIONS(1505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1505), + [anon_sym_o_PLUSe_GT] = ACTIONS(1505), + [anon_sym_e_PLUSo_GT] = ACTIONS(1505), + [anon_sym_err_GT_GT] = ACTIONS(1507), + [anon_sym_out_GT_GT] = ACTIONS(1507), + [anon_sym_e_GT_GT] = ACTIONS(1507), + [anon_sym_o_GT_GT] = ACTIONS(1507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1507), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(489)] = { - [sym_cell_path] = STATE(899), - [sym_path] = STATE(441), - [sym_comment] = STATE(489), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), + [STATE(491)] = { + [sym_comment] = STATE(491), + [anon_sym_if] = ACTIONS(1866), [anon_sym_in] = ACTIONS(1866), [sym__newline] = ACTIONS(1866), [anon_sym_SEMI] = ACTIONS(1866), @@ -85425,7 +85778,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1866), [anon_sym_bit_DASHxor2] = ACTIONS(1866), [anon_sym_bit_DASHor2] = ACTIONS(1866), - [anon_sym_DOT2] = ACTIONS(1856), + [anon_sym_DOT_DOT2] = ACTIONS(1868), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1866), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1866), [anon_sym_err_GT] = ACTIONS(1868), [anon_sym_out_GT] = ACTIONS(1868), [anon_sym_e_GT] = ACTIONS(1868), @@ -85444,373 +85799,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(490)] = { - [sym_comment] = STATE(490), - [anon_sym_in] = ACTIONS(1870), - [sym__newline] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_err_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_GT_PIPE] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1870), - [anon_sym_RPAREN] = ACTIONS(1870), - [anon_sym_GT2] = ACTIONS(1872), - [anon_sym_DASH2] = ACTIONS(1870), - [anon_sym_LBRACE] = ACTIONS(1870), - [anon_sym_RBRACE] = ACTIONS(1870), - [anon_sym_STAR2] = ACTIONS(1872), - [anon_sym_and2] = ACTIONS(1870), - [anon_sym_xor2] = ACTIONS(1870), - [anon_sym_or2] = ACTIONS(1870), - [anon_sym_not_DASHin2] = ACTIONS(1870), - [anon_sym_has2] = ACTIONS(1870), - [anon_sym_not_DASHhas2] = ACTIONS(1870), - [anon_sym_starts_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1870), - [anon_sym_ends_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1870), - [anon_sym_EQ_EQ2] = ACTIONS(1870), - [anon_sym_BANG_EQ2] = ACTIONS(1870), - [anon_sym_LT2] = ACTIONS(1872), - [anon_sym_LT_EQ2] = ACTIONS(1870), - [anon_sym_GT_EQ2] = ACTIONS(1870), - [anon_sym_EQ_TILDE2] = ACTIONS(1870), - [anon_sym_BANG_TILDE2] = ACTIONS(1870), - [anon_sym_like2] = ACTIONS(1870), - [anon_sym_not_DASHlike2] = ACTIONS(1870), - [anon_sym_LPAREN2] = ACTIONS(1870), - [anon_sym_STAR_STAR2] = ACTIONS(1870), - [anon_sym_PLUS_PLUS2] = ACTIONS(1870), - [anon_sym_SLASH2] = ACTIONS(1872), - [anon_sym_mod2] = ACTIONS(1870), - [anon_sym_SLASH_SLASH2] = ACTIONS(1870), - [anon_sym_PLUS2] = ACTIONS(1872), - [anon_sym_bit_DASHshl2] = ACTIONS(1870), - [anon_sym_bit_DASHshr2] = ACTIONS(1870), - [anon_sym_bit_DASHand2] = ACTIONS(1870), - [anon_sym_bit_DASHxor2] = ACTIONS(1870), - [anon_sym_bit_DASHor2] = ACTIONS(1870), - [anon_sym_DOT_DOT2] = ACTIONS(1872), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1870), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1870), - [anon_sym_err_GT] = ACTIONS(1872), - [anon_sym_out_GT] = ACTIONS(1872), - [anon_sym_e_GT] = ACTIONS(1872), - [anon_sym_o_GT] = ACTIONS(1872), - [anon_sym_err_PLUSout_GT] = ACTIONS(1872), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), - [anon_sym_o_PLUSe_GT] = ACTIONS(1872), - [anon_sym_e_PLUSo_GT] = ACTIONS(1872), - [anon_sym_err_GT_GT] = ACTIONS(1870), - [anon_sym_out_GT_GT] = ACTIONS(1870), - [anon_sym_e_GT_GT] = ACTIONS(1870), - [anon_sym_o_GT_GT] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1870), - [sym__unquoted_pattern] = ACTIONS(1872), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(491)] = { - [sym_comment] = STATE(491), - [anon_sym_if] = ACTIONS(1874), - [anon_sym_in] = ACTIONS(1874), - [sym__newline] = ACTIONS(1874), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_err_GT_PIPE] = ACTIONS(1874), - [anon_sym_out_GT_PIPE] = ACTIONS(1874), - [anon_sym_e_GT_PIPE] = ACTIONS(1874), - [anon_sym_o_GT_PIPE] = ACTIONS(1874), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), - [anon_sym_RPAREN] = ACTIONS(1874), - [anon_sym_GT2] = ACTIONS(1876), - [anon_sym_DASH2] = ACTIONS(1874), - [anon_sym_LBRACE] = ACTIONS(1874), - [anon_sym_RBRACE] = ACTIONS(1874), - [anon_sym_EQ_GT] = ACTIONS(1874), - [anon_sym_STAR2] = ACTIONS(1876), - [anon_sym_and2] = ACTIONS(1874), - [anon_sym_xor2] = ACTIONS(1874), - [anon_sym_or2] = ACTIONS(1874), - [anon_sym_not_DASHin2] = ACTIONS(1874), - [anon_sym_has2] = ACTIONS(1874), - [anon_sym_not_DASHhas2] = ACTIONS(1874), - [anon_sym_starts_DASHwith2] = ACTIONS(1874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1874), - [anon_sym_ends_DASHwith2] = ACTIONS(1874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1874), - [anon_sym_EQ_EQ2] = ACTIONS(1874), - [anon_sym_BANG_EQ2] = ACTIONS(1874), - [anon_sym_LT2] = ACTIONS(1876), - [anon_sym_LT_EQ2] = ACTIONS(1874), - [anon_sym_GT_EQ2] = ACTIONS(1874), - [anon_sym_EQ_TILDE2] = ACTIONS(1874), - [anon_sym_BANG_TILDE2] = ACTIONS(1874), - [anon_sym_like2] = ACTIONS(1874), - [anon_sym_not_DASHlike2] = ACTIONS(1874), - [anon_sym_STAR_STAR2] = ACTIONS(1874), - [anon_sym_PLUS_PLUS2] = ACTIONS(1874), - [anon_sym_SLASH2] = ACTIONS(1876), - [anon_sym_mod2] = ACTIONS(1874), - [anon_sym_SLASH_SLASH2] = ACTIONS(1874), - [anon_sym_PLUS2] = ACTIONS(1876), - [anon_sym_bit_DASHshl2] = ACTIONS(1874), - [anon_sym_bit_DASHshr2] = ACTIONS(1874), - [anon_sym_bit_DASHand2] = ACTIONS(1874), - [anon_sym_bit_DASHxor2] = ACTIONS(1874), - [anon_sym_bit_DASHor2] = ACTIONS(1874), - [anon_sym_DOT_DOT2] = ACTIONS(1876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), - [anon_sym_err_GT] = ACTIONS(1876), - [anon_sym_out_GT] = ACTIONS(1876), - [anon_sym_e_GT] = ACTIONS(1876), - [anon_sym_o_GT] = ACTIONS(1876), - [anon_sym_err_PLUSout_GT] = ACTIONS(1876), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1876), - [anon_sym_o_PLUSe_GT] = ACTIONS(1876), - [anon_sym_e_PLUSo_GT] = ACTIONS(1876), - [anon_sym_err_GT_GT] = ACTIONS(1874), - [anon_sym_out_GT_GT] = ACTIONS(1874), - [anon_sym_e_GT_GT] = ACTIONS(1874), - [anon_sym_o_GT_GT] = ACTIONS(1874), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(492)] = { [sym_comment] = STATE(492), - [anon_sym_in] = ACTIONS(1558), - [sym__newline] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_PIPE] = ACTIONS(1558), - [anon_sym_err_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_GT_PIPE] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1558), - [anon_sym_RPAREN] = ACTIONS(1558), - [anon_sym_GT2] = ACTIONS(1556), - [anon_sym_DASH2] = ACTIONS(1558), - [anon_sym_LBRACE] = ACTIONS(1558), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_EQ_GT] = ACTIONS(1558), - [anon_sym_STAR2] = ACTIONS(1556), - [anon_sym_and2] = ACTIONS(1558), - [anon_sym_xor2] = ACTIONS(1558), - [anon_sym_or2] = ACTIONS(1558), - [anon_sym_not_DASHin2] = ACTIONS(1558), - [anon_sym_has2] = ACTIONS(1558), - [anon_sym_not_DASHhas2] = ACTIONS(1558), - [anon_sym_starts_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1558), - [anon_sym_ends_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1558), - [anon_sym_EQ_EQ2] = ACTIONS(1558), - [anon_sym_BANG_EQ2] = ACTIONS(1558), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ2] = ACTIONS(1558), - [anon_sym_GT_EQ2] = ACTIONS(1558), - [anon_sym_EQ_TILDE2] = ACTIONS(1558), - [anon_sym_BANG_TILDE2] = ACTIONS(1558), - [anon_sym_like2] = ACTIONS(1558), - [anon_sym_not_DASHlike2] = ACTIONS(1558), - [anon_sym_STAR_STAR2] = ACTIONS(1558), - [anon_sym_PLUS_PLUS2] = ACTIONS(1558), - [anon_sym_SLASH2] = ACTIONS(1556), - [anon_sym_mod2] = ACTIONS(1558), - [anon_sym_SLASH_SLASH2] = ACTIONS(1558), - [anon_sym_PLUS2] = ACTIONS(1556), - [anon_sym_bit_DASHshl2] = ACTIONS(1558), - [anon_sym_bit_DASHshr2] = ACTIONS(1558), - [anon_sym_bit_DASHand2] = ACTIONS(1558), - [anon_sym_bit_DASHxor2] = ACTIONS(1558), - [anon_sym_bit_DASHor2] = ACTIONS(1558), - [anon_sym_DOT_DOT2] = ACTIONS(1556), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), - [anon_sym_COLON2] = ACTIONS(1558), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [anon_sym_err_GT_GT] = ACTIONS(1558), - [anon_sym_out_GT_GT] = ACTIONS(1558), - [anon_sym_e_GT_GT] = ACTIONS(1558), - [anon_sym_o_GT_GT] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1558), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(493)] = { - [sym_cell_path] = STATE(735), - [sym_path] = STATE(441), - [sym_comment] = STATE(493), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1878), - [sym__newline] = ACTIONS(1878), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_err_GT_PIPE] = ACTIONS(1878), - [anon_sym_out_GT_PIPE] = ACTIONS(1878), - [anon_sym_e_GT_PIPE] = ACTIONS(1878), - [anon_sym_o_GT_PIPE] = ACTIONS(1878), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1878), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1878), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1878), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1878), - [anon_sym_RPAREN] = ACTIONS(1878), - [anon_sym_GT2] = ACTIONS(1880), - [anon_sym_DASH2] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_RBRACE] = ACTIONS(1878), - [anon_sym_EQ_GT] = ACTIONS(1878), - [anon_sym_STAR2] = ACTIONS(1880), - [anon_sym_and2] = ACTIONS(1878), - [anon_sym_xor2] = ACTIONS(1878), - [anon_sym_or2] = ACTIONS(1878), - [anon_sym_not_DASHin2] = ACTIONS(1878), - [anon_sym_has2] = ACTIONS(1878), - [anon_sym_not_DASHhas2] = ACTIONS(1878), - [anon_sym_starts_DASHwith2] = ACTIONS(1878), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1878), - [anon_sym_ends_DASHwith2] = ACTIONS(1878), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1878), - [anon_sym_EQ_EQ2] = ACTIONS(1878), - [anon_sym_BANG_EQ2] = ACTIONS(1878), - [anon_sym_LT2] = ACTIONS(1880), - [anon_sym_LT_EQ2] = ACTIONS(1878), - [anon_sym_GT_EQ2] = ACTIONS(1878), - [anon_sym_EQ_TILDE2] = ACTIONS(1878), - [anon_sym_BANG_TILDE2] = ACTIONS(1878), - [anon_sym_like2] = ACTIONS(1878), - [anon_sym_not_DASHlike2] = ACTIONS(1878), - [anon_sym_STAR_STAR2] = ACTIONS(1878), - [anon_sym_PLUS_PLUS2] = ACTIONS(1878), - [anon_sym_SLASH2] = ACTIONS(1880), - [anon_sym_mod2] = ACTIONS(1878), - [anon_sym_SLASH_SLASH2] = ACTIONS(1878), - [anon_sym_PLUS2] = ACTIONS(1880), - [anon_sym_bit_DASHshl2] = ACTIONS(1878), - [anon_sym_bit_DASHshr2] = ACTIONS(1878), - [anon_sym_bit_DASHand2] = ACTIONS(1878), - [anon_sym_bit_DASHxor2] = ACTIONS(1878), - [anon_sym_bit_DASHor2] = ACTIONS(1878), - [anon_sym_DOT2] = ACTIONS(1856), - [anon_sym_err_GT] = ACTIONS(1880), - [anon_sym_out_GT] = ACTIONS(1880), - [anon_sym_e_GT] = ACTIONS(1880), - [anon_sym_o_GT] = ACTIONS(1880), - [anon_sym_err_PLUSout_GT] = ACTIONS(1880), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1880), - [anon_sym_o_PLUSe_GT] = ACTIONS(1880), - [anon_sym_e_PLUSo_GT] = ACTIONS(1880), - [anon_sym_err_GT_GT] = ACTIONS(1878), - [anon_sym_out_GT_GT] = ACTIONS(1878), - [anon_sym_e_GT_GT] = ACTIONS(1878), - [anon_sym_o_GT_GT] = ACTIONS(1878), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1878), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1878), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1878), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1878), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(494)] = { - [sym_cell_path] = STATE(932), - [sym_path] = STATE(783), - [sym_comment] = STATE(494), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1679), - [anon_sym_in] = ACTIONS(1679), - [sym__newline] = ACTIONS(1679), - [anon_sym_SEMI] = ACTIONS(1679), - [anon_sym_PIPE] = ACTIONS(1679), - [anon_sym_err_GT_PIPE] = ACTIONS(1679), - [anon_sym_out_GT_PIPE] = ACTIONS(1679), - [anon_sym_e_GT_PIPE] = ACTIONS(1679), - [anon_sym_o_GT_PIPE] = ACTIONS(1679), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1679), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1679), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1679), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1679), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1679), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1679), - [anon_sym_xor2] = ACTIONS(1679), - [anon_sym_or2] = ACTIONS(1679), - [anon_sym_not_DASHin2] = ACTIONS(1679), - [anon_sym_has2] = ACTIONS(1679), - [anon_sym_not_DASHhas2] = ACTIONS(1679), - [anon_sym_starts_DASHwith2] = ACTIONS(1679), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1679), - [anon_sym_ends_DASHwith2] = ACTIONS(1679), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1679), - [anon_sym_EQ_EQ2] = ACTIONS(1679), - [anon_sym_BANG_EQ2] = ACTIONS(1679), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1679), - [anon_sym_GT_EQ2] = ACTIONS(1679), - [anon_sym_EQ_TILDE2] = ACTIONS(1679), - [anon_sym_BANG_TILDE2] = ACTIONS(1679), - [anon_sym_like2] = ACTIONS(1679), - [anon_sym_not_DASHlike2] = ACTIONS(1679), - [anon_sym_STAR_STAR2] = ACTIONS(1679), - [anon_sym_PLUS_PLUS2] = ACTIONS(1679), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1679), - [anon_sym_SLASH_SLASH2] = ACTIONS(1679), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1679), - [anon_sym_bit_DASHshr2] = ACTIONS(1679), - [anon_sym_bit_DASHand2] = ACTIONS(1679), - [anon_sym_bit_DASHxor2] = ACTIONS(1679), - [anon_sym_bit_DASHor2] = ACTIONS(1679), - [anon_sym_DOT_DOT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1679), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1679), - [anon_sym_DOT2] = ACTIONS(1844), - [anon_sym_err_GT] = ACTIONS(1681), - [anon_sym_out_GT] = ACTIONS(1681), - [anon_sym_e_GT] = ACTIONS(1681), - [anon_sym_o_GT] = ACTIONS(1681), - [anon_sym_err_PLUSout_GT] = ACTIONS(1681), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1681), - [anon_sym_o_PLUSe_GT] = ACTIONS(1681), - [anon_sym_e_PLUSo_GT] = ACTIONS(1681), - [anon_sym_err_GT_GT] = ACTIONS(1679), - [anon_sym_out_GT_GT] = ACTIONS(1679), - [anon_sym_e_GT_GT] = ACTIONS(1679), - [anon_sym_o_GT_GT] = ACTIONS(1679), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1679), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1679), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1679), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(495)] = { - [sym_comment] = STATE(495), [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(749), [sym__newline] = ACTIONS(749), @@ -85882,84 +85872,376 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(493)] = { + [sym_comment] = STATE(493), + [anon_sym_in] = ACTIONS(1574), + [sym__newline] = ACTIONS(1574), + [anon_sym_SEMI] = ACTIONS(1574), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_err_GT_PIPE] = ACTIONS(1574), + [anon_sym_out_GT_PIPE] = ACTIONS(1574), + [anon_sym_e_GT_PIPE] = ACTIONS(1574), + [anon_sym_o_GT_PIPE] = ACTIONS(1574), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1574), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1574), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1574), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1574), + [anon_sym_RPAREN] = ACTIONS(1574), + [anon_sym_GT2] = ACTIONS(1572), + [anon_sym_DASH2] = ACTIONS(1574), + [anon_sym_LBRACE] = ACTIONS(1574), + [anon_sym_RBRACE] = ACTIONS(1574), + [anon_sym_EQ_GT] = ACTIONS(1574), + [anon_sym_STAR2] = ACTIONS(1572), + [anon_sym_and2] = ACTIONS(1574), + [anon_sym_xor2] = ACTIONS(1574), + [anon_sym_or2] = ACTIONS(1574), + [anon_sym_not_DASHin2] = ACTIONS(1574), + [anon_sym_has2] = ACTIONS(1574), + [anon_sym_not_DASHhas2] = ACTIONS(1574), + [anon_sym_starts_DASHwith2] = ACTIONS(1574), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1574), + [anon_sym_ends_DASHwith2] = ACTIONS(1574), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1574), + [anon_sym_EQ_EQ2] = ACTIONS(1574), + [anon_sym_BANG_EQ2] = ACTIONS(1574), + [anon_sym_LT2] = ACTIONS(1572), + [anon_sym_LT_EQ2] = ACTIONS(1574), + [anon_sym_GT_EQ2] = ACTIONS(1574), + [anon_sym_EQ_TILDE2] = ACTIONS(1574), + [anon_sym_BANG_TILDE2] = ACTIONS(1574), + [anon_sym_like2] = ACTIONS(1574), + [anon_sym_not_DASHlike2] = ACTIONS(1574), + [anon_sym_STAR_STAR2] = ACTIONS(1574), + [anon_sym_PLUS_PLUS2] = ACTIONS(1574), + [anon_sym_SLASH2] = ACTIONS(1572), + [anon_sym_mod2] = ACTIONS(1574), + [anon_sym_SLASH_SLASH2] = ACTIONS(1574), + [anon_sym_PLUS2] = ACTIONS(1572), + [anon_sym_bit_DASHshl2] = ACTIONS(1574), + [anon_sym_bit_DASHshr2] = ACTIONS(1574), + [anon_sym_bit_DASHand2] = ACTIONS(1574), + [anon_sym_bit_DASHxor2] = ACTIONS(1574), + [anon_sym_bit_DASHor2] = ACTIONS(1574), + [anon_sym_DOT_DOT2] = ACTIONS(1572), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1574), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1574), + [anon_sym_COLON2] = ACTIONS(1574), + [anon_sym_err_GT] = ACTIONS(1572), + [anon_sym_out_GT] = ACTIONS(1572), + [anon_sym_e_GT] = ACTIONS(1572), + [anon_sym_o_GT] = ACTIONS(1572), + [anon_sym_err_PLUSout_GT] = ACTIONS(1572), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1572), + [anon_sym_o_PLUSe_GT] = ACTIONS(1572), + [anon_sym_e_PLUSo_GT] = ACTIONS(1572), + [anon_sym_err_GT_GT] = ACTIONS(1574), + [anon_sym_out_GT_GT] = ACTIONS(1574), + [anon_sym_e_GT_GT] = ACTIONS(1574), + [anon_sym_o_GT_GT] = ACTIONS(1574), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1574), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1574), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1574), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1574), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(494)] = { + [sym_comment] = STATE(494), + [anon_sym_if] = ACTIONS(1870), + [anon_sym_in] = ACTIONS(1870), + [sym__newline] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(1870), + [anon_sym_err_GT_PIPE] = ACTIONS(1870), + [anon_sym_out_GT_PIPE] = ACTIONS(1870), + [anon_sym_e_GT_PIPE] = ACTIONS(1870), + [anon_sym_o_GT_PIPE] = ACTIONS(1870), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1870), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1870), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1870), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1870), + [anon_sym_RPAREN] = ACTIONS(1870), + [anon_sym_GT2] = ACTIONS(1872), + [anon_sym_DASH2] = ACTIONS(1870), + [anon_sym_LBRACE] = ACTIONS(1870), + [anon_sym_RBRACE] = ACTIONS(1870), + [anon_sym_EQ_GT] = ACTIONS(1870), + [anon_sym_STAR2] = ACTIONS(1872), + [anon_sym_and2] = ACTIONS(1870), + [anon_sym_xor2] = ACTIONS(1870), + [anon_sym_or2] = ACTIONS(1870), + [anon_sym_not_DASHin2] = ACTIONS(1870), + [anon_sym_has2] = ACTIONS(1870), + [anon_sym_not_DASHhas2] = ACTIONS(1870), + [anon_sym_starts_DASHwith2] = ACTIONS(1870), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1870), + [anon_sym_ends_DASHwith2] = ACTIONS(1870), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1870), + [anon_sym_EQ_EQ2] = ACTIONS(1870), + [anon_sym_BANG_EQ2] = ACTIONS(1870), + [anon_sym_LT2] = ACTIONS(1872), + [anon_sym_LT_EQ2] = ACTIONS(1870), + [anon_sym_GT_EQ2] = ACTIONS(1870), + [anon_sym_EQ_TILDE2] = ACTIONS(1870), + [anon_sym_BANG_TILDE2] = ACTIONS(1870), + [anon_sym_like2] = ACTIONS(1870), + [anon_sym_not_DASHlike2] = ACTIONS(1870), + [anon_sym_STAR_STAR2] = ACTIONS(1870), + [anon_sym_PLUS_PLUS2] = ACTIONS(1870), + [anon_sym_SLASH2] = ACTIONS(1872), + [anon_sym_mod2] = ACTIONS(1870), + [anon_sym_SLASH_SLASH2] = ACTIONS(1870), + [anon_sym_PLUS2] = ACTIONS(1872), + [anon_sym_bit_DASHshl2] = ACTIONS(1870), + [anon_sym_bit_DASHshr2] = ACTIONS(1870), + [anon_sym_bit_DASHand2] = ACTIONS(1870), + [anon_sym_bit_DASHxor2] = ACTIONS(1870), + [anon_sym_bit_DASHor2] = ACTIONS(1870), + [anon_sym_DOT_DOT2] = ACTIONS(1872), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1870), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1870), + [anon_sym_err_GT] = ACTIONS(1872), + [anon_sym_out_GT] = ACTIONS(1872), + [anon_sym_e_GT] = ACTIONS(1872), + [anon_sym_o_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT] = ACTIONS(1872), + [anon_sym_err_GT_GT] = ACTIONS(1870), + [anon_sym_out_GT_GT] = ACTIONS(1870), + [anon_sym_e_GT_GT] = ACTIONS(1870), + [anon_sym_o_GT_GT] = ACTIONS(1870), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1870), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1870), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1870), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1870), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(495)] = { + [sym_comment] = STATE(495), + [ts_builtin_sym_end] = ACTIONS(1523), + [anon_sym_in] = ACTIONS(1523), + [sym__newline] = ACTIONS(1523), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_PIPE] = ACTIONS(1523), + [anon_sym_err_GT_PIPE] = ACTIONS(1523), + [anon_sym_out_GT_PIPE] = ACTIONS(1523), + [anon_sym_e_GT_PIPE] = ACTIONS(1523), + [anon_sym_o_GT_PIPE] = ACTIONS(1523), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1523), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1523), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1523), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1523), + [anon_sym_GT2] = ACTIONS(1521), + [anon_sym_DASH2] = ACTIONS(1523), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_STAR2] = ACTIONS(1521), + [anon_sym_and2] = ACTIONS(1523), + [anon_sym_xor2] = ACTIONS(1523), + [anon_sym_or2] = ACTIONS(1523), + [anon_sym_not_DASHin2] = ACTIONS(1523), + [anon_sym_has2] = ACTIONS(1523), + [anon_sym_not_DASHhas2] = ACTIONS(1523), + [anon_sym_starts_DASHwith2] = ACTIONS(1523), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1523), + [anon_sym_ends_DASHwith2] = ACTIONS(1523), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1523), + [anon_sym_EQ_EQ2] = ACTIONS(1523), + [anon_sym_BANG_EQ2] = ACTIONS(1523), + [anon_sym_LT2] = ACTIONS(1521), + [anon_sym_LT_EQ2] = ACTIONS(1523), + [anon_sym_GT_EQ2] = ACTIONS(1523), + [anon_sym_EQ_TILDE2] = ACTIONS(1523), + [anon_sym_BANG_TILDE2] = ACTIONS(1523), + [anon_sym_like2] = ACTIONS(1523), + [anon_sym_not_DASHlike2] = ACTIONS(1523), + [anon_sym_STAR_STAR2] = ACTIONS(1523), + [anon_sym_PLUS_PLUS2] = ACTIONS(1523), + [anon_sym_SLASH2] = ACTIONS(1521), + [anon_sym_mod2] = ACTIONS(1523), + [anon_sym_SLASH_SLASH2] = ACTIONS(1523), + [anon_sym_PLUS2] = ACTIONS(1521), + [anon_sym_bit_DASHshl2] = ACTIONS(1523), + [anon_sym_bit_DASHshr2] = ACTIONS(1523), + [anon_sym_bit_DASHand2] = ACTIONS(1523), + [anon_sym_bit_DASHxor2] = ACTIONS(1523), + [anon_sym_bit_DASHor2] = ACTIONS(1523), + [anon_sym_DOT_DOT2] = ACTIONS(1521), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1523), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1523), + [anon_sym_QMARK2] = ACTIONS(1523), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_DOT2] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1521), + [anon_sym_out_GT] = ACTIONS(1521), + [anon_sym_e_GT] = ACTIONS(1521), + [anon_sym_o_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT] = ACTIONS(1521), + [anon_sym_err_GT_GT] = ACTIONS(1523), + [anon_sym_out_GT_GT] = ACTIONS(1523), + [anon_sym_e_GT_GT] = ACTIONS(1523), + [anon_sym_o_GT_GT] = ACTIONS(1523), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1523), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1523), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1523), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1523), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(496)] = { - [sym_cell_path] = STATE(933), - [sym_path] = STATE(783), [sym_comment] = STATE(496), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1434), - [anon_sym_in] = ACTIONS(1434), - [sym__newline] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_err_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_GT_PIPE] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1434), - [anon_sym_GT2] = ACTIONS(1432), - [anon_sym_DASH2] = ACTIONS(1434), - [anon_sym_STAR2] = ACTIONS(1432), - [anon_sym_and2] = ACTIONS(1434), - [anon_sym_xor2] = ACTIONS(1434), - [anon_sym_or2] = ACTIONS(1434), - [anon_sym_not_DASHin2] = ACTIONS(1434), - [anon_sym_has2] = ACTIONS(1434), - [anon_sym_not_DASHhas2] = ACTIONS(1434), - [anon_sym_starts_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1434), - [anon_sym_ends_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1434), - [anon_sym_EQ_EQ2] = ACTIONS(1434), - [anon_sym_BANG_EQ2] = ACTIONS(1434), - [anon_sym_LT2] = ACTIONS(1432), - [anon_sym_LT_EQ2] = ACTIONS(1434), - [anon_sym_GT_EQ2] = ACTIONS(1434), - [anon_sym_EQ_TILDE2] = ACTIONS(1434), - [anon_sym_BANG_TILDE2] = ACTIONS(1434), - [anon_sym_like2] = ACTIONS(1434), - [anon_sym_not_DASHlike2] = ACTIONS(1434), - [anon_sym_STAR_STAR2] = ACTIONS(1434), - [anon_sym_PLUS_PLUS2] = ACTIONS(1434), - [anon_sym_SLASH2] = ACTIONS(1432), - [anon_sym_mod2] = ACTIONS(1434), - [anon_sym_SLASH_SLASH2] = ACTIONS(1434), - [anon_sym_PLUS2] = ACTIONS(1432), - [anon_sym_bit_DASHshl2] = ACTIONS(1434), - [anon_sym_bit_DASHshr2] = ACTIONS(1434), - [anon_sym_bit_DASHand2] = ACTIONS(1434), - [anon_sym_bit_DASHxor2] = ACTIONS(1434), - [anon_sym_bit_DASHor2] = ACTIONS(1434), - [anon_sym_DOT_DOT2] = ACTIONS(1432), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1434), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), - [anon_sym_DOT2] = ACTIONS(1844), - [anon_sym_err_GT] = ACTIONS(1432), - [anon_sym_out_GT] = ACTIONS(1432), - [anon_sym_e_GT] = ACTIONS(1432), - [anon_sym_o_GT] = ACTIONS(1432), - [anon_sym_err_PLUSout_GT] = ACTIONS(1432), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1432), - [anon_sym_o_PLUSe_GT] = ACTIONS(1432), - [anon_sym_e_PLUSo_GT] = ACTIONS(1432), - [anon_sym_err_GT_GT] = ACTIONS(1434), - [anon_sym_out_GT_GT] = ACTIONS(1434), - [anon_sym_e_GT_GT] = ACTIONS(1434), - [anon_sym_o_GT_GT] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1434), + [ts_builtin_sym_end] = ACTIONS(1728), + [anon_sym_in] = ACTIONS(1728), + [sym__newline] = ACTIONS(1728), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_err_GT_PIPE] = ACTIONS(1728), + [anon_sym_out_GT_PIPE] = ACTIONS(1728), + [anon_sym_e_GT_PIPE] = ACTIONS(1728), + [anon_sym_o_GT_PIPE] = ACTIONS(1728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1728), + [anon_sym_GT2] = ACTIONS(1730), + [anon_sym_DASH2] = ACTIONS(1728), + [anon_sym_STAR2] = ACTIONS(1730), + [anon_sym_and2] = ACTIONS(1728), + [anon_sym_xor2] = ACTIONS(1728), + [anon_sym_or2] = ACTIONS(1728), + [anon_sym_not_DASHin2] = ACTIONS(1728), + [anon_sym_has2] = ACTIONS(1728), + [anon_sym_not_DASHhas2] = ACTIONS(1728), + [anon_sym_starts_DASHwith2] = ACTIONS(1728), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1728), + [anon_sym_ends_DASHwith2] = ACTIONS(1728), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1728), + [anon_sym_EQ_EQ2] = ACTIONS(1728), + [anon_sym_BANG_EQ2] = ACTIONS(1728), + [anon_sym_LT2] = ACTIONS(1730), + [anon_sym_LT_EQ2] = ACTIONS(1728), + [anon_sym_GT_EQ2] = ACTIONS(1728), + [anon_sym_EQ_TILDE2] = ACTIONS(1728), + [anon_sym_BANG_TILDE2] = ACTIONS(1728), + [anon_sym_like2] = ACTIONS(1728), + [anon_sym_not_DASHlike2] = ACTIONS(1728), + [anon_sym_LPAREN2] = ACTIONS(1728), + [anon_sym_STAR_STAR2] = ACTIONS(1728), + [anon_sym_PLUS_PLUS2] = ACTIONS(1728), + [anon_sym_SLASH2] = ACTIONS(1730), + [anon_sym_mod2] = ACTIONS(1728), + [anon_sym_SLASH_SLASH2] = ACTIONS(1728), + [anon_sym_PLUS2] = ACTIONS(1730), + [anon_sym_bit_DASHshl2] = ACTIONS(1728), + [anon_sym_bit_DASHshr2] = ACTIONS(1728), + [anon_sym_bit_DASHand2] = ACTIONS(1728), + [anon_sym_bit_DASHxor2] = ACTIONS(1728), + [anon_sym_bit_DASHor2] = ACTIONS(1728), + [anon_sym_DOT_DOT2] = ACTIONS(1730), + [anon_sym_DOT] = ACTIONS(1874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1728), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1728), + [aux_sym__immediate_decimal_token5] = ACTIONS(1876), + [anon_sym_err_GT] = ACTIONS(1730), + [anon_sym_out_GT] = ACTIONS(1730), + [anon_sym_e_GT] = ACTIONS(1730), + [anon_sym_o_GT] = ACTIONS(1730), + [anon_sym_err_PLUSout_GT] = ACTIONS(1730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1730), + [anon_sym_o_PLUSe_GT] = ACTIONS(1730), + [anon_sym_e_PLUSo_GT] = ACTIONS(1730), + [anon_sym_err_GT_GT] = ACTIONS(1728), + [anon_sym_out_GT_GT] = ACTIONS(1728), + [anon_sym_e_GT_GT] = ACTIONS(1728), + [anon_sym_o_GT_GT] = ACTIONS(1728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1728), + [sym__unquoted_pattern] = ACTIONS(1730), [anon_sym_POUND] = ACTIONS(3), }, [STATE(497)] = { - [sym_cell_path] = STATE(930), - [sym_path] = STATE(441), [sym_comment] = STATE(497), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), + [ts_builtin_sym_end] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [sym__newline] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_err_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_GT_PIPE] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_GT2] = ACTIONS(1740), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_STAR2] = ACTIONS(1740), + [anon_sym_and2] = ACTIONS(1738), + [anon_sym_xor2] = ACTIONS(1738), + [anon_sym_or2] = ACTIONS(1738), + [anon_sym_not_DASHin2] = ACTIONS(1738), + [anon_sym_has2] = ACTIONS(1738), + [anon_sym_not_DASHhas2] = ACTIONS(1738), + [anon_sym_starts_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), + [anon_sym_ends_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), + [anon_sym_EQ_EQ2] = ACTIONS(1738), + [anon_sym_BANG_EQ2] = ACTIONS(1738), + [anon_sym_LT2] = ACTIONS(1740), + [anon_sym_LT_EQ2] = ACTIONS(1738), + [anon_sym_GT_EQ2] = ACTIONS(1738), + [anon_sym_EQ_TILDE2] = ACTIONS(1738), + [anon_sym_BANG_TILDE2] = ACTIONS(1738), + [anon_sym_like2] = ACTIONS(1738), + [anon_sym_not_DASHlike2] = ACTIONS(1738), + [anon_sym_LPAREN2] = ACTIONS(1738), + [anon_sym_STAR_STAR2] = ACTIONS(1738), + [anon_sym_PLUS_PLUS2] = ACTIONS(1738), + [anon_sym_SLASH2] = ACTIONS(1740), + [anon_sym_mod2] = ACTIONS(1738), + [anon_sym_SLASH_SLASH2] = ACTIONS(1738), + [anon_sym_PLUS2] = ACTIONS(1740), + [anon_sym_bit_DASHshl2] = ACTIONS(1738), + [anon_sym_bit_DASHshr2] = ACTIONS(1738), + [anon_sym_bit_DASHand2] = ACTIONS(1738), + [anon_sym_bit_DASHxor2] = ACTIONS(1738), + [anon_sym_bit_DASHor2] = ACTIONS(1738), + [anon_sym_DOT_DOT2] = ACTIONS(1740), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1738), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1738), + [aux_sym__immediate_decimal_token1] = ACTIONS(1878), + [aux_sym__immediate_decimal_token5] = ACTIONS(1880), + [anon_sym_err_GT] = ACTIONS(1740), + [anon_sym_out_GT] = ACTIONS(1740), + [anon_sym_e_GT] = ACTIONS(1740), + [anon_sym_o_GT] = ACTIONS(1740), + [anon_sym_err_PLUSout_GT] = ACTIONS(1740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1740), + [anon_sym_o_PLUSe_GT] = ACTIONS(1740), + [anon_sym_e_PLUSo_GT] = ACTIONS(1740), + [anon_sym_err_GT_GT] = ACTIONS(1738), + [anon_sym_out_GT_GT] = ACTIONS(1738), + [anon_sym_e_GT_GT] = ACTIONS(1738), + [anon_sym_o_GT_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), + [sym__unquoted_pattern] = ACTIONS(1740), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(498)] = { + [sym_cell_path] = STATE(811), + [sym_path] = STATE(435), + [sym_comment] = STATE(498), + [aux_sym__where_predicate_lhs_repeat1] = STATE(416), [anon_sym_in] = ACTIONS(1882), [sym__newline] = ACTIONS(1882), [anon_sym_SEMI] = ACTIONS(1882), @@ -86009,7 +86291,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1882), [anon_sym_bit_DASHxor2] = ACTIONS(1882), [anon_sym_bit_DASHor2] = ACTIONS(1882), - [anon_sym_DOT2] = ACTIONS(1856), + [anon_sym_DOT2] = ACTIONS(1842), [anon_sym_err_GT] = ACTIONS(1884), [anon_sym_out_GT] = ACTIONS(1884), [anon_sym_e_GT] = ACTIONS(1884), @@ -86028,9 +86310,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1882), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(498)] = { - [sym_comment] = STATE(498), - [anon_sym_if] = ACTIONS(1886), + [STATE(499)] = { + [sym_cell_path] = STATE(938), + [sym_path] = STATE(435), + [sym_comment] = STATE(499), + [aux_sym__where_predicate_lhs_repeat1] = STATE(416), [anon_sym_in] = ACTIONS(1886), [sym__newline] = ACTIONS(1886), [anon_sym_SEMI] = ACTIONS(1886), @@ -86044,12 +86328,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1886), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1886), [anon_sym_RPAREN] = ACTIONS(1886), - [anon_sym_GT2] = ACTIONS(1888), + [anon_sym_GT2] = ACTIONS(1889), [anon_sym_DASH2] = ACTIONS(1886), [anon_sym_LBRACE] = ACTIONS(1886), [anon_sym_RBRACE] = ACTIONS(1886), [anon_sym_EQ_GT] = ACTIONS(1886), - [anon_sym_STAR2] = ACTIONS(1888), + [anon_sym_STAR2] = ACTIONS(1889), [anon_sym_and2] = ACTIONS(1886), [anon_sym_xor2] = ACTIONS(1886), [anon_sym_or2] = ACTIONS(1886), @@ -86062,7 +86346,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1886), [anon_sym_EQ_EQ2] = ACTIONS(1886), [anon_sym_BANG_EQ2] = ACTIONS(1886), - [anon_sym_LT2] = ACTIONS(1888), + [anon_sym_LT2] = ACTIONS(1889), [anon_sym_LT_EQ2] = ACTIONS(1886), [anon_sym_GT_EQ2] = ACTIONS(1886), [anon_sym_EQ_TILDE2] = ACTIONS(1886), @@ -86071,26 +86355,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHlike2] = ACTIONS(1886), [anon_sym_STAR_STAR2] = ACTIONS(1886), [anon_sym_PLUS_PLUS2] = ACTIONS(1886), - [anon_sym_SLASH2] = ACTIONS(1888), + [anon_sym_SLASH2] = ACTIONS(1889), [anon_sym_mod2] = ACTIONS(1886), [anon_sym_SLASH_SLASH2] = ACTIONS(1886), - [anon_sym_PLUS2] = ACTIONS(1888), + [anon_sym_PLUS2] = ACTIONS(1889), [anon_sym_bit_DASHshl2] = ACTIONS(1886), [anon_sym_bit_DASHshr2] = ACTIONS(1886), [anon_sym_bit_DASHand2] = ACTIONS(1886), [anon_sym_bit_DASHxor2] = ACTIONS(1886), [anon_sym_bit_DASHor2] = ACTIONS(1886), - [anon_sym_DOT_DOT2] = ACTIONS(1888), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1886), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1886), - [anon_sym_err_GT] = ACTIONS(1888), - [anon_sym_out_GT] = ACTIONS(1888), - [anon_sym_e_GT] = ACTIONS(1888), - [anon_sym_o_GT] = ACTIONS(1888), - [anon_sym_err_PLUSout_GT] = ACTIONS(1888), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1888), - [anon_sym_o_PLUSe_GT] = ACTIONS(1888), - [anon_sym_e_PLUSo_GT] = ACTIONS(1888), + [anon_sym_DOT2] = ACTIONS(1842), + [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(1886), [anon_sym_out_GT_GT] = ACTIONS(1886), [anon_sym_e_GT_GT] = ACTIONS(1886), @@ -86101,176 +86383,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1886), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(499)] = { - [sym_comment] = STATE(499), - [ts_builtin_sym_end] = ACTIONS(851), - [anon_sym_in] = ACTIONS(851), - [sym__newline] = ACTIONS(851), - [anon_sym_SEMI] = ACTIONS(851), - [anon_sym_PIPE] = ACTIONS(851), - [anon_sym_err_GT_PIPE] = ACTIONS(851), - [anon_sym_out_GT_PIPE] = ACTIONS(851), - [anon_sym_e_GT_PIPE] = ACTIONS(851), - [anon_sym_o_GT_PIPE] = ACTIONS(851), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(851), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(851), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(851), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(851), - [anon_sym_GT2] = ACTIONS(849), - [anon_sym_DASH2] = ACTIONS(851), - [anon_sym_STAR2] = ACTIONS(849), - [anon_sym_and2] = ACTIONS(851), - [anon_sym_xor2] = ACTIONS(851), - [anon_sym_or2] = ACTIONS(851), - [anon_sym_not_DASHin2] = ACTIONS(851), - [anon_sym_has2] = ACTIONS(851), - [anon_sym_not_DASHhas2] = ACTIONS(851), - [anon_sym_starts_DASHwith2] = ACTIONS(851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(851), - [anon_sym_ends_DASHwith2] = ACTIONS(851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(851), - [anon_sym_EQ_EQ2] = ACTIONS(851), - [anon_sym_BANG_EQ2] = ACTIONS(851), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ2] = ACTIONS(851), - [anon_sym_GT_EQ2] = ACTIONS(851), - [anon_sym_EQ_TILDE2] = ACTIONS(851), - [anon_sym_BANG_TILDE2] = ACTIONS(851), - [anon_sym_like2] = ACTIONS(851), - [anon_sym_not_DASHlike2] = ACTIONS(851), - [anon_sym_LPAREN2] = ACTIONS(851), - [anon_sym_STAR_STAR2] = ACTIONS(851), - [anon_sym_PLUS_PLUS2] = ACTIONS(851), - [anon_sym_SLASH2] = ACTIONS(849), - [anon_sym_mod2] = ACTIONS(851), - [anon_sym_SLASH_SLASH2] = ACTIONS(851), - [anon_sym_PLUS2] = ACTIONS(849), - [anon_sym_bit_DASHshl2] = ACTIONS(851), - [anon_sym_bit_DASHshr2] = ACTIONS(851), - [anon_sym_bit_DASHand2] = ACTIONS(851), - [anon_sym_bit_DASHxor2] = ACTIONS(851), - [anon_sym_bit_DASHor2] = ACTIONS(851), - [anon_sym_DOT_DOT2] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(851), - [anon_sym_DOT_DOT_LT2] = ACTIONS(851), - [sym_filesize_unit] = ACTIONS(849), - [sym_duration_unit] = ACTIONS(851), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [anon_sym_err_GT_GT] = ACTIONS(851), - [anon_sym_out_GT_GT] = ACTIONS(851), - [anon_sym_e_GT_GT] = ACTIONS(851), - [anon_sym_o_GT_GT] = ACTIONS(851), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(851), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(851), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(851), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(851), - [sym__unquoted_pattern] = ACTIONS(849), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(500)] = { + [sym_cell_path] = STATE(945), + [sym_path] = STATE(712), [sym_comment] = STATE(500), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_RBRACE] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [anon_sym_DOT_DOT2] = ACTIONS(1728), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1726), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1726), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), + [aux_sym__where_predicate_lhs_repeat1] = STATE(547), + [ts_builtin_sym_end] = ACTIONS(1661), + [anon_sym_in] = 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(1663), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_STAR2] = ACTIONS(1663), + [anon_sym_and2] = ACTIONS(1661), + [anon_sym_xor2] = ACTIONS(1661), + [anon_sym_or2] = ACTIONS(1661), + [anon_sym_not_DASHin2] = ACTIONS(1661), + [anon_sym_has2] = ACTIONS(1661), + [anon_sym_not_DASHhas2] = ACTIONS(1661), + [anon_sym_starts_DASHwith2] = ACTIONS(1661), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1661), + [anon_sym_ends_DASHwith2] = ACTIONS(1661), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1661), + [anon_sym_EQ_EQ2] = ACTIONS(1661), + [anon_sym_BANG_EQ2] = ACTIONS(1661), + [anon_sym_LT2] = ACTIONS(1663), + [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_like2] = ACTIONS(1661), + [anon_sym_not_DASHlike2] = ACTIONS(1661), + [anon_sym_STAR_STAR2] = ACTIONS(1661), + [anon_sym_PLUS_PLUS2] = ACTIONS(1661), + [anon_sym_SLASH2] = ACTIONS(1663), + [anon_sym_mod2] = ACTIONS(1661), + [anon_sym_SLASH_SLASH2] = ACTIONS(1661), + [anon_sym_PLUS2] = ACTIONS(1663), + [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(1663), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), + [anon_sym_DOT2] = ACTIONS(1852), + [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(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), }, [STATE(501)] = { - [sym_cmd_identifier] = STATE(4167), - [sym_expr_parenthesized] = STATE(5186), - [sym__spread_parenthesized] = STATE(4688), - [sym__spread_variable] = STATE(4697), - [sym_val_variable] = STATE(4328), - [sym_val_number] = STATE(5186), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(5186), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(5186), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4688), - [sym_record_entry] = STATE(4617), - [sym__record_key] = STATE(4982), + [sym_cmd_identifier] = STATE(4341), + [sym_expr_parenthesized] = STATE(5062), + [sym__spread_parenthesized] = STATE(4693), + [sym__spread_variable] = STATE(4695), + [sym_val_variable] = STATE(4141), + [sym_val_number] = STATE(5062), + [sym__val_number_decimal] = STATE(1952), + [sym__val_number] = STATE(676), + [sym_val_string] = STATE(5062), + [sym__raw_str] = STATE(2243), + [sym__str_double_quotes] = STATE(2243), + [sym__str_single_quotes] = STATE(2243), + [sym__str_back_ticks] = STATE(2243), + [sym_val_interpolated] = STATE(5062), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym__spread_record] = STATE(4693), + [sym_record_entry] = STATE(4629), + [sym__record_key] = STATE(5228), [sym_comment] = STATE(501), - [aux_sym__types_body_repeat1] = STATE(1498), - [aux_sym__match_pattern_record_body_repeat1] = STATE(836), - [aux_sym_record_body_repeat1] = STATE(878), + [aux_sym__types_body_repeat1] = STATE(1500), + [aux_sym__match_pattern_record_body_repeat1] = STATE(821), + [aux_sym_record_body_repeat1] = STATE(721), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -86321,8382 +86530,8165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(502)] = { - [sym__path_suffix] = STATE(784), + [sym_cell_path] = STATE(946), + [sym_path] = STATE(712), [sym_comment] = STATE(502), - [ts_builtin_sym_end] = ACTIONS(1448), - [anon_sym_in] = ACTIONS(1448), - [sym__newline] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_err_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_GT_PIPE] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), - [anon_sym_GT2] = ACTIONS(1446), - [anon_sym_DASH2] = ACTIONS(1448), - [anon_sym_STAR2] = ACTIONS(1446), - [anon_sym_and2] = ACTIONS(1448), - [anon_sym_xor2] = ACTIONS(1448), - [anon_sym_or2] = ACTIONS(1448), - [anon_sym_not_DASHin2] = ACTIONS(1448), - [anon_sym_has2] = ACTIONS(1448), - [anon_sym_not_DASHhas2] = ACTIONS(1448), - [anon_sym_starts_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1448), - [anon_sym_ends_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), - [anon_sym_EQ_EQ2] = ACTIONS(1448), - [anon_sym_BANG_EQ2] = ACTIONS(1448), - [anon_sym_LT2] = ACTIONS(1446), - [anon_sym_LT_EQ2] = ACTIONS(1448), - [anon_sym_GT_EQ2] = ACTIONS(1448), - [anon_sym_EQ_TILDE2] = ACTIONS(1448), - [anon_sym_BANG_TILDE2] = ACTIONS(1448), - [anon_sym_like2] = ACTIONS(1448), - [anon_sym_not_DASHlike2] = ACTIONS(1448), - [anon_sym_STAR_STAR2] = ACTIONS(1448), - [anon_sym_PLUS_PLUS2] = ACTIONS(1448), - [anon_sym_SLASH2] = ACTIONS(1446), - [anon_sym_mod2] = ACTIONS(1448), - [anon_sym_SLASH_SLASH2] = ACTIONS(1448), - [anon_sym_PLUS2] = ACTIONS(1446), - [anon_sym_bit_DASHshl2] = ACTIONS(1448), - [anon_sym_bit_DASHshr2] = ACTIONS(1448), - [anon_sym_bit_DASHand2] = ACTIONS(1448), - [anon_sym_bit_DASHxor2] = ACTIONS(1448), - [anon_sym_bit_DASHor2] = ACTIONS(1448), - [anon_sym_DOT_DOT2] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), - [anon_sym_QMARK2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1446), - [anon_sym_out_GT] = ACTIONS(1446), - [anon_sym_e_GT] = ACTIONS(1446), - [anon_sym_o_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT] = ACTIONS(1446), - [anon_sym_err_GT_GT] = ACTIONS(1448), - [anon_sym_out_GT_GT] = ACTIONS(1448), - [anon_sym_e_GT_GT] = ACTIONS(1448), - [anon_sym_o_GT_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), + [aux_sym__where_predicate_lhs_repeat1] = STATE(547), + [ts_builtin_sym_end] = ACTIONS(1434), + [anon_sym_in] = ACTIONS(1434), + [sym__newline] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym_PIPE] = ACTIONS(1434), + [anon_sym_err_GT_PIPE] = ACTIONS(1434), + [anon_sym_out_GT_PIPE] = ACTIONS(1434), + [anon_sym_e_GT_PIPE] = ACTIONS(1434), + [anon_sym_o_GT_PIPE] = ACTIONS(1434), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1434), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1434), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1434), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1434), + [anon_sym_GT2] = ACTIONS(1432), + [anon_sym_DASH2] = ACTIONS(1434), + [anon_sym_STAR2] = ACTIONS(1432), + [anon_sym_and2] = ACTIONS(1434), + [anon_sym_xor2] = ACTIONS(1434), + [anon_sym_or2] = ACTIONS(1434), + [anon_sym_not_DASHin2] = ACTIONS(1434), + [anon_sym_has2] = ACTIONS(1434), + [anon_sym_not_DASHhas2] = ACTIONS(1434), + [anon_sym_starts_DASHwith2] = ACTIONS(1434), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1434), + [anon_sym_ends_DASHwith2] = ACTIONS(1434), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1434), + [anon_sym_EQ_EQ2] = ACTIONS(1434), + [anon_sym_BANG_EQ2] = ACTIONS(1434), + [anon_sym_LT2] = ACTIONS(1432), + [anon_sym_LT_EQ2] = ACTIONS(1434), + [anon_sym_GT_EQ2] = ACTIONS(1434), + [anon_sym_EQ_TILDE2] = ACTIONS(1434), + [anon_sym_BANG_TILDE2] = ACTIONS(1434), + [anon_sym_like2] = ACTIONS(1434), + [anon_sym_not_DASHlike2] = ACTIONS(1434), + [anon_sym_STAR_STAR2] = ACTIONS(1434), + [anon_sym_PLUS_PLUS2] = ACTIONS(1434), + [anon_sym_SLASH2] = ACTIONS(1432), + [anon_sym_mod2] = ACTIONS(1434), + [anon_sym_SLASH_SLASH2] = ACTIONS(1434), + [anon_sym_PLUS2] = ACTIONS(1432), + [anon_sym_bit_DASHshl2] = ACTIONS(1434), + [anon_sym_bit_DASHshr2] = ACTIONS(1434), + [anon_sym_bit_DASHand2] = ACTIONS(1434), + [anon_sym_bit_DASHxor2] = ACTIONS(1434), + [anon_sym_bit_DASHor2] = ACTIONS(1434), + [anon_sym_DOT_DOT2] = ACTIONS(1432), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1434), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), + [anon_sym_DOT2] = ACTIONS(1852), + [anon_sym_err_GT] = ACTIONS(1432), + [anon_sym_out_GT] = ACTIONS(1432), + [anon_sym_e_GT] = ACTIONS(1432), + [anon_sym_o_GT] = ACTIONS(1432), + [anon_sym_err_PLUSout_GT] = ACTIONS(1432), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1432), + [anon_sym_o_PLUSe_GT] = ACTIONS(1432), + [anon_sym_e_PLUSo_GT] = ACTIONS(1432), + [anon_sym_err_GT_GT] = ACTIONS(1434), + [anon_sym_out_GT_GT] = ACTIONS(1434), + [anon_sym_e_GT_GT] = ACTIONS(1434), + [anon_sym_o_GT_GT] = ACTIONS(1434), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1434), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1434), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1434), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1434), [anon_sym_POUND] = ACTIONS(3), }, [STATE(503)] = { + [aux_sym__repeat_newline] = STATE(639), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1517), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(745), + [sym__unquoted_with_expr] = STATE(1013), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(503), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [anon_sym_DOT_DOT2] = ACTIONS(1804), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1802), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1802), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(504)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1588), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(799), - [sym__unquoted_with_expr] = STATE(993), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(520), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1218), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(725), + [sym__unquoted_with_expr] = STATE(1016), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(504), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(505)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2046), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(852), - [sym__unquoted_with_expr] = STATE(1056), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(521), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1144), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(728), + [sym__unquoted_with_expr] = STATE(1066), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(505), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(506)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2048), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(853), - [sym__unquoted_with_expr] = STATE(1059), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(522), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1186), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(730), + [sym__unquoted_with_expr] = STATE(1096), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(506), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(507)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2050), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(854), - [sym__unquoted_with_expr] = STATE(1061), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(523), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1210), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(732), + [sym__unquoted_with_expr] = STATE(1113), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(507), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(508)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2052), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(855), - [sym__unquoted_with_expr] = STATE(1064), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(524), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1233), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(734), + [sym__unquoted_with_expr] = STATE(967), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(508), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(509)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2054), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(856), - [sym__unquoted_with_expr] = STATE(1066), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(525), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1145), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(737), + [sym__unquoted_with_expr] = STATE(972), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(509), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(510)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2056), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(857), - [sym__unquoted_with_expr] = STATE(1069), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(526), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(979), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(739), + [sym__unquoted_with_expr] = STATE(981), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(510), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(511)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2058), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(858), - [sym__unquoted_with_expr] = STATE(1072), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(527), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1203), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(741), + [sym__unquoted_with_expr] = STATE(983), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(511), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(512)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1074), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(859), - [sym__unquoted_with_expr] = STATE(1076), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(528), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1141), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(743), + [sym__unquoted_with_expr] = STATE(998), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(512), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(513)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2060), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(860), - [sym__unquoted_with_expr] = STATE(1079), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(529), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1204), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(745), + [sym__unquoted_with_expr] = STATE(1013), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(513), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(514)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2062), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(861), - [sym__unquoted_with_expr] = STATE(1081), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(530), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1226), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(747), + [sym__unquoted_with_expr] = STATE(1018), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(514), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(515)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2064), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(862), - [sym__unquoted_with_expr] = STATE(1084), - [sym__unquoted_anonymous_prefix] = STATE(4386), [sym_comment] = STATE(515), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [ts_builtin_sym_end] = ACTIONS(1728), + [anon_sym_in] = ACTIONS(1728), + [sym__newline] = ACTIONS(1728), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_err_GT_PIPE] = ACTIONS(1728), + [anon_sym_out_GT_PIPE] = ACTIONS(1728), + [anon_sym_e_GT_PIPE] = ACTIONS(1728), + [anon_sym_o_GT_PIPE] = ACTIONS(1728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1728), + [anon_sym_GT2] = ACTIONS(1730), + [anon_sym_DASH2] = ACTIONS(1728), + [anon_sym_STAR2] = ACTIONS(1730), + [anon_sym_and2] = ACTIONS(1728), + [anon_sym_xor2] = ACTIONS(1728), + [anon_sym_or2] = ACTIONS(1728), + [anon_sym_not_DASHin2] = ACTIONS(1728), + [anon_sym_has2] = ACTIONS(1728), + [anon_sym_not_DASHhas2] = ACTIONS(1728), + [anon_sym_starts_DASHwith2] = ACTIONS(1728), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1728), + [anon_sym_ends_DASHwith2] = ACTIONS(1728), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1728), + [anon_sym_EQ_EQ2] = ACTIONS(1728), + [anon_sym_BANG_EQ2] = ACTIONS(1728), + [anon_sym_LT2] = ACTIONS(1730), + [anon_sym_LT_EQ2] = ACTIONS(1728), + [anon_sym_GT_EQ2] = ACTIONS(1728), + [anon_sym_EQ_TILDE2] = ACTIONS(1728), + [anon_sym_BANG_TILDE2] = ACTIONS(1728), + [anon_sym_like2] = ACTIONS(1728), + [anon_sym_not_DASHlike2] = ACTIONS(1728), + [anon_sym_LPAREN2] = ACTIONS(1728), + [anon_sym_STAR_STAR2] = ACTIONS(1728), + [anon_sym_PLUS_PLUS2] = ACTIONS(1728), + [anon_sym_SLASH2] = ACTIONS(1730), + [anon_sym_mod2] = ACTIONS(1728), + [anon_sym_SLASH_SLASH2] = ACTIONS(1728), + [anon_sym_PLUS2] = ACTIONS(1730), + [anon_sym_bit_DASHshl2] = ACTIONS(1728), + [anon_sym_bit_DASHshr2] = ACTIONS(1728), + [anon_sym_bit_DASHand2] = ACTIONS(1728), + [anon_sym_bit_DASHxor2] = ACTIONS(1728), + [anon_sym_bit_DASHor2] = ACTIONS(1728), + [anon_sym_DOT_DOT2] = ACTIONS(1730), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1728), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1728), + [aux_sym__immediate_decimal_token5] = ACTIONS(1876), + [anon_sym_err_GT] = ACTIONS(1730), + [anon_sym_out_GT] = ACTIONS(1730), + [anon_sym_e_GT] = ACTIONS(1730), + [anon_sym_o_GT] = ACTIONS(1730), + [anon_sym_err_PLUSout_GT] = ACTIONS(1730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1730), + [anon_sym_o_PLUSe_GT] = ACTIONS(1730), + [anon_sym_e_PLUSo_GT] = ACTIONS(1730), + [anon_sym_err_GT_GT] = ACTIONS(1728), + [anon_sym_out_GT_GT] = ACTIONS(1728), + [anon_sym_e_GT_GT] = ACTIONS(1728), + [anon_sym_o_GT_GT] = ACTIONS(1728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1728), + [sym__unquoted_pattern] = ACTIONS(1730), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(516)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2066), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(863), - [sym__unquoted_with_expr] = STATE(1087), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [sym_path] = STATE(712), [sym_comment] = STATE(516), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [aux_sym__where_predicate_lhs_repeat1] = STATE(516), + [ts_builtin_sym_end] = ACTIONS(1496), + [anon_sym_in] = ACTIONS(1496), + [sym__newline] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym_PIPE] = ACTIONS(1496), + [anon_sym_err_GT_PIPE] = ACTIONS(1496), + [anon_sym_out_GT_PIPE] = ACTIONS(1496), + [anon_sym_e_GT_PIPE] = ACTIONS(1496), + [anon_sym_o_GT_PIPE] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1496), + [anon_sym_GT2] = ACTIONS(1494), + [anon_sym_DASH2] = ACTIONS(1496), + [anon_sym_STAR2] = ACTIONS(1494), + [anon_sym_and2] = ACTIONS(1496), + [anon_sym_xor2] = ACTIONS(1496), + [anon_sym_or2] = ACTIONS(1496), + [anon_sym_not_DASHin2] = ACTIONS(1496), + [anon_sym_has2] = ACTIONS(1496), + [anon_sym_not_DASHhas2] = ACTIONS(1496), + [anon_sym_starts_DASHwith2] = ACTIONS(1496), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1496), + [anon_sym_ends_DASHwith2] = ACTIONS(1496), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1496), + [anon_sym_EQ_EQ2] = ACTIONS(1496), + [anon_sym_BANG_EQ2] = ACTIONS(1496), + [anon_sym_LT2] = ACTIONS(1494), + [anon_sym_LT_EQ2] = ACTIONS(1496), + [anon_sym_GT_EQ2] = ACTIONS(1496), + [anon_sym_EQ_TILDE2] = ACTIONS(1496), + [anon_sym_BANG_TILDE2] = ACTIONS(1496), + [anon_sym_like2] = ACTIONS(1496), + [anon_sym_not_DASHlike2] = ACTIONS(1496), + [anon_sym_STAR_STAR2] = ACTIONS(1496), + [anon_sym_PLUS_PLUS2] = ACTIONS(1496), + [anon_sym_SLASH2] = ACTIONS(1494), + [anon_sym_mod2] = ACTIONS(1496), + [anon_sym_SLASH_SLASH2] = ACTIONS(1496), + [anon_sym_PLUS2] = ACTIONS(1494), + [anon_sym_bit_DASHshl2] = ACTIONS(1496), + [anon_sym_bit_DASHshr2] = ACTIONS(1496), + [anon_sym_bit_DASHand2] = ACTIONS(1496), + [anon_sym_bit_DASHxor2] = ACTIONS(1496), + [anon_sym_bit_DASHor2] = ACTIONS(1496), + [anon_sym_DOT_DOT2] = ACTIONS(1494), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1496), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1496), + [anon_sym_DOT2] = ACTIONS(1932), + [anon_sym_err_GT] = ACTIONS(1494), + [anon_sym_out_GT] = ACTIONS(1494), + [anon_sym_e_GT] = ACTIONS(1494), + [anon_sym_o_GT] = ACTIONS(1494), + [anon_sym_err_PLUSout_GT] = ACTIONS(1494), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1494), + [anon_sym_o_PLUSe_GT] = ACTIONS(1494), + [anon_sym_e_PLUSo_GT] = ACTIONS(1494), + [anon_sym_err_GT_GT] = ACTIONS(1496), + [anon_sym_out_GT_GT] = ACTIONS(1496), + [anon_sym_e_GT_GT] = ACTIONS(1496), + [anon_sym_o_GT_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1496), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(517)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(517), + [anon_sym_else] = ACTIONS(1935), + [anon_sym_catch] = ACTIONS(1935), + [anon_sym_in] = ACTIONS(1935), + [sym__newline] = ACTIONS(1937), + [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_COLON] = ACTIONS(1935), + [anon_sym_LBRACK] = ACTIONS(1935), + [anon_sym_RPAREN] = ACTIONS(1935), + [anon_sym_GT2] = ACTIONS(1940), + [anon_sym_DASH2] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(1935), + [anon_sym_STAR2] = ACTIONS(1940), + [anon_sym_and2] = ACTIONS(1935), + [anon_sym_xor2] = ACTIONS(1935), + [anon_sym_or2] = ACTIONS(1935), + [anon_sym_not_DASHin2] = ACTIONS(1935), + [anon_sym_has2] = ACTIONS(1935), + [anon_sym_not_DASHhas2] = ACTIONS(1935), + [anon_sym_starts_DASHwith2] = ACTIONS(1935), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1935), + [anon_sym_ends_DASHwith2] = ACTIONS(1935), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1935), + [anon_sym_EQ_EQ2] = ACTIONS(1935), + [anon_sym_BANG_EQ2] = ACTIONS(1935), + [anon_sym_LT2] = ACTIONS(1940), + [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_like2] = ACTIONS(1935), + [anon_sym_not_DASHlike2] = ACTIONS(1935), + [anon_sym_STAR_STAR2] = ACTIONS(1935), + [anon_sym_PLUS_PLUS2] = ACTIONS(1935), + [anon_sym_SLASH2] = ACTIONS(1940), + [anon_sym_mod2] = ACTIONS(1935), + [anon_sym_SLASH_SLASH2] = ACTIONS(1935), + [anon_sym_PLUS2] = ACTIONS(1940), + [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_err_GT] = ACTIONS(1940), + [anon_sym_out_GT] = ACTIONS(1940), + [anon_sym_e_GT] = ACTIONS(1940), + [anon_sym_o_GT] = ACTIONS(1940), + [anon_sym_err_PLUSout_GT] = ACTIONS(1940), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1940), + [anon_sym_o_PLUSe_GT] = ACTIONS(1940), + [anon_sym_e_PLUSo_GT] = ACTIONS(1940), + [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(3), + }, + [STATE(518)] = { + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1139), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(763), + [sym__unquoted_with_expr] = STATE(986), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(518), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(517)] = { - [sym_path] = STATE(783), - [sym_comment] = STATE(517), - [aux_sym__where_predicate_lhs_repeat1] = STATE(517), - [ts_builtin_sym_end] = ACTIONS(1526), - [anon_sym_in] = ACTIONS(1526), - [sym__newline] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1526), - [anon_sym_err_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_GT_PIPE] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1526), - [anon_sym_GT2] = ACTIONS(1524), - [anon_sym_DASH2] = ACTIONS(1526), - [anon_sym_STAR2] = ACTIONS(1524), - [anon_sym_and2] = ACTIONS(1526), - [anon_sym_xor2] = ACTIONS(1526), - [anon_sym_or2] = ACTIONS(1526), - [anon_sym_not_DASHin2] = ACTIONS(1526), - [anon_sym_has2] = ACTIONS(1526), - [anon_sym_not_DASHhas2] = ACTIONS(1526), - [anon_sym_starts_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1526), - [anon_sym_ends_DASHwith2] = ACTIONS(1526), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1526), - [anon_sym_EQ_EQ2] = ACTIONS(1526), - [anon_sym_BANG_EQ2] = ACTIONS(1526), - [anon_sym_LT2] = ACTIONS(1524), - [anon_sym_LT_EQ2] = ACTIONS(1526), - [anon_sym_GT_EQ2] = ACTIONS(1526), - [anon_sym_EQ_TILDE2] = ACTIONS(1526), - [anon_sym_BANG_TILDE2] = ACTIONS(1526), - [anon_sym_like2] = ACTIONS(1526), - [anon_sym_not_DASHlike2] = ACTIONS(1526), - [anon_sym_STAR_STAR2] = ACTIONS(1526), - [anon_sym_PLUS_PLUS2] = ACTIONS(1526), - [anon_sym_SLASH2] = ACTIONS(1524), - [anon_sym_mod2] = ACTIONS(1526), - [anon_sym_SLASH_SLASH2] = ACTIONS(1526), - [anon_sym_PLUS2] = ACTIONS(1524), - [anon_sym_bit_DASHshl2] = ACTIONS(1526), - [anon_sym_bit_DASHshr2] = ACTIONS(1526), - [anon_sym_bit_DASHand2] = ACTIONS(1526), - [anon_sym_bit_DASHxor2] = ACTIONS(1526), - [anon_sym_bit_DASHor2] = ACTIONS(1526), - [anon_sym_DOT_DOT2] = ACTIONS(1524), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1526), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1526), - [anon_sym_DOT2] = ACTIONS(1934), - [anon_sym_err_GT] = ACTIONS(1524), - [anon_sym_out_GT] = ACTIONS(1524), - [anon_sym_e_GT] = ACTIONS(1524), - [anon_sym_o_GT] = ACTIONS(1524), - [anon_sym_err_PLUSout_GT] = ACTIONS(1524), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1524), - [anon_sym_o_PLUSe_GT] = ACTIONS(1524), - [anon_sym_e_PLUSo_GT] = ACTIONS(1524), - [anon_sym_err_GT_GT] = ACTIONS(1526), - [anon_sym_out_GT_GT] = ACTIONS(1526), - [anon_sym_e_GT_GT] = ACTIONS(1526), - [anon_sym_o_GT_GT] = ACTIONS(1526), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1526), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1526), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1526), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1526), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(518)] = { - [sym_path] = STATE(783), - [sym_comment] = STATE(518), - [aux_sym__where_predicate_lhs_repeat1] = STATE(517), - [ts_builtin_sym_end] = ACTIONS(1460), - [anon_sym_in] = ACTIONS(1460), - [sym__newline] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_err_GT_PIPE] = ACTIONS(1460), - [anon_sym_out_GT_PIPE] = ACTIONS(1460), - [anon_sym_e_GT_PIPE] = ACTIONS(1460), - [anon_sym_o_GT_PIPE] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1460), - [anon_sym_GT2] = ACTIONS(1458), - [anon_sym_DASH2] = ACTIONS(1460), - [anon_sym_STAR2] = ACTIONS(1458), - [anon_sym_and2] = ACTIONS(1460), - [anon_sym_xor2] = ACTIONS(1460), - [anon_sym_or2] = ACTIONS(1460), - [anon_sym_not_DASHin2] = ACTIONS(1460), - [anon_sym_has2] = ACTIONS(1460), - [anon_sym_not_DASHhas2] = ACTIONS(1460), - [anon_sym_starts_DASHwith2] = ACTIONS(1460), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1460), - [anon_sym_ends_DASHwith2] = ACTIONS(1460), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1460), - [anon_sym_EQ_EQ2] = ACTIONS(1460), - [anon_sym_BANG_EQ2] = ACTIONS(1460), - [anon_sym_LT2] = ACTIONS(1458), - [anon_sym_LT_EQ2] = ACTIONS(1460), - [anon_sym_GT_EQ2] = ACTIONS(1460), - [anon_sym_EQ_TILDE2] = ACTIONS(1460), - [anon_sym_BANG_TILDE2] = ACTIONS(1460), - [anon_sym_like2] = ACTIONS(1460), - [anon_sym_not_DASHlike2] = ACTIONS(1460), - [anon_sym_STAR_STAR2] = ACTIONS(1460), - [anon_sym_PLUS_PLUS2] = ACTIONS(1460), - [anon_sym_SLASH2] = ACTIONS(1458), - [anon_sym_mod2] = ACTIONS(1460), - [anon_sym_SLASH_SLASH2] = ACTIONS(1460), - [anon_sym_PLUS2] = ACTIONS(1458), - [anon_sym_bit_DASHshl2] = ACTIONS(1460), - [anon_sym_bit_DASHshr2] = ACTIONS(1460), - [anon_sym_bit_DASHand2] = ACTIONS(1460), - [anon_sym_bit_DASHxor2] = ACTIONS(1460), - [anon_sym_bit_DASHor2] = ACTIONS(1460), - [anon_sym_DOT_DOT2] = ACTIONS(1458), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1460), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1460), - [anon_sym_DOT2] = ACTIONS(1844), - [anon_sym_err_GT] = ACTIONS(1458), - [anon_sym_out_GT] = ACTIONS(1458), - [anon_sym_e_GT] = ACTIONS(1458), - [anon_sym_o_GT] = ACTIONS(1458), - [anon_sym_err_PLUSout_GT] = ACTIONS(1458), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1458), - [anon_sym_o_PLUSe_GT] = ACTIONS(1458), - [anon_sym_e_PLUSo_GT] = ACTIONS(1458), - [anon_sym_err_GT_GT] = ACTIONS(1460), - [anon_sym_out_GT_GT] = ACTIONS(1460), - [anon_sym_e_GT_GT] = ACTIONS(1460), - [anon_sym_o_GT_GT] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1460), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(519)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1187), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(792), - [sym__unquoted_with_expr] = STATE(979), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1180), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(764), + [sym__unquoted_with_expr] = STATE(989), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(519), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(520)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1156), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(793), - [sym__unquoted_with_expr] = STATE(982), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1208), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(765), + [sym__unquoted_with_expr] = STATE(994), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(520), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(521)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1193), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(794), - [sym__unquoted_with_expr] = STATE(984), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1152), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(767), + [sym__unquoted_with_expr] = STATE(1003), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(521), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(522)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1168), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(797), - [sym__unquoted_with_expr] = STATE(989), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1173), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(768), + [sym__unquoted_with_expr] = STATE(1008), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(522), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(523)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1180), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(798), - [sym__unquoted_with_expr] = STATE(991), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1198), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(770), + [sym__unquoted_with_expr] = STATE(1019), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(523), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(524)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1197), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(799), - [sym__unquoted_with_expr] = STATE(993), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1134), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(772), + [sym__unquoted_with_expr] = STATE(1022), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(524), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(525)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1234), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(800), - [sym__unquoted_with_expr] = STATE(995), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1142), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(773), + [sym__unquoted_with_expr] = STATE(1024), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(525), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(526)] = { - [aux_sym__repeat_newline] = STATE(616), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1982), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(767), - [sym__unquoted_with_expr] = STATE(1030), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1026), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(774), + [sym__unquoted_with_expr] = STATE(1044), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(526), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(527)] = { - [aux_sym__repeat_newline] = STATE(598), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1226), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(778), - [sym__unquoted_with_expr] = STATE(1108), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1211), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(775), + [sym__unquoted_with_expr] = STATE(1048), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(527), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(528)] = { - [aux_sym__repeat_newline] = STATE(599), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1235), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(780), - [sym__unquoted_with_expr] = STATE(1115), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1223), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(776), + [sym__unquoted_with_expr] = STATE(1055), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(528), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(529)] = { - [aux_sym__repeat_newline] = STATE(617), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1983), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(769), - [sym__unquoted_with_expr] = STATE(1046), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1246), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(777), + [sym__unquoted_with_expr] = STATE(1061), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(529), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(530)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1261), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(801), - [sym__unquoted_with_expr] = STATE(997), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1260), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(778), + [sym__unquoted_with_expr] = STATE(1062), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(530), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(531)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(999), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(802), - [sym__unquoted_with_expr] = STATE(1000), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(550), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1135), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(779), + [sym__unquoted_with_expr] = STATE(1067), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(531), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(532)] = { - [aux_sym__repeat_newline] = STATE(619), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1984), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(770), - [sym__unquoted_with_expr] = STATE(1048), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(551), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1143), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(780), + [sym__unquoted_with_expr] = STATE(1071), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(532), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(533)] = { - [aux_sym__repeat_newline] = STATE(620), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1985), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(771), - [sym__unquoted_with_expr] = STATE(1051), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(552), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1147), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(781), + [sym__unquoted_with_expr] = STATE(1080), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(533), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(534)] = { - [aux_sym__repeat_newline] = STATE(621), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1986), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(772), - [sym__unquoted_with_expr] = STATE(1058), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(553), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1177), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(782), + [sym__unquoted_with_expr] = STATE(1087), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(534), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(535)] = { - [aux_sym__repeat_newline] = STATE(600), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1241), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(781), - [sym__unquoted_with_expr] = STATE(1116), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(554), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1181), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(783), + [sym__unquoted_with_expr] = STATE(1090), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(535), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(536)] = { - [aux_sym__repeat_newline] = STATE(622), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1987), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(774), - [sym__unquoted_with_expr] = STATE(1075), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(555), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1185), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(784), + [sym__unquoted_with_expr] = STATE(1092), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(536), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(537)] = { - [aux_sym__repeat_newline] = STATE(623), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1988), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(775), - [sym__unquoted_with_expr] = STATE(1089), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(556), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1158), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(800), + [sym__unquoted_with_expr] = STATE(977), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(537), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(538)] = { - [aux_sym__repeat_newline] = STATE(624), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1989), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(776), - [sym__unquoted_with_expr] = STATE(1103), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(570), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1244), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(801), + [sym__unquoted_with_expr] = STATE(992), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(538), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(539)] = { - [aux_sym__repeat_newline] = STATE(626), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1104), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(777), - [sym__unquoted_with_expr] = STATE(1105), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(597), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(993), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(810), + [sym__unquoted_with_expr] = STATE(995), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(539), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(540)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(611), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1178), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(814), + [sym__unquoted_with_expr] = STATE(1007), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(540), - [anon_sym_else] = ACTIONS(1955), - [anon_sym_catch] = ACTIONS(1955), - [anon_sym_in] = ACTIONS(1955), - [sym__newline] = ACTIONS(1957), - [anon_sym_SEMI] = ACTIONS(1955), - [anon_sym_PIPE] = ACTIONS(1955), - [anon_sym_err_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_GT_PIPE] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1955), - [anon_sym_COLON] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(1955), - [anon_sym_RPAREN] = ACTIONS(1955), - [anon_sym_GT2] = ACTIONS(1960), - [anon_sym_DASH2] = ACTIONS(1955), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_STAR2] = ACTIONS(1960), - [anon_sym_and2] = ACTIONS(1955), - [anon_sym_xor2] = ACTIONS(1955), - [anon_sym_or2] = ACTIONS(1955), - [anon_sym_not_DASHin2] = ACTIONS(1955), - [anon_sym_has2] = ACTIONS(1955), - [anon_sym_not_DASHhas2] = ACTIONS(1955), - [anon_sym_starts_DASHwith2] = ACTIONS(1955), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1955), - [anon_sym_ends_DASHwith2] = ACTIONS(1955), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1955), - [anon_sym_EQ_EQ2] = ACTIONS(1955), - [anon_sym_BANG_EQ2] = ACTIONS(1955), - [anon_sym_LT2] = ACTIONS(1960), - [anon_sym_LT_EQ2] = ACTIONS(1955), - [anon_sym_GT_EQ2] = ACTIONS(1955), - [anon_sym_EQ_TILDE2] = ACTIONS(1955), - [anon_sym_BANG_TILDE2] = ACTIONS(1955), - [anon_sym_like2] = ACTIONS(1955), - [anon_sym_not_DASHlike2] = ACTIONS(1955), - [anon_sym_STAR_STAR2] = ACTIONS(1955), - [anon_sym_PLUS_PLUS2] = ACTIONS(1955), - [anon_sym_SLASH2] = ACTIONS(1960), - [anon_sym_mod2] = ACTIONS(1955), - [anon_sym_SLASH_SLASH2] = ACTIONS(1955), - [anon_sym_PLUS2] = ACTIONS(1960), - [anon_sym_bit_DASHshl2] = ACTIONS(1955), - [anon_sym_bit_DASHshr2] = ACTIONS(1955), - [anon_sym_bit_DASHand2] = ACTIONS(1955), - [anon_sym_bit_DASHxor2] = ACTIONS(1955), - [anon_sym_bit_DASHor2] = ACTIONS(1955), - [anon_sym_err_GT] = ACTIONS(1960), - [anon_sym_out_GT] = ACTIONS(1960), - [anon_sym_e_GT] = ACTIONS(1960), - [anon_sym_o_GT] = ACTIONS(1960), - [anon_sym_err_PLUSout_GT] = ACTIONS(1960), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1960), - [anon_sym_o_PLUSe_GT] = ACTIONS(1960), - [anon_sym_e_PLUSo_GT] = ACTIONS(1960), - [anon_sym_err_GT_GT] = ACTIONS(1955), - [anon_sym_out_GT_GT] = ACTIONS(1955), - [anon_sym_e_GT_GT] = ACTIONS(1955), - [anon_sym_o_GT_GT] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1955), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(541)] = { - [aux_sym__repeat_newline] = STATE(556), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1564), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(767), - [sym__unquoted_with_expr] = STATE(1030), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(541), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(542)] = { - [aux_sym__repeat_newline] = STATE(557), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1565), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(769), - [sym__unquoted_with_expr] = STATE(1046), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(542), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [STATE(541)] = { + [aux_sym__repeat_newline] = STATE(612), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1187), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(816), + [sym__unquoted_with_expr] = STATE(1009), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(541), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(543)] = { - [aux_sym__repeat_newline] = STATE(558), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1566), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(770), - [sym__unquoted_with_expr] = STATE(1048), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(543), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [STATE(542)] = { + [aux_sym__repeat_newline] = STATE(613), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1196), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(817), + [sym__unquoted_with_expr] = STATE(1011), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(542), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(544)] = { - [aux_sym__repeat_newline] = STATE(559), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1567), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(771), - [sym__unquoted_with_expr] = STATE(1051), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(544), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [STATE(543)] = { + [aux_sym__repeat_newline] = STATE(614), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1206), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(819), + [sym__unquoted_with_expr] = STATE(1012), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(543), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(544)] = { + [sym_comment] = STATE(544), + [anon_sym_in] = ACTIONS(1942), + [sym__newline] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_err_GT_PIPE] = ACTIONS(1942), + [anon_sym_out_GT_PIPE] = ACTIONS(1942), + [anon_sym_e_GT_PIPE] = ACTIONS(1942), + [anon_sym_o_GT_PIPE] = ACTIONS(1942), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1942), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1942), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1942), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1942), + [anon_sym_RPAREN] = ACTIONS(1942), + [anon_sym_GT2] = ACTIONS(1944), + [anon_sym_DASH2] = ACTIONS(1942), + [anon_sym_RBRACE] = ACTIONS(1942), + [anon_sym_STAR2] = ACTIONS(1944), + [anon_sym_and2] = ACTIONS(1942), + [anon_sym_xor2] = ACTIONS(1942), + [anon_sym_or2] = ACTIONS(1942), + [anon_sym_not_DASHin2] = ACTIONS(1942), + [anon_sym_has2] = ACTIONS(1942), + [anon_sym_not_DASHhas2] = ACTIONS(1942), + [anon_sym_starts_DASHwith2] = ACTIONS(1942), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1942), + [anon_sym_ends_DASHwith2] = ACTIONS(1942), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1942), + [anon_sym_EQ_EQ2] = ACTIONS(1942), + [anon_sym_BANG_EQ2] = ACTIONS(1942), + [anon_sym_LT2] = ACTIONS(1944), + [anon_sym_LT_EQ2] = ACTIONS(1942), + [anon_sym_GT_EQ2] = ACTIONS(1942), + [anon_sym_EQ_TILDE2] = ACTIONS(1942), + [anon_sym_BANG_TILDE2] = ACTIONS(1942), + [anon_sym_like2] = ACTIONS(1942), + [anon_sym_not_DASHlike2] = ACTIONS(1942), + [anon_sym_LPAREN2] = ACTIONS(1946), + [anon_sym_STAR_STAR2] = ACTIONS(1942), + [anon_sym_PLUS_PLUS2] = ACTIONS(1942), + [anon_sym_SLASH2] = ACTIONS(1944), + [anon_sym_mod2] = ACTIONS(1942), + [anon_sym_SLASH_SLASH2] = ACTIONS(1942), + [anon_sym_PLUS2] = ACTIONS(1944), + [anon_sym_bit_DASHshl2] = ACTIONS(1942), + [anon_sym_bit_DASHshr2] = ACTIONS(1942), + [anon_sym_bit_DASHand2] = ACTIONS(1942), + [anon_sym_bit_DASHxor2] = ACTIONS(1942), + [anon_sym_bit_DASHor2] = ACTIONS(1942), + [anon_sym_DOT_DOT2] = ACTIONS(1948), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1950), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1950), + [anon_sym_err_GT] = ACTIONS(1944), + [anon_sym_out_GT] = ACTIONS(1944), + [anon_sym_e_GT] = ACTIONS(1944), + [anon_sym_o_GT] = ACTIONS(1944), + [anon_sym_err_PLUSout_GT] = ACTIONS(1944), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1944), + [anon_sym_o_PLUSe_GT] = ACTIONS(1944), + [anon_sym_e_PLUSo_GT] = ACTIONS(1944), + [anon_sym_err_GT_GT] = ACTIONS(1942), + [anon_sym_out_GT_GT] = ACTIONS(1942), + [anon_sym_e_GT_GT] = ACTIONS(1942), + [anon_sym_o_GT_GT] = ACTIONS(1942), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1942), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1942), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1942), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1942), + [sym__unquoted_pattern] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(545)] = { - [aux_sym__repeat_newline] = STATE(560), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1568), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(772), - [sym__unquoted_with_expr] = STATE(1058), - [sym__unquoted_anonymous_prefix] = STATE(4386), [sym_comment] = STATE(545), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_in] = ACTIONS(1952), + [sym__newline] = ACTIONS(1952), + [anon_sym_SEMI] = ACTIONS(1952), + [anon_sym_PIPE] = ACTIONS(1952), + [anon_sym_err_GT_PIPE] = ACTIONS(1952), + [anon_sym_out_GT_PIPE] = ACTIONS(1952), + [anon_sym_e_GT_PIPE] = ACTIONS(1952), + [anon_sym_o_GT_PIPE] = ACTIONS(1952), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1952), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1952), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1952), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1952), + [anon_sym_RPAREN] = ACTIONS(1952), + [anon_sym_GT2] = ACTIONS(1954), + [anon_sym_DASH2] = ACTIONS(1952), + [anon_sym_RBRACE] = ACTIONS(1952), + [anon_sym_STAR2] = ACTIONS(1954), + [anon_sym_and2] = ACTIONS(1952), + [anon_sym_xor2] = ACTIONS(1952), + [anon_sym_or2] = ACTIONS(1952), + [anon_sym_not_DASHin2] = ACTIONS(1952), + [anon_sym_has2] = ACTIONS(1952), + [anon_sym_not_DASHhas2] = ACTIONS(1952), + [anon_sym_starts_DASHwith2] = ACTIONS(1952), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1952), + [anon_sym_ends_DASHwith2] = ACTIONS(1952), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1952), + [anon_sym_EQ_EQ2] = ACTIONS(1952), + [anon_sym_BANG_EQ2] = ACTIONS(1952), + [anon_sym_LT2] = ACTIONS(1954), + [anon_sym_LT_EQ2] = ACTIONS(1952), + [anon_sym_GT_EQ2] = ACTIONS(1952), + [anon_sym_EQ_TILDE2] = ACTIONS(1952), + [anon_sym_BANG_TILDE2] = ACTIONS(1952), + [anon_sym_like2] = ACTIONS(1952), + [anon_sym_not_DASHlike2] = ACTIONS(1952), + [anon_sym_LPAREN2] = ACTIONS(1956), + [anon_sym_STAR_STAR2] = ACTIONS(1952), + [anon_sym_PLUS_PLUS2] = ACTIONS(1952), + [anon_sym_SLASH2] = ACTIONS(1954), + [anon_sym_mod2] = ACTIONS(1952), + [anon_sym_SLASH_SLASH2] = ACTIONS(1952), + [anon_sym_PLUS2] = ACTIONS(1954), + [anon_sym_bit_DASHshl2] = ACTIONS(1952), + [anon_sym_bit_DASHshr2] = ACTIONS(1952), + [anon_sym_bit_DASHand2] = ACTIONS(1952), + [anon_sym_bit_DASHxor2] = ACTIONS(1952), + [anon_sym_bit_DASHor2] = ACTIONS(1952), + [anon_sym_DOT_DOT2] = ACTIONS(1958), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1960), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1960), + [anon_sym_err_GT] = ACTIONS(1954), + [anon_sym_out_GT] = ACTIONS(1954), + [anon_sym_e_GT] = ACTIONS(1954), + [anon_sym_o_GT] = ACTIONS(1954), + [anon_sym_err_PLUSout_GT] = ACTIONS(1954), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1954), + [anon_sym_o_PLUSe_GT] = ACTIONS(1954), + [anon_sym_e_PLUSo_GT] = ACTIONS(1954), + [anon_sym_err_GT_GT] = ACTIONS(1952), + [anon_sym_out_GT_GT] = ACTIONS(1952), + [anon_sym_e_GT_GT] = ACTIONS(1952), + [anon_sym_o_GT_GT] = ACTIONS(1952), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1952), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1952), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1952), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1952), + [sym__unquoted_pattern] = ACTIONS(1962), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(546)] = { - [aux_sym__repeat_newline] = STATE(504), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1569), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(774), - [sym__unquoted_with_expr] = STATE(1075), - [sym__unquoted_anonymous_prefix] = STATE(4386), [sym_comment] = STATE(546), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [ts_builtin_sym_end] = ACTIONS(1806), + [anon_sym_in] = ACTIONS(1806), + [sym__newline] = ACTIONS(1806), + [anon_sym_SEMI] = ACTIONS(1806), + [anon_sym_PIPE] = ACTIONS(1806), + [anon_sym_err_GT_PIPE] = ACTIONS(1806), + [anon_sym_out_GT_PIPE] = ACTIONS(1806), + [anon_sym_e_GT_PIPE] = ACTIONS(1806), + [anon_sym_o_GT_PIPE] = ACTIONS(1806), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1806), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1806), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1806), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1806), + [anon_sym_GT2] = ACTIONS(1808), + [anon_sym_DASH2] = ACTIONS(1806), + [anon_sym_STAR2] = ACTIONS(1808), + [anon_sym_and2] = ACTIONS(1806), + [anon_sym_xor2] = ACTIONS(1806), + [anon_sym_or2] = ACTIONS(1806), + [anon_sym_not_DASHin2] = ACTIONS(1806), + [anon_sym_has2] = ACTIONS(1806), + [anon_sym_not_DASHhas2] = ACTIONS(1806), + [anon_sym_starts_DASHwith2] = ACTIONS(1806), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1806), + [anon_sym_ends_DASHwith2] = ACTIONS(1806), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1806), + [anon_sym_EQ_EQ2] = ACTIONS(1806), + [anon_sym_BANG_EQ2] = ACTIONS(1806), + [anon_sym_LT2] = ACTIONS(1808), + [anon_sym_LT_EQ2] = ACTIONS(1806), + [anon_sym_GT_EQ2] = ACTIONS(1806), + [anon_sym_EQ_TILDE2] = ACTIONS(1806), + [anon_sym_BANG_TILDE2] = ACTIONS(1806), + [anon_sym_like2] = ACTIONS(1806), + [anon_sym_not_DASHlike2] = ACTIONS(1806), + [anon_sym_LPAREN2] = ACTIONS(1806), + [anon_sym_STAR_STAR2] = ACTIONS(1806), + [anon_sym_PLUS_PLUS2] = ACTIONS(1806), + [anon_sym_SLASH2] = ACTIONS(1808), + [anon_sym_mod2] = ACTIONS(1806), + [anon_sym_SLASH_SLASH2] = ACTIONS(1806), + [anon_sym_PLUS2] = ACTIONS(1808), + [anon_sym_bit_DASHshl2] = ACTIONS(1806), + [anon_sym_bit_DASHshr2] = ACTIONS(1806), + [anon_sym_bit_DASHand2] = ACTIONS(1806), + [anon_sym_bit_DASHxor2] = ACTIONS(1806), + [anon_sym_bit_DASHor2] = ACTIONS(1806), + [anon_sym_DOT_DOT2] = ACTIONS(1808), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1806), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1806), + [aux_sym__immediate_decimal_token5] = ACTIONS(1964), + [anon_sym_err_GT] = ACTIONS(1808), + [anon_sym_out_GT] = ACTIONS(1808), + [anon_sym_e_GT] = ACTIONS(1808), + [anon_sym_o_GT] = ACTIONS(1808), + [anon_sym_err_PLUSout_GT] = ACTIONS(1808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1808), + [anon_sym_o_PLUSe_GT] = ACTIONS(1808), + [anon_sym_e_PLUSo_GT] = ACTIONS(1808), + [anon_sym_err_GT_GT] = ACTIONS(1806), + [anon_sym_out_GT_GT] = ACTIONS(1806), + [anon_sym_e_GT_GT] = ACTIONS(1806), + [anon_sym_o_GT_GT] = ACTIONS(1806), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1806), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1806), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1806), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1806), + [sym__unquoted_pattern] = ACTIONS(1808), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(547)] = { - [aux_sym__repeat_newline] = STATE(562), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1570), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(775), - [sym__unquoted_with_expr] = STATE(1089), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [sym_path] = STATE(712), [sym_comment] = STATE(547), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym__where_predicate_lhs_repeat1] = STATE(516), + [ts_builtin_sym_end] = ACTIONS(1492), + [anon_sym_in] = ACTIONS(1492), + [sym__newline] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_err_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_GT_PIPE] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), + [anon_sym_GT2] = ACTIONS(1490), + [anon_sym_DASH2] = ACTIONS(1492), + [anon_sym_STAR2] = ACTIONS(1490), + [anon_sym_and2] = ACTIONS(1492), + [anon_sym_xor2] = ACTIONS(1492), + [anon_sym_or2] = ACTIONS(1492), + [anon_sym_not_DASHin2] = ACTIONS(1492), + [anon_sym_has2] = ACTIONS(1492), + [anon_sym_not_DASHhas2] = ACTIONS(1492), + [anon_sym_starts_DASHwith2] = ACTIONS(1492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1492), + [anon_sym_ends_DASHwith2] = ACTIONS(1492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1492), + [anon_sym_EQ_EQ2] = ACTIONS(1492), + [anon_sym_BANG_EQ2] = ACTIONS(1492), + [anon_sym_LT2] = ACTIONS(1490), + [anon_sym_LT_EQ2] = ACTIONS(1492), + [anon_sym_GT_EQ2] = ACTIONS(1492), + [anon_sym_EQ_TILDE2] = ACTIONS(1492), + [anon_sym_BANG_TILDE2] = ACTIONS(1492), + [anon_sym_like2] = ACTIONS(1492), + [anon_sym_not_DASHlike2] = ACTIONS(1492), + [anon_sym_STAR_STAR2] = ACTIONS(1492), + [anon_sym_PLUS_PLUS2] = ACTIONS(1492), + [anon_sym_SLASH2] = ACTIONS(1490), + [anon_sym_mod2] = ACTIONS(1492), + [anon_sym_SLASH_SLASH2] = ACTIONS(1492), + [anon_sym_PLUS2] = ACTIONS(1490), + [anon_sym_bit_DASHshl2] = ACTIONS(1492), + [anon_sym_bit_DASHshr2] = ACTIONS(1492), + [anon_sym_bit_DASHand2] = ACTIONS(1492), + [anon_sym_bit_DASHxor2] = ACTIONS(1492), + [anon_sym_bit_DASHor2] = ACTIONS(1492), + [anon_sym_DOT_DOT2] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1492), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1492), + [anon_sym_DOT2] = ACTIONS(1852), + [anon_sym_err_GT] = ACTIONS(1490), + [anon_sym_out_GT] = ACTIONS(1490), + [anon_sym_e_GT] = ACTIONS(1490), + [anon_sym_o_GT] = ACTIONS(1490), + [anon_sym_err_PLUSout_GT] = ACTIONS(1490), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1490), + [anon_sym_o_PLUSe_GT] = ACTIONS(1490), + [anon_sym_e_PLUSo_GT] = ACTIONS(1490), + [anon_sym_err_GT_GT] = ACTIONS(1492), + [anon_sym_out_GT_GT] = ACTIONS(1492), + [anon_sym_e_GT_GT] = ACTIONS(1492), + [anon_sym_o_GT_GT] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(548)] = { - [aux_sym__repeat_newline] = STATE(563), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1571), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(776), - [sym__unquoted_with_expr] = STATE(1103), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [sym_expr_parenthesized] = STATE(4058), + [sym__spread_parenthesized] = STATE(4700), + [sym_val_range] = STATE(4730), + [sym__val_range] = STATE(4544), + [sym__value] = STATE(4730), + [sym_val_nothing] = STATE(4604), + [sym_val_bool] = STATE(4358), + [sym__spread_variable] = STATE(4795), + [sym_val_variable] = STATE(3879), + [sym_val_cellpath] = STATE(4604), + [sym_val_number] = STATE(4604), + [sym__val_number_decimal] = STATE(3485), + [sym__val_number] = STATE(4361), + [sym_val_duration] = STATE(4604), + [sym_val_filesize] = STATE(4604), + [sym_val_binary] = STATE(4604), + [sym_val_string] = STATE(4604), + [sym__raw_str] = STATE(3638), + [sym__str_double_quotes] = STATE(3638), + [sym__str_single_quotes] = STATE(3638), + [sym__str_back_ticks] = STATE(3638), + [sym_val_interpolated] = STATE(4604), + [sym__inter_single_quotes] = STATE(4595), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4604), + [sym__spread_list] = STATE(4700), + [sym_val_entry] = STATE(4426), + [sym_val_record] = STATE(4604), + [sym_val_table] = STATE(4604), + [sym_val_closure] = STATE(4604), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4730), + [sym__unquoted_anonymous_prefix] = STATE(4544), [sym_comment] = STATE(548), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_list_body_repeat1] = STATE(668), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), + [anon_sym_LBRACK] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_DOLLAR] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_token1] = ACTIONS(1404), + [aux_sym__val_number_token2] = ACTIONS(1404), + [aux_sym__val_number_token3] = ACTIONS(1404), + [anon_sym_0b] = ACTIONS(1406), + [anon_sym_0o] = ACTIONS(1408), + [anon_sym_0x] = ACTIONS(1408), + [sym_val_date] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_BQUOTE] = ACTIONS(1416), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(1426), }, [STATE(549)] = { - [aux_sym__repeat_newline] = STATE(564), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1104), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(777), - [sym__unquoted_with_expr] = STATE(1105), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [sym_cmd_identifier] = STATE(4341), + [sym_expr_parenthesized] = STATE(5062), + [sym__spread_parenthesized] = STATE(4693), + [sym__spread_variable] = STATE(4695), + [sym_val_variable] = STATE(4141), + [sym_val_number] = STATE(5062), + [sym__val_number_decimal] = STATE(1952), + [sym__val_number] = STATE(676), + [sym_val_string] = STATE(5062), + [sym__raw_str] = STATE(2243), + [sym__str_double_quotes] = STATE(2243), + [sym__str_single_quotes] = STATE(2243), + [sym__str_back_ticks] = STATE(2243), + [sym_val_interpolated] = STATE(5062), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym__spread_record] = STATE(4693), + [sym_record_entry] = STATE(4457), + [sym__record_key] = STATE(5228), [sym_comment] = STATE(549), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [aux_sym__types_body_repeat1] = STATE(1500), + [aux_sym__match_pattern_record_body_repeat1] = STATE(821), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_null] = ACTIONS(1768), + [aux_sym_cmd_identifier_token3] = ACTIONS(1770), + [aux_sym_cmd_identifier_token4] = ACTIONS(1770), + [aux_sym_cmd_identifier_token5] = ACTIONS(1770), + [sym__newline] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1776), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1780), + [aux_sym__val_number_decimal_token2] = ACTIONS(1782), + [aux_sym__val_number_decimal_token3] = ACTIONS(1784), + [aux_sym__val_number_decimal_token4] = ACTIONS(1784), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1790), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(550)] = { - [aux_sym__repeat_newline] = STATE(565), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1572), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(778), - [sym__unquoted_with_expr] = STATE(1108), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1138), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(866), + [sym__unquoted_with_expr] = STATE(1074), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(550), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(551)] = { - [aux_sym__repeat_newline] = STATE(566), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1573), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(780), - [sym__unquoted_with_expr] = STATE(1115), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1156), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(867), + [sym__unquoted_with_expr] = STATE(1076), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(551), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(552)] = { - [aux_sym__repeat_newline] = STATE(567), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1574), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(781), - [sym__unquoted_with_expr] = STATE(1116), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1161), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(868), + [sym__unquoted_with_expr] = STATE(1078), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(552), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(553)] = { - [aux_sym__repeat_newline] = STATE(568), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1575), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(782), - [sym__unquoted_with_expr] = STATE(1120), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1166), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(869), + [sym__unquoted_with_expr] = STATE(1081), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(553), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(554)] = { - [aux_sym__repeat_newline] = STATE(601), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1245), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(782), - [sym__unquoted_with_expr] = STATE(1120), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1171), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(870), + [sym__unquoted_with_expr] = STATE(1084), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(554), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(555)] = { - [aux_sym__repeat_newline] = STATE(627), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1991), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(778), - [sym__unquoted_with_expr] = STATE(1108), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1176), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(884), + [sym__unquoted_with_expr] = STATE(1094), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(555), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(556)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1578), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(792), - [sym__unquoted_with_expr] = STATE(979), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1194), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(885), + [sym__unquoted_with_expr] = STATE(1097), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(556), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(557)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1580), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(793), - [sym__unquoted_with_expr] = STATE(982), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(571), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(2076), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(723), + [sym__unquoted_with_expr] = STATE(973), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(557), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(558)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1582), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(794), - [sym__unquoted_with_expr] = STATE(984), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(572), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(2077), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(724), + [sym__unquoted_with_expr] = STATE(985), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(558), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(559)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1584), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(797), - [sym__unquoted_with_expr] = STATE(989), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(573), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(2079), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(725), + [sym__unquoted_with_expr] = STATE(1016), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(559), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(560)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1586), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(798), - [sym__unquoted_with_expr] = STATE(991), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(574), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(2080), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(728), + [sym__unquoted_with_expr] = STATE(1066), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(560), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(561)] = { - [aux_sym__repeat_newline] = STATE(530), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1221), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(776), - [sym__unquoted_with_expr] = STATE(1103), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(575), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(2083), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(730), + [sym__unquoted_with_expr] = STATE(1096), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(561), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(562)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1589), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(800), - [sym__unquoted_with_expr] = STATE(995), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(576), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(2088), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(732), + [sym__unquoted_with_expr] = STATE(1113), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(562), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(563)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1591), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(801), - [sym__unquoted_with_expr] = STATE(997), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(577), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(2089), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(734), + [sym__unquoted_with_expr] = STATE(967), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(563), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(564)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(999), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(802), - [sym__unquoted_with_expr] = STATE(1000), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(578), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(2098), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(737), + [sym__unquoted_with_expr] = STATE(972), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(564), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(565)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1593), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(803), - [sym__unquoted_with_expr] = STATE(1003), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(670), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(979), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(739), + [sym__unquoted_with_expr] = STATE(981), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(565), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(566)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1595), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(804), - [sym__unquoted_with_expr] = STATE(1006), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(580), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(2100), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(741), + [sym__unquoted_with_expr] = STATE(983), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(566), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(567)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1597), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(805), - [sym__unquoted_with_expr] = STATE(1008), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(581), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(2101), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(743), + [sym__unquoted_with_expr] = STATE(998), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(567), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(568)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1599), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(806), - [sym__unquoted_with_expr] = STATE(1010), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(582), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(2102), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(745), + [sym__unquoted_with_expr] = STATE(1013), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(568), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(569)] = { - [aux_sym__repeat_newline] = STATE(585), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1601), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(807), - [sym__unquoted_with_expr] = STATE(1013), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(583), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(2103), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(747), + [sym__unquoted_with_expr] = STATE(1018), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(569), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(570)] = { - [aux_sym__repeat_newline] = STATE(586), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1602), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(809), - [sym__unquoted_with_expr] = STATE(1014), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1199), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(886), + [sym__unquoted_with_expr] = STATE(1099), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(570), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(571)] = { - [aux_sym__repeat_newline] = STATE(587), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1603), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(810), - [sym__unquoted_with_expr] = STATE(1015), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1967), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(763), + [sym__unquoted_with_expr] = STATE(986), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(571), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(572)] = { - [aux_sym__repeat_newline] = STATE(588), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1605), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(824), - [sym__unquoted_with_expr] = STATE(1017), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1969), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(764), + [sym__unquoted_with_expr] = STATE(989), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(572), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(573)] = { - [aux_sym__repeat_newline] = STATE(589), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1606), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(825), - [sym__unquoted_with_expr] = STATE(1018), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1971), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(765), + [sym__unquoted_with_expr] = STATE(994), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(573), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(574)] = { - [aux_sym__repeat_newline] = STATE(590), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1607), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(827), - [sym__unquoted_with_expr] = STATE(1019), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1973), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(767), + [sym__unquoted_with_expr] = STATE(1003), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(574), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(575)] = { - [aux_sym__repeat_newline] = STATE(591), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1608), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(828), - [sym__unquoted_with_expr] = STATE(1020), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1975), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(768), + [sym__unquoted_with_expr] = STATE(1008), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(575), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(576)] = { - [aux_sym__repeat_newline] = STATE(592), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1609), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(829), - [sym__unquoted_with_expr] = STATE(1022), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1977), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(770), + [sym__unquoted_with_expr] = STATE(1019), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(576), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(577)] = { - [aux_sym__repeat_newline] = STATE(593), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1023), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(831), - [sym__unquoted_with_expr] = STATE(1024), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1979), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(772), + [sym__unquoted_with_expr] = STATE(1022), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(577), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(578)] = { - [aux_sym__repeat_newline] = STATE(594), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1610), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(832), - [sym__unquoted_with_expr] = STATE(1027), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1981), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(773), + [sym__unquoted_with_expr] = STATE(1024), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(578), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(579)] = { - [aux_sym__repeat_newline] = STATE(595), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1611), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(833), - [sym__unquoted_with_expr] = STATE(1029), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(519), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1183), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(724), + [sym__unquoted_with_expr] = STATE(985), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(579), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(580)] = { - [aux_sym__repeat_newline] = STATE(596), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1612), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(834), - [sym__unquoted_with_expr] = STATE(1031), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1983), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(775), + [sym__unquoted_with_expr] = STATE(1048), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(580), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(581)] = { - [aux_sym__repeat_newline] = STATE(597), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1613), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(835), - [sym__unquoted_with_expr] = STATE(1032), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1985), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(776), + [sym__unquoted_with_expr] = STATE(1055), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(581), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(582)] = { - [aux_sym__repeat_newline] = STATE(628), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1992), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(780), - [sym__unquoted_with_expr] = STATE(1115), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1987), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(777), + [sym__unquoted_with_expr] = STATE(1061), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(582), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(583)] = { - [aux_sym__repeat_newline] = STATE(643), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1993), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(781), - [sym__unquoted_with_expr] = STATE(1116), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1989), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(778), + [sym__unquoted_with_expr] = STATE(1062), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(583), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(584)] = { - [aux_sym__repeat_newline] = STATE(646), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1994), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(782), - [sym__unquoted_with_expr] = STATE(1120), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(598), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1991), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(779), + [sym__unquoted_with_expr] = STATE(1067), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(584), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(585)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1626), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(851), - [sym__unquoted_with_expr] = STATE(1054), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(599), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1992), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(780), + [sym__unquoted_with_expr] = STATE(1071), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(585), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(586)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1628), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(852), - [sym__unquoted_with_expr] = STATE(1056), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(600), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1993), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(781), + [sym__unquoted_with_expr] = STATE(1080), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(586), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(587)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1630), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(853), - [sym__unquoted_with_expr] = STATE(1059), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(601), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1994), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(782), + [sym__unquoted_with_expr] = STATE(1087), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(587), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(588)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1632), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(854), - [sym__unquoted_with_expr] = STATE(1061), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(602), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1995), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(783), + [sym__unquoted_with_expr] = STATE(1090), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(588), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(589)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1634), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(855), - [sym__unquoted_with_expr] = STATE(1064), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(603), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1997), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(784), + [sym__unquoted_with_expr] = STATE(1092), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(589), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(590)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1636), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(856), - [sym__unquoted_with_expr] = STATE(1066), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(604), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1999), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(800), + [sym__unquoted_with_expr] = STATE(977), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(590), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(591)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1638), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(857), - [sym__unquoted_with_expr] = STATE(1069), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(605), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(2001), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(801), + [sym__unquoted_with_expr] = STATE(992), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(591), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(592)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1640), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(858), - [sym__unquoted_with_expr] = STATE(1072), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(606), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(993), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(810), + [sym__unquoted_with_expr] = STATE(995), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(592), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(593)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1074), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(859), - [sym__unquoted_with_expr] = STATE(1076), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(607), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(2004), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(814), + [sym__unquoted_with_expr] = STATE(1007), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(593), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(594)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1642), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(860), - [sym__unquoted_with_expr] = STATE(1079), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(608), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(2005), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(816), + [sym__unquoted_with_expr] = STATE(1009), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(594), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(595)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1644), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(861), - [sym__unquoted_with_expr] = STATE(1081), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(609), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(2007), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(817), + [sym__unquoted_with_expr] = STATE(1011), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(595), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(596)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1646), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(862), - [sym__unquoted_with_expr] = STATE(1084), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(610), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(2009), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(819), + [sym__unquoted_with_expr] = STATE(1012), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(596), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(597)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1648), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(863), - [sym__unquoted_with_expr] = STATE(1087), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1101), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(887), + [sym__unquoted_with_expr] = STATE(1102), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(597), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(598)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1178), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(803), - [sym__unquoted_with_expr] = STATE(1003), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(2024), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(866), + [sym__unquoted_with_expr] = STATE(1074), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(598), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(599)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1188), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(804), - [sym__unquoted_with_expr] = STATE(1006), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(2026), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(867), + [sym__unquoted_with_expr] = STATE(1076), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(599), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(600)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1201), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(805), - [sym__unquoted_with_expr] = STATE(1008), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(2028), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(868), + [sym__unquoted_with_expr] = STATE(1078), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(600), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(601)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1217), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(806), - [sym__unquoted_with_expr] = STATE(1010), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(2030), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(869), + [sym__unquoted_with_expr] = STATE(1081), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(601), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(602)] = { - [aux_sym__repeat_newline] = STATE(631), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1236), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(807), - [sym__unquoted_with_expr] = STATE(1013), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(2032), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(870), + [sym__unquoted_with_expr] = STATE(1084), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(602), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(603)] = { - [aux_sym__repeat_newline] = STATE(632), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1249), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(809), - [sym__unquoted_with_expr] = STATE(1014), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(2034), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(884), + [sym__unquoted_with_expr] = STATE(1094), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(603), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(604)] = { - [aux_sym__repeat_newline] = STATE(633), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1253), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(810), - [sym__unquoted_with_expr] = STATE(1015), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1966), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(885), + [sym__unquoted_with_expr] = STATE(1097), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(604), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(605)] = { - [aux_sym__repeat_newline] = STATE(634), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1154), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(824), - [sym__unquoted_with_expr] = STATE(1017), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(2038), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(886), + [sym__unquoted_with_expr] = STATE(1099), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(605), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(606)] = { - [aux_sym__repeat_newline] = STATE(635), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1161), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(825), - [sym__unquoted_with_expr] = STATE(1018), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1101), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(887), + [sym__unquoted_with_expr] = STATE(1102), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(606), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(607)] = { - [aux_sym__repeat_newline] = STATE(636), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1164), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(827), - [sym__unquoted_with_expr] = STATE(1019), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(2040), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(888), + [sym__unquoted_with_expr] = STATE(1105), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(607), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(608)] = { - [aux_sym__repeat_newline] = STATE(638), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1171), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(828), - [sym__unquoted_with_expr] = STATE(1020), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(2042), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(889), + [sym__unquoted_with_expr] = STATE(1108), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(608), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(609)] = { - [aux_sym__repeat_newline] = STATE(639), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1174), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(829), - [sym__unquoted_with_expr] = STATE(1022), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(2044), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(890), + [sym__unquoted_with_expr] = STATE(1111), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(609), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(610)] = { - [aux_sym__repeat_newline] = STATE(640), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1023), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(831), - [sym__unquoted_with_expr] = STATE(1024), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(2046), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(891), + [sym__unquoted_with_expr] = STATE(1114), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(610), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(611)] = { - [aux_sym__repeat_newline] = STATE(641), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1185), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(832), - [sym__unquoted_with_expr] = STATE(1027), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1209), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(888), + [sym__unquoted_with_expr] = STATE(1105), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(611), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(612)] = { - [aux_sym__repeat_newline] = STATE(644), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1192), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(833), - [sym__unquoted_with_expr] = STATE(1029), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1214), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(889), + [sym__unquoted_with_expr] = STATE(1108), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(612), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(613)] = { - [aux_sym__repeat_newline] = STATE(647), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1195), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(834), - [sym__unquoted_with_expr] = STATE(1031), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1219), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(890), + [sym__unquoted_with_expr] = STATE(1111), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(613), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(614)] = { - [aux_sym__repeat_newline] = STATE(650), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1199), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(835), - [sym__unquoted_with_expr] = STATE(1032), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1224), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(891), + [sym__unquoted_with_expr] = STATE(1114), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(614), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(615)] = { + [sym_cmd_identifier] = STATE(4341), + [sym_expr_parenthesized] = STATE(5062), + [sym__spread_parenthesized] = STATE(4693), + [sym__spread_variable] = STATE(4695), + [sym_val_variable] = STATE(5062), + [sym_val_number] = STATE(5062), + [sym__val_number_decimal] = STATE(1952), + [sym__val_number] = STATE(676), + [sym_val_string] = STATE(5062), + [sym__raw_str] = STATE(2243), + [sym__str_double_quotes] = STATE(2243), + [sym__str_single_quotes] = STATE(2243), + [sym__str_back_ticks] = STATE(2243), + [sym_val_interpolated] = STATE(5062), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym__spread_record] = STATE(4693), + [sym_record_entry] = STATE(4647), + [sym__record_key] = STATE(5228), [sym_comment] = STATE(615), - [ts_builtin_sym_end] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [anon_sym_DOT_DOT2] = ACTIONS(1804), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1802), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1802), - [aux_sym__immediate_decimal_token5] = ACTIONS(1962), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(616)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1996), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(792), - [sym__unquoted_with_expr] = STATE(979), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(616), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(617)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1998), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(793), - [sym__unquoted_with_expr] = STATE(982), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(617), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(618)] = { - [sym_cmd_identifier] = STATE(4167), - [sym_expr_parenthesized] = STATE(5186), - [sym__spread_parenthesized] = STATE(4688), - [sym__spread_variable] = STATE(4697), - [sym_val_variable] = STATE(5186), - [sym_val_number] = STATE(5186), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(5186), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(5186), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4688), - [sym_record_entry] = STATE(4463), - [sym__record_key] = STATE(4982), - [sym_comment] = STATE(618), - [aux_sym__types_body_repeat1] = STATE(1498), - [aux_sym_record_body_repeat1] = STATE(878), + [aux_sym__types_body_repeat1] = STATE(1500), + [aux_sym_record_body_repeat1] = STATE(721), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -94746,4038 +94738,4182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1792), }, + [STATE(616)] = { + [aux_sym__repeat_newline] = STATE(628), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1675), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(723), + [sym__unquoted_with_expr] = STATE(973), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(616), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(617)] = { + [aux_sym__repeat_newline] = STATE(629), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1600), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(724), + [sym__unquoted_with_expr] = STATE(985), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(617), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(618)] = { + [aux_sym__repeat_newline] = STATE(630), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1614), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(725), + [sym__unquoted_with_expr] = STATE(1016), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(618), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, [STATE(619)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2000), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(794), - [sym__unquoted_with_expr] = STATE(984), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(631), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1531), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(728), + [sym__unquoted_with_expr] = STATE(1066), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(619), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(620)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2002), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(797), - [sym__unquoted_with_expr] = STATE(989), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(632), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1520), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(730), + [sym__unquoted_with_expr] = STATE(1096), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(620), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(621)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2004), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(798), - [sym__unquoted_with_expr] = STATE(991), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(633), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1538), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(732), + [sym__unquoted_with_expr] = STATE(1113), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(621), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(622)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2006), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(799), - [sym__unquoted_with_expr] = STATE(993), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(634), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1542), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(734), + [sym__unquoted_with_expr] = STATE(967), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(622), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(623)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2008), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(800), - [sym__unquoted_with_expr] = STATE(995), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(635), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1596), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(737), + [sym__unquoted_with_expr] = STATE(972), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(623), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(624)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2010), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(801), - [sym__unquoted_with_expr] = STATE(997), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(636), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(979), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(739), + [sym__unquoted_with_expr] = STATE(981), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(624), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(625)] = { - [sym_cmd_identifier] = STATE(4167), - [sym_expr_parenthesized] = STATE(5186), - [sym__spread_parenthesized] = STATE(4688), - [sym__spread_variable] = STATE(4697), - [sym_val_variable] = STATE(4328), - [sym_val_number] = STATE(5186), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(5186), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(5186), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4688), - [sym_record_entry] = STATE(4564), - [sym__record_key] = STATE(4982), + [aux_sym__repeat_newline] = STATE(637), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1598), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(741), + [sym__unquoted_with_expr] = STATE(983), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(625), - [aux_sym__types_body_repeat1] = STATE(1498), - [aux_sym__match_pattern_record_body_repeat1] = STATE(836), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(626)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(999), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(802), - [sym__unquoted_with_expr] = STATE(1000), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(638), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1613), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(743), + [sym__unquoted_with_expr] = STATE(998), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(626), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(627)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2012), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(803), - [sym__unquoted_with_expr] = STATE(1003), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(640), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1522), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(747), + [sym__unquoted_with_expr] = STATE(1018), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(627), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(628)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2014), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(804), - [sym__unquoted_with_expr] = STATE(1006), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1629), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(763), + [sym__unquoted_with_expr] = STATE(986), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(628), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(629)] = { - [sym_expr_parenthesized] = STATE(3911), - [sym__spread_parenthesized] = STATE(4721), - [sym_val_range] = STATE(4776), - [sym__val_range] = STATE(4523), - [sym__value] = STATE(4776), - [sym_val_nothing] = STATE(4452), - [sym_val_bool] = STATE(4309), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4452), - [sym_val_number] = STATE(4452), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4130), - [sym_val_duration] = STATE(4452), - [sym_val_filesize] = STATE(4452), - [sym_val_binary] = STATE(4452), - [sym_val_string] = STATE(4452), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4452), - [sym__inter_single_quotes] = STATE(4504), - [sym__inter_double_quotes] = STATE(4369), - [sym_val_list] = STATE(4452), - [sym__spread_list] = STATE(4721), - [sym_val_entry] = STATE(4572), - [sym_val_record] = STATE(4452), - [sym_val_table] = STATE(4452), - [sym_val_closure] = STATE(4452), - [sym__unquoted_in_list] = STATE(4312), - [sym__unquoted_in_list_with_expr] = STATE(4776), - [sym__unquoted_anonymous_prefix] = STATE(4523), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1637), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(764), + [sym__unquoted_with_expr] = STATE(989), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(629), - [aux_sym_list_body_repeat1] = STATE(657), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(630)] = { - [sym_expr_parenthesized] = STATE(3911), - [sym__spread_parenthesized] = STATE(4721), - [sym_val_range] = STATE(4776), - [sym__val_range] = STATE(4523), - [sym__value] = STATE(4776), - [sym_val_nothing] = STATE(4452), - [sym_val_bool] = STATE(4309), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4452), - [sym_val_number] = STATE(4452), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4130), - [sym_val_duration] = STATE(4452), - [sym_val_filesize] = STATE(4452), - [sym_val_binary] = STATE(4452), - [sym_val_string] = STATE(4452), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4452), - [sym__inter_single_quotes] = STATE(4504), - [sym__inter_double_quotes] = STATE(4369), - [sym_val_list] = STATE(4452), - [sym__spread_list] = STATE(4721), - [sym_val_entry] = STATE(4608), - [sym_val_record] = STATE(4452), - [sym_val_table] = STATE(4452), - [sym_val_closure] = STATE(4452), - [sym__unquoted_in_list] = STATE(4312), - [sym__unquoted_in_list_with_expr] = STATE(4776), - [sym__unquoted_anonymous_prefix] = STATE(4523), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1639), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(765), + [sym__unquoted_with_expr] = STATE(994), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(630), - [aux_sym_list_body_repeat1] = STATE(657), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [aux_sym_cmd_identifier_token3] = ACTIONS(1486), - [aux_sym_cmd_identifier_token4] = ACTIONS(1486), - [aux_sym_cmd_identifier_token5] = ACTIONS(1486), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1500), - [anon_sym_DOT_DOT_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1502), - [aux_sym__val_number_decimal_token2] = ACTIONS(1504), - [aux_sym__val_number_decimal_token3] = ACTIONS(1506), - [aux_sym__val_number_decimal_token4] = ACTIONS(1506), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(631)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1134), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(851), - [sym__unquoted_with_expr] = STATE(1054), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1641), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(767), + [sym__unquoted_with_expr] = STATE(1003), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(631), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(632)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1139), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(852), - [sym__unquoted_with_expr] = STATE(1056), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1652), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(768), + [sym__unquoted_with_expr] = STATE(1008), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(632), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(633)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1143), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(853), - [sym__unquoted_with_expr] = STATE(1059), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1660), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(770), + [sym__unquoted_with_expr] = STATE(1019), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(633), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(634)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1148), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(854), - [sym__unquoted_with_expr] = STATE(1061), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1662), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(772), + [sym__unquoted_with_expr] = STATE(1022), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(634), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(635)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1152), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(855), - [sym__unquoted_with_expr] = STATE(1064), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1667), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(773), + [sym__unquoted_with_expr] = STATE(1024), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(635), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(636)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1157), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(856), - [sym__unquoted_with_expr] = STATE(1066), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1026), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(774), + [sym__unquoted_with_expr] = STATE(1044), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(636), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(637)] = { - [aux_sym__repeat_newline] = STATE(531), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1104), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(777), - [sym__unquoted_with_expr] = STATE(1105), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1509), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(775), + [sym__unquoted_with_expr] = STATE(1048), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(637), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(638)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1162), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(857), - [sym__unquoted_with_expr] = STATE(1069), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1511), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(776), + [sym__unquoted_with_expr] = STATE(1055), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(638), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(639)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1167), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(858), - [sym__unquoted_with_expr] = STATE(1072), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1513), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(777), + [sym__unquoted_with_expr] = STATE(1061), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(639), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(640)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1074), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(859), - [sym__unquoted_with_expr] = STATE(1076), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1515), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(778), + [sym__unquoted_with_expr] = STATE(1062), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(640), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(641)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1177), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(860), - [sym__unquoted_with_expr] = STATE(1079), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(654), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1518), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(779), + [sym__unquoted_with_expr] = STATE(1067), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(641), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(642)] = { + [aux_sym__repeat_newline] = STATE(655), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1519), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(780), + [sym__unquoted_with_expr] = STATE(1071), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(642), - [anon_sym_in] = ACTIONS(1964), - [sym__newline] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_err_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_GT_PIPE] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_GT2] = ACTIONS(1966), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_STAR2] = ACTIONS(1966), - [anon_sym_and2] = ACTIONS(1964), - [anon_sym_xor2] = ACTIONS(1964), - [anon_sym_or2] = ACTIONS(1964), - [anon_sym_not_DASHin2] = ACTIONS(1964), - [anon_sym_has2] = ACTIONS(1964), - [anon_sym_not_DASHhas2] = ACTIONS(1964), - [anon_sym_starts_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1964), - [anon_sym_ends_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1964), - [anon_sym_EQ_EQ2] = ACTIONS(1964), - [anon_sym_BANG_EQ2] = ACTIONS(1964), - [anon_sym_LT2] = ACTIONS(1966), - [anon_sym_LT_EQ2] = ACTIONS(1964), - [anon_sym_GT_EQ2] = ACTIONS(1964), - [anon_sym_EQ_TILDE2] = ACTIONS(1964), - [anon_sym_BANG_TILDE2] = ACTIONS(1964), - [anon_sym_like2] = ACTIONS(1964), - [anon_sym_not_DASHlike2] = ACTIONS(1964), - [anon_sym_LPAREN2] = ACTIONS(1968), - [anon_sym_STAR_STAR2] = ACTIONS(1964), - [anon_sym_PLUS_PLUS2] = ACTIONS(1964), - [anon_sym_SLASH2] = ACTIONS(1966), - [anon_sym_mod2] = ACTIONS(1964), - [anon_sym_SLASH_SLASH2] = ACTIONS(1964), - [anon_sym_PLUS2] = ACTIONS(1966), - [anon_sym_bit_DASHshl2] = ACTIONS(1964), - [anon_sym_bit_DASHshr2] = ACTIONS(1964), - [anon_sym_bit_DASHand2] = ACTIONS(1964), - [anon_sym_bit_DASHxor2] = ACTIONS(1964), - [anon_sym_bit_DASHor2] = ACTIONS(1964), - [anon_sym_DOT_DOT2] = ACTIONS(1970), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1972), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1972), - [anon_sym_err_GT] = ACTIONS(1966), - [anon_sym_out_GT] = ACTIONS(1966), - [anon_sym_e_GT] = ACTIONS(1966), - [anon_sym_o_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT] = ACTIONS(1966), - [anon_sym_err_GT_GT] = ACTIONS(1964), - [anon_sym_out_GT_GT] = ACTIONS(1964), - [anon_sym_e_GT_GT] = ACTIONS(1964), - [anon_sym_o_GT_GT] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1964), - [sym__unquoted_pattern] = ACTIONS(1615), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(643)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2016), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(805), - [sym__unquoted_with_expr] = STATE(1008), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(656), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1521), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(781), + [sym__unquoted_with_expr] = STATE(1080), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(643), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(644)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1181), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(861), - [sym__unquoted_with_expr] = STATE(1081), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(657), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1523), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(782), + [sym__unquoted_with_expr] = STATE(1087), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(644), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(645)] = { + [aux_sym__repeat_newline] = STATE(658), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1525), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(783), + [sym__unquoted_with_expr] = STATE(1090), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(645), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_LPAREN2] = ACTIONS(1978), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_DOT_DOT2] = ACTIONS(1980), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1982), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1982), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), - [sym__unquoted_pattern] = ACTIONS(1984), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(646)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2018), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(806), - [sym__unquoted_with_expr] = STATE(1010), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(659), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1527), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(784), + [sym__unquoted_with_expr] = STATE(1092), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(646), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(647)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1186), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(862), - [sym__unquoted_with_expr] = STATE(1084), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(660), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1529), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(800), + [sym__unquoted_with_expr] = STATE(977), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(647), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(648)] = { - [aux_sym__repeat_newline] = STATE(671), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2020), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(807), - [sym__unquoted_with_expr] = STATE(1013), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(661), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1530), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(801), + [sym__unquoted_with_expr] = STATE(992), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(648), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(649)] = { - [aux_sym__repeat_newline] = STATE(505), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2021), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(809), - [sym__unquoted_with_expr] = STATE(1014), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(662), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(993), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(810), + [sym__unquoted_with_expr] = STATE(995), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(649), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(650)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1191), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(863), - [sym__unquoted_with_expr] = STATE(1087), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(663), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1533), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(814), + [sym__unquoted_with_expr] = STATE(1007), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(650), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(651)] = { - [aux_sym__repeat_newline] = STATE(506), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2022), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(810), - [sym__unquoted_with_expr] = STATE(1015), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(664), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1535), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(816), + [sym__unquoted_with_expr] = STATE(1009), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(651), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(652)] = { - [aux_sym__repeat_newline] = STATE(507), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2023), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(824), - [sym__unquoted_with_expr] = STATE(1017), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(665), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1537), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(817), + [sym__unquoted_with_expr] = STATE(1011), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(652), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(653)] = { - [aux_sym__repeat_newline] = STATE(508), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2024), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(825), - [sym__unquoted_with_expr] = STATE(1018), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(666), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1539), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(819), + [sym__unquoted_with_expr] = STATE(1012), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(653), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(654)] = { - [aux_sym__repeat_newline] = STATE(509), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2025), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(827), - [sym__unquoted_with_expr] = STATE(1019), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1556), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(866), + [sym__unquoted_with_expr] = STATE(1074), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(654), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(655)] = { - [aux_sym__repeat_newline] = STATE(525), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1182), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(775), - [sym__unquoted_with_expr] = STATE(1089), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1558), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(867), + [sym__unquoted_with_expr] = STATE(1076), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(655), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(656)] = { - [aux_sym__repeat_newline] = STATE(510), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2026), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(828), - [sym__unquoted_with_expr] = STATE(1020), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1560), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(868), + [sym__unquoted_with_expr] = STATE(1078), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(656), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(657)] = { - [sym_expr_parenthesized] = STATE(3911), - [sym__spread_parenthesized] = STATE(4721), - [sym_val_range] = STATE(4776), - [sym__val_range] = STATE(4523), - [sym__value] = STATE(4776), - [sym_val_nothing] = STATE(4452), - [sym_val_bool] = STATE(4309), - [sym__spread_variable] = STATE(4681), - [sym_val_variable] = STATE(3846), - [sym_val_cellpath] = STATE(4452), - [sym_val_number] = STATE(4452), - [sym__val_number_decimal] = STATE(3456), - [sym__val_number] = STATE(4130), - [sym_val_duration] = STATE(4452), - [sym_val_filesize] = STATE(4452), - [sym_val_binary] = STATE(4452), - [sym_val_string] = STATE(4452), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_interpolated] = STATE(4452), - [sym__inter_single_quotes] = STATE(4504), - [sym__inter_double_quotes] = STATE(4369), - [sym_val_list] = STATE(4452), - [sym__spread_list] = STATE(4721), - [sym_val_entry] = STATE(4732), - [sym_val_record] = STATE(4452), - [sym_val_table] = STATE(4452), - [sym_val_closure] = STATE(4452), - [sym__unquoted_in_list] = STATE(4312), - [sym__unquoted_in_list_with_expr] = STATE(4776), - [sym__unquoted_anonymous_prefix] = STATE(4523), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1562), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(869), + [sym__unquoted_with_expr] = STATE(1081), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(657), - [aux_sym_list_body_repeat1] = STATE(657), - [anon_sym_true] = ACTIONS(1986), - [anon_sym_false] = ACTIONS(1986), - [anon_sym_null] = ACTIONS(1989), - [aux_sym_cmd_identifier_token3] = ACTIONS(1992), - [aux_sym_cmd_identifier_token4] = ACTIONS(1992), - [aux_sym_cmd_identifier_token5] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1995), - [anon_sym_LPAREN] = ACTIONS(1998), - [anon_sym_DOLLAR] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2004), - [anon_sym_DOT_DOT] = ACTIONS(2007), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2010), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2013), - [anon_sym_DOT_DOT_LT] = ACTIONS(2013), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2016), - [aux_sym__val_number_decimal_token1] = ACTIONS(2019), - [aux_sym__val_number_decimal_token2] = ACTIONS(2022), - [aux_sym__val_number_decimal_token3] = ACTIONS(2025), - [aux_sym__val_number_decimal_token4] = ACTIONS(2025), - [aux_sym__val_number_token1] = ACTIONS(2028), - [aux_sym__val_number_token2] = ACTIONS(2028), - [aux_sym__val_number_token3] = ACTIONS(2028), - [anon_sym_0b] = ACTIONS(2031), - [anon_sym_0o] = ACTIONS(2034), - [anon_sym_0x] = ACTIONS(2034), - [sym_val_date] = ACTIONS(2037), - [anon_sym_DQUOTE] = ACTIONS(2040), - [anon_sym_SQUOTE] = ACTIONS(2043), - [anon_sym_BQUOTE] = ACTIONS(2046), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2049), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2052), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2055), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2058), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2061), - }, - [STATE(658)] = { - [aux_sym__repeat_newline] = STATE(511), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2027), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(829), - [sym__unquoted_with_expr] = STATE(1022), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(658), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(659)] = { - [aux_sym__repeat_newline] = STATE(512), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1023), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(831), - [sym__unquoted_with_expr] = STATE(1024), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(659), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(658)] = { + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1564), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(870), + [sym__unquoted_with_expr] = STATE(1084), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(658), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(660)] = { - [aux_sym__repeat_newline] = STATE(513), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2028), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(832), - [sym__unquoted_with_expr] = STATE(1027), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(660), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(659)] = { + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1566), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(884), + [sym__unquoted_with_expr] = STATE(1094), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(659), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(661)] = { - [aux_sym__repeat_newline] = STATE(514), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2029), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(833), - [sym__unquoted_with_expr] = STATE(1029), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(661), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(660)] = { + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1568), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(885), + [sym__unquoted_with_expr] = STATE(1097), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(660), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(662)] = { - [aux_sym__repeat_newline] = STATE(515), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2030), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(834), - [sym__unquoted_with_expr] = STATE(1031), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(662), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(661)] = { + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1570), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(886), + [sym__unquoted_with_expr] = STATE(1099), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(661), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(663)] = { - [aux_sym__repeat_newline] = STATE(516), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2031), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(835), - [sym__unquoted_with_expr] = STATE(1032), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(663), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), + [STATE(662)] = { + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1101), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(887), + [sym__unquoted_with_expr] = STATE(1102), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(662), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(664)] = { - [sym_comment] = STATE(664), - [ts_builtin_sym_end] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT_DOT2] = ACTIONS(1738), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1736), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1736), - [aux_sym__immediate_decimal_token5] = ACTIONS(1848), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(665)] = { - [aux_sym__repeat_newline] = STATE(519), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1176), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(767), - [sym__unquoted_with_expr] = STATE(1030), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(665), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [STATE(663)] = { + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1572), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(888), + [sym__unquoted_with_expr] = STATE(1105), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(663), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(666)] = { - [aux_sym__repeat_newline] = STATE(520), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1262), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(769), - [sym__unquoted_with_expr] = STATE(1046), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(666), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [STATE(664)] = { + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1574), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(889), + [sym__unquoted_with_expr] = STATE(1108), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(664), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(667)] = { - [aux_sym__repeat_newline] = STATE(521), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1250), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(770), - [sym__unquoted_with_expr] = STATE(1048), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(667), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [STATE(665)] = { + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1576), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(890), + [sym__unquoted_with_expr] = STATE(1111), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(665), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(668)] = { - [aux_sym__repeat_newline] = STATE(522), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1255), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(771), - [sym__unquoted_with_expr] = STATE(1051), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(668), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [STATE(666)] = { + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1578), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(891), + [sym__unquoted_with_expr] = STATE(1114), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(666), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(667)] = { + [sym_expr_parenthesized] = STATE(4058), + [sym__spread_parenthesized] = STATE(4700), + [sym_val_range] = STATE(4730), + [sym__val_range] = STATE(4544), + [sym__value] = STATE(4730), + [sym_val_nothing] = STATE(4604), + [sym_val_bool] = STATE(4358), + [sym__spread_variable] = STATE(4795), + [sym_val_variable] = STATE(3879), + [sym_val_cellpath] = STATE(4604), + [sym_val_number] = STATE(4604), + [sym__val_number_decimal] = STATE(3485), + [sym__val_number] = STATE(4361), + [sym_val_duration] = STATE(4604), + [sym_val_filesize] = STATE(4604), + [sym_val_binary] = STATE(4604), + [sym_val_string] = STATE(4604), + [sym__raw_str] = STATE(3638), + [sym__str_double_quotes] = STATE(3638), + [sym__str_single_quotes] = STATE(3638), + [sym__str_back_ticks] = STATE(3638), + [sym_val_interpolated] = STATE(4604), + [sym__inter_single_quotes] = STATE(4595), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4604), + [sym__spread_list] = STATE(4700), + [sym_val_entry] = STATE(4427), + [sym_val_record] = STATE(4604), + [sym_val_table] = STATE(4604), + [sym_val_closure] = STATE(4604), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4730), + [sym__unquoted_anonymous_prefix] = STATE(4544), + [sym_comment] = STATE(667), + [aux_sym_list_body_repeat1] = STATE(668), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), + [anon_sym_LBRACK] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_DOLLAR] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_token1] = ACTIONS(1404), + [aux_sym__val_number_token2] = ACTIONS(1404), + [aux_sym__val_number_token3] = ACTIONS(1404), + [anon_sym_0b] = ACTIONS(1406), + [anon_sym_0o] = ACTIONS(1408), + [anon_sym_0x] = ACTIONS(1408), + [sym_val_date] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_BQUOTE] = ACTIONS(1416), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1426), + }, + [STATE(668)] = { + [sym_expr_parenthesized] = STATE(4058), + [sym__spread_parenthesized] = STATE(4700), + [sym_val_range] = STATE(4730), + [sym__val_range] = STATE(4544), + [sym__value] = STATE(4730), + [sym_val_nothing] = STATE(4604), + [sym_val_bool] = STATE(4358), + [sym__spread_variable] = STATE(4795), + [sym_val_variable] = STATE(3879), + [sym_val_cellpath] = STATE(4604), + [sym_val_number] = STATE(4604), + [sym__val_number_decimal] = STATE(3485), + [sym__val_number] = STATE(4361), + [sym_val_duration] = STATE(4604), + [sym_val_filesize] = STATE(4604), + [sym_val_binary] = STATE(4604), + [sym_val_string] = STATE(4604), + [sym__raw_str] = STATE(3638), + [sym__str_double_quotes] = STATE(3638), + [sym__str_single_quotes] = STATE(3638), + [sym__str_back_ticks] = STATE(3638), + [sym_val_interpolated] = STATE(4604), + [sym__inter_single_quotes] = STATE(4595), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4604), + [sym__spread_list] = STATE(4700), + [sym_val_entry] = STATE(4750), + [sym_val_record] = STATE(4604), + [sym_val_table] = STATE(4604), + [sym_val_closure] = STATE(4604), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4730), + [sym__unquoted_anonymous_prefix] = STATE(4544), + [sym_comment] = STATE(668), + [aux_sym_list_body_repeat1] = STATE(668), + [anon_sym_true] = ACTIONS(1984), + [anon_sym_false] = ACTIONS(1984), + [anon_sym_null] = ACTIONS(1987), + [aux_sym_cmd_identifier_token3] = ACTIONS(1990), + [aux_sym_cmd_identifier_token4] = ACTIONS(1990), + [aux_sym_cmd_identifier_token5] = ACTIONS(1990), + [anon_sym_LBRACK] = ACTIONS(1993), + [anon_sym_LPAREN] = ACTIONS(1996), + [anon_sym_DOLLAR] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2005), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2008), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2011), + [anon_sym_DOT_DOT_LT] = ACTIONS(2011), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2014), + [aux_sym__val_number_decimal_token1] = ACTIONS(2017), + [aux_sym__val_number_decimal_token2] = ACTIONS(2020), + [aux_sym__val_number_decimal_token3] = ACTIONS(2023), + [aux_sym__val_number_decimal_token4] = ACTIONS(2023), + [aux_sym__val_number_token1] = ACTIONS(2026), + [aux_sym__val_number_token2] = ACTIONS(2026), + [aux_sym__val_number_token3] = ACTIONS(2026), + [anon_sym_0b] = ACTIONS(2029), + [anon_sym_0o] = ACTIONS(2032), + [anon_sym_0x] = ACTIONS(2032), + [sym_val_date] = ACTIONS(2035), + [anon_sym_DQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2041), + [anon_sym_BQUOTE] = ACTIONS(2044), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2047), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2050), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2053), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2056), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2059), + }, [STATE(669)] = { - [aux_sym__repeat_newline] = STATE(523), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1135), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(772), - [sym__unquoted_with_expr] = STATE(1058), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [aux_sym__repeat_newline] = STATE(518), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1200), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(723), + [sym__unquoted_with_expr] = STATE(973), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(669), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(670)] = { - [aux_sym__repeat_newline] = STATE(524), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(1158), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [aux_sym__repeat_newline] = STATE(2156), + [sym_expr_unary] = STATE(1190), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1190), + [sym__expr_binary_expression_parenthesized] = STATE(1026), + [sym_expr_parenthesized] = STATE(722), + [sym_val_range] = STATE(1190), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(1190), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), [sym_unquoted] = STATE(774), - [sym__unquoted_with_expr] = STATE(1075), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [sym__unquoted_with_expr] = STATE(1044), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(670), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [sym__newline] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(671)] = { - [aux_sym__repeat_newline] = STATE(2201), - [sym_expr_unary] = STATE(1166), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1166), - [sym__expr_binary_expression_parenthesized] = STATE(2044), - [sym_expr_parenthesized] = STATE(766), - [sym_val_range] = STATE(1166), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(1166), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(851), - [sym__unquoted_with_expr] = STATE(1054), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [sym__expr_parenthesized_immediate] = STATE(4728), [sym_comment] = STATE(671), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [sym__newline] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(672)] = { + [sym__expr_parenthesized_immediate] = STATE(5243), [sym_comment] = STATE(672), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(2064), - [aux_sym__immediate_decimal_token5] = ACTIONS(2066), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), + [anon_sym_in] = 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_RPAREN] = ACTIONS(2066), + [anon_sym_GT2] = ACTIONS(2068), + [anon_sym_DASH2] = ACTIONS(2066), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_RBRACE] = ACTIONS(2066), + [anon_sym_EQ_GT] = ACTIONS(2066), + [anon_sym_STAR2] = ACTIONS(2068), + [anon_sym_and2] = ACTIONS(2066), + [anon_sym_xor2] = ACTIONS(2066), + [anon_sym_or2] = ACTIONS(2066), + [anon_sym_not_DASHin2] = ACTIONS(2066), + [anon_sym_has2] = ACTIONS(2066), + [anon_sym_not_DASHhas2] = ACTIONS(2066), + [anon_sym_starts_DASHwith2] = ACTIONS(2066), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2066), + [anon_sym_ends_DASHwith2] = ACTIONS(2066), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2066), + [anon_sym_EQ_EQ2] = ACTIONS(2066), + [anon_sym_BANG_EQ2] = ACTIONS(2066), + [anon_sym_LT2] = ACTIONS(2068), + [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_like2] = ACTIONS(2066), + [anon_sym_not_DASHlike2] = ACTIONS(2066), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2066), + [anon_sym_PLUS_PLUS2] = ACTIONS(2066), + [anon_sym_SLASH2] = ACTIONS(2068), + [anon_sym_mod2] = ACTIONS(2066), + [anon_sym_SLASH_SLASH2] = ACTIONS(2066), + [anon_sym_PLUS2] = ACTIONS(2068), + [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_err_GT] = ACTIONS(2068), + [anon_sym_out_GT] = ACTIONS(2068), + [anon_sym_e_GT] = ACTIONS(2068), + [anon_sym_o_GT] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT] = ACTIONS(2068), + [anon_sym_err_GT_GT] = ACTIONS(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(3), }, [STATE(673)] = { + [sym__expr_parenthesized_immediate] = STATE(5243), [sym_comment] = STATE(673), - [ts_builtin_sym_end] = ACTIONS(1974), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_LPAREN2] = ACTIONS(1978), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_DOT_DOT2] = ACTIONS(2068), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2070), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2070), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), - [sym__unquoted_pattern] = ACTIONS(1984), + [anon_sym_in] = ACTIONS(2070), + [sym__newline] = ACTIONS(2070), + [anon_sym_SEMI] = ACTIONS(2070), + [anon_sym_PIPE] = ACTIONS(2070), + [anon_sym_err_GT_PIPE] = ACTIONS(2070), + [anon_sym_out_GT_PIPE] = ACTIONS(2070), + [anon_sym_e_GT_PIPE] = ACTIONS(2070), + [anon_sym_o_GT_PIPE] = ACTIONS(2070), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2070), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2070), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2070), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2070), + [anon_sym_RPAREN] = ACTIONS(2070), + [anon_sym_GT2] = ACTIONS(2072), + [anon_sym_DASH2] = ACTIONS(2070), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_RBRACE] = ACTIONS(2070), + [anon_sym_EQ_GT] = ACTIONS(2070), + [anon_sym_STAR2] = ACTIONS(2072), + [anon_sym_and2] = ACTIONS(2070), + [anon_sym_xor2] = ACTIONS(2070), + [anon_sym_or2] = ACTIONS(2070), + [anon_sym_not_DASHin2] = ACTIONS(2070), + [anon_sym_has2] = ACTIONS(2070), + [anon_sym_not_DASHhas2] = ACTIONS(2070), + [anon_sym_starts_DASHwith2] = ACTIONS(2070), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2070), + [anon_sym_ends_DASHwith2] = ACTIONS(2070), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2070), + [anon_sym_EQ_EQ2] = ACTIONS(2070), + [anon_sym_BANG_EQ2] = ACTIONS(2070), + [anon_sym_LT2] = ACTIONS(2072), + [anon_sym_LT_EQ2] = ACTIONS(2070), + [anon_sym_GT_EQ2] = ACTIONS(2070), + [anon_sym_EQ_TILDE2] = ACTIONS(2070), + [anon_sym_BANG_TILDE2] = ACTIONS(2070), + [anon_sym_like2] = ACTIONS(2070), + [anon_sym_not_DASHlike2] = ACTIONS(2070), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2070), + [anon_sym_PLUS_PLUS2] = ACTIONS(2070), + [anon_sym_SLASH2] = ACTIONS(2072), + [anon_sym_mod2] = ACTIONS(2070), + [anon_sym_SLASH_SLASH2] = ACTIONS(2070), + [anon_sym_PLUS2] = ACTIONS(2072), + [anon_sym_bit_DASHshl2] = ACTIONS(2070), + [anon_sym_bit_DASHshr2] = ACTIONS(2070), + [anon_sym_bit_DASHand2] = ACTIONS(2070), + [anon_sym_bit_DASHxor2] = ACTIONS(2070), + [anon_sym_bit_DASHor2] = ACTIONS(2070), + [anon_sym_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(2070), + [anon_sym_out_GT_GT] = ACTIONS(2070), + [anon_sym_e_GT_GT] = ACTIONS(2070), + [anon_sym_o_GT_GT] = ACTIONS(2070), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2070), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2070), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2070), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2070), [anon_sym_POUND] = ACTIONS(3), }, [STATE(674)] = { - [sym__expr_parenthesized_immediate] = STATE(5091), [sym_comment] = STATE(674), - [anon_sym_in] = ACTIONS(2072), - [sym__newline] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_PIPE] = ACTIONS(2072), - [anon_sym_err_GT_PIPE] = ACTIONS(2072), - [anon_sym_out_GT_PIPE] = ACTIONS(2072), - [anon_sym_e_GT_PIPE] = ACTIONS(2072), - [anon_sym_o_GT_PIPE] = ACTIONS(2072), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2072), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2072), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2072), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2072), - [anon_sym_RPAREN] = ACTIONS(2072), - [anon_sym_GT2] = ACTIONS(2074), - [anon_sym_DASH2] = ACTIONS(2072), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_RBRACE] = ACTIONS(2072), - [anon_sym_EQ_GT] = ACTIONS(2072), - [anon_sym_STAR2] = ACTIONS(2074), - [anon_sym_and2] = ACTIONS(2072), - [anon_sym_xor2] = ACTIONS(2072), - [anon_sym_or2] = ACTIONS(2072), - [anon_sym_not_DASHin2] = ACTIONS(2072), - [anon_sym_has2] = ACTIONS(2072), - [anon_sym_not_DASHhas2] = ACTIONS(2072), - [anon_sym_starts_DASHwith2] = ACTIONS(2072), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2072), - [anon_sym_ends_DASHwith2] = ACTIONS(2072), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2072), - [anon_sym_EQ_EQ2] = ACTIONS(2072), - [anon_sym_BANG_EQ2] = ACTIONS(2072), - [anon_sym_LT2] = ACTIONS(2074), - [anon_sym_LT_EQ2] = ACTIONS(2072), - [anon_sym_GT_EQ2] = ACTIONS(2072), - [anon_sym_EQ_TILDE2] = ACTIONS(2072), - [anon_sym_BANG_TILDE2] = ACTIONS(2072), - [anon_sym_like2] = ACTIONS(2072), - [anon_sym_not_DASHlike2] = ACTIONS(2072), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2072), - [anon_sym_PLUS_PLUS2] = ACTIONS(2072), - [anon_sym_SLASH2] = ACTIONS(2074), - [anon_sym_mod2] = ACTIONS(2072), - [anon_sym_SLASH_SLASH2] = ACTIONS(2072), - [anon_sym_PLUS2] = ACTIONS(2074), - [anon_sym_bit_DASHshl2] = ACTIONS(2072), - [anon_sym_bit_DASHshr2] = ACTIONS(2072), - [anon_sym_bit_DASHand2] = ACTIONS(2072), - [anon_sym_bit_DASHxor2] = ACTIONS(2072), - [anon_sym_bit_DASHor2] = ACTIONS(2072), - [anon_sym_err_GT] = ACTIONS(2074), - [anon_sym_out_GT] = ACTIONS(2074), - [anon_sym_e_GT] = ACTIONS(2074), - [anon_sym_o_GT] = ACTIONS(2074), - [anon_sym_err_PLUSout_GT] = ACTIONS(2074), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2074), - [anon_sym_o_PLUSe_GT] = ACTIONS(2074), - [anon_sym_e_PLUSo_GT] = ACTIONS(2074), - [anon_sym_err_GT_GT] = ACTIONS(2072), - [anon_sym_out_GT_GT] = ACTIONS(2072), - [anon_sym_e_GT_GT] = ACTIONS(2072), - [anon_sym_o_GT_GT] = ACTIONS(2072), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2072), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2072), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2072), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2072), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(675)] = { - [sym_comment] = STATE(675), - [anon_sym_in] = ACTIONS(2076), + [anon_sym_in] = ACTIONS(2074), [sym__newline] = ACTIONS(2076), [anon_sym_SEMI] = ACTIONS(2076), [anon_sym_PIPE] = ACTIONS(2076), @@ -98791,51 +98927,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2076), [anon_sym_RPAREN] = ACTIONS(2076), [anon_sym_GT2] = ACTIONS(2078), - [anon_sym_DASH2] = ACTIONS(2076), + [anon_sym_DASH2] = ACTIONS(2074), [anon_sym_LBRACE] = ACTIONS(2076), [anon_sym_RBRACE] = ACTIONS(2076), [anon_sym_STAR2] = ACTIONS(2078), - [anon_sym_and2] = ACTIONS(2076), - [anon_sym_xor2] = ACTIONS(2076), - [anon_sym_or2] = ACTIONS(2076), - [anon_sym_not_DASHin2] = ACTIONS(2076), - [anon_sym_has2] = ACTIONS(2076), - [anon_sym_not_DASHhas2] = ACTIONS(2076), - [anon_sym_starts_DASHwith2] = ACTIONS(2076), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2076), - [anon_sym_ends_DASHwith2] = ACTIONS(2076), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2076), - [anon_sym_EQ_EQ2] = ACTIONS(2076), - [anon_sym_BANG_EQ2] = ACTIONS(2076), + [anon_sym_and2] = ACTIONS(2074), + [anon_sym_xor2] = ACTIONS(2074), + [anon_sym_or2] = ACTIONS(2074), + [anon_sym_not_DASHin2] = ACTIONS(2074), + [anon_sym_has2] = ACTIONS(2074), + [anon_sym_not_DASHhas2] = ACTIONS(2074), + [anon_sym_starts_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2074), + [anon_sym_ends_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2074), + [anon_sym_EQ_EQ2] = ACTIONS(2074), + [anon_sym_BANG_EQ2] = ACTIONS(2074), [anon_sym_LT2] = ACTIONS(2078), - [anon_sym_LT_EQ2] = ACTIONS(2076), - [anon_sym_GT_EQ2] = ACTIONS(2076), - [anon_sym_EQ_TILDE2] = ACTIONS(2076), - [anon_sym_BANG_TILDE2] = ACTIONS(2076), - [anon_sym_like2] = ACTIONS(2076), - [anon_sym_not_DASHlike2] = ACTIONS(2076), - [anon_sym_STAR_STAR2] = ACTIONS(2076), - [anon_sym_PLUS_PLUS2] = ACTIONS(2076), + [anon_sym_LT_EQ2] = ACTIONS(2074), + [anon_sym_GT_EQ2] = ACTIONS(2074), + [anon_sym_EQ_TILDE2] = ACTIONS(2074), + [anon_sym_BANG_TILDE2] = ACTIONS(2074), + [anon_sym_like2] = ACTIONS(2074), + [anon_sym_not_DASHlike2] = ACTIONS(2074), + [anon_sym_STAR_STAR2] = ACTIONS(2074), + [anon_sym_PLUS_PLUS2] = ACTIONS(2074), [anon_sym_SLASH2] = ACTIONS(2078), - [anon_sym_mod2] = ACTIONS(2076), - [anon_sym_SLASH_SLASH2] = ACTIONS(2076), + [anon_sym_mod2] = ACTIONS(2074), + [anon_sym_SLASH_SLASH2] = ACTIONS(2074), [anon_sym_PLUS2] = ACTIONS(2078), - [anon_sym_bit_DASHshl2] = ACTIONS(2076), - [anon_sym_bit_DASHshr2] = ACTIONS(2076), - [anon_sym_bit_DASHand2] = ACTIONS(2076), - [anon_sym_bit_DASHxor2] = ACTIONS(2076), - [anon_sym_bit_DASHor2] = ACTIONS(2076), - [anon_sym_DOT_DOT2] = ACTIONS(2080), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2082), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2082), - [anon_sym_err_GT] = ACTIONS(2078), - [anon_sym_out_GT] = ACTIONS(2078), - [anon_sym_e_GT] = ACTIONS(2078), - [anon_sym_o_GT] = ACTIONS(2078), - [anon_sym_err_PLUSout_GT] = ACTIONS(2078), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2078), - [anon_sym_o_PLUSe_GT] = ACTIONS(2078), - [anon_sym_e_PLUSo_GT] = ACTIONS(2078), + [anon_sym_bit_DASHshl2] = ACTIONS(2074), + [anon_sym_bit_DASHshr2] = ACTIONS(2074), + [anon_sym_bit_DASHand2] = ACTIONS(2074), + [anon_sym_bit_DASHxor2] = ACTIONS(2074), + [anon_sym_bit_DASHor2] = ACTIONS(2074), + [anon_sym_DOT_DOT2] = ACTIONS(1619), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), + [anon_sym_err_GT] = ACTIONS(2080), + [anon_sym_out_GT] = ACTIONS(2080), + [anon_sym_e_GT] = ACTIONS(2080), + [anon_sym_o_GT] = ACTIONS(2080), + [anon_sym_err_PLUSout_GT] = ACTIONS(2080), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2080), + [anon_sym_o_PLUSe_GT] = ACTIONS(2080), + [anon_sym_e_PLUSo_GT] = ACTIONS(2080), [anon_sym_err_GT_GT] = ACTIONS(2076), [anon_sym_out_GT_GT] = ACTIONS(2076), [anon_sym_e_GT_GT] = ACTIONS(2076), @@ -98846,1570 +98982,790 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2076), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(675)] = { + [sym_comment] = STATE(675), + [ts_builtin_sym_end] = ACTIONS(1942), + [anon_sym_in] = ACTIONS(1942), + [sym__newline] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_err_GT_PIPE] = ACTIONS(1942), + [anon_sym_out_GT_PIPE] = ACTIONS(1942), + [anon_sym_e_GT_PIPE] = ACTIONS(1942), + [anon_sym_o_GT_PIPE] = ACTIONS(1942), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1942), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1942), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1942), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1942), + [anon_sym_GT2] = ACTIONS(1944), + [anon_sym_DASH2] = ACTIONS(1942), + [anon_sym_STAR2] = ACTIONS(1944), + [anon_sym_and2] = ACTIONS(1942), + [anon_sym_xor2] = ACTIONS(1942), + [anon_sym_or2] = ACTIONS(1942), + [anon_sym_not_DASHin2] = ACTIONS(1942), + [anon_sym_has2] = ACTIONS(1942), + [anon_sym_not_DASHhas2] = ACTIONS(1942), + [anon_sym_starts_DASHwith2] = ACTIONS(1942), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1942), + [anon_sym_ends_DASHwith2] = ACTIONS(1942), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1942), + [anon_sym_EQ_EQ2] = ACTIONS(1942), + [anon_sym_BANG_EQ2] = ACTIONS(1942), + [anon_sym_LT2] = ACTIONS(1944), + [anon_sym_LT_EQ2] = ACTIONS(1942), + [anon_sym_GT_EQ2] = ACTIONS(1942), + [anon_sym_EQ_TILDE2] = ACTIONS(1942), + [anon_sym_BANG_TILDE2] = ACTIONS(1942), + [anon_sym_like2] = ACTIONS(1942), + [anon_sym_not_DASHlike2] = ACTIONS(1942), + [anon_sym_LPAREN2] = ACTIONS(1946), + [anon_sym_STAR_STAR2] = ACTIONS(1942), + [anon_sym_PLUS_PLUS2] = ACTIONS(1942), + [anon_sym_SLASH2] = ACTIONS(1944), + [anon_sym_mod2] = ACTIONS(1942), + [anon_sym_SLASH_SLASH2] = ACTIONS(1942), + [anon_sym_PLUS2] = ACTIONS(1944), + [anon_sym_bit_DASHshl2] = ACTIONS(1942), + [anon_sym_bit_DASHshr2] = ACTIONS(1942), + [anon_sym_bit_DASHand2] = ACTIONS(1942), + [anon_sym_bit_DASHxor2] = ACTIONS(1942), + [anon_sym_bit_DASHor2] = ACTIONS(1942), + [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(1944), + [anon_sym_out_GT] = ACTIONS(1944), + [anon_sym_e_GT] = ACTIONS(1944), + [anon_sym_o_GT] = ACTIONS(1944), + [anon_sym_err_PLUSout_GT] = ACTIONS(1944), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1944), + [anon_sym_o_PLUSe_GT] = ACTIONS(1944), + [anon_sym_e_PLUSo_GT] = ACTIONS(1944), + [anon_sym_err_GT_GT] = ACTIONS(1942), + [anon_sym_out_GT_GT] = ACTIONS(1942), + [anon_sym_e_GT_GT] = ACTIONS(1942), + [anon_sym_o_GT_GT] = ACTIONS(1942), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1942), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1942), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1942), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1942), + [sym__unquoted_pattern] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(676)] = { [sym_comment] = STATE(676), - [anon_sym_if] = ACTIONS(2084), - [anon_sym_in] = ACTIONS(2084), - [sym__newline] = ACTIONS(2084), - [anon_sym_SEMI] = ACTIONS(2084), - [anon_sym_PIPE] = ACTIONS(2084), - [anon_sym_err_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_GT_PIPE] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2084), - [anon_sym_RPAREN] = ACTIONS(2084), - [anon_sym_GT2] = ACTIONS(2086), - [anon_sym_DASH2] = ACTIONS(2084), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_RBRACE] = ACTIONS(2084), - [anon_sym_EQ_GT] = ACTIONS(2084), - [anon_sym_STAR2] = ACTIONS(2086), - [anon_sym_and2] = ACTIONS(2084), - [anon_sym_xor2] = ACTIONS(2084), - [anon_sym_or2] = ACTIONS(2084), - [anon_sym_not_DASHin2] = ACTIONS(2084), - [anon_sym_has2] = ACTIONS(2084), - [anon_sym_not_DASHhas2] = ACTIONS(2084), - [anon_sym_starts_DASHwith2] = ACTIONS(2084), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2084), - [anon_sym_ends_DASHwith2] = ACTIONS(2084), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2084), - [anon_sym_EQ_EQ2] = ACTIONS(2084), - [anon_sym_BANG_EQ2] = ACTIONS(2084), - [anon_sym_LT2] = ACTIONS(2086), - [anon_sym_LT_EQ2] = ACTIONS(2084), - [anon_sym_GT_EQ2] = ACTIONS(2084), - [anon_sym_EQ_TILDE2] = ACTIONS(2084), - [anon_sym_BANG_TILDE2] = ACTIONS(2084), - [anon_sym_like2] = ACTIONS(2084), - [anon_sym_not_DASHlike2] = ACTIONS(2084), - [anon_sym_LPAREN2] = ACTIONS(2084), - [anon_sym_STAR_STAR2] = ACTIONS(2084), - [anon_sym_PLUS_PLUS2] = ACTIONS(2084), - [anon_sym_SLASH2] = ACTIONS(2086), - [anon_sym_mod2] = ACTIONS(2084), - [anon_sym_SLASH_SLASH2] = ACTIONS(2084), - [anon_sym_PLUS2] = ACTIONS(2086), - [anon_sym_bit_DASHshl2] = ACTIONS(2084), - [anon_sym_bit_DASHshr2] = ACTIONS(2084), - [anon_sym_bit_DASHand2] = ACTIONS(2084), - [anon_sym_bit_DASHxor2] = ACTIONS(2084), - [anon_sym_bit_DASHor2] = ACTIONS(2084), - [anon_sym_err_GT] = ACTIONS(2086), - [anon_sym_out_GT] = ACTIONS(2086), - [anon_sym_e_GT] = ACTIONS(2086), - [anon_sym_o_GT] = ACTIONS(2086), - [anon_sym_err_PLUSout_GT] = ACTIONS(2086), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2086), - [anon_sym_o_PLUSe_GT] = ACTIONS(2086), - [anon_sym_e_PLUSo_GT] = ACTIONS(2086), - [anon_sym_err_GT_GT] = ACTIONS(2084), - [anon_sym_out_GT_GT] = ACTIONS(2084), - [anon_sym_e_GT_GT] = ACTIONS(2084), - [anon_sym_o_GT_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2086), + [anon_sym_in] = ACTIONS(2086), + [sym__newline] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_PIPE] = ACTIONS(2086), + [anon_sym_err_GT_PIPE] = ACTIONS(2086), + [anon_sym_out_GT_PIPE] = ACTIONS(2086), + [anon_sym_e_GT_PIPE] = ACTIONS(2086), + [anon_sym_o_GT_PIPE] = ACTIONS(2086), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2086), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2086), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2086), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2086), + [anon_sym_RPAREN] = ACTIONS(2086), + [anon_sym_GT2] = ACTIONS(2088), + [anon_sym_DASH2] = ACTIONS(2086), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_RBRACE] = ACTIONS(2086), + [anon_sym_EQ_GT] = ACTIONS(2086), + [anon_sym_STAR2] = ACTIONS(2088), + [anon_sym_and2] = ACTIONS(2086), + [anon_sym_xor2] = ACTIONS(2086), + [anon_sym_or2] = ACTIONS(2086), + [anon_sym_not_DASHin2] = ACTIONS(2086), + [anon_sym_has2] = ACTIONS(2086), + [anon_sym_not_DASHhas2] = ACTIONS(2086), + [anon_sym_starts_DASHwith2] = ACTIONS(2086), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2086), + [anon_sym_ends_DASHwith2] = ACTIONS(2086), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2086), + [anon_sym_EQ_EQ2] = ACTIONS(2086), + [anon_sym_BANG_EQ2] = ACTIONS(2086), + [anon_sym_LT2] = ACTIONS(2088), + [anon_sym_LT_EQ2] = ACTIONS(2086), + [anon_sym_GT_EQ2] = ACTIONS(2086), + [anon_sym_EQ_TILDE2] = ACTIONS(2086), + [anon_sym_BANG_TILDE2] = ACTIONS(2086), + [anon_sym_like2] = ACTIONS(2086), + [anon_sym_not_DASHlike2] = ACTIONS(2086), + [anon_sym_STAR_STAR2] = ACTIONS(2086), + [anon_sym_PLUS_PLUS2] = ACTIONS(2086), + [anon_sym_SLASH2] = ACTIONS(2088), + [anon_sym_mod2] = ACTIONS(2086), + [anon_sym_SLASH_SLASH2] = ACTIONS(2086), + [anon_sym_PLUS2] = ACTIONS(2088), + [anon_sym_bit_DASHshl2] = ACTIONS(2086), + [anon_sym_bit_DASHshr2] = ACTIONS(2086), + [anon_sym_bit_DASHand2] = ACTIONS(2086), + [anon_sym_bit_DASHxor2] = ACTIONS(2086), + [anon_sym_bit_DASHor2] = ACTIONS(2086), + [anon_sym_COLON2] = ACTIONS(2086), + [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(2086), + [anon_sym_out_GT_GT] = ACTIONS(2086), + [anon_sym_e_GT_GT] = ACTIONS(2086), + [anon_sym_o_GT_GT] = ACTIONS(2086), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2086), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2086), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2086), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2086), [anon_sym_POUND] = ACTIONS(3), }, [STATE(677)] = { - [sym__expr_parenthesized_immediate] = STATE(4634), [sym_comment] = STATE(677), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(1689), + [sym__newline] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1689), + [anon_sym_err_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_GT_PIPE] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), + [anon_sym_RPAREN] = ACTIONS(1689), + [anon_sym_GT2] = ACTIONS(1615), + [anon_sym_DASH2] = ACTIONS(1689), + [anon_sym_LBRACE] = ACTIONS(1689), + [anon_sym_RBRACE] = ACTIONS(1689), + [anon_sym_STAR2] = ACTIONS(1615), + [anon_sym_and2] = ACTIONS(1689), + [anon_sym_xor2] = ACTIONS(1689), + [anon_sym_or2] = ACTIONS(1689), + [anon_sym_not_DASHin2] = ACTIONS(1689), + [anon_sym_has2] = ACTIONS(1689), + [anon_sym_not_DASHhas2] = ACTIONS(1689), + [anon_sym_starts_DASHwith2] = ACTIONS(1689), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1689), + [anon_sym_ends_DASHwith2] = ACTIONS(1689), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1689), + [anon_sym_EQ_EQ2] = ACTIONS(1689), + [anon_sym_BANG_EQ2] = ACTIONS(1689), + [anon_sym_LT2] = ACTIONS(1615), + [anon_sym_LT_EQ2] = ACTIONS(1689), + [anon_sym_GT_EQ2] = ACTIONS(1689), + [anon_sym_EQ_TILDE2] = ACTIONS(1689), + [anon_sym_BANG_TILDE2] = ACTIONS(1689), + [anon_sym_like2] = ACTIONS(1689), + [anon_sym_not_DASHlike2] = ACTIONS(1689), + [anon_sym_STAR_STAR2] = ACTIONS(1689), + [anon_sym_PLUS_PLUS2] = ACTIONS(1689), + [anon_sym_SLASH2] = ACTIONS(1615), + [anon_sym_mod2] = ACTIONS(1689), + [anon_sym_SLASH_SLASH2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(1615), + [anon_sym_bit_DASHshl2] = ACTIONS(1689), + [anon_sym_bit_DASHshr2] = ACTIONS(1689), + [anon_sym_bit_DASHand2] = ACTIONS(1689), + [anon_sym_bit_DASHxor2] = ACTIONS(1689), + [anon_sym_bit_DASHor2] = ACTIONS(1689), + [anon_sym_DOT_DOT2] = ACTIONS(1619), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), + [anon_sym_err_GT] = ACTIONS(1615), + [anon_sym_out_GT] = ACTIONS(1615), + [anon_sym_e_GT] = ACTIONS(1615), + [anon_sym_o_GT] = ACTIONS(1615), + [anon_sym_err_PLUSout_GT] = ACTIONS(1615), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), + [anon_sym_o_PLUSe_GT] = ACTIONS(1615), + [anon_sym_e_PLUSo_GT] = ACTIONS(1615), + [anon_sym_err_GT_GT] = ACTIONS(1689), + [anon_sym_out_GT_GT] = ACTIONS(1689), + [anon_sym_e_GT_GT] = ACTIONS(1689), + [anon_sym_o_GT_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), [anon_sym_POUND] = ACTIONS(3), }, [STATE(678)] = { [sym_comment] = STATE(678), - [ts_builtin_sym_end] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [anon_sym_DOT_DOT2] = ACTIONS(1728), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1726), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1726), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), + [ts_builtin_sym_end] = ACTIONS(1952), + [anon_sym_in] = ACTIONS(1952), + [sym__newline] = ACTIONS(1952), + [anon_sym_SEMI] = ACTIONS(1952), + [anon_sym_PIPE] = ACTIONS(1952), + [anon_sym_err_GT_PIPE] = ACTIONS(1952), + [anon_sym_out_GT_PIPE] = ACTIONS(1952), + [anon_sym_e_GT_PIPE] = ACTIONS(1952), + [anon_sym_o_GT_PIPE] = ACTIONS(1952), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1952), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1952), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1952), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1952), + [anon_sym_GT2] = ACTIONS(1954), + [anon_sym_DASH2] = ACTIONS(1952), + [anon_sym_STAR2] = ACTIONS(1954), + [anon_sym_and2] = ACTIONS(1952), + [anon_sym_xor2] = ACTIONS(1952), + [anon_sym_or2] = ACTIONS(1952), + [anon_sym_not_DASHin2] = ACTIONS(1952), + [anon_sym_has2] = ACTIONS(1952), + [anon_sym_not_DASHhas2] = ACTIONS(1952), + [anon_sym_starts_DASHwith2] = ACTIONS(1952), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1952), + [anon_sym_ends_DASHwith2] = ACTIONS(1952), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1952), + [anon_sym_EQ_EQ2] = ACTIONS(1952), + [anon_sym_BANG_EQ2] = ACTIONS(1952), + [anon_sym_LT2] = ACTIONS(1954), + [anon_sym_LT_EQ2] = ACTIONS(1952), + [anon_sym_GT_EQ2] = ACTIONS(1952), + [anon_sym_EQ_TILDE2] = ACTIONS(1952), + [anon_sym_BANG_TILDE2] = ACTIONS(1952), + [anon_sym_like2] = ACTIONS(1952), + [anon_sym_not_DASHlike2] = ACTIONS(1952), + [anon_sym_LPAREN2] = ACTIONS(1956), + [anon_sym_STAR_STAR2] = ACTIONS(1952), + [anon_sym_PLUS_PLUS2] = ACTIONS(1952), + [anon_sym_SLASH2] = ACTIONS(1954), + [anon_sym_mod2] = ACTIONS(1952), + [anon_sym_SLASH_SLASH2] = ACTIONS(1952), + [anon_sym_PLUS2] = ACTIONS(1954), + [anon_sym_bit_DASHshl2] = ACTIONS(1952), + [anon_sym_bit_DASHshr2] = ACTIONS(1952), + [anon_sym_bit_DASHand2] = ACTIONS(1952), + [anon_sym_bit_DASHxor2] = ACTIONS(1952), + [anon_sym_bit_DASHor2] = ACTIONS(1952), + [anon_sym_DOT_DOT2] = ACTIONS(2090), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2092), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2092), + [anon_sym_err_GT] = ACTIONS(1954), + [anon_sym_out_GT] = ACTIONS(1954), + [anon_sym_e_GT] = ACTIONS(1954), + [anon_sym_o_GT] = ACTIONS(1954), + [anon_sym_err_PLUSout_GT] = ACTIONS(1954), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1954), + [anon_sym_o_PLUSe_GT] = ACTIONS(1954), + [anon_sym_e_PLUSo_GT] = ACTIONS(1954), + [anon_sym_err_GT_GT] = ACTIONS(1952), + [anon_sym_out_GT_GT] = ACTIONS(1952), + [anon_sym_e_GT_GT] = ACTIONS(1952), + [anon_sym_o_GT_GT] = ACTIONS(1952), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1952), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1952), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1952), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1952), + [sym__unquoted_pattern] = ACTIONS(1962), [anon_sym_POUND] = ACTIONS(3), }, [STATE(679)] = { - [sym__expr_parenthesized_immediate] = STATE(4634), [sym_comment] = STATE(679), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2094), + [anon_sym_in] = ACTIONS(2094), + [sym__newline] = ACTIONS(2094), + [anon_sym_SEMI] = ACTIONS(2094), + [anon_sym_PIPE] = ACTIONS(2094), + [anon_sym_err_GT_PIPE] = ACTIONS(2094), + [anon_sym_out_GT_PIPE] = ACTIONS(2094), + [anon_sym_e_GT_PIPE] = ACTIONS(2094), + [anon_sym_o_GT_PIPE] = ACTIONS(2094), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2094), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2094), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2094), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2094), + [anon_sym_RPAREN] = ACTIONS(2094), + [anon_sym_GT2] = ACTIONS(2096), + [anon_sym_DASH2] = ACTIONS(2094), + [anon_sym_LBRACE] = ACTIONS(2094), + [anon_sym_RBRACE] = ACTIONS(2094), + [anon_sym_EQ_GT] = ACTIONS(2094), + [anon_sym_STAR2] = ACTIONS(2096), + [anon_sym_and2] = ACTIONS(2094), + [anon_sym_xor2] = ACTIONS(2094), + [anon_sym_or2] = ACTIONS(2094), + [anon_sym_not_DASHin2] = ACTIONS(2094), + [anon_sym_has2] = ACTIONS(2094), + [anon_sym_not_DASHhas2] = ACTIONS(2094), + [anon_sym_starts_DASHwith2] = ACTIONS(2094), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2094), + [anon_sym_ends_DASHwith2] = ACTIONS(2094), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2094), + [anon_sym_EQ_EQ2] = ACTIONS(2094), + [anon_sym_BANG_EQ2] = ACTIONS(2094), + [anon_sym_LT2] = ACTIONS(2096), + [anon_sym_LT_EQ2] = ACTIONS(2094), + [anon_sym_GT_EQ2] = ACTIONS(2094), + [anon_sym_EQ_TILDE2] = ACTIONS(2094), + [anon_sym_BANG_TILDE2] = ACTIONS(2094), + [anon_sym_like2] = ACTIONS(2094), + [anon_sym_not_DASHlike2] = ACTIONS(2094), + [anon_sym_LPAREN2] = ACTIONS(2094), + [anon_sym_STAR_STAR2] = ACTIONS(2094), + [anon_sym_PLUS_PLUS2] = ACTIONS(2094), + [anon_sym_SLASH2] = ACTIONS(2096), + [anon_sym_mod2] = ACTIONS(2094), + [anon_sym_SLASH_SLASH2] = ACTIONS(2094), + [anon_sym_PLUS2] = ACTIONS(2096), + [anon_sym_bit_DASHshl2] = ACTIONS(2094), + [anon_sym_bit_DASHshr2] = ACTIONS(2094), + [anon_sym_bit_DASHand2] = ACTIONS(2094), + [anon_sym_bit_DASHxor2] = ACTIONS(2094), + [anon_sym_bit_DASHor2] = ACTIONS(2094), + [anon_sym_err_GT] = ACTIONS(2096), + [anon_sym_out_GT] = ACTIONS(2096), + [anon_sym_e_GT] = ACTIONS(2096), + [anon_sym_o_GT] = ACTIONS(2096), + [anon_sym_err_PLUSout_GT] = ACTIONS(2096), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2096), + [anon_sym_o_PLUSe_GT] = ACTIONS(2096), + [anon_sym_e_PLUSo_GT] = ACTIONS(2096), + [anon_sym_err_GT_GT] = ACTIONS(2094), + [anon_sym_out_GT_GT] = ACTIONS(2094), + [anon_sym_e_GT_GT] = ACTIONS(2094), + [anon_sym_o_GT_GT] = ACTIONS(2094), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2094), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2094), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2094), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2094), [anon_sym_POUND] = ACTIONS(3), }, [STATE(680)] = { [sym_comment] = STATE(680), - [ts_builtin_sym_end] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [anon_sym_DOT_DOT2] = ACTIONS(1804), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1802), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1802), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), + [anon_sym_if] = ACTIONS(890), + [anon_sym_in] = ACTIONS(890), + [sym__newline] = ACTIONS(890), + [anon_sym_SEMI] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(890), + [anon_sym_err_GT_PIPE] = ACTIONS(890), + [anon_sym_out_GT_PIPE] = ACTIONS(890), + [anon_sym_e_GT_PIPE] = ACTIONS(890), + [anon_sym_o_GT_PIPE] = ACTIONS(890), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(890), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(890), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(890), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(890), + [anon_sym_RPAREN] = ACTIONS(890), + [anon_sym_GT2] = ACTIONS(793), + [anon_sym_DASH2] = ACTIONS(890), + [anon_sym_LBRACE] = ACTIONS(890), + [anon_sym_RBRACE] = ACTIONS(890), + [anon_sym_EQ_GT] = ACTIONS(890), + [anon_sym_STAR2] = ACTIONS(793), + [anon_sym_and2] = ACTIONS(890), + [anon_sym_xor2] = ACTIONS(890), + [anon_sym_or2] = ACTIONS(890), + [anon_sym_not_DASHin2] = ACTIONS(890), + [anon_sym_has2] = ACTIONS(890), + [anon_sym_not_DASHhas2] = ACTIONS(890), + [anon_sym_starts_DASHwith2] = ACTIONS(890), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(890), + [anon_sym_ends_DASHwith2] = ACTIONS(890), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(890), + [anon_sym_EQ_EQ2] = ACTIONS(890), + [anon_sym_BANG_EQ2] = ACTIONS(890), + [anon_sym_LT2] = ACTIONS(793), + [anon_sym_LT_EQ2] = ACTIONS(890), + [anon_sym_GT_EQ2] = ACTIONS(890), + [anon_sym_EQ_TILDE2] = ACTIONS(890), + [anon_sym_BANG_TILDE2] = ACTIONS(890), + [anon_sym_like2] = ACTIONS(890), + [anon_sym_not_DASHlike2] = ACTIONS(890), + [anon_sym_STAR_STAR2] = ACTIONS(890), + [anon_sym_PLUS_PLUS2] = ACTIONS(890), + [anon_sym_SLASH2] = ACTIONS(793), + [anon_sym_mod2] = ACTIONS(890), + [anon_sym_SLASH_SLASH2] = ACTIONS(890), + [anon_sym_PLUS2] = ACTIONS(793), + [anon_sym_bit_DASHshl2] = ACTIONS(890), + [anon_sym_bit_DASHshr2] = ACTIONS(890), + [anon_sym_bit_DASHand2] = ACTIONS(890), + [anon_sym_bit_DASHxor2] = ACTIONS(890), + [anon_sym_bit_DASHor2] = ACTIONS(890), + [anon_sym_COLON2] = ACTIONS(890), + [anon_sym_err_GT] = ACTIONS(793), + [anon_sym_out_GT] = ACTIONS(793), + [anon_sym_e_GT] = ACTIONS(793), + [anon_sym_o_GT] = ACTIONS(793), + [anon_sym_err_PLUSout_GT] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT] = ACTIONS(793), + [anon_sym_o_PLUSe_GT] = ACTIONS(793), + [anon_sym_e_PLUSo_GT] = ACTIONS(793), + [anon_sym_err_GT_GT] = ACTIONS(890), + [anon_sym_out_GT_GT] = ACTIONS(890), + [anon_sym_e_GT_GT] = ACTIONS(890), + [anon_sym_o_GT_GT] = ACTIONS(890), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(890), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(890), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(890), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(890), [anon_sym_POUND] = ACTIONS(3), }, [STATE(681)] = { - [sym__expr_parenthesized_immediate] = STATE(4634), [sym_comment] = STATE(681), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_RPAREN] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_DOT_DOT2] = ACTIONS(2102), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2104), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2104), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), [anon_sym_POUND] = ACTIONS(3), }, [STATE(682)] = { - [sym__expr_parenthesized_immediate] = STATE(4634), [sym_comment] = STATE(682), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(1942), + [sym__newline] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_err_GT_PIPE] = ACTIONS(1942), + [anon_sym_out_GT_PIPE] = ACTIONS(1942), + [anon_sym_e_GT_PIPE] = ACTIONS(1942), + [anon_sym_o_GT_PIPE] = ACTIONS(1942), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1942), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1942), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1942), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1942), + [anon_sym_RPAREN] = ACTIONS(1942), + [anon_sym_GT2] = ACTIONS(1944), + [anon_sym_DASH2] = ACTIONS(1942), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_RBRACE] = ACTIONS(1942), + [anon_sym_STAR2] = ACTIONS(1944), + [anon_sym_and2] = ACTIONS(1942), + [anon_sym_xor2] = ACTIONS(1942), + [anon_sym_or2] = ACTIONS(1942), + [anon_sym_not_DASHin2] = ACTIONS(1942), + [anon_sym_has2] = ACTIONS(1942), + [anon_sym_not_DASHhas2] = ACTIONS(1942), + [anon_sym_starts_DASHwith2] = ACTIONS(1942), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1942), + [anon_sym_ends_DASHwith2] = ACTIONS(1942), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1942), + [anon_sym_EQ_EQ2] = ACTIONS(1942), + [anon_sym_BANG_EQ2] = ACTIONS(1942), + [anon_sym_LT2] = ACTIONS(1944), + [anon_sym_LT_EQ2] = ACTIONS(1942), + [anon_sym_GT_EQ2] = ACTIONS(1942), + [anon_sym_EQ_TILDE2] = ACTIONS(1942), + [anon_sym_BANG_TILDE2] = ACTIONS(1942), + [anon_sym_like2] = ACTIONS(1942), + [anon_sym_not_DASHlike2] = ACTIONS(1942), + [anon_sym_STAR_STAR2] = ACTIONS(1942), + [anon_sym_PLUS_PLUS2] = ACTIONS(1942), + [anon_sym_SLASH2] = ACTIONS(1944), + [anon_sym_mod2] = ACTIONS(1942), + [anon_sym_SLASH_SLASH2] = ACTIONS(1942), + [anon_sym_PLUS2] = ACTIONS(1944), + [anon_sym_bit_DASHshl2] = ACTIONS(1942), + [anon_sym_bit_DASHshr2] = ACTIONS(1942), + [anon_sym_bit_DASHand2] = ACTIONS(1942), + [anon_sym_bit_DASHxor2] = ACTIONS(1942), + [anon_sym_bit_DASHor2] = ACTIONS(1942), + [anon_sym_DOT_DOT2] = ACTIONS(2106), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2108), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2108), + [anon_sym_err_GT] = ACTIONS(1944), + [anon_sym_out_GT] = ACTIONS(1944), + [anon_sym_e_GT] = ACTIONS(1944), + [anon_sym_o_GT] = ACTIONS(1944), + [anon_sym_err_PLUSout_GT] = ACTIONS(1944), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1944), + [anon_sym_o_PLUSe_GT] = ACTIONS(1944), + [anon_sym_e_PLUSo_GT] = ACTIONS(1944), + [anon_sym_err_GT_GT] = ACTIONS(1942), + [anon_sym_out_GT_GT] = ACTIONS(1942), + [anon_sym_e_GT_GT] = ACTIONS(1942), + [anon_sym_o_GT_GT] = ACTIONS(1942), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1942), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1942), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1942), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1942), [anon_sym_POUND] = ACTIONS(3), }, [STATE(683)] = { - [sym__expr_parenthesized_immediate] = STATE(4634), [sym_comment] = STATE(683), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_else] = ACTIONS(2110), + [anon_sym_catch] = ACTIONS(2110), + [anon_sym_in] = ACTIONS(2110), + [sym__newline] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym_PIPE] = ACTIONS(2110), + [anon_sym_err_GT_PIPE] = ACTIONS(2110), + [anon_sym_out_GT_PIPE] = ACTIONS(2110), + [anon_sym_e_GT_PIPE] = ACTIONS(2110), + [anon_sym_o_GT_PIPE] = ACTIONS(2110), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2110), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2110), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2110), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2110), + [anon_sym_COLON] = ACTIONS(2110), + [anon_sym_LBRACK] = ACTIONS(2110), + [anon_sym_RPAREN] = ACTIONS(2110), + [anon_sym_GT2] = ACTIONS(2112), + [anon_sym_DASH2] = ACTIONS(2110), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_STAR2] = ACTIONS(2112), + [anon_sym_and2] = ACTIONS(2110), + [anon_sym_xor2] = ACTIONS(2110), + [anon_sym_or2] = ACTIONS(2110), + [anon_sym_not_DASHin2] = ACTIONS(2110), + [anon_sym_has2] = ACTIONS(2110), + [anon_sym_not_DASHhas2] = ACTIONS(2110), + [anon_sym_starts_DASHwith2] = ACTIONS(2110), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2110), + [anon_sym_ends_DASHwith2] = ACTIONS(2110), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2110), + [anon_sym_EQ_EQ2] = ACTIONS(2110), + [anon_sym_BANG_EQ2] = ACTIONS(2110), + [anon_sym_LT2] = ACTIONS(2112), + [anon_sym_LT_EQ2] = ACTIONS(2110), + [anon_sym_GT_EQ2] = ACTIONS(2110), + [anon_sym_EQ_TILDE2] = ACTIONS(2110), + [anon_sym_BANG_TILDE2] = ACTIONS(2110), + [anon_sym_like2] = ACTIONS(2110), + [anon_sym_not_DASHlike2] = ACTIONS(2110), + [anon_sym_STAR_STAR2] = ACTIONS(2110), + [anon_sym_PLUS_PLUS2] = ACTIONS(2110), + [anon_sym_SLASH2] = ACTIONS(2112), + [anon_sym_mod2] = ACTIONS(2110), + [anon_sym_SLASH_SLASH2] = ACTIONS(2110), + [anon_sym_PLUS2] = ACTIONS(2112), + [anon_sym_bit_DASHshl2] = ACTIONS(2110), + [anon_sym_bit_DASHshr2] = ACTIONS(2110), + [anon_sym_bit_DASHand2] = ACTIONS(2110), + [anon_sym_bit_DASHxor2] = ACTIONS(2110), + [anon_sym_bit_DASHor2] = ACTIONS(2110), + [anon_sym_err_GT] = ACTIONS(2112), + [anon_sym_out_GT] = ACTIONS(2112), + [anon_sym_e_GT] = ACTIONS(2112), + [anon_sym_o_GT] = ACTIONS(2112), + [anon_sym_err_PLUSout_GT] = ACTIONS(2112), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2112), + [anon_sym_o_PLUSe_GT] = ACTIONS(2112), + [anon_sym_e_PLUSo_GT] = ACTIONS(2112), + [anon_sym_err_GT_GT] = ACTIONS(2110), + [anon_sym_out_GT_GT] = ACTIONS(2110), + [anon_sym_e_GT_GT] = ACTIONS(2110), + [anon_sym_o_GT_GT] = ACTIONS(2110), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2110), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2110), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2110), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2110), [anon_sym_POUND] = ACTIONS(3), }, [STATE(684)] = { [sym_comment] = STATE(684), - [ts_builtin_sym_end] = ACTIONS(1870), - [anon_sym_in] = ACTIONS(1870), - [sym__newline] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_err_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_GT_PIPE] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1870), - [anon_sym_GT2] = ACTIONS(1872), - [anon_sym_DASH2] = ACTIONS(1870), - [anon_sym_STAR2] = ACTIONS(1872), - [anon_sym_and2] = ACTIONS(1870), - [anon_sym_xor2] = ACTIONS(1870), - [anon_sym_or2] = ACTIONS(1870), - [anon_sym_not_DASHin2] = ACTIONS(1870), - [anon_sym_has2] = ACTIONS(1870), - [anon_sym_not_DASHhas2] = ACTIONS(1870), - [anon_sym_starts_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1870), - [anon_sym_ends_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1870), - [anon_sym_EQ_EQ2] = ACTIONS(1870), - [anon_sym_BANG_EQ2] = ACTIONS(1870), - [anon_sym_LT2] = ACTIONS(1872), - [anon_sym_LT_EQ2] = ACTIONS(1870), - [anon_sym_GT_EQ2] = ACTIONS(1870), - [anon_sym_EQ_TILDE2] = ACTIONS(1870), - [anon_sym_BANG_TILDE2] = ACTIONS(1870), - [anon_sym_like2] = ACTIONS(1870), - [anon_sym_not_DASHlike2] = ACTIONS(1870), - [anon_sym_LPAREN2] = ACTIONS(1870), - [anon_sym_STAR_STAR2] = ACTIONS(1870), - [anon_sym_PLUS_PLUS2] = ACTIONS(1870), - [anon_sym_SLASH2] = ACTIONS(1872), - [anon_sym_mod2] = ACTIONS(1870), - [anon_sym_SLASH_SLASH2] = ACTIONS(1870), - [anon_sym_PLUS2] = ACTIONS(1872), - [anon_sym_bit_DASHshl2] = ACTIONS(1870), - [anon_sym_bit_DASHshr2] = ACTIONS(1870), - [anon_sym_bit_DASHand2] = ACTIONS(1870), - [anon_sym_bit_DASHxor2] = ACTIONS(1870), - [anon_sym_bit_DASHor2] = ACTIONS(1870), - [anon_sym_DOT_DOT2] = ACTIONS(1872), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1870), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1870), - [anon_sym_err_GT] = ACTIONS(1872), - [anon_sym_out_GT] = ACTIONS(1872), - [anon_sym_e_GT] = ACTIONS(1872), - [anon_sym_o_GT] = ACTIONS(1872), - [anon_sym_err_PLUSout_GT] = ACTIONS(1872), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), - [anon_sym_o_PLUSe_GT] = ACTIONS(1872), - [anon_sym_e_PLUSo_GT] = ACTIONS(1872), - [anon_sym_err_GT_GT] = ACTIONS(1870), - [anon_sym_out_GT_GT] = ACTIONS(1870), - [anon_sym_e_GT_GT] = ACTIONS(1870), - [anon_sym_o_GT_GT] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1870), - [sym__unquoted_pattern] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(2114), + [anon_sym_in] = ACTIONS(2114), + [sym__newline] = ACTIONS(2114), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2114), + [anon_sym_err_GT_PIPE] = ACTIONS(2114), + [anon_sym_out_GT_PIPE] = ACTIONS(2114), + [anon_sym_e_GT_PIPE] = ACTIONS(2114), + [anon_sym_o_GT_PIPE] = ACTIONS(2114), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2114), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2114), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2114), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2114), + [anon_sym_RPAREN] = ACTIONS(2114), + [anon_sym_GT2] = ACTIONS(2116), + [anon_sym_DASH2] = ACTIONS(2114), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_EQ_GT] = ACTIONS(2114), + [anon_sym_STAR2] = ACTIONS(2116), + [anon_sym_and2] = ACTIONS(2114), + [anon_sym_xor2] = ACTIONS(2114), + [anon_sym_or2] = ACTIONS(2114), + [anon_sym_not_DASHin2] = ACTIONS(2114), + [anon_sym_has2] = ACTIONS(2114), + [anon_sym_not_DASHhas2] = ACTIONS(2114), + [anon_sym_starts_DASHwith2] = ACTIONS(2114), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2114), + [anon_sym_ends_DASHwith2] = ACTIONS(2114), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2114), + [anon_sym_EQ_EQ2] = ACTIONS(2114), + [anon_sym_BANG_EQ2] = ACTIONS(2114), + [anon_sym_LT2] = ACTIONS(2116), + [anon_sym_LT_EQ2] = ACTIONS(2114), + [anon_sym_GT_EQ2] = ACTIONS(2114), + [anon_sym_EQ_TILDE2] = ACTIONS(2114), + [anon_sym_BANG_TILDE2] = ACTIONS(2114), + [anon_sym_like2] = ACTIONS(2114), + [anon_sym_not_DASHlike2] = ACTIONS(2114), + [anon_sym_STAR_STAR2] = ACTIONS(2114), + [anon_sym_PLUS_PLUS2] = ACTIONS(2114), + [anon_sym_SLASH2] = ACTIONS(2116), + [anon_sym_mod2] = ACTIONS(2114), + [anon_sym_SLASH_SLASH2] = ACTIONS(2114), + [anon_sym_PLUS2] = ACTIONS(2116), + [anon_sym_bit_DASHshl2] = ACTIONS(2114), + [anon_sym_bit_DASHshr2] = ACTIONS(2114), + [anon_sym_bit_DASHand2] = ACTIONS(2114), + [anon_sym_bit_DASHxor2] = ACTIONS(2114), + [anon_sym_bit_DASHor2] = ACTIONS(2114), + [anon_sym_LBRACK2] = ACTIONS(2118), + [anon_sym_err_GT] = ACTIONS(2116), + [anon_sym_out_GT] = ACTIONS(2116), + [anon_sym_e_GT] = ACTIONS(2116), + [anon_sym_o_GT] = ACTIONS(2116), + [anon_sym_err_PLUSout_GT] = ACTIONS(2116), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2116), + [anon_sym_o_PLUSe_GT] = ACTIONS(2116), + [anon_sym_e_PLUSo_GT] = ACTIONS(2116), + [anon_sym_err_GT_GT] = ACTIONS(2114), + [anon_sym_out_GT_GT] = ACTIONS(2114), + [anon_sym_e_GT_GT] = ACTIONS(2114), + [anon_sym_o_GT_GT] = ACTIONS(2114), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2114), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2114), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2114), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2114), [anon_sym_POUND] = ACTIONS(3), }, [STATE(685)] = { [sym_comment] = STATE(685), - [anon_sym_if] = ACTIONS(2092), - [anon_sym_in] = ACTIONS(2092), - [sym__newline] = ACTIONS(2092), - [anon_sym_SEMI] = ACTIONS(2092), - [anon_sym_PIPE] = ACTIONS(2092), - [anon_sym_err_GT_PIPE] = ACTIONS(2092), - [anon_sym_out_GT_PIPE] = ACTIONS(2092), - [anon_sym_e_GT_PIPE] = ACTIONS(2092), - [anon_sym_o_GT_PIPE] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2092), - [anon_sym_RPAREN] = ACTIONS(2092), - [anon_sym_GT2] = ACTIONS(2094), - [anon_sym_DASH2] = ACTIONS(2092), - [anon_sym_LBRACE] = ACTIONS(2092), - [anon_sym_RBRACE] = ACTIONS(2092), - [anon_sym_EQ_GT] = ACTIONS(2092), - [anon_sym_STAR2] = ACTIONS(2094), - [anon_sym_and2] = ACTIONS(2092), - [anon_sym_xor2] = ACTIONS(2092), - [anon_sym_or2] = ACTIONS(2092), - [anon_sym_not_DASHin2] = ACTIONS(2092), - [anon_sym_has2] = ACTIONS(2092), - [anon_sym_not_DASHhas2] = ACTIONS(2092), - [anon_sym_starts_DASHwith2] = ACTIONS(2092), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2092), - [anon_sym_ends_DASHwith2] = ACTIONS(2092), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2092), - [anon_sym_EQ_EQ2] = ACTIONS(2092), - [anon_sym_BANG_EQ2] = ACTIONS(2092), - [anon_sym_LT2] = ACTIONS(2094), - [anon_sym_LT_EQ2] = ACTIONS(2092), - [anon_sym_GT_EQ2] = ACTIONS(2092), - [anon_sym_EQ_TILDE2] = ACTIONS(2092), - [anon_sym_BANG_TILDE2] = ACTIONS(2092), - [anon_sym_like2] = ACTIONS(2092), - [anon_sym_not_DASHlike2] = ACTIONS(2092), - [anon_sym_LPAREN2] = ACTIONS(2092), - [anon_sym_STAR_STAR2] = ACTIONS(2092), - [anon_sym_PLUS_PLUS2] = ACTIONS(2092), - [anon_sym_SLASH2] = ACTIONS(2094), - [anon_sym_mod2] = ACTIONS(2092), - [anon_sym_SLASH_SLASH2] = ACTIONS(2092), - [anon_sym_PLUS2] = ACTIONS(2094), - [anon_sym_bit_DASHshl2] = ACTIONS(2092), - [anon_sym_bit_DASHshr2] = ACTIONS(2092), - [anon_sym_bit_DASHand2] = ACTIONS(2092), - [anon_sym_bit_DASHxor2] = ACTIONS(2092), - [anon_sym_bit_DASHor2] = ACTIONS(2092), - [anon_sym_err_GT] = ACTIONS(2094), - [anon_sym_out_GT] = ACTIONS(2094), - [anon_sym_e_GT] = ACTIONS(2094), - [anon_sym_o_GT] = ACTIONS(2094), - [anon_sym_err_PLUSout_GT] = ACTIONS(2094), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2094), - [anon_sym_o_PLUSe_GT] = ACTIONS(2094), - [anon_sym_e_PLUSo_GT] = ACTIONS(2094), - [anon_sym_err_GT_GT] = ACTIONS(2092), - [anon_sym_out_GT_GT] = ACTIONS(2092), - [anon_sym_e_GT_GT] = ACTIONS(2092), - [anon_sym_o_GT_GT] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2092), + [ts_builtin_sym_end] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [sym__newline] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_err_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_GT_PIPE] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_GT2] = ACTIONS(1740), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_STAR2] = ACTIONS(1740), + [anon_sym_and2] = ACTIONS(1738), + [anon_sym_xor2] = ACTIONS(1738), + [anon_sym_or2] = ACTIONS(1738), + [anon_sym_not_DASHin2] = ACTIONS(1738), + [anon_sym_has2] = ACTIONS(1738), + [anon_sym_not_DASHhas2] = ACTIONS(1738), + [anon_sym_starts_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), + [anon_sym_ends_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), + [anon_sym_EQ_EQ2] = ACTIONS(1738), + [anon_sym_BANG_EQ2] = ACTIONS(1738), + [anon_sym_LT2] = ACTIONS(1740), + [anon_sym_LT_EQ2] = ACTIONS(1738), + [anon_sym_GT_EQ2] = ACTIONS(1738), + [anon_sym_EQ_TILDE2] = ACTIONS(1738), + [anon_sym_BANG_TILDE2] = ACTIONS(1738), + [anon_sym_like2] = ACTIONS(1738), + [anon_sym_not_DASHlike2] = ACTIONS(1738), + [anon_sym_LPAREN2] = ACTIONS(1738), + [anon_sym_STAR_STAR2] = ACTIONS(1738), + [anon_sym_PLUS_PLUS2] = ACTIONS(1738), + [anon_sym_SLASH2] = ACTIONS(1740), + [anon_sym_mod2] = ACTIONS(1738), + [anon_sym_SLASH_SLASH2] = ACTIONS(1738), + [anon_sym_PLUS2] = ACTIONS(1740), + [anon_sym_bit_DASHshl2] = ACTIONS(1738), + [anon_sym_bit_DASHshr2] = ACTIONS(1738), + [anon_sym_bit_DASHand2] = ACTIONS(1738), + [anon_sym_bit_DASHxor2] = ACTIONS(1738), + [anon_sym_bit_DASHor2] = ACTIONS(1738), + [anon_sym_DOT_DOT2] = ACTIONS(1740), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1738), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1738), + [anon_sym_err_GT] = ACTIONS(1740), + [anon_sym_out_GT] = ACTIONS(1740), + [anon_sym_e_GT] = ACTIONS(1740), + [anon_sym_o_GT] = ACTIONS(1740), + [anon_sym_err_PLUSout_GT] = ACTIONS(1740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1740), + [anon_sym_o_PLUSe_GT] = ACTIONS(1740), + [anon_sym_e_PLUSo_GT] = ACTIONS(1740), + [anon_sym_err_GT_GT] = ACTIONS(1738), + [anon_sym_out_GT_GT] = ACTIONS(1738), + [anon_sym_e_GT_GT] = ACTIONS(1738), + [anon_sym_o_GT_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), + [sym__unquoted_pattern] = ACTIONS(1740), [anon_sym_POUND] = ACTIONS(3), }, [STATE(686)] = { - [sym__expr_parenthesized_immediate] = STATE(4634), [sym_comment] = STATE(686), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(687)] = { - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(687), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(688)] = { - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(688), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(689)] = { - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(689), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(690)] = { - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(690), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(691)] = { - [sym_comment] = STATE(691), - [anon_sym_else] = ACTIONS(2096), - [anon_sym_catch] = ACTIONS(2096), - [anon_sym_in] = ACTIONS(2096), - [sym__newline] = ACTIONS(2096), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_err_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_GT_PIPE] = ACTIONS(2096), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2096), - [anon_sym_COLON] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(2096), - [anon_sym_RPAREN] = ACTIONS(2096), - [anon_sym_GT2] = ACTIONS(2098), - [anon_sym_DASH2] = ACTIONS(2096), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_STAR2] = ACTIONS(2098), - [anon_sym_and2] = ACTIONS(2096), - [anon_sym_xor2] = ACTIONS(2096), - [anon_sym_or2] = ACTIONS(2096), - [anon_sym_not_DASHin2] = ACTIONS(2096), - [anon_sym_has2] = ACTIONS(2096), - [anon_sym_not_DASHhas2] = ACTIONS(2096), - [anon_sym_starts_DASHwith2] = ACTIONS(2096), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2096), - [anon_sym_ends_DASHwith2] = ACTIONS(2096), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2096), - [anon_sym_EQ_EQ2] = ACTIONS(2096), - [anon_sym_BANG_EQ2] = ACTIONS(2096), - [anon_sym_LT2] = ACTIONS(2098), - [anon_sym_LT_EQ2] = ACTIONS(2096), - [anon_sym_GT_EQ2] = ACTIONS(2096), - [anon_sym_EQ_TILDE2] = ACTIONS(2096), - [anon_sym_BANG_TILDE2] = ACTIONS(2096), - [anon_sym_like2] = ACTIONS(2096), - [anon_sym_not_DASHlike2] = ACTIONS(2096), - [anon_sym_STAR_STAR2] = ACTIONS(2096), - [anon_sym_PLUS_PLUS2] = ACTIONS(2096), - [anon_sym_SLASH2] = ACTIONS(2098), - [anon_sym_mod2] = ACTIONS(2096), - [anon_sym_SLASH_SLASH2] = ACTIONS(2096), - [anon_sym_PLUS2] = ACTIONS(2098), - [anon_sym_bit_DASHshl2] = ACTIONS(2096), - [anon_sym_bit_DASHshr2] = ACTIONS(2096), - [anon_sym_bit_DASHand2] = ACTIONS(2096), - [anon_sym_bit_DASHxor2] = ACTIONS(2096), - [anon_sym_bit_DASHor2] = ACTIONS(2096), - [anon_sym_err_GT] = ACTIONS(2098), - [anon_sym_out_GT] = ACTIONS(2098), - [anon_sym_e_GT] = ACTIONS(2098), - [anon_sym_o_GT] = ACTIONS(2098), - [anon_sym_err_PLUSout_GT] = ACTIONS(2098), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2098), - [anon_sym_o_PLUSe_GT] = ACTIONS(2098), - [anon_sym_e_PLUSo_GT] = ACTIONS(2098), - [anon_sym_err_GT_GT] = ACTIONS(2096), - [anon_sym_out_GT_GT] = ACTIONS(2096), - [anon_sym_e_GT_GT] = ACTIONS(2096), - [anon_sym_o_GT_GT] = ACTIONS(2096), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2096), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2096), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2096), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2096), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(692)] = { - [sym_comment] = STATE(692), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_DOT_DOT2] = ACTIONS(2104), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2106), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2106), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(693)] = { - [sym_comment] = STATE(693), - [ts_builtin_sym_end] = ACTIONS(1964), - [anon_sym_in] = ACTIONS(1964), - [sym__newline] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_err_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_GT_PIPE] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1964), - [anon_sym_GT2] = ACTIONS(1966), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_STAR2] = ACTIONS(1966), - [anon_sym_and2] = ACTIONS(1964), - [anon_sym_xor2] = ACTIONS(1964), - [anon_sym_or2] = ACTIONS(1964), - [anon_sym_not_DASHin2] = ACTIONS(1964), - [anon_sym_has2] = ACTIONS(1964), - [anon_sym_not_DASHhas2] = ACTIONS(1964), - [anon_sym_starts_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1964), - [anon_sym_ends_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1964), - [anon_sym_EQ_EQ2] = ACTIONS(1964), - [anon_sym_BANG_EQ2] = ACTIONS(1964), - [anon_sym_LT2] = ACTIONS(1966), - [anon_sym_LT_EQ2] = ACTIONS(1964), - [anon_sym_GT_EQ2] = ACTIONS(1964), - [anon_sym_EQ_TILDE2] = ACTIONS(1964), - [anon_sym_BANG_TILDE2] = ACTIONS(1964), - [anon_sym_like2] = ACTIONS(1964), - [anon_sym_not_DASHlike2] = ACTIONS(1964), - [anon_sym_LPAREN2] = ACTIONS(1968), - [anon_sym_STAR_STAR2] = ACTIONS(1964), - [anon_sym_PLUS_PLUS2] = ACTIONS(1964), - [anon_sym_SLASH2] = ACTIONS(1966), - [anon_sym_mod2] = ACTIONS(1964), - [anon_sym_SLASH_SLASH2] = ACTIONS(1964), - [anon_sym_PLUS2] = ACTIONS(1966), - [anon_sym_bit_DASHshl2] = ACTIONS(1964), - [anon_sym_bit_DASHshr2] = ACTIONS(1964), - [anon_sym_bit_DASHand2] = ACTIONS(1964), - [anon_sym_bit_DASHxor2] = ACTIONS(1964), - [anon_sym_bit_DASHor2] = ACTIONS(1964), - [anon_sym_DOT_DOT2] = ACTIONS(2108), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2110), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2110), - [anon_sym_err_GT] = ACTIONS(1966), - [anon_sym_out_GT] = ACTIONS(1966), - [anon_sym_e_GT] = ACTIONS(1966), - [anon_sym_o_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT] = ACTIONS(1966), - [anon_sym_err_GT_GT] = ACTIONS(1964), - [anon_sym_out_GT_GT] = ACTIONS(1964), - [anon_sym_e_GT_GT] = ACTIONS(1964), - [anon_sym_o_GT_GT] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1964), - [sym__unquoted_pattern] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(694)] = { - [sym_comment] = STATE(694), - [anon_sym_if] = ACTIONS(2112), - [anon_sym_in] = ACTIONS(2112), - [sym__newline] = ACTIONS(2112), - [anon_sym_SEMI] = ACTIONS(2112), - [anon_sym_PIPE] = ACTIONS(2112), - [anon_sym_err_GT_PIPE] = ACTIONS(2112), - [anon_sym_out_GT_PIPE] = ACTIONS(2112), - [anon_sym_e_GT_PIPE] = ACTIONS(2112), - [anon_sym_o_GT_PIPE] = ACTIONS(2112), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2112), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2112), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2112), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2112), - [anon_sym_RPAREN] = ACTIONS(2112), - [anon_sym_GT2] = ACTIONS(2114), - [anon_sym_DASH2] = ACTIONS(2112), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_RBRACE] = ACTIONS(2112), - [anon_sym_EQ_GT] = ACTIONS(2112), - [anon_sym_STAR2] = ACTIONS(2114), - [anon_sym_and2] = ACTIONS(2112), - [anon_sym_xor2] = ACTIONS(2112), - [anon_sym_or2] = ACTIONS(2112), - [anon_sym_not_DASHin2] = ACTIONS(2112), - [anon_sym_has2] = ACTIONS(2112), - [anon_sym_not_DASHhas2] = ACTIONS(2112), - [anon_sym_starts_DASHwith2] = ACTIONS(2112), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2112), - [anon_sym_ends_DASHwith2] = ACTIONS(2112), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2112), - [anon_sym_EQ_EQ2] = ACTIONS(2112), - [anon_sym_BANG_EQ2] = ACTIONS(2112), - [anon_sym_LT2] = ACTIONS(2114), - [anon_sym_LT_EQ2] = ACTIONS(2112), - [anon_sym_GT_EQ2] = ACTIONS(2112), - [anon_sym_EQ_TILDE2] = ACTIONS(2112), - [anon_sym_BANG_TILDE2] = ACTIONS(2112), - [anon_sym_like2] = ACTIONS(2112), - [anon_sym_not_DASHlike2] = ACTIONS(2112), - [anon_sym_STAR_STAR2] = ACTIONS(2112), - [anon_sym_PLUS_PLUS2] = ACTIONS(2112), - [anon_sym_SLASH2] = ACTIONS(2114), - [anon_sym_mod2] = ACTIONS(2112), - [anon_sym_SLASH_SLASH2] = ACTIONS(2112), - [anon_sym_PLUS2] = ACTIONS(2114), - [anon_sym_bit_DASHshl2] = ACTIONS(2112), - [anon_sym_bit_DASHshr2] = ACTIONS(2112), - [anon_sym_bit_DASHand2] = ACTIONS(2112), - [anon_sym_bit_DASHxor2] = ACTIONS(2112), - [anon_sym_bit_DASHor2] = ACTIONS(2112), - [anon_sym_COLON2] = ACTIONS(2112), - [anon_sym_err_GT] = ACTIONS(2114), - [anon_sym_out_GT] = ACTIONS(2114), - [anon_sym_e_GT] = ACTIONS(2114), - [anon_sym_o_GT] = ACTIONS(2114), - [anon_sym_err_PLUSout_GT] = ACTIONS(2114), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2114), - [anon_sym_o_PLUSe_GT] = ACTIONS(2114), - [anon_sym_e_PLUSo_GT] = ACTIONS(2114), - [anon_sym_err_GT_GT] = ACTIONS(2112), - [anon_sym_out_GT_GT] = ACTIONS(2112), - [anon_sym_e_GT_GT] = ACTIONS(2112), - [anon_sym_o_GT_GT] = ACTIONS(2112), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2112), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2112), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2112), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2112), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(695)] = { - [sym_comment] = STATE(695), - [anon_sym_if] = ACTIONS(968), - [anon_sym_in] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_EQ_GT] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(968), - [anon_sym_xor2] = ACTIONS(968), - [anon_sym_or2] = ACTIONS(968), - [anon_sym_not_DASHin2] = ACTIONS(968), - [anon_sym_has2] = ACTIONS(968), - [anon_sym_not_DASHhas2] = ACTIONS(968), - [anon_sym_starts_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(968), - [anon_sym_ends_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(968), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(968), - [anon_sym_like2] = ACTIONS(968), - [anon_sym_not_DASHlike2] = ACTIONS(968), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(968), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(968), - [anon_sym_bit_DASHshr2] = ACTIONS(968), - [anon_sym_bit_DASHand2] = ACTIONS(968), - [anon_sym_bit_DASHxor2] = ACTIONS(968), - [anon_sym_bit_DASHor2] = ACTIONS(968), - [anon_sym_COLON2] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(696)] = { - [sym_comment] = STATE(696), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_RBRACE] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [aux_sym__immediate_decimal_token1] = ACTIONS(2116), - [aux_sym__immediate_decimal_token5] = ACTIONS(2118), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(697)] = { - [sym_comment] = STATE(697), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1706), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(698)] = { - [sym_comment] = STATE(698), + [anon_sym_if] = ACTIONS(2120), [anon_sym_in] = ACTIONS(2120), [sym__newline] = ACTIONS(2120), [anon_sym_SEMI] = ACTIONS(2120), @@ -100427,6 +99783,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(2120), [anon_sym_LBRACE] = ACTIONS(2120), [anon_sym_RBRACE] = ACTIONS(2120), + [anon_sym_EQ_GT] = ACTIONS(2120), [anon_sym_STAR2] = ACTIONS(2122), [anon_sym_and2] = ACTIONS(2120), [anon_sym_xor2] = ACTIONS(2120), @@ -100447,6 +99804,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2120), [anon_sym_like2] = ACTIONS(2120), [anon_sym_not_DASHlike2] = ACTIONS(2120), + [anon_sym_LPAREN2] = ACTIONS(2120), [anon_sym_STAR_STAR2] = ACTIONS(2120), [anon_sym_PLUS_PLUS2] = ACTIONS(2120), [anon_sym_SLASH2] = ACTIONS(2122), @@ -100458,9 +99816,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(2120), [anon_sym_bit_DASHxor2] = ACTIONS(2120), [anon_sym_bit_DASHor2] = ACTIONS(2120), - [anon_sym_DOT_DOT2] = ACTIONS(2124), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2126), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2126), [anon_sym_err_GT] = ACTIONS(2122), [anon_sym_out_GT] = ACTIONS(2122), [anon_sym_e_GT] = ACTIONS(2122), @@ -100479,80 +99834,1216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2120), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(687)] = { + [sym_comment] = STATE(687), + [ts_builtin_sym_end] = ACTIONS(1448), + [anon_sym_in] = ACTIONS(1448), + [sym__newline] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1448), + [anon_sym_err_GT_PIPE] = ACTIONS(1448), + [anon_sym_out_GT_PIPE] = ACTIONS(1448), + [anon_sym_e_GT_PIPE] = ACTIONS(1448), + [anon_sym_o_GT_PIPE] = ACTIONS(1448), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1448), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), + [anon_sym_GT2] = ACTIONS(1446), + [anon_sym_DASH2] = ACTIONS(1448), + [anon_sym_STAR2] = ACTIONS(1446), + [anon_sym_and2] = ACTIONS(1448), + [anon_sym_xor2] = ACTIONS(1448), + [anon_sym_or2] = ACTIONS(1448), + [anon_sym_not_DASHin2] = ACTIONS(1448), + [anon_sym_has2] = ACTIONS(1448), + [anon_sym_not_DASHhas2] = ACTIONS(1448), + [anon_sym_starts_DASHwith2] = ACTIONS(1448), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1448), + [anon_sym_ends_DASHwith2] = ACTIONS(1448), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), + [anon_sym_EQ_EQ2] = ACTIONS(1448), + [anon_sym_BANG_EQ2] = ACTIONS(1448), + [anon_sym_LT2] = ACTIONS(1446), + [anon_sym_LT_EQ2] = ACTIONS(1448), + [anon_sym_GT_EQ2] = ACTIONS(1448), + [anon_sym_EQ_TILDE2] = ACTIONS(1448), + [anon_sym_BANG_TILDE2] = ACTIONS(1448), + [anon_sym_like2] = ACTIONS(1448), + [anon_sym_not_DASHlike2] = ACTIONS(1448), + [anon_sym_STAR_STAR2] = ACTIONS(1448), + [anon_sym_PLUS_PLUS2] = ACTIONS(1448), + [anon_sym_SLASH2] = ACTIONS(1446), + [anon_sym_mod2] = ACTIONS(1448), + [anon_sym_SLASH_SLASH2] = ACTIONS(1448), + [anon_sym_PLUS2] = ACTIONS(1446), + [anon_sym_bit_DASHshl2] = ACTIONS(1448), + [anon_sym_bit_DASHshr2] = ACTIONS(1448), + [anon_sym_bit_DASHand2] = ACTIONS(1448), + [anon_sym_bit_DASHxor2] = ACTIONS(1448), + [anon_sym_bit_DASHor2] = ACTIONS(1448), + [anon_sym_DOT_DOT2] = ACTIONS(1446), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_DOT2] = ACTIONS(1446), + [anon_sym_err_GT] = ACTIONS(1446), + [anon_sym_out_GT] = ACTIONS(1446), + [anon_sym_e_GT] = ACTIONS(1446), + [anon_sym_o_GT] = ACTIONS(1446), + [anon_sym_err_PLUSout_GT] = ACTIONS(1446), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), + [anon_sym_o_PLUSe_GT] = ACTIONS(1446), + [anon_sym_e_PLUSo_GT] = ACTIONS(1446), + [anon_sym_err_GT_GT] = ACTIONS(1448), + [anon_sym_out_GT_GT] = ACTIONS(1448), + [anon_sym_e_GT_GT] = ACTIONS(1448), + [anon_sym_o_GT_GT] = ACTIONS(1448), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1448), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(688)] = { + [sym_comment] = STATE(688), + [ts_builtin_sym_end] = ACTIONS(1448), + [anon_sym_in] = ACTIONS(1448), + [sym__newline] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1448), + [anon_sym_err_GT_PIPE] = ACTIONS(1448), + [anon_sym_out_GT_PIPE] = ACTIONS(1448), + [anon_sym_e_GT_PIPE] = ACTIONS(1448), + [anon_sym_o_GT_PIPE] = ACTIONS(1448), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1448), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), + [anon_sym_GT2] = ACTIONS(1446), + [anon_sym_DASH2] = ACTIONS(1448), + [anon_sym_STAR2] = ACTIONS(1446), + [anon_sym_and2] = ACTIONS(1448), + [anon_sym_xor2] = ACTIONS(1448), + [anon_sym_or2] = ACTIONS(1448), + [anon_sym_not_DASHin2] = ACTIONS(1448), + [anon_sym_has2] = ACTIONS(1448), + [anon_sym_not_DASHhas2] = ACTIONS(1448), + [anon_sym_starts_DASHwith2] = ACTIONS(1448), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1448), + [anon_sym_ends_DASHwith2] = ACTIONS(1448), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), + [anon_sym_EQ_EQ2] = ACTIONS(1448), + [anon_sym_BANG_EQ2] = ACTIONS(1448), + [anon_sym_LT2] = ACTIONS(1446), + [anon_sym_LT_EQ2] = ACTIONS(1448), + [anon_sym_GT_EQ2] = ACTIONS(1448), + [anon_sym_EQ_TILDE2] = ACTIONS(1448), + [anon_sym_BANG_TILDE2] = ACTIONS(1448), + [anon_sym_like2] = ACTIONS(1448), + [anon_sym_not_DASHlike2] = ACTIONS(1448), + [anon_sym_STAR_STAR2] = ACTIONS(1448), + [anon_sym_PLUS_PLUS2] = ACTIONS(1448), + [anon_sym_SLASH2] = ACTIONS(1446), + [anon_sym_mod2] = ACTIONS(1448), + [anon_sym_SLASH_SLASH2] = ACTIONS(1448), + [anon_sym_PLUS2] = ACTIONS(1446), + [anon_sym_bit_DASHshl2] = ACTIONS(1448), + [anon_sym_bit_DASHshr2] = ACTIONS(1448), + [anon_sym_bit_DASHand2] = ACTIONS(1448), + [anon_sym_bit_DASHxor2] = ACTIONS(1448), + [anon_sym_bit_DASHor2] = ACTIONS(1448), + [anon_sym_DOT_DOT2] = ACTIONS(1446), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), + [anon_sym_QMARK2] = ACTIONS(2126), + [anon_sym_DOT2] = ACTIONS(1446), + [anon_sym_err_GT] = ACTIONS(1446), + [anon_sym_out_GT] = ACTIONS(1446), + [anon_sym_e_GT] = ACTIONS(1446), + [anon_sym_o_GT] = ACTIONS(1446), + [anon_sym_err_PLUSout_GT] = ACTIONS(1446), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), + [anon_sym_o_PLUSe_GT] = ACTIONS(1446), + [anon_sym_e_PLUSo_GT] = ACTIONS(1446), + [anon_sym_err_GT_GT] = ACTIONS(1448), + [anon_sym_out_GT_GT] = ACTIONS(1448), + [anon_sym_e_GT_GT] = ACTIONS(1448), + [anon_sym_o_GT_GT] = ACTIONS(1448), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1448), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(689)] = { + [sym_comment] = STATE(689), + [anon_sym_in] = ACTIONS(2074), + [sym__newline] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_PIPE] = ACTIONS(2074), + [anon_sym_err_GT_PIPE] = ACTIONS(2074), + [anon_sym_out_GT_PIPE] = ACTIONS(2074), + [anon_sym_e_GT_PIPE] = ACTIONS(2074), + [anon_sym_o_GT_PIPE] = ACTIONS(2074), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2074), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2074), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2074), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2074), + [anon_sym_RPAREN] = ACTIONS(2074), + [anon_sym_GT2] = ACTIONS(2078), + [anon_sym_DASH2] = ACTIONS(2074), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_RBRACE] = ACTIONS(2074), + [anon_sym_STAR2] = ACTIONS(2078), + [anon_sym_and2] = ACTIONS(2074), + [anon_sym_xor2] = ACTIONS(2074), + [anon_sym_or2] = ACTIONS(2074), + [anon_sym_not_DASHin2] = ACTIONS(2074), + [anon_sym_has2] = ACTIONS(2074), + [anon_sym_not_DASHhas2] = ACTIONS(2074), + [anon_sym_starts_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2074), + [anon_sym_ends_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2074), + [anon_sym_EQ_EQ2] = ACTIONS(2074), + [anon_sym_BANG_EQ2] = ACTIONS(2074), + [anon_sym_LT2] = ACTIONS(2078), + [anon_sym_LT_EQ2] = ACTIONS(2074), + [anon_sym_GT_EQ2] = ACTIONS(2074), + [anon_sym_EQ_TILDE2] = ACTIONS(2074), + [anon_sym_BANG_TILDE2] = ACTIONS(2074), + [anon_sym_like2] = ACTIONS(2074), + [anon_sym_not_DASHlike2] = ACTIONS(2074), + [anon_sym_STAR_STAR2] = ACTIONS(2074), + [anon_sym_PLUS_PLUS2] = ACTIONS(2074), + [anon_sym_SLASH2] = ACTIONS(2078), + [anon_sym_mod2] = ACTIONS(2074), + [anon_sym_SLASH_SLASH2] = ACTIONS(2074), + [anon_sym_PLUS2] = ACTIONS(2078), + [anon_sym_bit_DASHshl2] = ACTIONS(2074), + [anon_sym_bit_DASHshr2] = ACTIONS(2074), + [anon_sym_bit_DASHand2] = ACTIONS(2074), + [anon_sym_bit_DASHxor2] = ACTIONS(2074), + [anon_sym_bit_DASHor2] = ACTIONS(2074), + [anon_sym_DOT_DOT2] = ACTIONS(1619), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), + [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(2074), + [anon_sym_out_GT_GT] = ACTIONS(2074), + [anon_sym_e_GT_GT] = ACTIONS(2074), + [anon_sym_o_GT_GT] = ACTIONS(2074), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2074), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2074), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2074), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2074), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(690)] = { + [sym_comment] = STATE(690), + [anon_sym_in] = ACTIONS(1728), + [sym__newline] = ACTIONS(1728), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_err_GT_PIPE] = ACTIONS(1728), + [anon_sym_out_GT_PIPE] = ACTIONS(1728), + [anon_sym_e_GT_PIPE] = ACTIONS(1728), + [anon_sym_o_GT_PIPE] = ACTIONS(1728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1728), + [anon_sym_RPAREN] = ACTIONS(1728), + [anon_sym_GT2] = ACTIONS(1730), + [anon_sym_DASH2] = ACTIONS(1728), + [anon_sym_RBRACE] = ACTIONS(1728), + [anon_sym_STAR2] = ACTIONS(1730), + [anon_sym_and2] = ACTIONS(1728), + [anon_sym_xor2] = ACTIONS(1728), + [anon_sym_or2] = ACTIONS(1728), + [anon_sym_not_DASHin2] = ACTIONS(1728), + [anon_sym_has2] = ACTIONS(1728), + [anon_sym_not_DASHhas2] = ACTIONS(1728), + [anon_sym_starts_DASHwith2] = ACTIONS(1728), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1728), + [anon_sym_ends_DASHwith2] = ACTIONS(1728), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1728), + [anon_sym_EQ_EQ2] = ACTIONS(1728), + [anon_sym_BANG_EQ2] = ACTIONS(1728), + [anon_sym_LT2] = ACTIONS(1730), + [anon_sym_LT_EQ2] = ACTIONS(1728), + [anon_sym_GT_EQ2] = ACTIONS(1728), + [anon_sym_EQ_TILDE2] = ACTIONS(1728), + [anon_sym_BANG_TILDE2] = ACTIONS(1728), + [anon_sym_like2] = ACTIONS(1728), + [anon_sym_not_DASHlike2] = ACTIONS(1728), + [anon_sym_LPAREN2] = ACTIONS(1728), + [anon_sym_STAR_STAR2] = ACTIONS(1728), + [anon_sym_PLUS_PLUS2] = ACTIONS(1728), + [anon_sym_SLASH2] = ACTIONS(1730), + [anon_sym_mod2] = ACTIONS(1728), + [anon_sym_SLASH_SLASH2] = ACTIONS(1728), + [anon_sym_PLUS2] = ACTIONS(1730), + [anon_sym_bit_DASHshl2] = ACTIONS(1728), + [anon_sym_bit_DASHshr2] = ACTIONS(1728), + [anon_sym_bit_DASHand2] = ACTIONS(1728), + [anon_sym_bit_DASHxor2] = ACTIONS(1728), + [anon_sym_bit_DASHor2] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(2128), + [aux_sym__immediate_decimal_token5] = ACTIONS(2130), + [anon_sym_err_GT] = ACTIONS(1730), + [anon_sym_out_GT] = ACTIONS(1730), + [anon_sym_e_GT] = ACTIONS(1730), + [anon_sym_o_GT] = ACTIONS(1730), + [anon_sym_err_PLUSout_GT] = ACTIONS(1730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1730), + [anon_sym_o_PLUSe_GT] = ACTIONS(1730), + [anon_sym_e_PLUSo_GT] = ACTIONS(1730), + [anon_sym_err_GT_GT] = ACTIONS(1728), + [anon_sym_out_GT_GT] = ACTIONS(1728), + [anon_sym_e_GT_GT] = ACTIONS(1728), + [anon_sym_o_GT_GT] = ACTIONS(1728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1728), + [sym__unquoted_pattern] = ACTIONS(1730), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(691)] = { + [sym__expr_parenthesized_immediate] = STATE(5243), + [sym_comment] = STATE(691), + [anon_sym_in] = ACTIONS(2132), + [sym__newline] = ACTIONS(2132), + [anon_sym_SEMI] = ACTIONS(2132), + [anon_sym_PIPE] = ACTIONS(2132), + [anon_sym_err_GT_PIPE] = ACTIONS(2132), + [anon_sym_out_GT_PIPE] = ACTIONS(2132), + [anon_sym_e_GT_PIPE] = ACTIONS(2132), + [anon_sym_o_GT_PIPE] = ACTIONS(2132), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2132), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2132), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2132), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2132), + [anon_sym_RPAREN] = ACTIONS(2132), + [anon_sym_GT2] = ACTIONS(2134), + [anon_sym_DASH2] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2132), + [anon_sym_RBRACE] = ACTIONS(2132), + [anon_sym_EQ_GT] = ACTIONS(2132), + [anon_sym_STAR2] = ACTIONS(2134), + [anon_sym_and2] = ACTIONS(2132), + [anon_sym_xor2] = ACTIONS(2132), + [anon_sym_or2] = ACTIONS(2132), + [anon_sym_not_DASHin2] = ACTIONS(2132), + [anon_sym_has2] = ACTIONS(2132), + [anon_sym_not_DASHhas2] = ACTIONS(2132), + [anon_sym_starts_DASHwith2] = ACTIONS(2132), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2132), + [anon_sym_ends_DASHwith2] = ACTIONS(2132), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2132), + [anon_sym_EQ_EQ2] = ACTIONS(2132), + [anon_sym_BANG_EQ2] = ACTIONS(2132), + [anon_sym_LT2] = ACTIONS(2134), + [anon_sym_LT_EQ2] = ACTIONS(2132), + [anon_sym_GT_EQ2] = ACTIONS(2132), + [anon_sym_EQ_TILDE2] = ACTIONS(2132), + [anon_sym_BANG_TILDE2] = ACTIONS(2132), + [anon_sym_like2] = ACTIONS(2132), + [anon_sym_not_DASHlike2] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2132), + [anon_sym_PLUS_PLUS2] = ACTIONS(2132), + [anon_sym_SLASH2] = ACTIONS(2134), + [anon_sym_mod2] = ACTIONS(2132), + [anon_sym_SLASH_SLASH2] = ACTIONS(2132), + [anon_sym_PLUS2] = ACTIONS(2134), + [anon_sym_bit_DASHshl2] = ACTIONS(2132), + [anon_sym_bit_DASHshr2] = ACTIONS(2132), + [anon_sym_bit_DASHand2] = ACTIONS(2132), + [anon_sym_bit_DASHxor2] = ACTIONS(2132), + [anon_sym_bit_DASHor2] = ACTIONS(2132), + [anon_sym_err_GT] = ACTIONS(2134), + [anon_sym_out_GT] = ACTIONS(2134), + [anon_sym_e_GT] = ACTIONS(2134), + [anon_sym_o_GT] = ACTIONS(2134), + [anon_sym_err_PLUSout_GT] = ACTIONS(2134), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2134), + [anon_sym_o_PLUSe_GT] = ACTIONS(2134), + [anon_sym_e_PLUSo_GT] = ACTIONS(2134), + [anon_sym_err_GT_GT] = ACTIONS(2132), + [anon_sym_out_GT_GT] = ACTIONS(2132), + [anon_sym_e_GT_GT] = ACTIONS(2132), + [anon_sym_o_GT_GT] = ACTIONS(2132), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2132), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2132), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2132), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2132), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(692)] = { + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(692), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(693)] = { + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(693), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(694)] = { + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(694), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(695)] = { + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(695), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(696)] = { + [sym_comment] = STATE(696), + [ts_builtin_sym_end] = ACTIONS(1844), + [anon_sym_in] = ACTIONS(1844), + [sym__newline] = ACTIONS(1844), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_err_GT_PIPE] = ACTIONS(1844), + [anon_sym_out_GT_PIPE] = ACTIONS(1844), + [anon_sym_e_GT_PIPE] = ACTIONS(1844), + [anon_sym_o_GT_PIPE] = ACTIONS(1844), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1844), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1844), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1844), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1844), + [anon_sym_GT2] = ACTIONS(1846), + [anon_sym_DASH2] = ACTIONS(1844), + [anon_sym_STAR2] = ACTIONS(1846), + [anon_sym_and2] = ACTIONS(1844), + [anon_sym_xor2] = ACTIONS(1844), + [anon_sym_or2] = ACTIONS(1844), + [anon_sym_not_DASHin2] = ACTIONS(1844), + [anon_sym_has2] = ACTIONS(1844), + [anon_sym_not_DASHhas2] = ACTIONS(1844), + [anon_sym_starts_DASHwith2] = ACTIONS(1844), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1844), + [anon_sym_ends_DASHwith2] = ACTIONS(1844), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1844), + [anon_sym_EQ_EQ2] = ACTIONS(1844), + [anon_sym_BANG_EQ2] = ACTIONS(1844), + [anon_sym_LT2] = ACTIONS(1846), + [anon_sym_LT_EQ2] = ACTIONS(1844), + [anon_sym_GT_EQ2] = ACTIONS(1844), + [anon_sym_EQ_TILDE2] = ACTIONS(1844), + [anon_sym_BANG_TILDE2] = ACTIONS(1844), + [anon_sym_like2] = ACTIONS(1844), + [anon_sym_not_DASHlike2] = ACTIONS(1844), + [anon_sym_LPAREN2] = ACTIONS(1844), + [anon_sym_STAR_STAR2] = ACTIONS(1844), + [anon_sym_PLUS_PLUS2] = ACTIONS(1844), + [anon_sym_SLASH2] = ACTIONS(1846), + [anon_sym_mod2] = ACTIONS(1844), + [anon_sym_SLASH_SLASH2] = ACTIONS(1844), + [anon_sym_PLUS2] = ACTIONS(1846), + [anon_sym_bit_DASHshl2] = ACTIONS(1844), + [anon_sym_bit_DASHshr2] = ACTIONS(1844), + [anon_sym_bit_DASHand2] = ACTIONS(1844), + [anon_sym_bit_DASHxor2] = ACTIONS(1844), + [anon_sym_bit_DASHor2] = ACTIONS(1844), + [anon_sym_DOT_DOT2] = ACTIONS(1846), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1844), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1844), + [anon_sym_err_GT] = ACTIONS(1846), + [anon_sym_out_GT] = ACTIONS(1846), + [anon_sym_e_GT] = ACTIONS(1846), + [anon_sym_o_GT] = ACTIONS(1846), + [anon_sym_err_PLUSout_GT] = ACTIONS(1846), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1846), + [anon_sym_o_PLUSe_GT] = ACTIONS(1846), + [anon_sym_e_PLUSo_GT] = ACTIONS(1846), + [anon_sym_err_GT_GT] = ACTIONS(1844), + [anon_sym_out_GT_GT] = ACTIONS(1844), + [anon_sym_e_GT_GT] = ACTIONS(1844), + [anon_sym_o_GT_GT] = ACTIONS(1844), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1844), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1844), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1844), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1844), + [sym__unquoted_pattern] = ACTIONS(1846), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(697)] = { + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(697), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(698)] = { + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(698), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(699)] = { + [sym__expr_parenthesized_immediate] = STATE(4728), [sym_comment] = STATE(699), - [anon_sym_if] = ACTIONS(2128), - [anon_sym_in] = ACTIONS(2128), - [sym__newline] = ACTIONS(2128), - [anon_sym_SEMI] = ACTIONS(2128), - [anon_sym_PIPE] = ACTIONS(2128), - [anon_sym_err_GT_PIPE] = ACTIONS(2128), - [anon_sym_out_GT_PIPE] = ACTIONS(2128), - [anon_sym_e_GT_PIPE] = ACTIONS(2128), - [anon_sym_o_GT_PIPE] = ACTIONS(2128), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2128), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2128), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2128), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2128), - [anon_sym_RPAREN] = ACTIONS(2128), - [anon_sym_GT2] = ACTIONS(2130), - [anon_sym_DASH2] = ACTIONS(2128), - [anon_sym_LBRACE] = ACTIONS(2128), - [anon_sym_RBRACE] = ACTIONS(2128), - [anon_sym_EQ_GT] = ACTIONS(2128), - [anon_sym_STAR2] = ACTIONS(2130), - [anon_sym_and2] = ACTIONS(2128), - [anon_sym_xor2] = ACTIONS(2128), - [anon_sym_or2] = ACTIONS(2128), - [anon_sym_not_DASHin2] = ACTIONS(2128), - [anon_sym_has2] = ACTIONS(2128), - [anon_sym_not_DASHhas2] = ACTIONS(2128), - [anon_sym_starts_DASHwith2] = ACTIONS(2128), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2128), - [anon_sym_ends_DASHwith2] = ACTIONS(2128), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2128), - [anon_sym_EQ_EQ2] = ACTIONS(2128), - [anon_sym_BANG_EQ2] = ACTIONS(2128), - [anon_sym_LT2] = ACTIONS(2130), - [anon_sym_LT_EQ2] = ACTIONS(2128), - [anon_sym_GT_EQ2] = ACTIONS(2128), - [anon_sym_EQ_TILDE2] = ACTIONS(2128), - [anon_sym_BANG_TILDE2] = ACTIONS(2128), - [anon_sym_like2] = ACTIONS(2128), - [anon_sym_not_DASHlike2] = ACTIONS(2128), - [anon_sym_STAR_STAR2] = ACTIONS(2128), - [anon_sym_PLUS_PLUS2] = ACTIONS(2128), - [anon_sym_SLASH2] = ACTIONS(2130), - [anon_sym_mod2] = ACTIONS(2128), - [anon_sym_SLASH_SLASH2] = ACTIONS(2128), - [anon_sym_PLUS2] = ACTIONS(2130), - [anon_sym_bit_DASHshl2] = ACTIONS(2128), - [anon_sym_bit_DASHshr2] = ACTIONS(2128), - [anon_sym_bit_DASHand2] = ACTIONS(2128), - [anon_sym_bit_DASHxor2] = ACTIONS(2128), - [anon_sym_bit_DASHor2] = ACTIONS(2128), - [anon_sym_LBRACK2] = ACTIONS(2132), - [anon_sym_err_GT] = ACTIONS(2130), - [anon_sym_out_GT] = ACTIONS(2130), - [anon_sym_e_GT] = ACTIONS(2130), - [anon_sym_o_GT] = ACTIONS(2130), - [anon_sym_err_PLUSout_GT] = ACTIONS(2130), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2130), - [anon_sym_o_PLUSe_GT] = ACTIONS(2130), - [anon_sym_e_PLUSo_GT] = ACTIONS(2130), - [anon_sym_err_GT_GT] = ACTIONS(2128), - [anon_sym_out_GT_GT] = ACTIONS(2128), - [anon_sym_e_GT_GT] = ACTIONS(2128), - [anon_sym_o_GT_GT] = ACTIONS(2128), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2128), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2128), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2128), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2128), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(700)] = { + [sym__expr_parenthesized_immediate] = STATE(4728), [sym_comment] = STATE(700), - [anon_sym_in] = ACTIONS(2134), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(701)] = { + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(701), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(702)] = { + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(702), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(703)] = { + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(703), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(704)] = { + [sym_comment] = STATE(704), + [anon_sym_in] = ACTIONS(2136), [sym__newline] = ACTIONS(2136), [anon_sym_SEMI] = ACTIONS(2136), [anon_sym_PIPE] = ACTIONS(2136), @@ -100566,51 +101057,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), [anon_sym_RPAREN] = ACTIONS(2136), [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), + [anon_sym_DASH2] = ACTIONS(2136), [anon_sym_LBRACE] = ACTIONS(2136), [anon_sym_RBRACE] = ACTIONS(2136), [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), + [anon_sym_and2] = ACTIONS(2136), + [anon_sym_xor2] = ACTIONS(2136), + [anon_sym_or2] = ACTIONS(2136), + [anon_sym_not_DASHin2] = ACTIONS(2136), + [anon_sym_has2] = ACTIONS(2136), + [anon_sym_not_DASHhas2] = ACTIONS(2136), + [anon_sym_starts_DASHwith2] = ACTIONS(2136), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2136), + [anon_sym_ends_DASHwith2] = ACTIONS(2136), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2136), + [anon_sym_EQ_EQ2] = ACTIONS(2136), + [anon_sym_BANG_EQ2] = ACTIONS(2136), [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), + [anon_sym_LT_EQ2] = ACTIONS(2136), + [anon_sym_GT_EQ2] = ACTIONS(2136), + [anon_sym_EQ_TILDE2] = ACTIONS(2136), + [anon_sym_BANG_TILDE2] = ACTIONS(2136), + [anon_sym_like2] = ACTIONS(2136), + [anon_sym_not_DASHlike2] = ACTIONS(2136), + [anon_sym_STAR_STAR2] = ACTIONS(2136), + [anon_sym_PLUS_PLUS2] = ACTIONS(2136), [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), + [anon_sym_mod2] = ACTIONS(2136), + [anon_sym_SLASH_SLASH2] = ACTIONS(2136), [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(2140), - [anon_sym_out_GT] = ACTIONS(2140), - [anon_sym_e_GT] = ACTIONS(2140), - [anon_sym_o_GT] = ACTIONS(2140), - [anon_sym_err_PLUSout_GT] = ACTIONS(2140), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2140), - [anon_sym_o_PLUSe_GT] = ACTIONS(2140), - [anon_sym_e_PLUSo_GT] = ACTIONS(2140), + [anon_sym_bit_DASHshl2] = ACTIONS(2136), + [anon_sym_bit_DASHshr2] = ACTIONS(2136), + [anon_sym_bit_DASHand2] = ACTIONS(2136), + [anon_sym_bit_DASHxor2] = ACTIONS(2136), + [anon_sym_bit_DASHor2] = ACTIONS(2136), + [anon_sym_DOT_DOT2] = ACTIONS(2140), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2142), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2142), + [anon_sym_err_GT] = ACTIONS(2138), + [anon_sym_out_GT] = ACTIONS(2138), + [anon_sym_e_GT] = ACTIONS(2138), + [anon_sym_o_GT] = ACTIONS(2138), + [anon_sym_err_PLUSout_GT] = ACTIONS(2138), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2138), + [anon_sym_o_PLUSe_GT] = ACTIONS(2138), + [anon_sym_e_PLUSo_GT] = ACTIONS(2138), [anon_sym_err_GT_GT] = ACTIONS(2136), [anon_sym_out_GT_GT] = ACTIONS(2136), [anon_sym_e_GT_GT] = ACTIONS(2136), @@ -100621,80 +101112,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(701)] = { - [sym_comment] = STATE(701), - [ts_builtin_sym_end] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1440), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1440), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(2142), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(702)] = { - [sym__expr_parenthesized_immediate] = STATE(5091), - [sym_comment] = STATE(702), + [STATE(705)] = { + [sym_comment] = STATE(705), [anon_sym_in] = ACTIONS(2144), [sym__newline] = ACTIONS(2144), [anon_sym_SEMI] = ACTIONS(2144), @@ -100712,7 +101131,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(2144), [anon_sym_LBRACE] = ACTIONS(2144), [anon_sym_RBRACE] = ACTIONS(2144), - [anon_sym_EQ_GT] = ACTIONS(2144), [anon_sym_STAR2] = ACTIONS(2146), [anon_sym_and2] = ACTIONS(2144), [anon_sym_xor2] = ACTIONS(2144), @@ -100733,7 +101151,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2144), [anon_sym_like2] = ACTIONS(2144), [anon_sym_not_DASHlike2] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(1752), [anon_sym_STAR_STAR2] = ACTIONS(2144), [anon_sym_PLUS_PLUS2] = ACTIONS(2144), [anon_sym_SLASH2] = ACTIONS(2146), @@ -100745,6 +101162,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(2144), [anon_sym_bit_DASHxor2] = ACTIONS(2144), [anon_sym_bit_DASHor2] = ACTIONS(2144), + [anon_sym_DOT_DOT2] = ACTIONS(2148), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2150), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2150), [anon_sym_err_GT] = ACTIONS(2146), [anon_sym_out_GT] = ACTIONS(2146), [anon_sym_e_GT] = ACTIONS(2146), @@ -100763,79 +101183,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2144), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(703)] = { - [sym__expr_parenthesized_immediate] = STATE(5091), - [sym_comment] = STATE(703), - [anon_sym_in] = ACTIONS(2148), - [sym__newline] = ACTIONS(2148), - [anon_sym_SEMI] = ACTIONS(2148), - [anon_sym_PIPE] = ACTIONS(2148), - [anon_sym_err_GT_PIPE] = ACTIONS(2148), - [anon_sym_out_GT_PIPE] = ACTIONS(2148), - [anon_sym_e_GT_PIPE] = ACTIONS(2148), - [anon_sym_o_GT_PIPE] = ACTIONS(2148), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2148), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2148), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2148), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2148), - [anon_sym_RPAREN] = ACTIONS(2148), - [anon_sym_GT2] = ACTIONS(2150), - [anon_sym_DASH2] = ACTIONS(2148), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_RBRACE] = ACTIONS(2148), - [anon_sym_EQ_GT] = ACTIONS(2148), - [anon_sym_STAR2] = ACTIONS(2150), - [anon_sym_and2] = ACTIONS(2148), - [anon_sym_xor2] = ACTIONS(2148), - [anon_sym_or2] = ACTIONS(2148), - [anon_sym_not_DASHin2] = ACTIONS(2148), - [anon_sym_has2] = ACTIONS(2148), - [anon_sym_not_DASHhas2] = ACTIONS(2148), - [anon_sym_starts_DASHwith2] = ACTIONS(2148), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2148), - [anon_sym_ends_DASHwith2] = ACTIONS(2148), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2148), - [anon_sym_EQ_EQ2] = ACTIONS(2148), - [anon_sym_BANG_EQ2] = ACTIONS(2148), - [anon_sym_LT2] = ACTIONS(2150), - [anon_sym_LT_EQ2] = ACTIONS(2148), - [anon_sym_GT_EQ2] = ACTIONS(2148), - [anon_sym_EQ_TILDE2] = ACTIONS(2148), - [anon_sym_BANG_TILDE2] = ACTIONS(2148), - [anon_sym_like2] = ACTIONS(2148), - [anon_sym_not_DASHlike2] = ACTIONS(2148), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2148), - [anon_sym_PLUS_PLUS2] = ACTIONS(2148), - [anon_sym_SLASH2] = ACTIONS(2150), - [anon_sym_mod2] = ACTIONS(2148), - [anon_sym_SLASH_SLASH2] = ACTIONS(2148), - [anon_sym_PLUS2] = ACTIONS(2150), - [anon_sym_bit_DASHshl2] = ACTIONS(2148), - [anon_sym_bit_DASHshr2] = ACTIONS(2148), - [anon_sym_bit_DASHand2] = ACTIONS(2148), - [anon_sym_bit_DASHxor2] = ACTIONS(2148), - [anon_sym_bit_DASHor2] = ACTIONS(2148), - [anon_sym_err_GT] = ACTIONS(2150), - [anon_sym_out_GT] = ACTIONS(2150), - [anon_sym_e_GT] = ACTIONS(2150), - [anon_sym_o_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT] = ACTIONS(2150), - [anon_sym_err_GT_GT] = ACTIONS(2148), - [anon_sym_out_GT_GT] = ACTIONS(2148), - [anon_sym_e_GT_GT] = ACTIONS(2148), - [anon_sym_o_GT_GT] = ACTIONS(2148), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2148), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2148), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2148), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2148), + [STATE(706)] = { + [sym_comment] = STATE(706), + [ts_builtin_sym_end] = ACTIONS(1806), + [anon_sym_in] = ACTIONS(1806), + [sym__newline] = ACTIONS(1806), + [anon_sym_SEMI] = ACTIONS(1806), + [anon_sym_PIPE] = ACTIONS(1806), + [anon_sym_err_GT_PIPE] = ACTIONS(1806), + [anon_sym_out_GT_PIPE] = ACTIONS(1806), + [anon_sym_e_GT_PIPE] = ACTIONS(1806), + [anon_sym_o_GT_PIPE] = ACTIONS(1806), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1806), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1806), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1806), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1806), + [anon_sym_GT2] = ACTIONS(1808), + [anon_sym_DASH2] = ACTIONS(1806), + [anon_sym_STAR2] = ACTIONS(1808), + [anon_sym_and2] = ACTIONS(1806), + [anon_sym_xor2] = ACTIONS(1806), + [anon_sym_or2] = ACTIONS(1806), + [anon_sym_not_DASHin2] = ACTIONS(1806), + [anon_sym_has2] = ACTIONS(1806), + [anon_sym_not_DASHhas2] = ACTIONS(1806), + [anon_sym_starts_DASHwith2] = ACTIONS(1806), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1806), + [anon_sym_ends_DASHwith2] = ACTIONS(1806), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1806), + [anon_sym_EQ_EQ2] = ACTIONS(1806), + [anon_sym_BANG_EQ2] = ACTIONS(1806), + [anon_sym_LT2] = ACTIONS(1808), + [anon_sym_LT_EQ2] = ACTIONS(1806), + [anon_sym_GT_EQ2] = ACTIONS(1806), + [anon_sym_EQ_TILDE2] = ACTIONS(1806), + [anon_sym_BANG_TILDE2] = ACTIONS(1806), + [anon_sym_like2] = ACTIONS(1806), + [anon_sym_not_DASHlike2] = ACTIONS(1806), + [anon_sym_LPAREN2] = ACTIONS(1806), + [anon_sym_STAR_STAR2] = ACTIONS(1806), + [anon_sym_PLUS_PLUS2] = ACTIONS(1806), + [anon_sym_SLASH2] = ACTIONS(1808), + [anon_sym_mod2] = ACTIONS(1806), + [anon_sym_SLASH_SLASH2] = ACTIONS(1806), + [anon_sym_PLUS2] = ACTIONS(1808), + [anon_sym_bit_DASHshl2] = ACTIONS(1806), + [anon_sym_bit_DASHshr2] = ACTIONS(1806), + [anon_sym_bit_DASHand2] = ACTIONS(1806), + [anon_sym_bit_DASHxor2] = ACTIONS(1806), + [anon_sym_bit_DASHor2] = ACTIONS(1806), + [anon_sym_DOT_DOT2] = ACTIONS(1808), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1806), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1806), + [anon_sym_err_GT] = ACTIONS(1808), + [anon_sym_out_GT] = ACTIONS(1808), + [anon_sym_e_GT] = ACTIONS(1808), + [anon_sym_o_GT] = ACTIONS(1808), + [anon_sym_err_PLUSout_GT] = ACTIONS(1808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1808), + [anon_sym_o_PLUSe_GT] = ACTIONS(1808), + [anon_sym_e_PLUSo_GT] = ACTIONS(1808), + [anon_sym_err_GT_GT] = ACTIONS(1806), + [anon_sym_out_GT_GT] = ACTIONS(1806), + [anon_sym_e_GT_GT] = ACTIONS(1806), + [anon_sym_o_GT_GT] = ACTIONS(1806), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1806), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1806), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1806), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1806), + [sym__unquoted_pattern] = ACTIONS(1808), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(704)] = { - [sym_comment] = STATE(704), + [STATE(707)] = { + [sym_comment] = STATE(707), [anon_sym_in] = ACTIONS(2152), [sym__newline] = ACTIONS(2152), [anon_sym_SEMI] = ACTIONS(2152), @@ -100905,997 +101325,992 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2152), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(705)] = { - [sym_comment] = STATE(705), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), + [STATE(708)] = { + [sym_comment] = STATE(708), + [anon_sym_in] = ACTIONS(1952), + [sym__newline] = ACTIONS(1952), + [anon_sym_SEMI] = ACTIONS(1952), + [anon_sym_PIPE] = ACTIONS(1952), + [anon_sym_err_GT_PIPE] = ACTIONS(1952), + [anon_sym_out_GT_PIPE] = ACTIONS(1952), + [anon_sym_e_GT_PIPE] = ACTIONS(1952), + [anon_sym_o_GT_PIPE] = ACTIONS(1952), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1952), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1952), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1952), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1952), + [anon_sym_RPAREN] = ACTIONS(1952), + [anon_sym_GT2] = ACTIONS(1954), + [anon_sym_DASH2] = ACTIONS(1952), + [anon_sym_LBRACE] = ACTIONS(1952), + [anon_sym_RBRACE] = ACTIONS(1952), + [anon_sym_STAR2] = ACTIONS(1954), + [anon_sym_and2] = ACTIONS(1952), + [anon_sym_xor2] = ACTIONS(1952), + [anon_sym_or2] = ACTIONS(1952), + [anon_sym_not_DASHin2] = ACTIONS(1952), + [anon_sym_has2] = ACTIONS(1952), + [anon_sym_not_DASHhas2] = ACTIONS(1952), + [anon_sym_starts_DASHwith2] = ACTIONS(1952), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1952), + [anon_sym_ends_DASHwith2] = ACTIONS(1952), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1952), + [anon_sym_EQ_EQ2] = ACTIONS(1952), + [anon_sym_BANG_EQ2] = ACTIONS(1952), + [anon_sym_LT2] = ACTIONS(1954), + [anon_sym_LT_EQ2] = ACTIONS(1952), + [anon_sym_GT_EQ2] = ACTIONS(1952), + [anon_sym_EQ_TILDE2] = ACTIONS(1952), + [anon_sym_BANG_TILDE2] = ACTIONS(1952), + [anon_sym_like2] = ACTIONS(1952), + [anon_sym_not_DASHlike2] = ACTIONS(1952), + [anon_sym_STAR_STAR2] = ACTIONS(1952), + [anon_sym_PLUS_PLUS2] = ACTIONS(1952), + [anon_sym_SLASH2] = ACTIONS(1954), + [anon_sym_mod2] = ACTIONS(1952), + [anon_sym_SLASH_SLASH2] = ACTIONS(1952), + [anon_sym_PLUS2] = ACTIONS(1954), + [anon_sym_bit_DASHshl2] = ACTIONS(1952), + [anon_sym_bit_DASHshr2] = ACTIONS(1952), + [anon_sym_bit_DASHand2] = ACTIONS(1952), + [anon_sym_bit_DASHxor2] = ACTIONS(1952), + [anon_sym_bit_DASHor2] = ACTIONS(1952), [anon_sym_DOT_DOT2] = ACTIONS(2160), [anon_sym_DOT_DOT_EQ2] = ACTIONS(2162), [anon_sym_DOT_DOT_LT2] = ACTIONS(2162), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(706)] = { - [sym_comment] = STATE(706), - [ts_builtin_sym_end] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1440), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1440), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_QMARK2] = ACTIONS(2164), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(707)] = { - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(707), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(708)] = { - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(708), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_err_GT] = ACTIONS(1954), + [anon_sym_out_GT] = ACTIONS(1954), + [anon_sym_e_GT] = ACTIONS(1954), + [anon_sym_o_GT] = ACTIONS(1954), + [anon_sym_err_PLUSout_GT] = ACTIONS(1954), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1954), + [anon_sym_o_PLUSe_GT] = ACTIONS(1954), + [anon_sym_e_PLUSo_GT] = ACTIONS(1954), + [anon_sym_err_GT_GT] = ACTIONS(1952), + [anon_sym_out_GT_GT] = ACTIONS(1952), + [anon_sym_e_GT_GT] = ACTIONS(1952), + [anon_sym_o_GT_GT] = ACTIONS(1952), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1952), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1952), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1952), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1952), [anon_sym_POUND] = ACTIONS(3), }, [STATE(709)] = { + [sym__expr_parenthesized_immediate] = STATE(5243), [sym_comment] = STATE(709), - [anon_sym_in] = ACTIONS(1964), - [sym__newline] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_err_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_GT_PIPE] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_GT2] = ACTIONS(1966), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_STAR2] = ACTIONS(1966), - [anon_sym_and2] = ACTIONS(1964), - [anon_sym_xor2] = ACTIONS(1964), - [anon_sym_or2] = ACTIONS(1964), - [anon_sym_not_DASHin2] = ACTIONS(1964), - [anon_sym_has2] = ACTIONS(1964), - [anon_sym_not_DASHhas2] = ACTIONS(1964), - [anon_sym_starts_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1964), - [anon_sym_ends_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1964), - [anon_sym_EQ_EQ2] = ACTIONS(1964), - [anon_sym_BANG_EQ2] = ACTIONS(1964), - [anon_sym_LT2] = ACTIONS(1966), - [anon_sym_LT_EQ2] = ACTIONS(1964), - [anon_sym_GT_EQ2] = ACTIONS(1964), - [anon_sym_EQ_TILDE2] = ACTIONS(1964), - [anon_sym_BANG_TILDE2] = ACTIONS(1964), - [anon_sym_like2] = ACTIONS(1964), - [anon_sym_not_DASHlike2] = ACTIONS(1964), - [anon_sym_STAR_STAR2] = ACTIONS(1964), - [anon_sym_PLUS_PLUS2] = ACTIONS(1964), - [anon_sym_SLASH2] = ACTIONS(1966), - [anon_sym_mod2] = ACTIONS(1964), - [anon_sym_SLASH_SLASH2] = ACTIONS(1964), - [anon_sym_PLUS2] = ACTIONS(1966), - [anon_sym_bit_DASHshl2] = ACTIONS(1964), - [anon_sym_bit_DASHshr2] = ACTIONS(1964), - [anon_sym_bit_DASHand2] = ACTIONS(1964), - [anon_sym_bit_DASHxor2] = ACTIONS(1964), - [anon_sym_bit_DASHor2] = ACTIONS(1964), - [anon_sym_DOT_DOT2] = ACTIONS(2166), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2168), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2168), - [anon_sym_err_GT] = ACTIONS(1966), - [anon_sym_out_GT] = ACTIONS(1966), - [anon_sym_e_GT] = ACTIONS(1966), - [anon_sym_o_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT] = ACTIONS(1966), - [anon_sym_err_GT_GT] = ACTIONS(1964), - [anon_sym_out_GT_GT] = ACTIONS(1964), - [anon_sym_e_GT_GT] = ACTIONS(1964), - [anon_sym_o_GT_GT] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1964), + [anon_sym_in] = ACTIONS(2164), + [sym__newline] = ACTIONS(2164), + [anon_sym_SEMI] = ACTIONS(2164), + [anon_sym_PIPE] = ACTIONS(2164), + [anon_sym_err_GT_PIPE] = ACTIONS(2164), + [anon_sym_out_GT_PIPE] = ACTIONS(2164), + [anon_sym_e_GT_PIPE] = ACTIONS(2164), + [anon_sym_o_GT_PIPE] = ACTIONS(2164), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2164), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2164), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2164), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2164), + [anon_sym_RPAREN] = ACTIONS(2164), + [anon_sym_GT2] = ACTIONS(2166), + [anon_sym_DASH2] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_RBRACE] = ACTIONS(2164), + [anon_sym_EQ_GT] = ACTIONS(2164), + [anon_sym_STAR2] = ACTIONS(2166), + [anon_sym_and2] = ACTIONS(2164), + [anon_sym_xor2] = ACTIONS(2164), + [anon_sym_or2] = ACTIONS(2164), + [anon_sym_not_DASHin2] = ACTIONS(2164), + [anon_sym_has2] = ACTIONS(2164), + [anon_sym_not_DASHhas2] = ACTIONS(2164), + [anon_sym_starts_DASHwith2] = ACTIONS(2164), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2164), + [anon_sym_ends_DASHwith2] = ACTIONS(2164), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2164), + [anon_sym_EQ_EQ2] = ACTIONS(2164), + [anon_sym_BANG_EQ2] = ACTIONS(2164), + [anon_sym_LT2] = ACTIONS(2166), + [anon_sym_LT_EQ2] = ACTIONS(2164), + [anon_sym_GT_EQ2] = ACTIONS(2164), + [anon_sym_EQ_TILDE2] = ACTIONS(2164), + [anon_sym_BANG_TILDE2] = ACTIONS(2164), + [anon_sym_like2] = ACTIONS(2164), + [anon_sym_not_DASHlike2] = ACTIONS(2164), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2164), + [anon_sym_PLUS_PLUS2] = ACTIONS(2164), + [anon_sym_SLASH2] = ACTIONS(2166), + [anon_sym_mod2] = ACTIONS(2164), + [anon_sym_SLASH_SLASH2] = ACTIONS(2164), + [anon_sym_PLUS2] = ACTIONS(2166), + [anon_sym_bit_DASHshl2] = ACTIONS(2164), + [anon_sym_bit_DASHshr2] = ACTIONS(2164), + [anon_sym_bit_DASHand2] = ACTIONS(2164), + [anon_sym_bit_DASHxor2] = ACTIONS(2164), + [anon_sym_bit_DASHor2] = ACTIONS(2164), + [anon_sym_err_GT] = ACTIONS(2166), + [anon_sym_out_GT] = ACTIONS(2166), + [anon_sym_e_GT] = ACTIONS(2166), + [anon_sym_o_GT] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT] = ACTIONS(2166), + [anon_sym_err_GT_GT] = ACTIONS(2164), + [anon_sym_out_GT_GT] = ACTIONS(2164), + [anon_sym_e_GT_GT] = ACTIONS(2164), + [anon_sym_o_GT_GT] = ACTIONS(2164), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2164), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2164), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2164), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2164), [anon_sym_POUND] = ACTIONS(3), }, [STATE(710)] = { - [sym__expr_parenthesized_immediate] = STATE(5091), [sym_comment] = STATE(710), - [anon_sym_in] = ACTIONS(2170), - [sym__newline] = ACTIONS(2170), - [anon_sym_SEMI] = ACTIONS(2170), - [anon_sym_PIPE] = ACTIONS(2170), - [anon_sym_err_GT_PIPE] = ACTIONS(2170), - [anon_sym_out_GT_PIPE] = ACTIONS(2170), - [anon_sym_e_GT_PIPE] = ACTIONS(2170), - [anon_sym_o_GT_PIPE] = ACTIONS(2170), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2170), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2170), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2170), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2170), - [anon_sym_RPAREN] = ACTIONS(2170), - [anon_sym_GT2] = ACTIONS(2172), - [anon_sym_DASH2] = ACTIONS(2170), - [anon_sym_LBRACE] = ACTIONS(2170), - [anon_sym_RBRACE] = ACTIONS(2170), - [anon_sym_EQ_GT] = ACTIONS(2170), - [anon_sym_STAR2] = ACTIONS(2172), - [anon_sym_and2] = ACTIONS(2170), - [anon_sym_xor2] = ACTIONS(2170), - [anon_sym_or2] = ACTIONS(2170), - [anon_sym_not_DASHin2] = ACTIONS(2170), - [anon_sym_has2] = ACTIONS(2170), - [anon_sym_not_DASHhas2] = ACTIONS(2170), - [anon_sym_starts_DASHwith2] = ACTIONS(2170), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2170), - [anon_sym_ends_DASHwith2] = ACTIONS(2170), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2170), - [anon_sym_EQ_EQ2] = ACTIONS(2170), - [anon_sym_BANG_EQ2] = ACTIONS(2170), - [anon_sym_LT2] = ACTIONS(2172), - [anon_sym_LT_EQ2] = ACTIONS(2170), - [anon_sym_GT_EQ2] = ACTIONS(2170), - [anon_sym_EQ_TILDE2] = ACTIONS(2170), - [anon_sym_BANG_TILDE2] = ACTIONS(2170), - [anon_sym_like2] = ACTIONS(2170), - [anon_sym_not_DASHlike2] = ACTIONS(2170), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2170), - [anon_sym_PLUS_PLUS2] = ACTIONS(2170), - [anon_sym_SLASH2] = ACTIONS(2172), - [anon_sym_mod2] = ACTIONS(2170), - [anon_sym_SLASH_SLASH2] = ACTIONS(2170), - [anon_sym_PLUS2] = ACTIONS(2172), - [anon_sym_bit_DASHshl2] = ACTIONS(2170), - [anon_sym_bit_DASHshr2] = ACTIONS(2170), - [anon_sym_bit_DASHand2] = ACTIONS(2170), - [anon_sym_bit_DASHxor2] = ACTIONS(2170), - [anon_sym_bit_DASHor2] = ACTIONS(2170), - [anon_sym_err_GT] = ACTIONS(2172), - [anon_sym_out_GT] = ACTIONS(2172), - [anon_sym_e_GT] = ACTIONS(2172), - [anon_sym_o_GT] = ACTIONS(2172), - [anon_sym_err_PLUSout_GT] = ACTIONS(2172), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2172), - [anon_sym_o_PLUSe_GT] = ACTIONS(2172), - [anon_sym_e_PLUSo_GT] = ACTIONS(2172), - [anon_sym_err_GT_GT] = ACTIONS(2170), - [anon_sym_out_GT_GT] = ACTIONS(2170), - [anon_sym_e_GT_GT] = ACTIONS(2170), - [anon_sym_o_GT_GT] = ACTIONS(2170), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2170), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2170), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2170), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2170), + [anon_sym_in] = ACTIONS(1738), + [sym__newline] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_err_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_GT_PIPE] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_RPAREN] = ACTIONS(1738), + [anon_sym_GT2] = ACTIONS(1740), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1738), + [anon_sym_STAR2] = ACTIONS(1740), + [anon_sym_and2] = ACTIONS(1738), + [anon_sym_xor2] = ACTIONS(1738), + [anon_sym_or2] = ACTIONS(1738), + [anon_sym_not_DASHin2] = ACTIONS(1738), + [anon_sym_has2] = ACTIONS(1738), + [anon_sym_not_DASHhas2] = ACTIONS(1738), + [anon_sym_starts_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), + [anon_sym_ends_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), + [anon_sym_EQ_EQ2] = ACTIONS(1738), + [anon_sym_BANG_EQ2] = ACTIONS(1738), + [anon_sym_LT2] = ACTIONS(1740), + [anon_sym_LT_EQ2] = ACTIONS(1738), + [anon_sym_GT_EQ2] = ACTIONS(1738), + [anon_sym_EQ_TILDE2] = ACTIONS(1738), + [anon_sym_BANG_TILDE2] = ACTIONS(1738), + [anon_sym_like2] = ACTIONS(1738), + [anon_sym_not_DASHlike2] = ACTIONS(1738), + [anon_sym_LPAREN2] = ACTIONS(1738), + [anon_sym_STAR_STAR2] = ACTIONS(1738), + [anon_sym_PLUS_PLUS2] = ACTIONS(1738), + [anon_sym_SLASH2] = ACTIONS(1740), + [anon_sym_mod2] = ACTIONS(1738), + [anon_sym_SLASH_SLASH2] = ACTIONS(1738), + [anon_sym_PLUS2] = ACTIONS(1740), + [anon_sym_bit_DASHshl2] = ACTIONS(1738), + [anon_sym_bit_DASHshr2] = ACTIONS(1738), + [anon_sym_bit_DASHand2] = ACTIONS(1738), + [anon_sym_bit_DASHxor2] = ACTIONS(1738), + [anon_sym_bit_DASHor2] = ACTIONS(1738), + [aux_sym__immediate_decimal_token1] = ACTIONS(2168), + [aux_sym__immediate_decimal_token5] = ACTIONS(2170), + [anon_sym_err_GT] = ACTIONS(1740), + [anon_sym_out_GT] = ACTIONS(1740), + [anon_sym_e_GT] = ACTIONS(1740), + [anon_sym_o_GT] = ACTIONS(1740), + [anon_sym_err_PLUSout_GT] = ACTIONS(1740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1740), + [anon_sym_o_PLUSe_GT] = ACTIONS(1740), + [anon_sym_e_PLUSo_GT] = ACTIONS(1740), + [anon_sym_err_GT_GT] = ACTIONS(1738), + [anon_sym_out_GT_GT] = ACTIONS(1738), + [anon_sym_e_GT_GT] = ACTIONS(1738), + [anon_sym_o_GT_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), + [sym__unquoted_pattern] = ACTIONS(1740), [anon_sym_POUND] = ACTIONS(3), }, [STATE(711)] = { - [sym__expr_parenthesized_immediate] = STATE(4634), + [sym__expr_parenthesized_immediate] = STATE(4728), [sym_comment] = STATE(711), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(712)] = { [sym_comment] = STATE(712), - [anon_sym_in] = ACTIONS(2134), - [sym__newline] = ACTIONS(2134), - [anon_sym_SEMI] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_err_GT_PIPE] = ACTIONS(2134), - [anon_sym_out_GT_PIPE] = ACTIONS(2134), - [anon_sym_e_GT_PIPE] = ACTIONS(2134), - [anon_sym_o_GT_PIPE] = ACTIONS(2134), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2134), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2134), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2134), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2134), - [anon_sym_RPAREN] = ACTIONS(2134), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2134), - [anon_sym_RBRACE] = ACTIONS(2134), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(2138), - [anon_sym_out_GT] = ACTIONS(2138), - [anon_sym_e_GT] = ACTIONS(2138), - [anon_sym_o_GT] = ACTIONS(2138), - [anon_sym_err_PLUSout_GT] = ACTIONS(2138), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2138), - [anon_sym_o_PLUSe_GT] = ACTIONS(2138), - [anon_sym_e_PLUSo_GT] = ACTIONS(2138), - [anon_sym_err_GT_GT] = ACTIONS(2134), - [anon_sym_out_GT_GT] = ACTIONS(2134), - [anon_sym_e_GT_GT] = ACTIONS(2134), - [anon_sym_o_GT_GT] = ACTIONS(2134), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2134), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2134), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2134), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2134), + [ts_builtin_sym_end] = ACTIONS(1554), + [anon_sym_in] = ACTIONS(1554), + [sym__newline] = ACTIONS(1554), + [anon_sym_SEMI] = ACTIONS(1554), + [anon_sym_PIPE] = ACTIONS(1554), + [anon_sym_err_GT_PIPE] = ACTIONS(1554), + [anon_sym_out_GT_PIPE] = ACTIONS(1554), + [anon_sym_e_GT_PIPE] = ACTIONS(1554), + [anon_sym_o_GT_PIPE] = ACTIONS(1554), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1554), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1554), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1554), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1554), + [anon_sym_GT2] = ACTIONS(1552), + [anon_sym_DASH2] = ACTIONS(1554), + [anon_sym_STAR2] = ACTIONS(1552), + [anon_sym_and2] = ACTIONS(1554), + [anon_sym_xor2] = ACTIONS(1554), + [anon_sym_or2] = ACTIONS(1554), + [anon_sym_not_DASHin2] = ACTIONS(1554), + [anon_sym_has2] = ACTIONS(1554), + [anon_sym_not_DASHhas2] = ACTIONS(1554), + [anon_sym_starts_DASHwith2] = ACTIONS(1554), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1554), + [anon_sym_ends_DASHwith2] = ACTIONS(1554), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1554), + [anon_sym_EQ_EQ2] = ACTIONS(1554), + [anon_sym_BANG_EQ2] = ACTIONS(1554), + [anon_sym_LT2] = ACTIONS(1552), + [anon_sym_LT_EQ2] = ACTIONS(1554), + [anon_sym_GT_EQ2] = ACTIONS(1554), + [anon_sym_EQ_TILDE2] = ACTIONS(1554), + [anon_sym_BANG_TILDE2] = ACTIONS(1554), + [anon_sym_like2] = ACTIONS(1554), + [anon_sym_not_DASHlike2] = ACTIONS(1554), + [anon_sym_STAR_STAR2] = ACTIONS(1554), + [anon_sym_PLUS_PLUS2] = ACTIONS(1554), + [anon_sym_SLASH2] = ACTIONS(1552), + [anon_sym_mod2] = ACTIONS(1554), + [anon_sym_SLASH_SLASH2] = ACTIONS(1554), + [anon_sym_PLUS2] = ACTIONS(1552), + [anon_sym_bit_DASHshl2] = ACTIONS(1554), + [anon_sym_bit_DASHshr2] = ACTIONS(1554), + [anon_sym_bit_DASHand2] = ACTIONS(1554), + [anon_sym_bit_DASHxor2] = ACTIONS(1554), + [anon_sym_bit_DASHor2] = ACTIONS(1554), + [anon_sym_DOT_DOT2] = ACTIONS(1552), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1554), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1554), + [anon_sym_DOT2] = ACTIONS(1552), + [anon_sym_err_GT] = ACTIONS(1552), + [anon_sym_out_GT] = ACTIONS(1552), + [anon_sym_e_GT] = ACTIONS(1552), + [anon_sym_o_GT] = ACTIONS(1552), + [anon_sym_err_PLUSout_GT] = ACTIONS(1552), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1552), + [anon_sym_o_PLUSe_GT] = ACTIONS(1552), + [anon_sym_e_PLUSo_GT] = ACTIONS(1552), + [anon_sym_err_GT_GT] = ACTIONS(1554), + [anon_sym_out_GT_GT] = ACTIONS(1554), + [anon_sym_e_GT_GT] = ACTIONS(1554), + [anon_sym_o_GT_GT] = ACTIONS(1554), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1554), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1554), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1554), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1554), [anon_sym_POUND] = ACTIONS(3), }, [STATE(713)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1276), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4419), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1016), - [sym__unquoted_with_expr] = STATE(1301), - [sym__unquoted_anonymous_prefix] = STATE(4419), + [sym_expr_unary] = STATE(1282), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1282), + [sym__expr_binary_expression] = STATE(1303), + [sym_expr_parenthesized] = STATE(925), + [sym_val_range] = STATE(1282), + [sym__val_range] = STATE(4556), + [sym__value] = STATE(1282), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(968), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(472), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_unquoted] = STATE(1040), + [sym__unquoted_with_expr] = STATE(1305), + [sym__unquoted_anonymous_prefix] = STATE(4556), [sym_comment] = STATE(713), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [anon_sym_true] = ACTIONS(2172), + [anon_sym_false] = ACTIONS(2172), + [anon_sym_null] = ACTIONS(2174), + [aux_sym_cmd_identifier_token3] = ACTIONS(2176), + [aux_sym_cmd_identifier_token4] = ACTIONS(2176), + [aux_sym_cmd_identifier_token5] = ACTIONS(2176), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2178), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2180), + [anon_sym_DOT_DOT_LT] = ACTIONS(2180), + [aux_sym__val_number_decimal_token1] = ACTIONS(2182), + [aux_sym__val_number_decimal_token2] = ACTIONS(2184), + [aux_sym__val_number_decimal_token3] = ACTIONS(2186), + [aux_sym__val_number_decimal_token4] = ACTIONS(2186), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2188), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, [STATE(714)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(913), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(681), - [sym__unquoted_with_expr] = STATE(914), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [sym_expr_unary] = STATE(1282), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1282), + [sym__expr_binary_expression] = STATE(1306), + [sym_expr_parenthesized] = STATE(925), + [sym_val_range] = STATE(1282), + [sym__val_range] = STATE(4556), + [sym__value] = STATE(1282), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(968), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(472), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_unquoted] = STATE(1053), + [sym__unquoted_with_expr] = STATE(1308), + [sym__unquoted_anonymous_prefix] = STATE(4556), [sym_comment] = STATE(714), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_true] = ACTIONS(2172), + [anon_sym_false] = ACTIONS(2172), + [anon_sym_null] = ACTIONS(2174), + [aux_sym_cmd_identifier_token3] = ACTIONS(2176), + [aux_sym_cmd_identifier_token4] = ACTIONS(2176), + [aux_sym_cmd_identifier_token5] = ACTIONS(2176), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2178), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2180), + [anon_sym_DOT_DOT_LT] = ACTIONS(2180), + [aux_sym__val_number_decimal_token1] = ACTIONS(2182), + [aux_sym__val_number_decimal_token2] = ACTIONS(2184), + [aux_sym__val_number_decimal_token3] = ACTIONS(2186), + [aux_sym__val_number_decimal_token4] = ACTIONS(2186), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2188), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(715)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2187), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(687), - [sym__unquoted_with_expr] = STATE(915), - [sym__unquoted_anonymous_prefix] = STATE(4386), [sym_comment] = STATE(715), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_if] = ACTIONS(2098), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_RPAREN] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_EQ_GT] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(716)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2188), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(688), - [sym__unquoted_with_expr] = STATE(917), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [sym_expr_unary] = STATE(1282), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1282), + [sym__expr_binary_expression] = STATE(1309), + [sym_expr_parenthesized] = STATE(925), + [sym_val_range] = STATE(1282), + [sym__val_range] = STATE(4556), + [sym__value] = STATE(1282), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(968), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(472), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_unquoted] = STATE(1056), + [sym__unquoted_with_expr] = STATE(1310), + [sym__unquoted_anonymous_prefix] = STATE(4556), [sym_comment] = STATE(716), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_true] = ACTIONS(2172), + [anon_sym_false] = ACTIONS(2172), + [anon_sym_null] = ACTIONS(2174), + [aux_sym_cmd_identifier_token3] = ACTIONS(2176), + [aux_sym_cmd_identifier_token4] = ACTIONS(2176), + [aux_sym_cmd_identifier_token5] = ACTIONS(2176), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2178), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2180), + [anon_sym_DOT_DOT_LT] = ACTIONS(2180), + [aux_sym__val_number_decimal_token1] = ACTIONS(2182), + [aux_sym__val_number_decimal_token2] = ACTIONS(2184), + [aux_sym__val_number_decimal_token3] = ACTIONS(2186), + [aux_sym__val_number_decimal_token4] = ACTIONS(2186), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2188), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(717)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2189), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(689), - [sym__unquoted_with_expr] = STATE(919), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [sym_expr_unary] = STATE(1282), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1282), + [sym__expr_binary_expression] = STATE(1311), + [sym_expr_parenthesized] = STATE(925), + [sym_val_range] = STATE(1282), + [sym__val_range] = STATE(4556), + [sym__value] = STATE(1282), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(968), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(472), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_unquoted] = STATE(1057), + [sym__unquoted_with_expr] = STATE(1312), + [sym__unquoted_anonymous_prefix] = STATE(4556), [sym_comment] = STATE(717), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_true] = ACTIONS(2172), + [anon_sym_false] = ACTIONS(2172), + [anon_sym_null] = ACTIONS(2174), + [aux_sym_cmd_identifier_token3] = ACTIONS(2176), + [aux_sym_cmd_identifier_token4] = ACTIONS(2176), + [aux_sym_cmd_identifier_token5] = ACTIONS(2176), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2178), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2180), + [anon_sym_DOT_DOT_LT] = ACTIONS(2180), + [aux_sym__val_number_decimal_token1] = ACTIONS(2182), + [aux_sym__val_number_decimal_token2] = ACTIONS(2184), + [aux_sym__val_number_decimal_token3] = ACTIONS(2186), + [aux_sym__val_number_decimal_token4] = ACTIONS(2186), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2188), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(718)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2190), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(690), - [sym__unquoted_with_expr] = STATE(922), - [sym__unquoted_anonymous_prefix] = STATE(4386), + [sym_cell_path] = STATE(1344), + [sym_path] = STATE(712), [sym_comment] = STATE(718), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [aux_sym__where_predicate_lhs_repeat1] = STATE(547), + [ts_builtin_sym_end] = ACTIONS(1838), + [anon_sym_in] = 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_GT2] = ACTIONS(1840), + [anon_sym_DASH2] = ACTIONS(1838), + [anon_sym_STAR2] = ACTIONS(1840), + [anon_sym_and2] = ACTIONS(1838), + [anon_sym_xor2] = ACTIONS(1838), + [anon_sym_or2] = ACTIONS(1838), + [anon_sym_not_DASHin2] = ACTIONS(1838), + [anon_sym_has2] = ACTIONS(1838), + [anon_sym_not_DASHhas2] = ACTIONS(1838), + [anon_sym_starts_DASHwith2] = ACTIONS(1838), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1838), + [anon_sym_ends_DASHwith2] = ACTIONS(1838), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1838), + [anon_sym_EQ_EQ2] = ACTIONS(1838), + [anon_sym_BANG_EQ2] = ACTIONS(1838), + [anon_sym_LT2] = ACTIONS(1840), + [anon_sym_LT_EQ2] = ACTIONS(1838), + [anon_sym_GT_EQ2] = ACTIONS(1838), + [anon_sym_EQ_TILDE2] = ACTIONS(1838), + [anon_sym_BANG_TILDE2] = ACTIONS(1838), + [anon_sym_like2] = ACTIONS(1838), + [anon_sym_not_DASHlike2] = ACTIONS(1838), + [anon_sym_STAR_STAR2] = ACTIONS(1838), + [anon_sym_PLUS_PLUS2] = ACTIONS(1838), + [anon_sym_SLASH2] = ACTIONS(1840), + [anon_sym_mod2] = ACTIONS(1838), + [anon_sym_SLASH_SLASH2] = ACTIONS(1838), + [anon_sym_PLUS2] = ACTIONS(1840), + [anon_sym_bit_DASHshl2] = ACTIONS(1838), + [anon_sym_bit_DASHshr2] = ACTIONS(1838), + [anon_sym_bit_DASHand2] = ACTIONS(1838), + [anon_sym_bit_DASHxor2] = ACTIONS(1838), + [anon_sym_bit_DASHor2] = ACTIONS(1838), + [anon_sym_DOT2] = ACTIONS(2192), + [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(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), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(719)] = { + [sym_expr_unary] = STATE(1282), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1282), + [sym__expr_binary_expression] = STATE(1313), + [sym_expr_parenthesized] = STATE(925), + [sym_val_range] = STATE(1282), + [sym__val_range] = STATE(4556), + [sym__value] = STATE(1282), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(968), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(472), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_unquoted] = STATE(1059), + [sym__unquoted_with_expr] = STATE(1314), + [sym__unquoted_anonymous_prefix] = STATE(4556), + [sym_comment] = STATE(719), + [anon_sym_true] = ACTIONS(2172), + [anon_sym_false] = ACTIONS(2172), + [anon_sym_null] = ACTIONS(2174), + [aux_sym_cmd_identifier_token3] = ACTIONS(2176), + [aux_sym_cmd_identifier_token4] = ACTIONS(2176), + [aux_sym_cmd_identifier_token5] = ACTIONS(2176), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2178), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2180), + [anon_sym_DOT_DOT_LT] = ACTIONS(2180), + [aux_sym__val_number_decimal_token1] = ACTIONS(2182), + [aux_sym__val_number_decimal_token2] = ACTIONS(2184), + [aux_sym__val_number_decimal_token3] = ACTIONS(2186), + [aux_sym__val_number_decimal_token4] = ACTIONS(2186), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2188), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2190), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(720)] = { + [sym_expr_unary] = STATE(1282), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1282), + [sym__expr_binary_expression] = STATE(1315), + [sym_expr_parenthesized] = STATE(925), + [sym_val_range] = STATE(1282), + [sym__val_range] = STATE(4556), + [sym__value] = STATE(1282), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(968), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(472), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_unquoted] = STATE(1068), + [sym__unquoted_with_expr] = STATE(1322), + [sym__unquoted_anonymous_prefix] = STATE(4556), + [sym_comment] = STATE(720), + [anon_sym_true] = ACTIONS(2172), + [anon_sym_false] = ACTIONS(2172), + [anon_sym_null] = ACTIONS(2174), + [aux_sym_cmd_identifier_token3] = ACTIONS(2176), + [aux_sym_cmd_identifier_token4] = ACTIONS(2176), + [aux_sym_cmd_identifier_token5] = ACTIONS(2176), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2178), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2180), + [anon_sym_DOT_DOT_LT] = ACTIONS(2180), + [aux_sym__val_number_decimal_token1] = ACTIONS(2182), + [aux_sym__val_number_decimal_token2] = ACTIONS(2184), + [aux_sym__val_number_decimal_token3] = ACTIONS(2186), + [aux_sym__val_number_decimal_token4] = ACTIONS(2186), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2188), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2190), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(721)] = { + [sym_cmd_identifier] = STATE(4341), + [sym_expr_parenthesized] = STATE(5062), + [sym__spread_parenthesized] = STATE(4693), + [sym__spread_variable] = STATE(4695), + [sym_val_variable] = STATE(5062), + [sym_val_number] = STATE(5062), + [sym__val_number_decimal] = STATE(1952), + [sym__val_number] = STATE(676), + [sym_val_string] = STATE(5062), + [sym__raw_str] = STATE(2243), + [sym__str_double_quotes] = STATE(2243), + [sym__str_single_quotes] = STATE(2243), + [sym__str_back_ticks] = STATE(2243), + [sym_val_interpolated] = STATE(5062), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym__spread_record] = STATE(4693), + [sym_record_entry] = STATE(4626), + [sym__record_key] = STATE(5228), + [sym_comment] = STATE(721), + [aux_sym_record_body_repeat1] = STATE(750), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_null] = ACTIONS(1768), + [aux_sym_cmd_identifier_token3] = ACTIONS(1770), + [aux_sym_cmd_identifier_token4] = ACTIONS(1770), + [aux_sym_cmd_identifier_token5] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1780), + [aux_sym__val_number_decimal_token2] = ACTIONS(1782), + [aux_sym__val_number_decimal_token3] = ACTIONS(1784), + [aux_sym__val_number_decimal_token4] = ACTIONS(1784), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1790), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(719)] = { - [sym_comment] = STATE(719), - [anon_sym_if] = ACTIONS(2194), + [STATE(722)] = { + [sym_comment] = STATE(722), [anon_sym_in] = ACTIONS(2194), [sym__newline] = ACTIONS(2194), [anon_sym_SEMI] = ACTIONS(2194), @@ -101912,8 +102327,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT2] = ACTIONS(2196), [anon_sym_DASH2] = ACTIONS(2194), [anon_sym_LBRACE] = ACTIONS(2194), - [anon_sym_RBRACE] = ACTIONS(2194), - [anon_sym_EQ_GT] = ACTIONS(2194), [anon_sym_STAR2] = ACTIONS(2196), [anon_sym_and2] = ACTIONS(2194), [anon_sym_xor2] = ACTIONS(2194), @@ -101945,6 +102358,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(2194), [anon_sym_bit_DASHxor2] = ACTIONS(2194), [anon_sym_bit_DASHor2] = ACTIONS(2194), + [anon_sym_DOT_DOT2] = ACTIONS(1619), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), [anon_sym_err_GT] = ACTIONS(2196), [anon_sym_out_GT] = ACTIONS(2196), [anon_sym_e_GT] = ACTIONS(2196), @@ -101963,9 +102379,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(720)] = { - [sym_comment] = STATE(720), - [anon_sym_if] = ACTIONS(2198), + [STATE(723)] = { + [aux_sym__repeat_newline] = STATE(987), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(723), [anon_sym_in] = ACTIONS(2198), [sym__newline] = ACTIONS(2198), [anon_sym_SEMI] = ACTIONS(2198), @@ -101982,8 +102399,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT2] = ACTIONS(2200), [anon_sym_DASH2] = ACTIONS(2198), [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_RBRACE] = ACTIONS(2198), - [anon_sym_EQ_GT] = ACTIONS(2198), [anon_sym_STAR2] = ACTIONS(2200), [anon_sym_and2] = ACTIONS(2198), [anon_sym_xor2] = ACTIONS(2198), @@ -102004,6 +102419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2198), [anon_sym_like2] = ACTIONS(2198), [anon_sym_not_DASHlike2] = ACTIONS(2198), + [anon_sym_LPAREN2] = ACTIONS(1756), [anon_sym_STAR_STAR2] = ACTIONS(2198), [anon_sym_PLUS_PLUS2] = ACTIONS(2198), [anon_sym_SLASH2] = ACTIONS(2200), @@ -102033,4788 +102449,2618 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(721)] = { - [sym_comment] = STATE(721), - [anon_sym_if] = ACTIONS(2100), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_EQ_GT] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(722)] = { - [sym_comment] = STATE(722), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(2076), - [sym__newline] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_err_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_GT_PIPE] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2076), - [anon_sym_RPAREN] = ACTIONS(2076), - [anon_sym_GT2] = ACTIONS(2078), - [anon_sym_DASH2] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_RBRACE] = ACTIONS(2076), - [anon_sym_EQ_GT] = ACTIONS(2076), - [anon_sym_STAR2] = ACTIONS(2078), - [anon_sym_and2] = ACTIONS(2076), - [anon_sym_xor2] = ACTIONS(2076), - [anon_sym_or2] = ACTIONS(2076), - [anon_sym_not_DASHin2] = ACTIONS(2076), - [anon_sym_has2] = ACTIONS(2076), - [anon_sym_not_DASHhas2] = ACTIONS(2076), - [anon_sym_starts_DASHwith2] = ACTIONS(2076), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2076), - [anon_sym_ends_DASHwith2] = ACTIONS(2076), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2076), - [anon_sym_EQ_EQ2] = ACTIONS(2076), - [anon_sym_BANG_EQ2] = ACTIONS(2076), - [anon_sym_LT2] = ACTIONS(2078), - [anon_sym_LT_EQ2] = ACTIONS(2076), - [anon_sym_GT_EQ2] = ACTIONS(2076), - [anon_sym_EQ_TILDE2] = ACTIONS(2076), - [anon_sym_BANG_TILDE2] = ACTIONS(2076), - [anon_sym_like2] = ACTIONS(2076), - [anon_sym_not_DASHlike2] = ACTIONS(2076), - [anon_sym_STAR_STAR2] = ACTIONS(2076), - [anon_sym_PLUS_PLUS2] = ACTIONS(2076), - [anon_sym_SLASH2] = ACTIONS(2078), - [anon_sym_mod2] = ACTIONS(2076), - [anon_sym_SLASH_SLASH2] = ACTIONS(2076), - [anon_sym_PLUS2] = ACTIONS(2078), - [anon_sym_bit_DASHshl2] = ACTIONS(2076), - [anon_sym_bit_DASHshr2] = ACTIONS(2076), - [anon_sym_bit_DASHand2] = ACTIONS(2076), - [anon_sym_bit_DASHxor2] = ACTIONS(2076), - [anon_sym_bit_DASHor2] = ACTIONS(2076), - [anon_sym_err_GT] = ACTIONS(2078), - [anon_sym_out_GT] = ACTIONS(2078), - [anon_sym_e_GT] = ACTIONS(2078), - [anon_sym_o_GT] = ACTIONS(2078), - [anon_sym_err_PLUSout_GT] = ACTIONS(2078), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2078), - [anon_sym_o_PLUSe_GT] = ACTIONS(2078), - [anon_sym_e_PLUSo_GT] = ACTIONS(2078), - [anon_sym_err_GT_GT] = ACTIONS(2076), - [anon_sym_out_GT_GT] = ACTIONS(2076), - [anon_sym_e_GT_GT] = ACTIONS(2076), - [anon_sym_o_GT_GT] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(723)] = { - [sym_comment] = STATE(723), - [anon_sym_if] = ACTIONS(2120), - [anon_sym_in] = ACTIONS(2120), - [sym__newline] = ACTIONS(2120), - [anon_sym_SEMI] = ACTIONS(2120), - [anon_sym_PIPE] = ACTIONS(2120), - [anon_sym_err_GT_PIPE] = ACTIONS(2120), - [anon_sym_out_GT_PIPE] = ACTIONS(2120), - [anon_sym_e_GT_PIPE] = ACTIONS(2120), - [anon_sym_o_GT_PIPE] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2120), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2120), - [anon_sym_RPAREN] = ACTIONS(2120), - [anon_sym_GT2] = ACTIONS(2122), - [anon_sym_DASH2] = ACTIONS(2120), - [anon_sym_LBRACE] = ACTIONS(2120), - [anon_sym_RBRACE] = ACTIONS(2120), - [anon_sym_EQ_GT] = ACTIONS(2120), - [anon_sym_STAR2] = ACTIONS(2122), - [anon_sym_and2] = ACTIONS(2120), - [anon_sym_xor2] = ACTIONS(2120), - [anon_sym_or2] = ACTIONS(2120), - [anon_sym_not_DASHin2] = ACTIONS(2120), - [anon_sym_has2] = ACTIONS(2120), - [anon_sym_not_DASHhas2] = ACTIONS(2120), - [anon_sym_starts_DASHwith2] = ACTIONS(2120), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2120), - [anon_sym_ends_DASHwith2] = ACTIONS(2120), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2120), - [anon_sym_EQ_EQ2] = ACTIONS(2120), - [anon_sym_BANG_EQ2] = ACTIONS(2120), - [anon_sym_LT2] = ACTIONS(2122), - [anon_sym_LT_EQ2] = ACTIONS(2120), - [anon_sym_GT_EQ2] = ACTIONS(2120), - [anon_sym_EQ_TILDE2] = ACTIONS(2120), - [anon_sym_BANG_TILDE2] = ACTIONS(2120), - [anon_sym_like2] = ACTIONS(2120), - [anon_sym_not_DASHlike2] = ACTIONS(2120), - [anon_sym_STAR_STAR2] = ACTIONS(2120), - [anon_sym_PLUS_PLUS2] = ACTIONS(2120), - [anon_sym_SLASH2] = ACTIONS(2122), - [anon_sym_mod2] = ACTIONS(2120), - [anon_sym_SLASH_SLASH2] = ACTIONS(2120), - [anon_sym_PLUS2] = ACTIONS(2122), - [anon_sym_bit_DASHshl2] = ACTIONS(2120), - [anon_sym_bit_DASHshr2] = ACTIONS(2120), - [anon_sym_bit_DASHand2] = ACTIONS(2120), - [anon_sym_bit_DASHxor2] = ACTIONS(2120), - [anon_sym_bit_DASHor2] = ACTIONS(2120), - [anon_sym_err_GT] = ACTIONS(2122), - [anon_sym_out_GT] = ACTIONS(2122), - [anon_sym_e_GT] = ACTIONS(2122), - [anon_sym_o_GT] = ACTIONS(2122), - [anon_sym_err_PLUSout_GT] = ACTIONS(2122), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2122), - [anon_sym_o_PLUSe_GT] = ACTIONS(2122), - [anon_sym_e_PLUSo_GT] = ACTIONS(2122), - [anon_sym_err_GT_GT] = ACTIONS(2120), - [anon_sym_out_GT_GT] = ACTIONS(2120), - [anon_sym_e_GT_GT] = ACTIONS(2120), - [anon_sym_o_GT_GT] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2120), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2120), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(724)] = { + [aux_sym__repeat_newline] = STATE(991), + [sym__expr_parenthesized_immediate] = STATE(4728), [sym_comment] = STATE(724), - [anon_sym_if] = ACTIONS(2202), - [anon_sym_in] = ACTIONS(2202), - [sym__newline] = ACTIONS(2202), - [anon_sym_SEMI] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_err_GT_PIPE] = ACTIONS(2202), - [anon_sym_out_GT_PIPE] = ACTIONS(2202), - [anon_sym_e_GT_PIPE] = ACTIONS(2202), - [anon_sym_o_GT_PIPE] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2202), - [anon_sym_RPAREN] = ACTIONS(2202), - [anon_sym_GT2] = ACTIONS(2204), - [anon_sym_DASH2] = ACTIONS(2202), - [anon_sym_LBRACE] = ACTIONS(2202), - [anon_sym_RBRACE] = ACTIONS(2202), - [anon_sym_EQ_GT] = ACTIONS(2202), - [anon_sym_STAR2] = ACTIONS(2204), - [anon_sym_and2] = ACTIONS(2202), - [anon_sym_xor2] = ACTIONS(2202), - [anon_sym_or2] = ACTIONS(2202), - [anon_sym_not_DASHin2] = ACTIONS(2202), - [anon_sym_has2] = ACTIONS(2202), - [anon_sym_not_DASHhas2] = ACTIONS(2202), - [anon_sym_starts_DASHwith2] = ACTIONS(2202), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2202), - [anon_sym_ends_DASHwith2] = ACTIONS(2202), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2202), - [anon_sym_EQ_EQ2] = ACTIONS(2202), - [anon_sym_BANG_EQ2] = ACTIONS(2202), - [anon_sym_LT2] = ACTIONS(2204), - [anon_sym_LT_EQ2] = ACTIONS(2202), - [anon_sym_GT_EQ2] = ACTIONS(2202), - [anon_sym_EQ_TILDE2] = ACTIONS(2202), - [anon_sym_BANG_TILDE2] = ACTIONS(2202), - [anon_sym_like2] = ACTIONS(2202), - [anon_sym_not_DASHlike2] = ACTIONS(2202), - [anon_sym_STAR_STAR2] = ACTIONS(2202), - [anon_sym_PLUS_PLUS2] = ACTIONS(2202), - [anon_sym_SLASH2] = ACTIONS(2204), - [anon_sym_mod2] = ACTIONS(2202), - [anon_sym_SLASH_SLASH2] = ACTIONS(2202), - [anon_sym_PLUS2] = ACTIONS(2204), - [anon_sym_bit_DASHshl2] = ACTIONS(2202), - [anon_sym_bit_DASHshr2] = ACTIONS(2202), - [anon_sym_bit_DASHand2] = ACTIONS(2202), - [anon_sym_bit_DASHxor2] = ACTIONS(2202), - [anon_sym_bit_DASHor2] = ACTIONS(2202), - [anon_sym_err_GT] = ACTIONS(2204), - [anon_sym_out_GT] = ACTIONS(2204), - [anon_sym_e_GT] = ACTIONS(2204), - [anon_sym_o_GT] = ACTIONS(2204), - [anon_sym_err_PLUSout_GT] = ACTIONS(2204), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2204), - [anon_sym_o_PLUSe_GT] = ACTIONS(2204), - [anon_sym_e_PLUSo_GT] = ACTIONS(2204), - [anon_sym_err_GT_GT] = ACTIONS(2202), - [anon_sym_out_GT_GT] = ACTIONS(2202), - [anon_sym_e_GT_GT] = ACTIONS(2202), - [anon_sym_o_GT_GT] = ACTIONS(2202), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2202), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2202), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2202), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2202), + [anon_sym_in] = ACTIONS(2198), + [sym__newline] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_err_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_GT_PIPE] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_GT2] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2198), + [anon_sym_xor2] = ACTIONS(2198), + [anon_sym_or2] = ACTIONS(2198), + [anon_sym_not_DASHin2] = ACTIONS(2198), + [anon_sym_has2] = ACTIONS(2198), + [anon_sym_not_DASHhas2] = ACTIONS(2198), + [anon_sym_starts_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), + [anon_sym_ends_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), + [anon_sym_EQ_EQ2] = ACTIONS(2198), + [anon_sym_BANG_EQ2] = ACTIONS(2198), + [anon_sym_LT2] = ACTIONS(2200), + [anon_sym_LT_EQ2] = ACTIONS(2198), + [anon_sym_GT_EQ2] = ACTIONS(2198), + [anon_sym_EQ_TILDE2] = ACTIONS(2198), + [anon_sym_BANG_TILDE2] = ACTIONS(2198), + [anon_sym_like2] = ACTIONS(2198), + [anon_sym_not_DASHlike2] = ACTIONS(2198), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2198), + [anon_sym_PLUS_PLUS2] = ACTIONS(2198), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2198), + [anon_sym_SLASH_SLASH2] = ACTIONS(2198), + [anon_sym_PLUS2] = ACTIONS(2200), + [anon_sym_bit_DASHshl2] = ACTIONS(2198), + [anon_sym_bit_DASHshr2] = ACTIONS(2198), + [anon_sym_bit_DASHand2] = ACTIONS(2198), + [anon_sym_bit_DASHxor2] = ACTIONS(2198), + [anon_sym_bit_DASHor2] = ACTIONS(2198), + [anon_sym_err_GT] = ACTIONS(2200), + [anon_sym_out_GT] = ACTIONS(2200), + [anon_sym_e_GT] = ACTIONS(2200), + [anon_sym_o_GT] = ACTIONS(2200), + [anon_sym_err_PLUSout_GT] = ACTIONS(2200), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), + [anon_sym_o_PLUSe_GT] = ACTIONS(2200), + [anon_sym_e_PLUSo_GT] = ACTIONS(2200), + [anon_sym_err_GT_GT] = ACTIONS(2198), + [anon_sym_out_GT_GT] = ACTIONS(2198), + [anon_sym_e_GT_GT] = ACTIONS(2198), + [anon_sym_o_GT_GT] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), [anon_sym_POUND] = ACTIONS(3), }, [STATE(725)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1288), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4419), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(974), - [sym__unquoted_with_expr] = STATE(1312), - [sym__unquoted_anonymous_prefix] = STATE(4419), + [aux_sym__repeat_newline] = STATE(1001), + [sym__expr_parenthesized_immediate] = STATE(4728), [sym_comment] = STATE(725), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [anon_sym_in] = ACTIONS(2198), + [sym__newline] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_err_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_GT_PIPE] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_GT2] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2198), + [anon_sym_xor2] = ACTIONS(2198), + [anon_sym_or2] = ACTIONS(2198), + [anon_sym_not_DASHin2] = ACTIONS(2198), + [anon_sym_has2] = ACTIONS(2198), + [anon_sym_not_DASHhas2] = ACTIONS(2198), + [anon_sym_starts_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), + [anon_sym_ends_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), + [anon_sym_EQ_EQ2] = ACTIONS(2198), + [anon_sym_BANG_EQ2] = ACTIONS(2198), + [anon_sym_LT2] = ACTIONS(2200), + [anon_sym_LT_EQ2] = ACTIONS(2198), + [anon_sym_GT_EQ2] = ACTIONS(2198), + [anon_sym_EQ_TILDE2] = ACTIONS(2198), + [anon_sym_BANG_TILDE2] = ACTIONS(2198), + [anon_sym_like2] = ACTIONS(2198), + [anon_sym_not_DASHlike2] = ACTIONS(2198), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2198), + [anon_sym_PLUS_PLUS2] = ACTIONS(2198), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2198), + [anon_sym_SLASH_SLASH2] = ACTIONS(2198), + [anon_sym_PLUS2] = ACTIONS(2200), + [anon_sym_bit_DASHshl2] = ACTIONS(2198), + [anon_sym_bit_DASHshr2] = ACTIONS(2198), + [anon_sym_bit_DASHand2] = ACTIONS(2198), + [anon_sym_bit_DASHxor2] = ACTIONS(2198), + [anon_sym_bit_DASHor2] = ACTIONS(2198), + [anon_sym_err_GT] = ACTIONS(2200), + [anon_sym_out_GT] = ACTIONS(2200), + [anon_sym_e_GT] = ACTIONS(2200), + [anon_sym_o_GT] = ACTIONS(2200), + [anon_sym_err_PLUSout_GT] = ACTIONS(2200), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), + [anon_sym_o_PLUSe_GT] = ACTIONS(2200), + [anon_sym_e_PLUSo_GT] = ACTIONS(2200), + [anon_sym_err_GT_GT] = ACTIONS(2198), + [anon_sym_out_GT_GT] = ACTIONS(2198), + [anon_sym_e_GT_GT] = ACTIONS(2198), + [anon_sym_o_GT_GT] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(726)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(2139), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(671), + [sym__unquoted_with_expr] = STATE(959), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(726), - [anon_sym_if] = ACTIONS(2206), - [anon_sym_in] = ACTIONS(2206), - [sym__newline] = ACTIONS(2206), - [anon_sym_SEMI] = ACTIONS(2206), - [anon_sym_PIPE] = ACTIONS(2206), - [anon_sym_err_GT_PIPE] = ACTIONS(2206), - [anon_sym_out_GT_PIPE] = ACTIONS(2206), - [anon_sym_e_GT_PIPE] = ACTIONS(2206), - [anon_sym_o_GT_PIPE] = ACTIONS(2206), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2206), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2206), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2206), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2206), - [anon_sym_RPAREN] = ACTIONS(2206), - [anon_sym_GT2] = ACTIONS(2208), - [anon_sym_DASH2] = ACTIONS(2206), - [anon_sym_LBRACE] = ACTIONS(2206), - [anon_sym_RBRACE] = ACTIONS(2206), - [anon_sym_EQ_GT] = ACTIONS(2206), - [anon_sym_STAR2] = ACTIONS(2208), - [anon_sym_and2] = ACTIONS(2206), - [anon_sym_xor2] = ACTIONS(2206), - [anon_sym_or2] = ACTIONS(2206), - [anon_sym_not_DASHin2] = ACTIONS(2206), - [anon_sym_has2] = ACTIONS(2206), - [anon_sym_not_DASHhas2] = ACTIONS(2206), - [anon_sym_starts_DASHwith2] = ACTIONS(2206), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2206), - [anon_sym_ends_DASHwith2] = ACTIONS(2206), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2206), - [anon_sym_EQ_EQ2] = ACTIONS(2206), - [anon_sym_BANG_EQ2] = ACTIONS(2206), - [anon_sym_LT2] = ACTIONS(2208), - [anon_sym_LT_EQ2] = ACTIONS(2206), - [anon_sym_GT_EQ2] = ACTIONS(2206), - [anon_sym_EQ_TILDE2] = ACTIONS(2206), - [anon_sym_BANG_TILDE2] = ACTIONS(2206), - [anon_sym_like2] = ACTIONS(2206), - [anon_sym_not_DASHlike2] = ACTIONS(2206), - [anon_sym_STAR_STAR2] = ACTIONS(2206), - [anon_sym_PLUS_PLUS2] = ACTIONS(2206), - [anon_sym_SLASH2] = ACTIONS(2208), - [anon_sym_mod2] = ACTIONS(2206), - [anon_sym_SLASH_SLASH2] = ACTIONS(2206), - [anon_sym_PLUS2] = ACTIONS(2208), - [anon_sym_bit_DASHshl2] = ACTIONS(2206), - [anon_sym_bit_DASHshr2] = ACTIONS(2206), - [anon_sym_bit_DASHand2] = ACTIONS(2206), - [anon_sym_bit_DASHxor2] = ACTIONS(2206), - [anon_sym_bit_DASHor2] = ACTIONS(2206), - [anon_sym_err_GT] = ACTIONS(2208), - [anon_sym_out_GT] = ACTIONS(2208), - [anon_sym_e_GT] = ACTIONS(2208), - [anon_sym_o_GT] = ACTIONS(2208), - [anon_sym_err_PLUSout_GT] = ACTIONS(2208), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2208), - [anon_sym_o_PLUSe_GT] = ACTIONS(2208), - [anon_sym_e_PLUSo_GT] = ACTIONS(2208), - [anon_sym_err_GT_GT] = ACTIONS(2206), - [anon_sym_out_GT_GT] = ACTIONS(2206), - [anon_sym_e_GT_GT] = ACTIONS(2206), - [anon_sym_o_GT_GT] = ACTIONS(2206), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2206), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2206), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2206), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2206), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1972), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1982), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(727)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(711), + [sym__unquoted_with_expr] = STATE(962), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(727), - [anon_sym_if] = ACTIONS(2210), - [anon_sym_in] = ACTIONS(2210), - [sym__newline] = ACTIONS(2210), - [anon_sym_SEMI] = ACTIONS(2210), - [anon_sym_PIPE] = ACTIONS(2210), - [anon_sym_err_GT_PIPE] = ACTIONS(2210), - [anon_sym_out_GT_PIPE] = ACTIONS(2210), - [anon_sym_e_GT_PIPE] = ACTIONS(2210), - [anon_sym_o_GT_PIPE] = ACTIONS(2210), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2210), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2210), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2210), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2210), - [anon_sym_RPAREN] = ACTIONS(2210), - [anon_sym_GT2] = ACTIONS(2212), - [anon_sym_DASH2] = ACTIONS(2210), - [anon_sym_LBRACE] = ACTIONS(2210), - [anon_sym_RBRACE] = ACTIONS(2210), - [anon_sym_EQ_GT] = ACTIONS(2210), - [anon_sym_STAR2] = ACTIONS(2212), - [anon_sym_and2] = ACTIONS(2210), - [anon_sym_xor2] = ACTIONS(2210), - [anon_sym_or2] = ACTIONS(2210), - [anon_sym_not_DASHin2] = ACTIONS(2210), - [anon_sym_has2] = ACTIONS(2210), - [anon_sym_not_DASHhas2] = ACTIONS(2210), - [anon_sym_starts_DASHwith2] = ACTIONS(2210), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2210), - [anon_sym_ends_DASHwith2] = ACTIONS(2210), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2210), - [anon_sym_EQ_EQ2] = ACTIONS(2210), - [anon_sym_BANG_EQ2] = ACTIONS(2210), - [anon_sym_LT2] = ACTIONS(2212), - [anon_sym_LT_EQ2] = ACTIONS(2210), - [anon_sym_GT_EQ2] = ACTIONS(2210), - [anon_sym_EQ_TILDE2] = ACTIONS(2210), - [anon_sym_BANG_TILDE2] = ACTIONS(2210), - [anon_sym_like2] = ACTIONS(2210), - [anon_sym_not_DASHlike2] = ACTIONS(2210), - [anon_sym_STAR_STAR2] = ACTIONS(2210), - [anon_sym_PLUS_PLUS2] = ACTIONS(2210), - [anon_sym_SLASH2] = ACTIONS(2212), - [anon_sym_mod2] = ACTIONS(2210), - [anon_sym_SLASH_SLASH2] = ACTIONS(2210), - [anon_sym_PLUS2] = ACTIONS(2212), - [anon_sym_bit_DASHshl2] = ACTIONS(2210), - [anon_sym_bit_DASHshr2] = ACTIONS(2210), - [anon_sym_bit_DASHand2] = ACTIONS(2210), - [anon_sym_bit_DASHxor2] = ACTIONS(2210), - [anon_sym_bit_DASHor2] = ACTIONS(2210), - [anon_sym_err_GT] = ACTIONS(2212), - [anon_sym_out_GT] = ACTIONS(2212), - [anon_sym_e_GT] = ACTIONS(2212), - [anon_sym_o_GT] = ACTIONS(2212), - [anon_sym_err_PLUSout_GT] = ACTIONS(2212), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2212), - [anon_sym_o_PLUSe_GT] = ACTIONS(2212), - [anon_sym_e_PLUSo_GT] = ACTIONS(2212), - [anon_sym_err_GT_GT] = ACTIONS(2210), - [anon_sym_out_GT_GT] = ACTIONS(2210), - [anon_sym_e_GT_GT] = ACTIONS(2210), - [anon_sym_o_GT_GT] = ACTIONS(2210), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2210), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2210), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2210), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2210), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1972), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1982), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(728)] = { + [aux_sym__repeat_newline] = STATE(1005), + [sym__expr_parenthesized_immediate] = STATE(4728), [sym_comment] = STATE(728), - [anon_sym_if] = ACTIONS(2214), - [anon_sym_in] = ACTIONS(2214), - [sym__newline] = ACTIONS(2214), - [anon_sym_SEMI] = ACTIONS(2214), - [anon_sym_PIPE] = ACTIONS(2214), - [anon_sym_err_GT_PIPE] = ACTIONS(2214), - [anon_sym_out_GT_PIPE] = ACTIONS(2214), - [anon_sym_e_GT_PIPE] = ACTIONS(2214), - [anon_sym_o_GT_PIPE] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2214), - [anon_sym_RPAREN] = ACTIONS(2214), - [anon_sym_GT2] = ACTIONS(2216), - [anon_sym_DASH2] = ACTIONS(2214), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_RBRACE] = ACTIONS(2214), - [anon_sym_EQ_GT] = ACTIONS(2214), - [anon_sym_STAR2] = ACTIONS(2216), - [anon_sym_and2] = ACTIONS(2214), - [anon_sym_xor2] = ACTIONS(2214), - [anon_sym_or2] = ACTIONS(2214), - [anon_sym_not_DASHin2] = ACTIONS(2214), - [anon_sym_has2] = ACTIONS(2214), - [anon_sym_not_DASHhas2] = ACTIONS(2214), - [anon_sym_starts_DASHwith2] = ACTIONS(2214), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2214), - [anon_sym_ends_DASHwith2] = ACTIONS(2214), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2214), - [anon_sym_EQ_EQ2] = ACTIONS(2214), - [anon_sym_BANG_EQ2] = ACTIONS(2214), - [anon_sym_LT2] = ACTIONS(2216), - [anon_sym_LT_EQ2] = ACTIONS(2214), - [anon_sym_GT_EQ2] = ACTIONS(2214), - [anon_sym_EQ_TILDE2] = ACTIONS(2214), - [anon_sym_BANG_TILDE2] = ACTIONS(2214), - [anon_sym_like2] = ACTIONS(2214), - [anon_sym_not_DASHlike2] = ACTIONS(2214), - [anon_sym_STAR_STAR2] = ACTIONS(2214), - [anon_sym_PLUS_PLUS2] = ACTIONS(2214), - [anon_sym_SLASH2] = ACTIONS(2216), - [anon_sym_mod2] = ACTIONS(2214), - [anon_sym_SLASH_SLASH2] = ACTIONS(2214), - [anon_sym_PLUS2] = ACTIONS(2216), - [anon_sym_bit_DASHshl2] = ACTIONS(2214), - [anon_sym_bit_DASHshr2] = ACTIONS(2214), - [anon_sym_bit_DASHand2] = ACTIONS(2214), - [anon_sym_bit_DASHxor2] = ACTIONS(2214), - [anon_sym_bit_DASHor2] = ACTIONS(2214), - [anon_sym_err_GT] = ACTIONS(2216), - [anon_sym_out_GT] = ACTIONS(2216), - [anon_sym_e_GT] = ACTIONS(2216), - [anon_sym_o_GT] = ACTIONS(2216), - [anon_sym_err_PLUSout_GT] = ACTIONS(2216), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2216), - [anon_sym_o_PLUSe_GT] = ACTIONS(2216), - [anon_sym_e_PLUSo_GT] = ACTIONS(2216), - [anon_sym_err_GT_GT] = ACTIONS(2214), - [anon_sym_out_GT_GT] = ACTIONS(2214), - [anon_sym_e_GT_GT] = ACTIONS(2214), - [anon_sym_o_GT_GT] = ACTIONS(2214), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2214), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2214), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2214), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2214), + [anon_sym_in] = ACTIONS(2198), + [sym__newline] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_err_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_GT_PIPE] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_GT2] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2198), + [anon_sym_xor2] = ACTIONS(2198), + [anon_sym_or2] = ACTIONS(2198), + [anon_sym_not_DASHin2] = ACTIONS(2198), + [anon_sym_has2] = ACTIONS(2198), + [anon_sym_not_DASHhas2] = ACTIONS(2198), + [anon_sym_starts_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), + [anon_sym_ends_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), + [anon_sym_EQ_EQ2] = ACTIONS(2198), + [anon_sym_BANG_EQ2] = ACTIONS(2198), + [anon_sym_LT2] = ACTIONS(2200), + [anon_sym_LT_EQ2] = ACTIONS(2198), + [anon_sym_GT_EQ2] = ACTIONS(2198), + [anon_sym_EQ_TILDE2] = ACTIONS(2198), + [anon_sym_BANG_TILDE2] = ACTIONS(2198), + [anon_sym_like2] = ACTIONS(2198), + [anon_sym_not_DASHlike2] = ACTIONS(2198), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2198), + [anon_sym_PLUS_PLUS2] = ACTIONS(2198), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2198), + [anon_sym_SLASH_SLASH2] = ACTIONS(2198), + [anon_sym_PLUS2] = ACTIONS(2200), + [anon_sym_bit_DASHshl2] = ACTIONS(2198), + [anon_sym_bit_DASHshr2] = ACTIONS(2198), + [anon_sym_bit_DASHand2] = ACTIONS(2198), + [anon_sym_bit_DASHxor2] = ACTIONS(2198), + [anon_sym_bit_DASHor2] = ACTIONS(2198), + [anon_sym_err_GT] = ACTIONS(2200), + [anon_sym_out_GT] = ACTIONS(2200), + [anon_sym_e_GT] = ACTIONS(2200), + [anon_sym_o_GT] = ACTIONS(2200), + [anon_sym_err_PLUSout_GT] = ACTIONS(2200), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), + [anon_sym_o_PLUSe_GT] = ACTIONS(2200), + [anon_sym_e_PLUSo_GT] = ACTIONS(2200), + [anon_sym_err_GT_GT] = ACTIONS(2198), + [anon_sym_out_GT_GT] = ACTIONS(2198), + [anon_sym_e_GT_GT] = ACTIONS(2198), + [anon_sym_o_GT_GT] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), [anon_sym_POUND] = ACTIONS(3), }, [STATE(729)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(2141), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(692), + [sym__unquoted_with_expr] = STATE(896), + [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(729), - [ts_builtin_sym_end] = ACTIONS(1537), - [anon_sym_in] = ACTIONS(1537), - [sym__newline] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_err_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_GT_PIPE] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1537), - [anon_sym_GT2] = ACTIONS(1535), - [anon_sym_DASH2] = ACTIONS(1537), - [anon_sym_STAR2] = ACTIONS(1535), - [anon_sym_and2] = ACTIONS(1537), - [anon_sym_xor2] = ACTIONS(1537), - [anon_sym_or2] = ACTIONS(1537), - [anon_sym_not_DASHin2] = ACTIONS(1537), - [anon_sym_has2] = ACTIONS(1537), - [anon_sym_not_DASHhas2] = ACTIONS(1537), - [anon_sym_starts_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1537), - [anon_sym_ends_DASHwith2] = ACTIONS(1537), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1537), - [anon_sym_EQ_EQ2] = ACTIONS(1537), - [anon_sym_BANG_EQ2] = ACTIONS(1537), - [anon_sym_LT2] = ACTIONS(1535), - [anon_sym_LT_EQ2] = ACTIONS(1537), - [anon_sym_GT_EQ2] = ACTIONS(1537), - [anon_sym_EQ_TILDE2] = ACTIONS(1537), - [anon_sym_BANG_TILDE2] = ACTIONS(1537), - [anon_sym_like2] = ACTIONS(1537), - [anon_sym_not_DASHlike2] = ACTIONS(1537), - [anon_sym_STAR_STAR2] = ACTIONS(1537), - [anon_sym_PLUS_PLUS2] = ACTIONS(1537), - [anon_sym_SLASH2] = ACTIONS(1535), - [anon_sym_mod2] = ACTIONS(1537), - [anon_sym_SLASH_SLASH2] = ACTIONS(1537), - [anon_sym_PLUS2] = ACTIONS(1535), - [anon_sym_bit_DASHshl2] = ACTIONS(1537), - [anon_sym_bit_DASHshr2] = ACTIONS(1537), - [anon_sym_bit_DASHand2] = ACTIONS(1537), - [anon_sym_bit_DASHxor2] = ACTIONS(1537), - [anon_sym_bit_DASHor2] = ACTIONS(1537), - [anon_sym_DOT_DOT2] = ACTIONS(1535), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1537), - [anon_sym_DOT2] = ACTIONS(1535), - [anon_sym_err_GT] = ACTIONS(1535), - [anon_sym_out_GT] = ACTIONS(1535), - [anon_sym_e_GT] = ACTIONS(1535), - [anon_sym_o_GT] = ACTIONS(1535), - [anon_sym_err_PLUSout_GT] = ACTIONS(1535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1535), - [anon_sym_o_PLUSe_GT] = ACTIONS(1535), - [anon_sym_e_PLUSo_GT] = ACTIONS(1535), - [anon_sym_err_GT_GT] = ACTIONS(1537), - [anon_sym_out_GT_GT] = ACTIONS(1537), - [anon_sym_e_GT_GT] = ACTIONS(1537), - [anon_sym_o_GT_GT] = ACTIONS(1537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1537), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1972), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1982), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(730)] = { + [aux_sym__repeat_newline] = STATE(1010), + [sym__expr_parenthesized_immediate] = STATE(4728), [sym_comment] = STATE(730), - [anon_sym_if] = ACTIONS(2218), - [anon_sym_in] = ACTIONS(2218), - [sym__newline] = ACTIONS(2218), - [anon_sym_SEMI] = ACTIONS(2218), - [anon_sym_PIPE] = ACTIONS(2218), - [anon_sym_err_GT_PIPE] = ACTIONS(2218), - [anon_sym_out_GT_PIPE] = ACTIONS(2218), - [anon_sym_e_GT_PIPE] = ACTIONS(2218), - [anon_sym_o_GT_PIPE] = ACTIONS(2218), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2218), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2218), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2218), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2218), - [anon_sym_RPAREN] = ACTIONS(2218), - [anon_sym_GT2] = ACTIONS(2220), - [anon_sym_DASH2] = ACTIONS(2218), - [anon_sym_LBRACE] = ACTIONS(2218), - [anon_sym_RBRACE] = ACTIONS(2218), - [anon_sym_EQ_GT] = ACTIONS(2218), - [anon_sym_STAR2] = ACTIONS(2220), - [anon_sym_and2] = ACTIONS(2218), - [anon_sym_xor2] = ACTIONS(2218), - [anon_sym_or2] = ACTIONS(2218), - [anon_sym_not_DASHin2] = ACTIONS(2218), - [anon_sym_has2] = ACTIONS(2218), - [anon_sym_not_DASHhas2] = ACTIONS(2218), - [anon_sym_starts_DASHwith2] = ACTIONS(2218), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2218), - [anon_sym_ends_DASHwith2] = ACTIONS(2218), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2218), - [anon_sym_EQ_EQ2] = ACTIONS(2218), - [anon_sym_BANG_EQ2] = ACTIONS(2218), - [anon_sym_LT2] = ACTIONS(2220), - [anon_sym_LT_EQ2] = ACTIONS(2218), - [anon_sym_GT_EQ2] = ACTIONS(2218), - [anon_sym_EQ_TILDE2] = ACTIONS(2218), - [anon_sym_BANG_TILDE2] = ACTIONS(2218), - [anon_sym_like2] = ACTIONS(2218), - [anon_sym_not_DASHlike2] = ACTIONS(2218), - [anon_sym_STAR_STAR2] = ACTIONS(2218), - [anon_sym_PLUS_PLUS2] = ACTIONS(2218), - [anon_sym_SLASH2] = ACTIONS(2220), - [anon_sym_mod2] = ACTIONS(2218), - [anon_sym_SLASH_SLASH2] = ACTIONS(2218), - [anon_sym_PLUS2] = ACTIONS(2220), - [anon_sym_bit_DASHshl2] = ACTIONS(2218), - [anon_sym_bit_DASHshr2] = ACTIONS(2218), - [anon_sym_bit_DASHand2] = ACTIONS(2218), - [anon_sym_bit_DASHxor2] = ACTIONS(2218), - [anon_sym_bit_DASHor2] = ACTIONS(2218), - [anon_sym_err_GT] = ACTIONS(2220), - [anon_sym_out_GT] = ACTIONS(2220), - [anon_sym_e_GT] = ACTIONS(2220), - [anon_sym_o_GT] = ACTIONS(2220), - [anon_sym_err_PLUSout_GT] = ACTIONS(2220), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2220), - [anon_sym_o_PLUSe_GT] = ACTIONS(2220), - [anon_sym_e_PLUSo_GT] = ACTIONS(2220), - [anon_sym_err_GT_GT] = ACTIONS(2218), - [anon_sym_out_GT_GT] = ACTIONS(2218), - [anon_sym_e_GT_GT] = ACTIONS(2218), - [anon_sym_o_GT_GT] = ACTIONS(2218), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2218), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2218), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2218), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2218), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(731)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1267), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4419), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1012), - [sym__unquoted_with_expr] = STATE(1307), - [sym__unquoted_anonymous_prefix] = STATE(4419), - [sym_comment] = STATE(731), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(732)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1278), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4419), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1071), - [sym__unquoted_with_expr] = STATE(1302), - [sym__unquoted_anonymous_prefix] = STATE(4419), - [sym_comment] = STATE(732), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(733)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1308), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4419), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1127), - [sym__unquoted_with_expr] = STATE(1321), - [sym__unquoted_anonymous_prefix] = STATE(4419), - [sym_comment] = STATE(733), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(734)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1283), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4419), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(972), - [sym__unquoted_with_expr] = STATE(1281), - [sym__unquoted_anonymous_prefix] = STATE(4419), - [sym_comment] = STATE(734), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(735)] = { - [sym_comment] = STATE(735), - [anon_sym_if] = ACTIONS(2222), - [anon_sym_in] = ACTIONS(2222), - [sym__newline] = ACTIONS(2222), - [anon_sym_SEMI] = ACTIONS(2222), - [anon_sym_PIPE] = ACTIONS(2222), - [anon_sym_err_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_GT_PIPE] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2222), - [anon_sym_RPAREN] = ACTIONS(2222), - [anon_sym_GT2] = ACTIONS(2224), - [anon_sym_DASH2] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2222), - [anon_sym_RBRACE] = ACTIONS(2222), - [anon_sym_EQ_GT] = ACTIONS(2222), - [anon_sym_STAR2] = ACTIONS(2224), - [anon_sym_and2] = ACTIONS(2222), - [anon_sym_xor2] = ACTIONS(2222), - [anon_sym_or2] = ACTIONS(2222), - [anon_sym_not_DASHin2] = ACTIONS(2222), - [anon_sym_has2] = ACTIONS(2222), - [anon_sym_not_DASHhas2] = ACTIONS(2222), - [anon_sym_starts_DASHwith2] = ACTIONS(2222), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2222), - [anon_sym_ends_DASHwith2] = ACTIONS(2222), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2222), - [anon_sym_EQ_EQ2] = ACTIONS(2222), - [anon_sym_BANG_EQ2] = ACTIONS(2222), - [anon_sym_LT2] = ACTIONS(2224), - [anon_sym_LT_EQ2] = ACTIONS(2222), - [anon_sym_GT_EQ2] = ACTIONS(2222), - [anon_sym_EQ_TILDE2] = ACTIONS(2222), - [anon_sym_BANG_TILDE2] = ACTIONS(2222), - [anon_sym_like2] = ACTIONS(2222), - [anon_sym_not_DASHlike2] = ACTIONS(2222), - [anon_sym_STAR_STAR2] = ACTIONS(2222), - [anon_sym_PLUS_PLUS2] = ACTIONS(2222), - [anon_sym_SLASH2] = ACTIONS(2224), - [anon_sym_mod2] = ACTIONS(2222), - [anon_sym_SLASH_SLASH2] = ACTIONS(2222), - [anon_sym_PLUS2] = ACTIONS(2224), - [anon_sym_bit_DASHshl2] = ACTIONS(2222), - [anon_sym_bit_DASHshr2] = ACTIONS(2222), - [anon_sym_bit_DASHand2] = ACTIONS(2222), - [anon_sym_bit_DASHxor2] = ACTIONS(2222), - [anon_sym_bit_DASHor2] = ACTIONS(2222), - [anon_sym_err_GT] = ACTIONS(2224), - [anon_sym_out_GT] = ACTIONS(2224), - [anon_sym_e_GT] = ACTIONS(2224), - [anon_sym_o_GT] = ACTIONS(2224), - [anon_sym_err_PLUSout_GT] = ACTIONS(2224), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2224), - [anon_sym_o_PLUSe_GT] = ACTIONS(2224), - [anon_sym_e_PLUSo_GT] = ACTIONS(2224), - [anon_sym_err_GT_GT] = ACTIONS(2222), - [anon_sym_out_GT_GT] = ACTIONS(2222), - [anon_sym_e_GT_GT] = ACTIONS(2222), - [anon_sym_o_GT_GT] = ACTIONS(2222), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2222), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2222), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2222), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2222), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(736)] = { - [sym_comment] = STATE(736), - [anon_sym_if] = ACTIONS(2226), - [anon_sym_in] = ACTIONS(2226), - [sym__newline] = ACTIONS(2226), - [anon_sym_SEMI] = ACTIONS(2226), - [anon_sym_PIPE] = ACTIONS(2226), - [anon_sym_err_GT_PIPE] = ACTIONS(2226), - [anon_sym_out_GT_PIPE] = ACTIONS(2226), - [anon_sym_e_GT_PIPE] = ACTIONS(2226), - [anon_sym_o_GT_PIPE] = ACTIONS(2226), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2226), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2226), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2226), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2226), - [anon_sym_RPAREN] = ACTIONS(2226), - [anon_sym_GT2] = ACTIONS(2228), - [anon_sym_DASH2] = ACTIONS(2226), - [anon_sym_LBRACE] = ACTIONS(2226), - [anon_sym_RBRACE] = ACTIONS(2226), - [anon_sym_EQ_GT] = ACTIONS(2226), - [anon_sym_STAR2] = ACTIONS(2228), - [anon_sym_and2] = ACTIONS(2226), - [anon_sym_xor2] = ACTIONS(2226), - [anon_sym_or2] = ACTIONS(2226), - [anon_sym_not_DASHin2] = ACTIONS(2226), - [anon_sym_has2] = ACTIONS(2226), - [anon_sym_not_DASHhas2] = ACTIONS(2226), - [anon_sym_starts_DASHwith2] = ACTIONS(2226), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2226), - [anon_sym_ends_DASHwith2] = ACTIONS(2226), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2226), - [anon_sym_EQ_EQ2] = ACTIONS(2226), - [anon_sym_BANG_EQ2] = ACTIONS(2226), - [anon_sym_LT2] = ACTIONS(2228), - [anon_sym_LT_EQ2] = ACTIONS(2226), - [anon_sym_GT_EQ2] = ACTIONS(2226), - [anon_sym_EQ_TILDE2] = ACTIONS(2226), - [anon_sym_BANG_TILDE2] = ACTIONS(2226), - [anon_sym_like2] = ACTIONS(2226), - [anon_sym_not_DASHlike2] = ACTIONS(2226), - [anon_sym_STAR_STAR2] = ACTIONS(2226), - [anon_sym_PLUS_PLUS2] = ACTIONS(2226), - [anon_sym_SLASH2] = ACTIONS(2228), - [anon_sym_mod2] = ACTIONS(2226), - [anon_sym_SLASH_SLASH2] = ACTIONS(2226), - [anon_sym_PLUS2] = ACTIONS(2228), - [anon_sym_bit_DASHshl2] = ACTIONS(2226), - [anon_sym_bit_DASHshr2] = ACTIONS(2226), - [anon_sym_bit_DASHand2] = ACTIONS(2226), - [anon_sym_bit_DASHxor2] = ACTIONS(2226), - [anon_sym_bit_DASHor2] = ACTIONS(2226), - [anon_sym_err_GT] = ACTIONS(2228), - [anon_sym_out_GT] = ACTIONS(2228), - [anon_sym_e_GT] = ACTIONS(2228), - [anon_sym_o_GT] = ACTIONS(2228), - [anon_sym_err_PLUSout_GT] = ACTIONS(2228), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2228), - [anon_sym_o_PLUSe_GT] = ACTIONS(2228), - [anon_sym_e_PLUSo_GT] = ACTIONS(2228), - [anon_sym_err_GT_GT] = ACTIONS(2226), - [anon_sym_out_GT_GT] = ACTIONS(2226), - [anon_sym_e_GT_GT] = ACTIONS(2226), - [anon_sym_o_GT_GT] = ACTIONS(2226), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2226), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2226), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2226), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2226), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(737)] = { - [sym_comment] = STATE(737), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_in] = ACTIONS(2230), - [sym__newline] = ACTIONS(2230), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_err_GT_PIPE] = ACTIONS(2230), - [anon_sym_out_GT_PIPE] = ACTIONS(2230), - [anon_sym_e_GT_PIPE] = ACTIONS(2230), - [anon_sym_o_GT_PIPE] = ACTIONS(2230), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2230), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2230), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2230), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2230), - [anon_sym_RPAREN] = ACTIONS(2230), - [anon_sym_GT2] = ACTIONS(2232), - [anon_sym_DASH2] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_RBRACE] = ACTIONS(2230), - [anon_sym_EQ_GT] = ACTIONS(2230), - [anon_sym_STAR2] = ACTIONS(2232), - [anon_sym_and2] = ACTIONS(2230), - [anon_sym_xor2] = ACTIONS(2230), - [anon_sym_or2] = ACTIONS(2230), - [anon_sym_not_DASHin2] = ACTIONS(2230), - [anon_sym_has2] = ACTIONS(2230), - [anon_sym_not_DASHhas2] = ACTIONS(2230), - [anon_sym_starts_DASHwith2] = ACTIONS(2230), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2230), - [anon_sym_ends_DASHwith2] = ACTIONS(2230), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2230), - [anon_sym_EQ_EQ2] = ACTIONS(2230), - [anon_sym_BANG_EQ2] = ACTIONS(2230), - [anon_sym_LT2] = ACTIONS(2232), - [anon_sym_LT_EQ2] = ACTIONS(2230), - [anon_sym_GT_EQ2] = ACTIONS(2230), - [anon_sym_EQ_TILDE2] = ACTIONS(2230), - [anon_sym_BANG_TILDE2] = ACTIONS(2230), - [anon_sym_like2] = ACTIONS(2230), - [anon_sym_not_DASHlike2] = ACTIONS(2230), - [anon_sym_STAR_STAR2] = ACTIONS(2230), - [anon_sym_PLUS_PLUS2] = ACTIONS(2230), - [anon_sym_SLASH2] = ACTIONS(2232), - [anon_sym_mod2] = ACTIONS(2230), - [anon_sym_SLASH_SLASH2] = ACTIONS(2230), - [anon_sym_PLUS2] = ACTIONS(2232), - [anon_sym_bit_DASHshl2] = ACTIONS(2230), - [anon_sym_bit_DASHshr2] = ACTIONS(2230), - [anon_sym_bit_DASHand2] = ACTIONS(2230), - [anon_sym_bit_DASHxor2] = ACTIONS(2230), - [anon_sym_bit_DASHor2] = ACTIONS(2230), - [anon_sym_err_GT] = ACTIONS(2232), - [anon_sym_out_GT] = ACTIONS(2232), - [anon_sym_e_GT] = ACTIONS(2232), - [anon_sym_o_GT] = ACTIONS(2232), - [anon_sym_err_PLUSout_GT] = ACTIONS(2232), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2232), - [anon_sym_o_PLUSe_GT] = ACTIONS(2232), - [anon_sym_e_PLUSo_GT] = ACTIONS(2232), - [anon_sym_err_GT_GT] = ACTIONS(2230), - [anon_sym_out_GT_GT] = ACTIONS(2230), - [anon_sym_e_GT_GT] = ACTIONS(2230), - [anon_sym_o_GT_GT] = ACTIONS(2230), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2230), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2230), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2230), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2230), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(738)] = { - [sym_comment] = STATE(738), - [anon_sym_if] = ACTIONS(2234), - [anon_sym_in] = ACTIONS(2234), - [sym__newline] = ACTIONS(2234), - [anon_sym_SEMI] = ACTIONS(2234), - [anon_sym_PIPE] = ACTIONS(2234), - [anon_sym_err_GT_PIPE] = ACTIONS(2234), - [anon_sym_out_GT_PIPE] = ACTIONS(2234), - [anon_sym_e_GT_PIPE] = ACTIONS(2234), - [anon_sym_o_GT_PIPE] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2234), - [anon_sym_RPAREN] = ACTIONS(2234), - [anon_sym_GT2] = ACTIONS(2236), - [anon_sym_DASH2] = ACTIONS(2234), - [anon_sym_LBRACE] = ACTIONS(2234), - [anon_sym_RBRACE] = ACTIONS(2234), - [anon_sym_EQ_GT] = ACTIONS(2234), - [anon_sym_STAR2] = ACTIONS(2236), - [anon_sym_and2] = ACTIONS(2234), - [anon_sym_xor2] = ACTIONS(2234), - [anon_sym_or2] = ACTIONS(2234), - [anon_sym_not_DASHin2] = ACTIONS(2234), - [anon_sym_has2] = ACTIONS(2234), - [anon_sym_not_DASHhas2] = ACTIONS(2234), - [anon_sym_starts_DASHwith2] = ACTIONS(2234), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2234), - [anon_sym_ends_DASHwith2] = ACTIONS(2234), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2234), - [anon_sym_EQ_EQ2] = ACTIONS(2234), - [anon_sym_BANG_EQ2] = ACTIONS(2234), - [anon_sym_LT2] = ACTIONS(2236), - [anon_sym_LT_EQ2] = ACTIONS(2234), - [anon_sym_GT_EQ2] = ACTIONS(2234), - [anon_sym_EQ_TILDE2] = ACTIONS(2234), - [anon_sym_BANG_TILDE2] = ACTIONS(2234), - [anon_sym_like2] = ACTIONS(2234), - [anon_sym_not_DASHlike2] = ACTIONS(2234), - [anon_sym_STAR_STAR2] = ACTIONS(2234), - [anon_sym_PLUS_PLUS2] = ACTIONS(2234), - [anon_sym_SLASH2] = ACTIONS(2236), - [anon_sym_mod2] = ACTIONS(2234), - [anon_sym_SLASH_SLASH2] = ACTIONS(2234), - [anon_sym_PLUS2] = ACTIONS(2236), - [anon_sym_bit_DASHshl2] = ACTIONS(2234), - [anon_sym_bit_DASHshr2] = ACTIONS(2234), - [anon_sym_bit_DASHand2] = ACTIONS(2234), - [anon_sym_bit_DASHxor2] = ACTIONS(2234), - [anon_sym_bit_DASHor2] = ACTIONS(2234), - [anon_sym_err_GT] = ACTIONS(2236), - [anon_sym_out_GT] = ACTIONS(2236), - [anon_sym_e_GT] = ACTIONS(2236), - [anon_sym_o_GT] = ACTIONS(2236), - [anon_sym_err_PLUSout_GT] = ACTIONS(2236), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2236), - [anon_sym_o_PLUSe_GT] = ACTIONS(2236), - [anon_sym_e_PLUSo_GT] = ACTIONS(2236), - [anon_sym_err_GT_GT] = ACTIONS(2234), - [anon_sym_out_GT_GT] = ACTIONS(2234), - [anon_sym_e_GT_GT] = ACTIONS(2234), - [anon_sym_o_GT_GT] = ACTIONS(2234), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2234), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2234), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2234), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2234), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(739)] = { - [sym_comment] = STATE(739), - [anon_sym_if] = ACTIONS(2238), - [anon_sym_in] = ACTIONS(2238), - [sym__newline] = ACTIONS(2238), - [anon_sym_SEMI] = ACTIONS(2238), - [anon_sym_PIPE] = ACTIONS(2238), - [anon_sym_err_GT_PIPE] = ACTIONS(2238), - [anon_sym_out_GT_PIPE] = ACTIONS(2238), - [anon_sym_e_GT_PIPE] = ACTIONS(2238), - [anon_sym_o_GT_PIPE] = ACTIONS(2238), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2238), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2238), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2238), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2238), - [anon_sym_RPAREN] = ACTIONS(2238), - [anon_sym_GT2] = ACTIONS(2240), - [anon_sym_DASH2] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_EQ_GT] = ACTIONS(2238), - [anon_sym_STAR2] = ACTIONS(2240), - [anon_sym_and2] = ACTIONS(2238), - [anon_sym_xor2] = ACTIONS(2238), - [anon_sym_or2] = ACTIONS(2238), - [anon_sym_not_DASHin2] = ACTIONS(2238), - [anon_sym_has2] = ACTIONS(2238), - [anon_sym_not_DASHhas2] = ACTIONS(2238), - [anon_sym_starts_DASHwith2] = ACTIONS(2238), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2238), - [anon_sym_ends_DASHwith2] = ACTIONS(2238), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2238), - [anon_sym_EQ_EQ2] = ACTIONS(2238), - [anon_sym_BANG_EQ2] = ACTIONS(2238), - [anon_sym_LT2] = ACTIONS(2240), - [anon_sym_LT_EQ2] = ACTIONS(2238), - [anon_sym_GT_EQ2] = ACTIONS(2238), - [anon_sym_EQ_TILDE2] = ACTIONS(2238), - [anon_sym_BANG_TILDE2] = ACTIONS(2238), - [anon_sym_like2] = ACTIONS(2238), - [anon_sym_not_DASHlike2] = ACTIONS(2238), - [anon_sym_STAR_STAR2] = ACTIONS(2238), - [anon_sym_PLUS_PLUS2] = ACTIONS(2238), - [anon_sym_SLASH2] = ACTIONS(2240), - [anon_sym_mod2] = ACTIONS(2238), - [anon_sym_SLASH_SLASH2] = ACTIONS(2238), - [anon_sym_PLUS2] = ACTIONS(2240), - [anon_sym_bit_DASHshl2] = ACTIONS(2238), - [anon_sym_bit_DASHshr2] = ACTIONS(2238), - [anon_sym_bit_DASHand2] = ACTIONS(2238), - [anon_sym_bit_DASHxor2] = ACTIONS(2238), - [anon_sym_bit_DASHor2] = ACTIONS(2238), - [anon_sym_err_GT] = ACTIONS(2240), - [anon_sym_out_GT] = ACTIONS(2240), - [anon_sym_e_GT] = ACTIONS(2240), - [anon_sym_o_GT] = ACTIONS(2240), - [anon_sym_err_PLUSout_GT] = ACTIONS(2240), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2240), - [anon_sym_o_PLUSe_GT] = ACTIONS(2240), - [anon_sym_e_PLUSo_GT] = ACTIONS(2240), - [anon_sym_err_GT_GT] = ACTIONS(2238), - [anon_sym_out_GT_GT] = ACTIONS(2238), - [anon_sym_e_GT_GT] = ACTIONS(2238), - [anon_sym_o_GT_GT] = ACTIONS(2238), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2238), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2238), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2238), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2238), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(740)] = { - [sym_comment] = STATE(740), - [anon_sym_if] = ACTIONS(2242), - [anon_sym_in] = ACTIONS(2242), - [sym__newline] = ACTIONS(2242), - [anon_sym_SEMI] = ACTIONS(2242), - [anon_sym_PIPE] = ACTIONS(2242), - [anon_sym_err_GT_PIPE] = ACTIONS(2242), - [anon_sym_out_GT_PIPE] = ACTIONS(2242), - [anon_sym_e_GT_PIPE] = ACTIONS(2242), - [anon_sym_o_GT_PIPE] = ACTIONS(2242), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2242), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2242), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2242), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2242), - [anon_sym_RPAREN] = ACTIONS(2242), - [anon_sym_GT2] = ACTIONS(2244), - [anon_sym_DASH2] = ACTIONS(2242), - [anon_sym_LBRACE] = ACTIONS(2242), - [anon_sym_RBRACE] = ACTIONS(2242), - [anon_sym_EQ_GT] = ACTIONS(2242), - [anon_sym_STAR2] = ACTIONS(2244), - [anon_sym_and2] = ACTIONS(2242), - [anon_sym_xor2] = ACTIONS(2242), - [anon_sym_or2] = ACTIONS(2242), - [anon_sym_not_DASHin2] = ACTIONS(2242), - [anon_sym_has2] = ACTIONS(2242), - [anon_sym_not_DASHhas2] = ACTIONS(2242), - [anon_sym_starts_DASHwith2] = ACTIONS(2242), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2242), - [anon_sym_ends_DASHwith2] = ACTIONS(2242), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2242), - [anon_sym_EQ_EQ2] = ACTIONS(2242), - [anon_sym_BANG_EQ2] = ACTIONS(2242), - [anon_sym_LT2] = ACTIONS(2244), - [anon_sym_LT_EQ2] = ACTIONS(2242), - [anon_sym_GT_EQ2] = ACTIONS(2242), - [anon_sym_EQ_TILDE2] = ACTIONS(2242), - [anon_sym_BANG_TILDE2] = ACTIONS(2242), - [anon_sym_like2] = ACTIONS(2242), - [anon_sym_not_DASHlike2] = ACTIONS(2242), - [anon_sym_STAR_STAR2] = ACTIONS(2242), - [anon_sym_PLUS_PLUS2] = ACTIONS(2242), - [anon_sym_SLASH2] = ACTIONS(2244), - [anon_sym_mod2] = ACTIONS(2242), - [anon_sym_SLASH_SLASH2] = ACTIONS(2242), - [anon_sym_PLUS2] = ACTIONS(2244), - [anon_sym_bit_DASHshl2] = ACTIONS(2242), - [anon_sym_bit_DASHshr2] = ACTIONS(2242), - [anon_sym_bit_DASHand2] = ACTIONS(2242), - [anon_sym_bit_DASHxor2] = ACTIONS(2242), - [anon_sym_bit_DASHor2] = ACTIONS(2242), - [anon_sym_err_GT] = ACTIONS(2244), - [anon_sym_out_GT] = ACTIONS(2244), - [anon_sym_e_GT] = ACTIONS(2244), - [anon_sym_o_GT] = ACTIONS(2244), - [anon_sym_err_PLUSout_GT] = ACTIONS(2244), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2244), - [anon_sym_o_PLUSe_GT] = ACTIONS(2244), - [anon_sym_e_PLUSo_GT] = ACTIONS(2244), - [anon_sym_err_GT_GT] = ACTIONS(2242), - [anon_sym_out_GT_GT] = ACTIONS(2242), - [anon_sym_e_GT_GT] = ACTIONS(2242), - [anon_sym_o_GT_GT] = ACTIONS(2242), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2242), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2242), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2242), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2242), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(741)] = { - [sym_comment] = STATE(741), - [anon_sym_if] = ACTIONS(2246), - [anon_sym_in] = ACTIONS(2246), - [sym__newline] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_err_GT_PIPE] = ACTIONS(2246), - [anon_sym_out_GT_PIPE] = ACTIONS(2246), - [anon_sym_e_GT_PIPE] = ACTIONS(2246), - [anon_sym_o_GT_PIPE] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2246), - [anon_sym_RPAREN] = ACTIONS(2246), - [anon_sym_GT2] = ACTIONS(2248), - [anon_sym_DASH2] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_EQ_GT] = ACTIONS(2246), - [anon_sym_STAR2] = ACTIONS(2248), - [anon_sym_and2] = ACTIONS(2246), - [anon_sym_xor2] = ACTIONS(2246), - [anon_sym_or2] = ACTIONS(2246), - [anon_sym_not_DASHin2] = ACTIONS(2246), - [anon_sym_has2] = ACTIONS(2246), - [anon_sym_not_DASHhas2] = ACTIONS(2246), - [anon_sym_starts_DASHwith2] = ACTIONS(2246), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2246), - [anon_sym_ends_DASHwith2] = ACTIONS(2246), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2246), - [anon_sym_EQ_EQ2] = ACTIONS(2246), - [anon_sym_BANG_EQ2] = ACTIONS(2246), - [anon_sym_LT2] = ACTIONS(2248), - [anon_sym_LT_EQ2] = ACTIONS(2246), - [anon_sym_GT_EQ2] = ACTIONS(2246), - [anon_sym_EQ_TILDE2] = ACTIONS(2246), - [anon_sym_BANG_TILDE2] = ACTIONS(2246), - [anon_sym_like2] = ACTIONS(2246), - [anon_sym_not_DASHlike2] = ACTIONS(2246), - [anon_sym_STAR_STAR2] = ACTIONS(2246), - [anon_sym_PLUS_PLUS2] = ACTIONS(2246), - [anon_sym_SLASH2] = ACTIONS(2248), - [anon_sym_mod2] = ACTIONS(2246), - [anon_sym_SLASH_SLASH2] = ACTIONS(2246), - [anon_sym_PLUS2] = ACTIONS(2248), - [anon_sym_bit_DASHshl2] = ACTIONS(2246), - [anon_sym_bit_DASHshr2] = ACTIONS(2246), - [anon_sym_bit_DASHand2] = ACTIONS(2246), - [anon_sym_bit_DASHxor2] = ACTIONS(2246), - [anon_sym_bit_DASHor2] = ACTIONS(2246), - [anon_sym_err_GT] = ACTIONS(2248), - [anon_sym_out_GT] = ACTIONS(2248), - [anon_sym_e_GT] = ACTIONS(2248), - [anon_sym_o_GT] = ACTIONS(2248), - [anon_sym_err_PLUSout_GT] = ACTIONS(2248), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2248), - [anon_sym_o_PLUSe_GT] = ACTIONS(2248), - [anon_sym_e_PLUSo_GT] = ACTIONS(2248), - [anon_sym_err_GT_GT] = ACTIONS(2246), - [anon_sym_out_GT_GT] = ACTIONS(2246), - [anon_sym_e_GT_GT] = ACTIONS(2246), - [anon_sym_o_GT_GT] = ACTIONS(2246), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2246), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2246), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2246), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2246), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(742)] = { - [sym_comment] = STATE(742), - [anon_sym_if] = ACTIONS(2250), - [anon_sym_in] = ACTIONS(2250), - [sym__newline] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(2250), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_err_GT_PIPE] = ACTIONS(2250), - [anon_sym_out_GT_PIPE] = ACTIONS(2250), - [anon_sym_e_GT_PIPE] = ACTIONS(2250), - [anon_sym_o_GT_PIPE] = ACTIONS(2250), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2250), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2250), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2250), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2250), - [anon_sym_RPAREN] = ACTIONS(2250), - [anon_sym_GT2] = ACTIONS(2252), - [anon_sym_DASH2] = ACTIONS(2250), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_EQ_GT] = ACTIONS(2250), - [anon_sym_STAR2] = ACTIONS(2252), - [anon_sym_and2] = ACTIONS(2250), - [anon_sym_xor2] = ACTIONS(2250), - [anon_sym_or2] = ACTIONS(2250), - [anon_sym_not_DASHin2] = ACTIONS(2250), - [anon_sym_has2] = ACTIONS(2250), - [anon_sym_not_DASHhas2] = ACTIONS(2250), - [anon_sym_starts_DASHwith2] = ACTIONS(2250), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2250), - [anon_sym_ends_DASHwith2] = ACTIONS(2250), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2250), - [anon_sym_EQ_EQ2] = ACTIONS(2250), - [anon_sym_BANG_EQ2] = ACTIONS(2250), - [anon_sym_LT2] = ACTIONS(2252), - [anon_sym_LT_EQ2] = ACTIONS(2250), - [anon_sym_GT_EQ2] = ACTIONS(2250), - [anon_sym_EQ_TILDE2] = ACTIONS(2250), - [anon_sym_BANG_TILDE2] = ACTIONS(2250), - [anon_sym_like2] = ACTIONS(2250), - [anon_sym_not_DASHlike2] = ACTIONS(2250), - [anon_sym_STAR_STAR2] = ACTIONS(2250), - [anon_sym_PLUS_PLUS2] = ACTIONS(2250), - [anon_sym_SLASH2] = ACTIONS(2252), - [anon_sym_mod2] = ACTIONS(2250), - [anon_sym_SLASH_SLASH2] = ACTIONS(2250), - [anon_sym_PLUS2] = ACTIONS(2252), - [anon_sym_bit_DASHshl2] = ACTIONS(2250), - [anon_sym_bit_DASHshr2] = ACTIONS(2250), - [anon_sym_bit_DASHand2] = ACTIONS(2250), - [anon_sym_bit_DASHxor2] = ACTIONS(2250), - [anon_sym_bit_DASHor2] = ACTIONS(2250), - [anon_sym_err_GT] = ACTIONS(2252), - [anon_sym_out_GT] = ACTIONS(2252), - [anon_sym_e_GT] = ACTIONS(2252), - [anon_sym_o_GT] = ACTIONS(2252), - [anon_sym_err_PLUSout_GT] = ACTIONS(2252), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2252), - [anon_sym_o_PLUSe_GT] = ACTIONS(2252), - [anon_sym_e_PLUSo_GT] = ACTIONS(2252), - [anon_sym_err_GT_GT] = ACTIONS(2250), - [anon_sym_out_GT_GT] = ACTIONS(2250), - [anon_sym_e_GT_GT] = ACTIONS(2250), - [anon_sym_o_GT_GT] = ACTIONS(2250), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2250), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2250), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2250), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2250), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(743)] = { - [sym_comment] = STATE(743), - [anon_sym_in] = ACTIONS(2254), - [sym__newline] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2254), - [anon_sym_err_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_GT_PIPE] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), - [anon_sym_RPAREN] = ACTIONS(2254), - [anon_sym_GT2] = ACTIONS(2256), - [anon_sym_DASH2] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_EQ_GT] = ACTIONS(2254), - [anon_sym_STAR2] = ACTIONS(2256), - [anon_sym_and2] = ACTIONS(2254), - [anon_sym_xor2] = ACTIONS(2254), - [anon_sym_or2] = ACTIONS(2254), - [anon_sym_not_DASHin2] = ACTIONS(2254), - [anon_sym_has2] = ACTIONS(2254), - [anon_sym_not_DASHhas2] = ACTIONS(2254), - [anon_sym_starts_DASHwith2] = ACTIONS(2254), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2254), - [anon_sym_ends_DASHwith2] = ACTIONS(2254), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2254), - [anon_sym_EQ_EQ2] = ACTIONS(2254), - [anon_sym_BANG_EQ2] = ACTIONS(2254), - [anon_sym_LT2] = ACTIONS(2256), - [anon_sym_LT_EQ2] = ACTIONS(2254), - [anon_sym_GT_EQ2] = ACTIONS(2254), - [anon_sym_EQ_TILDE2] = ACTIONS(2254), - [anon_sym_BANG_TILDE2] = ACTIONS(2254), - [anon_sym_like2] = ACTIONS(2254), - [anon_sym_not_DASHlike2] = ACTIONS(2254), - [anon_sym_STAR_STAR2] = ACTIONS(2254), - [anon_sym_PLUS_PLUS2] = ACTIONS(2254), - [anon_sym_SLASH2] = ACTIONS(2256), - [anon_sym_mod2] = ACTIONS(2254), - [anon_sym_SLASH_SLASH2] = ACTIONS(2254), - [anon_sym_PLUS2] = ACTIONS(2256), - [anon_sym_bit_DASHshl2] = ACTIONS(2254), - [anon_sym_bit_DASHshr2] = ACTIONS(2254), - [anon_sym_bit_DASHand2] = ACTIONS(2254), - [anon_sym_bit_DASHxor2] = ACTIONS(2254), - [anon_sym_bit_DASHor2] = ACTIONS(2254), - [anon_sym_COLON2] = ACTIONS(2254), - [anon_sym_err_GT] = ACTIONS(2256), - [anon_sym_out_GT] = ACTIONS(2256), - [anon_sym_e_GT] = ACTIONS(2256), - [anon_sym_o_GT] = ACTIONS(2256), - [anon_sym_err_PLUSout_GT] = ACTIONS(2256), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2256), - [anon_sym_o_PLUSe_GT] = ACTIONS(2256), - [anon_sym_e_PLUSo_GT] = ACTIONS(2256), - [anon_sym_err_GT_GT] = ACTIONS(2254), - [anon_sym_out_GT_GT] = ACTIONS(2254), - [anon_sym_e_GT_GT] = ACTIONS(2254), - [anon_sym_o_GT_GT] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(744)] = { - [sym_comment] = STATE(744), - [anon_sym_in] = ACTIONS(2254), - [sym__newline] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2254), - [anon_sym_err_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_GT_PIPE] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2254), - [anon_sym_RPAREN] = ACTIONS(2254), - [anon_sym_GT2] = ACTIONS(2256), - [anon_sym_DASH2] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_EQ_GT] = ACTIONS(2254), - [anon_sym_STAR2] = ACTIONS(2256), - [anon_sym_and2] = ACTIONS(2254), - [anon_sym_xor2] = ACTIONS(2254), - [anon_sym_or2] = ACTIONS(2254), - [anon_sym_not_DASHin2] = ACTIONS(2254), - [anon_sym_has2] = ACTIONS(2254), - [anon_sym_not_DASHhas2] = ACTIONS(2254), - [anon_sym_starts_DASHwith2] = ACTIONS(2254), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2254), - [anon_sym_ends_DASHwith2] = ACTIONS(2254), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2254), - [anon_sym_EQ_EQ2] = ACTIONS(2254), - [anon_sym_BANG_EQ2] = ACTIONS(2254), - [anon_sym_LT2] = ACTIONS(2256), - [anon_sym_LT_EQ2] = ACTIONS(2254), - [anon_sym_GT_EQ2] = ACTIONS(2254), - [anon_sym_EQ_TILDE2] = ACTIONS(2254), - [anon_sym_BANG_TILDE2] = ACTIONS(2254), - [anon_sym_like2] = ACTIONS(2254), - [anon_sym_not_DASHlike2] = ACTIONS(2254), - [anon_sym_STAR_STAR2] = ACTIONS(2254), - [anon_sym_PLUS_PLUS2] = ACTIONS(2254), - [anon_sym_SLASH2] = ACTIONS(2256), - [anon_sym_mod2] = ACTIONS(2254), - [anon_sym_SLASH_SLASH2] = ACTIONS(2254), - [anon_sym_PLUS2] = ACTIONS(2256), - [anon_sym_bit_DASHshl2] = ACTIONS(2254), - [anon_sym_bit_DASHshr2] = ACTIONS(2254), - [anon_sym_bit_DASHand2] = ACTIONS(2254), - [anon_sym_bit_DASHxor2] = ACTIONS(2254), - [anon_sym_bit_DASHor2] = ACTIONS(2254), - [anon_sym_COLON2] = ACTIONS(2254), - [anon_sym_err_GT] = ACTIONS(2256), - [anon_sym_out_GT] = ACTIONS(2256), - [anon_sym_e_GT] = ACTIONS(2256), - [anon_sym_o_GT] = ACTIONS(2256), - [anon_sym_err_PLUSout_GT] = ACTIONS(2256), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2256), - [anon_sym_o_PLUSe_GT] = ACTIONS(2256), - [anon_sym_e_PLUSo_GT] = ACTIONS(2256), - [anon_sym_err_GT_GT] = ACTIONS(2254), - [anon_sym_out_GT_GT] = ACTIONS(2254), - [anon_sym_e_GT_GT] = ACTIONS(2254), - [anon_sym_o_GT_GT] = ACTIONS(2254), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2254), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2254), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2254), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2254), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(745)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1282), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4419), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(981), - [sym__unquoted_with_expr] = STATE(1296), - [sym__unquoted_anonymous_prefix] = STATE(4419), - [sym_comment] = STATE(745), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(746)] = { - [sym_comment] = STATE(746), - [anon_sym_in] = ACTIONS(2258), - [sym__newline] = ACTIONS(2258), - [anon_sym_SEMI] = ACTIONS(2258), - [anon_sym_PIPE] = ACTIONS(2258), - [anon_sym_err_GT_PIPE] = ACTIONS(2258), - [anon_sym_out_GT_PIPE] = ACTIONS(2258), - [anon_sym_e_GT_PIPE] = ACTIONS(2258), - [anon_sym_o_GT_PIPE] = ACTIONS(2258), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2258), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2258), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2258), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2258), - [anon_sym_RPAREN] = ACTIONS(2258), - [anon_sym_GT2] = ACTIONS(2260), - [anon_sym_DASH2] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2258), - [anon_sym_RBRACE] = ACTIONS(2258), - [anon_sym_EQ_GT] = ACTIONS(2258), - [anon_sym_STAR2] = ACTIONS(2260), - [anon_sym_and2] = ACTIONS(2258), - [anon_sym_xor2] = ACTIONS(2258), - [anon_sym_or2] = ACTIONS(2258), - [anon_sym_not_DASHin2] = ACTIONS(2258), - [anon_sym_has2] = ACTIONS(2258), - [anon_sym_not_DASHhas2] = ACTIONS(2258), - [anon_sym_starts_DASHwith2] = ACTIONS(2258), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2258), - [anon_sym_ends_DASHwith2] = ACTIONS(2258), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2258), - [anon_sym_EQ_EQ2] = ACTIONS(2258), - [anon_sym_BANG_EQ2] = ACTIONS(2258), - [anon_sym_LT2] = ACTIONS(2260), - [anon_sym_LT_EQ2] = ACTIONS(2258), - [anon_sym_GT_EQ2] = ACTIONS(2258), - [anon_sym_EQ_TILDE2] = ACTIONS(2258), - [anon_sym_BANG_TILDE2] = ACTIONS(2258), - [anon_sym_like2] = ACTIONS(2258), - [anon_sym_not_DASHlike2] = ACTIONS(2258), - [anon_sym_STAR_STAR2] = ACTIONS(2258), - [anon_sym_PLUS_PLUS2] = ACTIONS(2258), - [anon_sym_SLASH2] = ACTIONS(2260), - [anon_sym_mod2] = ACTIONS(2258), - [anon_sym_SLASH_SLASH2] = ACTIONS(2258), - [anon_sym_PLUS2] = ACTIONS(2260), - [anon_sym_bit_DASHshl2] = ACTIONS(2258), - [anon_sym_bit_DASHshr2] = ACTIONS(2258), - [anon_sym_bit_DASHand2] = ACTIONS(2258), - [anon_sym_bit_DASHxor2] = ACTIONS(2258), - [anon_sym_bit_DASHor2] = ACTIONS(2258), - [anon_sym_COLON2] = ACTIONS(2258), - [anon_sym_err_GT] = ACTIONS(2260), - [anon_sym_out_GT] = ACTIONS(2260), - [anon_sym_e_GT] = ACTIONS(2260), - [anon_sym_o_GT] = ACTIONS(2260), - [anon_sym_err_PLUSout_GT] = ACTIONS(2260), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2260), - [anon_sym_o_PLUSe_GT] = ACTIONS(2260), - [anon_sym_e_PLUSo_GT] = ACTIONS(2260), - [anon_sym_err_GT_GT] = ACTIONS(2258), - [anon_sym_out_GT_GT] = ACTIONS(2258), - [anon_sym_e_GT_GT] = ACTIONS(2258), - [anon_sym_o_GT_GT] = ACTIONS(2258), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2258), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2258), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2258), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2258), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(747)] = { - [sym_comment] = STATE(747), - [anon_sym_in] = ACTIONS(2262), - [sym__newline] = ACTIONS(2262), - [anon_sym_SEMI] = ACTIONS(2262), - [anon_sym_PIPE] = ACTIONS(2262), - [anon_sym_err_GT_PIPE] = ACTIONS(2262), - [anon_sym_out_GT_PIPE] = ACTIONS(2262), - [anon_sym_e_GT_PIPE] = ACTIONS(2262), - [anon_sym_o_GT_PIPE] = ACTIONS(2262), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2262), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2262), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2262), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2262), - [anon_sym_RPAREN] = ACTIONS(2262), - [anon_sym_GT2] = ACTIONS(2264), - [anon_sym_DASH2] = ACTIONS(2262), - [anon_sym_LBRACE] = ACTIONS(2262), - [anon_sym_RBRACE] = ACTIONS(2262), - [anon_sym_EQ_GT] = ACTIONS(2262), - [anon_sym_STAR2] = ACTIONS(2264), - [anon_sym_and2] = ACTIONS(2262), - [anon_sym_xor2] = ACTIONS(2262), - [anon_sym_or2] = ACTIONS(2262), - [anon_sym_not_DASHin2] = ACTIONS(2262), - [anon_sym_has2] = ACTIONS(2262), - [anon_sym_not_DASHhas2] = ACTIONS(2262), - [anon_sym_starts_DASHwith2] = ACTIONS(2262), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2262), - [anon_sym_ends_DASHwith2] = ACTIONS(2262), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2262), - [anon_sym_EQ_EQ2] = ACTIONS(2262), - [anon_sym_BANG_EQ2] = ACTIONS(2262), - [anon_sym_LT2] = ACTIONS(2264), - [anon_sym_LT_EQ2] = ACTIONS(2262), - [anon_sym_GT_EQ2] = ACTIONS(2262), - [anon_sym_EQ_TILDE2] = ACTIONS(2262), - [anon_sym_BANG_TILDE2] = ACTIONS(2262), - [anon_sym_like2] = ACTIONS(2262), - [anon_sym_not_DASHlike2] = ACTIONS(2262), - [anon_sym_STAR_STAR2] = ACTIONS(2262), - [anon_sym_PLUS_PLUS2] = ACTIONS(2262), - [anon_sym_SLASH2] = ACTIONS(2264), - [anon_sym_mod2] = ACTIONS(2262), - [anon_sym_SLASH_SLASH2] = ACTIONS(2262), - [anon_sym_PLUS2] = ACTIONS(2264), - [anon_sym_bit_DASHshl2] = ACTIONS(2262), - [anon_sym_bit_DASHshr2] = ACTIONS(2262), - [anon_sym_bit_DASHand2] = ACTIONS(2262), - [anon_sym_bit_DASHxor2] = ACTIONS(2262), - [anon_sym_bit_DASHor2] = ACTIONS(2262), - [anon_sym_COLON2] = ACTIONS(2262), - [anon_sym_err_GT] = ACTIONS(2264), - [anon_sym_out_GT] = ACTIONS(2264), - [anon_sym_e_GT] = ACTIONS(2264), - [anon_sym_o_GT] = ACTIONS(2264), - [anon_sym_err_PLUSout_GT] = ACTIONS(2264), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2264), - [anon_sym_o_PLUSe_GT] = ACTIONS(2264), - [anon_sym_e_PLUSo_GT] = ACTIONS(2264), - [anon_sym_err_GT_GT] = ACTIONS(2262), - [anon_sym_out_GT_GT] = ACTIONS(2262), - [anon_sym_e_GT_GT] = ACTIONS(2262), - [anon_sym_o_GT_GT] = ACTIONS(2262), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2262), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2262), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2262), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2262), + [anon_sym_in] = ACTIONS(2198), + [sym__newline] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_err_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_GT_PIPE] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_GT2] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2198), + [anon_sym_xor2] = ACTIONS(2198), + [anon_sym_or2] = ACTIONS(2198), + [anon_sym_not_DASHin2] = ACTIONS(2198), + [anon_sym_has2] = ACTIONS(2198), + [anon_sym_not_DASHhas2] = ACTIONS(2198), + [anon_sym_starts_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), + [anon_sym_ends_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), + [anon_sym_EQ_EQ2] = ACTIONS(2198), + [anon_sym_BANG_EQ2] = ACTIONS(2198), + [anon_sym_LT2] = ACTIONS(2200), + [anon_sym_LT_EQ2] = ACTIONS(2198), + [anon_sym_GT_EQ2] = ACTIONS(2198), + [anon_sym_EQ_TILDE2] = ACTIONS(2198), + [anon_sym_BANG_TILDE2] = ACTIONS(2198), + [anon_sym_like2] = ACTIONS(2198), + [anon_sym_not_DASHlike2] = ACTIONS(2198), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2198), + [anon_sym_PLUS_PLUS2] = ACTIONS(2198), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2198), + [anon_sym_SLASH_SLASH2] = ACTIONS(2198), + [anon_sym_PLUS2] = ACTIONS(2200), + [anon_sym_bit_DASHshl2] = ACTIONS(2198), + [anon_sym_bit_DASHshr2] = ACTIONS(2198), + [anon_sym_bit_DASHand2] = ACTIONS(2198), + [anon_sym_bit_DASHxor2] = ACTIONS(2198), + [anon_sym_bit_DASHor2] = ACTIONS(2198), + [anon_sym_err_GT] = ACTIONS(2200), + [anon_sym_out_GT] = ACTIONS(2200), + [anon_sym_e_GT] = ACTIONS(2200), + [anon_sym_o_GT] = ACTIONS(2200), + [anon_sym_err_PLUSout_GT] = ACTIONS(2200), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), + [anon_sym_o_PLUSe_GT] = ACTIONS(2200), + [anon_sym_e_PLUSo_GT] = ACTIONS(2200), + [anon_sym_err_GT_GT] = ACTIONS(2198), + [anon_sym_out_GT_GT] = ACTIONS(2198), + [anon_sym_e_GT_GT] = ACTIONS(2198), + [anon_sym_o_GT_GT] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(748)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1247), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(707), - [sym__unquoted_with_expr] = STATE(900), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(748), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(731)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(2143), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(693), + [sym__unquoted_with_expr] = STATE(897), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(731), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(749)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1251), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(708), - [sym__unquoted_with_expr] = STATE(901), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(749), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(732)] = { + [aux_sym__repeat_newline] = STATE(1021), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(732), + [anon_sym_in] = ACTIONS(2198), + [sym__newline] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_err_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_GT_PIPE] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_GT2] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2198), + [anon_sym_xor2] = ACTIONS(2198), + [anon_sym_or2] = ACTIONS(2198), + [anon_sym_not_DASHin2] = ACTIONS(2198), + [anon_sym_has2] = ACTIONS(2198), + [anon_sym_not_DASHhas2] = ACTIONS(2198), + [anon_sym_starts_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), + [anon_sym_ends_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), + [anon_sym_EQ_EQ2] = ACTIONS(2198), + [anon_sym_BANG_EQ2] = ACTIONS(2198), + [anon_sym_LT2] = ACTIONS(2200), + [anon_sym_LT_EQ2] = ACTIONS(2198), + [anon_sym_GT_EQ2] = ACTIONS(2198), + [anon_sym_EQ_TILDE2] = ACTIONS(2198), + [anon_sym_BANG_TILDE2] = ACTIONS(2198), + [anon_sym_like2] = ACTIONS(2198), + [anon_sym_not_DASHlike2] = ACTIONS(2198), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2198), + [anon_sym_PLUS_PLUS2] = ACTIONS(2198), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2198), + [anon_sym_SLASH_SLASH2] = ACTIONS(2198), + [anon_sym_PLUS2] = ACTIONS(2200), + [anon_sym_bit_DASHshl2] = ACTIONS(2198), + [anon_sym_bit_DASHshr2] = ACTIONS(2198), + [anon_sym_bit_DASHand2] = ACTIONS(2198), + [anon_sym_bit_DASHxor2] = ACTIONS(2198), + [anon_sym_bit_DASHor2] = ACTIONS(2198), + [anon_sym_err_GT] = ACTIONS(2200), + [anon_sym_out_GT] = ACTIONS(2200), + [anon_sym_e_GT] = ACTIONS(2200), + [anon_sym_o_GT] = ACTIONS(2200), + [anon_sym_err_PLUSout_GT] = ACTIONS(2200), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), + [anon_sym_o_PLUSe_GT] = ACTIONS(2200), + [anon_sym_e_PLUSo_GT] = ACTIONS(2200), + [anon_sym_err_GT_GT] = ACTIONS(2198), + [anon_sym_out_GT_GT] = ACTIONS(2198), + [anon_sym_e_GT_GT] = ACTIONS(2198), + [anon_sym_o_GT_GT] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(733)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(2144), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(694), + [sym__unquoted_with_expr] = STATE(898), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(733), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(750)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1254), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(711), + [STATE(734)] = { + [aux_sym__repeat_newline] = STATE(1023), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(734), + [anon_sym_in] = ACTIONS(2198), + [sym__newline] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_err_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_GT_PIPE] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_GT2] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2198), + [anon_sym_xor2] = ACTIONS(2198), + [anon_sym_or2] = ACTIONS(2198), + [anon_sym_not_DASHin2] = ACTIONS(2198), + [anon_sym_has2] = ACTIONS(2198), + [anon_sym_not_DASHhas2] = ACTIONS(2198), + [anon_sym_starts_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), + [anon_sym_ends_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), + [anon_sym_EQ_EQ2] = ACTIONS(2198), + [anon_sym_BANG_EQ2] = ACTIONS(2198), + [anon_sym_LT2] = ACTIONS(2200), + [anon_sym_LT_EQ2] = ACTIONS(2198), + [anon_sym_GT_EQ2] = ACTIONS(2198), + [anon_sym_EQ_TILDE2] = ACTIONS(2198), + [anon_sym_BANG_TILDE2] = ACTIONS(2198), + [anon_sym_like2] = ACTIONS(2198), + [anon_sym_not_DASHlike2] = ACTIONS(2198), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2198), + [anon_sym_PLUS_PLUS2] = ACTIONS(2198), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2198), + [anon_sym_SLASH_SLASH2] = ACTIONS(2198), + [anon_sym_PLUS2] = ACTIONS(2200), + [anon_sym_bit_DASHshl2] = ACTIONS(2198), + [anon_sym_bit_DASHshr2] = ACTIONS(2198), + [anon_sym_bit_DASHand2] = ACTIONS(2198), + [anon_sym_bit_DASHxor2] = ACTIONS(2198), + [anon_sym_bit_DASHor2] = ACTIONS(2198), + [anon_sym_err_GT] = ACTIONS(2200), + [anon_sym_out_GT] = ACTIONS(2200), + [anon_sym_e_GT] = ACTIONS(2200), + [anon_sym_o_GT] = ACTIONS(2200), + [anon_sym_err_PLUSout_GT] = ACTIONS(2200), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), + [anon_sym_o_PLUSe_GT] = ACTIONS(2200), + [anon_sym_e_PLUSo_GT] = ACTIONS(2200), + [anon_sym_err_GT_GT] = ACTIONS(2198), + [anon_sym_out_GT_GT] = ACTIONS(2198), + [anon_sym_e_GT_GT] = ACTIONS(2198), + [anon_sym_o_GT_GT] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(735)] = { + [sym_comment] = STATE(735), + [anon_sym_in] = ACTIONS(1728), + [sym__newline] = ACTIONS(1728), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_err_GT_PIPE] = ACTIONS(1728), + [anon_sym_out_GT_PIPE] = ACTIONS(1728), + [anon_sym_e_GT_PIPE] = ACTIONS(1728), + [anon_sym_o_GT_PIPE] = ACTIONS(1728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1728), + [anon_sym_RPAREN] = ACTIONS(1728), + [anon_sym_GT2] = ACTIONS(1730), + [anon_sym_DASH2] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1728), + [anon_sym_RBRACE] = ACTIONS(1728), + [anon_sym_STAR2] = ACTIONS(1730), + [anon_sym_and2] = ACTIONS(1728), + [anon_sym_xor2] = ACTIONS(1728), + [anon_sym_or2] = ACTIONS(1728), + [anon_sym_not_DASHin2] = ACTIONS(1728), + [anon_sym_has2] = ACTIONS(1728), + [anon_sym_not_DASHhas2] = ACTIONS(1728), + [anon_sym_starts_DASHwith2] = ACTIONS(1728), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1728), + [anon_sym_ends_DASHwith2] = ACTIONS(1728), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1728), + [anon_sym_EQ_EQ2] = ACTIONS(1728), + [anon_sym_BANG_EQ2] = ACTIONS(1728), + [anon_sym_LT2] = ACTIONS(1730), + [anon_sym_LT_EQ2] = ACTIONS(1728), + [anon_sym_GT_EQ2] = ACTIONS(1728), + [anon_sym_EQ_TILDE2] = ACTIONS(1728), + [anon_sym_BANG_TILDE2] = ACTIONS(1728), + [anon_sym_like2] = ACTIONS(1728), + [anon_sym_not_DASHlike2] = ACTIONS(1728), + [anon_sym_STAR_STAR2] = ACTIONS(1728), + [anon_sym_PLUS_PLUS2] = ACTIONS(1728), + [anon_sym_SLASH2] = ACTIONS(1730), + [anon_sym_mod2] = ACTIONS(1728), + [anon_sym_SLASH_SLASH2] = ACTIONS(1728), + [anon_sym_PLUS2] = ACTIONS(1730), + [anon_sym_bit_DASHshl2] = ACTIONS(1728), + [anon_sym_bit_DASHshr2] = ACTIONS(1728), + [anon_sym_bit_DASHand2] = ACTIONS(1728), + [anon_sym_bit_DASHxor2] = ACTIONS(1728), + [anon_sym_bit_DASHor2] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(2202), + [aux_sym__immediate_decimal_token5] = ACTIONS(1734), + [anon_sym_err_GT] = ACTIONS(1730), + [anon_sym_out_GT] = ACTIONS(1730), + [anon_sym_e_GT] = ACTIONS(1730), + [anon_sym_o_GT] = ACTIONS(1730), + [anon_sym_err_PLUSout_GT] = ACTIONS(1730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1730), + [anon_sym_o_PLUSe_GT] = ACTIONS(1730), + [anon_sym_e_PLUSo_GT] = ACTIONS(1730), + [anon_sym_err_GT_GT] = ACTIONS(1728), + [anon_sym_out_GT_GT] = ACTIONS(1728), + [anon_sym_e_GT_GT] = ACTIONS(1728), + [anon_sym_o_GT_GT] = ACTIONS(1728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1728), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(736)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(2145), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(695), [sym__unquoted_with_expr] = STATE(902), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(750), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(736), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(751)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1203), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(686), - [sym__unquoted_with_expr] = STATE(903), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(751), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(737)] = { + [aux_sym__repeat_newline] = STATE(1025), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(737), + [anon_sym_in] = ACTIONS(2198), + [sym__newline] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_err_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_GT_PIPE] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_GT2] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2198), + [anon_sym_xor2] = ACTIONS(2198), + [anon_sym_or2] = ACTIONS(2198), + [anon_sym_not_DASHin2] = ACTIONS(2198), + [anon_sym_has2] = ACTIONS(2198), + [anon_sym_not_DASHhas2] = ACTIONS(2198), + [anon_sym_starts_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), + [anon_sym_ends_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), + [anon_sym_EQ_EQ2] = ACTIONS(2198), + [anon_sym_BANG_EQ2] = ACTIONS(2198), + [anon_sym_LT2] = ACTIONS(2200), + [anon_sym_LT_EQ2] = ACTIONS(2198), + [anon_sym_GT_EQ2] = ACTIONS(2198), + [anon_sym_EQ_TILDE2] = ACTIONS(2198), + [anon_sym_BANG_TILDE2] = ACTIONS(2198), + [anon_sym_like2] = ACTIONS(2198), + [anon_sym_not_DASHlike2] = ACTIONS(2198), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2198), + [anon_sym_PLUS_PLUS2] = ACTIONS(2198), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2198), + [anon_sym_SLASH_SLASH2] = ACTIONS(2198), + [anon_sym_PLUS2] = ACTIONS(2200), + [anon_sym_bit_DASHshl2] = ACTIONS(2198), + [anon_sym_bit_DASHshr2] = ACTIONS(2198), + [anon_sym_bit_DASHand2] = ACTIONS(2198), + [anon_sym_bit_DASHxor2] = ACTIONS(2198), + [anon_sym_bit_DASHor2] = ACTIONS(2198), + [anon_sym_err_GT] = ACTIONS(2200), + [anon_sym_out_GT] = ACTIONS(2200), + [anon_sym_e_GT] = ACTIONS(2200), + [anon_sym_o_GT] = ACTIONS(2200), + [anon_sym_err_PLUSout_GT] = ACTIONS(2200), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), + [anon_sym_o_PLUSe_GT] = ACTIONS(2200), + [anon_sym_e_PLUSo_GT] = ACTIONS(2200), + [anon_sym_err_GT_GT] = ACTIONS(2198), + [anon_sym_out_GT_GT] = ACTIONS(2198), + [anon_sym_e_GT_GT] = ACTIONS(2198), + [anon_sym_o_GT_GT] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(738)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(2146), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(697), + [sym__unquoted_with_expr] = STATE(904), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(738), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(752)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1133), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(682), + [STATE(739)] = { + [aux_sym__repeat_newline] = STATE(1046), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(739), + [anon_sym_in] = ACTIONS(2198), + [sym__newline] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_err_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_GT_PIPE] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_GT2] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2198), + [anon_sym_xor2] = ACTIONS(2198), + [anon_sym_or2] = ACTIONS(2198), + [anon_sym_not_DASHin2] = ACTIONS(2198), + [anon_sym_has2] = ACTIONS(2198), + [anon_sym_not_DASHhas2] = ACTIONS(2198), + [anon_sym_starts_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), + [anon_sym_ends_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), + [anon_sym_EQ_EQ2] = ACTIONS(2198), + [anon_sym_BANG_EQ2] = ACTIONS(2198), + [anon_sym_LT2] = ACTIONS(2200), + [anon_sym_LT_EQ2] = ACTIONS(2198), + [anon_sym_GT_EQ2] = ACTIONS(2198), + [anon_sym_EQ_TILDE2] = ACTIONS(2198), + [anon_sym_BANG_TILDE2] = ACTIONS(2198), + [anon_sym_like2] = ACTIONS(2198), + [anon_sym_not_DASHlike2] = ACTIONS(2198), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2198), + [anon_sym_PLUS_PLUS2] = ACTIONS(2198), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2198), + [anon_sym_SLASH_SLASH2] = ACTIONS(2198), + [anon_sym_PLUS2] = ACTIONS(2200), + [anon_sym_bit_DASHshl2] = ACTIONS(2198), + [anon_sym_bit_DASHshr2] = ACTIONS(2198), + [anon_sym_bit_DASHand2] = ACTIONS(2198), + [anon_sym_bit_DASHxor2] = ACTIONS(2198), + [anon_sym_bit_DASHor2] = ACTIONS(2198), + [anon_sym_err_GT] = ACTIONS(2200), + [anon_sym_out_GT] = ACTIONS(2200), + [anon_sym_e_GT] = ACTIONS(2200), + [anon_sym_o_GT] = ACTIONS(2200), + [anon_sym_err_PLUSout_GT] = ACTIONS(2200), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), + [anon_sym_o_PLUSe_GT] = ACTIONS(2200), + [anon_sym_e_PLUSo_GT] = ACTIONS(2200), + [anon_sym_err_GT_GT] = ACTIONS(2198), + [anon_sym_out_GT_GT] = ACTIONS(2198), + [anon_sym_e_GT_GT] = ACTIONS(2198), + [anon_sym_o_GT_GT] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(740)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(2147), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(698), [sym__unquoted_with_expr] = STATE(906), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(752), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(740), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(753)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1136), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(683), - [sym__unquoted_with_expr] = STATE(909), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(753), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [STATE(741)] = { + [aux_sym__repeat_newline] = STATE(1050), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(741), + [anon_sym_in] = ACTIONS(2198), + [sym__newline] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_err_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_GT_PIPE] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_GT2] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2198), + [anon_sym_xor2] = ACTIONS(2198), + [anon_sym_or2] = ACTIONS(2198), + [anon_sym_not_DASHin2] = ACTIONS(2198), + [anon_sym_has2] = ACTIONS(2198), + [anon_sym_not_DASHhas2] = ACTIONS(2198), + [anon_sym_starts_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), + [anon_sym_ends_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), + [anon_sym_EQ_EQ2] = ACTIONS(2198), + [anon_sym_BANG_EQ2] = ACTIONS(2198), + [anon_sym_LT2] = ACTIONS(2200), + [anon_sym_LT_EQ2] = ACTIONS(2198), + [anon_sym_GT_EQ2] = ACTIONS(2198), + [anon_sym_EQ_TILDE2] = ACTIONS(2198), + [anon_sym_BANG_TILDE2] = ACTIONS(2198), + [anon_sym_like2] = ACTIONS(2198), + [anon_sym_not_DASHlike2] = ACTIONS(2198), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2198), + [anon_sym_PLUS_PLUS2] = ACTIONS(2198), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2198), + [anon_sym_SLASH_SLASH2] = ACTIONS(2198), + [anon_sym_PLUS2] = ACTIONS(2200), + [anon_sym_bit_DASHshl2] = ACTIONS(2198), + [anon_sym_bit_DASHshr2] = ACTIONS(2198), + [anon_sym_bit_DASHand2] = ACTIONS(2198), + [anon_sym_bit_DASHxor2] = ACTIONS(2198), + [anon_sym_bit_DASHor2] = ACTIONS(2198), + [anon_sym_err_GT] = ACTIONS(2200), + [anon_sym_out_GT] = ACTIONS(2200), + [anon_sym_e_GT] = ACTIONS(2200), + [anon_sym_o_GT] = ACTIONS(2200), + [anon_sym_err_PLUSout_GT] = ACTIONS(2200), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), + [anon_sym_o_PLUSe_GT] = ACTIONS(2200), + [anon_sym_e_PLUSo_GT] = ACTIONS(2200), + [anon_sym_err_GT_GT] = ACTIONS(2198), + [anon_sym_out_GT_GT] = ACTIONS(2198), + [anon_sym_e_GT_GT] = ACTIONS(2198), + [anon_sym_o_GT_GT] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(754)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1138), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(677), - [sym__unquoted_with_expr] = STATE(910), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(754), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(742)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(907), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(699), + [sym__unquoted_with_expr] = STATE(895), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(742), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(755)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1140), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(679), + [STATE(743)] = { + [aux_sym__repeat_newline] = STATE(1058), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(743), + [anon_sym_in] = ACTIONS(2198), + [sym__newline] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_err_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_GT_PIPE] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_GT2] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2198), + [anon_sym_xor2] = ACTIONS(2198), + [anon_sym_or2] = ACTIONS(2198), + [anon_sym_not_DASHin2] = ACTIONS(2198), + [anon_sym_has2] = ACTIONS(2198), + [anon_sym_not_DASHhas2] = ACTIONS(2198), + [anon_sym_starts_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), + [anon_sym_ends_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), + [anon_sym_EQ_EQ2] = ACTIONS(2198), + [anon_sym_BANG_EQ2] = ACTIONS(2198), + [anon_sym_LT2] = ACTIONS(2200), + [anon_sym_LT_EQ2] = ACTIONS(2198), + [anon_sym_GT_EQ2] = ACTIONS(2198), + [anon_sym_EQ_TILDE2] = ACTIONS(2198), + [anon_sym_BANG_TILDE2] = ACTIONS(2198), + [anon_sym_like2] = ACTIONS(2198), + [anon_sym_not_DASHlike2] = ACTIONS(2198), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2198), + [anon_sym_PLUS_PLUS2] = ACTIONS(2198), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2198), + [anon_sym_SLASH_SLASH2] = ACTIONS(2198), + [anon_sym_PLUS2] = ACTIONS(2200), + [anon_sym_bit_DASHshl2] = ACTIONS(2198), + [anon_sym_bit_DASHshr2] = ACTIONS(2198), + [anon_sym_bit_DASHand2] = ACTIONS(2198), + [anon_sym_bit_DASHxor2] = ACTIONS(2198), + [anon_sym_bit_DASHor2] = ACTIONS(2198), + [anon_sym_err_GT] = ACTIONS(2200), + [anon_sym_out_GT] = ACTIONS(2200), + [anon_sym_e_GT] = ACTIONS(2200), + [anon_sym_o_GT] = ACTIONS(2200), + [anon_sym_err_PLUSout_GT] = ACTIONS(2200), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), + [anon_sym_o_PLUSe_GT] = ACTIONS(2200), + [anon_sym_e_PLUSo_GT] = ACTIONS(2200), + [anon_sym_err_GT_GT] = ACTIONS(2198), + [anon_sym_out_GT_GT] = ACTIONS(2198), + [anon_sym_e_GT_GT] = ACTIONS(2198), + [anon_sym_o_GT_GT] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(744)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(2149), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(700), [sym__unquoted_with_expr] = STATE(911), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(755), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(744), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(756)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(913), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(681), - [sym__unquoted_with_expr] = STATE(914), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(756), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [STATE(745)] = { + [aux_sym__repeat_newline] = STATE(1129), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(745), + [anon_sym_in] = ACTIONS(2198), + [sym__newline] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_err_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_GT_PIPE] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_GT2] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2198), + [anon_sym_xor2] = ACTIONS(2198), + [anon_sym_or2] = ACTIONS(2198), + [anon_sym_not_DASHin2] = ACTIONS(2198), + [anon_sym_has2] = ACTIONS(2198), + [anon_sym_not_DASHhas2] = ACTIONS(2198), + [anon_sym_starts_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), + [anon_sym_ends_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), + [anon_sym_EQ_EQ2] = ACTIONS(2198), + [anon_sym_BANG_EQ2] = ACTIONS(2198), + [anon_sym_LT2] = ACTIONS(2200), + [anon_sym_LT_EQ2] = ACTIONS(2198), + [anon_sym_GT_EQ2] = ACTIONS(2198), + [anon_sym_EQ_TILDE2] = ACTIONS(2198), + [anon_sym_BANG_TILDE2] = ACTIONS(2198), + [anon_sym_like2] = ACTIONS(2198), + [anon_sym_not_DASHlike2] = ACTIONS(2198), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2198), + [anon_sym_PLUS_PLUS2] = ACTIONS(2198), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2198), + [anon_sym_SLASH_SLASH2] = ACTIONS(2198), + [anon_sym_PLUS2] = ACTIONS(2200), + [anon_sym_bit_DASHshl2] = ACTIONS(2198), + [anon_sym_bit_DASHshr2] = ACTIONS(2198), + [anon_sym_bit_DASHand2] = ACTIONS(2198), + [anon_sym_bit_DASHxor2] = ACTIONS(2198), + [anon_sym_bit_DASHor2] = ACTIONS(2198), + [anon_sym_err_GT] = ACTIONS(2200), + [anon_sym_out_GT] = ACTIONS(2200), + [anon_sym_e_GT] = ACTIONS(2200), + [anon_sym_o_GT] = ACTIONS(2200), + [anon_sym_err_PLUSout_GT] = ACTIONS(2200), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), + [anon_sym_o_PLUSe_GT] = ACTIONS(2200), + [anon_sym_e_PLUSo_GT] = ACTIONS(2200), + [anon_sym_err_GT_GT] = ACTIONS(2198), + [anon_sym_out_GT_GT] = ACTIONS(2198), + [anon_sym_e_GT_GT] = ACTIONS(2198), + [anon_sym_o_GT_GT] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(757)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1142), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(687), - [sym__unquoted_with_expr] = STATE(915), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(757), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(746)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(2150), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(701), + [sym__unquoted_with_expr] = STATE(913), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(746), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(758)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1144), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(688), - [sym__unquoted_with_expr] = STATE(917), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(758), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [STATE(747)] = { + [aux_sym__repeat_newline] = STATE(1063), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(747), + [anon_sym_in] = ACTIONS(2198), + [sym__newline] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_err_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_GT_PIPE] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_GT2] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2198), + [anon_sym_xor2] = ACTIONS(2198), + [anon_sym_or2] = ACTIONS(2198), + [anon_sym_not_DASHin2] = ACTIONS(2198), + [anon_sym_has2] = ACTIONS(2198), + [anon_sym_not_DASHhas2] = ACTIONS(2198), + [anon_sym_starts_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), + [anon_sym_ends_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), + [anon_sym_EQ_EQ2] = ACTIONS(2198), + [anon_sym_BANG_EQ2] = ACTIONS(2198), + [anon_sym_LT2] = ACTIONS(2200), + [anon_sym_LT_EQ2] = ACTIONS(2198), + [anon_sym_GT_EQ2] = ACTIONS(2198), + [anon_sym_EQ_TILDE2] = ACTIONS(2198), + [anon_sym_BANG_TILDE2] = ACTIONS(2198), + [anon_sym_like2] = ACTIONS(2198), + [anon_sym_not_DASHlike2] = ACTIONS(2198), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2198), + [anon_sym_PLUS_PLUS2] = ACTIONS(2198), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2198), + [anon_sym_SLASH_SLASH2] = ACTIONS(2198), + [anon_sym_PLUS2] = ACTIONS(2200), + [anon_sym_bit_DASHshl2] = ACTIONS(2198), + [anon_sym_bit_DASHshr2] = ACTIONS(2198), + [anon_sym_bit_DASHand2] = ACTIONS(2198), + [anon_sym_bit_DASHxor2] = ACTIONS(2198), + [anon_sym_bit_DASHor2] = ACTIONS(2198), + [anon_sym_err_GT] = ACTIONS(2200), + [anon_sym_out_GT] = ACTIONS(2200), + [anon_sym_e_GT] = ACTIONS(2200), + [anon_sym_o_GT] = ACTIONS(2200), + [anon_sym_err_PLUSout_GT] = ACTIONS(2200), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), + [anon_sym_o_PLUSe_GT] = ACTIONS(2200), + [anon_sym_e_PLUSo_GT] = ACTIONS(2200), + [anon_sym_err_GT_GT] = ACTIONS(2198), + [anon_sym_out_GT_GT] = ACTIONS(2198), + [anon_sym_e_GT_GT] = ACTIONS(2198), + [anon_sym_o_GT_GT] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(759)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1145), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(689), - [sym__unquoted_with_expr] = STATE(919), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(759), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(748)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(2152), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(702), + [sym__unquoted_with_expr] = STATE(915), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(748), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(760)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1147), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(937), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(446), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(690), - [sym__unquoted_with_expr] = STATE(922), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(760), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1941), - [aux_sym_cmd_identifier_token4] = ACTIONS(1941), - [aux_sym_cmd_identifier_token5] = ACTIONS(1941), + [STATE(749)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(2159), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1947), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1714), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(703), + [sym__unquoted_with_expr] = STATE(917), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(749), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [anon_sym_DOT_DOT] = ACTIONS(1972), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), + [anon_sym_DOT_DOT_LT] = ACTIONS(1974), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1953), + [sym_val_date] = ACTIONS(1982), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(761)] = { - [sym_cell_path] = STATE(1279), - [sym_path] = STATE(783), - [sym_comment] = STATE(761), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1878), - [anon_sym_in] = ACTIONS(1878), - [sym__newline] = ACTIONS(1878), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_err_GT_PIPE] = ACTIONS(1878), - [anon_sym_out_GT_PIPE] = ACTIONS(1878), - [anon_sym_e_GT_PIPE] = ACTIONS(1878), - [anon_sym_o_GT_PIPE] = ACTIONS(1878), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1878), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1878), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1878), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1878), - [anon_sym_GT2] = ACTIONS(1880), - [anon_sym_DASH2] = ACTIONS(1878), - [anon_sym_STAR2] = ACTIONS(1880), - [anon_sym_and2] = ACTIONS(1878), - [anon_sym_xor2] = ACTIONS(1878), - [anon_sym_or2] = ACTIONS(1878), - [anon_sym_not_DASHin2] = ACTIONS(1878), - [anon_sym_has2] = ACTIONS(1878), - [anon_sym_not_DASHhas2] = ACTIONS(1878), - [anon_sym_starts_DASHwith2] = ACTIONS(1878), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1878), - [anon_sym_ends_DASHwith2] = ACTIONS(1878), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1878), - [anon_sym_EQ_EQ2] = ACTIONS(1878), - [anon_sym_BANG_EQ2] = ACTIONS(1878), - [anon_sym_LT2] = ACTIONS(1880), - [anon_sym_LT_EQ2] = ACTIONS(1878), - [anon_sym_GT_EQ2] = ACTIONS(1878), - [anon_sym_EQ_TILDE2] = ACTIONS(1878), - [anon_sym_BANG_TILDE2] = ACTIONS(1878), - [anon_sym_like2] = ACTIONS(1878), - [anon_sym_not_DASHlike2] = ACTIONS(1878), - [anon_sym_STAR_STAR2] = ACTIONS(1878), - [anon_sym_PLUS_PLUS2] = ACTIONS(1878), - [anon_sym_SLASH2] = ACTIONS(1880), - [anon_sym_mod2] = ACTIONS(1878), - [anon_sym_SLASH_SLASH2] = ACTIONS(1878), - [anon_sym_PLUS2] = ACTIONS(1880), - [anon_sym_bit_DASHshl2] = ACTIONS(1878), - [anon_sym_bit_DASHshr2] = ACTIONS(1878), - [anon_sym_bit_DASHand2] = ACTIONS(1878), - [anon_sym_bit_DASHxor2] = ACTIONS(1878), - [anon_sym_bit_DASHor2] = ACTIONS(1878), - [anon_sym_DOT2] = ACTIONS(2266), - [anon_sym_err_GT] = ACTIONS(1880), - [anon_sym_out_GT] = ACTIONS(1880), - [anon_sym_e_GT] = ACTIONS(1880), - [anon_sym_o_GT] = ACTIONS(1880), - [anon_sym_err_PLUSout_GT] = ACTIONS(1880), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1880), - [anon_sym_o_PLUSe_GT] = ACTIONS(1880), - [anon_sym_e_PLUSo_GT] = ACTIONS(1880), - [anon_sym_err_GT_GT] = ACTIONS(1878), - [anon_sym_out_GT_GT] = ACTIONS(1878), - [anon_sym_e_GT_GT] = ACTIONS(1878), - [anon_sym_o_GT_GT] = ACTIONS(1878), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1878), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1878), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1878), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1878), + [STATE(750)] = { + [sym_cmd_identifier] = STATE(4341), + [sym_expr_parenthesized] = STATE(5062), + [sym__spread_parenthesized] = STATE(4693), + [sym__spread_variable] = STATE(4695), + [sym_val_variable] = STATE(5062), + [sym_val_number] = STATE(5062), + [sym__val_number_decimal] = STATE(1952), + [sym__val_number] = STATE(676), + [sym_val_string] = STATE(5062), + [sym__raw_str] = STATE(2243), + [sym__str_double_quotes] = STATE(2243), + [sym__str_single_quotes] = STATE(2243), + [sym__str_back_ticks] = STATE(2243), + [sym_val_interpolated] = STATE(5062), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym__spread_record] = STATE(4693), + [sym_record_entry] = STATE(4769), + [sym__record_key] = STATE(5228), + [sym_comment] = STATE(750), + [aux_sym_record_body_repeat1] = STATE(750), + [anon_sym_export] = ACTIONS(2204), + [anon_sym_alias] = ACTIONS(2207), + [anon_sym_let] = ACTIONS(2207), + [anon_sym_mut] = ACTIONS(2207), + [anon_sym_const] = ACTIONS(2207), + [aux_sym_cmd_identifier_token1] = ACTIONS(2210), + [anon_sym_def] = ACTIONS(2207), + [anon_sym_use] = ACTIONS(2207), + [anon_sym_export_DASHenv] = ACTIONS(2207), + [anon_sym_extern] = ACTIONS(2207), + [anon_sym_module] = ACTIONS(2207), + [anon_sym_for] = ACTIONS(2207), + [anon_sym_loop] = ACTIONS(2207), + [anon_sym_while] = ACTIONS(2207), + [anon_sym_if] = ACTIONS(2207), + [anon_sym_else] = ACTIONS(2207), + [anon_sym_try] = ACTIONS(2207), + [anon_sym_catch] = ACTIONS(2207), + [anon_sym_match] = ACTIONS(2207), + [anon_sym_in] = ACTIONS(2204), + [anon_sym_true] = ACTIONS(2213), + [anon_sym_false] = ACTIONS(2213), + [anon_sym_null] = ACTIONS(2213), + [aux_sym_cmd_identifier_token3] = ACTIONS(2216), + [aux_sym_cmd_identifier_token4] = ACTIONS(2216), + [aux_sym_cmd_identifier_token5] = ACTIONS(2216), + [anon_sym_LPAREN] = ACTIONS(2219), + [anon_sym_DOLLAR] = ACTIONS(2222), + [anon_sym_DASH2] = ACTIONS(2225), + [anon_sym_PLUS2] = ACTIONS(2225), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2228), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2231), + [aux_sym__val_number_decimal_token1] = ACTIONS(2234), + [aux_sym__val_number_decimal_token2] = ACTIONS(2237), + [aux_sym__val_number_decimal_token3] = ACTIONS(2240), + [aux_sym__val_number_decimal_token4] = ACTIONS(2240), + [aux_sym__val_number_token1] = ACTIONS(2243), + [aux_sym__val_number_token2] = ACTIONS(2243), + [aux_sym__val_number_token3] = ACTIONS(2243), + [anon_sym_DQUOTE] = ACTIONS(2246), + [anon_sym_SQUOTE] = ACTIONS(2249), + [anon_sym_BQUOTE] = ACTIONS(2252), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2255), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2258), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2261), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2264), + }, + [STATE(751)] = { + [aux_sym__repeat_newline] = STATE(3431), + [aux_sym__pipe_separator] = STATE(799), + [sym_comment] = STATE(751), + [anon_sym_export] = ACTIONS(2267), + [anon_sym_alias] = ACTIONS(2269), + [anon_sym_let] = ACTIONS(2269), + [anon_sym_mut] = ACTIONS(2269), + [anon_sym_const] = ACTIONS(2269), + [aux_sym_cmd_identifier_token1] = ACTIONS(2267), + [anon_sym_def] = ACTIONS(2269), + [anon_sym_use] = ACTIONS(2269), + [anon_sym_export_DASHenv] = ACTIONS(2269), + [anon_sym_extern] = ACTIONS(2269), + [anon_sym_module] = ACTIONS(2269), + [anon_sym_for] = ACTIONS(2269), + [anon_sym_loop] = ACTIONS(2269), + [anon_sym_while] = ACTIONS(2269), + [anon_sym_if] = ACTIONS(2269), + [anon_sym_else] = ACTIONS(2269), + [anon_sym_try] = ACTIONS(2269), + [anon_sym_catch] = ACTIONS(2269), + [anon_sym_match] = ACTIONS(2269), + [anon_sym_in] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(2269), + [anon_sym_false] = ACTIONS(2269), + [anon_sym_null] = ACTIONS(2269), + [aux_sym_cmd_identifier_token3] = ACTIONS(2269), + [aux_sym_cmd_identifier_token4] = ACTIONS(2269), + [aux_sym_cmd_identifier_token5] = ACTIONS(2269), + [sym__newline] = ACTIONS(2271), + [anon_sym_PIPE] = ACTIONS(2273), + [anon_sym_err_GT_PIPE] = ACTIONS(2273), + [anon_sym_out_GT_PIPE] = ACTIONS(2273), + [anon_sym_e_GT_PIPE] = ACTIONS(2273), + [anon_sym_o_GT_PIPE] = ACTIONS(2273), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2273), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2273), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2273), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2273), + [anon_sym_LBRACK] = ACTIONS(2269), + [anon_sym_LPAREN] = ACTIONS(2269), + [anon_sym_DOLLAR] = ACTIONS(2267), + [anon_sym_DASH2] = ACTIONS(2267), + [anon_sym_LBRACE] = ACTIONS(2269), + [anon_sym_DOT_DOT] = ACTIONS(2267), + [anon_sym_where] = ACTIONS(2269), + [aux_sym_expr_unary_token1] = ACTIONS(2269), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2269), + [anon_sym_DOT_DOT_LT] = ACTIONS(2269), + [aux_sym__val_number_decimal_token1] = ACTIONS(2267), + [aux_sym__val_number_decimal_token2] = ACTIONS(2269), + [aux_sym__val_number_decimal_token3] = ACTIONS(2269), + [aux_sym__val_number_decimal_token4] = ACTIONS(2269), + [aux_sym__val_number_token1] = ACTIONS(2269), + [aux_sym__val_number_token2] = ACTIONS(2269), + [aux_sym__val_number_token3] = ACTIONS(2269), + [anon_sym_0b] = ACTIONS(2267), + [anon_sym_0o] = ACTIONS(2267), + [anon_sym_0x] = ACTIONS(2267), + [sym_val_date] = ACTIONS(2269), + [anon_sym_DQUOTE] = ACTIONS(2269), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_BQUOTE] = ACTIONS(2269), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2269), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2269), + [anon_sym_CARET] = ACTIONS(2269), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2269), + }, + [STATE(752)] = { + [sym_expr_unary] = STATE(1282), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1282), + [sym__expr_binary_expression] = STATE(1283), + [sym_expr_parenthesized] = STATE(925), + [sym_val_range] = STATE(1282), + [sym__val_range] = STATE(4556), + [sym__value] = STATE(1282), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(968), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(472), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_unquoted] = STATE(996), + [sym__unquoted_with_expr] = STATE(1262), + [sym__unquoted_anonymous_prefix] = STATE(4556), + [sym_comment] = STATE(752), + [anon_sym_true] = ACTIONS(2172), + [anon_sym_false] = ACTIONS(2172), + [anon_sym_null] = ACTIONS(2174), + [aux_sym_cmd_identifier_token3] = ACTIONS(2176), + [aux_sym_cmd_identifier_token4] = ACTIONS(2176), + [aux_sym_cmd_identifier_token5] = ACTIONS(2176), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2178), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2180), + [anon_sym_DOT_DOT_LT] = ACTIONS(2180), + [aux_sym__val_number_decimal_token1] = ACTIONS(2182), + [aux_sym__val_number_decimal_token2] = ACTIONS(2184), + [aux_sym__val_number_decimal_token3] = ACTIONS(2186), + [aux_sym__val_number_decimal_token4] = ACTIONS(2186), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2188), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(762)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1315), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4419), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1033), - [sym__unquoted_with_expr] = STATE(1280), - [sym__unquoted_anonymous_prefix] = STATE(4419), - [sym_comment] = STATE(762), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [STATE(753)] = { + [sym_expr_unary] = STATE(1282), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1282), + [sym__expr_binary_expression] = STATE(1285), + [sym_expr_parenthesized] = STATE(925), + [sym_val_range] = STATE(1282), + [sym__val_range] = STATE(4556), + [sym__value] = STATE(1282), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(968), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(472), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_unquoted] = STATE(999), + [sym__unquoted_with_expr] = STATE(1286), + [sym__unquoted_anonymous_prefix] = STATE(4556), + [sym_comment] = STATE(753), + [anon_sym_true] = ACTIONS(2172), + [anon_sym_false] = ACTIONS(2172), + [anon_sym_null] = ACTIONS(2174), + [aux_sym_cmd_identifier_token3] = ACTIONS(2176), + [aux_sym_cmd_identifier_token4] = ACTIONS(2176), + [aux_sym_cmd_identifier_token5] = ACTIONS(2176), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2178), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2180), + [anon_sym_DOT_DOT_LT] = ACTIONS(2180), + [aux_sym__val_number_decimal_token1] = ACTIONS(2182), + [aux_sym__val_number_decimal_token2] = ACTIONS(2184), + [aux_sym__val_number_decimal_token3] = ACTIONS(2186), + [aux_sym__val_number_decimal_token4] = ACTIONS(2186), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2188), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(763)] = { - [sym_comment] = STATE(763), - [anon_sym_in] = ACTIONS(2268), - [sym__newline] = ACTIONS(2268), - [anon_sym_SEMI] = ACTIONS(2268), - [anon_sym_PIPE] = ACTIONS(2268), - [anon_sym_err_GT_PIPE] = ACTIONS(2268), - [anon_sym_out_GT_PIPE] = ACTIONS(2268), - [anon_sym_e_GT_PIPE] = ACTIONS(2268), - [anon_sym_o_GT_PIPE] = ACTIONS(2268), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2268), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2268), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2268), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2268), - [anon_sym_RPAREN] = ACTIONS(2268), - [anon_sym_GT2] = ACTIONS(2270), - [anon_sym_DASH2] = ACTIONS(2268), - [anon_sym_LBRACE] = ACTIONS(2268), - [anon_sym_RBRACE] = ACTIONS(2268), - [anon_sym_EQ_GT] = ACTIONS(2268), - [anon_sym_STAR2] = ACTIONS(2270), - [anon_sym_and2] = ACTIONS(2268), - [anon_sym_xor2] = ACTIONS(2268), - [anon_sym_or2] = ACTIONS(2268), - [anon_sym_not_DASHin2] = ACTIONS(2268), - [anon_sym_has2] = ACTIONS(2268), - [anon_sym_not_DASHhas2] = ACTIONS(2268), - [anon_sym_starts_DASHwith2] = ACTIONS(2268), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2268), - [anon_sym_ends_DASHwith2] = ACTIONS(2268), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2268), - [anon_sym_EQ_EQ2] = ACTIONS(2268), - [anon_sym_BANG_EQ2] = ACTIONS(2268), - [anon_sym_LT2] = ACTIONS(2270), - [anon_sym_LT_EQ2] = ACTIONS(2268), - [anon_sym_GT_EQ2] = ACTIONS(2268), - [anon_sym_EQ_TILDE2] = ACTIONS(2268), - [anon_sym_BANG_TILDE2] = ACTIONS(2268), - [anon_sym_like2] = ACTIONS(2268), - [anon_sym_not_DASHlike2] = ACTIONS(2268), - [anon_sym_STAR_STAR2] = ACTIONS(2268), - [anon_sym_PLUS_PLUS2] = ACTIONS(2268), - [anon_sym_SLASH2] = ACTIONS(2270), - [anon_sym_mod2] = ACTIONS(2268), - [anon_sym_SLASH_SLASH2] = ACTIONS(2268), - [anon_sym_PLUS2] = ACTIONS(2270), - [anon_sym_bit_DASHshl2] = ACTIONS(2268), - [anon_sym_bit_DASHshr2] = ACTIONS(2268), - [anon_sym_bit_DASHand2] = ACTIONS(2268), - [anon_sym_bit_DASHxor2] = ACTIONS(2268), - [anon_sym_bit_DASHor2] = ACTIONS(2268), - [anon_sym_COLON2] = ACTIONS(2268), - [anon_sym_err_GT] = ACTIONS(2270), - [anon_sym_out_GT] = ACTIONS(2270), - [anon_sym_e_GT] = ACTIONS(2270), - [anon_sym_o_GT] = ACTIONS(2270), - [anon_sym_err_PLUSout_GT] = ACTIONS(2270), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2270), - [anon_sym_o_PLUSe_GT] = ACTIONS(2270), - [anon_sym_e_PLUSo_GT] = ACTIONS(2270), - [anon_sym_err_GT_GT] = ACTIONS(2268), - [anon_sym_out_GT_GT] = ACTIONS(2268), - [anon_sym_e_GT_GT] = ACTIONS(2268), - [anon_sym_o_GT_GT] = ACTIONS(2268), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2268), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2268), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2268), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2268), + [STATE(754)] = { + [sym_comment] = STATE(754), + [ts_builtin_sym_end] = ACTIONS(1527), + [anon_sym_in] = ACTIONS(1527), + [sym__newline] = ACTIONS(1527), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_err_GT_PIPE] = ACTIONS(1527), + [anon_sym_out_GT_PIPE] = ACTIONS(1527), + [anon_sym_e_GT_PIPE] = ACTIONS(1527), + [anon_sym_o_GT_PIPE] = ACTIONS(1527), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1527), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1527), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1527), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1527), + [anon_sym_GT2] = ACTIONS(1525), + [anon_sym_DASH2] = ACTIONS(1527), + [anon_sym_STAR2] = ACTIONS(1525), + [anon_sym_and2] = ACTIONS(1527), + [anon_sym_xor2] = ACTIONS(1527), + [anon_sym_or2] = ACTIONS(1527), + [anon_sym_not_DASHin2] = ACTIONS(1527), + [anon_sym_has2] = ACTIONS(1527), + [anon_sym_not_DASHhas2] = ACTIONS(1527), + [anon_sym_starts_DASHwith2] = ACTIONS(1527), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1527), + [anon_sym_ends_DASHwith2] = ACTIONS(1527), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1527), + [anon_sym_EQ_EQ2] = ACTIONS(1527), + [anon_sym_BANG_EQ2] = ACTIONS(1527), + [anon_sym_LT2] = ACTIONS(1525), + [anon_sym_LT_EQ2] = ACTIONS(1527), + [anon_sym_GT_EQ2] = ACTIONS(1527), + [anon_sym_EQ_TILDE2] = ACTIONS(1527), + [anon_sym_BANG_TILDE2] = ACTIONS(1527), + [anon_sym_like2] = ACTIONS(1527), + [anon_sym_not_DASHlike2] = ACTIONS(1527), + [anon_sym_STAR_STAR2] = ACTIONS(1527), + [anon_sym_PLUS_PLUS2] = ACTIONS(1527), + [anon_sym_SLASH2] = ACTIONS(1525), + [anon_sym_mod2] = ACTIONS(1527), + [anon_sym_SLASH_SLASH2] = ACTIONS(1527), + [anon_sym_PLUS2] = ACTIONS(1525), + [anon_sym_bit_DASHshl2] = ACTIONS(1527), + [anon_sym_bit_DASHshr2] = ACTIONS(1527), + [anon_sym_bit_DASHand2] = ACTIONS(1527), + [anon_sym_bit_DASHxor2] = ACTIONS(1527), + [anon_sym_bit_DASHor2] = ACTIONS(1527), + [anon_sym_DOT_DOT2] = ACTIONS(1525), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1527), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1527), + [anon_sym_DOT2] = ACTIONS(1525), + [anon_sym_err_GT] = ACTIONS(1525), + [anon_sym_out_GT] = ACTIONS(1525), + [anon_sym_e_GT] = ACTIONS(1525), + [anon_sym_o_GT] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT] = ACTIONS(1525), + [anon_sym_err_GT_GT] = ACTIONS(1527), + [anon_sym_out_GT_GT] = ACTIONS(1527), + [anon_sym_e_GT_GT] = ACTIONS(1527), + [anon_sym_o_GT_GT] = ACTIONS(1527), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1527), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1527), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1527), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1527), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(764)] = { - [sym_comment] = STATE(764), - [anon_sym_in] = ACTIONS(2272), - [sym__newline] = ACTIONS(2272), - [anon_sym_SEMI] = ACTIONS(2272), - [anon_sym_PIPE] = ACTIONS(2272), - [anon_sym_err_GT_PIPE] = ACTIONS(2272), - [anon_sym_out_GT_PIPE] = ACTIONS(2272), - [anon_sym_e_GT_PIPE] = ACTIONS(2272), - [anon_sym_o_GT_PIPE] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2272), - [anon_sym_RPAREN] = ACTIONS(2272), - [anon_sym_GT2] = ACTIONS(2274), - [anon_sym_DASH2] = ACTIONS(2272), - [anon_sym_LBRACE] = ACTIONS(2272), - [anon_sym_RBRACE] = ACTIONS(2272), - [anon_sym_EQ_GT] = ACTIONS(2272), - [anon_sym_STAR2] = ACTIONS(2274), - [anon_sym_and2] = ACTIONS(2272), - [anon_sym_xor2] = ACTIONS(2272), - [anon_sym_or2] = ACTIONS(2272), - [anon_sym_not_DASHin2] = ACTIONS(2272), - [anon_sym_has2] = ACTIONS(2272), - [anon_sym_not_DASHhas2] = ACTIONS(2272), - [anon_sym_starts_DASHwith2] = ACTIONS(2272), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2272), - [anon_sym_ends_DASHwith2] = ACTIONS(2272), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2272), - [anon_sym_EQ_EQ2] = ACTIONS(2272), - [anon_sym_BANG_EQ2] = ACTIONS(2272), - [anon_sym_LT2] = ACTIONS(2274), - [anon_sym_LT_EQ2] = ACTIONS(2272), - [anon_sym_GT_EQ2] = ACTIONS(2272), - [anon_sym_EQ_TILDE2] = ACTIONS(2272), - [anon_sym_BANG_TILDE2] = ACTIONS(2272), - [anon_sym_like2] = ACTIONS(2272), - [anon_sym_not_DASHlike2] = ACTIONS(2272), - [anon_sym_STAR_STAR2] = ACTIONS(2272), - [anon_sym_PLUS_PLUS2] = ACTIONS(2272), - [anon_sym_SLASH2] = ACTIONS(2274), - [anon_sym_mod2] = ACTIONS(2272), - [anon_sym_SLASH_SLASH2] = ACTIONS(2272), - [anon_sym_PLUS2] = ACTIONS(2274), - [anon_sym_bit_DASHshl2] = ACTIONS(2272), - [anon_sym_bit_DASHshr2] = ACTIONS(2272), - [anon_sym_bit_DASHand2] = ACTIONS(2272), - [anon_sym_bit_DASHxor2] = ACTIONS(2272), - [anon_sym_bit_DASHor2] = ACTIONS(2272), - [anon_sym_COLON2] = ACTIONS(2272), - [anon_sym_err_GT] = ACTIONS(2274), - [anon_sym_out_GT] = ACTIONS(2274), - [anon_sym_e_GT] = ACTIONS(2274), - [anon_sym_o_GT] = ACTIONS(2274), - [anon_sym_err_PLUSout_GT] = ACTIONS(2274), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2274), - [anon_sym_o_PLUSe_GT] = ACTIONS(2274), - [anon_sym_e_PLUSo_GT] = ACTIONS(2274), - [anon_sym_err_GT_GT] = ACTIONS(2272), - [anon_sym_out_GT_GT] = ACTIONS(2272), - [anon_sym_e_GT_GT] = ACTIONS(2272), - [anon_sym_o_GT_GT] = ACTIONS(2272), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2272), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2272), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2272), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2272), + [STATE(755)] = { + [sym_comment] = STATE(755), + [ts_builtin_sym_end] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [sym__newline] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_err_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_GT_PIPE] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_GT2] = ACTIONS(1740), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_STAR2] = ACTIONS(1740), + [anon_sym_and2] = ACTIONS(1738), + [anon_sym_xor2] = ACTIONS(1738), + [anon_sym_or2] = ACTIONS(1738), + [anon_sym_not_DASHin2] = ACTIONS(1738), + [anon_sym_has2] = ACTIONS(1738), + [anon_sym_not_DASHhas2] = ACTIONS(1738), + [anon_sym_starts_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), + [anon_sym_ends_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), + [anon_sym_EQ_EQ2] = ACTIONS(1738), + [anon_sym_BANG_EQ2] = ACTIONS(1738), + [anon_sym_LT2] = ACTIONS(1740), + [anon_sym_LT_EQ2] = ACTIONS(1738), + [anon_sym_GT_EQ2] = ACTIONS(1738), + [anon_sym_EQ_TILDE2] = ACTIONS(1738), + [anon_sym_BANG_TILDE2] = ACTIONS(1738), + [anon_sym_like2] = ACTIONS(1738), + [anon_sym_not_DASHlike2] = ACTIONS(1738), + [anon_sym_LPAREN2] = ACTIONS(1738), + [anon_sym_STAR_STAR2] = ACTIONS(1738), + [anon_sym_PLUS_PLUS2] = ACTIONS(1738), + [anon_sym_SLASH2] = ACTIONS(1740), + [anon_sym_mod2] = ACTIONS(1738), + [anon_sym_SLASH_SLASH2] = ACTIONS(1738), + [anon_sym_PLUS2] = ACTIONS(1740), + [anon_sym_bit_DASHshl2] = ACTIONS(1738), + [anon_sym_bit_DASHshr2] = ACTIONS(1738), + [anon_sym_bit_DASHand2] = ACTIONS(1738), + [anon_sym_bit_DASHxor2] = ACTIONS(1738), + [anon_sym_bit_DASHor2] = ACTIONS(1738), + [aux_sym__immediate_decimal_token1] = ACTIONS(2275), + [aux_sym__immediate_decimal_token5] = ACTIONS(2277), + [anon_sym_err_GT] = ACTIONS(1740), + [anon_sym_out_GT] = ACTIONS(1740), + [anon_sym_e_GT] = ACTIONS(1740), + [anon_sym_o_GT] = ACTIONS(1740), + [anon_sym_err_PLUSout_GT] = ACTIONS(1740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1740), + [anon_sym_o_PLUSe_GT] = ACTIONS(1740), + [anon_sym_e_PLUSo_GT] = ACTIONS(1740), + [anon_sym_err_GT_GT] = ACTIONS(1738), + [anon_sym_out_GT_GT] = ACTIONS(1738), + [anon_sym_e_GT_GT] = ACTIONS(1738), + [anon_sym_o_GT_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), + [sym__unquoted_pattern] = ACTIONS(1740), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(765)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1286), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4419), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1086), - [sym__unquoted_with_expr] = STATE(1345), - [sym__unquoted_anonymous_prefix] = STATE(4419), - [sym_comment] = STATE(765), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [STATE(756)] = { + [sym_expr_unary] = STATE(1282), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1282), + [sym__expr_binary_expression] = STATE(1287), + [sym_expr_parenthesized] = STATE(925), + [sym_val_range] = STATE(1282), + [sym__val_range] = STATE(4556), + [sym__value] = STATE(1282), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(968), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(472), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_unquoted] = STATE(1000), + [sym__unquoted_with_expr] = STATE(1289), + [sym__unquoted_anonymous_prefix] = STATE(4556), + [sym_comment] = STATE(756), + [anon_sym_true] = ACTIONS(2172), + [anon_sym_false] = ACTIONS(2172), + [anon_sym_null] = ACTIONS(2174), + [aux_sym_cmd_identifier_token3] = ACTIONS(2176), + [aux_sym_cmd_identifier_token4] = ACTIONS(2176), + [aux_sym_cmd_identifier_token5] = ACTIONS(2176), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2178), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2180), + [anon_sym_DOT_DOT_LT] = ACTIONS(2180), + [aux_sym__val_number_decimal_token1] = ACTIONS(2182), + [aux_sym__val_number_decimal_token2] = ACTIONS(2184), + [aux_sym__val_number_decimal_token3] = ACTIONS(2186), + [aux_sym__val_number_decimal_token4] = ACTIONS(2186), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2188), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(766)] = { - [sym_comment] = STATE(766), - [anon_sym_in] = ACTIONS(2276), - [sym__newline] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_PIPE] = ACTIONS(2276), - [anon_sym_err_GT_PIPE] = ACTIONS(2276), - [anon_sym_out_GT_PIPE] = ACTIONS(2276), - [anon_sym_e_GT_PIPE] = ACTIONS(2276), - [anon_sym_o_GT_PIPE] = ACTIONS(2276), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2276), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2276), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2276), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2276), - [anon_sym_RPAREN] = ACTIONS(2276), - [anon_sym_GT2] = ACTIONS(2278), - [anon_sym_DASH2] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_STAR2] = ACTIONS(2278), - [anon_sym_and2] = ACTIONS(2276), - [anon_sym_xor2] = ACTIONS(2276), - [anon_sym_or2] = ACTIONS(2276), - [anon_sym_not_DASHin2] = ACTIONS(2276), - [anon_sym_has2] = ACTIONS(2276), - [anon_sym_not_DASHhas2] = ACTIONS(2276), - [anon_sym_starts_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2276), - [anon_sym_ends_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2276), - [anon_sym_EQ_EQ2] = ACTIONS(2276), - [anon_sym_BANG_EQ2] = ACTIONS(2276), - [anon_sym_LT2] = ACTIONS(2278), - [anon_sym_LT_EQ2] = ACTIONS(2276), - [anon_sym_GT_EQ2] = ACTIONS(2276), - [anon_sym_EQ_TILDE2] = ACTIONS(2276), - [anon_sym_BANG_TILDE2] = ACTIONS(2276), - [anon_sym_like2] = ACTIONS(2276), - [anon_sym_not_DASHlike2] = ACTIONS(2276), - [anon_sym_STAR_STAR2] = ACTIONS(2276), - [anon_sym_PLUS_PLUS2] = ACTIONS(2276), - [anon_sym_SLASH2] = ACTIONS(2278), - [anon_sym_mod2] = ACTIONS(2276), - [anon_sym_SLASH_SLASH2] = ACTIONS(2276), - [anon_sym_PLUS2] = ACTIONS(2278), - [anon_sym_bit_DASHshl2] = ACTIONS(2276), - [anon_sym_bit_DASHshr2] = ACTIONS(2276), - [anon_sym_bit_DASHand2] = ACTIONS(2276), - [anon_sym_bit_DASHxor2] = ACTIONS(2276), - [anon_sym_bit_DASHor2] = ACTIONS(2276), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(2278), - [anon_sym_out_GT] = ACTIONS(2278), - [anon_sym_e_GT] = ACTIONS(2278), - [anon_sym_o_GT] = ACTIONS(2278), - [anon_sym_err_PLUSout_GT] = ACTIONS(2278), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2278), - [anon_sym_o_PLUSe_GT] = ACTIONS(2278), - [anon_sym_e_PLUSo_GT] = ACTIONS(2278), - [anon_sym_err_GT_GT] = ACTIONS(2276), - [anon_sym_out_GT_GT] = ACTIONS(2276), - [anon_sym_e_GT_GT] = ACTIONS(2276), - [anon_sym_o_GT_GT] = ACTIONS(2276), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2276), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2276), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2276), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2276), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(767)] = { - [aux_sym__repeat_newline] = STATE(980), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(767), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [STATE(757)] = { + [sym_expr_unary] = STATE(1282), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1282), + [sym__expr_binary_expression] = STATE(1290), + [sym_expr_parenthesized] = STATE(925), + [sym_val_range] = STATE(1282), + [sym__val_range] = STATE(4556), + [sym__value] = STATE(1282), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(968), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(472), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_unquoted] = STATE(1004), + [sym__unquoted_with_expr] = STATE(1292), + [sym__unquoted_anonymous_prefix] = STATE(4556), + [sym_comment] = STATE(757), + [anon_sym_true] = ACTIONS(2172), + [anon_sym_false] = ACTIONS(2172), + [anon_sym_null] = ACTIONS(2174), + [aux_sym_cmd_identifier_token3] = ACTIONS(2176), + [aux_sym_cmd_identifier_token4] = ACTIONS(2176), + [aux_sym_cmd_identifier_token5] = ACTIONS(2176), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2178), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2180), + [anon_sym_DOT_DOT_LT] = ACTIONS(2180), + [aux_sym__val_number_decimal_token1] = ACTIONS(2182), + [aux_sym__val_number_decimal_token2] = ACTIONS(2184), + [aux_sym__val_number_decimal_token3] = ACTIONS(2186), + [aux_sym__val_number_decimal_token4] = ACTIONS(2186), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2188), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(768)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1314), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4419), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1128), - [sym__unquoted_with_expr] = STATE(1284), - [sym__unquoted_anonymous_prefix] = STATE(4419), - [sym_comment] = STATE(768), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), + [STATE(758)] = { + [sym_expr_unary] = STATE(1282), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1282), + [sym__expr_binary_expression] = STATE(1293), + [sym_expr_parenthesized] = STATE(925), + [sym_val_range] = STATE(1282), + [sym__val_range] = STATE(4556), + [sym__value] = STATE(1282), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(968), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(472), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_unquoted] = STATE(1014), + [sym__unquoted_with_expr] = STATE(1295), + [sym__unquoted_anonymous_prefix] = STATE(4556), + [sym_comment] = STATE(758), + [anon_sym_true] = ACTIONS(2172), + [anon_sym_false] = ACTIONS(2172), + [anon_sym_null] = ACTIONS(2174), + [aux_sym_cmd_identifier_token3] = ACTIONS(2176), + [aux_sym_cmd_identifier_token4] = ACTIONS(2176), + [aux_sym_cmd_identifier_token5] = ACTIONS(2176), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2178), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2180), + [anon_sym_DOT_DOT_LT] = ACTIONS(2180), + [aux_sym__val_number_decimal_token1] = ACTIONS(2182), + [aux_sym__val_number_decimal_token2] = ACTIONS(2184), + [aux_sym__val_number_decimal_token3] = ACTIONS(2186), + [aux_sym__val_number_decimal_token4] = ACTIONS(2186), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), + [sym_val_date] = ACTIONS(2188), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(769)] = { - [aux_sym__repeat_newline] = STATE(983), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(769), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [STATE(759)] = { + [sym_expr_unary] = STATE(1282), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1282), + [sym__expr_binary_expression] = STATE(1296), + [sym_expr_parenthesized] = STATE(925), + [sym_val_range] = STATE(1282), + [sym__val_range] = STATE(4556), + [sym__value] = STATE(1282), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(968), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(472), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_unquoted] = STATE(1038), + [sym__unquoted_with_expr] = STATE(1298), + [sym__unquoted_anonymous_prefix] = STATE(4556), + [sym_comment] = STATE(759), + [anon_sym_true] = ACTIONS(2172), + [anon_sym_false] = ACTIONS(2172), + [anon_sym_null] = ACTIONS(2174), + [aux_sym_cmd_identifier_token3] = ACTIONS(2176), + [aux_sym_cmd_identifier_token4] = ACTIONS(2176), + [aux_sym_cmd_identifier_token5] = ACTIONS(2176), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2178), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2180), + [anon_sym_DOT_DOT_LT] = ACTIONS(2180), + [aux_sym__val_number_decimal_token1] = ACTIONS(2182), + [aux_sym__val_number_decimal_token2] = ACTIONS(2184), + [aux_sym__val_number_decimal_token3] = ACTIONS(2186), + [aux_sym__val_number_decimal_token4] = ACTIONS(2186), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2188), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(770)] = { - [aux_sym__repeat_newline] = STATE(986), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(770), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [STATE(760)] = { + [sym_cell_path] = STATE(1269), + [sym_path] = STATE(712), + [sym_comment] = STATE(760), + [aux_sym__where_predicate_lhs_repeat1] = STATE(547), + [ts_builtin_sym_end] = ACTIONS(1886), + [anon_sym_in] = ACTIONS(1886), + [sym__newline] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1886), + [anon_sym_err_GT_PIPE] = ACTIONS(1886), + [anon_sym_out_GT_PIPE] = ACTIONS(1886), + [anon_sym_e_GT_PIPE] = ACTIONS(1886), + [anon_sym_o_GT_PIPE] = ACTIONS(1886), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1886), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1886), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1886), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1886), + [anon_sym_GT2] = ACTIONS(1889), + [anon_sym_DASH2] = ACTIONS(1886), + [anon_sym_STAR2] = ACTIONS(1889), + [anon_sym_and2] = ACTIONS(1886), + [anon_sym_xor2] = ACTIONS(1886), + [anon_sym_or2] = ACTIONS(1886), + [anon_sym_not_DASHin2] = ACTIONS(1886), + [anon_sym_has2] = ACTIONS(1886), + [anon_sym_not_DASHhas2] = ACTIONS(1886), + [anon_sym_starts_DASHwith2] = ACTIONS(1886), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1886), + [anon_sym_ends_DASHwith2] = ACTIONS(1886), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1886), + [anon_sym_EQ_EQ2] = ACTIONS(1886), + [anon_sym_BANG_EQ2] = ACTIONS(1886), + [anon_sym_LT2] = ACTIONS(1889), + [anon_sym_LT_EQ2] = ACTIONS(1886), + [anon_sym_GT_EQ2] = ACTIONS(1886), + [anon_sym_EQ_TILDE2] = ACTIONS(1886), + [anon_sym_BANG_TILDE2] = ACTIONS(1886), + [anon_sym_like2] = ACTIONS(1886), + [anon_sym_not_DASHlike2] = ACTIONS(1886), + [anon_sym_STAR_STAR2] = ACTIONS(1886), + [anon_sym_PLUS_PLUS2] = ACTIONS(1886), + [anon_sym_SLASH2] = ACTIONS(1889), + [anon_sym_mod2] = ACTIONS(1886), + [anon_sym_SLASH_SLASH2] = ACTIONS(1886), + [anon_sym_PLUS2] = ACTIONS(1889), + [anon_sym_bit_DASHshl2] = ACTIONS(1886), + [anon_sym_bit_DASHshr2] = ACTIONS(1886), + [anon_sym_bit_DASHand2] = ACTIONS(1886), + [anon_sym_bit_DASHxor2] = ACTIONS(1886), + [anon_sym_bit_DASHor2] = ACTIONS(1886), + [anon_sym_DOT2] = ACTIONS(2192), + [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(1886), + [anon_sym_out_GT_GT] = ACTIONS(1886), + [anon_sym_e_GT_GT] = ACTIONS(1886), + [anon_sym_o_GT_GT] = ACTIONS(1886), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1886), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1886), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1886), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1886), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(771)] = { - [aux_sym__repeat_newline] = STATE(990), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(771), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(772)] = { - [aux_sym__repeat_newline] = STATE(992), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(772), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(773)] = { - [sym_comment] = STATE(773), - [anon_sym_in] = ACTIONS(2276), - [sym__newline] = ACTIONS(2284), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_PIPE] = ACTIONS(2287), - [anon_sym_err_GT_PIPE] = ACTIONS(2287), - [anon_sym_out_GT_PIPE] = ACTIONS(2287), - [anon_sym_e_GT_PIPE] = ACTIONS(2287), - [anon_sym_o_GT_PIPE] = ACTIONS(2287), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2287), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2287), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2287), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2287), - [anon_sym_RPAREN] = ACTIONS(2287), - [anon_sym_GT2] = ACTIONS(2278), - [anon_sym_DASH2] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_STAR2] = ACTIONS(2278), - [anon_sym_and2] = ACTIONS(2276), - [anon_sym_xor2] = ACTIONS(2276), - [anon_sym_or2] = ACTIONS(2276), - [anon_sym_not_DASHin2] = ACTIONS(2276), - [anon_sym_has2] = ACTIONS(2276), - [anon_sym_not_DASHhas2] = ACTIONS(2276), - [anon_sym_starts_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2276), - [anon_sym_ends_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2276), - [anon_sym_EQ_EQ2] = ACTIONS(2276), - [anon_sym_BANG_EQ2] = ACTIONS(2276), - [anon_sym_LT2] = ACTIONS(2278), - [anon_sym_LT_EQ2] = ACTIONS(2276), - [anon_sym_GT_EQ2] = ACTIONS(2276), - [anon_sym_EQ_TILDE2] = ACTIONS(2276), - [anon_sym_BANG_TILDE2] = ACTIONS(2276), - [anon_sym_like2] = ACTIONS(2276), - [anon_sym_not_DASHlike2] = ACTIONS(2276), - [anon_sym_STAR_STAR2] = ACTIONS(2276), - [anon_sym_PLUS_PLUS2] = ACTIONS(2276), - [anon_sym_SLASH2] = ACTIONS(2278), - [anon_sym_mod2] = ACTIONS(2276), - [anon_sym_SLASH_SLASH2] = ACTIONS(2276), - [anon_sym_PLUS2] = ACTIONS(2278), - [anon_sym_bit_DASHshl2] = ACTIONS(2276), - [anon_sym_bit_DASHshr2] = ACTIONS(2276), - [anon_sym_bit_DASHand2] = ACTIONS(2276), - [anon_sym_bit_DASHxor2] = ACTIONS(2276), - [anon_sym_bit_DASHor2] = ACTIONS(2276), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(2289), - [anon_sym_out_GT] = ACTIONS(2289), - [anon_sym_e_GT] = ACTIONS(2289), - [anon_sym_o_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT] = ACTIONS(2289), - [anon_sym_err_GT_GT] = ACTIONS(2287), - [anon_sym_out_GT_GT] = ACTIONS(2287), - [anon_sym_e_GT_GT] = ACTIONS(2287), - [anon_sym_o_GT_GT] = ACTIONS(2287), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2287), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2287), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2287), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2287), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(774)] = { - [aux_sym__repeat_newline] = STATE(994), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(774), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(775)] = { - [aux_sym__repeat_newline] = STATE(996), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(775), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(776)] = { - [aux_sym__repeat_newline] = STATE(998), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(776), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(777)] = { - [aux_sym__repeat_newline] = STATE(1002), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(777), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(778)] = { - [aux_sym__repeat_newline] = STATE(1004), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(778), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(779)] = { - [sym_comment] = STATE(779), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(2291), - [aux_sym__immediate_decimal_token5] = ACTIONS(1742), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(780)] = { - [aux_sym__repeat_newline] = STATE(1007), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(780), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(781)] = { - [aux_sym__repeat_newline] = STATE(1009), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(781), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(782)] = { - [aux_sym__repeat_newline] = STATE(1011), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(782), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(783)] = { - [sym_comment] = STATE(783), - [ts_builtin_sym_end] = ACTIONS(1464), - [anon_sym_in] = ACTIONS(1464), - [sym__newline] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_err_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_GT_PIPE] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1464), - [anon_sym_GT2] = ACTIONS(1462), - [anon_sym_DASH2] = ACTIONS(1464), - [anon_sym_STAR2] = ACTIONS(1462), - [anon_sym_and2] = ACTIONS(1464), - [anon_sym_xor2] = ACTIONS(1464), - [anon_sym_or2] = ACTIONS(1464), - [anon_sym_not_DASHin2] = ACTIONS(1464), - [anon_sym_has2] = ACTIONS(1464), - [anon_sym_not_DASHhas2] = ACTIONS(1464), - [anon_sym_starts_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1464), - [anon_sym_ends_DASHwith2] = ACTIONS(1464), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1464), - [anon_sym_EQ_EQ2] = ACTIONS(1464), - [anon_sym_BANG_EQ2] = ACTIONS(1464), - [anon_sym_LT2] = ACTIONS(1462), - [anon_sym_LT_EQ2] = ACTIONS(1464), - [anon_sym_GT_EQ2] = ACTIONS(1464), - [anon_sym_EQ_TILDE2] = ACTIONS(1464), - [anon_sym_BANG_TILDE2] = ACTIONS(1464), - [anon_sym_like2] = ACTIONS(1464), - [anon_sym_not_DASHlike2] = ACTIONS(1464), - [anon_sym_STAR_STAR2] = ACTIONS(1464), - [anon_sym_PLUS_PLUS2] = ACTIONS(1464), - [anon_sym_SLASH2] = ACTIONS(1462), - [anon_sym_mod2] = ACTIONS(1464), - [anon_sym_SLASH_SLASH2] = ACTIONS(1464), - [anon_sym_PLUS2] = ACTIONS(1462), - [anon_sym_bit_DASHshl2] = ACTIONS(1464), - [anon_sym_bit_DASHshr2] = ACTIONS(1464), - [anon_sym_bit_DASHand2] = ACTIONS(1464), - [anon_sym_bit_DASHxor2] = ACTIONS(1464), - [anon_sym_bit_DASHor2] = ACTIONS(1464), - [anon_sym_DOT_DOT2] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1464), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1464), - [anon_sym_DOT2] = ACTIONS(1462), - [anon_sym_err_GT] = ACTIONS(1462), - [anon_sym_out_GT] = ACTIONS(1462), - [anon_sym_e_GT] = ACTIONS(1462), - [anon_sym_o_GT] = ACTIONS(1462), - [anon_sym_err_PLUSout_GT] = ACTIONS(1462), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1462), - [anon_sym_o_PLUSe_GT] = ACTIONS(1462), - [anon_sym_e_PLUSo_GT] = ACTIONS(1462), - [anon_sym_err_GT_GT] = ACTIONS(1464), - [anon_sym_out_GT_GT] = ACTIONS(1464), - [anon_sym_e_GT_GT] = ACTIONS(1464), - [anon_sym_o_GT_GT] = ACTIONS(1464), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1464), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1464), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1464), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1464), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(784)] = { - [sym_comment] = STATE(784), - [ts_builtin_sym_end] = ACTIONS(1522), - [anon_sym_in] = ACTIONS(1522), - [sym__newline] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_err_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_GT_PIPE] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1522), - [anon_sym_GT2] = ACTIONS(1520), - [anon_sym_DASH2] = ACTIONS(1522), - [anon_sym_STAR2] = ACTIONS(1520), - [anon_sym_and2] = ACTIONS(1522), - [anon_sym_xor2] = ACTIONS(1522), - [anon_sym_or2] = ACTIONS(1522), - [anon_sym_not_DASHin2] = ACTIONS(1522), - [anon_sym_has2] = ACTIONS(1522), - [anon_sym_not_DASHhas2] = ACTIONS(1522), - [anon_sym_starts_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1522), - [anon_sym_ends_DASHwith2] = ACTIONS(1522), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1522), - [anon_sym_EQ_EQ2] = ACTIONS(1522), - [anon_sym_BANG_EQ2] = ACTIONS(1522), - [anon_sym_LT2] = ACTIONS(1520), - [anon_sym_LT_EQ2] = ACTIONS(1522), - [anon_sym_GT_EQ2] = ACTIONS(1522), - [anon_sym_EQ_TILDE2] = ACTIONS(1522), - [anon_sym_BANG_TILDE2] = ACTIONS(1522), - [anon_sym_like2] = ACTIONS(1522), - [anon_sym_not_DASHlike2] = ACTIONS(1522), - [anon_sym_STAR_STAR2] = ACTIONS(1522), - [anon_sym_PLUS_PLUS2] = ACTIONS(1522), - [anon_sym_SLASH2] = ACTIONS(1520), - [anon_sym_mod2] = ACTIONS(1522), - [anon_sym_SLASH_SLASH2] = ACTIONS(1522), - [anon_sym_PLUS2] = ACTIONS(1520), - [anon_sym_bit_DASHshl2] = ACTIONS(1522), - [anon_sym_bit_DASHshr2] = ACTIONS(1522), - [anon_sym_bit_DASHand2] = ACTIONS(1522), - [anon_sym_bit_DASHxor2] = ACTIONS(1522), - [anon_sym_bit_DASHor2] = ACTIONS(1522), - [anon_sym_DOT_DOT2] = ACTIONS(1520), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1522), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1522), - [anon_sym_DOT2] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1520), - [anon_sym_out_GT] = ACTIONS(1520), - [anon_sym_e_GT] = ACTIONS(1520), - [anon_sym_o_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT] = ACTIONS(1520), - [anon_sym_err_GT_GT] = ACTIONS(1522), - [anon_sym_out_GT_GT] = ACTIONS(1522), - [anon_sym_e_GT_GT] = ACTIONS(1522), - [anon_sym_o_GT_GT] = ACTIONS(1522), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1522), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1522), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1522), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1522), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(785)] = { - [sym_cell_path] = STATE(1272), - [sym_path] = STATE(783), - [sym_comment] = STATE(785), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1858), - [anon_sym_in] = ACTIONS(1858), - [sym__newline] = ACTIONS(1858), - [anon_sym_SEMI] = ACTIONS(1858), - [anon_sym_PIPE] = ACTIONS(1858), - [anon_sym_err_GT_PIPE] = ACTIONS(1858), - [anon_sym_out_GT_PIPE] = ACTIONS(1858), - [anon_sym_e_GT_PIPE] = ACTIONS(1858), - [anon_sym_o_GT_PIPE] = ACTIONS(1858), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1858), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1858), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1858), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1858), - [anon_sym_GT2] = ACTIONS(1860), - [anon_sym_DASH2] = ACTIONS(1858), - [anon_sym_STAR2] = ACTIONS(1860), - [anon_sym_and2] = ACTIONS(1858), - [anon_sym_xor2] = ACTIONS(1858), - [anon_sym_or2] = ACTIONS(1858), - [anon_sym_not_DASHin2] = ACTIONS(1858), - [anon_sym_has2] = ACTIONS(1858), - [anon_sym_not_DASHhas2] = ACTIONS(1858), - [anon_sym_starts_DASHwith2] = ACTIONS(1858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1858), - [anon_sym_ends_DASHwith2] = ACTIONS(1858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1858), - [anon_sym_EQ_EQ2] = ACTIONS(1858), - [anon_sym_BANG_EQ2] = ACTIONS(1858), - [anon_sym_LT2] = ACTIONS(1860), - [anon_sym_LT_EQ2] = ACTIONS(1858), - [anon_sym_GT_EQ2] = ACTIONS(1858), - [anon_sym_EQ_TILDE2] = ACTIONS(1858), - [anon_sym_BANG_TILDE2] = ACTIONS(1858), - [anon_sym_like2] = ACTIONS(1858), - [anon_sym_not_DASHlike2] = ACTIONS(1858), - [anon_sym_STAR_STAR2] = ACTIONS(1858), - [anon_sym_PLUS_PLUS2] = ACTIONS(1858), - [anon_sym_SLASH2] = ACTIONS(1860), - [anon_sym_mod2] = ACTIONS(1858), - [anon_sym_SLASH_SLASH2] = ACTIONS(1858), - [anon_sym_PLUS2] = ACTIONS(1860), - [anon_sym_bit_DASHshl2] = ACTIONS(1858), - [anon_sym_bit_DASHshr2] = ACTIONS(1858), - [anon_sym_bit_DASHand2] = ACTIONS(1858), - [anon_sym_bit_DASHxor2] = ACTIONS(1858), - [anon_sym_bit_DASHor2] = ACTIONS(1858), - [anon_sym_DOT2] = ACTIONS(2266), - [anon_sym_err_GT] = ACTIONS(1860), - [anon_sym_out_GT] = ACTIONS(1860), - [anon_sym_e_GT] = ACTIONS(1860), - [anon_sym_o_GT] = ACTIONS(1860), - [anon_sym_err_PLUSout_GT] = ACTIONS(1860), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1860), - [anon_sym_o_PLUSe_GT] = ACTIONS(1860), - [anon_sym_e_PLUSo_GT] = ACTIONS(1860), - [anon_sym_err_GT_GT] = ACTIONS(1858), - [anon_sym_out_GT_GT] = ACTIONS(1858), - [anon_sym_e_GT_GT] = ACTIONS(1858), - [anon_sym_o_GT_GT] = ACTIONS(1858), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1858), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1858), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1858), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1858), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(786)] = { - [sym_comment] = STATE(786), - [ts_builtin_sym_end] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [aux_sym__immediate_decimal_token1] = ACTIONS(2293), - [aux_sym__immediate_decimal_token5] = ACTIONS(2295), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(787)] = { - [sym_cell_path] = STATE(1273), - [sym_path] = STATE(783), - [sym_comment] = STATE(787), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [sym__newline] = ACTIONS(1862), - [anon_sym_SEMI] = ACTIONS(1862), - [anon_sym_PIPE] = ACTIONS(1862), - [anon_sym_err_GT_PIPE] = ACTIONS(1862), - [anon_sym_out_GT_PIPE] = ACTIONS(1862), - [anon_sym_e_GT_PIPE] = ACTIONS(1862), - [anon_sym_o_GT_PIPE] = ACTIONS(1862), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1862), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1862), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1862), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1862), - [anon_sym_GT2] = ACTIONS(1864), - [anon_sym_DASH2] = ACTIONS(1862), - [anon_sym_STAR2] = ACTIONS(1864), - [anon_sym_and2] = ACTIONS(1862), - [anon_sym_xor2] = ACTIONS(1862), - [anon_sym_or2] = ACTIONS(1862), - [anon_sym_not_DASHin2] = ACTIONS(1862), - [anon_sym_has2] = ACTIONS(1862), - [anon_sym_not_DASHhas2] = ACTIONS(1862), - [anon_sym_starts_DASHwith2] = ACTIONS(1862), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1862), - [anon_sym_ends_DASHwith2] = ACTIONS(1862), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1862), - [anon_sym_EQ_EQ2] = ACTIONS(1862), - [anon_sym_BANG_EQ2] = ACTIONS(1862), - [anon_sym_LT2] = ACTIONS(1864), - [anon_sym_LT_EQ2] = ACTIONS(1862), - [anon_sym_GT_EQ2] = ACTIONS(1862), - [anon_sym_EQ_TILDE2] = ACTIONS(1862), - [anon_sym_BANG_TILDE2] = ACTIONS(1862), - [anon_sym_like2] = ACTIONS(1862), - [anon_sym_not_DASHlike2] = ACTIONS(1862), - [anon_sym_STAR_STAR2] = ACTIONS(1862), - [anon_sym_PLUS_PLUS2] = ACTIONS(1862), - [anon_sym_SLASH2] = ACTIONS(1864), - [anon_sym_mod2] = ACTIONS(1862), - [anon_sym_SLASH_SLASH2] = ACTIONS(1862), - [anon_sym_PLUS2] = ACTIONS(1864), - [anon_sym_bit_DASHshl2] = ACTIONS(1862), - [anon_sym_bit_DASHshr2] = ACTIONS(1862), - [anon_sym_bit_DASHand2] = ACTIONS(1862), - [anon_sym_bit_DASHxor2] = ACTIONS(1862), - [anon_sym_bit_DASHor2] = ACTIONS(1862), - [anon_sym_DOT2] = ACTIONS(2266), - [anon_sym_err_GT] = ACTIONS(1864), - [anon_sym_out_GT] = ACTIONS(1864), - [anon_sym_e_GT] = ACTIONS(1864), - [anon_sym_o_GT] = ACTIONS(1864), - [anon_sym_err_PLUSout_GT] = ACTIONS(1864), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1864), - [anon_sym_o_PLUSe_GT] = ACTIONS(1864), - [anon_sym_e_PLUSo_GT] = ACTIONS(1864), - [anon_sym_err_GT_GT] = ACTIONS(1862), - [anon_sym_out_GT_GT] = ACTIONS(1862), - [anon_sym_e_GT_GT] = ACTIONS(1862), - [anon_sym_o_GT_GT] = ACTIONS(1862), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1862), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1862), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1862), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1862), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(788)] = { - [aux_sym__repeat_newline] = STATE(912), - [aux_sym__pipe_separator] = STATE(885), - [sym_comment] = STATE(788), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_alias] = ACTIONS(2299), - [anon_sym_let] = ACTIONS(2299), - [anon_sym_mut] = ACTIONS(2299), - [anon_sym_const] = ACTIONS(2299), - [aux_sym_cmd_identifier_token1] = ACTIONS(2297), - [anon_sym_def] = ACTIONS(2299), - [anon_sym_use] = ACTIONS(2299), - [anon_sym_export_DASHenv] = ACTIONS(2299), - [anon_sym_extern] = ACTIONS(2299), - [anon_sym_module] = ACTIONS(2299), - [anon_sym_for] = ACTIONS(2299), - [anon_sym_loop] = ACTIONS(2299), - [anon_sym_while] = ACTIONS(2299), - [anon_sym_if] = ACTIONS(2299), - [anon_sym_else] = ACTIONS(2299), - [anon_sym_try] = ACTIONS(2299), - [anon_sym_catch] = ACTIONS(2299), - [anon_sym_match] = ACTIONS(2299), - [anon_sym_in] = ACTIONS(2297), - [anon_sym_true] = ACTIONS(2299), - [anon_sym_false] = ACTIONS(2299), - [anon_sym_null] = ACTIONS(2299), - [aux_sym_cmd_identifier_token3] = ACTIONS(2299), - [aux_sym_cmd_identifier_token4] = ACTIONS(2299), - [aux_sym_cmd_identifier_token5] = ACTIONS(2299), - [sym__newline] = ACTIONS(2301), - [anon_sym_PIPE] = ACTIONS(2303), - [anon_sym_err_GT_PIPE] = ACTIONS(2303), - [anon_sym_out_GT_PIPE] = ACTIONS(2303), - [anon_sym_e_GT_PIPE] = ACTIONS(2303), - [anon_sym_o_GT_PIPE] = ACTIONS(2303), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2303), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2303), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2303), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2303), - [anon_sym_LBRACK] = ACTIONS(2299), - [anon_sym_LPAREN] = ACTIONS(2299), - [anon_sym_DOLLAR] = ACTIONS(2297), - [anon_sym_DASH2] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2299), - [anon_sym_DOT_DOT] = ACTIONS(2297), - [anon_sym_where] = ACTIONS(2299), - [aux_sym_expr_unary_token1] = ACTIONS(2299), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2299), - [anon_sym_DOT_DOT_LT] = ACTIONS(2299), - [aux_sym__val_number_decimal_token1] = ACTIONS(2297), - [aux_sym__val_number_decimal_token2] = ACTIONS(2299), - [aux_sym__val_number_decimal_token3] = ACTIONS(2299), - [aux_sym__val_number_decimal_token4] = ACTIONS(2299), - [aux_sym__val_number_token1] = ACTIONS(2299), - [aux_sym__val_number_token2] = ACTIONS(2299), - [aux_sym__val_number_token3] = ACTIONS(2299), - [anon_sym_0b] = ACTIONS(2297), - [anon_sym_0o] = ACTIONS(2297), - [anon_sym_0x] = ACTIONS(2297), - [sym_val_date] = ACTIONS(2299), - [anon_sym_DQUOTE] = ACTIONS(2299), - [anon_sym_SQUOTE] = ACTIONS(2299), - [anon_sym_BQUOTE] = ACTIONS(2299), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2299), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2299), - [anon_sym_CARET] = ACTIONS(2299), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2299), - }, - [STATE(789)] = { - [sym_cmd_identifier] = STATE(4167), - [sym_expr_parenthesized] = STATE(5186), - [sym__spread_parenthesized] = STATE(4688), - [sym__spread_variable] = STATE(4697), - [sym_val_variable] = STATE(4330), - [sym_val_number] = STATE(5186), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(5186), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(5186), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4688), - [sym_record_entry] = STATE(4569), - [sym__record_key] = STATE(4982), - [sym_comment] = STATE(789), - [aux_sym__match_pattern_record_body_repeat1] = STATE(837), + [STATE(761)] = { + [sym_cmd_identifier] = STATE(4341), + [sym_expr_parenthesized] = STATE(5062), + [sym__spread_parenthesized] = STATE(4693), + [sym__spread_variable] = STATE(4695), + [sym_val_variable] = STATE(4144), + [sym_val_number] = STATE(5062), + [sym__val_number_decimal] = STATE(1952), + [sym__val_number] = STATE(676), + [sym_val_string] = STATE(5062), + [sym__raw_str] = STATE(2243), + [sym__str_double_quotes] = STATE(2243), + [sym__str_single_quotes] = STATE(2243), + [sym__str_back_ticks] = STATE(2243), + [sym_val_interpolated] = STATE(5062), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym__spread_record] = STATE(4693), + [sym_record_entry] = STATE(4461), + [sym__record_key] = STATE(5228), + [sym_comment] = STATE(761), + [aux_sym__match_pattern_record_body_repeat1] = STATE(822), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -106863,2548 +105109,4158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(790)] = { - [sym_cell_path] = STATE(1292), - [sym_path] = STATE(783), - [sym_comment] = STATE(790), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1850), - [anon_sym_in] = ACTIONS(1850), - [sym__newline] = ACTIONS(1850), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_PIPE] = ACTIONS(1850), - [anon_sym_err_GT_PIPE] = ACTIONS(1850), - [anon_sym_out_GT_PIPE] = ACTIONS(1850), - [anon_sym_e_GT_PIPE] = ACTIONS(1850), - [anon_sym_o_GT_PIPE] = ACTIONS(1850), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1850), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1850), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1850), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1850), - [anon_sym_GT2] = ACTIONS(1853), - [anon_sym_DASH2] = ACTIONS(1850), - [anon_sym_STAR2] = ACTIONS(1853), - [anon_sym_and2] = ACTIONS(1850), - [anon_sym_xor2] = ACTIONS(1850), - [anon_sym_or2] = ACTIONS(1850), - [anon_sym_not_DASHin2] = ACTIONS(1850), - [anon_sym_has2] = ACTIONS(1850), - [anon_sym_not_DASHhas2] = ACTIONS(1850), - [anon_sym_starts_DASHwith2] = ACTIONS(1850), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1850), - [anon_sym_ends_DASHwith2] = ACTIONS(1850), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1850), - [anon_sym_EQ_EQ2] = ACTIONS(1850), - [anon_sym_BANG_EQ2] = ACTIONS(1850), - [anon_sym_LT2] = ACTIONS(1853), - [anon_sym_LT_EQ2] = ACTIONS(1850), - [anon_sym_GT_EQ2] = ACTIONS(1850), - [anon_sym_EQ_TILDE2] = ACTIONS(1850), - [anon_sym_BANG_TILDE2] = ACTIONS(1850), - [anon_sym_like2] = ACTIONS(1850), - [anon_sym_not_DASHlike2] = ACTIONS(1850), - [anon_sym_STAR_STAR2] = ACTIONS(1850), - [anon_sym_PLUS_PLUS2] = ACTIONS(1850), - [anon_sym_SLASH2] = ACTIONS(1853), - [anon_sym_mod2] = ACTIONS(1850), - [anon_sym_SLASH_SLASH2] = ACTIONS(1850), - [anon_sym_PLUS2] = ACTIONS(1853), - [anon_sym_bit_DASHshl2] = ACTIONS(1850), - [anon_sym_bit_DASHshr2] = ACTIONS(1850), - [anon_sym_bit_DASHand2] = ACTIONS(1850), - [anon_sym_bit_DASHxor2] = ACTIONS(1850), - [anon_sym_bit_DASHor2] = ACTIONS(1850), - [anon_sym_DOT2] = ACTIONS(2266), - [anon_sym_err_GT] = ACTIONS(1853), - [anon_sym_out_GT] = ACTIONS(1853), - [anon_sym_e_GT] = ACTIONS(1853), - [anon_sym_o_GT] = ACTIONS(1853), - [anon_sym_err_PLUSout_GT] = ACTIONS(1853), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1853), - [anon_sym_o_PLUSe_GT] = ACTIONS(1853), - [anon_sym_e_PLUSo_GT] = ACTIONS(1853), - [anon_sym_err_GT_GT] = ACTIONS(1850), - [anon_sym_out_GT_GT] = ACTIONS(1850), - [anon_sym_e_GT_GT] = ACTIONS(1850), - [anon_sym_o_GT_GT] = ACTIONS(1850), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1850), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1850), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1850), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1850), + [STATE(762)] = { + [sym_comment] = STATE(762), + [anon_sym_in] = ACTIONS(2074), + [sym__newline] = ACTIONS(2076), + [anon_sym_SEMI] = ACTIONS(2076), + [anon_sym_PIPE] = ACTIONS(2076), + [anon_sym_err_GT_PIPE] = ACTIONS(2076), + [anon_sym_out_GT_PIPE] = ACTIONS(2076), + [anon_sym_e_GT_PIPE] = ACTIONS(2076), + [anon_sym_o_GT_PIPE] = ACTIONS(2076), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2076), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2076), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2076), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2076), + [anon_sym_GT2] = ACTIONS(2078), + [anon_sym_DASH2] = ACTIONS(2074), + [anon_sym_RBRACE] = ACTIONS(2076), + [anon_sym_STAR2] = ACTIONS(2078), + [anon_sym_and2] = ACTIONS(2074), + [anon_sym_xor2] = ACTIONS(2074), + [anon_sym_or2] = ACTIONS(2074), + [anon_sym_not_DASHin2] = ACTIONS(2074), + [anon_sym_has2] = ACTIONS(2074), + [anon_sym_not_DASHhas2] = ACTIONS(2074), + [anon_sym_starts_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2074), + [anon_sym_ends_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2074), + [anon_sym_EQ_EQ2] = ACTIONS(2074), + [anon_sym_BANG_EQ2] = ACTIONS(2074), + [anon_sym_LT2] = ACTIONS(2078), + [anon_sym_LT_EQ2] = ACTIONS(2074), + [anon_sym_GT_EQ2] = ACTIONS(2074), + [anon_sym_EQ_TILDE2] = ACTIONS(2074), + [anon_sym_BANG_TILDE2] = ACTIONS(2074), + [anon_sym_like2] = ACTIONS(2074), + [anon_sym_not_DASHlike2] = ACTIONS(2074), + [anon_sym_STAR_STAR2] = ACTIONS(2074), + [anon_sym_PLUS_PLUS2] = ACTIONS(2074), + [anon_sym_SLASH2] = ACTIONS(2078), + [anon_sym_mod2] = ACTIONS(2074), + [anon_sym_SLASH_SLASH2] = ACTIONS(2074), + [anon_sym_PLUS2] = ACTIONS(2078), + [anon_sym_bit_DASHshl2] = ACTIONS(2074), + [anon_sym_bit_DASHshr2] = ACTIONS(2074), + [anon_sym_bit_DASHand2] = ACTIONS(2074), + [anon_sym_bit_DASHxor2] = ACTIONS(2074), + [anon_sym_bit_DASHor2] = ACTIONS(2074), + [anon_sym_DOT_DOT2] = ACTIONS(1619), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), + [anon_sym_COLON2] = ACTIONS(1691), + [anon_sym_err_GT] = ACTIONS(2080), + [anon_sym_out_GT] = ACTIONS(2080), + [anon_sym_e_GT] = ACTIONS(2080), + [anon_sym_o_GT] = ACTIONS(2080), + [anon_sym_err_PLUSout_GT] = ACTIONS(2080), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2080), + [anon_sym_o_PLUSe_GT] = ACTIONS(2080), + [anon_sym_e_PLUSo_GT] = ACTIONS(2080), + [anon_sym_err_GT_GT] = ACTIONS(2076), + [anon_sym_out_GT_GT] = ACTIONS(2076), + [anon_sym_e_GT_GT] = ACTIONS(2076), + [anon_sym_o_GT_GT] = ACTIONS(2076), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2076), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2076), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2076), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2076), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(791)] = { - [sym_comment] = STATE(791), - [ts_builtin_sym_end] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(2305), - [aux_sym__immediate_decimal_token5] = ACTIONS(2307), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), + [STATE(763)] = { + [aux_sym__repeat_newline] = STATE(1020), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(763), + [anon_sym_in] = ACTIONS(2279), + [sym__newline] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_err_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_GT_PIPE] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_GT2] = ACTIONS(2281), + [anon_sym_DASH2] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_STAR2] = ACTIONS(2281), + [anon_sym_and2] = ACTIONS(2279), + [anon_sym_xor2] = ACTIONS(2279), + [anon_sym_or2] = ACTIONS(2279), + [anon_sym_not_DASHin2] = ACTIONS(2279), + [anon_sym_has2] = ACTIONS(2279), + [anon_sym_not_DASHhas2] = ACTIONS(2279), + [anon_sym_starts_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), + [anon_sym_ends_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), + [anon_sym_EQ_EQ2] = ACTIONS(2279), + [anon_sym_BANG_EQ2] = ACTIONS(2279), + [anon_sym_LT2] = ACTIONS(2281), + [anon_sym_LT_EQ2] = ACTIONS(2279), + [anon_sym_GT_EQ2] = ACTIONS(2279), + [anon_sym_EQ_TILDE2] = ACTIONS(2279), + [anon_sym_BANG_TILDE2] = ACTIONS(2279), + [anon_sym_like2] = ACTIONS(2279), + [anon_sym_not_DASHlike2] = ACTIONS(2279), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2279), + [anon_sym_PLUS_PLUS2] = ACTIONS(2279), + [anon_sym_SLASH2] = ACTIONS(2281), + [anon_sym_mod2] = ACTIONS(2279), + [anon_sym_SLASH_SLASH2] = ACTIONS(2279), + [anon_sym_PLUS2] = ACTIONS(2281), + [anon_sym_bit_DASHshl2] = ACTIONS(2279), + [anon_sym_bit_DASHshr2] = ACTIONS(2279), + [anon_sym_bit_DASHand2] = ACTIONS(2279), + [anon_sym_bit_DASHxor2] = ACTIONS(2279), + [anon_sym_bit_DASHor2] = ACTIONS(2279), + [anon_sym_err_GT] = ACTIONS(2281), + [anon_sym_out_GT] = ACTIONS(2281), + [anon_sym_e_GT] = ACTIONS(2281), + [anon_sym_o_GT] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT] = ACTIONS(2281), + [anon_sym_err_GT_GT] = ACTIONS(2279), + [anon_sym_out_GT_GT] = ACTIONS(2279), + [anon_sym_e_GT_GT] = ACTIONS(2279), + [anon_sym_o_GT_GT] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(792)] = { - [aux_sym__repeat_newline] = STATE(1034), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(792), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(764)] = { + [aux_sym__repeat_newline] = STATE(1027), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(764), + [anon_sym_in] = ACTIONS(2279), + [sym__newline] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_err_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_GT_PIPE] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_GT2] = ACTIONS(2281), + [anon_sym_DASH2] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_STAR2] = ACTIONS(2281), + [anon_sym_and2] = ACTIONS(2279), + [anon_sym_xor2] = ACTIONS(2279), + [anon_sym_or2] = ACTIONS(2279), + [anon_sym_not_DASHin2] = ACTIONS(2279), + [anon_sym_has2] = ACTIONS(2279), + [anon_sym_not_DASHhas2] = ACTIONS(2279), + [anon_sym_starts_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), + [anon_sym_ends_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), + [anon_sym_EQ_EQ2] = ACTIONS(2279), + [anon_sym_BANG_EQ2] = ACTIONS(2279), + [anon_sym_LT2] = ACTIONS(2281), + [anon_sym_LT_EQ2] = ACTIONS(2279), + [anon_sym_GT_EQ2] = ACTIONS(2279), + [anon_sym_EQ_TILDE2] = ACTIONS(2279), + [anon_sym_BANG_TILDE2] = ACTIONS(2279), + [anon_sym_like2] = ACTIONS(2279), + [anon_sym_not_DASHlike2] = ACTIONS(2279), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2279), + [anon_sym_PLUS_PLUS2] = ACTIONS(2279), + [anon_sym_SLASH2] = ACTIONS(2281), + [anon_sym_mod2] = ACTIONS(2279), + [anon_sym_SLASH_SLASH2] = ACTIONS(2279), + [anon_sym_PLUS2] = ACTIONS(2281), + [anon_sym_bit_DASHshl2] = ACTIONS(2279), + [anon_sym_bit_DASHshr2] = ACTIONS(2279), + [anon_sym_bit_DASHand2] = ACTIONS(2279), + [anon_sym_bit_DASHxor2] = ACTIONS(2279), + [anon_sym_bit_DASHor2] = ACTIONS(2279), + [anon_sym_err_GT] = ACTIONS(2281), + [anon_sym_out_GT] = ACTIONS(2281), + [anon_sym_e_GT] = ACTIONS(2281), + [anon_sym_o_GT] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT] = ACTIONS(2281), + [anon_sym_err_GT_GT] = ACTIONS(2279), + [anon_sym_out_GT_GT] = ACTIONS(2279), + [anon_sym_e_GT_GT] = ACTIONS(2279), + [anon_sym_o_GT_GT] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(793)] = { - [aux_sym__repeat_newline] = STATE(1035), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(793), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(765)] = { + [aux_sym__repeat_newline] = STATE(1028), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(765), + [anon_sym_in] = ACTIONS(2279), + [sym__newline] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_err_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_GT_PIPE] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_GT2] = ACTIONS(2281), + [anon_sym_DASH2] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_STAR2] = ACTIONS(2281), + [anon_sym_and2] = ACTIONS(2279), + [anon_sym_xor2] = ACTIONS(2279), + [anon_sym_or2] = ACTIONS(2279), + [anon_sym_not_DASHin2] = ACTIONS(2279), + [anon_sym_has2] = ACTIONS(2279), + [anon_sym_not_DASHhas2] = ACTIONS(2279), + [anon_sym_starts_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), + [anon_sym_ends_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), + [anon_sym_EQ_EQ2] = ACTIONS(2279), + [anon_sym_BANG_EQ2] = ACTIONS(2279), + [anon_sym_LT2] = ACTIONS(2281), + [anon_sym_LT_EQ2] = ACTIONS(2279), + [anon_sym_GT_EQ2] = ACTIONS(2279), + [anon_sym_EQ_TILDE2] = ACTIONS(2279), + [anon_sym_BANG_TILDE2] = ACTIONS(2279), + [anon_sym_like2] = ACTIONS(2279), + [anon_sym_not_DASHlike2] = ACTIONS(2279), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2279), + [anon_sym_PLUS_PLUS2] = ACTIONS(2279), + [anon_sym_SLASH2] = ACTIONS(2281), + [anon_sym_mod2] = ACTIONS(2279), + [anon_sym_SLASH_SLASH2] = ACTIONS(2279), + [anon_sym_PLUS2] = ACTIONS(2281), + [anon_sym_bit_DASHshl2] = ACTIONS(2279), + [anon_sym_bit_DASHshr2] = ACTIONS(2279), + [anon_sym_bit_DASHand2] = ACTIONS(2279), + [anon_sym_bit_DASHxor2] = ACTIONS(2279), + [anon_sym_bit_DASHor2] = ACTIONS(2279), + [anon_sym_err_GT] = ACTIONS(2281), + [anon_sym_out_GT] = ACTIONS(2281), + [anon_sym_e_GT] = ACTIONS(2281), + [anon_sym_o_GT] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT] = ACTIONS(2281), + [anon_sym_err_GT_GT] = ACTIONS(2279), + [anon_sym_out_GT_GT] = ACTIONS(2279), + [anon_sym_e_GT_GT] = ACTIONS(2279), + [anon_sym_o_GT_GT] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(794)] = { - [aux_sym__repeat_newline] = STATE(1036), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(794), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(766)] = { + [sym_comment] = STATE(766), + [ts_builtin_sym_end] = ACTIONS(1728), + [anon_sym_in] = ACTIONS(1728), + [sym__newline] = ACTIONS(1728), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_err_GT_PIPE] = ACTIONS(1728), + [anon_sym_out_GT_PIPE] = ACTIONS(1728), + [anon_sym_e_GT_PIPE] = ACTIONS(1728), + [anon_sym_o_GT_PIPE] = ACTIONS(1728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1728), + [anon_sym_GT2] = ACTIONS(1730), + [anon_sym_DASH2] = ACTIONS(1728), + [anon_sym_STAR2] = ACTIONS(1730), + [anon_sym_and2] = ACTIONS(1728), + [anon_sym_xor2] = ACTIONS(1728), + [anon_sym_or2] = ACTIONS(1728), + [anon_sym_not_DASHin2] = ACTIONS(1728), + [anon_sym_has2] = ACTIONS(1728), + [anon_sym_not_DASHhas2] = ACTIONS(1728), + [anon_sym_starts_DASHwith2] = ACTIONS(1728), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1728), + [anon_sym_ends_DASHwith2] = ACTIONS(1728), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1728), + [anon_sym_EQ_EQ2] = ACTIONS(1728), + [anon_sym_BANG_EQ2] = ACTIONS(1728), + [anon_sym_LT2] = ACTIONS(1730), + [anon_sym_LT_EQ2] = ACTIONS(1728), + [anon_sym_GT_EQ2] = ACTIONS(1728), + [anon_sym_EQ_TILDE2] = ACTIONS(1728), + [anon_sym_BANG_TILDE2] = ACTIONS(1728), + [anon_sym_like2] = ACTIONS(1728), + [anon_sym_not_DASHlike2] = ACTIONS(1728), + [anon_sym_LPAREN2] = ACTIONS(1728), + [anon_sym_STAR_STAR2] = ACTIONS(1728), + [anon_sym_PLUS_PLUS2] = ACTIONS(1728), + [anon_sym_SLASH2] = ACTIONS(1730), + [anon_sym_mod2] = ACTIONS(1728), + [anon_sym_SLASH_SLASH2] = ACTIONS(1728), + [anon_sym_PLUS2] = ACTIONS(1730), + [anon_sym_bit_DASHshl2] = ACTIONS(1728), + [anon_sym_bit_DASHshr2] = ACTIONS(1728), + [anon_sym_bit_DASHand2] = ACTIONS(1728), + [anon_sym_bit_DASHxor2] = ACTIONS(1728), + [anon_sym_bit_DASHor2] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(2283), + [aux_sym__immediate_decimal_token5] = ACTIONS(2285), + [anon_sym_err_GT] = ACTIONS(1730), + [anon_sym_out_GT] = ACTIONS(1730), + [anon_sym_e_GT] = ACTIONS(1730), + [anon_sym_o_GT] = ACTIONS(1730), + [anon_sym_err_PLUSout_GT] = ACTIONS(1730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1730), + [anon_sym_o_PLUSe_GT] = ACTIONS(1730), + [anon_sym_e_PLUSo_GT] = ACTIONS(1730), + [anon_sym_err_GT_GT] = ACTIONS(1728), + [anon_sym_out_GT_GT] = ACTIONS(1728), + [anon_sym_e_GT_GT] = ACTIONS(1728), + [anon_sym_o_GT_GT] = ACTIONS(1728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1728), + [sym__unquoted_pattern] = ACTIONS(1730), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(795)] = { - [sym_comment] = STATE(795), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [aux_sym__immediate_decimal_token5] = ACTIONS(2066), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), + [STATE(767)] = { + [aux_sym__repeat_newline] = STATE(1029), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(767), + [anon_sym_in] = ACTIONS(2279), + [sym__newline] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_err_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_GT_PIPE] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_GT2] = ACTIONS(2281), + [anon_sym_DASH2] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_STAR2] = ACTIONS(2281), + [anon_sym_and2] = ACTIONS(2279), + [anon_sym_xor2] = ACTIONS(2279), + [anon_sym_or2] = ACTIONS(2279), + [anon_sym_not_DASHin2] = ACTIONS(2279), + [anon_sym_has2] = ACTIONS(2279), + [anon_sym_not_DASHhas2] = ACTIONS(2279), + [anon_sym_starts_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), + [anon_sym_ends_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), + [anon_sym_EQ_EQ2] = ACTIONS(2279), + [anon_sym_BANG_EQ2] = ACTIONS(2279), + [anon_sym_LT2] = ACTIONS(2281), + [anon_sym_LT_EQ2] = ACTIONS(2279), + [anon_sym_GT_EQ2] = ACTIONS(2279), + [anon_sym_EQ_TILDE2] = ACTIONS(2279), + [anon_sym_BANG_TILDE2] = ACTIONS(2279), + [anon_sym_like2] = ACTIONS(2279), + [anon_sym_not_DASHlike2] = ACTIONS(2279), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2279), + [anon_sym_PLUS_PLUS2] = ACTIONS(2279), + [anon_sym_SLASH2] = ACTIONS(2281), + [anon_sym_mod2] = ACTIONS(2279), + [anon_sym_SLASH_SLASH2] = ACTIONS(2279), + [anon_sym_PLUS2] = ACTIONS(2281), + [anon_sym_bit_DASHshl2] = ACTIONS(2279), + [anon_sym_bit_DASHshr2] = ACTIONS(2279), + [anon_sym_bit_DASHand2] = ACTIONS(2279), + [anon_sym_bit_DASHxor2] = ACTIONS(2279), + [anon_sym_bit_DASHor2] = ACTIONS(2279), + [anon_sym_err_GT] = ACTIONS(2281), + [anon_sym_out_GT] = ACTIONS(2281), + [anon_sym_e_GT] = ACTIONS(2281), + [anon_sym_o_GT] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT] = ACTIONS(2281), + [anon_sym_err_GT_GT] = ACTIONS(2279), + [anon_sym_out_GT_GT] = ACTIONS(2279), + [anon_sym_e_GT_GT] = ACTIONS(2279), + [anon_sym_o_GT_GT] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(796)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2186), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(679), - [sym__unquoted_with_expr] = STATE(911), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(796), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [STATE(768)] = { + [aux_sym__repeat_newline] = STATE(1030), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(768), + [anon_sym_in] = ACTIONS(2279), + [sym__newline] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_err_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_GT_PIPE] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_GT2] = ACTIONS(2281), + [anon_sym_DASH2] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_STAR2] = ACTIONS(2281), + [anon_sym_and2] = ACTIONS(2279), + [anon_sym_xor2] = ACTIONS(2279), + [anon_sym_or2] = ACTIONS(2279), + [anon_sym_not_DASHin2] = ACTIONS(2279), + [anon_sym_has2] = ACTIONS(2279), + [anon_sym_not_DASHhas2] = ACTIONS(2279), + [anon_sym_starts_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), + [anon_sym_ends_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), + [anon_sym_EQ_EQ2] = ACTIONS(2279), + [anon_sym_BANG_EQ2] = ACTIONS(2279), + [anon_sym_LT2] = ACTIONS(2281), + [anon_sym_LT_EQ2] = ACTIONS(2279), + [anon_sym_GT_EQ2] = ACTIONS(2279), + [anon_sym_EQ_TILDE2] = ACTIONS(2279), + [anon_sym_BANG_TILDE2] = ACTIONS(2279), + [anon_sym_like2] = ACTIONS(2279), + [anon_sym_not_DASHlike2] = ACTIONS(2279), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2279), + [anon_sym_PLUS_PLUS2] = ACTIONS(2279), + [anon_sym_SLASH2] = ACTIONS(2281), + [anon_sym_mod2] = ACTIONS(2279), + [anon_sym_SLASH_SLASH2] = ACTIONS(2279), + [anon_sym_PLUS2] = ACTIONS(2281), + [anon_sym_bit_DASHshl2] = ACTIONS(2279), + [anon_sym_bit_DASHshr2] = ACTIONS(2279), + [anon_sym_bit_DASHand2] = ACTIONS(2279), + [anon_sym_bit_DASHxor2] = ACTIONS(2279), + [anon_sym_bit_DASHor2] = ACTIONS(2279), + [anon_sym_err_GT] = ACTIONS(2281), + [anon_sym_out_GT] = ACTIONS(2281), + [anon_sym_e_GT] = ACTIONS(2281), + [anon_sym_o_GT] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT] = ACTIONS(2281), + [anon_sym_err_GT_GT] = ACTIONS(2279), + [anon_sym_out_GT_GT] = ACTIONS(2279), + [anon_sym_e_GT_GT] = ACTIONS(2279), + [anon_sym_o_GT_GT] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(797)] = { - [aux_sym__repeat_newline] = STATE(1037), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(797), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(769)] = { + [sym_comment] = STATE(769), + [anon_sym_in] = ACTIONS(1728), + [sym__newline] = ACTIONS(1728), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_err_GT_PIPE] = ACTIONS(1728), + [anon_sym_out_GT_PIPE] = ACTIONS(1728), + [anon_sym_e_GT_PIPE] = ACTIONS(1728), + [anon_sym_o_GT_PIPE] = ACTIONS(1728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1728), + [anon_sym_RPAREN] = ACTIONS(1728), + [anon_sym_GT2] = ACTIONS(1730), + [anon_sym_DASH2] = ACTIONS(1728), + [anon_sym_RBRACE] = ACTIONS(1728), + [anon_sym_STAR2] = ACTIONS(1730), + [anon_sym_and2] = ACTIONS(1728), + [anon_sym_xor2] = ACTIONS(1728), + [anon_sym_or2] = ACTIONS(1728), + [anon_sym_not_DASHin2] = ACTIONS(1728), + [anon_sym_has2] = ACTIONS(1728), + [anon_sym_not_DASHhas2] = ACTIONS(1728), + [anon_sym_starts_DASHwith2] = ACTIONS(1728), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1728), + [anon_sym_ends_DASHwith2] = ACTIONS(1728), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1728), + [anon_sym_EQ_EQ2] = ACTIONS(1728), + [anon_sym_BANG_EQ2] = ACTIONS(1728), + [anon_sym_LT2] = ACTIONS(1730), + [anon_sym_LT_EQ2] = ACTIONS(1728), + [anon_sym_GT_EQ2] = ACTIONS(1728), + [anon_sym_EQ_TILDE2] = ACTIONS(1728), + [anon_sym_BANG_TILDE2] = ACTIONS(1728), + [anon_sym_like2] = ACTIONS(1728), + [anon_sym_not_DASHlike2] = ACTIONS(1728), + [anon_sym_LPAREN2] = ACTIONS(1728), + [anon_sym_STAR_STAR2] = ACTIONS(1728), + [anon_sym_PLUS_PLUS2] = ACTIONS(1728), + [anon_sym_SLASH2] = ACTIONS(1730), + [anon_sym_mod2] = ACTIONS(1728), + [anon_sym_SLASH_SLASH2] = ACTIONS(1728), + [anon_sym_PLUS2] = ACTIONS(1730), + [anon_sym_bit_DASHshl2] = ACTIONS(1728), + [anon_sym_bit_DASHshr2] = ACTIONS(1728), + [anon_sym_bit_DASHand2] = ACTIONS(1728), + [anon_sym_bit_DASHxor2] = ACTIONS(1728), + [anon_sym_bit_DASHor2] = ACTIONS(1728), + [aux_sym__immediate_decimal_token5] = ACTIONS(2130), + [anon_sym_err_GT] = ACTIONS(1730), + [anon_sym_out_GT] = ACTIONS(1730), + [anon_sym_e_GT] = ACTIONS(1730), + [anon_sym_o_GT] = ACTIONS(1730), + [anon_sym_err_PLUSout_GT] = ACTIONS(1730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1730), + [anon_sym_o_PLUSe_GT] = ACTIONS(1730), + [anon_sym_e_PLUSo_GT] = ACTIONS(1730), + [anon_sym_err_GT_GT] = ACTIONS(1728), + [anon_sym_out_GT_GT] = ACTIONS(1728), + [anon_sym_e_GT_GT] = ACTIONS(1728), + [anon_sym_o_GT_GT] = ACTIONS(1728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1728), + [sym__unquoted_pattern] = ACTIONS(1730), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(798)] = { - [aux_sym__repeat_newline] = STATE(1038), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(798), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(770)] = { + [aux_sym__repeat_newline] = STATE(1031), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(770), + [anon_sym_in] = ACTIONS(2279), + [sym__newline] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_err_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_GT_PIPE] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_GT2] = ACTIONS(2281), + [anon_sym_DASH2] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_STAR2] = ACTIONS(2281), + [anon_sym_and2] = ACTIONS(2279), + [anon_sym_xor2] = ACTIONS(2279), + [anon_sym_or2] = ACTIONS(2279), + [anon_sym_not_DASHin2] = ACTIONS(2279), + [anon_sym_has2] = ACTIONS(2279), + [anon_sym_not_DASHhas2] = ACTIONS(2279), + [anon_sym_starts_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), + [anon_sym_ends_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), + [anon_sym_EQ_EQ2] = ACTIONS(2279), + [anon_sym_BANG_EQ2] = ACTIONS(2279), + [anon_sym_LT2] = ACTIONS(2281), + [anon_sym_LT_EQ2] = ACTIONS(2279), + [anon_sym_GT_EQ2] = ACTIONS(2279), + [anon_sym_EQ_TILDE2] = ACTIONS(2279), + [anon_sym_BANG_TILDE2] = ACTIONS(2279), + [anon_sym_like2] = ACTIONS(2279), + [anon_sym_not_DASHlike2] = ACTIONS(2279), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2279), + [anon_sym_PLUS_PLUS2] = ACTIONS(2279), + [anon_sym_SLASH2] = ACTIONS(2281), + [anon_sym_mod2] = ACTIONS(2279), + [anon_sym_SLASH_SLASH2] = ACTIONS(2279), + [anon_sym_PLUS2] = ACTIONS(2281), + [anon_sym_bit_DASHshl2] = ACTIONS(2279), + [anon_sym_bit_DASHshr2] = ACTIONS(2279), + [anon_sym_bit_DASHand2] = ACTIONS(2279), + [anon_sym_bit_DASHxor2] = ACTIONS(2279), + [anon_sym_bit_DASHor2] = ACTIONS(2279), + [anon_sym_err_GT] = ACTIONS(2281), + [anon_sym_out_GT] = ACTIONS(2281), + [anon_sym_e_GT] = ACTIONS(2281), + [anon_sym_o_GT] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT] = ACTIONS(2281), + [anon_sym_err_GT_GT] = ACTIONS(2279), + [anon_sym_out_GT_GT] = ACTIONS(2279), + [anon_sym_e_GT_GT] = ACTIONS(2279), + [anon_sym_o_GT_GT] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(799)] = { - [aux_sym__repeat_newline] = STATE(1039), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(799), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(771)] = { + [sym_comment] = STATE(771), + [anon_sym_in] = ACTIONS(1806), + [sym__newline] = ACTIONS(1806), + [anon_sym_SEMI] = ACTIONS(1806), + [anon_sym_PIPE] = ACTIONS(1806), + [anon_sym_err_GT_PIPE] = ACTIONS(1806), + [anon_sym_out_GT_PIPE] = ACTIONS(1806), + [anon_sym_e_GT_PIPE] = ACTIONS(1806), + [anon_sym_o_GT_PIPE] = ACTIONS(1806), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1806), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1806), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1806), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1806), + [anon_sym_RPAREN] = ACTIONS(1806), + [anon_sym_GT2] = ACTIONS(1808), + [anon_sym_DASH2] = ACTIONS(1806), + [anon_sym_RBRACE] = ACTIONS(1806), + [anon_sym_STAR2] = ACTIONS(1808), + [anon_sym_and2] = ACTIONS(1806), + [anon_sym_xor2] = ACTIONS(1806), + [anon_sym_or2] = ACTIONS(1806), + [anon_sym_not_DASHin2] = ACTIONS(1806), + [anon_sym_has2] = ACTIONS(1806), + [anon_sym_not_DASHhas2] = ACTIONS(1806), + [anon_sym_starts_DASHwith2] = ACTIONS(1806), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1806), + [anon_sym_ends_DASHwith2] = ACTIONS(1806), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1806), + [anon_sym_EQ_EQ2] = ACTIONS(1806), + [anon_sym_BANG_EQ2] = ACTIONS(1806), + [anon_sym_LT2] = ACTIONS(1808), + [anon_sym_LT_EQ2] = ACTIONS(1806), + [anon_sym_GT_EQ2] = ACTIONS(1806), + [anon_sym_EQ_TILDE2] = ACTIONS(1806), + [anon_sym_BANG_TILDE2] = ACTIONS(1806), + [anon_sym_like2] = ACTIONS(1806), + [anon_sym_not_DASHlike2] = ACTIONS(1806), + [anon_sym_LPAREN2] = ACTIONS(1806), + [anon_sym_STAR_STAR2] = ACTIONS(1806), + [anon_sym_PLUS_PLUS2] = ACTIONS(1806), + [anon_sym_SLASH2] = ACTIONS(1808), + [anon_sym_mod2] = ACTIONS(1806), + [anon_sym_SLASH_SLASH2] = ACTIONS(1806), + [anon_sym_PLUS2] = ACTIONS(1808), + [anon_sym_bit_DASHshl2] = ACTIONS(1806), + [anon_sym_bit_DASHshr2] = ACTIONS(1806), + [anon_sym_bit_DASHand2] = ACTIONS(1806), + [anon_sym_bit_DASHxor2] = ACTIONS(1806), + [anon_sym_bit_DASHor2] = ACTIONS(1806), + [aux_sym__immediate_decimal_token5] = ACTIONS(2287), + [anon_sym_err_GT] = ACTIONS(1808), + [anon_sym_out_GT] = ACTIONS(1808), + [anon_sym_e_GT] = ACTIONS(1808), + [anon_sym_o_GT] = ACTIONS(1808), + [anon_sym_err_PLUSout_GT] = ACTIONS(1808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1808), + [anon_sym_o_PLUSe_GT] = ACTIONS(1808), + [anon_sym_e_PLUSo_GT] = ACTIONS(1808), + [anon_sym_err_GT_GT] = ACTIONS(1806), + [anon_sym_out_GT_GT] = ACTIONS(1806), + [anon_sym_e_GT_GT] = ACTIONS(1806), + [anon_sym_o_GT_GT] = ACTIONS(1806), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1806), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1806), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1806), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1806), + [sym__unquoted_pattern] = ACTIONS(1808), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(800)] = { - [aux_sym__repeat_newline] = STATE(1040), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(800), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(772)] = { + [aux_sym__repeat_newline] = STATE(1032), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(772), + [anon_sym_in] = ACTIONS(2279), + [sym__newline] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_err_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_GT_PIPE] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_GT2] = ACTIONS(2281), + [anon_sym_DASH2] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_STAR2] = ACTIONS(2281), + [anon_sym_and2] = ACTIONS(2279), + [anon_sym_xor2] = ACTIONS(2279), + [anon_sym_or2] = ACTIONS(2279), + [anon_sym_not_DASHin2] = ACTIONS(2279), + [anon_sym_has2] = ACTIONS(2279), + [anon_sym_not_DASHhas2] = ACTIONS(2279), + [anon_sym_starts_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), + [anon_sym_ends_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), + [anon_sym_EQ_EQ2] = ACTIONS(2279), + [anon_sym_BANG_EQ2] = ACTIONS(2279), + [anon_sym_LT2] = ACTIONS(2281), + [anon_sym_LT_EQ2] = ACTIONS(2279), + [anon_sym_GT_EQ2] = ACTIONS(2279), + [anon_sym_EQ_TILDE2] = ACTIONS(2279), + [anon_sym_BANG_TILDE2] = ACTIONS(2279), + [anon_sym_like2] = ACTIONS(2279), + [anon_sym_not_DASHlike2] = ACTIONS(2279), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2279), + [anon_sym_PLUS_PLUS2] = ACTIONS(2279), + [anon_sym_SLASH2] = ACTIONS(2281), + [anon_sym_mod2] = ACTIONS(2279), + [anon_sym_SLASH_SLASH2] = ACTIONS(2279), + [anon_sym_PLUS2] = ACTIONS(2281), + [anon_sym_bit_DASHshl2] = ACTIONS(2279), + [anon_sym_bit_DASHshr2] = ACTIONS(2279), + [anon_sym_bit_DASHand2] = ACTIONS(2279), + [anon_sym_bit_DASHxor2] = ACTIONS(2279), + [anon_sym_bit_DASHor2] = ACTIONS(2279), + [anon_sym_err_GT] = ACTIONS(2281), + [anon_sym_out_GT] = ACTIONS(2281), + [anon_sym_e_GT] = ACTIONS(2281), + [anon_sym_o_GT] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT] = ACTIONS(2281), + [anon_sym_err_GT_GT] = ACTIONS(2279), + [anon_sym_out_GT_GT] = ACTIONS(2279), + [anon_sym_e_GT_GT] = ACTIONS(2279), + [anon_sym_o_GT_GT] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(801)] = { - [aux_sym__repeat_newline] = STATE(1041), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(801), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(773)] = { + [aux_sym__repeat_newline] = STATE(1033), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(773), + [anon_sym_in] = ACTIONS(2279), + [sym__newline] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_err_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_GT_PIPE] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_GT2] = ACTIONS(2281), + [anon_sym_DASH2] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_STAR2] = ACTIONS(2281), + [anon_sym_and2] = ACTIONS(2279), + [anon_sym_xor2] = ACTIONS(2279), + [anon_sym_or2] = ACTIONS(2279), + [anon_sym_not_DASHin2] = ACTIONS(2279), + [anon_sym_has2] = ACTIONS(2279), + [anon_sym_not_DASHhas2] = ACTIONS(2279), + [anon_sym_starts_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), + [anon_sym_ends_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), + [anon_sym_EQ_EQ2] = ACTIONS(2279), + [anon_sym_BANG_EQ2] = ACTIONS(2279), + [anon_sym_LT2] = ACTIONS(2281), + [anon_sym_LT_EQ2] = ACTIONS(2279), + [anon_sym_GT_EQ2] = ACTIONS(2279), + [anon_sym_EQ_TILDE2] = ACTIONS(2279), + [anon_sym_BANG_TILDE2] = ACTIONS(2279), + [anon_sym_like2] = ACTIONS(2279), + [anon_sym_not_DASHlike2] = ACTIONS(2279), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2279), + [anon_sym_PLUS_PLUS2] = ACTIONS(2279), + [anon_sym_SLASH2] = ACTIONS(2281), + [anon_sym_mod2] = ACTIONS(2279), + [anon_sym_SLASH_SLASH2] = ACTIONS(2279), + [anon_sym_PLUS2] = ACTIONS(2281), + [anon_sym_bit_DASHshl2] = ACTIONS(2279), + [anon_sym_bit_DASHshr2] = ACTIONS(2279), + [anon_sym_bit_DASHand2] = ACTIONS(2279), + [anon_sym_bit_DASHxor2] = ACTIONS(2279), + [anon_sym_bit_DASHor2] = ACTIONS(2279), + [anon_sym_err_GT] = ACTIONS(2281), + [anon_sym_out_GT] = ACTIONS(2281), + [anon_sym_e_GT] = ACTIONS(2281), + [anon_sym_o_GT] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT] = ACTIONS(2281), + [anon_sym_err_GT_GT] = ACTIONS(2279), + [anon_sym_out_GT_GT] = ACTIONS(2279), + [anon_sym_e_GT_GT] = ACTIONS(2279), + [anon_sym_o_GT_GT] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(802)] = { - [aux_sym__repeat_newline] = STATE(1130), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(802), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(774)] = { + [aux_sym__repeat_newline] = STATE(1035), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(774), + [anon_sym_in] = ACTIONS(2279), + [sym__newline] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_err_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_GT_PIPE] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_GT2] = ACTIONS(2281), + [anon_sym_DASH2] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_STAR2] = ACTIONS(2281), + [anon_sym_and2] = ACTIONS(2279), + [anon_sym_xor2] = ACTIONS(2279), + [anon_sym_or2] = ACTIONS(2279), + [anon_sym_not_DASHin2] = ACTIONS(2279), + [anon_sym_has2] = ACTIONS(2279), + [anon_sym_not_DASHhas2] = ACTIONS(2279), + [anon_sym_starts_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), + [anon_sym_ends_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), + [anon_sym_EQ_EQ2] = ACTIONS(2279), + [anon_sym_BANG_EQ2] = ACTIONS(2279), + [anon_sym_LT2] = ACTIONS(2281), + [anon_sym_LT_EQ2] = ACTIONS(2279), + [anon_sym_GT_EQ2] = ACTIONS(2279), + [anon_sym_EQ_TILDE2] = ACTIONS(2279), + [anon_sym_BANG_TILDE2] = ACTIONS(2279), + [anon_sym_like2] = ACTIONS(2279), + [anon_sym_not_DASHlike2] = ACTIONS(2279), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2279), + [anon_sym_PLUS_PLUS2] = ACTIONS(2279), + [anon_sym_SLASH2] = ACTIONS(2281), + [anon_sym_mod2] = ACTIONS(2279), + [anon_sym_SLASH_SLASH2] = ACTIONS(2279), + [anon_sym_PLUS2] = ACTIONS(2281), + [anon_sym_bit_DASHshl2] = ACTIONS(2279), + [anon_sym_bit_DASHshr2] = ACTIONS(2279), + [anon_sym_bit_DASHand2] = ACTIONS(2279), + [anon_sym_bit_DASHxor2] = ACTIONS(2279), + [anon_sym_bit_DASHor2] = ACTIONS(2279), + [anon_sym_err_GT] = ACTIONS(2281), + [anon_sym_out_GT] = ACTIONS(2281), + [anon_sym_e_GT] = ACTIONS(2281), + [anon_sym_o_GT] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT] = ACTIONS(2281), + [anon_sym_err_GT_GT] = ACTIONS(2279), + [anon_sym_out_GT_GT] = ACTIONS(2279), + [anon_sym_e_GT_GT] = ACTIONS(2279), + [anon_sym_o_GT_GT] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(803)] = { - [aux_sym__repeat_newline] = STATE(1044), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(803), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(775)] = { + [aux_sym__repeat_newline] = STATE(1036), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(775), + [anon_sym_in] = ACTIONS(2279), + [sym__newline] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_err_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_GT_PIPE] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_GT2] = ACTIONS(2281), + [anon_sym_DASH2] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_STAR2] = ACTIONS(2281), + [anon_sym_and2] = ACTIONS(2279), + [anon_sym_xor2] = ACTIONS(2279), + [anon_sym_or2] = ACTIONS(2279), + [anon_sym_not_DASHin2] = ACTIONS(2279), + [anon_sym_has2] = ACTIONS(2279), + [anon_sym_not_DASHhas2] = ACTIONS(2279), + [anon_sym_starts_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), + [anon_sym_ends_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), + [anon_sym_EQ_EQ2] = ACTIONS(2279), + [anon_sym_BANG_EQ2] = ACTIONS(2279), + [anon_sym_LT2] = ACTIONS(2281), + [anon_sym_LT_EQ2] = ACTIONS(2279), + [anon_sym_GT_EQ2] = ACTIONS(2279), + [anon_sym_EQ_TILDE2] = ACTIONS(2279), + [anon_sym_BANG_TILDE2] = ACTIONS(2279), + [anon_sym_like2] = ACTIONS(2279), + [anon_sym_not_DASHlike2] = ACTIONS(2279), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2279), + [anon_sym_PLUS_PLUS2] = ACTIONS(2279), + [anon_sym_SLASH2] = ACTIONS(2281), + [anon_sym_mod2] = ACTIONS(2279), + [anon_sym_SLASH_SLASH2] = ACTIONS(2279), + [anon_sym_PLUS2] = ACTIONS(2281), + [anon_sym_bit_DASHshl2] = ACTIONS(2279), + [anon_sym_bit_DASHshr2] = ACTIONS(2279), + [anon_sym_bit_DASHand2] = ACTIONS(2279), + [anon_sym_bit_DASHxor2] = ACTIONS(2279), + [anon_sym_bit_DASHor2] = ACTIONS(2279), + [anon_sym_err_GT] = ACTIONS(2281), + [anon_sym_out_GT] = ACTIONS(2281), + [anon_sym_e_GT] = ACTIONS(2281), + [anon_sym_o_GT] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT] = ACTIONS(2281), + [anon_sym_err_GT_GT] = ACTIONS(2279), + [anon_sym_out_GT_GT] = ACTIONS(2279), + [anon_sym_e_GT_GT] = ACTIONS(2279), + [anon_sym_o_GT_GT] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(804)] = { - [aux_sym__repeat_newline] = STATE(1045), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(804), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(776)] = { + [aux_sym__repeat_newline] = STATE(1037), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(776), + [anon_sym_in] = ACTIONS(2279), + [sym__newline] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_err_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_GT_PIPE] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_GT2] = ACTIONS(2281), + [anon_sym_DASH2] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_STAR2] = ACTIONS(2281), + [anon_sym_and2] = ACTIONS(2279), + [anon_sym_xor2] = ACTIONS(2279), + [anon_sym_or2] = ACTIONS(2279), + [anon_sym_not_DASHin2] = ACTIONS(2279), + [anon_sym_has2] = ACTIONS(2279), + [anon_sym_not_DASHhas2] = ACTIONS(2279), + [anon_sym_starts_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), + [anon_sym_ends_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), + [anon_sym_EQ_EQ2] = ACTIONS(2279), + [anon_sym_BANG_EQ2] = ACTIONS(2279), + [anon_sym_LT2] = ACTIONS(2281), + [anon_sym_LT_EQ2] = ACTIONS(2279), + [anon_sym_GT_EQ2] = ACTIONS(2279), + [anon_sym_EQ_TILDE2] = ACTIONS(2279), + [anon_sym_BANG_TILDE2] = ACTIONS(2279), + [anon_sym_like2] = ACTIONS(2279), + [anon_sym_not_DASHlike2] = ACTIONS(2279), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2279), + [anon_sym_PLUS_PLUS2] = ACTIONS(2279), + [anon_sym_SLASH2] = ACTIONS(2281), + [anon_sym_mod2] = ACTIONS(2279), + [anon_sym_SLASH_SLASH2] = ACTIONS(2279), + [anon_sym_PLUS2] = ACTIONS(2281), + [anon_sym_bit_DASHshl2] = ACTIONS(2279), + [anon_sym_bit_DASHshr2] = ACTIONS(2279), + [anon_sym_bit_DASHand2] = ACTIONS(2279), + [anon_sym_bit_DASHxor2] = ACTIONS(2279), + [anon_sym_bit_DASHor2] = ACTIONS(2279), + [anon_sym_err_GT] = ACTIONS(2281), + [anon_sym_out_GT] = ACTIONS(2281), + [anon_sym_e_GT] = ACTIONS(2281), + [anon_sym_o_GT] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT] = ACTIONS(2281), + [anon_sym_err_GT_GT] = ACTIONS(2279), + [anon_sym_out_GT_GT] = ACTIONS(2279), + [anon_sym_e_GT_GT] = ACTIONS(2279), + [anon_sym_o_GT_GT] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(805)] = { - [aux_sym__repeat_newline] = STATE(1052), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(805), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(777)] = { + [aux_sym__repeat_newline] = STATE(1049), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(777), + [anon_sym_in] = ACTIONS(2279), + [sym__newline] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_err_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_GT_PIPE] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_GT2] = ACTIONS(2281), + [anon_sym_DASH2] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_STAR2] = ACTIONS(2281), + [anon_sym_and2] = ACTIONS(2279), + [anon_sym_xor2] = ACTIONS(2279), + [anon_sym_or2] = ACTIONS(2279), + [anon_sym_not_DASHin2] = ACTIONS(2279), + [anon_sym_has2] = ACTIONS(2279), + [anon_sym_not_DASHhas2] = ACTIONS(2279), + [anon_sym_starts_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), + [anon_sym_ends_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), + [anon_sym_EQ_EQ2] = ACTIONS(2279), + [anon_sym_BANG_EQ2] = ACTIONS(2279), + [anon_sym_LT2] = ACTIONS(2281), + [anon_sym_LT_EQ2] = ACTIONS(2279), + [anon_sym_GT_EQ2] = ACTIONS(2279), + [anon_sym_EQ_TILDE2] = ACTIONS(2279), + [anon_sym_BANG_TILDE2] = ACTIONS(2279), + [anon_sym_like2] = ACTIONS(2279), + [anon_sym_not_DASHlike2] = ACTIONS(2279), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2279), + [anon_sym_PLUS_PLUS2] = ACTIONS(2279), + [anon_sym_SLASH2] = ACTIONS(2281), + [anon_sym_mod2] = ACTIONS(2279), + [anon_sym_SLASH_SLASH2] = ACTIONS(2279), + [anon_sym_PLUS2] = ACTIONS(2281), + [anon_sym_bit_DASHshl2] = ACTIONS(2279), + [anon_sym_bit_DASHshr2] = ACTIONS(2279), + [anon_sym_bit_DASHand2] = ACTIONS(2279), + [anon_sym_bit_DASHxor2] = ACTIONS(2279), + [anon_sym_bit_DASHor2] = ACTIONS(2279), + [anon_sym_err_GT] = ACTIONS(2281), + [anon_sym_out_GT] = ACTIONS(2281), + [anon_sym_e_GT] = ACTIONS(2281), + [anon_sym_o_GT] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT] = ACTIONS(2281), + [anon_sym_err_GT_GT] = ACTIONS(2279), + [anon_sym_out_GT_GT] = ACTIONS(2279), + [anon_sym_e_GT_GT] = ACTIONS(2279), + [anon_sym_o_GT_GT] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(806)] = { - [aux_sym__repeat_newline] = STATE(1053), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(806), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(778)] = { + [aux_sym__repeat_newline] = STATE(1065), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(778), + [anon_sym_in] = ACTIONS(2279), + [sym__newline] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_err_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_GT_PIPE] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_GT2] = ACTIONS(2281), + [anon_sym_DASH2] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_STAR2] = ACTIONS(2281), + [anon_sym_and2] = ACTIONS(2279), + [anon_sym_xor2] = ACTIONS(2279), + [anon_sym_or2] = ACTIONS(2279), + [anon_sym_not_DASHin2] = ACTIONS(2279), + [anon_sym_has2] = ACTIONS(2279), + [anon_sym_not_DASHhas2] = ACTIONS(2279), + [anon_sym_starts_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), + [anon_sym_ends_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), + [anon_sym_EQ_EQ2] = ACTIONS(2279), + [anon_sym_BANG_EQ2] = ACTIONS(2279), + [anon_sym_LT2] = ACTIONS(2281), + [anon_sym_LT_EQ2] = ACTIONS(2279), + [anon_sym_GT_EQ2] = ACTIONS(2279), + [anon_sym_EQ_TILDE2] = ACTIONS(2279), + [anon_sym_BANG_TILDE2] = ACTIONS(2279), + [anon_sym_like2] = ACTIONS(2279), + [anon_sym_not_DASHlike2] = ACTIONS(2279), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2279), + [anon_sym_PLUS_PLUS2] = ACTIONS(2279), + [anon_sym_SLASH2] = ACTIONS(2281), + [anon_sym_mod2] = ACTIONS(2279), + [anon_sym_SLASH_SLASH2] = ACTIONS(2279), + [anon_sym_PLUS2] = ACTIONS(2281), + [anon_sym_bit_DASHshl2] = ACTIONS(2279), + [anon_sym_bit_DASHshr2] = ACTIONS(2279), + [anon_sym_bit_DASHand2] = ACTIONS(2279), + [anon_sym_bit_DASHxor2] = ACTIONS(2279), + [anon_sym_bit_DASHor2] = ACTIONS(2279), + [anon_sym_err_GT] = ACTIONS(2281), + [anon_sym_out_GT] = ACTIONS(2281), + [anon_sym_e_GT] = ACTIONS(2281), + [anon_sym_o_GT] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT] = ACTIONS(2281), + [anon_sym_err_GT_GT] = ACTIONS(2279), + [anon_sym_out_GT_GT] = ACTIONS(2279), + [anon_sym_e_GT_GT] = ACTIONS(2279), + [anon_sym_o_GT_GT] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(807)] = { - [aux_sym__repeat_newline] = STATE(1055), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(807), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [STATE(779)] = { + [aux_sym__repeat_newline] = STATE(1075), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(779), + [anon_sym_in] = ACTIONS(2289), + [sym__newline] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_err_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_GT_PIPE] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), + [anon_sym_RPAREN] = ACTIONS(2289), + [anon_sym_GT2] = ACTIONS(2291), + [anon_sym_DASH2] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_STAR2] = ACTIONS(2291), + [anon_sym_and2] = ACTIONS(2289), + [anon_sym_xor2] = ACTIONS(2289), + [anon_sym_or2] = ACTIONS(2289), + [anon_sym_not_DASHin2] = ACTIONS(2289), + [anon_sym_has2] = ACTIONS(2289), + [anon_sym_not_DASHhas2] = ACTIONS(2289), + [anon_sym_starts_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), + [anon_sym_ends_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), + [anon_sym_EQ_EQ2] = ACTIONS(2289), + [anon_sym_BANG_EQ2] = ACTIONS(2289), + [anon_sym_LT2] = ACTIONS(2291), + [anon_sym_LT_EQ2] = ACTIONS(2289), + [anon_sym_GT_EQ2] = ACTIONS(2289), + [anon_sym_EQ_TILDE2] = ACTIONS(2289), + [anon_sym_BANG_TILDE2] = ACTIONS(2289), + [anon_sym_like2] = ACTIONS(2289), + [anon_sym_not_DASHlike2] = ACTIONS(2289), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2289), + [anon_sym_PLUS_PLUS2] = ACTIONS(2289), + [anon_sym_SLASH2] = ACTIONS(2291), + [anon_sym_mod2] = ACTIONS(2289), + [anon_sym_SLASH_SLASH2] = ACTIONS(2289), + [anon_sym_PLUS2] = ACTIONS(2291), + [anon_sym_bit_DASHshl2] = ACTIONS(2289), + [anon_sym_bit_DASHshr2] = ACTIONS(2289), + [anon_sym_bit_DASHand2] = ACTIONS(2289), + [anon_sym_bit_DASHxor2] = ACTIONS(2289), + [anon_sym_bit_DASHor2] = ACTIONS(2289), + [anon_sym_err_GT] = ACTIONS(2291), + [anon_sym_out_GT] = ACTIONS(2291), + [anon_sym_e_GT] = ACTIONS(2291), + [anon_sym_o_GT] = ACTIONS(2291), + [anon_sym_err_PLUSout_GT] = ACTIONS(2291), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), + [anon_sym_o_PLUSe_GT] = ACTIONS(2291), + [anon_sym_e_PLUSo_GT] = ACTIONS(2291), + [anon_sym_err_GT_GT] = ACTIONS(2289), + [anon_sym_out_GT_GT] = ACTIONS(2289), + [anon_sym_e_GT_GT] = ACTIONS(2289), + [anon_sym_o_GT_GT] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(808)] = { - [sym_comment] = STATE(808), - [anon_sym_in] = ACTIONS(2134), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_DOT_DOT2] = ACTIONS(1623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1625), - [anon_sym_COLON2] = ACTIONS(1708), - [anon_sym_err_GT] = ACTIONS(2140), - [anon_sym_out_GT] = ACTIONS(2140), - [anon_sym_e_GT] = ACTIONS(2140), - [anon_sym_o_GT] = ACTIONS(2140), - [anon_sym_err_PLUSout_GT] = ACTIONS(2140), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2140), - [anon_sym_o_PLUSe_GT] = ACTIONS(2140), - [anon_sym_e_PLUSo_GT] = ACTIONS(2140), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), + [STATE(780)] = { + [aux_sym__repeat_newline] = STATE(1077), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(780), + [anon_sym_in] = ACTIONS(2289), + [sym__newline] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_err_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_GT_PIPE] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), + [anon_sym_RPAREN] = ACTIONS(2289), + [anon_sym_GT2] = ACTIONS(2291), + [anon_sym_DASH2] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_STAR2] = ACTIONS(2291), + [anon_sym_and2] = ACTIONS(2289), + [anon_sym_xor2] = ACTIONS(2289), + [anon_sym_or2] = ACTIONS(2289), + [anon_sym_not_DASHin2] = ACTIONS(2289), + [anon_sym_has2] = ACTIONS(2289), + [anon_sym_not_DASHhas2] = ACTIONS(2289), + [anon_sym_starts_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), + [anon_sym_ends_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), + [anon_sym_EQ_EQ2] = ACTIONS(2289), + [anon_sym_BANG_EQ2] = ACTIONS(2289), + [anon_sym_LT2] = ACTIONS(2291), + [anon_sym_LT_EQ2] = ACTIONS(2289), + [anon_sym_GT_EQ2] = ACTIONS(2289), + [anon_sym_EQ_TILDE2] = ACTIONS(2289), + [anon_sym_BANG_TILDE2] = ACTIONS(2289), + [anon_sym_like2] = ACTIONS(2289), + [anon_sym_not_DASHlike2] = ACTIONS(2289), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2289), + [anon_sym_PLUS_PLUS2] = ACTIONS(2289), + [anon_sym_SLASH2] = ACTIONS(2291), + [anon_sym_mod2] = ACTIONS(2289), + [anon_sym_SLASH_SLASH2] = ACTIONS(2289), + [anon_sym_PLUS2] = ACTIONS(2291), + [anon_sym_bit_DASHshl2] = ACTIONS(2289), + [anon_sym_bit_DASHshr2] = ACTIONS(2289), + [anon_sym_bit_DASHand2] = ACTIONS(2289), + [anon_sym_bit_DASHxor2] = ACTIONS(2289), + [anon_sym_bit_DASHor2] = ACTIONS(2289), + [anon_sym_err_GT] = ACTIONS(2291), + [anon_sym_out_GT] = ACTIONS(2291), + [anon_sym_e_GT] = ACTIONS(2291), + [anon_sym_o_GT] = ACTIONS(2291), + [anon_sym_err_PLUSout_GT] = ACTIONS(2291), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), + [anon_sym_o_PLUSe_GT] = ACTIONS(2291), + [anon_sym_e_PLUSo_GT] = ACTIONS(2291), + [anon_sym_err_GT_GT] = ACTIONS(2289), + [anon_sym_out_GT_GT] = ACTIONS(2289), + [anon_sym_e_GT_GT] = ACTIONS(2289), + [anon_sym_o_GT_GT] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(809)] = { - [aux_sym__repeat_newline] = STATE(1057), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(809), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [STATE(781)] = { + [aux_sym__repeat_newline] = STATE(1079), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(781), + [anon_sym_in] = ACTIONS(2289), + [sym__newline] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_err_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_GT_PIPE] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), + [anon_sym_RPAREN] = ACTIONS(2289), + [anon_sym_GT2] = ACTIONS(2291), + [anon_sym_DASH2] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_STAR2] = ACTIONS(2291), + [anon_sym_and2] = ACTIONS(2289), + [anon_sym_xor2] = ACTIONS(2289), + [anon_sym_or2] = ACTIONS(2289), + [anon_sym_not_DASHin2] = ACTIONS(2289), + [anon_sym_has2] = ACTIONS(2289), + [anon_sym_not_DASHhas2] = ACTIONS(2289), + [anon_sym_starts_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), + [anon_sym_ends_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), + [anon_sym_EQ_EQ2] = ACTIONS(2289), + [anon_sym_BANG_EQ2] = ACTIONS(2289), + [anon_sym_LT2] = ACTIONS(2291), + [anon_sym_LT_EQ2] = ACTIONS(2289), + [anon_sym_GT_EQ2] = ACTIONS(2289), + [anon_sym_EQ_TILDE2] = ACTIONS(2289), + [anon_sym_BANG_TILDE2] = ACTIONS(2289), + [anon_sym_like2] = ACTIONS(2289), + [anon_sym_not_DASHlike2] = ACTIONS(2289), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2289), + [anon_sym_PLUS_PLUS2] = ACTIONS(2289), + [anon_sym_SLASH2] = ACTIONS(2291), + [anon_sym_mod2] = ACTIONS(2289), + [anon_sym_SLASH_SLASH2] = ACTIONS(2289), + [anon_sym_PLUS2] = ACTIONS(2291), + [anon_sym_bit_DASHshl2] = ACTIONS(2289), + [anon_sym_bit_DASHshr2] = ACTIONS(2289), + [anon_sym_bit_DASHand2] = ACTIONS(2289), + [anon_sym_bit_DASHxor2] = ACTIONS(2289), + [anon_sym_bit_DASHor2] = ACTIONS(2289), + [anon_sym_err_GT] = ACTIONS(2291), + [anon_sym_out_GT] = ACTIONS(2291), + [anon_sym_e_GT] = ACTIONS(2291), + [anon_sym_o_GT] = ACTIONS(2291), + [anon_sym_err_PLUSout_GT] = ACTIONS(2291), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), + [anon_sym_o_PLUSe_GT] = ACTIONS(2291), + [anon_sym_e_PLUSo_GT] = ACTIONS(2291), + [anon_sym_err_GT_GT] = ACTIONS(2289), + [anon_sym_out_GT_GT] = ACTIONS(2289), + [anon_sym_e_GT_GT] = ACTIONS(2289), + [anon_sym_o_GT_GT] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(810)] = { - [aux_sym__repeat_newline] = STATE(1060), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(810), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [STATE(782)] = { + [aux_sym__repeat_newline] = STATE(1082), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(782), + [anon_sym_in] = ACTIONS(2289), + [sym__newline] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_err_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_GT_PIPE] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), + [anon_sym_RPAREN] = ACTIONS(2289), + [anon_sym_GT2] = ACTIONS(2291), + [anon_sym_DASH2] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_STAR2] = ACTIONS(2291), + [anon_sym_and2] = ACTIONS(2289), + [anon_sym_xor2] = ACTIONS(2289), + [anon_sym_or2] = ACTIONS(2289), + [anon_sym_not_DASHin2] = ACTIONS(2289), + [anon_sym_has2] = ACTIONS(2289), + [anon_sym_not_DASHhas2] = ACTIONS(2289), + [anon_sym_starts_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), + [anon_sym_ends_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), + [anon_sym_EQ_EQ2] = ACTIONS(2289), + [anon_sym_BANG_EQ2] = ACTIONS(2289), + [anon_sym_LT2] = ACTIONS(2291), + [anon_sym_LT_EQ2] = ACTIONS(2289), + [anon_sym_GT_EQ2] = ACTIONS(2289), + [anon_sym_EQ_TILDE2] = ACTIONS(2289), + [anon_sym_BANG_TILDE2] = ACTIONS(2289), + [anon_sym_like2] = ACTIONS(2289), + [anon_sym_not_DASHlike2] = ACTIONS(2289), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2289), + [anon_sym_PLUS_PLUS2] = ACTIONS(2289), + [anon_sym_SLASH2] = ACTIONS(2291), + [anon_sym_mod2] = ACTIONS(2289), + [anon_sym_SLASH_SLASH2] = ACTIONS(2289), + [anon_sym_PLUS2] = ACTIONS(2291), + [anon_sym_bit_DASHshl2] = ACTIONS(2289), + [anon_sym_bit_DASHshr2] = ACTIONS(2289), + [anon_sym_bit_DASHand2] = ACTIONS(2289), + [anon_sym_bit_DASHxor2] = ACTIONS(2289), + [anon_sym_bit_DASHor2] = ACTIONS(2289), + [anon_sym_err_GT] = ACTIONS(2291), + [anon_sym_out_GT] = ACTIONS(2291), + [anon_sym_e_GT] = ACTIONS(2291), + [anon_sym_o_GT] = ACTIONS(2291), + [anon_sym_err_PLUSout_GT] = ACTIONS(2291), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), + [anon_sym_o_PLUSe_GT] = ACTIONS(2291), + [anon_sym_e_PLUSo_GT] = ACTIONS(2291), + [anon_sym_err_GT_GT] = ACTIONS(2289), + [anon_sym_out_GT_GT] = ACTIONS(2289), + [anon_sym_e_GT_GT] = ACTIONS(2289), + [anon_sym_o_GT_GT] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(811)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1681), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4419), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1121), - [sym__unquoted_with_expr] = STATE(1327), - [sym__unquoted_anonymous_prefix] = STATE(4419), - [sym_comment] = STATE(811), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(783)] = { + [aux_sym__repeat_newline] = STATE(1085), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(783), + [anon_sym_in] = ACTIONS(2289), + [sym__newline] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_err_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_GT_PIPE] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), + [anon_sym_RPAREN] = ACTIONS(2289), + [anon_sym_GT2] = ACTIONS(2291), + [anon_sym_DASH2] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_STAR2] = ACTIONS(2291), + [anon_sym_and2] = ACTIONS(2289), + [anon_sym_xor2] = ACTIONS(2289), + [anon_sym_or2] = ACTIONS(2289), + [anon_sym_not_DASHin2] = ACTIONS(2289), + [anon_sym_has2] = ACTIONS(2289), + [anon_sym_not_DASHhas2] = ACTIONS(2289), + [anon_sym_starts_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), + [anon_sym_ends_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), + [anon_sym_EQ_EQ2] = ACTIONS(2289), + [anon_sym_BANG_EQ2] = ACTIONS(2289), + [anon_sym_LT2] = ACTIONS(2291), + [anon_sym_LT_EQ2] = ACTIONS(2289), + [anon_sym_GT_EQ2] = ACTIONS(2289), + [anon_sym_EQ_TILDE2] = ACTIONS(2289), + [anon_sym_BANG_TILDE2] = ACTIONS(2289), + [anon_sym_like2] = ACTIONS(2289), + [anon_sym_not_DASHlike2] = ACTIONS(2289), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2289), + [anon_sym_PLUS_PLUS2] = ACTIONS(2289), + [anon_sym_SLASH2] = ACTIONS(2291), + [anon_sym_mod2] = ACTIONS(2289), + [anon_sym_SLASH_SLASH2] = ACTIONS(2289), + [anon_sym_PLUS2] = ACTIONS(2291), + [anon_sym_bit_DASHshl2] = ACTIONS(2289), + [anon_sym_bit_DASHshr2] = ACTIONS(2289), + [anon_sym_bit_DASHand2] = ACTIONS(2289), + [anon_sym_bit_DASHxor2] = ACTIONS(2289), + [anon_sym_bit_DASHor2] = ACTIONS(2289), + [anon_sym_err_GT] = ACTIONS(2291), + [anon_sym_out_GT] = ACTIONS(2291), + [anon_sym_e_GT] = ACTIONS(2291), + [anon_sym_o_GT] = ACTIONS(2291), + [anon_sym_err_PLUSout_GT] = ACTIONS(2291), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), + [anon_sym_o_PLUSe_GT] = ACTIONS(2291), + [anon_sym_e_PLUSo_GT] = ACTIONS(2291), + [anon_sym_err_GT_GT] = ACTIONS(2289), + [anon_sym_out_GT_GT] = ACTIONS(2289), + [anon_sym_e_GT_GT] = ACTIONS(2289), + [anon_sym_o_GT_GT] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(784)] = { + [aux_sym__repeat_newline] = STATE(1095), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(784), + [anon_sym_in] = ACTIONS(2289), + [sym__newline] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_err_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_GT_PIPE] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), + [anon_sym_RPAREN] = ACTIONS(2289), + [anon_sym_GT2] = ACTIONS(2291), + [anon_sym_DASH2] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_STAR2] = ACTIONS(2291), + [anon_sym_and2] = ACTIONS(2289), + [anon_sym_xor2] = ACTIONS(2289), + [anon_sym_or2] = ACTIONS(2289), + [anon_sym_not_DASHin2] = ACTIONS(2289), + [anon_sym_has2] = ACTIONS(2289), + [anon_sym_not_DASHhas2] = ACTIONS(2289), + [anon_sym_starts_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), + [anon_sym_ends_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), + [anon_sym_EQ_EQ2] = ACTIONS(2289), + [anon_sym_BANG_EQ2] = ACTIONS(2289), + [anon_sym_LT2] = ACTIONS(2291), + [anon_sym_LT_EQ2] = ACTIONS(2289), + [anon_sym_GT_EQ2] = ACTIONS(2289), + [anon_sym_EQ_TILDE2] = ACTIONS(2289), + [anon_sym_BANG_TILDE2] = ACTIONS(2289), + [anon_sym_like2] = ACTIONS(2289), + [anon_sym_not_DASHlike2] = ACTIONS(2289), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2289), + [anon_sym_PLUS_PLUS2] = ACTIONS(2289), + [anon_sym_SLASH2] = ACTIONS(2291), + [anon_sym_mod2] = ACTIONS(2289), + [anon_sym_SLASH_SLASH2] = ACTIONS(2289), + [anon_sym_PLUS2] = ACTIONS(2291), + [anon_sym_bit_DASHshl2] = ACTIONS(2289), + [anon_sym_bit_DASHshr2] = ACTIONS(2289), + [anon_sym_bit_DASHand2] = ACTIONS(2289), + [anon_sym_bit_DASHxor2] = ACTIONS(2289), + [anon_sym_bit_DASHor2] = ACTIONS(2289), + [anon_sym_err_GT] = ACTIONS(2291), + [anon_sym_out_GT] = ACTIONS(2291), + [anon_sym_e_GT] = ACTIONS(2291), + [anon_sym_o_GT] = ACTIONS(2291), + [anon_sym_err_PLUSout_GT] = ACTIONS(2291), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), + [anon_sym_o_PLUSe_GT] = ACTIONS(2291), + [anon_sym_e_PLUSo_GT] = ACTIONS(2291), + [anon_sym_err_GT_GT] = ACTIONS(2289), + [anon_sym_out_GT_GT] = ACTIONS(2289), + [anon_sym_e_GT_GT] = ACTIONS(2289), + [anon_sym_o_GT_GT] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(785)] = { + [sym_expr_unary] = STATE(1282), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1282), + [sym__expr_binary_expression] = STATE(1680), + [sym_expr_parenthesized] = STATE(925), + [sym_val_range] = STATE(1282), + [sym__val_range] = STATE(4556), + [sym__value] = STATE(1282), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(1504), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(1420), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_unquoted] = STATE(996), + [sym__unquoted_with_expr] = STATE(1262), + [sym__unquoted_anonymous_prefix] = STATE(4556), + [sym_comment] = STATE(785), + [anon_sym_true] = ACTIONS(2293), + [anon_sym_false] = ACTIONS(2293), + [anon_sym_null] = ACTIONS(2295), + [aux_sym_cmd_identifier_token3] = ACTIONS(2297), + [aux_sym_cmd_identifier_token4] = ACTIONS(2297), + [aux_sym_cmd_identifier_token5] = ACTIONS(2297), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2299), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2301), + [anon_sym_DOT_DOT_LT] = ACTIONS(2301), + [aux_sym__val_number_decimal_token1] = ACTIONS(2303), + [aux_sym__val_number_decimal_token2] = ACTIONS(2305), + [aux_sym__val_number_decimal_token3] = ACTIONS(2307), + [aux_sym__val_number_decimal_token4] = ACTIONS(2307), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2309), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(812)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), + [STATE(786)] = { + [sym_expr_unary] = STATE(1282), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1282), [sym__expr_binary_expression] = STATE(1682), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4419), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1123), - [sym__unquoted_with_expr] = STATE(1334), - [sym__unquoted_anonymous_prefix] = STATE(4419), - [sym_comment] = STATE(812), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [sym_expr_parenthesized] = STATE(925), + [sym_val_range] = STATE(1282), + [sym__val_range] = STATE(4556), + [sym__value] = STATE(1282), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(1504), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(1420), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_unquoted] = STATE(999), + [sym__unquoted_with_expr] = STATE(1286), + [sym__unquoted_anonymous_prefix] = STATE(4556), + [sym_comment] = STATE(786), + [anon_sym_true] = ACTIONS(2293), + [anon_sym_false] = ACTIONS(2293), + [anon_sym_null] = ACTIONS(2295), + [aux_sym_cmd_identifier_token3] = ACTIONS(2297), + [aux_sym_cmd_identifier_token4] = ACTIONS(2297), + [aux_sym_cmd_identifier_token5] = ACTIONS(2297), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2299), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2301), + [anon_sym_DOT_DOT_LT] = ACTIONS(2301), + [aux_sym__val_number_decimal_token1] = ACTIONS(2303), + [aux_sym__val_number_decimal_token2] = ACTIONS(2305), + [aux_sym__val_number_decimal_token3] = ACTIONS(2307), + [aux_sym__val_number_decimal_token4] = ACTIONS(2307), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2309), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(813)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), + [STATE(787)] = { + [sym_expr_unary] = STATE(1282), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1282), + [sym__expr_binary_expression] = STATE(1677), + [sym_expr_parenthesized] = STATE(925), + [sym_val_range] = STATE(1282), + [sym__val_range] = STATE(4556), + [sym__value] = STATE(1282), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(1504), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(1420), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_unquoted] = STATE(1000), + [sym__unquoted_with_expr] = STATE(1289), + [sym__unquoted_anonymous_prefix] = STATE(4556), + [sym_comment] = STATE(787), + [anon_sym_true] = ACTIONS(2293), + [anon_sym_false] = ACTIONS(2293), + [anon_sym_null] = ACTIONS(2295), + [aux_sym_cmd_identifier_token3] = ACTIONS(2297), + [aux_sym_cmd_identifier_token4] = ACTIONS(2297), + [aux_sym_cmd_identifier_token5] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2299), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2301), + [anon_sym_DOT_DOT_LT] = ACTIONS(2301), + [aux_sym__val_number_decimal_token1] = ACTIONS(2303), + [aux_sym__val_number_decimal_token2] = ACTIONS(2305), + [aux_sym__val_number_decimal_token3] = ACTIONS(2307), + [aux_sym__val_number_decimal_token4] = ACTIONS(2307), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2309), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2190), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(788)] = { + [sym_expr_unary] = STATE(1282), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1282), [sym__expr_binary_expression] = STATE(1683), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4419), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1126), - [sym__unquoted_with_expr] = STATE(1317), - [sym__unquoted_anonymous_prefix] = STATE(4419), - [sym_comment] = STATE(813), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [sym_expr_parenthesized] = STATE(925), + [sym_val_range] = STATE(1282), + [sym__val_range] = STATE(4556), + [sym__value] = STATE(1282), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(1504), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(1420), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_unquoted] = STATE(1004), + [sym__unquoted_with_expr] = STATE(1292), + [sym__unquoted_anonymous_prefix] = STATE(4556), + [sym_comment] = STATE(788), + [anon_sym_true] = ACTIONS(2293), + [anon_sym_false] = ACTIONS(2293), + [anon_sym_null] = ACTIONS(2295), + [aux_sym_cmd_identifier_token3] = ACTIONS(2297), + [aux_sym_cmd_identifier_token4] = ACTIONS(2297), + [aux_sym_cmd_identifier_token5] = ACTIONS(2297), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2299), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2301), + [anon_sym_DOT_DOT_LT] = ACTIONS(2301), + [aux_sym__val_number_decimal_token1] = ACTIONS(2303), + [aux_sym__val_number_decimal_token2] = ACTIONS(2305), + [aux_sym__val_number_decimal_token3] = ACTIONS(2307), + [aux_sym__val_number_decimal_token4] = ACTIONS(2307), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2309), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(814)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), + [STATE(789)] = { + [sym_expr_unary] = STATE(1282), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1282), [sym__expr_binary_expression] = STATE(1684), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4419), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(974), - [sym__unquoted_with_expr] = STATE(1312), - [sym__unquoted_anonymous_prefix] = STATE(4419), - [sym_comment] = STATE(814), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [sym_expr_parenthesized] = STATE(925), + [sym_val_range] = STATE(1282), + [sym__val_range] = STATE(4556), + [sym__value] = STATE(1282), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(1504), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(1420), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_unquoted] = STATE(1014), + [sym__unquoted_with_expr] = STATE(1295), + [sym__unquoted_anonymous_prefix] = STATE(4556), + [sym_comment] = STATE(789), + [anon_sym_true] = ACTIONS(2293), + [anon_sym_false] = ACTIONS(2293), + [anon_sym_null] = ACTIONS(2295), + [aux_sym_cmd_identifier_token3] = ACTIONS(2297), + [aux_sym_cmd_identifier_token4] = ACTIONS(2297), + [aux_sym_cmd_identifier_token5] = ACTIONS(2297), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2299), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2301), + [anon_sym_DOT_DOT_LT] = ACTIONS(2301), + [aux_sym__val_number_decimal_token1] = ACTIONS(2303), + [aux_sym__val_number_decimal_token2] = ACTIONS(2305), + [aux_sym__val_number_decimal_token3] = ACTIONS(2307), + [aux_sym__val_number_decimal_token4] = ACTIONS(2307), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2309), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(815)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1685), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4419), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1012), - [sym__unquoted_with_expr] = STATE(1307), - [sym__unquoted_anonymous_prefix] = STATE(4419), - [sym_comment] = STATE(815), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(790)] = { + [sym_expr_unary] = STATE(1282), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1282), + [sym__expr_binary_expression] = STATE(1686), + [sym_expr_parenthesized] = STATE(925), + [sym_val_range] = STATE(1282), + [sym__val_range] = STATE(4556), + [sym__value] = STATE(1282), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(1504), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(1420), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_unquoted] = STATE(1038), + [sym__unquoted_with_expr] = STATE(1298), + [sym__unquoted_anonymous_prefix] = STATE(4556), + [sym_comment] = STATE(790), + [anon_sym_true] = ACTIONS(2293), + [anon_sym_false] = ACTIONS(2293), + [anon_sym_null] = ACTIONS(2295), + [aux_sym_cmd_identifier_token3] = ACTIONS(2297), + [aux_sym_cmd_identifier_token4] = ACTIONS(2297), + [aux_sym_cmd_identifier_token5] = ACTIONS(2297), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2299), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2301), + [anon_sym_DOT_DOT_LT] = ACTIONS(2301), + [aux_sym__val_number_decimal_token1] = ACTIONS(2303), + [aux_sym__val_number_decimal_token2] = ACTIONS(2305), + [aux_sym__val_number_decimal_token3] = ACTIONS(2307), + [aux_sym__val_number_decimal_token4] = ACTIONS(2307), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2309), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(816)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1686), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4419), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1071), + [STATE(791)] = { + [sym_expr_unary] = STATE(1282), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1282), + [sym__expr_binary_expression] = STATE(1693), + [sym_expr_parenthesized] = STATE(925), + [sym_val_range] = STATE(1282), + [sym__val_range] = STATE(4556), + [sym__value] = STATE(1282), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(1504), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(1420), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_unquoted] = STATE(1039), [sym__unquoted_with_expr] = STATE(1302), - [sym__unquoted_anonymous_prefix] = STATE(4419), - [sym_comment] = STATE(816), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [sym__unquoted_anonymous_prefix] = STATE(4556), + [sym_comment] = STATE(791), + [anon_sym_true] = ACTIONS(2293), + [anon_sym_false] = ACTIONS(2293), + [anon_sym_null] = ACTIONS(2295), + [aux_sym_cmd_identifier_token3] = ACTIONS(2297), + [aux_sym_cmd_identifier_token4] = ACTIONS(2297), + [aux_sym_cmd_identifier_token5] = ACTIONS(2297), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2299), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2301), + [anon_sym_DOT_DOT_LT] = ACTIONS(2301), + [aux_sym__val_number_decimal_token1] = ACTIONS(2303), + [aux_sym__val_number_decimal_token2] = ACTIONS(2305), + [aux_sym__val_number_decimal_token3] = ACTIONS(2307), + [aux_sym__val_number_decimal_token4] = ACTIONS(2307), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2309), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(817)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1687), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4419), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1127), - [sym__unquoted_with_expr] = STATE(1321), - [sym__unquoted_anonymous_prefix] = STATE(4419), - [sym_comment] = STATE(817), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(792)] = { + [sym_expr_unary] = STATE(1282), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1282), + [sym__expr_binary_expression] = STATE(1695), + [sym_expr_parenthesized] = STATE(925), + [sym_val_range] = STATE(1282), + [sym__val_range] = STATE(4556), + [sym__value] = STATE(1282), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(1504), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(1420), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_unquoted] = STATE(1040), + [sym__unquoted_with_expr] = STATE(1305), + [sym__unquoted_anonymous_prefix] = STATE(4556), + [sym_comment] = STATE(792), + [anon_sym_true] = ACTIONS(2293), + [anon_sym_false] = ACTIONS(2293), + [anon_sym_null] = ACTIONS(2295), + [aux_sym_cmd_identifier_token3] = ACTIONS(2297), + [aux_sym_cmd_identifier_token4] = ACTIONS(2297), + [aux_sym_cmd_identifier_token5] = ACTIONS(2297), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2299), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2301), + [anon_sym_DOT_DOT_LT] = ACTIONS(2301), + [aux_sym__val_number_decimal_token1] = ACTIONS(2303), + [aux_sym__val_number_decimal_token2] = ACTIONS(2305), + [aux_sym__val_number_decimal_token3] = ACTIONS(2307), + [aux_sym__val_number_decimal_token4] = ACTIONS(2307), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2309), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(818)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1689), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4419), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(972), - [sym__unquoted_with_expr] = STATE(1281), - [sym__unquoted_anonymous_prefix] = STATE(4419), - [sym_comment] = STATE(818), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(793)] = { + [sym_expr_unary] = STATE(1282), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1282), + [sym__expr_binary_expression] = STATE(1306), + [sym_expr_parenthesized] = STATE(925), + [sym_val_range] = STATE(1282), + [sym__val_range] = STATE(4556), + [sym__value] = STATE(1282), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(1504), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(1420), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_unquoted] = STATE(1053), + [sym__unquoted_with_expr] = STATE(1308), + [sym__unquoted_anonymous_prefix] = STATE(4556), + [sym_comment] = STATE(793), + [anon_sym_true] = ACTIONS(2293), + [anon_sym_false] = ACTIONS(2293), + [anon_sym_null] = ACTIONS(2295), + [aux_sym_cmd_identifier_token3] = ACTIONS(2297), + [aux_sym_cmd_identifier_token4] = ACTIONS(2297), + [aux_sym_cmd_identifier_token5] = ACTIONS(2297), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2299), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2301), + [anon_sym_DOT_DOT_LT] = ACTIONS(2301), + [aux_sym__val_number_decimal_token1] = ACTIONS(2303), + [aux_sym__val_number_decimal_token2] = ACTIONS(2305), + [aux_sym__val_number_decimal_token3] = ACTIONS(2307), + [aux_sym__val_number_decimal_token4] = ACTIONS(2307), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2309), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(819)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1282), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4419), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(981), - [sym__unquoted_with_expr] = STATE(1296), - [sym__unquoted_anonymous_prefix] = STATE(4419), - [sym_comment] = STATE(819), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(794)] = { + [sym_expr_unary] = STATE(1282), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1282), + [sym__expr_binary_expression] = STATE(1688), + [sym_expr_parenthesized] = STATE(925), + [sym_val_range] = STATE(1282), + [sym__val_range] = STATE(4556), + [sym__value] = STATE(1282), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(1504), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(1420), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_unquoted] = STATE(1056), + [sym__unquoted_with_expr] = STATE(1310), + [sym__unquoted_anonymous_prefix] = STATE(4556), + [sym_comment] = STATE(794), + [anon_sym_true] = ACTIONS(2293), + [anon_sym_false] = ACTIONS(2293), + [anon_sym_null] = ACTIONS(2295), + [aux_sym_cmd_identifier_token3] = ACTIONS(2297), + [aux_sym_cmd_identifier_token4] = ACTIONS(2297), + [aux_sym_cmd_identifier_token5] = ACTIONS(2297), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2299), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2301), + [anon_sym_DOT_DOT_LT] = ACTIONS(2301), + [aux_sym__val_number_decimal_token1] = ACTIONS(2303), + [aux_sym__val_number_decimal_token2] = ACTIONS(2305), + [aux_sym__val_number_decimal_token3] = ACTIONS(2307), + [aux_sym__val_number_decimal_token4] = ACTIONS(2307), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2309), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(820)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1690), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4419), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1016), - [sym__unquoted_with_expr] = STATE(1301), - [sym__unquoted_anonymous_prefix] = STATE(4419), - [sym_comment] = STATE(820), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(795)] = { + [sym_expr_unary] = STATE(1282), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1282), + [sym__expr_binary_expression] = STATE(1689), + [sym_expr_parenthesized] = STATE(925), + [sym_val_range] = STATE(1282), + [sym__val_range] = STATE(4556), + [sym__value] = STATE(1282), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(1504), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(1420), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_unquoted] = STATE(1057), + [sym__unquoted_with_expr] = STATE(1312), + [sym__unquoted_anonymous_prefix] = STATE(4556), + [sym_comment] = STATE(795), + [anon_sym_true] = ACTIONS(2293), + [anon_sym_false] = ACTIONS(2293), + [anon_sym_null] = ACTIONS(2295), + [aux_sym_cmd_identifier_token3] = ACTIONS(2297), + [aux_sym_cmd_identifier_token4] = ACTIONS(2297), + [aux_sym_cmd_identifier_token5] = ACTIONS(2297), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2299), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2301), + [anon_sym_DOT_DOT_LT] = ACTIONS(2301), + [aux_sym__val_number_decimal_token1] = ACTIONS(2303), + [aux_sym__val_number_decimal_token2] = ACTIONS(2305), + [aux_sym__val_number_decimal_token3] = ACTIONS(2307), + [aux_sym__val_number_decimal_token4] = ACTIONS(2307), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2309), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(821)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), + [STATE(796)] = { + [sym_expr_unary] = STATE(1282), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1282), [sym__expr_binary_expression] = STATE(1691), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4419), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1033), - [sym__unquoted_with_expr] = STATE(1280), - [sym__unquoted_anonymous_prefix] = STATE(4419), - [sym_comment] = STATE(821), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [sym_expr_parenthesized] = STATE(925), + [sym_val_range] = STATE(1282), + [sym__val_range] = STATE(4556), + [sym__value] = STATE(1282), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(1504), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(1420), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_unquoted] = STATE(1059), + [sym__unquoted_with_expr] = STATE(1314), + [sym__unquoted_anonymous_prefix] = STATE(4556), + [sym_comment] = STATE(796), + [anon_sym_true] = ACTIONS(2293), + [anon_sym_false] = ACTIONS(2293), + [anon_sym_null] = ACTIONS(2295), + [aux_sym_cmd_identifier_token3] = ACTIONS(2297), + [aux_sym_cmd_identifier_token4] = ACTIONS(2297), + [aux_sym_cmd_identifier_token5] = ACTIONS(2297), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2299), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2301), + [anon_sym_DOT_DOT_LT] = ACTIONS(2301), + [aux_sym__val_number_decimal_token1] = ACTIONS(2303), + [aux_sym__val_number_decimal_token2] = ACTIONS(2305), + [aux_sym__val_number_decimal_token3] = ACTIONS(2307), + [aux_sym__val_number_decimal_token4] = ACTIONS(2307), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2309), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(822)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1692), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4419), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1086), - [sym__unquoted_with_expr] = STATE(1345), - [sym__unquoted_anonymous_prefix] = STATE(4419), - [sym_comment] = STATE(822), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [STATE(797)] = { + [sym_expr_unary] = STATE(1282), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1282), + [sym__expr_binary_expression] = STATE(1694), + [sym_expr_parenthesized] = STATE(925), + [sym_val_range] = STATE(1282), + [sym__val_range] = STATE(4556), + [sym__value] = STATE(1282), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(1504), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(1420), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_unquoted] = STATE(1068), + [sym__unquoted_with_expr] = STATE(1322), + [sym__unquoted_anonymous_prefix] = STATE(4556), + [sym_comment] = STATE(797), + [anon_sym_true] = ACTIONS(2293), + [anon_sym_false] = ACTIONS(2293), + [anon_sym_null] = ACTIONS(2295), + [aux_sym_cmd_identifier_token3] = ACTIONS(2297), + [aux_sym_cmd_identifier_token4] = ACTIONS(2297), + [aux_sym_cmd_identifier_token5] = ACTIONS(2297), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2299), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2301), + [anon_sym_DOT_DOT_LT] = ACTIONS(2301), + [aux_sym__val_number_decimal_token1] = ACTIONS(2303), + [aux_sym__val_number_decimal_token2] = ACTIONS(2305), + [aux_sym__val_number_decimal_token3] = ACTIONS(2307), + [aux_sym__val_number_decimal_token4] = ACTIONS(2307), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2309), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(823)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1693), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4419), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1501), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(1415), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1128), - [sym__unquoted_with_expr] = STATE(1284), - [sym__unquoted_anonymous_prefix] = STATE(4419), - [sym_comment] = STATE(823), + [STATE(798)] = { + [sym_comment] = STATE(798), + [anon_sym_if] = ACTIONS(2311), + [anon_sym_in] = ACTIONS(2311), + [sym__newline] = ACTIONS(2311), + [anon_sym_SEMI] = ACTIONS(2311), + [anon_sym_PIPE] = ACTIONS(2311), + [anon_sym_err_GT_PIPE] = ACTIONS(2311), + [anon_sym_out_GT_PIPE] = ACTIONS(2311), + [anon_sym_e_GT_PIPE] = ACTIONS(2311), + [anon_sym_o_GT_PIPE] = ACTIONS(2311), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2311), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2311), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2311), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2311), + [anon_sym_RPAREN] = ACTIONS(2311), + [anon_sym_GT2] = ACTIONS(2313), + [anon_sym_DASH2] = ACTIONS(2311), + [anon_sym_LBRACE] = ACTIONS(2311), + [anon_sym_RBRACE] = ACTIONS(2311), + [anon_sym_EQ_GT] = ACTIONS(2311), + [anon_sym_STAR2] = ACTIONS(2313), + [anon_sym_and2] = ACTIONS(2311), + [anon_sym_xor2] = ACTIONS(2311), + [anon_sym_or2] = ACTIONS(2311), + [anon_sym_not_DASHin2] = ACTIONS(2311), + [anon_sym_has2] = ACTIONS(2311), + [anon_sym_not_DASHhas2] = ACTIONS(2311), + [anon_sym_starts_DASHwith2] = ACTIONS(2311), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2311), + [anon_sym_ends_DASHwith2] = ACTIONS(2311), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2311), + [anon_sym_EQ_EQ2] = ACTIONS(2311), + [anon_sym_BANG_EQ2] = ACTIONS(2311), + [anon_sym_LT2] = ACTIONS(2313), + [anon_sym_LT_EQ2] = ACTIONS(2311), + [anon_sym_GT_EQ2] = ACTIONS(2311), + [anon_sym_EQ_TILDE2] = ACTIONS(2311), + [anon_sym_BANG_TILDE2] = ACTIONS(2311), + [anon_sym_like2] = ACTIONS(2311), + [anon_sym_not_DASHlike2] = ACTIONS(2311), + [anon_sym_STAR_STAR2] = ACTIONS(2311), + [anon_sym_PLUS_PLUS2] = ACTIONS(2311), + [anon_sym_SLASH2] = ACTIONS(2313), + [anon_sym_mod2] = ACTIONS(2311), + [anon_sym_SLASH_SLASH2] = ACTIONS(2311), + [anon_sym_PLUS2] = ACTIONS(2313), + [anon_sym_bit_DASHshl2] = ACTIONS(2311), + [anon_sym_bit_DASHshr2] = ACTIONS(2311), + [anon_sym_bit_DASHand2] = ACTIONS(2311), + [anon_sym_bit_DASHxor2] = ACTIONS(2311), + [anon_sym_bit_DASHor2] = ACTIONS(2311), + [anon_sym_err_GT] = ACTIONS(2313), + [anon_sym_out_GT] = ACTIONS(2313), + [anon_sym_e_GT] = ACTIONS(2313), + [anon_sym_o_GT] = ACTIONS(2313), + [anon_sym_err_PLUSout_GT] = ACTIONS(2313), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2313), + [anon_sym_o_PLUSe_GT] = ACTIONS(2313), + [anon_sym_e_PLUSo_GT] = ACTIONS(2313), + [anon_sym_err_GT_GT] = ACTIONS(2311), + [anon_sym_out_GT_GT] = ACTIONS(2311), + [anon_sym_e_GT_GT] = ACTIONS(2311), + [anon_sym_o_GT_GT] = ACTIONS(2311), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2311), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2311), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2311), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2311), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(799)] = { + [aux_sym__repeat_newline] = STATE(3431), + [aux_sym__pipe_separator] = STATE(799), + [sym_comment] = STATE(799), + [anon_sym_export] = ACTIONS(2315), + [anon_sym_alias] = ACTIONS(2317), + [anon_sym_let] = ACTIONS(2317), + [anon_sym_mut] = ACTIONS(2317), + [anon_sym_const] = ACTIONS(2317), + [aux_sym_cmd_identifier_token1] = ACTIONS(2315), + [anon_sym_def] = ACTIONS(2317), + [anon_sym_use] = ACTIONS(2317), + [anon_sym_export_DASHenv] = ACTIONS(2317), + [anon_sym_extern] = ACTIONS(2317), + [anon_sym_module] = ACTIONS(2317), + [anon_sym_for] = ACTIONS(2317), + [anon_sym_loop] = ACTIONS(2317), + [anon_sym_while] = ACTIONS(2317), + [anon_sym_if] = ACTIONS(2317), + [anon_sym_else] = ACTIONS(2317), + [anon_sym_try] = ACTIONS(2317), + [anon_sym_catch] = ACTIONS(2317), + [anon_sym_match] = ACTIONS(2317), + [anon_sym_in] = ACTIONS(2315), [anon_sym_true] = ACTIONS(2317), [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2321), - [aux_sym_cmd_identifier_token4] = ACTIONS(2321), - [aux_sym_cmd_identifier_token5] = ACTIONS(2321), + [anon_sym_null] = ACTIONS(2317), + [aux_sym_cmd_identifier_token3] = ACTIONS(2317), + [aux_sym_cmd_identifier_token4] = ACTIONS(2317), + [aux_sym_cmd_identifier_token5] = ACTIONS(2317), + [sym__newline] = ACTIONS(2319), + [anon_sym_PIPE] = ACTIONS(2322), + [anon_sym_err_GT_PIPE] = ACTIONS(2322), + [anon_sym_out_GT_PIPE] = ACTIONS(2322), + [anon_sym_e_GT_PIPE] = ACTIONS(2322), + [anon_sym_o_GT_PIPE] = ACTIONS(2322), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2322), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2322), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2322), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2322), + [anon_sym_LBRACK] = ACTIONS(2317), + [anon_sym_LPAREN] = ACTIONS(2317), + [anon_sym_DOLLAR] = ACTIONS(2315), + [anon_sym_DASH2] = ACTIONS(2315), + [anon_sym_LBRACE] = ACTIONS(2317), + [anon_sym_DOT_DOT] = ACTIONS(2315), + [anon_sym_where] = ACTIONS(2317), + [aux_sym_expr_unary_token1] = ACTIONS(2317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2317), + [anon_sym_DOT_DOT_LT] = ACTIONS(2317), + [aux_sym__val_number_decimal_token1] = ACTIONS(2315), + [aux_sym__val_number_decimal_token2] = ACTIONS(2317), + [aux_sym__val_number_decimal_token3] = ACTIONS(2317), + [aux_sym__val_number_decimal_token4] = ACTIONS(2317), + [aux_sym__val_number_token1] = ACTIONS(2317), + [aux_sym__val_number_token2] = ACTIONS(2317), + [aux_sym__val_number_token3] = ACTIONS(2317), + [anon_sym_0b] = ACTIONS(2315), + [anon_sym_0o] = ACTIONS(2315), + [anon_sym_0x] = ACTIONS(2315), + [sym_val_date] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2317), + [anon_sym_SQUOTE] = ACTIONS(2317), + [anon_sym_BQUOTE] = ACTIONS(2317), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2317), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2317), + [anon_sym_CARET] = ACTIONS(2317), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2317), + }, + [STATE(800)] = { + [aux_sym__repeat_newline] = STATE(1098), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(800), + [anon_sym_in] = ACTIONS(2289), + [sym__newline] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_err_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_GT_PIPE] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), + [anon_sym_RPAREN] = ACTIONS(2289), + [anon_sym_GT2] = ACTIONS(2291), + [anon_sym_DASH2] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_STAR2] = ACTIONS(2291), + [anon_sym_and2] = ACTIONS(2289), + [anon_sym_xor2] = ACTIONS(2289), + [anon_sym_or2] = ACTIONS(2289), + [anon_sym_not_DASHin2] = ACTIONS(2289), + [anon_sym_has2] = ACTIONS(2289), + [anon_sym_not_DASHhas2] = ACTIONS(2289), + [anon_sym_starts_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), + [anon_sym_ends_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), + [anon_sym_EQ_EQ2] = ACTIONS(2289), + [anon_sym_BANG_EQ2] = ACTIONS(2289), + [anon_sym_LT2] = ACTIONS(2291), + [anon_sym_LT_EQ2] = ACTIONS(2289), + [anon_sym_GT_EQ2] = ACTIONS(2289), + [anon_sym_EQ_TILDE2] = ACTIONS(2289), + [anon_sym_BANG_TILDE2] = ACTIONS(2289), + [anon_sym_like2] = ACTIONS(2289), + [anon_sym_not_DASHlike2] = ACTIONS(2289), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2289), + [anon_sym_PLUS_PLUS2] = ACTIONS(2289), + [anon_sym_SLASH2] = ACTIONS(2291), + [anon_sym_mod2] = ACTIONS(2289), + [anon_sym_SLASH_SLASH2] = ACTIONS(2289), + [anon_sym_PLUS2] = ACTIONS(2291), + [anon_sym_bit_DASHshl2] = ACTIONS(2289), + [anon_sym_bit_DASHshr2] = ACTIONS(2289), + [anon_sym_bit_DASHand2] = ACTIONS(2289), + [anon_sym_bit_DASHxor2] = ACTIONS(2289), + [anon_sym_bit_DASHor2] = ACTIONS(2289), + [anon_sym_err_GT] = ACTIONS(2291), + [anon_sym_out_GT] = ACTIONS(2291), + [anon_sym_e_GT] = ACTIONS(2291), + [anon_sym_o_GT] = ACTIONS(2291), + [anon_sym_err_PLUSout_GT] = ACTIONS(2291), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), + [anon_sym_o_PLUSe_GT] = ACTIONS(2291), + [anon_sym_e_PLUSo_GT] = ACTIONS(2291), + [anon_sym_err_GT_GT] = ACTIONS(2289), + [anon_sym_out_GT_GT] = ACTIONS(2289), + [anon_sym_e_GT_GT] = ACTIONS(2289), + [anon_sym_o_GT_GT] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(801)] = { + [aux_sym__repeat_newline] = STATE(1100), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(801), + [anon_sym_in] = ACTIONS(2289), + [sym__newline] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_err_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_GT_PIPE] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), + [anon_sym_RPAREN] = ACTIONS(2289), + [anon_sym_GT2] = ACTIONS(2291), + [anon_sym_DASH2] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_STAR2] = ACTIONS(2291), + [anon_sym_and2] = ACTIONS(2289), + [anon_sym_xor2] = ACTIONS(2289), + [anon_sym_or2] = ACTIONS(2289), + [anon_sym_not_DASHin2] = ACTIONS(2289), + [anon_sym_has2] = ACTIONS(2289), + [anon_sym_not_DASHhas2] = ACTIONS(2289), + [anon_sym_starts_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), + [anon_sym_ends_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), + [anon_sym_EQ_EQ2] = ACTIONS(2289), + [anon_sym_BANG_EQ2] = ACTIONS(2289), + [anon_sym_LT2] = ACTIONS(2291), + [anon_sym_LT_EQ2] = ACTIONS(2289), + [anon_sym_GT_EQ2] = ACTIONS(2289), + [anon_sym_EQ_TILDE2] = ACTIONS(2289), + [anon_sym_BANG_TILDE2] = ACTIONS(2289), + [anon_sym_like2] = ACTIONS(2289), + [anon_sym_not_DASHlike2] = ACTIONS(2289), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2289), + [anon_sym_PLUS_PLUS2] = ACTIONS(2289), + [anon_sym_SLASH2] = ACTIONS(2291), + [anon_sym_mod2] = ACTIONS(2289), + [anon_sym_SLASH_SLASH2] = ACTIONS(2289), + [anon_sym_PLUS2] = ACTIONS(2291), + [anon_sym_bit_DASHshl2] = ACTIONS(2289), + [anon_sym_bit_DASHshr2] = ACTIONS(2289), + [anon_sym_bit_DASHand2] = ACTIONS(2289), + [anon_sym_bit_DASHxor2] = ACTIONS(2289), + [anon_sym_bit_DASHor2] = ACTIONS(2289), + [anon_sym_err_GT] = ACTIONS(2291), + [anon_sym_out_GT] = ACTIONS(2291), + [anon_sym_e_GT] = ACTIONS(2291), + [anon_sym_o_GT] = ACTIONS(2291), + [anon_sym_err_PLUSout_GT] = ACTIONS(2291), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), + [anon_sym_o_PLUSe_GT] = ACTIONS(2291), + [anon_sym_e_PLUSo_GT] = ACTIONS(2291), + [anon_sym_err_GT_GT] = ACTIONS(2289), + [anon_sym_out_GT_GT] = ACTIONS(2289), + [anon_sym_e_GT_GT] = ACTIONS(2289), + [anon_sym_o_GT_GT] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(802)] = { + [sym_cell_path] = STATE(1275), + [sym_path] = STATE(712), + [sym_comment] = STATE(802), + [aux_sym__where_predicate_lhs_repeat1] = STATE(547), + [ts_builtin_sym_end] = ACTIONS(1854), + [anon_sym_in] = ACTIONS(1854), + [sym__newline] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1854), + [anon_sym_PIPE] = ACTIONS(1854), + [anon_sym_err_GT_PIPE] = ACTIONS(1854), + [anon_sym_out_GT_PIPE] = ACTIONS(1854), + [anon_sym_e_GT_PIPE] = ACTIONS(1854), + [anon_sym_o_GT_PIPE] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1854), + [anon_sym_GT2] = ACTIONS(1856), + [anon_sym_DASH2] = ACTIONS(1854), + [anon_sym_STAR2] = ACTIONS(1856), + [anon_sym_and2] = ACTIONS(1854), + [anon_sym_xor2] = ACTIONS(1854), + [anon_sym_or2] = ACTIONS(1854), + [anon_sym_not_DASHin2] = ACTIONS(1854), + [anon_sym_has2] = ACTIONS(1854), + [anon_sym_not_DASHhas2] = ACTIONS(1854), + [anon_sym_starts_DASHwith2] = ACTIONS(1854), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1854), + [anon_sym_ends_DASHwith2] = ACTIONS(1854), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1854), + [anon_sym_EQ_EQ2] = ACTIONS(1854), + [anon_sym_BANG_EQ2] = ACTIONS(1854), + [anon_sym_LT2] = ACTIONS(1856), + [anon_sym_LT_EQ2] = ACTIONS(1854), + [anon_sym_GT_EQ2] = ACTIONS(1854), + [anon_sym_EQ_TILDE2] = ACTIONS(1854), + [anon_sym_BANG_TILDE2] = ACTIONS(1854), + [anon_sym_like2] = ACTIONS(1854), + [anon_sym_not_DASHlike2] = ACTIONS(1854), + [anon_sym_STAR_STAR2] = ACTIONS(1854), + [anon_sym_PLUS_PLUS2] = ACTIONS(1854), + [anon_sym_SLASH2] = ACTIONS(1856), + [anon_sym_mod2] = ACTIONS(1854), + [anon_sym_SLASH_SLASH2] = ACTIONS(1854), + [anon_sym_PLUS2] = ACTIONS(1856), + [anon_sym_bit_DASHshl2] = ACTIONS(1854), + [anon_sym_bit_DASHshr2] = ACTIONS(1854), + [anon_sym_bit_DASHand2] = ACTIONS(1854), + [anon_sym_bit_DASHxor2] = ACTIONS(1854), + [anon_sym_bit_DASHor2] = ACTIONS(1854), + [anon_sym_DOT2] = ACTIONS(2192), + [anon_sym_err_GT] = ACTIONS(1856), + [anon_sym_out_GT] = ACTIONS(1856), + [anon_sym_e_GT] = ACTIONS(1856), + [anon_sym_o_GT] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT] = ACTIONS(1856), + [anon_sym_err_GT_GT] = ACTIONS(1854), + [anon_sym_out_GT_GT] = ACTIONS(1854), + [anon_sym_e_GT_GT] = ACTIONS(1854), + [anon_sym_o_GT_GT] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1854), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(803)] = { + [sym_comment] = STATE(803), + [anon_sym_in] = ACTIONS(2325), + [sym__newline] = ACTIONS(2325), + [anon_sym_SEMI] = ACTIONS(2325), + [anon_sym_PIPE] = ACTIONS(2325), + [anon_sym_err_GT_PIPE] = ACTIONS(2325), + [anon_sym_out_GT_PIPE] = ACTIONS(2325), + [anon_sym_e_GT_PIPE] = ACTIONS(2325), + [anon_sym_o_GT_PIPE] = ACTIONS(2325), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2325), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2325), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2325), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2325), + [anon_sym_RPAREN] = ACTIONS(2325), + [anon_sym_GT2] = ACTIONS(2327), + [anon_sym_DASH2] = ACTIONS(2325), + [anon_sym_LBRACE] = ACTIONS(2325), + [anon_sym_RBRACE] = ACTIONS(2325), + [anon_sym_STAR2] = ACTIONS(2327), + [anon_sym_and2] = ACTIONS(2325), + [anon_sym_xor2] = ACTIONS(2325), + [anon_sym_or2] = ACTIONS(2325), + [anon_sym_not_DASHin2] = ACTIONS(2325), + [anon_sym_has2] = ACTIONS(2325), + [anon_sym_not_DASHhas2] = ACTIONS(2325), + [anon_sym_starts_DASHwith2] = ACTIONS(2325), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2325), + [anon_sym_ends_DASHwith2] = ACTIONS(2325), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2325), + [anon_sym_EQ_EQ2] = ACTIONS(2325), + [anon_sym_BANG_EQ2] = ACTIONS(2325), + [anon_sym_LT2] = ACTIONS(2327), + [anon_sym_LT_EQ2] = ACTIONS(2325), + [anon_sym_GT_EQ2] = ACTIONS(2325), + [anon_sym_EQ_TILDE2] = ACTIONS(2325), + [anon_sym_BANG_TILDE2] = ACTIONS(2325), + [anon_sym_like2] = ACTIONS(2325), + [anon_sym_not_DASHlike2] = ACTIONS(2325), + [anon_sym_LPAREN2] = ACTIONS(2325), + [anon_sym_STAR_STAR2] = ACTIONS(2325), + [anon_sym_PLUS_PLUS2] = ACTIONS(2325), + [anon_sym_SLASH2] = ACTIONS(2327), + [anon_sym_mod2] = ACTIONS(2325), + [anon_sym_SLASH_SLASH2] = ACTIONS(2325), + [anon_sym_PLUS2] = ACTIONS(2327), + [anon_sym_bit_DASHshl2] = ACTIONS(2325), + [anon_sym_bit_DASHshr2] = ACTIONS(2325), + [anon_sym_bit_DASHand2] = ACTIONS(2325), + [anon_sym_bit_DASHxor2] = ACTIONS(2325), + [anon_sym_bit_DASHor2] = ACTIONS(2325), + [anon_sym_err_GT] = ACTIONS(2327), + [anon_sym_out_GT] = ACTIONS(2327), + [anon_sym_e_GT] = ACTIONS(2327), + [anon_sym_o_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT] = ACTIONS(2327), + [anon_sym_err_GT_GT] = ACTIONS(2325), + [anon_sym_out_GT_GT] = ACTIONS(2325), + [anon_sym_e_GT_GT] = ACTIONS(2325), + [anon_sym_o_GT_GT] = ACTIONS(2325), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2325), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2325), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2325), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2325), + [sym__unquoted_pattern] = ACTIONS(2327), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(804)] = { + [sym_comment] = STATE(804), + [anon_sym_if] = ACTIONS(2329), + [anon_sym_in] = ACTIONS(2329), + [sym__newline] = ACTIONS(2329), + [anon_sym_SEMI] = ACTIONS(2329), + [anon_sym_PIPE] = ACTIONS(2329), + [anon_sym_err_GT_PIPE] = ACTIONS(2329), + [anon_sym_out_GT_PIPE] = ACTIONS(2329), + [anon_sym_e_GT_PIPE] = ACTIONS(2329), + [anon_sym_o_GT_PIPE] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2329), + [anon_sym_RPAREN] = ACTIONS(2329), + [anon_sym_GT2] = ACTIONS(2331), + [anon_sym_DASH2] = ACTIONS(2329), + [anon_sym_LBRACE] = ACTIONS(2329), + [anon_sym_RBRACE] = ACTIONS(2329), + [anon_sym_EQ_GT] = ACTIONS(2329), + [anon_sym_STAR2] = ACTIONS(2331), + [anon_sym_and2] = ACTIONS(2329), + [anon_sym_xor2] = ACTIONS(2329), + [anon_sym_or2] = ACTIONS(2329), + [anon_sym_not_DASHin2] = ACTIONS(2329), + [anon_sym_has2] = ACTIONS(2329), + [anon_sym_not_DASHhas2] = ACTIONS(2329), + [anon_sym_starts_DASHwith2] = ACTIONS(2329), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2329), + [anon_sym_ends_DASHwith2] = ACTIONS(2329), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2329), + [anon_sym_EQ_EQ2] = ACTIONS(2329), + [anon_sym_BANG_EQ2] = ACTIONS(2329), + [anon_sym_LT2] = ACTIONS(2331), + [anon_sym_LT_EQ2] = ACTIONS(2329), + [anon_sym_GT_EQ2] = ACTIONS(2329), + [anon_sym_EQ_TILDE2] = ACTIONS(2329), + [anon_sym_BANG_TILDE2] = ACTIONS(2329), + [anon_sym_like2] = ACTIONS(2329), + [anon_sym_not_DASHlike2] = ACTIONS(2329), + [anon_sym_STAR_STAR2] = ACTIONS(2329), + [anon_sym_PLUS_PLUS2] = ACTIONS(2329), + [anon_sym_SLASH2] = ACTIONS(2331), + [anon_sym_mod2] = ACTIONS(2329), + [anon_sym_SLASH_SLASH2] = ACTIONS(2329), + [anon_sym_PLUS2] = ACTIONS(2331), + [anon_sym_bit_DASHshl2] = ACTIONS(2329), + [anon_sym_bit_DASHshr2] = ACTIONS(2329), + [anon_sym_bit_DASHand2] = ACTIONS(2329), + [anon_sym_bit_DASHxor2] = ACTIONS(2329), + [anon_sym_bit_DASHor2] = ACTIONS(2329), + [anon_sym_err_GT] = ACTIONS(2331), + [anon_sym_out_GT] = ACTIONS(2331), + [anon_sym_e_GT] = ACTIONS(2331), + [anon_sym_o_GT] = ACTIONS(2331), + [anon_sym_err_PLUSout_GT] = ACTIONS(2331), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2331), + [anon_sym_o_PLUSe_GT] = ACTIONS(2331), + [anon_sym_e_PLUSo_GT] = ACTIONS(2331), + [anon_sym_err_GT_GT] = ACTIONS(2329), + [anon_sym_out_GT_GT] = ACTIONS(2329), + [anon_sym_e_GT_GT] = ACTIONS(2329), + [anon_sym_o_GT_GT] = ACTIONS(2329), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2329), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2329), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2329), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2329), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(805)] = { + [sym_comment] = STATE(805), + [anon_sym_if] = ACTIONS(2333), + [anon_sym_in] = ACTIONS(2333), + [sym__newline] = ACTIONS(2333), + [anon_sym_SEMI] = ACTIONS(2333), + [anon_sym_PIPE] = ACTIONS(2333), + [anon_sym_err_GT_PIPE] = ACTIONS(2333), + [anon_sym_out_GT_PIPE] = ACTIONS(2333), + [anon_sym_e_GT_PIPE] = ACTIONS(2333), + [anon_sym_o_GT_PIPE] = ACTIONS(2333), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2333), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2333), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2333), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2333), + [anon_sym_RPAREN] = ACTIONS(2333), + [anon_sym_GT2] = ACTIONS(2335), + [anon_sym_DASH2] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(2333), + [anon_sym_RBRACE] = ACTIONS(2333), + [anon_sym_EQ_GT] = ACTIONS(2333), + [anon_sym_STAR2] = ACTIONS(2335), + [anon_sym_and2] = ACTIONS(2333), + [anon_sym_xor2] = ACTIONS(2333), + [anon_sym_or2] = ACTIONS(2333), + [anon_sym_not_DASHin2] = ACTIONS(2333), + [anon_sym_has2] = ACTIONS(2333), + [anon_sym_not_DASHhas2] = ACTIONS(2333), + [anon_sym_starts_DASHwith2] = ACTIONS(2333), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2333), + [anon_sym_ends_DASHwith2] = ACTIONS(2333), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2333), + [anon_sym_EQ_EQ2] = ACTIONS(2333), + [anon_sym_BANG_EQ2] = ACTIONS(2333), + [anon_sym_LT2] = ACTIONS(2335), + [anon_sym_LT_EQ2] = ACTIONS(2333), + [anon_sym_GT_EQ2] = ACTIONS(2333), + [anon_sym_EQ_TILDE2] = ACTIONS(2333), + [anon_sym_BANG_TILDE2] = ACTIONS(2333), + [anon_sym_like2] = ACTIONS(2333), + [anon_sym_not_DASHlike2] = ACTIONS(2333), + [anon_sym_STAR_STAR2] = ACTIONS(2333), + [anon_sym_PLUS_PLUS2] = ACTIONS(2333), + [anon_sym_SLASH2] = ACTIONS(2335), + [anon_sym_mod2] = ACTIONS(2333), + [anon_sym_SLASH_SLASH2] = ACTIONS(2333), + [anon_sym_PLUS2] = ACTIONS(2335), + [anon_sym_bit_DASHshl2] = ACTIONS(2333), + [anon_sym_bit_DASHshr2] = ACTIONS(2333), + [anon_sym_bit_DASHand2] = ACTIONS(2333), + [anon_sym_bit_DASHxor2] = ACTIONS(2333), + [anon_sym_bit_DASHor2] = ACTIONS(2333), + [anon_sym_err_GT] = ACTIONS(2335), + [anon_sym_out_GT] = ACTIONS(2335), + [anon_sym_e_GT] = ACTIONS(2335), + [anon_sym_o_GT] = ACTIONS(2335), + [anon_sym_err_PLUSout_GT] = ACTIONS(2335), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2335), + [anon_sym_o_PLUSe_GT] = ACTIONS(2335), + [anon_sym_e_PLUSo_GT] = ACTIONS(2335), + [anon_sym_err_GT_GT] = ACTIONS(2333), + [anon_sym_out_GT_GT] = ACTIONS(2333), + [anon_sym_e_GT_GT] = ACTIONS(2333), + [anon_sym_o_GT_GT] = ACTIONS(2333), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2333), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2333), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2333), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2333), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(806)] = { + [sym_comment] = STATE(806), + [anon_sym_if] = ACTIONS(2136), + [anon_sym_in] = ACTIONS(2136), + [sym__newline] = ACTIONS(2136), + [anon_sym_SEMI] = ACTIONS(2136), + [anon_sym_PIPE] = ACTIONS(2136), + [anon_sym_err_GT_PIPE] = ACTIONS(2136), + [anon_sym_out_GT_PIPE] = ACTIONS(2136), + [anon_sym_e_GT_PIPE] = ACTIONS(2136), + [anon_sym_o_GT_PIPE] = ACTIONS(2136), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), + [anon_sym_RPAREN] = ACTIONS(2136), + [anon_sym_GT2] = ACTIONS(2138), + [anon_sym_DASH2] = ACTIONS(2136), + [anon_sym_LBRACE] = ACTIONS(2136), + [anon_sym_RBRACE] = ACTIONS(2136), + [anon_sym_EQ_GT] = ACTIONS(2136), + [anon_sym_STAR2] = ACTIONS(2138), + [anon_sym_and2] = ACTIONS(2136), + [anon_sym_xor2] = ACTIONS(2136), + [anon_sym_or2] = ACTIONS(2136), + [anon_sym_not_DASHin2] = ACTIONS(2136), + [anon_sym_has2] = ACTIONS(2136), + [anon_sym_not_DASHhas2] = ACTIONS(2136), + [anon_sym_starts_DASHwith2] = ACTIONS(2136), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2136), + [anon_sym_ends_DASHwith2] = ACTIONS(2136), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2136), + [anon_sym_EQ_EQ2] = ACTIONS(2136), + [anon_sym_BANG_EQ2] = ACTIONS(2136), + [anon_sym_LT2] = ACTIONS(2138), + [anon_sym_LT_EQ2] = ACTIONS(2136), + [anon_sym_GT_EQ2] = ACTIONS(2136), + [anon_sym_EQ_TILDE2] = ACTIONS(2136), + [anon_sym_BANG_TILDE2] = ACTIONS(2136), + [anon_sym_like2] = ACTIONS(2136), + [anon_sym_not_DASHlike2] = ACTIONS(2136), + [anon_sym_STAR_STAR2] = ACTIONS(2136), + [anon_sym_PLUS_PLUS2] = ACTIONS(2136), + [anon_sym_SLASH2] = ACTIONS(2138), + [anon_sym_mod2] = ACTIONS(2136), + [anon_sym_SLASH_SLASH2] = ACTIONS(2136), + [anon_sym_PLUS2] = ACTIONS(2138), + [anon_sym_bit_DASHshl2] = ACTIONS(2136), + [anon_sym_bit_DASHshr2] = ACTIONS(2136), + [anon_sym_bit_DASHand2] = ACTIONS(2136), + [anon_sym_bit_DASHxor2] = ACTIONS(2136), + [anon_sym_bit_DASHor2] = ACTIONS(2136), + [anon_sym_err_GT] = ACTIONS(2138), + [anon_sym_out_GT] = ACTIONS(2138), + [anon_sym_e_GT] = ACTIONS(2138), + [anon_sym_o_GT] = ACTIONS(2138), + [anon_sym_err_PLUSout_GT] = ACTIONS(2138), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2138), + [anon_sym_o_PLUSe_GT] = ACTIONS(2138), + [anon_sym_e_PLUSo_GT] = ACTIONS(2138), + [anon_sym_err_GT_GT] = ACTIONS(2136), + [anon_sym_out_GT_GT] = ACTIONS(2136), + [anon_sym_e_GT_GT] = ACTIONS(2136), + [anon_sym_o_GT_GT] = ACTIONS(2136), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(807)] = { + [sym_comment] = STATE(807), + [anon_sym_if] = ACTIONS(2144), + [anon_sym_in] = ACTIONS(2144), + [sym__newline] = ACTIONS(2144), + [anon_sym_SEMI] = ACTIONS(2144), + [anon_sym_PIPE] = ACTIONS(2144), + [anon_sym_err_GT_PIPE] = ACTIONS(2144), + [anon_sym_out_GT_PIPE] = ACTIONS(2144), + [anon_sym_e_GT_PIPE] = ACTIONS(2144), + [anon_sym_o_GT_PIPE] = ACTIONS(2144), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2144), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2144), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2144), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2144), + [anon_sym_RPAREN] = ACTIONS(2144), + [anon_sym_GT2] = ACTIONS(2146), + [anon_sym_DASH2] = ACTIONS(2144), + [anon_sym_LBRACE] = ACTIONS(2144), + [anon_sym_RBRACE] = ACTIONS(2144), + [anon_sym_EQ_GT] = ACTIONS(2144), + [anon_sym_STAR2] = ACTIONS(2146), + [anon_sym_and2] = ACTIONS(2144), + [anon_sym_xor2] = ACTIONS(2144), + [anon_sym_or2] = ACTIONS(2144), + [anon_sym_not_DASHin2] = ACTIONS(2144), + [anon_sym_has2] = ACTIONS(2144), + [anon_sym_not_DASHhas2] = ACTIONS(2144), + [anon_sym_starts_DASHwith2] = ACTIONS(2144), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2144), + [anon_sym_ends_DASHwith2] = ACTIONS(2144), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2144), + [anon_sym_EQ_EQ2] = ACTIONS(2144), + [anon_sym_BANG_EQ2] = ACTIONS(2144), + [anon_sym_LT2] = ACTIONS(2146), + [anon_sym_LT_EQ2] = ACTIONS(2144), + [anon_sym_GT_EQ2] = ACTIONS(2144), + [anon_sym_EQ_TILDE2] = ACTIONS(2144), + [anon_sym_BANG_TILDE2] = ACTIONS(2144), + [anon_sym_like2] = ACTIONS(2144), + [anon_sym_not_DASHlike2] = ACTIONS(2144), + [anon_sym_STAR_STAR2] = ACTIONS(2144), + [anon_sym_PLUS_PLUS2] = ACTIONS(2144), + [anon_sym_SLASH2] = ACTIONS(2146), + [anon_sym_mod2] = ACTIONS(2144), + [anon_sym_SLASH_SLASH2] = ACTIONS(2144), + [anon_sym_PLUS2] = ACTIONS(2146), + [anon_sym_bit_DASHshl2] = ACTIONS(2144), + [anon_sym_bit_DASHshr2] = ACTIONS(2144), + [anon_sym_bit_DASHand2] = ACTIONS(2144), + [anon_sym_bit_DASHxor2] = ACTIONS(2144), + [anon_sym_bit_DASHor2] = ACTIONS(2144), + [anon_sym_err_GT] = ACTIONS(2146), + [anon_sym_out_GT] = ACTIONS(2146), + [anon_sym_e_GT] = ACTIONS(2146), + [anon_sym_o_GT] = ACTIONS(2146), + [anon_sym_err_PLUSout_GT] = ACTIONS(2146), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2146), + [anon_sym_o_PLUSe_GT] = ACTIONS(2146), + [anon_sym_e_PLUSo_GT] = ACTIONS(2146), + [anon_sym_err_GT_GT] = ACTIONS(2144), + [anon_sym_out_GT_GT] = ACTIONS(2144), + [anon_sym_e_GT_GT] = ACTIONS(2144), + [anon_sym_o_GT_GT] = ACTIONS(2144), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2144), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2144), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2144), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2144), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(808)] = { + [sym_expr_unary] = STATE(1282), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_binary] = STATE(1282), + [sym__expr_binary_expression] = STATE(1299), + [sym_expr_parenthesized] = STATE(925), + [sym_val_range] = STATE(1282), + [sym__val_range] = STATE(4556), + [sym__value] = STATE(1282), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(968), + [sym_val_variable] = STATE(912), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(472), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_unquoted] = STATE(1039), + [sym__unquoted_with_expr] = STATE(1302), + [sym__unquoted_anonymous_prefix] = STATE(4556), + [sym_comment] = STATE(808), + [anon_sym_true] = ACTIONS(2172), + [anon_sym_false] = ACTIONS(2172), + [anon_sym_null] = ACTIONS(2174), + [aux_sym_cmd_identifier_token3] = ACTIONS(2176), + [aux_sym_cmd_identifier_token4] = ACTIONS(2176), + [aux_sym_cmd_identifier_token5] = ACTIONS(2176), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2323), + [anon_sym_DOT_DOT] = ACTIONS(2178), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2325), - [anon_sym_DOT_DOT_LT] = ACTIONS(2325), - [aux_sym__val_number_decimal_token1] = ACTIONS(2327), - [aux_sym__val_number_decimal_token2] = ACTIONS(2329), - [aux_sym__val_number_decimal_token3] = ACTIONS(2331), - [aux_sym__val_number_decimal_token4] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2180), + [anon_sym_DOT_DOT_LT] = ACTIONS(2180), + [aux_sym__val_number_decimal_token1] = ACTIONS(2182), + [aux_sym__val_number_decimal_token2] = ACTIONS(2184), + [aux_sym__val_number_decimal_token3] = ACTIONS(2186), + [aux_sym__val_number_decimal_token4] = ACTIONS(2186), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2333), + [sym_val_date] = ACTIONS(2188), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(824)] = { - [aux_sym__repeat_newline] = STATE(1062), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(824), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [STATE(809)] = { + [sym_comment] = STATE(809), + [anon_sym_if] = ACTIONS(2152), + [anon_sym_in] = ACTIONS(2152), + [sym__newline] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_PIPE] = ACTIONS(2152), + [anon_sym_err_GT_PIPE] = ACTIONS(2152), + [anon_sym_out_GT_PIPE] = ACTIONS(2152), + [anon_sym_e_GT_PIPE] = ACTIONS(2152), + [anon_sym_o_GT_PIPE] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2152), + [anon_sym_RPAREN] = ACTIONS(2152), + [anon_sym_GT2] = ACTIONS(2154), + [anon_sym_DASH2] = ACTIONS(2152), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_RBRACE] = ACTIONS(2152), + [anon_sym_EQ_GT] = ACTIONS(2152), + [anon_sym_STAR2] = ACTIONS(2154), + [anon_sym_and2] = ACTIONS(2152), + [anon_sym_xor2] = ACTIONS(2152), + [anon_sym_or2] = ACTIONS(2152), + [anon_sym_not_DASHin2] = ACTIONS(2152), + [anon_sym_has2] = ACTIONS(2152), + [anon_sym_not_DASHhas2] = ACTIONS(2152), + [anon_sym_starts_DASHwith2] = ACTIONS(2152), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2152), + [anon_sym_ends_DASHwith2] = ACTIONS(2152), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2152), + [anon_sym_EQ_EQ2] = ACTIONS(2152), + [anon_sym_BANG_EQ2] = ACTIONS(2152), + [anon_sym_LT2] = ACTIONS(2154), + [anon_sym_LT_EQ2] = ACTIONS(2152), + [anon_sym_GT_EQ2] = ACTIONS(2152), + [anon_sym_EQ_TILDE2] = ACTIONS(2152), + [anon_sym_BANG_TILDE2] = ACTIONS(2152), + [anon_sym_like2] = ACTIONS(2152), + [anon_sym_not_DASHlike2] = ACTIONS(2152), + [anon_sym_STAR_STAR2] = ACTIONS(2152), + [anon_sym_PLUS_PLUS2] = ACTIONS(2152), + [anon_sym_SLASH2] = ACTIONS(2154), + [anon_sym_mod2] = ACTIONS(2152), + [anon_sym_SLASH_SLASH2] = ACTIONS(2152), + [anon_sym_PLUS2] = ACTIONS(2154), + [anon_sym_bit_DASHshl2] = ACTIONS(2152), + [anon_sym_bit_DASHshr2] = ACTIONS(2152), + [anon_sym_bit_DASHand2] = ACTIONS(2152), + [anon_sym_bit_DASHxor2] = ACTIONS(2152), + [anon_sym_bit_DASHor2] = ACTIONS(2152), + [anon_sym_err_GT] = ACTIONS(2154), + [anon_sym_out_GT] = ACTIONS(2154), + [anon_sym_e_GT] = ACTIONS(2154), + [anon_sym_o_GT] = ACTIONS(2154), + [anon_sym_err_PLUSout_GT] = ACTIONS(2154), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2154), + [anon_sym_o_PLUSe_GT] = ACTIONS(2154), + [anon_sym_e_PLUSo_GT] = ACTIONS(2154), + [anon_sym_err_GT_GT] = ACTIONS(2152), + [anon_sym_out_GT_GT] = ACTIONS(2152), + [anon_sym_e_GT_GT] = ACTIONS(2152), + [anon_sym_o_GT_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2152), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(825)] = { - [aux_sym__repeat_newline] = STATE(1065), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(825), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [STATE(810)] = { + [aux_sym__repeat_newline] = STATE(1104), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(810), + [anon_sym_in] = ACTIONS(2289), + [sym__newline] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_err_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_GT_PIPE] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), + [anon_sym_RPAREN] = ACTIONS(2289), + [anon_sym_GT2] = ACTIONS(2291), + [anon_sym_DASH2] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_STAR2] = ACTIONS(2291), + [anon_sym_and2] = ACTIONS(2289), + [anon_sym_xor2] = ACTIONS(2289), + [anon_sym_or2] = ACTIONS(2289), + [anon_sym_not_DASHin2] = ACTIONS(2289), + [anon_sym_has2] = ACTIONS(2289), + [anon_sym_not_DASHhas2] = ACTIONS(2289), + [anon_sym_starts_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), + [anon_sym_ends_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), + [anon_sym_EQ_EQ2] = ACTIONS(2289), + [anon_sym_BANG_EQ2] = ACTIONS(2289), + [anon_sym_LT2] = ACTIONS(2291), + [anon_sym_LT_EQ2] = ACTIONS(2289), + [anon_sym_GT_EQ2] = ACTIONS(2289), + [anon_sym_EQ_TILDE2] = ACTIONS(2289), + [anon_sym_BANG_TILDE2] = ACTIONS(2289), + [anon_sym_like2] = ACTIONS(2289), + [anon_sym_not_DASHlike2] = ACTIONS(2289), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2289), + [anon_sym_PLUS_PLUS2] = ACTIONS(2289), + [anon_sym_SLASH2] = ACTIONS(2291), + [anon_sym_mod2] = ACTIONS(2289), + [anon_sym_SLASH_SLASH2] = ACTIONS(2289), + [anon_sym_PLUS2] = ACTIONS(2291), + [anon_sym_bit_DASHshl2] = ACTIONS(2289), + [anon_sym_bit_DASHshr2] = ACTIONS(2289), + [anon_sym_bit_DASHand2] = ACTIONS(2289), + [anon_sym_bit_DASHxor2] = ACTIONS(2289), + [anon_sym_bit_DASHor2] = ACTIONS(2289), + [anon_sym_err_GT] = ACTIONS(2291), + [anon_sym_out_GT] = ACTIONS(2291), + [anon_sym_e_GT] = ACTIONS(2291), + [anon_sym_o_GT] = ACTIONS(2291), + [anon_sym_err_PLUSout_GT] = ACTIONS(2291), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), + [anon_sym_o_PLUSe_GT] = ACTIONS(2291), + [anon_sym_e_PLUSo_GT] = ACTIONS(2291), + [anon_sym_err_GT_GT] = ACTIONS(2289), + [anon_sym_out_GT_GT] = ACTIONS(2289), + [anon_sym_e_GT_GT] = ACTIONS(2289), + [anon_sym_o_GT_GT] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(826)] = { - [sym_cmd_identifier] = STATE(4167), - [sym_expr_parenthesized] = STATE(5186), - [sym__spread_parenthesized] = STATE(4688), - [sym__spread_variable] = STATE(4697), - [sym_val_variable] = STATE(5186), - [sym_val_number] = STATE(5186), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(5186), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(5186), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4688), - [sym_record_entry] = STATE(4466), - [sym__record_key] = STATE(4982), - [sym_comment] = STATE(826), - [aux_sym_record_body_repeat1] = STATE(879), + [STATE(811)] = { + [sym_comment] = STATE(811), + [anon_sym_if] = ACTIONS(2337), + [anon_sym_in] = ACTIONS(2337), + [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_RPAREN] = ACTIONS(2337), + [anon_sym_GT2] = ACTIONS(2339), + [anon_sym_DASH2] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_RBRACE] = ACTIONS(2337), + [anon_sym_EQ_GT] = ACTIONS(2337), + [anon_sym_STAR2] = ACTIONS(2339), + [anon_sym_and2] = ACTIONS(2337), + [anon_sym_xor2] = ACTIONS(2337), + [anon_sym_or2] = ACTIONS(2337), + [anon_sym_not_DASHin2] = ACTIONS(2337), + [anon_sym_has2] = ACTIONS(2337), + [anon_sym_not_DASHhas2] = ACTIONS(2337), + [anon_sym_starts_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), + [anon_sym_ends_DASHwith2] = ACTIONS(2337), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), + [anon_sym_EQ_EQ2] = ACTIONS(2337), + [anon_sym_BANG_EQ2] = ACTIONS(2337), + [anon_sym_LT2] = ACTIONS(2339), + [anon_sym_LT_EQ2] = ACTIONS(2337), + [anon_sym_GT_EQ2] = ACTIONS(2337), + [anon_sym_EQ_TILDE2] = ACTIONS(2337), + [anon_sym_BANG_TILDE2] = ACTIONS(2337), + [anon_sym_like2] = ACTIONS(2337), + [anon_sym_not_DASHlike2] = ACTIONS(2337), + [anon_sym_STAR_STAR2] = ACTIONS(2337), + [anon_sym_PLUS_PLUS2] = ACTIONS(2337), + [anon_sym_SLASH2] = ACTIONS(2339), + [anon_sym_mod2] = ACTIONS(2337), + [anon_sym_SLASH_SLASH2] = ACTIONS(2337), + [anon_sym_PLUS2] = ACTIONS(2339), + [anon_sym_bit_DASHshl2] = ACTIONS(2337), + [anon_sym_bit_DASHshr2] = ACTIONS(2337), + [anon_sym_bit_DASHand2] = ACTIONS(2337), + [anon_sym_bit_DASHxor2] = ACTIONS(2337), + [anon_sym_bit_DASHor2] = ACTIONS(2337), + [anon_sym_err_GT] = ACTIONS(2339), + [anon_sym_out_GT] = ACTIONS(2339), + [anon_sym_e_GT] = ACTIONS(2339), + [anon_sym_o_GT] = ACTIONS(2339), + [anon_sym_err_PLUSout_GT] = ACTIONS(2339), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), + [anon_sym_o_PLUSe_GT] = ACTIONS(2339), + [anon_sym_e_PLUSo_GT] = ACTIONS(2339), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(812)] = { + [sym_comment] = STATE(812), + [anon_sym_if] = ACTIONS(2341), + [anon_sym_in] = ACTIONS(2341), + [sym__newline] = ACTIONS(2341), + [anon_sym_SEMI] = ACTIONS(2341), + [anon_sym_PIPE] = ACTIONS(2341), + [anon_sym_err_GT_PIPE] = ACTIONS(2341), + [anon_sym_out_GT_PIPE] = ACTIONS(2341), + [anon_sym_e_GT_PIPE] = ACTIONS(2341), + [anon_sym_o_GT_PIPE] = ACTIONS(2341), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2341), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2341), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2341), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2341), + [anon_sym_RPAREN] = ACTIONS(2341), + [anon_sym_GT2] = ACTIONS(2343), + [anon_sym_DASH2] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2341), + [anon_sym_RBRACE] = ACTIONS(2341), + [anon_sym_EQ_GT] = ACTIONS(2341), + [anon_sym_STAR2] = ACTIONS(2343), + [anon_sym_and2] = ACTIONS(2341), + [anon_sym_xor2] = ACTIONS(2341), + [anon_sym_or2] = ACTIONS(2341), + [anon_sym_not_DASHin2] = ACTIONS(2341), + [anon_sym_has2] = ACTIONS(2341), + [anon_sym_not_DASHhas2] = ACTIONS(2341), + [anon_sym_starts_DASHwith2] = ACTIONS(2341), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2341), + [anon_sym_ends_DASHwith2] = ACTIONS(2341), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2341), + [anon_sym_EQ_EQ2] = ACTIONS(2341), + [anon_sym_BANG_EQ2] = ACTIONS(2341), + [anon_sym_LT2] = ACTIONS(2343), + [anon_sym_LT_EQ2] = ACTIONS(2341), + [anon_sym_GT_EQ2] = ACTIONS(2341), + [anon_sym_EQ_TILDE2] = ACTIONS(2341), + [anon_sym_BANG_TILDE2] = ACTIONS(2341), + [anon_sym_like2] = ACTIONS(2341), + [anon_sym_not_DASHlike2] = ACTIONS(2341), + [anon_sym_STAR_STAR2] = ACTIONS(2341), + [anon_sym_PLUS_PLUS2] = ACTIONS(2341), + [anon_sym_SLASH2] = ACTIONS(2343), + [anon_sym_mod2] = ACTIONS(2341), + [anon_sym_SLASH_SLASH2] = ACTIONS(2341), + [anon_sym_PLUS2] = ACTIONS(2343), + [anon_sym_bit_DASHshl2] = ACTIONS(2341), + [anon_sym_bit_DASHshr2] = ACTIONS(2341), + [anon_sym_bit_DASHand2] = ACTIONS(2341), + [anon_sym_bit_DASHxor2] = ACTIONS(2341), + [anon_sym_bit_DASHor2] = ACTIONS(2341), + [anon_sym_err_GT] = ACTIONS(2343), + [anon_sym_out_GT] = ACTIONS(2343), + [anon_sym_e_GT] = ACTIONS(2343), + [anon_sym_o_GT] = ACTIONS(2343), + [anon_sym_err_PLUSout_GT] = ACTIONS(2343), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2343), + [anon_sym_o_PLUSe_GT] = ACTIONS(2343), + [anon_sym_e_PLUSo_GT] = ACTIONS(2343), + [anon_sym_err_GT_GT] = ACTIONS(2341), + [anon_sym_out_GT_GT] = ACTIONS(2341), + [anon_sym_e_GT_GT] = ACTIONS(2341), + [anon_sym_o_GT_GT] = ACTIONS(2341), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2341), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2341), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2341), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2341), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(813)] = { + [sym_comment] = STATE(813), + [anon_sym_if] = ACTIONS(2345), + [anon_sym_in] = ACTIONS(2345), + [sym__newline] = ACTIONS(2345), + [anon_sym_SEMI] = ACTIONS(2345), + [anon_sym_PIPE] = ACTIONS(2345), + [anon_sym_err_GT_PIPE] = ACTIONS(2345), + [anon_sym_out_GT_PIPE] = ACTIONS(2345), + [anon_sym_e_GT_PIPE] = ACTIONS(2345), + [anon_sym_o_GT_PIPE] = ACTIONS(2345), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2345), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2345), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2345), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2345), + [anon_sym_RPAREN] = ACTIONS(2345), + [anon_sym_GT2] = ACTIONS(2347), + [anon_sym_DASH2] = ACTIONS(2345), + [anon_sym_LBRACE] = ACTIONS(2345), + [anon_sym_RBRACE] = ACTIONS(2345), + [anon_sym_EQ_GT] = ACTIONS(2345), + [anon_sym_STAR2] = ACTIONS(2347), + [anon_sym_and2] = ACTIONS(2345), + [anon_sym_xor2] = ACTIONS(2345), + [anon_sym_or2] = ACTIONS(2345), + [anon_sym_not_DASHin2] = ACTIONS(2345), + [anon_sym_has2] = ACTIONS(2345), + [anon_sym_not_DASHhas2] = ACTIONS(2345), + [anon_sym_starts_DASHwith2] = ACTIONS(2345), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2345), + [anon_sym_ends_DASHwith2] = ACTIONS(2345), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2345), + [anon_sym_EQ_EQ2] = ACTIONS(2345), + [anon_sym_BANG_EQ2] = ACTIONS(2345), + [anon_sym_LT2] = ACTIONS(2347), + [anon_sym_LT_EQ2] = ACTIONS(2345), + [anon_sym_GT_EQ2] = ACTIONS(2345), + [anon_sym_EQ_TILDE2] = ACTIONS(2345), + [anon_sym_BANG_TILDE2] = ACTIONS(2345), + [anon_sym_like2] = ACTIONS(2345), + [anon_sym_not_DASHlike2] = ACTIONS(2345), + [anon_sym_STAR_STAR2] = ACTIONS(2345), + [anon_sym_PLUS_PLUS2] = ACTIONS(2345), + [anon_sym_SLASH2] = ACTIONS(2347), + [anon_sym_mod2] = ACTIONS(2345), + [anon_sym_SLASH_SLASH2] = ACTIONS(2345), + [anon_sym_PLUS2] = ACTIONS(2347), + [anon_sym_bit_DASHshl2] = ACTIONS(2345), + [anon_sym_bit_DASHshr2] = ACTIONS(2345), + [anon_sym_bit_DASHand2] = ACTIONS(2345), + [anon_sym_bit_DASHxor2] = ACTIONS(2345), + [anon_sym_bit_DASHor2] = ACTIONS(2345), + [anon_sym_err_GT] = ACTIONS(2347), + [anon_sym_out_GT] = ACTIONS(2347), + [anon_sym_e_GT] = ACTIONS(2347), + [anon_sym_o_GT] = ACTIONS(2347), + [anon_sym_err_PLUSout_GT] = ACTIONS(2347), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2347), + [anon_sym_o_PLUSe_GT] = ACTIONS(2347), + [anon_sym_e_PLUSo_GT] = ACTIONS(2347), + [anon_sym_err_GT_GT] = ACTIONS(2345), + [anon_sym_out_GT_GT] = ACTIONS(2345), + [anon_sym_e_GT_GT] = ACTIONS(2345), + [anon_sym_o_GT_GT] = ACTIONS(2345), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2345), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2345), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2345), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2345), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(814)] = { + [aux_sym__repeat_newline] = STATE(1106), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(814), + [anon_sym_in] = ACTIONS(2289), + [sym__newline] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_err_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_GT_PIPE] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), + [anon_sym_RPAREN] = ACTIONS(2289), + [anon_sym_GT2] = ACTIONS(2291), + [anon_sym_DASH2] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_STAR2] = ACTIONS(2291), + [anon_sym_and2] = ACTIONS(2289), + [anon_sym_xor2] = ACTIONS(2289), + [anon_sym_or2] = ACTIONS(2289), + [anon_sym_not_DASHin2] = ACTIONS(2289), + [anon_sym_has2] = ACTIONS(2289), + [anon_sym_not_DASHhas2] = ACTIONS(2289), + [anon_sym_starts_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), + [anon_sym_ends_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), + [anon_sym_EQ_EQ2] = ACTIONS(2289), + [anon_sym_BANG_EQ2] = ACTIONS(2289), + [anon_sym_LT2] = ACTIONS(2291), + [anon_sym_LT_EQ2] = ACTIONS(2289), + [anon_sym_GT_EQ2] = ACTIONS(2289), + [anon_sym_EQ_TILDE2] = ACTIONS(2289), + [anon_sym_BANG_TILDE2] = ACTIONS(2289), + [anon_sym_like2] = ACTIONS(2289), + [anon_sym_not_DASHlike2] = ACTIONS(2289), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2289), + [anon_sym_PLUS_PLUS2] = ACTIONS(2289), + [anon_sym_SLASH2] = ACTIONS(2291), + [anon_sym_mod2] = ACTIONS(2289), + [anon_sym_SLASH_SLASH2] = ACTIONS(2289), + [anon_sym_PLUS2] = ACTIONS(2291), + [anon_sym_bit_DASHshl2] = ACTIONS(2289), + [anon_sym_bit_DASHshr2] = ACTIONS(2289), + [anon_sym_bit_DASHand2] = ACTIONS(2289), + [anon_sym_bit_DASHxor2] = ACTIONS(2289), + [anon_sym_bit_DASHor2] = ACTIONS(2289), + [anon_sym_err_GT] = ACTIONS(2291), + [anon_sym_out_GT] = ACTIONS(2291), + [anon_sym_e_GT] = ACTIONS(2291), + [anon_sym_o_GT] = ACTIONS(2291), + [anon_sym_err_PLUSout_GT] = ACTIONS(2291), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), + [anon_sym_o_PLUSe_GT] = ACTIONS(2291), + [anon_sym_e_PLUSo_GT] = ACTIONS(2291), + [anon_sym_err_GT_GT] = ACTIONS(2289), + [anon_sym_out_GT_GT] = ACTIONS(2289), + [anon_sym_e_GT_GT] = ACTIONS(2289), + [anon_sym_o_GT_GT] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(815)] = { + [sym_comment] = STATE(815), + [anon_sym_if] = ACTIONS(2349), + [anon_sym_in] = ACTIONS(2349), + [sym__newline] = ACTIONS(2349), + [anon_sym_SEMI] = ACTIONS(2349), + [anon_sym_PIPE] = ACTIONS(2349), + [anon_sym_err_GT_PIPE] = ACTIONS(2349), + [anon_sym_out_GT_PIPE] = ACTIONS(2349), + [anon_sym_e_GT_PIPE] = ACTIONS(2349), + [anon_sym_o_GT_PIPE] = ACTIONS(2349), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2349), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2349), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2349), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2349), + [anon_sym_RPAREN] = ACTIONS(2349), + [anon_sym_GT2] = ACTIONS(2351), + [anon_sym_DASH2] = ACTIONS(2349), + [anon_sym_LBRACE] = ACTIONS(2349), + [anon_sym_RBRACE] = ACTIONS(2349), + [anon_sym_EQ_GT] = ACTIONS(2349), + [anon_sym_STAR2] = ACTIONS(2351), + [anon_sym_and2] = ACTIONS(2349), + [anon_sym_xor2] = ACTIONS(2349), + [anon_sym_or2] = ACTIONS(2349), + [anon_sym_not_DASHin2] = ACTIONS(2349), + [anon_sym_has2] = ACTIONS(2349), + [anon_sym_not_DASHhas2] = ACTIONS(2349), + [anon_sym_starts_DASHwith2] = ACTIONS(2349), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2349), + [anon_sym_ends_DASHwith2] = ACTIONS(2349), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2349), + [anon_sym_EQ_EQ2] = ACTIONS(2349), + [anon_sym_BANG_EQ2] = ACTIONS(2349), + [anon_sym_LT2] = ACTIONS(2351), + [anon_sym_LT_EQ2] = ACTIONS(2349), + [anon_sym_GT_EQ2] = ACTIONS(2349), + [anon_sym_EQ_TILDE2] = ACTIONS(2349), + [anon_sym_BANG_TILDE2] = ACTIONS(2349), + [anon_sym_like2] = ACTIONS(2349), + [anon_sym_not_DASHlike2] = ACTIONS(2349), + [anon_sym_STAR_STAR2] = ACTIONS(2349), + [anon_sym_PLUS_PLUS2] = ACTIONS(2349), + [anon_sym_SLASH2] = ACTIONS(2351), + [anon_sym_mod2] = ACTIONS(2349), + [anon_sym_SLASH_SLASH2] = ACTIONS(2349), + [anon_sym_PLUS2] = ACTIONS(2351), + [anon_sym_bit_DASHshl2] = ACTIONS(2349), + [anon_sym_bit_DASHshr2] = ACTIONS(2349), + [anon_sym_bit_DASHand2] = ACTIONS(2349), + [anon_sym_bit_DASHxor2] = ACTIONS(2349), + [anon_sym_bit_DASHor2] = ACTIONS(2349), + [anon_sym_err_GT] = ACTIONS(2351), + [anon_sym_out_GT] = ACTIONS(2351), + [anon_sym_e_GT] = ACTIONS(2351), + [anon_sym_o_GT] = ACTIONS(2351), + [anon_sym_err_PLUSout_GT] = ACTIONS(2351), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2351), + [anon_sym_o_PLUSe_GT] = ACTIONS(2351), + [anon_sym_e_PLUSo_GT] = ACTIONS(2351), + [anon_sym_err_GT_GT] = ACTIONS(2349), + [anon_sym_out_GT_GT] = ACTIONS(2349), + [anon_sym_e_GT_GT] = ACTIONS(2349), + [anon_sym_o_GT_GT] = ACTIONS(2349), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2349), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2349), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2349), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2349), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(816)] = { + [aux_sym__repeat_newline] = STATE(1109), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(816), + [anon_sym_in] = ACTIONS(2289), + [sym__newline] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_err_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_GT_PIPE] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), + [anon_sym_RPAREN] = ACTIONS(2289), + [anon_sym_GT2] = ACTIONS(2291), + [anon_sym_DASH2] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_STAR2] = ACTIONS(2291), + [anon_sym_and2] = ACTIONS(2289), + [anon_sym_xor2] = ACTIONS(2289), + [anon_sym_or2] = ACTIONS(2289), + [anon_sym_not_DASHin2] = ACTIONS(2289), + [anon_sym_has2] = ACTIONS(2289), + [anon_sym_not_DASHhas2] = ACTIONS(2289), + [anon_sym_starts_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), + [anon_sym_ends_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), + [anon_sym_EQ_EQ2] = ACTIONS(2289), + [anon_sym_BANG_EQ2] = ACTIONS(2289), + [anon_sym_LT2] = ACTIONS(2291), + [anon_sym_LT_EQ2] = ACTIONS(2289), + [anon_sym_GT_EQ2] = ACTIONS(2289), + [anon_sym_EQ_TILDE2] = ACTIONS(2289), + [anon_sym_BANG_TILDE2] = ACTIONS(2289), + [anon_sym_like2] = ACTIONS(2289), + [anon_sym_not_DASHlike2] = ACTIONS(2289), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2289), + [anon_sym_PLUS_PLUS2] = ACTIONS(2289), + [anon_sym_SLASH2] = ACTIONS(2291), + [anon_sym_mod2] = ACTIONS(2289), + [anon_sym_SLASH_SLASH2] = ACTIONS(2289), + [anon_sym_PLUS2] = ACTIONS(2291), + [anon_sym_bit_DASHshl2] = ACTIONS(2289), + [anon_sym_bit_DASHshr2] = ACTIONS(2289), + [anon_sym_bit_DASHand2] = ACTIONS(2289), + [anon_sym_bit_DASHxor2] = ACTIONS(2289), + [anon_sym_bit_DASHor2] = ACTIONS(2289), + [anon_sym_err_GT] = ACTIONS(2291), + [anon_sym_out_GT] = ACTIONS(2291), + [anon_sym_e_GT] = ACTIONS(2291), + [anon_sym_o_GT] = ACTIONS(2291), + [anon_sym_err_PLUSout_GT] = ACTIONS(2291), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), + [anon_sym_o_PLUSe_GT] = ACTIONS(2291), + [anon_sym_e_PLUSo_GT] = ACTIONS(2291), + [anon_sym_err_GT_GT] = ACTIONS(2289), + [anon_sym_out_GT_GT] = ACTIONS(2289), + [anon_sym_e_GT_GT] = ACTIONS(2289), + [anon_sym_o_GT_GT] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(817)] = { + [aux_sym__repeat_newline] = STATE(1112), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(817), + [anon_sym_in] = ACTIONS(2289), + [sym__newline] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_err_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_GT_PIPE] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), + [anon_sym_RPAREN] = ACTIONS(2289), + [anon_sym_GT2] = ACTIONS(2291), + [anon_sym_DASH2] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_STAR2] = ACTIONS(2291), + [anon_sym_and2] = ACTIONS(2289), + [anon_sym_xor2] = ACTIONS(2289), + [anon_sym_or2] = ACTIONS(2289), + [anon_sym_not_DASHin2] = ACTIONS(2289), + [anon_sym_has2] = ACTIONS(2289), + [anon_sym_not_DASHhas2] = ACTIONS(2289), + [anon_sym_starts_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), + [anon_sym_ends_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), + [anon_sym_EQ_EQ2] = ACTIONS(2289), + [anon_sym_BANG_EQ2] = ACTIONS(2289), + [anon_sym_LT2] = ACTIONS(2291), + [anon_sym_LT_EQ2] = ACTIONS(2289), + [anon_sym_GT_EQ2] = ACTIONS(2289), + [anon_sym_EQ_TILDE2] = ACTIONS(2289), + [anon_sym_BANG_TILDE2] = ACTIONS(2289), + [anon_sym_like2] = ACTIONS(2289), + [anon_sym_not_DASHlike2] = ACTIONS(2289), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2289), + [anon_sym_PLUS_PLUS2] = ACTIONS(2289), + [anon_sym_SLASH2] = ACTIONS(2291), + [anon_sym_mod2] = ACTIONS(2289), + [anon_sym_SLASH_SLASH2] = ACTIONS(2289), + [anon_sym_PLUS2] = ACTIONS(2291), + [anon_sym_bit_DASHshl2] = ACTIONS(2289), + [anon_sym_bit_DASHshr2] = ACTIONS(2289), + [anon_sym_bit_DASHand2] = ACTIONS(2289), + [anon_sym_bit_DASHxor2] = ACTIONS(2289), + [anon_sym_bit_DASHor2] = ACTIONS(2289), + [anon_sym_err_GT] = ACTIONS(2291), + [anon_sym_out_GT] = ACTIONS(2291), + [anon_sym_e_GT] = ACTIONS(2291), + [anon_sym_o_GT] = ACTIONS(2291), + [anon_sym_err_PLUSout_GT] = ACTIONS(2291), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), + [anon_sym_o_PLUSe_GT] = ACTIONS(2291), + [anon_sym_e_PLUSo_GT] = ACTIONS(2291), + [anon_sym_err_GT_GT] = ACTIONS(2289), + [anon_sym_out_GT_GT] = ACTIONS(2289), + [anon_sym_e_GT_GT] = ACTIONS(2289), + [anon_sym_o_GT_GT] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(818)] = { + [sym_comment] = STATE(818), + [ts_builtin_sym_end] = ACTIONS(1531), + [anon_sym_in] = ACTIONS(1531), + [sym__newline] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1531), + [anon_sym_err_GT_PIPE] = ACTIONS(1531), + [anon_sym_out_GT_PIPE] = ACTIONS(1531), + [anon_sym_e_GT_PIPE] = ACTIONS(1531), + [anon_sym_o_GT_PIPE] = ACTIONS(1531), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1531), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1531), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1531), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1531), + [anon_sym_GT2] = ACTIONS(1529), + [anon_sym_DASH2] = ACTIONS(1531), + [anon_sym_STAR2] = ACTIONS(1529), + [anon_sym_and2] = ACTIONS(1531), + [anon_sym_xor2] = ACTIONS(1531), + [anon_sym_or2] = ACTIONS(1531), + [anon_sym_not_DASHin2] = ACTIONS(1531), + [anon_sym_has2] = ACTIONS(1531), + [anon_sym_not_DASHhas2] = ACTIONS(1531), + [anon_sym_starts_DASHwith2] = ACTIONS(1531), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1531), + [anon_sym_ends_DASHwith2] = ACTIONS(1531), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1531), + [anon_sym_EQ_EQ2] = ACTIONS(1531), + [anon_sym_BANG_EQ2] = ACTIONS(1531), + [anon_sym_LT2] = ACTIONS(1529), + [anon_sym_LT_EQ2] = ACTIONS(1531), + [anon_sym_GT_EQ2] = ACTIONS(1531), + [anon_sym_EQ_TILDE2] = ACTIONS(1531), + [anon_sym_BANG_TILDE2] = ACTIONS(1531), + [anon_sym_like2] = ACTIONS(1531), + [anon_sym_not_DASHlike2] = ACTIONS(1531), + [anon_sym_STAR_STAR2] = ACTIONS(1531), + [anon_sym_PLUS_PLUS2] = ACTIONS(1531), + [anon_sym_SLASH2] = ACTIONS(1529), + [anon_sym_mod2] = ACTIONS(1531), + [anon_sym_SLASH_SLASH2] = ACTIONS(1531), + [anon_sym_PLUS2] = ACTIONS(1529), + [anon_sym_bit_DASHshl2] = ACTIONS(1531), + [anon_sym_bit_DASHshr2] = ACTIONS(1531), + [anon_sym_bit_DASHand2] = ACTIONS(1531), + [anon_sym_bit_DASHxor2] = ACTIONS(1531), + [anon_sym_bit_DASHor2] = ACTIONS(1531), + [anon_sym_DOT_DOT2] = ACTIONS(1529), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1531), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1531), + [anon_sym_DOT2] = ACTIONS(1529), + [anon_sym_err_GT] = ACTIONS(1529), + [anon_sym_out_GT] = ACTIONS(1529), + [anon_sym_e_GT] = ACTIONS(1529), + [anon_sym_o_GT] = ACTIONS(1529), + [anon_sym_err_PLUSout_GT] = ACTIONS(1529), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1529), + [anon_sym_o_PLUSe_GT] = ACTIONS(1529), + [anon_sym_e_PLUSo_GT] = ACTIONS(1529), + [anon_sym_err_GT_GT] = ACTIONS(1531), + [anon_sym_out_GT_GT] = ACTIONS(1531), + [anon_sym_e_GT_GT] = ACTIONS(1531), + [anon_sym_o_GT_GT] = ACTIONS(1531), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1531), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1531), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1531), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1531), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(819)] = { + [aux_sym__repeat_newline] = STATE(1115), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(819), + [anon_sym_in] = ACTIONS(2289), + [sym__newline] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_err_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_GT_PIPE] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), + [anon_sym_RPAREN] = ACTIONS(2289), + [anon_sym_GT2] = ACTIONS(2291), + [anon_sym_DASH2] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_STAR2] = ACTIONS(2291), + [anon_sym_and2] = ACTIONS(2289), + [anon_sym_xor2] = ACTIONS(2289), + [anon_sym_or2] = ACTIONS(2289), + [anon_sym_not_DASHin2] = ACTIONS(2289), + [anon_sym_has2] = ACTIONS(2289), + [anon_sym_not_DASHhas2] = ACTIONS(2289), + [anon_sym_starts_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), + [anon_sym_ends_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), + [anon_sym_EQ_EQ2] = ACTIONS(2289), + [anon_sym_BANG_EQ2] = ACTIONS(2289), + [anon_sym_LT2] = ACTIONS(2291), + [anon_sym_LT_EQ2] = ACTIONS(2289), + [anon_sym_GT_EQ2] = ACTIONS(2289), + [anon_sym_EQ_TILDE2] = ACTIONS(2289), + [anon_sym_BANG_TILDE2] = ACTIONS(2289), + [anon_sym_like2] = ACTIONS(2289), + [anon_sym_not_DASHlike2] = ACTIONS(2289), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2289), + [anon_sym_PLUS_PLUS2] = ACTIONS(2289), + [anon_sym_SLASH2] = ACTIONS(2291), + [anon_sym_mod2] = ACTIONS(2289), + [anon_sym_SLASH_SLASH2] = ACTIONS(2289), + [anon_sym_PLUS2] = ACTIONS(2291), + [anon_sym_bit_DASHshl2] = ACTIONS(2289), + [anon_sym_bit_DASHshr2] = ACTIONS(2289), + [anon_sym_bit_DASHand2] = ACTIONS(2289), + [anon_sym_bit_DASHxor2] = ACTIONS(2289), + [anon_sym_bit_DASHor2] = ACTIONS(2289), + [anon_sym_err_GT] = ACTIONS(2291), + [anon_sym_out_GT] = ACTIONS(2291), + [anon_sym_e_GT] = ACTIONS(2291), + [anon_sym_o_GT] = ACTIONS(2291), + [anon_sym_err_PLUSout_GT] = ACTIONS(2291), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), + [anon_sym_o_PLUSe_GT] = ACTIONS(2291), + [anon_sym_e_PLUSo_GT] = ACTIONS(2291), + [anon_sym_err_GT_GT] = ACTIONS(2289), + [anon_sym_out_GT_GT] = ACTIONS(2289), + [anon_sym_e_GT_GT] = ACTIONS(2289), + [anon_sym_o_GT_GT] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(820)] = { + [sym_comment] = STATE(820), + [anon_sym_if] = ACTIONS(2353), + [anon_sym_in] = ACTIONS(2353), + [sym__newline] = ACTIONS(2353), + [anon_sym_SEMI] = ACTIONS(2353), + [anon_sym_PIPE] = ACTIONS(2353), + [anon_sym_err_GT_PIPE] = ACTIONS(2353), + [anon_sym_out_GT_PIPE] = ACTIONS(2353), + [anon_sym_e_GT_PIPE] = ACTIONS(2353), + [anon_sym_o_GT_PIPE] = ACTIONS(2353), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2353), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2353), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2353), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2353), + [anon_sym_RPAREN] = ACTIONS(2353), + [anon_sym_GT2] = ACTIONS(2355), + [anon_sym_DASH2] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2353), + [anon_sym_RBRACE] = ACTIONS(2353), + [anon_sym_EQ_GT] = ACTIONS(2353), + [anon_sym_STAR2] = ACTIONS(2355), + [anon_sym_and2] = ACTIONS(2353), + [anon_sym_xor2] = ACTIONS(2353), + [anon_sym_or2] = ACTIONS(2353), + [anon_sym_not_DASHin2] = ACTIONS(2353), + [anon_sym_has2] = ACTIONS(2353), + [anon_sym_not_DASHhas2] = ACTIONS(2353), + [anon_sym_starts_DASHwith2] = ACTIONS(2353), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2353), + [anon_sym_ends_DASHwith2] = ACTIONS(2353), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2353), + [anon_sym_EQ_EQ2] = ACTIONS(2353), + [anon_sym_BANG_EQ2] = ACTIONS(2353), + [anon_sym_LT2] = ACTIONS(2355), + [anon_sym_LT_EQ2] = ACTIONS(2353), + [anon_sym_GT_EQ2] = ACTIONS(2353), + [anon_sym_EQ_TILDE2] = ACTIONS(2353), + [anon_sym_BANG_TILDE2] = ACTIONS(2353), + [anon_sym_like2] = ACTIONS(2353), + [anon_sym_not_DASHlike2] = ACTIONS(2353), + [anon_sym_STAR_STAR2] = ACTIONS(2353), + [anon_sym_PLUS_PLUS2] = ACTIONS(2353), + [anon_sym_SLASH2] = ACTIONS(2355), + [anon_sym_mod2] = ACTIONS(2353), + [anon_sym_SLASH_SLASH2] = ACTIONS(2353), + [anon_sym_PLUS2] = ACTIONS(2355), + [anon_sym_bit_DASHshl2] = ACTIONS(2353), + [anon_sym_bit_DASHshr2] = ACTIONS(2353), + [anon_sym_bit_DASHand2] = ACTIONS(2353), + [anon_sym_bit_DASHxor2] = ACTIONS(2353), + [anon_sym_bit_DASHor2] = ACTIONS(2353), + [anon_sym_err_GT] = ACTIONS(2355), + [anon_sym_out_GT] = ACTIONS(2355), + [anon_sym_e_GT] = ACTIONS(2355), + [anon_sym_o_GT] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT] = ACTIONS(2355), + [anon_sym_err_GT_GT] = ACTIONS(2353), + [anon_sym_out_GT_GT] = ACTIONS(2353), + [anon_sym_e_GT_GT] = ACTIONS(2353), + [anon_sym_o_GT_GT] = ACTIONS(2353), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2353), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2353), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2353), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2353), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(821)] = { + [sym_cmd_identifier] = STATE(4341), + [sym_expr_parenthesized] = STATE(5062), + [sym__spread_parenthesized] = STATE(4693), + [sym__spread_variable] = STATE(4695), + [sym_val_variable] = STATE(4364), + [sym_val_number] = STATE(5062), + [sym__val_number_decimal] = STATE(1952), + [sym__val_number] = STATE(676), + [sym_val_string] = STATE(5062), + [sym__raw_str] = STATE(2243), + [sym__str_double_quotes] = STATE(2243), + [sym__str_single_quotes] = STATE(2243), + [sym__str_back_ticks] = STATE(2243), + [sym_val_interpolated] = STATE(5062), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym__spread_record] = STATE(4693), + [sym_record_entry] = STATE(4631), + [sym__record_key] = STATE(5228), + [sym_comment] = STATE(821), + [aux_sym__match_pattern_record_body_repeat1] = STATE(822), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -109432,7 +109288,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token4] = ACTIONS(1770), [aux_sym_cmd_identifier_token5] = ACTIONS(1770), [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_DOLLAR] = ACTIONS(1776), [anon_sym_DASH2] = ACTIONS(175), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), @@ -109453,658 +109309,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(827)] = { - [aux_sym__repeat_newline] = STATE(1067), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(827), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(828)] = { - [aux_sym__repeat_newline] = STATE(1070), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(828), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(829)] = { - [aux_sym__repeat_newline] = STATE(1073), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(829), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(830)] = { - [sym_cell_path] = STATE(1320), - [sym_path] = STATE(783), - [sym_comment] = STATE(830), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1882), - [anon_sym_in] = ACTIONS(1882), - [sym__newline] = ACTIONS(1882), - [anon_sym_SEMI] = ACTIONS(1882), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_err_GT_PIPE] = ACTIONS(1882), - [anon_sym_out_GT_PIPE] = ACTIONS(1882), - [anon_sym_e_GT_PIPE] = ACTIONS(1882), - [anon_sym_o_GT_PIPE] = ACTIONS(1882), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1882), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1882), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1882), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1882), - [anon_sym_GT2] = ACTIONS(1884), - [anon_sym_DASH2] = ACTIONS(1882), - [anon_sym_STAR2] = ACTIONS(1884), - [anon_sym_and2] = ACTIONS(1882), - [anon_sym_xor2] = ACTIONS(1882), - [anon_sym_or2] = ACTIONS(1882), - [anon_sym_not_DASHin2] = ACTIONS(1882), - [anon_sym_has2] = ACTIONS(1882), - [anon_sym_not_DASHhas2] = ACTIONS(1882), - [anon_sym_starts_DASHwith2] = ACTIONS(1882), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1882), - [anon_sym_ends_DASHwith2] = ACTIONS(1882), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1882), - [anon_sym_EQ_EQ2] = ACTIONS(1882), - [anon_sym_BANG_EQ2] = ACTIONS(1882), - [anon_sym_LT2] = ACTIONS(1884), - [anon_sym_LT_EQ2] = ACTIONS(1882), - [anon_sym_GT_EQ2] = ACTIONS(1882), - [anon_sym_EQ_TILDE2] = ACTIONS(1882), - [anon_sym_BANG_TILDE2] = ACTIONS(1882), - [anon_sym_like2] = ACTIONS(1882), - [anon_sym_not_DASHlike2] = ACTIONS(1882), - [anon_sym_STAR_STAR2] = ACTIONS(1882), - [anon_sym_PLUS_PLUS2] = ACTIONS(1882), - [anon_sym_SLASH2] = ACTIONS(1884), - [anon_sym_mod2] = ACTIONS(1882), - [anon_sym_SLASH_SLASH2] = ACTIONS(1882), - [anon_sym_PLUS2] = ACTIONS(1884), - [anon_sym_bit_DASHshl2] = ACTIONS(1882), - [anon_sym_bit_DASHshr2] = ACTIONS(1882), - [anon_sym_bit_DASHand2] = ACTIONS(1882), - [anon_sym_bit_DASHxor2] = ACTIONS(1882), - [anon_sym_bit_DASHor2] = ACTIONS(1882), - [anon_sym_DOT2] = ACTIONS(2266), - [anon_sym_err_GT] = ACTIONS(1884), - [anon_sym_out_GT] = ACTIONS(1884), - [anon_sym_e_GT] = ACTIONS(1884), - [anon_sym_o_GT] = ACTIONS(1884), - [anon_sym_err_PLUSout_GT] = ACTIONS(1884), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1884), - [anon_sym_o_PLUSe_GT] = ACTIONS(1884), - [anon_sym_e_PLUSo_GT] = ACTIONS(1884), - [anon_sym_err_GT_GT] = ACTIONS(1882), - [anon_sym_out_GT_GT] = ACTIONS(1882), - [anon_sym_e_GT_GT] = ACTIONS(1882), - [anon_sym_o_GT_GT] = ACTIONS(1882), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1882), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1882), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1882), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1882), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(831)] = { - [aux_sym__repeat_newline] = STATE(1078), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(831), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(832)] = { - [aux_sym__repeat_newline] = STATE(1080), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(832), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(833)] = { - [aux_sym__repeat_newline] = STATE(1082), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(833), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(834)] = { - [aux_sym__repeat_newline] = STATE(1085), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(834), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(835)] = { - [aux_sym__repeat_newline] = STATE(1088), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(835), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), + [STATE(822)] = { + [sym_cmd_identifier] = STATE(4341), + [sym_expr_parenthesized] = STATE(5062), + [sym__spread_parenthesized] = STATE(4693), + [sym__spread_variable] = STATE(4695), + [sym_val_variable] = STATE(4434), + [sym_val_number] = STATE(5062), + [sym__val_number_decimal] = STATE(1952), + [sym__val_number] = STATE(676), + [sym_val_string] = STATE(5062), + [sym__raw_str] = STATE(2243), + [sym__str_double_quotes] = STATE(2243), + [sym__str_single_quotes] = STATE(2243), + [sym__str_back_ticks] = STATE(2243), + [sym_val_interpolated] = STATE(5062), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym__spread_record] = STATE(4693), + [sym_record_entry] = STATE(4775), + [sym__record_key] = STATE(5228), + [sym_comment] = STATE(822), + [aux_sym__match_pattern_record_body_repeat1] = STATE(822), + [anon_sym_export] = ACTIONS(2357), + [anon_sym_alias] = ACTIONS(2360), + [anon_sym_let] = ACTIONS(2360), + [anon_sym_mut] = ACTIONS(2360), + [anon_sym_const] = ACTIONS(2360), + [aux_sym_cmd_identifier_token1] = ACTIONS(2363), + [anon_sym_def] = ACTIONS(2360), + [anon_sym_use] = ACTIONS(2360), + [anon_sym_export_DASHenv] = ACTIONS(2360), + [anon_sym_extern] = ACTIONS(2360), + [anon_sym_module] = ACTIONS(2360), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_loop] = ACTIONS(2360), + [anon_sym_while] = ACTIONS(2360), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_else] = ACTIONS(2360), + [anon_sym_try] = ACTIONS(2360), + [anon_sym_catch] = ACTIONS(2360), + [anon_sym_match] = ACTIONS(2360), + [anon_sym_in] = ACTIONS(2357), + [anon_sym_true] = ACTIONS(2366), + [anon_sym_false] = ACTIONS(2366), + [anon_sym_null] = ACTIONS(2366), + [aux_sym_cmd_identifier_token3] = ACTIONS(2369), + [aux_sym_cmd_identifier_token4] = ACTIONS(2369), + [aux_sym_cmd_identifier_token5] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2372), + [anon_sym_DOLLAR] = ACTIONS(2375), + [anon_sym_DASH2] = ACTIONS(2378), + [anon_sym_PLUS2] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2381), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2384), + [aux_sym__val_number_decimal_token1] = ACTIONS(2387), + [aux_sym__val_number_decimal_token2] = ACTIONS(2390), + [aux_sym__val_number_decimal_token3] = ACTIONS(2393), + [aux_sym__val_number_decimal_token4] = ACTIONS(2393), + [aux_sym__val_number_token1] = ACTIONS(2396), + [aux_sym__val_number_token2] = ACTIONS(2396), + [aux_sym__val_number_token3] = ACTIONS(2396), + [anon_sym_DQUOTE] = ACTIONS(2399), + [anon_sym_SQUOTE] = ACTIONS(2402), + [anon_sym_BQUOTE] = ACTIONS(2405), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2408), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2411), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2414), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2417), }, - [STATE(836)] = { - [sym_cmd_identifier] = STATE(4167), - [sym_expr_parenthesized] = STATE(5186), - [sym__spread_parenthesized] = STATE(4688), - [sym__spread_variable] = STATE(4697), - [sym_val_variable] = STATE(4157), - [sym_val_number] = STATE(5186), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(5186), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(5186), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4688), - [sym_record_entry] = STATE(4588), - [sym__record_key] = STATE(4982), - [sym_comment] = STATE(836), - [aux_sym__match_pattern_record_body_repeat1] = STATE(837), + [STATE(823)] = { + [sym_cmd_identifier] = STATE(4341), + [sym_expr_parenthesized] = STATE(5062), + [sym__spread_parenthesized] = STATE(4693), + [sym__spread_variable] = STATE(4695), + [sym_val_variable] = STATE(5062), + [sym_val_number] = STATE(5062), + [sym__val_number_decimal] = STATE(1952), + [sym__val_number] = STATE(676), + [sym_val_string] = STATE(5062), + [sym__raw_str] = STATE(2243), + [sym__str_double_quotes] = STATE(2243), + [sym__str_single_quotes] = STATE(2243), + [sym__str_back_ticks] = STATE(2243), + [sym_val_interpolated] = STATE(5062), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym__spread_record] = STATE(4693), + [sym_record_entry] = STATE(4653), + [sym__record_key] = STATE(5228), + [sym_comment] = STATE(823), + [aux_sym_record_body_repeat1] = STATE(750), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -110132,7 +109428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token4] = ACTIONS(1770), [aux_sym_cmd_identifier_token5] = ACTIONS(1770), [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), + [anon_sym_DOLLAR] = ACTIONS(1794), [anon_sym_DASH2] = ACTIONS(175), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), @@ -110153,4276 +109449,5323 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(837)] = { - [sym_cmd_identifier] = STATE(4167), - [sym_expr_parenthesized] = STATE(5186), - [sym__spread_parenthesized] = STATE(4688), - [sym__spread_variable] = STATE(4697), - [sym_val_variable] = STATE(4591), - [sym_val_number] = STATE(5186), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(5186), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(5186), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4688), - [sym_record_entry] = STATE(4707), - [sym__record_key] = STATE(4982), - [sym_comment] = STATE(837), - [aux_sym__match_pattern_record_body_repeat1] = STATE(837), - [anon_sym_export] = ACTIONS(2335), - [anon_sym_alias] = ACTIONS(2338), - [anon_sym_let] = ACTIONS(2338), - [anon_sym_mut] = ACTIONS(2338), - [anon_sym_const] = ACTIONS(2338), - [aux_sym_cmd_identifier_token1] = ACTIONS(2341), - [anon_sym_def] = ACTIONS(2338), - [anon_sym_use] = ACTIONS(2338), - [anon_sym_export_DASHenv] = ACTIONS(2338), - [anon_sym_extern] = ACTIONS(2338), - [anon_sym_module] = ACTIONS(2338), - [anon_sym_for] = ACTIONS(2338), - [anon_sym_loop] = ACTIONS(2338), - [anon_sym_while] = ACTIONS(2338), - [anon_sym_if] = ACTIONS(2338), - [anon_sym_else] = ACTIONS(2338), - [anon_sym_try] = ACTIONS(2338), - [anon_sym_catch] = ACTIONS(2338), - [anon_sym_match] = ACTIONS(2338), - [anon_sym_in] = ACTIONS(2335), - [anon_sym_true] = ACTIONS(2344), - [anon_sym_false] = ACTIONS(2344), - [anon_sym_null] = ACTIONS(2344), - [aux_sym_cmd_identifier_token3] = ACTIONS(2347), - [aux_sym_cmd_identifier_token4] = ACTIONS(2347), - [aux_sym_cmd_identifier_token5] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_DOLLAR] = ACTIONS(2353), - [anon_sym_DASH2] = ACTIONS(2356), - [anon_sym_PLUS2] = ACTIONS(2356), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2359), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2362), - [aux_sym__val_number_decimal_token1] = ACTIONS(2365), - [aux_sym__val_number_decimal_token2] = ACTIONS(2368), - [aux_sym__val_number_decimal_token3] = ACTIONS(2371), - [aux_sym__val_number_decimal_token4] = ACTIONS(2371), - [aux_sym__val_number_token1] = ACTIONS(2374), - [aux_sym__val_number_token2] = ACTIONS(2374), - [aux_sym__val_number_token3] = ACTIONS(2374), - [anon_sym_DQUOTE] = ACTIONS(2377), - [anon_sym_SQUOTE] = ACTIONS(2380), - [anon_sym_BQUOTE] = ACTIONS(2383), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2386), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2389), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2392), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2395), + [STATE(824)] = { + [sym_comment] = STATE(824), + [anon_sym_in] = ACTIONS(2194), + [sym__newline] = ACTIONS(2420), + [anon_sym_SEMI] = ACTIONS(2423), + [anon_sym_PIPE] = ACTIONS(2423), + [anon_sym_err_GT_PIPE] = ACTIONS(2423), + [anon_sym_out_GT_PIPE] = ACTIONS(2423), + [anon_sym_e_GT_PIPE] = ACTIONS(2423), + [anon_sym_o_GT_PIPE] = ACTIONS(2423), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2423), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2423), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2423), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2423), + [anon_sym_RPAREN] = ACTIONS(2423), + [anon_sym_GT2] = ACTIONS(2196), + [anon_sym_DASH2] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_STAR2] = ACTIONS(2196), + [anon_sym_and2] = ACTIONS(2194), + [anon_sym_xor2] = ACTIONS(2194), + [anon_sym_or2] = ACTIONS(2194), + [anon_sym_not_DASHin2] = ACTIONS(2194), + [anon_sym_has2] = ACTIONS(2194), + [anon_sym_not_DASHhas2] = ACTIONS(2194), + [anon_sym_starts_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2194), + [anon_sym_ends_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2194), + [anon_sym_EQ_EQ2] = ACTIONS(2194), + [anon_sym_BANG_EQ2] = ACTIONS(2194), + [anon_sym_LT2] = ACTIONS(2196), + [anon_sym_LT_EQ2] = ACTIONS(2194), + [anon_sym_GT_EQ2] = ACTIONS(2194), + [anon_sym_EQ_TILDE2] = ACTIONS(2194), + [anon_sym_BANG_TILDE2] = ACTIONS(2194), + [anon_sym_like2] = ACTIONS(2194), + [anon_sym_not_DASHlike2] = ACTIONS(2194), + [anon_sym_STAR_STAR2] = ACTIONS(2194), + [anon_sym_PLUS_PLUS2] = ACTIONS(2194), + [anon_sym_SLASH2] = ACTIONS(2196), + [anon_sym_mod2] = ACTIONS(2194), + [anon_sym_SLASH_SLASH2] = ACTIONS(2194), + [anon_sym_PLUS2] = ACTIONS(2196), + [anon_sym_bit_DASHshl2] = ACTIONS(2194), + [anon_sym_bit_DASHshr2] = ACTIONS(2194), + [anon_sym_bit_DASHand2] = ACTIONS(2194), + [anon_sym_bit_DASHxor2] = ACTIONS(2194), + [anon_sym_bit_DASHor2] = ACTIONS(2194), + [anon_sym_DOT_DOT2] = ACTIONS(1619), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), + [anon_sym_err_GT] = ACTIONS(2425), + [anon_sym_out_GT] = ACTIONS(2425), + [anon_sym_e_GT] = ACTIONS(2425), + [anon_sym_o_GT] = ACTIONS(2425), + [anon_sym_err_PLUSout_GT] = ACTIONS(2425), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2425), + [anon_sym_o_PLUSe_GT] = ACTIONS(2425), + [anon_sym_e_PLUSo_GT] = ACTIONS(2425), + [anon_sym_err_GT_GT] = ACTIONS(2423), + [anon_sym_out_GT_GT] = ACTIONS(2423), + [anon_sym_e_GT_GT] = ACTIONS(2423), + [anon_sym_o_GT_GT] = ACTIONS(2423), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2423), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2423), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2423), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2423), + [anon_sym_POUND] = ACTIONS(3), }, - [STATE(838)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2212), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), + [STATE(825)] = { + [sym_cell_path] = STATE(1267), + [sym_path] = STATE(712), + [sym_comment] = STATE(825), + [aux_sym__where_predicate_lhs_repeat1] = STATE(547), + [ts_builtin_sym_end] = ACTIONS(1862), + [anon_sym_in] = ACTIONS(1862), + [sym__newline] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_PIPE] = ACTIONS(1862), + [anon_sym_err_GT_PIPE] = ACTIONS(1862), + [anon_sym_out_GT_PIPE] = ACTIONS(1862), + [anon_sym_e_GT_PIPE] = ACTIONS(1862), + [anon_sym_o_GT_PIPE] = ACTIONS(1862), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1862), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1862), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1862), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1862), + [anon_sym_GT2] = ACTIONS(1864), + [anon_sym_DASH2] = ACTIONS(1862), + [anon_sym_STAR2] = ACTIONS(1864), + [anon_sym_and2] = ACTIONS(1862), + [anon_sym_xor2] = ACTIONS(1862), + [anon_sym_or2] = ACTIONS(1862), + [anon_sym_not_DASHin2] = ACTIONS(1862), + [anon_sym_has2] = ACTIONS(1862), + [anon_sym_not_DASHhas2] = ACTIONS(1862), + [anon_sym_starts_DASHwith2] = ACTIONS(1862), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1862), + [anon_sym_ends_DASHwith2] = ACTIONS(1862), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1862), + [anon_sym_EQ_EQ2] = ACTIONS(1862), + [anon_sym_BANG_EQ2] = ACTIONS(1862), + [anon_sym_LT2] = ACTIONS(1864), + [anon_sym_LT_EQ2] = ACTIONS(1862), + [anon_sym_GT_EQ2] = ACTIONS(1862), + [anon_sym_EQ_TILDE2] = ACTIONS(1862), + [anon_sym_BANG_TILDE2] = ACTIONS(1862), + [anon_sym_like2] = ACTIONS(1862), + [anon_sym_not_DASHlike2] = ACTIONS(1862), + [anon_sym_STAR_STAR2] = ACTIONS(1862), + [anon_sym_PLUS_PLUS2] = ACTIONS(1862), + [anon_sym_SLASH2] = ACTIONS(1864), + [anon_sym_mod2] = ACTIONS(1862), + [anon_sym_SLASH_SLASH2] = ACTIONS(1862), + [anon_sym_PLUS2] = ACTIONS(1864), + [anon_sym_bit_DASHshl2] = ACTIONS(1862), + [anon_sym_bit_DASHshr2] = ACTIONS(1862), + [anon_sym_bit_DASHand2] = ACTIONS(1862), + [anon_sym_bit_DASHxor2] = ACTIONS(1862), + [anon_sym_bit_DASHor2] = ACTIONS(1862), + [anon_sym_DOT2] = ACTIONS(2192), + [anon_sym_err_GT] = ACTIONS(1864), + [anon_sym_out_GT] = ACTIONS(1864), + [anon_sym_e_GT] = ACTIONS(1864), + [anon_sym_o_GT] = ACTIONS(1864), + [anon_sym_err_PLUSout_GT] = ACTIONS(1864), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1864), + [anon_sym_o_PLUSe_GT] = ACTIONS(1864), + [anon_sym_e_PLUSo_GT] = ACTIONS(1864), + [anon_sym_err_GT_GT] = ACTIONS(1862), + [anon_sym_out_GT_GT] = ACTIONS(1862), + [anon_sym_e_GT_GT] = ACTIONS(1862), + [anon_sym_o_GT_GT] = ACTIONS(1862), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1862), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1862), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1862), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1862), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(826)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(2170), + [sym_expr_parenthesized] = STATE(1939), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(2010), [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(707), - [sym__unquoted_with_expr] = STATE(900), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(838), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(671), + [sym__unquoted_with_expr] = STATE(959), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(826), + [anon_sym_true] = ACTIONS(2427), + [anon_sym_false] = ACTIONS(2427), + [anon_sym_null] = ACTIONS(2429), + [aux_sym_cmd_identifier_token3] = ACTIONS(2431), + [aux_sym_cmd_identifier_token4] = ACTIONS(2431), + [aux_sym_cmd_identifier_token5] = ACTIONS(2431), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2433), + [aux_sym_expr_unary_token1] = ACTIONS(2435), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), + [anon_sym_DOT_DOT_LT] = ACTIONS(2437), + [aux_sym__val_number_decimal_token1] = ACTIONS(2439), + [aux_sym__val_number_decimal_token2] = ACTIONS(2441), + [aux_sym__val_number_decimal_token3] = ACTIONS(2443), + [aux_sym__val_number_decimal_token4] = ACTIONS(2443), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2445), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(839)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2137), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), + [STATE(827)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(2171), + [sym_expr_parenthesized] = STATE(1939), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(2010), [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(708), - [sym__unquoted_with_expr] = STATE(901), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(839), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(711), + [sym__unquoted_with_expr] = STATE(962), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(827), + [anon_sym_true] = ACTIONS(2427), + [anon_sym_false] = ACTIONS(2427), + [anon_sym_null] = ACTIONS(2429), + [aux_sym_cmd_identifier_token3] = ACTIONS(2431), + [aux_sym_cmd_identifier_token4] = ACTIONS(2431), + [aux_sym_cmd_identifier_token5] = ACTIONS(2431), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2433), + [aux_sym_expr_unary_token1] = ACTIONS(2435), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), + [anon_sym_DOT_DOT_LT] = ACTIONS(2437), + [aux_sym__val_number_decimal_token1] = ACTIONS(2439), + [aux_sym__val_number_decimal_token2] = ACTIONS(2441), + [aux_sym__val_number_decimal_token3] = ACTIONS(2443), + [aux_sym__val_number_decimal_token4] = ACTIONS(2443), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2445), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(840)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2138), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), + [STATE(828)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(2172), + [sym_expr_parenthesized] = STATE(1939), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(2010), [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(711), - [sym__unquoted_with_expr] = STATE(902), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(840), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(692), + [sym__unquoted_with_expr] = STATE(896), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(828), + [anon_sym_true] = ACTIONS(2427), + [anon_sym_false] = ACTIONS(2427), + [anon_sym_null] = ACTIONS(2429), + [aux_sym_cmd_identifier_token3] = ACTIONS(2431), + [aux_sym_cmd_identifier_token4] = ACTIONS(2431), + [aux_sym_cmd_identifier_token5] = ACTIONS(2431), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2433), + [aux_sym_expr_unary_token1] = ACTIONS(2435), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), + [anon_sym_DOT_DOT_LT] = ACTIONS(2437), + [aux_sym__val_number_decimal_token1] = ACTIONS(2439), + [aux_sym__val_number_decimal_token2] = ACTIONS(2441), + [aux_sym__val_number_decimal_token3] = ACTIONS(2443), + [aux_sym__val_number_decimal_token4] = ACTIONS(2443), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2445), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(841)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2139), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), + [STATE(829)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(2173), + [sym_expr_parenthesized] = STATE(1939), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(2010), [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(686), - [sym__unquoted_with_expr] = STATE(903), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(841), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(693), + [sym__unquoted_with_expr] = STATE(897), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(829), + [anon_sym_true] = ACTIONS(2427), + [anon_sym_false] = ACTIONS(2427), + [anon_sym_null] = ACTIONS(2429), + [aux_sym_cmd_identifier_token3] = ACTIONS(2431), + [aux_sym_cmd_identifier_token4] = ACTIONS(2431), + [aux_sym_cmd_identifier_token5] = ACTIONS(2431), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2433), + [aux_sym_expr_unary_token1] = ACTIONS(2435), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), + [anon_sym_DOT_DOT_LT] = ACTIONS(2437), + [aux_sym__val_number_decimal_token1] = ACTIONS(2439), + [aux_sym__val_number_decimal_token2] = ACTIONS(2441), + [aux_sym__val_number_decimal_token3] = ACTIONS(2443), + [aux_sym__val_number_decimal_token4] = ACTIONS(2443), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2445), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(842)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2140), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), + [STATE(830)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(2174), + [sym_expr_parenthesized] = STATE(1939), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(2010), [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(682), - [sym__unquoted_with_expr] = STATE(906), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(842), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(694), + [sym__unquoted_with_expr] = STATE(898), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(830), + [anon_sym_true] = ACTIONS(2427), + [anon_sym_false] = ACTIONS(2427), + [anon_sym_null] = ACTIONS(2429), + [aux_sym_cmd_identifier_token3] = ACTIONS(2431), + [aux_sym_cmd_identifier_token4] = ACTIONS(2431), + [aux_sym_cmd_identifier_token5] = ACTIONS(2431), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2433), + [aux_sym_expr_unary_token1] = ACTIONS(2435), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), + [anon_sym_DOT_DOT_LT] = ACTIONS(2437), + [aux_sym__val_number_decimal_token1] = ACTIONS(2439), + [aux_sym__val_number_decimal_token2] = ACTIONS(2441), + [aux_sym__val_number_decimal_token3] = ACTIONS(2443), + [aux_sym__val_number_decimal_token4] = ACTIONS(2443), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2445), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(843)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2141), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), + [STATE(831)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(2175), + [sym_expr_parenthesized] = STATE(1939), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(2010), [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(683), - [sym__unquoted_with_expr] = STATE(909), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(843), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(695), + [sym__unquoted_with_expr] = STATE(902), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(831), + [anon_sym_true] = ACTIONS(2427), + [anon_sym_false] = ACTIONS(2427), + [anon_sym_null] = ACTIONS(2429), + [aux_sym_cmd_identifier_token3] = ACTIONS(2431), + [aux_sym_cmd_identifier_token4] = ACTIONS(2431), + [aux_sym_cmd_identifier_token5] = ACTIONS(2431), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2433), + [aux_sym_expr_unary_token1] = ACTIONS(2435), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), + [anon_sym_DOT_DOT_LT] = ACTIONS(2437), + [aux_sym__val_number_decimal_token1] = ACTIONS(2439), + [aux_sym__val_number_decimal_token2] = ACTIONS(2441), + [aux_sym__val_number_decimal_token3] = ACTIONS(2443), + [aux_sym__val_number_decimal_token4] = ACTIONS(2443), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2445), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(844)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2142), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), + [STATE(832)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(2176), + [sym_expr_parenthesized] = STATE(1939), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(2010), [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(677), - [sym__unquoted_with_expr] = STATE(910), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(844), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(697), + [sym__unquoted_with_expr] = STATE(904), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(832), + [anon_sym_true] = ACTIONS(2427), + [anon_sym_false] = ACTIONS(2427), + [anon_sym_null] = ACTIONS(2429), + [aux_sym_cmd_identifier_token3] = ACTIONS(2431), + [aux_sym_cmd_identifier_token4] = ACTIONS(2431), + [aux_sym_cmd_identifier_token5] = ACTIONS(2431), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2433), + [aux_sym_expr_unary_token1] = ACTIONS(2435), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), + [anon_sym_DOT_DOT_LT] = ACTIONS(2437), + [aux_sym__val_number_decimal_token1] = ACTIONS(2439), + [aux_sym__val_number_decimal_token2] = ACTIONS(2441), + [aux_sym__val_number_decimal_token3] = ACTIONS(2443), + [aux_sym__val_number_decimal_token4] = ACTIONS(2443), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2445), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(845)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2143), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), + [STATE(833)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(2177), + [sym_expr_parenthesized] = STATE(1939), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(2010), [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(679), - [sym__unquoted_with_expr] = STATE(911), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(845), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(698), + [sym__unquoted_with_expr] = STATE(906), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(833), + [anon_sym_true] = ACTIONS(2427), + [anon_sym_false] = ACTIONS(2427), + [anon_sym_null] = ACTIONS(2429), + [aux_sym_cmd_identifier_token3] = ACTIONS(2431), + [aux_sym_cmd_identifier_token4] = ACTIONS(2431), + [aux_sym_cmd_identifier_token5] = ACTIONS(2431), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2433), + [aux_sym_expr_unary_token1] = ACTIONS(2435), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), + [anon_sym_DOT_DOT_LT] = ACTIONS(2437), + [aux_sym__val_number_decimal_token1] = ACTIONS(2439), + [aux_sym__val_number_decimal_token2] = ACTIONS(2441), + [aux_sym__val_number_decimal_token3] = ACTIONS(2443), + [aux_sym__val_number_decimal_token4] = ACTIONS(2443), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2445), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(846)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(913), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), + [STATE(834)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(907), + [sym_expr_parenthesized] = STATE(1939), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(2010), [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(681), - [sym__unquoted_with_expr] = STATE(914), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(846), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(699), + [sym__unquoted_with_expr] = STATE(895), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(834), + [anon_sym_true] = ACTIONS(2427), + [anon_sym_false] = ACTIONS(2427), + [anon_sym_null] = ACTIONS(2429), + [aux_sym_cmd_identifier_token3] = ACTIONS(2431), + [aux_sym_cmd_identifier_token4] = ACTIONS(2431), + [aux_sym_cmd_identifier_token5] = ACTIONS(2431), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2433), + [aux_sym_expr_unary_token1] = ACTIONS(2435), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), + [anon_sym_DOT_DOT_LT] = ACTIONS(2437), + [aux_sym__val_number_decimal_token1] = ACTIONS(2439), + [aux_sym__val_number_decimal_token2] = ACTIONS(2441), + [aux_sym__val_number_decimal_token3] = ACTIONS(2443), + [aux_sym__val_number_decimal_token4] = ACTIONS(2443), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2445), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(847)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2144), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), + [STATE(835)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(2178), + [sym_expr_parenthesized] = STATE(1939), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(2010), [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(687), - [sym__unquoted_with_expr] = STATE(915), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(847), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(700), + [sym__unquoted_with_expr] = STATE(911), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(835), + [anon_sym_true] = ACTIONS(2427), + [anon_sym_false] = ACTIONS(2427), + [anon_sym_null] = ACTIONS(2429), + [aux_sym_cmd_identifier_token3] = ACTIONS(2431), + [aux_sym_cmd_identifier_token4] = ACTIONS(2431), + [aux_sym_cmd_identifier_token5] = ACTIONS(2431), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2433), + [aux_sym_expr_unary_token1] = ACTIONS(2435), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), + [anon_sym_DOT_DOT_LT] = ACTIONS(2437), + [aux_sym__val_number_decimal_token1] = ACTIONS(2439), + [aux_sym__val_number_decimal_token2] = ACTIONS(2441), + [aux_sym__val_number_decimal_token3] = ACTIONS(2443), + [aux_sym__val_number_decimal_token4] = ACTIONS(2443), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2445), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(848)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2145), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), + [STATE(836)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(2179), + [sym_expr_parenthesized] = STATE(1939), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(2010), [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(688), - [sym__unquoted_with_expr] = STATE(917), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(848), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(701), + [sym__unquoted_with_expr] = STATE(913), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(836), + [anon_sym_true] = ACTIONS(2427), + [anon_sym_false] = ACTIONS(2427), + [anon_sym_null] = ACTIONS(2429), + [aux_sym_cmd_identifier_token3] = ACTIONS(2431), + [aux_sym_cmd_identifier_token4] = ACTIONS(2431), + [aux_sym_cmd_identifier_token5] = ACTIONS(2431), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2433), + [aux_sym_expr_unary_token1] = ACTIONS(2435), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), + [anon_sym_DOT_DOT_LT] = ACTIONS(2437), + [aux_sym__val_number_decimal_token1] = ACTIONS(2439), + [aux_sym__val_number_decimal_token2] = ACTIONS(2441), + [aux_sym__val_number_decimal_token3] = ACTIONS(2443), + [aux_sym__val_number_decimal_token4] = ACTIONS(2443), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2445), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(849)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2146), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), + [STATE(837)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(2180), + [sym_expr_parenthesized] = STATE(1939), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(2010), [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(689), - [sym__unquoted_with_expr] = STATE(919), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(849), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(702), + [sym__unquoted_with_expr] = STATE(915), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(837), + [anon_sym_true] = ACTIONS(2427), + [anon_sym_false] = ACTIONS(2427), + [anon_sym_null] = ACTIONS(2429), + [aux_sym_cmd_identifier_token3] = ACTIONS(2431), + [aux_sym_cmd_identifier_token4] = ACTIONS(2431), + [aux_sym_cmd_identifier_token5] = ACTIONS(2431), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2433), + [aux_sym_expr_unary_token1] = ACTIONS(2435), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), + [anon_sym_DOT_DOT_LT] = ACTIONS(2437), + [aux_sym__val_number_decimal_token1] = ACTIONS(2439), + [aux_sym__val_number_decimal_token2] = ACTIONS(2441), + [aux_sym__val_number_decimal_token3] = ACTIONS(2443), + [aux_sym__val_number_decimal_token4] = ACTIONS(2443), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2445), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(850)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2147), - [sym_expr_parenthesized] = STATE(1966), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1969), + [STATE(838)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(2181), + [sym_expr_parenthesized] = STATE(1939), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(2010), [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(690), - [sym__unquoted_with_expr] = STATE(922), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(850), - [anon_sym_true] = ACTIONS(2398), - [anon_sym_false] = ACTIONS(2398), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2402), - [aux_sym_cmd_identifier_token4] = ACTIONS(2402), - [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(703), + [sym__unquoted_with_expr] = STATE(917), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(838), + [anon_sym_true] = ACTIONS(2427), + [anon_sym_false] = ACTIONS(2427), + [anon_sym_null] = ACTIONS(2429), + [aux_sym_cmd_identifier_token3] = ACTIONS(2431), + [aux_sym_cmd_identifier_token4] = ACTIONS(2431), + [aux_sym_cmd_identifier_token5] = ACTIONS(2431), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [aux_sym_expr_unary_token1] = ACTIONS(2406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2408), - [anon_sym_DOT_DOT_LT] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2410), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2433), + [aux_sym_expr_unary_token1] = ACTIONS(2435), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), + [anon_sym_DOT_DOT_LT] = ACTIONS(2437), + [aux_sym__val_number_decimal_token1] = ACTIONS(2439), + [aux_sym__val_number_decimal_token2] = ACTIONS(2441), + [aux_sym__val_number_decimal_token3] = ACTIONS(2443), + [aux_sym__val_number_decimal_token4] = ACTIONS(2443), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2416), + [sym_val_date] = ACTIONS(2445), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(851)] = { - [aux_sym__repeat_newline] = STATE(1091), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(851), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(839)] = { + [sym_comment] = STATE(839), + [anon_sym_if] = ACTIONS(2447), + [anon_sym_in] = ACTIONS(2447), + [sym__newline] = ACTIONS(2447), + [anon_sym_SEMI] = ACTIONS(2447), + [anon_sym_PIPE] = ACTIONS(2447), + [anon_sym_err_GT_PIPE] = ACTIONS(2447), + [anon_sym_out_GT_PIPE] = ACTIONS(2447), + [anon_sym_e_GT_PIPE] = ACTIONS(2447), + [anon_sym_o_GT_PIPE] = ACTIONS(2447), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2447), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2447), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2447), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2447), + [anon_sym_RPAREN] = ACTIONS(2447), + [anon_sym_GT2] = ACTIONS(2449), + [anon_sym_DASH2] = ACTIONS(2447), + [anon_sym_LBRACE] = ACTIONS(2447), + [anon_sym_RBRACE] = ACTIONS(2447), + [anon_sym_EQ_GT] = ACTIONS(2447), + [anon_sym_STAR2] = ACTIONS(2449), + [anon_sym_and2] = ACTIONS(2447), + [anon_sym_xor2] = ACTIONS(2447), + [anon_sym_or2] = ACTIONS(2447), + [anon_sym_not_DASHin2] = ACTIONS(2447), + [anon_sym_has2] = ACTIONS(2447), + [anon_sym_not_DASHhas2] = ACTIONS(2447), + [anon_sym_starts_DASHwith2] = ACTIONS(2447), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2447), + [anon_sym_ends_DASHwith2] = ACTIONS(2447), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2447), + [anon_sym_EQ_EQ2] = ACTIONS(2447), + [anon_sym_BANG_EQ2] = ACTIONS(2447), + [anon_sym_LT2] = ACTIONS(2449), + [anon_sym_LT_EQ2] = ACTIONS(2447), + [anon_sym_GT_EQ2] = ACTIONS(2447), + [anon_sym_EQ_TILDE2] = ACTIONS(2447), + [anon_sym_BANG_TILDE2] = ACTIONS(2447), + [anon_sym_like2] = ACTIONS(2447), + [anon_sym_not_DASHlike2] = ACTIONS(2447), + [anon_sym_STAR_STAR2] = ACTIONS(2447), + [anon_sym_PLUS_PLUS2] = ACTIONS(2447), + [anon_sym_SLASH2] = ACTIONS(2449), + [anon_sym_mod2] = ACTIONS(2447), + [anon_sym_SLASH_SLASH2] = ACTIONS(2447), + [anon_sym_PLUS2] = ACTIONS(2449), + [anon_sym_bit_DASHshl2] = ACTIONS(2447), + [anon_sym_bit_DASHshr2] = ACTIONS(2447), + [anon_sym_bit_DASHand2] = ACTIONS(2447), + [anon_sym_bit_DASHxor2] = ACTIONS(2447), + [anon_sym_bit_DASHor2] = ACTIONS(2447), + [anon_sym_err_GT] = ACTIONS(2449), + [anon_sym_out_GT] = ACTIONS(2449), + [anon_sym_e_GT] = ACTIONS(2449), + [anon_sym_o_GT] = ACTIONS(2449), + [anon_sym_err_PLUSout_GT] = ACTIONS(2449), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2449), + [anon_sym_o_PLUSe_GT] = ACTIONS(2449), + [anon_sym_e_PLUSo_GT] = ACTIONS(2449), + [anon_sym_err_GT_GT] = ACTIONS(2447), + [anon_sym_out_GT_GT] = ACTIONS(2447), + [anon_sym_e_GT_GT] = ACTIONS(2447), + [anon_sym_o_GT_GT] = ACTIONS(2447), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2447), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2447), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2447), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2447), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(852)] = { - [aux_sym__repeat_newline] = STATE(1092), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(852), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(840)] = { + [sym_comment] = STATE(840), + [anon_sym_if] = ACTIONS(2451), + [anon_sym_in] = ACTIONS(2451), + [sym__newline] = ACTIONS(2451), + [anon_sym_SEMI] = ACTIONS(2451), + [anon_sym_PIPE] = ACTIONS(2451), + [anon_sym_err_GT_PIPE] = ACTIONS(2451), + [anon_sym_out_GT_PIPE] = ACTIONS(2451), + [anon_sym_e_GT_PIPE] = ACTIONS(2451), + [anon_sym_o_GT_PIPE] = ACTIONS(2451), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2451), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2451), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2451), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2451), + [anon_sym_RPAREN] = ACTIONS(2451), + [anon_sym_GT2] = ACTIONS(2453), + [anon_sym_DASH2] = ACTIONS(2451), + [anon_sym_LBRACE] = ACTIONS(2451), + [anon_sym_RBRACE] = ACTIONS(2451), + [anon_sym_EQ_GT] = ACTIONS(2451), + [anon_sym_STAR2] = ACTIONS(2453), + [anon_sym_and2] = ACTIONS(2451), + [anon_sym_xor2] = ACTIONS(2451), + [anon_sym_or2] = ACTIONS(2451), + [anon_sym_not_DASHin2] = ACTIONS(2451), + [anon_sym_has2] = ACTIONS(2451), + [anon_sym_not_DASHhas2] = ACTIONS(2451), + [anon_sym_starts_DASHwith2] = ACTIONS(2451), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2451), + [anon_sym_ends_DASHwith2] = ACTIONS(2451), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2451), + [anon_sym_EQ_EQ2] = ACTIONS(2451), + [anon_sym_BANG_EQ2] = ACTIONS(2451), + [anon_sym_LT2] = ACTIONS(2453), + [anon_sym_LT_EQ2] = ACTIONS(2451), + [anon_sym_GT_EQ2] = ACTIONS(2451), + [anon_sym_EQ_TILDE2] = ACTIONS(2451), + [anon_sym_BANG_TILDE2] = ACTIONS(2451), + [anon_sym_like2] = ACTIONS(2451), + [anon_sym_not_DASHlike2] = ACTIONS(2451), + [anon_sym_STAR_STAR2] = ACTIONS(2451), + [anon_sym_PLUS_PLUS2] = ACTIONS(2451), + [anon_sym_SLASH2] = ACTIONS(2453), + [anon_sym_mod2] = ACTIONS(2451), + [anon_sym_SLASH_SLASH2] = ACTIONS(2451), + [anon_sym_PLUS2] = ACTIONS(2453), + [anon_sym_bit_DASHshl2] = ACTIONS(2451), + [anon_sym_bit_DASHshr2] = ACTIONS(2451), + [anon_sym_bit_DASHand2] = ACTIONS(2451), + [anon_sym_bit_DASHxor2] = ACTIONS(2451), + [anon_sym_bit_DASHor2] = ACTIONS(2451), + [anon_sym_err_GT] = ACTIONS(2453), + [anon_sym_out_GT] = ACTIONS(2453), + [anon_sym_e_GT] = ACTIONS(2453), + [anon_sym_o_GT] = ACTIONS(2453), + [anon_sym_err_PLUSout_GT] = ACTIONS(2453), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2453), + [anon_sym_o_PLUSe_GT] = ACTIONS(2453), + [anon_sym_e_PLUSo_GT] = ACTIONS(2453), + [anon_sym_err_GT_GT] = ACTIONS(2451), + [anon_sym_out_GT_GT] = ACTIONS(2451), + [anon_sym_e_GT_GT] = ACTIONS(2451), + [anon_sym_o_GT_GT] = ACTIONS(2451), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2451), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2451), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2451), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2451), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(853)] = { - [aux_sym__repeat_newline] = STATE(1093), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(853), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(841)] = { + [sym_comment] = STATE(841), + [anon_sym_if] = ACTIONS(2455), + [anon_sym_in] = ACTIONS(2455), + [sym__newline] = ACTIONS(2455), + [anon_sym_SEMI] = ACTIONS(2455), + [anon_sym_PIPE] = ACTIONS(2455), + [anon_sym_err_GT_PIPE] = ACTIONS(2455), + [anon_sym_out_GT_PIPE] = ACTIONS(2455), + [anon_sym_e_GT_PIPE] = ACTIONS(2455), + [anon_sym_o_GT_PIPE] = ACTIONS(2455), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2455), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2455), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2455), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2455), + [anon_sym_RPAREN] = ACTIONS(2455), + [anon_sym_GT2] = ACTIONS(2457), + [anon_sym_DASH2] = ACTIONS(2455), + [anon_sym_LBRACE] = ACTIONS(2455), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_EQ_GT] = ACTIONS(2455), + [anon_sym_STAR2] = ACTIONS(2457), + [anon_sym_and2] = ACTIONS(2455), + [anon_sym_xor2] = ACTIONS(2455), + [anon_sym_or2] = ACTIONS(2455), + [anon_sym_not_DASHin2] = ACTIONS(2455), + [anon_sym_has2] = ACTIONS(2455), + [anon_sym_not_DASHhas2] = ACTIONS(2455), + [anon_sym_starts_DASHwith2] = ACTIONS(2455), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2455), + [anon_sym_ends_DASHwith2] = ACTIONS(2455), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2455), + [anon_sym_EQ_EQ2] = ACTIONS(2455), + [anon_sym_BANG_EQ2] = ACTIONS(2455), + [anon_sym_LT2] = ACTIONS(2457), + [anon_sym_LT_EQ2] = ACTIONS(2455), + [anon_sym_GT_EQ2] = ACTIONS(2455), + [anon_sym_EQ_TILDE2] = ACTIONS(2455), + [anon_sym_BANG_TILDE2] = ACTIONS(2455), + [anon_sym_like2] = ACTIONS(2455), + [anon_sym_not_DASHlike2] = ACTIONS(2455), + [anon_sym_STAR_STAR2] = ACTIONS(2455), + [anon_sym_PLUS_PLUS2] = ACTIONS(2455), + [anon_sym_SLASH2] = ACTIONS(2457), + [anon_sym_mod2] = ACTIONS(2455), + [anon_sym_SLASH_SLASH2] = ACTIONS(2455), + [anon_sym_PLUS2] = ACTIONS(2457), + [anon_sym_bit_DASHshl2] = ACTIONS(2455), + [anon_sym_bit_DASHshr2] = ACTIONS(2455), + [anon_sym_bit_DASHand2] = ACTIONS(2455), + [anon_sym_bit_DASHxor2] = ACTIONS(2455), + [anon_sym_bit_DASHor2] = ACTIONS(2455), + [anon_sym_err_GT] = ACTIONS(2457), + [anon_sym_out_GT] = ACTIONS(2457), + [anon_sym_e_GT] = ACTIONS(2457), + [anon_sym_o_GT] = ACTIONS(2457), + [anon_sym_err_PLUSout_GT] = ACTIONS(2457), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2457), + [anon_sym_o_PLUSe_GT] = ACTIONS(2457), + [anon_sym_e_PLUSo_GT] = ACTIONS(2457), + [anon_sym_err_GT_GT] = ACTIONS(2455), + [anon_sym_out_GT_GT] = ACTIONS(2455), + [anon_sym_e_GT_GT] = ACTIONS(2455), + [anon_sym_o_GT_GT] = ACTIONS(2455), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2455), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2455), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2455), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2455), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(854)] = { - [aux_sym__repeat_newline] = STATE(1094), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(854), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(842)] = { + [sym_comment] = STATE(842), + [anon_sym_if] = ACTIONS(2459), + [anon_sym_in] = ACTIONS(2459), + [sym__newline] = ACTIONS(2459), + [anon_sym_SEMI] = ACTIONS(2459), + [anon_sym_PIPE] = ACTIONS(2459), + [anon_sym_err_GT_PIPE] = ACTIONS(2459), + [anon_sym_out_GT_PIPE] = ACTIONS(2459), + [anon_sym_e_GT_PIPE] = ACTIONS(2459), + [anon_sym_o_GT_PIPE] = ACTIONS(2459), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2459), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2459), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2459), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2459), + [anon_sym_RPAREN] = ACTIONS(2459), + [anon_sym_GT2] = ACTIONS(2461), + [anon_sym_DASH2] = ACTIONS(2459), + [anon_sym_LBRACE] = ACTIONS(2459), + [anon_sym_RBRACE] = ACTIONS(2459), + [anon_sym_EQ_GT] = ACTIONS(2459), + [anon_sym_STAR2] = ACTIONS(2461), + [anon_sym_and2] = ACTIONS(2459), + [anon_sym_xor2] = ACTIONS(2459), + [anon_sym_or2] = ACTIONS(2459), + [anon_sym_not_DASHin2] = ACTIONS(2459), + [anon_sym_has2] = ACTIONS(2459), + [anon_sym_not_DASHhas2] = ACTIONS(2459), + [anon_sym_starts_DASHwith2] = ACTIONS(2459), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2459), + [anon_sym_ends_DASHwith2] = ACTIONS(2459), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2459), + [anon_sym_EQ_EQ2] = ACTIONS(2459), + [anon_sym_BANG_EQ2] = ACTIONS(2459), + [anon_sym_LT2] = ACTIONS(2461), + [anon_sym_LT_EQ2] = ACTIONS(2459), + [anon_sym_GT_EQ2] = ACTIONS(2459), + [anon_sym_EQ_TILDE2] = ACTIONS(2459), + [anon_sym_BANG_TILDE2] = ACTIONS(2459), + [anon_sym_like2] = ACTIONS(2459), + [anon_sym_not_DASHlike2] = ACTIONS(2459), + [anon_sym_STAR_STAR2] = ACTIONS(2459), + [anon_sym_PLUS_PLUS2] = ACTIONS(2459), + [anon_sym_SLASH2] = ACTIONS(2461), + [anon_sym_mod2] = ACTIONS(2459), + [anon_sym_SLASH_SLASH2] = ACTIONS(2459), + [anon_sym_PLUS2] = ACTIONS(2461), + [anon_sym_bit_DASHshl2] = ACTIONS(2459), + [anon_sym_bit_DASHshr2] = ACTIONS(2459), + [anon_sym_bit_DASHand2] = ACTIONS(2459), + [anon_sym_bit_DASHxor2] = ACTIONS(2459), + [anon_sym_bit_DASHor2] = ACTIONS(2459), + [anon_sym_err_GT] = ACTIONS(2461), + [anon_sym_out_GT] = ACTIONS(2461), + [anon_sym_e_GT] = ACTIONS(2461), + [anon_sym_o_GT] = ACTIONS(2461), + [anon_sym_err_PLUSout_GT] = ACTIONS(2461), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2461), + [anon_sym_o_PLUSe_GT] = ACTIONS(2461), + [anon_sym_e_PLUSo_GT] = ACTIONS(2461), + [anon_sym_err_GT_GT] = ACTIONS(2459), + [anon_sym_out_GT_GT] = ACTIONS(2459), + [anon_sym_e_GT_GT] = ACTIONS(2459), + [anon_sym_o_GT_GT] = ACTIONS(2459), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2459), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2459), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2459), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2459), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(855)] = { - [aux_sym__repeat_newline] = STATE(1095), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(855), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(843)] = { + [sym_comment] = STATE(843), + [anon_sym_if] = ACTIONS(2463), + [anon_sym_in] = ACTIONS(2463), + [sym__newline] = ACTIONS(2463), + [anon_sym_SEMI] = ACTIONS(2463), + [anon_sym_PIPE] = ACTIONS(2463), + [anon_sym_err_GT_PIPE] = ACTIONS(2463), + [anon_sym_out_GT_PIPE] = ACTIONS(2463), + [anon_sym_e_GT_PIPE] = ACTIONS(2463), + [anon_sym_o_GT_PIPE] = ACTIONS(2463), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2463), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2463), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2463), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2463), + [anon_sym_RPAREN] = ACTIONS(2463), + [anon_sym_GT2] = ACTIONS(2465), + [anon_sym_DASH2] = ACTIONS(2463), + [anon_sym_LBRACE] = ACTIONS(2463), + [anon_sym_RBRACE] = ACTIONS(2463), + [anon_sym_EQ_GT] = ACTIONS(2463), + [anon_sym_STAR2] = ACTIONS(2465), + [anon_sym_and2] = ACTIONS(2463), + [anon_sym_xor2] = ACTIONS(2463), + [anon_sym_or2] = ACTIONS(2463), + [anon_sym_not_DASHin2] = ACTIONS(2463), + [anon_sym_has2] = ACTIONS(2463), + [anon_sym_not_DASHhas2] = ACTIONS(2463), + [anon_sym_starts_DASHwith2] = ACTIONS(2463), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2463), + [anon_sym_ends_DASHwith2] = ACTIONS(2463), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2463), + [anon_sym_EQ_EQ2] = ACTIONS(2463), + [anon_sym_BANG_EQ2] = ACTIONS(2463), + [anon_sym_LT2] = ACTIONS(2465), + [anon_sym_LT_EQ2] = ACTIONS(2463), + [anon_sym_GT_EQ2] = ACTIONS(2463), + [anon_sym_EQ_TILDE2] = ACTIONS(2463), + [anon_sym_BANG_TILDE2] = ACTIONS(2463), + [anon_sym_like2] = ACTIONS(2463), + [anon_sym_not_DASHlike2] = ACTIONS(2463), + [anon_sym_STAR_STAR2] = ACTIONS(2463), + [anon_sym_PLUS_PLUS2] = ACTIONS(2463), + [anon_sym_SLASH2] = ACTIONS(2465), + [anon_sym_mod2] = ACTIONS(2463), + [anon_sym_SLASH_SLASH2] = ACTIONS(2463), + [anon_sym_PLUS2] = ACTIONS(2465), + [anon_sym_bit_DASHshl2] = ACTIONS(2463), + [anon_sym_bit_DASHshr2] = ACTIONS(2463), + [anon_sym_bit_DASHand2] = ACTIONS(2463), + [anon_sym_bit_DASHxor2] = ACTIONS(2463), + [anon_sym_bit_DASHor2] = ACTIONS(2463), + [anon_sym_err_GT] = ACTIONS(2465), + [anon_sym_out_GT] = ACTIONS(2465), + [anon_sym_e_GT] = ACTIONS(2465), + [anon_sym_o_GT] = ACTIONS(2465), + [anon_sym_err_PLUSout_GT] = ACTIONS(2465), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2465), + [anon_sym_o_PLUSe_GT] = ACTIONS(2465), + [anon_sym_e_PLUSo_GT] = ACTIONS(2465), + [anon_sym_err_GT_GT] = ACTIONS(2463), + [anon_sym_out_GT_GT] = ACTIONS(2463), + [anon_sym_e_GT_GT] = ACTIONS(2463), + [anon_sym_o_GT_GT] = ACTIONS(2463), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2463), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2463), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2463), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2463), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(856)] = { - [aux_sym__repeat_newline] = STATE(1096), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(856), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(844)] = { + [sym_comment] = STATE(844), + [anon_sym_if] = ACTIONS(2467), + [anon_sym_in] = ACTIONS(2467), + [sym__newline] = ACTIONS(2467), + [anon_sym_SEMI] = ACTIONS(2467), + [anon_sym_PIPE] = ACTIONS(2467), + [anon_sym_err_GT_PIPE] = ACTIONS(2467), + [anon_sym_out_GT_PIPE] = ACTIONS(2467), + [anon_sym_e_GT_PIPE] = ACTIONS(2467), + [anon_sym_o_GT_PIPE] = ACTIONS(2467), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2467), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2467), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2467), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2467), + [anon_sym_RPAREN] = ACTIONS(2467), + [anon_sym_GT2] = ACTIONS(2469), + [anon_sym_DASH2] = ACTIONS(2467), + [anon_sym_LBRACE] = ACTIONS(2467), + [anon_sym_RBRACE] = ACTIONS(2467), + [anon_sym_EQ_GT] = ACTIONS(2467), + [anon_sym_STAR2] = ACTIONS(2469), + [anon_sym_and2] = ACTIONS(2467), + [anon_sym_xor2] = ACTIONS(2467), + [anon_sym_or2] = ACTIONS(2467), + [anon_sym_not_DASHin2] = ACTIONS(2467), + [anon_sym_has2] = ACTIONS(2467), + [anon_sym_not_DASHhas2] = ACTIONS(2467), + [anon_sym_starts_DASHwith2] = ACTIONS(2467), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2467), + [anon_sym_ends_DASHwith2] = ACTIONS(2467), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2467), + [anon_sym_EQ_EQ2] = ACTIONS(2467), + [anon_sym_BANG_EQ2] = ACTIONS(2467), + [anon_sym_LT2] = ACTIONS(2469), + [anon_sym_LT_EQ2] = ACTIONS(2467), + [anon_sym_GT_EQ2] = ACTIONS(2467), + [anon_sym_EQ_TILDE2] = ACTIONS(2467), + [anon_sym_BANG_TILDE2] = ACTIONS(2467), + [anon_sym_like2] = ACTIONS(2467), + [anon_sym_not_DASHlike2] = ACTIONS(2467), + [anon_sym_STAR_STAR2] = ACTIONS(2467), + [anon_sym_PLUS_PLUS2] = ACTIONS(2467), + [anon_sym_SLASH2] = ACTIONS(2469), + [anon_sym_mod2] = ACTIONS(2467), + [anon_sym_SLASH_SLASH2] = ACTIONS(2467), + [anon_sym_PLUS2] = ACTIONS(2469), + [anon_sym_bit_DASHshl2] = ACTIONS(2467), + [anon_sym_bit_DASHshr2] = ACTIONS(2467), + [anon_sym_bit_DASHand2] = ACTIONS(2467), + [anon_sym_bit_DASHxor2] = ACTIONS(2467), + [anon_sym_bit_DASHor2] = ACTIONS(2467), + [anon_sym_err_GT] = ACTIONS(2469), + [anon_sym_out_GT] = ACTIONS(2469), + [anon_sym_e_GT] = ACTIONS(2469), + [anon_sym_o_GT] = ACTIONS(2469), + [anon_sym_err_PLUSout_GT] = ACTIONS(2469), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2469), + [anon_sym_o_PLUSe_GT] = ACTIONS(2469), + [anon_sym_e_PLUSo_GT] = ACTIONS(2469), + [anon_sym_err_GT_GT] = ACTIONS(2467), + [anon_sym_out_GT_GT] = ACTIONS(2467), + [anon_sym_e_GT_GT] = ACTIONS(2467), + [anon_sym_o_GT_GT] = ACTIONS(2467), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2467), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2467), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2467), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2467), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(857)] = { - [aux_sym__repeat_newline] = STATE(1097), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(857), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(845)] = { + [sym_comment] = STATE(845), + [anon_sym_if] = ACTIONS(2471), + [anon_sym_in] = ACTIONS(2471), + [sym__newline] = ACTIONS(2471), + [anon_sym_SEMI] = ACTIONS(2471), + [anon_sym_PIPE] = ACTIONS(2471), + [anon_sym_err_GT_PIPE] = ACTIONS(2471), + [anon_sym_out_GT_PIPE] = ACTIONS(2471), + [anon_sym_e_GT_PIPE] = ACTIONS(2471), + [anon_sym_o_GT_PIPE] = ACTIONS(2471), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2471), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2471), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2471), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2471), + [anon_sym_RPAREN] = ACTIONS(2471), + [anon_sym_GT2] = ACTIONS(2473), + [anon_sym_DASH2] = ACTIONS(2471), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_RBRACE] = ACTIONS(2471), + [anon_sym_EQ_GT] = ACTIONS(2471), + [anon_sym_STAR2] = ACTIONS(2473), + [anon_sym_and2] = ACTIONS(2471), + [anon_sym_xor2] = ACTIONS(2471), + [anon_sym_or2] = ACTIONS(2471), + [anon_sym_not_DASHin2] = ACTIONS(2471), + [anon_sym_has2] = ACTIONS(2471), + [anon_sym_not_DASHhas2] = ACTIONS(2471), + [anon_sym_starts_DASHwith2] = ACTIONS(2471), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2471), + [anon_sym_ends_DASHwith2] = ACTIONS(2471), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2471), + [anon_sym_EQ_EQ2] = ACTIONS(2471), + [anon_sym_BANG_EQ2] = ACTIONS(2471), + [anon_sym_LT2] = ACTIONS(2473), + [anon_sym_LT_EQ2] = ACTIONS(2471), + [anon_sym_GT_EQ2] = ACTIONS(2471), + [anon_sym_EQ_TILDE2] = ACTIONS(2471), + [anon_sym_BANG_TILDE2] = ACTIONS(2471), + [anon_sym_like2] = ACTIONS(2471), + [anon_sym_not_DASHlike2] = ACTIONS(2471), + [anon_sym_STAR_STAR2] = ACTIONS(2471), + [anon_sym_PLUS_PLUS2] = ACTIONS(2471), + [anon_sym_SLASH2] = ACTIONS(2473), + [anon_sym_mod2] = ACTIONS(2471), + [anon_sym_SLASH_SLASH2] = ACTIONS(2471), + [anon_sym_PLUS2] = ACTIONS(2473), + [anon_sym_bit_DASHshl2] = ACTIONS(2471), + [anon_sym_bit_DASHshr2] = ACTIONS(2471), + [anon_sym_bit_DASHand2] = ACTIONS(2471), + [anon_sym_bit_DASHxor2] = ACTIONS(2471), + [anon_sym_bit_DASHor2] = ACTIONS(2471), + [anon_sym_err_GT] = ACTIONS(2473), + [anon_sym_out_GT] = ACTIONS(2473), + [anon_sym_e_GT] = ACTIONS(2473), + [anon_sym_o_GT] = ACTIONS(2473), + [anon_sym_err_PLUSout_GT] = ACTIONS(2473), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2473), + [anon_sym_o_PLUSe_GT] = ACTIONS(2473), + [anon_sym_e_PLUSo_GT] = ACTIONS(2473), + [anon_sym_err_GT_GT] = ACTIONS(2471), + [anon_sym_out_GT_GT] = ACTIONS(2471), + [anon_sym_e_GT_GT] = ACTIONS(2471), + [anon_sym_o_GT_GT] = ACTIONS(2471), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2471), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2471), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2471), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2471), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(858)] = { - [aux_sym__repeat_newline] = STATE(1098), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(858), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(846)] = { + [sym_comment] = STATE(846), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_in] = ACTIONS(2475), + [sym__newline] = ACTIONS(2475), + [anon_sym_SEMI] = ACTIONS(2475), + [anon_sym_PIPE] = ACTIONS(2475), + [anon_sym_err_GT_PIPE] = ACTIONS(2475), + [anon_sym_out_GT_PIPE] = ACTIONS(2475), + [anon_sym_e_GT_PIPE] = ACTIONS(2475), + [anon_sym_o_GT_PIPE] = ACTIONS(2475), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2475), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2475), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2475), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2475), + [anon_sym_RPAREN] = ACTIONS(2475), + [anon_sym_GT2] = ACTIONS(2477), + [anon_sym_DASH2] = ACTIONS(2475), + [anon_sym_LBRACE] = ACTIONS(2475), + [anon_sym_RBRACE] = ACTIONS(2475), + [anon_sym_EQ_GT] = ACTIONS(2475), + [anon_sym_STAR2] = ACTIONS(2477), + [anon_sym_and2] = ACTIONS(2475), + [anon_sym_xor2] = ACTIONS(2475), + [anon_sym_or2] = ACTIONS(2475), + [anon_sym_not_DASHin2] = ACTIONS(2475), + [anon_sym_has2] = ACTIONS(2475), + [anon_sym_not_DASHhas2] = ACTIONS(2475), + [anon_sym_starts_DASHwith2] = ACTIONS(2475), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2475), + [anon_sym_ends_DASHwith2] = ACTIONS(2475), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2475), + [anon_sym_EQ_EQ2] = ACTIONS(2475), + [anon_sym_BANG_EQ2] = ACTIONS(2475), + [anon_sym_LT2] = ACTIONS(2477), + [anon_sym_LT_EQ2] = ACTIONS(2475), + [anon_sym_GT_EQ2] = ACTIONS(2475), + [anon_sym_EQ_TILDE2] = ACTIONS(2475), + [anon_sym_BANG_TILDE2] = ACTIONS(2475), + [anon_sym_like2] = ACTIONS(2475), + [anon_sym_not_DASHlike2] = ACTIONS(2475), + [anon_sym_STAR_STAR2] = ACTIONS(2475), + [anon_sym_PLUS_PLUS2] = ACTIONS(2475), + [anon_sym_SLASH2] = ACTIONS(2477), + [anon_sym_mod2] = ACTIONS(2475), + [anon_sym_SLASH_SLASH2] = ACTIONS(2475), + [anon_sym_PLUS2] = ACTIONS(2477), + [anon_sym_bit_DASHshl2] = ACTIONS(2475), + [anon_sym_bit_DASHshr2] = ACTIONS(2475), + [anon_sym_bit_DASHand2] = ACTIONS(2475), + [anon_sym_bit_DASHxor2] = ACTIONS(2475), + [anon_sym_bit_DASHor2] = ACTIONS(2475), + [anon_sym_err_GT] = ACTIONS(2477), + [anon_sym_out_GT] = ACTIONS(2477), + [anon_sym_e_GT] = ACTIONS(2477), + [anon_sym_o_GT] = ACTIONS(2477), + [anon_sym_err_PLUSout_GT] = ACTIONS(2477), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2477), + [anon_sym_o_PLUSe_GT] = ACTIONS(2477), + [anon_sym_e_PLUSo_GT] = ACTIONS(2477), + [anon_sym_err_GT_GT] = ACTIONS(2475), + [anon_sym_out_GT_GT] = ACTIONS(2475), + [anon_sym_e_GT_GT] = ACTIONS(2475), + [anon_sym_o_GT_GT] = ACTIONS(2475), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2475), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2475), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2475), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2475), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(859)] = { - [aux_sym__repeat_newline] = STATE(1100), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(859), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(847)] = { + [sym_comment] = STATE(847), + [anon_sym_in] = ACTIONS(2479), + [sym__newline] = ACTIONS(2479), + [anon_sym_SEMI] = ACTIONS(2479), + [anon_sym_PIPE] = ACTIONS(2479), + [anon_sym_err_GT_PIPE] = ACTIONS(2479), + [anon_sym_out_GT_PIPE] = ACTIONS(2479), + [anon_sym_e_GT_PIPE] = ACTIONS(2479), + [anon_sym_o_GT_PIPE] = ACTIONS(2479), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2479), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2479), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2479), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2479), + [anon_sym_RPAREN] = ACTIONS(2479), + [anon_sym_GT2] = ACTIONS(2481), + [anon_sym_DASH2] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2479), + [anon_sym_RBRACE] = ACTIONS(2479), + [anon_sym_EQ_GT] = ACTIONS(2479), + [anon_sym_STAR2] = ACTIONS(2481), + [anon_sym_and2] = ACTIONS(2479), + [anon_sym_xor2] = ACTIONS(2479), + [anon_sym_or2] = ACTIONS(2479), + [anon_sym_not_DASHin2] = ACTIONS(2479), + [anon_sym_has2] = ACTIONS(2479), + [anon_sym_not_DASHhas2] = ACTIONS(2479), + [anon_sym_starts_DASHwith2] = ACTIONS(2479), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2479), + [anon_sym_ends_DASHwith2] = ACTIONS(2479), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2479), + [anon_sym_EQ_EQ2] = ACTIONS(2479), + [anon_sym_BANG_EQ2] = ACTIONS(2479), + [anon_sym_LT2] = ACTIONS(2481), + [anon_sym_LT_EQ2] = ACTIONS(2479), + [anon_sym_GT_EQ2] = ACTIONS(2479), + [anon_sym_EQ_TILDE2] = ACTIONS(2479), + [anon_sym_BANG_TILDE2] = ACTIONS(2479), + [anon_sym_like2] = ACTIONS(2479), + [anon_sym_not_DASHlike2] = ACTIONS(2479), + [anon_sym_STAR_STAR2] = ACTIONS(2479), + [anon_sym_PLUS_PLUS2] = ACTIONS(2479), + [anon_sym_SLASH2] = ACTIONS(2481), + [anon_sym_mod2] = ACTIONS(2479), + [anon_sym_SLASH_SLASH2] = ACTIONS(2479), + [anon_sym_PLUS2] = ACTIONS(2481), + [anon_sym_bit_DASHshl2] = ACTIONS(2479), + [anon_sym_bit_DASHshr2] = ACTIONS(2479), + [anon_sym_bit_DASHand2] = ACTIONS(2479), + [anon_sym_bit_DASHxor2] = ACTIONS(2479), + [anon_sym_bit_DASHor2] = ACTIONS(2479), + [anon_sym_COLON2] = ACTIONS(2479), + [anon_sym_err_GT] = ACTIONS(2481), + [anon_sym_out_GT] = ACTIONS(2481), + [anon_sym_e_GT] = ACTIONS(2481), + [anon_sym_o_GT] = ACTIONS(2481), + [anon_sym_err_PLUSout_GT] = ACTIONS(2481), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2481), + [anon_sym_o_PLUSe_GT] = ACTIONS(2481), + [anon_sym_e_PLUSo_GT] = ACTIONS(2481), + [anon_sym_err_GT_GT] = ACTIONS(2479), + [anon_sym_out_GT_GT] = ACTIONS(2479), + [anon_sym_e_GT_GT] = ACTIONS(2479), + [anon_sym_o_GT_GT] = ACTIONS(2479), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2479), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2479), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2479), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2479), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(860)] = { - [aux_sym__repeat_newline] = STATE(1101), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(860), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(848)] = { + [sym_comment] = STATE(848), + [anon_sym_in] = ACTIONS(2479), + [sym__newline] = ACTIONS(2479), + [anon_sym_SEMI] = ACTIONS(2479), + [anon_sym_PIPE] = ACTIONS(2479), + [anon_sym_err_GT_PIPE] = ACTIONS(2479), + [anon_sym_out_GT_PIPE] = ACTIONS(2479), + [anon_sym_e_GT_PIPE] = ACTIONS(2479), + [anon_sym_o_GT_PIPE] = ACTIONS(2479), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2479), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2479), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2479), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2479), + [anon_sym_RPAREN] = ACTIONS(2479), + [anon_sym_GT2] = ACTIONS(2481), + [anon_sym_DASH2] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2479), + [anon_sym_RBRACE] = ACTIONS(2479), + [anon_sym_EQ_GT] = ACTIONS(2479), + [anon_sym_STAR2] = ACTIONS(2481), + [anon_sym_and2] = ACTIONS(2479), + [anon_sym_xor2] = ACTIONS(2479), + [anon_sym_or2] = ACTIONS(2479), + [anon_sym_not_DASHin2] = ACTIONS(2479), + [anon_sym_has2] = ACTIONS(2479), + [anon_sym_not_DASHhas2] = ACTIONS(2479), + [anon_sym_starts_DASHwith2] = ACTIONS(2479), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2479), + [anon_sym_ends_DASHwith2] = ACTIONS(2479), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2479), + [anon_sym_EQ_EQ2] = ACTIONS(2479), + [anon_sym_BANG_EQ2] = ACTIONS(2479), + [anon_sym_LT2] = ACTIONS(2481), + [anon_sym_LT_EQ2] = ACTIONS(2479), + [anon_sym_GT_EQ2] = ACTIONS(2479), + [anon_sym_EQ_TILDE2] = ACTIONS(2479), + [anon_sym_BANG_TILDE2] = ACTIONS(2479), + [anon_sym_like2] = ACTIONS(2479), + [anon_sym_not_DASHlike2] = ACTIONS(2479), + [anon_sym_STAR_STAR2] = ACTIONS(2479), + [anon_sym_PLUS_PLUS2] = ACTIONS(2479), + [anon_sym_SLASH2] = ACTIONS(2481), + [anon_sym_mod2] = ACTIONS(2479), + [anon_sym_SLASH_SLASH2] = ACTIONS(2479), + [anon_sym_PLUS2] = ACTIONS(2481), + [anon_sym_bit_DASHshl2] = ACTIONS(2479), + [anon_sym_bit_DASHshr2] = ACTIONS(2479), + [anon_sym_bit_DASHand2] = ACTIONS(2479), + [anon_sym_bit_DASHxor2] = ACTIONS(2479), + [anon_sym_bit_DASHor2] = ACTIONS(2479), + [anon_sym_COLON2] = ACTIONS(2479), + [anon_sym_err_GT] = ACTIONS(2481), + [anon_sym_out_GT] = ACTIONS(2481), + [anon_sym_e_GT] = ACTIONS(2481), + [anon_sym_o_GT] = ACTIONS(2481), + [anon_sym_err_PLUSout_GT] = ACTIONS(2481), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2481), + [anon_sym_o_PLUSe_GT] = ACTIONS(2481), + [anon_sym_e_PLUSo_GT] = ACTIONS(2481), + [anon_sym_err_GT_GT] = ACTIONS(2479), + [anon_sym_out_GT_GT] = ACTIONS(2479), + [anon_sym_e_GT_GT] = ACTIONS(2479), + [anon_sym_o_GT_GT] = ACTIONS(2479), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2479), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2479), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2479), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2479), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(861)] = { - [aux_sym__repeat_newline] = STATE(1102), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(861), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(849)] = { + [sym_comment] = STATE(849), + [anon_sym_in] = ACTIONS(2483), + [sym__newline] = ACTIONS(2483), + [anon_sym_SEMI] = ACTIONS(2483), + [anon_sym_PIPE] = ACTIONS(2483), + [anon_sym_err_GT_PIPE] = ACTIONS(2483), + [anon_sym_out_GT_PIPE] = ACTIONS(2483), + [anon_sym_e_GT_PIPE] = ACTIONS(2483), + [anon_sym_o_GT_PIPE] = ACTIONS(2483), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2483), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2483), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2483), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2483), + [anon_sym_RPAREN] = ACTIONS(2483), + [anon_sym_GT2] = ACTIONS(2485), + [anon_sym_DASH2] = ACTIONS(2483), + [anon_sym_LBRACE] = ACTIONS(2483), + [anon_sym_RBRACE] = ACTIONS(2483), + [anon_sym_EQ_GT] = ACTIONS(2483), + [anon_sym_STAR2] = ACTIONS(2485), + [anon_sym_and2] = ACTIONS(2483), + [anon_sym_xor2] = ACTIONS(2483), + [anon_sym_or2] = ACTIONS(2483), + [anon_sym_not_DASHin2] = ACTIONS(2483), + [anon_sym_has2] = ACTIONS(2483), + [anon_sym_not_DASHhas2] = ACTIONS(2483), + [anon_sym_starts_DASHwith2] = ACTIONS(2483), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2483), + [anon_sym_ends_DASHwith2] = ACTIONS(2483), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2483), + [anon_sym_EQ_EQ2] = ACTIONS(2483), + [anon_sym_BANG_EQ2] = ACTIONS(2483), + [anon_sym_LT2] = ACTIONS(2485), + [anon_sym_LT_EQ2] = ACTIONS(2483), + [anon_sym_GT_EQ2] = ACTIONS(2483), + [anon_sym_EQ_TILDE2] = ACTIONS(2483), + [anon_sym_BANG_TILDE2] = ACTIONS(2483), + [anon_sym_like2] = ACTIONS(2483), + [anon_sym_not_DASHlike2] = ACTIONS(2483), + [anon_sym_STAR_STAR2] = ACTIONS(2483), + [anon_sym_PLUS_PLUS2] = ACTIONS(2483), + [anon_sym_SLASH2] = ACTIONS(2485), + [anon_sym_mod2] = ACTIONS(2483), + [anon_sym_SLASH_SLASH2] = ACTIONS(2483), + [anon_sym_PLUS2] = ACTIONS(2485), + [anon_sym_bit_DASHshl2] = ACTIONS(2483), + [anon_sym_bit_DASHshr2] = ACTIONS(2483), + [anon_sym_bit_DASHand2] = ACTIONS(2483), + [anon_sym_bit_DASHxor2] = ACTIONS(2483), + [anon_sym_bit_DASHor2] = ACTIONS(2483), + [anon_sym_COLON2] = ACTIONS(2483), + [anon_sym_err_GT] = ACTIONS(2485), + [anon_sym_out_GT] = ACTIONS(2485), + [anon_sym_e_GT] = ACTIONS(2485), + [anon_sym_o_GT] = ACTIONS(2485), + [anon_sym_err_PLUSout_GT] = ACTIONS(2485), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2485), + [anon_sym_o_PLUSe_GT] = ACTIONS(2485), + [anon_sym_e_PLUSo_GT] = ACTIONS(2485), + [anon_sym_err_GT_GT] = ACTIONS(2483), + [anon_sym_out_GT_GT] = ACTIONS(2483), + [anon_sym_e_GT_GT] = ACTIONS(2483), + [anon_sym_o_GT_GT] = ACTIONS(2483), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2483), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2483), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2483), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2483), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(862)] = { - [aux_sym__repeat_newline] = STATE(1106), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(862), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(850)] = { + [sym_comment] = STATE(850), + [anon_sym_in] = ACTIONS(2487), + [sym__newline] = ACTIONS(2487), + [anon_sym_SEMI] = ACTIONS(2487), + [anon_sym_PIPE] = ACTIONS(2487), + [anon_sym_err_GT_PIPE] = ACTIONS(2487), + [anon_sym_out_GT_PIPE] = ACTIONS(2487), + [anon_sym_e_GT_PIPE] = ACTIONS(2487), + [anon_sym_o_GT_PIPE] = ACTIONS(2487), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2487), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2487), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2487), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2487), + [anon_sym_RPAREN] = ACTIONS(2487), + [anon_sym_GT2] = ACTIONS(2489), + [anon_sym_DASH2] = ACTIONS(2487), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_RBRACE] = ACTIONS(2487), + [anon_sym_EQ_GT] = ACTIONS(2487), + [anon_sym_STAR2] = ACTIONS(2489), + [anon_sym_and2] = ACTIONS(2487), + [anon_sym_xor2] = ACTIONS(2487), + [anon_sym_or2] = ACTIONS(2487), + [anon_sym_not_DASHin2] = ACTIONS(2487), + [anon_sym_has2] = ACTIONS(2487), + [anon_sym_not_DASHhas2] = ACTIONS(2487), + [anon_sym_starts_DASHwith2] = ACTIONS(2487), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2487), + [anon_sym_ends_DASHwith2] = ACTIONS(2487), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2487), + [anon_sym_EQ_EQ2] = ACTIONS(2487), + [anon_sym_BANG_EQ2] = ACTIONS(2487), + [anon_sym_LT2] = ACTIONS(2489), + [anon_sym_LT_EQ2] = ACTIONS(2487), + [anon_sym_GT_EQ2] = ACTIONS(2487), + [anon_sym_EQ_TILDE2] = ACTIONS(2487), + [anon_sym_BANG_TILDE2] = ACTIONS(2487), + [anon_sym_like2] = ACTIONS(2487), + [anon_sym_not_DASHlike2] = ACTIONS(2487), + [anon_sym_STAR_STAR2] = ACTIONS(2487), + [anon_sym_PLUS_PLUS2] = ACTIONS(2487), + [anon_sym_SLASH2] = ACTIONS(2489), + [anon_sym_mod2] = ACTIONS(2487), + [anon_sym_SLASH_SLASH2] = ACTIONS(2487), + [anon_sym_PLUS2] = ACTIONS(2489), + [anon_sym_bit_DASHshl2] = ACTIONS(2487), + [anon_sym_bit_DASHshr2] = ACTIONS(2487), + [anon_sym_bit_DASHand2] = ACTIONS(2487), + [anon_sym_bit_DASHxor2] = ACTIONS(2487), + [anon_sym_bit_DASHor2] = ACTIONS(2487), + [anon_sym_COLON2] = ACTIONS(2487), + [anon_sym_err_GT] = ACTIONS(2489), + [anon_sym_out_GT] = ACTIONS(2489), + [anon_sym_e_GT] = ACTIONS(2489), + [anon_sym_o_GT] = ACTIONS(2489), + [anon_sym_err_PLUSout_GT] = ACTIONS(2489), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2489), + [anon_sym_o_PLUSe_GT] = ACTIONS(2489), + [anon_sym_e_PLUSo_GT] = ACTIONS(2489), + [anon_sym_err_GT_GT] = ACTIONS(2487), + [anon_sym_out_GT_GT] = ACTIONS(2487), + [anon_sym_e_GT_GT] = ACTIONS(2487), + [anon_sym_o_GT_GT] = ACTIONS(2487), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2487), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2487), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2487), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2487), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(863)] = { - [aux_sym__repeat_newline] = STATE(1107), - [sym__expr_parenthesized_immediate] = STATE(4634), - [sym_comment] = STATE(863), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [STATE(851)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(1148), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(671), + [sym__unquoted_with_expr] = STATE(959), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(851), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1920), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1930), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(864)] = { - [sym_cell_path] = STATE(1274), - [sym_path] = STATE(783), - [sym_comment] = STATE(864), - [aux_sym__where_predicate_lhs_repeat1] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [sym__newline] = ACTIONS(1866), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_err_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_GT_PIPE] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), - [anon_sym_GT2] = ACTIONS(1868), - [anon_sym_DASH2] = ACTIONS(1866), - [anon_sym_STAR2] = ACTIONS(1868), - [anon_sym_and2] = ACTIONS(1866), - [anon_sym_xor2] = ACTIONS(1866), - [anon_sym_or2] = ACTIONS(1866), - [anon_sym_not_DASHin2] = ACTIONS(1866), - [anon_sym_has2] = ACTIONS(1866), - [anon_sym_not_DASHhas2] = ACTIONS(1866), - [anon_sym_starts_DASHwith2] = ACTIONS(1866), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1866), - [anon_sym_ends_DASHwith2] = ACTIONS(1866), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1866), - [anon_sym_EQ_EQ2] = ACTIONS(1866), - [anon_sym_BANG_EQ2] = ACTIONS(1866), - [anon_sym_LT2] = ACTIONS(1868), - [anon_sym_LT_EQ2] = ACTIONS(1866), - [anon_sym_GT_EQ2] = ACTIONS(1866), - [anon_sym_EQ_TILDE2] = ACTIONS(1866), - [anon_sym_BANG_TILDE2] = ACTIONS(1866), - [anon_sym_like2] = ACTIONS(1866), - [anon_sym_not_DASHlike2] = ACTIONS(1866), - [anon_sym_STAR_STAR2] = ACTIONS(1866), - [anon_sym_PLUS_PLUS2] = ACTIONS(1866), - [anon_sym_SLASH2] = ACTIONS(1868), - [anon_sym_mod2] = ACTIONS(1866), - [anon_sym_SLASH_SLASH2] = ACTIONS(1866), - [anon_sym_PLUS2] = ACTIONS(1868), - [anon_sym_bit_DASHshl2] = ACTIONS(1866), - [anon_sym_bit_DASHshr2] = ACTIONS(1866), - [anon_sym_bit_DASHand2] = ACTIONS(1866), - [anon_sym_bit_DASHxor2] = ACTIONS(1866), - [anon_sym_bit_DASHor2] = ACTIONS(1866), - [anon_sym_DOT2] = ACTIONS(2266), - [anon_sym_err_GT] = ACTIONS(1868), - [anon_sym_out_GT] = ACTIONS(1868), - [anon_sym_e_GT] = ACTIONS(1868), - [anon_sym_o_GT] = ACTIONS(1868), - [anon_sym_err_PLUSout_GT] = ACTIONS(1868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1868), - [anon_sym_o_PLUSe_GT] = ACTIONS(1868), - [anon_sym_e_PLUSo_GT] = ACTIONS(1868), - [anon_sym_err_GT_GT] = ACTIONS(1866), - [anon_sym_out_GT_GT] = ACTIONS(1866), - [anon_sym_e_GT_GT] = ACTIONS(1866), - [anon_sym_o_GT_GT] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), + [STATE(852)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(1149), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(711), + [sym__unquoted_with_expr] = STATE(962), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(852), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1920), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1930), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(865)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1665), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(707), - [sym__unquoted_with_expr] = STATE(900), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(865), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(853)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(1150), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(692), + [sym__unquoted_with_expr] = STATE(896), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(853), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(866)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1666), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(708), - [sym__unquoted_with_expr] = STATE(901), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(866), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(854)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(1151), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(693), + [sym__unquoted_with_expr] = STATE(897), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(854), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(867)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1667), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(711), - [sym__unquoted_with_expr] = STATE(902), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(867), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(855)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(1230), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(694), + [sym__unquoted_with_expr] = STATE(898), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(855), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(868)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1668), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(686), - [sym__unquoted_with_expr] = STATE(903), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(868), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(856)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(1231), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(695), + [sym__unquoted_with_expr] = STATE(902), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(856), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(869)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1669), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(682), - [sym__unquoted_with_expr] = STATE(906), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(869), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(857)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(1236), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(697), + [sym__unquoted_with_expr] = STATE(904), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(857), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(870)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1670), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(683), - [sym__unquoted_with_expr] = STATE(909), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(870), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(858)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(1237), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(698), + [sym__unquoted_with_expr] = STATE(906), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(858), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(871)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1671), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(677), - [sym__unquoted_with_expr] = STATE(910), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(871), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(859)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(907), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(699), + [sym__unquoted_with_expr] = STATE(895), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(859), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(872)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1672), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(679), + [STATE(860)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(1255), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(700), [sym__unquoted_with_expr] = STATE(911), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(872), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(860), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(873)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(913), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(681), - [sym__unquoted_with_expr] = STATE(914), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(873), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(861)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(1207), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(701), + [sym__unquoted_with_expr] = STATE(913), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(861), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(874)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1673), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(687), + [STATE(862)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(1137), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(702), [sym__unquoted_with_expr] = STATE(915), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(874), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(862), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(875)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1674), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(688), + [STATE(863)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(1130), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(914), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(450), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(703), [sym__unquoted_with_expr] = STATE(917), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(875), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(863), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1918), + [aux_sym_cmd_identifier_token4] = ACTIONS(1918), + [aux_sym_cmd_identifier_token5] = ACTIONS(1918), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1920), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), + [anon_sym_DOT_DOT_LT] = ACTIONS(1922), + [aux_sym__val_number_decimal_token1] = ACTIONS(1924), + [aux_sym__val_number_decimal_token2] = ACTIONS(1926), + [aux_sym__val_number_decimal_token3] = ACTIONS(1928), + [aux_sym__val_number_decimal_token4] = ACTIONS(1928), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1930), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(876)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1675), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(689), - [sym__unquoted_with_expr] = STATE(919), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(876), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(864)] = { + [sym_comment] = STATE(864), + [anon_sym_in] = ACTIONS(2491), + [sym__newline] = ACTIONS(2491), + [anon_sym_SEMI] = ACTIONS(2491), + [anon_sym_PIPE] = ACTIONS(2491), + [anon_sym_err_GT_PIPE] = ACTIONS(2491), + [anon_sym_out_GT_PIPE] = ACTIONS(2491), + [anon_sym_e_GT_PIPE] = ACTIONS(2491), + [anon_sym_o_GT_PIPE] = ACTIONS(2491), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2491), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2491), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2491), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2491), + [anon_sym_RPAREN] = ACTIONS(2491), + [anon_sym_GT2] = ACTIONS(2493), + [anon_sym_DASH2] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_RBRACE] = ACTIONS(2491), + [anon_sym_EQ_GT] = ACTIONS(2491), + [anon_sym_STAR2] = ACTIONS(2493), + [anon_sym_and2] = ACTIONS(2491), + [anon_sym_xor2] = ACTIONS(2491), + [anon_sym_or2] = ACTIONS(2491), + [anon_sym_not_DASHin2] = ACTIONS(2491), + [anon_sym_has2] = ACTIONS(2491), + [anon_sym_not_DASHhas2] = ACTIONS(2491), + [anon_sym_starts_DASHwith2] = ACTIONS(2491), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2491), + [anon_sym_ends_DASHwith2] = ACTIONS(2491), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2491), + [anon_sym_EQ_EQ2] = ACTIONS(2491), + [anon_sym_BANG_EQ2] = ACTIONS(2491), + [anon_sym_LT2] = ACTIONS(2493), + [anon_sym_LT_EQ2] = ACTIONS(2491), + [anon_sym_GT_EQ2] = ACTIONS(2491), + [anon_sym_EQ_TILDE2] = ACTIONS(2491), + [anon_sym_BANG_TILDE2] = ACTIONS(2491), + [anon_sym_like2] = ACTIONS(2491), + [anon_sym_not_DASHlike2] = ACTIONS(2491), + [anon_sym_STAR_STAR2] = ACTIONS(2491), + [anon_sym_PLUS_PLUS2] = ACTIONS(2491), + [anon_sym_SLASH2] = ACTIONS(2493), + [anon_sym_mod2] = ACTIONS(2491), + [anon_sym_SLASH_SLASH2] = ACTIONS(2491), + [anon_sym_PLUS2] = ACTIONS(2493), + [anon_sym_bit_DASHshl2] = ACTIONS(2491), + [anon_sym_bit_DASHshr2] = ACTIONS(2491), + [anon_sym_bit_DASHand2] = ACTIONS(2491), + [anon_sym_bit_DASHxor2] = ACTIONS(2491), + [anon_sym_bit_DASHor2] = ACTIONS(2491), + [anon_sym_COLON2] = ACTIONS(2491), + [anon_sym_err_GT] = ACTIONS(2493), + [anon_sym_out_GT] = ACTIONS(2493), + [anon_sym_e_GT] = ACTIONS(2493), + [anon_sym_o_GT] = ACTIONS(2493), + [anon_sym_err_PLUSout_GT] = ACTIONS(2493), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2493), + [anon_sym_o_PLUSe_GT] = ACTIONS(2493), + [anon_sym_e_PLUSo_GT] = ACTIONS(2493), + [anon_sym_err_GT_GT] = ACTIONS(2491), + [anon_sym_out_GT_GT] = ACTIONS(2491), + [anon_sym_e_GT_GT] = ACTIONS(2491), + [anon_sym_o_GT_GT] = ACTIONS(2491), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2491), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2491), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2491), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2491), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(865)] = { + [sym_comment] = STATE(865), + [anon_sym_in] = ACTIONS(2495), + [sym__newline] = ACTIONS(2495), + [anon_sym_SEMI] = ACTIONS(2495), + [anon_sym_PIPE] = ACTIONS(2495), + [anon_sym_err_GT_PIPE] = ACTIONS(2495), + [anon_sym_out_GT_PIPE] = ACTIONS(2495), + [anon_sym_e_GT_PIPE] = ACTIONS(2495), + [anon_sym_o_GT_PIPE] = ACTIONS(2495), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2495), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2495), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2495), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2495), + [anon_sym_RPAREN] = ACTIONS(2495), + [anon_sym_GT2] = ACTIONS(2497), + [anon_sym_DASH2] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_RBRACE] = ACTIONS(2495), + [anon_sym_EQ_GT] = ACTIONS(2495), + [anon_sym_STAR2] = ACTIONS(2497), + [anon_sym_and2] = ACTIONS(2495), + [anon_sym_xor2] = ACTIONS(2495), + [anon_sym_or2] = ACTIONS(2495), + [anon_sym_not_DASHin2] = ACTIONS(2495), + [anon_sym_has2] = ACTIONS(2495), + [anon_sym_not_DASHhas2] = ACTIONS(2495), + [anon_sym_starts_DASHwith2] = ACTIONS(2495), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2495), + [anon_sym_ends_DASHwith2] = ACTIONS(2495), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2495), + [anon_sym_EQ_EQ2] = ACTIONS(2495), + [anon_sym_BANG_EQ2] = ACTIONS(2495), + [anon_sym_LT2] = ACTIONS(2497), + [anon_sym_LT_EQ2] = ACTIONS(2495), + [anon_sym_GT_EQ2] = ACTIONS(2495), + [anon_sym_EQ_TILDE2] = ACTIONS(2495), + [anon_sym_BANG_TILDE2] = ACTIONS(2495), + [anon_sym_like2] = ACTIONS(2495), + [anon_sym_not_DASHlike2] = ACTIONS(2495), + [anon_sym_STAR_STAR2] = ACTIONS(2495), + [anon_sym_PLUS_PLUS2] = ACTIONS(2495), + [anon_sym_SLASH2] = ACTIONS(2497), + [anon_sym_mod2] = ACTIONS(2495), + [anon_sym_SLASH_SLASH2] = ACTIONS(2495), + [anon_sym_PLUS2] = ACTIONS(2497), + [anon_sym_bit_DASHshl2] = ACTIONS(2495), + [anon_sym_bit_DASHshr2] = ACTIONS(2495), + [anon_sym_bit_DASHand2] = ACTIONS(2495), + [anon_sym_bit_DASHxor2] = ACTIONS(2495), + [anon_sym_bit_DASHor2] = ACTIONS(2495), + [anon_sym_COLON2] = ACTIONS(2495), + [anon_sym_err_GT] = ACTIONS(2497), + [anon_sym_out_GT] = ACTIONS(2497), + [anon_sym_e_GT] = ACTIONS(2497), + [anon_sym_o_GT] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT] = ACTIONS(2497), + [anon_sym_err_GT_GT] = ACTIONS(2495), + [anon_sym_out_GT_GT] = ACTIONS(2495), + [anon_sym_e_GT_GT] = ACTIONS(2495), + [anon_sym_o_GT_GT] = ACTIONS(2495), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2495), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2495), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2495), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2495), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(866)] = { + [aux_sym__repeat_newline] = STATE(1119), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(866), + [anon_sym_in] = ACTIONS(2499), + [sym__newline] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_PIPE] = ACTIONS(2499), + [anon_sym_err_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_GT_PIPE] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2499), + [anon_sym_GT2] = ACTIONS(2501), + [anon_sym_DASH2] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_STAR2] = ACTIONS(2501), + [anon_sym_and2] = ACTIONS(2499), + [anon_sym_xor2] = ACTIONS(2499), + [anon_sym_or2] = ACTIONS(2499), + [anon_sym_not_DASHin2] = ACTIONS(2499), + [anon_sym_has2] = ACTIONS(2499), + [anon_sym_not_DASHhas2] = ACTIONS(2499), + [anon_sym_starts_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), + [anon_sym_ends_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), + [anon_sym_EQ_EQ2] = ACTIONS(2499), + [anon_sym_BANG_EQ2] = ACTIONS(2499), + [anon_sym_LT2] = ACTIONS(2501), + [anon_sym_LT_EQ2] = ACTIONS(2499), + [anon_sym_GT_EQ2] = ACTIONS(2499), + [anon_sym_EQ_TILDE2] = ACTIONS(2499), + [anon_sym_BANG_TILDE2] = ACTIONS(2499), + [anon_sym_like2] = ACTIONS(2499), + [anon_sym_not_DASHlike2] = ACTIONS(2499), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2499), + [anon_sym_PLUS_PLUS2] = ACTIONS(2499), + [anon_sym_SLASH2] = ACTIONS(2501), + [anon_sym_mod2] = ACTIONS(2499), + [anon_sym_SLASH_SLASH2] = ACTIONS(2499), + [anon_sym_PLUS2] = ACTIONS(2501), + [anon_sym_bit_DASHshl2] = ACTIONS(2499), + [anon_sym_bit_DASHshr2] = ACTIONS(2499), + [anon_sym_bit_DASHand2] = ACTIONS(2499), + [anon_sym_bit_DASHxor2] = ACTIONS(2499), + [anon_sym_bit_DASHor2] = ACTIONS(2499), + [anon_sym_err_GT] = ACTIONS(2501), + [anon_sym_out_GT] = ACTIONS(2501), + [anon_sym_e_GT] = ACTIONS(2501), + [anon_sym_o_GT] = ACTIONS(2501), + [anon_sym_err_PLUSout_GT] = ACTIONS(2501), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), + [anon_sym_o_PLUSe_GT] = ACTIONS(2501), + [anon_sym_e_PLUSo_GT] = ACTIONS(2501), + [anon_sym_err_GT_GT] = ACTIONS(2499), + [anon_sym_out_GT_GT] = ACTIONS(2499), + [anon_sym_e_GT_GT] = ACTIONS(2499), + [anon_sym_o_GT_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(867)] = { + [aux_sym__repeat_newline] = STATE(1120), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(867), + [anon_sym_in] = ACTIONS(2499), + [sym__newline] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_PIPE] = ACTIONS(2499), + [anon_sym_err_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_GT_PIPE] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2499), + [anon_sym_GT2] = ACTIONS(2501), + [anon_sym_DASH2] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_STAR2] = ACTIONS(2501), + [anon_sym_and2] = ACTIONS(2499), + [anon_sym_xor2] = ACTIONS(2499), + [anon_sym_or2] = ACTIONS(2499), + [anon_sym_not_DASHin2] = ACTIONS(2499), + [anon_sym_has2] = ACTIONS(2499), + [anon_sym_not_DASHhas2] = ACTIONS(2499), + [anon_sym_starts_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), + [anon_sym_ends_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), + [anon_sym_EQ_EQ2] = ACTIONS(2499), + [anon_sym_BANG_EQ2] = ACTIONS(2499), + [anon_sym_LT2] = ACTIONS(2501), + [anon_sym_LT_EQ2] = ACTIONS(2499), + [anon_sym_GT_EQ2] = ACTIONS(2499), + [anon_sym_EQ_TILDE2] = ACTIONS(2499), + [anon_sym_BANG_TILDE2] = ACTIONS(2499), + [anon_sym_like2] = ACTIONS(2499), + [anon_sym_not_DASHlike2] = ACTIONS(2499), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2499), + [anon_sym_PLUS_PLUS2] = ACTIONS(2499), + [anon_sym_SLASH2] = ACTIONS(2501), + [anon_sym_mod2] = ACTIONS(2499), + [anon_sym_SLASH_SLASH2] = ACTIONS(2499), + [anon_sym_PLUS2] = ACTIONS(2501), + [anon_sym_bit_DASHshl2] = ACTIONS(2499), + [anon_sym_bit_DASHshr2] = ACTIONS(2499), + [anon_sym_bit_DASHand2] = ACTIONS(2499), + [anon_sym_bit_DASHxor2] = ACTIONS(2499), + [anon_sym_bit_DASHor2] = ACTIONS(2499), + [anon_sym_err_GT] = ACTIONS(2501), + [anon_sym_out_GT] = ACTIONS(2501), + [anon_sym_e_GT] = ACTIONS(2501), + [anon_sym_o_GT] = ACTIONS(2501), + [anon_sym_err_PLUSout_GT] = ACTIONS(2501), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), + [anon_sym_o_PLUSe_GT] = ACTIONS(2501), + [anon_sym_e_PLUSo_GT] = ACTIONS(2501), + [anon_sym_err_GT_GT] = ACTIONS(2499), + [anon_sym_out_GT_GT] = ACTIONS(2499), + [anon_sym_e_GT_GT] = ACTIONS(2499), + [anon_sym_o_GT_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(868)] = { + [aux_sym__repeat_newline] = STATE(1121), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(868), + [anon_sym_in] = ACTIONS(2499), + [sym__newline] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_PIPE] = ACTIONS(2499), + [anon_sym_err_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_GT_PIPE] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2499), + [anon_sym_GT2] = ACTIONS(2501), + [anon_sym_DASH2] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_STAR2] = ACTIONS(2501), + [anon_sym_and2] = ACTIONS(2499), + [anon_sym_xor2] = ACTIONS(2499), + [anon_sym_or2] = ACTIONS(2499), + [anon_sym_not_DASHin2] = ACTIONS(2499), + [anon_sym_has2] = ACTIONS(2499), + [anon_sym_not_DASHhas2] = ACTIONS(2499), + [anon_sym_starts_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), + [anon_sym_ends_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), + [anon_sym_EQ_EQ2] = ACTIONS(2499), + [anon_sym_BANG_EQ2] = ACTIONS(2499), + [anon_sym_LT2] = ACTIONS(2501), + [anon_sym_LT_EQ2] = ACTIONS(2499), + [anon_sym_GT_EQ2] = ACTIONS(2499), + [anon_sym_EQ_TILDE2] = ACTIONS(2499), + [anon_sym_BANG_TILDE2] = ACTIONS(2499), + [anon_sym_like2] = ACTIONS(2499), + [anon_sym_not_DASHlike2] = ACTIONS(2499), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2499), + [anon_sym_PLUS_PLUS2] = ACTIONS(2499), + [anon_sym_SLASH2] = ACTIONS(2501), + [anon_sym_mod2] = ACTIONS(2499), + [anon_sym_SLASH_SLASH2] = ACTIONS(2499), + [anon_sym_PLUS2] = ACTIONS(2501), + [anon_sym_bit_DASHshl2] = ACTIONS(2499), + [anon_sym_bit_DASHshr2] = ACTIONS(2499), + [anon_sym_bit_DASHand2] = ACTIONS(2499), + [anon_sym_bit_DASHxor2] = ACTIONS(2499), + [anon_sym_bit_DASHor2] = ACTIONS(2499), + [anon_sym_err_GT] = ACTIONS(2501), + [anon_sym_out_GT] = ACTIONS(2501), + [anon_sym_e_GT] = ACTIONS(2501), + [anon_sym_o_GT] = ACTIONS(2501), + [anon_sym_err_PLUSout_GT] = ACTIONS(2501), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), + [anon_sym_o_PLUSe_GT] = ACTIONS(2501), + [anon_sym_e_PLUSo_GT] = ACTIONS(2501), + [anon_sym_err_GT_GT] = ACTIONS(2499), + [anon_sym_out_GT_GT] = ACTIONS(2499), + [anon_sym_e_GT_GT] = ACTIONS(2499), + [anon_sym_o_GT_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(869)] = { + [aux_sym__repeat_newline] = STATE(1123), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(869), + [anon_sym_in] = ACTIONS(2499), + [sym__newline] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_PIPE] = ACTIONS(2499), + [anon_sym_err_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_GT_PIPE] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2499), + [anon_sym_GT2] = ACTIONS(2501), + [anon_sym_DASH2] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_STAR2] = ACTIONS(2501), + [anon_sym_and2] = ACTIONS(2499), + [anon_sym_xor2] = ACTIONS(2499), + [anon_sym_or2] = ACTIONS(2499), + [anon_sym_not_DASHin2] = ACTIONS(2499), + [anon_sym_has2] = ACTIONS(2499), + [anon_sym_not_DASHhas2] = ACTIONS(2499), + [anon_sym_starts_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), + [anon_sym_ends_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), + [anon_sym_EQ_EQ2] = ACTIONS(2499), + [anon_sym_BANG_EQ2] = ACTIONS(2499), + [anon_sym_LT2] = ACTIONS(2501), + [anon_sym_LT_EQ2] = ACTIONS(2499), + [anon_sym_GT_EQ2] = ACTIONS(2499), + [anon_sym_EQ_TILDE2] = ACTIONS(2499), + [anon_sym_BANG_TILDE2] = ACTIONS(2499), + [anon_sym_like2] = ACTIONS(2499), + [anon_sym_not_DASHlike2] = ACTIONS(2499), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2499), + [anon_sym_PLUS_PLUS2] = ACTIONS(2499), + [anon_sym_SLASH2] = ACTIONS(2501), + [anon_sym_mod2] = ACTIONS(2499), + [anon_sym_SLASH_SLASH2] = ACTIONS(2499), + [anon_sym_PLUS2] = ACTIONS(2501), + [anon_sym_bit_DASHshl2] = ACTIONS(2499), + [anon_sym_bit_DASHshr2] = ACTIONS(2499), + [anon_sym_bit_DASHand2] = ACTIONS(2499), + [anon_sym_bit_DASHxor2] = ACTIONS(2499), + [anon_sym_bit_DASHor2] = ACTIONS(2499), + [anon_sym_err_GT] = ACTIONS(2501), + [anon_sym_out_GT] = ACTIONS(2501), + [anon_sym_e_GT] = ACTIONS(2501), + [anon_sym_o_GT] = ACTIONS(2501), + [anon_sym_err_PLUSout_GT] = ACTIONS(2501), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), + [anon_sym_o_PLUSe_GT] = ACTIONS(2501), + [anon_sym_e_PLUSo_GT] = ACTIONS(2501), + [anon_sym_err_GT_GT] = ACTIONS(2499), + [anon_sym_out_GT_GT] = ACTIONS(2499), + [anon_sym_e_GT_GT] = ACTIONS(2499), + [anon_sym_o_GT_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(870)] = { + [aux_sym__repeat_newline] = STATE(1124), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(870), + [anon_sym_in] = ACTIONS(2499), + [sym__newline] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_PIPE] = ACTIONS(2499), + [anon_sym_err_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_GT_PIPE] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2499), + [anon_sym_GT2] = ACTIONS(2501), + [anon_sym_DASH2] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_STAR2] = ACTIONS(2501), + [anon_sym_and2] = ACTIONS(2499), + [anon_sym_xor2] = ACTIONS(2499), + [anon_sym_or2] = ACTIONS(2499), + [anon_sym_not_DASHin2] = ACTIONS(2499), + [anon_sym_has2] = ACTIONS(2499), + [anon_sym_not_DASHhas2] = ACTIONS(2499), + [anon_sym_starts_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), + [anon_sym_ends_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), + [anon_sym_EQ_EQ2] = ACTIONS(2499), + [anon_sym_BANG_EQ2] = ACTIONS(2499), + [anon_sym_LT2] = ACTIONS(2501), + [anon_sym_LT_EQ2] = ACTIONS(2499), + [anon_sym_GT_EQ2] = ACTIONS(2499), + [anon_sym_EQ_TILDE2] = ACTIONS(2499), + [anon_sym_BANG_TILDE2] = ACTIONS(2499), + [anon_sym_like2] = ACTIONS(2499), + [anon_sym_not_DASHlike2] = ACTIONS(2499), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2499), + [anon_sym_PLUS_PLUS2] = ACTIONS(2499), + [anon_sym_SLASH2] = ACTIONS(2501), + [anon_sym_mod2] = ACTIONS(2499), + [anon_sym_SLASH_SLASH2] = ACTIONS(2499), + [anon_sym_PLUS2] = ACTIONS(2501), + [anon_sym_bit_DASHshl2] = ACTIONS(2499), + [anon_sym_bit_DASHshr2] = ACTIONS(2499), + [anon_sym_bit_DASHand2] = ACTIONS(2499), + [anon_sym_bit_DASHxor2] = ACTIONS(2499), + [anon_sym_bit_DASHor2] = ACTIONS(2499), + [anon_sym_err_GT] = ACTIONS(2501), + [anon_sym_out_GT] = ACTIONS(2501), + [anon_sym_e_GT] = ACTIONS(2501), + [anon_sym_o_GT] = ACTIONS(2501), + [anon_sym_err_PLUSout_GT] = ACTIONS(2501), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), + [anon_sym_o_PLUSe_GT] = ACTIONS(2501), + [anon_sym_e_PLUSo_GT] = ACTIONS(2501), + [anon_sym_err_GT_GT] = ACTIONS(2499), + [anon_sym_out_GT_GT] = ACTIONS(2499), + [anon_sym_e_GT_GT] = ACTIONS(2499), + [anon_sym_o_GT_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(871)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(1617), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(671), + [sym__unquoted_with_expr] = STATE(959), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(871), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(877)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(1676), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1460), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1406), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(690), - [sym__unquoted_with_expr] = STATE(922), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(877), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1898), - [aux_sym_cmd_identifier_token4] = ACTIONS(1898), - [aux_sym_cmd_identifier_token5] = ACTIONS(1898), + [STATE(872)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(1618), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(711), + [sym__unquoted_with_expr] = STATE(962), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(872), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1904), - [anon_sym_DOT_DOT_LT] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1906), - [aux_sym__val_number_decimal_token2] = ACTIONS(1908), - [aux_sym__val_number_decimal_token3] = ACTIONS(1910), - [aux_sym__val_number_decimal_token4] = ACTIONS(1910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1912), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(878)] = { - [sym_cmd_identifier] = STATE(4167), - [sym_expr_parenthesized] = STATE(5186), - [sym__spread_parenthesized] = STATE(4688), - [sym__spread_variable] = STATE(4697), - [sym_val_variable] = STATE(5186), - [sym_val_number] = STATE(5186), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(5186), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(5186), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4688), - [sym_record_entry] = STATE(4517), - [sym__record_key] = STATE(4982), - [sym_comment] = STATE(878), - [aux_sym_record_body_repeat1] = STATE(879), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [STATE(873)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(1619), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(692), + [sym__unquoted_with_expr] = STATE(896), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(873), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(879)] = { - [sym_cmd_identifier] = STATE(4167), - [sym_expr_parenthesized] = STATE(5186), - [sym__spread_parenthesized] = STATE(4688), - [sym__spread_variable] = STATE(4697), - [sym_val_variable] = STATE(5186), - [sym_val_number] = STATE(5186), - [sym__val_number_decimal] = STATE(1937), - [sym__val_number] = STATE(694), - [sym_val_string] = STATE(5186), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(5186), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym__spread_record] = STATE(4688), - [sym_record_entry] = STATE(4722), - [sym__record_key] = STATE(4982), - [sym_comment] = STATE(879), - [aux_sym_record_body_repeat1] = STATE(879), - [anon_sym_export] = ACTIONS(2422), - [anon_sym_alias] = ACTIONS(2425), - [anon_sym_let] = ACTIONS(2425), - [anon_sym_mut] = ACTIONS(2425), - [anon_sym_const] = ACTIONS(2425), - [aux_sym_cmd_identifier_token1] = ACTIONS(2428), - [anon_sym_def] = ACTIONS(2425), - [anon_sym_use] = ACTIONS(2425), - [anon_sym_export_DASHenv] = ACTIONS(2425), - [anon_sym_extern] = ACTIONS(2425), - [anon_sym_module] = ACTIONS(2425), - [anon_sym_for] = ACTIONS(2425), - [anon_sym_loop] = ACTIONS(2425), - [anon_sym_while] = ACTIONS(2425), - [anon_sym_if] = ACTIONS(2425), - [anon_sym_else] = ACTIONS(2425), - [anon_sym_try] = ACTIONS(2425), - [anon_sym_catch] = ACTIONS(2425), - [anon_sym_match] = ACTIONS(2425), - [anon_sym_in] = ACTIONS(2422), - [anon_sym_true] = ACTIONS(2431), - [anon_sym_false] = ACTIONS(2431), - [anon_sym_null] = ACTIONS(2431), - [aux_sym_cmd_identifier_token3] = ACTIONS(2434), - [aux_sym_cmd_identifier_token4] = ACTIONS(2434), - [aux_sym_cmd_identifier_token5] = ACTIONS(2434), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2440), - [anon_sym_DASH2] = ACTIONS(2443), - [anon_sym_PLUS2] = ACTIONS(2443), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2446), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2449), - [aux_sym__val_number_decimal_token1] = ACTIONS(2452), - [aux_sym__val_number_decimal_token2] = ACTIONS(2455), - [aux_sym__val_number_decimal_token3] = ACTIONS(2458), - [aux_sym__val_number_decimal_token4] = ACTIONS(2458), - [aux_sym__val_number_token1] = ACTIONS(2461), - [aux_sym__val_number_token2] = ACTIONS(2461), - [aux_sym__val_number_token3] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2464), - [anon_sym_SQUOTE] = ACTIONS(2467), - [anon_sym_BQUOTE] = ACTIONS(2470), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2473), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2476), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2479), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2482), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(880)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2185), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(677), - [sym__unquoted_with_expr] = STATE(910), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(880), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [STATE(874)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(1620), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(693), + [sym__unquoted_with_expr] = STATE(897), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(874), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(881)] = { - [aux_sym__repeat_newline] = STATE(3365), - [aux_sym__pipe_separator] = STATE(885), - [sym_comment] = STATE(881), - [anon_sym_export] = ACTIONS(2485), - [anon_sym_alias] = ACTIONS(2487), - [anon_sym_let] = ACTIONS(2487), - [anon_sym_mut] = ACTIONS(2487), - [anon_sym_const] = ACTIONS(2487), - [aux_sym_cmd_identifier_token1] = ACTIONS(2485), - [anon_sym_def] = ACTIONS(2487), - [anon_sym_use] = ACTIONS(2487), - [anon_sym_export_DASHenv] = ACTIONS(2487), - [anon_sym_extern] = ACTIONS(2487), - [anon_sym_module] = ACTIONS(2487), - [anon_sym_for] = ACTIONS(2487), - [anon_sym_loop] = ACTIONS(2487), - [anon_sym_while] = ACTIONS(2487), - [anon_sym_if] = ACTIONS(2487), - [anon_sym_else] = ACTIONS(2487), - [anon_sym_try] = ACTIONS(2487), - [anon_sym_catch] = ACTIONS(2487), - [anon_sym_match] = ACTIONS(2487), - [anon_sym_in] = ACTIONS(2485), - [anon_sym_true] = ACTIONS(2487), - [anon_sym_false] = ACTIONS(2487), - [anon_sym_null] = ACTIONS(2487), - [aux_sym_cmd_identifier_token3] = ACTIONS(2487), - [aux_sym_cmd_identifier_token4] = ACTIONS(2487), - [aux_sym_cmd_identifier_token5] = ACTIONS(2487), - [sym__newline] = ACTIONS(2489), - [anon_sym_PIPE] = ACTIONS(2303), - [anon_sym_err_GT_PIPE] = ACTIONS(2303), - [anon_sym_out_GT_PIPE] = ACTIONS(2303), - [anon_sym_e_GT_PIPE] = ACTIONS(2303), - [anon_sym_o_GT_PIPE] = ACTIONS(2303), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2303), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2303), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2303), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2303), - [anon_sym_LBRACK] = ACTIONS(2487), - [anon_sym_LPAREN] = ACTIONS(2487), - [anon_sym_DOLLAR] = ACTIONS(2485), - [anon_sym_DASH2] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2485), - [anon_sym_where] = ACTIONS(2487), - [aux_sym_expr_unary_token1] = ACTIONS(2487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2487), - [anon_sym_DOT_DOT_LT] = ACTIONS(2487), - [aux_sym__val_number_decimal_token1] = ACTIONS(2485), - [aux_sym__val_number_decimal_token2] = ACTIONS(2487), - [aux_sym__val_number_decimal_token3] = ACTIONS(2487), - [aux_sym__val_number_decimal_token4] = ACTIONS(2487), - [aux_sym__val_number_token1] = ACTIONS(2487), - [aux_sym__val_number_token2] = ACTIONS(2487), - [aux_sym__val_number_token3] = ACTIONS(2487), - [anon_sym_0b] = ACTIONS(2485), - [anon_sym_0o] = ACTIONS(2485), - [anon_sym_0x] = ACTIONS(2485), - [sym_val_date] = ACTIONS(2487), - [anon_sym_DQUOTE] = ACTIONS(2487), - [anon_sym_SQUOTE] = ACTIONS(2487), - [anon_sym_BQUOTE] = ACTIONS(2487), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2487), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2487), - [anon_sym_CARET] = ACTIONS(2487), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2487), - }, - [STATE(882)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1323), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4419), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1121), - [sym__unquoted_with_expr] = STATE(1327), - [sym__unquoted_anonymous_prefix] = STATE(4419), - [sym_comment] = STATE(882), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), + [STATE(875)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(1621), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(694), + [sym__unquoted_with_expr] = STATE(898), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(875), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(883)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1330), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4419), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1123), - [sym__unquoted_with_expr] = STATE(1334), - [sym__unquoted_anonymous_prefix] = STATE(4419), - [sym_comment] = STATE(883), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), + [STATE(876)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(1622), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(695), + [sym__unquoted_with_expr] = STATE(902), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(876), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(884)] = { - [sym_expr_unary] = STATE(1322), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_binary] = STATE(1322), - [sym__expr_binary_expression] = STATE(1335), - [sym_expr_parenthesized] = STATE(952), - [sym_val_range] = STATE(1322), - [sym__val_range] = STATE(4419), - [sym__value] = STATE(1322), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(1028), - [sym_val_variable] = STATE(928), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(463), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(1126), - [sym__unquoted_with_expr] = STATE(1317), - [sym__unquoted_anonymous_prefix] = STATE(4419), - [sym_comment] = STATE(884), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2178), - [aux_sym_cmd_identifier_token4] = ACTIONS(2178), - [aux_sym_cmd_identifier_token5] = ACTIONS(2178), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), + [STATE(877)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(1623), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(697), + [sym__unquoted_with_expr] = STATE(904), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(877), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2180), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2188), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(885)] = { - [aux_sym__repeat_newline] = STATE(3365), - [aux_sym__pipe_separator] = STATE(885), - [sym_comment] = STATE(885), - [anon_sym_export] = ACTIONS(2491), - [anon_sym_alias] = ACTIONS(2493), - [anon_sym_let] = ACTIONS(2493), - [anon_sym_mut] = ACTIONS(2493), - [anon_sym_const] = ACTIONS(2493), - [aux_sym_cmd_identifier_token1] = ACTIONS(2491), - [anon_sym_def] = ACTIONS(2493), - [anon_sym_use] = ACTIONS(2493), - [anon_sym_export_DASHenv] = ACTIONS(2493), - [anon_sym_extern] = ACTIONS(2493), - [anon_sym_module] = ACTIONS(2493), - [anon_sym_for] = ACTIONS(2493), - [anon_sym_loop] = ACTIONS(2493), - [anon_sym_while] = ACTIONS(2493), - [anon_sym_if] = ACTIONS(2493), - [anon_sym_else] = ACTIONS(2493), - [anon_sym_try] = ACTIONS(2493), - [anon_sym_catch] = ACTIONS(2493), - [anon_sym_match] = ACTIONS(2493), - [anon_sym_in] = ACTIONS(2491), - [anon_sym_true] = ACTIONS(2493), - [anon_sym_false] = ACTIONS(2493), - [anon_sym_null] = ACTIONS(2493), - [aux_sym_cmd_identifier_token3] = ACTIONS(2493), - [aux_sym_cmd_identifier_token4] = ACTIONS(2493), - [aux_sym_cmd_identifier_token5] = ACTIONS(2493), - [sym__newline] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2498), - [anon_sym_err_GT_PIPE] = ACTIONS(2498), - [anon_sym_out_GT_PIPE] = ACTIONS(2498), - [anon_sym_e_GT_PIPE] = ACTIONS(2498), - [anon_sym_o_GT_PIPE] = ACTIONS(2498), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2498), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2498), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2498), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(2493), - [anon_sym_DOLLAR] = ACTIONS(2491), - [anon_sym_DASH2] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_DOT_DOT] = ACTIONS(2491), - [anon_sym_where] = ACTIONS(2493), - [aux_sym_expr_unary_token1] = ACTIONS(2493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2493), - [anon_sym_DOT_DOT_LT] = ACTIONS(2493), - [aux_sym__val_number_decimal_token1] = ACTIONS(2491), - [aux_sym__val_number_decimal_token2] = ACTIONS(2493), - [aux_sym__val_number_decimal_token3] = ACTIONS(2493), - [aux_sym__val_number_decimal_token4] = ACTIONS(2493), - [aux_sym__val_number_token1] = ACTIONS(2493), - [aux_sym__val_number_token2] = ACTIONS(2493), - [aux_sym__val_number_token3] = ACTIONS(2493), - [anon_sym_0b] = ACTIONS(2491), - [anon_sym_0o] = ACTIONS(2491), - [anon_sym_0x] = ACTIONS(2491), - [sym_val_date] = ACTIONS(2493), - [anon_sym_DQUOTE] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2493), - [anon_sym_BQUOTE] = ACTIONS(2493), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2493), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2493), - [anon_sym_CARET] = ACTIONS(2493), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2493), - }, - [STATE(886)] = { - [sym_comment] = STATE(886), - [anon_sym_in] = ACTIONS(2501), - [sym__newline] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_PIPE] = ACTIONS(2501), - [anon_sym_err_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_GT_PIPE] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2501), - [anon_sym_RPAREN] = ACTIONS(2501), - [anon_sym_GT2] = ACTIONS(2503), - [anon_sym_DASH2] = ACTIONS(2501), - [anon_sym_LBRACE] = ACTIONS(2501), - [anon_sym_RBRACE] = ACTIONS(2501), - [anon_sym_STAR2] = ACTIONS(2503), - [anon_sym_and2] = ACTIONS(2501), - [anon_sym_xor2] = ACTIONS(2501), - [anon_sym_or2] = ACTIONS(2501), - [anon_sym_not_DASHin2] = ACTIONS(2501), - [anon_sym_has2] = ACTIONS(2501), - [anon_sym_not_DASHhas2] = ACTIONS(2501), - [anon_sym_starts_DASHwith2] = ACTIONS(2501), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2501), - [anon_sym_ends_DASHwith2] = ACTIONS(2501), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2501), - [anon_sym_EQ_EQ2] = ACTIONS(2501), - [anon_sym_BANG_EQ2] = ACTIONS(2501), - [anon_sym_LT2] = ACTIONS(2503), - [anon_sym_LT_EQ2] = ACTIONS(2501), - [anon_sym_GT_EQ2] = ACTIONS(2501), - [anon_sym_EQ_TILDE2] = ACTIONS(2501), - [anon_sym_BANG_TILDE2] = ACTIONS(2501), - [anon_sym_like2] = ACTIONS(2501), - [anon_sym_not_DASHlike2] = ACTIONS(2501), - [anon_sym_LPAREN2] = ACTIONS(2501), - [anon_sym_STAR_STAR2] = ACTIONS(2501), - [anon_sym_PLUS_PLUS2] = ACTIONS(2501), - [anon_sym_SLASH2] = ACTIONS(2503), - [anon_sym_mod2] = ACTIONS(2501), - [anon_sym_SLASH_SLASH2] = ACTIONS(2501), - [anon_sym_PLUS2] = ACTIONS(2503), - [anon_sym_bit_DASHshl2] = ACTIONS(2501), - [anon_sym_bit_DASHshr2] = ACTIONS(2501), - [anon_sym_bit_DASHand2] = ACTIONS(2501), - [anon_sym_bit_DASHxor2] = ACTIONS(2501), - [anon_sym_bit_DASHor2] = ACTIONS(2501), - [anon_sym_err_GT] = ACTIONS(2503), - [anon_sym_out_GT] = ACTIONS(2503), - [anon_sym_e_GT] = ACTIONS(2503), - [anon_sym_o_GT] = ACTIONS(2503), - [anon_sym_err_PLUSout_GT] = ACTIONS(2503), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2503), - [anon_sym_o_PLUSe_GT] = ACTIONS(2503), - [anon_sym_e_PLUSo_GT] = ACTIONS(2503), - [anon_sym_err_GT_GT] = ACTIONS(2501), - [anon_sym_out_GT_GT] = ACTIONS(2501), - [anon_sym_e_GT_GT] = ACTIONS(2501), - [anon_sym_o_GT_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2501), - [sym__unquoted_pattern] = ACTIONS(2503), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(887)] = { - [sym_comment] = STATE(887), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_in] = ACTIONS(2505), - [sym__newline] = ACTIONS(2505), - [anon_sym_SEMI] = ACTIONS(2505), - [anon_sym_PIPE] = ACTIONS(2505), - [anon_sym_err_GT_PIPE] = ACTIONS(2505), - [anon_sym_out_GT_PIPE] = ACTIONS(2505), - [anon_sym_e_GT_PIPE] = ACTIONS(2505), - [anon_sym_o_GT_PIPE] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2505), - [anon_sym_RPAREN] = ACTIONS(2505), - [anon_sym_GT2] = ACTIONS(2507), - [anon_sym_DASH2] = ACTIONS(2505), - [anon_sym_LBRACE] = ACTIONS(2505), - [anon_sym_RBRACE] = ACTIONS(2505), - [anon_sym_EQ_GT] = ACTIONS(2505), - [anon_sym_STAR2] = ACTIONS(2507), - [anon_sym_and2] = ACTIONS(2505), - [anon_sym_xor2] = ACTIONS(2505), - [anon_sym_or2] = ACTIONS(2505), - [anon_sym_not_DASHin2] = ACTIONS(2505), - [anon_sym_has2] = ACTIONS(2505), - [anon_sym_not_DASHhas2] = ACTIONS(2505), - [anon_sym_starts_DASHwith2] = ACTIONS(2505), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2505), - [anon_sym_ends_DASHwith2] = ACTIONS(2505), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2505), - [anon_sym_EQ_EQ2] = ACTIONS(2505), - [anon_sym_BANG_EQ2] = ACTIONS(2505), - [anon_sym_LT2] = ACTIONS(2507), - [anon_sym_LT_EQ2] = ACTIONS(2505), - [anon_sym_GT_EQ2] = ACTIONS(2505), - [anon_sym_EQ_TILDE2] = ACTIONS(2505), - [anon_sym_BANG_TILDE2] = ACTIONS(2505), - [anon_sym_like2] = ACTIONS(2505), - [anon_sym_not_DASHlike2] = ACTIONS(2505), - [anon_sym_STAR_STAR2] = ACTIONS(2505), - [anon_sym_PLUS_PLUS2] = ACTIONS(2505), - [anon_sym_SLASH2] = ACTIONS(2507), - [anon_sym_mod2] = ACTIONS(2505), - [anon_sym_SLASH_SLASH2] = ACTIONS(2505), - [anon_sym_PLUS2] = ACTIONS(2507), - [anon_sym_bit_DASHshl2] = ACTIONS(2505), - [anon_sym_bit_DASHshr2] = ACTIONS(2505), - [anon_sym_bit_DASHand2] = ACTIONS(2505), - [anon_sym_bit_DASHxor2] = ACTIONS(2505), - [anon_sym_bit_DASHor2] = ACTIONS(2505), - [anon_sym_err_GT] = ACTIONS(2507), - [anon_sym_out_GT] = ACTIONS(2507), - [anon_sym_e_GT] = ACTIONS(2507), - [anon_sym_o_GT] = ACTIONS(2507), - [anon_sym_err_PLUSout_GT] = ACTIONS(2507), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2507), - [anon_sym_o_PLUSe_GT] = ACTIONS(2507), - [anon_sym_e_PLUSo_GT] = ACTIONS(2507), - [anon_sym_err_GT_GT] = ACTIONS(2505), - [anon_sym_out_GT_GT] = ACTIONS(2505), - [anon_sym_e_GT_GT] = ACTIONS(2505), - [anon_sym_o_GT_GT] = ACTIONS(2505), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2505), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2505), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2505), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2505), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(888)] = { - [sym_comment] = STATE(888), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_in] = ACTIONS(2152), - [sym__newline] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_PIPE] = ACTIONS(2152), - [anon_sym_err_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_GT_PIPE] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2152), - [anon_sym_RPAREN] = ACTIONS(2152), - [anon_sym_GT2] = ACTIONS(2154), - [anon_sym_DASH2] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_EQ_GT] = ACTIONS(2152), - [anon_sym_STAR2] = ACTIONS(2154), - [anon_sym_and2] = ACTIONS(2152), - [anon_sym_xor2] = ACTIONS(2152), - [anon_sym_or2] = ACTIONS(2152), - [anon_sym_not_DASHin2] = ACTIONS(2152), - [anon_sym_has2] = ACTIONS(2152), - [anon_sym_not_DASHhas2] = ACTIONS(2152), - [anon_sym_starts_DASHwith2] = ACTIONS(2152), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2152), - [anon_sym_ends_DASHwith2] = ACTIONS(2152), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2152), - [anon_sym_EQ_EQ2] = ACTIONS(2152), - [anon_sym_BANG_EQ2] = ACTIONS(2152), - [anon_sym_LT2] = ACTIONS(2154), - [anon_sym_LT_EQ2] = ACTIONS(2152), - [anon_sym_GT_EQ2] = ACTIONS(2152), - [anon_sym_EQ_TILDE2] = ACTIONS(2152), - [anon_sym_BANG_TILDE2] = ACTIONS(2152), - [anon_sym_like2] = ACTIONS(2152), - [anon_sym_not_DASHlike2] = ACTIONS(2152), - [anon_sym_STAR_STAR2] = ACTIONS(2152), - [anon_sym_PLUS_PLUS2] = ACTIONS(2152), - [anon_sym_SLASH2] = ACTIONS(2154), - [anon_sym_mod2] = ACTIONS(2152), - [anon_sym_SLASH_SLASH2] = ACTIONS(2152), - [anon_sym_PLUS2] = ACTIONS(2154), - [anon_sym_bit_DASHshl2] = ACTIONS(2152), - [anon_sym_bit_DASHshr2] = ACTIONS(2152), - [anon_sym_bit_DASHand2] = ACTIONS(2152), - [anon_sym_bit_DASHxor2] = ACTIONS(2152), - [anon_sym_bit_DASHor2] = ACTIONS(2152), - [anon_sym_err_GT] = ACTIONS(2154), - [anon_sym_out_GT] = ACTIONS(2154), - [anon_sym_e_GT] = ACTIONS(2154), - [anon_sym_o_GT] = ACTIONS(2154), - [anon_sym_err_PLUSout_GT] = ACTIONS(2154), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2154), - [anon_sym_o_PLUSe_GT] = ACTIONS(2154), - [anon_sym_e_PLUSo_GT] = ACTIONS(2154), - [anon_sym_err_GT_GT] = ACTIONS(2152), - [anon_sym_out_GT_GT] = ACTIONS(2152), - [anon_sym_e_GT_GT] = ACTIONS(2152), - [anon_sym_o_GT_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(889)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2169), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(707), - [sym__unquoted_with_expr] = STATE(900), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(889), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [STATE(878)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(1624), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(698), + [sym__unquoted_with_expr] = STATE(906), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(878), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(890)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2170), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(708), - [sym__unquoted_with_expr] = STATE(901), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(890), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [STATE(879)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(907), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(699), + [sym__unquoted_with_expr] = STATE(895), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(879), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(891)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2172), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(711), - [sym__unquoted_with_expr] = STATE(902), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(891), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [STATE(880)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(1625), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(700), + [sym__unquoted_with_expr] = STATE(911), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(880), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(892)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2175), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(686), - [sym__unquoted_with_expr] = STATE(903), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(892), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [STATE(881)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(1626), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(701), + [sym__unquoted_with_expr] = STATE(913), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(881), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(893)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2177), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(682), - [sym__unquoted_with_expr] = STATE(906), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(893), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [STATE(882)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(1627), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(702), + [sym__unquoted_with_expr] = STATE(915), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(882), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(894)] = { - [sym_expr_unary] = STATE(946), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(946), - [sym__expr_binary_expression] = STATE(2184), - [sym_expr_parenthesized] = STATE(712), - [sym_val_range] = STATE(946), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(946), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(1928), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1718), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(683), - [sym__unquoted_with_expr] = STATE(909), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(894), - [anon_sym_true] = ACTIONS(1916), - [anon_sym_false] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), + [STATE(883)] = { + [sym_expr_unary] = STATE(957), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(957), + [sym__expr_binary_expression] = STATE(1628), + [sym_expr_parenthesized] = STATE(689), + [sym_val_range] = STATE(957), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(957), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(1461), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1402), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(703), + [sym__unquoted_with_expr] = STATE(917), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(883), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1924), - [anon_sym_DOT_DOT_LT] = ACTIONS(1924), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1932), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(884)] = { + [aux_sym__repeat_newline] = STATE(1125), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(884), + [anon_sym_in] = ACTIONS(2499), + [sym__newline] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_PIPE] = ACTIONS(2499), + [anon_sym_err_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_GT_PIPE] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2499), + [anon_sym_GT2] = ACTIONS(2501), + [anon_sym_DASH2] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_STAR2] = ACTIONS(2501), + [anon_sym_and2] = ACTIONS(2499), + [anon_sym_xor2] = ACTIONS(2499), + [anon_sym_or2] = ACTIONS(2499), + [anon_sym_not_DASHin2] = ACTIONS(2499), + [anon_sym_has2] = ACTIONS(2499), + [anon_sym_not_DASHhas2] = ACTIONS(2499), + [anon_sym_starts_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), + [anon_sym_ends_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), + [anon_sym_EQ_EQ2] = ACTIONS(2499), + [anon_sym_BANG_EQ2] = ACTIONS(2499), + [anon_sym_LT2] = ACTIONS(2501), + [anon_sym_LT_EQ2] = ACTIONS(2499), + [anon_sym_GT_EQ2] = ACTIONS(2499), + [anon_sym_EQ_TILDE2] = ACTIONS(2499), + [anon_sym_BANG_TILDE2] = ACTIONS(2499), + [anon_sym_like2] = ACTIONS(2499), + [anon_sym_not_DASHlike2] = ACTIONS(2499), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2499), + [anon_sym_PLUS_PLUS2] = ACTIONS(2499), + [anon_sym_SLASH2] = ACTIONS(2501), + [anon_sym_mod2] = ACTIONS(2499), + [anon_sym_SLASH_SLASH2] = ACTIONS(2499), + [anon_sym_PLUS2] = ACTIONS(2501), + [anon_sym_bit_DASHshl2] = ACTIONS(2499), + [anon_sym_bit_DASHshr2] = ACTIONS(2499), + [anon_sym_bit_DASHand2] = ACTIONS(2499), + [anon_sym_bit_DASHxor2] = ACTIONS(2499), + [anon_sym_bit_DASHor2] = ACTIONS(2499), + [anon_sym_err_GT] = ACTIONS(2501), + [anon_sym_out_GT] = ACTIONS(2501), + [anon_sym_e_GT] = ACTIONS(2501), + [anon_sym_o_GT] = ACTIONS(2501), + [anon_sym_err_PLUSout_GT] = ACTIONS(2501), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), + [anon_sym_o_PLUSe_GT] = ACTIONS(2501), + [anon_sym_e_PLUSo_GT] = ACTIONS(2501), + [anon_sym_err_GT_GT] = ACTIONS(2499), + [anon_sym_out_GT_GT] = ACTIONS(2499), + [anon_sym_e_GT_GT] = ACTIONS(2499), + [anon_sym_o_GT_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(885)] = { + [aux_sym__repeat_newline] = STATE(1126), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(885), + [anon_sym_in] = ACTIONS(2499), + [sym__newline] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_PIPE] = ACTIONS(2499), + [anon_sym_err_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_GT_PIPE] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2499), + [anon_sym_GT2] = ACTIONS(2501), + [anon_sym_DASH2] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_STAR2] = ACTIONS(2501), + [anon_sym_and2] = ACTIONS(2499), + [anon_sym_xor2] = ACTIONS(2499), + [anon_sym_or2] = ACTIONS(2499), + [anon_sym_not_DASHin2] = ACTIONS(2499), + [anon_sym_has2] = ACTIONS(2499), + [anon_sym_not_DASHhas2] = ACTIONS(2499), + [anon_sym_starts_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), + [anon_sym_ends_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), + [anon_sym_EQ_EQ2] = ACTIONS(2499), + [anon_sym_BANG_EQ2] = ACTIONS(2499), + [anon_sym_LT2] = ACTIONS(2501), + [anon_sym_LT_EQ2] = ACTIONS(2499), + [anon_sym_GT_EQ2] = ACTIONS(2499), + [anon_sym_EQ_TILDE2] = ACTIONS(2499), + [anon_sym_BANG_TILDE2] = ACTIONS(2499), + [anon_sym_like2] = ACTIONS(2499), + [anon_sym_not_DASHlike2] = ACTIONS(2499), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2499), + [anon_sym_PLUS_PLUS2] = ACTIONS(2499), + [anon_sym_SLASH2] = ACTIONS(2501), + [anon_sym_mod2] = ACTIONS(2499), + [anon_sym_SLASH_SLASH2] = ACTIONS(2499), + [anon_sym_PLUS2] = ACTIONS(2501), + [anon_sym_bit_DASHshl2] = ACTIONS(2499), + [anon_sym_bit_DASHshr2] = ACTIONS(2499), + [anon_sym_bit_DASHand2] = ACTIONS(2499), + [anon_sym_bit_DASHxor2] = ACTIONS(2499), + [anon_sym_bit_DASHor2] = ACTIONS(2499), + [anon_sym_err_GT] = ACTIONS(2501), + [anon_sym_out_GT] = ACTIONS(2501), + [anon_sym_e_GT] = ACTIONS(2501), + [anon_sym_o_GT] = ACTIONS(2501), + [anon_sym_err_PLUSout_GT] = ACTIONS(2501), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), + [anon_sym_o_PLUSe_GT] = ACTIONS(2501), + [anon_sym_e_PLUSo_GT] = ACTIONS(2501), + [anon_sym_err_GT_GT] = ACTIONS(2499), + [anon_sym_out_GT_GT] = ACTIONS(2499), + [anon_sym_e_GT_GT] = ACTIONS(2499), + [anon_sym_o_GT_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(886)] = { + [aux_sym__repeat_newline] = STATE(1127), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(886), + [anon_sym_in] = ACTIONS(2499), + [sym__newline] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_PIPE] = ACTIONS(2499), + [anon_sym_err_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_GT_PIPE] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2499), + [anon_sym_GT2] = ACTIONS(2501), + [anon_sym_DASH2] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_STAR2] = ACTIONS(2501), + [anon_sym_and2] = ACTIONS(2499), + [anon_sym_xor2] = ACTIONS(2499), + [anon_sym_or2] = ACTIONS(2499), + [anon_sym_not_DASHin2] = ACTIONS(2499), + [anon_sym_has2] = ACTIONS(2499), + [anon_sym_not_DASHhas2] = ACTIONS(2499), + [anon_sym_starts_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), + [anon_sym_ends_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), + [anon_sym_EQ_EQ2] = ACTIONS(2499), + [anon_sym_BANG_EQ2] = ACTIONS(2499), + [anon_sym_LT2] = ACTIONS(2501), + [anon_sym_LT_EQ2] = ACTIONS(2499), + [anon_sym_GT_EQ2] = ACTIONS(2499), + [anon_sym_EQ_TILDE2] = ACTIONS(2499), + [anon_sym_BANG_TILDE2] = ACTIONS(2499), + [anon_sym_like2] = ACTIONS(2499), + [anon_sym_not_DASHlike2] = ACTIONS(2499), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2499), + [anon_sym_PLUS_PLUS2] = ACTIONS(2499), + [anon_sym_SLASH2] = ACTIONS(2501), + [anon_sym_mod2] = ACTIONS(2499), + [anon_sym_SLASH_SLASH2] = ACTIONS(2499), + [anon_sym_PLUS2] = ACTIONS(2501), + [anon_sym_bit_DASHshl2] = ACTIONS(2499), + [anon_sym_bit_DASHshr2] = ACTIONS(2499), + [anon_sym_bit_DASHand2] = ACTIONS(2499), + [anon_sym_bit_DASHxor2] = ACTIONS(2499), + [anon_sym_bit_DASHor2] = ACTIONS(2499), + [anon_sym_err_GT] = ACTIONS(2501), + [anon_sym_out_GT] = ACTIONS(2501), + [anon_sym_e_GT] = ACTIONS(2501), + [anon_sym_o_GT] = ACTIONS(2501), + [anon_sym_err_PLUSout_GT] = ACTIONS(2501), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), + [anon_sym_o_PLUSe_GT] = ACTIONS(2501), + [anon_sym_e_PLUSo_GT] = ACTIONS(2501), + [anon_sym_err_GT_GT] = ACTIONS(2499), + [anon_sym_out_GT_GT] = ACTIONS(2499), + [anon_sym_e_GT_GT] = ACTIONS(2499), + [anon_sym_o_GT_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(887)] = { + [aux_sym__repeat_newline] = STATE(1122), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(887), + [anon_sym_in] = ACTIONS(2499), + [sym__newline] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_PIPE] = ACTIONS(2499), + [anon_sym_err_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_GT_PIPE] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2499), + [anon_sym_GT2] = ACTIONS(2501), + [anon_sym_DASH2] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_STAR2] = ACTIONS(2501), + [anon_sym_and2] = ACTIONS(2499), + [anon_sym_xor2] = ACTIONS(2499), + [anon_sym_or2] = ACTIONS(2499), + [anon_sym_not_DASHin2] = ACTIONS(2499), + [anon_sym_has2] = ACTIONS(2499), + [anon_sym_not_DASHhas2] = ACTIONS(2499), + [anon_sym_starts_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), + [anon_sym_ends_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), + [anon_sym_EQ_EQ2] = ACTIONS(2499), + [anon_sym_BANG_EQ2] = ACTIONS(2499), + [anon_sym_LT2] = ACTIONS(2501), + [anon_sym_LT_EQ2] = ACTIONS(2499), + [anon_sym_GT_EQ2] = ACTIONS(2499), + [anon_sym_EQ_TILDE2] = ACTIONS(2499), + [anon_sym_BANG_TILDE2] = ACTIONS(2499), + [anon_sym_like2] = ACTIONS(2499), + [anon_sym_not_DASHlike2] = ACTIONS(2499), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2499), + [anon_sym_PLUS_PLUS2] = ACTIONS(2499), + [anon_sym_SLASH2] = ACTIONS(2501), + [anon_sym_mod2] = ACTIONS(2499), + [anon_sym_SLASH_SLASH2] = ACTIONS(2499), + [anon_sym_PLUS2] = ACTIONS(2501), + [anon_sym_bit_DASHshl2] = ACTIONS(2499), + [anon_sym_bit_DASHshr2] = ACTIONS(2499), + [anon_sym_bit_DASHand2] = ACTIONS(2499), + [anon_sym_bit_DASHxor2] = ACTIONS(2499), + [anon_sym_bit_DASHor2] = ACTIONS(2499), + [anon_sym_err_GT] = ACTIONS(2501), + [anon_sym_out_GT] = ACTIONS(2501), + [anon_sym_e_GT] = ACTIONS(2501), + [anon_sym_o_GT] = ACTIONS(2501), + [anon_sym_err_PLUSout_GT] = ACTIONS(2501), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), + [anon_sym_o_PLUSe_GT] = ACTIONS(2501), + [anon_sym_e_PLUSo_GT] = ACTIONS(2501), + [anon_sym_err_GT_GT] = ACTIONS(2499), + [anon_sym_out_GT_GT] = ACTIONS(2499), + [anon_sym_e_GT_GT] = ACTIONS(2499), + [anon_sym_o_GT_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(888)] = { + [aux_sym__repeat_newline] = STATE(984), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(888), + [anon_sym_in] = ACTIONS(2499), + [sym__newline] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_PIPE] = ACTIONS(2499), + [anon_sym_err_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_GT_PIPE] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2499), + [anon_sym_GT2] = ACTIONS(2501), + [anon_sym_DASH2] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_STAR2] = ACTIONS(2501), + [anon_sym_and2] = ACTIONS(2499), + [anon_sym_xor2] = ACTIONS(2499), + [anon_sym_or2] = ACTIONS(2499), + [anon_sym_not_DASHin2] = ACTIONS(2499), + [anon_sym_has2] = ACTIONS(2499), + [anon_sym_not_DASHhas2] = ACTIONS(2499), + [anon_sym_starts_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), + [anon_sym_ends_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), + [anon_sym_EQ_EQ2] = ACTIONS(2499), + [anon_sym_BANG_EQ2] = ACTIONS(2499), + [anon_sym_LT2] = ACTIONS(2501), + [anon_sym_LT_EQ2] = ACTIONS(2499), + [anon_sym_GT_EQ2] = ACTIONS(2499), + [anon_sym_EQ_TILDE2] = ACTIONS(2499), + [anon_sym_BANG_TILDE2] = ACTIONS(2499), + [anon_sym_like2] = ACTIONS(2499), + [anon_sym_not_DASHlike2] = ACTIONS(2499), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2499), + [anon_sym_PLUS_PLUS2] = ACTIONS(2499), + [anon_sym_SLASH2] = ACTIONS(2501), + [anon_sym_mod2] = ACTIONS(2499), + [anon_sym_SLASH_SLASH2] = ACTIONS(2499), + [anon_sym_PLUS2] = ACTIONS(2501), + [anon_sym_bit_DASHshl2] = ACTIONS(2499), + [anon_sym_bit_DASHshr2] = ACTIONS(2499), + [anon_sym_bit_DASHand2] = ACTIONS(2499), + [anon_sym_bit_DASHxor2] = ACTIONS(2499), + [anon_sym_bit_DASHor2] = ACTIONS(2499), + [anon_sym_err_GT] = ACTIONS(2501), + [anon_sym_out_GT] = ACTIONS(2501), + [anon_sym_e_GT] = ACTIONS(2501), + [anon_sym_o_GT] = ACTIONS(2501), + [anon_sym_err_PLUSout_GT] = ACTIONS(2501), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), + [anon_sym_o_PLUSe_GT] = ACTIONS(2501), + [anon_sym_e_PLUSo_GT] = ACTIONS(2501), + [anon_sym_err_GT_GT] = ACTIONS(2499), + [anon_sym_out_GT_GT] = ACTIONS(2499), + [anon_sym_e_GT_GT] = ACTIONS(2499), + [anon_sym_o_GT_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(889)] = { + [aux_sym__repeat_newline] = STATE(982), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(889), + [anon_sym_in] = ACTIONS(2499), + [sym__newline] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_PIPE] = ACTIONS(2499), + [anon_sym_err_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_GT_PIPE] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2499), + [anon_sym_GT2] = ACTIONS(2501), + [anon_sym_DASH2] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_STAR2] = ACTIONS(2501), + [anon_sym_and2] = ACTIONS(2499), + [anon_sym_xor2] = ACTIONS(2499), + [anon_sym_or2] = ACTIONS(2499), + [anon_sym_not_DASHin2] = ACTIONS(2499), + [anon_sym_has2] = ACTIONS(2499), + [anon_sym_not_DASHhas2] = ACTIONS(2499), + [anon_sym_starts_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), + [anon_sym_ends_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), + [anon_sym_EQ_EQ2] = ACTIONS(2499), + [anon_sym_BANG_EQ2] = ACTIONS(2499), + [anon_sym_LT2] = ACTIONS(2501), + [anon_sym_LT_EQ2] = ACTIONS(2499), + [anon_sym_GT_EQ2] = ACTIONS(2499), + [anon_sym_EQ_TILDE2] = ACTIONS(2499), + [anon_sym_BANG_TILDE2] = ACTIONS(2499), + [anon_sym_like2] = ACTIONS(2499), + [anon_sym_not_DASHlike2] = ACTIONS(2499), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2499), + [anon_sym_PLUS_PLUS2] = ACTIONS(2499), + [anon_sym_SLASH2] = ACTIONS(2501), + [anon_sym_mod2] = ACTIONS(2499), + [anon_sym_SLASH_SLASH2] = ACTIONS(2499), + [anon_sym_PLUS2] = ACTIONS(2501), + [anon_sym_bit_DASHshl2] = ACTIONS(2499), + [anon_sym_bit_DASHshr2] = ACTIONS(2499), + [anon_sym_bit_DASHand2] = ACTIONS(2499), + [anon_sym_bit_DASHxor2] = ACTIONS(2499), + [anon_sym_bit_DASHor2] = ACTIONS(2499), + [anon_sym_err_GT] = ACTIONS(2501), + [anon_sym_out_GT] = ACTIONS(2501), + [anon_sym_e_GT] = ACTIONS(2501), + [anon_sym_o_GT] = ACTIONS(2501), + [anon_sym_err_PLUSout_GT] = ACTIONS(2501), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), + [anon_sym_o_PLUSe_GT] = ACTIONS(2501), + [anon_sym_e_PLUSo_GT] = ACTIONS(2501), + [anon_sym_err_GT_GT] = ACTIONS(2499), + [anon_sym_out_GT_GT] = ACTIONS(2499), + [anon_sym_e_GT_GT] = ACTIONS(2499), + [anon_sym_o_GT_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(890)] = { + [aux_sym__repeat_newline] = STATE(1093), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(890), + [anon_sym_in] = ACTIONS(2499), + [sym__newline] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_PIPE] = ACTIONS(2499), + [anon_sym_err_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_GT_PIPE] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2499), + [anon_sym_GT2] = ACTIONS(2501), + [anon_sym_DASH2] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_STAR2] = ACTIONS(2501), + [anon_sym_and2] = ACTIONS(2499), + [anon_sym_xor2] = ACTIONS(2499), + [anon_sym_or2] = ACTIONS(2499), + [anon_sym_not_DASHin2] = ACTIONS(2499), + [anon_sym_has2] = ACTIONS(2499), + [anon_sym_not_DASHhas2] = ACTIONS(2499), + [anon_sym_starts_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), + [anon_sym_ends_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), + [anon_sym_EQ_EQ2] = ACTIONS(2499), + [anon_sym_BANG_EQ2] = ACTIONS(2499), + [anon_sym_LT2] = ACTIONS(2501), + [anon_sym_LT_EQ2] = ACTIONS(2499), + [anon_sym_GT_EQ2] = ACTIONS(2499), + [anon_sym_EQ_TILDE2] = ACTIONS(2499), + [anon_sym_BANG_TILDE2] = ACTIONS(2499), + [anon_sym_like2] = ACTIONS(2499), + [anon_sym_not_DASHlike2] = ACTIONS(2499), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2499), + [anon_sym_PLUS_PLUS2] = ACTIONS(2499), + [anon_sym_SLASH2] = ACTIONS(2501), + [anon_sym_mod2] = ACTIONS(2499), + [anon_sym_SLASH_SLASH2] = ACTIONS(2499), + [anon_sym_PLUS2] = ACTIONS(2501), + [anon_sym_bit_DASHshl2] = ACTIONS(2499), + [anon_sym_bit_DASHshr2] = ACTIONS(2499), + [anon_sym_bit_DASHand2] = ACTIONS(2499), + [anon_sym_bit_DASHxor2] = ACTIONS(2499), + [anon_sym_bit_DASHor2] = ACTIONS(2499), + [anon_sym_err_GT] = ACTIONS(2501), + [anon_sym_out_GT] = ACTIONS(2501), + [anon_sym_e_GT] = ACTIONS(2501), + [anon_sym_o_GT] = ACTIONS(2501), + [anon_sym_err_PLUSout_GT] = ACTIONS(2501), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), + [anon_sym_o_PLUSe_GT] = ACTIONS(2501), + [anon_sym_e_PLUSo_GT] = ACTIONS(2501), + [anon_sym_err_GT_GT] = ACTIONS(2499), + [anon_sym_out_GT_GT] = ACTIONS(2499), + [anon_sym_e_GT_GT] = ACTIONS(2499), + [anon_sym_o_GT_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(891)] = { + [aux_sym__repeat_newline] = STATE(974), + [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_comment] = STATE(891), + [anon_sym_in] = ACTIONS(2499), + [sym__newline] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_PIPE] = ACTIONS(2499), + [anon_sym_err_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_GT_PIPE] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2499), + [anon_sym_GT2] = ACTIONS(2501), + [anon_sym_DASH2] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_STAR2] = ACTIONS(2501), + [anon_sym_and2] = ACTIONS(2499), + [anon_sym_xor2] = ACTIONS(2499), + [anon_sym_or2] = ACTIONS(2499), + [anon_sym_not_DASHin2] = ACTIONS(2499), + [anon_sym_has2] = ACTIONS(2499), + [anon_sym_not_DASHhas2] = ACTIONS(2499), + [anon_sym_starts_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), + [anon_sym_ends_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), + [anon_sym_EQ_EQ2] = ACTIONS(2499), + [anon_sym_BANG_EQ2] = ACTIONS(2499), + [anon_sym_LT2] = ACTIONS(2501), + [anon_sym_LT_EQ2] = ACTIONS(2499), + [anon_sym_GT_EQ2] = ACTIONS(2499), + [anon_sym_EQ_TILDE2] = ACTIONS(2499), + [anon_sym_BANG_TILDE2] = ACTIONS(2499), + [anon_sym_like2] = ACTIONS(2499), + [anon_sym_not_DASHlike2] = ACTIONS(2499), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2499), + [anon_sym_PLUS_PLUS2] = ACTIONS(2499), + [anon_sym_SLASH2] = ACTIONS(2501), + [anon_sym_mod2] = ACTIONS(2499), + [anon_sym_SLASH_SLASH2] = ACTIONS(2499), + [anon_sym_PLUS2] = ACTIONS(2501), + [anon_sym_bit_DASHshl2] = ACTIONS(2499), + [anon_sym_bit_DASHshr2] = ACTIONS(2499), + [anon_sym_bit_DASHand2] = ACTIONS(2499), + [anon_sym_bit_DASHxor2] = ACTIONS(2499), + [anon_sym_bit_DASHor2] = ACTIONS(2499), + [anon_sym_err_GT] = ACTIONS(2501), + [anon_sym_out_GT] = ACTIONS(2501), + [anon_sym_e_GT] = ACTIONS(2501), + [anon_sym_o_GT] = ACTIONS(2501), + [anon_sym_err_PLUSout_GT] = ACTIONS(2501), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), + [anon_sym_o_PLUSe_GT] = ACTIONS(2501), + [anon_sym_e_PLUSo_GT] = ACTIONS(2501), + [anon_sym_err_GT_GT] = ACTIONS(2499), + [anon_sym_out_GT_GT] = ACTIONS(2499), + [anon_sym_e_GT_GT] = ACTIONS(2499), + [anon_sym_o_GT_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(892)] = { + [sym_cell_path] = STATE(1268), + [sym_path] = STATE(712), + [sym_comment] = STATE(892), + [aux_sym__where_predicate_lhs_repeat1] = STATE(547), + [ts_builtin_sym_end] = ACTIONS(1882), + [anon_sym_in] = ACTIONS(1882), + [sym__newline] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_PIPE] = ACTIONS(1882), + [anon_sym_err_GT_PIPE] = ACTIONS(1882), + [anon_sym_out_GT_PIPE] = ACTIONS(1882), + [anon_sym_e_GT_PIPE] = ACTIONS(1882), + [anon_sym_o_GT_PIPE] = ACTIONS(1882), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1882), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1882), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1882), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1882), + [anon_sym_GT2] = ACTIONS(1884), + [anon_sym_DASH2] = ACTIONS(1882), + [anon_sym_STAR2] = ACTIONS(1884), + [anon_sym_and2] = ACTIONS(1882), + [anon_sym_xor2] = ACTIONS(1882), + [anon_sym_or2] = ACTIONS(1882), + [anon_sym_not_DASHin2] = ACTIONS(1882), + [anon_sym_has2] = ACTIONS(1882), + [anon_sym_not_DASHhas2] = ACTIONS(1882), + [anon_sym_starts_DASHwith2] = ACTIONS(1882), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1882), + [anon_sym_ends_DASHwith2] = ACTIONS(1882), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1882), + [anon_sym_EQ_EQ2] = ACTIONS(1882), + [anon_sym_BANG_EQ2] = ACTIONS(1882), + [anon_sym_LT2] = ACTIONS(1884), + [anon_sym_LT_EQ2] = ACTIONS(1882), + [anon_sym_GT_EQ2] = ACTIONS(1882), + [anon_sym_EQ_TILDE2] = ACTIONS(1882), + [anon_sym_BANG_TILDE2] = ACTIONS(1882), + [anon_sym_like2] = ACTIONS(1882), + [anon_sym_not_DASHlike2] = ACTIONS(1882), + [anon_sym_STAR_STAR2] = ACTIONS(1882), + [anon_sym_PLUS_PLUS2] = ACTIONS(1882), + [anon_sym_SLASH2] = ACTIONS(1884), + [anon_sym_mod2] = ACTIONS(1882), + [anon_sym_SLASH_SLASH2] = ACTIONS(1882), + [anon_sym_PLUS2] = ACTIONS(1884), + [anon_sym_bit_DASHshl2] = ACTIONS(1882), + [anon_sym_bit_DASHshr2] = ACTIONS(1882), + [anon_sym_bit_DASHand2] = ACTIONS(1882), + [anon_sym_bit_DASHxor2] = ACTIONS(1882), + [anon_sym_bit_DASHor2] = ACTIONS(1882), + [anon_sym_DOT2] = ACTIONS(2192), + [anon_sym_err_GT] = ACTIONS(1884), + [anon_sym_out_GT] = ACTIONS(1884), + [anon_sym_e_GT] = ACTIONS(1884), + [anon_sym_o_GT] = ACTIONS(1884), + [anon_sym_err_PLUSout_GT] = ACTIONS(1884), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1884), + [anon_sym_o_PLUSe_GT] = ACTIONS(1884), + [anon_sym_e_PLUSo_GT] = ACTIONS(1884), + [anon_sym_err_GT_GT] = ACTIONS(1882), + [anon_sym_out_GT_GT] = ACTIONS(1882), + [anon_sym_e_GT_GT] = ACTIONS(1882), + [anon_sym_o_GT_GT] = ACTIONS(1882), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1882), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1882), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1882), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1882), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(893)] = { + [aux_sym__repeat_newline] = STATE(901), + [aux_sym__pipe_separator] = STATE(799), + [sym_comment] = STATE(893), + [anon_sym_export] = ACTIONS(2503), + [anon_sym_alias] = ACTIONS(2505), + [anon_sym_let] = ACTIONS(2505), + [anon_sym_mut] = ACTIONS(2505), + [anon_sym_const] = ACTIONS(2505), + [aux_sym_cmd_identifier_token1] = ACTIONS(2503), + [anon_sym_def] = ACTIONS(2505), + [anon_sym_use] = ACTIONS(2505), + [anon_sym_export_DASHenv] = ACTIONS(2505), + [anon_sym_extern] = ACTIONS(2505), + [anon_sym_module] = ACTIONS(2505), + [anon_sym_for] = ACTIONS(2505), + [anon_sym_loop] = ACTIONS(2505), + [anon_sym_while] = ACTIONS(2505), + [anon_sym_if] = ACTIONS(2505), + [anon_sym_else] = ACTIONS(2505), + [anon_sym_try] = ACTIONS(2505), + [anon_sym_catch] = ACTIONS(2505), + [anon_sym_match] = ACTIONS(2505), + [anon_sym_in] = ACTIONS(2503), + [anon_sym_true] = ACTIONS(2505), + [anon_sym_false] = ACTIONS(2505), + [anon_sym_null] = ACTIONS(2505), + [aux_sym_cmd_identifier_token3] = ACTIONS(2505), + [aux_sym_cmd_identifier_token4] = ACTIONS(2505), + [aux_sym_cmd_identifier_token5] = ACTIONS(2505), + [sym__newline] = ACTIONS(2507), + [anon_sym_PIPE] = ACTIONS(2273), + [anon_sym_err_GT_PIPE] = ACTIONS(2273), + [anon_sym_out_GT_PIPE] = ACTIONS(2273), + [anon_sym_e_GT_PIPE] = ACTIONS(2273), + [anon_sym_o_GT_PIPE] = ACTIONS(2273), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2273), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2273), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2273), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2273), + [anon_sym_LBRACK] = ACTIONS(2505), + [anon_sym_LPAREN] = ACTIONS(2505), + [anon_sym_DOLLAR] = ACTIONS(2503), + [anon_sym_DASH2] = ACTIONS(2503), + [anon_sym_LBRACE] = ACTIONS(2505), + [anon_sym_DOT_DOT] = ACTIONS(2503), + [anon_sym_where] = ACTIONS(2505), + [aux_sym_expr_unary_token1] = ACTIONS(2505), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2505), + [anon_sym_DOT_DOT_LT] = ACTIONS(2505), + [aux_sym__val_number_decimal_token1] = ACTIONS(2503), + [aux_sym__val_number_decimal_token2] = ACTIONS(2505), + [aux_sym__val_number_decimal_token3] = ACTIONS(2505), + [aux_sym__val_number_decimal_token4] = ACTIONS(2505), + [aux_sym__val_number_token1] = ACTIONS(2505), + [aux_sym__val_number_token2] = ACTIONS(2505), + [aux_sym__val_number_token3] = ACTIONS(2505), + [anon_sym_0b] = ACTIONS(2503), + [anon_sym_0o] = ACTIONS(2503), + [anon_sym_0x] = ACTIONS(2503), + [sym_val_date] = ACTIONS(2505), + [anon_sym_DQUOTE] = ACTIONS(2505), + [anon_sym_SQUOTE] = ACTIONS(2505), + [anon_sym_BQUOTE] = ACTIONS(2505), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2505), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2505), + [anon_sym_CARET] = ACTIONS(2505), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2505), + }, + [STATE(894)] = { + [sym_cell_path] = STATE(1321), + [sym_path] = STATE(712), + [sym_comment] = STATE(894), + [aux_sym__where_predicate_lhs_repeat1] = STATE(547), + [ts_builtin_sym_end] = ACTIONS(1848), + [anon_sym_in] = 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_GT2] = ACTIONS(1850), + [anon_sym_DASH2] = ACTIONS(1848), + [anon_sym_STAR2] = ACTIONS(1850), + [anon_sym_and2] = ACTIONS(1848), + [anon_sym_xor2] = ACTIONS(1848), + [anon_sym_or2] = ACTIONS(1848), + [anon_sym_not_DASHin2] = ACTIONS(1848), + [anon_sym_has2] = ACTIONS(1848), + [anon_sym_not_DASHhas2] = ACTIONS(1848), + [anon_sym_starts_DASHwith2] = ACTIONS(1848), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1848), + [anon_sym_ends_DASHwith2] = ACTIONS(1848), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1848), + [anon_sym_EQ_EQ2] = ACTIONS(1848), + [anon_sym_BANG_EQ2] = ACTIONS(1848), + [anon_sym_LT2] = ACTIONS(1850), + [anon_sym_LT_EQ2] = ACTIONS(1848), + [anon_sym_GT_EQ2] = ACTIONS(1848), + [anon_sym_EQ_TILDE2] = ACTIONS(1848), + [anon_sym_BANG_TILDE2] = ACTIONS(1848), + [anon_sym_like2] = ACTIONS(1848), + [anon_sym_not_DASHlike2] = ACTIONS(1848), + [anon_sym_STAR_STAR2] = ACTIONS(1848), + [anon_sym_PLUS_PLUS2] = ACTIONS(1848), + [anon_sym_SLASH2] = ACTIONS(1850), + [anon_sym_mod2] = ACTIONS(1848), + [anon_sym_SLASH_SLASH2] = ACTIONS(1848), + [anon_sym_PLUS2] = ACTIONS(1850), + [anon_sym_bit_DASHshl2] = ACTIONS(1848), + [anon_sym_bit_DASHshr2] = ACTIONS(1848), + [anon_sym_bit_DASHand2] = ACTIONS(1848), + [anon_sym_bit_DASHxor2] = ACTIONS(1848), + [anon_sym_bit_DASHor2] = ACTIONS(1848), + [anon_sym_DOT2] = ACTIONS(2192), + [anon_sym_err_GT] = ACTIONS(1850), + [anon_sym_out_GT] = ACTIONS(1850), + [anon_sym_e_GT] = ACTIONS(1850), + [anon_sym_o_GT] = ACTIONS(1850), + [anon_sym_err_PLUSout_GT] = ACTIONS(1850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1850), + [anon_sym_o_PLUSe_GT] = ACTIONS(1850), + [anon_sym_e_PLUSo_GT] = ACTIONS(1850), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(895)] = { [sym_comment] = STATE(895), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [aux_sym__immediate_decimal_token5] = ACTIONS(2509), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(896)] = { [sym_comment] = STATE(896), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_EQ_GT] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(897)] = { [sym_comment] = STATE(897), - [anon_sym_in] = ACTIONS(2511), - [sym__newline] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2511), - [anon_sym_PIPE] = ACTIONS(2511), - [anon_sym_err_GT_PIPE] = ACTIONS(2511), - [anon_sym_out_GT_PIPE] = ACTIONS(2511), - [anon_sym_e_GT_PIPE] = ACTIONS(2511), - [anon_sym_o_GT_PIPE] = ACTIONS(2511), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2511), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2511), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2511), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2511), - [anon_sym_RPAREN] = ACTIONS(2511), - [anon_sym_GT2] = ACTIONS(2513), - [anon_sym_DASH2] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2511), - [anon_sym_RBRACE] = ACTIONS(2511), - [anon_sym_EQ_GT] = ACTIONS(2511), - [anon_sym_STAR2] = ACTIONS(2513), - [anon_sym_and2] = ACTIONS(2511), - [anon_sym_xor2] = ACTIONS(2511), - [anon_sym_or2] = ACTIONS(2511), - [anon_sym_not_DASHin2] = ACTIONS(2511), - [anon_sym_has2] = ACTIONS(2511), - [anon_sym_not_DASHhas2] = ACTIONS(2511), - [anon_sym_starts_DASHwith2] = ACTIONS(2511), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2511), - [anon_sym_ends_DASHwith2] = ACTIONS(2511), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2511), - [anon_sym_EQ_EQ2] = ACTIONS(2511), - [anon_sym_BANG_EQ2] = ACTIONS(2511), - [anon_sym_LT2] = ACTIONS(2513), - [anon_sym_LT_EQ2] = ACTIONS(2511), - [anon_sym_GT_EQ2] = ACTIONS(2511), - [anon_sym_EQ_TILDE2] = ACTIONS(2511), - [anon_sym_BANG_TILDE2] = ACTIONS(2511), - [anon_sym_like2] = ACTIONS(2511), - [anon_sym_not_DASHlike2] = ACTIONS(2511), - [anon_sym_STAR_STAR2] = ACTIONS(2511), - [anon_sym_PLUS_PLUS2] = ACTIONS(2511), - [anon_sym_SLASH2] = ACTIONS(2513), - [anon_sym_mod2] = ACTIONS(2511), - [anon_sym_SLASH_SLASH2] = ACTIONS(2511), - [anon_sym_PLUS2] = ACTIONS(2513), - [anon_sym_bit_DASHshl2] = ACTIONS(2511), - [anon_sym_bit_DASHshr2] = ACTIONS(2511), - [anon_sym_bit_DASHand2] = ACTIONS(2511), - [anon_sym_bit_DASHxor2] = ACTIONS(2511), - [anon_sym_bit_DASHor2] = ACTIONS(2511), - [anon_sym_err_GT] = ACTIONS(2513), - [anon_sym_out_GT] = ACTIONS(2513), - [anon_sym_e_GT] = ACTIONS(2513), - [anon_sym_o_GT] = ACTIONS(2513), - [anon_sym_err_PLUSout_GT] = ACTIONS(2513), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2513), - [anon_sym_o_PLUSe_GT] = ACTIONS(2513), - [anon_sym_e_PLUSo_GT] = ACTIONS(2513), - [anon_sym_err_GT_GT] = ACTIONS(2511), - [anon_sym_out_GT_GT] = ACTIONS(2511), - [anon_sym_e_GT_GT] = ACTIONS(2511), - [anon_sym_o_GT_GT] = ACTIONS(2511), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2511), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2511), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2511), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2511), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(898)] = { [sym_comment] = STATE(898), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(899)] = { + [sym_comment] = STATE(899), + [anon_sym_in] = ACTIONS(2509), + [sym__newline] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_err_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_GT_PIPE] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2509), + [anon_sym_RPAREN] = ACTIONS(2509), + [anon_sym_GT2] = ACTIONS(2511), + [anon_sym_DASH2] = ACTIONS(2509), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_STAR2] = ACTIONS(2511), + [anon_sym_and2] = ACTIONS(2509), + [anon_sym_xor2] = ACTIONS(2509), + [anon_sym_or2] = ACTIONS(2509), + [anon_sym_not_DASHin2] = ACTIONS(2509), + [anon_sym_has2] = ACTIONS(2509), + [anon_sym_not_DASHhas2] = ACTIONS(2509), + [anon_sym_starts_DASHwith2] = ACTIONS(2509), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2509), + [anon_sym_ends_DASHwith2] = ACTIONS(2509), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2509), + [anon_sym_EQ_EQ2] = ACTIONS(2509), + [anon_sym_BANG_EQ2] = ACTIONS(2509), + [anon_sym_LT2] = ACTIONS(2511), + [anon_sym_LT_EQ2] = ACTIONS(2509), + [anon_sym_GT_EQ2] = ACTIONS(2509), + [anon_sym_EQ_TILDE2] = ACTIONS(2509), + [anon_sym_BANG_TILDE2] = ACTIONS(2509), + [anon_sym_like2] = ACTIONS(2509), + [anon_sym_not_DASHlike2] = ACTIONS(2509), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_STAR_STAR2] = ACTIONS(2509), + [anon_sym_PLUS_PLUS2] = ACTIONS(2509), + [anon_sym_SLASH2] = ACTIONS(2511), + [anon_sym_mod2] = ACTIONS(2509), + [anon_sym_SLASH_SLASH2] = ACTIONS(2509), + [anon_sym_PLUS2] = ACTIONS(2511), + [anon_sym_bit_DASHshl2] = ACTIONS(2509), + [anon_sym_bit_DASHshr2] = ACTIONS(2509), + [anon_sym_bit_DASHand2] = ACTIONS(2509), + [anon_sym_bit_DASHxor2] = ACTIONS(2509), + [anon_sym_bit_DASHor2] = ACTIONS(2509), + [anon_sym_err_GT] = ACTIONS(2511), + [anon_sym_out_GT] = ACTIONS(2511), + [anon_sym_e_GT] = ACTIONS(2511), + [anon_sym_o_GT] = ACTIONS(2511), + [anon_sym_err_PLUSout_GT] = ACTIONS(2511), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2511), + [anon_sym_o_PLUSe_GT] = ACTIONS(2511), + [anon_sym_e_PLUSo_GT] = ACTIONS(2511), + [anon_sym_err_GT_GT] = ACTIONS(2509), + [anon_sym_out_GT_GT] = ACTIONS(2509), + [anon_sym_e_GT_GT] = ACTIONS(2509), + [anon_sym_o_GT_GT] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2509), + [sym__unquoted_pattern] = ACTIONS(1641), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(900)] = { + [sym_comment] = STATE(900), [anon_sym_in] = ACTIONS(2515), [sym__newline] = ACTIONS(2515), [anon_sym_SEMI] = ACTIONS(2515), @@ -114490,1459 +114833,1252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2515), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(899)] = { - [sym_comment] = STATE(899), - [anon_sym_in] = ACTIONS(2519), - [sym__newline] = ACTIONS(2519), - [anon_sym_SEMI] = ACTIONS(2519), - [anon_sym_PIPE] = ACTIONS(2519), - [anon_sym_err_GT_PIPE] = ACTIONS(2519), - [anon_sym_out_GT_PIPE] = ACTIONS(2519), - [anon_sym_e_GT_PIPE] = ACTIONS(2519), - [anon_sym_o_GT_PIPE] = ACTIONS(2519), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2519), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2519), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2519), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2519), - [anon_sym_RPAREN] = ACTIONS(2519), - [anon_sym_GT2] = ACTIONS(2521), - [anon_sym_DASH2] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2519), - [anon_sym_RBRACE] = ACTIONS(2519), - [anon_sym_EQ_GT] = ACTIONS(2519), - [anon_sym_STAR2] = ACTIONS(2521), - [anon_sym_and2] = ACTIONS(2519), - [anon_sym_xor2] = ACTIONS(2519), - [anon_sym_or2] = ACTIONS(2519), - [anon_sym_not_DASHin2] = ACTIONS(2519), - [anon_sym_has2] = ACTIONS(2519), - [anon_sym_not_DASHhas2] = ACTIONS(2519), - [anon_sym_starts_DASHwith2] = ACTIONS(2519), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2519), - [anon_sym_ends_DASHwith2] = ACTIONS(2519), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2519), - [anon_sym_EQ_EQ2] = ACTIONS(2519), - [anon_sym_BANG_EQ2] = ACTIONS(2519), - [anon_sym_LT2] = ACTIONS(2521), - [anon_sym_LT_EQ2] = ACTIONS(2519), - [anon_sym_GT_EQ2] = ACTIONS(2519), - [anon_sym_EQ_TILDE2] = ACTIONS(2519), - [anon_sym_BANG_TILDE2] = ACTIONS(2519), - [anon_sym_like2] = ACTIONS(2519), - [anon_sym_not_DASHlike2] = ACTIONS(2519), - [anon_sym_STAR_STAR2] = ACTIONS(2519), - [anon_sym_PLUS_PLUS2] = ACTIONS(2519), - [anon_sym_SLASH2] = ACTIONS(2521), - [anon_sym_mod2] = ACTIONS(2519), - [anon_sym_SLASH_SLASH2] = ACTIONS(2519), - [anon_sym_PLUS2] = ACTIONS(2521), - [anon_sym_bit_DASHshl2] = ACTIONS(2519), - [anon_sym_bit_DASHshr2] = ACTIONS(2519), - [anon_sym_bit_DASHand2] = ACTIONS(2519), - [anon_sym_bit_DASHxor2] = ACTIONS(2519), - [anon_sym_bit_DASHor2] = ACTIONS(2519), - [anon_sym_err_GT] = ACTIONS(2521), - [anon_sym_out_GT] = ACTIONS(2521), - [anon_sym_e_GT] = ACTIONS(2521), - [anon_sym_o_GT] = ACTIONS(2521), - [anon_sym_err_PLUSout_GT] = ACTIONS(2521), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2521), - [anon_sym_o_PLUSe_GT] = ACTIONS(2521), - [anon_sym_e_PLUSo_GT] = ACTIONS(2521), - [anon_sym_err_GT_GT] = ACTIONS(2519), - [anon_sym_out_GT_GT] = ACTIONS(2519), - [anon_sym_e_GT_GT] = ACTIONS(2519), - [anon_sym_o_GT_GT] = ACTIONS(2519), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2519), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2519), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2519), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2519), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(900)] = { - [sym_comment] = STATE(900), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(901)] = { + [aux_sym__repeat_newline] = STATE(908), [sym_comment] = STATE(901), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2519), + [anon_sym_alias] = ACTIONS(2521), + [anon_sym_let] = ACTIONS(2521), + [anon_sym_mut] = ACTIONS(2521), + [anon_sym_const] = ACTIONS(2521), + [aux_sym_cmd_identifier_token1] = ACTIONS(2519), + [anon_sym_def] = ACTIONS(2521), + [anon_sym_use] = ACTIONS(2521), + [anon_sym_export_DASHenv] = ACTIONS(2521), + [anon_sym_extern] = ACTIONS(2521), + [anon_sym_module] = ACTIONS(2521), + [anon_sym_for] = ACTIONS(2521), + [anon_sym_loop] = ACTIONS(2521), + [anon_sym_while] = ACTIONS(2521), + [anon_sym_if] = ACTIONS(2521), + [anon_sym_else] = ACTIONS(2521), + [anon_sym_try] = ACTIONS(2521), + [anon_sym_catch] = ACTIONS(2521), + [anon_sym_match] = ACTIONS(2521), + [anon_sym_in] = ACTIONS(2519), + [anon_sym_true] = ACTIONS(2521), + [anon_sym_false] = ACTIONS(2521), + [anon_sym_null] = ACTIONS(2521), + [aux_sym_cmd_identifier_token3] = ACTIONS(2521), + [aux_sym_cmd_identifier_token4] = ACTIONS(2521), + [aux_sym_cmd_identifier_token5] = ACTIONS(2521), + [sym__newline] = ACTIONS(2507), + [anon_sym_PIPE] = ACTIONS(2523), + [anon_sym_err_GT_PIPE] = ACTIONS(2523), + [anon_sym_out_GT_PIPE] = ACTIONS(2523), + [anon_sym_e_GT_PIPE] = ACTIONS(2523), + [anon_sym_o_GT_PIPE] = ACTIONS(2523), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2523), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2523), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2523), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2523), + [anon_sym_LBRACK] = ACTIONS(2521), + [anon_sym_LPAREN] = ACTIONS(2521), + [anon_sym_DOLLAR] = ACTIONS(2519), + [anon_sym_DASH2] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_DOT_DOT] = ACTIONS(2519), + [anon_sym_where] = ACTIONS(2521), + [aux_sym_expr_unary_token1] = ACTIONS(2521), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2521), + [anon_sym_DOT_DOT_LT] = ACTIONS(2521), + [aux_sym__val_number_decimal_token1] = ACTIONS(2519), + [aux_sym__val_number_decimal_token2] = ACTIONS(2521), + [aux_sym__val_number_decimal_token3] = ACTIONS(2521), + [aux_sym__val_number_decimal_token4] = ACTIONS(2521), + [aux_sym__val_number_token1] = ACTIONS(2521), + [aux_sym__val_number_token2] = ACTIONS(2521), + [aux_sym__val_number_token3] = ACTIONS(2521), + [anon_sym_0b] = ACTIONS(2519), + [anon_sym_0o] = ACTIONS(2519), + [anon_sym_0x] = ACTIONS(2519), + [sym_val_date] = ACTIONS(2521), + [anon_sym_DQUOTE] = ACTIONS(2521), + [anon_sym_SQUOTE] = ACTIONS(2521), + [anon_sym_BQUOTE] = ACTIONS(2521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2521), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2521), + [anon_sym_CARET] = ACTIONS(2521), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2521), }, [STATE(902)] = { [sym_comment] = STATE(902), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(903)] = { [sym_comment] = STATE(903), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2525), + [sym__newline] = ACTIONS(2525), + [anon_sym_SEMI] = ACTIONS(2525), + [anon_sym_PIPE] = ACTIONS(2525), + [anon_sym_err_GT_PIPE] = ACTIONS(2525), + [anon_sym_out_GT_PIPE] = ACTIONS(2525), + [anon_sym_e_GT_PIPE] = ACTIONS(2525), + [anon_sym_o_GT_PIPE] = ACTIONS(2525), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2525), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2525), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2525), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2525), + [anon_sym_RPAREN] = ACTIONS(2525), + [anon_sym_GT2] = ACTIONS(2527), + [anon_sym_DASH2] = ACTIONS(2525), + [anon_sym_RBRACE] = ACTIONS(2525), + [anon_sym_STAR2] = ACTIONS(2527), + [anon_sym_and2] = ACTIONS(2525), + [anon_sym_xor2] = ACTIONS(2525), + [anon_sym_or2] = ACTIONS(2525), + [anon_sym_not_DASHin2] = ACTIONS(2525), + [anon_sym_has2] = ACTIONS(2525), + [anon_sym_not_DASHhas2] = ACTIONS(2525), + [anon_sym_starts_DASHwith2] = ACTIONS(2525), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2525), + [anon_sym_ends_DASHwith2] = ACTIONS(2525), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2525), + [anon_sym_EQ_EQ2] = ACTIONS(2525), + [anon_sym_BANG_EQ2] = ACTIONS(2525), + [anon_sym_LT2] = ACTIONS(2527), + [anon_sym_LT_EQ2] = ACTIONS(2525), + [anon_sym_GT_EQ2] = ACTIONS(2525), + [anon_sym_EQ_TILDE2] = ACTIONS(2525), + [anon_sym_BANG_TILDE2] = ACTIONS(2525), + [anon_sym_like2] = ACTIONS(2525), + [anon_sym_not_DASHlike2] = ACTIONS(2525), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_STAR_STAR2] = ACTIONS(2525), + [anon_sym_PLUS_PLUS2] = ACTIONS(2525), + [anon_sym_SLASH2] = ACTIONS(2527), + [anon_sym_mod2] = ACTIONS(2525), + [anon_sym_SLASH_SLASH2] = ACTIONS(2525), + [anon_sym_PLUS2] = ACTIONS(2527), + [anon_sym_bit_DASHshl2] = ACTIONS(2525), + [anon_sym_bit_DASHshr2] = ACTIONS(2525), + [anon_sym_bit_DASHand2] = ACTIONS(2525), + [anon_sym_bit_DASHxor2] = ACTIONS(2525), + [anon_sym_bit_DASHor2] = ACTIONS(2525), + [anon_sym_err_GT] = ACTIONS(2527), + [anon_sym_out_GT] = ACTIONS(2527), + [anon_sym_e_GT] = ACTIONS(2527), + [anon_sym_o_GT] = ACTIONS(2527), + [anon_sym_err_PLUSout_GT] = ACTIONS(2527), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2527), + [anon_sym_o_PLUSe_GT] = ACTIONS(2527), + [anon_sym_e_PLUSo_GT] = ACTIONS(2527), + [anon_sym_err_GT_GT] = ACTIONS(2525), + [anon_sym_out_GT_GT] = ACTIONS(2525), + [anon_sym_e_GT_GT] = ACTIONS(2525), + [anon_sym_o_GT_GT] = ACTIONS(2525), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2525), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2525), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2525), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2525), + [sym__unquoted_pattern] = ACTIONS(2531), [anon_sym_POUND] = ACTIONS(3), }, [STATE(904)] = { [sym_comment] = STATE(904), - [anon_sym_in] = ACTIONS(2523), - [sym__newline] = ACTIONS(2523), - [anon_sym_SEMI] = ACTIONS(2523), - [anon_sym_PIPE] = ACTIONS(2523), - [anon_sym_err_GT_PIPE] = ACTIONS(2523), - [anon_sym_out_GT_PIPE] = ACTIONS(2523), - [anon_sym_e_GT_PIPE] = ACTIONS(2523), - [anon_sym_o_GT_PIPE] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2523), - [anon_sym_RPAREN] = ACTIONS(2523), - [anon_sym_GT2] = ACTIONS(2525), - [anon_sym_DASH2] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(2523), - [anon_sym_RBRACE] = ACTIONS(2523), - [anon_sym_EQ_GT] = ACTIONS(2523), - [anon_sym_STAR2] = ACTIONS(2525), - [anon_sym_and2] = ACTIONS(2523), - [anon_sym_xor2] = ACTIONS(2523), - [anon_sym_or2] = ACTIONS(2523), - [anon_sym_not_DASHin2] = ACTIONS(2523), - [anon_sym_has2] = ACTIONS(2523), - [anon_sym_not_DASHhas2] = ACTIONS(2523), - [anon_sym_starts_DASHwith2] = ACTIONS(2523), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2523), - [anon_sym_ends_DASHwith2] = ACTIONS(2523), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2523), - [anon_sym_EQ_EQ2] = ACTIONS(2523), - [anon_sym_BANG_EQ2] = ACTIONS(2523), - [anon_sym_LT2] = ACTIONS(2525), - [anon_sym_LT_EQ2] = ACTIONS(2523), - [anon_sym_GT_EQ2] = ACTIONS(2523), - [anon_sym_EQ_TILDE2] = ACTIONS(2523), - [anon_sym_BANG_TILDE2] = ACTIONS(2523), - [anon_sym_like2] = ACTIONS(2523), - [anon_sym_not_DASHlike2] = ACTIONS(2523), - [anon_sym_STAR_STAR2] = ACTIONS(2523), - [anon_sym_PLUS_PLUS2] = ACTIONS(2523), - [anon_sym_SLASH2] = ACTIONS(2525), - [anon_sym_mod2] = ACTIONS(2523), - [anon_sym_SLASH_SLASH2] = ACTIONS(2523), - [anon_sym_PLUS2] = ACTIONS(2525), - [anon_sym_bit_DASHshl2] = ACTIONS(2523), - [anon_sym_bit_DASHshr2] = ACTIONS(2523), - [anon_sym_bit_DASHand2] = ACTIONS(2523), - [anon_sym_bit_DASHxor2] = ACTIONS(2523), - [anon_sym_bit_DASHor2] = ACTIONS(2523), - [anon_sym_err_GT] = ACTIONS(2525), - [anon_sym_out_GT] = ACTIONS(2525), - [anon_sym_e_GT] = ACTIONS(2525), - [anon_sym_o_GT] = ACTIONS(2525), - [anon_sym_err_PLUSout_GT] = ACTIONS(2525), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2525), - [anon_sym_o_PLUSe_GT] = ACTIONS(2525), - [anon_sym_e_PLUSo_GT] = ACTIONS(2525), - [anon_sym_err_GT_GT] = ACTIONS(2523), - [anon_sym_out_GT_GT] = ACTIONS(2523), - [anon_sym_e_GT_GT] = ACTIONS(2523), - [anon_sym_o_GT_GT] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2523), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(905)] = { + [aux_sym__repeat_newline] = STATE(997), + [sym__expression_parenthesized] = STATE(4395), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2115), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1826), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), [sym_comment] = STATE(905), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_RPAREN] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_RBRACE] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2533), + [anon_sym_true] = ACTIONS(2535), + [anon_sym_false] = ACTIONS(2535), + [anon_sym_null] = ACTIONS(2537), + [aux_sym_cmd_identifier_token3] = ACTIONS(2539), + [aux_sym_cmd_identifier_token4] = ACTIONS(2539), + [aux_sym_cmd_identifier_token5] = ACTIONS(2539), + [sym__newline] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1976), + [aux_sym__val_number_decimal_token3] = ACTIONS(2543), + [aux_sym__val_number_decimal_token4] = ACTIONS(2543), + [aux_sym__val_number_token1] = ACTIONS(2539), + [aux_sym__val_number_token2] = ACTIONS(2539), + [aux_sym__val_number_token3] = ACTIONS(2539), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2545), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(906)] = { [sym_comment] = STATE(906), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(907)] = { [sym_comment] = STATE(907), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(2547), + [sym__newline] = ACTIONS(2547), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_err_GT_PIPE] = ACTIONS(2547), + [anon_sym_out_GT_PIPE] = ACTIONS(2547), + [anon_sym_e_GT_PIPE] = ACTIONS(2547), + [anon_sym_o_GT_PIPE] = ACTIONS(2547), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2547), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2547), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2547), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2547), + [anon_sym_RPAREN] = ACTIONS(2547), + [anon_sym_GT2] = ACTIONS(2549), + [anon_sym_DASH2] = ACTIONS(2547), + [anon_sym_LBRACE] = ACTIONS(2547), + [anon_sym_RBRACE] = ACTIONS(2547), + [anon_sym_EQ_GT] = ACTIONS(2547), + [anon_sym_STAR2] = ACTIONS(2549), + [anon_sym_and2] = ACTIONS(2547), + [anon_sym_xor2] = ACTIONS(2547), + [anon_sym_or2] = ACTIONS(2547), + [anon_sym_not_DASHin2] = ACTIONS(2547), + [anon_sym_has2] = ACTIONS(2547), + [anon_sym_not_DASHhas2] = ACTIONS(2547), + [anon_sym_starts_DASHwith2] = ACTIONS(2547), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2547), + [anon_sym_ends_DASHwith2] = ACTIONS(2547), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2547), + [anon_sym_EQ_EQ2] = ACTIONS(2547), + [anon_sym_BANG_EQ2] = ACTIONS(2547), + [anon_sym_LT2] = ACTIONS(2549), + [anon_sym_LT_EQ2] = ACTIONS(2547), + [anon_sym_GT_EQ2] = ACTIONS(2547), + [anon_sym_EQ_TILDE2] = ACTIONS(2547), + [anon_sym_BANG_TILDE2] = ACTIONS(2547), + [anon_sym_like2] = ACTIONS(2547), + [anon_sym_not_DASHlike2] = ACTIONS(2547), + [anon_sym_STAR_STAR2] = ACTIONS(2547), + [anon_sym_PLUS_PLUS2] = ACTIONS(2547), + [anon_sym_SLASH2] = ACTIONS(2549), + [anon_sym_mod2] = ACTIONS(2547), + [anon_sym_SLASH_SLASH2] = ACTIONS(2547), + [anon_sym_PLUS2] = ACTIONS(2549), + [anon_sym_bit_DASHshl2] = ACTIONS(2547), + [anon_sym_bit_DASHshr2] = ACTIONS(2547), + [anon_sym_bit_DASHand2] = ACTIONS(2547), + [anon_sym_bit_DASHxor2] = ACTIONS(2547), + [anon_sym_bit_DASHor2] = ACTIONS(2547), + [anon_sym_err_GT] = ACTIONS(2549), + [anon_sym_out_GT] = ACTIONS(2549), + [anon_sym_e_GT] = ACTIONS(2549), + [anon_sym_o_GT] = ACTIONS(2549), + [anon_sym_err_PLUSout_GT] = ACTIONS(2549), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2549), + [anon_sym_o_PLUSe_GT] = ACTIONS(2549), + [anon_sym_e_PLUSo_GT] = ACTIONS(2549), + [anon_sym_err_GT_GT] = ACTIONS(2547), + [anon_sym_out_GT_GT] = ACTIONS(2547), + [anon_sym_e_GT_GT] = ACTIONS(2547), + [anon_sym_o_GT_GT] = ACTIONS(2547), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2547), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2547), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2547), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2547), [anon_sym_POUND] = ACTIONS(3), }, [STATE(908)] = { + [aux_sym__repeat_newline] = STATE(908), [sym_comment] = STATE(908), - [anon_sym_in] = ACTIONS(1870), - [sym__newline] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_err_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_GT_PIPE] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1870), - [anon_sym_RPAREN] = ACTIONS(1870), - [anon_sym_GT2] = ACTIONS(1872), - [anon_sym_DASH2] = ACTIONS(1870), - [anon_sym_RBRACE] = ACTIONS(1870), - [anon_sym_STAR2] = ACTIONS(1872), - [anon_sym_and2] = ACTIONS(1870), - [anon_sym_xor2] = ACTIONS(1870), - [anon_sym_or2] = ACTIONS(1870), - [anon_sym_not_DASHin2] = ACTIONS(1870), - [anon_sym_has2] = ACTIONS(1870), - [anon_sym_not_DASHhas2] = ACTIONS(1870), - [anon_sym_starts_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1870), - [anon_sym_ends_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1870), - [anon_sym_EQ_EQ2] = ACTIONS(1870), - [anon_sym_BANG_EQ2] = ACTIONS(1870), - [anon_sym_LT2] = ACTIONS(1872), - [anon_sym_LT_EQ2] = ACTIONS(1870), - [anon_sym_GT_EQ2] = ACTIONS(1870), - [anon_sym_EQ_TILDE2] = ACTIONS(1870), - [anon_sym_BANG_TILDE2] = ACTIONS(1870), - [anon_sym_like2] = ACTIONS(1870), - [anon_sym_not_DASHlike2] = ACTIONS(1870), - [anon_sym_LPAREN2] = ACTIONS(1870), - [anon_sym_STAR_STAR2] = ACTIONS(1870), - [anon_sym_PLUS_PLUS2] = ACTIONS(1870), - [anon_sym_SLASH2] = ACTIONS(1872), - [anon_sym_mod2] = ACTIONS(1870), - [anon_sym_SLASH_SLASH2] = ACTIONS(1870), - [anon_sym_PLUS2] = ACTIONS(1872), - [anon_sym_bit_DASHshl2] = ACTIONS(1870), - [anon_sym_bit_DASHshr2] = ACTIONS(1870), - [anon_sym_bit_DASHand2] = ACTIONS(1870), - [anon_sym_bit_DASHxor2] = ACTIONS(1870), - [anon_sym_bit_DASHor2] = ACTIONS(1870), - [anon_sym_err_GT] = ACTIONS(1872), - [anon_sym_out_GT] = ACTIONS(1872), - [anon_sym_e_GT] = ACTIONS(1872), - [anon_sym_o_GT] = ACTIONS(1872), - [anon_sym_err_PLUSout_GT] = ACTIONS(1872), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), - [anon_sym_o_PLUSe_GT] = ACTIONS(1872), - [anon_sym_e_PLUSo_GT] = ACTIONS(1872), - [anon_sym_err_GT_GT] = ACTIONS(1870), - [anon_sym_out_GT_GT] = ACTIONS(1870), - [anon_sym_e_GT_GT] = ACTIONS(1870), - [anon_sym_o_GT_GT] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1870), - [sym__unquoted_pattern] = ACTIONS(1872), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1940), + [anon_sym_alias] = ACTIONS(1935), + [anon_sym_let] = ACTIONS(1935), + [anon_sym_mut] = ACTIONS(1935), + [anon_sym_const] = ACTIONS(1935), + [aux_sym_cmd_identifier_token1] = ACTIONS(1940), + [anon_sym_def] = ACTIONS(1935), + [anon_sym_use] = ACTIONS(1935), + [anon_sym_export_DASHenv] = ACTIONS(1935), + [anon_sym_extern] = ACTIONS(1935), + [anon_sym_module] = ACTIONS(1935), + [anon_sym_for] = ACTIONS(1935), + [anon_sym_loop] = ACTIONS(1935), + [anon_sym_while] = ACTIONS(1935), + [anon_sym_if] = ACTIONS(1935), + [anon_sym_else] = ACTIONS(1935), + [anon_sym_try] = ACTIONS(1935), + [anon_sym_catch] = ACTIONS(1935), + [anon_sym_match] = ACTIONS(1935), + [anon_sym_in] = ACTIONS(1940), + [anon_sym_true] = ACTIONS(1935), + [anon_sym_false] = ACTIONS(1935), + [anon_sym_null] = ACTIONS(1935), + [aux_sym_cmd_identifier_token3] = ACTIONS(1935), + [aux_sym_cmd_identifier_token4] = ACTIONS(1935), + [aux_sym_cmd_identifier_token5] = ACTIONS(1935), + [sym__newline] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(1935), + [anon_sym_err_GT_PIPE] = ACTIONS(1935), + [anon_sym_out_GT_PIPE] = ACTIONS(1935), + [anon_sym_e_GT_PIPE] = ACTIONS(1935), + [anon_sym_o_GT_PIPE] = ACTIONS(1935), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1935), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1935), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1935), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1935), + [anon_sym_LBRACK] = ACTIONS(1935), + [anon_sym_LPAREN] = ACTIONS(1935), + [anon_sym_DOLLAR] = ACTIONS(1940), + [anon_sym_DASH2] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1935), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_where] = ACTIONS(1935), + [aux_sym_expr_unary_token1] = ACTIONS(1935), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1935), + [anon_sym_DOT_DOT_LT] = ACTIONS(1935), + [aux_sym__val_number_decimal_token1] = ACTIONS(1940), + [aux_sym__val_number_decimal_token2] = ACTIONS(1935), + [aux_sym__val_number_decimal_token3] = ACTIONS(1935), + [aux_sym__val_number_decimal_token4] = ACTIONS(1935), + [aux_sym__val_number_token1] = ACTIONS(1935), + [aux_sym__val_number_token2] = ACTIONS(1935), + [aux_sym__val_number_token3] = ACTIONS(1935), + [anon_sym_0b] = ACTIONS(1940), + [anon_sym_0o] = ACTIONS(1940), + [anon_sym_0x] = ACTIONS(1940), + [sym_val_date] = ACTIONS(1935), + [anon_sym_DQUOTE] = ACTIONS(1935), + [anon_sym_SQUOTE] = ACTIONS(1935), + [anon_sym_BQUOTE] = ACTIONS(1935), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1935), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1935), + [anon_sym_CARET] = ACTIONS(1935), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1935), }, [STATE(909)] = { [sym_comment] = STATE(909), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2525), + [sym__newline] = ACTIONS(2525), + [anon_sym_SEMI] = ACTIONS(2525), + [anon_sym_PIPE] = ACTIONS(2525), + [anon_sym_err_GT_PIPE] = ACTIONS(2525), + [anon_sym_out_GT_PIPE] = ACTIONS(2525), + [anon_sym_e_GT_PIPE] = ACTIONS(2525), + [anon_sym_o_GT_PIPE] = ACTIONS(2525), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2525), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2525), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2525), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2525), + [anon_sym_RPAREN] = ACTIONS(2525), + [anon_sym_GT2] = ACTIONS(2527), + [anon_sym_DASH2] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2525), + [anon_sym_RBRACE] = ACTIONS(2525), + [anon_sym_EQ_GT] = ACTIONS(2525), + [anon_sym_STAR2] = ACTIONS(2527), + [anon_sym_and2] = ACTIONS(2525), + [anon_sym_xor2] = ACTIONS(2525), + [anon_sym_or2] = ACTIONS(2525), + [anon_sym_not_DASHin2] = ACTIONS(2525), + [anon_sym_has2] = ACTIONS(2525), + [anon_sym_not_DASHhas2] = ACTIONS(2525), + [anon_sym_starts_DASHwith2] = ACTIONS(2525), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2525), + [anon_sym_ends_DASHwith2] = ACTIONS(2525), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2525), + [anon_sym_EQ_EQ2] = ACTIONS(2525), + [anon_sym_BANG_EQ2] = ACTIONS(2525), + [anon_sym_LT2] = ACTIONS(2527), + [anon_sym_LT_EQ2] = ACTIONS(2525), + [anon_sym_GT_EQ2] = ACTIONS(2525), + [anon_sym_EQ_TILDE2] = ACTIONS(2525), + [anon_sym_BANG_TILDE2] = ACTIONS(2525), + [anon_sym_like2] = ACTIONS(2525), + [anon_sym_not_DASHlike2] = ACTIONS(2525), + [anon_sym_STAR_STAR2] = ACTIONS(2525), + [anon_sym_PLUS_PLUS2] = ACTIONS(2525), + [anon_sym_SLASH2] = ACTIONS(2527), + [anon_sym_mod2] = ACTIONS(2525), + [anon_sym_SLASH_SLASH2] = ACTIONS(2525), + [anon_sym_PLUS2] = ACTIONS(2527), + [anon_sym_bit_DASHshl2] = ACTIONS(2525), + [anon_sym_bit_DASHshr2] = ACTIONS(2525), + [anon_sym_bit_DASHand2] = ACTIONS(2525), + [anon_sym_bit_DASHxor2] = ACTIONS(2525), + [anon_sym_bit_DASHor2] = ACTIONS(2525), + [anon_sym_err_GT] = ACTIONS(2527), + [anon_sym_out_GT] = ACTIONS(2527), + [anon_sym_e_GT] = ACTIONS(2527), + [anon_sym_o_GT] = ACTIONS(2527), + [anon_sym_err_PLUSout_GT] = ACTIONS(2527), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2527), + [anon_sym_o_PLUSe_GT] = ACTIONS(2527), + [anon_sym_e_PLUSo_GT] = ACTIONS(2527), + [anon_sym_err_GT_GT] = ACTIONS(2525), + [anon_sym_out_GT_GT] = ACTIONS(2525), + [anon_sym_e_GT_GT] = ACTIONS(2525), + [anon_sym_o_GT_GT] = ACTIONS(2525), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2525), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2525), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2525), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2525), [anon_sym_POUND] = ACTIONS(3), }, [STATE(910)] = { + [aux_sym__repeat_newline] = STATE(965), + [sym__expression_parenthesized] = STATE(4386), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2115), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1826), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), [sym_comment] = STATE(910), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2533), + [anon_sym_true] = ACTIONS(2535), + [anon_sym_false] = ACTIONS(2535), + [anon_sym_null] = ACTIONS(2537), + [aux_sym_cmd_identifier_token3] = ACTIONS(2539), + [aux_sym_cmd_identifier_token4] = ACTIONS(2539), + [aux_sym_cmd_identifier_token5] = ACTIONS(2539), + [sym__newline] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1976), + [aux_sym__val_number_decimal_token3] = ACTIONS(2543), + [aux_sym__val_number_decimal_token4] = ACTIONS(2543), + [aux_sym__val_number_token1] = ACTIONS(2539), + [aux_sym__val_number_token2] = ACTIONS(2539), + [aux_sym__val_number_token3] = ACTIONS(2539), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2545), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(911)] = { [sym_comment] = STATE(911), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(912)] = { - [aux_sym__repeat_newline] = STATE(964), [sym_comment] = STATE(912), - [anon_sym_export] = ACTIONS(2527), - [anon_sym_alias] = ACTIONS(2529), - [anon_sym_let] = ACTIONS(2529), - [anon_sym_mut] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [aux_sym_cmd_identifier_token1] = ACTIONS(2527), - [anon_sym_def] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_export_DASHenv] = ACTIONS(2529), - [anon_sym_extern] = ACTIONS(2529), - [anon_sym_module] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_loop] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_else] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [anon_sym_catch] = ACTIONS(2529), - [anon_sym_match] = ACTIONS(2529), - [anon_sym_in] = ACTIONS(2527), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_null] = ACTIONS(2529), - [aux_sym_cmd_identifier_token3] = ACTIONS(2529), - [aux_sym_cmd_identifier_token4] = ACTIONS(2529), - [aux_sym_cmd_identifier_token5] = ACTIONS(2529), - [sym__newline] = ACTIONS(2301), - [anon_sym_PIPE] = ACTIONS(2531), - [anon_sym_err_GT_PIPE] = ACTIONS(2531), - [anon_sym_out_GT_PIPE] = ACTIONS(2531), - [anon_sym_e_GT_PIPE] = ACTIONS(2531), - [anon_sym_o_GT_PIPE] = ACTIONS(2531), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2531), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2531), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2531), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2531), - [anon_sym_LBRACK] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2529), - [anon_sym_DOLLAR] = ACTIONS(2527), - [anon_sym_DASH2] = ACTIONS(2527), - [anon_sym_LBRACE] = ACTIONS(2529), - [anon_sym_DOT_DOT] = ACTIONS(2527), - [anon_sym_where] = ACTIONS(2529), - [aux_sym_expr_unary_token1] = ACTIONS(2529), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2529), - [anon_sym_DOT_DOT_LT] = ACTIONS(2529), - [aux_sym__val_number_decimal_token1] = ACTIONS(2527), - [aux_sym__val_number_decimal_token2] = ACTIONS(2529), - [aux_sym__val_number_decimal_token3] = ACTIONS(2529), - [aux_sym__val_number_decimal_token4] = ACTIONS(2529), - [aux_sym__val_number_token1] = ACTIONS(2529), - [aux_sym__val_number_token2] = ACTIONS(2529), - [aux_sym__val_number_token3] = ACTIONS(2529), - [anon_sym_0b] = ACTIONS(2527), - [anon_sym_0o] = ACTIONS(2527), - [anon_sym_0x] = ACTIONS(2527), - [sym_val_date] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2529), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_BQUOTE] = ACTIONS(2529), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2529), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2529), - [anon_sym_CARET] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2529), + [ts_builtin_sym_end] = ACTIONS(1689), + [anon_sym_in] = ACTIONS(1689), + [sym__newline] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1689), + [anon_sym_err_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_GT_PIPE] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), + [anon_sym_GT2] = ACTIONS(1615), + [anon_sym_DASH2] = ACTIONS(1689), + [anon_sym_STAR2] = ACTIONS(1615), + [anon_sym_and2] = ACTIONS(1689), + [anon_sym_xor2] = ACTIONS(1689), + [anon_sym_or2] = ACTIONS(1689), + [anon_sym_not_DASHin2] = ACTIONS(1689), + [anon_sym_has2] = ACTIONS(1689), + [anon_sym_not_DASHhas2] = ACTIONS(1689), + [anon_sym_starts_DASHwith2] = ACTIONS(1689), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1689), + [anon_sym_ends_DASHwith2] = ACTIONS(1689), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1689), + [anon_sym_EQ_EQ2] = ACTIONS(1689), + [anon_sym_BANG_EQ2] = ACTIONS(1689), + [anon_sym_LT2] = ACTIONS(1615), + [anon_sym_LT_EQ2] = ACTIONS(1689), + [anon_sym_GT_EQ2] = ACTIONS(1689), + [anon_sym_EQ_TILDE2] = ACTIONS(1689), + [anon_sym_BANG_TILDE2] = ACTIONS(1689), + [anon_sym_like2] = ACTIONS(1689), + [anon_sym_not_DASHlike2] = ACTIONS(1689), + [anon_sym_STAR_STAR2] = ACTIONS(1689), + [anon_sym_PLUS_PLUS2] = ACTIONS(1689), + [anon_sym_SLASH2] = ACTIONS(1615), + [anon_sym_mod2] = ACTIONS(1689), + [anon_sym_SLASH_SLASH2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(1615), + [anon_sym_bit_DASHshl2] = ACTIONS(1689), + [anon_sym_bit_DASHshr2] = ACTIONS(1689), + [anon_sym_bit_DASHand2] = ACTIONS(1689), + [anon_sym_bit_DASHxor2] = ACTIONS(1689), + [anon_sym_bit_DASHor2] = ACTIONS(1689), + [anon_sym_DOT_DOT2] = ACTIONS(1720), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1722), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1722), + [anon_sym_err_GT] = ACTIONS(1615), + [anon_sym_out_GT] = ACTIONS(1615), + [anon_sym_e_GT] = ACTIONS(1615), + [anon_sym_o_GT] = ACTIONS(1615), + [anon_sym_err_PLUSout_GT] = ACTIONS(1615), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), + [anon_sym_o_PLUSe_GT] = ACTIONS(1615), + [anon_sym_e_PLUSo_GT] = ACTIONS(1615), + [anon_sym_err_GT_GT] = ACTIONS(1689), + [anon_sym_out_GT_GT] = ACTIONS(1689), + [anon_sym_e_GT_GT] = ACTIONS(1689), + [anon_sym_o_GT_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(913)] = { [sym_comment] = STATE(913), - [anon_sym_in] = ACTIONS(2533), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2535), - [anon_sym_DASH2] = ACTIONS(2533), - [anon_sym_LBRACE] = ACTIONS(2533), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_EQ_GT] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2535), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2533), - [anon_sym_has2] = ACTIONS(2533), - [anon_sym_not_DASHhas2] = ACTIONS(2533), - [anon_sym_starts_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), - [anon_sym_ends_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), - [anon_sym_EQ_EQ2] = ACTIONS(2533), - [anon_sym_BANG_EQ2] = ACTIONS(2533), - [anon_sym_LT2] = ACTIONS(2535), - [anon_sym_LT_EQ2] = ACTIONS(2533), - [anon_sym_GT_EQ2] = ACTIONS(2533), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), - [anon_sym_STAR_STAR2] = ACTIONS(2533), - [anon_sym_PLUS_PLUS2] = ACTIONS(2533), - [anon_sym_SLASH2] = ACTIONS(2535), - [anon_sym_mod2] = ACTIONS(2533), - [anon_sym_SLASH_SLASH2] = ACTIONS(2533), - [anon_sym_PLUS2] = ACTIONS(2535), - [anon_sym_bit_DASHshl2] = ACTIONS(2533), - [anon_sym_bit_DASHshr2] = ACTIONS(2533), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(914)] = { [sym_comment] = STATE(914), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(1689), + [sym__newline] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1689), + [anon_sym_err_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_GT_PIPE] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), + [anon_sym_RPAREN] = ACTIONS(1689), + [anon_sym_GT2] = ACTIONS(1615), + [anon_sym_DASH2] = ACTIONS(1689), + [anon_sym_RBRACE] = ACTIONS(1689), + [anon_sym_STAR2] = ACTIONS(1615), + [anon_sym_and2] = ACTIONS(1689), + [anon_sym_xor2] = ACTIONS(1689), + [anon_sym_or2] = ACTIONS(1689), + [anon_sym_not_DASHin2] = ACTIONS(1689), + [anon_sym_has2] = ACTIONS(1689), + [anon_sym_not_DASHhas2] = ACTIONS(1689), + [anon_sym_starts_DASHwith2] = ACTIONS(1689), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1689), + [anon_sym_ends_DASHwith2] = ACTIONS(1689), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1689), + [anon_sym_EQ_EQ2] = ACTIONS(1689), + [anon_sym_BANG_EQ2] = ACTIONS(1689), + [anon_sym_LT2] = ACTIONS(1615), + [anon_sym_LT_EQ2] = ACTIONS(1689), + [anon_sym_GT_EQ2] = ACTIONS(1689), + [anon_sym_EQ_TILDE2] = ACTIONS(1689), + [anon_sym_BANG_TILDE2] = ACTIONS(1689), + [anon_sym_like2] = ACTIONS(1689), + [anon_sym_not_DASHlike2] = ACTIONS(1689), + [anon_sym_LPAREN2] = ACTIONS(2554), + [anon_sym_STAR_STAR2] = ACTIONS(1689), + [anon_sym_PLUS_PLUS2] = ACTIONS(1689), + [anon_sym_SLASH2] = ACTIONS(1615), + [anon_sym_mod2] = ACTIONS(1689), + [anon_sym_SLASH_SLASH2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(1615), + [anon_sym_bit_DASHshl2] = ACTIONS(1689), + [anon_sym_bit_DASHshr2] = ACTIONS(1689), + [anon_sym_bit_DASHand2] = ACTIONS(1689), + [anon_sym_bit_DASHxor2] = ACTIONS(1689), + [anon_sym_bit_DASHor2] = ACTIONS(1689), + [anon_sym_err_GT] = ACTIONS(1615), + [anon_sym_out_GT] = ACTIONS(1615), + [anon_sym_e_GT] = ACTIONS(1615), + [anon_sym_o_GT] = ACTIONS(1615), + [anon_sym_err_PLUSout_GT] = ACTIONS(1615), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), + [anon_sym_o_PLUSe_GT] = ACTIONS(1615), + [anon_sym_e_PLUSo_GT] = ACTIONS(1615), + [anon_sym_err_GT_GT] = ACTIONS(1689), + [anon_sym_out_GT_GT] = ACTIONS(1689), + [anon_sym_e_GT_GT] = ACTIONS(1689), + [anon_sym_o_GT_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), + [sym__unquoted_pattern] = ACTIONS(2556), [anon_sym_POUND] = ACTIONS(3), }, [STATE(915)] = { [sym_comment] = STATE(915), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(916)] = { [sym_comment] = STATE(916), - [anon_sym_in] = ACTIONS(2537), - [sym__newline] = ACTIONS(2537), - [anon_sym_SEMI] = ACTIONS(2537), - [anon_sym_PIPE] = ACTIONS(2537), - [anon_sym_err_GT_PIPE] = ACTIONS(2537), - [anon_sym_out_GT_PIPE] = ACTIONS(2537), - [anon_sym_e_GT_PIPE] = ACTIONS(2537), - [anon_sym_o_GT_PIPE] = ACTIONS(2537), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2537), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2537), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2537), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2537), - [anon_sym_RPAREN] = ACTIONS(2537), - [anon_sym_GT2] = ACTIONS(2539), - [anon_sym_DASH2] = ACTIONS(2537), - [anon_sym_LBRACE] = ACTIONS(2537), - [anon_sym_RBRACE] = ACTIONS(2537), - [anon_sym_EQ_GT] = ACTIONS(2537), - [anon_sym_STAR2] = ACTIONS(2539), - [anon_sym_and2] = ACTIONS(2537), - [anon_sym_xor2] = ACTIONS(2537), - [anon_sym_or2] = ACTIONS(2537), - [anon_sym_not_DASHin2] = ACTIONS(2537), - [anon_sym_has2] = ACTIONS(2537), - [anon_sym_not_DASHhas2] = ACTIONS(2537), - [anon_sym_starts_DASHwith2] = ACTIONS(2537), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2537), - [anon_sym_ends_DASHwith2] = ACTIONS(2537), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2537), - [anon_sym_EQ_EQ2] = ACTIONS(2537), - [anon_sym_BANG_EQ2] = ACTIONS(2537), - [anon_sym_LT2] = ACTIONS(2539), - [anon_sym_LT_EQ2] = ACTIONS(2537), - [anon_sym_GT_EQ2] = ACTIONS(2537), - [anon_sym_EQ_TILDE2] = ACTIONS(2537), - [anon_sym_BANG_TILDE2] = ACTIONS(2537), - [anon_sym_like2] = ACTIONS(2537), - [anon_sym_not_DASHlike2] = ACTIONS(2537), - [anon_sym_STAR_STAR2] = ACTIONS(2537), - [anon_sym_PLUS_PLUS2] = ACTIONS(2537), - [anon_sym_SLASH2] = ACTIONS(2539), - [anon_sym_mod2] = ACTIONS(2537), - [anon_sym_SLASH_SLASH2] = ACTIONS(2537), - [anon_sym_PLUS2] = ACTIONS(2539), - [anon_sym_bit_DASHshl2] = ACTIONS(2537), - [anon_sym_bit_DASHshr2] = ACTIONS(2537), - [anon_sym_bit_DASHand2] = ACTIONS(2537), - [anon_sym_bit_DASHxor2] = ACTIONS(2537), - [anon_sym_bit_DASHor2] = ACTIONS(2537), - [anon_sym_err_GT] = ACTIONS(2539), - [anon_sym_out_GT] = ACTIONS(2539), - [anon_sym_e_GT] = ACTIONS(2539), - [anon_sym_o_GT] = ACTIONS(2539), - [anon_sym_err_PLUSout_GT] = ACTIONS(2539), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2539), - [anon_sym_o_PLUSe_GT] = ACTIONS(2539), - [anon_sym_e_PLUSo_GT] = ACTIONS(2539), - [anon_sym_err_GT_GT] = ACTIONS(2537), - [anon_sym_out_GT_GT] = ACTIONS(2537), - [anon_sym_e_GT_GT] = ACTIONS(2537), - [anon_sym_o_GT_GT] = ACTIONS(2537), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2537), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2537), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2537), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2537), + [anon_sym_in] = ACTIONS(2558), + [sym__newline] = ACTIONS(2558), + [anon_sym_SEMI] = ACTIONS(2558), + [anon_sym_PIPE] = ACTIONS(2558), + [anon_sym_err_GT_PIPE] = ACTIONS(2558), + [anon_sym_out_GT_PIPE] = ACTIONS(2558), + [anon_sym_e_GT_PIPE] = ACTIONS(2558), + [anon_sym_o_GT_PIPE] = ACTIONS(2558), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2558), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2558), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2558), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2558), + [anon_sym_RPAREN] = ACTIONS(2558), + [anon_sym_GT2] = ACTIONS(2560), + [anon_sym_DASH2] = ACTIONS(2558), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_RBRACE] = ACTIONS(2558), + [anon_sym_EQ_GT] = ACTIONS(2558), + [anon_sym_STAR2] = ACTIONS(2560), + [anon_sym_and2] = ACTIONS(2558), + [anon_sym_xor2] = ACTIONS(2558), + [anon_sym_or2] = ACTIONS(2558), + [anon_sym_not_DASHin2] = ACTIONS(2558), + [anon_sym_has2] = ACTIONS(2558), + [anon_sym_not_DASHhas2] = ACTIONS(2558), + [anon_sym_starts_DASHwith2] = ACTIONS(2558), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2558), + [anon_sym_ends_DASHwith2] = ACTIONS(2558), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2558), + [anon_sym_EQ_EQ2] = ACTIONS(2558), + [anon_sym_BANG_EQ2] = ACTIONS(2558), + [anon_sym_LT2] = ACTIONS(2560), + [anon_sym_LT_EQ2] = ACTIONS(2558), + [anon_sym_GT_EQ2] = ACTIONS(2558), + [anon_sym_EQ_TILDE2] = ACTIONS(2558), + [anon_sym_BANG_TILDE2] = ACTIONS(2558), + [anon_sym_like2] = ACTIONS(2558), + [anon_sym_not_DASHlike2] = ACTIONS(2558), + [anon_sym_STAR_STAR2] = ACTIONS(2558), + [anon_sym_PLUS_PLUS2] = ACTIONS(2558), + [anon_sym_SLASH2] = ACTIONS(2560), + [anon_sym_mod2] = ACTIONS(2558), + [anon_sym_SLASH_SLASH2] = ACTIONS(2558), + [anon_sym_PLUS2] = ACTIONS(2560), + [anon_sym_bit_DASHshl2] = ACTIONS(2558), + [anon_sym_bit_DASHshr2] = ACTIONS(2558), + [anon_sym_bit_DASHand2] = ACTIONS(2558), + [anon_sym_bit_DASHxor2] = ACTIONS(2558), + [anon_sym_bit_DASHor2] = ACTIONS(2558), + [anon_sym_err_GT] = ACTIONS(2560), + [anon_sym_out_GT] = ACTIONS(2560), + [anon_sym_e_GT] = ACTIONS(2560), + [anon_sym_o_GT] = ACTIONS(2560), + [anon_sym_err_PLUSout_GT] = ACTIONS(2560), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2560), + [anon_sym_o_PLUSe_GT] = ACTIONS(2560), + [anon_sym_e_PLUSo_GT] = ACTIONS(2560), + [anon_sym_err_GT_GT] = ACTIONS(2558), + [anon_sym_out_GT_GT] = ACTIONS(2558), + [anon_sym_e_GT_GT] = ACTIONS(2558), + [anon_sym_o_GT_GT] = ACTIONS(2558), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2558), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2558), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2558), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2558), [anon_sym_POUND] = ACTIONS(3), }, [STATE(917)] = { [sym_comment] = STATE(917), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(918)] = { [sym_comment] = STATE(918), - [ts_builtin_sym_end] = ACTIONS(2100), - [anon_sym_in] = ACTIONS(2100), - [sym__newline] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_err_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_GT_PIPE] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2100), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2100), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2100), - [anon_sym_xor2] = ACTIONS(2100), - [anon_sym_or2] = ACTIONS(2100), - [anon_sym_not_DASHin2] = ACTIONS(2100), - [anon_sym_has2] = ACTIONS(2100), - [anon_sym_not_DASHhas2] = ACTIONS(2100), - [anon_sym_starts_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2100), - [anon_sym_ends_DASHwith2] = ACTIONS(2100), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2100), - [anon_sym_EQ_EQ2] = ACTIONS(2100), - [anon_sym_BANG_EQ2] = ACTIONS(2100), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2100), - [anon_sym_GT_EQ2] = ACTIONS(2100), - [anon_sym_EQ_TILDE2] = ACTIONS(2100), - [anon_sym_BANG_TILDE2] = ACTIONS(2100), - [anon_sym_like2] = ACTIONS(2100), - [anon_sym_not_DASHlike2] = ACTIONS(2100), - [anon_sym_STAR_STAR2] = ACTIONS(2100), - [anon_sym_PLUS_PLUS2] = ACTIONS(2100), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2100), - [anon_sym_SLASH_SLASH2] = ACTIONS(2100), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2100), - [anon_sym_bit_DASHshr2] = ACTIONS(2100), - [anon_sym_bit_DASHand2] = ACTIONS(2100), - [anon_sym_bit_DASHxor2] = ACTIONS(2100), - [anon_sym_bit_DASHor2] = ACTIONS(2100), - [anon_sym_DOT_DOT2] = ACTIONS(2541), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2543), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2543), - [anon_sym_err_GT] = ACTIONS(2102), - [anon_sym_out_GT] = ACTIONS(2102), - [anon_sym_e_GT] = ACTIONS(2102), - [anon_sym_o_GT] = ACTIONS(2102), - [anon_sym_err_PLUSout_GT] = ACTIONS(2102), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2102), - [anon_sym_o_PLUSe_GT] = ACTIONS(2102), - [anon_sym_e_PLUSo_GT] = ACTIONS(2102), - [anon_sym_err_GT_GT] = ACTIONS(2100), - [anon_sym_out_GT_GT] = ACTIONS(2100), - [anon_sym_e_GT_GT] = ACTIONS(2100), - [anon_sym_o_GT_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2100), + [anon_sym_in] = ACTIONS(2562), + [sym__newline] = ACTIONS(2562), + [anon_sym_SEMI] = ACTIONS(2562), + [anon_sym_PIPE] = ACTIONS(2562), + [anon_sym_err_GT_PIPE] = ACTIONS(2562), + [anon_sym_out_GT_PIPE] = ACTIONS(2562), + [anon_sym_e_GT_PIPE] = ACTIONS(2562), + [anon_sym_o_GT_PIPE] = ACTIONS(2562), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2562), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2562), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2562), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2562), + [anon_sym_RPAREN] = ACTIONS(2562), + [anon_sym_GT2] = ACTIONS(2564), + [anon_sym_DASH2] = ACTIONS(2562), + [anon_sym_RBRACE] = ACTIONS(2562), + [anon_sym_STAR2] = ACTIONS(2564), + [anon_sym_and2] = ACTIONS(2562), + [anon_sym_xor2] = ACTIONS(2562), + [anon_sym_or2] = ACTIONS(2562), + [anon_sym_not_DASHin2] = ACTIONS(2562), + [anon_sym_has2] = ACTIONS(2562), + [anon_sym_not_DASHhas2] = ACTIONS(2562), + [anon_sym_starts_DASHwith2] = ACTIONS(2562), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2562), + [anon_sym_ends_DASHwith2] = ACTIONS(2562), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2562), + [anon_sym_EQ_EQ2] = ACTIONS(2562), + [anon_sym_BANG_EQ2] = ACTIONS(2562), + [anon_sym_LT2] = ACTIONS(2564), + [anon_sym_LT_EQ2] = ACTIONS(2562), + [anon_sym_GT_EQ2] = ACTIONS(2562), + [anon_sym_EQ_TILDE2] = ACTIONS(2562), + [anon_sym_BANG_TILDE2] = ACTIONS(2562), + [anon_sym_like2] = ACTIONS(2562), + [anon_sym_not_DASHlike2] = ACTIONS(2562), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_STAR_STAR2] = ACTIONS(2562), + [anon_sym_PLUS_PLUS2] = ACTIONS(2562), + [anon_sym_SLASH2] = ACTIONS(2564), + [anon_sym_mod2] = ACTIONS(2562), + [anon_sym_SLASH_SLASH2] = ACTIONS(2562), + [anon_sym_PLUS2] = ACTIONS(2564), + [anon_sym_bit_DASHshl2] = ACTIONS(2562), + [anon_sym_bit_DASHshr2] = ACTIONS(2562), + [anon_sym_bit_DASHand2] = ACTIONS(2562), + [anon_sym_bit_DASHxor2] = ACTIONS(2562), + [anon_sym_bit_DASHor2] = ACTIONS(2562), + [anon_sym_err_GT] = ACTIONS(2564), + [anon_sym_out_GT] = ACTIONS(2564), + [anon_sym_e_GT] = ACTIONS(2564), + [anon_sym_o_GT] = ACTIONS(2564), + [anon_sym_err_PLUSout_GT] = ACTIONS(2564), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2564), + [anon_sym_o_PLUSe_GT] = ACTIONS(2564), + [anon_sym_e_PLUSo_GT] = ACTIONS(2564), + [anon_sym_err_GT_GT] = ACTIONS(2562), + [anon_sym_out_GT_GT] = ACTIONS(2562), + [anon_sym_e_GT_GT] = ACTIONS(2562), + [anon_sym_o_GT_GT] = ACTIONS(2562), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2562), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2562), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2562), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2562), + [sym__unquoted_pattern] = ACTIONS(2568), [anon_sym_POUND] = ACTIONS(3), }, [STATE(919)] = { [sym_comment] = STATE(919), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(920)] = { - [sym_comment] = STATE(920), [ts_builtin_sym_end] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(2076), + [anon_sym_in] = ACTIONS(2074), [sym__newline] = ACTIONS(2076), [anon_sym_SEMI] = ACTIONS(2076), [anon_sym_PIPE] = ACTIONS(2076), @@ -115955,49 +116091,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2076), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2076), [anon_sym_GT2] = ACTIONS(2078), - [anon_sym_DASH2] = ACTIONS(2076), + [anon_sym_DASH2] = ACTIONS(2074), [anon_sym_STAR2] = ACTIONS(2078), - [anon_sym_and2] = ACTIONS(2076), - [anon_sym_xor2] = ACTIONS(2076), - [anon_sym_or2] = ACTIONS(2076), - [anon_sym_not_DASHin2] = ACTIONS(2076), - [anon_sym_has2] = ACTIONS(2076), - [anon_sym_not_DASHhas2] = ACTIONS(2076), - [anon_sym_starts_DASHwith2] = ACTIONS(2076), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2076), - [anon_sym_ends_DASHwith2] = ACTIONS(2076), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2076), - [anon_sym_EQ_EQ2] = ACTIONS(2076), - [anon_sym_BANG_EQ2] = ACTIONS(2076), + [anon_sym_and2] = ACTIONS(2074), + [anon_sym_xor2] = ACTIONS(2074), + [anon_sym_or2] = ACTIONS(2074), + [anon_sym_not_DASHin2] = ACTIONS(2074), + [anon_sym_has2] = ACTIONS(2074), + [anon_sym_not_DASHhas2] = ACTIONS(2074), + [anon_sym_starts_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2074), + [anon_sym_ends_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2074), + [anon_sym_EQ_EQ2] = ACTIONS(2074), + [anon_sym_BANG_EQ2] = ACTIONS(2074), [anon_sym_LT2] = ACTIONS(2078), - [anon_sym_LT_EQ2] = ACTIONS(2076), - [anon_sym_GT_EQ2] = ACTIONS(2076), - [anon_sym_EQ_TILDE2] = ACTIONS(2076), - [anon_sym_BANG_TILDE2] = ACTIONS(2076), - [anon_sym_like2] = ACTIONS(2076), - [anon_sym_not_DASHlike2] = ACTIONS(2076), - [anon_sym_STAR_STAR2] = ACTIONS(2076), - [anon_sym_PLUS_PLUS2] = ACTIONS(2076), + [anon_sym_LT_EQ2] = ACTIONS(2074), + [anon_sym_GT_EQ2] = ACTIONS(2074), + [anon_sym_EQ_TILDE2] = ACTIONS(2074), + [anon_sym_BANG_TILDE2] = ACTIONS(2074), + [anon_sym_like2] = ACTIONS(2074), + [anon_sym_not_DASHlike2] = ACTIONS(2074), + [anon_sym_STAR_STAR2] = ACTIONS(2074), + [anon_sym_PLUS_PLUS2] = ACTIONS(2074), [anon_sym_SLASH2] = ACTIONS(2078), - [anon_sym_mod2] = ACTIONS(2076), - [anon_sym_SLASH_SLASH2] = ACTIONS(2076), + [anon_sym_mod2] = ACTIONS(2074), + [anon_sym_SLASH_SLASH2] = ACTIONS(2074), [anon_sym_PLUS2] = ACTIONS(2078), - [anon_sym_bit_DASHshl2] = ACTIONS(2076), - [anon_sym_bit_DASHshr2] = ACTIONS(2076), - [anon_sym_bit_DASHand2] = ACTIONS(2076), - [anon_sym_bit_DASHxor2] = ACTIONS(2076), - [anon_sym_bit_DASHor2] = ACTIONS(2076), - [anon_sym_DOT_DOT2] = ACTIONS(2545), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2547), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2547), - [anon_sym_err_GT] = ACTIONS(2078), - [anon_sym_out_GT] = ACTIONS(2078), - [anon_sym_e_GT] = ACTIONS(2078), - [anon_sym_o_GT] = ACTIONS(2078), - [anon_sym_err_PLUSout_GT] = ACTIONS(2078), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2078), - [anon_sym_o_PLUSe_GT] = ACTIONS(2078), - [anon_sym_e_PLUSo_GT] = ACTIONS(2078), + [anon_sym_bit_DASHshl2] = ACTIONS(2074), + [anon_sym_bit_DASHshr2] = ACTIONS(2074), + [anon_sym_bit_DASHand2] = ACTIONS(2074), + [anon_sym_bit_DASHxor2] = ACTIONS(2074), + [anon_sym_bit_DASHor2] = ACTIONS(2074), + [anon_sym_DOT_DOT2] = ACTIONS(1720), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1722), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1722), + [anon_sym_err_GT] = ACTIONS(2080), + [anon_sym_out_GT] = ACTIONS(2080), + [anon_sym_e_GT] = ACTIONS(2080), + [anon_sym_o_GT] = ACTIONS(2080), + [anon_sym_err_PLUSout_GT] = ACTIONS(2080), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2080), + [anon_sym_o_PLUSe_GT] = ACTIONS(2080), + [anon_sym_e_PLUSo_GT] = ACTIONS(2080), [anon_sym_err_GT_GT] = ACTIONS(2076), [anon_sym_out_GT_GT] = ACTIONS(2076), [anon_sym_e_GT_GT] = ACTIONS(2076), @@ -116008,1596 +116144,562 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2076), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(920)] = { + [sym_comment] = STATE(920), + [anon_sym_in] = ACTIONS(994), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_RPAREN] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(996), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(996), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(996), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_LPAREN2] = ACTIONS(2570), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(996), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(996), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), + [anon_sym_err_GT] = ACTIONS(996), + [anon_sym_out_GT] = ACTIONS(996), + [anon_sym_e_GT] = ACTIONS(996), + [anon_sym_o_GT] = ACTIONS(996), + [anon_sym_err_PLUSout_GT] = ACTIONS(996), + [anon_sym_out_PLUSerr_GT] = ACTIONS(996), + [anon_sym_o_PLUSe_GT] = ACTIONS(996), + [anon_sym_e_PLUSo_GT] = ACTIONS(996), + [anon_sym_err_GT_GT] = ACTIONS(994), + [anon_sym_out_GT_GT] = ACTIONS(994), + [anon_sym_e_GT_GT] = ACTIONS(994), + [anon_sym_o_GT_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), + [sym__unquoted_pattern] = ACTIONS(2572), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(921)] = { - [aux_sym__repeat_newline] = STATE(978), - [sym__expression_parenthesized] = STATE(4196), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), [sym_comment] = STATE(921), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [sym__newline] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_in] = ACTIONS(2574), + [sym__newline] = ACTIONS(2574), + [anon_sym_SEMI] = ACTIONS(2574), + [anon_sym_PIPE] = ACTIONS(2574), + [anon_sym_err_GT_PIPE] = ACTIONS(2574), + [anon_sym_out_GT_PIPE] = ACTIONS(2574), + [anon_sym_e_GT_PIPE] = ACTIONS(2574), + [anon_sym_o_GT_PIPE] = ACTIONS(2574), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2574), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2574), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2574), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2574), + [anon_sym_RPAREN] = ACTIONS(2574), + [anon_sym_GT2] = ACTIONS(2576), + [anon_sym_DASH2] = ACTIONS(2574), + [anon_sym_LBRACE] = ACTIONS(2574), + [anon_sym_RBRACE] = ACTIONS(2574), + [anon_sym_EQ_GT] = ACTIONS(2574), + [anon_sym_STAR2] = ACTIONS(2576), + [anon_sym_and2] = ACTIONS(2574), + [anon_sym_xor2] = ACTIONS(2574), + [anon_sym_or2] = ACTIONS(2574), + [anon_sym_not_DASHin2] = ACTIONS(2574), + [anon_sym_has2] = ACTIONS(2574), + [anon_sym_not_DASHhas2] = ACTIONS(2574), + [anon_sym_starts_DASHwith2] = ACTIONS(2574), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2574), + [anon_sym_ends_DASHwith2] = ACTIONS(2574), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2574), + [anon_sym_EQ_EQ2] = ACTIONS(2574), + [anon_sym_BANG_EQ2] = ACTIONS(2574), + [anon_sym_LT2] = ACTIONS(2576), + [anon_sym_LT_EQ2] = ACTIONS(2574), + [anon_sym_GT_EQ2] = ACTIONS(2574), + [anon_sym_EQ_TILDE2] = ACTIONS(2574), + [anon_sym_BANG_TILDE2] = ACTIONS(2574), + [anon_sym_like2] = ACTIONS(2574), + [anon_sym_not_DASHlike2] = ACTIONS(2574), + [anon_sym_STAR_STAR2] = ACTIONS(2574), + [anon_sym_PLUS_PLUS2] = ACTIONS(2574), + [anon_sym_SLASH2] = ACTIONS(2576), + [anon_sym_mod2] = ACTIONS(2574), + [anon_sym_SLASH_SLASH2] = ACTIONS(2574), + [anon_sym_PLUS2] = ACTIONS(2576), + [anon_sym_bit_DASHshl2] = ACTIONS(2574), + [anon_sym_bit_DASHshr2] = ACTIONS(2574), + [anon_sym_bit_DASHand2] = ACTIONS(2574), + [anon_sym_bit_DASHxor2] = ACTIONS(2574), + [anon_sym_bit_DASHor2] = ACTIONS(2574), + [anon_sym_err_GT] = ACTIONS(2576), + [anon_sym_out_GT] = ACTIONS(2576), + [anon_sym_e_GT] = ACTIONS(2576), + [anon_sym_o_GT] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT] = ACTIONS(2576), + [anon_sym_err_GT_GT] = ACTIONS(2574), + [anon_sym_out_GT_GT] = ACTIONS(2574), + [anon_sym_e_GT_GT] = ACTIONS(2574), + [anon_sym_o_GT_GT] = ACTIONS(2574), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2574), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2574), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2574), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2574), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(922)] = { [sym_comment] = STATE(922), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_EQ_GT] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(1689), + [sym__newline] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1689), + [anon_sym_err_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_GT_PIPE] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), + [anon_sym_RPAREN] = ACTIONS(1689), + [anon_sym_GT2] = ACTIONS(1615), + [anon_sym_DASH2] = ACTIONS(1689), + [anon_sym_LBRACE] = ACTIONS(1689), + [anon_sym_RBRACE] = ACTIONS(1689), + [anon_sym_EQ_GT] = ACTIONS(1689), + [anon_sym_STAR2] = ACTIONS(1615), + [anon_sym_and2] = ACTIONS(1689), + [anon_sym_xor2] = ACTIONS(1689), + [anon_sym_or2] = ACTIONS(1689), + [anon_sym_not_DASHin2] = ACTIONS(1689), + [anon_sym_has2] = ACTIONS(1689), + [anon_sym_not_DASHhas2] = ACTIONS(1689), + [anon_sym_starts_DASHwith2] = ACTIONS(1689), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1689), + [anon_sym_ends_DASHwith2] = ACTIONS(1689), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1689), + [anon_sym_EQ_EQ2] = ACTIONS(1689), + [anon_sym_BANG_EQ2] = ACTIONS(1689), + [anon_sym_LT2] = ACTIONS(1615), + [anon_sym_LT_EQ2] = ACTIONS(1689), + [anon_sym_GT_EQ2] = ACTIONS(1689), + [anon_sym_EQ_TILDE2] = ACTIONS(1689), + [anon_sym_BANG_TILDE2] = ACTIONS(1689), + [anon_sym_like2] = ACTIONS(1689), + [anon_sym_not_DASHlike2] = ACTIONS(1689), + [anon_sym_STAR_STAR2] = ACTIONS(1689), + [anon_sym_PLUS_PLUS2] = ACTIONS(1689), + [anon_sym_SLASH2] = ACTIONS(1615), + [anon_sym_mod2] = ACTIONS(1689), + [anon_sym_SLASH_SLASH2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(1615), + [anon_sym_bit_DASHshl2] = ACTIONS(1689), + [anon_sym_bit_DASHshr2] = ACTIONS(1689), + [anon_sym_bit_DASHand2] = ACTIONS(1689), + [anon_sym_bit_DASHxor2] = ACTIONS(1689), + [anon_sym_bit_DASHor2] = ACTIONS(1689), + [anon_sym_err_GT] = ACTIONS(1615), + [anon_sym_out_GT] = ACTIONS(1615), + [anon_sym_e_GT] = ACTIONS(1615), + [anon_sym_o_GT] = ACTIONS(1615), + [anon_sym_err_PLUSout_GT] = ACTIONS(1615), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), + [anon_sym_o_PLUSe_GT] = ACTIONS(1615), + [anon_sym_e_PLUSo_GT] = ACTIONS(1615), + [anon_sym_err_GT_GT] = ACTIONS(1689), + [anon_sym_out_GT_GT] = ACTIONS(1689), + [anon_sym_e_GT_GT] = ACTIONS(1689), + [anon_sym_o_GT_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), [anon_sym_POUND] = ACTIONS(3), }, [STATE(923)] = { [sym_comment] = STATE(923), - [anon_sym_in] = ACTIONS(1866), - [sym__newline] = ACTIONS(1866), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_err_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_GT_PIPE] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_GT2] = ACTIONS(1868), - [anon_sym_DASH2] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), - [anon_sym_EQ_GT] = ACTIONS(1866), - [anon_sym_STAR2] = ACTIONS(1868), - [anon_sym_and2] = ACTIONS(1866), - [anon_sym_xor2] = ACTIONS(1866), - [anon_sym_or2] = ACTIONS(1866), - [anon_sym_not_DASHin2] = ACTIONS(1866), - [anon_sym_has2] = ACTIONS(1866), - [anon_sym_not_DASHhas2] = ACTIONS(1866), - [anon_sym_starts_DASHwith2] = ACTIONS(1866), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1866), - [anon_sym_ends_DASHwith2] = ACTIONS(1866), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1866), - [anon_sym_EQ_EQ2] = ACTIONS(1866), - [anon_sym_BANG_EQ2] = ACTIONS(1866), - [anon_sym_LT2] = ACTIONS(1868), - [anon_sym_LT_EQ2] = ACTIONS(1866), - [anon_sym_GT_EQ2] = ACTIONS(1866), - [anon_sym_EQ_TILDE2] = ACTIONS(1866), - [anon_sym_BANG_TILDE2] = ACTIONS(1866), - [anon_sym_like2] = ACTIONS(1866), - [anon_sym_not_DASHlike2] = ACTIONS(1866), - [anon_sym_STAR_STAR2] = ACTIONS(1866), - [anon_sym_PLUS_PLUS2] = ACTIONS(1866), - [anon_sym_SLASH2] = ACTIONS(1868), - [anon_sym_mod2] = ACTIONS(1866), - [anon_sym_SLASH_SLASH2] = ACTIONS(1866), - [anon_sym_PLUS2] = ACTIONS(1868), - [anon_sym_bit_DASHshl2] = ACTIONS(1866), - [anon_sym_bit_DASHshr2] = ACTIONS(1866), - [anon_sym_bit_DASHand2] = ACTIONS(1866), - [anon_sym_bit_DASHxor2] = ACTIONS(1866), - [anon_sym_bit_DASHor2] = ACTIONS(1866), - [anon_sym_err_GT] = ACTIONS(1868), - [anon_sym_out_GT] = ACTIONS(1868), - [anon_sym_e_GT] = ACTIONS(1868), - [anon_sym_o_GT] = ACTIONS(1868), - [anon_sym_err_PLUSout_GT] = ACTIONS(1868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1868), - [anon_sym_o_PLUSe_GT] = ACTIONS(1868), - [anon_sym_e_PLUSo_GT] = ACTIONS(1868), - [anon_sym_err_GT_GT] = ACTIONS(1866), - [anon_sym_out_GT_GT] = ACTIONS(1866), - [anon_sym_e_GT_GT] = ACTIONS(1866), - [anon_sym_o_GT_GT] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), + [anon_sym_in] = ACTIONS(1012), + [sym__newline] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1012), + [anon_sym_PIPE] = ACTIONS(1012), + [anon_sym_err_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_GT_PIPE] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), + [anon_sym_RPAREN] = ACTIONS(1012), + [anon_sym_GT2] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1012), + [anon_sym_RBRACE] = ACTIONS(1012), + [anon_sym_STAR2] = ACTIONS(1004), + [anon_sym_and2] = ACTIONS(1012), + [anon_sym_xor2] = ACTIONS(1012), + [anon_sym_or2] = ACTIONS(1012), + [anon_sym_not_DASHin2] = ACTIONS(1012), + [anon_sym_has2] = ACTIONS(1012), + [anon_sym_not_DASHhas2] = ACTIONS(1012), + [anon_sym_starts_DASHwith2] = ACTIONS(1012), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1012), + [anon_sym_ends_DASHwith2] = ACTIONS(1012), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1012), + [anon_sym_EQ_EQ2] = ACTIONS(1012), + [anon_sym_BANG_EQ2] = ACTIONS(1012), + [anon_sym_LT2] = ACTIONS(1004), + [anon_sym_LT_EQ2] = ACTIONS(1012), + [anon_sym_GT_EQ2] = ACTIONS(1012), + [anon_sym_EQ_TILDE2] = ACTIONS(1012), + [anon_sym_BANG_TILDE2] = ACTIONS(1012), + [anon_sym_like2] = ACTIONS(1012), + [anon_sym_not_DASHlike2] = ACTIONS(1012), + [anon_sym_LPAREN2] = ACTIONS(2570), + [anon_sym_STAR_STAR2] = ACTIONS(1012), + [anon_sym_PLUS_PLUS2] = ACTIONS(1012), + [anon_sym_SLASH2] = ACTIONS(1004), + [anon_sym_mod2] = ACTIONS(1012), + [anon_sym_SLASH_SLASH2] = ACTIONS(1012), + [anon_sym_PLUS2] = ACTIONS(1004), + [anon_sym_bit_DASHshl2] = ACTIONS(1012), + [anon_sym_bit_DASHshr2] = ACTIONS(1012), + [anon_sym_bit_DASHand2] = ACTIONS(1012), + [anon_sym_bit_DASHxor2] = ACTIONS(1012), + [anon_sym_bit_DASHor2] = ACTIONS(1012), + [anon_sym_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(1012), + [anon_sym_out_GT_GT] = ACTIONS(1012), + [anon_sym_e_GT_GT] = ACTIONS(1012), + [anon_sym_o_GT_GT] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), + [sym__unquoted_pattern] = ACTIONS(2572), [anon_sym_POUND] = ACTIONS(3), }, [STATE(924)] = { [sym_comment] = STATE(924), - [anon_sym_in] = ACTIONS(2563), - [sym__newline] = ACTIONS(2563), - [anon_sym_SEMI] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2563), - [anon_sym_err_GT_PIPE] = ACTIONS(2563), - [anon_sym_out_GT_PIPE] = ACTIONS(2563), - [anon_sym_e_GT_PIPE] = ACTIONS(2563), - [anon_sym_o_GT_PIPE] = ACTIONS(2563), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2563), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2563), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2563), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2563), - [anon_sym_RPAREN] = ACTIONS(2563), - [anon_sym_GT2] = ACTIONS(2565), - [anon_sym_DASH2] = ACTIONS(2563), - [anon_sym_LBRACE] = ACTIONS(2563), - [anon_sym_RBRACE] = ACTIONS(2563), - [anon_sym_EQ_GT] = ACTIONS(2563), - [anon_sym_STAR2] = ACTIONS(2565), - [anon_sym_and2] = ACTIONS(2563), - [anon_sym_xor2] = ACTIONS(2563), - [anon_sym_or2] = ACTIONS(2563), - [anon_sym_not_DASHin2] = ACTIONS(2563), - [anon_sym_has2] = ACTIONS(2563), - [anon_sym_not_DASHhas2] = ACTIONS(2563), - [anon_sym_starts_DASHwith2] = ACTIONS(2563), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2563), - [anon_sym_ends_DASHwith2] = ACTIONS(2563), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2563), - [anon_sym_EQ_EQ2] = ACTIONS(2563), - [anon_sym_BANG_EQ2] = ACTIONS(2563), - [anon_sym_LT2] = ACTIONS(2565), - [anon_sym_LT_EQ2] = ACTIONS(2563), - [anon_sym_GT_EQ2] = ACTIONS(2563), - [anon_sym_EQ_TILDE2] = ACTIONS(2563), - [anon_sym_BANG_TILDE2] = ACTIONS(2563), - [anon_sym_like2] = ACTIONS(2563), - [anon_sym_not_DASHlike2] = ACTIONS(2563), - [anon_sym_STAR_STAR2] = ACTIONS(2563), - [anon_sym_PLUS_PLUS2] = ACTIONS(2563), - [anon_sym_SLASH2] = ACTIONS(2565), - [anon_sym_mod2] = ACTIONS(2563), - [anon_sym_SLASH_SLASH2] = ACTIONS(2563), - [anon_sym_PLUS2] = ACTIONS(2565), - [anon_sym_bit_DASHshl2] = ACTIONS(2563), - [anon_sym_bit_DASHshr2] = ACTIONS(2563), - [anon_sym_bit_DASHand2] = ACTIONS(2563), - [anon_sym_bit_DASHxor2] = ACTIONS(2563), - [anon_sym_bit_DASHor2] = ACTIONS(2563), - [anon_sym_err_GT] = ACTIONS(2565), - [anon_sym_out_GT] = ACTIONS(2565), - [anon_sym_e_GT] = ACTIONS(2565), - [anon_sym_o_GT] = ACTIONS(2565), - [anon_sym_err_PLUSout_GT] = ACTIONS(2565), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2565), - [anon_sym_o_PLUSe_GT] = ACTIONS(2565), - [anon_sym_e_PLUSo_GT] = ACTIONS(2565), - [anon_sym_err_GT_GT] = ACTIONS(2563), - [anon_sym_out_GT_GT] = ACTIONS(2563), - [anon_sym_e_GT_GT] = ACTIONS(2563), - [anon_sym_o_GT_GT] = ACTIONS(2563), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2563), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2563), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2563), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2563), + [anon_sym_in] = ACTIONS(1952), + [sym__newline] = ACTIONS(1952), + [anon_sym_SEMI] = ACTIONS(1952), + [anon_sym_PIPE] = ACTIONS(1952), + [anon_sym_err_GT_PIPE] = ACTIONS(1952), + [anon_sym_out_GT_PIPE] = ACTIONS(1952), + [anon_sym_e_GT_PIPE] = ACTIONS(1952), + [anon_sym_o_GT_PIPE] = ACTIONS(1952), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1952), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1952), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1952), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1952), + [anon_sym_RPAREN] = ACTIONS(1952), + [anon_sym_GT2] = ACTIONS(1954), + [anon_sym_DASH2] = ACTIONS(1952), + [anon_sym_LBRACE] = ACTIONS(1952), + [anon_sym_RBRACE] = ACTIONS(1952), + [anon_sym_EQ_GT] = ACTIONS(1952), + [anon_sym_STAR2] = ACTIONS(1954), + [anon_sym_and2] = ACTIONS(1952), + [anon_sym_xor2] = ACTIONS(1952), + [anon_sym_or2] = ACTIONS(1952), + [anon_sym_not_DASHin2] = ACTIONS(1952), + [anon_sym_has2] = ACTIONS(1952), + [anon_sym_not_DASHhas2] = ACTIONS(1952), + [anon_sym_starts_DASHwith2] = ACTIONS(1952), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1952), + [anon_sym_ends_DASHwith2] = ACTIONS(1952), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1952), + [anon_sym_EQ_EQ2] = ACTIONS(1952), + [anon_sym_BANG_EQ2] = ACTIONS(1952), + [anon_sym_LT2] = ACTIONS(1954), + [anon_sym_LT_EQ2] = ACTIONS(1952), + [anon_sym_GT_EQ2] = ACTIONS(1952), + [anon_sym_EQ_TILDE2] = ACTIONS(1952), + [anon_sym_BANG_TILDE2] = ACTIONS(1952), + [anon_sym_like2] = ACTIONS(1952), + [anon_sym_not_DASHlike2] = ACTIONS(1952), + [anon_sym_STAR_STAR2] = ACTIONS(1952), + [anon_sym_PLUS_PLUS2] = ACTIONS(1952), + [anon_sym_SLASH2] = ACTIONS(1954), + [anon_sym_mod2] = ACTIONS(1952), + [anon_sym_SLASH_SLASH2] = ACTIONS(1952), + [anon_sym_PLUS2] = ACTIONS(1954), + [anon_sym_bit_DASHshl2] = ACTIONS(1952), + [anon_sym_bit_DASHshr2] = ACTIONS(1952), + [anon_sym_bit_DASHand2] = ACTIONS(1952), + [anon_sym_bit_DASHxor2] = ACTIONS(1952), + [anon_sym_bit_DASHor2] = ACTIONS(1952), + [anon_sym_err_GT] = ACTIONS(1954), + [anon_sym_out_GT] = ACTIONS(1954), + [anon_sym_e_GT] = ACTIONS(1954), + [anon_sym_o_GT] = ACTIONS(1954), + [anon_sym_err_PLUSout_GT] = ACTIONS(1954), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1954), + [anon_sym_o_PLUSe_GT] = ACTIONS(1954), + [anon_sym_e_PLUSo_GT] = ACTIONS(1954), + [anon_sym_err_GT_GT] = ACTIONS(1952), + [anon_sym_out_GT_GT] = ACTIONS(1952), + [anon_sym_e_GT_GT] = ACTIONS(1952), + [anon_sym_o_GT_GT] = ACTIONS(1952), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1952), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1952), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1952), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1952), [anon_sym_POUND] = ACTIONS(3), }, [STATE(925)] = { [sym_comment] = STATE(925), - [anon_sym_in] = ACTIONS(2567), - [sym__newline] = ACTIONS(2567), - [anon_sym_SEMI] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2567), - [anon_sym_err_GT_PIPE] = ACTIONS(2567), - [anon_sym_out_GT_PIPE] = ACTIONS(2567), - [anon_sym_e_GT_PIPE] = ACTIONS(2567), - [anon_sym_o_GT_PIPE] = ACTIONS(2567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2567), - [anon_sym_RPAREN] = ACTIONS(2567), - [anon_sym_GT2] = ACTIONS(2569), - [anon_sym_DASH2] = ACTIONS(2567), - [anon_sym_LBRACE] = ACTIONS(2567), - [anon_sym_RBRACE] = ACTIONS(2567), - [anon_sym_EQ_GT] = ACTIONS(2567), - [anon_sym_STAR2] = ACTIONS(2569), - [anon_sym_and2] = ACTIONS(2567), - [anon_sym_xor2] = ACTIONS(2567), - [anon_sym_or2] = ACTIONS(2567), - [anon_sym_not_DASHin2] = ACTIONS(2567), - [anon_sym_has2] = ACTIONS(2567), - [anon_sym_not_DASHhas2] = ACTIONS(2567), - [anon_sym_starts_DASHwith2] = ACTIONS(2567), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2567), - [anon_sym_ends_DASHwith2] = ACTIONS(2567), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2567), - [anon_sym_EQ_EQ2] = ACTIONS(2567), - [anon_sym_BANG_EQ2] = ACTIONS(2567), - [anon_sym_LT2] = ACTIONS(2569), - [anon_sym_LT_EQ2] = ACTIONS(2567), - [anon_sym_GT_EQ2] = ACTIONS(2567), - [anon_sym_EQ_TILDE2] = ACTIONS(2567), - [anon_sym_BANG_TILDE2] = ACTIONS(2567), - [anon_sym_like2] = ACTIONS(2567), - [anon_sym_not_DASHlike2] = ACTIONS(2567), - [anon_sym_STAR_STAR2] = ACTIONS(2567), - [anon_sym_PLUS_PLUS2] = ACTIONS(2567), - [anon_sym_SLASH2] = ACTIONS(2569), - [anon_sym_mod2] = ACTIONS(2567), - [anon_sym_SLASH_SLASH2] = ACTIONS(2567), - [anon_sym_PLUS2] = ACTIONS(2569), - [anon_sym_bit_DASHshl2] = ACTIONS(2567), - [anon_sym_bit_DASHshr2] = ACTIONS(2567), - [anon_sym_bit_DASHand2] = ACTIONS(2567), - [anon_sym_bit_DASHxor2] = ACTIONS(2567), - [anon_sym_bit_DASHor2] = ACTIONS(2567), - [anon_sym_err_GT] = ACTIONS(2569), - [anon_sym_out_GT] = ACTIONS(2569), - [anon_sym_e_GT] = ACTIONS(2569), - [anon_sym_o_GT] = ACTIONS(2569), - [anon_sym_err_PLUSout_GT] = ACTIONS(2569), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2569), - [anon_sym_o_PLUSe_GT] = ACTIONS(2569), - [anon_sym_e_PLUSo_GT] = ACTIONS(2569), - [anon_sym_err_GT_GT] = ACTIONS(2567), - [anon_sym_out_GT_GT] = ACTIONS(2567), - [anon_sym_e_GT_GT] = ACTIONS(2567), - [anon_sym_o_GT_GT] = ACTIONS(2567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2567), + [ts_builtin_sym_end] = ACTIONS(2074), + [anon_sym_in] = ACTIONS(2074), + [sym__newline] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_PIPE] = ACTIONS(2074), + [anon_sym_err_GT_PIPE] = ACTIONS(2074), + [anon_sym_out_GT_PIPE] = ACTIONS(2074), + [anon_sym_e_GT_PIPE] = ACTIONS(2074), + [anon_sym_o_GT_PIPE] = ACTIONS(2074), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2074), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2074), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2074), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2074), + [anon_sym_GT2] = ACTIONS(2078), + [anon_sym_DASH2] = ACTIONS(2074), + [anon_sym_STAR2] = ACTIONS(2078), + [anon_sym_and2] = ACTIONS(2074), + [anon_sym_xor2] = ACTIONS(2074), + [anon_sym_or2] = ACTIONS(2074), + [anon_sym_not_DASHin2] = ACTIONS(2074), + [anon_sym_has2] = ACTIONS(2074), + [anon_sym_not_DASHhas2] = ACTIONS(2074), + [anon_sym_starts_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2074), + [anon_sym_ends_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2074), + [anon_sym_EQ_EQ2] = ACTIONS(2074), + [anon_sym_BANG_EQ2] = ACTIONS(2074), + [anon_sym_LT2] = ACTIONS(2078), + [anon_sym_LT_EQ2] = ACTIONS(2074), + [anon_sym_GT_EQ2] = ACTIONS(2074), + [anon_sym_EQ_TILDE2] = ACTIONS(2074), + [anon_sym_BANG_TILDE2] = ACTIONS(2074), + [anon_sym_like2] = ACTIONS(2074), + [anon_sym_not_DASHlike2] = ACTIONS(2074), + [anon_sym_STAR_STAR2] = ACTIONS(2074), + [anon_sym_PLUS_PLUS2] = ACTIONS(2074), + [anon_sym_SLASH2] = ACTIONS(2078), + [anon_sym_mod2] = ACTIONS(2074), + [anon_sym_SLASH_SLASH2] = ACTIONS(2074), + [anon_sym_PLUS2] = ACTIONS(2078), + [anon_sym_bit_DASHshl2] = ACTIONS(2074), + [anon_sym_bit_DASHshr2] = ACTIONS(2074), + [anon_sym_bit_DASHand2] = ACTIONS(2074), + [anon_sym_bit_DASHxor2] = ACTIONS(2074), + [anon_sym_bit_DASHor2] = ACTIONS(2074), + [anon_sym_DOT_DOT2] = ACTIONS(1720), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1722), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1722), + [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(2074), + [anon_sym_out_GT_GT] = ACTIONS(2074), + [anon_sym_e_GT_GT] = ACTIONS(2074), + [anon_sym_o_GT_GT] = ACTIONS(2074), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2074), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2074), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2074), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), }, [STATE(926)] = { [sym_comment] = STATE(926), - [anon_sym_in] = ACTIONS(2571), - [sym__newline] = ACTIONS(2571), - [anon_sym_SEMI] = ACTIONS(2571), - [anon_sym_PIPE] = ACTIONS(2571), - [anon_sym_err_GT_PIPE] = ACTIONS(2571), - [anon_sym_out_GT_PIPE] = ACTIONS(2571), - [anon_sym_e_GT_PIPE] = ACTIONS(2571), - [anon_sym_o_GT_PIPE] = ACTIONS(2571), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2571), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2571), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2571), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2571), - [anon_sym_RPAREN] = ACTIONS(2571), - [anon_sym_GT2] = ACTIONS(2573), - [anon_sym_DASH2] = ACTIONS(2571), - [anon_sym_LBRACE] = ACTIONS(2571), - [anon_sym_RBRACE] = ACTIONS(2571), - [anon_sym_EQ_GT] = ACTIONS(2571), - [anon_sym_STAR2] = ACTIONS(2573), - [anon_sym_and2] = ACTIONS(2571), - [anon_sym_xor2] = ACTIONS(2571), - [anon_sym_or2] = ACTIONS(2571), - [anon_sym_not_DASHin2] = ACTIONS(2571), - [anon_sym_has2] = ACTIONS(2571), - [anon_sym_not_DASHhas2] = ACTIONS(2571), - [anon_sym_starts_DASHwith2] = ACTIONS(2571), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2571), - [anon_sym_ends_DASHwith2] = ACTIONS(2571), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2571), - [anon_sym_EQ_EQ2] = ACTIONS(2571), - [anon_sym_BANG_EQ2] = ACTIONS(2571), - [anon_sym_LT2] = ACTIONS(2573), - [anon_sym_LT_EQ2] = ACTIONS(2571), - [anon_sym_GT_EQ2] = ACTIONS(2571), - [anon_sym_EQ_TILDE2] = ACTIONS(2571), - [anon_sym_BANG_TILDE2] = ACTIONS(2571), - [anon_sym_like2] = ACTIONS(2571), - [anon_sym_not_DASHlike2] = ACTIONS(2571), - [anon_sym_STAR_STAR2] = ACTIONS(2571), - [anon_sym_PLUS_PLUS2] = ACTIONS(2571), - [anon_sym_SLASH2] = ACTIONS(2573), - [anon_sym_mod2] = ACTIONS(2571), - [anon_sym_SLASH_SLASH2] = ACTIONS(2571), - [anon_sym_PLUS2] = ACTIONS(2573), - [anon_sym_bit_DASHshl2] = ACTIONS(2571), - [anon_sym_bit_DASHshr2] = ACTIONS(2571), - [anon_sym_bit_DASHand2] = ACTIONS(2571), - [anon_sym_bit_DASHxor2] = ACTIONS(2571), - [anon_sym_bit_DASHor2] = ACTIONS(2571), - [anon_sym_err_GT] = ACTIONS(2573), - [anon_sym_out_GT] = ACTIONS(2573), - [anon_sym_e_GT] = ACTIONS(2573), - [anon_sym_o_GT] = ACTIONS(2573), - [anon_sym_err_PLUSout_GT] = ACTIONS(2573), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2573), - [anon_sym_o_PLUSe_GT] = ACTIONS(2573), - [anon_sym_e_PLUSo_GT] = ACTIONS(2573), - [anon_sym_err_GT_GT] = ACTIONS(2571), - [anon_sym_out_GT_GT] = ACTIONS(2571), - [anon_sym_e_GT_GT] = ACTIONS(2571), - [anon_sym_o_GT_GT] = ACTIONS(2571), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2571), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2571), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2571), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2571), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(927)] = { - [sym_comment] = STATE(927), - [anon_sym_in] = ACTIONS(2575), - [sym__newline] = ACTIONS(2575), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_PIPE] = ACTIONS(2575), - [anon_sym_err_GT_PIPE] = ACTIONS(2575), - [anon_sym_out_GT_PIPE] = ACTIONS(2575), - [anon_sym_e_GT_PIPE] = ACTIONS(2575), - [anon_sym_o_GT_PIPE] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2575), - [anon_sym_RPAREN] = ACTIONS(2575), - [anon_sym_GT2] = ACTIONS(2577), - [anon_sym_DASH2] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(2575), - [anon_sym_RBRACE] = ACTIONS(2575), - [anon_sym_EQ_GT] = ACTIONS(2575), - [anon_sym_STAR2] = ACTIONS(2577), - [anon_sym_and2] = ACTIONS(2575), - [anon_sym_xor2] = ACTIONS(2575), - [anon_sym_or2] = ACTIONS(2575), - [anon_sym_not_DASHin2] = ACTIONS(2575), - [anon_sym_has2] = ACTIONS(2575), - [anon_sym_not_DASHhas2] = ACTIONS(2575), - [anon_sym_starts_DASHwith2] = ACTIONS(2575), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2575), - [anon_sym_ends_DASHwith2] = ACTIONS(2575), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2575), - [anon_sym_EQ_EQ2] = ACTIONS(2575), - [anon_sym_BANG_EQ2] = ACTIONS(2575), - [anon_sym_LT2] = ACTIONS(2577), - [anon_sym_LT_EQ2] = ACTIONS(2575), - [anon_sym_GT_EQ2] = ACTIONS(2575), - [anon_sym_EQ_TILDE2] = ACTIONS(2575), - [anon_sym_BANG_TILDE2] = ACTIONS(2575), - [anon_sym_like2] = ACTIONS(2575), - [anon_sym_not_DASHlike2] = ACTIONS(2575), - [anon_sym_STAR_STAR2] = ACTIONS(2575), - [anon_sym_PLUS_PLUS2] = ACTIONS(2575), - [anon_sym_SLASH2] = ACTIONS(2577), - [anon_sym_mod2] = ACTIONS(2575), - [anon_sym_SLASH_SLASH2] = ACTIONS(2575), - [anon_sym_PLUS2] = ACTIONS(2577), - [anon_sym_bit_DASHshl2] = ACTIONS(2575), - [anon_sym_bit_DASHshr2] = ACTIONS(2575), - [anon_sym_bit_DASHand2] = ACTIONS(2575), - [anon_sym_bit_DASHxor2] = ACTIONS(2575), - [anon_sym_bit_DASHor2] = ACTIONS(2575), - [anon_sym_err_GT] = ACTIONS(2577), - [anon_sym_out_GT] = ACTIONS(2577), - [anon_sym_e_GT] = ACTIONS(2577), - [anon_sym_o_GT] = ACTIONS(2577), - [anon_sym_err_PLUSout_GT] = ACTIONS(2577), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2577), - [anon_sym_o_PLUSe_GT] = ACTIONS(2577), - [anon_sym_e_PLUSo_GT] = ACTIONS(2577), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(928)] = { - [sym_comment] = STATE(928), - [ts_builtin_sym_end] = ACTIONS(1706), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1706), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_DOT_DOT2] = ACTIONS(1748), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1750), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1750), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(929)] = { - [sym_comment] = STATE(929), - [ts_builtin_sym_end] = ACTIONS(2120), - [anon_sym_in] = ACTIONS(2120), - [sym__newline] = ACTIONS(2120), - [anon_sym_SEMI] = ACTIONS(2120), - [anon_sym_PIPE] = ACTIONS(2120), - [anon_sym_err_GT_PIPE] = ACTIONS(2120), - [anon_sym_out_GT_PIPE] = ACTIONS(2120), - [anon_sym_e_GT_PIPE] = ACTIONS(2120), - [anon_sym_o_GT_PIPE] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2120), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2120), - [anon_sym_GT2] = ACTIONS(2122), - [anon_sym_DASH2] = ACTIONS(2120), - [anon_sym_STAR2] = ACTIONS(2122), - [anon_sym_and2] = ACTIONS(2120), - [anon_sym_xor2] = ACTIONS(2120), - [anon_sym_or2] = ACTIONS(2120), - [anon_sym_not_DASHin2] = ACTIONS(2120), - [anon_sym_has2] = ACTIONS(2120), - [anon_sym_not_DASHhas2] = ACTIONS(2120), - [anon_sym_starts_DASHwith2] = ACTIONS(2120), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2120), - [anon_sym_ends_DASHwith2] = ACTIONS(2120), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2120), - [anon_sym_EQ_EQ2] = ACTIONS(2120), - [anon_sym_BANG_EQ2] = ACTIONS(2120), - [anon_sym_LT2] = ACTIONS(2122), - [anon_sym_LT_EQ2] = ACTIONS(2120), - [anon_sym_GT_EQ2] = ACTIONS(2120), - [anon_sym_EQ_TILDE2] = ACTIONS(2120), - [anon_sym_BANG_TILDE2] = ACTIONS(2120), - [anon_sym_like2] = ACTIONS(2120), - [anon_sym_not_DASHlike2] = ACTIONS(2120), - [anon_sym_STAR_STAR2] = ACTIONS(2120), - [anon_sym_PLUS_PLUS2] = ACTIONS(2120), - [anon_sym_SLASH2] = ACTIONS(2122), - [anon_sym_mod2] = ACTIONS(2120), - [anon_sym_SLASH_SLASH2] = ACTIONS(2120), - [anon_sym_PLUS2] = ACTIONS(2122), - [anon_sym_bit_DASHshl2] = ACTIONS(2120), - [anon_sym_bit_DASHshr2] = ACTIONS(2120), - [anon_sym_bit_DASHand2] = ACTIONS(2120), - [anon_sym_bit_DASHxor2] = ACTIONS(2120), - [anon_sym_bit_DASHor2] = ACTIONS(2120), - [anon_sym_DOT_DOT2] = ACTIONS(2579), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2581), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2581), - [anon_sym_err_GT] = ACTIONS(2122), - [anon_sym_out_GT] = ACTIONS(2122), - [anon_sym_e_GT] = ACTIONS(2122), - [anon_sym_o_GT] = ACTIONS(2122), - [anon_sym_err_PLUSout_GT] = ACTIONS(2122), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2122), - [anon_sym_o_PLUSe_GT] = ACTIONS(2122), - [anon_sym_e_PLUSo_GT] = ACTIONS(2122), - [anon_sym_err_GT_GT] = ACTIONS(2120), - [anon_sym_out_GT_GT] = ACTIONS(2120), - [anon_sym_e_GT_GT] = ACTIONS(2120), - [anon_sym_o_GT_GT] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2120), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2120), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(930)] = { - [sym_comment] = STATE(930), - [anon_sym_in] = ACTIONS(1858), - [sym__newline] = ACTIONS(1858), - [anon_sym_SEMI] = ACTIONS(1858), - [anon_sym_PIPE] = ACTIONS(1858), - [anon_sym_err_GT_PIPE] = ACTIONS(1858), - [anon_sym_out_GT_PIPE] = ACTIONS(1858), - [anon_sym_e_GT_PIPE] = ACTIONS(1858), - [anon_sym_o_GT_PIPE] = ACTIONS(1858), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1858), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1858), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1858), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1858), - [anon_sym_RPAREN] = ACTIONS(1858), - [anon_sym_GT2] = ACTIONS(1860), - [anon_sym_DASH2] = ACTIONS(1858), - [anon_sym_LBRACE] = ACTIONS(1858), - [anon_sym_RBRACE] = ACTIONS(1858), - [anon_sym_EQ_GT] = ACTIONS(1858), - [anon_sym_STAR2] = ACTIONS(1860), - [anon_sym_and2] = ACTIONS(1858), - [anon_sym_xor2] = ACTIONS(1858), - [anon_sym_or2] = ACTIONS(1858), - [anon_sym_not_DASHin2] = ACTIONS(1858), - [anon_sym_has2] = ACTIONS(1858), - [anon_sym_not_DASHhas2] = ACTIONS(1858), - [anon_sym_starts_DASHwith2] = ACTIONS(1858), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1858), - [anon_sym_ends_DASHwith2] = ACTIONS(1858), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1858), - [anon_sym_EQ_EQ2] = ACTIONS(1858), - [anon_sym_BANG_EQ2] = ACTIONS(1858), - [anon_sym_LT2] = ACTIONS(1860), - [anon_sym_LT_EQ2] = ACTIONS(1858), - [anon_sym_GT_EQ2] = ACTIONS(1858), - [anon_sym_EQ_TILDE2] = ACTIONS(1858), - [anon_sym_BANG_TILDE2] = ACTIONS(1858), - [anon_sym_like2] = ACTIONS(1858), - [anon_sym_not_DASHlike2] = ACTIONS(1858), - [anon_sym_STAR_STAR2] = ACTIONS(1858), - [anon_sym_PLUS_PLUS2] = ACTIONS(1858), - [anon_sym_SLASH2] = ACTIONS(1860), - [anon_sym_mod2] = ACTIONS(1858), - [anon_sym_SLASH_SLASH2] = ACTIONS(1858), - [anon_sym_PLUS2] = ACTIONS(1860), - [anon_sym_bit_DASHshl2] = ACTIONS(1858), - [anon_sym_bit_DASHshr2] = ACTIONS(1858), - [anon_sym_bit_DASHand2] = ACTIONS(1858), - [anon_sym_bit_DASHxor2] = ACTIONS(1858), - [anon_sym_bit_DASHor2] = ACTIONS(1858), - [anon_sym_err_GT] = ACTIONS(1860), - [anon_sym_out_GT] = ACTIONS(1860), - [anon_sym_e_GT] = ACTIONS(1860), - [anon_sym_o_GT] = ACTIONS(1860), - [anon_sym_err_PLUSout_GT] = ACTIONS(1860), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1860), - [anon_sym_o_PLUSe_GT] = ACTIONS(1860), - [anon_sym_e_PLUSo_GT] = ACTIONS(1860), - [anon_sym_err_GT_GT] = ACTIONS(1858), - [anon_sym_out_GT_GT] = ACTIONS(1858), - [anon_sym_e_GT_GT] = ACTIONS(1858), - [anon_sym_o_GT_GT] = ACTIONS(1858), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1858), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1858), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1858), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1858), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(931)] = { - [sym_comment] = STATE(931), - [anon_sym_in] = ACTIONS(1018), - [sym__newline] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_PIPE] = ACTIONS(1018), - [anon_sym_err_GT_PIPE] = ACTIONS(1018), - [anon_sym_out_GT_PIPE] = ACTIONS(1018), - [anon_sym_e_GT_PIPE] = ACTIONS(1018), - [anon_sym_o_GT_PIPE] = ACTIONS(1018), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1018), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1018), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1018), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1018), - [anon_sym_RPAREN] = ACTIONS(1018), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1018), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1018), - [anon_sym_xor2] = ACTIONS(1018), - [anon_sym_or2] = ACTIONS(1018), - [anon_sym_not_DASHin2] = ACTIONS(1018), - [anon_sym_has2] = ACTIONS(1018), - [anon_sym_not_DASHhas2] = ACTIONS(1018), - [anon_sym_starts_DASHwith2] = ACTIONS(1018), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1018), - [anon_sym_ends_DASHwith2] = ACTIONS(1018), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1018), - [anon_sym_EQ_EQ2] = ACTIONS(1018), - [anon_sym_BANG_EQ2] = ACTIONS(1018), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1018), - [anon_sym_GT_EQ2] = ACTIONS(1018), - [anon_sym_EQ_TILDE2] = ACTIONS(1018), - [anon_sym_BANG_TILDE2] = ACTIONS(1018), - [anon_sym_like2] = ACTIONS(1018), - [anon_sym_not_DASHlike2] = ACTIONS(1018), - [anon_sym_LPAREN2] = ACTIONS(2583), - [anon_sym_STAR_STAR2] = ACTIONS(1018), - [anon_sym_PLUS_PLUS2] = ACTIONS(1018), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1018), - [anon_sym_SLASH_SLASH2] = ACTIONS(1018), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1018), - [anon_sym_bit_DASHshr2] = ACTIONS(1018), - [anon_sym_bit_DASHand2] = ACTIONS(1018), - [anon_sym_bit_DASHxor2] = ACTIONS(1018), - [anon_sym_bit_DASHor2] = ACTIONS(1018), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1018), - [anon_sym_out_GT_GT] = ACTIONS(1018), - [anon_sym_e_GT_GT] = ACTIONS(1018), - [anon_sym_o_GT_GT] = ACTIONS(1018), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1018), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1018), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1018), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1018), - [sym__unquoted_pattern] = ACTIONS(2585), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(932)] = { - [sym_comment] = STATE(932), - [ts_builtin_sym_end] = ACTIONS(1641), - [anon_sym_in] = ACTIONS(1641), - [sym__newline] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_err_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_GT_PIPE] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1641), - [anon_sym_GT2] = ACTIONS(1643), - [anon_sym_DASH2] = ACTIONS(1641), - [anon_sym_STAR2] = ACTIONS(1643), - [anon_sym_and2] = ACTIONS(1641), - [anon_sym_xor2] = ACTIONS(1641), - [anon_sym_or2] = ACTIONS(1641), - [anon_sym_not_DASHin2] = ACTIONS(1641), - [anon_sym_has2] = ACTIONS(1641), - [anon_sym_not_DASHhas2] = ACTIONS(1641), - [anon_sym_starts_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1641), - [anon_sym_ends_DASHwith2] = ACTIONS(1641), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1641), - [anon_sym_EQ_EQ2] = ACTIONS(1641), - [anon_sym_BANG_EQ2] = ACTIONS(1641), - [anon_sym_LT2] = ACTIONS(1643), - [anon_sym_LT_EQ2] = ACTIONS(1641), - [anon_sym_GT_EQ2] = ACTIONS(1641), - [anon_sym_EQ_TILDE2] = ACTIONS(1641), - [anon_sym_BANG_TILDE2] = ACTIONS(1641), - [anon_sym_like2] = ACTIONS(1641), - [anon_sym_not_DASHlike2] = ACTIONS(1641), - [anon_sym_STAR_STAR2] = ACTIONS(1641), - [anon_sym_PLUS_PLUS2] = ACTIONS(1641), - [anon_sym_SLASH2] = ACTIONS(1643), - [anon_sym_mod2] = ACTIONS(1641), - [anon_sym_SLASH_SLASH2] = ACTIONS(1641), - [anon_sym_PLUS2] = ACTIONS(1643), - [anon_sym_bit_DASHshl2] = ACTIONS(1641), - [anon_sym_bit_DASHshr2] = ACTIONS(1641), - [anon_sym_bit_DASHand2] = ACTIONS(1641), - [anon_sym_bit_DASHxor2] = ACTIONS(1641), - [anon_sym_bit_DASHor2] = ACTIONS(1641), - [anon_sym_DOT_DOT2] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1641), - [anon_sym_err_GT] = ACTIONS(1643), - [anon_sym_out_GT] = ACTIONS(1643), - [anon_sym_e_GT] = ACTIONS(1643), - [anon_sym_o_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT] = ACTIONS(1643), - [anon_sym_err_GT_GT] = ACTIONS(1641), - [anon_sym_out_GT_GT] = ACTIONS(1641), - [anon_sym_e_GT_GT] = ACTIONS(1641), - [anon_sym_o_GT_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1641), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(933)] = { - [sym_comment] = STATE(933), - [ts_builtin_sym_end] = ACTIONS(1558), - [anon_sym_in] = ACTIONS(1558), - [sym__newline] = ACTIONS(1558), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_PIPE] = ACTIONS(1558), - [anon_sym_err_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_GT_PIPE] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1558), - [anon_sym_GT2] = ACTIONS(1556), - [anon_sym_DASH2] = ACTIONS(1558), - [anon_sym_STAR2] = ACTIONS(1556), - [anon_sym_and2] = ACTIONS(1558), - [anon_sym_xor2] = ACTIONS(1558), - [anon_sym_or2] = ACTIONS(1558), - [anon_sym_not_DASHin2] = ACTIONS(1558), - [anon_sym_has2] = ACTIONS(1558), - [anon_sym_not_DASHhas2] = ACTIONS(1558), - [anon_sym_starts_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1558), - [anon_sym_ends_DASHwith2] = ACTIONS(1558), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1558), - [anon_sym_EQ_EQ2] = ACTIONS(1558), - [anon_sym_BANG_EQ2] = ACTIONS(1558), - [anon_sym_LT2] = ACTIONS(1556), - [anon_sym_LT_EQ2] = ACTIONS(1558), - [anon_sym_GT_EQ2] = ACTIONS(1558), - [anon_sym_EQ_TILDE2] = ACTIONS(1558), - [anon_sym_BANG_TILDE2] = ACTIONS(1558), - [anon_sym_like2] = ACTIONS(1558), - [anon_sym_not_DASHlike2] = ACTIONS(1558), - [anon_sym_STAR_STAR2] = ACTIONS(1558), - [anon_sym_PLUS_PLUS2] = ACTIONS(1558), - [anon_sym_SLASH2] = ACTIONS(1556), - [anon_sym_mod2] = ACTIONS(1558), - [anon_sym_SLASH_SLASH2] = ACTIONS(1558), - [anon_sym_PLUS2] = ACTIONS(1556), - [anon_sym_bit_DASHshl2] = ACTIONS(1558), - [anon_sym_bit_DASHshr2] = ACTIONS(1558), - [anon_sym_bit_DASHand2] = ACTIONS(1558), - [anon_sym_bit_DASHxor2] = ACTIONS(1558), - [anon_sym_bit_DASHor2] = ACTIONS(1558), - [anon_sym_DOT_DOT2] = ACTIONS(1556), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1558), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1558), - [anon_sym_err_GT] = ACTIONS(1556), - [anon_sym_out_GT] = ACTIONS(1556), - [anon_sym_e_GT] = ACTIONS(1556), - [anon_sym_o_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT] = ACTIONS(1556), - [anon_sym_err_GT_GT] = ACTIONS(1558), - [anon_sym_out_GT_GT] = ACTIONS(1558), - [anon_sym_e_GT_GT] = ACTIONS(1558), - [anon_sym_o_GT_GT] = ACTIONS(1558), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1558), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1558), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1558), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1558), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(934)] = { - [sym_comment] = STATE(934), - [ts_builtin_sym_end] = ACTIONS(1974), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_DOT_DOT2] = ACTIONS(2587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2589), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(935)] = { - [sym_comment] = STATE(935), - [ts_builtin_sym_end] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [sym__newline] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1822), - [anon_sym_PIPE] = ACTIONS(1822), - [anon_sym_err_GT_PIPE] = ACTIONS(1822), - [anon_sym_out_GT_PIPE] = ACTIONS(1822), - [anon_sym_e_GT_PIPE] = ACTIONS(1822), - [anon_sym_o_GT_PIPE] = ACTIONS(1822), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1822), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1822), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1822), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1822), - [anon_sym_GT2] = ACTIONS(1824), - [anon_sym_DASH2] = ACTIONS(1822), - [anon_sym_STAR2] = ACTIONS(1824), - [anon_sym_and2] = ACTIONS(1822), - [anon_sym_xor2] = ACTIONS(1822), - [anon_sym_or2] = ACTIONS(1822), - [anon_sym_not_DASHin2] = ACTIONS(1822), - [anon_sym_has2] = ACTIONS(1822), - [anon_sym_not_DASHhas2] = ACTIONS(1822), - [anon_sym_starts_DASHwith2] = ACTIONS(1822), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1822), - [anon_sym_ends_DASHwith2] = ACTIONS(1822), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1822), - [anon_sym_EQ_EQ2] = ACTIONS(1822), - [anon_sym_BANG_EQ2] = ACTIONS(1822), - [anon_sym_LT2] = ACTIONS(1824), - [anon_sym_LT_EQ2] = ACTIONS(1822), - [anon_sym_GT_EQ2] = ACTIONS(1822), - [anon_sym_EQ_TILDE2] = ACTIONS(1822), - [anon_sym_BANG_TILDE2] = ACTIONS(1822), - [anon_sym_like2] = ACTIONS(1822), - [anon_sym_not_DASHlike2] = ACTIONS(1822), - [anon_sym_STAR_STAR2] = ACTIONS(1822), - [anon_sym_PLUS_PLUS2] = ACTIONS(1822), - [anon_sym_SLASH2] = ACTIONS(1824), - [anon_sym_mod2] = ACTIONS(1822), - [anon_sym_SLASH_SLASH2] = ACTIONS(1822), - [anon_sym_PLUS2] = ACTIONS(1824), - [anon_sym_bit_DASHshl2] = ACTIONS(1822), - [anon_sym_bit_DASHshr2] = ACTIONS(1822), - [anon_sym_bit_DASHand2] = ACTIONS(1822), - [anon_sym_bit_DASHxor2] = ACTIONS(1822), - [anon_sym_bit_DASHor2] = ACTIONS(1822), - [anon_sym_DOT_DOT2] = ACTIONS(1824), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1822), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1822), - [anon_sym_err_GT] = ACTIONS(1824), - [anon_sym_out_GT] = ACTIONS(1824), - [anon_sym_e_GT] = ACTIONS(1824), - [anon_sym_o_GT] = ACTIONS(1824), - [anon_sym_err_PLUSout_GT] = ACTIONS(1824), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1824), - [anon_sym_o_PLUSe_GT] = ACTIONS(1824), - [anon_sym_e_PLUSo_GT] = ACTIONS(1824), - [anon_sym_err_GT_GT] = ACTIONS(1822), - [anon_sym_out_GT_GT] = ACTIONS(1822), - [anon_sym_e_GT_GT] = ACTIONS(1822), - [anon_sym_o_GT_GT] = ACTIONS(1822), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1822), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1822), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1822), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(936)] = { - [sym_comment] = STATE(936), - [anon_sym_in] = ACTIONS(2591), - [sym__newline] = ACTIONS(2591), - [anon_sym_SEMI] = ACTIONS(2591), - [anon_sym_PIPE] = ACTIONS(2591), - [anon_sym_err_GT_PIPE] = ACTIONS(2591), - [anon_sym_out_GT_PIPE] = ACTIONS(2591), - [anon_sym_e_GT_PIPE] = ACTIONS(2591), - [anon_sym_o_GT_PIPE] = ACTIONS(2591), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2591), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2591), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2591), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2591), - [anon_sym_RPAREN] = ACTIONS(2591), - [anon_sym_GT2] = ACTIONS(2593), - [anon_sym_DASH2] = ACTIONS(2591), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_RBRACE] = ACTIONS(2591), - [anon_sym_EQ_GT] = ACTIONS(2591), - [anon_sym_STAR2] = ACTIONS(2593), - [anon_sym_and2] = ACTIONS(2591), - [anon_sym_xor2] = ACTIONS(2591), - [anon_sym_or2] = ACTIONS(2591), - [anon_sym_not_DASHin2] = ACTIONS(2591), - [anon_sym_has2] = ACTIONS(2591), - [anon_sym_not_DASHhas2] = ACTIONS(2591), - [anon_sym_starts_DASHwith2] = ACTIONS(2591), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2591), - [anon_sym_ends_DASHwith2] = ACTIONS(2591), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2591), - [anon_sym_EQ_EQ2] = ACTIONS(2591), - [anon_sym_BANG_EQ2] = ACTIONS(2591), - [anon_sym_LT2] = ACTIONS(2593), - [anon_sym_LT_EQ2] = ACTIONS(2591), - [anon_sym_GT_EQ2] = ACTIONS(2591), - [anon_sym_EQ_TILDE2] = ACTIONS(2591), - [anon_sym_BANG_TILDE2] = ACTIONS(2591), - [anon_sym_like2] = ACTIONS(2591), - [anon_sym_not_DASHlike2] = ACTIONS(2591), - [anon_sym_STAR_STAR2] = ACTIONS(2591), - [anon_sym_PLUS_PLUS2] = ACTIONS(2591), - [anon_sym_SLASH2] = ACTIONS(2593), - [anon_sym_mod2] = ACTIONS(2591), - [anon_sym_SLASH_SLASH2] = ACTIONS(2591), - [anon_sym_PLUS2] = ACTIONS(2593), - [anon_sym_bit_DASHshl2] = ACTIONS(2591), - [anon_sym_bit_DASHshr2] = ACTIONS(2591), - [anon_sym_bit_DASHand2] = ACTIONS(2591), - [anon_sym_bit_DASHxor2] = ACTIONS(2591), - [anon_sym_bit_DASHor2] = ACTIONS(2591), - [anon_sym_err_GT] = ACTIONS(2593), - [anon_sym_out_GT] = ACTIONS(2593), - [anon_sym_e_GT] = ACTIONS(2593), - [anon_sym_o_GT] = ACTIONS(2593), - [anon_sym_err_PLUSout_GT] = ACTIONS(2593), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2593), - [anon_sym_o_PLUSe_GT] = ACTIONS(2593), - [anon_sym_e_PLUSo_GT] = ACTIONS(2593), - [anon_sym_err_GT_GT] = ACTIONS(2591), - [anon_sym_out_GT_GT] = ACTIONS(2591), - [anon_sym_e_GT_GT] = ACTIONS(2591), - [anon_sym_o_GT_GT] = ACTIONS(2591), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2591), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2591), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2591), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(937)] = { - [sym_comment] = STATE(937), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_LPAREN2] = ACTIONS(2595), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1706), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), - [sym__unquoted_pattern] = ACTIONS(2597), + [anon_sym_in] = ACTIONS(2074), + [sym__newline] = ACTIONS(2076), + [anon_sym_SEMI] = ACTIONS(2076), + [anon_sym_PIPE] = ACTIONS(2076), + [anon_sym_err_GT_PIPE] = ACTIONS(2076), + [anon_sym_out_GT_PIPE] = ACTIONS(2076), + [anon_sym_e_GT_PIPE] = ACTIONS(2076), + [anon_sym_o_GT_PIPE] = ACTIONS(2076), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2076), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2076), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2076), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2076), + [anon_sym_RPAREN] = ACTIONS(2076), + [anon_sym_GT2] = ACTIONS(2078), + [anon_sym_DASH2] = ACTIONS(2074), + [anon_sym_LBRACE] = ACTIONS(2076), + [anon_sym_RBRACE] = ACTIONS(2076), + [anon_sym_EQ_GT] = ACTIONS(2076), + [anon_sym_STAR2] = ACTIONS(2078), + [anon_sym_and2] = ACTIONS(2074), + [anon_sym_xor2] = ACTIONS(2074), + [anon_sym_or2] = ACTIONS(2074), + [anon_sym_not_DASHin2] = ACTIONS(2074), + [anon_sym_has2] = ACTIONS(2074), + [anon_sym_not_DASHhas2] = ACTIONS(2074), + [anon_sym_starts_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2074), + [anon_sym_ends_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2074), + [anon_sym_EQ_EQ2] = ACTIONS(2074), + [anon_sym_BANG_EQ2] = ACTIONS(2074), + [anon_sym_LT2] = ACTIONS(2078), + [anon_sym_LT_EQ2] = ACTIONS(2074), + [anon_sym_GT_EQ2] = ACTIONS(2074), + [anon_sym_EQ_TILDE2] = ACTIONS(2074), + [anon_sym_BANG_TILDE2] = ACTIONS(2074), + [anon_sym_like2] = ACTIONS(2074), + [anon_sym_not_DASHlike2] = ACTIONS(2074), + [anon_sym_STAR_STAR2] = ACTIONS(2074), + [anon_sym_PLUS_PLUS2] = ACTIONS(2074), + [anon_sym_SLASH2] = ACTIONS(2078), + [anon_sym_mod2] = ACTIONS(2074), + [anon_sym_SLASH_SLASH2] = ACTIONS(2074), + [anon_sym_PLUS2] = ACTIONS(2078), + [anon_sym_bit_DASHshl2] = ACTIONS(2074), + [anon_sym_bit_DASHshr2] = ACTIONS(2074), + [anon_sym_bit_DASHand2] = ACTIONS(2074), + [anon_sym_bit_DASHxor2] = ACTIONS(2074), + [anon_sym_bit_DASHor2] = ACTIONS(2074), + [anon_sym_err_GT] = ACTIONS(2080), + [anon_sym_out_GT] = ACTIONS(2080), + [anon_sym_e_GT] = ACTIONS(2080), + [anon_sym_o_GT] = ACTIONS(2080), + [anon_sym_err_PLUSout_GT] = ACTIONS(2080), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2080), + [anon_sym_o_PLUSe_GT] = ACTIONS(2080), + [anon_sym_e_PLUSo_GT] = ACTIONS(2080), + [anon_sym_err_GT_GT] = ACTIONS(2076), + [anon_sym_out_GT_GT] = ACTIONS(2076), + [anon_sym_e_GT_GT] = ACTIONS(2076), + [anon_sym_o_GT_GT] = ACTIONS(2076), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2076), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2076), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2076), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2076), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(938)] = { - [sym_comment] = STATE(938), - [ts_builtin_sym_end] = ACTIONS(1874), - [anon_sym_in] = ACTIONS(1874), - [sym__newline] = ACTIONS(1874), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_err_GT_PIPE] = ACTIONS(1874), - [anon_sym_out_GT_PIPE] = ACTIONS(1874), - [anon_sym_e_GT_PIPE] = ACTIONS(1874), - [anon_sym_o_GT_PIPE] = ACTIONS(1874), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), - [anon_sym_GT2] = ACTIONS(1876), - [anon_sym_DASH2] = ACTIONS(1874), - [anon_sym_STAR2] = ACTIONS(1876), - [anon_sym_and2] = ACTIONS(1874), - [anon_sym_xor2] = ACTIONS(1874), - [anon_sym_or2] = ACTIONS(1874), - [anon_sym_not_DASHin2] = ACTIONS(1874), - [anon_sym_has2] = ACTIONS(1874), - [anon_sym_not_DASHhas2] = ACTIONS(1874), - [anon_sym_starts_DASHwith2] = ACTIONS(1874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1874), - [anon_sym_ends_DASHwith2] = ACTIONS(1874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1874), - [anon_sym_EQ_EQ2] = ACTIONS(1874), - [anon_sym_BANG_EQ2] = ACTIONS(1874), - [anon_sym_LT2] = ACTIONS(1876), - [anon_sym_LT_EQ2] = ACTIONS(1874), - [anon_sym_GT_EQ2] = ACTIONS(1874), - [anon_sym_EQ_TILDE2] = ACTIONS(1874), - [anon_sym_BANG_TILDE2] = ACTIONS(1874), - [anon_sym_like2] = ACTIONS(1874), - [anon_sym_not_DASHlike2] = ACTIONS(1874), - [anon_sym_STAR_STAR2] = ACTIONS(1874), - [anon_sym_PLUS_PLUS2] = ACTIONS(1874), - [anon_sym_SLASH2] = ACTIONS(1876), - [anon_sym_mod2] = ACTIONS(1874), - [anon_sym_SLASH_SLASH2] = ACTIONS(1874), - [anon_sym_PLUS2] = ACTIONS(1876), - [anon_sym_bit_DASHshl2] = ACTIONS(1874), - [anon_sym_bit_DASHshr2] = ACTIONS(1874), - [anon_sym_bit_DASHand2] = ACTIONS(1874), - [anon_sym_bit_DASHxor2] = ACTIONS(1874), - [anon_sym_bit_DASHor2] = ACTIONS(1874), - [anon_sym_DOT_DOT2] = ACTIONS(1876), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1874), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1874), - [anon_sym_err_GT] = ACTIONS(1876), - [anon_sym_out_GT] = ACTIONS(1876), - [anon_sym_e_GT] = ACTIONS(1876), - [anon_sym_o_GT] = ACTIONS(1876), - [anon_sym_err_PLUSout_GT] = ACTIONS(1876), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1876), - [anon_sym_o_PLUSe_GT] = ACTIONS(1876), - [anon_sym_e_PLUSo_GT] = ACTIONS(1876), - [anon_sym_err_GT_GT] = ACTIONS(1874), - [anon_sym_out_GT_GT] = ACTIONS(1874), - [anon_sym_e_GT_GT] = ACTIONS(1874), - [anon_sym_o_GT_GT] = ACTIONS(1874), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), + [STATE(927)] = { + [sym_comment] = STATE(927), + [anon_sym_in] = ACTIONS(2578), + [sym__newline] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym_PIPE] = ACTIONS(2578), + [anon_sym_err_GT_PIPE] = ACTIONS(2578), + [anon_sym_out_GT_PIPE] = ACTIONS(2578), + [anon_sym_e_GT_PIPE] = ACTIONS(2578), + [anon_sym_o_GT_PIPE] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2578), + [anon_sym_RPAREN] = ACTIONS(2578), + [anon_sym_GT2] = ACTIONS(2580), + [anon_sym_DASH2] = ACTIONS(2578), + [anon_sym_LBRACE] = ACTIONS(2578), + [anon_sym_RBRACE] = ACTIONS(2578), + [anon_sym_EQ_GT] = ACTIONS(2578), + [anon_sym_STAR2] = ACTIONS(2580), + [anon_sym_and2] = ACTIONS(2578), + [anon_sym_xor2] = ACTIONS(2578), + [anon_sym_or2] = ACTIONS(2578), + [anon_sym_not_DASHin2] = ACTIONS(2578), + [anon_sym_has2] = ACTIONS(2578), + [anon_sym_not_DASHhas2] = ACTIONS(2578), + [anon_sym_starts_DASHwith2] = ACTIONS(2578), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2578), + [anon_sym_ends_DASHwith2] = ACTIONS(2578), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2578), + [anon_sym_EQ_EQ2] = ACTIONS(2578), + [anon_sym_BANG_EQ2] = ACTIONS(2578), + [anon_sym_LT2] = ACTIONS(2580), + [anon_sym_LT_EQ2] = ACTIONS(2578), + [anon_sym_GT_EQ2] = ACTIONS(2578), + [anon_sym_EQ_TILDE2] = ACTIONS(2578), + [anon_sym_BANG_TILDE2] = ACTIONS(2578), + [anon_sym_like2] = ACTIONS(2578), + [anon_sym_not_DASHlike2] = ACTIONS(2578), + [anon_sym_STAR_STAR2] = ACTIONS(2578), + [anon_sym_PLUS_PLUS2] = ACTIONS(2578), + [anon_sym_SLASH2] = ACTIONS(2580), + [anon_sym_mod2] = ACTIONS(2578), + [anon_sym_SLASH_SLASH2] = ACTIONS(2578), + [anon_sym_PLUS2] = ACTIONS(2580), + [anon_sym_bit_DASHshl2] = ACTIONS(2578), + [anon_sym_bit_DASHshr2] = ACTIONS(2578), + [anon_sym_bit_DASHand2] = ACTIONS(2578), + [anon_sym_bit_DASHxor2] = ACTIONS(2578), + [anon_sym_bit_DASHor2] = ACTIONS(2578), + [anon_sym_err_GT] = ACTIONS(2580), + [anon_sym_out_GT] = ACTIONS(2580), + [anon_sym_e_GT] = ACTIONS(2580), + [anon_sym_o_GT] = ACTIONS(2580), + [anon_sym_err_PLUSout_GT] = ACTIONS(2580), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), + [anon_sym_o_PLUSe_GT] = ACTIONS(2580), + [anon_sym_e_PLUSo_GT] = ACTIONS(2580), + [anon_sym_err_GT_GT] = ACTIONS(2578), + [anon_sym_out_GT_GT] = ACTIONS(2578), + [anon_sym_e_GT_GT] = ACTIONS(2578), + [anon_sym_o_GT_GT] = ACTIONS(2578), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2578), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2578), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2578), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2578), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(939)] = { - [sym_comment] = STATE(939), + [STATE(928)] = { + [sym_comment] = STATE(928), [ts_builtin_sym_end] = ACTIONS(2136), - [anon_sym_in] = ACTIONS(2134), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_DOT_DOT2] = ACTIONS(1748), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1750), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1750), - [anon_sym_err_GT] = ACTIONS(2140), - [anon_sym_out_GT] = ACTIONS(2140), - [anon_sym_e_GT] = ACTIONS(2140), - [anon_sym_o_GT] = ACTIONS(2140), - [anon_sym_err_PLUSout_GT] = ACTIONS(2140), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2140), - [anon_sym_o_PLUSe_GT] = ACTIONS(2140), - [anon_sym_e_PLUSo_GT] = ACTIONS(2140), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(940)] = { - [sym_comment] = STATE(940), - [ts_builtin_sym_end] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [aux_sym__immediate_decimal_token5] = ACTIONS(2307), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), - [sym__unquoted_pattern] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(941)] = { - [sym_comment] = STATE(941), - [anon_sym_in] = ACTIONS(1964), - [sym__newline] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_err_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_GT_PIPE] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_GT2] = ACTIONS(1966), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_STAR2] = ACTIONS(1966), - [anon_sym_and2] = ACTIONS(1964), - [anon_sym_xor2] = ACTIONS(1964), - [anon_sym_or2] = ACTIONS(1964), - [anon_sym_not_DASHin2] = ACTIONS(1964), - [anon_sym_has2] = ACTIONS(1964), - [anon_sym_not_DASHhas2] = ACTIONS(1964), - [anon_sym_starts_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1964), - [anon_sym_ends_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1964), - [anon_sym_EQ_EQ2] = ACTIONS(1964), - [anon_sym_BANG_EQ2] = ACTIONS(1964), - [anon_sym_LT2] = ACTIONS(1966), - [anon_sym_LT_EQ2] = ACTIONS(1964), - [anon_sym_GT_EQ2] = ACTIONS(1964), - [anon_sym_EQ_TILDE2] = ACTIONS(1964), - [anon_sym_BANG_TILDE2] = ACTIONS(1964), - [anon_sym_like2] = ACTIONS(1964), - [anon_sym_not_DASHlike2] = ACTIONS(1964), - [anon_sym_LPAREN2] = ACTIONS(1968), - [anon_sym_STAR_STAR2] = ACTIONS(1964), - [anon_sym_PLUS_PLUS2] = ACTIONS(1964), - [anon_sym_SLASH2] = ACTIONS(1966), - [anon_sym_mod2] = ACTIONS(1964), - [anon_sym_SLASH_SLASH2] = ACTIONS(1964), - [anon_sym_PLUS2] = ACTIONS(1966), - [anon_sym_bit_DASHshl2] = ACTIONS(1964), - [anon_sym_bit_DASHshr2] = ACTIONS(1964), - [anon_sym_bit_DASHand2] = ACTIONS(1964), - [anon_sym_bit_DASHxor2] = ACTIONS(1964), - [anon_sym_bit_DASHor2] = ACTIONS(1964), - [anon_sym_err_GT] = ACTIONS(1966), - [anon_sym_out_GT] = ACTIONS(1966), - [anon_sym_e_GT] = ACTIONS(1966), - [anon_sym_o_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT] = ACTIONS(1966), - [anon_sym_err_GT_GT] = ACTIONS(1964), - [anon_sym_out_GT_GT] = ACTIONS(1964), - [anon_sym_e_GT_GT] = ACTIONS(1964), - [anon_sym_o_GT_GT] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1964), - [sym__unquoted_pattern] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(942)] = { - [sym_comment] = STATE(942), - [ts_builtin_sym_end] = ACTIONS(1886), - [anon_sym_in] = ACTIONS(1886), - [sym__newline] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_err_GT_PIPE] = ACTIONS(1886), - [anon_sym_out_GT_PIPE] = ACTIONS(1886), - [anon_sym_e_GT_PIPE] = ACTIONS(1886), - [anon_sym_o_GT_PIPE] = ACTIONS(1886), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1886), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1886), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1886), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1886), - [anon_sym_GT2] = ACTIONS(1888), - [anon_sym_DASH2] = ACTIONS(1886), - [anon_sym_STAR2] = ACTIONS(1888), - [anon_sym_and2] = ACTIONS(1886), - [anon_sym_xor2] = ACTIONS(1886), - [anon_sym_or2] = ACTIONS(1886), - [anon_sym_not_DASHin2] = ACTIONS(1886), - [anon_sym_has2] = ACTIONS(1886), - [anon_sym_not_DASHhas2] = ACTIONS(1886), - [anon_sym_starts_DASHwith2] = ACTIONS(1886), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1886), - [anon_sym_ends_DASHwith2] = ACTIONS(1886), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1886), - [anon_sym_EQ_EQ2] = ACTIONS(1886), - [anon_sym_BANG_EQ2] = ACTIONS(1886), - [anon_sym_LT2] = ACTIONS(1888), - [anon_sym_LT_EQ2] = ACTIONS(1886), - [anon_sym_GT_EQ2] = ACTIONS(1886), - [anon_sym_EQ_TILDE2] = ACTIONS(1886), - [anon_sym_BANG_TILDE2] = ACTIONS(1886), - [anon_sym_like2] = ACTIONS(1886), - [anon_sym_not_DASHlike2] = ACTIONS(1886), - [anon_sym_STAR_STAR2] = ACTIONS(1886), - [anon_sym_PLUS_PLUS2] = ACTIONS(1886), - [anon_sym_SLASH2] = ACTIONS(1888), - [anon_sym_mod2] = ACTIONS(1886), - [anon_sym_SLASH_SLASH2] = ACTIONS(1886), - [anon_sym_PLUS2] = ACTIONS(1888), - [anon_sym_bit_DASHshl2] = ACTIONS(1886), - [anon_sym_bit_DASHshr2] = ACTIONS(1886), - [anon_sym_bit_DASHand2] = ACTIONS(1886), - [anon_sym_bit_DASHxor2] = ACTIONS(1886), - [anon_sym_bit_DASHor2] = ACTIONS(1886), - [anon_sym_DOT_DOT2] = ACTIONS(1888), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1886), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1886), - [anon_sym_err_GT] = ACTIONS(1888), - [anon_sym_out_GT] = ACTIONS(1888), - [anon_sym_e_GT] = ACTIONS(1888), - [anon_sym_o_GT] = ACTIONS(1888), - [anon_sym_err_PLUSout_GT] = ACTIONS(1888), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1888), - [anon_sym_o_PLUSe_GT] = ACTIONS(1888), - [anon_sym_e_PLUSo_GT] = ACTIONS(1888), - [anon_sym_err_GT_GT] = ACTIONS(1886), - [anon_sym_out_GT_GT] = ACTIONS(1886), - [anon_sym_e_GT_GT] = ACTIONS(1886), - [anon_sym_o_GT_GT] = ACTIONS(1886), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1886), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1886), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1886), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1886), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(943)] = { - [sym_comment] = STATE(943), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_RPAREN] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_EQ_GT] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1706), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(944)] = { - [sym_comment] = STATE(944), - [anon_sym_in] = ACTIONS(2134), + [anon_sym_in] = ACTIONS(2136), [sym__newline] = ACTIONS(2136), [anon_sym_SEMI] = ACTIONS(2136), [anon_sym_PIPE] = ACTIONS(2136), @@ -117609,181 +116711,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_RPAREN] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_EQ_GT] = ACTIONS(2136), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_err_GT] = ACTIONS(2140), - [anon_sym_out_GT] = ACTIONS(2140), - [anon_sym_e_GT] = ACTIONS(2140), - [anon_sym_o_GT] = ACTIONS(2140), - [anon_sym_err_PLUSout_GT] = ACTIONS(2140), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2140), - [anon_sym_o_PLUSe_GT] = ACTIONS(2140), - [anon_sym_e_PLUSo_GT] = ACTIONS(2140), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(945)] = { - [sym_comment] = STATE(945), - [anon_sym_in] = ACTIONS(2599), - [sym__newline] = ACTIONS(2599), - [anon_sym_SEMI] = ACTIONS(2599), - [anon_sym_PIPE] = ACTIONS(2599), - [anon_sym_err_GT_PIPE] = ACTIONS(2599), - [anon_sym_out_GT_PIPE] = ACTIONS(2599), - [anon_sym_e_GT_PIPE] = ACTIONS(2599), - [anon_sym_o_GT_PIPE] = ACTIONS(2599), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2599), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2599), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2599), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2599), - [anon_sym_RPAREN] = ACTIONS(2599), - [anon_sym_GT2] = ACTIONS(2601), - [anon_sym_DASH2] = ACTIONS(2599), - [anon_sym_LBRACE] = ACTIONS(2599), - [anon_sym_RBRACE] = ACTIONS(2599), - [anon_sym_EQ_GT] = ACTIONS(2599), - [anon_sym_STAR2] = ACTIONS(2601), - [anon_sym_and2] = ACTIONS(2599), - [anon_sym_xor2] = ACTIONS(2599), - [anon_sym_or2] = ACTIONS(2599), - [anon_sym_not_DASHin2] = ACTIONS(2599), - [anon_sym_has2] = ACTIONS(2599), - [anon_sym_not_DASHhas2] = ACTIONS(2599), - [anon_sym_starts_DASHwith2] = ACTIONS(2599), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2599), - [anon_sym_ends_DASHwith2] = ACTIONS(2599), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2599), - [anon_sym_EQ_EQ2] = ACTIONS(2599), - [anon_sym_BANG_EQ2] = ACTIONS(2599), - [anon_sym_LT2] = ACTIONS(2601), - [anon_sym_LT_EQ2] = ACTIONS(2599), - [anon_sym_GT_EQ2] = ACTIONS(2599), - [anon_sym_EQ_TILDE2] = ACTIONS(2599), - [anon_sym_BANG_TILDE2] = ACTIONS(2599), - [anon_sym_like2] = ACTIONS(2599), - [anon_sym_not_DASHlike2] = ACTIONS(2599), - [anon_sym_STAR_STAR2] = ACTIONS(2599), - [anon_sym_PLUS_PLUS2] = ACTIONS(2599), - [anon_sym_SLASH2] = ACTIONS(2601), - [anon_sym_mod2] = ACTIONS(2599), - [anon_sym_SLASH_SLASH2] = ACTIONS(2599), - [anon_sym_PLUS2] = ACTIONS(2601), - [anon_sym_bit_DASHshl2] = ACTIONS(2599), - [anon_sym_bit_DASHshr2] = ACTIONS(2599), - [anon_sym_bit_DASHand2] = ACTIONS(2599), - [anon_sym_bit_DASHxor2] = ACTIONS(2599), - [anon_sym_bit_DASHor2] = ACTIONS(2599), - [anon_sym_err_GT] = ACTIONS(2601), - [anon_sym_out_GT] = ACTIONS(2601), - [anon_sym_e_GT] = ACTIONS(2601), - [anon_sym_o_GT] = ACTIONS(2601), - [anon_sym_err_PLUSout_GT] = ACTIONS(2601), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2601), - [anon_sym_o_PLUSe_GT] = ACTIONS(2601), - [anon_sym_e_PLUSo_GT] = ACTIONS(2601), - [anon_sym_err_GT_GT] = ACTIONS(2599), - [anon_sym_out_GT_GT] = ACTIONS(2599), - [anon_sym_e_GT_GT] = ACTIONS(2599), - [anon_sym_o_GT_GT] = ACTIONS(2599), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2599), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2599), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2599), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2599), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(946)] = { - [sym_comment] = STATE(946), - [anon_sym_in] = ACTIONS(2134), - [sym__newline] = ACTIONS(2134), - [anon_sym_SEMI] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_err_GT_PIPE] = ACTIONS(2134), - [anon_sym_out_GT_PIPE] = ACTIONS(2134), - [anon_sym_e_GT_PIPE] = ACTIONS(2134), - [anon_sym_o_GT_PIPE] = ACTIONS(2134), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2134), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2134), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2134), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2134), - [anon_sym_RPAREN] = ACTIONS(2134), [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2134), - [anon_sym_RBRACE] = ACTIONS(2134), - [anon_sym_EQ_GT] = ACTIONS(2134), + [anon_sym_DASH2] = ACTIONS(2136), [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), + [anon_sym_and2] = ACTIONS(2136), + [anon_sym_xor2] = ACTIONS(2136), + [anon_sym_or2] = ACTIONS(2136), + [anon_sym_not_DASHin2] = ACTIONS(2136), + [anon_sym_has2] = ACTIONS(2136), + [anon_sym_not_DASHhas2] = ACTIONS(2136), + [anon_sym_starts_DASHwith2] = ACTIONS(2136), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2136), + [anon_sym_ends_DASHwith2] = ACTIONS(2136), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2136), + [anon_sym_EQ_EQ2] = ACTIONS(2136), + [anon_sym_BANG_EQ2] = ACTIONS(2136), [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), + [anon_sym_LT_EQ2] = ACTIONS(2136), + [anon_sym_GT_EQ2] = ACTIONS(2136), + [anon_sym_EQ_TILDE2] = ACTIONS(2136), + [anon_sym_BANG_TILDE2] = ACTIONS(2136), + [anon_sym_like2] = ACTIONS(2136), + [anon_sym_not_DASHlike2] = ACTIONS(2136), + [anon_sym_STAR_STAR2] = ACTIONS(2136), + [anon_sym_PLUS_PLUS2] = ACTIONS(2136), [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), + [anon_sym_mod2] = ACTIONS(2136), + [anon_sym_SLASH_SLASH2] = ACTIONS(2136), [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), + [anon_sym_bit_DASHshl2] = ACTIONS(2136), + [anon_sym_bit_DASHshr2] = ACTIONS(2136), + [anon_sym_bit_DASHand2] = ACTIONS(2136), + [anon_sym_bit_DASHxor2] = ACTIONS(2136), + [anon_sym_bit_DASHor2] = ACTIONS(2136), + [anon_sym_DOT_DOT2] = ACTIONS(2582), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2584), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2584), [anon_sym_err_GT] = ACTIONS(2138), [anon_sym_out_GT] = ACTIONS(2138), [anon_sym_e_GT] = ACTIONS(2138), @@ -117792,225 +116755,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT] = ACTIONS(2138), [anon_sym_o_PLUSe_GT] = ACTIONS(2138), [anon_sym_e_PLUSo_GT] = ACTIONS(2138), - [anon_sym_err_GT_GT] = ACTIONS(2134), - [anon_sym_out_GT_GT] = ACTIONS(2134), - [anon_sym_e_GT_GT] = ACTIONS(2134), - [anon_sym_o_GT_GT] = ACTIONS(2134), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2134), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2134), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2134), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2134), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(947)] = { - [sym_comment] = STATE(947), - [anon_sym_in] = ACTIONS(2603), - [sym__newline] = ACTIONS(2603), - [anon_sym_SEMI] = ACTIONS(2603), - [anon_sym_PIPE] = ACTIONS(2603), - [anon_sym_err_GT_PIPE] = ACTIONS(2603), - [anon_sym_out_GT_PIPE] = ACTIONS(2603), - [anon_sym_e_GT_PIPE] = ACTIONS(2603), - [anon_sym_o_GT_PIPE] = ACTIONS(2603), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2603), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2603), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2603), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2603), - [anon_sym_RPAREN] = ACTIONS(2603), - [anon_sym_GT2] = ACTIONS(2605), - [anon_sym_DASH2] = ACTIONS(2603), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_RBRACE] = ACTIONS(2603), - [anon_sym_EQ_GT] = ACTIONS(2603), - [anon_sym_STAR2] = ACTIONS(2605), - [anon_sym_and2] = ACTIONS(2603), - [anon_sym_xor2] = ACTIONS(2603), - [anon_sym_or2] = ACTIONS(2603), - [anon_sym_not_DASHin2] = ACTIONS(2603), - [anon_sym_has2] = ACTIONS(2603), - [anon_sym_not_DASHhas2] = ACTIONS(2603), - [anon_sym_starts_DASHwith2] = ACTIONS(2603), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2603), - [anon_sym_ends_DASHwith2] = ACTIONS(2603), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2603), - [anon_sym_EQ_EQ2] = ACTIONS(2603), - [anon_sym_BANG_EQ2] = ACTIONS(2603), - [anon_sym_LT2] = ACTIONS(2605), - [anon_sym_LT_EQ2] = ACTIONS(2603), - [anon_sym_GT_EQ2] = ACTIONS(2603), - [anon_sym_EQ_TILDE2] = ACTIONS(2603), - [anon_sym_BANG_TILDE2] = ACTIONS(2603), - [anon_sym_like2] = ACTIONS(2603), - [anon_sym_not_DASHlike2] = ACTIONS(2603), - [anon_sym_STAR_STAR2] = ACTIONS(2603), - [anon_sym_PLUS_PLUS2] = ACTIONS(2603), - [anon_sym_SLASH2] = ACTIONS(2605), - [anon_sym_mod2] = ACTIONS(2603), - [anon_sym_SLASH_SLASH2] = ACTIONS(2603), - [anon_sym_PLUS2] = ACTIONS(2605), - [anon_sym_bit_DASHshl2] = ACTIONS(2603), - [anon_sym_bit_DASHshr2] = ACTIONS(2603), - [anon_sym_bit_DASHand2] = ACTIONS(2603), - [anon_sym_bit_DASHxor2] = ACTIONS(2603), - [anon_sym_bit_DASHor2] = ACTIONS(2603), - [anon_sym_err_GT] = ACTIONS(2605), - [anon_sym_out_GT] = ACTIONS(2605), - [anon_sym_e_GT] = ACTIONS(2605), - [anon_sym_o_GT] = ACTIONS(2605), - [anon_sym_err_PLUSout_GT] = ACTIONS(2605), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2605), - [anon_sym_o_PLUSe_GT] = ACTIONS(2605), - [anon_sym_e_PLUSo_GT] = ACTIONS(2605), - [anon_sym_err_GT_GT] = ACTIONS(2603), - [anon_sym_out_GT_GT] = ACTIONS(2603), - [anon_sym_e_GT_GT] = ACTIONS(2603), - [anon_sym_o_GT_GT] = ACTIONS(2603), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2603), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2603), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2603), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2603), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(948)] = { - [sym_comment] = STATE(948), - [anon_sym_in] = ACTIONS(2575), - [sym__newline] = ACTIONS(2575), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_PIPE] = ACTIONS(2575), - [anon_sym_err_GT_PIPE] = ACTIONS(2575), - [anon_sym_out_GT_PIPE] = ACTIONS(2575), - [anon_sym_e_GT_PIPE] = ACTIONS(2575), - [anon_sym_o_GT_PIPE] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2575), - [anon_sym_RPAREN] = ACTIONS(2575), - [anon_sym_GT2] = ACTIONS(2577), - [anon_sym_DASH2] = ACTIONS(2575), - [anon_sym_RBRACE] = ACTIONS(2575), - [anon_sym_STAR2] = ACTIONS(2577), - [anon_sym_and2] = ACTIONS(2575), - [anon_sym_xor2] = ACTIONS(2575), - [anon_sym_or2] = ACTIONS(2575), - [anon_sym_not_DASHin2] = ACTIONS(2575), - [anon_sym_has2] = ACTIONS(2575), - [anon_sym_not_DASHhas2] = ACTIONS(2575), - [anon_sym_starts_DASHwith2] = ACTIONS(2575), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2575), - [anon_sym_ends_DASHwith2] = ACTIONS(2575), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2575), - [anon_sym_EQ_EQ2] = ACTIONS(2575), - [anon_sym_BANG_EQ2] = ACTIONS(2575), - [anon_sym_LT2] = ACTIONS(2577), - [anon_sym_LT_EQ2] = ACTIONS(2575), - [anon_sym_GT_EQ2] = ACTIONS(2575), - [anon_sym_EQ_TILDE2] = ACTIONS(2575), - [anon_sym_BANG_TILDE2] = ACTIONS(2575), - [anon_sym_like2] = ACTIONS(2575), - [anon_sym_not_DASHlike2] = ACTIONS(2575), - [anon_sym_LPAREN2] = ACTIONS(1978), - [anon_sym_STAR_STAR2] = ACTIONS(2575), - [anon_sym_PLUS_PLUS2] = ACTIONS(2575), - [anon_sym_SLASH2] = ACTIONS(2577), - [anon_sym_mod2] = ACTIONS(2575), - [anon_sym_SLASH_SLASH2] = ACTIONS(2575), - [anon_sym_PLUS2] = ACTIONS(2577), - [anon_sym_bit_DASHshl2] = ACTIONS(2575), - [anon_sym_bit_DASHshr2] = ACTIONS(2575), - [anon_sym_bit_DASHand2] = ACTIONS(2575), - [anon_sym_bit_DASHxor2] = ACTIONS(2575), - [anon_sym_bit_DASHor2] = ACTIONS(2575), - [anon_sym_err_GT] = ACTIONS(2577), - [anon_sym_out_GT] = ACTIONS(2577), - [anon_sym_e_GT] = ACTIONS(2577), - [anon_sym_o_GT] = ACTIONS(2577), - [anon_sym_err_PLUSout_GT] = ACTIONS(2577), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2577), - [anon_sym_o_PLUSe_GT] = ACTIONS(2577), - [anon_sym_e_PLUSo_GT] = ACTIONS(2577), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [sym__unquoted_pattern] = ACTIONS(1984), + [anon_sym_err_GT_GT] = ACTIONS(2136), + [anon_sym_out_GT_GT] = ACTIONS(2136), + [anon_sym_e_GT_GT] = ACTIONS(2136), + [anon_sym_o_GT_GT] = ACTIONS(2136), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(949)] = { - [sym_comment] = STATE(949), - [anon_sym_in] = ACTIONS(2607), - [sym__newline] = ACTIONS(2607), - [anon_sym_SEMI] = ACTIONS(2607), - [anon_sym_PIPE] = ACTIONS(2607), - [anon_sym_err_GT_PIPE] = ACTIONS(2607), - [anon_sym_out_GT_PIPE] = ACTIONS(2607), - [anon_sym_e_GT_PIPE] = ACTIONS(2607), - [anon_sym_o_GT_PIPE] = ACTIONS(2607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2607), - [anon_sym_RPAREN] = ACTIONS(2607), - [anon_sym_GT2] = ACTIONS(2609), - [anon_sym_DASH2] = ACTIONS(2607), - [anon_sym_LBRACE] = ACTIONS(2607), - [anon_sym_RBRACE] = ACTIONS(2607), - [anon_sym_EQ_GT] = ACTIONS(2607), - [anon_sym_STAR2] = ACTIONS(2609), - [anon_sym_and2] = ACTIONS(2607), - [anon_sym_xor2] = ACTIONS(2607), - [anon_sym_or2] = ACTIONS(2607), - [anon_sym_not_DASHin2] = ACTIONS(2607), - [anon_sym_has2] = ACTIONS(2607), - [anon_sym_not_DASHhas2] = ACTIONS(2607), - [anon_sym_starts_DASHwith2] = ACTIONS(2607), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2607), - [anon_sym_ends_DASHwith2] = ACTIONS(2607), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2607), - [anon_sym_EQ_EQ2] = ACTIONS(2607), - [anon_sym_BANG_EQ2] = ACTIONS(2607), - [anon_sym_LT2] = ACTIONS(2609), - [anon_sym_LT_EQ2] = ACTIONS(2607), - [anon_sym_GT_EQ2] = ACTIONS(2607), - [anon_sym_EQ_TILDE2] = ACTIONS(2607), - [anon_sym_BANG_TILDE2] = ACTIONS(2607), - [anon_sym_like2] = ACTIONS(2607), - [anon_sym_not_DASHlike2] = ACTIONS(2607), - [anon_sym_STAR_STAR2] = ACTIONS(2607), - [anon_sym_PLUS_PLUS2] = ACTIONS(2607), - [anon_sym_SLASH2] = ACTIONS(2609), - [anon_sym_mod2] = ACTIONS(2607), - [anon_sym_SLASH_SLASH2] = ACTIONS(2607), - [anon_sym_PLUS2] = ACTIONS(2609), - [anon_sym_bit_DASHshl2] = ACTIONS(2607), - [anon_sym_bit_DASHshr2] = ACTIONS(2607), - [anon_sym_bit_DASHand2] = ACTIONS(2607), - [anon_sym_bit_DASHxor2] = ACTIONS(2607), - [anon_sym_bit_DASHor2] = ACTIONS(2607), - [anon_sym_err_GT] = ACTIONS(2609), - [anon_sym_out_GT] = ACTIONS(2609), - [anon_sym_e_GT] = ACTIONS(2609), - [anon_sym_o_GT] = ACTIONS(2609), - [anon_sym_err_PLUSout_GT] = ACTIONS(2609), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2609), - [anon_sym_o_PLUSe_GT] = ACTIONS(2609), - [anon_sym_e_PLUSo_GT] = ACTIONS(2609), - [anon_sym_err_GT_GT] = ACTIONS(2607), - [anon_sym_out_GT_GT] = ACTIONS(2607), - [anon_sym_e_GT_GT] = ACTIONS(2607), - [anon_sym_o_GT_GT] = ACTIONS(2607), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2607), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2607), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2607), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2607), + [STATE(929)] = { + [sym_comment] = STATE(929), + [ts_builtin_sym_end] = ACTIONS(2144), + [anon_sym_in] = ACTIONS(2144), + [sym__newline] = ACTIONS(2144), + [anon_sym_SEMI] = ACTIONS(2144), + [anon_sym_PIPE] = ACTIONS(2144), + [anon_sym_err_GT_PIPE] = ACTIONS(2144), + [anon_sym_out_GT_PIPE] = ACTIONS(2144), + [anon_sym_e_GT_PIPE] = ACTIONS(2144), + [anon_sym_o_GT_PIPE] = ACTIONS(2144), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2144), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2144), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2144), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2144), + [anon_sym_GT2] = ACTIONS(2146), + [anon_sym_DASH2] = ACTIONS(2144), + [anon_sym_STAR2] = ACTIONS(2146), + [anon_sym_and2] = ACTIONS(2144), + [anon_sym_xor2] = ACTIONS(2144), + [anon_sym_or2] = ACTIONS(2144), + [anon_sym_not_DASHin2] = ACTIONS(2144), + [anon_sym_has2] = ACTIONS(2144), + [anon_sym_not_DASHhas2] = ACTIONS(2144), + [anon_sym_starts_DASHwith2] = ACTIONS(2144), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2144), + [anon_sym_ends_DASHwith2] = ACTIONS(2144), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2144), + [anon_sym_EQ_EQ2] = ACTIONS(2144), + [anon_sym_BANG_EQ2] = ACTIONS(2144), + [anon_sym_LT2] = ACTIONS(2146), + [anon_sym_LT_EQ2] = ACTIONS(2144), + [anon_sym_GT_EQ2] = ACTIONS(2144), + [anon_sym_EQ_TILDE2] = ACTIONS(2144), + [anon_sym_BANG_TILDE2] = ACTIONS(2144), + [anon_sym_like2] = ACTIONS(2144), + [anon_sym_not_DASHlike2] = ACTIONS(2144), + [anon_sym_STAR_STAR2] = ACTIONS(2144), + [anon_sym_PLUS_PLUS2] = ACTIONS(2144), + [anon_sym_SLASH2] = ACTIONS(2146), + [anon_sym_mod2] = ACTIONS(2144), + [anon_sym_SLASH_SLASH2] = ACTIONS(2144), + [anon_sym_PLUS2] = ACTIONS(2146), + [anon_sym_bit_DASHshl2] = ACTIONS(2144), + [anon_sym_bit_DASHshr2] = ACTIONS(2144), + [anon_sym_bit_DASHand2] = ACTIONS(2144), + [anon_sym_bit_DASHxor2] = ACTIONS(2144), + [anon_sym_bit_DASHor2] = ACTIONS(2144), + [anon_sym_DOT_DOT2] = ACTIONS(2586), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2588), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2588), + [anon_sym_err_GT] = ACTIONS(2146), + [anon_sym_out_GT] = ACTIONS(2146), + [anon_sym_e_GT] = ACTIONS(2146), + [anon_sym_o_GT] = ACTIONS(2146), + [anon_sym_err_PLUSout_GT] = ACTIONS(2146), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2146), + [anon_sym_o_PLUSe_GT] = ACTIONS(2146), + [anon_sym_e_PLUSo_GT] = ACTIONS(2146), + [anon_sym_err_GT_GT] = ACTIONS(2144), + [anon_sym_out_GT_GT] = ACTIONS(2144), + [anon_sym_e_GT_GT] = ACTIONS(2144), + [anon_sym_o_GT_GT] = ACTIONS(2144), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2144), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2144), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2144), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2144), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(950)] = { - [sym_comment] = STATE(950), + [STATE(930)] = { + [sym_comment] = STATE(930), [ts_builtin_sym_end] = ACTIONS(2152), [anon_sym_in] = ACTIONS(2152), [sym__newline] = ACTIONS(2152), @@ -118057,9 +116882,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(2152), [anon_sym_bit_DASHxor2] = ACTIONS(2152), [anon_sym_bit_DASHor2] = ACTIONS(2152), - [anon_sym_DOT_DOT2] = ACTIONS(2611), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2613), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2613), + [anon_sym_DOT_DOT2] = ACTIONS(2590), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2592), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2592), [anon_sym_err_GT] = ACTIONS(2154), [anon_sym_out_GT] = ACTIONS(2154), [anon_sym_e_GT] = ACTIONS(2154), @@ -118078,698 +116903,2694 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2152), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(931)] = { + [sym_comment] = STATE(931), + [ts_builtin_sym_end] = ACTIONS(1942), + [anon_sym_in] = ACTIONS(1942), + [sym__newline] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_err_GT_PIPE] = ACTIONS(1942), + [anon_sym_out_GT_PIPE] = ACTIONS(1942), + [anon_sym_e_GT_PIPE] = ACTIONS(1942), + [anon_sym_o_GT_PIPE] = ACTIONS(1942), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1942), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1942), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1942), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1942), + [anon_sym_GT2] = ACTIONS(1944), + [anon_sym_DASH2] = ACTIONS(1942), + [anon_sym_STAR2] = ACTIONS(1944), + [anon_sym_and2] = ACTIONS(1942), + [anon_sym_xor2] = ACTIONS(1942), + [anon_sym_or2] = ACTIONS(1942), + [anon_sym_not_DASHin2] = ACTIONS(1942), + [anon_sym_has2] = ACTIONS(1942), + [anon_sym_not_DASHhas2] = ACTIONS(1942), + [anon_sym_starts_DASHwith2] = ACTIONS(1942), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1942), + [anon_sym_ends_DASHwith2] = ACTIONS(1942), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1942), + [anon_sym_EQ_EQ2] = ACTIONS(1942), + [anon_sym_BANG_EQ2] = ACTIONS(1942), + [anon_sym_LT2] = ACTIONS(1944), + [anon_sym_LT_EQ2] = ACTIONS(1942), + [anon_sym_GT_EQ2] = ACTIONS(1942), + [anon_sym_EQ_TILDE2] = ACTIONS(1942), + [anon_sym_BANG_TILDE2] = ACTIONS(1942), + [anon_sym_like2] = ACTIONS(1942), + [anon_sym_not_DASHlike2] = ACTIONS(1942), + [anon_sym_STAR_STAR2] = ACTIONS(1942), + [anon_sym_PLUS_PLUS2] = ACTIONS(1942), + [anon_sym_SLASH2] = ACTIONS(1944), + [anon_sym_mod2] = ACTIONS(1942), + [anon_sym_SLASH_SLASH2] = ACTIONS(1942), + [anon_sym_PLUS2] = ACTIONS(1944), + [anon_sym_bit_DASHshl2] = ACTIONS(1942), + [anon_sym_bit_DASHshr2] = ACTIONS(1942), + [anon_sym_bit_DASHand2] = ACTIONS(1942), + [anon_sym_bit_DASHxor2] = ACTIONS(1942), + [anon_sym_bit_DASHor2] = ACTIONS(1942), + [anon_sym_DOT_DOT2] = ACTIONS(2594), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2596), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2596), + [anon_sym_err_GT] = ACTIONS(1944), + [anon_sym_out_GT] = ACTIONS(1944), + [anon_sym_e_GT] = ACTIONS(1944), + [anon_sym_o_GT] = ACTIONS(1944), + [anon_sym_err_PLUSout_GT] = ACTIONS(1944), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1944), + [anon_sym_o_PLUSe_GT] = ACTIONS(1944), + [anon_sym_e_PLUSo_GT] = ACTIONS(1944), + [anon_sym_err_GT_GT] = ACTIONS(1942), + [anon_sym_out_GT_GT] = ACTIONS(1942), + [anon_sym_e_GT_GT] = ACTIONS(1942), + [anon_sym_o_GT_GT] = ACTIONS(1942), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1942), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1942), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1942), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1942), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(932)] = { + [sym_comment] = STATE(932), + [ts_builtin_sym_end] = ACTIONS(1728), + [anon_sym_in] = ACTIONS(1728), + [sym__newline] = ACTIONS(1728), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_err_GT_PIPE] = ACTIONS(1728), + [anon_sym_out_GT_PIPE] = ACTIONS(1728), + [anon_sym_e_GT_PIPE] = ACTIONS(1728), + [anon_sym_o_GT_PIPE] = ACTIONS(1728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1728), + [anon_sym_GT2] = ACTIONS(1730), + [anon_sym_DASH2] = ACTIONS(1728), + [anon_sym_STAR2] = ACTIONS(1730), + [anon_sym_and2] = ACTIONS(1728), + [anon_sym_xor2] = ACTIONS(1728), + [anon_sym_or2] = ACTIONS(1728), + [anon_sym_not_DASHin2] = ACTIONS(1728), + [anon_sym_has2] = ACTIONS(1728), + [anon_sym_not_DASHhas2] = ACTIONS(1728), + [anon_sym_starts_DASHwith2] = ACTIONS(1728), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1728), + [anon_sym_ends_DASHwith2] = ACTIONS(1728), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1728), + [anon_sym_EQ_EQ2] = ACTIONS(1728), + [anon_sym_BANG_EQ2] = ACTIONS(1728), + [anon_sym_LT2] = ACTIONS(1730), + [anon_sym_LT_EQ2] = ACTIONS(1728), + [anon_sym_GT_EQ2] = ACTIONS(1728), + [anon_sym_EQ_TILDE2] = ACTIONS(1728), + [anon_sym_BANG_TILDE2] = ACTIONS(1728), + [anon_sym_like2] = ACTIONS(1728), + [anon_sym_not_DASHlike2] = ACTIONS(1728), + [anon_sym_LPAREN2] = ACTIONS(1728), + [anon_sym_STAR_STAR2] = ACTIONS(1728), + [anon_sym_PLUS_PLUS2] = ACTIONS(1728), + [anon_sym_SLASH2] = ACTIONS(1730), + [anon_sym_mod2] = ACTIONS(1728), + [anon_sym_SLASH_SLASH2] = ACTIONS(1728), + [anon_sym_PLUS2] = ACTIONS(1730), + [anon_sym_bit_DASHshl2] = ACTIONS(1728), + [anon_sym_bit_DASHshr2] = ACTIONS(1728), + [anon_sym_bit_DASHand2] = ACTIONS(1728), + [anon_sym_bit_DASHxor2] = ACTIONS(1728), + [anon_sym_bit_DASHor2] = ACTIONS(1728), + [aux_sym__immediate_decimal_token5] = ACTIONS(2285), + [anon_sym_err_GT] = ACTIONS(1730), + [anon_sym_out_GT] = ACTIONS(1730), + [anon_sym_e_GT] = ACTIONS(1730), + [anon_sym_o_GT] = ACTIONS(1730), + [anon_sym_err_PLUSout_GT] = ACTIONS(1730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1730), + [anon_sym_o_PLUSe_GT] = ACTIONS(1730), + [anon_sym_e_PLUSo_GT] = ACTIONS(1730), + [anon_sym_err_GT_GT] = ACTIONS(1728), + [anon_sym_out_GT_GT] = ACTIONS(1728), + [anon_sym_e_GT_GT] = ACTIONS(1728), + [anon_sym_o_GT_GT] = ACTIONS(1728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1728), + [sym__unquoted_pattern] = ACTIONS(1730), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(933)] = { + [sym_comment] = STATE(933), + [anon_sym_in] = ACTIONS(2598), + [sym__newline] = ACTIONS(2598), + [anon_sym_SEMI] = ACTIONS(2598), + [anon_sym_PIPE] = ACTIONS(2598), + [anon_sym_err_GT_PIPE] = ACTIONS(2598), + [anon_sym_out_GT_PIPE] = ACTIONS(2598), + [anon_sym_e_GT_PIPE] = ACTIONS(2598), + [anon_sym_o_GT_PIPE] = ACTIONS(2598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2598), + [anon_sym_RPAREN] = ACTIONS(2598), + [anon_sym_GT2] = ACTIONS(2600), + [anon_sym_DASH2] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(2598), + [anon_sym_RBRACE] = ACTIONS(2598), + [anon_sym_EQ_GT] = ACTIONS(2598), + [anon_sym_STAR2] = ACTIONS(2600), + [anon_sym_and2] = ACTIONS(2598), + [anon_sym_xor2] = ACTIONS(2598), + [anon_sym_or2] = ACTIONS(2598), + [anon_sym_not_DASHin2] = ACTIONS(2598), + [anon_sym_has2] = ACTIONS(2598), + [anon_sym_not_DASHhas2] = ACTIONS(2598), + [anon_sym_starts_DASHwith2] = ACTIONS(2598), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2598), + [anon_sym_ends_DASHwith2] = ACTIONS(2598), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2598), + [anon_sym_EQ_EQ2] = ACTIONS(2598), + [anon_sym_BANG_EQ2] = ACTIONS(2598), + [anon_sym_LT2] = ACTIONS(2600), + [anon_sym_LT_EQ2] = ACTIONS(2598), + [anon_sym_GT_EQ2] = ACTIONS(2598), + [anon_sym_EQ_TILDE2] = ACTIONS(2598), + [anon_sym_BANG_TILDE2] = ACTIONS(2598), + [anon_sym_like2] = ACTIONS(2598), + [anon_sym_not_DASHlike2] = ACTIONS(2598), + [anon_sym_STAR_STAR2] = ACTIONS(2598), + [anon_sym_PLUS_PLUS2] = ACTIONS(2598), + [anon_sym_SLASH2] = ACTIONS(2600), + [anon_sym_mod2] = ACTIONS(2598), + [anon_sym_SLASH_SLASH2] = ACTIONS(2598), + [anon_sym_PLUS2] = ACTIONS(2600), + [anon_sym_bit_DASHshl2] = ACTIONS(2598), + [anon_sym_bit_DASHshr2] = ACTIONS(2598), + [anon_sym_bit_DASHand2] = ACTIONS(2598), + [anon_sym_bit_DASHxor2] = ACTIONS(2598), + [anon_sym_bit_DASHor2] = ACTIONS(2598), + [anon_sym_err_GT] = ACTIONS(2600), + [anon_sym_out_GT] = ACTIONS(2600), + [anon_sym_e_GT] = ACTIONS(2600), + [anon_sym_o_GT] = ACTIONS(2600), + [anon_sym_err_PLUSout_GT] = ACTIONS(2600), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), + [anon_sym_o_PLUSe_GT] = ACTIONS(2600), + [anon_sym_e_PLUSo_GT] = ACTIONS(2600), + [anon_sym_err_GT_GT] = ACTIONS(2598), + [anon_sym_out_GT_GT] = ACTIONS(2598), + [anon_sym_e_GT_GT] = ACTIONS(2598), + [anon_sym_o_GT_GT] = ACTIONS(2598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2598), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(934)] = { + [sym_comment] = STATE(934), + [anon_sym_in] = ACTIONS(2602), + [sym__newline] = ACTIONS(2602), + [anon_sym_SEMI] = ACTIONS(2602), + [anon_sym_PIPE] = ACTIONS(2602), + [anon_sym_err_GT_PIPE] = ACTIONS(2602), + [anon_sym_out_GT_PIPE] = ACTIONS(2602), + [anon_sym_e_GT_PIPE] = ACTIONS(2602), + [anon_sym_o_GT_PIPE] = ACTIONS(2602), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2602), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2602), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2602), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2602), + [anon_sym_RPAREN] = ACTIONS(2602), + [anon_sym_GT2] = ACTIONS(2604), + [anon_sym_DASH2] = ACTIONS(2602), + [anon_sym_LBRACE] = ACTIONS(2602), + [anon_sym_RBRACE] = ACTIONS(2602), + [anon_sym_EQ_GT] = ACTIONS(2602), + [anon_sym_STAR2] = ACTIONS(2604), + [anon_sym_and2] = ACTIONS(2602), + [anon_sym_xor2] = ACTIONS(2602), + [anon_sym_or2] = ACTIONS(2602), + [anon_sym_not_DASHin2] = ACTIONS(2602), + [anon_sym_has2] = ACTIONS(2602), + [anon_sym_not_DASHhas2] = ACTIONS(2602), + [anon_sym_starts_DASHwith2] = ACTIONS(2602), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2602), + [anon_sym_ends_DASHwith2] = ACTIONS(2602), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2602), + [anon_sym_EQ_EQ2] = ACTIONS(2602), + [anon_sym_BANG_EQ2] = ACTIONS(2602), + [anon_sym_LT2] = ACTIONS(2604), + [anon_sym_LT_EQ2] = ACTIONS(2602), + [anon_sym_GT_EQ2] = ACTIONS(2602), + [anon_sym_EQ_TILDE2] = ACTIONS(2602), + [anon_sym_BANG_TILDE2] = ACTIONS(2602), + [anon_sym_like2] = ACTIONS(2602), + [anon_sym_not_DASHlike2] = ACTIONS(2602), + [anon_sym_STAR_STAR2] = ACTIONS(2602), + [anon_sym_PLUS_PLUS2] = ACTIONS(2602), + [anon_sym_SLASH2] = ACTIONS(2604), + [anon_sym_mod2] = ACTIONS(2602), + [anon_sym_SLASH_SLASH2] = ACTIONS(2602), + [anon_sym_PLUS2] = ACTIONS(2604), + [anon_sym_bit_DASHshl2] = ACTIONS(2602), + [anon_sym_bit_DASHshr2] = ACTIONS(2602), + [anon_sym_bit_DASHand2] = ACTIONS(2602), + [anon_sym_bit_DASHxor2] = ACTIONS(2602), + [anon_sym_bit_DASHor2] = ACTIONS(2602), + [anon_sym_err_GT] = ACTIONS(2604), + [anon_sym_out_GT] = ACTIONS(2604), + [anon_sym_e_GT] = ACTIONS(2604), + [anon_sym_o_GT] = ACTIONS(2604), + [anon_sym_err_PLUSout_GT] = ACTIONS(2604), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2604), + [anon_sym_o_PLUSe_GT] = ACTIONS(2604), + [anon_sym_e_PLUSo_GT] = ACTIONS(2604), + [anon_sym_err_GT_GT] = ACTIONS(2602), + [anon_sym_out_GT_GT] = ACTIONS(2602), + [anon_sym_e_GT_GT] = ACTIONS(2602), + [anon_sym_o_GT_GT] = ACTIONS(2602), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(935)] = { + [sym_comment] = STATE(935), + [anon_sym_in] = ACTIONS(2606), + [sym__newline] = ACTIONS(2606), + [anon_sym_SEMI] = ACTIONS(2606), + [anon_sym_PIPE] = ACTIONS(2606), + [anon_sym_err_GT_PIPE] = ACTIONS(2606), + [anon_sym_out_GT_PIPE] = ACTIONS(2606), + [anon_sym_e_GT_PIPE] = ACTIONS(2606), + [anon_sym_o_GT_PIPE] = ACTIONS(2606), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2606), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2606), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2606), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2606), + [anon_sym_RPAREN] = ACTIONS(2606), + [anon_sym_GT2] = ACTIONS(2608), + [anon_sym_DASH2] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2606), + [anon_sym_RBRACE] = ACTIONS(2606), + [anon_sym_EQ_GT] = ACTIONS(2606), + [anon_sym_STAR2] = ACTIONS(2608), + [anon_sym_and2] = ACTIONS(2606), + [anon_sym_xor2] = ACTIONS(2606), + [anon_sym_or2] = ACTIONS(2606), + [anon_sym_not_DASHin2] = ACTIONS(2606), + [anon_sym_has2] = ACTIONS(2606), + [anon_sym_not_DASHhas2] = ACTIONS(2606), + [anon_sym_starts_DASHwith2] = ACTIONS(2606), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2606), + [anon_sym_ends_DASHwith2] = ACTIONS(2606), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2606), + [anon_sym_EQ_EQ2] = ACTIONS(2606), + [anon_sym_BANG_EQ2] = ACTIONS(2606), + [anon_sym_LT2] = ACTIONS(2608), + [anon_sym_LT_EQ2] = ACTIONS(2606), + [anon_sym_GT_EQ2] = ACTIONS(2606), + [anon_sym_EQ_TILDE2] = ACTIONS(2606), + [anon_sym_BANG_TILDE2] = ACTIONS(2606), + [anon_sym_like2] = ACTIONS(2606), + [anon_sym_not_DASHlike2] = ACTIONS(2606), + [anon_sym_STAR_STAR2] = ACTIONS(2606), + [anon_sym_PLUS_PLUS2] = ACTIONS(2606), + [anon_sym_SLASH2] = ACTIONS(2608), + [anon_sym_mod2] = ACTIONS(2606), + [anon_sym_SLASH_SLASH2] = ACTIONS(2606), + [anon_sym_PLUS2] = ACTIONS(2608), + [anon_sym_bit_DASHshl2] = ACTIONS(2606), + [anon_sym_bit_DASHshr2] = ACTIONS(2606), + [anon_sym_bit_DASHand2] = ACTIONS(2606), + [anon_sym_bit_DASHxor2] = ACTIONS(2606), + [anon_sym_bit_DASHor2] = ACTIONS(2606), + [anon_sym_err_GT] = ACTIONS(2608), + [anon_sym_out_GT] = ACTIONS(2608), + [anon_sym_e_GT] = ACTIONS(2608), + [anon_sym_o_GT] = ACTIONS(2608), + [anon_sym_err_PLUSout_GT] = ACTIONS(2608), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2608), + [anon_sym_o_PLUSe_GT] = ACTIONS(2608), + [anon_sym_e_PLUSo_GT] = ACTIONS(2608), + [anon_sym_err_GT_GT] = ACTIONS(2606), + [anon_sym_out_GT_GT] = ACTIONS(2606), + [anon_sym_e_GT_GT] = ACTIONS(2606), + [anon_sym_o_GT_GT] = ACTIONS(2606), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2606), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2606), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2606), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2606), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(936)] = { + [sym_comment] = STATE(936), + [anon_sym_in] = ACTIONS(2610), + [sym__newline] = ACTIONS(2610), + [anon_sym_SEMI] = ACTIONS(2610), + [anon_sym_PIPE] = ACTIONS(2610), + [anon_sym_err_GT_PIPE] = ACTIONS(2610), + [anon_sym_out_GT_PIPE] = ACTIONS(2610), + [anon_sym_e_GT_PIPE] = ACTIONS(2610), + [anon_sym_o_GT_PIPE] = ACTIONS(2610), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2610), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2610), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2610), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2610), + [anon_sym_RPAREN] = ACTIONS(2610), + [anon_sym_GT2] = ACTIONS(2612), + [anon_sym_DASH2] = ACTIONS(2610), + [anon_sym_LBRACE] = ACTIONS(2610), + [anon_sym_RBRACE] = ACTIONS(2610), + [anon_sym_EQ_GT] = ACTIONS(2610), + [anon_sym_STAR2] = ACTIONS(2612), + [anon_sym_and2] = ACTIONS(2610), + [anon_sym_xor2] = ACTIONS(2610), + [anon_sym_or2] = ACTIONS(2610), + [anon_sym_not_DASHin2] = ACTIONS(2610), + [anon_sym_has2] = ACTIONS(2610), + [anon_sym_not_DASHhas2] = ACTIONS(2610), + [anon_sym_starts_DASHwith2] = ACTIONS(2610), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2610), + [anon_sym_ends_DASHwith2] = ACTIONS(2610), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2610), + [anon_sym_EQ_EQ2] = ACTIONS(2610), + [anon_sym_BANG_EQ2] = ACTIONS(2610), + [anon_sym_LT2] = ACTIONS(2612), + [anon_sym_LT_EQ2] = ACTIONS(2610), + [anon_sym_GT_EQ2] = ACTIONS(2610), + [anon_sym_EQ_TILDE2] = ACTIONS(2610), + [anon_sym_BANG_TILDE2] = ACTIONS(2610), + [anon_sym_like2] = ACTIONS(2610), + [anon_sym_not_DASHlike2] = ACTIONS(2610), + [anon_sym_STAR_STAR2] = ACTIONS(2610), + [anon_sym_PLUS_PLUS2] = ACTIONS(2610), + [anon_sym_SLASH2] = ACTIONS(2612), + [anon_sym_mod2] = ACTIONS(2610), + [anon_sym_SLASH_SLASH2] = ACTIONS(2610), + [anon_sym_PLUS2] = ACTIONS(2612), + [anon_sym_bit_DASHshl2] = ACTIONS(2610), + [anon_sym_bit_DASHshr2] = ACTIONS(2610), + [anon_sym_bit_DASHand2] = ACTIONS(2610), + [anon_sym_bit_DASHxor2] = ACTIONS(2610), + [anon_sym_bit_DASHor2] = ACTIONS(2610), + [anon_sym_err_GT] = ACTIONS(2612), + [anon_sym_out_GT] = ACTIONS(2612), + [anon_sym_e_GT] = ACTIONS(2612), + [anon_sym_o_GT] = ACTIONS(2612), + [anon_sym_err_PLUSout_GT] = ACTIONS(2612), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2612), + [anon_sym_o_PLUSe_GT] = ACTIONS(2612), + [anon_sym_e_PLUSo_GT] = ACTIONS(2612), + [anon_sym_err_GT_GT] = ACTIONS(2610), + [anon_sym_out_GT_GT] = ACTIONS(2610), + [anon_sym_e_GT_GT] = ACTIONS(2610), + [anon_sym_o_GT_GT] = ACTIONS(2610), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2610), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2610), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2610), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2610), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(937)] = { + [sym_comment] = STATE(937), + [anon_sym_in] = ACTIONS(2614), + [sym__newline] = ACTIONS(2614), + [anon_sym_SEMI] = ACTIONS(2614), + [anon_sym_PIPE] = ACTIONS(2614), + [anon_sym_err_GT_PIPE] = ACTIONS(2614), + [anon_sym_out_GT_PIPE] = ACTIONS(2614), + [anon_sym_e_GT_PIPE] = ACTIONS(2614), + [anon_sym_o_GT_PIPE] = ACTIONS(2614), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2614), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2614), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2614), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2614), + [anon_sym_RPAREN] = ACTIONS(2614), + [anon_sym_GT2] = ACTIONS(2616), + [anon_sym_DASH2] = ACTIONS(2614), + [anon_sym_LBRACE] = ACTIONS(2614), + [anon_sym_RBRACE] = ACTIONS(2614), + [anon_sym_EQ_GT] = ACTIONS(2614), + [anon_sym_STAR2] = ACTIONS(2616), + [anon_sym_and2] = ACTIONS(2614), + [anon_sym_xor2] = ACTIONS(2614), + [anon_sym_or2] = ACTIONS(2614), + [anon_sym_not_DASHin2] = ACTIONS(2614), + [anon_sym_has2] = ACTIONS(2614), + [anon_sym_not_DASHhas2] = ACTIONS(2614), + [anon_sym_starts_DASHwith2] = ACTIONS(2614), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2614), + [anon_sym_ends_DASHwith2] = ACTIONS(2614), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2614), + [anon_sym_EQ_EQ2] = ACTIONS(2614), + [anon_sym_BANG_EQ2] = ACTIONS(2614), + [anon_sym_LT2] = ACTIONS(2616), + [anon_sym_LT_EQ2] = ACTIONS(2614), + [anon_sym_GT_EQ2] = ACTIONS(2614), + [anon_sym_EQ_TILDE2] = ACTIONS(2614), + [anon_sym_BANG_TILDE2] = ACTIONS(2614), + [anon_sym_like2] = ACTIONS(2614), + [anon_sym_not_DASHlike2] = ACTIONS(2614), + [anon_sym_STAR_STAR2] = ACTIONS(2614), + [anon_sym_PLUS_PLUS2] = ACTIONS(2614), + [anon_sym_SLASH2] = ACTIONS(2616), + [anon_sym_mod2] = ACTIONS(2614), + [anon_sym_SLASH_SLASH2] = ACTIONS(2614), + [anon_sym_PLUS2] = ACTIONS(2616), + [anon_sym_bit_DASHshl2] = ACTIONS(2614), + [anon_sym_bit_DASHshr2] = ACTIONS(2614), + [anon_sym_bit_DASHand2] = ACTIONS(2614), + [anon_sym_bit_DASHxor2] = ACTIONS(2614), + [anon_sym_bit_DASHor2] = ACTIONS(2614), + [anon_sym_err_GT] = ACTIONS(2616), + [anon_sym_out_GT] = ACTIONS(2616), + [anon_sym_e_GT] = ACTIONS(2616), + [anon_sym_o_GT] = ACTIONS(2616), + [anon_sym_err_PLUSout_GT] = ACTIONS(2616), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2616), + [anon_sym_o_PLUSe_GT] = ACTIONS(2616), + [anon_sym_e_PLUSo_GT] = ACTIONS(2616), + [anon_sym_err_GT_GT] = ACTIONS(2614), + [anon_sym_out_GT_GT] = ACTIONS(2614), + [anon_sym_e_GT_GT] = ACTIONS(2614), + [anon_sym_o_GT_GT] = ACTIONS(2614), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2614), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2614), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2614), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2614), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(938)] = { + [sym_comment] = STATE(938), + [anon_sym_in] = 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_RPAREN] = ACTIONS(1848), + [anon_sym_GT2] = ACTIONS(1850), + [anon_sym_DASH2] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1848), + [anon_sym_RBRACE] = ACTIONS(1848), + [anon_sym_EQ_GT] = ACTIONS(1848), + [anon_sym_STAR2] = ACTIONS(1850), + [anon_sym_and2] = ACTIONS(1848), + [anon_sym_xor2] = ACTIONS(1848), + [anon_sym_or2] = ACTIONS(1848), + [anon_sym_not_DASHin2] = ACTIONS(1848), + [anon_sym_has2] = ACTIONS(1848), + [anon_sym_not_DASHhas2] = ACTIONS(1848), + [anon_sym_starts_DASHwith2] = ACTIONS(1848), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1848), + [anon_sym_ends_DASHwith2] = ACTIONS(1848), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1848), + [anon_sym_EQ_EQ2] = ACTIONS(1848), + [anon_sym_BANG_EQ2] = ACTIONS(1848), + [anon_sym_LT2] = ACTIONS(1850), + [anon_sym_LT_EQ2] = ACTIONS(1848), + [anon_sym_GT_EQ2] = ACTIONS(1848), + [anon_sym_EQ_TILDE2] = ACTIONS(1848), + [anon_sym_BANG_TILDE2] = ACTIONS(1848), + [anon_sym_like2] = ACTIONS(1848), + [anon_sym_not_DASHlike2] = ACTIONS(1848), + [anon_sym_STAR_STAR2] = ACTIONS(1848), + [anon_sym_PLUS_PLUS2] = ACTIONS(1848), + [anon_sym_SLASH2] = ACTIONS(1850), + [anon_sym_mod2] = ACTIONS(1848), + [anon_sym_SLASH_SLASH2] = ACTIONS(1848), + [anon_sym_PLUS2] = ACTIONS(1850), + [anon_sym_bit_DASHshl2] = ACTIONS(1848), + [anon_sym_bit_DASHshr2] = ACTIONS(1848), + [anon_sym_bit_DASHand2] = ACTIONS(1848), + [anon_sym_bit_DASHxor2] = ACTIONS(1848), + [anon_sym_bit_DASHor2] = ACTIONS(1848), + [anon_sym_err_GT] = ACTIONS(1850), + [anon_sym_out_GT] = ACTIONS(1850), + [anon_sym_e_GT] = ACTIONS(1850), + [anon_sym_o_GT] = ACTIONS(1850), + [anon_sym_err_PLUSout_GT] = ACTIONS(1850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1850), + [anon_sym_o_PLUSe_GT] = ACTIONS(1850), + [anon_sym_e_PLUSo_GT] = ACTIONS(1850), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(939)] = { + [aux_sym__repeat_newline] = STATE(1117), + [sym__expression_parenthesized] = STATE(4198), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2115), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1826), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_comment] = STATE(939), + [aux_sym_cmd_identifier_token2] = ACTIONS(2533), + [anon_sym_true] = ACTIONS(2535), + [anon_sym_false] = ACTIONS(2535), + [anon_sym_null] = ACTIONS(2537), + [aux_sym_cmd_identifier_token3] = ACTIONS(2539), + [aux_sym_cmd_identifier_token4] = ACTIONS(2539), + [aux_sym_cmd_identifier_token5] = ACTIONS(2539), + [sym__newline] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1976), + [aux_sym__val_number_decimal_token3] = ACTIONS(2543), + [aux_sym__val_number_decimal_token4] = ACTIONS(2543), + [aux_sym__val_number_token1] = ACTIONS(2539), + [aux_sym__val_number_token2] = ACTIONS(2539), + [aux_sym__val_number_token3] = ACTIONS(2539), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2545), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(940)] = { + [sym_comment] = STATE(940), + [anon_sym_in] = ACTIONS(2618), + [sym__newline] = ACTIONS(2618), + [anon_sym_SEMI] = ACTIONS(2618), + [anon_sym_PIPE] = ACTIONS(2618), + [anon_sym_err_GT_PIPE] = ACTIONS(2618), + [anon_sym_out_GT_PIPE] = ACTIONS(2618), + [anon_sym_e_GT_PIPE] = ACTIONS(2618), + [anon_sym_o_GT_PIPE] = ACTIONS(2618), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2618), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2618), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2618), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2618), + [anon_sym_RPAREN] = ACTIONS(2618), + [anon_sym_GT2] = ACTIONS(2620), + [anon_sym_DASH2] = ACTIONS(2618), + [anon_sym_LBRACE] = ACTIONS(2618), + [anon_sym_RBRACE] = ACTIONS(2618), + [anon_sym_EQ_GT] = ACTIONS(2618), + [anon_sym_STAR2] = ACTIONS(2620), + [anon_sym_and2] = ACTIONS(2618), + [anon_sym_xor2] = ACTIONS(2618), + [anon_sym_or2] = ACTIONS(2618), + [anon_sym_not_DASHin2] = ACTIONS(2618), + [anon_sym_has2] = ACTIONS(2618), + [anon_sym_not_DASHhas2] = ACTIONS(2618), + [anon_sym_starts_DASHwith2] = ACTIONS(2618), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2618), + [anon_sym_ends_DASHwith2] = ACTIONS(2618), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2618), + [anon_sym_EQ_EQ2] = ACTIONS(2618), + [anon_sym_BANG_EQ2] = ACTIONS(2618), + [anon_sym_LT2] = ACTIONS(2620), + [anon_sym_LT_EQ2] = ACTIONS(2618), + [anon_sym_GT_EQ2] = ACTIONS(2618), + [anon_sym_EQ_TILDE2] = ACTIONS(2618), + [anon_sym_BANG_TILDE2] = ACTIONS(2618), + [anon_sym_like2] = ACTIONS(2618), + [anon_sym_not_DASHlike2] = ACTIONS(2618), + [anon_sym_STAR_STAR2] = ACTIONS(2618), + [anon_sym_PLUS_PLUS2] = ACTIONS(2618), + [anon_sym_SLASH2] = ACTIONS(2620), + [anon_sym_mod2] = ACTIONS(2618), + [anon_sym_SLASH_SLASH2] = ACTIONS(2618), + [anon_sym_PLUS2] = ACTIONS(2620), + [anon_sym_bit_DASHshl2] = ACTIONS(2618), + [anon_sym_bit_DASHshr2] = ACTIONS(2618), + [anon_sym_bit_DASHand2] = ACTIONS(2618), + [anon_sym_bit_DASHxor2] = ACTIONS(2618), + [anon_sym_bit_DASHor2] = ACTIONS(2618), + [anon_sym_err_GT] = ACTIONS(2620), + [anon_sym_out_GT] = ACTIONS(2620), + [anon_sym_e_GT] = ACTIONS(2620), + [anon_sym_o_GT] = ACTIONS(2620), + [anon_sym_err_PLUSout_GT] = ACTIONS(2620), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2620), + [anon_sym_o_PLUSe_GT] = ACTIONS(2620), + [anon_sym_e_PLUSo_GT] = ACTIONS(2620), + [anon_sym_err_GT_GT] = ACTIONS(2618), + [anon_sym_out_GT_GT] = ACTIONS(2618), + [anon_sym_e_GT_GT] = ACTIONS(2618), + [anon_sym_o_GT_GT] = ACTIONS(2618), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2618), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2618), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2618), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2618), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(941)] = { + [sym_comment] = STATE(941), + [anon_sym_in] = ACTIONS(1942), + [sym__newline] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_err_GT_PIPE] = ACTIONS(1942), + [anon_sym_out_GT_PIPE] = ACTIONS(1942), + [anon_sym_e_GT_PIPE] = ACTIONS(1942), + [anon_sym_o_GT_PIPE] = ACTIONS(1942), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1942), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1942), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1942), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1942), + [anon_sym_RPAREN] = ACTIONS(1942), + [anon_sym_GT2] = ACTIONS(1944), + [anon_sym_DASH2] = ACTIONS(1942), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_RBRACE] = ACTIONS(1942), + [anon_sym_EQ_GT] = ACTIONS(1942), + [anon_sym_STAR2] = ACTIONS(1944), + [anon_sym_and2] = ACTIONS(1942), + [anon_sym_xor2] = ACTIONS(1942), + [anon_sym_or2] = ACTIONS(1942), + [anon_sym_not_DASHin2] = ACTIONS(1942), + [anon_sym_has2] = ACTIONS(1942), + [anon_sym_not_DASHhas2] = ACTIONS(1942), + [anon_sym_starts_DASHwith2] = ACTIONS(1942), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1942), + [anon_sym_ends_DASHwith2] = ACTIONS(1942), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1942), + [anon_sym_EQ_EQ2] = ACTIONS(1942), + [anon_sym_BANG_EQ2] = ACTIONS(1942), + [anon_sym_LT2] = ACTIONS(1944), + [anon_sym_LT_EQ2] = ACTIONS(1942), + [anon_sym_GT_EQ2] = ACTIONS(1942), + [anon_sym_EQ_TILDE2] = ACTIONS(1942), + [anon_sym_BANG_TILDE2] = ACTIONS(1942), + [anon_sym_like2] = ACTIONS(1942), + [anon_sym_not_DASHlike2] = ACTIONS(1942), + [anon_sym_STAR_STAR2] = ACTIONS(1942), + [anon_sym_PLUS_PLUS2] = ACTIONS(1942), + [anon_sym_SLASH2] = ACTIONS(1944), + [anon_sym_mod2] = ACTIONS(1942), + [anon_sym_SLASH_SLASH2] = ACTIONS(1942), + [anon_sym_PLUS2] = ACTIONS(1944), + [anon_sym_bit_DASHshl2] = ACTIONS(1942), + [anon_sym_bit_DASHshr2] = ACTIONS(1942), + [anon_sym_bit_DASHand2] = ACTIONS(1942), + [anon_sym_bit_DASHxor2] = ACTIONS(1942), + [anon_sym_bit_DASHor2] = ACTIONS(1942), + [anon_sym_err_GT] = ACTIONS(1944), + [anon_sym_out_GT] = ACTIONS(1944), + [anon_sym_e_GT] = ACTIONS(1944), + [anon_sym_o_GT] = ACTIONS(1944), + [anon_sym_err_PLUSout_GT] = ACTIONS(1944), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1944), + [anon_sym_o_PLUSe_GT] = ACTIONS(1944), + [anon_sym_e_PLUSo_GT] = ACTIONS(1944), + [anon_sym_err_GT_GT] = ACTIONS(1942), + [anon_sym_out_GT_GT] = ACTIONS(1942), + [anon_sym_e_GT_GT] = ACTIONS(1942), + [anon_sym_o_GT_GT] = ACTIONS(1942), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1942), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1942), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1942), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1942), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(942)] = { + [sym_comment] = STATE(942), + [anon_sym_in] = ACTIONS(1862), + [sym__newline] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_PIPE] = ACTIONS(1862), + [anon_sym_err_GT_PIPE] = ACTIONS(1862), + [anon_sym_out_GT_PIPE] = ACTIONS(1862), + [anon_sym_e_GT_PIPE] = ACTIONS(1862), + [anon_sym_o_GT_PIPE] = ACTIONS(1862), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1862), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1862), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1862), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1862), + [anon_sym_RPAREN] = ACTIONS(1862), + [anon_sym_GT2] = ACTIONS(1864), + [anon_sym_DASH2] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_RBRACE] = ACTIONS(1862), + [anon_sym_EQ_GT] = ACTIONS(1862), + [anon_sym_STAR2] = ACTIONS(1864), + [anon_sym_and2] = ACTIONS(1862), + [anon_sym_xor2] = ACTIONS(1862), + [anon_sym_or2] = ACTIONS(1862), + [anon_sym_not_DASHin2] = ACTIONS(1862), + [anon_sym_has2] = ACTIONS(1862), + [anon_sym_not_DASHhas2] = ACTIONS(1862), + [anon_sym_starts_DASHwith2] = ACTIONS(1862), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1862), + [anon_sym_ends_DASHwith2] = ACTIONS(1862), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1862), + [anon_sym_EQ_EQ2] = ACTIONS(1862), + [anon_sym_BANG_EQ2] = ACTIONS(1862), + [anon_sym_LT2] = ACTIONS(1864), + [anon_sym_LT_EQ2] = ACTIONS(1862), + [anon_sym_GT_EQ2] = ACTIONS(1862), + [anon_sym_EQ_TILDE2] = ACTIONS(1862), + [anon_sym_BANG_TILDE2] = ACTIONS(1862), + [anon_sym_like2] = ACTIONS(1862), + [anon_sym_not_DASHlike2] = ACTIONS(1862), + [anon_sym_STAR_STAR2] = ACTIONS(1862), + [anon_sym_PLUS_PLUS2] = ACTIONS(1862), + [anon_sym_SLASH2] = ACTIONS(1864), + [anon_sym_mod2] = ACTIONS(1862), + [anon_sym_SLASH_SLASH2] = ACTIONS(1862), + [anon_sym_PLUS2] = ACTIONS(1864), + [anon_sym_bit_DASHshl2] = ACTIONS(1862), + [anon_sym_bit_DASHshr2] = ACTIONS(1862), + [anon_sym_bit_DASHand2] = ACTIONS(1862), + [anon_sym_bit_DASHxor2] = ACTIONS(1862), + [anon_sym_bit_DASHor2] = ACTIONS(1862), + [anon_sym_err_GT] = ACTIONS(1864), + [anon_sym_out_GT] = ACTIONS(1864), + [anon_sym_e_GT] = ACTIONS(1864), + [anon_sym_o_GT] = ACTIONS(1864), + [anon_sym_err_PLUSout_GT] = ACTIONS(1864), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1864), + [anon_sym_o_PLUSe_GT] = ACTIONS(1864), + [anon_sym_e_PLUSo_GT] = ACTIONS(1864), + [anon_sym_err_GT_GT] = ACTIONS(1862), + [anon_sym_out_GT_GT] = ACTIONS(1862), + [anon_sym_e_GT_GT] = ACTIONS(1862), + [anon_sym_o_GT_GT] = ACTIONS(1862), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1862), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1862), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1862), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1862), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(943)] = { + [sym_comment] = STATE(943), + [anon_sym_in] = ACTIONS(2509), + [sym__newline] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_err_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_GT_PIPE] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2509), + [anon_sym_RPAREN] = ACTIONS(2509), + [anon_sym_GT2] = ACTIONS(2511), + [anon_sym_DASH2] = ACTIONS(2509), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_EQ_GT] = ACTIONS(2509), + [anon_sym_STAR2] = ACTIONS(2511), + [anon_sym_and2] = ACTIONS(2509), + [anon_sym_xor2] = ACTIONS(2509), + [anon_sym_or2] = ACTIONS(2509), + [anon_sym_not_DASHin2] = ACTIONS(2509), + [anon_sym_has2] = ACTIONS(2509), + [anon_sym_not_DASHhas2] = ACTIONS(2509), + [anon_sym_starts_DASHwith2] = ACTIONS(2509), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2509), + [anon_sym_ends_DASHwith2] = ACTIONS(2509), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2509), + [anon_sym_EQ_EQ2] = ACTIONS(2509), + [anon_sym_BANG_EQ2] = ACTIONS(2509), + [anon_sym_LT2] = ACTIONS(2511), + [anon_sym_LT_EQ2] = ACTIONS(2509), + [anon_sym_GT_EQ2] = ACTIONS(2509), + [anon_sym_EQ_TILDE2] = ACTIONS(2509), + [anon_sym_BANG_TILDE2] = ACTIONS(2509), + [anon_sym_like2] = ACTIONS(2509), + [anon_sym_not_DASHlike2] = ACTIONS(2509), + [anon_sym_STAR_STAR2] = ACTIONS(2509), + [anon_sym_PLUS_PLUS2] = ACTIONS(2509), + [anon_sym_SLASH2] = ACTIONS(2511), + [anon_sym_mod2] = ACTIONS(2509), + [anon_sym_SLASH_SLASH2] = ACTIONS(2509), + [anon_sym_PLUS2] = ACTIONS(2511), + [anon_sym_bit_DASHshl2] = ACTIONS(2509), + [anon_sym_bit_DASHshr2] = ACTIONS(2509), + [anon_sym_bit_DASHand2] = ACTIONS(2509), + [anon_sym_bit_DASHxor2] = ACTIONS(2509), + [anon_sym_bit_DASHor2] = ACTIONS(2509), + [anon_sym_err_GT] = ACTIONS(2511), + [anon_sym_out_GT] = ACTIONS(2511), + [anon_sym_e_GT] = ACTIONS(2511), + [anon_sym_o_GT] = ACTIONS(2511), + [anon_sym_err_PLUSout_GT] = ACTIONS(2511), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2511), + [anon_sym_o_PLUSe_GT] = ACTIONS(2511), + [anon_sym_e_PLUSo_GT] = ACTIONS(2511), + [anon_sym_err_GT_GT] = ACTIONS(2509), + [anon_sym_out_GT_GT] = ACTIONS(2509), + [anon_sym_e_GT_GT] = ACTIONS(2509), + [anon_sym_o_GT_GT] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2509), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(944)] = { + [sym_comment] = STATE(944), + [anon_sym_in] = ACTIONS(1942), + [sym__newline] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_err_GT_PIPE] = ACTIONS(1942), + [anon_sym_out_GT_PIPE] = ACTIONS(1942), + [anon_sym_e_GT_PIPE] = ACTIONS(1942), + [anon_sym_o_GT_PIPE] = ACTIONS(1942), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1942), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1942), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1942), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1942), + [anon_sym_RPAREN] = ACTIONS(1942), + [anon_sym_GT2] = ACTIONS(1944), + [anon_sym_DASH2] = ACTIONS(1942), + [anon_sym_RBRACE] = ACTIONS(1942), + [anon_sym_STAR2] = ACTIONS(1944), + [anon_sym_and2] = ACTIONS(1942), + [anon_sym_xor2] = ACTIONS(1942), + [anon_sym_or2] = ACTIONS(1942), + [anon_sym_not_DASHin2] = ACTIONS(1942), + [anon_sym_has2] = ACTIONS(1942), + [anon_sym_not_DASHhas2] = ACTIONS(1942), + [anon_sym_starts_DASHwith2] = ACTIONS(1942), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1942), + [anon_sym_ends_DASHwith2] = ACTIONS(1942), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1942), + [anon_sym_EQ_EQ2] = ACTIONS(1942), + [anon_sym_BANG_EQ2] = ACTIONS(1942), + [anon_sym_LT2] = ACTIONS(1944), + [anon_sym_LT_EQ2] = ACTIONS(1942), + [anon_sym_GT_EQ2] = ACTIONS(1942), + [anon_sym_EQ_TILDE2] = ACTIONS(1942), + [anon_sym_BANG_TILDE2] = ACTIONS(1942), + [anon_sym_like2] = ACTIONS(1942), + [anon_sym_not_DASHlike2] = ACTIONS(1942), + [anon_sym_LPAREN2] = ACTIONS(1946), + [anon_sym_STAR_STAR2] = ACTIONS(1942), + [anon_sym_PLUS_PLUS2] = ACTIONS(1942), + [anon_sym_SLASH2] = ACTIONS(1944), + [anon_sym_mod2] = ACTIONS(1942), + [anon_sym_SLASH_SLASH2] = ACTIONS(1942), + [anon_sym_PLUS2] = ACTIONS(1944), + [anon_sym_bit_DASHshl2] = ACTIONS(1942), + [anon_sym_bit_DASHshr2] = ACTIONS(1942), + [anon_sym_bit_DASHand2] = ACTIONS(1942), + [anon_sym_bit_DASHxor2] = ACTIONS(1942), + [anon_sym_bit_DASHor2] = ACTIONS(1942), + [anon_sym_err_GT] = ACTIONS(1944), + [anon_sym_out_GT] = ACTIONS(1944), + [anon_sym_e_GT] = ACTIONS(1944), + [anon_sym_o_GT] = ACTIONS(1944), + [anon_sym_err_PLUSout_GT] = ACTIONS(1944), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1944), + [anon_sym_o_PLUSe_GT] = ACTIONS(1944), + [anon_sym_e_PLUSo_GT] = ACTIONS(1944), + [anon_sym_err_GT_GT] = ACTIONS(1942), + [anon_sym_out_GT_GT] = ACTIONS(1942), + [anon_sym_e_GT_GT] = ACTIONS(1942), + [anon_sym_o_GT_GT] = ACTIONS(1942), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1942), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1942), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1942), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1942), + [sym__unquoted_pattern] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(945)] = { + [sym_comment] = STATE(945), + [ts_builtin_sym_end] = ACTIONS(1800), + [anon_sym_in] = ACTIONS(1800), + [sym__newline] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(1800), + [anon_sym_PIPE] = ACTIONS(1800), + [anon_sym_err_GT_PIPE] = ACTIONS(1800), + [anon_sym_out_GT_PIPE] = ACTIONS(1800), + [anon_sym_e_GT_PIPE] = ACTIONS(1800), + [anon_sym_o_GT_PIPE] = ACTIONS(1800), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1800), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1800), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1800), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1800), + [anon_sym_GT2] = ACTIONS(1802), + [anon_sym_DASH2] = ACTIONS(1800), + [anon_sym_STAR2] = ACTIONS(1802), + [anon_sym_and2] = ACTIONS(1800), + [anon_sym_xor2] = ACTIONS(1800), + [anon_sym_or2] = ACTIONS(1800), + [anon_sym_not_DASHin2] = ACTIONS(1800), + [anon_sym_has2] = ACTIONS(1800), + [anon_sym_not_DASHhas2] = ACTIONS(1800), + [anon_sym_starts_DASHwith2] = ACTIONS(1800), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1800), + [anon_sym_ends_DASHwith2] = ACTIONS(1800), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1800), + [anon_sym_EQ_EQ2] = ACTIONS(1800), + [anon_sym_BANG_EQ2] = ACTIONS(1800), + [anon_sym_LT2] = ACTIONS(1802), + [anon_sym_LT_EQ2] = ACTIONS(1800), + [anon_sym_GT_EQ2] = ACTIONS(1800), + [anon_sym_EQ_TILDE2] = ACTIONS(1800), + [anon_sym_BANG_TILDE2] = ACTIONS(1800), + [anon_sym_like2] = ACTIONS(1800), + [anon_sym_not_DASHlike2] = ACTIONS(1800), + [anon_sym_STAR_STAR2] = ACTIONS(1800), + [anon_sym_PLUS_PLUS2] = ACTIONS(1800), + [anon_sym_SLASH2] = ACTIONS(1802), + [anon_sym_mod2] = ACTIONS(1800), + [anon_sym_SLASH_SLASH2] = ACTIONS(1800), + [anon_sym_PLUS2] = ACTIONS(1802), + [anon_sym_bit_DASHshl2] = ACTIONS(1800), + [anon_sym_bit_DASHshr2] = ACTIONS(1800), + [anon_sym_bit_DASHand2] = ACTIONS(1800), + [anon_sym_bit_DASHxor2] = ACTIONS(1800), + [anon_sym_bit_DASHor2] = ACTIONS(1800), + [anon_sym_DOT_DOT2] = ACTIONS(1802), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1800), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1800), + [anon_sym_err_GT] = ACTIONS(1802), + [anon_sym_out_GT] = ACTIONS(1802), + [anon_sym_e_GT] = ACTIONS(1802), + [anon_sym_o_GT] = ACTIONS(1802), + [anon_sym_err_PLUSout_GT] = ACTIONS(1802), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1802), + [anon_sym_o_PLUSe_GT] = ACTIONS(1802), + [anon_sym_e_PLUSo_GT] = ACTIONS(1802), + [anon_sym_err_GT_GT] = ACTIONS(1800), + [anon_sym_out_GT_GT] = ACTIONS(1800), + [anon_sym_e_GT_GT] = ACTIONS(1800), + [anon_sym_o_GT_GT] = ACTIONS(1800), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1800), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1800), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1800), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1800), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(946)] = { + [sym_comment] = STATE(946), + [ts_builtin_sym_end] = ACTIONS(1574), + [anon_sym_in] = ACTIONS(1574), + [sym__newline] = ACTIONS(1574), + [anon_sym_SEMI] = ACTIONS(1574), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_err_GT_PIPE] = ACTIONS(1574), + [anon_sym_out_GT_PIPE] = ACTIONS(1574), + [anon_sym_e_GT_PIPE] = ACTIONS(1574), + [anon_sym_o_GT_PIPE] = ACTIONS(1574), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1574), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1574), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1574), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1574), + [anon_sym_GT2] = ACTIONS(1572), + [anon_sym_DASH2] = ACTIONS(1574), + [anon_sym_STAR2] = ACTIONS(1572), + [anon_sym_and2] = ACTIONS(1574), + [anon_sym_xor2] = ACTIONS(1574), + [anon_sym_or2] = ACTIONS(1574), + [anon_sym_not_DASHin2] = ACTIONS(1574), + [anon_sym_has2] = ACTIONS(1574), + [anon_sym_not_DASHhas2] = ACTIONS(1574), + [anon_sym_starts_DASHwith2] = ACTIONS(1574), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1574), + [anon_sym_ends_DASHwith2] = ACTIONS(1574), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1574), + [anon_sym_EQ_EQ2] = ACTIONS(1574), + [anon_sym_BANG_EQ2] = ACTIONS(1574), + [anon_sym_LT2] = ACTIONS(1572), + [anon_sym_LT_EQ2] = ACTIONS(1574), + [anon_sym_GT_EQ2] = ACTIONS(1574), + [anon_sym_EQ_TILDE2] = ACTIONS(1574), + [anon_sym_BANG_TILDE2] = ACTIONS(1574), + [anon_sym_like2] = ACTIONS(1574), + [anon_sym_not_DASHlike2] = ACTIONS(1574), + [anon_sym_STAR_STAR2] = ACTIONS(1574), + [anon_sym_PLUS_PLUS2] = ACTIONS(1574), + [anon_sym_SLASH2] = ACTIONS(1572), + [anon_sym_mod2] = ACTIONS(1574), + [anon_sym_SLASH_SLASH2] = ACTIONS(1574), + [anon_sym_PLUS2] = ACTIONS(1572), + [anon_sym_bit_DASHshl2] = ACTIONS(1574), + [anon_sym_bit_DASHshr2] = ACTIONS(1574), + [anon_sym_bit_DASHand2] = ACTIONS(1574), + [anon_sym_bit_DASHxor2] = ACTIONS(1574), + [anon_sym_bit_DASHor2] = ACTIONS(1574), + [anon_sym_DOT_DOT2] = ACTIONS(1572), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1574), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1574), + [anon_sym_err_GT] = ACTIONS(1572), + [anon_sym_out_GT] = ACTIONS(1572), + [anon_sym_e_GT] = ACTIONS(1572), + [anon_sym_o_GT] = ACTIONS(1572), + [anon_sym_err_PLUSout_GT] = ACTIONS(1572), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1572), + [anon_sym_o_PLUSe_GT] = ACTIONS(1572), + [anon_sym_e_PLUSo_GT] = ACTIONS(1572), + [anon_sym_err_GT_GT] = ACTIONS(1574), + [anon_sym_out_GT_GT] = ACTIONS(1574), + [anon_sym_e_GT_GT] = ACTIONS(1574), + [anon_sym_o_GT_GT] = ACTIONS(1574), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1574), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1574), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1574), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1574), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(947)] = { + [sym_comment] = STATE(947), + [ts_builtin_sym_end] = ACTIONS(1866), + [anon_sym_in] = ACTIONS(1866), + [sym__newline] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_err_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_GT_PIPE] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), + [anon_sym_GT2] = ACTIONS(1868), + [anon_sym_DASH2] = ACTIONS(1866), + [anon_sym_STAR2] = ACTIONS(1868), + [anon_sym_and2] = ACTIONS(1866), + [anon_sym_xor2] = ACTIONS(1866), + [anon_sym_or2] = ACTIONS(1866), + [anon_sym_not_DASHin2] = ACTIONS(1866), + [anon_sym_has2] = ACTIONS(1866), + [anon_sym_not_DASHhas2] = ACTIONS(1866), + [anon_sym_starts_DASHwith2] = ACTIONS(1866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1866), + [anon_sym_ends_DASHwith2] = ACTIONS(1866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1866), + [anon_sym_EQ_EQ2] = ACTIONS(1866), + [anon_sym_BANG_EQ2] = ACTIONS(1866), + [anon_sym_LT2] = ACTIONS(1868), + [anon_sym_LT_EQ2] = ACTIONS(1866), + [anon_sym_GT_EQ2] = ACTIONS(1866), + [anon_sym_EQ_TILDE2] = ACTIONS(1866), + [anon_sym_BANG_TILDE2] = ACTIONS(1866), + [anon_sym_like2] = ACTIONS(1866), + [anon_sym_not_DASHlike2] = ACTIONS(1866), + [anon_sym_STAR_STAR2] = ACTIONS(1866), + [anon_sym_PLUS_PLUS2] = ACTIONS(1866), + [anon_sym_SLASH2] = ACTIONS(1868), + [anon_sym_mod2] = ACTIONS(1866), + [anon_sym_SLASH_SLASH2] = ACTIONS(1866), + [anon_sym_PLUS2] = ACTIONS(1868), + [anon_sym_bit_DASHshl2] = ACTIONS(1866), + [anon_sym_bit_DASHshr2] = ACTIONS(1866), + [anon_sym_bit_DASHand2] = ACTIONS(1866), + [anon_sym_bit_DASHxor2] = ACTIONS(1866), + [anon_sym_bit_DASHor2] = ACTIONS(1866), + [anon_sym_DOT_DOT2] = ACTIONS(1868), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1866), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1866), + [anon_sym_err_GT] = ACTIONS(1868), + [anon_sym_out_GT] = ACTIONS(1868), + [anon_sym_e_GT] = ACTIONS(1868), + [anon_sym_o_GT] = ACTIONS(1868), + [anon_sym_err_PLUSout_GT] = ACTIONS(1868), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1868), + [anon_sym_o_PLUSe_GT] = ACTIONS(1868), + [anon_sym_e_PLUSo_GT] = ACTIONS(1868), + [anon_sym_err_GT_GT] = ACTIONS(1866), + [anon_sym_out_GT_GT] = ACTIONS(1866), + [anon_sym_e_GT_GT] = ACTIONS(1866), + [anon_sym_o_GT_GT] = ACTIONS(1866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(948)] = { + [sym_comment] = STATE(948), + [anon_sym_in] = ACTIONS(2622), + [sym__newline] = ACTIONS(2622), + [anon_sym_SEMI] = ACTIONS(2622), + [anon_sym_PIPE] = ACTIONS(2622), + [anon_sym_err_GT_PIPE] = ACTIONS(2622), + [anon_sym_out_GT_PIPE] = ACTIONS(2622), + [anon_sym_e_GT_PIPE] = ACTIONS(2622), + [anon_sym_o_GT_PIPE] = ACTIONS(2622), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2622), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2622), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2622), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2622), + [anon_sym_RPAREN] = ACTIONS(2622), + [anon_sym_GT2] = ACTIONS(2624), + [anon_sym_DASH2] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2622), + [anon_sym_RBRACE] = ACTIONS(2622), + [anon_sym_EQ_GT] = ACTIONS(2622), + [anon_sym_STAR2] = ACTIONS(2624), + [anon_sym_and2] = ACTIONS(2622), + [anon_sym_xor2] = ACTIONS(2622), + [anon_sym_or2] = ACTIONS(2622), + [anon_sym_not_DASHin2] = ACTIONS(2622), + [anon_sym_has2] = ACTIONS(2622), + [anon_sym_not_DASHhas2] = ACTIONS(2622), + [anon_sym_starts_DASHwith2] = ACTIONS(2622), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2622), + [anon_sym_ends_DASHwith2] = ACTIONS(2622), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2622), + [anon_sym_EQ_EQ2] = ACTIONS(2622), + [anon_sym_BANG_EQ2] = ACTIONS(2622), + [anon_sym_LT2] = ACTIONS(2624), + [anon_sym_LT_EQ2] = ACTIONS(2622), + [anon_sym_GT_EQ2] = ACTIONS(2622), + [anon_sym_EQ_TILDE2] = ACTIONS(2622), + [anon_sym_BANG_TILDE2] = ACTIONS(2622), + [anon_sym_like2] = ACTIONS(2622), + [anon_sym_not_DASHlike2] = ACTIONS(2622), + [anon_sym_STAR_STAR2] = ACTIONS(2622), + [anon_sym_PLUS_PLUS2] = ACTIONS(2622), + [anon_sym_SLASH2] = ACTIONS(2624), + [anon_sym_mod2] = ACTIONS(2622), + [anon_sym_SLASH_SLASH2] = ACTIONS(2622), + [anon_sym_PLUS2] = ACTIONS(2624), + [anon_sym_bit_DASHshl2] = ACTIONS(2622), + [anon_sym_bit_DASHshr2] = ACTIONS(2622), + [anon_sym_bit_DASHand2] = ACTIONS(2622), + [anon_sym_bit_DASHxor2] = ACTIONS(2622), + [anon_sym_bit_DASHor2] = ACTIONS(2622), + [anon_sym_err_GT] = ACTIONS(2624), + [anon_sym_out_GT] = ACTIONS(2624), + [anon_sym_e_GT] = ACTIONS(2624), + [anon_sym_o_GT] = ACTIONS(2624), + [anon_sym_err_PLUSout_GT] = ACTIONS(2624), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2624), + [anon_sym_o_PLUSe_GT] = ACTIONS(2624), + [anon_sym_e_PLUSo_GT] = ACTIONS(2624), + [anon_sym_err_GT_GT] = ACTIONS(2622), + [anon_sym_out_GT_GT] = ACTIONS(2622), + [anon_sym_e_GT_GT] = ACTIONS(2622), + [anon_sym_o_GT_GT] = ACTIONS(2622), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2622), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2622), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2622), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2622), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(949)] = { + [sym_comment] = STATE(949), + [anon_sym_in] = ACTIONS(2574), + [sym__newline] = ACTIONS(2574), + [anon_sym_SEMI] = ACTIONS(2574), + [anon_sym_PIPE] = ACTIONS(2574), + [anon_sym_err_GT_PIPE] = ACTIONS(2574), + [anon_sym_out_GT_PIPE] = ACTIONS(2574), + [anon_sym_e_GT_PIPE] = ACTIONS(2574), + [anon_sym_o_GT_PIPE] = ACTIONS(2574), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2574), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2574), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2574), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2574), + [anon_sym_RPAREN] = ACTIONS(2574), + [anon_sym_GT2] = ACTIONS(2576), + [anon_sym_DASH2] = ACTIONS(2574), + [anon_sym_RBRACE] = ACTIONS(2574), + [anon_sym_STAR2] = ACTIONS(2576), + [anon_sym_and2] = ACTIONS(2574), + [anon_sym_xor2] = ACTIONS(2574), + [anon_sym_or2] = ACTIONS(2574), + [anon_sym_not_DASHin2] = ACTIONS(2574), + [anon_sym_has2] = ACTIONS(2574), + [anon_sym_not_DASHhas2] = ACTIONS(2574), + [anon_sym_starts_DASHwith2] = ACTIONS(2574), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2574), + [anon_sym_ends_DASHwith2] = ACTIONS(2574), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2574), + [anon_sym_EQ_EQ2] = ACTIONS(2574), + [anon_sym_BANG_EQ2] = ACTIONS(2574), + [anon_sym_LT2] = ACTIONS(2576), + [anon_sym_LT_EQ2] = ACTIONS(2574), + [anon_sym_GT_EQ2] = ACTIONS(2574), + [anon_sym_EQ_TILDE2] = ACTIONS(2574), + [anon_sym_BANG_TILDE2] = ACTIONS(2574), + [anon_sym_like2] = ACTIONS(2574), + [anon_sym_not_DASHlike2] = ACTIONS(2574), + [anon_sym_LPAREN2] = ACTIONS(1956), + [anon_sym_STAR_STAR2] = ACTIONS(2574), + [anon_sym_PLUS_PLUS2] = ACTIONS(2574), + [anon_sym_SLASH2] = ACTIONS(2576), + [anon_sym_mod2] = ACTIONS(2574), + [anon_sym_SLASH_SLASH2] = ACTIONS(2574), + [anon_sym_PLUS2] = ACTIONS(2576), + [anon_sym_bit_DASHshl2] = ACTIONS(2574), + [anon_sym_bit_DASHshr2] = ACTIONS(2574), + [anon_sym_bit_DASHand2] = ACTIONS(2574), + [anon_sym_bit_DASHxor2] = ACTIONS(2574), + [anon_sym_bit_DASHor2] = ACTIONS(2574), + [anon_sym_err_GT] = ACTIONS(2576), + [anon_sym_out_GT] = ACTIONS(2576), + [anon_sym_e_GT] = ACTIONS(2576), + [anon_sym_o_GT] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT] = ACTIONS(2576), + [anon_sym_err_GT_GT] = ACTIONS(2574), + [anon_sym_out_GT_GT] = ACTIONS(2574), + [anon_sym_e_GT_GT] = ACTIONS(2574), + [anon_sym_o_GT_GT] = ACTIONS(2574), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2574), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2574), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2574), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2574), + [sym__unquoted_pattern] = ACTIONS(1962), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(950)] = { + [sym_comment] = STATE(950), + [ts_builtin_sym_end] = ACTIONS(1870), + [anon_sym_in] = ACTIONS(1870), + [sym__newline] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(1870), + [anon_sym_err_GT_PIPE] = ACTIONS(1870), + [anon_sym_out_GT_PIPE] = ACTIONS(1870), + [anon_sym_e_GT_PIPE] = ACTIONS(1870), + [anon_sym_o_GT_PIPE] = ACTIONS(1870), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1870), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1870), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1870), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1870), + [anon_sym_GT2] = ACTIONS(1872), + [anon_sym_DASH2] = ACTIONS(1870), + [anon_sym_STAR2] = ACTIONS(1872), + [anon_sym_and2] = ACTIONS(1870), + [anon_sym_xor2] = ACTIONS(1870), + [anon_sym_or2] = ACTIONS(1870), + [anon_sym_not_DASHin2] = ACTIONS(1870), + [anon_sym_has2] = ACTIONS(1870), + [anon_sym_not_DASHhas2] = ACTIONS(1870), + [anon_sym_starts_DASHwith2] = ACTIONS(1870), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1870), + [anon_sym_ends_DASHwith2] = ACTIONS(1870), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1870), + [anon_sym_EQ_EQ2] = ACTIONS(1870), + [anon_sym_BANG_EQ2] = ACTIONS(1870), + [anon_sym_LT2] = ACTIONS(1872), + [anon_sym_LT_EQ2] = ACTIONS(1870), + [anon_sym_GT_EQ2] = ACTIONS(1870), + [anon_sym_EQ_TILDE2] = ACTIONS(1870), + [anon_sym_BANG_TILDE2] = ACTIONS(1870), + [anon_sym_like2] = ACTIONS(1870), + [anon_sym_not_DASHlike2] = ACTIONS(1870), + [anon_sym_STAR_STAR2] = ACTIONS(1870), + [anon_sym_PLUS_PLUS2] = ACTIONS(1870), + [anon_sym_SLASH2] = ACTIONS(1872), + [anon_sym_mod2] = ACTIONS(1870), + [anon_sym_SLASH_SLASH2] = ACTIONS(1870), + [anon_sym_PLUS2] = ACTIONS(1872), + [anon_sym_bit_DASHshl2] = ACTIONS(1870), + [anon_sym_bit_DASHshr2] = ACTIONS(1870), + [anon_sym_bit_DASHand2] = ACTIONS(1870), + [anon_sym_bit_DASHxor2] = ACTIONS(1870), + [anon_sym_bit_DASHor2] = ACTIONS(1870), + [anon_sym_DOT_DOT2] = ACTIONS(1872), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1870), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1870), + [anon_sym_err_GT] = ACTIONS(1872), + [anon_sym_out_GT] = ACTIONS(1872), + [anon_sym_e_GT] = ACTIONS(1872), + [anon_sym_o_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT] = ACTIONS(1872), + [anon_sym_err_GT_GT] = ACTIONS(1870), + [anon_sym_out_GT_GT] = ACTIONS(1870), + [anon_sym_e_GT_GT] = ACTIONS(1870), + [anon_sym_o_GT_GT] = ACTIONS(1870), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1870), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1870), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1870), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1870), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(951)] = { [sym_comment] = STATE(951), - [anon_sym_in] = ACTIONS(2615), - [sym__newline] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2615), - [anon_sym_PIPE] = ACTIONS(2615), - [anon_sym_err_GT_PIPE] = ACTIONS(2615), - [anon_sym_out_GT_PIPE] = ACTIONS(2615), - [anon_sym_e_GT_PIPE] = ACTIONS(2615), - [anon_sym_o_GT_PIPE] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2615), - [anon_sym_RPAREN] = ACTIONS(2615), - [anon_sym_GT2] = ACTIONS(2617), - [anon_sym_DASH2] = ACTIONS(2615), - [anon_sym_LBRACE] = ACTIONS(2615), - [anon_sym_RBRACE] = ACTIONS(2615), - [anon_sym_EQ_GT] = ACTIONS(2615), - [anon_sym_STAR2] = ACTIONS(2617), - [anon_sym_and2] = ACTIONS(2615), - [anon_sym_xor2] = ACTIONS(2615), - [anon_sym_or2] = ACTIONS(2615), - [anon_sym_not_DASHin2] = ACTIONS(2615), - [anon_sym_has2] = ACTIONS(2615), - [anon_sym_not_DASHhas2] = ACTIONS(2615), - [anon_sym_starts_DASHwith2] = ACTIONS(2615), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2615), - [anon_sym_ends_DASHwith2] = ACTIONS(2615), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2615), - [anon_sym_EQ_EQ2] = ACTIONS(2615), - [anon_sym_BANG_EQ2] = ACTIONS(2615), - [anon_sym_LT2] = ACTIONS(2617), - [anon_sym_LT_EQ2] = ACTIONS(2615), - [anon_sym_GT_EQ2] = ACTIONS(2615), - [anon_sym_EQ_TILDE2] = ACTIONS(2615), - [anon_sym_BANG_TILDE2] = ACTIONS(2615), - [anon_sym_like2] = ACTIONS(2615), - [anon_sym_not_DASHlike2] = ACTIONS(2615), - [anon_sym_STAR_STAR2] = ACTIONS(2615), - [anon_sym_PLUS_PLUS2] = ACTIONS(2615), - [anon_sym_SLASH2] = ACTIONS(2617), - [anon_sym_mod2] = ACTIONS(2615), - [anon_sym_SLASH_SLASH2] = ACTIONS(2615), - [anon_sym_PLUS2] = ACTIONS(2617), - [anon_sym_bit_DASHshl2] = ACTIONS(2615), - [anon_sym_bit_DASHshr2] = ACTIONS(2615), - [anon_sym_bit_DASHand2] = ACTIONS(2615), - [anon_sym_bit_DASHxor2] = ACTIONS(2615), - [anon_sym_bit_DASHor2] = ACTIONS(2615), - [anon_sym_err_GT] = ACTIONS(2617), - [anon_sym_out_GT] = ACTIONS(2617), - [anon_sym_e_GT] = ACTIONS(2617), - [anon_sym_o_GT] = ACTIONS(2617), - [anon_sym_err_PLUSout_GT] = ACTIONS(2617), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2617), - [anon_sym_o_PLUSe_GT] = ACTIONS(2617), - [anon_sym_e_PLUSo_GT] = ACTIONS(2617), - [anon_sym_err_GT_GT] = ACTIONS(2615), - [anon_sym_out_GT_GT] = ACTIONS(2615), - [anon_sym_e_GT_GT] = ACTIONS(2615), - [anon_sym_o_GT_GT] = ACTIONS(2615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2615), + [anon_sym_in] = ACTIONS(1952), + [sym__newline] = ACTIONS(1952), + [anon_sym_SEMI] = ACTIONS(1952), + [anon_sym_PIPE] = ACTIONS(1952), + [anon_sym_err_GT_PIPE] = ACTIONS(1952), + [anon_sym_out_GT_PIPE] = ACTIONS(1952), + [anon_sym_e_GT_PIPE] = ACTIONS(1952), + [anon_sym_o_GT_PIPE] = ACTIONS(1952), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1952), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1952), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1952), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1952), + [anon_sym_RPAREN] = ACTIONS(1952), + [anon_sym_GT2] = ACTIONS(1954), + [anon_sym_DASH2] = ACTIONS(1952), + [anon_sym_RBRACE] = ACTIONS(1952), + [anon_sym_STAR2] = ACTIONS(1954), + [anon_sym_and2] = ACTIONS(1952), + [anon_sym_xor2] = ACTIONS(1952), + [anon_sym_or2] = ACTIONS(1952), + [anon_sym_not_DASHin2] = ACTIONS(1952), + [anon_sym_has2] = ACTIONS(1952), + [anon_sym_not_DASHhas2] = ACTIONS(1952), + [anon_sym_starts_DASHwith2] = ACTIONS(1952), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1952), + [anon_sym_ends_DASHwith2] = ACTIONS(1952), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1952), + [anon_sym_EQ_EQ2] = ACTIONS(1952), + [anon_sym_BANG_EQ2] = ACTIONS(1952), + [anon_sym_LT2] = ACTIONS(1954), + [anon_sym_LT_EQ2] = ACTIONS(1952), + [anon_sym_GT_EQ2] = ACTIONS(1952), + [anon_sym_EQ_TILDE2] = ACTIONS(1952), + [anon_sym_BANG_TILDE2] = ACTIONS(1952), + [anon_sym_like2] = ACTIONS(1952), + [anon_sym_not_DASHlike2] = ACTIONS(1952), + [anon_sym_LPAREN2] = ACTIONS(1956), + [anon_sym_STAR_STAR2] = ACTIONS(1952), + [anon_sym_PLUS_PLUS2] = ACTIONS(1952), + [anon_sym_SLASH2] = ACTIONS(1954), + [anon_sym_mod2] = ACTIONS(1952), + [anon_sym_SLASH_SLASH2] = ACTIONS(1952), + [anon_sym_PLUS2] = ACTIONS(1954), + [anon_sym_bit_DASHshl2] = ACTIONS(1952), + [anon_sym_bit_DASHshr2] = ACTIONS(1952), + [anon_sym_bit_DASHand2] = ACTIONS(1952), + [anon_sym_bit_DASHxor2] = ACTIONS(1952), + [anon_sym_bit_DASHor2] = ACTIONS(1952), + [anon_sym_err_GT] = ACTIONS(1954), + [anon_sym_out_GT] = ACTIONS(1954), + [anon_sym_e_GT] = ACTIONS(1954), + [anon_sym_o_GT] = ACTIONS(1954), + [anon_sym_err_PLUSout_GT] = ACTIONS(1954), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1954), + [anon_sym_o_PLUSe_GT] = ACTIONS(1954), + [anon_sym_e_PLUSo_GT] = ACTIONS(1954), + [anon_sym_err_GT_GT] = ACTIONS(1952), + [anon_sym_out_GT_GT] = ACTIONS(1952), + [anon_sym_e_GT_GT] = ACTIONS(1952), + [anon_sym_o_GT_GT] = ACTIONS(1952), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1952), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1952), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1952), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1952), + [sym__unquoted_pattern] = ACTIONS(1962), [anon_sym_POUND] = ACTIONS(3), }, [STATE(952)] = { [sym_comment] = STATE(952), - [ts_builtin_sym_end] = ACTIONS(2134), - [anon_sym_in] = ACTIONS(2134), - [sym__newline] = ACTIONS(2134), - [anon_sym_SEMI] = ACTIONS(2134), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_err_GT_PIPE] = ACTIONS(2134), - [anon_sym_out_GT_PIPE] = ACTIONS(2134), - [anon_sym_e_GT_PIPE] = ACTIONS(2134), - [anon_sym_o_GT_PIPE] = ACTIONS(2134), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2134), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2134), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2134), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2134), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2134), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2134), - [anon_sym_xor2] = ACTIONS(2134), - [anon_sym_or2] = ACTIONS(2134), - [anon_sym_not_DASHin2] = ACTIONS(2134), - [anon_sym_has2] = ACTIONS(2134), - [anon_sym_not_DASHhas2] = ACTIONS(2134), - [anon_sym_starts_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), - [anon_sym_ends_DASHwith2] = ACTIONS(2134), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), - [anon_sym_EQ_EQ2] = ACTIONS(2134), - [anon_sym_BANG_EQ2] = ACTIONS(2134), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2134), - [anon_sym_GT_EQ2] = ACTIONS(2134), - [anon_sym_EQ_TILDE2] = ACTIONS(2134), - [anon_sym_BANG_TILDE2] = ACTIONS(2134), - [anon_sym_like2] = ACTIONS(2134), - [anon_sym_not_DASHlike2] = ACTIONS(2134), - [anon_sym_STAR_STAR2] = ACTIONS(2134), - [anon_sym_PLUS_PLUS2] = ACTIONS(2134), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2134), - [anon_sym_SLASH_SLASH2] = ACTIONS(2134), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2134), - [anon_sym_bit_DASHshr2] = ACTIONS(2134), - [anon_sym_bit_DASHand2] = ACTIONS(2134), - [anon_sym_bit_DASHxor2] = ACTIONS(2134), - [anon_sym_bit_DASHor2] = ACTIONS(2134), - [anon_sym_DOT_DOT2] = ACTIONS(1748), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1750), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1750), - [anon_sym_err_GT] = ACTIONS(2138), - [anon_sym_out_GT] = ACTIONS(2138), - [anon_sym_e_GT] = ACTIONS(2138), - [anon_sym_o_GT] = ACTIONS(2138), - [anon_sym_err_PLUSout_GT] = ACTIONS(2138), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2138), - [anon_sym_o_PLUSe_GT] = ACTIONS(2138), - [anon_sym_e_PLUSo_GT] = ACTIONS(2138), - [anon_sym_err_GT_GT] = ACTIONS(2134), - [anon_sym_out_GT_GT] = ACTIONS(2134), - [anon_sym_e_GT_GT] = ACTIONS(2134), - [anon_sym_o_GT_GT] = ACTIONS(2134), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2134), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2134), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2134), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2134), + [anon_sym_in] = ACTIONS(2626), + [sym__newline] = ACTIONS(2626), + [anon_sym_SEMI] = ACTIONS(2626), + [anon_sym_PIPE] = ACTIONS(2626), + [anon_sym_err_GT_PIPE] = ACTIONS(2626), + [anon_sym_out_GT_PIPE] = ACTIONS(2626), + [anon_sym_e_GT_PIPE] = ACTIONS(2626), + [anon_sym_o_GT_PIPE] = ACTIONS(2626), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2626), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2626), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2626), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2626), + [anon_sym_RPAREN] = ACTIONS(2626), + [anon_sym_GT2] = ACTIONS(2628), + [anon_sym_DASH2] = ACTIONS(2626), + [anon_sym_LBRACE] = ACTIONS(2626), + [anon_sym_RBRACE] = ACTIONS(2626), + [anon_sym_EQ_GT] = ACTIONS(2626), + [anon_sym_STAR2] = ACTIONS(2628), + [anon_sym_and2] = ACTIONS(2626), + [anon_sym_xor2] = ACTIONS(2626), + [anon_sym_or2] = ACTIONS(2626), + [anon_sym_not_DASHin2] = ACTIONS(2626), + [anon_sym_has2] = ACTIONS(2626), + [anon_sym_not_DASHhas2] = ACTIONS(2626), + [anon_sym_starts_DASHwith2] = ACTIONS(2626), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2626), + [anon_sym_ends_DASHwith2] = ACTIONS(2626), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2626), + [anon_sym_EQ_EQ2] = ACTIONS(2626), + [anon_sym_BANG_EQ2] = ACTIONS(2626), + [anon_sym_LT2] = ACTIONS(2628), + [anon_sym_LT_EQ2] = ACTIONS(2626), + [anon_sym_GT_EQ2] = ACTIONS(2626), + [anon_sym_EQ_TILDE2] = ACTIONS(2626), + [anon_sym_BANG_TILDE2] = ACTIONS(2626), + [anon_sym_like2] = ACTIONS(2626), + [anon_sym_not_DASHlike2] = ACTIONS(2626), + [anon_sym_STAR_STAR2] = ACTIONS(2626), + [anon_sym_PLUS_PLUS2] = ACTIONS(2626), + [anon_sym_SLASH2] = ACTIONS(2628), + [anon_sym_mod2] = ACTIONS(2626), + [anon_sym_SLASH_SLASH2] = ACTIONS(2626), + [anon_sym_PLUS2] = ACTIONS(2628), + [anon_sym_bit_DASHshl2] = ACTIONS(2626), + [anon_sym_bit_DASHshr2] = ACTIONS(2626), + [anon_sym_bit_DASHand2] = ACTIONS(2626), + [anon_sym_bit_DASHxor2] = ACTIONS(2626), + [anon_sym_bit_DASHor2] = ACTIONS(2626), + [anon_sym_err_GT] = ACTIONS(2628), + [anon_sym_out_GT] = ACTIONS(2628), + [anon_sym_e_GT] = ACTIONS(2628), + [anon_sym_o_GT] = ACTIONS(2628), + [anon_sym_err_PLUSout_GT] = ACTIONS(2628), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2628), + [anon_sym_o_PLUSe_GT] = ACTIONS(2628), + [anon_sym_e_PLUSo_GT] = ACTIONS(2628), + [anon_sym_err_GT_GT] = ACTIONS(2626), + [anon_sym_out_GT_GT] = ACTIONS(2626), + [anon_sym_e_GT_GT] = ACTIONS(2626), + [anon_sym_o_GT_GT] = ACTIONS(2626), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2626), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2626), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2626), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2626), [anon_sym_POUND] = ACTIONS(3), }, [STATE(953)] = { [sym_comment] = STATE(953), - [anon_sym_in] = ACTIONS(2619), - [sym__newline] = ACTIONS(2619), - [anon_sym_SEMI] = ACTIONS(2619), - [anon_sym_PIPE] = ACTIONS(2619), - [anon_sym_err_GT_PIPE] = ACTIONS(2619), - [anon_sym_out_GT_PIPE] = ACTIONS(2619), - [anon_sym_e_GT_PIPE] = ACTIONS(2619), - [anon_sym_o_GT_PIPE] = ACTIONS(2619), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2619), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2619), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2619), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2619), - [anon_sym_RPAREN] = ACTIONS(2619), - [anon_sym_GT2] = ACTIONS(2621), - [anon_sym_DASH2] = ACTIONS(2619), - [anon_sym_LBRACE] = ACTIONS(2619), - [anon_sym_RBRACE] = ACTIONS(2619), - [anon_sym_EQ_GT] = ACTIONS(2619), - [anon_sym_STAR2] = ACTIONS(2621), - [anon_sym_and2] = ACTIONS(2619), - [anon_sym_xor2] = ACTIONS(2619), - [anon_sym_or2] = ACTIONS(2619), - [anon_sym_not_DASHin2] = ACTIONS(2619), - [anon_sym_has2] = ACTIONS(2619), - [anon_sym_not_DASHhas2] = ACTIONS(2619), - [anon_sym_starts_DASHwith2] = ACTIONS(2619), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2619), - [anon_sym_ends_DASHwith2] = ACTIONS(2619), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2619), - [anon_sym_EQ_EQ2] = ACTIONS(2619), - [anon_sym_BANG_EQ2] = ACTIONS(2619), - [anon_sym_LT2] = ACTIONS(2621), - [anon_sym_LT_EQ2] = ACTIONS(2619), - [anon_sym_GT_EQ2] = ACTIONS(2619), - [anon_sym_EQ_TILDE2] = ACTIONS(2619), - [anon_sym_BANG_TILDE2] = ACTIONS(2619), - [anon_sym_like2] = ACTIONS(2619), - [anon_sym_not_DASHlike2] = ACTIONS(2619), - [anon_sym_STAR_STAR2] = ACTIONS(2619), - [anon_sym_PLUS_PLUS2] = ACTIONS(2619), - [anon_sym_SLASH2] = ACTIONS(2621), - [anon_sym_mod2] = ACTIONS(2619), - [anon_sym_SLASH_SLASH2] = ACTIONS(2619), - [anon_sym_PLUS2] = ACTIONS(2621), - [anon_sym_bit_DASHshl2] = ACTIONS(2619), - [anon_sym_bit_DASHshr2] = ACTIONS(2619), - [anon_sym_bit_DASHand2] = ACTIONS(2619), - [anon_sym_bit_DASHxor2] = ACTIONS(2619), - [anon_sym_bit_DASHor2] = ACTIONS(2619), - [anon_sym_err_GT] = ACTIONS(2621), - [anon_sym_out_GT] = ACTIONS(2621), - [anon_sym_e_GT] = ACTIONS(2621), - [anon_sym_o_GT] = ACTIONS(2621), - [anon_sym_err_PLUSout_GT] = ACTIONS(2621), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2621), - [anon_sym_o_PLUSe_GT] = ACTIONS(2621), - [anon_sym_e_PLUSo_GT] = ACTIONS(2621), - [anon_sym_err_GT_GT] = ACTIONS(2619), - [anon_sym_out_GT_GT] = ACTIONS(2619), - [anon_sym_e_GT_GT] = ACTIONS(2619), - [anon_sym_o_GT_GT] = ACTIONS(2619), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2619), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2619), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2619), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2619), + [anon_sym_in] = ACTIONS(1738), + [sym__newline] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_err_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_GT_PIPE] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_RPAREN] = ACTIONS(1738), + [anon_sym_GT2] = ACTIONS(1740), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1738), + [anon_sym_STAR2] = ACTIONS(1740), + [anon_sym_and2] = ACTIONS(1738), + [anon_sym_xor2] = ACTIONS(1738), + [anon_sym_or2] = ACTIONS(1738), + [anon_sym_not_DASHin2] = ACTIONS(1738), + [anon_sym_has2] = ACTIONS(1738), + [anon_sym_not_DASHhas2] = ACTIONS(1738), + [anon_sym_starts_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), + [anon_sym_ends_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), + [anon_sym_EQ_EQ2] = ACTIONS(1738), + [anon_sym_BANG_EQ2] = ACTIONS(1738), + [anon_sym_LT2] = ACTIONS(1740), + [anon_sym_LT_EQ2] = ACTIONS(1738), + [anon_sym_GT_EQ2] = ACTIONS(1738), + [anon_sym_EQ_TILDE2] = ACTIONS(1738), + [anon_sym_BANG_TILDE2] = ACTIONS(1738), + [anon_sym_like2] = ACTIONS(1738), + [anon_sym_not_DASHlike2] = ACTIONS(1738), + [anon_sym_LPAREN2] = ACTIONS(1738), + [anon_sym_STAR_STAR2] = ACTIONS(1738), + [anon_sym_PLUS_PLUS2] = ACTIONS(1738), + [anon_sym_SLASH2] = ACTIONS(1740), + [anon_sym_mod2] = ACTIONS(1738), + [anon_sym_SLASH_SLASH2] = ACTIONS(1738), + [anon_sym_PLUS2] = ACTIONS(1740), + [anon_sym_bit_DASHshl2] = ACTIONS(1738), + [anon_sym_bit_DASHshr2] = ACTIONS(1738), + [anon_sym_bit_DASHand2] = ACTIONS(1738), + [anon_sym_bit_DASHxor2] = ACTIONS(1738), + [anon_sym_bit_DASHor2] = ACTIONS(1738), + [anon_sym_err_GT] = ACTIONS(1740), + [anon_sym_out_GT] = ACTIONS(1740), + [anon_sym_e_GT] = ACTIONS(1740), + [anon_sym_o_GT] = ACTIONS(1740), + [anon_sym_err_PLUSout_GT] = ACTIONS(1740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1740), + [anon_sym_o_PLUSe_GT] = ACTIONS(1740), + [anon_sym_e_PLUSo_GT] = ACTIONS(1740), + [anon_sym_err_GT_GT] = ACTIONS(1738), + [anon_sym_out_GT_GT] = ACTIONS(1738), + [anon_sym_e_GT_GT] = ACTIONS(1738), + [anon_sym_o_GT_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), + [sym__unquoted_pattern] = ACTIONS(1740), [anon_sym_POUND] = ACTIONS(3), }, [STATE(954)] = { [sym_comment] = STATE(954), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_RBRACE] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_LPAREN2] = ACTIONS(1978), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), - [sym__unquoted_pattern] = ACTIONS(1984), + [ts_builtin_sym_end] = ACTIONS(1806), + [anon_sym_in] = ACTIONS(1806), + [sym__newline] = ACTIONS(1806), + [anon_sym_SEMI] = ACTIONS(1806), + [anon_sym_PIPE] = ACTIONS(1806), + [anon_sym_err_GT_PIPE] = ACTIONS(1806), + [anon_sym_out_GT_PIPE] = ACTIONS(1806), + [anon_sym_e_GT_PIPE] = ACTIONS(1806), + [anon_sym_o_GT_PIPE] = ACTIONS(1806), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1806), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1806), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1806), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1806), + [anon_sym_GT2] = ACTIONS(1808), + [anon_sym_DASH2] = ACTIONS(1806), + [anon_sym_STAR2] = ACTIONS(1808), + [anon_sym_and2] = ACTIONS(1806), + [anon_sym_xor2] = ACTIONS(1806), + [anon_sym_or2] = ACTIONS(1806), + [anon_sym_not_DASHin2] = ACTIONS(1806), + [anon_sym_has2] = ACTIONS(1806), + [anon_sym_not_DASHhas2] = ACTIONS(1806), + [anon_sym_starts_DASHwith2] = ACTIONS(1806), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1806), + [anon_sym_ends_DASHwith2] = ACTIONS(1806), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1806), + [anon_sym_EQ_EQ2] = ACTIONS(1806), + [anon_sym_BANG_EQ2] = ACTIONS(1806), + [anon_sym_LT2] = ACTIONS(1808), + [anon_sym_LT_EQ2] = ACTIONS(1806), + [anon_sym_GT_EQ2] = ACTIONS(1806), + [anon_sym_EQ_TILDE2] = ACTIONS(1806), + [anon_sym_BANG_TILDE2] = ACTIONS(1806), + [anon_sym_like2] = ACTIONS(1806), + [anon_sym_not_DASHlike2] = ACTIONS(1806), + [anon_sym_LPAREN2] = ACTIONS(1806), + [anon_sym_STAR_STAR2] = ACTIONS(1806), + [anon_sym_PLUS_PLUS2] = ACTIONS(1806), + [anon_sym_SLASH2] = ACTIONS(1808), + [anon_sym_mod2] = ACTIONS(1806), + [anon_sym_SLASH_SLASH2] = ACTIONS(1806), + [anon_sym_PLUS2] = ACTIONS(1808), + [anon_sym_bit_DASHshl2] = ACTIONS(1806), + [anon_sym_bit_DASHshr2] = ACTIONS(1806), + [anon_sym_bit_DASHand2] = ACTIONS(1806), + [anon_sym_bit_DASHxor2] = ACTIONS(1806), + [anon_sym_bit_DASHor2] = ACTIONS(1806), + [aux_sym__immediate_decimal_token5] = ACTIONS(2630), + [anon_sym_err_GT] = ACTIONS(1808), + [anon_sym_out_GT] = ACTIONS(1808), + [anon_sym_e_GT] = ACTIONS(1808), + [anon_sym_o_GT] = ACTIONS(1808), + [anon_sym_err_PLUSout_GT] = ACTIONS(1808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1808), + [anon_sym_o_PLUSe_GT] = ACTIONS(1808), + [anon_sym_e_PLUSo_GT] = ACTIONS(1808), + [anon_sym_err_GT_GT] = ACTIONS(1806), + [anon_sym_out_GT_GT] = ACTIONS(1806), + [anon_sym_e_GT_GT] = ACTIONS(1806), + [anon_sym_o_GT_GT] = ACTIONS(1806), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1806), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1806), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1806), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1806), + [sym__unquoted_pattern] = ACTIONS(1808), [anon_sym_POUND] = ACTIONS(3), }, [STATE(955)] = { [sym_comment] = STATE(955), - [anon_sym_in] = ACTIONS(1964), - [sym__newline] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_err_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_GT_PIPE] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1964), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_GT2] = ACTIONS(1966), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_EQ_GT] = ACTIONS(1964), - [anon_sym_STAR2] = ACTIONS(1966), - [anon_sym_and2] = ACTIONS(1964), - [anon_sym_xor2] = ACTIONS(1964), - [anon_sym_or2] = ACTIONS(1964), - [anon_sym_not_DASHin2] = ACTIONS(1964), - [anon_sym_has2] = ACTIONS(1964), - [anon_sym_not_DASHhas2] = ACTIONS(1964), - [anon_sym_starts_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1964), - [anon_sym_ends_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1964), - [anon_sym_EQ_EQ2] = ACTIONS(1964), - [anon_sym_BANG_EQ2] = ACTIONS(1964), - [anon_sym_LT2] = ACTIONS(1966), - [anon_sym_LT_EQ2] = ACTIONS(1964), - [anon_sym_GT_EQ2] = ACTIONS(1964), - [anon_sym_EQ_TILDE2] = ACTIONS(1964), - [anon_sym_BANG_TILDE2] = ACTIONS(1964), - [anon_sym_like2] = ACTIONS(1964), - [anon_sym_not_DASHlike2] = ACTIONS(1964), - [anon_sym_STAR_STAR2] = ACTIONS(1964), - [anon_sym_PLUS_PLUS2] = ACTIONS(1964), - [anon_sym_SLASH2] = ACTIONS(1966), - [anon_sym_mod2] = ACTIONS(1964), - [anon_sym_SLASH_SLASH2] = ACTIONS(1964), - [anon_sym_PLUS2] = ACTIONS(1966), - [anon_sym_bit_DASHshl2] = ACTIONS(1964), - [anon_sym_bit_DASHshr2] = ACTIONS(1964), - [anon_sym_bit_DASHand2] = ACTIONS(1964), - [anon_sym_bit_DASHxor2] = ACTIONS(1964), - [anon_sym_bit_DASHor2] = ACTIONS(1964), - [anon_sym_err_GT] = ACTIONS(1966), - [anon_sym_out_GT] = ACTIONS(1966), - [anon_sym_e_GT] = ACTIONS(1966), - [anon_sym_o_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT] = ACTIONS(1966), - [anon_sym_err_GT_GT] = ACTIONS(1964), - [anon_sym_out_GT_GT] = ACTIONS(1964), - [anon_sym_e_GT_GT] = ACTIONS(1964), - [anon_sym_o_GT_GT] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1964), + [anon_sym_in] = ACTIONS(1806), + [sym__newline] = ACTIONS(1806), + [anon_sym_SEMI] = ACTIONS(1806), + [anon_sym_PIPE] = ACTIONS(1806), + [anon_sym_err_GT_PIPE] = ACTIONS(1806), + [anon_sym_out_GT_PIPE] = ACTIONS(1806), + [anon_sym_e_GT_PIPE] = ACTIONS(1806), + [anon_sym_o_GT_PIPE] = ACTIONS(1806), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1806), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1806), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1806), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1806), + [anon_sym_RPAREN] = ACTIONS(1806), + [anon_sym_GT2] = ACTIONS(1808), + [anon_sym_DASH2] = ACTIONS(1806), + [anon_sym_RBRACE] = ACTIONS(1806), + [anon_sym_STAR2] = ACTIONS(1808), + [anon_sym_and2] = ACTIONS(1806), + [anon_sym_xor2] = ACTIONS(1806), + [anon_sym_or2] = ACTIONS(1806), + [anon_sym_not_DASHin2] = ACTIONS(1806), + [anon_sym_has2] = ACTIONS(1806), + [anon_sym_not_DASHhas2] = ACTIONS(1806), + [anon_sym_starts_DASHwith2] = ACTIONS(1806), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1806), + [anon_sym_ends_DASHwith2] = ACTIONS(1806), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1806), + [anon_sym_EQ_EQ2] = ACTIONS(1806), + [anon_sym_BANG_EQ2] = ACTIONS(1806), + [anon_sym_LT2] = ACTIONS(1808), + [anon_sym_LT_EQ2] = ACTIONS(1806), + [anon_sym_GT_EQ2] = ACTIONS(1806), + [anon_sym_EQ_TILDE2] = ACTIONS(1806), + [anon_sym_BANG_TILDE2] = ACTIONS(1806), + [anon_sym_like2] = ACTIONS(1806), + [anon_sym_not_DASHlike2] = ACTIONS(1806), + [anon_sym_LPAREN2] = ACTIONS(1806), + [anon_sym_STAR_STAR2] = ACTIONS(1806), + [anon_sym_PLUS_PLUS2] = ACTIONS(1806), + [anon_sym_SLASH2] = ACTIONS(1808), + [anon_sym_mod2] = ACTIONS(1806), + [anon_sym_SLASH_SLASH2] = ACTIONS(1806), + [anon_sym_PLUS2] = ACTIONS(1808), + [anon_sym_bit_DASHshl2] = ACTIONS(1806), + [anon_sym_bit_DASHshr2] = ACTIONS(1806), + [anon_sym_bit_DASHand2] = ACTIONS(1806), + [anon_sym_bit_DASHxor2] = ACTIONS(1806), + [anon_sym_bit_DASHor2] = ACTIONS(1806), + [anon_sym_err_GT] = ACTIONS(1808), + [anon_sym_out_GT] = ACTIONS(1808), + [anon_sym_e_GT] = ACTIONS(1808), + [anon_sym_o_GT] = ACTIONS(1808), + [anon_sym_err_PLUSout_GT] = ACTIONS(1808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1808), + [anon_sym_o_PLUSe_GT] = ACTIONS(1808), + [anon_sym_e_PLUSo_GT] = ACTIONS(1808), + [anon_sym_err_GT_GT] = ACTIONS(1806), + [anon_sym_out_GT_GT] = ACTIONS(1806), + [anon_sym_e_GT_GT] = ACTIONS(1806), + [anon_sym_o_GT_GT] = ACTIONS(1806), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1806), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1806), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1806), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1806), + [sym__unquoted_pattern] = ACTIONS(1808), [anon_sym_POUND] = ACTIONS(3), }, [STATE(956)] = { [sym_comment] = STATE(956), - [ts_builtin_sym_end] = ACTIONS(1964), - [anon_sym_in] = ACTIONS(1964), - [sym__newline] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_err_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_GT_PIPE] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1964), - [anon_sym_GT2] = ACTIONS(1966), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_STAR2] = ACTIONS(1966), - [anon_sym_and2] = ACTIONS(1964), - [anon_sym_xor2] = ACTIONS(1964), - [anon_sym_or2] = ACTIONS(1964), - [anon_sym_not_DASHin2] = ACTIONS(1964), - [anon_sym_has2] = ACTIONS(1964), - [anon_sym_not_DASHhas2] = ACTIONS(1964), - [anon_sym_starts_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1964), - [anon_sym_ends_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1964), - [anon_sym_EQ_EQ2] = ACTIONS(1964), - [anon_sym_BANG_EQ2] = ACTIONS(1964), - [anon_sym_LT2] = ACTIONS(1966), - [anon_sym_LT_EQ2] = ACTIONS(1964), - [anon_sym_GT_EQ2] = ACTIONS(1964), - [anon_sym_EQ_TILDE2] = ACTIONS(1964), - [anon_sym_BANG_TILDE2] = ACTIONS(1964), - [anon_sym_like2] = ACTIONS(1964), - [anon_sym_not_DASHlike2] = ACTIONS(1964), - [anon_sym_STAR_STAR2] = ACTIONS(1964), - [anon_sym_PLUS_PLUS2] = ACTIONS(1964), - [anon_sym_SLASH2] = ACTIONS(1966), - [anon_sym_mod2] = ACTIONS(1964), - [anon_sym_SLASH_SLASH2] = ACTIONS(1964), - [anon_sym_PLUS2] = ACTIONS(1966), - [anon_sym_bit_DASHshl2] = ACTIONS(1964), - [anon_sym_bit_DASHshr2] = ACTIONS(1964), - [anon_sym_bit_DASHand2] = ACTIONS(1964), - [anon_sym_bit_DASHxor2] = ACTIONS(1964), - [anon_sym_bit_DASHor2] = ACTIONS(1964), - [anon_sym_DOT_DOT2] = ACTIONS(2623), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2625), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2625), - [anon_sym_err_GT] = ACTIONS(1966), - [anon_sym_out_GT] = ACTIONS(1966), - [anon_sym_e_GT] = ACTIONS(1966), - [anon_sym_o_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT] = ACTIONS(1966), - [anon_sym_err_GT_GT] = ACTIONS(1964), - [anon_sym_out_GT_GT] = ACTIONS(1964), - [anon_sym_e_GT_GT] = ACTIONS(1964), - [anon_sym_o_GT_GT] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1964), + [anon_sym_in] = ACTIONS(1844), + [sym__newline] = ACTIONS(1844), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_err_GT_PIPE] = ACTIONS(1844), + [anon_sym_out_GT_PIPE] = ACTIONS(1844), + [anon_sym_e_GT_PIPE] = ACTIONS(1844), + [anon_sym_o_GT_PIPE] = ACTIONS(1844), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1844), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1844), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1844), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1844), + [anon_sym_RPAREN] = ACTIONS(1844), + [anon_sym_GT2] = ACTIONS(1846), + [anon_sym_DASH2] = ACTIONS(1844), + [anon_sym_RBRACE] = ACTIONS(1844), + [anon_sym_STAR2] = ACTIONS(1846), + [anon_sym_and2] = ACTIONS(1844), + [anon_sym_xor2] = ACTIONS(1844), + [anon_sym_or2] = ACTIONS(1844), + [anon_sym_not_DASHin2] = ACTIONS(1844), + [anon_sym_has2] = ACTIONS(1844), + [anon_sym_not_DASHhas2] = ACTIONS(1844), + [anon_sym_starts_DASHwith2] = ACTIONS(1844), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1844), + [anon_sym_ends_DASHwith2] = ACTIONS(1844), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1844), + [anon_sym_EQ_EQ2] = ACTIONS(1844), + [anon_sym_BANG_EQ2] = ACTIONS(1844), + [anon_sym_LT2] = ACTIONS(1846), + [anon_sym_LT_EQ2] = ACTIONS(1844), + [anon_sym_GT_EQ2] = ACTIONS(1844), + [anon_sym_EQ_TILDE2] = ACTIONS(1844), + [anon_sym_BANG_TILDE2] = ACTIONS(1844), + [anon_sym_like2] = ACTIONS(1844), + [anon_sym_not_DASHlike2] = ACTIONS(1844), + [anon_sym_LPAREN2] = ACTIONS(1844), + [anon_sym_STAR_STAR2] = ACTIONS(1844), + [anon_sym_PLUS_PLUS2] = ACTIONS(1844), + [anon_sym_SLASH2] = ACTIONS(1846), + [anon_sym_mod2] = ACTIONS(1844), + [anon_sym_SLASH_SLASH2] = ACTIONS(1844), + [anon_sym_PLUS2] = ACTIONS(1846), + [anon_sym_bit_DASHshl2] = ACTIONS(1844), + [anon_sym_bit_DASHshr2] = ACTIONS(1844), + [anon_sym_bit_DASHand2] = ACTIONS(1844), + [anon_sym_bit_DASHxor2] = ACTIONS(1844), + [anon_sym_bit_DASHor2] = ACTIONS(1844), + [anon_sym_err_GT] = ACTIONS(1846), + [anon_sym_out_GT] = ACTIONS(1846), + [anon_sym_e_GT] = ACTIONS(1846), + [anon_sym_o_GT] = ACTIONS(1846), + [anon_sym_err_PLUSout_GT] = ACTIONS(1846), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1846), + [anon_sym_o_PLUSe_GT] = ACTIONS(1846), + [anon_sym_e_PLUSo_GT] = ACTIONS(1846), + [anon_sym_err_GT_GT] = ACTIONS(1844), + [anon_sym_out_GT_GT] = ACTIONS(1844), + [anon_sym_e_GT_GT] = ACTIONS(1844), + [anon_sym_o_GT_GT] = ACTIONS(1844), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1844), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1844), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1844), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1844), + [sym__unquoted_pattern] = ACTIONS(1846), [anon_sym_POUND] = ACTIONS(3), }, [STATE(957)] = { [sym_comment] = STATE(957), - [ts_builtin_sym_end] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [aux_sym__immediate_decimal_token5] = ACTIONS(2627), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(2074), + [sym__newline] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_PIPE] = ACTIONS(2074), + [anon_sym_err_GT_PIPE] = ACTIONS(2074), + [anon_sym_out_GT_PIPE] = ACTIONS(2074), + [anon_sym_e_GT_PIPE] = ACTIONS(2074), + [anon_sym_o_GT_PIPE] = ACTIONS(2074), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2074), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2074), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2074), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2074), + [anon_sym_RPAREN] = ACTIONS(2074), + [anon_sym_GT2] = ACTIONS(2078), + [anon_sym_DASH2] = ACTIONS(2074), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_RBRACE] = ACTIONS(2074), + [anon_sym_EQ_GT] = ACTIONS(2074), + [anon_sym_STAR2] = ACTIONS(2078), + [anon_sym_and2] = ACTIONS(2074), + [anon_sym_xor2] = ACTIONS(2074), + [anon_sym_or2] = ACTIONS(2074), + [anon_sym_not_DASHin2] = ACTIONS(2074), + [anon_sym_has2] = ACTIONS(2074), + [anon_sym_not_DASHhas2] = ACTIONS(2074), + [anon_sym_starts_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2074), + [anon_sym_ends_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2074), + [anon_sym_EQ_EQ2] = ACTIONS(2074), + [anon_sym_BANG_EQ2] = ACTIONS(2074), + [anon_sym_LT2] = ACTIONS(2078), + [anon_sym_LT_EQ2] = ACTIONS(2074), + [anon_sym_GT_EQ2] = ACTIONS(2074), + [anon_sym_EQ_TILDE2] = ACTIONS(2074), + [anon_sym_BANG_TILDE2] = ACTIONS(2074), + [anon_sym_like2] = ACTIONS(2074), + [anon_sym_not_DASHlike2] = ACTIONS(2074), + [anon_sym_STAR_STAR2] = ACTIONS(2074), + [anon_sym_PLUS_PLUS2] = ACTIONS(2074), + [anon_sym_SLASH2] = ACTIONS(2078), + [anon_sym_mod2] = ACTIONS(2074), + [anon_sym_SLASH_SLASH2] = ACTIONS(2074), + [anon_sym_PLUS2] = ACTIONS(2078), + [anon_sym_bit_DASHshl2] = ACTIONS(2074), + [anon_sym_bit_DASHshr2] = ACTIONS(2074), + [anon_sym_bit_DASHand2] = ACTIONS(2074), + [anon_sym_bit_DASHxor2] = ACTIONS(2074), + [anon_sym_bit_DASHor2] = ACTIONS(2074), + [anon_sym_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(2074), + [anon_sym_out_GT_GT] = ACTIONS(2074), + [anon_sym_e_GT_GT] = ACTIONS(2074), + [anon_sym_o_GT_GT] = ACTIONS(2074), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2074), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2074), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2074), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), }, [STATE(958)] = { [sym_comment] = STATE(958), - [anon_sym_in] = ACTIONS(2523), - [sym__newline] = ACTIONS(2523), - [anon_sym_SEMI] = ACTIONS(2523), - [anon_sym_PIPE] = ACTIONS(2523), - [anon_sym_err_GT_PIPE] = ACTIONS(2523), - [anon_sym_out_GT_PIPE] = ACTIONS(2523), - [anon_sym_e_GT_PIPE] = ACTIONS(2523), - [anon_sym_o_GT_PIPE] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2523), - [anon_sym_RPAREN] = ACTIONS(2523), - [anon_sym_GT2] = ACTIONS(2525), - [anon_sym_DASH2] = ACTIONS(2523), - [anon_sym_RBRACE] = ACTIONS(2523), - [anon_sym_STAR2] = ACTIONS(2525), - [anon_sym_and2] = ACTIONS(2523), - [anon_sym_xor2] = ACTIONS(2523), - [anon_sym_or2] = ACTIONS(2523), - [anon_sym_not_DASHin2] = ACTIONS(2523), - [anon_sym_has2] = ACTIONS(2523), - [anon_sym_not_DASHhas2] = ACTIONS(2523), - [anon_sym_starts_DASHwith2] = ACTIONS(2523), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2523), - [anon_sym_ends_DASHwith2] = ACTIONS(2523), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2523), - [anon_sym_EQ_EQ2] = ACTIONS(2523), - [anon_sym_BANG_EQ2] = ACTIONS(2523), - [anon_sym_LT2] = ACTIONS(2525), - [anon_sym_LT_EQ2] = ACTIONS(2523), - [anon_sym_GT_EQ2] = ACTIONS(2523), - [anon_sym_EQ_TILDE2] = ACTIONS(2523), - [anon_sym_BANG_TILDE2] = ACTIONS(2523), - [anon_sym_like2] = ACTIONS(2523), - [anon_sym_not_DASHlike2] = ACTIONS(2523), - [anon_sym_LPAREN2] = ACTIONS(2629), - [anon_sym_STAR_STAR2] = ACTIONS(2523), - [anon_sym_PLUS_PLUS2] = ACTIONS(2523), - [anon_sym_SLASH2] = ACTIONS(2525), - [anon_sym_mod2] = ACTIONS(2523), - [anon_sym_SLASH_SLASH2] = ACTIONS(2523), - [anon_sym_PLUS2] = ACTIONS(2525), - [anon_sym_bit_DASHshl2] = ACTIONS(2523), - [anon_sym_bit_DASHshr2] = ACTIONS(2523), - [anon_sym_bit_DASHand2] = ACTIONS(2523), - [anon_sym_bit_DASHxor2] = ACTIONS(2523), - [anon_sym_bit_DASHor2] = ACTIONS(2523), - [anon_sym_err_GT] = ACTIONS(2525), - [anon_sym_out_GT] = ACTIONS(2525), - [anon_sym_e_GT] = ACTIONS(2525), - [anon_sym_o_GT] = ACTIONS(2525), - [anon_sym_err_PLUSout_GT] = ACTIONS(2525), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2525), - [anon_sym_o_PLUSe_GT] = ACTIONS(2525), - [anon_sym_e_PLUSo_GT] = ACTIONS(2525), - [anon_sym_err_GT_GT] = ACTIONS(2523), - [anon_sym_out_GT_GT] = ACTIONS(2523), - [anon_sym_e_GT_GT] = ACTIONS(2523), - [anon_sym_o_GT_GT] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2523), - [sym__unquoted_pattern] = ACTIONS(1639), + [anon_sym_in] = ACTIONS(2632), + [sym__newline] = ACTIONS(2632), + [anon_sym_SEMI] = ACTIONS(2632), + [anon_sym_PIPE] = ACTIONS(2632), + [anon_sym_err_GT_PIPE] = ACTIONS(2632), + [anon_sym_out_GT_PIPE] = ACTIONS(2632), + [anon_sym_e_GT_PIPE] = ACTIONS(2632), + [anon_sym_o_GT_PIPE] = ACTIONS(2632), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2632), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2632), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2632), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2632), + [anon_sym_RPAREN] = ACTIONS(2632), + [anon_sym_GT2] = ACTIONS(2634), + [anon_sym_DASH2] = ACTIONS(2632), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_RBRACE] = ACTIONS(2632), + [anon_sym_EQ_GT] = ACTIONS(2632), + [anon_sym_STAR2] = ACTIONS(2634), + [anon_sym_and2] = ACTIONS(2632), + [anon_sym_xor2] = ACTIONS(2632), + [anon_sym_or2] = ACTIONS(2632), + [anon_sym_not_DASHin2] = ACTIONS(2632), + [anon_sym_has2] = ACTIONS(2632), + [anon_sym_not_DASHhas2] = ACTIONS(2632), + [anon_sym_starts_DASHwith2] = ACTIONS(2632), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2632), + [anon_sym_ends_DASHwith2] = ACTIONS(2632), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2632), + [anon_sym_EQ_EQ2] = ACTIONS(2632), + [anon_sym_BANG_EQ2] = ACTIONS(2632), + [anon_sym_LT2] = ACTIONS(2634), + [anon_sym_LT_EQ2] = ACTIONS(2632), + [anon_sym_GT_EQ2] = ACTIONS(2632), + [anon_sym_EQ_TILDE2] = ACTIONS(2632), + [anon_sym_BANG_TILDE2] = ACTIONS(2632), + [anon_sym_like2] = ACTIONS(2632), + [anon_sym_not_DASHlike2] = ACTIONS(2632), + [anon_sym_STAR_STAR2] = ACTIONS(2632), + [anon_sym_PLUS_PLUS2] = ACTIONS(2632), + [anon_sym_SLASH2] = ACTIONS(2634), + [anon_sym_mod2] = ACTIONS(2632), + [anon_sym_SLASH_SLASH2] = ACTIONS(2632), + [anon_sym_PLUS2] = ACTIONS(2634), + [anon_sym_bit_DASHshl2] = ACTIONS(2632), + [anon_sym_bit_DASHshr2] = ACTIONS(2632), + [anon_sym_bit_DASHand2] = ACTIONS(2632), + [anon_sym_bit_DASHxor2] = ACTIONS(2632), + [anon_sym_bit_DASHor2] = ACTIONS(2632), + [anon_sym_err_GT] = ACTIONS(2634), + [anon_sym_out_GT] = ACTIONS(2634), + [anon_sym_e_GT] = ACTIONS(2634), + [anon_sym_o_GT] = ACTIONS(2634), + [anon_sym_err_PLUSout_GT] = ACTIONS(2634), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2634), + [anon_sym_o_PLUSe_GT] = ACTIONS(2634), + [anon_sym_e_PLUSo_GT] = ACTIONS(2634), + [anon_sym_err_GT_GT] = ACTIONS(2632), + [anon_sym_out_GT_GT] = ACTIONS(2632), + [anon_sym_e_GT_GT] = ACTIONS(2632), + [anon_sym_o_GT_GT] = ACTIONS(2632), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2632), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2632), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2632), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2632), [anon_sym_POUND] = ACTIONS(3), }, [STATE(959)] = { [sym_comment] = STATE(959), - [anon_sym_in] = ACTIONS(2567), - [sym__newline] = ACTIONS(2567), - [anon_sym_SEMI] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2567), - [anon_sym_err_GT_PIPE] = ACTIONS(2567), - [anon_sym_out_GT_PIPE] = ACTIONS(2567), - [anon_sym_e_GT_PIPE] = ACTIONS(2567), - [anon_sym_o_GT_PIPE] = ACTIONS(2567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2567), - [anon_sym_RPAREN] = ACTIONS(2567), - [anon_sym_GT2] = ACTIONS(2569), - [anon_sym_DASH2] = ACTIONS(2567), - [anon_sym_RBRACE] = ACTIONS(2567), - [anon_sym_STAR2] = ACTIONS(2569), - [anon_sym_and2] = ACTIONS(2567), - [anon_sym_xor2] = ACTIONS(2567), - [anon_sym_or2] = ACTIONS(2567), - [anon_sym_not_DASHin2] = ACTIONS(2567), - [anon_sym_has2] = ACTIONS(2567), - [anon_sym_not_DASHhas2] = ACTIONS(2567), - [anon_sym_starts_DASHwith2] = ACTIONS(2567), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2567), - [anon_sym_ends_DASHwith2] = ACTIONS(2567), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2567), - [anon_sym_EQ_EQ2] = ACTIONS(2567), - [anon_sym_BANG_EQ2] = ACTIONS(2567), - [anon_sym_LT2] = ACTIONS(2569), - [anon_sym_LT_EQ2] = ACTIONS(2567), - [anon_sym_GT_EQ2] = ACTIONS(2567), - [anon_sym_EQ_TILDE2] = ACTIONS(2567), - [anon_sym_BANG_TILDE2] = ACTIONS(2567), - [anon_sym_like2] = ACTIONS(2567), - [anon_sym_not_DASHlike2] = ACTIONS(2567), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_STAR_STAR2] = ACTIONS(2567), - [anon_sym_PLUS_PLUS2] = ACTIONS(2567), - [anon_sym_SLASH2] = ACTIONS(2569), - [anon_sym_mod2] = ACTIONS(2567), - [anon_sym_SLASH_SLASH2] = ACTIONS(2567), - [anon_sym_PLUS2] = ACTIONS(2569), - [anon_sym_bit_DASHshl2] = ACTIONS(2567), - [anon_sym_bit_DASHshr2] = ACTIONS(2567), - [anon_sym_bit_DASHand2] = ACTIONS(2567), - [anon_sym_bit_DASHxor2] = ACTIONS(2567), - [anon_sym_bit_DASHor2] = ACTIONS(2567), - [anon_sym_err_GT] = ACTIONS(2569), - [anon_sym_out_GT] = ACTIONS(2569), - [anon_sym_e_GT] = ACTIONS(2569), - [anon_sym_o_GT] = ACTIONS(2569), - [anon_sym_err_PLUSout_GT] = ACTIONS(2569), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2569), - [anon_sym_o_PLUSe_GT] = ACTIONS(2569), - [anon_sym_e_PLUSo_GT] = ACTIONS(2569), - [anon_sym_err_GT_GT] = ACTIONS(2567), - [anon_sym_out_GT_GT] = ACTIONS(2567), - [anon_sym_e_GT_GT] = ACTIONS(2567), - [anon_sym_o_GT_GT] = ACTIONS(2567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2567), - [sym__unquoted_pattern] = ACTIONS(2633), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(960)] = { [sym_comment] = STATE(960), - [anon_sym_in] = ACTIONS(2635), - [sym__newline] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_PIPE] = ACTIONS(2635), - [anon_sym_err_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_GT_PIPE] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2635), - [anon_sym_RPAREN] = ACTIONS(2635), - [anon_sym_GT2] = ACTIONS(2637), - [anon_sym_DASH2] = ACTIONS(2635), - [anon_sym_RBRACE] = ACTIONS(2635), - [anon_sym_STAR2] = ACTIONS(2637), - [anon_sym_and2] = ACTIONS(2635), - [anon_sym_xor2] = ACTIONS(2635), - [anon_sym_or2] = ACTIONS(2635), - [anon_sym_not_DASHin2] = ACTIONS(2635), - [anon_sym_has2] = ACTIONS(2635), - [anon_sym_not_DASHhas2] = ACTIONS(2635), - [anon_sym_starts_DASHwith2] = ACTIONS(2635), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2635), - [anon_sym_ends_DASHwith2] = ACTIONS(2635), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2635), - [anon_sym_EQ_EQ2] = ACTIONS(2635), - [anon_sym_BANG_EQ2] = ACTIONS(2635), - [anon_sym_LT2] = ACTIONS(2637), - [anon_sym_LT_EQ2] = ACTIONS(2635), - [anon_sym_GT_EQ2] = ACTIONS(2635), - [anon_sym_EQ_TILDE2] = ACTIONS(2635), - [anon_sym_BANG_TILDE2] = ACTIONS(2635), - [anon_sym_like2] = ACTIONS(2635), - [anon_sym_not_DASHlike2] = ACTIONS(2635), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_STAR_STAR2] = ACTIONS(2635), - [anon_sym_PLUS_PLUS2] = ACTIONS(2635), - [anon_sym_SLASH2] = ACTIONS(2637), - [anon_sym_mod2] = ACTIONS(2635), - [anon_sym_SLASH_SLASH2] = ACTIONS(2635), - [anon_sym_PLUS2] = ACTIONS(2637), - [anon_sym_bit_DASHshl2] = ACTIONS(2635), - [anon_sym_bit_DASHshr2] = ACTIONS(2635), - [anon_sym_bit_DASHand2] = ACTIONS(2635), - [anon_sym_bit_DASHxor2] = ACTIONS(2635), - [anon_sym_bit_DASHor2] = ACTIONS(2635), - [anon_sym_err_GT] = ACTIONS(2637), - [anon_sym_out_GT] = ACTIONS(2637), - [anon_sym_e_GT] = ACTIONS(2637), - [anon_sym_o_GT] = ACTIONS(2637), - [anon_sym_err_PLUSout_GT] = ACTIONS(2637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2637), - [anon_sym_o_PLUSe_GT] = ACTIONS(2637), - [anon_sym_e_PLUSo_GT] = ACTIONS(2637), - [anon_sym_err_GT_GT] = ACTIONS(2635), - [anon_sym_out_GT_GT] = ACTIONS(2635), - [anon_sym_e_GT_GT] = ACTIONS(2635), - [anon_sym_o_GT_GT] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2635), - [sym__unquoted_pattern] = ACTIONS(2641), + [ts_builtin_sym_end] = ACTIONS(2098), + [anon_sym_in] = ACTIONS(2098), + [sym__newline] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_err_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_GT_PIPE] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), + [anon_sym_GT2] = ACTIONS(2100), + [anon_sym_DASH2] = ACTIONS(2098), + [anon_sym_STAR2] = ACTIONS(2100), + [anon_sym_and2] = ACTIONS(2098), + [anon_sym_xor2] = ACTIONS(2098), + [anon_sym_or2] = ACTIONS(2098), + [anon_sym_not_DASHin2] = ACTIONS(2098), + [anon_sym_has2] = ACTIONS(2098), + [anon_sym_not_DASHhas2] = ACTIONS(2098), + [anon_sym_starts_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), + [anon_sym_ends_DASHwith2] = ACTIONS(2098), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), + [anon_sym_EQ_EQ2] = ACTIONS(2098), + [anon_sym_BANG_EQ2] = ACTIONS(2098), + [anon_sym_LT2] = ACTIONS(2100), + [anon_sym_LT_EQ2] = ACTIONS(2098), + [anon_sym_GT_EQ2] = ACTIONS(2098), + [anon_sym_EQ_TILDE2] = ACTIONS(2098), + [anon_sym_BANG_TILDE2] = ACTIONS(2098), + [anon_sym_like2] = ACTIONS(2098), + [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_STAR_STAR2] = ACTIONS(2098), + [anon_sym_PLUS_PLUS2] = ACTIONS(2098), + [anon_sym_SLASH2] = ACTIONS(2100), + [anon_sym_mod2] = ACTIONS(2098), + [anon_sym_SLASH_SLASH2] = ACTIONS(2098), + [anon_sym_PLUS2] = ACTIONS(2100), + [anon_sym_bit_DASHshl2] = ACTIONS(2098), + [anon_sym_bit_DASHshr2] = ACTIONS(2098), + [anon_sym_bit_DASHand2] = ACTIONS(2098), + [anon_sym_bit_DASHxor2] = ACTIONS(2098), + [anon_sym_bit_DASHor2] = ACTIONS(2098), + [anon_sym_DOT_DOT2] = ACTIONS(2636), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2638), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2638), + [anon_sym_err_GT] = ACTIONS(2100), + [anon_sym_out_GT] = ACTIONS(2100), + [anon_sym_e_GT] = ACTIONS(2100), + [anon_sym_o_GT] = ACTIONS(2100), + [anon_sym_err_PLUSout_GT] = ACTIONS(2100), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), + [anon_sym_o_PLUSe_GT] = ACTIONS(2100), + [anon_sym_e_PLUSo_GT] = ACTIONS(2100), + [anon_sym_err_GT_GT] = ACTIONS(2098), + [anon_sym_out_GT_GT] = ACTIONS(2098), + [anon_sym_e_GT_GT] = ACTIONS(2098), + [anon_sym_o_GT_GT] = ACTIONS(2098), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), [anon_sym_POUND] = ACTIONS(3), }, [STATE(961)] = { [sym_comment] = STATE(961), + [ts_builtin_sym_end] = ACTIONS(1661), + [anon_sym_in] = 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(1663), + [anon_sym_DASH2] = ACTIONS(1661), + [anon_sym_STAR2] = ACTIONS(1663), + [anon_sym_and2] = ACTIONS(1661), + [anon_sym_xor2] = ACTIONS(1661), + [anon_sym_or2] = ACTIONS(1661), + [anon_sym_not_DASHin2] = ACTIONS(1661), + [anon_sym_has2] = ACTIONS(1661), + [anon_sym_not_DASHhas2] = ACTIONS(1661), + [anon_sym_starts_DASHwith2] = ACTIONS(1661), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1661), + [anon_sym_ends_DASHwith2] = ACTIONS(1661), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1661), + [anon_sym_EQ_EQ2] = ACTIONS(1661), + [anon_sym_BANG_EQ2] = ACTIONS(1661), + [anon_sym_LT2] = ACTIONS(1663), + [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_like2] = ACTIONS(1661), + [anon_sym_not_DASHlike2] = ACTIONS(1661), + [anon_sym_STAR_STAR2] = ACTIONS(1661), + [anon_sym_PLUS_PLUS2] = ACTIONS(1661), + [anon_sym_SLASH2] = ACTIONS(1663), + [anon_sym_mod2] = ACTIONS(1661), + [anon_sym_SLASH_SLASH2] = ACTIONS(1661), + [anon_sym_PLUS2] = ACTIONS(1663), + [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(1663), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), + [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(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), + }, + [STATE(962)] = { + [sym_comment] = STATE(962), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(963)] = { + [sym_comment] = STATE(963), + [ts_builtin_sym_end] = ACTIONS(1952), + [anon_sym_in] = ACTIONS(1952), + [sym__newline] = ACTIONS(1952), + [anon_sym_SEMI] = ACTIONS(1952), + [anon_sym_PIPE] = ACTIONS(1952), + [anon_sym_err_GT_PIPE] = ACTIONS(1952), + [anon_sym_out_GT_PIPE] = ACTIONS(1952), + [anon_sym_e_GT_PIPE] = ACTIONS(1952), + [anon_sym_o_GT_PIPE] = ACTIONS(1952), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1952), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1952), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1952), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1952), + [anon_sym_GT2] = ACTIONS(1954), + [anon_sym_DASH2] = ACTIONS(1952), + [anon_sym_STAR2] = ACTIONS(1954), + [anon_sym_and2] = ACTIONS(1952), + [anon_sym_xor2] = ACTIONS(1952), + [anon_sym_or2] = ACTIONS(1952), + [anon_sym_not_DASHin2] = ACTIONS(1952), + [anon_sym_has2] = ACTIONS(1952), + [anon_sym_not_DASHhas2] = ACTIONS(1952), + [anon_sym_starts_DASHwith2] = ACTIONS(1952), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1952), + [anon_sym_ends_DASHwith2] = ACTIONS(1952), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1952), + [anon_sym_EQ_EQ2] = ACTIONS(1952), + [anon_sym_BANG_EQ2] = ACTIONS(1952), + [anon_sym_LT2] = ACTIONS(1954), + [anon_sym_LT_EQ2] = ACTIONS(1952), + [anon_sym_GT_EQ2] = ACTIONS(1952), + [anon_sym_EQ_TILDE2] = ACTIONS(1952), + [anon_sym_BANG_TILDE2] = ACTIONS(1952), + [anon_sym_like2] = ACTIONS(1952), + [anon_sym_not_DASHlike2] = ACTIONS(1952), + [anon_sym_STAR_STAR2] = ACTIONS(1952), + [anon_sym_PLUS_PLUS2] = ACTIONS(1952), + [anon_sym_SLASH2] = ACTIONS(1954), + [anon_sym_mod2] = ACTIONS(1952), + [anon_sym_SLASH_SLASH2] = ACTIONS(1952), + [anon_sym_PLUS2] = ACTIONS(1954), + [anon_sym_bit_DASHshl2] = ACTIONS(1952), + [anon_sym_bit_DASHshr2] = ACTIONS(1952), + [anon_sym_bit_DASHand2] = ACTIONS(1952), + [anon_sym_bit_DASHxor2] = ACTIONS(1952), + [anon_sym_bit_DASHor2] = ACTIONS(1952), + [anon_sym_DOT_DOT2] = ACTIONS(2640), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2642), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2642), + [anon_sym_err_GT] = ACTIONS(1954), + [anon_sym_out_GT] = ACTIONS(1954), + [anon_sym_e_GT] = ACTIONS(1954), + [anon_sym_o_GT] = ACTIONS(1954), + [anon_sym_err_PLUSout_GT] = ACTIONS(1954), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1954), + [anon_sym_o_PLUSe_GT] = ACTIONS(1954), + [anon_sym_e_PLUSo_GT] = ACTIONS(1954), + [anon_sym_err_GT_GT] = ACTIONS(1952), + [anon_sym_out_GT_GT] = ACTIONS(1952), + [anon_sym_e_GT_GT] = ACTIONS(1952), + [anon_sym_o_GT_GT] = ACTIONS(1952), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1952), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1952), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1952), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1952), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(964)] = { + [aux_sym__repeat_newline] = STATE(4123), + [sym__match_pattern_expression] = STATE(4388), + [sym__match_pattern_value] = STATE(4618), + [sym__match_pattern_list_body] = STATE(4640), + [sym__match_pattern_list] = STATE(4619), + [sym__match_pattern_rest] = STATE(5232), + [sym__match_pattern_record] = STATE(4622), + [sym_expr_parenthesized] = STATE(3839), + [sym_val_range] = STATE(4618), + [sym__val_range] = STATE(5078), + [sym_val_nothing] = STATE(4622), + [sym_val_bool] = STATE(4190), + [sym_val_variable] = STATE(3841), + [sym_val_number] = STATE(4622), + [sym__val_number_decimal] = STATE(3591), + [sym__val_number] = STATE(4361), + [sym_val_duration] = STATE(4622), + [sym_val_filesize] = STATE(4622), + [sym_val_binary] = STATE(4622), + [sym_val_string] = STATE(4622), + [sym__raw_str] = STATE(3638), + [sym__str_double_quotes] = STATE(3638), + [sym__str_single_quotes] = STATE(3638), + [sym__str_back_ticks] = STATE(3638), + [sym_val_list] = STATE(4890), + [sym__table_head] = STATE(3691), + [sym_val_table] = STATE(4622), + [sym__unquoted_in_list] = STATE(4388), + [sym__unquoted_anonymous_prefix] = STATE(5078), + [sym_comment] = STATE(964), + [aux_sym__types_body_repeat1] = STATE(1395), + [aux_sym_parameter_repeat2] = STATE(4037), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1423), + [anon_sym_true] = ACTIONS(1374), + [anon_sym_false] = ACTIONS(1374), + [anon_sym_null] = ACTIONS(1376), + [aux_sym_cmd_identifier_token3] = ACTIONS(1378), + [aux_sym_cmd_identifier_token4] = ACTIONS(1378), + [aux_sym_cmd_identifier_token5] = ACTIONS(1378), + [sym__newline] = ACTIONS(2644), + [anon_sym_LBRACK] = ACTIONS(2646), + [anon_sym_RBRACK] = ACTIONS(2648), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_COMMA] = ACTIONS(1388), + [anon_sym_DOLLAR] = ACTIONS(2650), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_DOT_DOT] = ACTIONS(1394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), + [anon_sym_DOT_DOT_LT] = ACTIONS(1396), + [aux_sym__val_number_decimal_token1] = ACTIONS(1398), + [aux_sym__val_number_decimal_token2] = ACTIONS(1400), + [aux_sym__val_number_decimal_token3] = ACTIONS(1402), + [aux_sym__val_number_decimal_token4] = ACTIONS(1402), + [aux_sym__val_number_token1] = ACTIONS(1404), + [aux_sym__val_number_token2] = ACTIONS(1404), + [aux_sym__val_number_token3] = ACTIONS(1404), + [anon_sym_0b] = ACTIONS(1406), + [anon_sym_0o] = ACTIONS(1408), + [anon_sym_0x] = ACTIONS(1408), + [sym_val_date] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_BQUOTE] = ACTIONS(1416), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1426), + }, + [STATE(965)] = { + [aux_sym__repeat_newline] = STATE(1353), + [sym__expression_parenthesized] = STATE(4390), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2115), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1826), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_comment] = STATE(965), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(2656), + [aux_sym_cmd_identifier_token3] = ACTIONS(189), + [aux_sym_cmd_identifier_token4] = ACTIONS(189), + [aux_sym_cmd_identifier_token5] = ACTIONS(189), + [sym__newline] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(966)] = { + [sym_comment] = STATE(966), + [ts_builtin_sym_end] = ACTIONS(1806), + [anon_sym_in] = ACTIONS(1806), + [sym__newline] = ACTIONS(1806), + [anon_sym_SEMI] = ACTIONS(1806), + [anon_sym_PIPE] = ACTIONS(1806), + [anon_sym_err_GT_PIPE] = ACTIONS(1806), + [anon_sym_out_GT_PIPE] = ACTIONS(1806), + [anon_sym_e_GT_PIPE] = ACTIONS(1806), + [anon_sym_o_GT_PIPE] = ACTIONS(1806), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1806), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1806), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1806), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1806), + [anon_sym_GT2] = ACTIONS(1808), + [anon_sym_DASH2] = ACTIONS(1806), + [anon_sym_STAR2] = ACTIONS(1808), + [anon_sym_and2] = ACTIONS(1806), + [anon_sym_xor2] = ACTIONS(1806), + [anon_sym_or2] = ACTIONS(1806), + [anon_sym_not_DASHin2] = ACTIONS(1806), + [anon_sym_has2] = ACTIONS(1806), + [anon_sym_not_DASHhas2] = ACTIONS(1806), + [anon_sym_starts_DASHwith2] = ACTIONS(1806), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1806), + [anon_sym_ends_DASHwith2] = ACTIONS(1806), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1806), + [anon_sym_EQ_EQ2] = ACTIONS(1806), + [anon_sym_BANG_EQ2] = ACTIONS(1806), + [anon_sym_LT2] = ACTIONS(1808), + [anon_sym_LT_EQ2] = ACTIONS(1806), + [anon_sym_GT_EQ2] = ACTIONS(1806), + [anon_sym_EQ_TILDE2] = ACTIONS(1806), + [anon_sym_BANG_TILDE2] = ACTIONS(1806), + [anon_sym_like2] = ACTIONS(1806), + [anon_sym_not_DASHlike2] = ACTIONS(1806), + [anon_sym_LPAREN2] = ACTIONS(1806), + [anon_sym_STAR_STAR2] = ACTIONS(1806), + [anon_sym_PLUS_PLUS2] = ACTIONS(1806), + [anon_sym_SLASH2] = ACTIONS(1808), + [anon_sym_mod2] = ACTIONS(1806), + [anon_sym_SLASH_SLASH2] = ACTIONS(1806), + [anon_sym_PLUS2] = ACTIONS(1808), + [anon_sym_bit_DASHshl2] = ACTIONS(1806), + [anon_sym_bit_DASHshr2] = ACTIONS(1806), + [anon_sym_bit_DASHand2] = ACTIONS(1806), + [anon_sym_bit_DASHxor2] = ACTIONS(1806), + [anon_sym_bit_DASHor2] = ACTIONS(1806), + [anon_sym_err_GT] = ACTIONS(1808), + [anon_sym_out_GT] = ACTIONS(1808), + [anon_sym_e_GT] = ACTIONS(1808), + [anon_sym_o_GT] = ACTIONS(1808), + [anon_sym_err_PLUSout_GT] = ACTIONS(1808), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1808), + [anon_sym_o_PLUSe_GT] = ACTIONS(1808), + [anon_sym_e_PLUSo_GT] = ACTIONS(1808), + [anon_sym_err_GT_GT] = ACTIONS(1806), + [anon_sym_out_GT_GT] = ACTIONS(1806), + [anon_sym_e_GT_GT] = ACTIONS(1806), + [anon_sym_o_GT_GT] = ACTIONS(1806), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1806), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1806), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1806), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1806), + [sym__unquoted_pattern] = ACTIONS(1808), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(967)] = { + [aux_sym__repeat_newline] = STATE(1023), + [sym_comment] = STATE(967), + [anon_sym_in] = ACTIONS(2198), + [sym__newline] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_err_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_GT_PIPE] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_GT2] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2198), + [anon_sym_xor2] = ACTIONS(2198), + [anon_sym_or2] = ACTIONS(2198), + [anon_sym_not_DASHin2] = ACTIONS(2198), + [anon_sym_has2] = ACTIONS(2198), + [anon_sym_not_DASHhas2] = ACTIONS(2198), + [anon_sym_starts_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), + [anon_sym_ends_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), + [anon_sym_EQ_EQ2] = ACTIONS(2198), + [anon_sym_BANG_EQ2] = ACTIONS(2198), + [anon_sym_LT2] = ACTIONS(2200), + [anon_sym_LT_EQ2] = ACTIONS(2198), + [anon_sym_GT_EQ2] = ACTIONS(2198), + [anon_sym_EQ_TILDE2] = ACTIONS(2198), + [anon_sym_BANG_TILDE2] = ACTIONS(2198), + [anon_sym_like2] = ACTIONS(2198), + [anon_sym_not_DASHlike2] = ACTIONS(2198), + [anon_sym_STAR_STAR2] = ACTIONS(2198), + [anon_sym_PLUS_PLUS2] = ACTIONS(2198), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2198), + [anon_sym_SLASH_SLASH2] = ACTIONS(2198), + [anon_sym_PLUS2] = ACTIONS(2200), + [anon_sym_bit_DASHshl2] = ACTIONS(2198), + [anon_sym_bit_DASHshr2] = ACTIONS(2198), + [anon_sym_bit_DASHand2] = ACTIONS(2198), + [anon_sym_bit_DASHxor2] = ACTIONS(2198), + [anon_sym_bit_DASHor2] = ACTIONS(2198), + [anon_sym_err_GT] = ACTIONS(2200), + [anon_sym_out_GT] = ACTIONS(2200), + [anon_sym_e_GT] = ACTIONS(2200), + [anon_sym_o_GT] = ACTIONS(2200), + [anon_sym_err_PLUSout_GT] = ACTIONS(2200), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), + [anon_sym_o_PLUSe_GT] = ACTIONS(2200), + [anon_sym_e_PLUSo_GT] = ACTIONS(2200), + [anon_sym_err_GT_GT] = ACTIONS(2198), + [anon_sym_out_GT_GT] = ACTIONS(2198), + [anon_sym_e_GT_GT] = ACTIONS(2198), + [anon_sym_o_GT_GT] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(968)] = { + [sym_comment] = STATE(968), + [ts_builtin_sym_end] = ACTIONS(1689), + [anon_sym_in] = ACTIONS(1689), + [sym__newline] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1689), + [anon_sym_err_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_GT_PIPE] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), + [anon_sym_GT2] = ACTIONS(1615), + [anon_sym_DASH2] = ACTIONS(1689), + [anon_sym_STAR2] = ACTIONS(1615), + [anon_sym_and2] = ACTIONS(1689), + [anon_sym_xor2] = ACTIONS(1689), + [anon_sym_or2] = ACTIONS(1689), + [anon_sym_not_DASHin2] = ACTIONS(1689), + [anon_sym_has2] = ACTIONS(1689), + [anon_sym_not_DASHhas2] = ACTIONS(1689), + [anon_sym_starts_DASHwith2] = ACTIONS(1689), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1689), + [anon_sym_ends_DASHwith2] = ACTIONS(1689), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1689), + [anon_sym_EQ_EQ2] = ACTIONS(1689), + [anon_sym_BANG_EQ2] = ACTIONS(1689), + [anon_sym_LT2] = ACTIONS(1615), + [anon_sym_LT_EQ2] = ACTIONS(1689), + [anon_sym_GT_EQ2] = ACTIONS(1689), + [anon_sym_EQ_TILDE2] = ACTIONS(1689), + [anon_sym_BANG_TILDE2] = ACTIONS(1689), + [anon_sym_like2] = ACTIONS(1689), + [anon_sym_not_DASHlike2] = ACTIONS(1689), + [anon_sym_LPAREN2] = ACTIONS(2554), + [anon_sym_STAR_STAR2] = ACTIONS(1689), + [anon_sym_PLUS_PLUS2] = ACTIONS(1689), + [anon_sym_SLASH2] = ACTIONS(1615), + [anon_sym_mod2] = ACTIONS(1689), + [anon_sym_SLASH_SLASH2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(1615), + [anon_sym_bit_DASHshl2] = ACTIONS(1689), + [anon_sym_bit_DASHshr2] = ACTIONS(1689), + [anon_sym_bit_DASHand2] = ACTIONS(1689), + [anon_sym_bit_DASHxor2] = ACTIONS(1689), + [anon_sym_bit_DASHor2] = ACTIONS(1689), + [anon_sym_err_GT] = ACTIONS(1615), + [anon_sym_out_GT] = ACTIONS(1615), + [anon_sym_e_GT] = ACTIONS(1615), + [anon_sym_o_GT] = ACTIONS(1615), + [anon_sym_err_PLUSout_GT] = ACTIONS(1615), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), + [anon_sym_o_PLUSe_GT] = ACTIONS(1615), + [anon_sym_e_PLUSo_GT] = ACTIONS(1615), + [anon_sym_err_GT_GT] = ACTIONS(1689), + [anon_sym_out_GT_GT] = ACTIONS(1689), + [anon_sym_e_GT_GT] = ACTIONS(1689), + [anon_sym_o_GT_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), + [sym__unquoted_pattern] = ACTIONS(2556), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(969)] = { + [sym_comment] = STATE(969), + [ts_builtin_sym_end] = ACTIONS(1844), + [anon_sym_in] = ACTIONS(1844), + [sym__newline] = ACTIONS(1844), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_err_GT_PIPE] = ACTIONS(1844), + [anon_sym_out_GT_PIPE] = ACTIONS(1844), + [anon_sym_e_GT_PIPE] = ACTIONS(1844), + [anon_sym_o_GT_PIPE] = ACTIONS(1844), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1844), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1844), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1844), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1844), + [anon_sym_GT2] = ACTIONS(1846), + [anon_sym_DASH2] = ACTIONS(1844), + [anon_sym_STAR2] = ACTIONS(1846), + [anon_sym_and2] = ACTIONS(1844), + [anon_sym_xor2] = ACTIONS(1844), + [anon_sym_or2] = ACTIONS(1844), + [anon_sym_not_DASHin2] = ACTIONS(1844), + [anon_sym_has2] = ACTIONS(1844), + [anon_sym_not_DASHhas2] = ACTIONS(1844), + [anon_sym_starts_DASHwith2] = ACTIONS(1844), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1844), + [anon_sym_ends_DASHwith2] = ACTIONS(1844), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1844), + [anon_sym_EQ_EQ2] = ACTIONS(1844), + [anon_sym_BANG_EQ2] = ACTIONS(1844), + [anon_sym_LT2] = ACTIONS(1846), + [anon_sym_LT_EQ2] = ACTIONS(1844), + [anon_sym_GT_EQ2] = ACTIONS(1844), + [anon_sym_EQ_TILDE2] = ACTIONS(1844), + [anon_sym_BANG_TILDE2] = ACTIONS(1844), + [anon_sym_like2] = ACTIONS(1844), + [anon_sym_not_DASHlike2] = ACTIONS(1844), + [anon_sym_LPAREN2] = ACTIONS(1844), + [anon_sym_STAR_STAR2] = ACTIONS(1844), + [anon_sym_PLUS_PLUS2] = ACTIONS(1844), + [anon_sym_SLASH2] = ACTIONS(1846), + [anon_sym_mod2] = ACTIONS(1844), + [anon_sym_SLASH_SLASH2] = ACTIONS(1844), + [anon_sym_PLUS2] = ACTIONS(1846), + [anon_sym_bit_DASHshl2] = ACTIONS(1844), + [anon_sym_bit_DASHshr2] = ACTIONS(1844), + [anon_sym_bit_DASHand2] = ACTIONS(1844), + [anon_sym_bit_DASHxor2] = ACTIONS(1844), + [anon_sym_bit_DASHor2] = ACTIONS(1844), + [anon_sym_err_GT] = ACTIONS(1846), + [anon_sym_out_GT] = ACTIONS(1846), + [anon_sym_e_GT] = ACTIONS(1846), + [anon_sym_o_GT] = ACTIONS(1846), + [anon_sym_err_PLUSout_GT] = ACTIONS(1846), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1846), + [anon_sym_o_PLUSe_GT] = ACTIONS(1846), + [anon_sym_e_PLUSo_GT] = ACTIONS(1846), + [anon_sym_err_GT_GT] = ACTIONS(1844), + [anon_sym_out_GT_GT] = ACTIONS(1844), + [anon_sym_e_GT_GT] = ACTIONS(1844), + [anon_sym_o_GT_GT] = ACTIONS(1844), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1844), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1844), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1844), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1844), + [sym__unquoted_pattern] = ACTIONS(1846), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(970)] = { + [sym_comment] = STATE(970), + [ts_builtin_sym_end] = ACTIONS(994), [anon_sym_in] = ACTIONS(994), [sym__newline] = ACTIONS(994), [anon_sym_SEMI] = ACTIONS(994), @@ -118782,10 +119603,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), - [anon_sym_RPAREN] = ACTIONS(994), [anon_sym_GT2] = ACTIONS(996), [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(994), [anon_sym_STAR2] = ACTIONS(996), [anon_sym_and2] = ACTIONS(994), [anon_sym_xor2] = ACTIONS(994), @@ -118806,7 +119625,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(994), [anon_sym_like2] = ACTIONS(994), [anon_sym_not_DASHlike2] = ACTIONS(994), - [anon_sym_LPAREN2] = ACTIONS(2583), + [anon_sym_LPAREN2] = ACTIONS(2570), [anon_sym_STAR_STAR2] = ACTIONS(994), [anon_sym_PLUS_PLUS2] = ACTIONS(994), [anon_sym_SLASH2] = ACTIONS(996), @@ -118834,672 +119653,533 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), - [sym__unquoted_pattern] = ACTIONS(2585), + [sym__unquoted_pattern] = ACTIONS(2572), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(962)] = { - [aux_sym__repeat_newline] = STATE(1129), - [sym__expression_parenthesized] = STATE(4352), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(962), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [sym__newline] = ACTIONS(2557), + [STATE(971)] = { + [sym_comment] = STATE(971), + [ts_builtin_sym_end] = ACTIONS(1012), + [anon_sym_in] = ACTIONS(1012), + [sym__newline] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1012), + [anon_sym_PIPE] = ACTIONS(1012), + [anon_sym_err_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_GT_PIPE] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), + [anon_sym_GT2] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1012), + [anon_sym_STAR2] = ACTIONS(1004), + [anon_sym_and2] = ACTIONS(1012), + [anon_sym_xor2] = ACTIONS(1012), + [anon_sym_or2] = ACTIONS(1012), + [anon_sym_not_DASHin2] = ACTIONS(1012), + [anon_sym_has2] = ACTIONS(1012), + [anon_sym_not_DASHhas2] = ACTIONS(1012), + [anon_sym_starts_DASHwith2] = ACTIONS(1012), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1012), + [anon_sym_ends_DASHwith2] = ACTIONS(1012), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1012), + [anon_sym_EQ_EQ2] = ACTIONS(1012), + [anon_sym_BANG_EQ2] = ACTIONS(1012), + [anon_sym_LT2] = ACTIONS(1004), + [anon_sym_LT_EQ2] = ACTIONS(1012), + [anon_sym_GT_EQ2] = ACTIONS(1012), + [anon_sym_EQ_TILDE2] = ACTIONS(1012), + [anon_sym_BANG_TILDE2] = ACTIONS(1012), + [anon_sym_like2] = ACTIONS(1012), + [anon_sym_not_DASHlike2] = ACTIONS(1012), + [anon_sym_LPAREN2] = ACTIONS(2570), + [anon_sym_STAR_STAR2] = ACTIONS(1012), + [anon_sym_PLUS_PLUS2] = ACTIONS(1012), + [anon_sym_SLASH2] = ACTIONS(1004), + [anon_sym_mod2] = ACTIONS(1012), + [anon_sym_SLASH_SLASH2] = ACTIONS(1012), + [anon_sym_PLUS2] = ACTIONS(1004), + [anon_sym_bit_DASHshl2] = ACTIONS(1012), + [anon_sym_bit_DASHshr2] = ACTIONS(1012), + [anon_sym_bit_DASHand2] = ACTIONS(1012), + [anon_sym_bit_DASHxor2] = ACTIONS(1012), + [anon_sym_bit_DASHor2] = ACTIONS(1012), + [anon_sym_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(1012), + [anon_sym_out_GT_GT] = ACTIONS(1012), + [anon_sym_e_GT_GT] = ACTIONS(1012), + [anon_sym_o_GT_GT] = ACTIONS(1012), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), + [sym__unquoted_pattern] = ACTIONS(2572), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(972)] = { + [aux_sym__repeat_newline] = STATE(1025), + [sym_comment] = STATE(972), + [anon_sym_in] = ACTIONS(2198), + [sym__newline] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_err_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_GT_PIPE] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_GT2] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2198), + [anon_sym_xor2] = ACTIONS(2198), + [anon_sym_or2] = ACTIONS(2198), + [anon_sym_not_DASHin2] = ACTIONS(2198), + [anon_sym_has2] = ACTIONS(2198), + [anon_sym_not_DASHhas2] = ACTIONS(2198), + [anon_sym_starts_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), + [anon_sym_ends_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), + [anon_sym_EQ_EQ2] = ACTIONS(2198), + [anon_sym_BANG_EQ2] = ACTIONS(2198), + [anon_sym_LT2] = ACTIONS(2200), + [anon_sym_LT_EQ2] = ACTIONS(2198), + [anon_sym_GT_EQ2] = ACTIONS(2198), + [anon_sym_EQ_TILDE2] = ACTIONS(2198), + [anon_sym_BANG_TILDE2] = ACTIONS(2198), + [anon_sym_like2] = ACTIONS(2198), + [anon_sym_not_DASHlike2] = ACTIONS(2198), + [anon_sym_STAR_STAR2] = ACTIONS(2198), + [anon_sym_PLUS_PLUS2] = ACTIONS(2198), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2198), + [anon_sym_SLASH_SLASH2] = ACTIONS(2198), + [anon_sym_PLUS2] = ACTIONS(2200), + [anon_sym_bit_DASHshl2] = ACTIONS(2198), + [anon_sym_bit_DASHshr2] = ACTIONS(2198), + [anon_sym_bit_DASHand2] = ACTIONS(2198), + [anon_sym_bit_DASHxor2] = ACTIONS(2198), + [anon_sym_bit_DASHor2] = ACTIONS(2198), + [anon_sym_err_GT] = ACTIONS(2200), + [anon_sym_out_GT] = ACTIONS(2200), + [anon_sym_e_GT] = ACTIONS(2200), + [anon_sym_o_GT] = ACTIONS(2200), + [anon_sym_err_PLUSout_GT] = ACTIONS(2200), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), + [anon_sym_o_PLUSe_GT] = ACTIONS(2200), + [anon_sym_e_PLUSo_GT] = ACTIONS(2200), + [anon_sym_err_GT_GT] = ACTIONS(2198), + [anon_sym_out_GT_GT] = ACTIONS(2198), + [anon_sym_e_GT_GT] = ACTIONS(2198), + [anon_sym_o_GT_GT] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(973)] = { + [aux_sym__repeat_newline] = STATE(987), + [sym_comment] = STATE(973), + [anon_sym_in] = ACTIONS(2198), + [sym__newline] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_err_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_GT_PIPE] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_GT2] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2198), + [anon_sym_xor2] = ACTIONS(2198), + [anon_sym_or2] = ACTIONS(2198), + [anon_sym_not_DASHin2] = ACTIONS(2198), + [anon_sym_has2] = ACTIONS(2198), + [anon_sym_not_DASHhas2] = ACTIONS(2198), + [anon_sym_starts_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), + [anon_sym_ends_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), + [anon_sym_EQ_EQ2] = ACTIONS(2198), + [anon_sym_BANG_EQ2] = ACTIONS(2198), + [anon_sym_LT2] = ACTIONS(2200), + [anon_sym_LT_EQ2] = ACTIONS(2198), + [anon_sym_GT_EQ2] = ACTIONS(2198), + [anon_sym_EQ_TILDE2] = ACTIONS(2198), + [anon_sym_BANG_TILDE2] = ACTIONS(2198), + [anon_sym_like2] = ACTIONS(2198), + [anon_sym_not_DASHlike2] = ACTIONS(2198), + [anon_sym_STAR_STAR2] = ACTIONS(2198), + [anon_sym_PLUS_PLUS2] = ACTIONS(2198), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2198), + [anon_sym_SLASH_SLASH2] = ACTIONS(2198), + [anon_sym_PLUS2] = ACTIONS(2200), + [anon_sym_bit_DASHshl2] = ACTIONS(2198), + [anon_sym_bit_DASHshr2] = ACTIONS(2198), + [anon_sym_bit_DASHand2] = ACTIONS(2198), + [anon_sym_bit_DASHxor2] = ACTIONS(2198), + [anon_sym_bit_DASHor2] = ACTIONS(2198), + [anon_sym_err_GT] = ACTIONS(2200), + [anon_sym_out_GT] = ACTIONS(2200), + [anon_sym_e_GT] = ACTIONS(2200), + [anon_sym_o_GT] = ACTIONS(2200), + [anon_sym_err_PLUSout_GT] = ACTIONS(2200), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), + [anon_sym_o_PLUSe_GT] = ACTIONS(2200), + [anon_sym_e_PLUSo_GT] = ACTIONS(2200), + [anon_sym_err_GT_GT] = ACTIONS(2198), + [anon_sym_out_GT_GT] = ACTIONS(2198), + [anon_sym_e_GT_GT] = ACTIONS(2198), + [anon_sym_o_GT_GT] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(974)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(974), + [anon_sym_in] = ACTIONS(2658), + [sym__newline] = ACTIONS(2658), + [anon_sym_SEMI] = ACTIONS(2658), + [anon_sym_PIPE] = ACTIONS(2658), + [anon_sym_err_GT_PIPE] = ACTIONS(2658), + [anon_sym_out_GT_PIPE] = ACTIONS(2658), + [anon_sym_e_GT_PIPE] = ACTIONS(2658), + [anon_sym_o_GT_PIPE] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2658), + [anon_sym_RPAREN] = ACTIONS(2658), + [anon_sym_GT2] = ACTIONS(2660), + [anon_sym_DASH2] = ACTIONS(2658), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_STAR2] = ACTIONS(2660), + [anon_sym_and2] = ACTIONS(2658), + [anon_sym_xor2] = ACTIONS(2658), + [anon_sym_or2] = ACTIONS(2658), + [anon_sym_not_DASHin2] = ACTIONS(2658), + [anon_sym_has2] = ACTIONS(2658), + [anon_sym_not_DASHhas2] = ACTIONS(2658), + [anon_sym_starts_DASHwith2] = ACTIONS(2658), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2658), + [anon_sym_ends_DASHwith2] = ACTIONS(2658), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2658), + [anon_sym_EQ_EQ2] = ACTIONS(2658), + [anon_sym_BANG_EQ2] = ACTIONS(2658), + [anon_sym_LT2] = ACTIONS(2660), + [anon_sym_LT_EQ2] = ACTIONS(2658), + [anon_sym_GT_EQ2] = ACTIONS(2658), + [anon_sym_EQ_TILDE2] = ACTIONS(2658), + [anon_sym_BANG_TILDE2] = ACTIONS(2658), + [anon_sym_like2] = ACTIONS(2658), + [anon_sym_not_DASHlike2] = ACTIONS(2658), + [anon_sym_STAR_STAR2] = ACTIONS(2658), + [anon_sym_PLUS_PLUS2] = ACTIONS(2658), + [anon_sym_SLASH2] = ACTIONS(2660), + [anon_sym_mod2] = ACTIONS(2658), + [anon_sym_SLASH_SLASH2] = ACTIONS(2658), + [anon_sym_PLUS2] = ACTIONS(2660), + [anon_sym_bit_DASHshl2] = ACTIONS(2658), + [anon_sym_bit_DASHshr2] = ACTIONS(2658), + [anon_sym_bit_DASHand2] = ACTIONS(2658), + [anon_sym_bit_DASHxor2] = ACTIONS(2658), + [anon_sym_bit_DASHor2] = ACTIONS(2658), + [anon_sym_err_GT] = ACTIONS(2660), + [anon_sym_out_GT] = ACTIONS(2660), + [anon_sym_e_GT] = ACTIONS(2660), + [anon_sym_o_GT] = ACTIONS(2660), + [anon_sym_err_PLUSout_GT] = ACTIONS(2660), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2660), + [anon_sym_o_PLUSe_GT] = ACTIONS(2660), + [anon_sym_e_PLUSo_GT] = ACTIONS(2660), + [anon_sym_err_GT_GT] = ACTIONS(2658), + [anon_sym_out_GT_GT] = ACTIONS(2658), + [anon_sym_e_GT_GT] = ACTIONS(2658), + [anon_sym_o_GT_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2658), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(975)] = { + [sym__expression] = STATE(4806), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2216), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1826), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_comment] = STATE(975), + [aux_sym_cmd_identifier_token2] = ACTIONS(2662), + [anon_sym_true] = ACTIONS(2535), + [anon_sym_false] = ACTIONS(2535), + [anon_sym_null] = ACTIONS(2537), + [aux_sym_cmd_identifier_token3] = ACTIONS(2539), + [aux_sym_cmd_identifier_token4] = ACTIONS(2539), + [aux_sym_cmd_identifier_token5] = ACTIONS(2539), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1976), + [aux_sym__val_number_decimal_token3] = ACTIONS(2543), + [aux_sym__val_number_decimal_token4] = ACTIONS(2543), + [aux_sym__val_number_token1] = ACTIONS(2539), + [aux_sym__val_number_token2] = ACTIONS(2539), + [aux_sym__val_number_token3] = ACTIONS(2539), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2545), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_COLON2] = ACTIONS(2664), [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(963)] = { - [aux_sym__repeat_newline] = STATE(1005), - [sym__expression_parenthesized] = STATE(4360), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(963), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [sym__newline] = ACTIONS(2557), + [STATE(976)] = { + [sym__expression] = STATE(4809), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2216), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1826), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_comment] = STATE(976), + [aux_sym_cmd_identifier_token2] = ACTIONS(2662), + [anon_sym_true] = ACTIONS(2535), + [anon_sym_false] = ACTIONS(2535), + [anon_sym_null] = ACTIONS(2537), + [aux_sym_cmd_identifier_token3] = ACTIONS(2539), + [aux_sym_cmd_identifier_token4] = ACTIONS(2539), + [aux_sym_cmd_identifier_token5] = ACTIONS(2539), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1976), + [aux_sym__val_number_decimal_token3] = ACTIONS(2543), + [aux_sym__val_number_decimal_token4] = ACTIONS(2543), + [aux_sym__val_number_token1] = ACTIONS(2539), + [aux_sym__val_number_token2] = ACTIONS(2539), + [aux_sym__val_number_token3] = ACTIONS(2539), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2545), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_COLON2] = ACTIONS(2664), [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(964)] = { - [aux_sym__repeat_newline] = STATE(964), - [sym_comment] = STATE(964), - [anon_sym_export] = ACTIONS(1960), - [anon_sym_alias] = ACTIONS(1955), - [anon_sym_let] = ACTIONS(1955), - [anon_sym_mut] = ACTIONS(1955), - [anon_sym_const] = ACTIONS(1955), - [aux_sym_cmd_identifier_token1] = ACTIONS(1960), - [anon_sym_def] = ACTIONS(1955), - [anon_sym_use] = ACTIONS(1955), - [anon_sym_export_DASHenv] = ACTIONS(1955), - [anon_sym_extern] = ACTIONS(1955), - [anon_sym_module] = ACTIONS(1955), - [anon_sym_for] = ACTIONS(1955), - [anon_sym_loop] = ACTIONS(1955), - [anon_sym_while] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(1955), - [anon_sym_else] = ACTIONS(1955), - [anon_sym_try] = ACTIONS(1955), - [anon_sym_catch] = ACTIONS(1955), - [anon_sym_match] = ACTIONS(1955), - [anon_sym_in] = ACTIONS(1960), - [anon_sym_true] = ACTIONS(1955), - [anon_sym_false] = ACTIONS(1955), - [anon_sym_null] = ACTIONS(1955), - [aux_sym_cmd_identifier_token3] = ACTIONS(1955), - [aux_sym_cmd_identifier_token4] = ACTIONS(1955), - [aux_sym_cmd_identifier_token5] = ACTIONS(1955), - [sym__newline] = ACTIONS(2643), - [anon_sym_PIPE] = ACTIONS(1955), - [anon_sym_err_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_GT_PIPE] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_DOLLAR] = ACTIONS(1960), - [anon_sym_DASH2] = ACTIONS(1960), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1960), - [anon_sym_where] = ACTIONS(1955), - [aux_sym_expr_unary_token1] = ACTIONS(1955), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1955), - [anon_sym_DOT_DOT_LT] = ACTIONS(1955), - [aux_sym__val_number_decimal_token1] = ACTIONS(1960), - [aux_sym__val_number_decimal_token2] = ACTIONS(1955), - [aux_sym__val_number_decimal_token3] = ACTIONS(1955), - [aux_sym__val_number_decimal_token4] = ACTIONS(1955), - [aux_sym__val_number_token1] = ACTIONS(1955), - [aux_sym__val_number_token2] = ACTIONS(1955), - [aux_sym__val_number_token3] = ACTIONS(1955), - [anon_sym_0b] = ACTIONS(1960), - [anon_sym_0o] = ACTIONS(1960), - [anon_sym_0x] = ACTIONS(1960), - [sym_val_date] = ACTIONS(1955), - [anon_sym_DQUOTE] = ACTIONS(1955), - [anon_sym_SQUOTE] = ACTIONS(1955), - [anon_sym_BQUOTE] = ACTIONS(1955), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1955), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1955), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1955), - }, - [STATE(965)] = { - [sym_comment] = STATE(965), - [anon_sym_export] = ACTIONS(2646), - [anon_sym_alias] = ACTIONS(2648), - [anon_sym_let] = ACTIONS(2648), - [anon_sym_mut] = ACTIONS(2648), - [anon_sym_const] = ACTIONS(2648), - [aux_sym_cmd_identifier_token1] = ACTIONS(2646), - [anon_sym_def] = ACTIONS(2648), - [anon_sym_use] = ACTIONS(2648), - [anon_sym_export_DASHenv] = ACTIONS(2648), - [anon_sym_extern] = ACTIONS(2648), - [anon_sym_module] = ACTIONS(2648), - [anon_sym_for] = ACTIONS(2648), - [anon_sym_loop] = ACTIONS(2648), - [anon_sym_while] = ACTIONS(2648), - [anon_sym_if] = ACTIONS(2648), - [anon_sym_else] = ACTIONS(2648), - [anon_sym_try] = ACTIONS(2648), - [anon_sym_catch] = ACTIONS(2648), - [anon_sym_match] = ACTIONS(2648), - [anon_sym_in] = ACTIONS(2646), - [anon_sym_true] = ACTIONS(2648), - [anon_sym_false] = ACTIONS(2648), - [anon_sym_null] = ACTIONS(2648), - [aux_sym_cmd_identifier_token3] = ACTIONS(2648), - [aux_sym_cmd_identifier_token4] = ACTIONS(2648), - [aux_sym_cmd_identifier_token5] = ACTIONS(2648), - [sym__newline] = ACTIONS(2648), - [anon_sym_PIPE] = ACTIONS(2648), - [anon_sym_err_GT_PIPE] = ACTIONS(2648), - [anon_sym_out_GT_PIPE] = ACTIONS(2648), - [anon_sym_e_GT_PIPE] = ACTIONS(2648), - [anon_sym_o_GT_PIPE] = ACTIONS(2648), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), - [anon_sym_LBRACK] = ACTIONS(2648), - [anon_sym_LPAREN] = ACTIONS(2648), - [anon_sym_DOLLAR] = ACTIONS(2646), - [anon_sym_DASH2] = ACTIONS(2646), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_DOT_DOT] = ACTIONS(2646), - [anon_sym_where] = ACTIONS(2648), - [aux_sym_expr_unary_token1] = ACTIONS(2648), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2648), - [anon_sym_DOT_DOT_LT] = ACTIONS(2648), - [aux_sym__val_number_decimal_token1] = ACTIONS(2646), - [aux_sym__val_number_decimal_token2] = ACTIONS(2648), - [aux_sym__val_number_decimal_token3] = ACTIONS(2648), - [aux_sym__val_number_decimal_token4] = ACTIONS(2648), - [aux_sym__val_number_token1] = ACTIONS(2648), - [aux_sym__val_number_token2] = ACTIONS(2648), - [aux_sym__val_number_token3] = ACTIONS(2648), - [anon_sym_0b] = ACTIONS(2646), - [anon_sym_0o] = ACTIONS(2646), - [anon_sym_0x] = ACTIONS(2646), - [sym_val_date] = ACTIONS(2648), - [anon_sym_DQUOTE] = ACTIONS(2648), - [anon_sym_SQUOTE] = ACTIONS(2648), - [anon_sym_BQUOTE] = ACTIONS(2648), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2648), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2648), - [anon_sym_CARET] = ACTIONS(2648), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2648), - }, - [STATE(966)] = { - [sym_comment] = STATE(966), - [anon_sym_export] = ACTIONS(2098), - [anon_sym_alias] = ACTIONS(2096), - [anon_sym_let] = ACTIONS(2096), - [anon_sym_mut] = ACTIONS(2096), - [anon_sym_const] = ACTIONS(2096), - [aux_sym_cmd_identifier_token1] = ACTIONS(2098), - [anon_sym_def] = ACTIONS(2096), - [anon_sym_use] = ACTIONS(2096), - [anon_sym_export_DASHenv] = ACTIONS(2096), - [anon_sym_extern] = ACTIONS(2096), - [anon_sym_module] = ACTIONS(2096), - [anon_sym_for] = ACTIONS(2096), - [anon_sym_loop] = ACTIONS(2096), - [anon_sym_while] = ACTIONS(2096), - [anon_sym_if] = ACTIONS(2096), - [anon_sym_else] = ACTIONS(2096), - [anon_sym_try] = ACTIONS(2096), - [anon_sym_catch] = ACTIONS(2096), - [anon_sym_match] = ACTIONS(2096), - [anon_sym_in] = ACTIONS(2098), - [anon_sym_true] = ACTIONS(2096), - [anon_sym_false] = ACTIONS(2096), - [anon_sym_null] = ACTIONS(2096), - [aux_sym_cmd_identifier_token3] = ACTIONS(2096), - [aux_sym_cmd_identifier_token4] = ACTIONS(2096), - [aux_sym_cmd_identifier_token5] = ACTIONS(2096), - [sym__newline] = ACTIONS(2096), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_err_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_GT_PIPE] = ACTIONS(2096), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(2096), - [anon_sym_LPAREN] = ACTIONS(2096), - [anon_sym_DOLLAR] = ACTIONS(2098), - [anon_sym_DASH2] = ACTIONS(2098), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_DOT_DOT] = ACTIONS(2098), - [anon_sym_where] = ACTIONS(2096), - [aux_sym_expr_unary_token1] = ACTIONS(2096), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2096), - [anon_sym_DOT_DOT_LT] = ACTIONS(2096), - [aux_sym__val_number_decimal_token1] = ACTIONS(2098), - [aux_sym__val_number_decimal_token2] = ACTIONS(2096), - [aux_sym__val_number_decimal_token3] = ACTIONS(2096), - [aux_sym__val_number_decimal_token4] = ACTIONS(2096), - [aux_sym__val_number_token1] = ACTIONS(2096), - [aux_sym__val_number_token2] = ACTIONS(2096), - [aux_sym__val_number_token3] = ACTIONS(2096), - [anon_sym_0b] = ACTIONS(2098), - [anon_sym_0o] = ACTIONS(2098), - [anon_sym_0x] = ACTIONS(2098), - [sym_val_date] = ACTIONS(2096), - [anon_sym_DQUOTE] = ACTIONS(2096), - [anon_sym_SQUOTE] = ACTIONS(2096), - [anon_sym_BQUOTE] = ACTIONS(2096), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2096), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2096), - [anon_sym_CARET] = ACTIONS(2096), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2096), - }, - [STATE(967)] = { - [sym_comment] = STATE(967), - [anon_sym_in] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(968), - [anon_sym_xor2] = ACTIONS(968), - [anon_sym_or2] = ACTIONS(968), - [anon_sym_not_DASHin2] = ACTIONS(968), - [anon_sym_has2] = ACTIONS(968), - [anon_sym_not_DASHhas2] = ACTIONS(968), - [anon_sym_starts_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(968), - [anon_sym_ends_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(968), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(968), - [anon_sym_like2] = ACTIONS(968), - [anon_sym_not_DASHlike2] = ACTIONS(968), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(968), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(968), - [anon_sym_bit_DASHshr2] = ACTIONS(968), - [anon_sym_bit_DASHand2] = ACTIONS(968), - [anon_sym_bit_DASHxor2] = ACTIONS(968), - [anon_sym_bit_DASHor2] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [sym__unquoted_pattern] = ACTIONS(1762), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(968)] = { - [sym__expr_parenthesized_immediate] = STATE(5091), - [sym_comment] = STATE(968), - [ts_builtin_sym_end] = ACTIONS(2170), - [anon_sym_in] = ACTIONS(2170), - [sym__newline] = ACTIONS(2170), - [anon_sym_SEMI] = ACTIONS(2170), - [anon_sym_PIPE] = ACTIONS(2170), - [anon_sym_err_GT_PIPE] = ACTIONS(2170), - [anon_sym_out_GT_PIPE] = ACTIONS(2170), - [anon_sym_e_GT_PIPE] = ACTIONS(2170), - [anon_sym_o_GT_PIPE] = ACTIONS(2170), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2170), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2170), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2170), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2170), - [anon_sym_GT2] = ACTIONS(2172), - [anon_sym_DASH2] = ACTIONS(2170), - [anon_sym_STAR2] = ACTIONS(2172), - [anon_sym_and2] = ACTIONS(2170), - [anon_sym_xor2] = ACTIONS(2170), - [anon_sym_or2] = ACTIONS(2170), - [anon_sym_not_DASHin2] = ACTIONS(2170), - [anon_sym_has2] = ACTIONS(2170), - [anon_sym_not_DASHhas2] = ACTIONS(2170), - [anon_sym_starts_DASHwith2] = ACTIONS(2170), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2170), - [anon_sym_ends_DASHwith2] = ACTIONS(2170), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2170), - [anon_sym_EQ_EQ2] = ACTIONS(2170), - [anon_sym_BANG_EQ2] = ACTIONS(2170), - [anon_sym_LT2] = ACTIONS(2172), - [anon_sym_LT_EQ2] = ACTIONS(2170), - [anon_sym_GT_EQ2] = ACTIONS(2170), - [anon_sym_EQ_TILDE2] = ACTIONS(2170), - [anon_sym_BANG_TILDE2] = ACTIONS(2170), - [anon_sym_like2] = ACTIONS(2170), - [anon_sym_not_DASHlike2] = ACTIONS(2170), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2170), - [anon_sym_PLUS_PLUS2] = ACTIONS(2170), - [anon_sym_SLASH2] = ACTIONS(2172), - [anon_sym_mod2] = ACTIONS(2170), - [anon_sym_SLASH_SLASH2] = ACTIONS(2170), - [anon_sym_PLUS2] = ACTIONS(2172), - [anon_sym_bit_DASHshl2] = ACTIONS(2170), - [anon_sym_bit_DASHshr2] = ACTIONS(2170), - [anon_sym_bit_DASHand2] = ACTIONS(2170), - [anon_sym_bit_DASHxor2] = ACTIONS(2170), - [anon_sym_bit_DASHor2] = ACTIONS(2170), - [anon_sym_err_GT] = ACTIONS(2172), - [anon_sym_out_GT] = ACTIONS(2172), - [anon_sym_e_GT] = ACTIONS(2172), - [anon_sym_o_GT] = ACTIONS(2172), - [anon_sym_err_PLUSout_GT] = ACTIONS(2172), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2172), - [anon_sym_o_PLUSe_GT] = ACTIONS(2172), - [anon_sym_e_PLUSo_GT] = ACTIONS(2172), - [anon_sym_err_GT_GT] = ACTIONS(2170), - [anon_sym_out_GT_GT] = ACTIONS(2170), - [anon_sym_e_GT_GT] = ACTIONS(2170), - [anon_sym_o_GT_GT] = ACTIONS(2170), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2170), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2170), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2170), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2170), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(969)] = { - [sym__expr_parenthesized_immediate] = STATE(5091), - [sym_comment] = STATE(969), - [ts_builtin_sym_end] = ACTIONS(2072), - [anon_sym_in] = ACTIONS(2072), - [sym__newline] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_PIPE] = ACTIONS(2072), - [anon_sym_err_GT_PIPE] = ACTIONS(2072), - [anon_sym_out_GT_PIPE] = ACTIONS(2072), - [anon_sym_e_GT_PIPE] = ACTIONS(2072), - [anon_sym_o_GT_PIPE] = ACTIONS(2072), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2072), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2072), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2072), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2072), - [anon_sym_GT2] = ACTIONS(2074), - [anon_sym_DASH2] = ACTIONS(2072), - [anon_sym_STAR2] = ACTIONS(2074), - [anon_sym_and2] = ACTIONS(2072), - [anon_sym_xor2] = ACTIONS(2072), - [anon_sym_or2] = ACTIONS(2072), - [anon_sym_not_DASHin2] = ACTIONS(2072), - [anon_sym_has2] = ACTIONS(2072), - [anon_sym_not_DASHhas2] = ACTIONS(2072), - [anon_sym_starts_DASHwith2] = ACTIONS(2072), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2072), - [anon_sym_ends_DASHwith2] = ACTIONS(2072), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2072), - [anon_sym_EQ_EQ2] = ACTIONS(2072), - [anon_sym_BANG_EQ2] = ACTIONS(2072), - [anon_sym_LT2] = ACTIONS(2074), - [anon_sym_LT_EQ2] = ACTIONS(2072), - [anon_sym_GT_EQ2] = ACTIONS(2072), - [anon_sym_EQ_TILDE2] = ACTIONS(2072), - [anon_sym_BANG_TILDE2] = ACTIONS(2072), - [anon_sym_like2] = ACTIONS(2072), - [anon_sym_not_DASHlike2] = ACTIONS(2072), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2072), - [anon_sym_PLUS_PLUS2] = ACTIONS(2072), - [anon_sym_SLASH2] = ACTIONS(2074), - [anon_sym_mod2] = ACTIONS(2072), - [anon_sym_SLASH_SLASH2] = ACTIONS(2072), - [anon_sym_PLUS2] = ACTIONS(2074), - [anon_sym_bit_DASHshl2] = ACTIONS(2072), - [anon_sym_bit_DASHshr2] = ACTIONS(2072), - [anon_sym_bit_DASHand2] = ACTIONS(2072), - [anon_sym_bit_DASHxor2] = ACTIONS(2072), - [anon_sym_bit_DASHor2] = ACTIONS(2072), - [anon_sym_err_GT] = ACTIONS(2074), - [anon_sym_out_GT] = ACTIONS(2074), - [anon_sym_e_GT] = ACTIONS(2074), - [anon_sym_o_GT] = ACTIONS(2074), - [anon_sym_err_PLUSout_GT] = ACTIONS(2074), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2074), - [anon_sym_o_PLUSe_GT] = ACTIONS(2074), - [anon_sym_e_PLUSo_GT] = ACTIONS(2074), - [anon_sym_err_GT_GT] = ACTIONS(2072), - [anon_sym_out_GT_GT] = ACTIONS(2072), - [anon_sym_e_GT_GT] = ACTIONS(2072), - [anon_sym_o_GT_GT] = ACTIONS(2072), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2072), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2072), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2072), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2072), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(970)] = { - [sym_comment] = STATE(970), - [ts_builtin_sym_end] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [sym__newline] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_err_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_GT_PIPE] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1726), - [anon_sym_GT2] = ACTIONS(1728), - [anon_sym_DASH2] = ACTIONS(1726), - [anon_sym_STAR2] = ACTIONS(1728), - [anon_sym_and2] = ACTIONS(1726), - [anon_sym_xor2] = ACTIONS(1726), - [anon_sym_or2] = ACTIONS(1726), - [anon_sym_not_DASHin2] = ACTIONS(1726), - [anon_sym_has2] = ACTIONS(1726), - [anon_sym_not_DASHhas2] = ACTIONS(1726), - [anon_sym_starts_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1726), - [anon_sym_ends_DASHwith2] = ACTIONS(1726), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1726), - [anon_sym_EQ_EQ2] = ACTIONS(1726), - [anon_sym_BANG_EQ2] = ACTIONS(1726), - [anon_sym_LT2] = ACTIONS(1728), - [anon_sym_LT_EQ2] = ACTIONS(1726), - [anon_sym_GT_EQ2] = ACTIONS(1726), - [anon_sym_EQ_TILDE2] = ACTIONS(1726), - [anon_sym_BANG_TILDE2] = ACTIONS(1726), - [anon_sym_like2] = ACTIONS(1726), - [anon_sym_not_DASHlike2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1726), - [anon_sym_STAR_STAR2] = ACTIONS(1726), - [anon_sym_PLUS_PLUS2] = ACTIONS(1726), - [anon_sym_SLASH2] = ACTIONS(1728), - [anon_sym_mod2] = ACTIONS(1726), - [anon_sym_SLASH_SLASH2] = ACTIONS(1726), - [anon_sym_PLUS2] = ACTIONS(1728), - [anon_sym_bit_DASHshl2] = ACTIONS(1726), - [anon_sym_bit_DASHshr2] = ACTIONS(1726), - [anon_sym_bit_DASHand2] = ACTIONS(1726), - [anon_sym_bit_DASHxor2] = ACTIONS(1726), - [anon_sym_bit_DASHor2] = ACTIONS(1726), - [anon_sym_err_GT] = ACTIONS(1728), - [anon_sym_out_GT] = ACTIONS(1728), - [anon_sym_e_GT] = ACTIONS(1728), - [anon_sym_o_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT] = ACTIONS(1728), - [anon_sym_err_GT_GT] = ACTIONS(1726), - [anon_sym_out_GT_GT] = ACTIONS(1726), - [anon_sym_e_GT_GT] = ACTIONS(1726), - [anon_sym_o_GT_GT] = ACTIONS(1726), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1726), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1726), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1726), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1726), - [sym__unquoted_pattern] = ACTIONS(1728), + [STATE(977)] = { + [aux_sym__repeat_newline] = STATE(1098), + [sym_comment] = STATE(977), + [anon_sym_in] = ACTIONS(2289), + [sym__newline] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_err_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_GT_PIPE] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), + [anon_sym_RPAREN] = ACTIONS(2289), + [anon_sym_GT2] = ACTIONS(2291), + [anon_sym_DASH2] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_STAR2] = ACTIONS(2291), + [anon_sym_and2] = ACTIONS(2289), + [anon_sym_xor2] = ACTIONS(2289), + [anon_sym_or2] = ACTIONS(2289), + [anon_sym_not_DASHin2] = ACTIONS(2289), + [anon_sym_has2] = ACTIONS(2289), + [anon_sym_not_DASHhas2] = ACTIONS(2289), + [anon_sym_starts_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), + [anon_sym_ends_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), + [anon_sym_EQ_EQ2] = ACTIONS(2289), + [anon_sym_BANG_EQ2] = ACTIONS(2289), + [anon_sym_LT2] = ACTIONS(2291), + [anon_sym_LT_EQ2] = ACTIONS(2289), + [anon_sym_GT_EQ2] = ACTIONS(2289), + [anon_sym_EQ_TILDE2] = ACTIONS(2289), + [anon_sym_BANG_TILDE2] = ACTIONS(2289), + [anon_sym_like2] = ACTIONS(2289), + [anon_sym_not_DASHlike2] = ACTIONS(2289), + [anon_sym_STAR_STAR2] = ACTIONS(2289), + [anon_sym_PLUS_PLUS2] = ACTIONS(2289), + [anon_sym_SLASH2] = ACTIONS(2291), + [anon_sym_mod2] = ACTIONS(2289), + [anon_sym_SLASH_SLASH2] = ACTIONS(2289), + [anon_sym_PLUS2] = ACTIONS(2291), + [anon_sym_bit_DASHshl2] = ACTIONS(2289), + [anon_sym_bit_DASHshr2] = ACTIONS(2289), + [anon_sym_bit_DASHand2] = ACTIONS(2289), + [anon_sym_bit_DASHxor2] = ACTIONS(2289), + [anon_sym_bit_DASHor2] = ACTIONS(2289), + [anon_sym_err_GT] = ACTIONS(2291), + [anon_sym_out_GT] = ACTIONS(2291), + [anon_sym_e_GT] = ACTIONS(2291), + [anon_sym_o_GT] = ACTIONS(2291), + [anon_sym_err_PLUSout_GT] = ACTIONS(2291), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), + [anon_sym_o_PLUSe_GT] = ACTIONS(2291), + [anon_sym_e_PLUSo_GT] = ACTIONS(2291), + [anon_sym_err_GT_GT] = ACTIONS(2289), + [anon_sym_out_GT_GT] = ACTIONS(2289), + [anon_sym_e_GT_GT] = ACTIONS(2289), + [anon_sym_o_GT_GT] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(971)] = { - [aux_sym__repeat_newline] = STATE(4288), - [sym__match_pattern_expression] = STATE(4235), - [sym__match_pattern_value] = STATE(4440), - [sym__match_pattern_list_body] = STATE(4427), - [sym__match_pattern_list] = STATE(4441), - [sym__match_pattern_rest] = STATE(4965), - [sym__match_pattern_record] = STATE(4447), - [sym_expr_parenthesized] = STATE(3756), - [sym_val_range] = STATE(4440), - [sym__val_range] = STATE(4978), - [sym_val_nothing] = STATE(4447), - [sym_val_bool] = STATE(4265), - [sym_val_variable] = STATE(3757), - [sym_val_number] = STATE(4447), - [sym__val_number_decimal] = STATE(3555), - [sym__val_number] = STATE(4130), - [sym_val_duration] = STATE(4447), - [sym_val_filesize] = STATE(4447), - [sym_val_binary] = STATE(4447), - [sym_val_string] = STATE(4447), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_list] = STATE(5014), - [sym__table_head] = STATE(3665), - [sym_val_table] = STATE(4447), - [sym__unquoted_in_list] = STATE(4235), - [sym__unquoted_anonymous_prefix] = STATE(4978), - [sym_comment] = STATE(971), - [aux_sym__types_body_repeat1] = STATE(1394), - [aux_sym_parameter_repeat2] = STATE(3996), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1418), + [STATE(978)] = { + [aux_sym__repeat_newline] = STATE(4123), + [sym__match_pattern_expression] = STATE(4388), + [sym__match_pattern_value] = STATE(4618), + [sym__match_pattern_list_body] = STATE(4640), + [sym__match_pattern_list] = STATE(4619), + [sym__match_pattern_rest] = STATE(5232), + [sym__match_pattern_record] = STATE(4622), + [sym_expr_parenthesized] = STATE(3839), + [sym_val_range] = STATE(4618), + [sym__val_range] = STATE(5078), + [sym_val_nothing] = STATE(4622), + [sym_val_bool] = STATE(4190), + [sym_val_variable] = STATE(3841), + [sym_val_number] = STATE(4622), + [sym__val_number_decimal] = STATE(3591), + [sym__val_number] = STATE(4361), + [sym_val_duration] = STATE(4622), + [sym_val_filesize] = STATE(4622), + [sym_val_binary] = STATE(4622), + [sym_val_string] = STATE(4622), + [sym__raw_str] = STATE(3638), + [sym__str_double_quotes] = STATE(3638), + [sym__str_single_quotes] = STATE(3638), + [sym__str_back_ticks] = STATE(3638), + [sym_val_list] = STATE(4890), + [sym__table_head] = STATE(3730), + [sym_val_table] = STATE(4622), + [sym__unquoted_in_list] = STATE(4388), + [sym__unquoted_anonymous_prefix] = STATE(5078), + [sym_comment] = STATE(978), + [aux_sym__types_body_repeat1] = STATE(1395), + [aux_sym_parameter_repeat2] = STATE(4037), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1423), [anon_sym_true] = ACTIONS(1374), [anon_sym_false] = ACTIONS(1374), [anon_sym_null] = ACTIONS(1376), [aux_sym_cmd_identifier_token3] = ACTIONS(1378), [aux_sym_cmd_identifier_token4] = ACTIONS(1378), [aux_sym_cmd_identifier_token5] = ACTIONS(1378), - [sym__newline] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(2652), - [anon_sym_RBRACK] = ACTIONS(2654), + [sym__newline] = ACTIONS(2644), + [anon_sym_LBRACK] = ACTIONS(2646), + [anon_sym_RBRACK] = ACTIONS(2648), [anon_sym_LPAREN] = ACTIONS(1386), [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_DOLLAR] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_DOT_DOT] = ACTIONS(2660), + [anon_sym_DOLLAR] = ACTIONS(2650), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_DOT_DOT] = ACTIONS(1394), [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), [anon_sym_DOT_DOT_LT] = ACTIONS(1396), [aux_sym__val_number_decimal_token1] = ACTIONS(1398), @@ -119512,7 +120192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(2662), + [sym_val_date] = ACTIONS(2654), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -119520,553 +120200,553 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(972)] = { - [sym__expr_parenthesized_immediate] = STATE(4754), - [sym_comment] = STATE(972), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(973)] = { - [sym_comment] = STATE(973), - [ts_builtin_sym_end] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_err_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_GT_PIPE] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1802), - [anon_sym_GT2] = ACTIONS(1804), - [anon_sym_DASH2] = ACTIONS(1802), - [anon_sym_STAR2] = ACTIONS(1804), - [anon_sym_and2] = ACTIONS(1802), - [anon_sym_xor2] = ACTIONS(1802), - [anon_sym_or2] = ACTIONS(1802), - [anon_sym_not_DASHin2] = ACTIONS(1802), - [anon_sym_has2] = ACTIONS(1802), - [anon_sym_not_DASHhas2] = ACTIONS(1802), - [anon_sym_starts_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1802), - [anon_sym_ends_DASHwith2] = ACTIONS(1802), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1802), - [anon_sym_EQ_EQ2] = ACTIONS(1802), - [anon_sym_BANG_EQ2] = ACTIONS(1802), - [anon_sym_LT2] = ACTIONS(1804), - [anon_sym_LT_EQ2] = ACTIONS(1802), - [anon_sym_GT_EQ2] = ACTIONS(1802), - [anon_sym_EQ_TILDE2] = ACTIONS(1802), - [anon_sym_BANG_TILDE2] = ACTIONS(1802), - [anon_sym_like2] = ACTIONS(1802), - [anon_sym_not_DASHlike2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1802), - [anon_sym_STAR_STAR2] = ACTIONS(1802), - [anon_sym_PLUS_PLUS2] = ACTIONS(1802), - [anon_sym_SLASH2] = ACTIONS(1804), - [anon_sym_mod2] = ACTIONS(1802), - [anon_sym_SLASH_SLASH2] = ACTIONS(1802), - [anon_sym_PLUS2] = ACTIONS(1804), - [anon_sym_bit_DASHshl2] = ACTIONS(1802), - [anon_sym_bit_DASHshr2] = ACTIONS(1802), - [anon_sym_bit_DASHand2] = ACTIONS(1802), - [anon_sym_bit_DASHxor2] = ACTIONS(1802), - [anon_sym_bit_DASHor2] = ACTIONS(1802), - [anon_sym_err_GT] = ACTIONS(1804), - [anon_sym_out_GT] = ACTIONS(1804), - [anon_sym_e_GT] = ACTIONS(1804), - [anon_sym_o_GT] = ACTIONS(1804), - [anon_sym_err_PLUSout_GT] = ACTIONS(1804), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1804), - [anon_sym_o_PLUSe_GT] = ACTIONS(1804), - [anon_sym_e_PLUSo_GT] = ACTIONS(1804), - [anon_sym_err_GT_GT] = ACTIONS(1802), - [anon_sym_out_GT_GT] = ACTIONS(1802), - [anon_sym_e_GT_GT] = ACTIONS(1802), - [anon_sym_o_GT_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1802), - [sym__unquoted_pattern] = ACTIONS(1804), + [STATE(979)] = { + [aux_sym__repeat_newline] = STATE(1045), + [sym_comment] = STATE(979), + [anon_sym_in] = ACTIONS(2666), + [sym__newline] = ACTIONS(2666), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2668), + [anon_sym_DASH2] = ACTIONS(2666), + [anon_sym_LBRACE] = ACTIONS(2666), + [anon_sym_STAR2] = ACTIONS(2668), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2666), + [anon_sym_has2] = ACTIONS(2666), + [anon_sym_not_DASHhas2] = ACTIONS(2666), + [anon_sym_starts_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2666), + [anon_sym_ends_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2666), + [anon_sym_EQ_EQ2] = ACTIONS(2666), + [anon_sym_BANG_EQ2] = ACTIONS(2666), + [anon_sym_LT2] = ACTIONS(2668), + [anon_sym_LT_EQ2] = ACTIONS(2666), + [anon_sym_GT_EQ2] = ACTIONS(2666), + [anon_sym_EQ_TILDE2] = ACTIONS(2666), + [anon_sym_BANG_TILDE2] = ACTIONS(2666), + [anon_sym_like2] = ACTIONS(2666), + [anon_sym_not_DASHlike2] = ACTIONS(2666), + [anon_sym_STAR_STAR2] = ACTIONS(2666), + [anon_sym_PLUS_PLUS2] = ACTIONS(2666), + [anon_sym_SLASH2] = ACTIONS(2668), + [anon_sym_mod2] = ACTIONS(2666), + [anon_sym_SLASH_SLASH2] = ACTIONS(2666), + [anon_sym_PLUS2] = ACTIONS(2668), + [anon_sym_bit_DASHshl2] = ACTIONS(2666), + [anon_sym_bit_DASHshr2] = ACTIONS(2666), + [anon_sym_bit_DASHand2] = ACTIONS(2666), + [anon_sym_bit_DASHxor2] = ACTIONS(2666), + [anon_sym_bit_DASHor2] = ACTIONS(2666), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(974)] = { - [sym__expr_parenthesized_immediate] = STATE(4754), - [sym_comment] = STATE(974), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), + [STATE(980)] = { + [sym_comment] = STATE(980), + [aux_sym_cmd_identifier_token2] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(2564), + [sym__newline] = ACTIONS(2562), + [anon_sym_SEMI] = ACTIONS(2562), + [anon_sym_PIPE] = ACTIONS(2562), + [anon_sym_err_GT_PIPE] = ACTIONS(2562), + [anon_sym_out_GT_PIPE] = ACTIONS(2562), + [anon_sym_e_GT_PIPE] = ACTIONS(2562), + [anon_sym_o_GT_PIPE] = ACTIONS(2562), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2562), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2562), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2562), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2562), + [anon_sym_RPAREN] = ACTIONS(2562), + [anon_sym_GT2] = ACTIONS(2564), + [anon_sym_DASH2] = ACTIONS(2564), + [anon_sym_RBRACE] = ACTIONS(2562), + [anon_sym_STAR2] = ACTIONS(2564), + [anon_sym_and2] = ACTIONS(2564), + [anon_sym_xor2] = ACTIONS(2564), + [anon_sym_or2] = ACTIONS(2564), + [anon_sym_not_DASHin2] = ACTIONS(2564), + [anon_sym_has2] = ACTIONS(2564), + [anon_sym_not_DASHhas2] = ACTIONS(2564), + [anon_sym_starts_DASHwith2] = ACTIONS(2564), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2564), + [anon_sym_ends_DASHwith2] = ACTIONS(2564), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2564), + [anon_sym_EQ_EQ2] = ACTIONS(2562), + [anon_sym_BANG_EQ2] = ACTIONS(2562), + [anon_sym_LT2] = ACTIONS(2564), + [anon_sym_LT_EQ2] = ACTIONS(2562), + [anon_sym_GT_EQ2] = ACTIONS(2562), + [anon_sym_EQ_TILDE2] = ACTIONS(2562), + [anon_sym_BANG_TILDE2] = ACTIONS(2564), + [anon_sym_like2] = ACTIONS(2564), + [anon_sym_not_DASHlike2] = ACTIONS(2564), + [anon_sym_STAR_STAR2] = ACTIONS(2564), + [anon_sym_PLUS_PLUS2] = ACTIONS(2564), + [anon_sym_SLASH2] = ACTIONS(2564), + [anon_sym_mod2] = ACTIONS(2564), + [anon_sym_SLASH_SLASH2] = ACTIONS(2564), + [anon_sym_PLUS2] = ACTIONS(2564), + [anon_sym_bit_DASHshl2] = ACTIONS(2564), + [anon_sym_bit_DASHshr2] = ACTIONS(2564), + [anon_sym_bit_DASHand2] = ACTIONS(2564), + [anon_sym_bit_DASHxor2] = ACTIONS(2564), + [anon_sym_bit_DASHor2] = ACTIONS(2564), + [anon_sym_err_GT] = ACTIONS(2564), + [anon_sym_out_GT] = ACTIONS(2564), + [anon_sym_e_GT] = ACTIONS(2564), + [anon_sym_o_GT] = ACTIONS(2564), + [anon_sym_err_PLUSout_GT] = ACTIONS(2564), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2564), + [anon_sym_o_PLUSe_GT] = ACTIONS(2564), + [anon_sym_e_PLUSo_GT] = ACTIONS(2564), + [anon_sym_err_GT_GT] = ACTIONS(2562), + [anon_sym_out_GT_GT] = ACTIONS(2562), + [anon_sym_e_GT_GT] = ACTIONS(2562), + [anon_sym_o_GT_GT] = ACTIONS(2562), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2562), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2562), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2562), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2562), + [anon_sym_POUND] = ACTIONS(103), }, - [STATE(975)] = { - [sym_comment] = STATE(975), - [ts_builtin_sym_end] = ACTIONS(1870), - [anon_sym_in] = ACTIONS(1870), - [sym__newline] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_err_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_GT_PIPE] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1870), - [anon_sym_GT2] = ACTIONS(1872), - [anon_sym_DASH2] = ACTIONS(1870), - [anon_sym_STAR2] = ACTIONS(1872), - [anon_sym_and2] = ACTIONS(1870), - [anon_sym_xor2] = ACTIONS(1870), - [anon_sym_or2] = ACTIONS(1870), - [anon_sym_not_DASHin2] = ACTIONS(1870), - [anon_sym_has2] = ACTIONS(1870), - [anon_sym_not_DASHhas2] = ACTIONS(1870), - [anon_sym_starts_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1870), - [anon_sym_ends_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1870), - [anon_sym_EQ_EQ2] = ACTIONS(1870), - [anon_sym_BANG_EQ2] = ACTIONS(1870), - [anon_sym_LT2] = ACTIONS(1872), - [anon_sym_LT_EQ2] = ACTIONS(1870), - [anon_sym_GT_EQ2] = ACTIONS(1870), - [anon_sym_EQ_TILDE2] = ACTIONS(1870), - [anon_sym_BANG_TILDE2] = ACTIONS(1870), - [anon_sym_like2] = ACTIONS(1870), - [anon_sym_not_DASHlike2] = ACTIONS(1870), - [anon_sym_LPAREN2] = ACTIONS(1870), - [anon_sym_STAR_STAR2] = ACTIONS(1870), - [anon_sym_PLUS_PLUS2] = ACTIONS(1870), - [anon_sym_SLASH2] = ACTIONS(1872), - [anon_sym_mod2] = ACTIONS(1870), - [anon_sym_SLASH_SLASH2] = ACTIONS(1870), - [anon_sym_PLUS2] = ACTIONS(1872), - [anon_sym_bit_DASHshl2] = ACTIONS(1870), - [anon_sym_bit_DASHshr2] = ACTIONS(1870), - [anon_sym_bit_DASHand2] = ACTIONS(1870), - [anon_sym_bit_DASHxor2] = ACTIONS(1870), - [anon_sym_bit_DASHor2] = ACTIONS(1870), - [anon_sym_err_GT] = ACTIONS(1872), - [anon_sym_out_GT] = ACTIONS(1872), - [anon_sym_e_GT] = ACTIONS(1872), - [anon_sym_o_GT] = ACTIONS(1872), - [anon_sym_err_PLUSout_GT] = ACTIONS(1872), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), - [anon_sym_o_PLUSe_GT] = ACTIONS(1872), - [anon_sym_e_PLUSo_GT] = ACTIONS(1872), - [anon_sym_err_GT_GT] = ACTIONS(1870), - [anon_sym_out_GT_GT] = ACTIONS(1870), - [anon_sym_e_GT_GT] = ACTIONS(1870), - [anon_sym_o_GT_GT] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1870), - [sym__unquoted_pattern] = ACTIONS(1872), + [STATE(981)] = { + [aux_sym__repeat_newline] = STATE(1046), + [sym_comment] = STATE(981), + [anon_sym_in] = ACTIONS(2198), + [sym__newline] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_err_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_GT_PIPE] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_GT2] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2198), + [anon_sym_xor2] = ACTIONS(2198), + [anon_sym_or2] = ACTIONS(2198), + [anon_sym_not_DASHin2] = ACTIONS(2198), + [anon_sym_has2] = ACTIONS(2198), + [anon_sym_not_DASHhas2] = ACTIONS(2198), + [anon_sym_starts_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), + [anon_sym_ends_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), + [anon_sym_EQ_EQ2] = ACTIONS(2198), + [anon_sym_BANG_EQ2] = ACTIONS(2198), + [anon_sym_LT2] = ACTIONS(2200), + [anon_sym_LT_EQ2] = ACTIONS(2198), + [anon_sym_GT_EQ2] = ACTIONS(2198), + [anon_sym_EQ_TILDE2] = ACTIONS(2198), + [anon_sym_BANG_TILDE2] = ACTIONS(2198), + [anon_sym_like2] = ACTIONS(2198), + [anon_sym_not_DASHlike2] = ACTIONS(2198), + [anon_sym_STAR_STAR2] = ACTIONS(2198), + [anon_sym_PLUS_PLUS2] = ACTIONS(2198), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2198), + [anon_sym_SLASH_SLASH2] = ACTIONS(2198), + [anon_sym_PLUS2] = ACTIONS(2200), + [anon_sym_bit_DASHshl2] = ACTIONS(2198), + [anon_sym_bit_DASHshr2] = ACTIONS(2198), + [anon_sym_bit_DASHand2] = ACTIONS(2198), + [anon_sym_bit_DASHxor2] = ACTIONS(2198), + [anon_sym_bit_DASHor2] = ACTIONS(2198), + [anon_sym_err_GT] = ACTIONS(2200), + [anon_sym_out_GT] = ACTIONS(2200), + [anon_sym_e_GT] = ACTIONS(2200), + [anon_sym_o_GT] = ACTIONS(2200), + [anon_sym_err_PLUSout_GT] = ACTIONS(2200), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), + [anon_sym_o_PLUSe_GT] = ACTIONS(2200), + [anon_sym_e_PLUSo_GT] = ACTIONS(2200), + [anon_sym_err_GT_GT] = ACTIONS(2198), + [anon_sym_out_GT_GT] = ACTIONS(2198), + [anon_sym_e_GT_GT] = ACTIONS(2198), + [anon_sym_o_GT_GT] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(976)] = { - [sym__expression] = STATE(4655), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(976), - [aux_sym_cmd_identifier_token2] = ACTIONS(2664), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_COLON2] = ACTIONS(2666), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [STATE(982)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(982), + [anon_sym_in] = ACTIONS(2658), + [sym__newline] = ACTIONS(2658), + [anon_sym_SEMI] = ACTIONS(2658), + [anon_sym_PIPE] = ACTIONS(2658), + [anon_sym_err_GT_PIPE] = ACTIONS(2658), + [anon_sym_out_GT_PIPE] = ACTIONS(2658), + [anon_sym_e_GT_PIPE] = ACTIONS(2658), + [anon_sym_o_GT_PIPE] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2658), + [anon_sym_RPAREN] = ACTIONS(2658), + [anon_sym_GT2] = ACTIONS(2660), + [anon_sym_DASH2] = ACTIONS(2658), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_STAR2] = ACTIONS(2660), + [anon_sym_and2] = ACTIONS(2658), + [anon_sym_xor2] = ACTIONS(2658), + [anon_sym_or2] = ACTIONS(2658), + [anon_sym_not_DASHin2] = ACTIONS(2658), + [anon_sym_has2] = ACTIONS(2658), + [anon_sym_not_DASHhas2] = ACTIONS(2658), + [anon_sym_starts_DASHwith2] = ACTIONS(2658), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2658), + [anon_sym_ends_DASHwith2] = ACTIONS(2658), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2658), + [anon_sym_EQ_EQ2] = ACTIONS(2658), + [anon_sym_BANG_EQ2] = ACTIONS(2658), + [anon_sym_LT2] = ACTIONS(2660), + [anon_sym_LT_EQ2] = ACTIONS(2658), + [anon_sym_GT_EQ2] = ACTIONS(2658), + [anon_sym_EQ_TILDE2] = ACTIONS(2658), + [anon_sym_BANG_TILDE2] = ACTIONS(2658), + [anon_sym_like2] = ACTIONS(2658), + [anon_sym_not_DASHlike2] = ACTIONS(2658), + [anon_sym_STAR_STAR2] = ACTIONS(2658), + [anon_sym_PLUS_PLUS2] = ACTIONS(2658), + [anon_sym_SLASH2] = ACTIONS(2660), + [anon_sym_mod2] = ACTIONS(2658), + [anon_sym_SLASH_SLASH2] = ACTIONS(2658), + [anon_sym_PLUS2] = ACTIONS(2660), + [anon_sym_bit_DASHshl2] = ACTIONS(2658), + [anon_sym_bit_DASHshr2] = ACTIONS(2658), + [anon_sym_bit_DASHand2] = ACTIONS(2658), + [anon_sym_bit_DASHxor2] = ACTIONS(2658), + [anon_sym_bit_DASHor2] = ACTIONS(2658), + [anon_sym_err_GT] = ACTIONS(2660), + [anon_sym_out_GT] = ACTIONS(2660), + [anon_sym_e_GT] = ACTIONS(2660), + [anon_sym_o_GT] = ACTIONS(2660), + [anon_sym_err_PLUSout_GT] = ACTIONS(2660), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2660), + [anon_sym_o_PLUSe_GT] = ACTIONS(2660), + [anon_sym_e_PLUSo_GT] = ACTIONS(2660), + [anon_sym_err_GT_GT] = ACTIONS(2658), + [anon_sym_out_GT_GT] = ACTIONS(2658), + [anon_sym_e_GT_GT] = ACTIONS(2658), + [anon_sym_o_GT_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2658), + [anon_sym_POUND] = ACTIONS(3), }, - [STATE(977)] = { - [sym__expression] = STATE(4669), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(977), - [aux_sym_cmd_identifier_token2] = ACTIONS(2664), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_COLON2] = ACTIONS(2666), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [STATE(983)] = { + [aux_sym__repeat_newline] = STATE(1050), + [sym_comment] = STATE(983), + [anon_sym_in] = ACTIONS(2198), + [sym__newline] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_err_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_GT_PIPE] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_GT2] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2198), + [anon_sym_xor2] = ACTIONS(2198), + [anon_sym_or2] = ACTIONS(2198), + [anon_sym_not_DASHin2] = ACTIONS(2198), + [anon_sym_has2] = ACTIONS(2198), + [anon_sym_not_DASHhas2] = ACTIONS(2198), + [anon_sym_starts_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), + [anon_sym_ends_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), + [anon_sym_EQ_EQ2] = ACTIONS(2198), + [anon_sym_BANG_EQ2] = ACTIONS(2198), + [anon_sym_LT2] = ACTIONS(2200), + [anon_sym_LT_EQ2] = ACTIONS(2198), + [anon_sym_GT_EQ2] = ACTIONS(2198), + [anon_sym_EQ_TILDE2] = ACTIONS(2198), + [anon_sym_BANG_TILDE2] = ACTIONS(2198), + [anon_sym_like2] = ACTIONS(2198), + [anon_sym_not_DASHlike2] = ACTIONS(2198), + [anon_sym_STAR_STAR2] = ACTIONS(2198), + [anon_sym_PLUS_PLUS2] = ACTIONS(2198), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2198), + [anon_sym_SLASH_SLASH2] = ACTIONS(2198), + [anon_sym_PLUS2] = ACTIONS(2200), + [anon_sym_bit_DASHshl2] = ACTIONS(2198), + [anon_sym_bit_DASHshr2] = ACTIONS(2198), + [anon_sym_bit_DASHand2] = ACTIONS(2198), + [anon_sym_bit_DASHxor2] = ACTIONS(2198), + [anon_sym_bit_DASHor2] = ACTIONS(2198), + [anon_sym_err_GT] = ACTIONS(2200), + [anon_sym_out_GT] = ACTIONS(2200), + [anon_sym_e_GT] = ACTIONS(2200), + [anon_sym_o_GT] = ACTIONS(2200), + [anon_sym_err_PLUSout_GT] = ACTIONS(2200), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), + [anon_sym_o_PLUSe_GT] = ACTIONS(2200), + [anon_sym_e_PLUSo_GT] = ACTIONS(2200), + [anon_sym_err_GT_GT] = ACTIONS(2198), + [anon_sym_out_GT_GT] = ACTIONS(2198), + [anon_sym_e_GT_GT] = ACTIONS(2198), + [anon_sym_o_GT_GT] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), + [anon_sym_POUND] = ACTIONS(3), }, - [STATE(978)] = { - [aux_sym__repeat_newline] = STATE(1355), - [sym__expression_parenthesized] = STATE(4162), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(978), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(2668), - [aux_sym_cmd_identifier_token3] = ACTIONS(189), - [aux_sym_cmd_identifier_token4] = ACTIONS(189), - [aux_sym_cmd_identifier_token5] = ACTIONS(189), - [sym__newline] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [STATE(984)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(984), + [anon_sym_in] = ACTIONS(2658), + [sym__newline] = ACTIONS(2658), + [anon_sym_SEMI] = ACTIONS(2658), + [anon_sym_PIPE] = ACTIONS(2658), + [anon_sym_err_GT_PIPE] = ACTIONS(2658), + [anon_sym_out_GT_PIPE] = ACTIONS(2658), + [anon_sym_e_GT_PIPE] = ACTIONS(2658), + [anon_sym_o_GT_PIPE] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2658), + [anon_sym_RPAREN] = ACTIONS(2658), + [anon_sym_GT2] = ACTIONS(2660), + [anon_sym_DASH2] = ACTIONS(2658), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_STAR2] = ACTIONS(2660), + [anon_sym_and2] = ACTIONS(2658), + [anon_sym_xor2] = ACTIONS(2658), + [anon_sym_or2] = ACTIONS(2658), + [anon_sym_not_DASHin2] = ACTIONS(2658), + [anon_sym_has2] = ACTIONS(2658), + [anon_sym_not_DASHhas2] = ACTIONS(2658), + [anon_sym_starts_DASHwith2] = ACTIONS(2658), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2658), + [anon_sym_ends_DASHwith2] = ACTIONS(2658), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2658), + [anon_sym_EQ_EQ2] = ACTIONS(2658), + [anon_sym_BANG_EQ2] = ACTIONS(2658), + [anon_sym_LT2] = ACTIONS(2660), + [anon_sym_LT_EQ2] = ACTIONS(2658), + [anon_sym_GT_EQ2] = ACTIONS(2658), + [anon_sym_EQ_TILDE2] = ACTIONS(2658), + [anon_sym_BANG_TILDE2] = ACTIONS(2658), + [anon_sym_like2] = ACTIONS(2658), + [anon_sym_not_DASHlike2] = ACTIONS(2658), + [anon_sym_STAR_STAR2] = ACTIONS(2658), + [anon_sym_PLUS_PLUS2] = ACTIONS(2658), + [anon_sym_SLASH2] = ACTIONS(2660), + [anon_sym_mod2] = ACTIONS(2658), + [anon_sym_SLASH_SLASH2] = ACTIONS(2658), + [anon_sym_PLUS2] = ACTIONS(2660), + [anon_sym_bit_DASHshl2] = ACTIONS(2658), + [anon_sym_bit_DASHshr2] = ACTIONS(2658), + [anon_sym_bit_DASHand2] = ACTIONS(2658), + [anon_sym_bit_DASHxor2] = ACTIONS(2658), + [anon_sym_bit_DASHor2] = ACTIONS(2658), + [anon_sym_err_GT] = ACTIONS(2660), + [anon_sym_out_GT] = ACTIONS(2660), + [anon_sym_e_GT] = ACTIONS(2660), + [anon_sym_o_GT] = ACTIONS(2660), + [anon_sym_err_PLUSout_GT] = ACTIONS(2660), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2660), + [anon_sym_o_PLUSe_GT] = ACTIONS(2660), + [anon_sym_e_PLUSo_GT] = ACTIONS(2660), + [anon_sym_err_GT_GT] = ACTIONS(2658), + [anon_sym_out_GT_GT] = ACTIONS(2658), + [anon_sym_e_GT_GT] = ACTIONS(2658), + [anon_sym_o_GT_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2658), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(979)] = { - [aux_sym__repeat_newline] = STATE(1034), - [sym_comment] = STATE(979), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(985)] = { + [aux_sym__repeat_newline] = STATE(991), + [sym_comment] = STATE(985), + [anon_sym_in] = ACTIONS(2198), + [sym__newline] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_err_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_GT_PIPE] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_GT2] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2198), + [anon_sym_xor2] = ACTIONS(2198), + [anon_sym_or2] = ACTIONS(2198), + [anon_sym_not_DASHin2] = ACTIONS(2198), + [anon_sym_has2] = ACTIONS(2198), + [anon_sym_not_DASHhas2] = ACTIONS(2198), + [anon_sym_starts_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), + [anon_sym_ends_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), + [anon_sym_EQ_EQ2] = ACTIONS(2198), + [anon_sym_BANG_EQ2] = ACTIONS(2198), + [anon_sym_LT2] = ACTIONS(2200), + [anon_sym_LT_EQ2] = ACTIONS(2198), + [anon_sym_GT_EQ2] = ACTIONS(2198), + [anon_sym_EQ_TILDE2] = ACTIONS(2198), + [anon_sym_BANG_TILDE2] = ACTIONS(2198), + [anon_sym_like2] = ACTIONS(2198), + [anon_sym_not_DASHlike2] = ACTIONS(2198), + [anon_sym_STAR_STAR2] = ACTIONS(2198), + [anon_sym_PLUS_PLUS2] = ACTIONS(2198), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2198), + [anon_sym_SLASH_SLASH2] = ACTIONS(2198), + [anon_sym_PLUS2] = ACTIONS(2200), + [anon_sym_bit_DASHshl2] = ACTIONS(2198), + [anon_sym_bit_DASHshr2] = ACTIONS(2198), + [anon_sym_bit_DASHand2] = ACTIONS(2198), + [anon_sym_bit_DASHxor2] = ACTIONS(2198), + [anon_sym_bit_DASHor2] = ACTIONS(2198), + [anon_sym_err_GT] = ACTIONS(2200), + [anon_sym_out_GT] = ACTIONS(2200), + [anon_sym_e_GT] = ACTIONS(2200), + [anon_sym_o_GT] = ACTIONS(2200), + [anon_sym_err_PLUSout_GT] = ACTIONS(2200), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), + [anon_sym_o_PLUSe_GT] = ACTIONS(2200), + [anon_sym_e_PLUSo_GT] = ACTIONS(2200), + [anon_sym_err_GT_GT] = ACTIONS(2198), + [anon_sym_out_GT_GT] = ACTIONS(2198), + [anon_sym_e_GT_GT] = ACTIONS(2198), + [anon_sym_o_GT_GT] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(980)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(980), + [STATE(986)] = { + [aux_sym__repeat_newline] = STATE(1020), + [sym_comment] = STATE(986), + [anon_sym_in] = ACTIONS(2279), + [sym__newline] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_err_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_GT_PIPE] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_GT2] = ACTIONS(2281), + [anon_sym_DASH2] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_STAR2] = ACTIONS(2281), + [anon_sym_and2] = ACTIONS(2279), + [anon_sym_xor2] = ACTIONS(2279), + [anon_sym_or2] = ACTIONS(2279), + [anon_sym_not_DASHin2] = ACTIONS(2279), + [anon_sym_has2] = ACTIONS(2279), + [anon_sym_not_DASHhas2] = ACTIONS(2279), + [anon_sym_starts_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), + [anon_sym_ends_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), + [anon_sym_EQ_EQ2] = ACTIONS(2279), + [anon_sym_BANG_EQ2] = ACTIONS(2279), + [anon_sym_LT2] = ACTIONS(2281), + [anon_sym_LT_EQ2] = ACTIONS(2279), + [anon_sym_GT_EQ2] = ACTIONS(2279), + [anon_sym_EQ_TILDE2] = ACTIONS(2279), + [anon_sym_BANG_TILDE2] = ACTIONS(2279), + [anon_sym_like2] = ACTIONS(2279), + [anon_sym_not_DASHlike2] = ACTIONS(2279), + [anon_sym_STAR_STAR2] = ACTIONS(2279), + [anon_sym_PLUS_PLUS2] = ACTIONS(2279), + [anon_sym_SLASH2] = ACTIONS(2281), + [anon_sym_mod2] = ACTIONS(2279), + [anon_sym_SLASH_SLASH2] = ACTIONS(2279), + [anon_sym_PLUS2] = ACTIONS(2281), + [anon_sym_bit_DASHshl2] = ACTIONS(2279), + [anon_sym_bit_DASHshr2] = ACTIONS(2279), + [anon_sym_bit_DASHand2] = ACTIONS(2279), + [anon_sym_bit_DASHxor2] = ACTIONS(2279), + [anon_sym_bit_DASHor2] = ACTIONS(2279), + [anon_sym_err_GT] = ACTIONS(2281), + [anon_sym_out_GT] = ACTIONS(2281), + [anon_sym_e_GT] = ACTIONS(2281), + [anon_sym_o_GT] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT] = ACTIONS(2281), + [anon_sym_err_GT_GT] = ACTIONS(2279), + [anon_sym_out_GT_GT] = ACTIONS(2279), + [anon_sym_e_GT_GT] = ACTIONS(2279), + [anon_sym_o_GT_GT] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(987)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(987), [anon_sym_in] = ACTIONS(2670), [sym__newline] = ACTIONS(2670), [anon_sym_SEMI] = ACTIONS(2670), @@ -120132,145 +120812,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(981)] = { - [sym__expr_parenthesized_immediate] = STATE(4754), - [sym_comment] = STATE(981), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [STATE(988)] = { + [sym_comment] = STATE(988), + [aux_sym_cmd_identifier_token2] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(793), + [sym__newline] = ACTIONS(890), + [anon_sym_SEMI] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(890), + [anon_sym_err_GT_PIPE] = ACTIONS(890), + [anon_sym_out_GT_PIPE] = ACTIONS(890), + [anon_sym_e_GT_PIPE] = ACTIONS(890), + [anon_sym_o_GT_PIPE] = ACTIONS(890), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(890), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(890), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(890), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(890), + [anon_sym_RPAREN] = ACTIONS(890), + [anon_sym_GT2] = ACTIONS(793), + [anon_sym_DASH2] = ACTIONS(793), + [anon_sym_RBRACE] = ACTIONS(890), + [anon_sym_STAR2] = ACTIONS(793), + [anon_sym_and2] = ACTIONS(793), + [anon_sym_xor2] = ACTIONS(793), + [anon_sym_or2] = ACTIONS(793), + [anon_sym_not_DASHin2] = ACTIONS(793), + [anon_sym_has2] = ACTIONS(793), + [anon_sym_not_DASHhas2] = ACTIONS(793), + [anon_sym_starts_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), + [anon_sym_ends_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), + [anon_sym_EQ_EQ2] = ACTIONS(890), + [anon_sym_BANG_EQ2] = ACTIONS(890), + [anon_sym_LT2] = ACTIONS(793), + [anon_sym_LT_EQ2] = ACTIONS(890), + [anon_sym_GT_EQ2] = ACTIONS(890), + [anon_sym_EQ_TILDE2] = ACTIONS(890), + [anon_sym_BANG_TILDE2] = ACTIONS(793), + [anon_sym_like2] = ACTIONS(793), + [anon_sym_not_DASHlike2] = ACTIONS(793), + [anon_sym_STAR_STAR2] = ACTIONS(793), + [anon_sym_PLUS_PLUS2] = ACTIONS(793), + [anon_sym_SLASH2] = ACTIONS(793), + [anon_sym_mod2] = ACTIONS(793), + [anon_sym_SLASH_SLASH2] = ACTIONS(793), + [anon_sym_PLUS2] = ACTIONS(793), + [anon_sym_bit_DASHshl2] = ACTIONS(793), + [anon_sym_bit_DASHshr2] = ACTIONS(793), + [anon_sym_bit_DASHand2] = ACTIONS(793), + [anon_sym_bit_DASHxor2] = ACTIONS(793), + [anon_sym_bit_DASHor2] = ACTIONS(793), + [anon_sym_err_GT] = ACTIONS(793), + [anon_sym_out_GT] = ACTIONS(793), + [anon_sym_e_GT] = ACTIONS(793), + [anon_sym_o_GT] = ACTIONS(793), + [anon_sym_err_PLUSout_GT] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT] = ACTIONS(793), + [anon_sym_o_PLUSe_GT] = ACTIONS(793), + [anon_sym_e_PLUSo_GT] = ACTIONS(793), + [anon_sym_err_GT_GT] = ACTIONS(890), + [anon_sym_out_GT_GT] = ACTIONS(890), + [anon_sym_e_GT_GT] = ACTIONS(890), + [anon_sym_o_GT_GT] = ACTIONS(890), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(890), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(890), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(890), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(890), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(989)] = { + [aux_sym__repeat_newline] = STATE(1027), + [sym_comment] = STATE(989), + [anon_sym_in] = ACTIONS(2279), + [sym__newline] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_err_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_GT_PIPE] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_GT2] = ACTIONS(2281), + [anon_sym_DASH2] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_STAR2] = ACTIONS(2281), + [anon_sym_and2] = ACTIONS(2279), + [anon_sym_xor2] = ACTIONS(2279), + [anon_sym_or2] = ACTIONS(2279), + [anon_sym_not_DASHin2] = ACTIONS(2279), + [anon_sym_has2] = ACTIONS(2279), + [anon_sym_not_DASHhas2] = ACTIONS(2279), + [anon_sym_starts_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), + [anon_sym_ends_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), + [anon_sym_EQ_EQ2] = ACTIONS(2279), + [anon_sym_BANG_EQ2] = ACTIONS(2279), + [anon_sym_LT2] = ACTIONS(2281), + [anon_sym_LT_EQ2] = ACTIONS(2279), + [anon_sym_GT_EQ2] = ACTIONS(2279), + [anon_sym_EQ_TILDE2] = ACTIONS(2279), + [anon_sym_BANG_TILDE2] = ACTIONS(2279), + [anon_sym_like2] = ACTIONS(2279), + [anon_sym_not_DASHlike2] = ACTIONS(2279), + [anon_sym_STAR_STAR2] = ACTIONS(2279), + [anon_sym_PLUS_PLUS2] = ACTIONS(2279), + [anon_sym_SLASH2] = ACTIONS(2281), + [anon_sym_mod2] = ACTIONS(2279), + [anon_sym_SLASH_SLASH2] = ACTIONS(2279), + [anon_sym_PLUS2] = ACTIONS(2281), + [anon_sym_bit_DASHshl2] = ACTIONS(2279), + [anon_sym_bit_DASHshr2] = ACTIONS(2279), + [anon_sym_bit_DASHand2] = ACTIONS(2279), + [anon_sym_bit_DASHxor2] = ACTIONS(2279), + [anon_sym_bit_DASHor2] = ACTIONS(2279), + [anon_sym_err_GT] = ACTIONS(2281), + [anon_sym_out_GT] = ACTIONS(2281), + [anon_sym_e_GT] = ACTIONS(2281), + [anon_sym_o_GT] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT] = ACTIONS(2281), + [anon_sym_err_GT_GT] = ACTIONS(2279), + [anon_sym_out_GT_GT] = ACTIONS(2279), + [anon_sym_e_GT_GT] = ACTIONS(2279), + [anon_sym_o_GT_GT] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(982)] = { - [aux_sym__repeat_newline] = STATE(1035), - [sym_comment] = STATE(982), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(990)] = { + [sym_comment] = STATE(990), + [ts_builtin_sym_end] = ACTIONS(1728), + [anon_sym_in] = ACTIONS(1728), + [sym__newline] = ACTIONS(1728), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_err_GT_PIPE] = ACTIONS(1728), + [anon_sym_out_GT_PIPE] = ACTIONS(1728), + [anon_sym_e_GT_PIPE] = ACTIONS(1728), + [anon_sym_o_GT_PIPE] = ACTIONS(1728), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1728), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1728), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1728), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1728), + [anon_sym_GT2] = ACTIONS(1730), + [anon_sym_DASH2] = ACTIONS(1728), + [anon_sym_STAR2] = ACTIONS(1730), + [anon_sym_and2] = ACTIONS(1728), + [anon_sym_xor2] = ACTIONS(1728), + [anon_sym_or2] = ACTIONS(1728), + [anon_sym_not_DASHin2] = ACTIONS(1728), + [anon_sym_has2] = ACTIONS(1728), + [anon_sym_not_DASHhas2] = ACTIONS(1728), + [anon_sym_starts_DASHwith2] = ACTIONS(1728), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1728), + [anon_sym_ends_DASHwith2] = ACTIONS(1728), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1728), + [anon_sym_EQ_EQ2] = ACTIONS(1728), + [anon_sym_BANG_EQ2] = ACTIONS(1728), + [anon_sym_LT2] = ACTIONS(1730), + [anon_sym_LT_EQ2] = ACTIONS(1728), + [anon_sym_GT_EQ2] = ACTIONS(1728), + [anon_sym_EQ_TILDE2] = ACTIONS(1728), + [anon_sym_BANG_TILDE2] = ACTIONS(1728), + [anon_sym_like2] = ACTIONS(1728), + [anon_sym_not_DASHlike2] = ACTIONS(1728), + [anon_sym_STAR_STAR2] = ACTIONS(1728), + [anon_sym_PLUS_PLUS2] = ACTIONS(1728), + [anon_sym_SLASH2] = ACTIONS(1730), + [anon_sym_mod2] = ACTIONS(1728), + [anon_sym_SLASH_SLASH2] = ACTIONS(1728), + [anon_sym_PLUS2] = ACTIONS(1730), + [anon_sym_bit_DASHshl2] = ACTIONS(1728), + [anon_sym_bit_DASHshr2] = ACTIONS(1728), + [anon_sym_bit_DASHand2] = ACTIONS(1728), + [anon_sym_bit_DASHxor2] = ACTIONS(1728), + [anon_sym_bit_DASHor2] = ACTIONS(1728), + [anon_sym_DOT] = ACTIONS(2674), + [aux_sym__immediate_decimal_token5] = ACTIONS(1876), + [anon_sym_err_GT] = ACTIONS(1730), + [anon_sym_out_GT] = ACTIONS(1730), + [anon_sym_e_GT] = ACTIONS(1730), + [anon_sym_o_GT] = ACTIONS(1730), + [anon_sym_err_PLUSout_GT] = ACTIONS(1730), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1730), + [anon_sym_o_PLUSe_GT] = ACTIONS(1730), + [anon_sym_e_PLUSo_GT] = ACTIONS(1730), + [anon_sym_err_GT_GT] = ACTIONS(1728), + [anon_sym_out_GT_GT] = ACTIONS(1728), + [anon_sym_e_GT_GT] = ACTIONS(1728), + [anon_sym_o_GT_GT] = ACTIONS(1728), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1728), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1728), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1728), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1728), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(983)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(983), + [STATE(991)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(991), [anon_sym_in] = ACTIONS(2670), [sym__newline] = ACTIONS(2670), [anon_sym_SEMI] = ACTIONS(2670), @@ -120336,145 +121084,621 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(984)] = { - [aux_sym__repeat_newline] = STATE(1036), - [sym_comment] = STATE(984), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(992)] = { + [aux_sym__repeat_newline] = STATE(1100), + [sym_comment] = STATE(992), + [anon_sym_in] = ACTIONS(2289), + [sym__newline] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_err_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_GT_PIPE] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), + [anon_sym_RPAREN] = ACTIONS(2289), + [anon_sym_GT2] = ACTIONS(2291), + [anon_sym_DASH2] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_STAR2] = ACTIONS(2291), + [anon_sym_and2] = ACTIONS(2289), + [anon_sym_xor2] = ACTIONS(2289), + [anon_sym_or2] = ACTIONS(2289), + [anon_sym_not_DASHin2] = ACTIONS(2289), + [anon_sym_has2] = ACTIONS(2289), + [anon_sym_not_DASHhas2] = ACTIONS(2289), + [anon_sym_starts_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), + [anon_sym_ends_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), + [anon_sym_EQ_EQ2] = ACTIONS(2289), + [anon_sym_BANG_EQ2] = ACTIONS(2289), + [anon_sym_LT2] = ACTIONS(2291), + [anon_sym_LT_EQ2] = ACTIONS(2289), + [anon_sym_GT_EQ2] = ACTIONS(2289), + [anon_sym_EQ_TILDE2] = ACTIONS(2289), + [anon_sym_BANG_TILDE2] = ACTIONS(2289), + [anon_sym_like2] = ACTIONS(2289), + [anon_sym_not_DASHlike2] = ACTIONS(2289), + [anon_sym_STAR_STAR2] = ACTIONS(2289), + [anon_sym_PLUS_PLUS2] = ACTIONS(2289), + [anon_sym_SLASH2] = ACTIONS(2291), + [anon_sym_mod2] = ACTIONS(2289), + [anon_sym_SLASH_SLASH2] = ACTIONS(2289), + [anon_sym_PLUS2] = ACTIONS(2291), + [anon_sym_bit_DASHshl2] = ACTIONS(2289), + [anon_sym_bit_DASHshr2] = ACTIONS(2289), + [anon_sym_bit_DASHand2] = ACTIONS(2289), + [anon_sym_bit_DASHxor2] = ACTIONS(2289), + [anon_sym_bit_DASHor2] = ACTIONS(2289), + [anon_sym_err_GT] = ACTIONS(2291), + [anon_sym_out_GT] = ACTIONS(2291), + [anon_sym_e_GT] = ACTIONS(2291), + [anon_sym_o_GT] = ACTIONS(2291), + [anon_sym_err_PLUSout_GT] = ACTIONS(2291), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), + [anon_sym_o_PLUSe_GT] = ACTIONS(2291), + [anon_sym_e_PLUSo_GT] = ACTIONS(2291), + [anon_sym_err_GT_GT] = ACTIONS(2289), + [anon_sym_out_GT_GT] = ACTIONS(2289), + [anon_sym_e_GT_GT] = ACTIONS(2289), + [anon_sym_o_GT_GT] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(985)] = { - [sym_expr_unary] = STATE(2779), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_parenthesized] = STATE(2475), - [sym_val_range] = STATE(2779), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(2779), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(2515), - [sym_val_variable] = STATE(2478), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(2331), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(2547), - [sym__unquoted_with_expr] = STATE(2780), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(985), - [anon_sym_true] = ACTIONS(2674), - [anon_sym_false] = ACTIONS(2674), - [anon_sym_null] = ACTIONS(2676), - [aux_sym_cmd_identifier_token3] = ACTIONS(2678), - [aux_sym_cmd_identifier_token4] = ACTIONS(2678), - [aux_sym_cmd_identifier_token5] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2684), + [STATE(993)] = { + [aux_sym__repeat_newline] = STATE(1103), + [sym_comment] = STATE(993), + [anon_sym_in] = ACTIONS(2676), + [sym__newline] = ACTIONS(2676), + [anon_sym_SEMI] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_err_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_GT_PIPE] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), + [anon_sym_RPAREN] = ACTIONS(2676), + [anon_sym_GT2] = ACTIONS(2678), + [anon_sym_DASH2] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2676), + [anon_sym_STAR2] = ACTIONS(2678), + [anon_sym_and2] = ACTIONS(2676), + [anon_sym_xor2] = ACTIONS(2676), + [anon_sym_or2] = ACTIONS(2676), + [anon_sym_not_DASHin2] = ACTIONS(2676), + [anon_sym_has2] = ACTIONS(2676), + [anon_sym_not_DASHhas2] = ACTIONS(2676), + [anon_sym_starts_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2676), + [anon_sym_ends_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2676), + [anon_sym_EQ_EQ2] = ACTIONS(2676), + [anon_sym_BANG_EQ2] = ACTIONS(2676), + [anon_sym_LT2] = ACTIONS(2678), + [anon_sym_LT_EQ2] = ACTIONS(2676), + [anon_sym_GT_EQ2] = ACTIONS(2676), + [anon_sym_EQ_TILDE2] = ACTIONS(2676), + [anon_sym_BANG_TILDE2] = ACTIONS(2676), + [anon_sym_like2] = ACTIONS(2676), + [anon_sym_not_DASHlike2] = ACTIONS(2676), + [anon_sym_STAR_STAR2] = ACTIONS(2676), + [anon_sym_PLUS_PLUS2] = ACTIONS(2676), + [anon_sym_SLASH2] = ACTIONS(2678), + [anon_sym_mod2] = ACTIONS(2676), + [anon_sym_SLASH_SLASH2] = ACTIONS(2676), + [anon_sym_PLUS2] = ACTIONS(2678), + [anon_sym_bit_DASHshl2] = ACTIONS(2676), + [anon_sym_bit_DASHshr2] = ACTIONS(2676), + [anon_sym_bit_DASHand2] = ACTIONS(2676), + [anon_sym_bit_DASHxor2] = ACTIONS(2676), + [anon_sym_bit_DASHor2] = ACTIONS(2676), + [anon_sym_err_GT] = ACTIONS(2678), + [anon_sym_out_GT] = ACTIONS(2678), + [anon_sym_e_GT] = ACTIONS(2678), + [anon_sym_o_GT] = ACTIONS(2678), + [anon_sym_err_PLUSout_GT] = ACTIONS(2678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), + [anon_sym_o_PLUSe_GT] = ACTIONS(2678), + [anon_sym_e_PLUSo_GT] = ACTIONS(2678), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(994)] = { + [aux_sym__repeat_newline] = STATE(1028), + [sym_comment] = STATE(994), + [anon_sym_in] = ACTIONS(2279), + [sym__newline] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_err_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_GT_PIPE] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_GT2] = ACTIONS(2281), + [anon_sym_DASH2] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_STAR2] = ACTIONS(2281), + [anon_sym_and2] = ACTIONS(2279), + [anon_sym_xor2] = ACTIONS(2279), + [anon_sym_or2] = ACTIONS(2279), + [anon_sym_not_DASHin2] = ACTIONS(2279), + [anon_sym_has2] = ACTIONS(2279), + [anon_sym_not_DASHhas2] = ACTIONS(2279), + [anon_sym_starts_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), + [anon_sym_ends_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), + [anon_sym_EQ_EQ2] = ACTIONS(2279), + [anon_sym_BANG_EQ2] = ACTIONS(2279), + [anon_sym_LT2] = ACTIONS(2281), + [anon_sym_LT_EQ2] = ACTIONS(2279), + [anon_sym_GT_EQ2] = ACTIONS(2279), + [anon_sym_EQ_TILDE2] = ACTIONS(2279), + [anon_sym_BANG_TILDE2] = ACTIONS(2279), + [anon_sym_like2] = ACTIONS(2279), + [anon_sym_not_DASHlike2] = ACTIONS(2279), + [anon_sym_STAR_STAR2] = ACTIONS(2279), + [anon_sym_PLUS_PLUS2] = ACTIONS(2279), + [anon_sym_SLASH2] = ACTIONS(2281), + [anon_sym_mod2] = ACTIONS(2279), + [anon_sym_SLASH_SLASH2] = ACTIONS(2279), + [anon_sym_PLUS2] = ACTIONS(2281), + [anon_sym_bit_DASHshl2] = ACTIONS(2279), + [anon_sym_bit_DASHshr2] = ACTIONS(2279), + [anon_sym_bit_DASHand2] = ACTIONS(2279), + [anon_sym_bit_DASHxor2] = ACTIONS(2279), + [anon_sym_bit_DASHor2] = ACTIONS(2279), + [anon_sym_err_GT] = ACTIONS(2281), + [anon_sym_out_GT] = ACTIONS(2281), + [anon_sym_e_GT] = ACTIONS(2281), + [anon_sym_o_GT] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT] = ACTIONS(2281), + [anon_sym_err_GT_GT] = ACTIONS(2279), + [anon_sym_out_GT_GT] = ACTIONS(2279), + [anon_sym_e_GT_GT] = ACTIONS(2279), + [anon_sym_o_GT_GT] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(995)] = { + [aux_sym__repeat_newline] = STATE(1104), + [sym_comment] = STATE(995), + [anon_sym_in] = ACTIONS(2289), + [sym__newline] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_err_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_GT_PIPE] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), + [anon_sym_RPAREN] = ACTIONS(2289), + [anon_sym_GT2] = ACTIONS(2291), + [anon_sym_DASH2] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_STAR2] = ACTIONS(2291), + [anon_sym_and2] = ACTIONS(2289), + [anon_sym_xor2] = ACTIONS(2289), + [anon_sym_or2] = ACTIONS(2289), + [anon_sym_not_DASHin2] = ACTIONS(2289), + [anon_sym_has2] = ACTIONS(2289), + [anon_sym_not_DASHhas2] = ACTIONS(2289), + [anon_sym_starts_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), + [anon_sym_ends_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), + [anon_sym_EQ_EQ2] = ACTIONS(2289), + [anon_sym_BANG_EQ2] = ACTIONS(2289), + [anon_sym_LT2] = ACTIONS(2291), + [anon_sym_LT_EQ2] = ACTIONS(2289), + [anon_sym_GT_EQ2] = ACTIONS(2289), + [anon_sym_EQ_TILDE2] = ACTIONS(2289), + [anon_sym_BANG_TILDE2] = ACTIONS(2289), + [anon_sym_like2] = ACTIONS(2289), + [anon_sym_not_DASHlike2] = ACTIONS(2289), + [anon_sym_STAR_STAR2] = ACTIONS(2289), + [anon_sym_PLUS_PLUS2] = ACTIONS(2289), + [anon_sym_SLASH2] = ACTIONS(2291), + [anon_sym_mod2] = ACTIONS(2289), + [anon_sym_SLASH_SLASH2] = ACTIONS(2289), + [anon_sym_PLUS2] = ACTIONS(2291), + [anon_sym_bit_DASHshl2] = ACTIONS(2289), + [anon_sym_bit_DASHshr2] = ACTIONS(2289), + [anon_sym_bit_DASHand2] = ACTIONS(2289), + [anon_sym_bit_DASHxor2] = ACTIONS(2289), + [anon_sym_bit_DASHor2] = ACTIONS(2289), + [anon_sym_err_GT] = ACTIONS(2291), + [anon_sym_out_GT] = ACTIONS(2291), + [anon_sym_e_GT] = ACTIONS(2291), + [anon_sym_o_GT] = ACTIONS(2291), + [anon_sym_err_PLUSout_GT] = ACTIONS(2291), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), + [anon_sym_o_PLUSe_GT] = ACTIONS(2291), + [anon_sym_e_PLUSo_GT] = ACTIONS(2291), + [anon_sym_err_GT_GT] = ACTIONS(2289), + [anon_sym_out_GT_GT] = ACTIONS(2289), + [anon_sym_e_GT_GT] = ACTIONS(2289), + [anon_sym_o_GT_GT] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(996)] = { + [sym__expr_parenthesized_immediate] = STATE(4759), + [sym_comment] = STATE(996), + [ts_builtin_sym_end] = ACTIONS(2062), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(997)] = { + [aux_sym__repeat_newline] = STATE(1353), + [sym__expression_parenthesized] = STATE(4396), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2115), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1826), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_comment] = STATE(997), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(2656), + [aux_sym_cmd_identifier_token3] = ACTIONS(189), + [aux_sym_cmd_identifier_token4] = ACTIONS(189), + [aux_sym_cmd_identifier_token5] = ACTIONS(189), + [sym__newline] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(2686), - [anon_sym_DOT_DOT] = ACTIONS(2688), - [aux_sym_expr_unary_token1] = ACTIONS(2690), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2692), - [anon_sym_DOT_DOT_LT] = ACTIONS(2692), - [aux_sym__val_number_decimal_token1] = ACTIONS(2694), - [aux_sym__val_number_decimal_token2] = ACTIONS(2696), - [aux_sym__val_number_decimal_token3] = ACTIONS(2698), - [aux_sym__val_number_decimal_token4] = ACTIONS(2698), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2700), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(986)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(986), + [STATE(998)] = { + [aux_sym__repeat_newline] = STATE(1058), + [sym_comment] = STATE(998), + [anon_sym_in] = ACTIONS(2198), + [sym__newline] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_err_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_GT_PIPE] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_GT2] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2198), + [anon_sym_xor2] = ACTIONS(2198), + [anon_sym_or2] = ACTIONS(2198), + [anon_sym_not_DASHin2] = ACTIONS(2198), + [anon_sym_has2] = ACTIONS(2198), + [anon_sym_not_DASHhas2] = ACTIONS(2198), + [anon_sym_starts_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), + [anon_sym_ends_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), + [anon_sym_EQ_EQ2] = ACTIONS(2198), + [anon_sym_BANG_EQ2] = ACTIONS(2198), + [anon_sym_LT2] = ACTIONS(2200), + [anon_sym_LT_EQ2] = ACTIONS(2198), + [anon_sym_GT_EQ2] = ACTIONS(2198), + [anon_sym_EQ_TILDE2] = ACTIONS(2198), + [anon_sym_BANG_TILDE2] = ACTIONS(2198), + [anon_sym_like2] = ACTIONS(2198), + [anon_sym_not_DASHlike2] = ACTIONS(2198), + [anon_sym_STAR_STAR2] = ACTIONS(2198), + [anon_sym_PLUS_PLUS2] = ACTIONS(2198), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2198), + [anon_sym_SLASH_SLASH2] = ACTIONS(2198), + [anon_sym_PLUS2] = ACTIONS(2200), + [anon_sym_bit_DASHshl2] = ACTIONS(2198), + [anon_sym_bit_DASHshr2] = ACTIONS(2198), + [anon_sym_bit_DASHand2] = ACTIONS(2198), + [anon_sym_bit_DASHxor2] = ACTIONS(2198), + [anon_sym_bit_DASHor2] = ACTIONS(2198), + [anon_sym_err_GT] = ACTIONS(2200), + [anon_sym_out_GT] = ACTIONS(2200), + [anon_sym_e_GT] = ACTIONS(2200), + [anon_sym_o_GT] = ACTIONS(2200), + [anon_sym_err_PLUSout_GT] = ACTIONS(2200), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), + [anon_sym_o_PLUSe_GT] = ACTIONS(2200), + [anon_sym_e_PLUSo_GT] = ACTIONS(2200), + [anon_sym_err_GT_GT] = ACTIONS(2198), + [anon_sym_out_GT_GT] = ACTIONS(2198), + [anon_sym_e_GT_GT] = ACTIONS(2198), + [anon_sym_o_GT_GT] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(999)] = { + [sym__expr_parenthesized_immediate] = STATE(4759), + [sym_comment] = STATE(999), + [ts_builtin_sym_end] = ACTIONS(2062), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1000)] = { + [sym__expr_parenthesized_immediate] = STATE(4759), + [sym_comment] = STATE(1000), + [ts_builtin_sym_end] = ACTIONS(2062), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1001)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1001), [anon_sym_in] = ACTIONS(2670), [sym__newline] = ACTIONS(2670), [anon_sym_SEMI] = ACTIONS(2670), @@ -120540,213 +121764,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(987)] = { - [sym_expr_unary] = STATE(2782), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_parenthesized] = STATE(2481), - [sym_val_range] = STATE(2782), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(2782), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(2515), - [sym_val_variable] = STATE(2478), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(2331), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(2581), - [sym__unquoted_with_expr] = STATE(2783), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(987), - [anon_sym_true] = ACTIONS(2674), - [anon_sym_false] = ACTIONS(2674), - [anon_sym_null] = ACTIONS(2676), - [aux_sym_cmd_identifier_token3] = ACTIONS(2678), - [aux_sym_cmd_identifier_token4] = ACTIONS(2678), - [aux_sym_cmd_identifier_token5] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2684), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(2686), - [anon_sym_DOT_DOT] = ACTIONS(2688), - [aux_sym_expr_unary_token1] = ACTIONS(2690), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2692), - [anon_sym_DOT_DOT_LT] = ACTIONS(2692), - [aux_sym__val_number_decimal_token1] = ACTIONS(2694), - [aux_sym__val_number_decimal_token2] = ACTIONS(2696), - [aux_sym__val_number_decimal_token3] = ACTIONS(2698), - [aux_sym__val_number_decimal_token4] = ACTIONS(2698), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2700), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [STATE(1002)] = { + [sym_comment] = STATE(1002), + [aux_sym_cmd_identifier_token2] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2325), + [anon_sym_SEMI] = ACTIONS(2325), + [anon_sym_PIPE] = ACTIONS(2325), + [anon_sym_err_GT_PIPE] = ACTIONS(2325), + [anon_sym_out_GT_PIPE] = ACTIONS(2325), + [anon_sym_e_GT_PIPE] = ACTIONS(2325), + [anon_sym_o_GT_PIPE] = ACTIONS(2325), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2325), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2325), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2325), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2325), + [anon_sym_RPAREN] = ACTIONS(2325), + [anon_sym_GT2] = ACTIONS(2327), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_RBRACE] = ACTIONS(2325), + [anon_sym_STAR2] = ACTIONS(2327), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2325), + [anon_sym_BANG_EQ2] = ACTIONS(2325), + [anon_sym_LT2] = ACTIONS(2327), + [anon_sym_LT_EQ2] = ACTIONS(2325), + [anon_sym_GT_EQ2] = ACTIONS(2325), + [anon_sym_EQ_TILDE2] = ACTIONS(2325), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2327), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2327), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2327), + [anon_sym_out_GT] = ACTIONS(2327), + [anon_sym_e_GT] = ACTIONS(2327), + [anon_sym_o_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT] = ACTIONS(2327), + [anon_sym_err_GT_GT] = ACTIONS(2325), + [anon_sym_out_GT_GT] = ACTIONS(2325), + [anon_sym_e_GT_GT] = ACTIONS(2325), + [anon_sym_o_GT_GT] = ACTIONS(2325), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2325), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2325), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2325), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2325), + [anon_sym_POUND] = ACTIONS(103), }, - [STATE(988)] = { - [sym_expr_unary] = STATE(2786), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_parenthesized] = STATE(2497), - [sym_val_range] = STATE(2786), - [sym__val_range] = STATE(4386), - [sym__value] = STATE(2786), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(2515), - [sym_val_variable] = STATE(2478), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(2331), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_unquoted] = STATE(2567), - [sym__unquoted_with_expr] = STATE(2797), - [sym__unquoted_anonymous_prefix] = STATE(4386), - [sym_comment] = STATE(988), - [anon_sym_true] = ACTIONS(2674), - [anon_sym_false] = ACTIONS(2674), - [anon_sym_null] = ACTIONS(2676), - [aux_sym_cmd_identifier_token3] = ACTIONS(2678), - [aux_sym_cmd_identifier_token4] = ACTIONS(2678), - [aux_sym_cmd_identifier_token5] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2684), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(2686), - [anon_sym_DOT_DOT] = ACTIONS(2688), - [aux_sym_expr_unary_token1] = ACTIONS(2690), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2692), - [anon_sym_DOT_DOT_LT] = ACTIONS(2692), - [aux_sym__val_number_decimal_token1] = ACTIONS(2694), - [aux_sym__val_number_decimal_token2] = ACTIONS(2696), - [aux_sym__val_number_decimal_token3] = ACTIONS(2698), - [aux_sym__val_number_decimal_token4] = ACTIONS(2698), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2700), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [STATE(1003)] = { + [aux_sym__repeat_newline] = STATE(1029), + [sym_comment] = STATE(1003), + [anon_sym_in] = ACTIONS(2279), + [sym__newline] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_err_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_GT_PIPE] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_GT2] = ACTIONS(2281), + [anon_sym_DASH2] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_STAR2] = ACTIONS(2281), + [anon_sym_and2] = ACTIONS(2279), + [anon_sym_xor2] = ACTIONS(2279), + [anon_sym_or2] = ACTIONS(2279), + [anon_sym_not_DASHin2] = ACTIONS(2279), + [anon_sym_has2] = ACTIONS(2279), + [anon_sym_not_DASHhas2] = ACTIONS(2279), + [anon_sym_starts_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), + [anon_sym_ends_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), + [anon_sym_EQ_EQ2] = ACTIONS(2279), + [anon_sym_BANG_EQ2] = ACTIONS(2279), + [anon_sym_LT2] = ACTIONS(2281), + [anon_sym_LT_EQ2] = ACTIONS(2279), + [anon_sym_GT_EQ2] = ACTIONS(2279), + [anon_sym_EQ_TILDE2] = ACTIONS(2279), + [anon_sym_BANG_TILDE2] = ACTIONS(2279), + [anon_sym_like2] = ACTIONS(2279), + [anon_sym_not_DASHlike2] = ACTIONS(2279), + [anon_sym_STAR_STAR2] = ACTIONS(2279), + [anon_sym_PLUS_PLUS2] = ACTIONS(2279), + [anon_sym_SLASH2] = ACTIONS(2281), + [anon_sym_mod2] = ACTIONS(2279), + [anon_sym_SLASH_SLASH2] = ACTIONS(2279), + [anon_sym_PLUS2] = ACTIONS(2281), + [anon_sym_bit_DASHshl2] = ACTIONS(2279), + [anon_sym_bit_DASHshr2] = ACTIONS(2279), + [anon_sym_bit_DASHand2] = ACTIONS(2279), + [anon_sym_bit_DASHxor2] = ACTIONS(2279), + [anon_sym_bit_DASHor2] = ACTIONS(2279), + [anon_sym_err_GT] = ACTIONS(2281), + [anon_sym_out_GT] = ACTIONS(2281), + [anon_sym_e_GT] = ACTIONS(2281), + [anon_sym_o_GT] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT] = ACTIONS(2281), + [anon_sym_err_GT_GT] = ACTIONS(2279), + [anon_sym_out_GT_GT] = ACTIONS(2279), + [anon_sym_e_GT_GT] = ACTIONS(2279), + [anon_sym_o_GT_GT] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(989)] = { - [aux_sym__repeat_newline] = STATE(1037), - [sym_comment] = STATE(989), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(1004)] = { + [sym__expr_parenthesized_immediate] = STATE(4759), + [sym_comment] = STATE(1004), + [ts_builtin_sym_end] = ACTIONS(2062), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(990)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(990), + [STATE(1005)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1005), [anon_sym_in] = ACTIONS(2670), [sym__newline] = ACTIONS(2670), [anon_sym_SEMI] = ACTIONS(2670), @@ -120812,77 +122036,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(991)] = { - [aux_sym__repeat_newline] = STATE(1038), - [sym_comment] = STATE(991), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(1006)] = { + [sym_comment] = STATE(1006), + [ts_builtin_sym_end] = ACTIONS(2574), + [anon_sym_in] = ACTIONS(2574), + [sym__newline] = ACTIONS(2574), + [anon_sym_SEMI] = ACTIONS(2574), + [anon_sym_PIPE] = ACTIONS(2574), + [anon_sym_err_GT_PIPE] = ACTIONS(2574), + [anon_sym_out_GT_PIPE] = ACTIONS(2574), + [anon_sym_e_GT_PIPE] = ACTIONS(2574), + [anon_sym_o_GT_PIPE] = ACTIONS(2574), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2574), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2574), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2574), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2574), + [anon_sym_GT2] = ACTIONS(2576), + [anon_sym_DASH2] = ACTIONS(2574), + [anon_sym_STAR2] = ACTIONS(2576), + [anon_sym_and2] = ACTIONS(2574), + [anon_sym_xor2] = ACTIONS(2574), + [anon_sym_or2] = ACTIONS(2574), + [anon_sym_not_DASHin2] = ACTIONS(2574), + [anon_sym_has2] = ACTIONS(2574), + [anon_sym_not_DASHhas2] = ACTIONS(2574), + [anon_sym_starts_DASHwith2] = ACTIONS(2574), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2574), + [anon_sym_ends_DASHwith2] = ACTIONS(2574), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2574), + [anon_sym_EQ_EQ2] = ACTIONS(2574), + [anon_sym_BANG_EQ2] = ACTIONS(2574), + [anon_sym_LT2] = ACTIONS(2576), + [anon_sym_LT_EQ2] = ACTIONS(2574), + [anon_sym_GT_EQ2] = ACTIONS(2574), + [anon_sym_EQ_TILDE2] = ACTIONS(2574), + [anon_sym_BANG_TILDE2] = ACTIONS(2574), + [anon_sym_like2] = ACTIONS(2574), + [anon_sym_not_DASHlike2] = ACTIONS(2574), + [anon_sym_LPAREN2] = ACTIONS(1956), + [anon_sym_STAR_STAR2] = ACTIONS(2574), + [anon_sym_PLUS_PLUS2] = ACTIONS(2574), + [anon_sym_SLASH2] = ACTIONS(2576), + [anon_sym_mod2] = ACTIONS(2574), + [anon_sym_SLASH_SLASH2] = ACTIONS(2574), + [anon_sym_PLUS2] = ACTIONS(2576), + [anon_sym_bit_DASHshl2] = ACTIONS(2574), + [anon_sym_bit_DASHshr2] = ACTIONS(2574), + [anon_sym_bit_DASHand2] = ACTIONS(2574), + [anon_sym_bit_DASHxor2] = ACTIONS(2574), + [anon_sym_bit_DASHor2] = ACTIONS(2574), + [anon_sym_err_GT] = ACTIONS(2576), + [anon_sym_out_GT] = ACTIONS(2576), + [anon_sym_e_GT] = ACTIONS(2576), + [anon_sym_o_GT] = ACTIONS(2576), + [anon_sym_err_PLUSout_GT] = ACTIONS(2576), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2576), + [anon_sym_o_PLUSe_GT] = ACTIONS(2576), + [anon_sym_e_PLUSo_GT] = ACTIONS(2576), + [anon_sym_err_GT_GT] = ACTIONS(2574), + [anon_sym_out_GT_GT] = ACTIONS(2574), + [anon_sym_e_GT_GT] = ACTIONS(2574), + [anon_sym_o_GT_GT] = ACTIONS(2574), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2574), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2574), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2574), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2574), + [sym__unquoted_pattern] = ACTIONS(1962), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(992)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(992), + [STATE(1007)] = { + [aux_sym__repeat_newline] = STATE(1106), + [sym_comment] = STATE(1007), + [anon_sym_in] = ACTIONS(2289), + [sym__newline] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_err_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_GT_PIPE] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), + [anon_sym_RPAREN] = ACTIONS(2289), + [anon_sym_GT2] = ACTIONS(2291), + [anon_sym_DASH2] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_STAR2] = ACTIONS(2291), + [anon_sym_and2] = ACTIONS(2289), + [anon_sym_xor2] = ACTIONS(2289), + [anon_sym_or2] = ACTIONS(2289), + [anon_sym_not_DASHin2] = ACTIONS(2289), + [anon_sym_has2] = ACTIONS(2289), + [anon_sym_not_DASHhas2] = ACTIONS(2289), + [anon_sym_starts_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), + [anon_sym_ends_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), + [anon_sym_EQ_EQ2] = ACTIONS(2289), + [anon_sym_BANG_EQ2] = ACTIONS(2289), + [anon_sym_LT2] = ACTIONS(2291), + [anon_sym_LT_EQ2] = ACTIONS(2289), + [anon_sym_GT_EQ2] = ACTIONS(2289), + [anon_sym_EQ_TILDE2] = ACTIONS(2289), + [anon_sym_BANG_TILDE2] = ACTIONS(2289), + [anon_sym_like2] = ACTIONS(2289), + [anon_sym_not_DASHlike2] = ACTIONS(2289), + [anon_sym_STAR_STAR2] = ACTIONS(2289), + [anon_sym_PLUS_PLUS2] = ACTIONS(2289), + [anon_sym_SLASH2] = ACTIONS(2291), + [anon_sym_mod2] = ACTIONS(2289), + [anon_sym_SLASH_SLASH2] = ACTIONS(2289), + [anon_sym_PLUS2] = ACTIONS(2291), + [anon_sym_bit_DASHshl2] = ACTIONS(2289), + [anon_sym_bit_DASHshr2] = ACTIONS(2289), + [anon_sym_bit_DASHand2] = ACTIONS(2289), + [anon_sym_bit_DASHxor2] = ACTIONS(2289), + [anon_sym_bit_DASHor2] = ACTIONS(2289), + [anon_sym_err_GT] = ACTIONS(2291), + [anon_sym_out_GT] = ACTIONS(2291), + [anon_sym_e_GT] = ACTIONS(2291), + [anon_sym_o_GT] = ACTIONS(2291), + [anon_sym_err_PLUSout_GT] = ACTIONS(2291), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), + [anon_sym_o_PLUSe_GT] = ACTIONS(2291), + [anon_sym_e_PLUSo_GT] = ACTIONS(2291), + [anon_sym_err_GT_GT] = ACTIONS(2289), + [anon_sym_out_GT_GT] = ACTIONS(2289), + [anon_sym_e_GT_GT] = ACTIONS(2289), + [anon_sym_o_GT_GT] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1008)] = { + [aux_sym__repeat_newline] = STATE(1030), + [sym_comment] = STATE(1008), + [anon_sym_in] = ACTIONS(2279), + [sym__newline] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_err_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_GT_PIPE] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_GT2] = ACTIONS(2281), + [anon_sym_DASH2] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_STAR2] = ACTIONS(2281), + [anon_sym_and2] = ACTIONS(2279), + [anon_sym_xor2] = ACTIONS(2279), + [anon_sym_or2] = ACTIONS(2279), + [anon_sym_not_DASHin2] = ACTIONS(2279), + [anon_sym_has2] = ACTIONS(2279), + [anon_sym_not_DASHhas2] = ACTIONS(2279), + [anon_sym_starts_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), + [anon_sym_ends_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), + [anon_sym_EQ_EQ2] = ACTIONS(2279), + [anon_sym_BANG_EQ2] = ACTIONS(2279), + [anon_sym_LT2] = ACTIONS(2281), + [anon_sym_LT_EQ2] = ACTIONS(2279), + [anon_sym_GT_EQ2] = ACTIONS(2279), + [anon_sym_EQ_TILDE2] = ACTIONS(2279), + [anon_sym_BANG_TILDE2] = ACTIONS(2279), + [anon_sym_like2] = ACTIONS(2279), + [anon_sym_not_DASHlike2] = ACTIONS(2279), + [anon_sym_STAR_STAR2] = ACTIONS(2279), + [anon_sym_PLUS_PLUS2] = ACTIONS(2279), + [anon_sym_SLASH2] = ACTIONS(2281), + [anon_sym_mod2] = ACTIONS(2279), + [anon_sym_SLASH_SLASH2] = ACTIONS(2279), + [anon_sym_PLUS2] = ACTIONS(2281), + [anon_sym_bit_DASHshl2] = ACTIONS(2279), + [anon_sym_bit_DASHshr2] = ACTIONS(2279), + [anon_sym_bit_DASHand2] = ACTIONS(2279), + [anon_sym_bit_DASHxor2] = ACTIONS(2279), + [anon_sym_bit_DASHor2] = ACTIONS(2279), + [anon_sym_err_GT] = ACTIONS(2281), + [anon_sym_out_GT] = ACTIONS(2281), + [anon_sym_e_GT] = ACTIONS(2281), + [anon_sym_o_GT] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT] = ACTIONS(2281), + [anon_sym_err_GT_GT] = ACTIONS(2279), + [anon_sym_out_GT_GT] = ACTIONS(2279), + [anon_sym_e_GT_GT] = ACTIONS(2279), + [anon_sym_o_GT_GT] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1009)] = { + [aux_sym__repeat_newline] = STATE(1109), + [sym_comment] = STATE(1009), + [anon_sym_in] = ACTIONS(2289), + [sym__newline] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_err_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_GT_PIPE] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), + [anon_sym_RPAREN] = ACTIONS(2289), + [anon_sym_GT2] = ACTIONS(2291), + [anon_sym_DASH2] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_STAR2] = ACTIONS(2291), + [anon_sym_and2] = ACTIONS(2289), + [anon_sym_xor2] = ACTIONS(2289), + [anon_sym_or2] = ACTIONS(2289), + [anon_sym_not_DASHin2] = ACTIONS(2289), + [anon_sym_has2] = ACTIONS(2289), + [anon_sym_not_DASHhas2] = ACTIONS(2289), + [anon_sym_starts_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), + [anon_sym_ends_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), + [anon_sym_EQ_EQ2] = ACTIONS(2289), + [anon_sym_BANG_EQ2] = ACTIONS(2289), + [anon_sym_LT2] = ACTIONS(2291), + [anon_sym_LT_EQ2] = ACTIONS(2289), + [anon_sym_GT_EQ2] = ACTIONS(2289), + [anon_sym_EQ_TILDE2] = ACTIONS(2289), + [anon_sym_BANG_TILDE2] = ACTIONS(2289), + [anon_sym_like2] = ACTIONS(2289), + [anon_sym_not_DASHlike2] = ACTIONS(2289), + [anon_sym_STAR_STAR2] = ACTIONS(2289), + [anon_sym_PLUS_PLUS2] = ACTIONS(2289), + [anon_sym_SLASH2] = ACTIONS(2291), + [anon_sym_mod2] = ACTIONS(2289), + [anon_sym_SLASH_SLASH2] = ACTIONS(2289), + [anon_sym_PLUS2] = ACTIONS(2291), + [anon_sym_bit_DASHshl2] = ACTIONS(2289), + [anon_sym_bit_DASHshr2] = ACTIONS(2289), + [anon_sym_bit_DASHand2] = ACTIONS(2289), + [anon_sym_bit_DASHxor2] = ACTIONS(2289), + [anon_sym_bit_DASHor2] = ACTIONS(2289), + [anon_sym_err_GT] = ACTIONS(2291), + [anon_sym_out_GT] = ACTIONS(2291), + [anon_sym_e_GT] = ACTIONS(2291), + [anon_sym_o_GT] = ACTIONS(2291), + [anon_sym_err_PLUSout_GT] = ACTIONS(2291), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), + [anon_sym_o_PLUSe_GT] = ACTIONS(2291), + [anon_sym_e_PLUSo_GT] = ACTIONS(2291), + [anon_sym_err_GT_GT] = ACTIONS(2289), + [anon_sym_out_GT_GT] = ACTIONS(2289), + [anon_sym_e_GT_GT] = ACTIONS(2289), + [anon_sym_o_GT_GT] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1010)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1010), [anon_sym_in] = ACTIONS(2670), [sym__newline] = ACTIONS(2670), [anon_sym_SEMI] = ACTIONS(2670), @@ -120948,77 +122376,689 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(993)] = { - [aux_sym__repeat_newline] = STATE(1039), - [sym_comment] = STATE(993), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(1011)] = { + [aux_sym__repeat_newline] = STATE(1112), + [sym_comment] = STATE(1011), + [anon_sym_in] = ACTIONS(2289), + [sym__newline] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_err_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_GT_PIPE] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), + [anon_sym_RPAREN] = ACTIONS(2289), + [anon_sym_GT2] = ACTIONS(2291), + [anon_sym_DASH2] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_STAR2] = ACTIONS(2291), + [anon_sym_and2] = ACTIONS(2289), + [anon_sym_xor2] = ACTIONS(2289), + [anon_sym_or2] = ACTIONS(2289), + [anon_sym_not_DASHin2] = ACTIONS(2289), + [anon_sym_has2] = ACTIONS(2289), + [anon_sym_not_DASHhas2] = ACTIONS(2289), + [anon_sym_starts_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), + [anon_sym_ends_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), + [anon_sym_EQ_EQ2] = ACTIONS(2289), + [anon_sym_BANG_EQ2] = ACTIONS(2289), + [anon_sym_LT2] = ACTIONS(2291), + [anon_sym_LT_EQ2] = ACTIONS(2289), + [anon_sym_GT_EQ2] = ACTIONS(2289), + [anon_sym_EQ_TILDE2] = ACTIONS(2289), + [anon_sym_BANG_TILDE2] = ACTIONS(2289), + [anon_sym_like2] = ACTIONS(2289), + [anon_sym_not_DASHlike2] = ACTIONS(2289), + [anon_sym_STAR_STAR2] = ACTIONS(2289), + [anon_sym_PLUS_PLUS2] = ACTIONS(2289), + [anon_sym_SLASH2] = ACTIONS(2291), + [anon_sym_mod2] = ACTIONS(2289), + [anon_sym_SLASH_SLASH2] = ACTIONS(2289), + [anon_sym_PLUS2] = ACTIONS(2291), + [anon_sym_bit_DASHshl2] = ACTIONS(2289), + [anon_sym_bit_DASHshr2] = ACTIONS(2289), + [anon_sym_bit_DASHand2] = ACTIONS(2289), + [anon_sym_bit_DASHxor2] = ACTIONS(2289), + [anon_sym_bit_DASHor2] = ACTIONS(2289), + [anon_sym_err_GT] = ACTIONS(2291), + [anon_sym_out_GT] = ACTIONS(2291), + [anon_sym_e_GT] = ACTIONS(2291), + [anon_sym_o_GT] = ACTIONS(2291), + [anon_sym_err_PLUSout_GT] = ACTIONS(2291), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), + [anon_sym_o_PLUSe_GT] = ACTIONS(2291), + [anon_sym_e_PLUSo_GT] = ACTIONS(2291), + [anon_sym_err_GT_GT] = ACTIONS(2289), + [anon_sym_out_GT_GT] = ACTIONS(2289), + [anon_sym_e_GT_GT] = ACTIONS(2289), + [anon_sym_o_GT_GT] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(994)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(994), + [STATE(1012)] = { + [aux_sym__repeat_newline] = STATE(1115), + [sym_comment] = STATE(1012), + [anon_sym_in] = ACTIONS(2289), + [sym__newline] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_err_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_GT_PIPE] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), + [anon_sym_RPAREN] = ACTIONS(2289), + [anon_sym_GT2] = ACTIONS(2291), + [anon_sym_DASH2] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_STAR2] = ACTIONS(2291), + [anon_sym_and2] = ACTIONS(2289), + [anon_sym_xor2] = ACTIONS(2289), + [anon_sym_or2] = ACTIONS(2289), + [anon_sym_not_DASHin2] = ACTIONS(2289), + [anon_sym_has2] = ACTIONS(2289), + [anon_sym_not_DASHhas2] = ACTIONS(2289), + [anon_sym_starts_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), + [anon_sym_ends_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), + [anon_sym_EQ_EQ2] = ACTIONS(2289), + [anon_sym_BANG_EQ2] = ACTIONS(2289), + [anon_sym_LT2] = ACTIONS(2291), + [anon_sym_LT_EQ2] = ACTIONS(2289), + [anon_sym_GT_EQ2] = ACTIONS(2289), + [anon_sym_EQ_TILDE2] = ACTIONS(2289), + [anon_sym_BANG_TILDE2] = ACTIONS(2289), + [anon_sym_like2] = ACTIONS(2289), + [anon_sym_not_DASHlike2] = ACTIONS(2289), + [anon_sym_STAR_STAR2] = ACTIONS(2289), + [anon_sym_PLUS_PLUS2] = ACTIONS(2289), + [anon_sym_SLASH2] = ACTIONS(2291), + [anon_sym_mod2] = ACTIONS(2289), + [anon_sym_SLASH_SLASH2] = ACTIONS(2289), + [anon_sym_PLUS2] = ACTIONS(2291), + [anon_sym_bit_DASHshl2] = ACTIONS(2289), + [anon_sym_bit_DASHshr2] = ACTIONS(2289), + [anon_sym_bit_DASHand2] = ACTIONS(2289), + [anon_sym_bit_DASHxor2] = ACTIONS(2289), + [anon_sym_bit_DASHor2] = ACTIONS(2289), + [anon_sym_err_GT] = ACTIONS(2291), + [anon_sym_out_GT] = ACTIONS(2291), + [anon_sym_e_GT] = ACTIONS(2291), + [anon_sym_o_GT] = ACTIONS(2291), + [anon_sym_err_PLUSout_GT] = ACTIONS(2291), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), + [anon_sym_o_PLUSe_GT] = ACTIONS(2291), + [anon_sym_e_PLUSo_GT] = ACTIONS(2291), + [anon_sym_err_GT_GT] = ACTIONS(2289), + [anon_sym_out_GT_GT] = ACTIONS(2289), + [anon_sym_e_GT_GT] = ACTIONS(2289), + [anon_sym_o_GT_GT] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1013)] = { + [aux_sym__repeat_newline] = STATE(1129), + [sym_comment] = STATE(1013), + [anon_sym_in] = ACTIONS(2198), + [sym__newline] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_err_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_GT_PIPE] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_GT2] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2198), + [anon_sym_xor2] = ACTIONS(2198), + [anon_sym_or2] = ACTIONS(2198), + [anon_sym_not_DASHin2] = ACTIONS(2198), + [anon_sym_has2] = ACTIONS(2198), + [anon_sym_not_DASHhas2] = ACTIONS(2198), + [anon_sym_starts_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), + [anon_sym_ends_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), + [anon_sym_EQ_EQ2] = ACTIONS(2198), + [anon_sym_BANG_EQ2] = ACTIONS(2198), + [anon_sym_LT2] = ACTIONS(2200), + [anon_sym_LT_EQ2] = ACTIONS(2198), + [anon_sym_GT_EQ2] = ACTIONS(2198), + [anon_sym_EQ_TILDE2] = ACTIONS(2198), + [anon_sym_BANG_TILDE2] = ACTIONS(2198), + [anon_sym_like2] = ACTIONS(2198), + [anon_sym_not_DASHlike2] = ACTIONS(2198), + [anon_sym_STAR_STAR2] = ACTIONS(2198), + [anon_sym_PLUS_PLUS2] = ACTIONS(2198), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2198), + [anon_sym_SLASH_SLASH2] = ACTIONS(2198), + [anon_sym_PLUS2] = ACTIONS(2200), + [anon_sym_bit_DASHshl2] = ACTIONS(2198), + [anon_sym_bit_DASHshr2] = ACTIONS(2198), + [anon_sym_bit_DASHand2] = ACTIONS(2198), + [anon_sym_bit_DASHxor2] = ACTIONS(2198), + [anon_sym_bit_DASHor2] = ACTIONS(2198), + [anon_sym_err_GT] = ACTIONS(2200), + [anon_sym_out_GT] = ACTIONS(2200), + [anon_sym_e_GT] = ACTIONS(2200), + [anon_sym_o_GT] = ACTIONS(2200), + [anon_sym_err_PLUSout_GT] = ACTIONS(2200), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), + [anon_sym_o_PLUSe_GT] = ACTIONS(2200), + [anon_sym_e_PLUSo_GT] = ACTIONS(2200), + [anon_sym_err_GT_GT] = ACTIONS(2198), + [anon_sym_out_GT_GT] = ACTIONS(2198), + [anon_sym_e_GT_GT] = ACTIONS(2198), + [anon_sym_o_GT_GT] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1014)] = { + [sym__expr_parenthesized_immediate] = STATE(4759), + [sym_comment] = STATE(1014), + [ts_builtin_sym_end] = ACTIONS(2062), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1015)] = { + [sym_comment] = STATE(1015), + [ts_builtin_sym_end] = ACTIONS(1952), + [anon_sym_in] = ACTIONS(1952), + [sym__newline] = ACTIONS(1952), + [anon_sym_SEMI] = ACTIONS(1952), + [anon_sym_PIPE] = ACTIONS(1952), + [anon_sym_err_GT_PIPE] = ACTIONS(1952), + [anon_sym_out_GT_PIPE] = ACTIONS(1952), + [anon_sym_e_GT_PIPE] = ACTIONS(1952), + [anon_sym_o_GT_PIPE] = ACTIONS(1952), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1952), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1952), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1952), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1952), + [anon_sym_GT2] = ACTIONS(1954), + [anon_sym_DASH2] = ACTIONS(1952), + [anon_sym_STAR2] = ACTIONS(1954), + [anon_sym_and2] = ACTIONS(1952), + [anon_sym_xor2] = ACTIONS(1952), + [anon_sym_or2] = ACTIONS(1952), + [anon_sym_not_DASHin2] = ACTIONS(1952), + [anon_sym_has2] = ACTIONS(1952), + [anon_sym_not_DASHhas2] = ACTIONS(1952), + [anon_sym_starts_DASHwith2] = ACTIONS(1952), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1952), + [anon_sym_ends_DASHwith2] = ACTIONS(1952), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1952), + [anon_sym_EQ_EQ2] = ACTIONS(1952), + [anon_sym_BANG_EQ2] = ACTIONS(1952), + [anon_sym_LT2] = ACTIONS(1954), + [anon_sym_LT_EQ2] = ACTIONS(1952), + [anon_sym_GT_EQ2] = ACTIONS(1952), + [anon_sym_EQ_TILDE2] = ACTIONS(1952), + [anon_sym_BANG_TILDE2] = ACTIONS(1952), + [anon_sym_like2] = ACTIONS(1952), + [anon_sym_not_DASHlike2] = ACTIONS(1952), + [anon_sym_LPAREN2] = ACTIONS(1956), + [anon_sym_STAR_STAR2] = ACTIONS(1952), + [anon_sym_PLUS_PLUS2] = ACTIONS(1952), + [anon_sym_SLASH2] = ACTIONS(1954), + [anon_sym_mod2] = ACTIONS(1952), + [anon_sym_SLASH_SLASH2] = ACTIONS(1952), + [anon_sym_PLUS2] = ACTIONS(1954), + [anon_sym_bit_DASHshl2] = ACTIONS(1952), + [anon_sym_bit_DASHshr2] = ACTIONS(1952), + [anon_sym_bit_DASHand2] = ACTIONS(1952), + [anon_sym_bit_DASHxor2] = ACTIONS(1952), + [anon_sym_bit_DASHor2] = ACTIONS(1952), + [anon_sym_err_GT] = ACTIONS(1954), + [anon_sym_out_GT] = ACTIONS(1954), + [anon_sym_e_GT] = ACTIONS(1954), + [anon_sym_o_GT] = ACTIONS(1954), + [anon_sym_err_PLUSout_GT] = ACTIONS(1954), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1954), + [anon_sym_o_PLUSe_GT] = ACTIONS(1954), + [anon_sym_e_PLUSo_GT] = ACTIONS(1954), + [anon_sym_err_GT_GT] = ACTIONS(1952), + [anon_sym_out_GT_GT] = ACTIONS(1952), + [anon_sym_e_GT_GT] = ACTIONS(1952), + [anon_sym_o_GT_GT] = ACTIONS(1952), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1952), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1952), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1952), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1952), + [sym__unquoted_pattern] = ACTIONS(1962), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1016)] = { + [aux_sym__repeat_newline] = STATE(1001), + [sym_comment] = STATE(1016), + [anon_sym_in] = ACTIONS(2198), + [sym__newline] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_err_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_GT_PIPE] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_GT2] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2198), + [anon_sym_xor2] = ACTIONS(2198), + [anon_sym_or2] = ACTIONS(2198), + [anon_sym_not_DASHin2] = ACTIONS(2198), + [anon_sym_has2] = ACTIONS(2198), + [anon_sym_not_DASHhas2] = ACTIONS(2198), + [anon_sym_starts_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), + [anon_sym_ends_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), + [anon_sym_EQ_EQ2] = ACTIONS(2198), + [anon_sym_BANG_EQ2] = ACTIONS(2198), + [anon_sym_LT2] = ACTIONS(2200), + [anon_sym_LT_EQ2] = ACTIONS(2198), + [anon_sym_GT_EQ2] = ACTIONS(2198), + [anon_sym_EQ_TILDE2] = ACTIONS(2198), + [anon_sym_BANG_TILDE2] = ACTIONS(2198), + [anon_sym_like2] = ACTIONS(2198), + [anon_sym_not_DASHlike2] = ACTIONS(2198), + [anon_sym_STAR_STAR2] = ACTIONS(2198), + [anon_sym_PLUS_PLUS2] = ACTIONS(2198), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2198), + [anon_sym_SLASH_SLASH2] = ACTIONS(2198), + [anon_sym_PLUS2] = ACTIONS(2200), + [anon_sym_bit_DASHshl2] = ACTIONS(2198), + [anon_sym_bit_DASHshr2] = ACTIONS(2198), + [anon_sym_bit_DASHand2] = ACTIONS(2198), + [anon_sym_bit_DASHxor2] = ACTIONS(2198), + [anon_sym_bit_DASHor2] = ACTIONS(2198), + [anon_sym_err_GT] = ACTIONS(2200), + [anon_sym_out_GT] = ACTIONS(2200), + [anon_sym_e_GT] = ACTIONS(2200), + [anon_sym_o_GT] = ACTIONS(2200), + [anon_sym_err_PLUSout_GT] = ACTIONS(2200), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), + [anon_sym_o_PLUSe_GT] = ACTIONS(2200), + [anon_sym_e_PLUSo_GT] = ACTIONS(2200), + [anon_sym_err_GT_GT] = ACTIONS(2198), + [anon_sym_out_GT_GT] = ACTIONS(2198), + [anon_sym_e_GT_GT] = ACTIONS(2198), + [anon_sym_o_GT_GT] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1017)] = { + [sym_comment] = STATE(1017), + [aux_sym_cmd_identifier_token2] = ACTIONS(2662), + [anon_sym_in] = ACTIONS(793), + [sym__newline] = ACTIONS(890), + [anon_sym_SEMI] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(890), + [anon_sym_err_GT_PIPE] = ACTIONS(890), + [anon_sym_out_GT_PIPE] = ACTIONS(890), + [anon_sym_e_GT_PIPE] = ACTIONS(890), + [anon_sym_o_GT_PIPE] = ACTIONS(890), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(890), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(890), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(890), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(890), + [anon_sym_GT2] = ACTIONS(793), + [anon_sym_DASH2] = ACTIONS(793), + [anon_sym_RBRACE] = ACTIONS(890), + [anon_sym_STAR2] = ACTIONS(793), + [anon_sym_and2] = ACTIONS(793), + [anon_sym_xor2] = ACTIONS(793), + [anon_sym_or2] = ACTIONS(793), + [anon_sym_not_DASHin2] = ACTIONS(793), + [anon_sym_has2] = ACTIONS(793), + [anon_sym_not_DASHhas2] = ACTIONS(793), + [anon_sym_starts_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), + [anon_sym_ends_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), + [anon_sym_EQ_EQ2] = ACTIONS(890), + [anon_sym_BANG_EQ2] = ACTIONS(890), + [anon_sym_LT2] = ACTIONS(793), + [anon_sym_LT_EQ2] = ACTIONS(890), + [anon_sym_GT_EQ2] = ACTIONS(890), + [anon_sym_EQ_TILDE2] = ACTIONS(890), + [anon_sym_BANG_TILDE2] = ACTIONS(793), + [anon_sym_like2] = ACTIONS(793), + [anon_sym_not_DASHlike2] = ACTIONS(793), + [anon_sym_STAR_STAR2] = ACTIONS(793), + [anon_sym_PLUS_PLUS2] = ACTIONS(793), + [anon_sym_SLASH2] = ACTIONS(793), + [anon_sym_mod2] = ACTIONS(793), + [anon_sym_SLASH_SLASH2] = ACTIONS(793), + [anon_sym_PLUS2] = ACTIONS(793), + [anon_sym_bit_DASHshl2] = ACTIONS(793), + [anon_sym_bit_DASHshr2] = ACTIONS(793), + [anon_sym_bit_DASHand2] = ACTIONS(793), + [anon_sym_bit_DASHxor2] = ACTIONS(793), + [anon_sym_bit_DASHor2] = ACTIONS(793), + [anon_sym_COLON2] = ACTIONS(890), + [anon_sym_err_GT] = ACTIONS(793), + [anon_sym_out_GT] = ACTIONS(793), + [anon_sym_e_GT] = ACTIONS(793), + [anon_sym_o_GT] = ACTIONS(793), + [anon_sym_err_PLUSout_GT] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT] = ACTIONS(793), + [anon_sym_o_PLUSe_GT] = ACTIONS(793), + [anon_sym_e_PLUSo_GT] = ACTIONS(793), + [anon_sym_err_GT_GT] = ACTIONS(890), + [anon_sym_out_GT_GT] = ACTIONS(890), + [anon_sym_e_GT_GT] = ACTIONS(890), + [anon_sym_o_GT_GT] = ACTIONS(890), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(890), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(890), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(890), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(890), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(1018)] = { + [aux_sym__repeat_newline] = STATE(1063), + [sym_comment] = STATE(1018), + [anon_sym_in] = ACTIONS(2198), + [sym__newline] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_err_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_GT_PIPE] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_GT2] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2198), + [anon_sym_xor2] = ACTIONS(2198), + [anon_sym_or2] = ACTIONS(2198), + [anon_sym_not_DASHin2] = ACTIONS(2198), + [anon_sym_has2] = ACTIONS(2198), + [anon_sym_not_DASHhas2] = ACTIONS(2198), + [anon_sym_starts_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), + [anon_sym_ends_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), + [anon_sym_EQ_EQ2] = ACTIONS(2198), + [anon_sym_BANG_EQ2] = ACTIONS(2198), + [anon_sym_LT2] = ACTIONS(2200), + [anon_sym_LT_EQ2] = ACTIONS(2198), + [anon_sym_GT_EQ2] = ACTIONS(2198), + [anon_sym_EQ_TILDE2] = ACTIONS(2198), + [anon_sym_BANG_TILDE2] = ACTIONS(2198), + [anon_sym_like2] = ACTIONS(2198), + [anon_sym_not_DASHlike2] = ACTIONS(2198), + [anon_sym_STAR_STAR2] = ACTIONS(2198), + [anon_sym_PLUS_PLUS2] = ACTIONS(2198), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2198), + [anon_sym_SLASH_SLASH2] = ACTIONS(2198), + [anon_sym_PLUS2] = ACTIONS(2200), + [anon_sym_bit_DASHshl2] = ACTIONS(2198), + [anon_sym_bit_DASHshr2] = ACTIONS(2198), + [anon_sym_bit_DASHand2] = ACTIONS(2198), + [anon_sym_bit_DASHxor2] = ACTIONS(2198), + [anon_sym_bit_DASHor2] = ACTIONS(2198), + [anon_sym_err_GT] = ACTIONS(2200), + [anon_sym_out_GT] = ACTIONS(2200), + [anon_sym_e_GT] = ACTIONS(2200), + [anon_sym_o_GT] = ACTIONS(2200), + [anon_sym_err_PLUSout_GT] = ACTIONS(2200), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), + [anon_sym_o_PLUSe_GT] = ACTIONS(2200), + [anon_sym_e_PLUSo_GT] = ACTIONS(2200), + [anon_sym_err_GT_GT] = ACTIONS(2198), + [anon_sym_out_GT_GT] = ACTIONS(2198), + [anon_sym_e_GT_GT] = ACTIONS(2198), + [anon_sym_o_GT_GT] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1019)] = { + [aux_sym__repeat_newline] = STATE(1031), + [sym_comment] = STATE(1019), + [anon_sym_in] = ACTIONS(2279), + [sym__newline] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_err_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_GT_PIPE] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_GT2] = ACTIONS(2281), + [anon_sym_DASH2] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_STAR2] = ACTIONS(2281), + [anon_sym_and2] = ACTIONS(2279), + [anon_sym_xor2] = ACTIONS(2279), + [anon_sym_or2] = ACTIONS(2279), + [anon_sym_not_DASHin2] = ACTIONS(2279), + [anon_sym_has2] = ACTIONS(2279), + [anon_sym_not_DASHhas2] = ACTIONS(2279), + [anon_sym_starts_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), + [anon_sym_ends_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), + [anon_sym_EQ_EQ2] = ACTIONS(2279), + [anon_sym_BANG_EQ2] = ACTIONS(2279), + [anon_sym_LT2] = ACTIONS(2281), + [anon_sym_LT_EQ2] = ACTIONS(2279), + [anon_sym_GT_EQ2] = ACTIONS(2279), + [anon_sym_EQ_TILDE2] = ACTIONS(2279), + [anon_sym_BANG_TILDE2] = ACTIONS(2279), + [anon_sym_like2] = ACTIONS(2279), + [anon_sym_not_DASHlike2] = ACTIONS(2279), + [anon_sym_STAR_STAR2] = ACTIONS(2279), + [anon_sym_PLUS_PLUS2] = ACTIONS(2279), + [anon_sym_SLASH2] = ACTIONS(2281), + [anon_sym_mod2] = ACTIONS(2279), + [anon_sym_SLASH_SLASH2] = ACTIONS(2279), + [anon_sym_PLUS2] = ACTIONS(2281), + [anon_sym_bit_DASHshl2] = ACTIONS(2279), + [anon_sym_bit_DASHshr2] = ACTIONS(2279), + [anon_sym_bit_DASHand2] = ACTIONS(2279), + [anon_sym_bit_DASHxor2] = ACTIONS(2279), + [anon_sym_bit_DASHor2] = ACTIONS(2279), + [anon_sym_err_GT] = ACTIONS(2281), + [anon_sym_out_GT] = ACTIONS(2281), + [anon_sym_e_GT] = ACTIONS(2281), + [anon_sym_o_GT] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT] = ACTIONS(2281), + [anon_sym_err_GT_GT] = ACTIONS(2279), + [anon_sym_out_GT_GT] = ACTIONS(2279), + [anon_sym_e_GT_GT] = ACTIONS(2279), + [anon_sym_o_GT_GT] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1020)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1020), + [anon_sym_in] = ACTIONS(2680), + [sym__newline] = ACTIONS(2680), + [anon_sym_SEMI] = ACTIONS(2680), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_err_GT_PIPE] = ACTIONS(2680), + [anon_sym_out_GT_PIPE] = ACTIONS(2680), + [anon_sym_e_GT_PIPE] = ACTIONS(2680), + [anon_sym_o_GT_PIPE] = ACTIONS(2680), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2680), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2680), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2680), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2680), + [anon_sym_RPAREN] = ACTIONS(2680), + [anon_sym_GT2] = ACTIONS(2682), + [anon_sym_DASH2] = ACTIONS(2680), + [anon_sym_LBRACE] = ACTIONS(2680), + [anon_sym_STAR2] = ACTIONS(2682), + [anon_sym_and2] = ACTIONS(2680), + [anon_sym_xor2] = ACTIONS(2680), + [anon_sym_or2] = ACTIONS(2680), + [anon_sym_not_DASHin2] = ACTIONS(2680), + [anon_sym_has2] = ACTIONS(2680), + [anon_sym_not_DASHhas2] = ACTIONS(2680), + [anon_sym_starts_DASHwith2] = ACTIONS(2680), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2680), + [anon_sym_ends_DASHwith2] = ACTIONS(2680), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2680), + [anon_sym_EQ_EQ2] = ACTIONS(2680), + [anon_sym_BANG_EQ2] = ACTIONS(2680), + [anon_sym_LT2] = ACTIONS(2682), + [anon_sym_LT_EQ2] = ACTIONS(2680), + [anon_sym_GT_EQ2] = ACTIONS(2680), + [anon_sym_EQ_TILDE2] = ACTIONS(2680), + [anon_sym_BANG_TILDE2] = ACTIONS(2680), + [anon_sym_like2] = ACTIONS(2680), + [anon_sym_not_DASHlike2] = ACTIONS(2680), + [anon_sym_STAR_STAR2] = ACTIONS(2680), + [anon_sym_PLUS_PLUS2] = ACTIONS(2680), + [anon_sym_SLASH2] = ACTIONS(2682), + [anon_sym_mod2] = ACTIONS(2680), + [anon_sym_SLASH_SLASH2] = ACTIONS(2680), + [anon_sym_PLUS2] = ACTIONS(2682), + [anon_sym_bit_DASHshl2] = ACTIONS(2680), + [anon_sym_bit_DASHshr2] = ACTIONS(2680), + [anon_sym_bit_DASHand2] = ACTIONS(2680), + [anon_sym_bit_DASHxor2] = ACTIONS(2680), + [anon_sym_bit_DASHor2] = ACTIONS(2680), + [anon_sym_err_GT] = ACTIONS(2682), + [anon_sym_out_GT] = ACTIONS(2682), + [anon_sym_e_GT] = ACTIONS(2682), + [anon_sym_o_GT] = ACTIONS(2682), + [anon_sym_err_PLUSout_GT] = ACTIONS(2682), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2682), + [anon_sym_o_PLUSe_GT] = ACTIONS(2682), + [anon_sym_e_PLUSo_GT] = ACTIONS(2682), + [anon_sym_err_GT_GT] = ACTIONS(2680), + [anon_sym_out_GT_GT] = ACTIONS(2680), + [anon_sym_e_GT_GT] = ACTIONS(2680), + [anon_sym_o_GT_GT] = ACTIONS(2680), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2680), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2680), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2680), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2680), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1021)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1021), [anon_sym_in] = ACTIONS(2670), [sym__newline] = ACTIONS(2670), [anon_sym_SEMI] = ACTIONS(2670), @@ -121084,77 +123124,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(995)] = { - [aux_sym__repeat_newline] = STATE(1040), - [sym_comment] = STATE(995), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(1022)] = { + [aux_sym__repeat_newline] = STATE(1032), + [sym_comment] = STATE(1022), + [anon_sym_in] = ACTIONS(2279), + [sym__newline] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_err_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_GT_PIPE] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_GT2] = ACTIONS(2281), + [anon_sym_DASH2] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_STAR2] = ACTIONS(2281), + [anon_sym_and2] = ACTIONS(2279), + [anon_sym_xor2] = ACTIONS(2279), + [anon_sym_or2] = ACTIONS(2279), + [anon_sym_not_DASHin2] = ACTIONS(2279), + [anon_sym_has2] = ACTIONS(2279), + [anon_sym_not_DASHhas2] = ACTIONS(2279), + [anon_sym_starts_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), + [anon_sym_ends_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), + [anon_sym_EQ_EQ2] = ACTIONS(2279), + [anon_sym_BANG_EQ2] = ACTIONS(2279), + [anon_sym_LT2] = ACTIONS(2281), + [anon_sym_LT_EQ2] = ACTIONS(2279), + [anon_sym_GT_EQ2] = ACTIONS(2279), + [anon_sym_EQ_TILDE2] = ACTIONS(2279), + [anon_sym_BANG_TILDE2] = ACTIONS(2279), + [anon_sym_like2] = ACTIONS(2279), + [anon_sym_not_DASHlike2] = ACTIONS(2279), + [anon_sym_STAR_STAR2] = ACTIONS(2279), + [anon_sym_PLUS_PLUS2] = ACTIONS(2279), + [anon_sym_SLASH2] = ACTIONS(2281), + [anon_sym_mod2] = ACTIONS(2279), + [anon_sym_SLASH_SLASH2] = ACTIONS(2279), + [anon_sym_PLUS2] = ACTIONS(2281), + [anon_sym_bit_DASHshl2] = ACTIONS(2279), + [anon_sym_bit_DASHshr2] = ACTIONS(2279), + [anon_sym_bit_DASHand2] = ACTIONS(2279), + [anon_sym_bit_DASHxor2] = ACTIONS(2279), + [anon_sym_bit_DASHor2] = ACTIONS(2279), + [anon_sym_err_GT] = ACTIONS(2281), + [anon_sym_out_GT] = ACTIONS(2281), + [anon_sym_e_GT] = ACTIONS(2281), + [anon_sym_o_GT] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT] = ACTIONS(2281), + [anon_sym_err_GT_GT] = ACTIONS(2279), + [anon_sym_out_GT_GT] = ACTIONS(2279), + [anon_sym_e_GT_GT] = ACTIONS(2279), + [anon_sym_o_GT_GT] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(996)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(996), + [STATE(1023)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1023), [anon_sym_in] = ACTIONS(2670), [sym__newline] = ACTIONS(2670), [anon_sym_SEMI] = ACTIONS(2670), @@ -121220,77 +123260,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(997)] = { - [aux_sym__repeat_newline] = STATE(1041), - [sym_comment] = STATE(997), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(1024)] = { + [aux_sym__repeat_newline] = STATE(1033), + [sym_comment] = STATE(1024), + [anon_sym_in] = ACTIONS(2279), + [sym__newline] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_err_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_GT_PIPE] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_GT2] = ACTIONS(2281), + [anon_sym_DASH2] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_STAR2] = ACTIONS(2281), + [anon_sym_and2] = ACTIONS(2279), + [anon_sym_xor2] = ACTIONS(2279), + [anon_sym_or2] = ACTIONS(2279), + [anon_sym_not_DASHin2] = ACTIONS(2279), + [anon_sym_has2] = ACTIONS(2279), + [anon_sym_not_DASHhas2] = ACTIONS(2279), + [anon_sym_starts_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), + [anon_sym_ends_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), + [anon_sym_EQ_EQ2] = ACTIONS(2279), + [anon_sym_BANG_EQ2] = ACTIONS(2279), + [anon_sym_LT2] = ACTIONS(2281), + [anon_sym_LT_EQ2] = ACTIONS(2279), + [anon_sym_GT_EQ2] = ACTIONS(2279), + [anon_sym_EQ_TILDE2] = ACTIONS(2279), + [anon_sym_BANG_TILDE2] = ACTIONS(2279), + [anon_sym_like2] = ACTIONS(2279), + [anon_sym_not_DASHlike2] = ACTIONS(2279), + [anon_sym_STAR_STAR2] = ACTIONS(2279), + [anon_sym_PLUS_PLUS2] = ACTIONS(2279), + [anon_sym_SLASH2] = ACTIONS(2281), + [anon_sym_mod2] = ACTIONS(2279), + [anon_sym_SLASH_SLASH2] = ACTIONS(2279), + [anon_sym_PLUS2] = ACTIONS(2281), + [anon_sym_bit_DASHshl2] = ACTIONS(2279), + [anon_sym_bit_DASHshr2] = ACTIONS(2279), + [anon_sym_bit_DASHand2] = ACTIONS(2279), + [anon_sym_bit_DASHxor2] = ACTIONS(2279), + [anon_sym_bit_DASHor2] = ACTIONS(2279), + [anon_sym_err_GT] = ACTIONS(2281), + [anon_sym_out_GT] = ACTIONS(2281), + [anon_sym_e_GT] = ACTIONS(2281), + [anon_sym_o_GT] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT] = ACTIONS(2281), + [anon_sym_err_GT_GT] = ACTIONS(2279), + [anon_sym_out_GT_GT] = ACTIONS(2279), + [anon_sym_e_GT_GT] = ACTIONS(2279), + [anon_sym_o_GT_GT] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(998)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(998), + [STATE(1025)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1025), [anon_sym_in] = ACTIONS(2670), [sym__newline] = ACTIONS(2670), [anon_sym_SEMI] = ACTIONS(2670), @@ -121356,213 +123396,1369 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(999)] = { - [aux_sym__repeat_newline] = STATE(1042), - [sym_comment] = STATE(999), - [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2702), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2704), - [anon_sym_DASH2] = ACTIONS(2702), - [anon_sym_LBRACE] = ACTIONS(2702), - [anon_sym_STAR2] = ACTIONS(2704), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2702), - [anon_sym_has2] = ACTIONS(2702), - [anon_sym_not_DASHhas2] = ACTIONS(2702), - [anon_sym_starts_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2702), - [anon_sym_ends_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2702), - [anon_sym_EQ_EQ2] = ACTIONS(2702), - [anon_sym_BANG_EQ2] = ACTIONS(2702), - [anon_sym_LT2] = ACTIONS(2704), - [anon_sym_LT_EQ2] = ACTIONS(2702), - [anon_sym_GT_EQ2] = ACTIONS(2702), - [anon_sym_EQ_TILDE2] = ACTIONS(2702), - [anon_sym_BANG_TILDE2] = ACTIONS(2702), - [anon_sym_like2] = ACTIONS(2702), - [anon_sym_not_DASHlike2] = ACTIONS(2702), - [anon_sym_STAR_STAR2] = ACTIONS(2702), - [anon_sym_PLUS_PLUS2] = ACTIONS(2702), - [anon_sym_SLASH2] = ACTIONS(2704), - [anon_sym_mod2] = ACTIONS(2702), - [anon_sym_SLASH_SLASH2] = ACTIONS(2702), - [anon_sym_PLUS2] = ACTIONS(2704), - [anon_sym_bit_DASHshl2] = ACTIONS(2702), - [anon_sym_bit_DASHshr2] = ACTIONS(2702), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [STATE(1026)] = { + [aux_sym__repeat_newline] = STATE(1034), + [sym_comment] = STATE(1026), + [anon_sym_in] = ACTIONS(2684), + [sym__newline] = ACTIONS(2684), + [anon_sym_SEMI] = ACTIONS(2684), + [anon_sym_PIPE] = ACTIONS(2684), + [anon_sym_err_GT_PIPE] = ACTIONS(2684), + [anon_sym_out_GT_PIPE] = ACTIONS(2684), + [anon_sym_e_GT_PIPE] = ACTIONS(2684), + [anon_sym_o_GT_PIPE] = ACTIONS(2684), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), + [anon_sym_RPAREN] = ACTIONS(2684), + [anon_sym_GT2] = ACTIONS(2686), + [anon_sym_DASH2] = ACTIONS(2684), + [anon_sym_LBRACE] = ACTIONS(2684), + [anon_sym_STAR2] = ACTIONS(2686), + [anon_sym_and2] = ACTIONS(2684), + [anon_sym_xor2] = ACTIONS(2684), + [anon_sym_or2] = ACTIONS(2684), + [anon_sym_not_DASHin2] = ACTIONS(2684), + [anon_sym_has2] = ACTIONS(2684), + [anon_sym_not_DASHhas2] = ACTIONS(2684), + [anon_sym_starts_DASHwith2] = ACTIONS(2684), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2684), + [anon_sym_ends_DASHwith2] = ACTIONS(2684), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2684), + [anon_sym_EQ_EQ2] = ACTIONS(2684), + [anon_sym_BANG_EQ2] = ACTIONS(2684), + [anon_sym_LT2] = ACTIONS(2686), + [anon_sym_LT_EQ2] = ACTIONS(2684), + [anon_sym_GT_EQ2] = ACTIONS(2684), + [anon_sym_EQ_TILDE2] = ACTIONS(2684), + [anon_sym_BANG_TILDE2] = ACTIONS(2684), + [anon_sym_like2] = ACTIONS(2684), + [anon_sym_not_DASHlike2] = ACTIONS(2684), + [anon_sym_STAR_STAR2] = ACTIONS(2684), + [anon_sym_PLUS_PLUS2] = ACTIONS(2684), + [anon_sym_SLASH2] = ACTIONS(2686), + [anon_sym_mod2] = ACTIONS(2684), + [anon_sym_SLASH_SLASH2] = ACTIONS(2684), + [anon_sym_PLUS2] = ACTIONS(2686), + [anon_sym_bit_DASHshl2] = ACTIONS(2684), + [anon_sym_bit_DASHshr2] = ACTIONS(2684), + [anon_sym_bit_DASHand2] = ACTIONS(2684), + [anon_sym_bit_DASHxor2] = ACTIONS(2684), + [anon_sym_bit_DASHor2] = ACTIONS(2684), + [anon_sym_err_GT] = ACTIONS(2686), + [anon_sym_out_GT] = ACTIONS(2686), + [anon_sym_e_GT] = ACTIONS(2686), + [anon_sym_o_GT] = ACTIONS(2686), + [anon_sym_err_PLUSout_GT] = ACTIONS(2686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), + [anon_sym_o_PLUSe_GT] = ACTIONS(2686), + [anon_sym_e_PLUSo_GT] = ACTIONS(2686), + [anon_sym_err_GT_GT] = ACTIONS(2684), + [anon_sym_out_GT_GT] = ACTIONS(2684), + [anon_sym_e_GT_GT] = ACTIONS(2684), + [anon_sym_o_GT_GT] = ACTIONS(2684), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1000)] = { - [aux_sym__repeat_newline] = STATE(1130), - [sym_comment] = STATE(1000), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(1027)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1027), + [anon_sym_in] = ACTIONS(2680), + [sym__newline] = ACTIONS(2680), + [anon_sym_SEMI] = ACTIONS(2680), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_err_GT_PIPE] = ACTIONS(2680), + [anon_sym_out_GT_PIPE] = ACTIONS(2680), + [anon_sym_e_GT_PIPE] = ACTIONS(2680), + [anon_sym_o_GT_PIPE] = ACTIONS(2680), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2680), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2680), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2680), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2680), + [anon_sym_RPAREN] = ACTIONS(2680), + [anon_sym_GT2] = ACTIONS(2682), + [anon_sym_DASH2] = ACTIONS(2680), + [anon_sym_LBRACE] = ACTIONS(2680), + [anon_sym_STAR2] = ACTIONS(2682), + [anon_sym_and2] = ACTIONS(2680), + [anon_sym_xor2] = ACTIONS(2680), + [anon_sym_or2] = ACTIONS(2680), + [anon_sym_not_DASHin2] = ACTIONS(2680), + [anon_sym_has2] = ACTIONS(2680), + [anon_sym_not_DASHhas2] = ACTIONS(2680), + [anon_sym_starts_DASHwith2] = ACTIONS(2680), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2680), + [anon_sym_ends_DASHwith2] = ACTIONS(2680), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2680), + [anon_sym_EQ_EQ2] = ACTIONS(2680), + [anon_sym_BANG_EQ2] = ACTIONS(2680), + [anon_sym_LT2] = ACTIONS(2682), + [anon_sym_LT_EQ2] = ACTIONS(2680), + [anon_sym_GT_EQ2] = ACTIONS(2680), + [anon_sym_EQ_TILDE2] = ACTIONS(2680), + [anon_sym_BANG_TILDE2] = ACTIONS(2680), + [anon_sym_like2] = ACTIONS(2680), + [anon_sym_not_DASHlike2] = ACTIONS(2680), + [anon_sym_STAR_STAR2] = ACTIONS(2680), + [anon_sym_PLUS_PLUS2] = ACTIONS(2680), + [anon_sym_SLASH2] = ACTIONS(2682), + [anon_sym_mod2] = ACTIONS(2680), + [anon_sym_SLASH_SLASH2] = ACTIONS(2680), + [anon_sym_PLUS2] = ACTIONS(2682), + [anon_sym_bit_DASHshl2] = ACTIONS(2680), + [anon_sym_bit_DASHshr2] = ACTIONS(2680), + [anon_sym_bit_DASHand2] = ACTIONS(2680), + [anon_sym_bit_DASHxor2] = ACTIONS(2680), + [anon_sym_bit_DASHor2] = ACTIONS(2680), + [anon_sym_err_GT] = ACTIONS(2682), + [anon_sym_out_GT] = ACTIONS(2682), + [anon_sym_e_GT] = ACTIONS(2682), + [anon_sym_o_GT] = ACTIONS(2682), + [anon_sym_err_PLUSout_GT] = ACTIONS(2682), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2682), + [anon_sym_o_PLUSe_GT] = ACTIONS(2682), + [anon_sym_e_PLUSo_GT] = ACTIONS(2682), + [anon_sym_err_GT_GT] = ACTIONS(2680), + [anon_sym_out_GT_GT] = ACTIONS(2680), + [anon_sym_e_GT_GT] = ACTIONS(2680), + [anon_sym_o_GT_GT] = ACTIONS(2680), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2680), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2680), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2680), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2680), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1001)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1001), - [anon_sym_in] = ACTIONS(2706), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2708), - [anon_sym_DASH2] = ACTIONS(2706), - [anon_sym_LBRACE] = ACTIONS(2706), - [anon_sym_STAR2] = ACTIONS(2708), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2706), - [anon_sym_has2] = ACTIONS(2706), - [anon_sym_not_DASHhas2] = ACTIONS(2706), - [anon_sym_starts_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), - [anon_sym_ends_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), - [anon_sym_EQ_EQ2] = ACTIONS(2706), - [anon_sym_BANG_EQ2] = ACTIONS(2706), - [anon_sym_LT2] = ACTIONS(2708), - [anon_sym_LT_EQ2] = ACTIONS(2706), - [anon_sym_GT_EQ2] = ACTIONS(2706), - [anon_sym_EQ_TILDE2] = ACTIONS(2706), - [anon_sym_BANG_TILDE2] = ACTIONS(2706), - [anon_sym_like2] = ACTIONS(2706), - [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2706), - [anon_sym_PLUS_PLUS2] = ACTIONS(2706), - [anon_sym_SLASH2] = ACTIONS(2708), - [anon_sym_mod2] = ACTIONS(2706), - [anon_sym_SLASH_SLASH2] = ACTIONS(2706), - [anon_sym_PLUS2] = ACTIONS(2708), - [anon_sym_bit_DASHshl2] = ACTIONS(2706), - [anon_sym_bit_DASHshr2] = ACTIONS(2706), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [STATE(1028)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1028), + [anon_sym_in] = ACTIONS(2680), + [sym__newline] = ACTIONS(2680), + [anon_sym_SEMI] = ACTIONS(2680), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_err_GT_PIPE] = ACTIONS(2680), + [anon_sym_out_GT_PIPE] = ACTIONS(2680), + [anon_sym_e_GT_PIPE] = ACTIONS(2680), + [anon_sym_o_GT_PIPE] = ACTIONS(2680), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2680), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2680), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2680), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2680), + [anon_sym_RPAREN] = ACTIONS(2680), + [anon_sym_GT2] = ACTIONS(2682), + [anon_sym_DASH2] = ACTIONS(2680), + [anon_sym_LBRACE] = ACTIONS(2680), + [anon_sym_STAR2] = ACTIONS(2682), + [anon_sym_and2] = ACTIONS(2680), + [anon_sym_xor2] = ACTIONS(2680), + [anon_sym_or2] = ACTIONS(2680), + [anon_sym_not_DASHin2] = ACTIONS(2680), + [anon_sym_has2] = ACTIONS(2680), + [anon_sym_not_DASHhas2] = ACTIONS(2680), + [anon_sym_starts_DASHwith2] = ACTIONS(2680), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2680), + [anon_sym_ends_DASHwith2] = ACTIONS(2680), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2680), + [anon_sym_EQ_EQ2] = ACTIONS(2680), + [anon_sym_BANG_EQ2] = ACTIONS(2680), + [anon_sym_LT2] = ACTIONS(2682), + [anon_sym_LT_EQ2] = ACTIONS(2680), + [anon_sym_GT_EQ2] = ACTIONS(2680), + [anon_sym_EQ_TILDE2] = ACTIONS(2680), + [anon_sym_BANG_TILDE2] = ACTIONS(2680), + [anon_sym_like2] = ACTIONS(2680), + [anon_sym_not_DASHlike2] = ACTIONS(2680), + [anon_sym_STAR_STAR2] = ACTIONS(2680), + [anon_sym_PLUS_PLUS2] = ACTIONS(2680), + [anon_sym_SLASH2] = ACTIONS(2682), + [anon_sym_mod2] = ACTIONS(2680), + [anon_sym_SLASH_SLASH2] = ACTIONS(2680), + [anon_sym_PLUS2] = ACTIONS(2682), + [anon_sym_bit_DASHshl2] = ACTIONS(2680), + [anon_sym_bit_DASHshr2] = ACTIONS(2680), + [anon_sym_bit_DASHand2] = ACTIONS(2680), + [anon_sym_bit_DASHxor2] = ACTIONS(2680), + [anon_sym_bit_DASHor2] = ACTIONS(2680), + [anon_sym_err_GT] = ACTIONS(2682), + [anon_sym_out_GT] = ACTIONS(2682), + [anon_sym_e_GT] = ACTIONS(2682), + [anon_sym_o_GT] = ACTIONS(2682), + [anon_sym_err_PLUSout_GT] = ACTIONS(2682), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2682), + [anon_sym_o_PLUSe_GT] = ACTIONS(2682), + [anon_sym_e_PLUSo_GT] = ACTIONS(2682), + [anon_sym_err_GT_GT] = ACTIONS(2680), + [anon_sym_out_GT_GT] = ACTIONS(2680), + [anon_sym_e_GT_GT] = ACTIONS(2680), + [anon_sym_o_GT_GT] = ACTIONS(2680), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2680), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2680), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2680), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2680), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1002)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1002), + [STATE(1029)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1029), + [anon_sym_in] = ACTIONS(2680), + [sym__newline] = ACTIONS(2680), + [anon_sym_SEMI] = ACTIONS(2680), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_err_GT_PIPE] = ACTIONS(2680), + [anon_sym_out_GT_PIPE] = ACTIONS(2680), + [anon_sym_e_GT_PIPE] = ACTIONS(2680), + [anon_sym_o_GT_PIPE] = ACTIONS(2680), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2680), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2680), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2680), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2680), + [anon_sym_RPAREN] = ACTIONS(2680), + [anon_sym_GT2] = ACTIONS(2682), + [anon_sym_DASH2] = ACTIONS(2680), + [anon_sym_LBRACE] = ACTIONS(2680), + [anon_sym_STAR2] = ACTIONS(2682), + [anon_sym_and2] = ACTIONS(2680), + [anon_sym_xor2] = ACTIONS(2680), + [anon_sym_or2] = ACTIONS(2680), + [anon_sym_not_DASHin2] = ACTIONS(2680), + [anon_sym_has2] = ACTIONS(2680), + [anon_sym_not_DASHhas2] = ACTIONS(2680), + [anon_sym_starts_DASHwith2] = ACTIONS(2680), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2680), + [anon_sym_ends_DASHwith2] = ACTIONS(2680), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2680), + [anon_sym_EQ_EQ2] = ACTIONS(2680), + [anon_sym_BANG_EQ2] = ACTIONS(2680), + [anon_sym_LT2] = ACTIONS(2682), + [anon_sym_LT_EQ2] = ACTIONS(2680), + [anon_sym_GT_EQ2] = ACTIONS(2680), + [anon_sym_EQ_TILDE2] = ACTIONS(2680), + [anon_sym_BANG_TILDE2] = ACTIONS(2680), + [anon_sym_like2] = ACTIONS(2680), + [anon_sym_not_DASHlike2] = ACTIONS(2680), + [anon_sym_STAR_STAR2] = ACTIONS(2680), + [anon_sym_PLUS_PLUS2] = ACTIONS(2680), + [anon_sym_SLASH2] = ACTIONS(2682), + [anon_sym_mod2] = ACTIONS(2680), + [anon_sym_SLASH_SLASH2] = ACTIONS(2680), + [anon_sym_PLUS2] = ACTIONS(2682), + [anon_sym_bit_DASHshl2] = ACTIONS(2680), + [anon_sym_bit_DASHshr2] = ACTIONS(2680), + [anon_sym_bit_DASHand2] = ACTIONS(2680), + [anon_sym_bit_DASHxor2] = ACTIONS(2680), + [anon_sym_bit_DASHor2] = ACTIONS(2680), + [anon_sym_err_GT] = ACTIONS(2682), + [anon_sym_out_GT] = ACTIONS(2682), + [anon_sym_e_GT] = ACTIONS(2682), + [anon_sym_o_GT] = ACTIONS(2682), + [anon_sym_err_PLUSout_GT] = ACTIONS(2682), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2682), + [anon_sym_o_PLUSe_GT] = ACTIONS(2682), + [anon_sym_e_PLUSo_GT] = ACTIONS(2682), + [anon_sym_err_GT_GT] = ACTIONS(2680), + [anon_sym_out_GT_GT] = ACTIONS(2680), + [anon_sym_e_GT_GT] = ACTIONS(2680), + [anon_sym_o_GT_GT] = ACTIONS(2680), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2680), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2680), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2680), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2680), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1030)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1030), + [anon_sym_in] = ACTIONS(2680), + [sym__newline] = ACTIONS(2680), + [anon_sym_SEMI] = ACTIONS(2680), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_err_GT_PIPE] = ACTIONS(2680), + [anon_sym_out_GT_PIPE] = ACTIONS(2680), + [anon_sym_e_GT_PIPE] = ACTIONS(2680), + [anon_sym_o_GT_PIPE] = ACTIONS(2680), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2680), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2680), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2680), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2680), + [anon_sym_RPAREN] = ACTIONS(2680), + [anon_sym_GT2] = ACTIONS(2682), + [anon_sym_DASH2] = ACTIONS(2680), + [anon_sym_LBRACE] = ACTIONS(2680), + [anon_sym_STAR2] = ACTIONS(2682), + [anon_sym_and2] = ACTIONS(2680), + [anon_sym_xor2] = ACTIONS(2680), + [anon_sym_or2] = ACTIONS(2680), + [anon_sym_not_DASHin2] = ACTIONS(2680), + [anon_sym_has2] = ACTIONS(2680), + [anon_sym_not_DASHhas2] = ACTIONS(2680), + [anon_sym_starts_DASHwith2] = ACTIONS(2680), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2680), + [anon_sym_ends_DASHwith2] = ACTIONS(2680), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2680), + [anon_sym_EQ_EQ2] = ACTIONS(2680), + [anon_sym_BANG_EQ2] = ACTIONS(2680), + [anon_sym_LT2] = ACTIONS(2682), + [anon_sym_LT_EQ2] = ACTIONS(2680), + [anon_sym_GT_EQ2] = ACTIONS(2680), + [anon_sym_EQ_TILDE2] = ACTIONS(2680), + [anon_sym_BANG_TILDE2] = ACTIONS(2680), + [anon_sym_like2] = ACTIONS(2680), + [anon_sym_not_DASHlike2] = ACTIONS(2680), + [anon_sym_STAR_STAR2] = ACTIONS(2680), + [anon_sym_PLUS_PLUS2] = ACTIONS(2680), + [anon_sym_SLASH2] = ACTIONS(2682), + [anon_sym_mod2] = ACTIONS(2680), + [anon_sym_SLASH_SLASH2] = ACTIONS(2680), + [anon_sym_PLUS2] = ACTIONS(2682), + [anon_sym_bit_DASHshl2] = ACTIONS(2680), + [anon_sym_bit_DASHshr2] = ACTIONS(2680), + [anon_sym_bit_DASHand2] = ACTIONS(2680), + [anon_sym_bit_DASHxor2] = ACTIONS(2680), + [anon_sym_bit_DASHor2] = ACTIONS(2680), + [anon_sym_err_GT] = ACTIONS(2682), + [anon_sym_out_GT] = ACTIONS(2682), + [anon_sym_e_GT] = ACTIONS(2682), + [anon_sym_o_GT] = ACTIONS(2682), + [anon_sym_err_PLUSout_GT] = ACTIONS(2682), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2682), + [anon_sym_o_PLUSe_GT] = ACTIONS(2682), + [anon_sym_e_PLUSo_GT] = ACTIONS(2682), + [anon_sym_err_GT_GT] = ACTIONS(2680), + [anon_sym_out_GT_GT] = ACTIONS(2680), + [anon_sym_e_GT_GT] = ACTIONS(2680), + [anon_sym_o_GT_GT] = ACTIONS(2680), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2680), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2680), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2680), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2680), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1031)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1031), + [anon_sym_in] = ACTIONS(2680), + [sym__newline] = ACTIONS(2680), + [anon_sym_SEMI] = ACTIONS(2680), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_err_GT_PIPE] = ACTIONS(2680), + [anon_sym_out_GT_PIPE] = ACTIONS(2680), + [anon_sym_e_GT_PIPE] = ACTIONS(2680), + [anon_sym_o_GT_PIPE] = ACTIONS(2680), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2680), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2680), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2680), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2680), + [anon_sym_RPAREN] = ACTIONS(2680), + [anon_sym_GT2] = ACTIONS(2682), + [anon_sym_DASH2] = ACTIONS(2680), + [anon_sym_LBRACE] = ACTIONS(2680), + [anon_sym_STAR2] = ACTIONS(2682), + [anon_sym_and2] = ACTIONS(2680), + [anon_sym_xor2] = ACTIONS(2680), + [anon_sym_or2] = ACTIONS(2680), + [anon_sym_not_DASHin2] = ACTIONS(2680), + [anon_sym_has2] = ACTIONS(2680), + [anon_sym_not_DASHhas2] = ACTIONS(2680), + [anon_sym_starts_DASHwith2] = ACTIONS(2680), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2680), + [anon_sym_ends_DASHwith2] = ACTIONS(2680), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2680), + [anon_sym_EQ_EQ2] = ACTIONS(2680), + [anon_sym_BANG_EQ2] = ACTIONS(2680), + [anon_sym_LT2] = ACTIONS(2682), + [anon_sym_LT_EQ2] = ACTIONS(2680), + [anon_sym_GT_EQ2] = ACTIONS(2680), + [anon_sym_EQ_TILDE2] = ACTIONS(2680), + [anon_sym_BANG_TILDE2] = ACTIONS(2680), + [anon_sym_like2] = ACTIONS(2680), + [anon_sym_not_DASHlike2] = ACTIONS(2680), + [anon_sym_STAR_STAR2] = ACTIONS(2680), + [anon_sym_PLUS_PLUS2] = ACTIONS(2680), + [anon_sym_SLASH2] = ACTIONS(2682), + [anon_sym_mod2] = ACTIONS(2680), + [anon_sym_SLASH_SLASH2] = ACTIONS(2680), + [anon_sym_PLUS2] = ACTIONS(2682), + [anon_sym_bit_DASHshl2] = ACTIONS(2680), + [anon_sym_bit_DASHshr2] = ACTIONS(2680), + [anon_sym_bit_DASHand2] = ACTIONS(2680), + [anon_sym_bit_DASHxor2] = ACTIONS(2680), + [anon_sym_bit_DASHor2] = ACTIONS(2680), + [anon_sym_err_GT] = ACTIONS(2682), + [anon_sym_out_GT] = ACTIONS(2682), + [anon_sym_e_GT] = ACTIONS(2682), + [anon_sym_o_GT] = ACTIONS(2682), + [anon_sym_err_PLUSout_GT] = ACTIONS(2682), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2682), + [anon_sym_o_PLUSe_GT] = ACTIONS(2682), + [anon_sym_e_PLUSo_GT] = ACTIONS(2682), + [anon_sym_err_GT_GT] = ACTIONS(2680), + [anon_sym_out_GT_GT] = ACTIONS(2680), + [anon_sym_e_GT_GT] = ACTIONS(2680), + [anon_sym_o_GT_GT] = ACTIONS(2680), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2680), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2680), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2680), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2680), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1032)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1032), + [anon_sym_in] = ACTIONS(2680), + [sym__newline] = ACTIONS(2680), + [anon_sym_SEMI] = ACTIONS(2680), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_err_GT_PIPE] = ACTIONS(2680), + [anon_sym_out_GT_PIPE] = ACTIONS(2680), + [anon_sym_e_GT_PIPE] = ACTIONS(2680), + [anon_sym_o_GT_PIPE] = ACTIONS(2680), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2680), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2680), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2680), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2680), + [anon_sym_RPAREN] = ACTIONS(2680), + [anon_sym_GT2] = ACTIONS(2682), + [anon_sym_DASH2] = ACTIONS(2680), + [anon_sym_LBRACE] = ACTIONS(2680), + [anon_sym_STAR2] = ACTIONS(2682), + [anon_sym_and2] = ACTIONS(2680), + [anon_sym_xor2] = ACTIONS(2680), + [anon_sym_or2] = ACTIONS(2680), + [anon_sym_not_DASHin2] = ACTIONS(2680), + [anon_sym_has2] = ACTIONS(2680), + [anon_sym_not_DASHhas2] = ACTIONS(2680), + [anon_sym_starts_DASHwith2] = ACTIONS(2680), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2680), + [anon_sym_ends_DASHwith2] = ACTIONS(2680), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2680), + [anon_sym_EQ_EQ2] = ACTIONS(2680), + [anon_sym_BANG_EQ2] = ACTIONS(2680), + [anon_sym_LT2] = ACTIONS(2682), + [anon_sym_LT_EQ2] = ACTIONS(2680), + [anon_sym_GT_EQ2] = ACTIONS(2680), + [anon_sym_EQ_TILDE2] = ACTIONS(2680), + [anon_sym_BANG_TILDE2] = ACTIONS(2680), + [anon_sym_like2] = ACTIONS(2680), + [anon_sym_not_DASHlike2] = ACTIONS(2680), + [anon_sym_STAR_STAR2] = ACTIONS(2680), + [anon_sym_PLUS_PLUS2] = ACTIONS(2680), + [anon_sym_SLASH2] = ACTIONS(2682), + [anon_sym_mod2] = ACTIONS(2680), + [anon_sym_SLASH_SLASH2] = ACTIONS(2680), + [anon_sym_PLUS2] = ACTIONS(2682), + [anon_sym_bit_DASHshl2] = ACTIONS(2680), + [anon_sym_bit_DASHshr2] = ACTIONS(2680), + [anon_sym_bit_DASHand2] = ACTIONS(2680), + [anon_sym_bit_DASHxor2] = ACTIONS(2680), + [anon_sym_bit_DASHor2] = ACTIONS(2680), + [anon_sym_err_GT] = ACTIONS(2682), + [anon_sym_out_GT] = ACTIONS(2682), + [anon_sym_e_GT] = ACTIONS(2682), + [anon_sym_o_GT] = ACTIONS(2682), + [anon_sym_err_PLUSout_GT] = ACTIONS(2682), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2682), + [anon_sym_o_PLUSe_GT] = ACTIONS(2682), + [anon_sym_e_PLUSo_GT] = ACTIONS(2682), + [anon_sym_err_GT_GT] = ACTIONS(2680), + [anon_sym_out_GT_GT] = ACTIONS(2680), + [anon_sym_e_GT_GT] = ACTIONS(2680), + [anon_sym_o_GT_GT] = ACTIONS(2680), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2680), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2680), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2680), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2680), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1033)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1033), + [anon_sym_in] = ACTIONS(2680), + [sym__newline] = ACTIONS(2680), + [anon_sym_SEMI] = ACTIONS(2680), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_err_GT_PIPE] = ACTIONS(2680), + [anon_sym_out_GT_PIPE] = ACTIONS(2680), + [anon_sym_e_GT_PIPE] = ACTIONS(2680), + [anon_sym_o_GT_PIPE] = ACTIONS(2680), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2680), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2680), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2680), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2680), + [anon_sym_RPAREN] = ACTIONS(2680), + [anon_sym_GT2] = ACTIONS(2682), + [anon_sym_DASH2] = ACTIONS(2680), + [anon_sym_LBRACE] = ACTIONS(2680), + [anon_sym_STAR2] = ACTIONS(2682), + [anon_sym_and2] = ACTIONS(2680), + [anon_sym_xor2] = ACTIONS(2680), + [anon_sym_or2] = ACTIONS(2680), + [anon_sym_not_DASHin2] = ACTIONS(2680), + [anon_sym_has2] = ACTIONS(2680), + [anon_sym_not_DASHhas2] = ACTIONS(2680), + [anon_sym_starts_DASHwith2] = ACTIONS(2680), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2680), + [anon_sym_ends_DASHwith2] = ACTIONS(2680), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2680), + [anon_sym_EQ_EQ2] = ACTIONS(2680), + [anon_sym_BANG_EQ2] = ACTIONS(2680), + [anon_sym_LT2] = ACTIONS(2682), + [anon_sym_LT_EQ2] = ACTIONS(2680), + [anon_sym_GT_EQ2] = ACTIONS(2680), + [anon_sym_EQ_TILDE2] = ACTIONS(2680), + [anon_sym_BANG_TILDE2] = ACTIONS(2680), + [anon_sym_like2] = ACTIONS(2680), + [anon_sym_not_DASHlike2] = ACTIONS(2680), + [anon_sym_STAR_STAR2] = ACTIONS(2680), + [anon_sym_PLUS_PLUS2] = ACTIONS(2680), + [anon_sym_SLASH2] = ACTIONS(2682), + [anon_sym_mod2] = ACTIONS(2680), + [anon_sym_SLASH_SLASH2] = ACTIONS(2680), + [anon_sym_PLUS2] = ACTIONS(2682), + [anon_sym_bit_DASHshl2] = ACTIONS(2680), + [anon_sym_bit_DASHshr2] = ACTIONS(2680), + [anon_sym_bit_DASHand2] = ACTIONS(2680), + [anon_sym_bit_DASHxor2] = ACTIONS(2680), + [anon_sym_bit_DASHor2] = ACTIONS(2680), + [anon_sym_err_GT] = ACTIONS(2682), + [anon_sym_out_GT] = ACTIONS(2682), + [anon_sym_e_GT] = ACTIONS(2682), + [anon_sym_o_GT] = ACTIONS(2682), + [anon_sym_err_PLUSout_GT] = ACTIONS(2682), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2682), + [anon_sym_o_PLUSe_GT] = ACTIONS(2682), + [anon_sym_e_PLUSo_GT] = ACTIONS(2682), + [anon_sym_err_GT_GT] = ACTIONS(2680), + [anon_sym_out_GT_GT] = ACTIONS(2680), + [anon_sym_e_GT_GT] = ACTIONS(2680), + [anon_sym_o_GT_GT] = ACTIONS(2680), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2680), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2680), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2680), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2680), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1034)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1034), + [anon_sym_in] = ACTIONS(2688), + [sym__newline] = ACTIONS(2688), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_err_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_GT_PIPE] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), + [anon_sym_RPAREN] = ACTIONS(2688), + [anon_sym_GT2] = ACTIONS(2690), + [anon_sym_DASH2] = ACTIONS(2688), + [anon_sym_LBRACE] = ACTIONS(2688), + [anon_sym_STAR2] = ACTIONS(2690), + [anon_sym_and2] = ACTIONS(2688), + [anon_sym_xor2] = ACTIONS(2688), + [anon_sym_or2] = ACTIONS(2688), + [anon_sym_not_DASHin2] = ACTIONS(2688), + [anon_sym_has2] = ACTIONS(2688), + [anon_sym_not_DASHhas2] = ACTIONS(2688), + [anon_sym_starts_DASHwith2] = ACTIONS(2688), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2688), + [anon_sym_ends_DASHwith2] = ACTIONS(2688), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2688), + [anon_sym_EQ_EQ2] = ACTIONS(2688), + [anon_sym_BANG_EQ2] = ACTIONS(2688), + [anon_sym_LT2] = ACTIONS(2690), + [anon_sym_LT_EQ2] = ACTIONS(2688), + [anon_sym_GT_EQ2] = ACTIONS(2688), + [anon_sym_EQ_TILDE2] = ACTIONS(2688), + [anon_sym_BANG_TILDE2] = ACTIONS(2688), + [anon_sym_like2] = ACTIONS(2688), + [anon_sym_not_DASHlike2] = ACTIONS(2688), + [anon_sym_STAR_STAR2] = ACTIONS(2688), + [anon_sym_PLUS_PLUS2] = ACTIONS(2688), + [anon_sym_SLASH2] = ACTIONS(2690), + [anon_sym_mod2] = ACTIONS(2688), + [anon_sym_SLASH_SLASH2] = ACTIONS(2688), + [anon_sym_PLUS2] = ACTIONS(2690), + [anon_sym_bit_DASHshl2] = ACTIONS(2688), + [anon_sym_bit_DASHshr2] = ACTIONS(2688), + [anon_sym_bit_DASHand2] = ACTIONS(2688), + [anon_sym_bit_DASHxor2] = ACTIONS(2688), + [anon_sym_bit_DASHor2] = ACTIONS(2688), + [anon_sym_err_GT] = ACTIONS(2690), + [anon_sym_out_GT] = ACTIONS(2690), + [anon_sym_e_GT] = ACTIONS(2690), + [anon_sym_o_GT] = ACTIONS(2690), + [anon_sym_err_PLUSout_GT] = ACTIONS(2690), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), + [anon_sym_o_PLUSe_GT] = ACTIONS(2690), + [anon_sym_e_PLUSo_GT] = ACTIONS(2690), + [anon_sym_err_GT_GT] = ACTIONS(2688), + [anon_sym_out_GT_GT] = ACTIONS(2688), + [anon_sym_e_GT_GT] = ACTIONS(2688), + [anon_sym_o_GT_GT] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1035)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1035), + [anon_sym_in] = ACTIONS(2680), + [sym__newline] = ACTIONS(2680), + [anon_sym_SEMI] = ACTIONS(2680), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_err_GT_PIPE] = ACTIONS(2680), + [anon_sym_out_GT_PIPE] = ACTIONS(2680), + [anon_sym_e_GT_PIPE] = ACTIONS(2680), + [anon_sym_o_GT_PIPE] = ACTIONS(2680), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2680), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2680), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2680), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2680), + [anon_sym_RPAREN] = ACTIONS(2680), + [anon_sym_GT2] = ACTIONS(2682), + [anon_sym_DASH2] = ACTIONS(2680), + [anon_sym_LBRACE] = ACTIONS(2680), + [anon_sym_STAR2] = ACTIONS(2682), + [anon_sym_and2] = ACTIONS(2680), + [anon_sym_xor2] = ACTIONS(2680), + [anon_sym_or2] = ACTIONS(2680), + [anon_sym_not_DASHin2] = ACTIONS(2680), + [anon_sym_has2] = ACTIONS(2680), + [anon_sym_not_DASHhas2] = ACTIONS(2680), + [anon_sym_starts_DASHwith2] = ACTIONS(2680), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2680), + [anon_sym_ends_DASHwith2] = ACTIONS(2680), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2680), + [anon_sym_EQ_EQ2] = ACTIONS(2680), + [anon_sym_BANG_EQ2] = ACTIONS(2680), + [anon_sym_LT2] = ACTIONS(2682), + [anon_sym_LT_EQ2] = ACTIONS(2680), + [anon_sym_GT_EQ2] = ACTIONS(2680), + [anon_sym_EQ_TILDE2] = ACTIONS(2680), + [anon_sym_BANG_TILDE2] = ACTIONS(2680), + [anon_sym_like2] = ACTIONS(2680), + [anon_sym_not_DASHlike2] = ACTIONS(2680), + [anon_sym_STAR_STAR2] = ACTIONS(2680), + [anon_sym_PLUS_PLUS2] = ACTIONS(2680), + [anon_sym_SLASH2] = ACTIONS(2682), + [anon_sym_mod2] = ACTIONS(2680), + [anon_sym_SLASH_SLASH2] = ACTIONS(2680), + [anon_sym_PLUS2] = ACTIONS(2682), + [anon_sym_bit_DASHshl2] = ACTIONS(2680), + [anon_sym_bit_DASHshr2] = ACTIONS(2680), + [anon_sym_bit_DASHand2] = ACTIONS(2680), + [anon_sym_bit_DASHxor2] = ACTIONS(2680), + [anon_sym_bit_DASHor2] = ACTIONS(2680), + [anon_sym_err_GT] = ACTIONS(2682), + [anon_sym_out_GT] = ACTIONS(2682), + [anon_sym_e_GT] = ACTIONS(2682), + [anon_sym_o_GT] = ACTIONS(2682), + [anon_sym_err_PLUSout_GT] = ACTIONS(2682), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2682), + [anon_sym_o_PLUSe_GT] = ACTIONS(2682), + [anon_sym_e_PLUSo_GT] = ACTIONS(2682), + [anon_sym_err_GT_GT] = ACTIONS(2680), + [anon_sym_out_GT_GT] = ACTIONS(2680), + [anon_sym_e_GT_GT] = ACTIONS(2680), + [anon_sym_o_GT_GT] = ACTIONS(2680), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2680), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2680), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2680), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2680), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1036)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1036), + [anon_sym_in] = ACTIONS(2680), + [sym__newline] = ACTIONS(2680), + [anon_sym_SEMI] = ACTIONS(2680), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_err_GT_PIPE] = ACTIONS(2680), + [anon_sym_out_GT_PIPE] = ACTIONS(2680), + [anon_sym_e_GT_PIPE] = ACTIONS(2680), + [anon_sym_o_GT_PIPE] = ACTIONS(2680), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2680), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2680), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2680), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2680), + [anon_sym_RPAREN] = ACTIONS(2680), + [anon_sym_GT2] = ACTIONS(2682), + [anon_sym_DASH2] = ACTIONS(2680), + [anon_sym_LBRACE] = ACTIONS(2680), + [anon_sym_STAR2] = ACTIONS(2682), + [anon_sym_and2] = ACTIONS(2680), + [anon_sym_xor2] = ACTIONS(2680), + [anon_sym_or2] = ACTIONS(2680), + [anon_sym_not_DASHin2] = ACTIONS(2680), + [anon_sym_has2] = ACTIONS(2680), + [anon_sym_not_DASHhas2] = ACTIONS(2680), + [anon_sym_starts_DASHwith2] = ACTIONS(2680), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2680), + [anon_sym_ends_DASHwith2] = ACTIONS(2680), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2680), + [anon_sym_EQ_EQ2] = ACTIONS(2680), + [anon_sym_BANG_EQ2] = ACTIONS(2680), + [anon_sym_LT2] = ACTIONS(2682), + [anon_sym_LT_EQ2] = ACTIONS(2680), + [anon_sym_GT_EQ2] = ACTIONS(2680), + [anon_sym_EQ_TILDE2] = ACTIONS(2680), + [anon_sym_BANG_TILDE2] = ACTIONS(2680), + [anon_sym_like2] = ACTIONS(2680), + [anon_sym_not_DASHlike2] = ACTIONS(2680), + [anon_sym_STAR_STAR2] = ACTIONS(2680), + [anon_sym_PLUS_PLUS2] = ACTIONS(2680), + [anon_sym_SLASH2] = ACTIONS(2682), + [anon_sym_mod2] = ACTIONS(2680), + [anon_sym_SLASH_SLASH2] = ACTIONS(2680), + [anon_sym_PLUS2] = ACTIONS(2682), + [anon_sym_bit_DASHshl2] = ACTIONS(2680), + [anon_sym_bit_DASHshr2] = ACTIONS(2680), + [anon_sym_bit_DASHand2] = ACTIONS(2680), + [anon_sym_bit_DASHxor2] = ACTIONS(2680), + [anon_sym_bit_DASHor2] = ACTIONS(2680), + [anon_sym_err_GT] = ACTIONS(2682), + [anon_sym_out_GT] = ACTIONS(2682), + [anon_sym_e_GT] = ACTIONS(2682), + [anon_sym_o_GT] = ACTIONS(2682), + [anon_sym_err_PLUSout_GT] = ACTIONS(2682), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2682), + [anon_sym_o_PLUSe_GT] = ACTIONS(2682), + [anon_sym_e_PLUSo_GT] = ACTIONS(2682), + [anon_sym_err_GT_GT] = ACTIONS(2680), + [anon_sym_out_GT_GT] = ACTIONS(2680), + [anon_sym_e_GT_GT] = ACTIONS(2680), + [anon_sym_o_GT_GT] = ACTIONS(2680), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2680), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2680), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2680), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2680), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1037)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1037), + [anon_sym_in] = ACTIONS(2680), + [sym__newline] = ACTIONS(2680), + [anon_sym_SEMI] = ACTIONS(2680), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_err_GT_PIPE] = ACTIONS(2680), + [anon_sym_out_GT_PIPE] = ACTIONS(2680), + [anon_sym_e_GT_PIPE] = ACTIONS(2680), + [anon_sym_o_GT_PIPE] = ACTIONS(2680), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2680), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2680), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2680), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2680), + [anon_sym_RPAREN] = ACTIONS(2680), + [anon_sym_GT2] = ACTIONS(2682), + [anon_sym_DASH2] = ACTIONS(2680), + [anon_sym_LBRACE] = ACTIONS(2680), + [anon_sym_STAR2] = ACTIONS(2682), + [anon_sym_and2] = ACTIONS(2680), + [anon_sym_xor2] = ACTIONS(2680), + [anon_sym_or2] = ACTIONS(2680), + [anon_sym_not_DASHin2] = ACTIONS(2680), + [anon_sym_has2] = ACTIONS(2680), + [anon_sym_not_DASHhas2] = ACTIONS(2680), + [anon_sym_starts_DASHwith2] = ACTIONS(2680), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2680), + [anon_sym_ends_DASHwith2] = ACTIONS(2680), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2680), + [anon_sym_EQ_EQ2] = ACTIONS(2680), + [anon_sym_BANG_EQ2] = ACTIONS(2680), + [anon_sym_LT2] = ACTIONS(2682), + [anon_sym_LT_EQ2] = ACTIONS(2680), + [anon_sym_GT_EQ2] = ACTIONS(2680), + [anon_sym_EQ_TILDE2] = ACTIONS(2680), + [anon_sym_BANG_TILDE2] = ACTIONS(2680), + [anon_sym_like2] = ACTIONS(2680), + [anon_sym_not_DASHlike2] = ACTIONS(2680), + [anon_sym_STAR_STAR2] = ACTIONS(2680), + [anon_sym_PLUS_PLUS2] = ACTIONS(2680), + [anon_sym_SLASH2] = ACTIONS(2682), + [anon_sym_mod2] = ACTIONS(2680), + [anon_sym_SLASH_SLASH2] = ACTIONS(2680), + [anon_sym_PLUS2] = ACTIONS(2682), + [anon_sym_bit_DASHshl2] = ACTIONS(2680), + [anon_sym_bit_DASHshr2] = ACTIONS(2680), + [anon_sym_bit_DASHand2] = ACTIONS(2680), + [anon_sym_bit_DASHxor2] = ACTIONS(2680), + [anon_sym_bit_DASHor2] = ACTIONS(2680), + [anon_sym_err_GT] = ACTIONS(2682), + [anon_sym_out_GT] = ACTIONS(2682), + [anon_sym_e_GT] = ACTIONS(2682), + [anon_sym_o_GT] = ACTIONS(2682), + [anon_sym_err_PLUSout_GT] = ACTIONS(2682), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2682), + [anon_sym_o_PLUSe_GT] = ACTIONS(2682), + [anon_sym_e_PLUSo_GT] = ACTIONS(2682), + [anon_sym_err_GT_GT] = ACTIONS(2680), + [anon_sym_out_GT_GT] = ACTIONS(2680), + [anon_sym_e_GT_GT] = ACTIONS(2680), + [anon_sym_o_GT_GT] = ACTIONS(2680), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2680), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2680), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2680), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2680), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1038)] = { + [sym__expr_parenthesized_immediate] = STATE(4759), + [sym_comment] = STATE(1038), + [ts_builtin_sym_end] = ACTIONS(2062), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1039)] = { + [sym__expr_parenthesized_immediate] = STATE(4759), + [sym_comment] = STATE(1039), + [ts_builtin_sym_end] = ACTIONS(2062), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1040)] = { + [sym__expr_parenthesized_immediate] = STATE(4759), + [sym_comment] = STATE(1040), + [ts_builtin_sym_end] = ACTIONS(2062), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1041)] = { + [sym_comment] = STATE(1041), + [anon_sym_export] = ACTIONS(2315), + [anon_sym_alias] = ACTIONS(2317), + [anon_sym_let] = ACTIONS(2317), + [anon_sym_mut] = ACTIONS(2317), + [anon_sym_const] = ACTIONS(2317), + [aux_sym_cmd_identifier_token1] = ACTIONS(2315), + [anon_sym_def] = ACTIONS(2317), + [anon_sym_use] = ACTIONS(2317), + [anon_sym_export_DASHenv] = ACTIONS(2317), + [anon_sym_extern] = ACTIONS(2317), + [anon_sym_module] = ACTIONS(2317), + [anon_sym_for] = ACTIONS(2317), + [anon_sym_loop] = ACTIONS(2317), + [anon_sym_while] = ACTIONS(2317), + [anon_sym_if] = ACTIONS(2317), + [anon_sym_else] = ACTIONS(2317), + [anon_sym_try] = ACTIONS(2317), + [anon_sym_catch] = ACTIONS(2317), + [anon_sym_match] = ACTIONS(2317), + [anon_sym_in] = ACTIONS(2315), + [anon_sym_true] = ACTIONS(2317), + [anon_sym_false] = ACTIONS(2317), + [anon_sym_null] = ACTIONS(2317), + [aux_sym_cmd_identifier_token3] = ACTIONS(2317), + [aux_sym_cmd_identifier_token4] = ACTIONS(2317), + [aux_sym_cmd_identifier_token5] = ACTIONS(2317), + [sym__newline] = ACTIONS(2317), + [anon_sym_PIPE] = ACTIONS(2317), + [anon_sym_err_GT_PIPE] = ACTIONS(2317), + [anon_sym_out_GT_PIPE] = ACTIONS(2317), + [anon_sym_e_GT_PIPE] = ACTIONS(2317), + [anon_sym_o_GT_PIPE] = ACTIONS(2317), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2317), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2317), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2317), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2317), + [anon_sym_LBRACK] = ACTIONS(2317), + [anon_sym_LPAREN] = ACTIONS(2317), + [anon_sym_DOLLAR] = ACTIONS(2315), + [anon_sym_DASH2] = ACTIONS(2315), + [anon_sym_LBRACE] = ACTIONS(2317), + [anon_sym_DOT_DOT] = ACTIONS(2315), + [anon_sym_where] = ACTIONS(2317), + [aux_sym_expr_unary_token1] = ACTIONS(2317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2317), + [anon_sym_DOT_DOT_LT] = ACTIONS(2317), + [aux_sym__val_number_decimal_token1] = ACTIONS(2315), + [aux_sym__val_number_decimal_token2] = ACTIONS(2317), + [aux_sym__val_number_decimal_token3] = ACTIONS(2317), + [aux_sym__val_number_decimal_token4] = ACTIONS(2317), + [aux_sym__val_number_token1] = ACTIONS(2317), + [aux_sym__val_number_token2] = ACTIONS(2317), + [aux_sym__val_number_token3] = ACTIONS(2317), + [anon_sym_0b] = ACTIONS(2315), + [anon_sym_0o] = ACTIONS(2315), + [anon_sym_0x] = ACTIONS(2315), + [sym_val_date] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2317), + [anon_sym_SQUOTE] = ACTIONS(2317), + [anon_sym_BQUOTE] = ACTIONS(2317), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2317), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2317), + [anon_sym_CARET] = ACTIONS(2317), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2317), + }, + [STATE(1042)] = { + [sym__expr_parenthesized_immediate] = STATE(5243), + [sym_comment] = STATE(1042), + [ts_builtin_sym_end] = ACTIONS(2164), + [anon_sym_in] = ACTIONS(2164), + [sym__newline] = ACTIONS(2164), + [anon_sym_SEMI] = ACTIONS(2164), + [anon_sym_PIPE] = ACTIONS(2164), + [anon_sym_err_GT_PIPE] = ACTIONS(2164), + [anon_sym_out_GT_PIPE] = ACTIONS(2164), + [anon_sym_e_GT_PIPE] = ACTIONS(2164), + [anon_sym_o_GT_PIPE] = ACTIONS(2164), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2164), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2164), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2164), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2164), + [anon_sym_GT2] = ACTIONS(2166), + [anon_sym_DASH2] = ACTIONS(2164), + [anon_sym_STAR2] = ACTIONS(2166), + [anon_sym_and2] = ACTIONS(2164), + [anon_sym_xor2] = ACTIONS(2164), + [anon_sym_or2] = ACTIONS(2164), + [anon_sym_not_DASHin2] = ACTIONS(2164), + [anon_sym_has2] = ACTIONS(2164), + [anon_sym_not_DASHhas2] = ACTIONS(2164), + [anon_sym_starts_DASHwith2] = ACTIONS(2164), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2164), + [anon_sym_ends_DASHwith2] = ACTIONS(2164), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2164), + [anon_sym_EQ_EQ2] = ACTIONS(2164), + [anon_sym_BANG_EQ2] = ACTIONS(2164), + [anon_sym_LT2] = ACTIONS(2166), + [anon_sym_LT_EQ2] = ACTIONS(2164), + [anon_sym_GT_EQ2] = ACTIONS(2164), + [anon_sym_EQ_TILDE2] = ACTIONS(2164), + [anon_sym_BANG_TILDE2] = ACTIONS(2164), + [anon_sym_like2] = ACTIONS(2164), + [anon_sym_not_DASHlike2] = ACTIONS(2164), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2164), + [anon_sym_PLUS_PLUS2] = ACTIONS(2164), + [anon_sym_SLASH2] = ACTIONS(2166), + [anon_sym_mod2] = ACTIONS(2164), + [anon_sym_SLASH_SLASH2] = ACTIONS(2164), + [anon_sym_PLUS2] = ACTIONS(2166), + [anon_sym_bit_DASHshl2] = ACTIONS(2164), + [anon_sym_bit_DASHshr2] = ACTIONS(2164), + [anon_sym_bit_DASHand2] = ACTIONS(2164), + [anon_sym_bit_DASHxor2] = ACTIONS(2164), + [anon_sym_bit_DASHor2] = ACTIONS(2164), + [anon_sym_err_GT] = ACTIONS(2166), + [anon_sym_out_GT] = ACTIONS(2166), + [anon_sym_e_GT] = ACTIONS(2166), + [anon_sym_o_GT] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT] = ACTIONS(2166), + [anon_sym_err_GT_GT] = ACTIONS(2164), + [anon_sym_out_GT_GT] = ACTIONS(2164), + [anon_sym_e_GT_GT] = ACTIONS(2164), + [anon_sym_o_GT_GT] = ACTIONS(2164), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2164), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2164), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2164), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2164), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1043)] = { + [sym__expr_parenthesized_immediate] = STATE(5243), + [sym_comment] = STATE(1043), + [ts_builtin_sym_end] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [sym__newline] = ACTIONS(2132), + [anon_sym_SEMI] = ACTIONS(2132), + [anon_sym_PIPE] = ACTIONS(2132), + [anon_sym_err_GT_PIPE] = ACTIONS(2132), + [anon_sym_out_GT_PIPE] = ACTIONS(2132), + [anon_sym_e_GT_PIPE] = ACTIONS(2132), + [anon_sym_o_GT_PIPE] = ACTIONS(2132), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2132), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2132), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2132), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2132), + [anon_sym_GT2] = ACTIONS(2134), + [anon_sym_DASH2] = ACTIONS(2132), + [anon_sym_STAR2] = ACTIONS(2134), + [anon_sym_and2] = ACTIONS(2132), + [anon_sym_xor2] = ACTIONS(2132), + [anon_sym_or2] = ACTIONS(2132), + [anon_sym_not_DASHin2] = ACTIONS(2132), + [anon_sym_has2] = ACTIONS(2132), + [anon_sym_not_DASHhas2] = ACTIONS(2132), + [anon_sym_starts_DASHwith2] = ACTIONS(2132), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2132), + [anon_sym_ends_DASHwith2] = ACTIONS(2132), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2132), + [anon_sym_EQ_EQ2] = ACTIONS(2132), + [anon_sym_BANG_EQ2] = ACTIONS(2132), + [anon_sym_LT2] = ACTIONS(2134), + [anon_sym_LT_EQ2] = ACTIONS(2132), + [anon_sym_GT_EQ2] = ACTIONS(2132), + [anon_sym_EQ_TILDE2] = ACTIONS(2132), + [anon_sym_BANG_TILDE2] = ACTIONS(2132), + [anon_sym_like2] = ACTIONS(2132), + [anon_sym_not_DASHlike2] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2132), + [anon_sym_PLUS_PLUS2] = ACTIONS(2132), + [anon_sym_SLASH2] = ACTIONS(2134), + [anon_sym_mod2] = ACTIONS(2132), + [anon_sym_SLASH_SLASH2] = ACTIONS(2132), + [anon_sym_PLUS2] = ACTIONS(2134), + [anon_sym_bit_DASHshl2] = ACTIONS(2132), + [anon_sym_bit_DASHshr2] = ACTIONS(2132), + [anon_sym_bit_DASHand2] = ACTIONS(2132), + [anon_sym_bit_DASHxor2] = ACTIONS(2132), + [anon_sym_bit_DASHor2] = ACTIONS(2132), + [anon_sym_err_GT] = ACTIONS(2134), + [anon_sym_out_GT] = ACTIONS(2134), + [anon_sym_e_GT] = ACTIONS(2134), + [anon_sym_o_GT] = ACTIONS(2134), + [anon_sym_err_PLUSout_GT] = ACTIONS(2134), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2134), + [anon_sym_o_PLUSe_GT] = ACTIONS(2134), + [anon_sym_e_PLUSo_GT] = ACTIONS(2134), + [anon_sym_err_GT_GT] = ACTIONS(2132), + [anon_sym_out_GT_GT] = ACTIONS(2132), + [anon_sym_e_GT_GT] = ACTIONS(2132), + [anon_sym_o_GT_GT] = ACTIONS(2132), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2132), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2132), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2132), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2132), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1044)] = { + [aux_sym__repeat_newline] = STATE(1035), + [sym_comment] = STATE(1044), + [anon_sym_in] = ACTIONS(2279), + [sym__newline] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_err_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_GT_PIPE] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_GT2] = ACTIONS(2281), + [anon_sym_DASH2] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_STAR2] = ACTIONS(2281), + [anon_sym_and2] = ACTIONS(2279), + [anon_sym_xor2] = ACTIONS(2279), + [anon_sym_or2] = ACTIONS(2279), + [anon_sym_not_DASHin2] = ACTIONS(2279), + [anon_sym_has2] = ACTIONS(2279), + [anon_sym_not_DASHhas2] = ACTIONS(2279), + [anon_sym_starts_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), + [anon_sym_ends_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), + [anon_sym_EQ_EQ2] = ACTIONS(2279), + [anon_sym_BANG_EQ2] = ACTIONS(2279), + [anon_sym_LT2] = ACTIONS(2281), + [anon_sym_LT_EQ2] = ACTIONS(2279), + [anon_sym_GT_EQ2] = ACTIONS(2279), + [anon_sym_EQ_TILDE2] = ACTIONS(2279), + [anon_sym_BANG_TILDE2] = ACTIONS(2279), + [anon_sym_like2] = ACTIONS(2279), + [anon_sym_not_DASHlike2] = ACTIONS(2279), + [anon_sym_STAR_STAR2] = ACTIONS(2279), + [anon_sym_PLUS_PLUS2] = ACTIONS(2279), + [anon_sym_SLASH2] = ACTIONS(2281), + [anon_sym_mod2] = ACTIONS(2279), + [anon_sym_SLASH_SLASH2] = ACTIONS(2279), + [anon_sym_PLUS2] = ACTIONS(2281), + [anon_sym_bit_DASHshl2] = ACTIONS(2279), + [anon_sym_bit_DASHshr2] = ACTIONS(2279), + [anon_sym_bit_DASHand2] = ACTIONS(2279), + [anon_sym_bit_DASHxor2] = ACTIONS(2279), + [anon_sym_bit_DASHor2] = ACTIONS(2279), + [anon_sym_err_GT] = ACTIONS(2281), + [anon_sym_out_GT] = ACTIONS(2281), + [anon_sym_e_GT] = ACTIONS(2281), + [anon_sym_o_GT] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT] = ACTIONS(2281), + [anon_sym_err_GT_GT] = ACTIONS(2279), + [anon_sym_out_GT_GT] = ACTIONS(2279), + [anon_sym_e_GT_GT] = ACTIONS(2279), + [anon_sym_o_GT_GT] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1045)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1045), + [anon_sym_in] = ACTIONS(2692), + [sym__newline] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_err_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_GT_PIPE] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), + [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_GT2] = ACTIONS(2694), + [anon_sym_DASH2] = ACTIONS(2692), + [anon_sym_LBRACE] = ACTIONS(2692), + [anon_sym_STAR2] = ACTIONS(2694), + [anon_sym_and2] = ACTIONS(2692), + [anon_sym_xor2] = ACTIONS(2692), + [anon_sym_or2] = ACTIONS(2692), + [anon_sym_not_DASHin2] = ACTIONS(2692), + [anon_sym_has2] = ACTIONS(2692), + [anon_sym_not_DASHhas2] = ACTIONS(2692), + [anon_sym_starts_DASHwith2] = ACTIONS(2692), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2692), + [anon_sym_ends_DASHwith2] = ACTIONS(2692), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2692), + [anon_sym_EQ_EQ2] = ACTIONS(2692), + [anon_sym_BANG_EQ2] = ACTIONS(2692), + [anon_sym_LT2] = ACTIONS(2694), + [anon_sym_LT_EQ2] = ACTIONS(2692), + [anon_sym_GT_EQ2] = ACTIONS(2692), + [anon_sym_EQ_TILDE2] = ACTIONS(2692), + [anon_sym_BANG_TILDE2] = ACTIONS(2692), + [anon_sym_like2] = ACTIONS(2692), + [anon_sym_not_DASHlike2] = ACTIONS(2692), + [anon_sym_STAR_STAR2] = ACTIONS(2692), + [anon_sym_PLUS_PLUS2] = ACTIONS(2692), + [anon_sym_SLASH2] = ACTIONS(2694), + [anon_sym_mod2] = ACTIONS(2692), + [anon_sym_SLASH_SLASH2] = ACTIONS(2692), + [anon_sym_PLUS2] = ACTIONS(2694), + [anon_sym_bit_DASHshl2] = ACTIONS(2692), + [anon_sym_bit_DASHshr2] = ACTIONS(2692), + [anon_sym_bit_DASHand2] = ACTIONS(2692), + [anon_sym_bit_DASHxor2] = ACTIONS(2692), + [anon_sym_bit_DASHor2] = ACTIONS(2692), + [anon_sym_err_GT] = ACTIONS(2694), + [anon_sym_out_GT] = ACTIONS(2694), + [anon_sym_e_GT] = ACTIONS(2694), + [anon_sym_o_GT] = ACTIONS(2694), + [anon_sym_err_PLUSout_GT] = ACTIONS(2694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), + [anon_sym_o_PLUSe_GT] = ACTIONS(2694), + [anon_sym_e_PLUSo_GT] = ACTIONS(2694), + [anon_sym_err_GT_GT] = ACTIONS(2692), + [anon_sym_out_GT_GT] = ACTIONS(2692), + [anon_sym_e_GT_GT] = ACTIONS(2692), + [anon_sym_o_GT_GT] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1046)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1046), [anon_sym_in] = ACTIONS(2670), [sym__newline] = ACTIONS(2670), [anon_sym_SEMI] = ACTIONS(2670), @@ -121628,77 +124824,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1003)] = { - [aux_sym__repeat_newline] = STATE(1044), - [sym_comment] = STATE(1003), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(1047)] = { + [sym_comment] = STATE(1047), + [anon_sym_export] = ACTIONS(2112), + [anon_sym_alias] = ACTIONS(2110), + [anon_sym_let] = ACTIONS(2110), + [anon_sym_mut] = ACTIONS(2110), + [anon_sym_const] = ACTIONS(2110), + [aux_sym_cmd_identifier_token1] = ACTIONS(2112), + [anon_sym_def] = ACTIONS(2110), + [anon_sym_use] = ACTIONS(2110), + [anon_sym_export_DASHenv] = ACTIONS(2110), + [anon_sym_extern] = ACTIONS(2110), + [anon_sym_module] = ACTIONS(2110), + [anon_sym_for] = ACTIONS(2110), + [anon_sym_loop] = ACTIONS(2110), + [anon_sym_while] = ACTIONS(2110), + [anon_sym_if] = ACTIONS(2110), + [anon_sym_else] = ACTIONS(2110), + [anon_sym_try] = ACTIONS(2110), + [anon_sym_catch] = ACTIONS(2110), + [anon_sym_match] = ACTIONS(2110), + [anon_sym_in] = ACTIONS(2112), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [anon_sym_null] = ACTIONS(2110), + [aux_sym_cmd_identifier_token3] = ACTIONS(2110), + [aux_sym_cmd_identifier_token4] = ACTIONS(2110), + [aux_sym_cmd_identifier_token5] = ACTIONS(2110), + [sym__newline] = ACTIONS(2110), + [anon_sym_PIPE] = ACTIONS(2110), + [anon_sym_err_GT_PIPE] = ACTIONS(2110), + [anon_sym_out_GT_PIPE] = ACTIONS(2110), + [anon_sym_e_GT_PIPE] = ACTIONS(2110), + [anon_sym_o_GT_PIPE] = ACTIONS(2110), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2110), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2110), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2110), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2110), + [anon_sym_LBRACK] = ACTIONS(2110), + [anon_sym_LPAREN] = ACTIONS(2110), + [anon_sym_DOLLAR] = ACTIONS(2112), + [anon_sym_DASH2] = ACTIONS(2112), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_DOT_DOT] = ACTIONS(2112), + [anon_sym_where] = ACTIONS(2110), + [aux_sym_expr_unary_token1] = ACTIONS(2110), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2110), + [anon_sym_DOT_DOT_LT] = ACTIONS(2110), + [aux_sym__val_number_decimal_token1] = ACTIONS(2112), + [aux_sym__val_number_decimal_token2] = ACTIONS(2110), + [aux_sym__val_number_decimal_token3] = ACTIONS(2110), + [aux_sym__val_number_decimal_token4] = ACTIONS(2110), + [aux_sym__val_number_token1] = ACTIONS(2110), + [aux_sym__val_number_token2] = ACTIONS(2110), + [aux_sym__val_number_token3] = ACTIONS(2110), + [anon_sym_0b] = ACTIONS(2112), + [anon_sym_0o] = ACTIONS(2112), + [anon_sym_0x] = ACTIONS(2112), + [sym_val_date] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2110), + [anon_sym_BQUOTE] = ACTIONS(2110), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2110), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2110), + [anon_sym_CARET] = ACTIONS(2110), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2110), + }, + [STATE(1048)] = { + [aux_sym__repeat_newline] = STATE(1036), + [sym_comment] = STATE(1048), + [anon_sym_in] = ACTIONS(2279), + [sym__newline] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_err_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_GT_PIPE] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_GT2] = ACTIONS(2281), + [anon_sym_DASH2] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_STAR2] = ACTIONS(2281), + [anon_sym_and2] = ACTIONS(2279), + [anon_sym_xor2] = ACTIONS(2279), + [anon_sym_or2] = ACTIONS(2279), + [anon_sym_not_DASHin2] = ACTIONS(2279), + [anon_sym_has2] = ACTIONS(2279), + [anon_sym_not_DASHhas2] = ACTIONS(2279), + [anon_sym_starts_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), + [anon_sym_ends_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), + [anon_sym_EQ_EQ2] = ACTIONS(2279), + [anon_sym_BANG_EQ2] = ACTIONS(2279), + [anon_sym_LT2] = ACTIONS(2281), + [anon_sym_LT_EQ2] = ACTIONS(2279), + [anon_sym_GT_EQ2] = ACTIONS(2279), + [anon_sym_EQ_TILDE2] = ACTIONS(2279), + [anon_sym_BANG_TILDE2] = ACTIONS(2279), + [anon_sym_like2] = ACTIONS(2279), + [anon_sym_not_DASHlike2] = ACTIONS(2279), + [anon_sym_STAR_STAR2] = ACTIONS(2279), + [anon_sym_PLUS_PLUS2] = ACTIONS(2279), + [anon_sym_SLASH2] = ACTIONS(2281), + [anon_sym_mod2] = ACTIONS(2279), + [anon_sym_SLASH_SLASH2] = ACTIONS(2279), + [anon_sym_PLUS2] = ACTIONS(2281), + [anon_sym_bit_DASHshl2] = ACTIONS(2279), + [anon_sym_bit_DASHshr2] = ACTIONS(2279), + [anon_sym_bit_DASHand2] = ACTIONS(2279), + [anon_sym_bit_DASHxor2] = ACTIONS(2279), + [anon_sym_bit_DASHor2] = ACTIONS(2279), + [anon_sym_err_GT] = ACTIONS(2281), + [anon_sym_out_GT] = ACTIONS(2281), + [anon_sym_e_GT] = ACTIONS(2281), + [anon_sym_o_GT] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT] = ACTIONS(2281), + [anon_sym_err_GT_GT] = ACTIONS(2279), + [anon_sym_out_GT_GT] = ACTIONS(2279), + [anon_sym_e_GT_GT] = ACTIONS(2279), + [anon_sym_o_GT_GT] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1004)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1004), + [STATE(1049)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1049), + [anon_sym_in] = ACTIONS(2680), + [sym__newline] = ACTIONS(2680), + [anon_sym_SEMI] = ACTIONS(2680), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_err_GT_PIPE] = ACTIONS(2680), + [anon_sym_out_GT_PIPE] = ACTIONS(2680), + [anon_sym_e_GT_PIPE] = ACTIONS(2680), + [anon_sym_o_GT_PIPE] = ACTIONS(2680), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2680), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2680), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2680), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2680), + [anon_sym_RPAREN] = ACTIONS(2680), + [anon_sym_GT2] = ACTIONS(2682), + [anon_sym_DASH2] = ACTIONS(2680), + [anon_sym_LBRACE] = ACTIONS(2680), + [anon_sym_STAR2] = ACTIONS(2682), + [anon_sym_and2] = ACTIONS(2680), + [anon_sym_xor2] = ACTIONS(2680), + [anon_sym_or2] = ACTIONS(2680), + [anon_sym_not_DASHin2] = ACTIONS(2680), + [anon_sym_has2] = ACTIONS(2680), + [anon_sym_not_DASHhas2] = ACTIONS(2680), + [anon_sym_starts_DASHwith2] = ACTIONS(2680), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2680), + [anon_sym_ends_DASHwith2] = ACTIONS(2680), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2680), + [anon_sym_EQ_EQ2] = ACTIONS(2680), + [anon_sym_BANG_EQ2] = ACTIONS(2680), + [anon_sym_LT2] = ACTIONS(2682), + [anon_sym_LT_EQ2] = ACTIONS(2680), + [anon_sym_GT_EQ2] = ACTIONS(2680), + [anon_sym_EQ_TILDE2] = ACTIONS(2680), + [anon_sym_BANG_TILDE2] = ACTIONS(2680), + [anon_sym_like2] = ACTIONS(2680), + [anon_sym_not_DASHlike2] = ACTIONS(2680), + [anon_sym_STAR_STAR2] = ACTIONS(2680), + [anon_sym_PLUS_PLUS2] = ACTIONS(2680), + [anon_sym_SLASH2] = ACTIONS(2682), + [anon_sym_mod2] = ACTIONS(2680), + [anon_sym_SLASH_SLASH2] = ACTIONS(2680), + [anon_sym_PLUS2] = ACTIONS(2682), + [anon_sym_bit_DASHshl2] = ACTIONS(2680), + [anon_sym_bit_DASHshr2] = ACTIONS(2680), + [anon_sym_bit_DASHand2] = ACTIONS(2680), + [anon_sym_bit_DASHxor2] = ACTIONS(2680), + [anon_sym_bit_DASHor2] = ACTIONS(2680), + [anon_sym_err_GT] = ACTIONS(2682), + [anon_sym_out_GT] = ACTIONS(2682), + [anon_sym_e_GT] = ACTIONS(2682), + [anon_sym_o_GT] = ACTIONS(2682), + [anon_sym_err_PLUSout_GT] = ACTIONS(2682), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2682), + [anon_sym_o_PLUSe_GT] = ACTIONS(2682), + [anon_sym_e_PLUSo_GT] = ACTIONS(2682), + [anon_sym_err_GT_GT] = ACTIONS(2680), + [anon_sym_out_GT_GT] = ACTIONS(2680), + [anon_sym_e_GT_GT] = ACTIONS(2680), + [anon_sym_o_GT_GT] = ACTIONS(2680), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2680), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2680), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2680), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2680), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1050)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1050), [anon_sym_in] = ACTIONS(2670), [sym__newline] = ACTIONS(2670), [anon_sym_SEMI] = ACTIONS(2670), @@ -121764,145 +125096,485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1005)] = { - [aux_sym__repeat_newline] = STATE(1355), - [sym__expression_parenthesized] = STATE(4361), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(1005), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(2668), - [aux_sym_cmd_identifier_token3] = ACTIONS(189), - [aux_sym_cmd_identifier_token4] = ACTIONS(189), - [aux_sym_cmd_identifier_token5] = ACTIONS(189), - [sym__newline] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [STATE(1051)] = { + [sym__expr_parenthesized_immediate] = STATE(5243), + [sym_comment] = STATE(1051), + [ts_builtin_sym_end] = ACTIONS(2066), + [anon_sym_in] = 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_GT2] = ACTIONS(2068), + [anon_sym_DASH2] = ACTIONS(2066), + [anon_sym_STAR2] = ACTIONS(2068), + [anon_sym_and2] = ACTIONS(2066), + [anon_sym_xor2] = ACTIONS(2066), + [anon_sym_or2] = ACTIONS(2066), + [anon_sym_not_DASHin2] = ACTIONS(2066), + [anon_sym_has2] = ACTIONS(2066), + [anon_sym_not_DASHhas2] = ACTIONS(2066), + [anon_sym_starts_DASHwith2] = ACTIONS(2066), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2066), + [anon_sym_ends_DASHwith2] = ACTIONS(2066), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2066), + [anon_sym_EQ_EQ2] = ACTIONS(2066), + [anon_sym_BANG_EQ2] = ACTIONS(2066), + [anon_sym_LT2] = ACTIONS(2068), + [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_like2] = ACTIONS(2066), + [anon_sym_not_DASHlike2] = ACTIONS(2066), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2066), + [anon_sym_PLUS_PLUS2] = ACTIONS(2066), + [anon_sym_SLASH2] = ACTIONS(2068), + [anon_sym_mod2] = ACTIONS(2066), + [anon_sym_SLASH_SLASH2] = ACTIONS(2066), + [anon_sym_PLUS2] = ACTIONS(2068), + [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_err_GT] = ACTIONS(2068), + [anon_sym_out_GT] = ACTIONS(2068), + [anon_sym_e_GT] = ACTIONS(2068), + [anon_sym_o_GT] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT] = ACTIONS(2068), + [anon_sym_err_GT_GT] = ACTIONS(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(3), - [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(1006)] = { - [aux_sym__repeat_newline] = STATE(1045), - [sym_comment] = STATE(1006), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(1052)] = { + [sym__expr_parenthesized_immediate] = STATE(5243), + [sym_comment] = STATE(1052), + [ts_builtin_sym_end] = ACTIONS(2070), + [anon_sym_in] = ACTIONS(2070), + [sym__newline] = ACTIONS(2070), + [anon_sym_SEMI] = ACTIONS(2070), + [anon_sym_PIPE] = ACTIONS(2070), + [anon_sym_err_GT_PIPE] = ACTIONS(2070), + [anon_sym_out_GT_PIPE] = ACTIONS(2070), + [anon_sym_e_GT_PIPE] = ACTIONS(2070), + [anon_sym_o_GT_PIPE] = ACTIONS(2070), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2070), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2070), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2070), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2070), + [anon_sym_GT2] = ACTIONS(2072), + [anon_sym_DASH2] = ACTIONS(2070), + [anon_sym_STAR2] = ACTIONS(2072), + [anon_sym_and2] = ACTIONS(2070), + [anon_sym_xor2] = ACTIONS(2070), + [anon_sym_or2] = ACTIONS(2070), + [anon_sym_not_DASHin2] = ACTIONS(2070), + [anon_sym_has2] = ACTIONS(2070), + [anon_sym_not_DASHhas2] = ACTIONS(2070), + [anon_sym_starts_DASHwith2] = ACTIONS(2070), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2070), + [anon_sym_ends_DASHwith2] = ACTIONS(2070), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2070), + [anon_sym_EQ_EQ2] = ACTIONS(2070), + [anon_sym_BANG_EQ2] = ACTIONS(2070), + [anon_sym_LT2] = ACTIONS(2072), + [anon_sym_LT_EQ2] = ACTIONS(2070), + [anon_sym_GT_EQ2] = ACTIONS(2070), + [anon_sym_EQ_TILDE2] = ACTIONS(2070), + [anon_sym_BANG_TILDE2] = ACTIONS(2070), + [anon_sym_like2] = ACTIONS(2070), + [anon_sym_not_DASHlike2] = ACTIONS(2070), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2070), + [anon_sym_PLUS_PLUS2] = ACTIONS(2070), + [anon_sym_SLASH2] = ACTIONS(2072), + [anon_sym_mod2] = ACTIONS(2070), + [anon_sym_SLASH_SLASH2] = ACTIONS(2070), + [anon_sym_PLUS2] = ACTIONS(2072), + [anon_sym_bit_DASHshl2] = ACTIONS(2070), + [anon_sym_bit_DASHshr2] = ACTIONS(2070), + [anon_sym_bit_DASHand2] = ACTIONS(2070), + [anon_sym_bit_DASHxor2] = ACTIONS(2070), + [anon_sym_bit_DASHor2] = ACTIONS(2070), + [anon_sym_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(2070), + [anon_sym_out_GT_GT] = ACTIONS(2070), + [anon_sym_e_GT_GT] = ACTIONS(2070), + [anon_sym_o_GT_GT] = ACTIONS(2070), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2070), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2070), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2070), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2070), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1007)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1007), + [STATE(1053)] = { + [sym__expr_parenthesized_immediate] = STATE(4759), + [sym_comment] = STATE(1053), + [ts_builtin_sym_end] = ACTIONS(2062), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1054)] = { + [sym_comment] = STATE(1054), + [ts_builtin_sym_end] = ACTIONS(2509), + [anon_sym_in] = ACTIONS(2509), + [sym__newline] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_err_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_GT_PIPE] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2509), + [anon_sym_GT2] = ACTIONS(2511), + [anon_sym_DASH2] = ACTIONS(2509), + [anon_sym_STAR2] = ACTIONS(2511), + [anon_sym_and2] = ACTIONS(2509), + [anon_sym_xor2] = ACTIONS(2509), + [anon_sym_or2] = ACTIONS(2509), + [anon_sym_not_DASHin2] = ACTIONS(2509), + [anon_sym_has2] = ACTIONS(2509), + [anon_sym_not_DASHhas2] = ACTIONS(2509), + [anon_sym_starts_DASHwith2] = ACTIONS(2509), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2509), + [anon_sym_ends_DASHwith2] = ACTIONS(2509), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2509), + [anon_sym_EQ_EQ2] = ACTIONS(2509), + [anon_sym_BANG_EQ2] = ACTIONS(2509), + [anon_sym_LT2] = ACTIONS(2511), + [anon_sym_LT_EQ2] = ACTIONS(2509), + [anon_sym_GT_EQ2] = ACTIONS(2509), + [anon_sym_EQ_TILDE2] = ACTIONS(2509), + [anon_sym_BANG_TILDE2] = ACTIONS(2509), + [anon_sym_like2] = ACTIONS(2509), + [anon_sym_not_DASHlike2] = ACTIONS(2509), + [anon_sym_LPAREN2] = ACTIONS(2513), + [anon_sym_STAR_STAR2] = ACTIONS(2509), + [anon_sym_PLUS_PLUS2] = ACTIONS(2509), + [anon_sym_SLASH2] = ACTIONS(2511), + [anon_sym_mod2] = ACTIONS(2509), + [anon_sym_SLASH_SLASH2] = ACTIONS(2509), + [anon_sym_PLUS2] = ACTIONS(2511), + [anon_sym_bit_DASHshl2] = ACTIONS(2509), + [anon_sym_bit_DASHshr2] = ACTIONS(2509), + [anon_sym_bit_DASHand2] = ACTIONS(2509), + [anon_sym_bit_DASHxor2] = ACTIONS(2509), + [anon_sym_bit_DASHor2] = ACTIONS(2509), + [anon_sym_err_GT] = ACTIONS(2511), + [anon_sym_out_GT] = ACTIONS(2511), + [anon_sym_e_GT] = ACTIONS(2511), + [anon_sym_o_GT] = ACTIONS(2511), + [anon_sym_err_PLUSout_GT] = ACTIONS(2511), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2511), + [anon_sym_o_PLUSe_GT] = ACTIONS(2511), + [anon_sym_e_PLUSo_GT] = ACTIONS(2511), + [anon_sym_err_GT_GT] = ACTIONS(2509), + [anon_sym_out_GT_GT] = ACTIONS(2509), + [anon_sym_e_GT_GT] = ACTIONS(2509), + [anon_sym_o_GT_GT] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2509), + [sym__unquoted_pattern] = ACTIONS(1641), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1055)] = { + [aux_sym__repeat_newline] = STATE(1037), + [sym_comment] = STATE(1055), + [anon_sym_in] = ACTIONS(2279), + [sym__newline] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_err_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_GT_PIPE] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_GT2] = ACTIONS(2281), + [anon_sym_DASH2] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_STAR2] = ACTIONS(2281), + [anon_sym_and2] = ACTIONS(2279), + [anon_sym_xor2] = ACTIONS(2279), + [anon_sym_or2] = ACTIONS(2279), + [anon_sym_not_DASHin2] = ACTIONS(2279), + [anon_sym_has2] = ACTIONS(2279), + [anon_sym_not_DASHhas2] = ACTIONS(2279), + [anon_sym_starts_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), + [anon_sym_ends_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), + [anon_sym_EQ_EQ2] = ACTIONS(2279), + [anon_sym_BANG_EQ2] = ACTIONS(2279), + [anon_sym_LT2] = ACTIONS(2281), + [anon_sym_LT_EQ2] = ACTIONS(2279), + [anon_sym_GT_EQ2] = ACTIONS(2279), + [anon_sym_EQ_TILDE2] = ACTIONS(2279), + [anon_sym_BANG_TILDE2] = ACTIONS(2279), + [anon_sym_like2] = ACTIONS(2279), + [anon_sym_not_DASHlike2] = ACTIONS(2279), + [anon_sym_STAR_STAR2] = ACTIONS(2279), + [anon_sym_PLUS_PLUS2] = ACTIONS(2279), + [anon_sym_SLASH2] = ACTIONS(2281), + [anon_sym_mod2] = ACTIONS(2279), + [anon_sym_SLASH_SLASH2] = ACTIONS(2279), + [anon_sym_PLUS2] = ACTIONS(2281), + [anon_sym_bit_DASHshl2] = ACTIONS(2279), + [anon_sym_bit_DASHshr2] = ACTIONS(2279), + [anon_sym_bit_DASHand2] = ACTIONS(2279), + [anon_sym_bit_DASHxor2] = ACTIONS(2279), + [anon_sym_bit_DASHor2] = ACTIONS(2279), + [anon_sym_err_GT] = ACTIONS(2281), + [anon_sym_out_GT] = ACTIONS(2281), + [anon_sym_e_GT] = ACTIONS(2281), + [anon_sym_o_GT] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT] = ACTIONS(2281), + [anon_sym_err_GT_GT] = ACTIONS(2279), + [anon_sym_out_GT_GT] = ACTIONS(2279), + [anon_sym_e_GT_GT] = ACTIONS(2279), + [anon_sym_o_GT_GT] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1056)] = { + [sym__expr_parenthesized_immediate] = STATE(4759), + [sym_comment] = STATE(1056), + [ts_builtin_sym_end] = ACTIONS(2062), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1057)] = { + [sym__expr_parenthesized_immediate] = STATE(4759), + [sym_comment] = STATE(1057), + [ts_builtin_sym_end] = ACTIONS(2062), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1058)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1058), [anon_sym_in] = ACTIONS(2670), [sym__newline] = ACTIONS(2670), [anon_sym_SEMI] = ACTIONS(2670), @@ -121968,77 +125640,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1008)] = { - [aux_sym__repeat_newline] = STATE(1052), - [sym_comment] = STATE(1008), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(1059)] = { + [sym__expr_parenthesized_immediate] = STATE(4759), + [sym_comment] = STATE(1059), + [ts_builtin_sym_end] = ACTIONS(2062), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1009)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1009), + [STATE(1060)] = { + [sym_comment] = STATE(1060), + [anon_sym_export] = ACTIONS(2696), + [anon_sym_alias] = ACTIONS(2698), + [anon_sym_let] = ACTIONS(2698), + [anon_sym_mut] = ACTIONS(2698), + [anon_sym_const] = ACTIONS(2698), + [aux_sym_cmd_identifier_token1] = ACTIONS(2696), + [anon_sym_def] = ACTIONS(2698), + [anon_sym_use] = ACTIONS(2698), + [anon_sym_export_DASHenv] = ACTIONS(2698), + [anon_sym_extern] = ACTIONS(2698), + [anon_sym_module] = ACTIONS(2698), + [anon_sym_for] = ACTIONS(2698), + [anon_sym_loop] = ACTIONS(2698), + [anon_sym_while] = ACTIONS(2698), + [anon_sym_if] = ACTIONS(2698), + [anon_sym_else] = ACTIONS(2698), + [anon_sym_try] = ACTIONS(2698), + [anon_sym_catch] = ACTIONS(2698), + [anon_sym_match] = ACTIONS(2698), + [anon_sym_in] = ACTIONS(2696), + [anon_sym_true] = ACTIONS(2698), + [anon_sym_false] = ACTIONS(2698), + [anon_sym_null] = ACTIONS(2698), + [aux_sym_cmd_identifier_token3] = ACTIONS(2698), + [aux_sym_cmd_identifier_token4] = ACTIONS(2698), + [aux_sym_cmd_identifier_token5] = ACTIONS(2698), + [sym__newline] = ACTIONS(2698), + [anon_sym_PIPE] = ACTIONS(2698), + [anon_sym_err_GT_PIPE] = ACTIONS(2698), + [anon_sym_out_GT_PIPE] = ACTIONS(2698), + [anon_sym_e_GT_PIPE] = ACTIONS(2698), + [anon_sym_o_GT_PIPE] = ACTIONS(2698), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2698), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2698), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2698), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2698), + [anon_sym_LBRACK] = ACTIONS(2698), + [anon_sym_LPAREN] = ACTIONS(2698), + [anon_sym_DOLLAR] = ACTIONS(2696), + [anon_sym_DASH2] = ACTIONS(2696), + [anon_sym_LBRACE] = ACTIONS(2698), + [anon_sym_DOT_DOT] = ACTIONS(2696), + [anon_sym_where] = ACTIONS(2698), + [aux_sym_expr_unary_token1] = ACTIONS(2698), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2698), + [anon_sym_DOT_DOT_LT] = ACTIONS(2698), + [aux_sym__val_number_decimal_token1] = ACTIONS(2696), + [aux_sym__val_number_decimal_token2] = ACTIONS(2698), + [aux_sym__val_number_decimal_token3] = ACTIONS(2698), + [aux_sym__val_number_decimal_token4] = ACTIONS(2698), + [aux_sym__val_number_token1] = ACTIONS(2698), + [aux_sym__val_number_token2] = ACTIONS(2698), + [aux_sym__val_number_token3] = ACTIONS(2698), + [anon_sym_0b] = ACTIONS(2696), + [anon_sym_0o] = ACTIONS(2696), + [anon_sym_0x] = ACTIONS(2696), + [sym_val_date] = ACTIONS(2698), + [anon_sym_DQUOTE] = ACTIONS(2698), + [anon_sym_SQUOTE] = ACTIONS(2698), + [anon_sym_BQUOTE] = ACTIONS(2698), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2698), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2698), + [anon_sym_CARET] = ACTIONS(2698), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2698), + }, + [STATE(1061)] = { + [aux_sym__repeat_newline] = STATE(1049), + [sym_comment] = STATE(1061), + [anon_sym_in] = ACTIONS(2279), + [sym__newline] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_err_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_GT_PIPE] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_GT2] = ACTIONS(2281), + [anon_sym_DASH2] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_STAR2] = ACTIONS(2281), + [anon_sym_and2] = ACTIONS(2279), + [anon_sym_xor2] = ACTIONS(2279), + [anon_sym_or2] = ACTIONS(2279), + [anon_sym_not_DASHin2] = ACTIONS(2279), + [anon_sym_has2] = ACTIONS(2279), + [anon_sym_not_DASHhas2] = ACTIONS(2279), + [anon_sym_starts_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), + [anon_sym_ends_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), + [anon_sym_EQ_EQ2] = ACTIONS(2279), + [anon_sym_BANG_EQ2] = ACTIONS(2279), + [anon_sym_LT2] = ACTIONS(2281), + [anon_sym_LT_EQ2] = ACTIONS(2279), + [anon_sym_GT_EQ2] = ACTIONS(2279), + [anon_sym_EQ_TILDE2] = ACTIONS(2279), + [anon_sym_BANG_TILDE2] = ACTIONS(2279), + [anon_sym_like2] = ACTIONS(2279), + [anon_sym_not_DASHlike2] = ACTIONS(2279), + [anon_sym_STAR_STAR2] = ACTIONS(2279), + [anon_sym_PLUS_PLUS2] = ACTIONS(2279), + [anon_sym_SLASH2] = ACTIONS(2281), + [anon_sym_mod2] = ACTIONS(2279), + [anon_sym_SLASH_SLASH2] = ACTIONS(2279), + [anon_sym_PLUS2] = ACTIONS(2281), + [anon_sym_bit_DASHshl2] = ACTIONS(2279), + [anon_sym_bit_DASHshr2] = ACTIONS(2279), + [anon_sym_bit_DASHand2] = ACTIONS(2279), + [anon_sym_bit_DASHxor2] = ACTIONS(2279), + [anon_sym_bit_DASHor2] = ACTIONS(2279), + [anon_sym_err_GT] = ACTIONS(2281), + [anon_sym_out_GT] = ACTIONS(2281), + [anon_sym_e_GT] = ACTIONS(2281), + [anon_sym_o_GT] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT] = ACTIONS(2281), + [anon_sym_err_GT_GT] = ACTIONS(2279), + [anon_sym_out_GT_GT] = ACTIONS(2279), + [anon_sym_e_GT_GT] = ACTIONS(2279), + [anon_sym_o_GT_GT] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1062)] = { + [aux_sym__repeat_newline] = STATE(1065), + [sym_comment] = STATE(1062), + [anon_sym_in] = ACTIONS(2279), + [sym__newline] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_err_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_GT_PIPE] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_GT2] = ACTIONS(2281), + [anon_sym_DASH2] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_STAR2] = ACTIONS(2281), + [anon_sym_and2] = ACTIONS(2279), + [anon_sym_xor2] = ACTIONS(2279), + [anon_sym_or2] = ACTIONS(2279), + [anon_sym_not_DASHin2] = ACTIONS(2279), + [anon_sym_has2] = ACTIONS(2279), + [anon_sym_not_DASHhas2] = ACTIONS(2279), + [anon_sym_starts_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), + [anon_sym_ends_DASHwith2] = ACTIONS(2279), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), + [anon_sym_EQ_EQ2] = ACTIONS(2279), + [anon_sym_BANG_EQ2] = ACTIONS(2279), + [anon_sym_LT2] = ACTIONS(2281), + [anon_sym_LT_EQ2] = ACTIONS(2279), + [anon_sym_GT_EQ2] = ACTIONS(2279), + [anon_sym_EQ_TILDE2] = ACTIONS(2279), + [anon_sym_BANG_TILDE2] = ACTIONS(2279), + [anon_sym_like2] = ACTIONS(2279), + [anon_sym_not_DASHlike2] = ACTIONS(2279), + [anon_sym_STAR_STAR2] = ACTIONS(2279), + [anon_sym_PLUS_PLUS2] = ACTIONS(2279), + [anon_sym_SLASH2] = ACTIONS(2281), + [anon_sym_mod2] = ACTIONS(2279), + [anon_sym_SLASH_SLASH2] = ACTIONS(2279), + [anon_sym_PLUS2] = ACTIONS(2281), + [anon_sym_bit_DASHshl2] = ACTIONS(2279), + [anon_sym_bit_DASHshr2] = ACTIONS(2279), + [anon_sym_bit_DASHand2] = ACTIONS(2279), + [anon_sym_bit_DASHxor2] = ACTIONS(2279), + [anon_sym_bit_DASHor2] = ACTIONS(2279), + [anon_sym_err_GT] = ACTIONS(2281), + [anon_sym_out_GT] = ACTIONS(2281), + [anon_sym_e_GT] = ACTIONS(2281), + [anon_sym_o_GT] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT] = ACTIONS(2281), + [anon_sym_err_GT_GT] = ACTIONS(2279), + [anon_sym_out_GT_GT] = ACTIONS(2279), + [anon_sym_e_GT_GT] = ACTIONS(2279), + [anon_sym_o_GT_GT] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1063)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1063), [anon_sym_in] = ACTIONS(2670), [sym__newline] = ACTIONS(2670), [anon_sym_SEMI] = ACTIONS(2670), @@ -122104,802 +125980,394 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1010)] = { - [aux_sym__repeat_newline] = STATE(1053), - [sym_comment] = STATE(1010), - [anon_sym_in] = ACTIONS(2309), - [sym__newline] = ACTIONS(2309), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_err_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_GT_PIPE] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_GT2] = ACTIONS(2311), - [anon_sym_DASH2] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_STAR2] = ACTIONS(2311), - [anon_sym_and2] = ACTIONS(2309), - [anon_sym_xor2] = ACTIONS(2309), - [anon_sym_or2] = ACTIONS(2309), - [anon_sym_not_DASHin2] = ACTIONS(2309), - [anon_sym_has2] = ACTIONS(2309), - [anon_sym_not_DASHhas2] = ACTIONS(2309), - [anon_sym_starts_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2309), - [anon_sym_ends_DASHwith2] = ACTIONS(2309), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2309), - [anon_sym_EQ_EQ2] = ACTIONS(2309), - [anon_sym_BANG_EQ2] = ACTIONS(2309), - [anon_sym_LT2] = ACTIONS(2311), - [anon_sym_LT_EQ2] = ACTIONS(2309), - [anon_sym_GT_EQ2] = ACTIONS(2309), - [anon_sym_EQ_TILDE2] = ACTIONS(2309), - [anon_sym_BANG_TILDE2] = ACTIONS(2309), - [anon_sym_like2] = ACTIONS(2309), - [anon_sym_not_DASHlike2] = ACTIONS(2309), - [anon_sym_STAR_STAR2] = ACTIONS(2309), - [anon_sym_PLUS_PLUS2] = ACTIONS(2309), - [anon_sym_SLASH2] = ACTIONS(2311), - [anon_sym_mod2] = ACTIONS(2309), - [anon_sym_SLASH_SLASH2] = ACTIONS(2309), - [anon_sym_PLUS2] = ACTIONS(2311), - [anon_sym_bit_DASHshl2] = ACTIONS(2309), - [anon_sym_bit_DASHshr2] = ACTIONS(2309), - [anon_sym_bit_DASHand2] = ACTIONS(2309), - [anon_sym_bit_DASHxor2] = ACTIONS(2309), - [anon_sym_bit_DASHor2] = ACTIONS(2309), - [anon_sym_err_GT] = ACTIONS(2311), - [anon_sym_out_GT] = ACTIONS(2311), - [anon_sym_e_GT] = ACTIONS(2311), - [anon_sym_o_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT] = ACTIONS(2311), - [anon_sym_err_GT_GT] = ACTIONS(2309), - [anon_sym_out_GT_GT] = ACTIONS(2309), - [anon_sym_e_GT_GT] = ACTIONS(2309), - [anon_sym_o_GT_GT] = ACTIONS(2309), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2309), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2309), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2309), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2309), + [STATE(1064)] = { + [sym_comment] = STATE(1064), + [anon_sym_export] = ACTIONS(2700), + [anon_sym_alias] = ACTIONS(2702), + [anon_sym_let] = ACTIONS(2702), + [anon_sym_mut] = ACTIONS(2702), + [anon_sym_const] = ACTIONS(2702), + [aux_sym_cmd_identifier_token1] = ACTIONS(2700), + [anon_sym_def] = ACTIONS(2702), + [anon_sym_use] = ACTIONS(2702), + [anon_sym_export_DASHenv] = ACTIONS(2702), + [anon_sym_extern] = ACTIONS(2702), + [anon_sym_module] = ACTIONS(2702), + [anon_sym_for] = ACTIONS(2702), + [anon_sym_loop] = ACTIONS(2702), + [anon_sym_while] = ACTIONS(2702), + [anon_sym_if] = ACTIONS(2702), + [anon_sym_else] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2702), + [anon_sym_catch] = ACTIONS(2702), + [anon_sym_match] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(2700), + [anon_sym_true] = ACTIONS(2702), + [anon_sym_false] = ACTIONS(2702), + [anon_sym_null] = ACTIONS(2702), + [aux_sym_cmd_identifier_token3] = ACTIONS(2702), + [aux_sym_cmd_identifier_token4] = ACTIONS(2702), + [aux_sym_cmd_identifier_token5] = ACTIONS(2702), + [sym__newline] = ACTIONS(2110), + [anon_sym_PIPE] = ACTIONS(2110), + [anon_sym_err_GT_PIPE] = ACTIONS(2110), + [anon_sym_out_GT_PIPE] = ACTIONS(2110), + [anon_sym_e_GT_PIPE] = ACTIONS(2110), + [anon_sym_o_GT_PIPE] = ACTIONS(2110), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2110), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2110), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2110), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2110), + [anon_sym_LBRACK] = ACTIONS(2702), + [anon_sym_LPAREN] = ACTIONS(2702), + [anon_sym_DOLLAR] = ACTIONS(2700), + [anon_sym_DASH2] = ACTIONS(2700), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_DOT_DOT] = ACTIONS(2700), + [anon_sym_where] = ACTIONS(2702), + [aux_sym_expr_unary_token1] = ACTIONS(2702), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), + [anon_sym_DOT_DOT_LT] = ACTIONS(2702), + [aux_sym__val_number_decimal_token1] = ACTIONS(2700), + [aux_sym__val_number_decimal_token2] = ACTIONS(2702), + [aux_sym__val_number_decimal_token3] = ACTIONS(2702), + [aux_sym__val_number_decimal_token4] = ACTIONS(2702), + [aux_sym__val_number_token1] = ACTIONS(2702), + [aux_sym__val_number_token2] = ACTIONS(2702), + [aux_sym__val_number_token3] = ACTIONS(2702), + [anon_sym_0b] = ACTIONS(2700), + [anon_sym_0o] = ACTIONS(2700), + [anon_sym_0x] = ACTIONS(2700), + [sym_val_date] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [anon_sym_SQUOTE] = ACTIONS(2702), + [anon_sym_BQUOTE] = ACTIONS(2702), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2702), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2702), + [anon_sym_CARET] = ACTIONS(2702), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2702), + }, + [STATE(1065)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1065), + [anon_sym_in] = ACTIONS(2680), + [sym__newline] = ACTIONS(2680), + [anon_sym_SEMI] = ACTIONS(2680), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_err_GT_PIPE] = ACTIONS(2680), + [anon_sym_out_GT_PIPE] = ACTIONS(2680), + [anon_sym_e_GT_PIPE] = ACTIONS(2680), + [anon_sym_o_GT_PIPE] = ACTIONS(2680), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2680), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2680), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2680), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2680), + [anon_sym_RPAREN] = ACTIONS(2680), + [anon_sym_GT2] = ACTIONS(2682), + [anon_sym_DASH2] = ACTIONS(2680), + [anon_sym_LBRACE] = ACTIONS(2680), + [anon_sym_STAR2] = ACTIONS(2682), + [anon_sym_and2] = ACTIONS(2680), + [anon_sym_xor2] = ACTIONS(2680), + [anon_sym_or2] = ACTIONS(2680), + [anon_sym_not_DASHin2] = ACTIONS(2680), + [anon_sym_has2] = ACTIONS(2680), + [anon_sym_not_DASHhas2] = ACTIONS(2680), + [anon_sym_starts_DASHwith2] = ACTIONS(2680), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2680), + [anon_sym_ends_DASHwith2] = ACTIONS(2680), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2680), + [anon_sym_EQ_EQ2] = ACTIONS(2680), + [anon_sym_BANG_EQ2] = ACTIONS(2680), + [anon_sym_LT2] = ACTIONS(2682), + [anon_sym_LT_EQ2] = ACTIONS(2680), + [anon_sym_GT_EQ2] = ACTIONS(2680), + [anon_sym_EQ_TILDE2] = ACTIONS(2680), + [anon_sym_BANG_TILDE2] = ACTIONS(2680), + [anon_sym_like2] = ACTIONS(2680), + [anon_sym_not_DASHlike2] = ACTIONS(2680), + [anon_sym_STAR_STAR2] = ACTIONS(2680), + [anon_sym_PLUS_PLUS2] = ACTIONS(2680), + [anon_sym_SLASH2] = ACTIONS(2682), + [anon_sym_mod2] = ACTIONS(2680), + [anon_sym_SLASH_SLASH2] = ACTIONS(2680), + [anon_sym_PLUS2] = ACTIONS(2682), + [anon_sym_bit_DASHshl2] = ACTIONS(2680), + [anon_sym_bit_DASHshr2] = ACTIONS(2680), + [anon_sym_bit_DASHand2] = ACTIONS(2680), + [anon_sym_bit_DASHxor2] = ACTIONS(2680), + [anon_sym_bit_DASHor2] = ACTIONS(2680), + [anon_sym_err_GT] = ACTIONS(2682), + [anon_sym_out_GT] = ACTIONS(2682), + [anon_sym_e_GT] = ACTIONS(2682), + [anon_sym_o_GT] = ACTIONS(2682), + [anon_sym_err_PLUSout_GT] = ACTIONS(2682), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2682), + [anon_sym_o_PLUSe_GT] = ACTIONS(2682), + [anon_sym_e_PLUSo_GT] = ACTIONS(2682), + [anon_sym_err_GT_GT] = ACTIONS(2680), + [anon_sym_out_GT_GT] = ACTIONS(2680), + [anon_sym_e_GT_GT] = ACTIONS(2680), + [anon_sym_o_GT_GT] = ACTIONS(2680), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2680), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2680), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2680), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2680), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1011)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1011), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1012)] = { - [sym__expr_parenthesized_immediate] = STATE(4754), - [sym_comment] = STATE(1012), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1013)] = { - [aux_sym__repeat_newline] = STATE(1055), - [sym_comment] = STATE(1013), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1014)] = { - [aux_sym__repeat_newline] = STATE(1057), - [sym_comment] = STATE(1014), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1015)] = { - [aux_sym__repeat_newline] = STATE(1060), - [sym_comment] = STATE(1015), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1016)] = { - [sym__expr_parenthesized_immediate] = STATE(4754), - [sym_comment] = STATE(1016), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1017)] = { - [aux_sym__repeat_newline] = STATE(1062), - [sym_comment] = STATE(1017), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1018)] = { - [aux_sym__repeat_newline] = STATE(1065), - [sym_comment] = STATE(1018), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [STATE(1066)] = { + [aux_sym__repeat_newline] = STATE(1005), + [sym_comment] = STATE(1066), + [anon_sym_in] = ACTIONS(2198), + [sym__newline] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_err_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_GT_PIPE] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_GT2] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2198), + [anon_sym_xor2] = ACTIONS(2198), + [anon_sym_or2] = ACTIONS(2198), + [anon_sym_not_DASHin2] = ACTIONS(2198), + [anon_sym_has2] = ACTIONS(2198), + [anon_sym_not_DASHhas2] = ACTIONS(2198), + [anon_sym_starts_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), + [anon_sym_ends_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), + [anon_sym_EQ_EQ2] = ACTIONS(2198), + [anon_sym_BANG_EQ2] = ACTIONS(2198), + [anon_sym_LT2] = ACTIONS(2200), + [anon_sym_LT_EQ2] = ACTIONS(2198), + [anon_sym_GT_EQ2] = ACTIONS(2198), + [anon_sym_EQ_TILDE2] = ACTIONS(2198), + [anon_sym_BANG_TILDE2] = ACTIONS(2198), + [anon_sym_like2] = ACTIONS(2198), + [anon_sym_not_DASHlike2] = ACTIONS(2198), + [anon_sym_STAR_STAR2] = ACTIONS(2198), + [anon_sym_PLUS_PLUS2] = ACTIONS(2198), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2198), + [anon_sym_SLASH_SLASH2] = ACTIONS(2198), + [anon_sym_PLUS2] = ACTIONS(2200), + [anon_sym_bit_DASHshl2] = ACTIONS(2198), + [anon_sym_bit_DASHshr2] = ACTIONS(2198), + [anon_sym_bit_DASHand2] = ACTIONS(2198), + [anon_sym_bit_DASHxor2] = ACTIONS(2198), + [anon_sym_bit_DASHor2] = ACTIONS(2198), + [anon_sym_err_GT] = ACTIONS(2200), + [anon_sym_out_GT] = ACTIONS(2200), + [anon_sym_e_GT] = ACTIONS(2200), + [anon_sym_o_GT] = ACTIONS(2200), + [anon_sym_err_PLUSout_GT] = ACTIONS(2200), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), + [anon_sym_o_PLUSe_GT] = ACTIONS(2200), + [anon_sym_e_PLUSo_GT] = ACTIONS(2200), + [anon_sym_err_GT_GT] = ACTIONS(2198), + [anon_sym_out_GT_GT] = ACTIONS(2198), + [anon_sym_e_GT_GT] = ACTIONS(2198), + [anon_sym_o_GT_GT] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1019)] = { - [aux_sym__repeat_newline] = STATE(1067), - [sym_comment] = STATE(1019), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [STATE(1067)] = { + [aux_sym__repeat_newline] = STATE(1075), + [sym_comment] = STATE(1067), + [anon_sym_in] = ACTIONS(2289), + [sym__newline] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_err_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_GT_PIPE] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), + [anon_sym_RPAREN] = ACTIONS(2289), + [anon_sym_GT2] = ACTIONS(2291), + [anon_sym_DASH2] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_STAR2] = ACTIONS(2291), + [anon_sym_and2] = ACTIONS(2289), + [anon_sym_xor2] = ACTIONS(2289), + [anon_sym_or2] = ACTIONS(2289), + [anon_sym_not_DASHin2] = ACTIONS(2289), + [anon_sym_has2] = ACTIONS(2289), + [anon_sym_not_DASHhas2] = ACTIONS(2289), + [anon_sym_starts_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), + [anon_sym_ends_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), + [anon_sym_EQ_EQ2] = ACTIONS(2289), + [anon_sym_BANG_EQ2] = ACTIONS(2289), + [anon_sym_LT2] = ACTIONS(2291), + [anon_sym_LT_EQ2] = ACTIONS(2289), + [anon_sym_GT_EQ2] = ACTIONS(2289), + [anon_sym_EQ_TILDE2] = ACTIONS(2289), + [anon_sym_BANG_TILDE2] = ACTIONS(2289), + [anon_sym_like2] = ACTIONS(2289), + [anon_sym_not_DASHlike2] = ACTIONS(2289), + [anon_sym_STAR_STAR2] = ACTIONS(2289), + [anon_sym_PLUS_PLUS2] = ACTIONS(2289), + [anon_sym_SLASH2] = ACTIONS(2291), + [anon_sym_mod2] = ACTIONS(2289), + [anon_sym_SLASH_SLASH2] = ACTIONS(2289), + [anon_sym_PLUS2] = ACTIONS(2291), + [anon_sym_bit_DASHshl2] = ACTIONS(2289), + [anon_sym_bit_DASHshr2] = ACTIONS(2289), + [anon_sym_bit_DASHand2] = ACTIONS(2289), + [anon_sym_bit_DASHxor2] = ACTIONS(2289), + [anon_sym_bit_DASHor2] = ACTIONS(2289), + [anon_sym_err_GT] = ACTIONS(2291), + [anon_sym_out_GT] = ACTIONS(2291), + [anon_sym_e_GT] = ACTIONS(2291), + [anon_sym_o_GT] = ACTIONS(2291), + [anon_sym_err_PLUSout_GT] = ACTIONS(2291), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), + [anon_sym_o_PLUSe_GT] = ACTIONS(2291), + [anon_sym_e_PLUSo_GT] = ACTIONS(2291), + [anon_sym_err_GT_GT] = ACTIONS(2289), + [anon_sym_out_GT_GT] = ACTIONS(2289), + [anon_sym_e_GT_GT] = ACTIONS(2289), + [anon_sym_o_GT_GT] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1020)] = { - [aux_sym__repeat_newline] = STATE(1070), - [sym_comment] = STATE(1020), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), + [STATE(1068)] = { + [sym__expr_parenthesized_immediate] = STATE(4759), + [sym_comment] = STATE(1068), + [ts_builtin_sym_end] = ACTIONS(2062), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1021)] = { - [aux_sym__repeat_newline] = STATE(4288), - [sym__match_pattern_expression] = STATE(4235), - [sym__match_pattern_value] = STATE(4440), - [sym__match_pattern_list_body] = STATE(4599), - [sym__match_pattern_list] = STATE(4441), - [sym__match_pattern_rest] = STATE(5174), - [sym__match_pattern_record] = STATE(4447), - [sym_expr_parenthesized] = STATE(3756), - [sym_val_range] = STATE(4440), - [sym__val_range] = STATE(4978), - [sym_val_nothing] = STATE(4447), - [sym_val_bool] = STATE(4265), - [sym_val_variable] = STATE(3757), - [sym_val_number] = STATE(4447), - [sym__val_number_decimal] = STATE(3555), - [sym__val_number] = STATE(4130), - [sym_val_duration] = STATE(4447), - [sym_val_filesize] = STATE(4447), - [sym_val_binary] = STATE(4447), - [sym_val_string] = STATE(4447), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_list] = STATE(5014), - [sym__table_head] = STATE(3685), - [sym_val_table] = STATE(4447), - [sym__unquoted_in_list] = STATE(4235), - [sym__unquoted_anonymous_prefix] = STATE(4978), - [sym_comment] = STATE(1021), - [aux_sym__types_body_repeat1] = STATE(1394), - [aux_sym_parameter_repeat2] = STATE(3996), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1418), + [STATE(1069)] = { + [aux_sym__repeat_newline] = STATE(4123), + [sym__match_pattern_expression] = STATE(4388), + [sym__match_pattern_value] = STATE(4618), + [sym__match_pattern_list_body] = STATE(4652), + [sym__match_pattern_list] = STATE(4619), + [sym__match_pattern_rest] = STATE(5257), + [sym__match_pattern_record] = STATE(4622), + [sym_expr_parenthesized] = STATE(3839), + [sym_val_range] = STATE(4618), + [sym__val_range] = STATE(5078), + [sym_val_nothing] = STATE(4622), + [sym_val_bool] = STATE(4190), + [sym_val_variable] = STATE(3841), + [sym_val_number] = STATE(4622), + [sym__val_number_decimal] = STATE(3591), + [sym__val_number] = STATE(4361), + [sym_val_duration] = STATE(4622), + [sym_val_filesize] = STATE(4622), + [sym_val_binary] = STATE(4622), + [sym_val_string] = STATE(4622), + [sym__raw_str] = STATE(3638), + [sym__str_double_quotes] = STATE(3638), + [sym__str_single_quotes] = STATE(3638), + [sym__str_back_ticks] = STATE(3638), + [sym_val_list] = STATE(4890), + [sym__table_head] = STATE(3767), + [sym_val_table] = STATE(4622), + [sym__unquoted_in_list] = STATE(4388), + [sym__unquoted_anonymous_prefix] = STATE(5078), + [sym_comment] = STATE(1069), + [aux_sym__types_body_repeat1] = STATE(1395), + [aux_sym_parameter_repeat2] = STATE(4037), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1423), [anon_sym_true] = ACTIONS(1374), [anon_sym_false] = ACTIONS(1374), [anon_sym_null] = ACTIONS(1376), [aux_sym_cmd_identifier_token3] = ACTIONS(1378), [aux_sym_cmd_identifier_token4] = ACTIONS(1378), [aux_sym_cmd_identifier_token5] = ACTIONS(1378), - [sym__newline] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(2652), - [anon_sym_RBRACK] = ACTIONS(2710), + [sym__newline] = ACTIONS(2644), + [anon_sym_LBRACK] = ACTIONS(2646), + [anon_sym_RBRACK] = ACTIONS(2704), [anon_sym_LPAREN] = ACTIONS(1386), [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_DOLLAR] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_DOT_DOT] = ACTIONS(1394), + [anon_sym_DOLLAR] = ACTIONS(2650), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_DOT_DOT] = ACTIONS(2706), [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), [anon_sym_DOT_DOT_LT] = ACTIONS(1396), [aux_sym__val_number_decimal_token1] = ACTIONS(1398), @@ -122912,7 +126380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0b] = ACTIONS(1406), [anon_sym_0o] = ACTIONS(1408), [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(2662), + [sym_val_date] = ACTIONS(2654), [anon_sym_DQUOTE] = ACTIONS(1412), [anon_sym_SQUOTE] = ACTIONS(1414), [anon_sym_BQUOTE] = ACTIONS(1416), @@ -122920,4701 +126388,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(1022)] = { - [aux_sym__repeat_newline] = STATE(1073), - [sym_comment] = STATE(1022), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1023)] = { - [aux_sym__repeat_newline] = STATE(1077), - [sym_comment] = STATE(1023), - [anon_sym_in] = ACTIONS(2712), - [sym__newline] = ACTIONS(2712), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2714), - [anon_sym_DASH2] = ACTIONS(2712), - [anon_sym_LBRACE] = ACTIONS(2712), - [anon_sym_STAR2] = ACTIONS(2714), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2712), - [anon_sym_has2] = ACTIONS(2712), - [anon_sym_not_DASHhas2] = ACTIONS(2712), - [anon_sym_starts_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), - [anon_sym_ends_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), - [anon_sym_EQ_EQ2] = ACTIONS(2712), - [anon_sym_BANG_EQ2] = ACTIONS(2712), - [anon_sym_LT2] = ACTIONS(2714), - [anon_sym_LT_EQ2] = ACTIONS(2712), - [anon_sym_GT_EQ2] = ACTIONS(2712), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2712), - [anon_sym_PLUS_PLUS2] = ACTIONS(2712), - [anon_sym_SLASH2] = ACTIONS(2714), - [anon_sym_mod2] = ACTIONS(2712), - [anon_sym_SLASH_SLASH2] = ACTIONS(2712), - [anon_sym_PLUS2] = ACTIONS(2714), - [anon_sym_bit_DASHshl2] = ACTIONS(2712), - [anon_sym_bit_DASHshr2] = ACTIONS(2712), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1024)] = { - [aux_sym__repeat_newline] = STATE(1078), - [sym_comment] = STATE(1024), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1025)] = { - [sym_comment] = STATE(1025), - [ts_builtin_sym_end] = ACTIONS(2501), - [anon_sym_in] = ACTIONS(2501), - [sym__newline] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_PIPE] = ACTIONS(2501), - [anon_sym_err_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_GT_PIPE] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2501), - [anon_sym_GT2] = ACTIONS(2503), - [anon_sym_DASH2] = ACTIONS(2501), - [anon_sym_STAR2] = ACTIONS(2503), - [anon_sym_and2] = ACTIONS(2501), - [anon_sym_xor2] = ACTIONS(2501), - [anon_sym_or2] = ACTIONS(2501), - [anon_sym_not_DASHin2] = ACTIONS(2501), - [anon_sym_has2] = ACTIONS(2501), - [anon_sym_not_DASHhas2] = ACTIONS(2501), - [anon_sym_starts_DASHwith2] = ACTIONS(2501), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2501), - [anon_sym_ends_DASHwith2] = ACTIONS(2501), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2501), - [anon_sym_EQ_EQ2] = ACTIONS(2501), - [anon_sym_BANG_EQ2] = ACTIONS(2501), - [anon_sym_LT2] = ACTIONS(2503), - [anon_sym_LT_EQ2] = ACTIONS(2501), - [anon_sym_GT_EQ2] = ACTIONS(2501), - [anon_sym_EQ_TILDE2] = ACTIONS(2501), - [anon_sym_BANG_TILDE2] = ACTIONS(2501), - [anon_sym_like2] = ACTIONS(2501), - [anon_sym_not_DASHlike2] = ACTIONS(2501), - [anon_sym_LPAREN2] = ACTIONS(2501), - [anon_sym_STAR_STAR2] = ACTIONS(2501), - [anon_sym_PLUS_PLUS2] = ACTIONS(2501), - [anon_sym_SLASH2] = ACTIONS(2503), - [anon_sym_mod2] = ACTIONS(2501), - [anon_sym_SLASH_SLASH2] = ACTIONS(2501), - [anon_sym_PLUS2] = ACTIONS(2503), - [anon_sym_bit_DASHshl2] = ACTIONS(2501), - [anon_sym_bit_DASHshr2] = ACTIONS(2501), - [anon_sym_bit_DASHand2] = ACTIONS(2501), - [anon_sym_bit_DASHxor2] = ACTIONS(2501), - [anon_sym_bit_DASHor2] = ACTIONS(2501), - [anon_sym_err_GT] = ACTIONS(2503), - [anon_sym_out_GT] = ACTIONS(2503), - [anon_sym_e_GT] = ACTIONS(2503), - [anon_sym_o_GT] = ACTIONS(2503), - [anon_sym_err_PLUSout_GT] = ACTIONS(2503), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2503), - [anon_sym_o_PLUSe_GT] = ACTIONS(2503), - [anon_sym_e_PLUSo_GT] = ACTIONS(2503), - [anon_sym_err_GT_GT] = ACTIONS(2501), - [anon_sym_out_GT_GT] = ACTIONS(2501), - [anon_sym_e_GT_GT] = ACTIONS(2501), - [anon_sym_o_GT_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2501), - [sym__unquoted_pattern] = ACTIONS(2503), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1026)] = { - [sym_comment] = STATE(1026), - [ts_builtin_sym_end] = ACTIONS(2635), - [anon_sym_in] = ACTIONS(2635), - [sym__newline] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_PIPE] = ACTIONS(2635), - [anon_sym_err_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_GT_PIPE] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2635), - [anon_sym_GT2] = ACTIONS(2637), - [anon_sym_DASH2] = ACTIONS(2635), - [anon_sym_STAR2] = ACTIONS(2637), - [anon_sym_and2] = ACTIONS(2635), - [anon_sym_xor2] = ACTIONS(2635), - [anon_sym_or2] = ACTIONS(2635), - [anon_sym_not_DASHin2] = ACTIONS(2635), - [anon_sym_has2] = ACTIONS(2635), - [anon_sym_not_DASHhas2] = ACTIONS(2635), - [anon_sym_starts_DASHwith2] = ACTIONS(2635), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2635), - [anon_sym_ends_DASHwith2] = ACTIONS(2635), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2635), - [anon_sym_EQ_EQ2] = ACTIONS(2635), - [anon_sym_BANG_EQ2] = ACTIONS(2635), - [anon_sym_LT2] = ACTIONS(2637), - [anon_sym_LT_EQ2] = ACTIONS(2635), - [anon_sym_GT_EQ2] = ACTIONS(2635), - [anon_sym_EQ_TILDE2] = ACTIONS(2635), - [anon_sym_BANG_TILDE2] = ACTIONS(2635), - [anon_sym_like2] = ACTIONS(2635), - [anon_sym_not_DASHlike2] = ACTIONS(2635), - [anon_sym_LPAREN2] = ACTIONS(2639), - [anon_sym_STAR_STAR2] = ACTIONS(2635), - [anon_sym_PLUS_PLUS2] = ACTIONS(2635), - [anon_sym_SLASH2] = ACTIONS(2637), - [anon_sym_mod2] = ACTIONS(2635), - [anon_sym_SLASH_SLASH2] = ACTIONS(2635), - [anon_sym_PLUS2] = ACTIONS(2637), - [anon_sym_bit_DASHshl2] = ACTIONS(2635), - [anon_sym_bit_DASHshr2] = ACTIONS(2635), - [anon_sym_bit_DASHand2] = ACTIONS(2635), - [anon_sym_bit_DASHxor2] = ACTIONS(2635), - [anon_sym_bit_DASHor2] = ACTIONS(2635), - [anon_sym_err_GT] = ACTIONS(2637), - [anon_sym_out_GT] = ACTIONS(2637), - [anon_sym_e_GT] = ACTIONS(2637), - [anon_sym_o_GT] = ACTIONS(2637), - [anon_sym_err_PLUSout_GT] = ACTIONS(2637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2637), - [anon_sym_o_PLUSe_GT] = ACTIONS(2637), - [anon_sym_e_PLUSo_GT] = ACTIONS(2637), - [anon_sym_err_GT_GT] = ACTIONS(2635), - [anon_sym_out_GT_GT] = ACTIONS(2635), - [anon_sym_e_GT_GT] = ACTIONS(2635), - [anon_sym_o_GT_GT] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2635), - [sym__unquoted_pattern] = ACTIONS(2641), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1027)] = { - [aux_sym__repeat_newline] = STATE(1080), - [sym_comment] = STATE(1027), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1028)] = { - [sym_comment] = STATE(1028), - [ts_builtin_sym_end] = ACTIONS(1706), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_LPAREN2] = ACTIONS(2595), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1706), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), - [sym__unquoted_pattern] = ACTIONS(2597), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1029)] = { - [aux_sym__repeat_newline] = STATE(1082), - [sym_comment] = STATE(1029), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1030)] = { - [aux_sym__repeat_newline] = STATE(980), - [sym_comment] = STATE(1030), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1031)] = { - [aux_sym__repeat_newline] = STATE(1085), - [sym_comment] = STATE(1031), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1032)] = { - [aux_sym__repeat_newline] = STATE(1088), - [sym_comment] = STATE(1032), - [anon_sym_in] = ACTIONS(2313), - [sym__newline] = ACTIONS(2313), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_err_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_GT_PIPE] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_GT2] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_STAR2] = ACTIONS(2315), - [anon_sym_and2] = ACTIONS(2313), - [anon_sym_xor2] = ACTIONS(2313), - [anon_sym_or2] = ACTIONS(2313), - [anon_sym_not_DASHin2] = ACTIONS(2313), - [anon_sym_has2] = ACTIONS(2313), - [anon_sym_not_DASHhas2] = ACTIONS(2313), - [anon_sym_starts_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2313), - [anon_sym_ends_DASHwith2] = ACTIONS(2313), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2313), - [anon_sym_EQ_EQ2] = ACTIONS(2313), - [anon_sym_BANG_EQ2] = ACTIONS(2313), - [anon_sym_LT2] = ACTIONS(2315), - [anon_sym_LT_EQ2] = ACTIONS(2313), - [anon_sym_GT_EQ2] = ACTIONS(2313), - [anon_sym_EQ_TILDE2] = ACTIONS(2313), - [anon_sym_BANG_TILDE2] = ACTIONS(2313), - [anon_sym_like2] = ACTIONS(2313), - [anon_sym_not_DASHlike2] = ACTIONS(2313), - [anon_sym_STAR_STAR2] = ACTIONS(2313), - [anon_sym_PLUS_PLUS2] = ACTIONS(2313), - [anon_sym_SLASH2] = ACTIONS(2315), - [anon_sym_mod2] = ACTIONS(2313), - [anon_sym_SLASH_SLASH2] = ACTIONS(2313), - [anon_sym_PLUS2] = ACTIONS(2315), - [anon_sym_bit_DASHshl2] = ACTIONS(2313), - [anon_sym_bit_DASHshr2] = ACTIONS(2313), - [anon_sym_bit_DASHand2] = ACTIONS(2313), - [anon_sym_bit_DASHxor2] = ACTIONS(2313), - [anon_sym_bit_DASHor2] = ACTIONS(2313), - [anon_sym_err_GT] = ACTIONS(2315), - [anon_sym_out_GT] = ACTIONS(2315), - [anon_sym_e_GT] = ACTIONS(2315), - [anon_sym_o_GT] = ACTIONS(2315), - [anon_sym_err_PLUSout_GT] = ACTIONS(2315), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2315), - [anon_sym_o_PLUSe_GT] = ACTIONS(2315), - [anon_sym_e_PLUSo_GT] = ACTIONS(2315), - [anon_sym_err_GT_GT] = ACTIONS(2313), - [anon_sym_out_GT_GT] = ACTIONS(2313), - [anon_sym_e_GT_GT] = ACTIONS(2313), - [anon_sym_o_GT_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1033)] = { - [sym__expr_parenthesized_immediate] = STATE(4754), - [sym_comment] = STATE(1033), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1034)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1034), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1035)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1035), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1036)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1036), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1037)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1037), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1038)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1038), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1039)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1039), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1040)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1040), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1041)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1041), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1042)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1042), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2722), - [anon_sym_DASH2] = ACTIONS(2720), - [anon_sym_LBRACE] = ACTIONS(2720), - [anon_sym_STAR2] = ACTIONS(2722), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2720), - [anon_sym_has2] = ACTIONS(2720), - [anon_sym_not_DASHhas2] = ACTIONS(2720), - [anon_sym_starts_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), - [anon_sym_ends_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), - [anon_sym_EQ_EQ2] = ACTIONS(2720), - [anon_sym_BANG_EQ2] = ACTIONS(2720), - [anon_sym_LT2] = ACTIONS(2722), - [anon_sym_LT_EQ2] = ACTIONS(2720), - [anon_sym_GT_EQ2] = ACTIONS(2720), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2720), - [anon_sym_PLUS_PLUS2] = ACTIONS(2720), - [anon_sym_SLASH2] = ACTIONS(2722), - [anon_sym_mod2] = ACTIONS(2720), - [anon_sym_SLASH_SLASH2] = ACTIONS(2720), - [anon_sym_PLUS2] = ACTIONS(2722), - [anon_sym_bit_DASHshl2] = ACTIONS(2720), - [anon_sym_bit_DASHshr2] = ACTIONS(2720), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1043)] = { - [sym_comment] = STATE(1043), - [aux_sym_cmd_identifier_token2] = ACTIONS(2664), - [anon_sym_in] = ACTIONS(868), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_COLON2] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(1044)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1044), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1045)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1045), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1046)] = { - [aux_sym__repeat_newline] = STATE(983), - [sym_comment] = STATE(1046), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1047)] = { - [sym_comment] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(1964), - [anon_sym_in] = ACTIONS(1964), - [sym__newline] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_err_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_GT_PIPE] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1964), - [anon_sym_GT2] = ACTIONS(1966), - [anon_sym_DASH2] = ACTIONS(1964), - [anon_sym_STAR2] = ACTIONS(1966), - [anon_sym_and2] = ACTIONS(1964), - [anon_sym_xor2] = ACTIONS(1964), - [anon_sym_or2] = ACTIONS(1964), - [anon_sym_not_DASHin2] = ACTIONS(1964), - [anon_sym_has2] = ACTIONS(1964), - [anon_sym_not_DASHhas2] = ACTIONS(1964), - [anon_sym_starts_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1964), - [anon_sym_ends_DASHwith2] = ACTIONS(1964), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1964), - [anon_sym_EQ_EQ2] = ACTIONS(1964), - [anon_sym_BANG_EQ2] = ACTIONS(1964), - [anon_sym_LT2] = ACTIONS(1966), - [anon_sym_LT_EQ2] = ACTIONS(1964), - [anon_sym_GT_EQ2] = ACTIONS(1964), - [anon_sym_EQ_TILDE2] = ACTIONS(1964), - [anon_sym_BANG_TILDE2] = ACTIONS(1964), - [anon_sym_like2] = ACTIONS(1964), - [anon_sym_not_DASHlike2] = ACTIONS(1964), - [anon_sym_LPAREN2] = ACTIONS(1968), - [anon_sym_STAR_STAR2] = ACTIONS(1964), - [anon_sym_PLUS_PLUS2] = ACTIONS(1964), - [anon_sym_SLASH2] = ACTIONS(1966), - [anon_sym_mod2] = ACTIONS(1964), - [anon_sym_SLASH_SLASH2] = ACTIONS(1964), - [anon_sym_PLUS2] = ACTIONS(1966), - [anon_sym_bit_DASHshl2] = ACTIONS(1964), - [anon_sym_bit_DASHshr2] = ACTIONS(1964), - [anon_sym_bit_DASHand2] = ACTIONS(1964), - [anon_sym_bit_DASHxor2] = ACTIONS(1964), - [anon_sym_bit_DASHor2] = ACTIONS(1964), - [anon_sym_err_GT] = ACTIONS(1966), - [anon_sym_out_GT] = ACTIONS(1966), - [anon_sym_e_GT] = ACTIONS(1966), - [anon_sym_o_GT] = ACTIONS(1966), - [anon_sym_err_PLUSout_GT] = ACTIONS(1966), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1966), - [anon_sym_o_PLUSe_GT] = ACTIONS(1966), - [anon_sym_e_PLUSo_GT] = ACTIONS(1966), - [anon_sym_err_GT_GT] = ACTIONS(1964), - [anon_sym_out_GT_GT] = ACTIONS(1964), - [anon_sym_e_GT_GT] = ACTIONS(1964), - [anon_sym_o_GT_GT] = ACTIONS(1964), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1964), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1964), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1964), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1964), - [sym__unquoted_pattern] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1048)] = { - [aux_sym__repeat_newline] = STATE(986), - [sym_comment] = STATE(1048), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1049)] = { - [sym_comment] = STATE(1049), - [ts_builtin_sym_end] = ACTIONS(994), - [anon_sym_in] = ACTIONS(994), - [sym__newline] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(994), - [anon_sym_err_GT_PIPE] = ACTIONS(994), - [anon_sym_out_GT_PIPE] = ACTIONS(994), - [anon_sym_e_GT_PIPE] = ACTIONS(994), - [anon_sym_o_GT_PIPE] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(994), - [anon_sym_xor2] = ACTIONS(994), - [anon_sym_or2] = ACTIONS(994), - [anon_sym_not_DASHin2] = ACTIONS(994), - [anon_sym_has2] = ACTIONS(994), - [anon_sym_not_DASHhas2] = ACTIONS(994), - [anon_sym_starts_DASHwith2] = ACTIONS(994), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), - [anon_sym_ends_DASHwith2] = ACTIONS(994), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), - [anon_sym_EQ_EQ2] = ACTIONS(994), - [anon_sym_BANG_EQ2] = ACTIONS(994), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(994), - [anon_sym_GT_EQ2] = ACTIONS(994), - [anon_sym_EQ_TILDE2] = ACTIONS(994), - [anon_sym_BANG_TILDE2] = ACTIONS(994), - [anon_sym_like2] = ACTIONS(994), - [anon_sym_not_DASHlike2] = ACTIONS(994), - [anon_sym_LPAREN2] = ACTIONS(2583), - [anon_sym_STAR_STAR2] = ACTIONS(994), - [anon_sym_PLUS_PLUS2] = ACTIONS(994), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(994), - [anon_sym_SLASH_SLASH2] = ACTIONS(994), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(994), - [anon_sym_bit_DASHshr2] = ACTIONS(994), - [anon_sym_bit_DASHand2] = ACTIONS(994), - [anon_sym_bit_DASHxor2] = ACTIONS(994), - [anon_sym_bit_DASHor2] = ACTIONS(994), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(994), - [anon_sym_out_GT_GT] = ACTIONS(994), - [anon_sym_e_GT_GT] = ACTIONS(994), - [anon_sym_o_GT_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), - [sym__unquoted_pattern] = ACTIONS(2585), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1050)] = { - [sym_comment] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(1018), - [anon_sym_in] = ACTIONS(1018), - [sym__newline] = ACTIONS(1018), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_PIPE] = ACTIONS(1018), - [anon_sym_err_GT_PIPE] = ACTIONS(1018), - [anon_sym_out_GT_PIPE] = ACTIONS(1018), - [anon_sym_e_GT_PIPE] = ACTIONS(1018), - [anon_sym_o_GT_PIPE] = ACTIONS(1018), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1018), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1018), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1018), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1018), - [anon_sym_GT2] = ACTIONS(1016), - [anon_sym_DASH2] = ACTIONS(1018), - [anon_sym_STAR2] = ACTIONS(1016), - [anon_sym_and2] = ACTIONS(1018), - [anon_sym_xor2] = ACTIONS(1018), - [anon_sym_or2] = ACTIONS(1018), - [anon_sym_not_DASHin2] = ACTIONS(1018), - [anon_sym_has2] = ACTIONS(1018), - [anon_sym_not_DASHhas2] = ACTIONS(1018), - [anon_sym_starts_DASHwith2] = ACTIONS(1018), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1018), - [anon_sym_ends_DASHwith2] = ACTIONS(1018), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1018), - [anon_sym_EQ_EQ2] = ACTIONS(1018), - [anon_sym_BANG_EQ2] = ACTIONS(1018), - [anon_sym_LT2] = ACTIONS(1016), - [anon_sym_LT_EQ2] = ACTIONS(1018), - [anon_sym_GT_EQ2] = ACTIONS(1018), - [anon_sym_EQ_TILDE2] = ACTIONS(1018), - [anon_sym_BANG_TILDE2] = ACTIONS(1018), - [anon_sym_like2] = ACTIONS(1018), - [anon_sym_not_DASHlike2] = ACTIONS(1018), - [anon_sym_LPAREN2] = ACTIONS(2583), - [anon_sym_STAR_STAR2] = ACTIONS(1018), - [anon_sym_PLUS_PLUS2] = ACTIONS(1018), - [anon_sym_SLASH2] = ACTIONS(1016), - [anon_sym_mod2] = ACTIONS(1018), - [anon_sym_SLASH_SLASH2] = ACTIONS(1018), - [anon_sym_PLUS2] = ACTIONS(1016), - [anon_sym_bit_DASHshl2] = ACTIONS(1018), - [anon_sym_bit_DASHshr2] = ACTIONS(1018), - [anon_sym_bit_DASHand2] = ACTIONS(1018), - [anon_sym_bit_DASHxor2] = ACTIONS(1018), - [anon_sym_bit_DASHor2] = ACTIONS(1018), - [anon_sym_err_GT] = ACTIONS(1016), - [anon_sym_out_GT] = ACTIONS(1016), - [anon_sym_e_GT] = ACTIONS(1016), - [anon_sym_o_GT] = ACTIONS(1016), - [anon_sym_err_PLUSout_GT] = ACTIONS(1016), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1016), - [anon_sym_o_PLUSe_GT] = ACTIONS(1016), - [anon_sym_e_PLUSo_GT] = ACTIONS(1016), - [anon_sym_err_GT_GT] = ACTIONS(1018), - [anon_sym_out_GT_GT] = ACTIONS(1018), - [anon_sym_e_GT_GT] = ACTIONS(1018), - [anon_sym_o_GT_GT] = ACTIONS(1018), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1018), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1018), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1018), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1018), - [sym__unquoted_pattern] = ACTIONS(2585), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1051)] = { - [aux_sym__repeat_newline] = STATE(990), - [sym_comment] = STATE(1051), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1052)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1052), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1053)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1053), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1054)] = { - [aux_sym__repeat_newline] = STATE(1091), - [sym_comment] = STATE(1054), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1055)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1055), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1056)] = { - [aux_sym__repeat_newline] = STATE(1092), - [sym_comment] = STATE(1056), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1057)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1057), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1058)] = { - [aux_sym__repeat_newline] = STATE(992), - [sym_comment] = STATE(1058), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1059)] = { - [aux_sym__repeat_newline] = STATE(1093), - [sym_comment] = STATE(1059), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1060)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1060), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1061)] = { - [aux_sym__repeat_newline] = STATE(1094), - [sym_comment] = STATE(1061), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1062)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1062), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1063)] = { - [sym_comment] = STATE(1063), - [ts_builtin_sym_end] = ACTIONS(2575), - [anon_sym_in] = ACTIONS(2575), - [sym__newline] = ACTIONS(2575), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_PIPE] = ACTIONS(2575), - [anon_sym_err_GT_PIPE] = ACTIONS(2575), - [anon_sym_out_GT_PIPE] = ACTIONS(2575), - [anon_sym_e_GT_PIPE] = ACTIONS(2575), - [anon_sym_o_GT_PIPE] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2575), - [anon_sym_GT2] = ACTIONS(2577), - [anon_sym_DASH2] = ACTIONS(2575), - [anon_sym_STAR2] = ACTIONS(2577), - [anon_sym_and2] = ACTIONS(2575), - [anon_sym_xor2] = ACTIONS(2575), - [anon_sym_or2] = ACTIONS(2575), - [anon_sym_not_DASHin2] = ACTIONS(2575), - [anon_sym_has2] = ACTIONS(2575), - [anon_sym_not_DASHhas2] = ACTIONS(2575), - [anon_sym_starts_DASHwith2] = ACTIONS(2575), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2575), - [anon_sym_ends_DASHwith2] = ACTIONS(2575), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2575), - [anon_sym_EQ_EQ2] = ACTIONS(2575), - [anon_sym_BANG_EQ2] = ACTIONS(2575), - [anon_sym_LT2] = ACTIONS(2577), - [anon_sym_LT_EQ2] = ACTIONS(2575), - [anon_sym_GT_EQ2] = ACTIONS(2575), - [anon_sym_EQ_TILDE2] = ACTIONS(2575), - [anon_sym_BANG_TILDE2] = ACTIONS(2575), - [anon_sym_like2] = ACTIONS(2575), - [anon_sym_not_DASHlike2] = ACTIONS(2575), - [anon_sym_LPAREN2] = ACTIONS(1978), - [anon_sym_STAR_STAR2] = ACTIONS(2575), - [anon_sym_PLUS_PLUS2] = ACTIONS(2575), - [anon_sym_SLASH2] = ACTIONS(2577), - [anon_sym_mod2] = ACTIONS(2575), - [anon_sym_SLASH_SLASH2] = ACTIONS(2575), - [anon_sym_PLUS2] = ACTIONS(2577), - [anon_sym_bit_DASHshl2] = ACTIONS(2575), - [anon_sym_bit_DASHshr2] = ACTIONS(2575), - [anon_sym_bit_DASHand2] = ACTIONS(2575), - [anon_sym_bit_DASHxor2] = ACTIONS(2575), - [anon_sym_bit_DASHor2] = ACTIONS(2575), - [anon_sym_err_GT] = ACTIONS(2577), - [anon_sym_out_GT] = ACTIONS(2577), - [anon_sym_e_GT] = ACTIONS(2577), - [anon_sym_o_GT] = ACTIONS(2577), - [anon_sym_err_PLUSout_GT] = ACTIONS(2577), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2577), - [anon_sym_o_PLUSe_GT] = ACTIONS(2577), - [anon_sym_e_PLUSo_GT] = ACTIONS(2577), - [anon_sym_err_GT_GT] = ACTIONS(2575), - [anon_sym_out_GT_GT] = ACTIONS(2575), - [anon_sym_e_GT_GT] = ACTIONS(2575), - [anon_sym_o_GT_GT] = ACTIONS(2575), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2575), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2575), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2575), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2575), - [sym__unquoted_pattern] = ACTIONS(1984), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1064)] = { - [aux_sym__repeat_newline] = STATE(1095), - [sym_comment] = STATE(1064), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1065)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1065), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1066)] = { - [aux_sym__repeat_newline] = STATE(1096), - [sym_comment] = STATE(1066), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1067)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1067), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1068)] = { - [sym_comment] = STATE(1068), - [ts_builtin_sym_end] = ACTIONS(1974), - [anon_sym_in] = ACTIONS(1974), - [sym__newline] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_PIPE] = ACTIONS(1974), - [anon_sym_err_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_GT_PIPE] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1974), - [anon_sym_GT2] = ACTIONS(1976), - [anon_sym_DASH2] = ACTIONS(1974), - [anon_sym_STAR2] = ACTIONS(1976), - [anon_sym_and2] = ACTIONS(1974), - [anon_sym_xor2] = ACTIONS(1974), - [anon_sym_or2] = ACTIONS(1974), - [anon_sym_not_DASHin2] = ACTIONS(1974), - [anon_sym_has2] = ACTIONS(1974), - [anon_sym_not_DASHhas2] = ACTIONS(1974), - [anon_sym_starts_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1974), - [anon_sym_ends_DASHwith2] = ACTIONS(1974), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1974), - [anon_sym_EQ_EQ2] = ACTIONS(1974), - [anon_sym_BANG_EQ2] = ACTIONS(1974), - [anon_sym_LT2] = ACTIONS(1976), - [anon_sym_LT_EQ2] = ACTIONS(1974), - [anon_sym_GT_EQ2] = ACTIONS(1974), - [anon_sym_EQ_TILDE2] = ACTIONS(1974), - [anon_sym_BANG_TILDE2] = ACTIONS(1974), - [anon_sym_like2] = ACTIONS(1974), - [anon_sym_not_DASHlike2] = ACTIONS(1974), - [anon_sym_LPAREN2] = ACTIONS(1978), - [anon_sym_STAR_STAR2] = ACTIONS(1974), - [anon_sym_PLUS_PLUS2] = ACTIONS(1974), - [anon_sym_SLASH2] = ACTIONS(1976), - [anon_sym_mod2] = ACTIONS(1974), - [anon_sym_SLASH_SLASH2] = ACTIONS(1974), - [anon_sym_PLUS2] = ACTIONS(1976), - [anon_sym_bit_DASHshl2] = ACTIONS(1974), - [anon_sym_bit_DASHshr2] = ACTIONS(1974), - [anon_sym_bit_DASHand2] = ACTIONS(1974), - [anon_sym_bit_DASHxor2] = ACTIONS(1974), - [anon_sym_bit_DASHor2] = ACTIONS(1974), - [anon_sym_err_GT] = ACTIONS(1976), - [anon_sym_out_GT] = ACTIONS(1976), - [anon_sym_e_GT] = ACTIONS(1976), - [anon_sym_o_GT] = ACTIONS(1976), - [anon_sym_err_PLUSout_GT] = ACTIONS(1976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1976), - [anon_sym_o_PLUSe_GT] = ACTIONS(1976), - [anon_sym_e_PLUSo_GT] = ACTIONS(1976), - [anon_sym_err_GT_GT] = ACTIONS(1974), - [anon_sym_out_GT_GT] = ACTIONS(1974), - [anon_sym_e_GT_GT] = ACTIONS(1974), - [anon_sym_o_GT_GT] = ACTIONS(1974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1974), - [sym__unquoted_pattern] = ACTIONS(1984), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1069)] = { - [aux_sym__repeat_newline] = STATE(1097), - [sym_comment] = STATE(1069), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(1070)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym_expr_unary] = STATE(2953), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_parenthesized] = STATE(2571), + [sym_val_range] = STATE(2953), + [sym__val_range] = STATE(4556), + [sym__value] = STATE(2953), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(2632), + [sym_val_variable] = STATE(2620), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(2366), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_unquoted] = STATE(2657), + [sym__unquoted_with_expr] = STATE(2873), + [sym__unquoted_anonymous_prefix] = STATE(4556), [sym_comment] = STATE(1070), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_true] = ACTIONS(2708), + [anon_sym_false] = ACTIONS(2708), + [anon_sym_null] = ACTIONS(2710), + [aux_sym_cmd_identifier_token3] = ACTIONS(2712), + [aux_sym_cmd_identifier_token4] = ACTIONS(2712), + [aux_sym_cmd_identifier_token5] = ACTIONS(2712), + [anon_sym_LBRACK] = ACTIONS(2714), + [anon_sym_LPAREN] = ACTIONS(2716), + [anon_sym_DOLLAR] = ACTIONS(2718), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(2720), + [anon_sym_DOT_DOT] = ACTIONS(2722), + [aux_sym_expr_unary_token1] = ACTIONS(2724), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2726), + [anon_sym_DOT_DOT_LT] = ACTIONS(2726), + [aux_sym__val_number_decimal_token1] = ACTIONS(2728), + [aux_sym__val_number_decimal_token2] = ACTIONS(2730), + [aux_sym__val_number_decimal_token3] = ACTIONS(2732), + [aux_sym__val_number_decimal_token4] = ACTIONS(2732), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2734), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(1071)] = { - [sym__expr_parenthesized_immediate] = STATE(4754), + [aux_sym__repeat_newline] = STATE(1077), [sym_comment] = STATE(1071), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2289), + [sym__newline] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_err_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_GT_PIPE] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), + [anon_sym_RPAREN] = ACTIONS(2289), + [anon_sym_GT2] = ACTIONS(2291), + [anon_sym_DASH2] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_STAR2] = ACTIONS(2291), + [anon_sym_and2] = ACTIONS(2289), + [anon_sym_xor2] = ACTIONS(2289), + [anon_sym_or2] = ACTIONS(2289), + [anon_sym_not_DASHin2] = ACTIONS(2289), + [anon_sym_has2] = ACTIONS(2289), + [anon_sym_not_DASHhas2] = ACTIONS(2289), + [anon_sym_starts_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), + [anon_sym_ends_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), + [anon_sym_EQ_EQ2] = ACTIONS(2289), + [anon_sym_BANG_EQ2] = ACTIONS(2289), + [anon_sym_LT2] = ACTIONS(2291), + [anon_sym_LT_EQ2] = ACTIONS(2289), + [anon_sym_GT_EQ2] = ACTIONS(2289), + [anon_sym_EQ_TILDE2] = ACTIONS(2289), + [anon_sym_BANG_TILDE2] = ACTIONS(2289), + [anon_sym_like2] = ACTIONS(2289), + [anon_sym_not_DASHlike2] = ACTIONS(2289), + [anon_sym_STAR_STAR2] = ACTIONS(2289), + [anon_sym_PLUS_PLUS2] = ACTIONS(2289), + [anon_sym_SLASH2] = ACTIONS(2291), + [anon_sym_mod2] = ACTIONS(2289), + [anon_sym_SLASH_SLASH2] = ACTIONS(2289), + [anon_sym_PLUS2] = ACTIONS(2291), + [anon_sym_bit_DASHshl2] = ACTIONS(2289), + [anon_sym_bit_DASHshr2] = ACTIONS(2289), + [anon_sym_bit_DASHand2] = ACTIONS(2289), + [anon_sym_bit_DASHxor2] = ACTIONS(2289), + [anon_sym_bit_DASHor2] = ACTIONS(2289), + [anon_sym_err_GT] = ACTIONS(2291), + [anon_sym_out_GT] = ACTIONS(2291), + [anon_sym_e_GT] = ACTIONS(2291), + [anon_sym_o_GT] = ACTIONS(2291), + [anon_sym_err_PLUSout_GT] = ACTIONS(2291), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), + [anon_sym_o_PLUSe_GT] = ACTIONS(2291), + [anon_sym_e_PLUSo_GT] = ACTIONS(2291), + [anon_sym_err_GT_GT] = ACTIONS(2289), + [anon_sym_out_GT_GT] = ACTIONS(2289), + [anon_sym_e_GT_GT] = ACTIONS(2289), + [anon_sym_o_GT_GT] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1072)] = { - [aux_sym__repeat_newline] = STATE(1098), + [sym_expr_unary] = STATE(2874), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_parenthesized] = STATE(2575), + [sym_val_range] = STATE(2874), + [sym__val_range] = STATE(4556), + [sym__value] = STATE(2874), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(2632), + [sym_val_variable] = STATE(2620), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(2366), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_unquoted] = STATE(2645), + [sym__unquoted_with_expr] = STATE(2876), + [sym__unquoted_anonymous_prefix] = STATE(4556), [sym_comment] = STATE(1072), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), + [anon_sym_true] = ACTIONS(2708), + [anon_sym_false] = ACTIONS(2708), + [anon_sym_null] = ACTIONS(2710), + [aux_sym_cmd_identifier_token3] = ACTIONS(2712), + [aux_sym_cmd_identifier_token4] = ACTIONS(2712), + [aux_sym_cmd_identifier_token5] = ACTIONS(2712), + [anon_sym_LBRACK] = ACTIONS(2714), + [anon_sym_LPAREN] = ACTIONS(2716), + [anon_sym_DOLLAR] = ACTIONS(2718), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(2720), + [anon_sym_DOT_DOT] = ACTIONS(2722), + [aux_sym_expr_unary_token1] = ACTIONS(2724), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2726), + [anon_sym_DOT_DOT_LT] = ACTIONS(2726), + [aux_sym__val_number_decimal_token1] = ACTIONS(2728), + [aux_sym__val_number_decimal_token2] = ACTIONS(2730), + [aux_sym__val_number_decimal_token3] = ACTIONS(2732), + [aux_sym__val_number_decimal_token4] = ACTIONS(2732), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2734), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(1073)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym_expr_unary] = STATE(2877), + [sym__expr_unary_minus] = STATE(1279), + [sym_expr_parenthesized] = STATE(2577), + [sym_val_range] = STATE(2877), + [sym__val_range] = STATE(4556), + [sym__value] = STATE(2877), + [sym_val_nothing] = STATE(1294), + [sym_val_bool] = STATE(2632), + [sym_val_variable] = STATE(2620), + [sym_val_cellpath] = STATE(1294), + [sym_val_number] = STATE(1294), + [sym__val_number_decimal] = STATE(2366), + [sym__val_number] = STATE(1291), + [sym_val_duration] = STATE(1294), + [sym_val_filesize] = STATE(1294), + [sym_val_binary] = STATE(1294), + [sym_val_string] = STATE(1294), + [sym__raw_str] = STATE(490), + [sym__str_double_quotes] = STATE(490), + [sym__str_single_quotes] = STATE(490), + [sym__str_back_ticks] = STATE(490), + [sym_val_interpolated] = STATE(1294), + [sym__inter_single_quotes] = STATE(1297), + [sym__inter_double_quotes] = STATE(1274), + [sym_val_list] = STATE(1294), + [sym_val_record] = STATE(1294), + [sym_val_table] = STATE(1294), + [sym_val_closure] = STATE(1294), + [sym_unquoted] = STATE(2654), + [sym__unquoted_with_expr] = STATE(2902), + [sym__unquoted_anonymous_prefix] = STATE(4556), [sym_comment] = STATE(1073), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), + [anon_sym_true] = ACTIONS(2708), + [anon_sym_false] = ACTIONS(2708), + [anon_sym_null] = ACTIONS(2710), + [aux_sym_cmd_identifier_token3] = ACTIONS(2712), + [aux_sym_cmd_identifier_token4] = ACTIONS(2712), + [aux_sym_cmd_identifier_token5] = ACTIONS(2712), + [anon_sym_LBRACK] = ACTIONS(2714), + [anon_sym_LPAREN] = ACTIONS(2716), + [anon_sym_DOLLAR] = ACTIONS(2718), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(2720), + [anon_sym_DOT_DOT] = ACTIONS(2722), + [aux_sym_expr_unary_token1] = ACTIONS(2724), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2726), + [anon_sym_DOT_DOT_LT] = ACTIONS(2726), + [aux_sym__val_number_decimal_token1] = ACTIONS(2728), + [aux_sym__val_number_decimal_token2] = ACTIONS(2730), + [aux_sym__val_number_decimal_token3] = ACTIONS(2732), + [aux_sym__val_number_decimal_token4] = ACTIONS(2732), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2734), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2190), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(1074)] = { - [aux_sym__repeat_newline] = STATE(1099), + [aux_sym__repeat_newline] = STATE(1119), [sym_comment] = STATE(1074), - [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2728), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2730), - [anon_sym_DASH2] = ACTIONS(2728), - [anon_sym_LBRACE] = ACTIONS(2728), - [anon_sym_STAR2] = ACTIONS(2730), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2728), - [anon_sym_has2] = ACTIONS(2728), - [anon_sym_not_DASHhas2] = ACTIONS(2728), - [anon_sym_starts_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), - [anon_sym_ends_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), - [anon_sym_EQ_EQ2] = ACTIONS(2728), - [anon_sym_BANG_EQ2] = ACTIONS(2728), - [anon_sym_LT2] = ACTIONS(2730), - [anon_sym_LT_EQ2] = ACTIONS(2728), - [anon_sym_GT_EQ2] = ACTIONS(2728), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2728), - [anon_sym_PLUS_PLUS2] = ACTIONS(2728), - [anon_sym_SLASH2] = ACTIONS(2730), - [anon_sym_mod2] = ACTIONS(2728), - [anon_sym_SLASH_SLASH2] = ACTIONS(2728), - [anon_sym_PLUS2] = ACTIONS(2730), - [anon_sym_bit_DASHshl2] = ACTIONS(2728), - [anon_sym_bit_DASHshr2] = ACTIONS(2728), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2499), + [sym__newline] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_PIPE] = ACTIONS(2499), + [anon_sym_err_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_GT_PIPE] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2499), + [anon_sym_GT2] = ACTIONS(2501), + [anon_sym_DASH2] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_STAR2] = ACTIONS(2501), + [anon_sym_and2] = ACTIONS(2499), + [anon_sym_xor2] = ACTIONS(2499), + [anon_sym_or2] = ACTIONS(2499), + [anon_sym_not_DASHin2] = ACTIONS(2499), + [anon_sym_has2] = ACTIONS(2499), + [anon_sym_not_DASHhas2] = ACTIONS(2499), + [anon_sym_starts_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), + [anon_sym_ends_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), + [anon_sym_EQ_EQ2] = ACTIONS(2499), + [anon_sym_BANG_EQ2] = ACTIONS(2499), + [anon_sym_LT2] = ACTIONS(2501), + [anon_sym_LT_EQ2] = ACTIONS(2499), + [anon_sym_GT_EQ2] = ACTIONS(2499), + [anon_sym_EQ_TILDE2] = ACTIONS(2499), + [anon_sym_BANG_TILDE2] = ACTIONS(2499), + [anon_sym_like2] = ACTIONS(2499), + [anon_sym_not_DASHlike2] = ACTIONS(2499), + [anon_sym_STAR_STAR2] = ACTIONS(2499), + [anon_sym_PLUS_PLUS2] = ACTIONS(2499), + [anon_sym_SLASH2] = ACTIONS(2501), + [anon_sym_mod2] = ACTIONS(2499), + [anon_sym_SLASH_SLASH2] = ACTIONS(2499), + [anon_sym_PLUS2] = ACTIONS(2501), + [anon_sym_bit_DASHshl2] = ACTIONS(2499), + [anon_sym_bit_DASHshr2] = ACTIONS(2499), + [anon_sym_bit_DASHand2] = ACTIONS(2499), + [anon_sym_bit_DASHxor2] = ACTIONS(2499), + [anon_sym_bit_DASHor2] = ACTIONS(2499), + [anon_sym_err_GT] = ACTIONS(2501), + [anon_sym_out_GT] = ACTIONS(2501), + [anon_sym_e_GT] = ACTIONS(2501), + [anon_sym_o_GT] = ACTIONS(2501), + [anon_sym_err_PLUSout_GT] = ACTIONS(2501), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), + [anon_sym_o_PLUSe_GT] = ACTIONS(2501), + [anon_sym_e_PLUSo_GT] = ACTIONS(2501), + [anon_sym_err_GT_GT] = ACTIONS(2499), + [anon_sym_out_GT_GT] = ACTIONS(2499), + [anon_sym_e_GT_GT] = ACTIONS(2499), + [anon_sym_o_GT_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1075)] = { - [aux_sym__repeat_newline] = STATE(994), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1075), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1076)] = { - [aux_sym__repeat_newline] = STATE(1100), - [sym_comment] = STATE(1076), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1077)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1077), - [anon_sym_in] = ACTIONS(2732), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2734), - [anon_sym_DASH2] = ACTIONS(2732), - [anon_sym_LBRACE] = ACTIONS(2732), - [anon_sym_STAR2] = ACTIONS(2734), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2732), - [anon_sym_has2] = ACTIONS(2732), - [anon_sym_not_DASHhas2] = ACTIONS(2732), - [anon_sym_starts_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2732), - [anon_sym_ends_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2732), - [anon_sym_EQ_EQ2] = ACTIONS(2732), - [anon_sym_BANG_EQ2] = ACTIONS(2732), - [anon_sym_LT2] = ACTIONS(2734), - [anon_sym_LT_EQ2] = ACTIONS(2732), - [anon_sym_GT_EQ2] = ACTIONS(2732), - [anon_sym_EQ_TILDE2] = ACTIONS(2732), - [anon_sym_BANG_TILDE2] = ACTIONS(2732), - [anon_sym_like2] = ACTIONS(2732), - [anon_sym_not_DASHlike2] = ACTIONS(2732), - [anon_sym_STAR_STAR2] = ACTIONS(2732), - [anon_sym_PLUS_PLUS2] = ACTIONS(2732), - [anon_sym_SLASH2] = ACTIONS(2734), - [anon_sym_mod2] = ACTIONS(2732), - [anon_sym_SLASH_SLASH2] = ACTIONS(2732), - [anon_sym_PLUS2] = ACTIONS(2734), - [anon_sym_bit_DASHshl2] = ACTIONS(2732), - [anon_sym_bit_DASHshr2] = ACTIONS(2732), - [anon_sym_bit_DASHand2] = ACTIONS(2732), - [anon_sym_bit_DASHxor2] = ACTIONS(2732), - [anon_sym_bit_DASHor2] = ACTIONS(2732), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1078)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1078), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1079)] = { - [aux_sym__repeat_newline] = STATE(1101), - [sym_comment] = STATE(1079), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1080)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1080), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1081)] = { - [aux_sym__repeat_newline] = STATE(1102), - [sym_comment] = STATE(1081), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1082)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1082), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1083)] = { - [sym_comment] = STATE(1083), - [ts_builtin_sym_end] = ACTIONS(2523), - [anon_sym_in] = ACTIONS(2523), - [sym__newline] = ACTIONS(2523), - [anon_sym_SEMI] = ACTIONS(2523), - [anon_sym_PIPE] = ACTIONS(2523), - [anon_sym_err_GT_PIPE] = ACTIONS(2523), - [anon_sym_out_GT_PIPE] = ACTIONS(2523), - [anon_sym_e_GT_PIPE] = ACTIONS(2523), - [anon_sym_o_GT_PIPE] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2523), - [anon_sym_GT2] = ACTIONS(2525), - [anon_sym_DASH2] = ACTIONS(2523), - [anon_sym_STAR2] = ACTIONS(2525), - [anon_sym_and2] = ACTIONS(2523), - [anon_sym_xor2] = ACTIONS(2523), - [anon_sym_or2] = ACTIONS(2523), - [anon_sym_not_DASHin2] = ACTIONS(2523), - [anon_sym_has2] = ACTIONS(2523), - [anon_sym_not_DASHhas2] = ACTIONS(2523), - [anon_sym_starts_DASHwith2] = ACTIONS(2523), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2523), - [anon_sym_ends_DASHwith2] = ACTIONS(2523), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2523), - [anon_sym_EQ_EQ2] = ACTIONS(2523), - [anon_sym_BANG_EQ2] = ACTIONS(2523), - [anon_sym_LT2] = ACTIONS(2525), - [anon_sym_LT_EQ2] = ACTIONS(2523), - [anon_sym_GT_EQ2] = ACTIONS(2523), - [anon_sym_EQ_TILDE2] = ACTIONS(2523), - [anon_sym_BANG_TILDE2] = ACTIONS(2523), - [anon_sym_like2] = ACTIONS(2523), - [anon_sym_not_DASHlike2] = ACTIONS(2523), - [anon_sym_LPAREN2] = ACTIONS(2629), - [anon_sym_STAR_STAR2] = ACTIONS(2523), - [anon_sym_PLUS_PLUS2] = ACTIONS(2523), - [anon_sym_SLASH2] = ACTIONS(2525), - [anon_sym_mod2] = ACTIONS(2523), - [anon_sym_SLASH_SLASH2] = ACTIONS(2523), - [anon_sym_PLUS2] = ACTIONS(2525), - [anon_sym_bit_DASHshl2] = ACTIONS(2523), - [anon_sym_bit_DASHshr2] = ACTIONS(2523), - [anon_sym_bit_DASHand2] = ACTIONS(2523), - [anon_sym_bit_DASHxor2] = ACTIONS(2523), - [anon_sym_bit_DASHor2] = ACTIONS(2523), - [anon_sym_err_GT] = ACTIONS(2525), - [anon_sym_out_GT] = ACTIONS(2525), - [anon_sym_e_GT] = ACTIONS(2525), - [anon_sym_o_GT] = ACTIONS(2525), - [anon_sym_err_PLUSout_GT] = ACTIONS(2525), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2525), - [anon_sym_o_PLUSe_GT] = ACTIONS(2525), - [anon_sym_e_PLUSo_GT] = ACTIONS(2525), - [anon_sym_err_GT_GT] = ACTIONS(2523), - [anon_sym_out_GT_GT] = ACTIONS(2523), - [anon_sym_e_GT_GT] = ACTIONS(2523), - [anon_sym_o_GT_GT] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2523), - [sym__unquoted_pattern] = ACTIONS(1639), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1084)] = { - [aux_sym__repeat_newline] = STATE(1106), - [sym_comment] = STATE(1084), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1085)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1085), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1086)] = { - [sym__expr_parenthesized_immediate] = STATE(4754), - [sym_comment] = STATE(1086), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1087)] = { - [aux_sym__repeat_newline] = STATE(1107), - [sym_comment] = STATE(1087), - [anon_sym_in] = ACTIONS(2418), - [sym__newline] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_err_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_GT_PIPE] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2418), - [anon_sym_GT2] = ACTIONS(2420), - [anon_sym_DASH2] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2418), - [anon_sym_STAR2] = ACTIONS(2420), - [anon_sym_and2] = ACTIONS(2418), - [anon_sym_xor2] = ACTIONS(2418), - [anon_sym_or2] = ACTIONS(2418), - [anon_sym_not_DASHin2] = ACTIONS(2418), - [anon_sym_has2] = ACTIONS(2418), - [anon_sym_not_DASHhas2] = ACTIONS(2418), - [anon_sym_starts_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2418), - [anon_sym_ends_DASHwith2] = ACTIONS(2418), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2418), - [anon_sym_EQ_EQ2] = ACTIONS(2418), - [anon_sym_BANG_EQ2] = ACTIONS(2418), - [anon_sym_LT2] = ACTIONS(2420), - [anon_sym_LT_EQ2] = ACTIONS(2418), - [anon_sym_GT_EQ2] = ACTIONS(2418), - [anon_sym_EQ_TILDE2] = ACTIONS(2418), - [anon_sym_BANG_TILDE2] = ACTIONS(2418), - [anon_sym_like2] = ACTIONS(2418), - [anon_sym_not_DASHlike2] = ACTIONS(2418), - [anon_sym_STAR_STAR2] = ACTIONS(2418), - [anon_sym_PLUS_PLUS2] = ACTIONS(2418), - [anon_sym_SLASH2] = ACTIONS(2420), - [anon_sym_mod2] = ACTIONS(2418), - [anon_sym_SLASH_SLASH2] = ACTIONS(2418), - [anon_sym_PLUS2] = ACTIONS(2420), - [anon_sym_bit_DASHshl2] = ACTIONS(2418), - [anon_sym_bit_DASHshr2] = ACTIONS(2418), - [anon_sym_bit_DASHand2] = ACTIONS(2418), - [anon_sym_bit_DASHxor2] = ACTIONS(2418), - [anon_sym_bit_DASHor2] = ACTIONS(2418), - [anon_sym_err_GT] = ACTIONS(2420), - [anon_sym_out_GT] = ACTIONS(2420), - [anon_sym_e_GT] = ACTIONS(2420), - [anon_sym_o_GT] = ACTIONS(2420), - [anon_sym_err_PLUSout_GT] = ACTIONS(2420), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2420), - [anon_sym_o_PLUSe_GT] = ACTIONS(2420), - [anon_sym_e_PLUSo_GT] = ACTIONS(2420), - [anon_sym_err_GT_GT] = ACTIONS(2418), - [anon_sym_out_GT_GT] = ACTIONS(2418), - [anon_sym_e_GT_GT] = ACTIONS(2418), - [anon_sym_o_GT_GT] = ACTIONS(2418), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2418), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2418), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2418), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1088)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1088), - [anon_sym_in] = ACTIONS(2724), - [sym__newline] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_PIPE] = ACTIONS(2724), - [anon_sym_err_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_GT_PIPE] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2724), - [anon_sym_RPAREN] = ACTIONS(2724), - [anon_sym_GT2] = ACTIONS(2726), - [anon_sym_DASH2] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_STAR2] = ACTIONS(2726), - [anon_sym_and2] = ACTIONS(2724), - [anon_sym_xor2] = ACTIONS(2724), - [anon_sym_or2] = ACTIONS(2724), - [anon_sym_not_DASHin2] = ACTIONS(2724), - [anon_sym_has2] = ACTIONS(2724), - [anon_sym_not_DASHhas2] = ACTIONS(2724), - [anon_sym_starts_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2724), - [anon_sym_ends_DASHwith2] = ACTIONS(2724), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2724), - [anon_sym_EQ_EQ2] = ACTIONS(2724), - [anon_sym_BANG_EQ2] = ACTIONS(2724), - [anon_sym_LT2] = ACTIONS(2726), - [anon_sym_LT_EQ2] = ACTIONS(2724), - [anon_sym_GT_EQ2] = ACTIONS(2724), - [anon_sym_EQ_TILDE2] = ACTIONS(2724), - [anon_sym_BANG_TILDE2] = ACTIONS(2724), - [anon_sym_like2] = ACTIONS(2724), - [anon_sym_not_DASHlike2] = ACTIONS(2724), - [anon_sym_STAR_STAR2] = ACTIONS(2724), - [anon_sym_PLUS_PLUS2] = ACTIONS(2724), - [anon_sym_SLASH2] = ACTIONS(2726), - [anon_sym_mod2] = ACTIONS(2724), - [anon_sym_SLASH_SLASH2] = ACTIONS(2724), - [anon_sym_PLUS2] = ACTIONS(2726), - [anon_sym_bit_DASHshl2] = ACTIONS(2724), - [anon_sym_bit_DASHshr2] = ACTIONS(2724), - [anon_sym_bit_DASHand2] = ACTIONS(2724), - [anon_sym_bit_DASHxor2] = ACTIONS(2724), - [anon_sym_bit_DASHor2] = ACTIONS(2724), - [anon_sym_err_GT] = ACTIONS(2726), - [anon_sym_out_GT] = ACTIONS(2726), - [anon_sym_e_GT] = ACTIONS(2726), - [anon_sym_o_GT] = ACTIONS(2726), - [anon_sym_err_PLUSout_GT] = ACTIONS(2726), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2726), - [anon_sym_o_PLUSe_GT] = ACTIONS(2726), - [anon_sym_e_PLUSo_GT] = ACTIONS(2726), - [anon_sym_err_GT_GT] = ACTIONS(2724), - [anon_sym_out_GT_GT] = ACTIONS(2724), - [anon_sym_e_GT_GT] = ACTIONS(2724), - [anon_sym_o_GT_GT] = ACTIONS(2724), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2724), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2724), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2724), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2724), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1089)] = { - [aux_sym__repeat_newline] = STATE(996), - [sym_comment] = STATE(1089), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1090)] = { - [sym_comment] = STATE(1090), - [ts_builtin_sym_end] = ACTIONS(2567), - [anon_sym_in] = ACTIONS(2567), - [sym__newline] = ACTIONS(2567), - [anon_sym_SEMI] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2567), - [anon_sym_err_GT_PIPE] = ACTIONS(2567), - [anon_sym_out_GT_PIPE] = ACTIONS(2567), - [anon_sym_e_GT_PIPE] = ACTIONS(2567), - [anon_sym_o_GT_PIPE] = ACTIONS(2567), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2567), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2567), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2567), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2567), - [anon_sym_GT2] = ACTIONS(2569), - [anon_sym_DASH2] = ACTIONS(2567), - [anon_sym_STAR2] = ACTIONS(2569), - [anon_sym_and2] = ACTIONS(2567), - [anon_sym_xor2] = ACTIONS(2567), - [anon_sym_or2] = ACTIONS(2567), - [anon_sym_not_DASHin2] = ACTIONS(2567), - [anon_sym_has2] = ACTIONS(2567), - [anon_sym_not_DASHhas2] = ACTIONS(2567), - [anon_sym_starts_DASHwith2] = ACTIONS(2567), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2567), - [anon_sym_ends_DASHwith2] = ACTIONS(2567), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2567), - [anon_sym_EQ_EQ2] = ACTIONS(2567), - [anon_sym_BANG_EQ2] = ACTIONS(2567), - [anon_sym_LT2] = ACTIONS(2569), - [anon_sym_LT_EQ2] = ACTIONS(2567), - [anon_sym_GT_EQ2] = ACTIONS(2567), - [anon_sym_EQ_TILDE2] = ACTIONS(2567), - [anon_sym_BANG_TILDE2] = ACTIONS(2567), - [anon_sym_like2] = ACTIONS(2567), - [anon_sym_not_DASHlike2] = ACTIONS(2567), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_STAR_STAR2] = ACTIONS(2567), - [anon_sym_PLUS_PLUS2] = ACTIONS(2567), - [anon_sym_SLASH2] = ACTIONS(2569), - [anon_sym_mod2] = ACTIONS(2567), - [anon_sym_SLASH_SLASH2] = ACTIONS(2567), - [anon_sym_PLUS2] = ACTIONS(2569), - [anon_sym_bit_DASHshl2] = ACTIONS(2567), - [anon_sym_bit_DASHshr2] = ACTIONS(2567), - [anon_sym_bit_DASHand2] = ACTIONS(2567), - [anon_sym_bit_DASHxor2] = ACTIONS(2567), - [anon_sym_bit_DASHor2] = ACTIONS(2567), - [anon_sym_err_GT] = ACTIONS(2569), - [anon_sym_out_GT] = ACTIONS(2569), - [anon_sym_e_GT] = ACTIONS(2569), - [anon_sym_o_GT] = ACTIONS(2569), - [anon_sym_err_PLUSout_GT] = ACTIONS(2569), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2569), - [anon_sym_o_PLUSe_GT] = ACTIONS(2569), - [anon_sym_e_PLUSo_GT] = ACTIONS(2569), - [anon_sym_err_GT_GT] = ACTIONS(2567), - [anon_sym_out_GT_GT] = ACTIONS(2567), - [anon_sym_e_GT_GT] = ACTIONS(2567), - [anon_sym_o_GT_GT] = ACTIONS(2567), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2567), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2567), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2567), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2567), - [sym__unquoted_pattern] = ACTIONS(2633), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1091)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1091), [anon_sym_in] = ACTIONS(2736), [sym__newline] = ACTIONS(2736), [anon_sym_SEMI] = ACTIONS(2736), @@ -127680,9 +126796,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1092)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1092), + [STATE(1076)] = { + [aux_sym__repeat_newline] = STATE(1120), + [sym_comment] = STATE(1076), + [anon_sym_in] = ACTIONS(2499), + [sym__newline] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_PIPE] = ACTIONS(2499), + [anon_sym_err_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_GT_PIPE] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2499), + [anon_sym_GT2] = ACTIONS(2501), + [anon_sym_DASH2] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_STAR2] = ACTIONS(2501), + [anon_sym_and2] = ACTIONS(2499), + [anon_sym_xor2] = ACTIONS(2499), + [anon_sym_or2] = ACTIONS(2499), + [anon_sym_not_DASHin2] = ACTIONS(2499), + [anon_sym_has2] = ACTIONS(2499), + [anon_sym_not_DASHhas2] = ACTIONS(2499), + [anon_sym_starts_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), + [anon_sym_ends_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), + [anon_sym_EQ_EQ2] = ACTIONS(2499), + [anon_sym_BANG_EQ2] = ACTIONS(2499), + [anon_sym_LT2] = ACTIONS(2501), + [anon_sym_LT_EQ2] = ACTIONS(2499), + [anon_sym_GT_EQ2] = ACTIONS(2499), + [anon_sym_EQ_TILDE2] = ACTIONS(2499), + [anon_sym_BANG_TILDE2] = ACTIONS(2499), + [anon_sym_like2] = ACTIONS(2499), + [anon_sym_not_DASHlike2] = ACTIONS(2499), + [anon_sym_STAR_STAR2] = ACTIONS(2499), + [anon_sym_PLUS_PLUS2] = ACTIONS(2499), + [anon_sym_SLASH2] = ACTIONS(2501), + [anon_sym_mod2] = ACTIONS(2499), + [anon_sym_SLASH_SLASH2] = ACTIONS(2499), + [anon_sym_PLUS2] = ACTIONS(2501), + [anon_sym_bit_DASHshl2] = ACTIONS(2499), + [anon_sym_bit_DASHshr2] = ACTIONS(2499), + [anon_sym_bit_DASHand2] = ACTIONS(2499), + [anon_sym_bit_DASHxor2] = ACTIONS(2499), + [anon_sym_bit_DASHor2] = ACTIONS(2499), + [anon_sym_err_GT] = ACTIONS(2501), + [anon_sym_out_GT] = ACTIONS(2501), + [anon_sym_e_GT] = ACTIONS(2501), + [anon_sym_o_GT] = ACTIONS(2501), + [anon_sym_err_PLUSout_GT] = ACTIONS(2501), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), + [anon_sym_o_PLUSe_GT] = ACTIONS(2501), + [anon_sym_e_PLUSo_GT] = ACTIONS(2501), + [anon_sym_err_GT_GT] = ACTIONS(2499), + [anon_sym_out_GT_GT] = ACTIONS(2499), + [anon_sym_e_GT_GT] = ACTIONS(2499), + [anon_sym_o_GT_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1077)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1077), [anon_sym_in] = ACTIONS(2736), [sym__newline] = ACTIONS(2736), [anon_sym_SEMI] = ACTIONS(2736), @@ -127748,9 +126932,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1093)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1093), + [STATE(1078)] = { + [aux_sym__repeat_newline] = STATE(1121), + [sym_comment] = STATE(1078), + [anon_sym_in] = ACTIONS(2499), + [sym__newline] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_PIPE] = ACTIONS(2499), + [anon_sym_err_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_GT_PIPE] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2499), + [anon_sym_GT2] = ACTIONS(2501), + [anon_sym_DASH2] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_STAR2] = ACTIONS(2501), + [anon_sym_and2] = ACTIONS(2499), + [anon_sym_xor2] = ACTIONS(2499), + [anon_sym_or2] = ACTIONS(2499), + [anon_sym_not_DASHin2] = ACTIONS(2499), + [anon_sym_has2] = ACTIONS(2499), + [anon_sym_not_DASHhas2] = ACTIONS(2499), + [anon_sym_starts_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), + [anon_sym_ends_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), + [anon_sym_EQ_EQ2] = ACTIONS(2499), + [anon_sym_BANG_EQ2] = ACTIONS(2499), + [anon_sym_LT2] = ACTIONS(2501), + [anon_sym_LT_EQ2] = ACTIONS(2499), + [anon_sym_GT_EQ2] = ACTIONS(2499), + [anon_sym_EQ_TILDE2] = ACTIONS(2499), + [anon_sym_BANG_TILDE2] = ACTIONS(2499), + [anon_sym_like2] = ACTIONS(2499), + [anon_sym_not_DASHlike2] = ACTIONS(2499), + [anon_sym_STAR_STAR2] = ACTIONS(2499), + [anon_sym_PLUS_PLUS2] = ACTIONS(2499), + [anon_sym_SLASH2] = ACTIONS(2501), + [anon_sym_mod2] = ACTIONS(2499), + [anon_sym_SLASH_SLASH2] = ACTIONS(2499), + [anon_sym_PLUS2] = ACTIONS(2501), + [anon_sym_bit_DASHshl2] = ACTIONS(2499), + [anon_sym_bit_DASHshr2] = ACTIONS(2499), + [anon_sym_bit_DASHand2] = ACTIONS(2499), + [anon_sym_bit_DASHxor2] = ACTIONS(2499), + [anon_sym_bit_DASHor2] = ACTIONS(2499), + [anon_sym_err_GT] = ACTIONS(2501), + [anon_sym_out_GT] = ACTIONS(2501), + [anon_sym_e_GT] = ACTIONS(2501), + [anon_sym_o_GT] = ACTIONS(2501), + [anon_sym_err_PLUSout_GT] = ACTIONS(2501), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), + [anon_sym_o_PLUSe_GT] = ACTIONS(2501), + [anon_sym_e_PLUSo_GT] = ACTIONS(2501), + [anon_sym_err_GT_GT] = ACTIONS(2499), + [anon_sym_out_GT_GT] = ACTIONS(2499), + [anon_sym_e_GT_GT] = ACTIONS(2499), + [anon_sym_o_GT_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1079)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1079), [anon_sym_in] = ACTIONS(2736), [sym__newline] = ACTIONS(2736), [anon_sym_SEMI] = ACTIONS(2736), @@ -127816,9 +127068,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1094)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1094), + [STATE(1080)] = { + [aux_sym__repeat_newline] = STATE(1079), + [sym_comment] = STATE(1080), + [anon_sym_in] = ACTIONS(2289), + [sym__newline] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_err_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_GT_PIPE] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), + [anon_sym_RPAREN] = ACTIONS(2289), + [anon_sym_GT2] = ACTIONS(2291), + [anon_sym_DASH2] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_STAR2] = ACTIONS(2291), + [anon_sym_and2] = ACTIONS(2289), + [anon_sym_xor2] = ACTIONS(2289), + [anon_sym_or2] = ACTIONS(2289), + [anon_sym_not_DASHin2] = ACTIONS(2289), + [anon_sym_has2] = ACTIONS(2289), + [anon_sym_not_DASHhas2] = ACTIONS(2289), + [anon_sym_starts_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), + [anon_sym_ends_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), + [anon_sym_EQ_EQ2] = ACTIONS(2289), + [anon_sym_BANG_EQ2] = ACTIONS(2289), + [anon_sym_LT2] = ACTIONS(2291), + [anon_sym_LT_EQ2] = ACTIONS(2289), + [anon_sym_GT_EQ2] = ACTIONS(2289), + [anon_sym_EQ_TILDE2] = ACTIONS(2289), + [anon_sym_BANG_TILDE2] = ACTIONS(2289), + [anon_sym_like2] = ACTIONS(2289), + [anon_sym_not_DASHlike2] = ACTIONS(2289), + [anon_sym_STAR_STAR2] = ACTIONS(2289), + [anon_sym_PLUS_PLUS2] = ACTIONS(2289), + [anon_sym_SLASH2] = ACTIONS(2291), + [anon_sym_mod2] = ACTIONS(2289), + [anon_sym_SLASH_SLASH2] = ACTIONS(2289), + [anon_sym_PLUS2] = ACTIONS(2291), + [anon_sym_bit_DASHshl2] = ACTIONS(2289), + [anon_sym_bit_DASHshr2] = ACTIONS(2289), + [anon_sym_bit_DASHand2] = ACTIONS(2289), + [anon_sym_bit_DASHxor2] = ACTIONS(2289), + [anon_sym_bit_DASHor2] = ACTIONS(2289), + [anon_sym_err_GT] = ACTIONS(2291), + [anon_sym_out_GT] = ACTIONS(2291), + [anon_sym_e_GT] = ACTIONS(2291), + [anon_sym_o_GT] = ACTIONS(2291), + [anon_sym_err_PLUSout_GT] = ACTIONS(2291), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), + [anon_sym_o_PLUSe_GT] = ACTIONS(2291), + [anon_sym_e_PLUSo_GT] = ACTIONS(2291), + [anon_sym_err_GT_GT] = ACTIONS(2289), + [anon_sym_out_GT_GT] = ACTIONS(2289), + [anon_sym_e_GT_GT] = ACTIONS(2289), + [anon_sym_o_GT_GT] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1081)] = { + [aux_sym__repeat_newline] = STATE(1123), + [sym_comment] = STATE(1081), + [anon_sym_in] = ACTIONS(2499), + [sym__newline] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_PIPE] = ACTIONS(2499), + [anon_sym_err_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_GT_PIPE] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2499), + [anon_sym_GT2] = ACTIONS(2501), + [anon_sym_DASH2] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_STAR2] = ACTIONS(2501), + [anon_sym_and2] = ACTIONS(2499), + [anon_sym_xor2] = ACTIONS(2499), + [anon_sym_or2] = ACTIONS(2499), + [anon_sym_not_DASHin2] = ACTIONS(2499), + [anon_sym_has2] = ACTIONS(2499), + [anon_sym_not_DASHhas2] = ACTIONS(2499), + [anon_sym_starts_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), + [anon_sym_ends_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), + [anon_sym_EQ_EQ2] = ACTIONS(2499), + [anon_sym_BANG_EQ2] = ACTIONS(2499), + [anon_sym_LT2] = ACTIONS(2501), + [anon_sym_LT_EQ2] = ACTIONS(2499), + [anon_sym_GT_EQ2] = ACTIONS(2499), + [anon_sym_EQ_TILDE2] = ACTIONS(2499), + [anon_sym_BANG_TILDE2] = ACTIONS(2499), + [anon_sym_like2] = ACTIONS(2499), + [anon_sym_not_DASHlike2] = ACTIONS(2499), + [anon_sym_STAR_STAR2] = ACTIONS(2499), + [anon_sym_PLUS_PLUS2] = ACTIONS(2499), + [anon_sym_SLASH2] = ACTIONS(2501), + [anon_sym_mod2] = ACTIONS(2499), + [anon_sym_SLASH_SLASH2] = ACTIONS(2499), + [anon_sym_PLUS2] = ACTIONS(2501), + [anon_sym_bit_DASHshl2] = ACTIONS(2499), + [anon_sym_bit_DASHshr2] = ACTIONS(2499), + [anon_sym_bit_DASHand2] = ACTIONS(2499), + [anon_sym_bit_DASHxor2] = ACTIONS(2499), + [anon_sym_bit_DASHor2] = ACTIONS(2499), + [anon_sym_err_GT] = ACTIONS(2501), + [anon_sym_out_GT] = ACTIONS(2501), + [anon_sym_e_GT] = ACTIONS(2501), + [anon_sym_o_GT] = ACTIONS(2501), + [anon_sym_err_PLUSout_GT] = ACTIONS(2501), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), + [anon_sym_o_PLUSe_GT] = ACTIONS(2501), + [anon_sym_e_PLUSo_GT] = ACTIONS(2501), + [anon_sym_err_GT_GT] = ACTIONS(2499), + [anon_sym_out_GT_GT] = ACTIONS(2499), + [anon_sym_e_GT_GT] = ACTIONS(2499), + [anon_sym_o_GT_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1082)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1082), [anon_sym_in] = ACTIONS(2736), [sym__newline] = ACTIONS(2736), [anon_sym_SEMI] = ACTIONS(2736), @@ -127884,9 +127272,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1095)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1095), + [STATE(1083)] = { + [sym_expr_unary] = STATE(2746), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_parenthesized] = STATE(2531), + [sym_val_range] = STATE(2746), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(2746), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(2568), + [sym_val_variable] = STATE(2555), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(2344), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(2243), + [sym__str_double_quotes] = STATE(2243), + [sym__str_single_quotes] = STATE(2243), + [sym__str_back_ticks] = STATE(2243), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(2578), + [sym__unquoted_with_expr] = STATE(2748), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(1083), + [anon_sym_true] = ACTIONS(2740), + [anon_sym_false] = ACTIONS(2740), + [anon_sym_null] = ACTIONS(2742), + [aux_sym_cmd_identifier_token3] = ACTIONS(2744), + [aux_sym_cmd_identifier_token4] = ACTIONS(2744), + [aux_sym_cmd_identifier_token5] = ACTIONS(2744), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym_LPAREN] = ACTIONS(2748), + [anon_sym_DOLLAR] = ACTIONS(2750), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_DOT_DOT] = ACTIONS(2754), + [aux_sym_expr_unary_token1] = ACTIONS(2756), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2758), + [anon_sym_DOT_DOT_LT] = ACTIONS(2758), + [aux_sym__val_number_decimal_token1] = ACTIONS(2760), + [aux_sym__val_number_decimal_token2] = ACTIONS(2762), + [aux_sym__val_number_decimal_token3] = ACTIONS(2764), + [aux_sym__val_number_decimal_token4] = ACTIONS(2764), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2766), + [anon_sym_DQUOTE] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1792), + }, + [STATE(1084)] = { + [aux_sym__repeat_newline] = STATE(1124), + [sym_comment] = STATE(1084), + [anon_sym_in] = ACTIONS(2499), + [sym__newline] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_PIPE] = ACTIONS(2499), + [anon_sym_err_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_GT_PIPE] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2499), + [anon_sym_GT2] = ACTIONS(2501), + [anon_sym_DASH2] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_STAR2] = ACTIONS(2501), + [anon_sym_and2] = ACTIONS(2499), + [anon_sym_xor2] = ACTIONS(2499), + [anon_sym_or2] = ACTIONS(2499), + [anon_sym_not_DASHin2] = ACTIONS(2499), + [anon_sym_has2] = ACTIONS(2499), + [anon_sym_not_DASHhas2] = ACTIONS(2499), + [anon_sym_starts_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), + [anon_sym_ends_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), + [anon_sym_EQ_EQ2] = ACTIONS(2499), + [anon_sym_BANG_EQ2] = ACTIONS(2499), + [anon_sym_LT2] = ACTIONS(2501), + [anon_sym_LT_EQ2] = ACTIONS(2499), + [anon_sym_GT_EQ2] = ACTIONS(2499), + [anon_sym_EQ_TILDE2] = ACTIONS(2499), + [anon_sym_BANG_TILDE2] = ACTIONS(2499), + [anon_sym_like2] = ACTIONS(2499), + [anon_sym_not_DASHlike2] = ACTIONS(2499), + [anon_sym_STAR_STAR2] = ACTIONS(2499), + [anon_sym_PLUS_PLUS2] = ACTIONS(2499), + [anon_sym_SLASH2] = ACTIONS(2501), + [anon_sym_mod2] = ACTIONS(2499), + [anon_sym_SLASH_SLASH2] = ACTIONS(2499), + [anon_sym_PLUS2] = ACTIONS(2501), + [anon_sym_bit_DASHshl2] = ACTIONS(2499), + [anon_sym_bit_DASHshr2] = ACTIONS(2499), + [anon_sym_bit_DASHand2] = ACTIONS(2499), + [anon_sym_bit_DASHxor2] = ACTIONS(2499), + [anon_sym_bit_DASHor2] = ACTIONS(2499), + [anon_sym_err_GT] = ACTIONS(2501), + [anon_sym_out_GT] = ACTIONS(2501), + [anon_sym_e_GT] = ACTIONS(2501), + [anon_sym_o_GT] = ACTIONS(2501), + [anon_sym_err_PLUSout_GT] = ACTIONS(2501), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), + [anon_sym_o_PLUSe_GT] = ACTIONS(2501), + [anon_sym_e_PLUSo_GT] = ACTIONS(2501), + [anon_sym_err_GT_GT] = ACTIONS(2499), + [anon_sym_out_GT_GT] = ACTIONS(2499), + [anon_sym_e_GT_GT] = ACTIONS(2499), + [anon_sym_o_GT_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1085)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1085), [anon_sym_in] = ACTIONS(2736), [sym__newline] = ACTIONS(2736), [anon_sym_SEMI] = ACTIONS(2736), @@ -127952,9 +127476,621 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1096)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1096), + [STATE(1086)] = { + [sym_comment] = STATE(1086), + [anon_sym_in] = ACTIONS(890), + [sym__newline] = ACTIONS(890), + [anon_sym_SEMI] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(890), + [anon_sym_err_GT_PIPE] = ACTIONS(890), + [anon_sym_out_GT_PIPE] = ACTIONS(890), + [anon_sym_e_GT_PIPE] = ACTIONS(890), + [anon_sym_o_GT_PIPE] = ACTIONS(890), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(890), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(890), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(890), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(890), + [anon_sym_RPAREN] = ACTIONS(890), + [anon_sym_GT2] = ACTIONS(793), + [anon_sym_DASH2] = ACTIONS(890), + [anon_sym_RBRACE] = ACTIONS(890), + [anon_sym_STAR2] = ACTIONS(793), + [anon_sym_and2] = ACTIONS(890), + [anon_sym_xor2] = ACTIONS(890), + [anon_sym_or2] = ACTIONS(890), + [anon_sym_not_DASHin2] = ACTIONS(890), + [anon_sym_has2] = ACTIONS(890), + [anon_sym_not_DASHhas2] = ACTIONS(890), + [anon_sym_starts_DASHwith2] = ACTIONS(890), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(890), + [anon_sym_ends_DASHwith2] = ACTIONS(890), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(890), + [anon_sym_EQ_EQ2] = ACTIONS(890), + [anon_sym_BANG_EQ2] = ACTIONS(890), + [anon_sym_LT2] = ACTIONS(793), + [anon_sym_LT_EQ2] = ACTIONS(890), + [anon_sym_GT_EQ2] = ACTIONS(890), + [anon_sym_EQ_TILDE2] = ACTIONS(890), + [anon_sym_BANG_TILDE2] = ACTIONS(890), + [anon_sym_like2] = ACTIONS(890), + [anon_sym_not_DASHlike2] = ACTIONS(890), + [anon_sym_STAR_STAR2] = ACTIONS(890), + [anon_sym_PLUS_PLUS2] = ACTIONS(890), + [anon_sym_SLASH2] = ACTIONS(793), + [anon_sym_mod2] = ACTIONS(890), + [anon_sym_SLASH_SLASH2] = ACTIONS(890), + [anon_sym_PLUS2] = ACTIONS(793), + [anon_sym_bit_DASHshl2] = ACTIONS(890), + [anon_sym_bit_DASHshr2] = ACTIONS(890), + [anon_sym_bit_DASHand2] = ACTIONS(890), + [anon_sym_bit_DASHxor2] = ACTIONS(890), + [anon_sym_bit_DASHor2] = ACTIONS(890), + [anon_sym_err_GT] = ACTIONS(793), + [anon_sym_out_GT] = ACTIONS(793), + [anon_sym_e_GT] = ACTIONS(793), + [anon_sym_o_GT] = ACTIONS(793), + [anon_sym_err_PLUSout_GT] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT] = ACTIONS(793), + [anon_sym_o_PLUSe_GT] = ACTIONS(793), + [anon_sym_e_PLUSo_GT] = ACTIONS(793), + [anon_sym_err_GT_GT] = ACTIONS(890), + [anon_sym_out_GT_GT] = ACTIONS(890), + [anon_sym_e_GT_GT] = ACTIONS(890), + [anon_sym_o_GT_GT] = ACTIONS(890), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(890), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(890), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(890), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(890), + [sym__unquoted_pattern] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1087)] = { + [aux_sym__repeat_newline] = STATE(1082), + [sym_comment] = STATE(1087), + [anon_sym_in] = ACTIONS(2289), + [sym__newline] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_err_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_GT_PIPE] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), + [anon_sym_RPAREN] = ACTIONS(2289), + [anon_sym_GT2] = ACTIONS(2291), + [anon_sym_DASH2] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_STAR2] = ACTIONS(2291), + [anon_sym_and2] = ACTIONS(2289), + [anon_sym_xor2] = ACTIONS(2289), + [anon_sym_or2] = ACTIONS(2289), + [anon_sym_not_DASHin2] = ACTIONS(2289), + [anon_sym_has2] = ACTIONS(2289), + [anon_sym_not_DASHhas2] = ACTIONS(2289), + [anon_sym_starts_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), + [anon_sym_ends_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), + [anon_sym_EQ_EQ2] = ACTIONS(2289), + [anon_sym_BANG_EQ2] = ACTIONS(2289), + [anon_sym_LT2] = ACTIONS(2291), + [anon_sym_LT_EQ2] = ACTIONS(2289), + [anon_sym_GT_EQ2] = ACTIONS(2289), + [anon_sym_EQ_TILDE2] = ACTIONS(2289), + [anon_sym_BANG_TILDE2] = ACTIONS(2289), + [anon_sym_like2] = ACTIONS(2289), + [anon_sym_not_DASHlike2] = ACTIONS(2289), + [anon_sym_STAR_STAR2] = ACTIONS(2289), + [anon_sym_PLUS_PLUS2] = ACTIONS(2289), + [anon_sym_SLASH2] = ACTIONS(2291), + [anon_sym_mod2] = ACTIONS(2289), + [anon_sym_SLASH_SLASH2] = ACTIONS(2289), + [anon_sym_PLUS2] = ACTIONS(2291), + [anon_sym_bit_DASHshl2] = ACTIONS(2289), + [anon_sym_bit_DASHshr2] = ACTIONS(2289), + [anon_sym_bit_DASHand2] = ACTIONS(2289), + [anon_sym_bit_DASHxor2] = ACTIONS(2289), + [anon_sym_bit_DASHor2] = ACTIONS(2289), + [anon_sym_err_GT] = ACTIONS(2291), + [anon_sym_out_GT] = ACTIONS(2291), + [anon_sym_e_GT] = ACTIONS(2291), + [anon_sym_o_GT] = ACTIONS(2291), + [anon_sym_err_PLUSout_GT] = ACTIONS(2291), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), + [anon_sym_o_PLUSe_GT] = ACTIONS(2291), + [anon_sym_e_PLUSo_GT] = ACTIONS(2291), + [anon_sym_err_GT_GT] = ACTIONS(2289), + [anon_sym_out_GT_GT] = ACTIONS(2289), + [anon_sym_e_GT_GT] = ACTIONS(2289), + [anon_sym_o_GT_GT] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1088)] = { + [sym_expr_unary] = STATE(2749), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_parenthesized] = STATE(2532), + [sym_val_range] = STATE(2749), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(2749), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(2568), + [sym_val_variable] = STATE(2555), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(2344), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(2243), + [sym__str_double_quotes] = STATE(2243), + [sym__str_single_quotes] = STATE(2243), + [sym__str_back_ticks] = STATE(2243), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(2579), + [sym__unquoted_with_expr] = STATE(2751), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(1088), + [anon_sym_true] = ACTIONS(2740), + [anon_sym_false] = ACTIONS(2740), + [anon_sym_null] = ACTIONS(2742), + [aux_sym_cmd_identifier_token3] = ACTIONS(2744), + [aux_sym_cmd_identifier_token4] = ACTIONS(2744), + [aux_sym_cmd_identifier_token5] = ACTIONS(2744), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym_LPAREN] = ACTIONS(2748), + [anon_sym_DOLLAR] = ACTIONS(2750), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_DOT_DOT] = ACTIONS(2754), + [aux_sym_expr_unary_token1] = ACTIONS(2756), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2758), + [anon_sym_DOT_DOT_LT] = ACTIONS(2758), + [aux_sym__val_number_decimal_token1] = ACTIONS(2760), + [aux_sym__val_number_decimal_token2] = ACTIONS(2762), + [aux_sym__val_number_decimal_token3] = ACTIONS(2764), + [aux_sym__val_number_decimal_token4] = ACTIONS(2764), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2766), + [anon_sym_DQUOTE] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1792), + }, + [STATE(1089)] = { + [sym_comment] = STATE(1089), + [ts_builtin_sym_end] = ACTIONS(2525), + [anon_sym_in] = ACTIONS(2525), + [sym__newline] = ACTIONS(2525), + [anon_sym_SEMI] = ACTIONS(2525), + [anon_sym_PIPE] = ACTIONS(2525), + [anon_sym_err_GT_PIPE] = ACTIONS(2525), + [anon_sym_out_GT_PIPE] = ACTIONS(2525), + [anon_sym_e_GT_PIPE] = ACTIONS(2525), + [anon_sym_o_GT_PIPE] = ACTIONS(2525), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2525), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2525), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2525), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2525), + [anon_sym_GT2] = ACTIONS(2527), + [anon_sym_DASH2] = ACTIONS(2525), + [anon_sym_STAR2] = ACTIONS(2527), + [anon_sym_and2] = ACTIONS(2525), + [anon_sym_xor2] = ACTIONS(2525), + [anon_sym_or2] = ACTIONS(2525), + [anon_sym_not_DASHin2] = ACTIONS(2525), + [anon_sym_has2] = ACTIONS(2525), + [anon_sym_not_DASHhas2] = ACTIONS(2525), + [anon_sym_starts_DASHwith2] = ACTIONS(2525), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2525), + [anon_sym_ends_DASHwith2] = ACTIONS(2525), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2525), + [anon_sym_EQ_EQ2] = ACTIONS(2525), + [anon_sym_BANG_EQ2] = ACTIONS(2525), + [anon_sym_LT2] = ACTIONS(2527), + [anon_sym_LT_EQ2] = ACTIONS(2525), + [anon_sym_GT_EQ2] = ACTIONS(2525), + [anon_sym_EQ_TILDE2] = ACTIONS(2525), + [anon_sym_BANG_TILDE2] = ACTIONS(2525), + [anon_sym_like2] = ACTIONS(2525), + [anon_sym_not_DASHlike2] = ACTIONS(2525), + [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_STAR_STAR2] = ACTIONS(2525), + [anon_sym_PLUS_PLUS2] = ACTIONS(2525), + [anon_sym_SLASH2] = ACTIONS(2527), + [anon_sym_mod2] = ACTIONS(2525), + [anon_sym_SLASH_SLASH2] = ACTIONS(2525), + [anon_sym_PLUS2] = ACTIONS(2527), + [anon_sym_bit_DASHshl2] = ACTIONS(2525), + [anon_sym_bit_DASHshr2] = ACTIONS(2525), + [anon_sym_bit_DASHand2] = ACTIONS(2525), + [anon_sym_bit_DASHxor2] = ACTIONS(2525), + [anon_sym_bit_DASHor2] = ACTIONS(2525), + [anon_sym_err_GT] = ACTIONS(2527), + [anon_sym_out_GT] = ACTIONS(2527), + [anon_sym_e_GT] = ACTIONS(2527), + [anon_sym_o_GT] = ACTIONS(2527), + [anon_sym_err_PLUSout_GT] = ACTIONS(2527), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2527), + [anon_sym_o_PLUSe_GT] = ACTIONS(2527), + [anon_sym_e_PLUSo_GT] = ACTIONS(2527), + [anon_sym_err_GT_GT] = ACTIONS(2525), + [anon_sym_out_GT_GT] = ACTIONS(2525), + [anon_sym_e_GT_GT] = ACTIONS(2525), + [anon_sym_o_GT_GT] = ACTIONS(2525), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2525), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2525), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2525), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2525), + [sym__unquoted_pattern] = ACTIONS(2531), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1090)] = { + [aux_sym__repeat_newline] = STATE(1085), + [sym_comment] = STATE(1090), + [anon_sym_in] = ACTIONS(2289), + [sym__newline] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_err_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_GT_PIPE] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), + [anon_sym_RPAREN] = ACTIONS(2289), + [anon_sym_GT2] = ACTIONS(2291), + [anon_sym_DASH2] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_STAR2] = ACTIONS(2291), + [anon_sym_and2] = ACTIONS(2289), + [anon_sym_xor2] = ACTIONS(2289), + [anon_sym_or2] = ACTIONS(2289), + [anon_sym_not_DASHin2] = ACTIONS(2289), + [anon_sym_has2] = ACTIONS(2289), + [anon_sym_not_DASHhas2] = ACTIONS(2289), + [anon_sym_starts_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), + [anon_sym_ends_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), + [anon_sym_EQ_EQ2] = ACTIONS(2289), + [anon_sym_BANG_EQ2] = ACTIONS(2289), + [anon_sym_LT2] = ACTIONS(2291), + [anon_sym_LT_EQ2] = ACTIONS(2289), + [anon_sym_GT_EQ2] = ACTIONS(2289), + [anon_sym_EQ_TILDE2] = ACTIONS(2289), + [anon_sym_BANG_TILDE2] = ACTIONS(2289), + [anon_sym_like2] = ACTIONS(2289), + [anon_sym_not_DASHlike2] = ACTIONS(2289), + [anon_sym_STAR_STAR2] = ACTIONS(2289), + [anon_sym_PLUS_PLUS2] = ACTIONS(2289), + [anon_sym_SLASH2] = ACTIONS(2291), + [anon_sym_mod2] = ACTIONS(2289), + [anon_sym_SLASH_SLASH2] = ACTIONS(2289), + [anon_sym_PLUS2] = ACTIONS(2291), + [anon_sym_bit_DASHshl2] = ACTIONS(2289), + [anon_sym_bit_DASHshr2] = ACTIONS(2289), + [anon_sym_bit_DASHand2] = ACTIONS(2289), + [anon_sym_bit_DASHxor2] = ACTIONS(2289), + [anon_sym_bit_DASHor2] = ACTIONS(2289), + [anon_sym_err_GT] = ACTIONS(2291), + [anon_sym_out_GT] = ACTIONS(2291), + [anon_sym_e_GT] = ACTIONS(2291), + [anon_sym_o_GT] = ACTIONS(2291), + [anon_sym_err_PLUSout_GT] = ACTIONS(2291), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), + [anon_sym_o_PLUSe_GT] = ACTIONS(2291), + [anon_sym_e_PLUSo_GT] = ACTIONS(2291), + [anon_sym_err_GT_GT] = ACTIONS(2289), + [anon_sym_out_GT_GT] = ACTIONS(2289), + [anon_sym_e_GT_GT] = ACTIONS(2289), + [anon_sym_o_GT_GT] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1091)] = { + [sym_expr_unary] = STATE(2752), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_parenthesized] = STATE(2533), + [sym_val_range] = STATE(2752), + [sym__val_range] = STATE(4567), + [sym__value] = STATE(2752), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(2568), + [sym_val_variable] = STATE(2555), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(2344), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(2243), + [sym__str_double_quotes] = STATE(2243), + [sym__str_single_quotes] = STATE(2243), + [sym__str_back_ticks] = STATE(2243), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), + [sym_unquoted] = STATE(2580), + [sym__unquoted_with_expr] = STATE(2754), + [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_comment] = STATE(1091), + [anon_sym_true] = ACTIONS(2740), + [anon_sym_false] = ACTIONS(2740), + [anon_sym_null] = ACTIONS(2742), + [aux_sym_cmd_identifier_token3] = ACTIONS(2744), + [aux_sym_cmd_identifier_token4] = ACTIONS(2744), + [aux_sym_cmd_identifier_token5] = ACTIONS(2744), + [anon_sym_LBRACK] = ACTIONS(2746), + [anon_sym_LPAREN] = ACTIONS(2748), + [anon_sym_DOLLAR] = ACTIONS(2750), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_DOT_DOT] = ACTIONS(2754), + [aux_sym_expr_unary_token1] = ACTIONS(2756), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2758), + [anon_sym_DOT_DOT_LT] = ACTIONS(2758), + [aux_sym__val_number_decimal_token1] = ACTIONS(2760), + [aux_sym__val_number_decimal_token2] = ACTIONS(2762), + [aux_sym__val_number_decimal_token3] = ACTIONS(2764), + [aux_sym__val_number_decimal_token4] = ACTIONS(2764), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2766), + [anon_sym_DQUOTE] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1792), + }, + [STATE(1092)] = { + [aux_sym__repeat_newline] = STATE(1095), + [sym_comment] = STATE(1092), + [anon_sym_in] = ACTIONS(2289), + [sym__newline] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_err_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_GT_PIPE] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), + [anon_sym_RPAREN] = ACTIONS(2289), + [anon_sym_GT2] = ACTIONS(2291), + [anon_sym_DASH2] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_STAR2] = ACTIONS(2291), + [anon_sym_and2] = ACTIONS(2289), + [anon_sym_xor2] = ACTIONS(2289), + [anon_sym_or2] = ACTIONS(2289), + [anon_sym_not_DASHin2] = ACTIONS(2289), + [anon_sym_has2] = ACTIONS(2289), + [anon_sym_not_DASHhas2] = ACTIONS(2289), + [anon_sym_starts_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), + [anon_sym_ends_DASHwith2] = ACTIONS(2289), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), + [anon_sym_EQ_EQ2] = ACTIONS(2289), + [anon_sym_BANG_EQ2] = ACTIONS(2289), + [anon_sym_LT2] = ACTIONS(2291), + [anon_sym_LT_EQ2] = ACTIONS(2289), + [anon_sym_GT_EQ2] = ACTIONS(2289), + [anon_sym_EQ_TILDE2] = ACTIONS(2289), + [anon_sym_BANG_TILDE2] = ACTIONS(2289), + [anon_sym_like2] = ACTIONS(2289), + [anon_sym_not_DASHlike2] = ACTIONS(2289), + [anon_sym_STAR_STAR2] = ACTIONS(2289), + [anon_sym_PLUS_PLUS2] = ACTIONS(2289), + [anon_sym_SLASH2] = ACTIONS(2291), + [anon_sym_mod2] = ACTIONS(2289), + [anon_sym_SLASH_SLASH2] = ACTIONS(2289), + [anon_sym_PLUS2] = ACTIONS(2291), + [anon_sym_bit_DASHshl2] = ACTIONS(2289), + [anon_sym_bit_DASHshr2] = ACTIONS(2289), + [anon_sym_bit_DASHand2] = ACTIONS(2289), + [anon_sym_bit_DASHxor2] = ACTIONS(2289), + [anon_sym_bit_DASHor2] = ACTIONS(2289), + [anon_sym_err_GT] = ACTIONS(2291), + [anon_sym_out_GT] = ACTIONS(2291), + [anon_sym_e_GT] = ACTIONS(2291), + [anon_sym_o_GT] = ACTIONS(2291), + [anon_sym_err_PLUSout_GT] = ACTIONS(2291), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), + [anon_sym_o_PLUSe_GT] = ACTIONS(2291), + [anon_sym_e_PLUSo_GT] = ACTIONS(2291), + [anon_sym_err_GT_GT] = ACTIONS(2289), + [anon_sym_out_GT_GT] = ACTIONS(2289), + [anon_sym_e_GT_GT] = ACTIONS(2289), + [anon_sym_o_GT_GT] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1093)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1093), + [anon_sym_in] = ACTIONS(2658), + [sym__newline] = ACTIONS(2658), + [anon_sym_SEMI] = ACTIONS(2658), + [anon_sym_PIPE] = ACTIONS(2658), + [anon_sym_err_GT_PIPE] = ACTIONS(2658), + [anon_sym_out_GT_PIPE] = ACTIONS(2658), + [anon_sym_e_GT_PIPE] = ACTIONS(2658), + [anon_sym_o_GT_PIPE] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2658), + [anon_sym_RPAREN] = ACTIONS(2658), + [anon_sym_GT2] = ACTIONS(2660), + [anon_sym_DASH2] = ACTIONS(2658), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_STAR2] = ACTIONS(2660), + [anon_sym_and2] = ACTIONS(2658), + [anon_sym_xor2] = ACTIONS(2658), + [anon_sym_or2] = ACTIONS(2658), + [anon_sym_not_DASHin2] = ACTIONS(2658), + [anon_sym_has2] = ACTIONS(2658), + [anon_sym_not_DASHhas2] = ACTIONS(2658), + [anon_sym_starts_DASHwith2] = ACTIONS(2658), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2658), + [anon_sym_ends_DASHwith2] = ACTIONS(2658), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2658), + [anon_sym_EQ_EQ2] = ACTIONS(2658), + [anon_sym_BANG_EQ2] = ACTIONS(2658), + [anon_sym_LT2] = ACTIONS(2660), + [anon_sym_LT_EQ2] = ACTIONS(2658), + [anon_sym_GT_EQ2] = ACTIONS(2658), + [anon_sym_EQ_TILDE2] = ACTIONS(2658), + [anon_sym_BANG_TILDE2] = ACTIONS(2658), + [anon_sym_like2] = ACTIONS(2658), + [anon_sym_not_DASHlike2] = ACTIONS(2658), + [anon_sym_STAR_STAR2] = ACTIONS(2658), + [anon_sym_PLUS_PLUS2] = ACTIONS(2658), + [anon_sym_SLASH2] = ACTIONS(2660), + [anon_sym_mod2] = ACTIONS(2658), + [anon_sym_SLASH_SLASH2] = ACTIONS(2658), + [anon_sym_PLUS2] = ACTIONS(2660), + [anon_sym_bit_DASHshl2] = ACTIONS(2658), + [anon_sym_bit_DASHshr2] = ACTIONS(2658), + [anon_sym_bit_DASHand2] = ACTIONS(2658), + [anon_sym_bit_DASHxor2] = ACTIONS(2658), + [anon_sym_bit_DASHor2] = ACTIONS(2658), + [anon_sym_err_GT] = ACTIONS(2660), + [anon_sym_out_GT] = ACTIONS(2660), + [anon_sym_e_GT] = ACTIONS(2660), + [anon_sym_o_GT] = ACTIONS(2660), + [anon_sym_err_PLUSout_GT] = ACTIONS(2660), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2660), + [anon_sym_o_PLUSe_GT] = ACTIONS(2660), + [anon_sym_e_PLUSo_GT] = ACTIONS(2660), + [anon_sym_err_GT_GT] = ACTIONS(2658), + [anon_sym_out_GT_GT] = ACTIONS(2658), + [anon_sym_e_GT_GT] = ACTIONS(2658), + [anon_sym_o_GT_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2658), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1094)] = { + [aux_sym__repeat_newline] = STATE(1125), + [sym_comment] = STATE(1094), + [anon_sym_in] = ACTIONS(2499), + [sym__newline] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_PIPE] = ACTIONS(2499), + [anon_sym_err_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_GT_PIPE] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2499), + [anon_sym_GT2] = ACTIONS(2501), + [anon_sym_DASH2] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_STAR2] = ACTIONS(2501), + [anon_sym_and2] = ACTIONS(2499), + [anon_sym_xor2] = ACTIONS(2499), + [anon_sym_or2] = ACTIONS(2499), + [anon_sym_not_DASHin2] = ACTIONS(2499), + [anon_sym_has2] = ACTIONS(2499), + [anon_sym_not_DASHhas2] = ACTIONS(2499), + [anon_sym_starts_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), + [anon_sym_ends_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), + [anon_sym_EQ_EQ2] = ACTIONS(2499), + [anon_sym_BANG_EQ2] = ACTIONS(2499), + [anon_sym_LT2] = ACTIONS(2501), + [anon_sym_LT_EQ2] = ACTIONS(2499), + [anon_sym_GT_EQ2] = ACTIONS(2499), + [anon_sym_EQ_TILDE2] = ACTIONS(2499), + [anon_sym_BANG_TILDE2] = ACTIONS(2499), + [anon_sym_like2] = ACTIONS(2499), + [anon_sym_not_DASHlike2] = ACTIONS(2499), + [anon_sym_STAR_STAR2] = ACTIONS(2499), + [anon_sym_PLUS_PLUS2] = ACTIONS(2499), + [anon_sym_SLASH2] = ACTIONS(2501), + [anon_sym_mod2] = ACTIONS(2499), + [anon_sym_SLASH_SLASH2] = ACTIONS(2499), + [anon_sym_PLUS2] = ACTIONS(2501), + [anon_sym_bit_DASHshl2] = ACTIONS(2499), + [anon_sym_bit_DASHshr2] = ACTIONS(2499), + [anon_sym_bit_DASHand2] = ACTIONS(2499), + [anon_sym_bit_DASHxor2] = ACTIONS(2499), + [anon_sym_bit_DASHor2] = ACTIONS(2499), + [anon_sym_err_GT] = ACTIONS(2501), + [anon_sym_out_GT] = ACTIONS(2501), + [anon_sym_e_GT] = ACTIONS(2501), + [anon_sym_o_GT] = ACTIONS(2501), + [anon_sym_err_PLUSout_GT] = ACTIONS(2501), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), + [anon_sym_o_PLUSe_GT] = ACTIONS(2501), + [anon_sym_e_PLUSo_GT] = ACTIONS(2501), + [anon_sym_err_GT_GT] = ACTIONS(2499), + [anon_sym_out_GT_GT] = ACTIONS(2499), + [anon_sym_e_GT_GT] = ACTIONS(2499), + [anon_sym_o_GT_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1095)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1095), [anon_sym_in] = ACTIONS(2736), [sym__newline] = ACTIONS(2736), [anon_sym_SEMI] = ACTIONS(2736), @@ -128020,9 +128156,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(1096)] = { + [aux_sym__repeat_newline] = STATE(1010), + [sym_comment] = STATE(1096), + [anon_sym_in] = ACTIONS(2198), + [sym__newline] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_err_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_GT_PIPE] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_GT2] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2198), + [anon_sym_xor2] = ACTIONS(2198), + [anon_sym_or2] = ACTIONS(2198), + [anon_sym_not_DASHin2] = ACTIONS(2198), + [anon_sym_has2] = ACTIONS(2198), + [anon_sym_not_DASHhas2] = ACTIONS(2198), + [anon_sym_starts_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), + [anon_sym_ends_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), + [anon_sym_EQ_EQ2] = ACTIONS(2198), + [anon_sym_BANG_EQ2] = ACTIONS(2198), + [anon_sym_LT2] = ACTIONS(2200), + [anon_sym_LT_EQ2] = ACTIONS(2198), + [anon_sym_GT_EQ2] = ACTIONS(2198), + [anon_sym_EQ_TILDE2] = ACTIONS(2198), + [anon_sym_BANG_TILDE2] = ACTIONS(2198), + [anon_sym_like2] = ACTIONS(2198), + [anon_sym_not_DASHlike2] = ACTIONS(2198), + [anon_sym_STAR_STAR2] = ACTIONS(2198), + [anon_sym_PLUS_PLUS2] = ACTIONS(2198), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2198), + [anon_sym_SLASH_SLASH2] = ACTIONS(2198), + [anon_sym_PLUS2] = ACTIONS(2200), + [anon_sym_bit_DASHshl2] = ACTIONS(2198), + [anon_sym_bit_DASHshr2] = ACTIONS(2198), + [anon_sym_bit_DASHand2] = ACTIONS(2198), + [anon_sym_bit_DASHxor2] = ACTIONS(2198), + [anon_sym_bit_DASHor2] = ACTIONS(2198), + [anon_sym_err_GT] = ACTIONS(2200), + [anon_sym_out_GT] = ACTIONS(2200), + [anon_sym_e_GT] = ACTIONS(2200), + [anon_sym_o_GT] = ACTIONS(2200), + [anon_sym_err_PLUSout_GT] = ACTIONS(2200), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), + [anon_sym_o_PLUSe_GT] = ACTIONS(2200), + [anon_sym_e_PLUSo_GT] = ACTIONS(2200), + [anon_sym_err_GT_GT] = ACTIONS(2198), + [anon_sym_out_GT_GT] = ACTIONS(2198), + [anon_sym_e_GT_GT] = ACTIONS(2198), + [anon_sym_o_GT_GT] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(1097)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1126), [sym_comment] = STATE(1097), + [anon_sym_in] = ACTIONS(2499), + [sym__newline] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_PIPE] = ACTIONS(2499), + [anon_sym_err_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_GT_PIPE] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2499), + [anon_sym_GT2] = ACTIONS(2501), + [anon_sym_DASH2] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_STAR2] = ACTIONS(2501), + [anon_sym_and2] = ACTIONS(2499), + [anon_sym_xor2] = ACTIONS(2499), + [anon_sym_or2] = ACTIONS(2499), + [anon_sym_not_DASHin2] = ACTIONS(2499), + [anon_sym_has2] = ACTIONS(2499), + [anon_sym_not_DASHhas2] = ACTIONS(2499), + [anon_sym_starts_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), + [anon_sym_ends_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), + [anon_sym_EQ_EQ2] = ACTIONS(2499), + [anon_sym_BANG_EQ2] = ACTIONS(2499), + [anon_sym_LT2] = ACTIONS(2501), + [anon_sym_LT_EQ2] = ACTIONS(2499), + [anon_sym_GT_EQ2] = ACTIONS(2499), + [anon_sym_EQ_TILDE2] = ACTIONS(2499), + [anon_sym_BANG_TILDE2] = ACTIONS(2499), + [anon_sym_like2] = ACTIONS(2499), + [anon_sym_not_DASHlike2] = ACTIONS(2499), + [anon_sym_STAR_STAR2] = ACTIONS(2499), + [anon_sym_PLUS_PLUS2] = ACTIONS(2499), + [anon_sym_SLASH2] = ACTIONS(2501), + [anon_sym_mod2] = ACTIONS(2499), + [anon_sym_SLASH_SLASH2] = ACTIONS(2499), + [anon_sym_PLUS2] = ACTIONS(2501), + [anon_sym_bit_DASHshl2] = ACTIONS(2499), + [anon_sym_bit_DASHshr2] = ACTIONS(2499), + [anon_sym_bit_DASHand2] = ACTIONS(2499), + [anon_sym_bit_DASHxor2] = ACTIONS(2499), + [anon_sym_bit_DASHor2] = ACTIONS(2499), + [anon_sym_err_GT] = ACTIONS(2501), + [anon_sym_out_GT] = ACTIONS(2501), + [anon_sym_e_GT] = ACTIONS(2501), + [anon_sym_o_GT] = ACTIONS(2501), + [anon_sym_err_PLUSout_GT] = ACTIONS(2501), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), + [anon_sym_o_PLUSe_GT] = ACTIONS(2501), + [anon_sym_e_PLUSo_GT] = ACTIONS(2501), + [anon_sym_err_GT_GT] = ACTIONS(2499), + [anon_sym_out_GT_GT] = ACTIONS(2499), + [anon_sym_e_GT_GT] = ACTIONS(2499), + [anon_sym_o_GT_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1098)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1098), [anon_sym_in] = ACTIONS(2736), [sym__newline] = ACTIONS(2736), [anon_sym_SEMI] = ACTIONS(2736), @@ -128088,9 +128360,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1098)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1098), + [STATE(1099)] = { + [aux_sym__repeat_newline] = STATE(1127), + [sym_comment] = STATE(1099), + [anon_sym_in] = ACTIONS(2499), + [sym__newline] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_PIPE] = ACTIONS(2499), + [anon_sym_err_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_GT_PIPE] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2499), + [anon_sym_GT2] = ACTIONS(2501), + [anon_sym_DASH2] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_STAR2] = ACTIONS(2501), + [anon_sym_and2] = ACTIONS(2499), + [anon_sym_xor2] = ACTIONS(2499), + [anon_sym_or2] = ACTIONS(2499), + [anon_sym_not_DASHin2] = ACTIONS(2499), + [anon_sym_has2] = ACTIONS(2499), + [anon_sym_not_DASHhas2] = ACTIONS(2499), + [anon_sym_starts_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), + [anon_sym_ends_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), + [anon_sym_EQ_EQ2] = ACTIONS(2499), + [anon_sym_BANG_EQ2] = ACTIONS(2499), + [anon_sym_LT2] = ACTIONS(2501), + [anon_sym_LT_EQ2] = ACTIONS(2499), + [anon_sym_GT_EQ2] = ACTIONS(2499), + [anon_sym_EQ_TILDE2] = ACTIONS(2499), + [anon_sym_BANG_TILDE2] = ACTIONS(2499), + [anon_sym_like2] = ACTIONS(2499), + [anon_sym_not_DASHlike2] = ACTIONS(2499), + [anon_sym_STAR_STAR2] = ACTIONS(2499), + [anon_sym_PLUS_PLUS2] = ACTIONS(2499), + [anon_sym_SLASH2] = ACTIONS(2501), + [anon_sym_mod2] = ACTIONS(2499), + [anon_sym_SLASH_SLASH2] = ACTIONS(2499), + [anon_sym_PLUS2] = ACTIONS(2501), + [anon_sym_bit_DASHshl2] = ACTIONS(2499), + [anon_sym_bit_DASHshr2] = ACTIONS(2499), + [anon_sym_bit_DASHand2] = ACTIONS(2499), + [anon_sym_bit_DASHxor2] = ACTIONS(2499), + [anon_sym_bit_DASHor2] = ACTIONS(2499), + [anon_sym_err_GT] = ACTIONS(2501), + [anon_sym_out_GT] = ACTIONS(2501), + [anon_sym_e_GT] = ACTIONS(2501), + [anon_sym_o_GT] = ACTIONS(2501), + [anon_sym_err_PLUSout_GT] = ACTIONS(2501), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), + [anon_sym_o_PLUSe_GT] = ACTIONS(2501), + [anon_sym_e_PLUSo_GT] = ACTIONS(2501), + [anon_sym_err_GT_GT] = ACTIONS(2499), + [anon_sym_out_GT_GT] = ACTIONS(2499), + [anon_sym_e_GT_GT] = ACTIONS(2499), + [anon_sym_o_GT_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1100)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1100), [anon_sym_in] = ACTIONS(2736), [sym__newline] = ACTIONS(2736), [anon_sym_SEMI] = ACTIONS(2736), @@ -128156,77 +128496,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1099)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1099), - [anon_sym_in] = ACTIONS(2740), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2742), - [anon_sym_DASH2] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2740), - [anon_sym_STAR2] = ACTIONS(2742), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2740), - [anon_sym_has2] = ACTIONS(2740), - [anon_sym_not_DASHhas2] = ACTIONS(2740), - [anon_sym_starts_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2740), - [anon_sym_ends_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2740), - [anon_sym_EQ_EQ2] = ACTIONS(2740), - [anon_sym_BANG_EQ2] = ACTIONS(2740), - [anon_sym_LT2] = ACTIONS(2742), - [anon_sym_LT_EQ2] = ACTIONS(2740), - [anon_sym_GT_EQ2] = ACTIONS(2740), - [anon_sym_EQ_TILDE2] = ACTIONS(2740), - [anon_sym_BANG_TILDE2] = ACTIONS(2740), - [anon_sym_like2] = ACTIONS(2740), - [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2740), - [anon_sym_PLUS_PLUS2] = ACTIONS(2740), - [anon_sym_SLASH2] = ACTIONS(2742), - [anon_sym_mod2] = ACTIONS(2740), - [anon_sym_SLASH_SLASH2] = ACTIONS(2740), - [anon_sym_PLUS2] = ACTIONS(2742), - [anon_sym_bit_DASHshl2] = ACTIONS(2740), - [anon_sym_bit_DASHshr2] = ACTIONS(2740), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [STATE(1101)] = { + [aux_sym__repeat_newline] = STATE(1128), + [sym_comment] = STATE(1101), + [anon_sym_in] = ACTIONS(2768), + [sym__newline] = ACTIONS(2768), + [anon_sym_SEMI] = ACTIONS(2768), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_err_GT_PIPE] = ACTIONS(2768), + [anon_sym_out_GT_PIPE] = ACTIONS(2768), + [anon_sym_e_GT_PIPE] = ACTIONS(2768), + [anon_sym_o_GT_PIPE] = ACTIONS(2768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2768), + [anon_sym_RPAREN] = ACTIONS(2768), + [anon_sym_GT2] = ACTIONS(2770), + [anon_sym_DASH2] = ACTIONS(2768), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_STAR2] = ACTIONS(2770), + [anon_sym_and2] = ACTIONS(2768), + [anon_sym_xor2] = ACTIONS(2768), + [anon_sym_or2] = ACTIONS(2768), + [anon_sym_not_DASHin2] = ACTIONS(2768), + [anon_sym_has2] = ACTIONS(2768), + [anon_sym_not_DASHhas2] = ACTIONS(2768), + [anon_sym_starts_DASHwith2] = ACTIONS(2768), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2768), + [anon_sym_ends_DASHwith2] = ACTIONS(2768), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2768), + [anon_sym_EQ_EQ2] = ACTIONS(2768), + [anon_sym_BANG_EQ2] = ACTIONS(2768), + [anon_sym_LT2] = ACTIONS(2770), + [anon_sym_LT_EQ2] = ACTIONS(2768), + [anon_sym_GT_EQ2] = ACTIONS(2768), + [anon_sym_EQ_TILDE2] = ACTIONS(2768), + [anon_sym_BANG_TILDE2] = ACTIONS(2768), + [anon_sym_like2] = ACTIONS(2768), + [anon_sym_not_DASHlike2] = ACTIONS(2768), + [anon_sym_STAR_STAR2] = ACTIONS(2768), + [anon_sym_PLUS_PLUS2] = ACTIONS(2768), + [anon_sym_SLASH2] = ACTIONS(2770), + [anon_sym_mod2] = ACTIONS(2768), + [anon_sym_SLASH_SLASH2] = ACTIONS(2768), + [anon_sym_PLUS2] = ACTIONS(2770), + [anon_sym_bit_DASHshl2] = ACTIONS(2768), + [anon_sym_bit_DASHshr2] = ACTIONS(2768), + [anon_sym_bit_DASHand2] = ACTIONS(2768), + [anon_sym_bit_DASHxor2] = ACTIONS(2768), + [anon_sym_bit_DASHor2] = ACTIONS(2768), + [anon_sym_err_GT] = ACTIONS(2770), + [anon_sym_out_GT] = ACTIONS(2770), + [anon_sym_e_GT] = ACTIONS(2770), + [anon_sym_o_GT] = ACTIONS(2770), + [anon_sym_err_PLUSout_GT] = ACTIONS(2770), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2770), + [anon_sym_o_PLUSe_GT] = ACTIONS(2770), + [anon_sym_e_PLUSo_GT] = ACTIONS(2770), + [anon_sym_err_GT_GT] = ACTIONS(2768), + [anon_sym_out_GT_GT] = ACTIONS(2768), + [anon_sym_e_GT_GT] = ACTIONS(2768), + [anon_sym_o_GT_GT] = ACTIONS(2768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2768), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1100)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1100), + [STATE(1102)] = { + [aux_sym__repeat_newline] = STATE(1122), + [sym_comment] = STATE(1102), + [anon_sym_in] = ACTIONS(2499), + [sym__newline] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_PIPE] = ACTIONS(2499), + [anon_sym_err_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_GT_PIPE] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2499), + [anon_sym_GT2] = ACTIONS(2501), + [anon_sym_DASH2] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_STAR2] = ACTIONS(2501), + [anon_sym_and2] = ACTIONS(2499), + [anon_sym_xor2] = ACTIONS(2499), + [anon_sym_or2] = ACTIONS(2499), + [anon_sym_not_DASHin2] = ACTIONS(2499), + [anon_sym_has2] = ACTIONS(2499), + [anon_sym_not_DASHhas2] = ACTIONS(2499), + [anon_sym_starts_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), + [anon_sym_ends_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), + [anon_sym_EQ_EQ2] = ACTIONS(2499), + [anon_sym_BANG_EQ2] = ACTIONS(2499), + [anon_sym_LT2] = ACTIONS(2501), + [anon_sym_LT_EQ2] = ACTIONS(2499), + [anon_sym_GT_EQ2] = ACTIONS(2499), + [anon_sym_EQ_TILDE2] = ACTIONS(2499), + [anon_sym_BANG_TILDE2] = ACTIONS(2499), + [anon_sym_like2] = ACTIONS(2499), + [anon_sym_not_DASHlike2] = ACTIONS(2499), + [anon_sym_STAR_STAR2] = ACTIONS(2499), + [anon_sym_PLUS_PLUS2] = ACTIONS(2499), + [anon_sym_SLASH2] = ACTIONS(2501), + [anon_sym_mod2] = ACTIONS(2499), + [anon_sym_SLASH_SLASH2] = ACTIONS(2499), + [anon_sym_PLUS2] = ACTIONS(2501), + [anon_sym_bit_DASHshl2] = ACTIONS(2499), + [anon_sym_bit_DASHshr2] = ACTIONS(2499), + [anon_sym_bit_DASHand2] = ACTIONS(2499), + [anon_sym_bit_DASHxor2] = ACTIONS(2499), + [anon_sym_bit_DASHor2] = ACTIONS(2499), + [anon_sym_err_GT] = ACTIONS(2501), + [anon_sym_out_GT] = ACTIONS(2501), + [anon_sym_e_GT] = ACTIONS(2501), + [anon_sym_o_GT] = ACTIONS(2501), + [anon_sym_err_PLUSout_GT] = ACTIONS(2501), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), + [anon_sym_o_PLUSe_GT] = ACTIONS(2501), + [anon_sym_e_PLUSo_GT] = ACTIONS(2501), + [anon_sym_err_GT_GT] = ACTIONS(2499), + [anon_sym_out_GT_GT] = ACTIONS(2499), + [anon_sym_e_GT_GT] = ACTIONS(2499), + [anon_sym_o_GT_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1103)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1103), + [anon_sym_in] = ACTIONS(2772), + [sym__newline] = ACTIONS(2772), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_err_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_GT_PIPE] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_GT2] = ACTIONS(2774), + [anon_sym_DASH2] = ACTIONS(2772), + [anon_sym_LBRACE] = ACTIONS(2772), + [anon_sym_STAR2] = ACTIONS(2774), + [anon_sym_and2] = ACTIONS(2772), + [anon_sym_xor2] = ACTIONS(2772), + [anon_sym_or2] = ACTIONS(2772), + [anon_sym_not_DASHin2] = ACTIONS(2772), + [anon_sym_has2] = ACTIONS(2772), + [anon_sym_not_DASHhas2] = ACTIONS(2772), + [anon_sym_starts_DASHwith2] = ACTIONS(2772), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2772), + [anon_sym_ends_DASHwith2] = ACTIONS(2772), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2772), + [anon_sym_EQ_EQ2] = ACTIONS(2772), + [anon_sym_BANG_EQ2] = ACTIONS(2772), + [anon_sym_LT2] = ACTIONS(2774), + [anon_sym_LT_EQ2] = ACTIONS(2772), + [anon_sym_GT_EQ2] = ACTIONS(2772), + [anon_sym_EQ_TILDE2] = ACTIONS(2772), + [anon_sym_BANG_TILDE2] = ACTIONS(2772), + [anon_sym_like2] = ACTIONS(2772), + [anon_sym_not_DASHlike2] = ACTIONS(2772), + [anon_sym_STAR_STAR2] = ACTIONS(2772), + [anon_sym_PLUS_PLUS2] = ACTIONS(2772), + [anon_sym_SLASH2] = ACTIONS(2774), + [anon_sym_mod2] = ACTIONS(2772), + [anon_sym_SLASH_SLASH2] = ACTIONS(2772), + [anon_sym_PLUS2] = ACTIONS(2774), + [anon_sym_bit_DASHshl2] = ACTIONS(2772), + [anon_sym_bit_DASHshr2] = ACTIONS(2772), + [anon_sym_bit_DASHand2] = ACTIONS(2772), + [anon_sym_bit_DASHxor2] = ACTIONS(2772), + [anon_sym_bit_DASHor2] = ACTIONS(2772), + [anon_sym_err_GT] = ACTIONS(2774), + [anon_sym_out_GT] = ACTIONS(2774), + [anon_sym_e_GT] = ACTIONS(2774), + [anon_sym_o_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT] = ACTIONS(2774), + [anon_sym_err_GT_GT] = ACTIONS(2772), + [anon_sym_out_GT_GT] = ACTIONS(2772), + [anon_sym_e_GT_GT] = ACTIONS(2772), + [anon_sym_o_GT_GT] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1104)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1104), [anon_sym_in] = ACTIONS(2736), [sym__newline] = ACTIONS(2736), [anon_sym_SEMI] = ACTIONS(2736), @@ -128292,9 +128768,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1101)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1101), + [STATE(1105)] = { + [aux_sym__repeat_newline] = STATE(984), + [sym_comment] = STATE(1105), + [anon_sym_in] = ACTIONS(2499), + [sym__newline] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_PIPE] = ACTIONS(2499), + [anon_sym_err_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_GT_PIPE] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2499), + [anon_sym_GT2] = ACTIONS(2501), + [anon_sym_DASH2] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_STAR2] = ACTIONS(2501), + [anon_sym_and2] = ACTIONS(2499), + [anon_sym_xor2] = ACTIONS(2499), + [anon_sym_or2] = ACTIONS(2499), + [anon_sym_not_DASHin2] = ACTIONS(2499), + [anon_sym_has2] = ACTIONS(2499), + [anon_sym_not_DASHhas2] = ACTIONS(2499), + [anon_sym_starts_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), + [anon_sym_ends_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), + [anon_sym_EQ_EQ2] = ACTIONS(2499), + [anon_sym_BANG_EQ2] = ACTIONS(2499), + [anon_sym_LT2] = ACTIONS(2501), + [anon_sym_LT_EQ2] = ACTIONS(2499), + [anon_sym_GT_EQ2] = ACTIONS(2499), + [anon_sym_EQ_TILDE2] = ACTIONS(2499), + [anon_sym_BANG_TILDE2] = ACTIONS(2499), + [anon_sym_like2] = ACTIONS(2499), + [anon_sym_not_DASHlike2] = ACTIONS(2499), + [anon_sym_STAR_STAR2] = ACTIONS(2499), + [anon_sym_PLUS_PLUS2] = ACTIONS(2499), + [anon_sym_SLASH2] = ACTIONS(2501), + [anon_sym_mod2] = ACTIONS(2499), + [anon_sym_SLASH_SLASH2] = ACTIONS(2499), + [anon_sym_PLUS2] = ACTIONS(2501), + [anon_sym_bit_DASHshl2] = ACTIONS(2499), + [anon_sym_bit_DASHshr2] = ACTIONS(2499), + [anon_sym_bit_DASHand2] = ACTIONS(2499), + [anon_sym_bit_DASHxor2] = ACTIONS(2499), + [anon_sym_bit_DASHor2] = ACTIONS(2499), + [anon_sym_err_GT] = ACTIONS(2501), + [anon_sym_out_GT] = ACTIONS(2501), + [anon_sym_e_GT] = ACTIONS(2501), + [anon_sym_o_GT] = ACTIONS(2501), + [anon_sym_err_PLUSout_GT] = ACTIONS(2501), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), + [anon_sym_o_PLUSe_GT] = ACTIONS(2501), + [anon_sym_e_PLUSo_GT] = ACTIONS(2501), + [anon_sym_err_GT_GT] = ACTIONS(2499), + [anon_sym_out_GT_GT] = ACTIONS(2499), + [anon_sym_e_GT_GT] = ACTIONS(2499), + [anon_sym_o_GT_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1106)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1106), [anon_sym_in] = ACTIONS(2736), [sym__newline] = ACTIONS(2736), [anon_sym_SEMI] = ACTIONS(2736), @@ -128360,9 +128904,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1102)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1102), + [STATE(1107)] = { + [sym_comment] = STATE(1107), + [ts_builtin_sym_end] = ACTIONS(2325), + [anon_sym_in] = ACTIONS(2325), + [sym__newline] = ACTIONS(2325), + [anon_sym_SEMI] = ACTIONS(2325), + [anon_sym_PIPE] = ACTIONS(2325), + [anon_sym_err_GT_PIPE] = ACTIONS(2325), + [anon_sym_out_GT_PIPE] = ACTIONS(2325), + [anon_sym_e_GT_PIPE] = ACTIONS(2325), + [anon_sym_o_GT_PIPE] = ACTIONS(2325), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2325), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2325), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2325), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2325), + [anon_sym_GT2] = ACTIONS(2327), + [anon_sym_DASH2] = ACTIONS(2325), + [anon_sym_STAR2] = ACTIONS(2327), + [anon_sym_and2] = ACTIONS(2325), + [anon_sym_xor2] = ACTIONS(2325), + [anon_sym_or2] = ACTIONS(2325), + [anon_sym_not_DASHin2] = ACTIONS(2325), + [anon_sym_has2] = ACTIONS(2325), + [anon_sym_not_DASHhas2] = ACTIONS(2325), + [anon_sym_starts_DASHwith2] = ACTIONS(2325), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2325), + [anon_sym_ends_DASHwith2] = ACTIONS(2325), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2325), + [anon_sym_EQ_EQ2] = ACTIONS(2325), + [anon_sym_BANG_EQ2] = ACTIONS(2325), + [anon_sym_LT2] = ACTIONS(2327), + [anon_sym_LT_EQ2] = ACTIONS(2325), + [anon_sym_GT_EQ2] = ACTIONS(2325), + [anon_sym_EQ_TILDE2] = ACTIONS(2325), + [anon_sym_BANG_TILDE2] = ACTIONS(2325), + [anon_sym_like2] = ACTIONS(2325), + [anon_sym_not_DASHlike2] = ACTIONS(2325), + [anon_sym_LPAREN2] = ACTIONS(2325), + [anon_sym_STAR_STAR2] = ACTIONS(2325), + [anon_sym_PLUS_PLUS2] = ACTIONS(2325), + [anon_sym_SLASH2] = ACTIONS(2327), + [anon_sym_mod2] = ACTIONS(2325), + [anon_sym_SLASH_SLASH2] = ACTIONS(2325), + [anon_sym_PLUS2] = ACTIONS(2327), + [anon_sym_bit_DASHshl2] = ACTIONS(2325), + [anon_sym_bit_DASHshr2] = ACTIONS(2325), + [anon_sym_bit_DASHand2] = ACTIONS(2325), + [anon_sym_bit_DASHxor2] = ACTIONS(2325), + [anon_sym_bit_DASHor2] = ACTIONS(2325), + [anon_sym_err_GT] = ACTIONS(2327), + [anon_sym_out_GT] = ACTIONS(2327), + [anon_sym_e_GT] = ACTIONS(2327), + [anon_sym_o_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT] = ACTIONS(2327), + [anon_sym_err_GT_GT] = ACTIONS(2325), + [anon_sym_out_GT_GT] = ACTIONS(2325), + [anon_sym_e_GT_GT] = ACTIONS(2325), + [anon_sym_o_GT_GT] = ACTIONS(2325), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2325), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2325), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2325), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2325), + [sym__unquoted_pattern] = ACTIONS(2327), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1108)] = { + [aux_sym__repeat_newline] = STATE(982), + [sym_comment] = STATE(1108), + [anon_sym_in] = ACTIONS(2499), + [sym__newline] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_PIPE] = ACTIONS(2499), + [anon_sym_err_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_GT_PIPE] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2499), + [anon_sym_GT2] = ACTIONS(2501), + [anon_sym_DASH2] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_STAR2] = ACTIONS(2501), + [anon_sym_and2] = ACTIONS(2499), + [anon_sym_xor2] = ACTIONS(2499), + [anon_sym_or2] = ACTIONS(2499), + [anon_sym_not_DASHin2] = ACTIONS(2499), + [anon_sym_has2] = ACTIONS(2499), + [anon_sym_not_DASHhas2] = ACTIONS(2499), + [anon_sym_starts_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), + [anon_sym_ends_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), + [anon_sym_EQ_EQ2] = ACTIONS(2499), + [anon_sym_BANG_EQ2] = ACTIONS(2499), + [anon_sym_LT2] = ACTIONS(2501), + [anon_sym_LT_EQ2] = ACTIONS(2499), + [anon_sym_GT_EQ2] = ACTIONS(2499), + [anon_sym_EQ_TILDE2] = ACTIONS(2499), + [anon_sym_BANG_TILDE2] = ACTIONS(2499), + [anon_sym_like2] = ACTIONS(2499), + [anon_sym_not_DASHlike2] = ACTIONS(2499), + [anon_sym_STAR_STAR2] = ACTIONS(2499), + [anon_sym_PLUS_PLUS2] = ACTIONS(2499), + [anon_sym_SLASH2] = ACTIONS(2501), + [anon_sym_mod2] = ACTIONS(2499), + [anon_sym_SLASH_SLASH2] = ACTIONS(2499), + [anon_sym_PLUS2] = ACTIONS(2501), + [anon_sym_bit_DASHshl2] = ACTIONS(2499), + [anon_sym_bit_DASHshr2] = ACTIONS(2499), + [anon_sym_bit_DASHand2] = ACTIONS(2499), + [anon_sym_bit_DASHxor2] = ACTIONS(2499), + [anon_sym_bit_DASHor2] = ACTIONS(2499), + [anon_sym_err_GT] = ACTIONS(2501), + [anon_sym_out_GT] = ACTIONS(2501), + [anon_sym_e_GT] = ACTIONS(2501), + [anon_sym_o_GT] = ACTIONS(2501), + [anon_sym_err_PLUSout_GT] = ACTIONS(2501), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), + [anon_sym_o_PLUSe_GT] = ACTIONS(2501), + [anon_sym_e_PLUSo_GT] = ACTIONS(2501), + [anon_sym_err_GT_GT] = ACTIONS(2499), + [anon_sym_out_GT_GT] = ACTIONS(2499), + [anon_sym_e_GT_GT] = ACTIONS(2499), + [anon_sym_o_GT_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1109)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1109), [anon_sym_in] = ACTIONS(2736), [sym__newline] = ACTIONS(2736), [anon_sym_SEMI] = ACTIONS(2736), @@ -128428,213 +129108,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1103)] = { - [aux_sym__repeat_newline] = STATE(998), - [sym_comment] = STATE(1103), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1104)] = { - [aux_sym__repeat_newline] = STATE(1001), - [sym_comment] = STATE(1104), - [anon_sym_in] = ACTIONS(2744), - [sym__newline] = ACTIONS(2744), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2746), - [anon_sym_DASH2] = ACTIONS(2744), - [anon_sym_LBRACE] = ACTIONS(2744), - [anon_sym_STAR2] = ACTIONS(2746), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2744), - [anon_sym_has2] = ACTIONS(2744), - [anon_sym_not_DASHhas2] = ACTIONS(2744), - [anon_sym_starts_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2744), - [anon_sym_ends_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2744), - [anon_sym_EQ_EQ2] = ACTIONS(2744), - [anon_sym_BANG_EQ2] = ACTIONS(2744), - [anon_sym_LT2] = ACTIONS(2746), - [anon_sym_LT_EQ2] = ACTIONS(2744), - [anon_sym_GT_EQ2] = ACTIONS(2744), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2744), - [anon_sym_PLUS_PLUS2] = ACTIONS(2744), - [anon_sym_SLASH2] = ACTIONS(2746), - [anon_sym_mod2] = ACTIONS(2744), - [anon_sym_SLASH_SLASH2] = ACTIONS(2744), - [anon_sym_PLUS2] = ACTIONS(2746), - [anon_sym_bit_DASHshl2] = ACTIONS(2744), - [anon_sym_bit_DASHshr2] = ACTIONS(2744), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [STATE(1110)] = { + [sym_comment] = STATE(1110), + [ts_builtin_sym_end] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [sym__newline] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_err_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_GT_PIPE] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_GT2] = ACTIONS(1740), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_STAR2] = ACTIONS(1740), + [anon_sym_and2] = ACTIONS(1738), + [anon_sym_xor2] = ACTIONS(1738), + [anon_sym_or2] = ACTIONS(1738), + [anon_sym_not_DASHin2] = ACTIONS(1738), + [anon_sym_has2] = ACTIONS(1738), + [anon_sym_not_DASHhas2] = ACTIONS(1738), + [anon_sym_starts_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), + [anon_sym_ends_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), + [anon_sym_EQ_EQ2] = ACTIONS(1738), + [anon_sym_BANG_EQ2] = ACTIONS(1738), + [anon_sym_LT2] = ACTIONS(1740), + [anon_sym_LT_EQ2] = ACTIONS(1738), + [anon_sym_GT_EQ2] = ACTIONS(1738), + [anon_sym_EQ_TILDE2] = ACTIONS(1738), + [anon_sym_BANG_TILDE2] = ACTIONS(1738), + [anon_sym_like2] = ACTIONS(1738), + [anon_sym_not_DASHlike2] = ACTIONS(1738), + [anon_sym_LPAREN2] = ACTIONS(1738), + [anon_sym_STAR_STAR2] = ACTIONS(1738), + [anon_sym_PLUS_PLUS2] = ACTIONS(1738), + [anon_sym_SLASH2] = ACTIONS(1740), + [anon_sym_mod2] = ACTIONS(1738), + [anon_sym_SLASH_SLASH2] = ACTIONS(1738), + [anon_sym_PLUS2] = ACTIONS(1740), + [anon_sym_bit_DASHshl2] = ACTIONS(1738), + [anon_sym_bit_DASHshr2] = ACTIONS(1738), + [anon_sym_bit_DASHand2] = ACTIONS(1738), + [anon_sym_bit_DASHxor2] = ACTIONS(1738), + [anon_sym_bit_DASHor2] = ACTIONS(1738), + [anon_sym_err_GT] = ACTIONS(1740), + [anon_sym_out_GT] = ACTIONS(1740), + [anon_sym_e_GT] = ACTIONS(1740), + [anon_sym_o_GT] = ACTIONS(1740), + [anon_sym_err_PLUSout_GT] = ACTIONS(1740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1740), + [anon_sym_o_PLUSe_GT] = ACTIONS(1740), + [anon_sym_e_PLUSo_GT] = ACTIONS(1740), + [anon_sym_err_GT_GT] = ACTIONS(1738), + [anon_sym_out_GT_GT] = ACTIONS(1738), + [anon_sym_e_GT_GT] = ACTIONS(1738), + [anon_sym_o_GT_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), + [sym__unquoted_pattern] = ACTIONS(1740), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1105)] = { - [aux_sym__repeat_newline] = STATE(1002), - [sym_comment] = STATE(1105), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [STATE(1111)] = { + [aux_sym__repeat_newline] = STATE(1093), + [sym_comment] = STATE(1111), + [anon_sym_in] = ACTIONS(2499), + [sym__newline] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_PIPE] = ACTIONS(2499), + [anon_sym_err_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_GT_PIPE] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2499), + [anon_sym_GT2] = ACTIONS(2501), + [anon_sym_DASH2] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_STAR2] = ACTIONS(2501), + [anon_sym_and2] = ACTIONS(2499), + [anon_sym_xor2] = ACTIONS(2499), + [anon_sym_or2] = ACTIONS(2499), + [anon_sym_not_DASHin2] = ACTIONS(2499), + [anon_sym_has2] = ACTIONS(2499), + [anon_sym_not_DASHhas2] = ACTIONS(2499), + [anon_sym_starts_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), + [anon_sym_ends_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), + [anon_sym_EQ_EQ2] = ACTIONS(2499), + [anon_sym_BANG_EQ2] = ACTIONS(2499), + [anon_sym_LT2] = ACTIONS(2501), + [anon_sym_LT_EQ2] = ACTIONS(2499), + [anon_sym_GT_EQ2] = ACTIONS(2499), + [anon_sym_EQ_TILDE2] = ACTIONS(2499), + [anon_sym_BANG_TILDE2] = ACTIONS(2499), + [anon_sym_like2] = ACTIONS(2499), + [anon_sym_not_DASHlike2] = ACTIONS(2499), + [anon_sym_STAR_STAR2] = ACTIONS(2499), + [anon_sym_PLUS_PLUS2] = ACTIONS(2499), + [anon_sym_SLASH2] = ACTIONS(2501), + [anon_sym_mod2] = ACTIONS(2499), + [anon_sym_SLASH_SLASH2] = ACTIONS(2499), + [anon_sym_PLUS2] = ACTIONS(2501), + [anon_sym_bit_DASHshl2] = ACTIONS(2499), + [anon_sym_bit_DASHshr2] = ACTIONS(2499), + [anon_sym_bit_DASHand2] = ACTIONS(2499), + [anon_sym_bit_DASHxor2] = ACTIONS(2499), + [anon_sym_bit_DASHor2] = ACTIONS(2499), + [anon_sym_err_GT] = ACTIONS(2501), + [anon_sym_out_GT] = ACTIONS(2501), + [anon_sym_e_GT] = ACTIONS(2501), + [anon_sym_o_GT] = ACTIONS(2501), + [anon_sym_err_PLUSout_GT] = ACTIONS(2501), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), + [anon_sym_o_PLUSe_GT] = ACTIONS(2501), + [anon_sym_e_PLUSo_GT] = ACTIONS(2501), + [anon_sym_err_GT_GT] = ACTIONS(2499), + [anon_sym_out_GT_GT] = ACTIONS(2499), + [anon_sym_e_GT_GT] = ACTIONS(2499), + [anon_sym_o_GT_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1106)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1106), + [STATE(1112)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1112), [anon_sym_in] = ACTIONS(2736), [sym__newline] = ACTIONS(2736), [anon_sym_SEMI] = ACTIONS(2736), @@ -128700,9 +129312,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1107)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1107), + [STATE(1113)] = { + [aux_sym__repeat_newline] = STATE(1021), + [sym_comment] = STATE(1113), + [anon_sym_in] = ACTIONS(2198), + [sym__newline] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_err_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_GT_PIPE] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_GT2] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2198), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2198), + [anon_sym_xor2] = ACTIONS(2198), + [anon_sym_or2] = ACTIONS(2198), + [anon_sym_not_DASHin2] = ACTIONS(2198), + [anon_sym_has2] = ACTIONS(2198), + [anon_sym_not_DASHhas2] = ACTIONS(2198), + [anon_sym_starts_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), + [anon_sym_ends_DASHwith2] = ACTIONS(2198), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), + [anon_sym_EQ_EQ2] = ACTIONS(2198), + [anon_sym_BANG_EQ2] = ACTIONS(2198), + [anon_sym_LT2] = ACTIONS(2200), + [anon_sym_LT_EQ2] = ACTIONS(2198), + [anon_sym_GT_EQ2] = ACTIONS(2198), + [anon_sym_EQ_TILDE2] = ACTIONS(2198), + [anon_sym_BANG_TILDE2] = ACTIONS(2198), + [anon_sym_like2] = ACTIONS(2198), + [anon_sym_not_DASHlike2] = ACTIONS(2198), + [anon_sym_STAR_STAR2] = ACTIONS(2198), + [anon_sym_PLUS_PLUS2] = ACTIONS(2198), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2198), + [anon_sym_SLASH_SLASH2] = ACTIONS(2198), + [anon_sym_PLUS2] = ACTIONS(2200), + [anon_sym_bit_DASHshl2] = ACTIONS(2198), + [anon_sym_bit_DASHshr2] = ACTIONS(2198), + [anon_sym_bit_DASHand2] = ACTIONS(2198), + [anon_sym_bit_DASHxor2] = ACTIONS(2198), + [anon_sym_bit_DASHor2] = ACTIONS(2198), + [anon_sym_err_GT] = ACTIONS(2200), + [anon_sym_out_GT] = ACTIONS(2200), + [anon_sym_e_GT] = ACTIONS(2200), + [anon_sym_o_GT] = ACTIONS(2200), + [anon_sym_err_PLUSout_GT] = ACTIONS(2200), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), + [anon_sym_o_PLUSe_GT] = ACTIONS(2200), + [anon_sym_e_PLUSo_GT] = ACTIONS(2200), + [anon_sym_err_GT_GT] = ACTIONS(2198), + [anon_sym_out_GT_GT] = ACTIONS(2198), + [anon_sym_e_GT_GT] = ACTIONS(2198), + [anon_sym_o_GT_GT] = ACTIONS(2198), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1114)] = { + [aux_sym__repeat_newline] = STATE(974), + [sym_comment] = STATE(1114), + [anon_sym_in] = ACTIONS(2499), + [sym__newline] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_PIPE] = ACTIONS(2499), + [anon_sym_err_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_GT_PIPE] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), + [anon_sym_RPAREN] = ACTIONS(2499), + [anon_sym_GT2] = ACTIONS(2501), + [anon_sym_DASH2] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_STAR2] = ACTIONS(2501), + [anon_sym_and2] = ACTIONS(2499), + [anon_sym_xor2] = ACTIONS(2499), + [anon_sym_or2] = ACTIONS(2499), + [anon_sym_not_DASHin2] = ACTIONS(2499), + [anon_sym_has2] = ACTIONS(2499), + [anon_sym_not_DASHhas2] = ACTIONS(2499), + [anon_sym_starts_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), + [anon_sym_ends_DASHwith2] = ACTIONS(2499), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), + [anon_sym_EQ_EQ2] = ACTIONS(2499), + [anon_sym_BANG_EQ2] = ACTIONS(2499), + [anon_sym_LT2] = ACTIONS(2501), + [anon_sym_LT_EQ2] = ACTIONS(2499), + [anon_sym_GT_EQ2] = ACTIONS(2499), + [anon_sym_EQ_TILDE2] = ACTIONS(2499), + [anon_sym_BANG_TILDE2] = ACTIONS(2499), + [anon_sym_like2] = ACTIONS(2499), + [anon_sym_not_DASHlike2] = ACTIONS(2499), + [anon_sym_STAR_STAR2] = ACTIONS(2499), + [anon_sym_PLUS_PLUS2] = ACTIONS(2499), + [anon_sym_SLASH2] = ACTIONS(2501), + [anon_sym_mod2] = ACTIONS(2499), + [anon_sym_SLASH_SLASH2] = ACTIONS(2499), + [anon_sym_PLUS2] = ACTIONS(2501), + [anon_sym_bit_DASHshl2] = ACTIONS(2499), + [anon_sym_bit_DASHshr2] = ACTIONS(2499), + [anon_sym_bit_DASHand2] = ACTIONS(2499), + [anon_sym_bit_DASHxor2] = ACTIONS(2499), + [anon_sym_bit_DASHor2] = ACTIONS(2499), + [anon_sym_err_GT] = ACTIONS(2501), + [anon_sym_out_GT] = ACTIONS(2501), + [anon_sym_e_GT] = ACTIONS(2501), + [anon_sym_o_GT] = ACTIONS(2501), + [anon_sym_err_PLUSout_GT] = ACTIONS(2501), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), + [anon_sym_o_PLUSe_GT] = ACTIONS(2501), + [anon_sym_e_PLUSo_GT] = ACTIONS(2501), + [anon_sym_err_GT_GT] = ACTIONS(2499), + [anon_sym_out_GT_GT] = ACTIONS(2499), + [anon_sym_e_GT_GT] = ACTIONS(2499), + [anon_sym_o_GT_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1115)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1115), [anon_sym_in] = ACTIONS(2736), [sym__newline] = ACTIONS(2736), [anon_sym_SEMI] = ACTIONS(2736), @@ -128768,1736 +129516,1057 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1108)] = { - [aux_sym__repeat_newline] = STATE(1004), - [sym_comment] = STATE(1108), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1109)] = { - [sym_expr_unary] = STATE(2841), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_parenthesized] = STATE(2562), - [sym_val_range] = STATE(2841), - [sym__val_range] = STATE(4419), - [sym__value] = STATE(2841), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(2587), - [sym_val_variable] = STATE(2564), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(2338), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(2613), - [sym__unquoted_with_expr] = STATE(2844), - [sym__unquoted_anonymous_prefix] = STATE(4419), - [sym_comment] = STATE(1109), - [anon_sym_true] = ACTIONS(2748), - [anon_sym_false] = ACTIONS(2748), - [anon_sym_null] = ACTIONS(2750), - [aux_sym_cmd_identifier_token3] = ACTIONS(2752), - [aux_sym_cmd_identifier_token4] = ACTIONS(2752), - [aux_sym_cmd_identifier_token5] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_LPAREN] = ACTIONS(2756), - [anon_sym_DOLLAR] = ACTIONS(2758), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(2760), - [anon_sym_DOT_DOT] = ACTIONS(2762), - [aux_sym_expr_unary_token1] = ACTIONS(2764), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2766), - [anon_sym_DOT_DOT_LT] = ACTIONS(2766), - [aux_sym__val_number_decimal_token1] = ACTIONS(2768), - [aux_sym__val_number_decimal_token2] = ACTIONS(2770), - [aux_sym__val_number_decimal_token3] = ACTIONS(2772), - [aux_sym__val_number_decimal_token4] = ACTIONS(2772), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2774), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(1110)] = { - [sym_expr_unary] = STATE(2845), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_parenthesized] = STATE(2574), - [sym_val_range] = STATE(2845), - [sym__val_range] = STATE(4419), - [sym__value] = STATE(2845), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(2587), - [sym_val_variable] = STATE(2564), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(2338), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(2632), - [sym__unquoted_with_expr] = STATE(2850), - [sym__unquoted_anonymous_prefix] = STATE(4419), - [sym_comment] = STATE(1110), - [anon_sym_true] = ACTIONS(2748), - [anon_sym_false] = ACTIONS(2748), - [anon_sym_null] = ACTIONS(2750), - [aux_sym_cmd_identifier_token3] = ACTIONS(2752), - [aux_sym_cmd_identifier_token4] = ACTIONS(2752), - [aux_sym_cmd_identifier_token5] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_LPAREN] = ACTIONS(2756), - [anon_sym_DOLLAR] = ACTIONS(2758), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(2760), - [anon_sym_DOT_DOT] = ACTIONS(2762), - [aux_sym_expr_unary_token1] = ACTIONS(2764), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2766), - [anon_sym_DOT_DOT_LT] = ACTIONS(2766), - [aux_sym__val_number_decimal_token1] = ACTIONS(2768), - [aux_sym__val_number_decimal_token2] = ACTIONS(2770), - [aux_sym__val_number_decimal_token3] = ACTIONS(2772), - [aux_sym__val_number_decimal_token4] = ACTIONS(2772), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2774), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(1111)] = { - [sym_expr_unary] = STATE(2851), - [sym__expr_unary_minus] = STATE(1294), - [sym_expr_parenthesized] = STATE(2520), - [sym_val_range] = STATE(2851), - [sym__val_range] = STATE(4419), - [sym__value] = STATE(2851), - [sym_val_nothing] = STATE(1303), - [sym_val_bool] = STATE(2587), - [sym_val_variable] = STATE(2564), - [sym_val_cellpath] = STATE(1303), - [sym_val_number] = STATE(1303), - [sym__val_number_decimal] = STATE(2338), - [sym__val_number] = STATE(1304), - [sym_val_duration] = STATE(1303), - [sym_val_filesize] = STATE(1303), - [sym_val_binary] = STATE(1303), - [sym_val_string] = STATE(1303), - [sym__raw_str] = STATE(480), - [sym__str_double_quotes] = STATE(480), - [sym__str_single_quotes] = STATE(480), - [sym__str_back_ticks] = STATE(480), - [sym_val_interpolated] = STATE(1303), - [sym__inter_single_quotes] = STATE(1325), - [sym__inter_double_quotes] = STATE(1326), - [sym_val_list] = STATE(1303), - [sym_val_record] = STATE(1303), - [sym_val_table] = STATE(1303), - [sym_val_closure] = STATE(1303), - [sym_unquoted] = STATE(2593), - [sym__unquoted_with_expr] = STATE(2853), - [sym__unquoted_anonymous_prefix] = STATE(4419), - [sym_comment] = STATE(1111), - [anon_sym_true] = ACTIONS(2748), - [anon_sym_false] = ACTIONS(2748), - [anon_sym_null] = ACTIONS(2750), - [aux_sym_cmd_identifier_token3] = ACTIONS(2752), - [aux_sym_cmd_identifier_token4] = ACTIONS(2752), - [aux_sym_cmd_identifier_token5] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_LPAREN] = ACTIONS(2756), - [anon_sym_DOLLAR] = ACTIONS(2758), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(2760), - [anon_sym_DOT_DOT] = ACTIONS(2762), - [aux_sym_expr_unary_token1] = ACTIONS(2764), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2766), - [anon_sym_DOT_DOT_LT] = ACTIONS(2766), - [aux_sym__val_number_decimal_token1] = ACTIONS(2768), - [aux_sym__val_number_decimal_token2] = ACTIONS(2770), - [aux_sym__val_number_decimal_token3] = ACTIONS(2772), - [aux_sym__val_number_decimal_token4] = ACTIONS(2772), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2774), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(1112)] = { - [sym_comment] = STATE(1112), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_in] = ACTIONS(2503), - [sym__newline] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_PIPE] = ACTIONS(2501), - [anon_sym_err_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_GT_PIPE] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2501), - [anon_sym_RPAREN] = ACTIONS(2501), - [anon_sym_GT2] = ACTIONS(2503), - [anon_sym_DASH2] = ACTIONS(2503), - [anon_sym_RBRACE] = ACTIONS(2501), - [anon_sym_STAR2] = ACTIONS(2503), - [anon_sym_and2] = ACTIONS(2503), - [anon_sym_xor2] = ACTIONS(2503), - [anon_sym_or2] = ACTIONS(2503), - [anon_sym_not_DASHin2] = ACTIONS(2503), - [anon_sym_has2] = ACTIONS(2503), - [anon_sym_not_DASHhas2] = ACTIONS(2503), - [anon_sym_starts_DASHwith2] = ACTIONS(2503), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2503), - [anon_sym_ends_DASHwith2] = ACTIONS(2503), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2503), - [anon_sym_EQ_EQ2] = ACTIONS(2501), - [anon_sym_BANG_EQ2] = ACTIONS(2501), - [anon_sym_LT2] = ACTIONS(2503), - [anon_sym_LT_EQ2] = ACTIONS(2501), - [anon_sym_GT_EQ2] = ACTIONS(2501), - [anon_sym_EQ_TILDE2] = ACTIONS(2501), - [anon_sym_BANG_TILDE2] = ACTIONS(2503), - [anon_sym_like2] = ACTIONS(2503), - [anon_sym_not_DASHlike2] = ACTIONS(2503), - [anon_sym_STAR_STAR2] = ACTIONS(2503), - [anon_sym_PLUS_PLUS2] = ACTIONS(2503), - [anon_sym_SLASH2] = ACTIONS(2503), - [anon_sym_mod2] = ACTIONS(2503), - [anon_sym_SLASH_SLASH2] = ACTIONS(2503), - [anon_sym_PLUS2] = ACTIONS(2503), - [anon_sym_bit_DASHshl2] = ACTIONS(2503), - [anon_sym_bit_DASHshr2] = ACTIONS(2503), - [anon_sym_bit_DASHand2] = ACTIONS(2503), - [anon_sym_bit_DASHxor2] = ACTIONS(2503), - [anon_sym_bit_DASHor2] = ACTIONS(2503), - [anon_sym_err_GT] = ACTIONS(2503), - [anon_sym_out_GT] = ACTIONS(2503), - [anon_sym_e_GT] = ACTIONS(2503), - [anon_sym_o_GT] = ACTIONS(2503), - [anon_sym_err_PLUSout_GT] = ACTIONS(2503), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2503), - [anon_sym_o_PLUSe_GT] = ACTIONS(2503), - [anon_sym_e_PLUSo_GT] = ACTIONS(2503), - [anon_sym_err_GT_GT] = ACTIONS(2501), - [anon_sym_out_GT_GT] = ACTIONS(2501), - [anon_sym_e_GT_GT] = ACTIONS(2501), - [anon_sym_o_GT_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2501), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(1113)] = { - [sym_comment] = STATE(1113), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_in] = ACTIONS(2637), - [sym__newline] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_PIPE] = ACTIONS(2635), - [anon_sym_err_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_GT_PIPE] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2635), - [anon_sym_RPAREN] = ACTIONS(2635), - [anon_sym_GT2] = ACTIONS(2637), - [anon_sym_DASH2] = ACTIONS(2637), - [anon_sym_RBRACE] = ACTIONS(2635), - [anon_sym_STAR2] = ACTIONS(2637), - [anon_sym_and2] = ACTIONS(2637), - [anon_sym_xor2] = ACTIONS(2637), - [anon_sym_or2] = ACTIONS(2637), - [anon_sym_not_DASHin2] = ACTIONS(2637), - [anon_sym_has2] = ACTIONS(2637), - [anon_sym_not_DASHhas2] = ACTIONS(2637), - [anon_sym_starts_DASHwith2] = ACTIONS(2637), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2637), - [anon_sym_ends_DASHwith2] = ACTIONS(2637), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2637), - [anon_sym_EQ_EQ2] = ACTIONS(2635), - [anon_sym_BANG_EQ2] = ACTIONS(2635), - [anon_sym_LT2] = ACTIONS(2637), - [anon_sym_LT_EQ2] = ACTIONS(2635), - [anon_sym_GT_EQ2] = ACTIONS(2635), - [anon_sym_EQ_TILDE2] = ACTIONS(2635), - [anon_sym_BANG_TILDE2] = ACTIONS(2637), - [anon_sym_like2] = ACTIONS(2637), - [anon_sym_not_DASHlike2] = ACTIONS(2637), - [anon_sym_STAR_STAR2] = ACTIONS(2637), - [anon_sym_PLUS_PLUS2] = ACTIONS(2637), - [anon_sym_SLASH2] = ACTIONS(2637), - [anon_sym_mod2] = ACTIONS(2637), - [anon_sym_SLASH_SLASH2] = ACTIONS(2637), - [anon_sym_PLUS2] = ACTIONS(2637), - [anon_sym_bit_DASHshl2] = ACTIONS(2637), - [anon_sym_bit_DASHshr2] = ACTIONS(2637), - [anon_sym_bit_DASHand2] = ACTIONS(2637), - [anon_sym_bit_DASHxor2] = ACTIONS(2637), - [anon_sym_bit_DASHor2] = ACTIONS(2637), - [anon_sym_err_GT] = ACTIONS(2637), - [anon_sym_out_GT] = ACTIONS(2637), - [anon_sym_e_GT] = ACTIONS(2637), - [anon_sym_o_GT] = ACTIONS(2637), - [anon_sym_err_PLUSout_GT] = ACTIONS(2637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2637), - [anon_sym_o_PLUSe_GT] = ACTIONS(2637), - [anon_sym_e_PLUSo_GT] = ACTIONS(2637), - [anon_sym_err_GT_GT] = ACTIONS(2635), - [anon_sym_out_GT_GT] = ACTIONS(2635), - [anon_sym_e_GT_GT] = ACTIONS(2635), - [anon_sym_o_GT_GT] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2635), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(1114)] = { - [sym_comment] = STATE(1114), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_in] = ACTIONS(868), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(1115)] = { - [aux_sym__repeat_newline] = STATE(1007), - [sym_comment] = STATE(1115), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(1116)] = { - [aux_sym__repeat_newline] = STATE(1009), [sym_comment] = STATE(1116), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [ts_builtin_sym_end] = ACTIONS(1942), + [anon_sym_in] = ACTIONS(1942), + [sym__newline] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_err_GT_PIPE] = ACTIONS(1942), + [anon_sym_out_GT_PIPE] = ACTIONS(1942), + [anon_sym_e_GT_PIPE] = ACTIONS(1942), + [anon_sym_o_GT_PIPE] = ACTIONS(1942), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1942), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1942), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1942), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1942), + [anon_sym_GT2] = ACTIONS(1944), + [anon_sym_DASH2] = ACTIONS(1942), + [anon_sym_STAR2] = ACTIONS(1944), + [anon_sym_and2] = ACTIONS(1942), + [anon_sym_xor2] = ACTIONS(1942), + [anon_sym_or2] = ACTIONS(1942), + [anon_sym_not_DASHin2] = ACTIONS(1942), + [anon_sym_has2] = ACTIONS(1942), + [anon_sym_not_DASHhas2] = ACTIONS(1942), + [anon_sym_starts_DASHwith2] = ACTIONS(1942), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1942), + [anon_sym_ends_DASHwith2] = ACTIONS(1942), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1942), + [anon_sym_EQ_EQ2] = ACTIONS(1942), + [anon_sym_BANG_EQ2] = ACTIONS(1942), + [anon_sym_LT2] = ACTIONS(1944), + [anon_sym_LT_EQ2] = ACTIONS(1942), + [anon_sym_GT_EQ2] = ACTIONS(1942), + [anon_sym_EQ_TILDE2] = ACTIONS(1942), + [anon_sym_BANG_TILDE2] = ACTIONS(1942), + [anon_sym_like2] = ACTIONS(1942), + [anon_sym_not_DASHlike2] = ACTIONS(1942), + [anon_sym_LPAREN2] = ACTIONS(1946), + [anon_sym_STAR_STAR2] = ACTIONS(1942), + [anon_sym_PLUS_PLUS2] = ACTIONS(1942), + [anon_sym_SLASH2] = ACTIONS(1944), + [anon_sym_mod2] = ACTIONS(1942), + [anon_sym_SLASH_SLASH2] = ACTIONS(1942), + [anon_sym_PLUS2] = ACTIONS(1944), + [anon_sym_bit_DASHshl2] = ACTIONS(1942), + [anon_sym_bit_DASHshr2] = ACTIONS(1942), + [anon_sym_bit_DASHand2] = ACTIONS(1942), + [anon_sym_bit_DASHxor2] = ACTIONS(1942), + [anon_sym_bit_DASHor2] = ACTIONS(1942), + [anon_sym_err_GT] = ACTIONS(1944), + [anon_sym_out_GT] = ACTIONS(1944), + [anon_sym_e_GT] = ACTIONS(1944), + [anon_sym_o_GT] = ACTIONS(1944), + [anon_sym_err_PLUSout_GT] = ACTIONS(1944), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1944), + [anon_sym_o_PLUSe_GT] = ACTIONS(1944), + [anon_sym_e_PLUSo_GT] = ACTIONS(1944), + [anon_sym_err_GT_GT] = ACTIONS(1942), + [anon_sym_out_GT_GT] = ACTIONS(1942), + [anon_sym_e_GT_GT] = ACTIONS(1942), + [anon_sym_o_GT_GT] = ACTIONS(1942), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1942), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1942), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1942), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1942), + [sym__unquoted_pattern] = ACTIONS(1598), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1117)] = { + [aux_sym__repeat_newline] = STATE(1353), + [sym__expression_parenthesized] = STATE(4230), + [sym_expr_unary] = STATE(1252), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary_parenthesized] = STATE(1252), + [sym__expr_binary_expression_parenthesized] = STATE(2115), + [sym_expr_parenthesized] = STATE(824), + [sym_val_range] = STATE(1252), + [sym__value] = STATE(1252), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1826), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), [sym_comment] = STATE(1117), - [anon_sym_export] = ACTIONS(2491), - [anon_sym_alias] = ACTIONS(2493), - [anon_sym_let] = ACTIONS(2493), - [anon_sym_mut] = ACTIONS(2493), - [anon_sym_const] = ACTIONS(2493), - [aux_sym_cmd_identifier_token1] = ACTIONS(2491), - [anon_sym_def] = ACTIONS(2493), - [anon_sym_use] = ACTIONS(2493), - [anon_sym_export_DASHenv] = ACTIONS(2493), - [anon_sym_extern] = ACTIONS(2493), - [anon_sym_module] = ACTIONS(2493), - [anon_sym_for] = ACTIONS(2493), - [anon_sym_loop] = ACTIONS(2493), - [anon_sym_while] = ACTIONS(2493), - [anon_sym_if] = ACTIONS(2493), - [anon_sym_else] = ACTIONS(2493), - [anon_sym_try] = ACTIONS(2493), - [anon_sym_catch] = ACTIONS(2493), - [anon_sym_match] = ACTIONS(2493), - [anon_sym_in] = ACTIONS(2491), - [anon_sym_true] = ACTIONS(2493), - [anon_sym_false] = ACTIONS(2493), - [anon_sym_null] = ACTIONS(2493), - [aux_sym_cmd_identifier_token3] = ACTIONS(2493), - [aux_sym_cmd_identifier_token4] = ACTIONS(2493), - [aux_sym_cmd_identifier_token5] = ACTIONS(2493), - [sym__newline] = ACTIONS(2493), - [anon_sym_PIPE] = ACTIONS(2493), - [anon_sym_err_GT_PIPE] = ACTIONS(2493), - [anon_sym_out_GT_PIPE] = ACTIONS(2493), - [anon_sym_e_GT_PIPE] = ACTIONS(2493), - [anon_sym_o_GT_PIPE] = ACTIONS(2493), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2493), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2493), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2493), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(2493), - [anon_sym_DOLLAR] = ACTIONS(2491), - [anon_sym_DASH2] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_DOT_DOT] = ACTIONS(2491), - [anon_sym_where] = ACTIONS(2493), - [aux_sym_expr_unary_token1] = ACTIONS(2493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2493), - [anon_sym_DOT_DOT_LT] = ACTIONS(2493), - [aux_sym__val_number_decimal_token1] = ACTIONS(2491), - [aux_sym__val_number_decimal_token2] = ACTIONS(2493), - [aux_sym__val_number_decimal_token3] = ACTIONS(2493), - [aux_sym__val_number_decimal_token4] = ACTIONS(2493), - [aux_sym__val_number_token1] = ACTIONS(2493), - [aux_sym__val_number_token2] = ACTIONS(2493), - [aux_sym__val_number_token3] = ACTIONS(2493), - [anon_sym_0b] = ACTIONS(2491), - [anon_sym_0o] = ACTIONS(2491), - [anon_sym_0x] = ACTIONS(2491), - [sym_val_date] = ACTIONS(2493), - [anon_sym_DQUOTE] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2493), - [anon_sym_BQUOTE] = ACTIONS(2493), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2493), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2493), - [anon_sym_CARET] = ACTIONS(2493), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2493), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(2656), + [aux_sym_cmd_identifier_token3] = ACTIONS(189), + [aux_sym_cmd_identifier_token4] = ACTIONS(189), + [aux_sym_cmd_identifier_token5] = ACTIONS(189), + [sym__newline] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1980), + [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1118)] = { [sym_comment] = STATE(1118), - [anon_sym_export] = ACTIONS(2776), - [anon_sym_alias] = ACTIONS(2778), - [anon_sym_let] = ACTIONS(2778), - [anon_sym_mut] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [aux_sym_cmd_identifier_token1] = ACTIONS(2776), - [anon_sym_def] = ACTIONS(2778), - [anon_sym_use] = ACTIONS(2778), - [anon_sym_export_DASHenv] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym_module] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_loop] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_else] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_catch] = ACTIONS(2778), - [anon_sym_match] = ACTIONS(2778), - [anon_sym_in] = ACTIONS(2776), - [anon_sym_true] = ACTIONS(2778), - [anon_sym_false] = ACTIONS(2778), - [anon_sym_null] = ACTIONS(2778), - [aux_sym_cmd_identifier_token3] = ACTIONS(2778), - [aux_sym_cmd_identifier_token4] = ACTIONS(2778), - [aux_sym_cmd_identifier_token5] = ACTIONS(2778), - [sym__newline] = ACTIONS(2096), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_err_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_GT_PIPE] = ACTIONS(2096), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2096), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2096), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2096), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_LPAREN] = ACTIONS(2778), - [anon_sym_DOLLAR] = ACTIONS(2776), - [anon_sym_DASH2] = ACTIONS(2776), - [anon_sym_LBRACE] = ACTIONS(2778), - [anon_sym_DOT_DOT] = ACTIONS(2776), - [anon_sym_where] = ACTIONS(2778), - [aux_sym_expr_unary_token1] = ACTIONS(2778), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2778), - [anon_sym_DOT_DOT_LT] = ACTIONS(2778), - [aux_sym__val_number_decimal_token1] = ACTIONS(2776), - [aux_sym__val_number_decimal_token2] = ACTIONS(2778), - [aux_sym__val_number_decimal_token3] = ACTIONS(2778), - [aux_sym__val_number_decimal_token4] = ACTIONS(2778), - [aux_sym__val_number_token1] = ACTIONS(2778), - [aux_sym__val_number_token2] = ACTIONS(2778), - [aux_sym__val_number_token3] = ACTIONS(2778), - [anon_sym_0b] = ACTIONS(2776), - [anon_sym_0o] = ACTIONS(2776), - [anon_sym_0x] = ACTIONS(2776), - [sym_val_date] = ACTIONS(2778), - [anon_sym_DQUOTE] = ACTIONS(2778), - [anon_sym_SQUOTE] = ACTIONS(2778), - [anon_sym_BQUOTE] = ACTIONS(2778), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2778), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2778), - [anon_sym_CARET] = ACTIONS(2778), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2778), + [ts_builtin_sym_end] = ACTIONS(2562), + [anon_sym_in] = ACTIONS(2562), + [sym__newline] = ACTIONS(2562), + [anon_sym_SEMI] = ACTIONS(2562), + [anon_sym_PIPE] = ACTIONS(2562), + [anon_sym_err_GT_PIPE] = ACTIONS(2562), + [anon_sym_out_GT_PIPE] = ACTIONS(2562), + [anon_sym_e_GT_PIPE] = ACTIONS(2562), + [anon_sym_o_GT_PIPE] = ACTIONS(2562), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2562), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2562), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2562), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2562), + [anon_sym_GT2] = ACTIONS(2564), + [anon_sym_DASH2] = ACTIONS(2562), + [anon_sym_STAR2] = ACTIONS(2564), + [anon_sym_and2] = ACTIONS(2562), + [anon_sym_xor2] = ACTIONS(2562), + [anon_sym_or2] = ACTIONS(2562), + [anon_sym_not_DASHin2] = ACTIONS(2562), + [anon_sym_has2] = ACTIONS(2562), + [anon_sym_not_DASHhas2] = ACTIONS(2562), + [anon_sym_starts_DASHwith2] = ACTIONS(2562), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2562), + [anon_sym_ends_DASHwith2] = ACTIONS(2562), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2562), + [anon_sym_EQ_EQ2] = ACTIONS(2562), + [anon_sym_BANG_EQ2] = ACTIONS(2562), + [anon_sym_LT2] = ACTIONS(2564), + [anon_sym_LT_EQ2] = ACTIONS(2562), + [anon_sym_GT_EQ2] = ACTIONS(2562), + [anon_sym_EQ_TILDE2] = ACTIONS(2562), + [anon_sym_BANG_TILDE2] = ACTIONS(2562), + [anon_sym_like2] = ACTIONS(2562), + [anon_sym_not_DASHlike2] = ACTIONS(2562), + [anon_sym_LPAREN2] = ACTIONS(2566), + [anon_sym_STAR_STAR2] = ACTIONS(2562), + [anon_sym_PLUS_PLUS2] = ACTIONS(2562), + [anon_sym_SLASH2] = ACTIONS(2564), + [anon_sym_mod2] = ACTIONS(2562), + [anon_sym_SLASH_SLASH2] = ACTIONS(2562), + [anon_sym_PLUS2] = ACTIONS(2564), + [anon_sym_bit_DASHshl2] = ACTIONS(2562), + [anon_sym_bit_DASHshr2] = ACTIONS(2562), + [anon_sym_bit_DASHand2] = ACTIONS(2562), + [anon_sym_bit_DASHxor2] = ACTIONS(2562), + [anon_sym_bit_DASHor2] = ACTIONS(2562), + [anon_sym_err_GT] = ACTIONS(2564), + [anon_sym_out_GT] = ACTIONS(2564), + [anon_sym_e_GT] = ACTIONS(2564), + [anon_sym_o_GT] = ACTIONS(2564), + [anon_sym_err_PLUSout_GT] = ACTIONS(2564), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2564), + [anon_sym_o_PLUSe_GT] = ACTIONS(2564), + [anon_sym_e_PLUSo_GT] = ACTIONS(2564), + [anon_sym_err_GT_GT] = ACTIONS(2562), + [anon_sym_out_GT_GT] = ACTIONS(2562), + [anon_sym_e_GT_GT] = ACTIONS(2562), + [anon_sym_o_GT_GT] = ACTIONS(2562), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2562), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2562), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2562), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2562), + [sym__unquoted_pattern] = ACTIONS(2568), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1119)] = { - [sym__expr_parenthesized_immediate] = STATE(5091), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1119), - [ts_builtin_sym_end] = ACTIONS(2144), - [anon_sym_in] = ACTIONS(2144), - [sym__newline] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2144), - [anon_sym_err_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_GT_PIPE] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2144), - [anon_sym_GT2] = ACTIONS(2146), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_STAR2] = ACTIONS(2146), - [anon_sym_and2] = ACTIONS(2144), - [anon_sym_xor2] = ACTIONS(2144), - [anon_sym_or2] = ACTIONS(2144), - [anon_sym_not_DASHin2] = ACTIONS(2144), - [anon_sym_has2] = ACTIONS(2144), - [anon_sym_not_DASHhas2] = ACTIONS(2144), - [anon_sym_starts_DASHwith2] = ACTIONS(2144), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2144), - [anon_sym_ends_DASHwith2] = ACTIONS(2144), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2144), - [anon_sym_EQ_EQ2] = ACTIONS(2144), - [anon_sym_BANG_EQ2] = ACTIONS(2144), - [anon_sym_LT2] = ACTIONS(2146), - [anon_sym_LT_EQ2] = ACTIONS(2144), - [anon_sym_GT_EQ2] = ACTIONS(2144), - [anon_sym_EQ_TILDE2] = ACTIONS(2144), - [anon_sym_BANG_TILDE2] = ACTIONS(2144), - [anon_sym_like2] = ACTIONS(2144), - [anon_sym_not_DASHlike2] = ACTIONS(2144), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2144), - [anon_sym_PLUS_PLUS2] = ACTIONS(2144), - [anon_sym_SLASH2] = ACTIONS(2146), - [anon_sym_mod2] = ACTIONS(2144), - [anon_sym_SLASH_SLASH2] = ACTIONS(2144), - [anon_sym_PLUS2] = ACTIONS(2146), - [anon_sym_bit_DASHshl2] = ACTIONS(2144), - [anon_sym_bit_DASHshr2] = ACTIONS(2144), - [anon_sym_bit_DASHand2] = ACTIONS(2144), - [anon_sym_bit_DASHxor2] = ACTIONS(2144), - [anon_sym_bit_DASHor2] = ACTIONS(2144), - [anon_sym_err_GT] = ACTIONS(2146), - [anon_sym_out_GT] = ACTIONS(2146), - [anon_sym_e_GT] = ACTIONS(2146), - [anon_sym_o_GT] = ACTIONS(2146), - [anon_sym_err_PLUSout_GT] = ACTIONS(2146), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2146), - [anon_sym_o_PLUSe_GT] = ACTIONS(2146), - [anon_sym_e_PLUSo_GT] = ACTIONS(2146), - [anon_sym_err_GT_GT] = ACTIONS(2144), - [anon_sym_out_GT_GT] = ACTIONS(2144), - [anon_sym_e_GT_GT] = ACTIONS(2144), - [anon_sym_o_GT_GT] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2144), + [anon_sym_in] = ACTIONS(2658), + [sym__newline] = ACTIONS(2658), + [anon_sym_SEMI] = ACTIONS(2658), + [anon_sym_PIPE] = ACTIONS(2658), + [anon_sym_err_GT_PIPE] = ACTIONS(2658), + [anon_sym_out_GT_PIPE] = ACTIONS(2658), + [anon_sym_e_GT_PIPE] = ACTIONS(2658), + [anon_sym_o_GT_PIPE] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2658), + [anon_sym_RPAREN] = ACTIONS(2658), + [anon_sym_GT2] = ACTIONS(2660), + [anon_sym_DASH2] = ACTIONS(2658), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_STAR2] = ACTIONS(2660), + [anon_sym_and2] = ACTIONS(2658), + [anon_sym_xor2] = ACTIONS(2658), + [anon_sym_or2] = ACTIONS(2658), + [anon_sym_not_DASHin2] = ACTIONS(2658), + [anon_sym_has2] = ACTIONS(2658), + [anon_sym_not_DASHhas2] = ACTIONS(2658), + [anon_sym_starts_DASHwith2] = ACTIONS(2658), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2658), + [anon_sym_ends_DASHwith2] = ACTIONS(2658), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2658), + [anon_sym_EQ_EQ2] = ACTIONS(2658), + [anon_sym_BANG_EQ2] = ACTIONS(2658), + [anon_sym_LT2] = ACTIONS(2660), + [anon_sym_LT_EQ2] = ACTIONS(2658), + [anon_sym_GT_EQ2] = ACTIONS(2658), + [anon_sym_EQ_TILDE2] = ACTIONS(2658), + [anon_sym_BANG_TILDE2] = ACTIONS(2658), + [anon_sym_like2] = ACTIONS(2658), + [anon_sym_not_DASHlike2] = ACTIONS(2658), + [anon_sym_STAR_STAR2] = ACTIONS(2658), + [anon_sym_PLUS_PLUS2] = ACTIONS(2658), + [anon_sym_SLASH2] = ACTIONS(2660), + [anon_sym_mod2] = ACTIONS(2658), + [anon_sym_SLASH_SLASH2] = ACTIONS(2658), + [anon_sym_PLUS2] = ACTIONS(2660), + [anon_sym_bit_DASHshl2] = ACTIONS(2658), + [anon_sym_bit_DASHshr2] = ACTIONS(2658), + [anon_sym_bit_DASHand2] = ACTIONS(2658), + [anon_sym_bit_DASHxor2] = ACTIONS(2658), + [anon_sym_bit_DASHor2] = ACTIONS(2658), + [anon_sym_err_GT] = ACTIONS(2660), + [anon_sym_out_GT] = ACTIONS(2660), + [anon_sym_e_GT] = ACTIONS(2660), + [anon_sym_o_GT] = ACTIONS(2660), + [anon_sym_err_PLUSout_GT] = ACTIONS(2660), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2660), + [anon_sym_o_PLUSe_GT] = ACTIONS(2660), + [anon_sym_e_PLUSo_GT] = ACTIONS(2660), + [anon_sym_err_GT_GT] = ACTIONS(2658), + [anon_sym_out_GT_GT] = ACTIONS(2658), + [anon_sym_e_GT_GT] = ACTIONS(2658), + [anon_sym_o_GT_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2658), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1120)] = { - [aux_sym__repeat_newline] = STATE(1011), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1120), - [anon_sym_in] = ACTIONS(2280), - [sym__newline] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_err_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_GT_PIPE] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_GT2] = ACTIONS(2282), - [anon_sym_DASH2] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_STAR2] = ACTIONS(2282), - [anon_sym_and2] = ACTIONS(2280), - [anon_sym_xor2] = ACTIONS(2280), - [anon_sym_or2] = ACTIONS(2280), - [anon_sym_not_DASHin2] = ACTIONS(2280), - [anon_sym_has2] = ACTIONS(2280), - [anon_sym_not_DASHhas2] = ACTIONS(2280), - [anon_sym_starts_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2280), - [anon_sym_ends_DASHwith2] = ACTIONS(2280), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2280), - [anon_sym_EQ_EQ2] = ACTIONS(2280), - [anon_sym_BANG_EQ2] = ACTIONS(2280), - [anon_sym_LT2] = ACTIONS(2282), - [anon_sym_LT_EQ2] = ACTIONS(2280), - [anon_sym_GT_EQ2] = ACTIONS(2280), - [anon_sym_EQ_TILDE2] = ACTIONS(2280), - [anon_sym_BANG_TILDE2] = ACTIONS(2280), - [anon_sym_like2] = ACTIONS(2280), - [anon_sym_not_DASHlike2] = ACTIONS(2280), - [anon_sym_STAR_STAR2] = ACTIONS(2280), - [anon_sym_PLUS_PLUS2] = ACTIONS(2280), - [anon_sym_SLASH2] = ACTIONS(2282), - [anon_sym_mod2] = ACTIONS(2280), - [anon_sym_SLASH_SLASH2] = ACTIONS(2280), - [anon_sym_PLUS2] = ACTIONS(2282), - [anon_sym_bit_DASHshl2] = ACTIONS(2280), - [anon_sym_bit_DASHshr2] = ACTIONS(2280), - [anon_sym_bit_DASHand2] = ACTIONS(2280), - [anon_sym_bit_DASHxor2] = ACTIONS(2280), - [anon_sym_bit_DASHor2] = ACTIONS(2280), - [anon_sym_err_GT] = ACTIONS(2282), - [anon_sym_out_GT] = ACTIONS(2282), - [anon_sym_e_GT] = ACTIONS(2282), - [anon_sym_o_GT] = ACTIONS(2282), - [anon_sym_err_PLUSout_GT] = ACTIONS(2282), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2282), - [anon_sym_o_PLUSe_GT] = ACTIONS(2282), - [anon_sym_e_PLUSo_GT] = ACTIONS(2282), - [anon_sym_err_GT_GT] = ACTIONS(2280), - [anon_sym_out_GT_GT] = ACTIONS(2280), - [anon_sym_e_GT_GT] = ACTIONS(2280), - [anon_sym_o_GT_GT] = ACTIONS(2280), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2280), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2280), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2280), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2658), + [sym__newline] = ACTIONS(2658), + [anon_sym_SEMI] = ACTIONS(2658), + [anon_sym_PIPE] = ACTIONS(2658), + [anon_sym_err_GT_PIPE] = ACTIONS(2658), + [anon_sym_out_GT_PIPE] = ACTIONS(2658), + [anon_sym_e_GT_PIPE] = ACTIONS(2658), + [anon_sym_o_GT_PIPE] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2658), + [anon_sym_RPAREN] = ACTIONS(2658), + [anon_sym_GT2] = ACTIONS(2660), + [anon_sym_DASH2] = ACTIONS(2658), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_STAR2] = ACTIONS(2660), + [anon_sym_and2] = ACTIONS(2658), + [anon_sym_xor2] = ACTIONS(2658), + [anon_sym_or2] = ACTIONS(2658), + [anon_sym_not_DASHin2] = ACTIONS(2658), + [anon_sym_has2] = ACTIONS(2658), + [anon_sym_not_DASHhas2] = ACTIONS(2658), + [anon_sym_starts_DASHwith2] = ACTIONS(2658), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2658), + [anon_sym_ends_DASHwith2] = ACTIONS(2658), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2658), + [anon_sym_EQ_EQ2] = ACTIONS(2658), + [anon_sym_BANG_EQ2] = ACTIONS(2658), + [anon_sym_LT2] = ACTIONS(2660), + [anon_sym_LT_EQ2] = ACTIONS(2658), + [anon_sym_GT_EQ2] = ACTIONS(2658), + [anon_sym_EQ_TILDE2] = ACTIONS(2658), + [anon_sym_BANG_TILDE2] = ACTIONS(2658), + [anon_sym_like2] = ACTIONS(2658), + [anon_sym_not_DASHlike2] = ACTIONS(2658), + [anon_sym_STAR_STAR2] = ACTIONS(2658), + [anon_sym_PLUS_PLUS2] = ACTIONS(2658), + [anon_sym_SLASH2] = ACTIONS(2660), + [anon_sym_mod2] = ACTIONS(2658), + [anon_sym_SLASH_SLASH2] = ACTIONS(2658), + [anon_sym_PLUS2] = ACTIONS(2660), + [anon_sym_bit_DASHshl2] = ACTIONS(2658), + [anon_sym_bit_DASHshr2] = ACTIONS(2658), + [anon_sym_bit_DASHand2] = ACTIONS(2658), + [anon_sym_bit_DASHxor2] = ACTIONS(2658), + [anon_sym_bit_DASHor2] = ACTIONS(2658), + [anon_sym_err_GT] = ACTIONS(2660), + [anon_sym_out_GT] = ACTIONS(2660), + [anon_sym_e_GT] = ACTIONS(2660), + [anon_sym_o_GT] = ACTIONS(2660), + [anon_sym_err_PLUSout_GT] = ACTIONS(2660), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2660), + [anon_sym_o_PLUSe_GT] = ACTIONS(2660), + [anon_sym_e_PLUSo_GT] = ACTIONS(2660), + [anon_sym_err_GT_GT] = ACTIONS(2658), + [anon_sym_out_GT_GT] = ACTIONS(2658), + [anon_sym_e_GT_GT] = ACTIONS(2658), + [anon_sym_o_GT_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2658), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1121)] = { - [sym__expr_parenthesized_immediate] = STATE(4754), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1121), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2658), + [sym__newline] = ACTIONS(2658), + [anon_sym_SEMI] = ACTIONS(2658), + [anon_sym_PIPE] = ACTIONS(2658), + [anon_sym_err_GT_PIPE] = ACTIONS(2658), + [anon_sym_out_GT_PIPE] = ACTIONS(2658), + [anon_sym_e_GT_PIPE] = ACTIONS(2658), + [anon_sym_o_GT_PIPE] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2658), + [anon_sym_RPAREN] = ACTIONS(2658), + [anon_sym_GT2] = ACTIONS(2660), + [anon_sym_DASH2] = ACTIONS(2658), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_STAR2] = ACTIONS(2660), + [anon_sym_and2] = ACTIONS(2658), + [anon_sym_xor2] = ACTIONS(2658), + [anon_sym_or2] = ACTIONS(2658), + [anon_sym_not_DASHin2] = ACTIONS(2658), + [anon_sym_has2] = ACTIONS(2658), + [anon_sym_not_DASHhas2] = ACTIONS(2658), + [anon_sym_starts_DASHwith2] = ACTIONS(2658), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2658), + [anon_sym_ends_DASHwith2] = ACTIONS(2658), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2658), + [anon_sym_EQ_EQ2] = ACTIONS(2658), + [anon_sym_BANG_EQ2] = ACTIONS(2658), + [anon_sym_LT2] = ACTIONS(2660), + [anon_sym_LT_EQ2] = ACTIONS(2658), + [anon_sym_GT_EQ2] = ACTIONS(2658), + [anon_sym_EQ_TILDE2] = ACTIONS(2658), + [anon_sym_BANG_TILDE2] = ACTIONS(2658), + [anon_sym_like2] = ACTIONS(2658), + [anon_sym_not_DASHlike2] = ACTIONS(2658), + [anon_sym_STAR_STAR2] = ACTIONS(2658), + [anon_sym_PLUS_PLUS2] = ACTIONS(2658), + [anon_sym_SLASH2] = ACTIONS(2660), + [anon_sym_mod2] = ACTIONS(2658), + [anon_sym_SLASH_SLASH2] = ACTIONS(2658), + [anon_sym_PLUS2] = ACTIONS(2660), + [anon_sym_bit_DASHshl2] = ACTIONS(2658), + [anon_sym_bit_DASHshr2] = ACTIONS(2658), + [anon_sym_bit_DASHand2] = ACTIONS(2658), + [anon_sym_bit_DASHxor2] = ACTIONS(2658), + [anon_sym_bit_DASHor2] = ACTIONS(2658), + [anon_sym_err_GT] = ACTIONS(2660), + [anon_sym_out_GT] = ACTIONS(2660), + [anon_sym_e_GT] = ACTIONS(2660), + [anon_sym_o_GT] = ACTIONS(2660), + [anon_sym_err_PLUSout_GT] = ACTIONS(2660), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2660), + [anon_sym_o_PLUSe_GT] = ACTIONS(2660), + [anon_sym_e_PLUSo_GT] = ACTIONS(2660), + [anon_sym_err_GT_GT] = ACTIONS(2658), + [anon_sym_out_GT_GT] = ACTIONS(2658), + [anon_sym_e_GT_GT] = ACTIONS(2658), + [anon_sym_o_GT_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2658), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1122)] = { + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1122), - [ts_builtin_sym_end] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1736), - [sym__newline] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_err_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_GT_PIPE] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1736), - [anon_sym_GT2] = ACTIONS(1738), - [anon_sym_DASH2] = ACTIONS(1736), - [anon_sym_STAR2] = ACTIONS(1738), - [anon_sym_and2] = ACTIONS(1736), - [anon_sym_xor2] = ACTIONS(1736), - [anon_sym_or2] = ACTIONS(1736), - [anon_sym_not_DASHin2] = ACTIONS(1736), - [anon_sym_has2] = ACTIONS(1736), - [anon_sym_not_DASHhas2] = ACTIONS(1736), - [anon_sym_starts_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1736), - [anon_sym_ends_DASHwith2] = ACTIONS(1736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1736), - [anon_sym_EQ_EQ2] = ACTIONS(1736), - [anon_sym_BANG_EQ2] = ACTIONS(1736), - [anon_sym_LT2] = ACTIONS(1738), - [anon_sym_LT_EQ2] = ACTIONS(1736), - [anon_sym_GT_EQ2] = ACTIONS(1736), - [anon_sym_EQ_TILDE2] = ACTIONS(1736), - [anon_sym_BANG_TILDE2] = ACTIONS(1736), - [anon_sym_like2] = ACTIONS(1736), - [anon_sym_not_DASHlike2] = ACTIONS(1736), - [anon_sym_STAR_STAR2] = ACTIONS(1736), - [anon_sym_PLUS_PLUS2] = ACTIONS(1736), - [anon_sym_SLASH2] = ACTIONS(1738), - [anon_sym_mod2] = ACTIONS(1736), - [anon_sym_SLASH_SLASH2] = ACTIONS(1736), - [anon_sym_PLUS2] = ACTIONS(1738), - [anon_sym_bit_DASHshl2] = ACTIONS(1736), - [anon_sym_bit_DASHshr2] = ACTIONS(1736), - [anon_sym_bit_DASHand2] = ACTIONS(1736), - [anon_sym_bit_DASHxor2] = ACTIONS(1736), - [anon_sym_bit_DASHor2] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(2780), - [aux_sym__immediate_decimal_token5] = ACTIONS(1848), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1736), - [anon_sym_out_GT_GT] = ACTIONS(1736), - [anon_sym_e_GT_GT] = ACTIONS(1736), - [anon_sym_o_GT_GT] = ACTIONS(1736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(2658), + [sym__newline] = ACTIONS(2658), + [anon_sym_SEMI] = ACTIONS(2658), + [anon_sym_PIPE] = ACTIONS(2658), + [anon_sym_err_GT_PIPE] = ACTIONS(2658), + [anon_sym_out_GT_PIPE] = ACTIONS(2658), + [anon_sym_e_GT_PIPE] = ACTIONS(2658), + [anon_sym_o_GT_PIPE] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2658), + [anon_sym_RPAREN] = ACTIONS(2658), + [anon_sym_GT2] = ACTIONS(2660), + [anon_sym_DASH2] = ACTIONS(2658), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_STAR2] = ACTIONS(2660), + [anon_sym_and2] = ACTIONS(2658), + [anon_sym_xor2] = ACTIONS(2658), + [anon_sym_or2] = ACTIONS(2658), + [anon_sym_not_DASHin2] = ACTIONS(2658), + [anon_sym_has2] = ACTIONS(2658), + [anon_sym_not_DASHhas2] = ACTIONS(2658), + [anon_sym_starts_DASHwith2] = ACTIONS(2658), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2658), + [anon_sym_ends_DASHwith2] = ACTIONS(2658), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2658), + [anon_sym_EQ_EQ2] = ACTIONS(2658), + [anon_sym_BANG_EQ2] = ACTIONS(2658), + [anon_sym_LT2] = ACTIONS(2660), + [anon_sym_LT_EQ2] = ACTIONS(2658), + [anon_sym_GT_EQ2] = ACTIONS(2658), + [anon_sym_EQ_TILDE2] = ACTIONS(2658), + [anon_sym_BANG_TILDE2] = ACTIONS(2658), + [anon_sym_like2] = ACTIONS(2658), + [anon_sym_not_DASHlike2] = ACTIONS(2658), + [anon_sym_STAR_STAR2] = ACTIONS(2658), + [anon_sym_PLUS_PLUS2] = ACTIONS(2658), + [anon_sym_SLASH2] = ACTIONS(2660), + [anon_sym_mod2] = ACTIONS(2658), + [anon_sym_SLASH_SLASH2] = ACTIONS(2658), + [anon_sym_PLUS2] = ACTIONS(2660), + [anon_sym_bit_DASHshl2] = ACTIONS(2658), + [anon_sym_bit_DASHshr2] = ACTIONS(2658), + [anon_sym_bit_DASHand2] = ACTIONS(2658), + [anon_sym_bit_DASHxor2] = ACTIONS(2658), + [anon_sym_bit_DASHor2] = ACTIONS(2658), + [anon_sym_err_GT] = ACTIONS(2660), + [anon_sym_out_GT] = ACTIONS(2660), + [anon_sym_e_GT] = ACTIONS(2660), + [anon_sym_o_GT] = ACTIONS(2660), + [anon_sym_err_PLUSout_GT] = ACTIONS(2660), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2660), + [anon_sym_o_PLUSe_GT] = ACTIONS(2660), + [anon_sym_e_PLUSo_GT] = ACTIONS(2660), + [anon_sym_err_GT_GT] = ACTIONS(2658), + [anon_sym_out_GT_GT] = ACTIONS(2658), + [anon_sym_e_GT_GT] = ACTIONS(2658), + [anon_sym_o_GT_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2658), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1123)] = { - [sym__expr_parenthesized_immediate] = STATE(4754), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1123), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2658), + [sym__newline] = ACTIONS(2658), + [anon_sym_SEMI] = ACTIONS(2658), + [anon_sym_PIPE] = ACTIONS(2658), + [anon_sym_err_GT_PIPE] = ACTIONS(2658), + [anon_sym_out_GT_PIPE] = ACTIONS(2658), + [anon_sym_e_GT_PIPE] = ACTIONS(2658), + [anon_sym_o_GT_PIPE] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2658), + [anon_sym_RPAREN] = ACTIONS(2658), + [anon_sym_GT2] = ACTIONS(2660), + [anon_sym_DASH2] = ACTIONS(2658), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_STAR2] = ACTIONS(2660), + [anon_sym_and2] = ACTIONS(2658), + [anon_sym_xor2] = ACTIONS(2658), + [anon_sym_or2] = ACTIONS(2658), + [anon_sym_not_DASHin2] = ACTIONS(2658), + [anon_sym_has2] = ACTIONS(2658), + [anon_sym_not_DASHhas2] = ACTIONS(2658), + [anon_sym_starts_DASHwith2] = ACTIONS(2658), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2658), + [anon_sym_ends_DASHwith2] = ACTIONS(2658), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2658), + [anon_sym_EQ_EQ2] = ACTIONS(2658), + [anon_sym_BANG_EQ2] = ACTIONS(2658), + [anon_sym_LT2] = ACTIONS(2660), + [anon_sym_LT_EQ2] = ACTIONS(2658), + [anon_sym_GT_EQ2] = ACTIONS(2658), + [anon_sym_EQ_TILDE2] = ACTIONS(2658), + [anon_sym_BANG_TILDE2] = ACTIONS(2658), + [anon_sym_like2] = ACTIONS(2658), + [anon_sym_not_DASHlike2] = ACTIONS(2658), + [anon_sym_STAR_STAR2] = ACTIONS(2658), + [anon_sym_PLUS_PLUS2] = ACTIONS(2658), + [anon_sym_SLASH2] = ACTIONS(2660), + [anon_sym_mod2] = ACTIONS(2658), + [anon_sym_SLASH_SLASH2] = ACTIONS(2658), + [anon_sym_PLUS2] = ACTIONS(2660), + [anon_sym_bit_DASHshl2] = ACTIONS(2658), + [anon_sym_bit_DASHshr2] = ACTIONS(2658), + [anon_sym_bit_DASHand2] = ACTIONS(2658), + [anon_sym_bit_DASHxor2] = ACTIONS(2658), + [anon_sym_bit_DASHor2] = ACTIONS(2658), + [anon_sym_err_GT] = ACTIONS(2660), + [anon_sym_out_GT] = ACTIONS(2660), + [anon_sym_e_GT] = ACTIONS(2660), + [anon_sym_o_GT] = ACTIONS(2660), + [anon_sym_err_PLUSout_GT] = ACTIONS(2660), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2660), + [anon_sym_o_PLUSe_GT] = ACTIONS(2660), + [anon_sym_e_PLUSo_GT] = ACTIONS(2660), + [anon_sym_err_GT_GT] = ACTIONS(2658), + [anon_sym_out_GT_GT] = ACTIONS(2658), + [anon_sym_e_GT_GT] = ACTIONS(2658), + [anon_sym_o_GT_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2658), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1124)] = { - [sym__expr_parenthesized_immediate] = STATE(5091), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1124), - [ts_builtin_sym_end] = ACTIONS(2148), - [anon_sym_in] = ACTIONS(2148), - [sym__newline] = ACTIONS(2148), - [anon_sym_SEMI] = ACTIONS(2148), - [anon_sym_PIPE] = ACTIONS(2148), - [anon_sym_err_GT_PIPE] = ACTIONS(2148), - [anon_sym_out_GT_PIPE] = ACTIONS(2148), - [anon_sym_e_GT_PIPE] = ACTIONS(2148), - [anon_sym_o_GT_PIPE] = ACTIONS(2148), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2148), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2148), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2148), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2148), - [anon_sym_GT2] = ACTIONS(2150), - [anon_sym_DASH2] = ACTIONS(2148), - [anon_sym_STAR2] = ACTIONS(2150), - [anon_sym_and2] = ACTIONS(2148), - [anon_sym_xor2] = ACTIONS(2148), - [anon_sym_or2] = ACTIONS(2148), - [anon_sym_not_DASHin2] = ACTIONS(2148), - [anon_sym_has2] = ACTIONS(2148), - [anon_sym_not_DASHhas2] = ACTIONS(2148), - [anon_sym_starts_DASHwith2] = ACTIONS(2148), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2148), - [anon_sym_ends_DASHwith2] = ACTIONS(2148), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2148), - [anon_sym_EQ_EQ2] = ACTIONS(2148), - [anon_sym_BANG_EQ2] = ACTIONS(2148), - [anon_sym_LT2] = ACTIONS(2150), - [anon_sym_LT_EQ2] = ACTIONS(2148), - [anon_sym_GT_EQ2] = ACTIONS(2148), - [anon_sym_EQ_TILDE2] = ACTIONS(2148), - [anon_sym_BANG_TILDE2] = ACTIONS(2148), - [anon_sym_like2] = ACTIONS(2148), - [anon_sym_not_DASHlike2] = ACTIONS(2148), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2148), - [anon_sym_PLUS_PLUS2] = ACTIONS(2148), - [anon_sym_SLASH2] = ACTIONS(2150), - [anon_sym_mod2] = ACTIONS(2148), - [anon_sym_SLASH_SLASH2] = ACTIONS(2148), - [anon_sym_PLUS2] = ACTIONS(2150), - [anon_sym_bit_DASHshl2] = ACTIONS(2148), - [anon_sym_bit_DASHshr2] = ACTIONS(2148), - [anon_sym_bit_DASHand2] = ACTIONS(2148), - [anon_sym_bit_DASHxor2] = ACTIONS(2148), - [anon_sym_bit_DASHor2] = ACTIONS(2148), - [anon_sym_err_GT] = ACTIONS(2150), - [anon_sym_out_GT] = ACTIONS(2150), - [anon_sym_e_GT] = ACTIONS(2150), - [anon_sym_o_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT] = ACTIONS(2150), - [anon_sym_err_GT_GT] = ACTIONS(2148), - [anon_sym_out_GT_GT] = ACTIONS(2148), - [anon_sym_e_GT_GT] = ACTIONS(2148), - [anon_sym_o_GT_GT] = ACTIONS(2148), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2148), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2148), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2148), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2148), + [anon_sym_in] = ACTIONS(2658), + [sym__newline] = ACTIONS(2658), + [anon_sym_SEMI] = ACTIONS(2658), + [anon_sym_PIPE] = ACTIONS(2658), + [anon_sym_err_GT_PIPE] = ACTIONS(2658), + [anon_sym_out_GT_PIPE] = ACTIONS(2658), + [anon_sym_e_GT_PIPE] = ACTIONS(2658), + [anon_sym_o_GT_PIPE] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2658), + [anon_sym_RPAREN] = ACTIONS(2658), + [anon_sym_GT2] = ACTIONS(2660), + [anon_sym_DASH2] = ACTIONS(2658), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_STAR2] = ACTIONS(2660), + [anon_sym_and2] = ACTIONS(2658), + [anon_sym_xor2] = ACTIONS(2658), + [anon_sym_or2] = ACTIONS(2658), + [anon_sym_not_DASHin2] = ACTIONS(2658), + [anon_sym_has2] = ACTIONS(2658), + [anon_sym_not_DASHhas2] = ACTIONS(2658), + [anon_sym_starts_DASHwith2] = ACTIONS(2658), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2658), + [anon_sym_ends_DASHwith2] = ACTIONS(2658), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2658), + [anon_sym_EQ_EQ2] = ACTIONS(2658), + [anon_sym_BANG_EQ2] = ACTIONS(2658), + [anon_sym_LT2] = ACTIONS(2660), + [anon_sym_LT_EQ2] = ACTIONS(2658), + [anon_sym_GT_EQ2] = ACTIONS(2658), + [anon_sym_EQ_TILDE2] = ACTIONS(2658), + [anon_sym_BANG_TILDE2] = ACTIONS(2658), + [anon_sym_like2] = ACTIONS(2658), + [anon_sym_not_DASHlike2] = ACTIONS(2658), + [anon_sym_STAR_STAR2] = ACTIONS(2658), + [anon_sym_PLUS_PLUS2] = ACTIONS(2658), + [anon_sym_SLASH2] = ACTIONS(2660), + [anon_sym_mod2] = ACTIONS(2658), + [anon_sym_SLASH_SLASH2] = ACTIONS(2658), + [anon_sym_PLUS2] = ACTIONS(2660), + [anon_sym_bit_DASHshl2] = ACTIONS(2658), + [anon_sym_bit_DASHshr2] = ACTIONS(2658), + [anon_sym_bit_DASHand2] = ACTIONS(2658), + [anon_sym_bit_DASHxor2] = ACTIONS(2658), + [anon_sym_bit_DASHor2] = ACTIONS(2658), + [anon_sym_err_GT] = ACTIONS(2660), + [anon_sym_out_GT] = ACTIONS(2660), + [anon_sym_e_GT] = ACTIONS(2660), + [anon_sym_o_GT] = ACTIONS(2660), + [anon_sym_err_PLUSout_GT] = ACTIONS(2660), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2660), + [anon_sym_o_PLUSe_GT] = ACTIONS(2660), + [anon_sym_e_PLUSo_GT] = ACTIONS(2660), + [anon_sym_err_GT_GT] = ACTIONS(2658), + [anon_sym_out_GT_GT] = ACTIONS(2658), + [anon_sym_e_GT_GT] = ACTIONS(2658), + [anon_sym_o_GT_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2658), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1125)] = { - [aux_sym__repeat_newline] = STATE(4288), - [sym__match_pattern_expression] = STATE(4235), - [sym__match_pattern_value] = STATE(4440), - [sym__match_pattern_list_body] = STATE(4599), - [sym__match_pattern_list] = STATE(4441), - [sym__match_pattern_rest] = STATE(5174), - [sym__match_pattern_record] = STATE(4447), - [sym_expr_parenthesized] = STATE(3756), - [sym_val_range] = STATE(4440), - [sym__val_range] = STATE(4978), - [sym_val_nothing] = STATE(4447), - [sym_val_bool] = STATE(4265), - [sym_val_variable] = STATE(3757), - [sym_val_number] = STATE(4447), - [sym__val_number_decimal] = STATE(3555), - [sym__val_number] = STATE(4130), - [sym_val_duration] = STATE(4447), - [sym_val_filesize] = STATE(4447), - [sym_val_binary] = STATE(4447), - [sym_val_string] = STATE(4447), - [sym__raw_str] = STATE(3505), - [sym__str_double_quotes] = STATE(3505), - [sym__str_single_quotes] = STATE(3505), - [sym__str_back_ticks] = STATE(3505), - [sym_val_list] = STATE(5014), - [sym__table_head] = STATE(3697), - [sym_val_table] = STATE(4447), - [sym__unquoted_in_list] = STATE(4235), - [sym__unquoted_anonymous_prefix] = STATE(4978), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1125), - [aux_sym__types_body_repeat1] = STATE(1394), - [aux_sym_parameter_repeat2] = STATE(3996), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1418), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [anon_sym_null] = ACTIONS(1376), - [aux_sym_cmd_identifier_token3] = ACTIONS(1378), - [aux_sym_cmd_identifier_token4] = ACTIONS(1378), - [aux_sym_cmd_identifier_token5] = ACTIONS(1378), - [sym__newline] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(2652), - [anon_sym_RBRACK] = ACTIONS(2710), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_DOLLAR] = ACTIONS(2656), + [anon_sym_in] = ACTIONS(2658), + [sym__newline] = ACTIONS(2658), + [anon_sym_SEMI] = ACTIONS(2658), + [anon_sym_PIPE] = ACTIONS(2658), + [anon_sym_err_GT_PIPE] = ACTIONS(2658), + [anon_sym_out_GT_PIPE] = ACTIONS(2658), + [anon_sym_e_GT_PIPE] = ACTIONS(2658), + [anon_sym_o_GT_PIPE] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2658), + [anon_sym_RPAREN] = ACTIONS(2658), + [anon_sym_GT2] = ACTIONS(2660), + [anon_sym_DASH2] = ACTIONS(2658), [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_DOT_DOT] = ACTIONS(1394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), - [anon_sym_DOT_DOT_LT] = ACTIONS(1396), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [aux_sym__val_number_decimal_token3] = ACTIONS(1402), - [aux_sym__val_number_decimal_token4] = ACTIONS(1402), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(2662), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), + [anon_sym_STAR2] = ACTIONS(2660), + [anon_sym_and2] = ACTIONS(2658), + [anon_sym_xor2] = ACTIONS(2658), + [anon_sym_or2] = ACTIONS(2658), + [anon_sym_not_DASHin2] = ACTIONS(2658), + [anon_sym_has2] = ACTIONS(2658), + [anon_sym_not_DASHhas2] = ACTIONS(2658), + [anon_sym_starts_DASHwith2] = ACTIONS(2658), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2658), + [anon_sym_ends_DASHwith2] = ACTIONS(2658), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2658), + [anon_sym_EQ_EQ2] = ACTIONS(2658), + [anon_sym_BANG_EQ2] = ACTIONS(2658), + [anon_sym_LT2] = ACTIONS(2660), + [anon_sym_LT_EQ2] = ACTIONS(2658), + [anon_sym_GT_EQ2] = ACTIONS(2658), + [anon_sym_EQ_TILDE2] = ACTIONS(2658), + [anon_sym_BANG_TILDE2] = ACTIONS(2658), + [anon_sym_like2] = ACTIONS(2658), + [anon_sym_not_DASHlike2] = ACTIONS(2658), + [anon_sym_STAR_STAR2] = ACTIONS(2658), + [anon_sym_PLUS_PLUS2] = ACTIONS(2658), + [anon_sym_SLASH2] = ACTIONS(2660), + [anon_sym_mod2] = ACTIONS(2658), + [anon_sym_SLASH_SLASH2] = ACTIONS(2658), + [anon_sym_PLUS2] = ACTIONS(2660), + [anon_sym_bit_DASHshl2] = ACTIONS(2658), + [anon_sym_bit_DASHshr2] = ACTIONS(2658), + [anon_sym_bit_DASHand2] = ACTIONS(2658), + [anon_sym_bit_DASHxor2] = ACTIONS(2658), + [anon_sym_bit_DASHor2] = ACTIONS(2658), + [anon_sym_err_GT] = ACTIONS(2660), + [anon_sym_out_GT] = ACTIONS(2660), + [anon_sym_e_GT] = ACTIONS(2660), + [anon_sym_o_GT] = ACTIONS(2660), + [anon_sym_err_PLUSout_GT] = ACTIONS(2660), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2660), + [anon_sym_o_PLUSe_GT] = ACTIONS(2660), + [anon_sym_e_PLUSo_GT] = ACTIONS(2660), + [anon_sym_err_GT_GT] = ACTIONS(2658), + [anon_sym_out_GT_GT] = ACTIONS(2658), + [anon_sym_e_GT_GT] = ACTIONS(2658), + [anon_sym_o_GT_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2658), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), }, [STATE(1126)] = { - [sym__expr_parenthesized_immediate] = STATE(4754), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1126), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2658), + [sym__newline] = ACTIONS(2658), + [anon_sym_SEMI] = ACTIONS(2658), + [anon_sym_PIPE] = ACTIONS(2658), + [anon_sym_err_GT_PIPE] = ACTIONS(2658), + [anon_sym_out_GT_PIPE] = ACTIONS(2658), + [anon_sym_e_GT_PIPE] = ACTIONS(2658), + [anon_sym_o_GT_PIPE] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2658), + [anon_sym_RPAREN] = ACTIONS(2658), + [anon_sym_GT2] = ACTIONS(2660), + [anon_sym_DASH2] = ACTIONS(2658), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_STAR2] = ACTIONS(2660), + [anon_sym_and2] = ACTIONS(2658), + [anon_sym_xor2] = ACTIONS(2658), + [anon_sym_or2] = ACTIONS(2658), + [anon_sym_not_DASHin2] = ACTIONS(2658), + [anon_sym_has2] = ACTIONS(2658), + [anon_sym_not_DASHhas2] = ACTIONS(2658), + [anon_sym_starts_DASHwith2] = ACTIONS(2658), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2658), + [anon_sym_ends_DASHwith2] = ACTIONS(2658), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2658), + [anon_sym_EQ_EQ2] = ACTIONS(2658), + [anon_sym_BANG_EQ2] = ACTIONS(2658), + [anon_sym_LT2] = ACTIONS(2660), + [anon_sym_LT_EQ2] = ACTIONS(2658), + [anon_sym_GT_EQ2] = ACTIONS(2658), + [anon_sym_EQ_TILDE2] = ACTIONS(2658), + [anon_sym_BANG_TILDE2] = ACTIONS(2658), + [anon_sym_like2] = ACTIONS(2658), + [anon_sym_not_DASHlike2] = ACTIONS(2658), + [anon_sym_STAR_STAR2] = ACTIONS(2658), + [anon_sym_PLUS_PLUS2] = ACTIONS(2658), + [anon_sym_SLASH2] = ACTIONS(2660), + [anon_sym_mod2] = ACTIONS(2658), + [anon_sym_SLASH_SLASH2] = ACTIONS(2658), + [anon_sym_PLUS2] = ACTIONS(2660), + [anon_sym_bit_DASHshl2] = ACTIONS(2658), + [anon_sym_bit_DASHshr2] = ACTIONS(2658), + [anon_sym_bit_DASHand2] = ACTIONS(2658), + [anon_sym_bit_DASHxor2] = ACTIONS(2658), + [anon_sym_bit_DASHor2] = ACTIONS(2658), + [anon_sym_err_GT] = ACTIONS(2660), + [anon_sym_out_GT] = ACTIONS(2660), + [anon_sym_e_GT] = ACTIONS(2660), + [anon_sym_o_GT] = ACTIONS(2660), + [anon_sym_err_PLUSout_GT] = ACTIONS(2660), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2660), + [anon_sym_o_PLUSe_GT] = ACTIONS(2660), + [anon_sym_e_PLUSo_GT] = ACTIONS(2660), + [anon_sym_err_GT_GT] = ACTIONS(2658), + [anon_sym_out_GT_GT] = ACTIONS(2658), + [anon_sym_e_GT_GT] = ACTIONS(2658), + [anon_sym_o_GT_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2658), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1127)] = { - [sym__expr_parenthesized_immediate] = STATE(4754), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1127), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2658), + [sym__newline] = ACTIONS(2658), + [anon_sym_SEMI] = ACTIONS(2658), + [anon_sym_PIPE] = ACTIONS(2658), + [anon_sym_err_GT_PIPE] = ACTIONS(2658), + [anon_sym_out_GT_PIPE] = ACTIONS(2658), + [anon_sym_e_GT_PIPE] = ACTIONS(2658), + [anon_sym_o_GT_PIPE] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2658), + [anon_sym_RPAREN] = ACTIONS(2658), + [anon_sym_GT2] = ACTIONS(2660), + [anon_sym_DASH2] = ACTIONS(2658), + [anon_sym_LBRACE] = ACTIONS(2658), + [anon_sym_STAR2] = ACTIONS(2660), + [anon_sym_and2] = ACTIONS(2658), + [anon_sym_xor2] = ACTIONS(2658), + [anon_sym_or2] = ACTIONS(2658), + [anon_sym_not_DASHin2] = ACTIONS(2658), + [anon_sym_has2] = ACTIONS(2658), + [anon_sym_not_DASHhas2] = ACTIONS(2658), + [anon_sym_starts_DASHwith2] = ACTIONS(2658), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2658), + [anon_sym_ends_DASHwith2] = ACTIONS(2658), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2658), + [anon_sym_EQ_EQ2] = ACTIONS(2658), + [anon_sym_BANG_EQ2] = ACTIONS(2658), + [anon_sym_LT2] = ACTIONS(2660), + [anon_sym_LT_EQ2] = ACTIONS(2658), + [anon_sym_GT_EQ2] = ACTIONS(2658), + [anon_sym_EQ_TILDE2] = ACTIONS(2658), + [anon_sym_BANG_TILDE2] = ACTIONS(2658), + [anon_sym_like2] = ACTIONS(2658), + [anon_sym_not_DASHlike2] = ACTIONS(2658), + [anon_sym_STAR_STAR2] = ACTIONS(2658), + [anon_sym_PLUS_PLUS2] = ACTIONS(2658), + [anon_sym_SLASH2] = ACTIONS(2660), + [anon_sym_mod2] = ACTIONS(2658), + [anon_sym_SLASH_SLASH2] = ACTIONS(2658), + [anon_sym_PLUS2] = ACTIONS(2660), + [anon_sym_bit_DASHshl2] = ACTIONS(2658), + [anon_sym_bit_DASHshr2] = ACTIONS(2658), + [anon_sym_bit_DASHand2] = ACTIONS(2658), + [anon_sym_bit_DASHxor2] = ACTIONS(2658), + [anon_sym_bit_DASHor2] = ACTIONS(2658), + [anon_sym_err_GT] = ACTIONS(2660), + [anon_sym_out_GT] = ACTIONS(2660), + [anon_sym_e_GT] = ACTIONS(2660), + [anon_sym_o_GT] = ACTIONS(2660), + [anon_sym_err_PLUSout_GT] = ACTIONS(2660), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2660), + [anon_sym_o_PLUSe_GT] = ACTIONS(2660), + [anon_sym_e_PLUSo_GT] = ACTIONS(2660), + [anon_sym_err_GT_GT] = ACTIONS(2658), + [anon_sym_out_GT_GT] = ACTIONS(2658), + [anon_sym_e_GT_GT] = ACTIONS(2658), + [anon_sym_o_GT_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2658), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1128)] = { - [sym__expr_parenthesized_immediate] = STATE(4754), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1128), - [ts_builtin_sym_end] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(2088), - [sym__newline] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_err_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_GT_PIPE] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2088), - [anon_sym_GT2] = ACTIONS(2090), - [anon_sym_DASH2] = ACTIONS(2088), - [anon_sym_STAR2] = ACTIONS(2090), - [anon_sym_and2] = ACTIONS(2088), - [anon_sym_xor2] = ACTIONS(2088), - [anon_sym_or2] = ACTIONS(2088), - [anon_sym_not_DASHin2] = ACTIONS(2088), - [anon_sym_has2] = ACTIONS(2088), - [anon_sym_not_DASHhas2] = ACTIONS(2088), - [anon_sym_starts_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2088), - [anon_sym_ends_DASHwith2] = ACTIONS(2088), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2088), - [anon_sym_EQ_EQ2] = ACTIONS(2088), - [anon_sym_BANG_EQ2] = ACTIONS(2088), - [anon_sym_LT2] = ACTIONS(2090), - [anon_sym_LT_EQ2] = ACTIONS(2088), - [anon_sym_GT_EQ2] = ACTIONS(2088), - [anon_sym_EQ_TILDE2] = ACTIONS(2088), - [anon_sym_BANG_TILDE2] = ACTIONS(2088), - [anon_sym_like2] = ACTIONS(2088), - [anon_sym_not_DASHlike2] = ACTIONS(2088), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_STAR_STAR2] = ACTIONS(2088), - [anon_sym_PLUS_PLUS2] = ACTIONS(2088), - [anon_sym_SLASH2] = ACTIONS(2090), - [anon_sym_mod2] = ACTIONS(2088), - [anon_sym_SLASH_SLASH2] = ACTIONS(2088), - [anon_sym_PLUS2] = ACTIONS(2090), - [anon_sym_bit_DASHshl2] = ACTIONS(2088), - [anon_sym_bit_DASHshr2] = ACTIONS(2088), - [anon_sym_bit_DASHand2] = ACTIONS(2088), - [anon_sym_bit_DASHxor2] = ACTIONS(2088), - [anon_sym_bit_DASHor2] = ACTIONS(2088), - [anon_sym_err_GT] = ACTIONS(2090), - [anon_sym_out_GT] = ACTIONS(2090), - [anon_sym_e_GT] = ACTIONS(2090), - [anon_sym_o_GT] = ACTIONS(2090), - [anon_sym_err_PLUSout_GT] = ACTIONS(2090), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2090), - [anon_sym_o_PLUSe_GT] = ACTIONS(2090), - [anon_sym_e_PLUSo_GT] = ACTIONS(2090), - [anon_sym_err_GT_GT] = ACTIONS(2088), - [anon_sym_out_GT_GT] = ACTIONS(2088), - [anon_sym_e_GT_GT] = ACTIONS(2088), - [anon_sym_o_GT_GT] = ACTIONS(2088), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2088), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2088), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2088), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2776), + [sym__newline] = ACTIONS(2776), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2778), + [anon_sym_DASH2] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2776), + [anon_sym_STAR2] = ACTIONS(2778), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2776), + [anon_sym_has2] = ACTIONS(2776), + [anon_sym_not_DASHhas2] = ACTIONS(2776), + [anon_sym_starts_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2776), + [anon_sym_ends_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2776), + [anon_sym_EQ_EQ2] = ACTIONS(2776), + [anon_sym_BANG_EQ2] = ACTIONS(2776), + [anon_sym_LT2] = ACTIONS(2778), + [anon_sym_LT_EQ2] = ACTIONS(2776), + [anon_sym_GT_EQ2] = ACTIONS(2776), + [anon_sym_EQ_TILDE2] = ACTIONS(2776), + [anon_sym_BANG_TILDE2] = ACTIONS(2776), + [anon_sym_like2] = ACTIONS(2776), + [anon_sym_not_DASHlike2] = ACTIONS(2776), + [anon_sym_STAR_STAR2] = ACTIONS(2776), + [anon_sym_PLUS_PLUS2] = ACTIONS(2776), + [anon_sym_SLASH2] = ACTIONS(2778), + [anon_sym_mod2] = ACTIONS(2776), + [anon_sym_SLASH_SLASH2] = ACTIONS(2776), + [anon_sym_PLUS2] = ACTIONS(2778), + [anon_sym_bit_DASHshl2] = ACTIONS(2776), + [anon_sym_bit_DASHshr2] = ACTIONS(2776), + [anon_sym_bit_DASHand2] = ACTIONS(2776), + [anon_sym_bit_DASHxor2] = ACTIONS(2776), + [anon_sym_bit_DASHor2] = ACTIONS(2776), + [anon_sym_err_GT] = ACTIONS(2778), + [anon_sym_out_GT] = ACTIONS(2778), + [anon_sym_e_GT] = ACTIONS(2778), + [anon_sym_o_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT] = ACTIONS(2778), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1129)] = { - [aux_sym__repeat_newline] = STATE(1355), - [sym__expression_parenthesized] = STATE(4355), - [sym_expr_unary] = STATE(1202), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary_parenthesized] = STATE(1202), - [sym__expr_binary_expression_parenthesized] = STATE(2128), - [sym_expr_parenthesized] = STATE(773), - [sym_val_range] = STATE(1202), - [sym__value] = STATE(1202), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1129), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(2668), - [aux_sym_cmd_identifier_token3] = ACTIONS(189), - [aux_sym_cmd_identifier_token4] = ACTIONS(189), - [aux_sym_cmd_identifier_token5] = ACTIONS(189), - [sym__newline] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1928), - [aux_sym__val_number_decimal_token3] = ACTIONS(1930), - [aux_sym__val_number_decimal_token4] = ACTIONS(1930), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_in] = ACTIONS(2670), + [sym__newline] = ACTIONS(2670), + [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym_PIPE] = ACTIONS(2670), + [anon_sym_err_GT_PIPE] = ACTIONS(2670), + [anon_sym_out_GT_PIPE] = ACTIONS(2670), + [anon_sym_e_GT_PIPE] = ACTIONS(2670), + [anon_sym_o_GT_PIPE] = ACTIONS(2670), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), + [anon_sym_RPAREN] = ACTIONS(2670), + [anon_sym_GT2] = ACTIONS(2672), + [anon_sym_DASH2] = ACTIONS(2670), + [anon_sym_LBRACE] = ACTIONS(2670), + [anon_sym_STAR2] = ACTIONS(2672), + [anon_sym_and2] = ACTIONS(2670), + [anon_sym_xor2] = ACTIONS(2670), + [anon_sym_or2] = ACTIONS(2670), + [anon_sym_not_DASHin2] = ACTIONS(2670), + [anon_sym_has2] = ACTIONS(2670), + [anon_sym_not_DASHhas2] = ACTIONS(2670), + [anon_sym_starts_DASHwith2] = ACTIONS(2670), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), + [anon_sym_ends_DASHwith2] = ACTIONS(2670), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), + [anon_sym_EQ_EQ2] = ACTIONS(2670), + [anon_sym_BANG_EQ2] = ACTIONS(2670), + [anon_sym_LT2] = ACTIONS(2672), + [anon_sym_LT_EQ2] = ACTIONS(2670), + [anon_sym_GT_EQ2] = ACTIONS(2670), + [anon_sym_EQ_TILDE2] = ACTIONS(2670), + [anon_sym_BANG_TILDE2] = ACTIONS(2670), + [anon_sym_like2] = ACTIONS(2670), + [anon_sym_not_DASHlike2] = ACTIONS(2670), + [anon_sym_STAR_STAR2] = ACTIONS(2670), + [anon_sym_PLUS_PLUS2] = ACTIONS(2670), + [anon_sym_SLASH2] = ACTIONS(2672), + [anon_sym_mod2] = ACTIONS(2670), + [anon_sym_SLASH_SLASH2] = ACTIONS(2670), + [anon_sym_PLUS2] = ACTIONS(2672), + [anon_sym_bit_DASHshl2] = ACTIONS(2670), + [anon_sym_bit_DASHshr2] = ACTIONS(2670), + [anon_sym_bit_DASHand2] = ACTIONS(2670), + [anon_sym_bit_DASHxor2] = ACTIONS(2670), + [anon_sym_bit_DASHor2] = ACTIONS(2670), + [anon_sym_err_GT] = ACTIONS(2672), + [anon_sym_out_GT] = ACTIONS(2672), + [anon_sym_e_GT] = ACTIONS(2672), + [anon_sym_o_GT] = ACTIONS(2672), + [anon_sym_err_PLUSout_GT] = ACTIONS(2672), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), + [anon_sym_o_PLUSe_GT] = ACTIONS(2672), + [anon_sym_e_PLUSo_GT] = ACTIONS(2672), + [anon_sym_err_GT_GT] = ACTIONS(2670), + [anon_sym_out_GT_GT] = ACTIONS(2670), + [anon_sym_e_GT_GT] = ACTIONS(2670), + [anon_sym_o_GT_GT] = ACTIONS(2670), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1130)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1130), - [anon_sym_in] = ACTIONS(2716), - [sym__newline] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_err_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_GT_PIPE] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2716), - [anon_sym_RPAREN] = ACTIONS(2716), - [anon_sym_GT2] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(2716), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_STAR2] = ACTIONS(2718), - [anon_sym_and2] = ACTIONS(2716), - [anon_sym_xor2] = ACTIONS(2716), - [anon_sym_or2] = ACTIONS(2716), - [anon_sym_not_DASHin2] = ACTIONS(2716), - [anon_sym_has2] = ACTIONS(2716), - [anon_sym_not_DASHhas2] = ACTIONS(2716), - [anon_sym_starts_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2716), - [anon_sym_ends_DASHwith2] = ACTIONS(2716), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2716), - [anon_sym_EQ_EQ2] = ACTIONS(2716), - [anon_sym_BANG_EQ2] = ACTIONS(2716), - [anon_sym_LT2] = ACTIONS(2718), - [anon_sym_LT_EQ2] = ACTIONS(2716), - [anon_sym_GT_EQ2] = ACTIONS(2716), - [anon_sym_EQ_TILDE2] = ACTIONS(2716), - [anon_sym_BANG_TILDE2] = ACTIONS(2716), - [anon_sym_like2] = ACTIONS(2716), - [anon_sym_not_DASHlike2] = ACTIONS(2716), - [anon_sym_STAR_STAR2] = ACTIONS(2716), - [anon_sym_PLUS_PLUS2] = ACTIONS(2716), - [anon_sym_SLASH2] = ACTIONS(2718), - [anon_sym_mod2] = ACTIONS(2716), - [anon_sym_SLASH_SLASH2] = ACTIONS(2716), - [anon_sym_PLUS2] = ACTIONS(2718), - [anon_sym_bit_DASHshl2] = ACTIONS(2716), - [anon_sym_bit_DASHshr2] = ACTIONS(2716), - [anon_sym_bit_DASHand2] = ACTIONS(2716), - [anon_sym_bit_DASHxor2] = ACTIONS(2716), - [anon_sym_bit_DASHor2] = ACTIONS(2716), - [anon_sym_err_GT] = ACTIONS(2718), - [anon_sym_out_GT] = ACTIONS(2718), - [anon_sym_e_GT] = ACTIONS(2718), - [anon_sym_o_GT] = ACTIONS(2718), - [anon_sym_err_PLUSout_GT] = ACTIONS(2718), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2718), - [anon_sym_o_PLUSe_GT] = ACTIONS(2718), - [anon_sym_e_PLUSo_GT] = ACTIONS(2718), - [anon_sym_err_GT_GT] = ACTIONS(2716), - [anon_sym_out_GT_GT] = ACTIONS(2716), - [anon_sym_e_GT_GT] = ACTIONS(2716), - [anon_sym_o_GT_GT] = ACTIONS(2716), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2716), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2716), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2716), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2716), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2547), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_err_GT_PIPE] = ACTIONS(2547), + [anon_sym_out_GT_PIPE] = ACTIONS(2547), + [anon_sym_e_GT_PIPE] = ACTIONS(2547), + [anon_sym_o_GT_PIPE] = ACTIONS(2547), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2547), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2547), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2547), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2547), + [anon_sym_RPAREN] = ACTIONS(2547), + [anon_sym_GT2] = ACTIONS(2782), + [anon_sym_DASH2] = ACTIONS(2784), + [anon_sym_RBRACE] = ACTIONS(2547), + [anon_sym_STAR2] = ACTIONS(2786), + [anon_sym_and2] = ACTIONS(2547), + [anon_sym_xor2] = ACTIONS(2547), + [anon_sym_or2] = ACTIONS(2547), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2788), + [anon_sym_BANG_EQ2] = ACTIONS(2788), + [anon_sym_LT2] = ACTIONS(2782), + [anon_sym_LT_EQ2] = ACTIONS(2788), + [anon_sym_GT_EQ2] = ACTIONS(2788), + [anon_sym_EQ_TILDE2] = ACTIONS(2790), + [anon_sym_BANG_TILDE2] = ACTIONS(2790), + [anon_sym_like2] = ACTIONS(2790), + [anon_sym_not_DASHlike2] = ACTIONS(2790), + [anon_sym_STAR_STAR2] = ACTIONS(2792), + [anon_sym_PLUS_PLUS2] = ACTIONS(2792), + [anon_sym_SLASH2] = ACTIONS(2786), + [anon_sym_mod2] = ACTIONS(2794), + [anon_sym_SLASH_SLASH2] = ACTIONS(2794), + [anon_sym_PLUS2] = ACTIONS(2796), + [anon_sym_bit_DASHshl2] = ACTIONS(2798), + [anon_sym_bit_DASHshr2] = ACTIONS(2798), + [anon_sym_bit_DASHand2] = ACTIONS(2800), + [anon_sym_bit_DASHxor2] = ACTIONS(2802), + [anon_sym_bit_DASHor2] = ACTIONS(2547), + [anon_sym_err_GT] = ACTIONS(2549), + [anon_sym_out_GT] = ACTIONS(2549), + [anon_sym_e_GT] = ACTIONS(2549), + [anon_sym_o_GT] = ACTIONS(2549), + [anon_sym_err_PLUSout_GT] = ACTIONS(2549), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2549), + [anon_sym_o_PLUSe_GT] = ACTIONS(2549), + [anon_sym_e_PLUSo_GT] = ACTIONS(2549), + [anon_sym_err_GT_GT] = ACTIONS(2547), + [anon_sym_out_GT_GT] = ACTIONS(2547), + [anon_sym_e_GT_GT] = ACTIONS(2547), + [anon_sym_o_GT_GT] = ACTIONS(2547), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2547), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2547), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2547), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2547), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1131)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1131), - [anon_sym_in] = ACTIONS(2740), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2742), - [anon_sym_DASH2] = ACTIONS(2740), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2740), - [anon_sym_has2] = ACTIONS(2740), - [anon_sym_not_DASHhas2] = ACTIONS(2740), - [anon_sym_starts_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2740), - [anon_sym_ends_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2740), - [anon_sym_EQ_EQ2] = ACTIONS(2740), - [anon_sym_BANG_EQ2] = ACTIONS(2740), - [anon_sym_LT2] = ACTIONS(2742), - [anon_sym_LT_EQ2] = ACTIONS(2740), - [anon_sym_GT_EQ2] = ACTIONS(2740), - [anon_sym_EQ_TILDE2] = ACTIONS(2740), - [anon_sym_BANG_TILDE2] = ACTIONS(2740), - [anon_sym_like2] = ACTIONS(2740), - [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2742), - [anon_sym_bit_DASHshl2] = ACTIONS(2740), - [anon_sym_bit_DASHshr2] = ACTIONS(2740), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1132)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1132), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1133)] = { - [sym_comment] = STATE(1133), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_err_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_GT_PIPE] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), + [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_GT2] = ACTIONS(2806), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2812), + [anon_sym_xor2] = ACTIONS(2692), + [anon_sym_or2] = ACTIONS(2692), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), [anon_sym_EQ_EQ2] = ACTIONS(2814), [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), + [anon_sym_LT2] = ACTIONS(2806), [anon_sym_LT_EQ2] = ACTIONS(2814), [anon_sym_GT_EQ2] = ACTIONS(2814), [anon_sym_EQ_TILDE2] = ACTIONS(2816), @@ -130506,7 +130575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHlike2] = ACTIONS(2816), [anon_sym_STAR_STAR2] = ACTIONS(2818), [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), + [anon_sym_SLASH2] = ACTIONS(2810), [anon_sym_mod2] = ACTIONS(2820), [anon_sym_SLASH_SLASH2] = ACTIONS(2820), [anon_sym_PLUS2] = ACTIONS(2822), @@ -130515,190 +130584,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(2826), [anon_sym_bit_DASHxor2] = ACTIONS(2828), [anon_sym_bit_DASHor2] = ACTIONS(2830), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1134)] = { - [aux_sym__repeat_newline] = STATE(1198), - [sym_comment] = STATE(1134), - [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2728), - [anon_sym_has2] = ACTIONS(2728), - [anon_sym_not_DASHhas2] = ACTIONS(2728), - [anon_sym_starts_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), - [anon_sym_ends_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_err_GT] = ACTIONS(2694), + [anon_sym_out_GT] = ACTIONS(2694), + [anon_sym_e_GT] = ACTIONS(2694), + [anon_sym_o_GT] = ACTIONS(2694), + [anon_sym_err_PLUSout_GT] = ACTIONS(2694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), + [anon_sym_o_PLUSe_GT] = ACTIONS(2694), + [anon_sym_e_PLUSo_GT] = ACTIONS(2694), + [anon_sym_err_GT_GT] = ACTIONS(2692), + [anon_sym_out_GT_GT] = ACTIONS(2692), + [anon_sym_e_GT_GT] = ACTIONS(2692), + [anon_sym_o_GT_GT] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1135)] = { - [aux_sym__repeat_newline] = STATE(1190), - [sym_comment] = STATE(1135), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1136)] = { - [sym_comment] = STATE(1136), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2864), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), + [STATE(1132)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1132), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_err_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_GT_PIPE] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), + [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_GT2] = ACTIONS(2806), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2692), + [anon_sym_xor2] = ACTIONS(2692), + [anon_sym_or2] = ACTIONS(2692), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), [anon_sym_EQ_EQ2] = ACTIONS(2814), [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), + [anon_sym_LT2] = ACTIONS(2806), [anon_sym_LT_EQ2] = ACTIONS(2814), [anon_sym_GT_EQ2] = ACTIONS(2814), [anon_sym_EQ_TILDE2] = ACTIONS(2816), @@ -130707,7 +130642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHlike2] = ACTIONS(2816), [anon_sym_STAR_STAR2] = ACTIONS(2818), [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), + [anon_sym_SLASH2] = ACTIONS(2810), [anon_sym_mod2] = ACTIONS(2820), [anon_sym_SLASH_SLASH2] = ACTIONS(2820), [anon_sym_PLUS2] = ACTIONS(2822), @@ -130715,124 +130650,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHshr2] = ACTIONS(2824), [anon_sym_bit_DASHand2] = ACTIONS(2826), [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2830), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_bit_DASHor2] = ACTIONS(2692), + [anon_sym_err_GT] = ACTIONS(2694), + [anon_sym_out_GT] = ACTIONS(2694), + [anon_sym_e_GT] = ACTIONS(2694), + [anon_sym_o_GT] = ACTIONS(2694), + [anon_sym_err_PLUSout_GT] = ACTIONS(2694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), + [anon_sym_o_PLUSe_GT] = ACTIONS(2694), + [anon_sym_e_PLUSo_GT] = ACTIONS(2694), + [anon_sym_err_GT_GT] = ACTIONS(2692), + [anon_sym_out_GT_GT] = ACTIONS(2692), + [anon_sym_e_GT_GT] = ACTIONS(2692), + [anon_sym_o_GT_GT] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1137)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1137), - [anon_sym_in] = ACTIONS(2732), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2732), - [anon_sym_has2] = ACTIONS(2732), - [anon_sym_not_DASHhas2] = ACTIONS(2732), - [anon_sym_starts_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2732), - [anon_sym_ends_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2732), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2732), - [anon_sym_BANG_TILDE2] = ACTIONS(2732), - [anon_sym_like2] = ACTIONS(2732), - [anon_sym_not_DASHlike2] = ACTIONS(2732), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2732), - [anon_sym_bit_DASHxor2] = ACTIONS(2732), - [anon_sym_bit_DASHor2] = ACTIONS(2732), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [STATE(1133)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1133), + [anon_sym_in] = ACTIONS(2692), + [sym__newline] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_err_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_GT_PIPE] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), + [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_GT2] = ACTIONS(2694), + [anon_sym_DASH2] = ACTIONS(2692), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2692), + [anon_sym_xor2] = ACTIONS(2692), + [anon_sym_or2] = ACTIONS(2692), + [anon_sym_not_DASHin2] = ACTIONS(2692), + [anon_sym_has2] = ACTIONS(2692), + [anon_sym_not_DASHhas2] = ACTIONS(2692), + [anon_sym_starts_DASHwith2] = ACTIONS(2692), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2692), + [anon_sym_ends_DASHwith2] = ACTIONS(2692), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2692), + [anon_sym_EQ_EQ2] = ACTIONS(2692), + [anon_sym_BANG_EQ2] = ACTIONS(2692), + [anon_sym_LT2] = ACTIONS(2694), + [anon_sym_LT_EQ2] = ACTIONS(2692), + [anon_sym_GT_EQ2] = ACTIONS(2692), + [anon_sym_EQ_TILDE2] = ACTIONS(2692), + [anon_sym_BANG_TILDE2] = ACTIONS(2692), + [anon_sym_like2] = ACTIONS(2692), + [anon_sym_not_DASHlike2] = ACTIONS(2692), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2694), + [anon_sym_bit_DASHshl2] = ACTIONS(2692), + [anon_sym_bit_DASHshr2] = ACTIONS(2692), + [anon_sym_bit_DASHand2] = ACTIONS(2692), + [anon_sym_bit_DASHxor2] = ACTIONS(2692), + [anon_sym_bit_DASHor2] = ACTIONS(2692), + [anon_sym_err_GT] = ACTIONS(2694), + [anon_sym_out_GT] = ACTIONS(2694), + [anon_sym_e_GT] = ACTIONS(2694), + [anon_sym_o_GT] = ACTIONS(2694), + [anon_sym_err_PLUSout_GT] = ACTIONS(2694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), + [anon_sym_o_PLUSe_GT] = ACTIONS(2694), + [anon_sym_e_PLUSo_GT] = ACTIONS(2694), + [anon_sym_err_GT_GT] = ACTIONS(2692), + [anon_sym_out_GT_GT] = ACTIONS(2692), + [anon_sym_e_GT_GT] = ACTIONS(2692), + [anon_sym_o_GT_GT] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1138)] = { - [sym_comment] = STATE(1138), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2864), - [anon_sym_xor2] = ACTIONS(2866), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), + [STATE(1134)] = { + [aux_sym__repeat_newline] = STATE(1175), + [sym_comment] = STATE(1134), + [anon_sym_in] = ACTIONS(2832), + [sym__newline] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2684), + [anon_sym_PIPE] = ACTIONS(2684), + [anon_sym_err_GT_PIPE] = ACTIONS(2684), + [anon_sym_out_GT_PIPE] = ACTIONS(2684), + [anon_sym_e_GT_PIPE] = ACTIONS(2684), + [anon_sym_o_GT_PIPE] = ACTIONS(2684), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), + [anon_sym_RPAREN] = ACTIONS(2684), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2842), + [anon_sym_xor2] = ACTIONS(2844), + [anon_sym_or2] = ACTIONS(2684), + [anon_sym_not_DASHin2] = ACTIONS(2832), + [anon_sym_has2] = ACTIONS(2832), + [anon_sym_not_DASHhas2] = ACTIONS(2832), + [anon_sym_starts_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), + [anon_sym_ends_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), + [anon_sym_EQ_EQ2] = ACTIONS(2846), + [anon_sym_BANG_EQ2] = ACTIONS(2846), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2846), + [anon_sym_GT_EQ2] = ACTIONS(2846), + [anon_sym_EQ_TILDE2] = ACTIONS(2848), + [anon_sym_BANG_TILDE2] = ACTIONS(2848), + [anon_sym_like2] = ACTIONS(2848), + [anon_sym_not_DASHlike2] = ACTIONS(2848), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), + [anon_sym_bit_DASHand2] = ACTIONS(2858), + [anon_sym_bit_DASHxor2] = ACTIONS(2860), + [anon_sym_bit_DASHor2] = ACTIONS(2862), + [anon_sym_err_GT] = ACTIONS(2686), + [anon_sym_out_GT] = ACTIONS(2686), + [anon_sym_e_GT] = ACTIONS(2686), + [anon_sym_o_GT] = ACTIONS(2686), + [anon_sym_err_PLUSout_GT] = ACTIONS(2686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), + [anon_sym_o_PLUSe_GT] = ACTIONS(2686), + [anon_sym_e_PLUSo_GT] = ACTIONS(2686), + [anon_sym_err_GT_GT] = ACTIONS(2684), + [anon_sym_out_GT_GT] = ACTIONS(2684), + [anon_sym_e_GT_GT] = ACTIONS(2684), + [anon_sym_o_GT_GT] = ACTIONS(2684), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1135)] = { + [aux_sym__repeat_newline] = STATE(1154), + [sym_comment] = STATE(1135), + [anon_sym_in] = ACTIONS(2676), + [sym__newline] = ACTIONS(2864), + [anon_sym_SEMI] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_err_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_GT_PIPE] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), + [anon_sym_RPAREN] = ACTIONS(2676), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2676), + [anon_sym_xor2] = ACTIONS(2676), + [anon_sym_or2] = ACTIONS(2676), + [anon_sym_not_DASHin2] = ACTIONS(2676), + [anon_sym_has2] = ACTIONS(2676), + [anon_sym_not_DASHhas2] = ACTIONS(2676), + [anon_sym_starts_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2676), + [anon_sym_ends_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2676), + [anon_sym_EQ_EQ2] = ACTIONS(2846), + [anon_sym_BANG_EQ2] = ACTIONS(2846), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2846), + [anon_sym_GT_EQ2] = ACTIONS(2846), + [anon_sym_EQ_TILDE2] = ACTIONS(2676), + [anon_sym_BANG_TILDE2] = ACTIONS(2676), + [anon_sym_like2] = ACTIONS(2676), + [anon_sym_not_DASHlike2] = ACTIONS(2676), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), + [anon_sym_bit_DASHand2] = ACTIONS(2676), + [anon_sym_bit_DASHxor2] = ACTIONS(2676), + [anon_sym_bit_DASHor2] = ACTIONS(2676), + [anon_sym_err_GT] = ACTIONS(2678), + [anon_sym_out_GT] = ACTIONS(2678), + [anon_sym_e_GT] = ACTIONS(2678), + [anon_sym_o_GT] = ACTIONS(2678), + [anon_sym_err_PLUSout_GT] = ACTIONS(2678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), + [anon_sym_o_PLUSe_GT] = ACTIONS(2678), + [anon_sym_e_PLUSo_GT] = ACTIONS(2678), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1136)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1136), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2688), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_err_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_GT_PIPE] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), + [anon_sym_RPAREN] = ACTIONS(2688), + [anon_sym_GT2] = ACTIONS(2806), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2688), + [anon_sym_xor2] = ACTIONS(2688), + [anon_sym_or2] = ACTIONS(2688), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), [anon_sym_EQ_EQ2] = ACTIONS(2814), [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), + [anon_sym_LT2] = ACTIONS(2806), [anon_sym_LT_EQ2] = ACTIONS(2814), [anon_sym_GT_EQ2] = ACTIONS(2814), [anon_sym_EQ_TILDE2] = ACTIONS(2816), @@ -130841,7 +130910,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHlike2] = ACTIONS(2816), [anon_sym_STAR_STAR2] = ACTIONS(2818), [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), + [anon_sym_SLASH2] = ACTIONS(2810), [anon_sym_mod2] = ACTIONS(2820), [anon_sym_SLASH_SLASH2] = ACTIONS(2820), [anon_sym_PLUS2] = ACTIONS(2822), @@ -130849,6181 +130918,5980 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHshr2] = ACTIONS(2824), [anon_sym_bit_DASHand2] = ACTIONS(2826), [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2830), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_bit_DASHor2] = ACTIONS(2688), + [anon_sym_err_GT] = ACTIONS(2690), + [anon_sym_out_GT] = ACTIONS(2690), + [anon_sym_e_GT] = ACTIONS(2690), + [anon_sym_o_GT] = ACTIONS(2690), + [anon_sym_err_PLUSout_GT] = ACTIONS(2690), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), + [anon_sym_o_PLUSe_GT] = ACTIONS(2690), + [anon_sym_e_PLUSo_GT] = ACTIONS(2690), + [anon_sym_err_GT_GT] = ACTIONS(2688), + [anon_sym_out_GT_GT] = ACTIONS(2688), + [anon_sym_e_GT_GT] = ACTIONS(2688), + [anon_sym_o_GT_GT] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1137)] = { + [sym_comment] = STATE(1137), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2547), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_err_GT_PIPE] = ACTIONS(2547), + [anon_sym_out_GT_PIPE] = ACTIONS(2547), + [anon_sym_e_GT_PIPE] = ACTIONS(2547), + [anon_sym_o_GT_PIPE] = ACTIONS(2547), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2547), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2547), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2547), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2547), + [anon_sym_RPAREN] = ACTIONS(2547), + [anon_sym_GT2] = ACTIONS(2782), + [anon_sym_DASH2] = ACTIONS(2784), + [anon_sym_RBRACE] = ACTIONS(2547), + [anon_sym_STAR2] = ACTIONS(2786), + [anon_sym_and2] = ACTIONS(2547), + [anon_sym_xor2] = ACTIONS(2547), + [anon_sym_or2] = ACTIONS(2547), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2788), + [anon_sym_BANG_EQ2] = ACTIONS(2788), + [anon_sym_LT2] = ACTIONS(2782), + [anon_sym_LT_EQ2] = ACTIONS(2788), + [anon_sym_GT_EQ2] = ACTIONS(2788), + [anon_sym_EQ_TILDE2] = ACTIONS(2790), + [anon_sym_BANG_TILDE2] = ACTIONS(2790), + [anon_sym_like2] = ACTIONS(2790), + [anon_sym_not_DASHlike2] = ACTIONS(2790), + [anon_sym_STAR_STAR2] = ACTIONS(2792), + [anon_sym_PLUS_PLUS2] = ACTIONS(2792), + [anon_sym_SLASH2] = ACTIONS(2786), + [anon_sym_mod2] = ACTIONS(2794), + [anon_sym_SLASH_SLASH2] = ACTIONS(2794), + [anon_sym_PLUS2] = ACTIONS(2796), + [anon_sym_bit_DASHshl2] = ACTIONS(2798), + [anon_sym_bit_DASHshr2] = ACTIONS(2798), + [anon_sym_bit_DASHand2] = ACTIONS(2800), + [anon_sym_bit_DASHxor2] = ACTIONS(2547), + [anon_sym_bit_DASHor2] = ACTIONS(2547), + [anon_sym_err_GT] = ACTIONS(2549), + [anon_sym_out_GT] = ACTIONS(2549), + [anon_sym_e_GT] = ACTIONS(2549), + [anon_sym_o_GT] = ACTIONS(2549), + [anon_sym_err_PLUSout_GT] = ACTIONS(2549), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2549), + [anon_sym_o_PLUSe_GT] = ACTIONS(2549), + [anon_sym_e_PLUSo_GT] = ACTIONS(2549), + [anon_sym_err_GT_GT] = ACTIONS(2547), + [anon_sym_out_GT_GT] = ACTIONS(2547), + [anon_sym_e_GT_GT] = ACTIONS(2547), + [anon_sym_o_GT_GT] = ACTIONS(2547), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2547), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2547), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2547), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2547), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1138)] = { + [aux_sym__repeat_newline] = STATE(1238), + [sym_comment] = STATE(1138), + [anon_sym_in] = ACTIONS(2768), + [sym__newline] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2768), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_err_GT_PIPE] = ACTIONS(2768), + [anon_sym_out_GT_PIPE] = ACTIONS(2768), + [anon_sym_e_GT_PIPE] = ACTIONS(2768), + [anon_sym_o_GT_PIPE] = ACTIONS(2768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2768), + [anon_sym_RPAREN] = ACTIONS(2768), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2768), + [anon_sym_xor2] = ACTIONS(2768), + [anon_sym_or2] = ACTIONS(2768), + [anon_sym_not_DASHin2] = ACTIONS(2768), + [anon_sym_has2] = ACTIONS(2768), + [anon_sym_not_DASHhas2] = ACTIONS(2768), + [anon_sym_starts_DASHwith2] = ACTIONS(2768), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2768), + [anon_sym_ends_DASHwith2] = ACTIONS(2768), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2768), + [anon_sym_EQ_EQ2] = ACTIONS(2846), + [anon_sym_BANG_EQ2] = ACTIONS(2846), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2846), + [anon_sym_GT_EQ2] = ACTIONS(2846), + [anon_sym_EQ_TILDE2] = ACTIONS(2768), + [anon_sym_BANG_TILDE2] = ACTIONS(2768), + [anon_sym_like2] = ACTIONS(2768), + [anon_sym_not_DASHlike2] = ACTIONS(2768), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), + [anon_sym_bit_DASHand2] = ACTIONS(2768), + [anon_sym_bit_DASHxor2] = ACTIONS(2768), + [anon_sym_bit_DASHor2] = ACTIONS(2768), + [anon_sym_err_GT] = ACTIONS(2770), + [anon_sym_out_GT] = ACTIONS(2770), + [anon_sym_e_GT] = ACTIONS(2770), + [anon_sym_o_GT] = ACTIONS(2770), + [anon_sym_err_PLUSout_GT] = ACTIONS(2770), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2770), + [anon_sym_o_PLUSe_GT] = ACTIONS(2770), + [anon_sym_e_PLUSo_GT] = ACTIONS(2770), + [anon_sym_err_GT_GT] = ACTIONS(2768), + [anon_sym_out_GT_GT] = ACTIONS(2768), + [anon_sym_e_GT_GT] = ACTIONS(2768), + [anon_sym_o_GT_GT] = ACTIONS(2768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2768), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1139)] = { - [aux_sym__repeat_newline] = STATE(1200), + [aux_sym__repeat_newline] = STATE(1250), [sym_comment] = STATE(1139), - [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2730), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2728), - [anon_sym_has2] = ACTIONS(2728), - [anon_sym_not_DASHhas2] = ACTIONS(2728), - [anon_sym_starts_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), - [anon_sym_ends_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), - [anon_sym_EQ_EQ2] = ACTIONS(2728), - [anon_sym_BANG_EQ2] = ACTIONS(2728), - [anon_sym_LT2] = ACTIONS(2730), - [anon_sym_LT_EQ2] = ACTIONS(2728), - [anon_sym_GT_EQ2] = ACTIONS(2728), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2684), + [sym__newline] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(2684), + [anon_sym_PIPE] = ACTIONS(2684), + [anon_sym_err_GT_PIPE] = ACTIONS(2684), + [anon_sym_out_GT_PIPE] = ACTIONS(2684), + [anon_sym_e_GT_PIPE] = ACTIONS(2684), + [anon_sym_o_GT_PIPE] = ACTIONS(2684), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), + [anon_sym_RPAREN] = ACTIONS(2684), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2684), + [anon_sym_xor2] = ACTIONS(2684), + [anon_sym_or2] = ACTIONS(2684), + [anon_sym_not_DASHin2] = ACTIONS(2684), + [anon_sym_has2] = ACTIONS(2684), + [anon_sym_not_DASHhas2] = ACTIONS(2684), + [anon_sym_starts_DASHwith2] = ACTIONS(2684), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2684), + [anon_sym_ends_DASHwith2] = ACTIONS(2684), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2684), + [anon_sym_EQ_EQ2] = ACTIONS(2846), + [anon_sym_BANG_EQ2] = ACTIONS(2846), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2846), + [anon_sym_GT_EQ2] = ACTIONS(2846), + [anon_sym_EQ_TILDE2] = ACTIONS(2684), + [anon_sym_BANG_TILDE2] = ACTIONS(2684), + [anon_sym_like2] = ACTIONS(2684), + [anon_sym_not_DASHlike2] = ACTIONS(2684), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), + [anon_sym_bit_DASHand2] = ACTIONS(2684), + [anon_sym_bit_DASHxor2] = ACTIONS(2684), + [anon_sym_bit_DASHor2] = ACTIONS(2684), + [anon_sym_err_GT] = ACTIONS(2686), + [anon_sym_out_GT] = ACTIONS(2686), + [anon_sym_e_GT] = ACTIONS(2686), + [anon_sym_o_GT] = ACTIONS(2686), + [anon_sym_err_PLUSout_GT] = ACTIONS(2686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), + [anon_sym_o_PLUSe_GT] = ACTIONS(2686), + [anon_sym_e_PLUSo_GT] = ACTIONS(2686), + [anon_sym_err_GT_GT] = ACTIONS(2684), + [anon_sym_out_GT_GT] = ACTIONS(2684), + [anon_sym_e_GT_GT] = ACTIONS(2684), + [anon_sym_o_GT_GT] = ACTIONS(2684), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1140)] = { + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1140), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_err_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_GT_PIPE] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), + [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_GT2] = ACTIONS(2806), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2812), + [anon_sym_xor2] = ACTIONS(2873), + [anon_sym_or2] = ACTIONS(2692), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), [anon_sym_EQ_EQ2] = ACTIONS(2814), [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), + [anon_sym_LT2] = ACTIONS(2806), [anon_sym_LT_EQ2] = ACTIONS(2814), [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), + [anon_sym_EQ_TILDE2] = ACTIONS(2816), + [anon_sym_BANG_TILDE2] = ACTIONS(2816), + [anon_sym_like2] = ACTIONS(2816), + [anon_sym_not_DASHlike2] = ACTIONS(2816), [anon_sym_STAR_STAR2] = ACTIONS(2818), [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), + [anon_sym_SLASH2] = ACTIONS(2810), [anon_sym_mod2] = ACTIONS(2820), [anon_sym_SLASH_SLASH2] = ACTIONS(2820), [anon_sym_PLUS2] = ACTIONS(2822), [anon_sym_bit_DASHshl2] = ACTIONS(2824), [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_bit_DASHand2] = ACTIONS(2826), + [anon_sym_bit_DASHxor2] = ACTIONS(2828), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2694), + [anon_sym_out_GT] = ACTIONS(2694), + [anon_sym_e_GT] = ACTIONS(2694), + [anon_sym_o_GT] = ACTIONS(2694), + [anon_sym_err_PLUSout_GT] = ACTIONS(2694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), + [anon_sym_o_PLUSe_GT] = ACTIONS(2694), + [anon_sym_e_PLUSo_GT] = ACTIONS(2694), + [anon_sym_err_GT_GT] = ACTIONS(2692), + [anon_sym_out_GT_GT] = ACTIONS(2692), + [anon_sym_e_GT_GT] = ACTIONS(2692), + [anon_sym_o_GT_GT] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1141)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1235), [sym_comment] = STATE(1141), - [anon_sym_in] = ACTIONS(2732), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2734), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2732), - [anon_sym_has2] = ACTIONS(2732), - [anon_sym_not_DASHhas2] = ACTIONS(2732), - [anon_sym_starts_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2732), - [anon_sym_ends_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2732), - [anon_sym_EQ_EQ2] = ACTIONS(2732), - [anon_sym_BANG_EQ2] = ACTIONS(2732), - [anon_sym_LT2] = ACTIONS(2734), - [anon_sym_LT_EQ2] = ACTIONS(2732), - [anon_sym_GT_EQ2] = ACTIONS(2732), - [anon_sym_EQ_TILDE2] = ACTIONS(2732), - [anon_sym_BANG_TILDE2] = ACTIONS(2732), - [anon_sym_like2] = ACTIONS(2732), - [anon_sym_not_DASHlike2] = ACTIONS(2732), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2732), - [anon_sym_bit_DASHxor2] = ACTIONS(2732), - [anon_sym_bit_DASHor2] = ACTIONS(2732), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2832), + [sym__newline] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2832), + [anon_sym_has2] = ACTIONS(2832), + [anon_sym_not_DASHhas2] = ACTIONS(2832), + [anon_sym_starts_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), + [anon_sym_ends_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), + [anon_sym_EQ_EQ2] = ACTIONS(2846), + [anon_sym_BANG_EQ2] = ACTIONS(2846), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2846), + [anon_sym_GT_EQ2] = ACTIONS(2846), + [anon_sym_EQ_TILDE2] = ACTIONS(2848), + [anon_sym_BANG_TILDE2] = ACTIONS(2848), + [anon_sym_like2] = ACTIONS(2848), + [anon_sym_not_DASHlike2] = ACTIONS(2848), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), + [anon_sym_bit_DASHand2] = ACTIONS(2666), + [anon_sym_bit_DASHxor2] = ACTIONS(2666), + [anon_sym_bit_DASHor2] = ACTIONS(2666), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1142)] = { + [aux_sym__repeat_newline] = STATE(1179), [sym_comment] = STATE(1142), - [anon_sym_in] = ACTIONS(2533), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2535), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2533), - [anon_sym_has2] = ACTIONS(2533), - [anon_sym_not_DASHhas2] = ACTIONS(2533), - [anon_sym_starts_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), - [anon_sym_ends_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), - [anon_sym_EQ_EQ2] = ACTIONS(2533), - [anon_sym_BANG_EQ2] = ACTIONS(2533), - [anon_sym_LT2] = ACTIONS(2535), - [anon_sym_LT_EQ2] = ACTIONS(2533), - [anon_sym_GT_EQ2] = ACTIONS(2533), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2533), - [anon_sym_bit_DASHshr2] = ACTIONS(2533), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(2832), + [sym__newline] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(2684), + [anon_sym_PIPE] = ACTIONS(2684), + [anon_sym_err_GT_PIPE] = ACTIONS(2684), + [anon_sym_out_GT_PIPE] = ACTIONS(2684), + [anon_sym_e_GT_PIPE] = ACTIONS(2684), + [anon_sym_o_GT_PIPE] = ACTIONS(2684), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), + [anon_sym_RPAREN] = ACTIONS(2684), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2684), + [anon_sym_xor2] = ACTIONS(2684), + [anon_sym_or2] = ACTIONS(2684), + [anon_sym_not_DASHin2] = ACTIONS(2832), + [anon_sym_has2] = ACTIONS(2832), + [anon_sym_not_DASHhas2] = ACTIONS(2832), + [anon_sym_starts_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), + [anon_sym_ends_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), + [anon_sym_EQ_EQ2] = ACTIONS(2846), + [anon_sym_BANG_EQ2] = ACTIONS(2846), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2846), + [anon_sym_GT_EQ2] = ACTIONS(2846), + [anon_sym_EQ_TILDE2] = ACTIONS(2684), + [anon_sym_BANG_TILDE2] = ACTIONS(2684), + [anon_sym_like2] = ACTIONS(2684), + [anon_sym_not_DASHlike2] = ACTIONS(2684), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), + [anon_sym_bit_DASHand2] = ACTIONS(2684), + [anon_sym_bit_DASHxor2] = ACTIONS(2684), + [anon_sym_bit_DASHor2] = ACTIONS(2684), + [anon_sym_err_GT] = ACTIONS(2686), + [anon_sym_out_GT] = ACTIONS(2686), + [anon_sym_e_GT] = ACTIONS(2686), + [anon_sym_o_GT] = ACTIONS(2686), + [anon_sym_err_PLUSout_GT] = ACTIONS(2686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), + [anon_sym_o_PLUSe_GT] = ACTIONS(2686), + [anon_sym_e_PLUSo_GT] = ACTIONS(2686), + [anon_sym_err_GT_GT] = ACTIONS(2684), + [anon_sym_out_GT_GT] = ACTIONS(2684), + [anon_sym_e_GT_GT] = ACTIONS(2684), + [anon_sym_o_GT_GT] = ACTIONS(2684), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1143)] = { - [aux_sym__repeat_newline] = STATE(1131), + [aux_sym__repeat_newline] = STATE(1159), [sym_comment] = STATE(1143), - [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2730), - [anon_sym_DASH2] = ACTIONS(2728), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2728), - [anon_sym_has2] = ACTIONS(2728), - [anon_sym_not_DASHhas2] = ACTIONS(2728), - [anon_sym_starts_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), - [anon_sym_ends_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), - [anon_sym_EQ_EQ2] = ACTIONS(2728), - [anon_sym_BANG_EQ2] = ACTIONS(2728), - [anon_sym_LT2] = ACTIONS(2730), - [anon_sym_LT_EQ2] = ACTIONS(2728), - [anon_sym_GT_EQ2] = ACTIONS(2728), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2730), - [anon_sym_bit_DASHshl2] = ACTIONS(2728), - [anon_sym_bit_DASHshr2] = ACTIONS(2728), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2676), + [sym__newline] = ACTIONS(2864), + [anon_sym_SEMI] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_err_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_GT_PIPE] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), + [anon_sym_RPAREN] = ACTIONS(2676), + [anon_sym_GT2] = ACTIONS(2678), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2676), + [anon_sym_xor2] = ACTIONS(2676), + [anon_sym_or2] = ACTIONS(2676), + [anon_sym_not_DASHin2] = ACTIONS(2676), + [anon_sym_has2] = ACTIONS(2676), + [anon_sym_not_DASHhas2] = ACTIONS(2676), + [anon_sym_starts_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2676), + [anon_sym_ends_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2676), + [anon_sym_EQ_EQ2] = ACTIONS(2676), + [anon_sym_BANG_EQ2] = ACTIONS(2676), + [anon_sym_LT2] = ACTIONS(2678), + [anon_sym_LT_EQ2] = ACTIONS(2676), + [anon_sym_GT_EQ2] = ACTIONS(2676), + [anon_sym_EQ_TILDE2] = ACTIONS(2676), + [anon_sym_BANG_TILDE2] = ACTIONS(2676), + [anon_sym_like2] = ACTIONS(2676), + [anon_sym_not_DASHlike2] = ACTIONS(2676), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), + [anon_sym_bit_DASHand2] = ACTIONS(2676), + [anon_sym_bit_DASHxor2] = ACTIONS(2676), + [anon_sym_bit_DASHor2] = ACTIONS(2676), + [anon_sym_err_GT] = ACTIONS(2678), + [anon_sym_out_GT] = ACTIONS(2678), + [anon_sym_e_GT] = ACTIONS(2678), + [anon_sym_o_GT] = ACTIONS(2678), + [anon_sym_err_PLUSout_GT] = ACTIONS(2678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), + [anon_sym_o_PLUSe_GT] = ACTIONS(2678), + [anon_sym_e_PLUSo_GT] = ACTIONS(2678), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1144)] = { + [aux_sym__repeat_newline] = STATE(1163), [sym_comment] = STATE(1144), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(2666), + [sym__newline] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2668), + [anon_sym_DASH2] = ACTIONS(2666), + [anon_sym_STAR2] = ACTIONS(2668), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2666), + [anon_sym_has2] = ACTIONS(2666), + [anon_sym_not_DASHhas2] = ACTIONS(2666), + [anon_sym_starts_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2666), + [anon_sym_ends_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2666), + [anon_sym_EQ_EQ2] = ACTIONS(2666), + [anon_sym_BANG_EQ2] = ACTIONS(2666), + [anon_sym_LT2] = ACTIONS(2668), + [anon_sym_LT_EQ2] = ACTIONS(2666), + [anon_sym_GT_EQ2] = ACTIONS(2666), + [anon_sym_EQ_TILDE2] = ACTIONS(2666), + [anon_sym_BANG_TILDE2] = ACTIONS(2666), + [anon_sym_like2] = ACTIONS(2666), + [anon_sym_not_DASHlike2] = ACTIONS(2666), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2668), + [anon_sym_mod2] = ACTIONS(2666), + [anon_sym_SLASH_SLASH2] = ACTIONS(2666), + [anon_sym_PLUS2] = ACTIONS(2668), + [anon_sym_bit_DASHshl2] = ACTIONS(2666), + [anon_sym_bit_DASHshr2] = ACTIONS(2666), + [anon_sym_bit_DASHand2] = ACTIONS(2666), + [anon_sym_bit_DASHxor2] = ACTIONS(2666), + [anon_sym_bit_DASHor2] = ACTIONS(2666), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1145)] = { + [aux_sym__repeat_newline] = STATE(1146), [sym_comment] = STATE(1145), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(2832), + [sym__newline] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2832), + [anon_sym_has2] = ACTIONS(2832), + [anon_sym_not_DASHhas2] = ACTIONS(2832), + [anon_sym_starts_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), + [anon_sym_ends_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), + [anon_sym_EQ_EQ2] = ACTIONS(2846), + [anon_sym_BANG_EQ2] = ACTIONS(2846), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2846), + [anon_sym_GT_EQ2] = ACTIONS(2846), + [anon_sym_EQ_TILDE2] = ACTIONS(2666), + [anon_sym_BANG_TILDE2] = ACTIONS(2666), + [anon_sym_like2] = ACTIONS(2666), + [anon_sym_not_DASHlike2] = ACTIONS(2666), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), + [anon_sym_bit_DASHand2] = ACTIONS(2666), + [anon_sym_bit_DASHxor2] = ACTIONS(2666), + [anon_sym_bit_DASHor2] = ACTIONS(2666), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1146)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1146), - [anon_sym_in] = ACTIONS(2732), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2734), - [anon_sym_DASH2] = ACTIONS(2732), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2732), - [anon_sym_has2] = ACTIONS(2732), - [anon_sym_not_DASHhas2] = ACTIONS(2732), - [anon_sym_starts_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2732), - [anon_sym_ends_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2732), - [anon_sym_EQ_EQ2] = ACTIONS(2732), - [anon_sym_BANG_EQ2] = ACTIONS(2732), - [anon_sym_LT2] = ACTIONS(2734), - [anon_sym_LT_EQ2] = ACTIONS(2732), - [anon_sym_GT_EQ2] = ACTIONS(2732), - [anon_sym_EQ_TILDE2] = ACTIONS(2732), - [anon_sym_BANG_TILDE2] = ACTIONS(2732), - [anon_sym_like2] = ACTIONS(2732), - [anon_sym_not_DASHlike2] = ACTIONS(2732), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2734), - [anon_sym_bit_DASHshl2] = ACTIONS(2732), - [anon_sym_bit_DASHshr2] = ACTIONS(2732), - [anon_sym_bit_DASHand2] = ACTIONS(2732), - [anon_sym_bit_DASHxor2] = ACTIONS(2732), - [anon_sym_bit_DASHor2] = ACTIONS(2732), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1147)] = { - [sym_comment] = STATE(1147), - [anon_sym_in] = ACTIONS(2806), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2806), - [anon_sym_has2] = ACTIONS(2806), - [anon_sym_not_DASHhas2] = ACTIONS(2806), - [anon_sym_starts_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2806), - [anon_sym_ends_DASHwith2] = ACTIONS(2806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2806), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_err_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_GT_PIPE] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), + [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_GT2] = ACTIONS(2806), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2692), + [anon_sym_xor2] = ACTIONS(2692), + [anon_sym_or2] = ACTIONS(2692), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), [anon_sym_EQ_EQ2] = ACTIONS(2814), [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), + [anon_sym_LT2] = ACTIONS(2806), [anon_sym_LT_EQ2] = ACTIONS(2814), [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), + [anon_sym_EQ_TILDE2] = ACTIONS(2692), + [anon_sym_BANG_TILDE2] = ACTIONS(2692), + [anon_sym_like2] = ACTIONS(2692), + [anon_sym_not_DASHlike2] = ACTIONS(2692), [anon_sym_STAR_STAR2] = ACTIONS(2818), [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), + [anon_sym_SLASH2] = ACTIONS(2810), [anon_sym_mod2] = ACTIONS(2820), [anon_sym_SLASH_SLASH2] = ACTIONS(2820), [anon_sym_PLUS2] = ACTIONS(2822), [anon_sym_bit_DASHshl2] = ACTIONS(2824), [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_bit_DASHand2] = ACTIONS(2692), + [anon_sym_bit_DASHxor2] = ACTIONS(2692), + [anon_sym_bit_DASHor2] = ACTIONS(2692), + [anon_sym_err_GT] = ACTIONS(2694), + [anon_sym_out_GT] = ACTIONS(2694), + [anon_sym_e_GT] = ACTIONS(2694), + [anon_sym_o_GT] = ACTIONS(2694), + [anon_sym_err_PLUSout_GT] = ACTIONS(2694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), + [anon_sym_o_PLUSe_GT] = ACTIONS(2694), + [anon_sym_e_PLUSo_GT] = ACTIONS(2694), + [anon_sym_err_GT_GT] = ACTIONS(2692), + [anon_sym_out_GT_GT] = ACTIONS(2692), + [anon_sym_e_GT_GT] = ACTIONS(2692), + [anon_sym_o_GT_GT] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1147)] = { + [aux_sym__repeat_newline] = STATE(1164), + [sym_comment] = STATE(1147), + [anon_sym_in] = ACTIONS(2676), + [sym__newline] = ACTIONS(2864), + [anon_sym_SEMI] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_err_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_GT_PIPE] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), + [anon_sym_RPAREN] = ACTIONS(2676), + [anon_sym_GT2] = ACTIONS(2678), + [anon_sym_DASH2] = ACTIONS(2676), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2676), + [anon_sym_xor2] = ACTIONS(2676), + [anon_sym_or2] = ACTIONS(2676), + [anon_sym_not_DASHin2] = ACTIONS(2676), + [anon_sym_has2] = ACTIONS(2676), + [anon_sym_not_DASHhas2] = ACTIONS(2676), + [anon_sym_starts_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2676), + [anon_sym_ends_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2676), + [anon_sym_EQ_EQ2] = ACTIONS(2676), + [anon_sym_BANG_EQ2] = ACTIONS(2676), + [anon_sym_LT2] = ACTIONS(2678), + [anon_sym_LT_EQ2] = ACTIONS(2676), + [anon_sym_GT_EQ2] = ACTIONS(2676), + [anon_sym_EQ_TILDE2] = ACTIONS(2676), + [anon_sym_BANG_TILDE2] = ACTIONS(2676), + [anon_sym_like2] = ACTIONS(2676), + [anon_sym_not_DASHlike2] = ACTIONS(2676), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2678), + [anon_sym_bit_DASHshl2] = ACTIONS(2676), + [anon_sym_bit_DASHshr2] = ACTIONS(2676), + [anon_sym_bit_DASHand2] = ACTIONS(2676), + [anon_sym_bit_DASHxor2] = ACTIONS(2676), + [anon_sym_bit_DASHor2] = ACTIONS(2676), + [anon_sym_err_GT] = ACTIONS(2678), + [anon_sym_out_GT] = ACTIONS(2678), + [anon_sym_e_GT] = ACTIONS(2678), + [anon_sym_o_GT] = ACTIONS(2678), + [anon_sym_err_PLUSout_GT] = ACTIONS(2678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), + [anon_sym_o_PLUSe_GT] = ACTIONS(2678), + [anon_sym_e_PLUSo_GT] = ACTIONS(2678), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1148)] = { - [aux_sym__repeat_newline] = STATE(1204), [sym_comment] = STATE(1148), - [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2730), - [anon_sym_DASH2] = ACTIONS(2728), - [anon_sym_STAR2] = ACTIONS(2730), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2728), - [anon_sym_has2] = ACTIONS(2728), - [anon_sym_not_DASHhas2] = ACTIONS(2728), - [anon_sym_starts_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), - [anon_sym_ends_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), - [anon_sym_EQ_EQ2] = ACTIONS(2728), - [anon_sym_BANG_EQ2] = ACTIONS(2728), - [anon_sym_LT2] = ACTIONS(2730), - [anon_sym_LT_EQ2] = ACTIONS(2728), - [anon_sym_GT_EQ2] = ACTIONS(2728), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2730), - [anon_sym_mod2] = ACTIONS(2728), - [anon_sym_SLASH_SLASH2] = ACTIONS(2728), - [anon_sym_PLUS2] = ACTIONS(2730), - [anon_sym_bit_DASHshl2] = ACTIONS(2728), - [anon_sym_bit_DASHshr2] = ACTIONS(2728), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2547), + [sym__newline] = ACTIONS(2547), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_err_GT_PIPE] = ACTIONS(2547), + [anon_sym_out_GT_PIPE] = ACTIONS(2547), + [anon_sym_e_GT_PIPE] = ACTIONS(2547), + [anon_sym_o_GT_PIPE] = ACTIONS(2547), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2547), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2547), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2547), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2547), + [anon_sym_RPAREN] = ACTIONS(2547), + [anon_sym_GT2] = ACTIONS(2782), + [anon_sym_DASH2] = ACTIONS(2784), + [anon_sym_RBRACE] = ACTIONS(2547), + [anon_sym_STAR2] = ACTIONS(2786), + [anon_sym_and2] = ACTIONS(2547), + [anon_sym_xor2] = ACTIONS(2547), + [anon_sym_or2] = ACTIONS(2547), + [anon_sym_not_DASHin2] = ACTIONS(2547), + [anon_sym_has2] = ACTIONS(2547), + [anon_sym_not_DASHhas2] = ACTIONS(2547), + [anon_sym_starts_DASHwith2] = ACTIONS(2547), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2547), + [anon_sym_ends_DASHwith2] = ACTIONS(2547), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2547), + [anon_sym_EQ_EQ2] = ACTIONS(2788), + [anon_sym_BANG_EQ2] = ACTIONS(2788), + [anon_sym_LT2] = ACTIONS(2782), + [anon_sym_LT_EQ2] = ACTIONS(2788), + [anon_sym_GT_EQ2] = ACTIONS(2788), + [anon_sym_EQ_TILDE2] = ACTIONS(2547), + [anon_sym_BANG_TILDE2] = ACTIONS(2547), + [anon_sym_like2] = ACTIONS(2547), + [anon_sym_not_DASHlike2] = ACTIONS(2547), + [anon_sym_STAR_STAR2] = ACTIONS(2792), + [anon_sym_PLUS_PLUS2] = ACTIONS(2792), + [anon_sym_SLASH2] = ACTIONS(2786), + [anon_sym_mod2] = ACTIONS(2794), + [anon_sym_SLASH_SLASH2] = ACTIONS(2794), + [anon_sym_PLUS2] = ACTIONS(2796), + [anon_sym_bit_DASHshl2] = ACTIONS(2798), + [anon_sym_bit_DASHshr2] = ACTIONS(2798), + [anon_sym_bit_DASHand2] = ACTIONS(2547), + [anon_sym_bit_DASHxor2] = ACTIONS(2547), + [anon_sym_bit_DASHor2] = ACTIONS(2547), + [anon_sym_err_GT] = ACTIONS(2549), + [anon_sym_out_GT] = ACTIONS(2549), + [anon_sym_e_GT] = ACTIONS(2549), + [anon_sym_o_GT] = ACTIONS(2549), + [anon_sym_err_PLUSout_GT] = ACTIONS(2549), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2549), + [anon_sym_o_PLUSe_GT] = ACTIONS(2549), + [anon_sym_e_PLUSo_GT] = ACTIONS(2549), + [anon_sym_err_GT_GT] = ACTIONS(2547), + [anon_sym_out_GT_GT] = ACTIONS(2547), + [anon_sym_e_GT_GT] = ACTIONS(2547), + [anon_sym_o_GT_GT] = ACTIONS(2547), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2547), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2547), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2547), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2547), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1149)] = { - [sym__ctrl_match_body] = STATE(4870), - [sym_match_arm] = STATE(4586), - [sym_default_arm] = STATE(4586), - [sym_match_pattern] = STATE(5092), - [sym__match_pattern] = STATE(3762), - [sym__match_pattern_expression] = STATE(4049), - [sym__match_pattern_value] = STATE(4051), - [sym__match_pattern_list] = STATE(4052), - [sym__match_pattern_record] = STATE(4053), - [sym_expr_parenthesized] = STATE(3714), - [sym_val_range] = STATE(4051), - [sym__val_range] = STATE(5173), - [sym_val_nothing] = STATE(4053), - [sym_val_bool] = STATE(4021), - [sym_val_variable] = STATE(3715), - [sym_val_number] = STATE(4053), - [sym__val_number_decimal] = STATE(3487), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(4053), - [sym_val_filesize] = STATE(4053), - [sym_val_binary] = STATE(4053), - [sym_val_string] = STATE(4053), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_table] = STATE(4053), - [sym_unquoted] = STATE(4070), - [sym__unquoted_anonymous_prefix] = STATE(5173), [sym_comment] = STATE(1149), - [aux_sym__types_body_repeat1] = STATE(1347), - [aux_sym__ctrl_match_body_repeat1] = STATE(1372), - [anon_sym_true] = ACTIONS(2868), - [anon_sym_false] = ACTIONS(2868), - [anon_sym_null] = ACTIONS(2870), - [aux_sym_cmd_identifier_token3] = ACTIONS(2872), - [aux_sym_cmd_identifier_token4] = ACTIONS(2872), - [aux_sym_cmd_identifier_token5] = ACTIONS(2872), - [sym__newline] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_RBRACE] = ACTIONS(2882), - [anon_sym__] = ACTIONS(2884), - [anon_sym_DOT_DOT] = ACTIONS(2886), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2888), - [anon_sym_DOT_DOT_LT] = ACTIONS(2888), - [aux_sym__val_number_decimal_token1] = ACTIONS(2890), - [aux_sym__val_number_decimal_token2] = ACTIONS(2892), - [aux_sym__val_number_decimal_token3] = ACTIONS(2894), - [aux_sym__val_number_decimal_token4] = ACTIONS(2894), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2896), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_in] = ACTIONS(2547), + [sym__newline] = ACTIONS(2547), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_err_GT_PIPE] = ACTIONS(2547), + [anon_sym_out_GT_PIPE] = ACTIONS(2547), + [anon_sym_e_GT_PIPE] = ACTIONS(2547), + [anon_sym_o_GT_PIPE] = ACTIONS(2547), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2547), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2547), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2547), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2547), + [anon_sym_RPAREN] = ACTIONS(2547), + [anon_sym_GT2] = ACTIONS(2549), + [anon_sym_DASH2] = ACTIONS(2784), + [anon_sym_RBRACE] = ACTIONS(2547), + [anon_sym_STAR2] = ACTIONS(2786), + [anon_sym_and2] = ACTIONS(2547), + [anon_sym_xor2] = ACTIONS(2547), + [anon_sym_or2] = ACTIONS(2547), + [anon_sym_not_DASHin2] = ACTIONS(2547), + [anon_sym_has2] = ACTIONS(2547), + [anon_sym_not_DASHhas2] = ACTIONS(2547), + [anon_sym_starts_DASHwith2] = ACTIONS(2547), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2547), + [anon_sym_ends_DASHwith2] = ACTIONS(2547), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2547), + [anon_sym_EQ_EQ2] = ACTIONS(2547), + [anon_sym_BANG_EQ2] = ACTIONS(2547), + [anon_sym_LT2] = ACTIONS(2549), + [anon_sym_LT_EQ2] = ACTIONS(2547), + [anon_sym_GT_EQ2] = ACTIONS(2547), + [anon_sym_EQ_TILDE2] = ACTIONS(2547), + [anon_sym_BANG_TILDE2] = ACTIONS(2547), + [anon_sym_like2] = ACTIONS(2547), + [anon_sym_not_DASHlike2] = ACTIONS(2547), + [anon_sym_STAR_STAR2] = ACTIONS(2792), + [anon_sym_PLUS_PLUS2] = ACTIONS(2792), + [anon_sym_SLASH2] = ACTIONS(2786), + [anon_sym_mod2] = ACTIONS(2794), + [anon_sym_SLASH_SLASH2] = ACTIONS(2794), + [anon_sym_PLUS2] = ACTIONS(2796), + [anon_sym_bit_DASHshl2] = ACTIONS(2798), + [anon_sym_bit_DASHshr2] = ACTIONS(2798), + [anon_sym_bit_DASHand2] = ACTIONS(2547), + [anon_sym_bit_DASHxor2] = ACTIONS(2547), + [anon_sym_bit_DASHor2] = ACTIONS(2547), + [anon_sym_err_GT] = ACTIONS(2549), + [anon_sym_out_GT] = ACTIONS(2549), + [anon_sym_e_GT] = ACTIONS(2549), + [anon_sym_o_GT] = ACTIONS(2549), + [anon_sym_err_PLUSout_GT] = ACTIONS(2549), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2549), + [anon_sym_o_PLUSe_GT] = ACTIONS(2549), + [anon_sym_e_PLUSo_GT] = ACTIONS(2549), + [anon_sym_err_GT_GT] = ACTIONS(2547), + [anon_sym_out_GT_GT] = ACTIONS(2547), + [anon_sym_e_GT_GT] = ACTIONS(2547), + [anon_sym_o_GT_GT] = ACTIONS(2547), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2547), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2547), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2547), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2547), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(1150)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1150), - [anon_sym_in] = ACTIONS(2732), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2734), - [anon_sym_DASH2] = ACTIONS(2732), - [anon_sym_STAR2] = ACTIONS(2734), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2732), - [anon_sym_has2] = ACTIONS(2732), - [anon_sym_not_DASHhas2] = ACTIONS(2732), - [anon_sym_starts_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2732), - [anon_sym_ends_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2732), - [anon_sym_EQ_EQ2] = ACTIONS(2732), - [anon_sym_BANG_EQ2] = ACTIONS(2732), - [anon_sym_LT2] = ACTIONS(2734), - [anon_sym_LT_EQ2] = ACTIONS(2732), - [anon_sym_GT_EQ2] = ACTIONS(2732), - [anon_sym_EQ_TILDE2] = ACTIONS(2732), - [anon_sym_BANG_TILDE2] = ACTIONS(2732), - [anon_sym_like2] = ACTIONS(2732), - [anon_sym_not_DASHlike2] = ACTIONS(2732), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2734), - [anon_sym_mod2] = ACTIONS(2732), - [anon_sym_SLASH_SLASH2] = ACTIONS(2732), - [anon_sym_PLUS2] = ACTIONS(2734), - [anon_sym_bit_DASHshl2] = ACTIONS(2732), - [anon_sym_bit_DASHshr2] = ACTIONS(2732), - [anon_sym_bit_DASHand2] = ACTIONS(2732), - [anon_sym_bit_DASHxor2] = ACTIONS(2732), - [anon_sym_bit_DASHor2] = ACTIONS(2732), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2547), + [sym__newline] = ACTIONS(2547), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_err_GT_PIPE] = ACTIONS(2547), + [anon_sym_out_GT_PIPE] = ACTIONS(2547), + [anon_sym_e_GT_PIPE] = ACTIONS(2547), + [anon_sym_o_GT_PIPE] = ACTIONS(2547), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2547), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2547), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2547), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2547), + [anon_sym_RPAREN] = ACTIONS(2547), + [anon_sym_GT2] = ACTIONS(2549), + [anon_sym_DASH2] = ACTIONS(2547), + [anon_sym_RBRACE] = ACTIONS(2547), + [anon_sym_STAR2] = ACTIONS(2786), + [anon_sym_and2] = ACTIONS(2547), + [anon_sym_xor2] = ACTIONS(2547), + [anon_sym_or2] = ACTIONS(2547), + [anon_sym_not_DASHin2] = ACTIONS(2547), + [anon_sym_has2] = ACTIONS(2547), + [anon_sym_not_DASHhas2] = ACTIONS(2547), + [anon_sym_starts_DASHwith2] = ACTIONS(2547), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2547), + [anon_sym_ends_DASHwith2] = ACTIONS(2547), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2547), + [anon_sym_EQ_EQ2] = ACTIONS(2547), + [anon_sym_BANG_EQ2] = ACTIONS(2547), + [anon_sym_LT2] = ACTIONS(2549), + [anon_sym_LT_EQ2] = ACTIONS(2547), + [anon_sym_GT_EQ2] = ACTIONS(2547), + [anon_sym_EQ_TILDE2] = ACTIONS(2547), + [anon_sym_BANG_TILDE2] = ACTIONS(2547), + [anon_sym_like2] = ACTIONS(2547), + [anon_sym_not_DASHlike2] = ACTIONS(2547), + [anon_sym_STAR_STAR2] = ACTIONS(2792), + [anon_sym_PLUS_PLUS2] = ACTIONS(2792), + [anon_sym_SLASH2] = ACTIONS(2786), + [anon_sym_mod2] = ACTIONS(2794), + [anon_sym_SLASH_SLASH2] = ACTIONS(2794), + [anon_sym_PLUS2] = ACTIONS(2549), + [anon_sym_bit_DASHshl2] = ACTIONS(2547), + [anon_sym_bit_DASHshr2] = ACTIONS(2547), + [anon_sym_bit_DASHand2] = ACTIONS(2547), + [anon_sym_bit_DASHxor2] = ACTIONS(2547), + [anon_sym_bit_DASHor2] = ACTIONS(2547), + [anon_sym_err_GT] = ACTIONS(2549), + [anon_sym_out_GT] = ACTIONS(2549), + [anon_sym_e_GT] = ACTIONS(2549), + [anon_sym_o_GT] = ACTIONS(2549), + [anon_sym_err_PLUSout_GT] = ACTIONS(2549), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2549), + [anon_sym_o_PLUSe_GT] = ACTIONS(2549), + [anon_sym_e_PLUSo_GT] = ACTIONS(2549), + [anon_sym_err_GT_GT] = ACTIONS(2547), + [anon_sym_out_GT_GT] = ACTIONS(2547), + [anon_sym_e_GT_GT] = ACTIONS(2547), + [anon_sym_o_GT_GT] = ACTIONS(2547), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2547), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2547), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2547), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2547), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1151)] = { - [sym__ctrl_match_body] = STATE(4878), - [sym_match_arm] = STATE(4586), - [sym_default_arm] = STATE(4586), - [sym_match_pattern] = STATE(5092), - [sym__match_pattern] = STATE(3762), - [sym__match_pattern_expression] = STATE(4049), - [sym__match_pattern_value] = STATE(4051), - [sym__match_pattern_list] = STATE(4052), - [sym__match_pattern_record] = STATE(4053), - [sym_expr_parenthesized] = STATE(3714), - [sym_val_range] = STATE(4051), - [sym__val_range] = STATE(5173), - [sym_val_nothing] = STATE(4053), - [sym_val_bool] = STATE(4021), - [sym_val_variable] = STATE(3715), - [sym_val_number] = STATE(4053), - [sym__val_number_decimal] = STATE(3487), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(4053), - [sym_val_filesize] = STATE(4053), - [sym_val_binary] = STATE(4053), - [sym_val_string] = STATE(4053), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_table] = STATE(4053), - [sym_unquoted] = STATE(4070), - [sym__unquoted_anonymous_prefix] = STATE(5173), [sym_comment] = STATE(1151), - [aux_sym__types_body_repeat1] = STATE(1347), - [aux_sym__ctrl_match_body_repeat1] = STATE(1372), - [anon_sym_true] = ACTIONS(2868), - [anon_sym_false] = ACTIONS(2868), - [anon_sym_null] = ACTIONS(2870), - [aux_sym_cmd_identifier_token3] = ACTIONS(2872), - [aux_sym_cmd_identifier_token4] = ACTIONS(2872), - [aux_sym_cmd_identifier_token5] = ACTIONS(2872), - [sym__newline] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_RBRACE] = ACTIONS(2898), - [anon_sym__] = ACTIONS(2884), - [anon_sym_DOT_DOT] = ACTIONS(2886), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2888), - [anon_sym_DOT_DOT_LT] = ACTIONS(2888), - [aux_sym__val_number_decimal_token1] = ACTIONS(2890), - [aux_sym__val_number_decimal_token2] = ACTIONS(2892), - [aux_sym__val_number_decimal_token3] = ACTIONS(2894), - [aux_sym__val_number_decimal_token4] = ACTIONS(2894), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2896), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_in] = ACTIONS(2547), + [sym__newline] = ACTIONS(2547), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_err_GT_PIPE] = ACTIONS(2547), + [anon_sym_out_GT_PIPE] = ACTIONS(2547), + [anon_sym_e_GT_PIPE] = ACTIONS(2547), + [anon_sym_o_GT_PIPE] = ACTIONS(2547), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2547), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2547), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2547), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2547), + [anon_sym_RPAREN] = ACTIONS(2547), + [anon_sym_GT2] = ACTIONS(2549), + [anon_sym_DASH2] = ACTIONS(2547), + [anon_sym_RBRACE] = ACTIONS(2547), + [anon_sym_STAR2] = ACTIONS(2549), + [anon_sym_and2] = ACTIONS(2547), + [anon_sym_xor2] = ACTIONS(2547), + [anon_sym_or2] = ACTIONS(2547), + [anon_sym_not_DASHin2] = ACTIONS(2547), + [anon_sym_has2] = ACTIONS(2547), + [anon_sym_not_DASHhas2] = ACTIONS(2547), + [anon_sym_starts_DASHwith2] = ACTIONS(2547), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2547), + [anon_sym_ends_DASHwith2] = ACTIONS(2547), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2547), + [anon_sym_EQ_EQ2] = ACTIONS(2547), + [anon_sym_BANG_EQ2] = ACTIONS(2547), + [anon_sym_LT2] = ACTIONS(2549), + [anon_sym_LT_EQ2] = ACTIONS(2547), + [anon_sym_GT_EQ2] = ACTIONS(2547), + [anon_sym_EQ_TILDE2] = ACTIONS(2547), + [anon_sym_BANG_TILDE2] = ACTIONS(2547), + [anon_sym_like2] = ACTIONS(2547), + [anon_sym_not_DASHlike2] = ACTIONS(2547), + [anon_sym_STAR_STAR2] = ACTIONS(2792), + [anon_sym_PLUS_PLUS2] = ACTIONS(2792), + [anon_sym_SLASH2] = ACTIONS(2549), + [anon_sym_mod2] = ACTIONS(2547), + [anon_sym_SLASH_SLASH2] = ACTIONS(2547), + [anon_sym_PLUS2] = ACTIONS(2549), + [anon_sym_bit_DASHshl2] = ACTIONS(2547), + [anon_sym_bit_DASHshr2] = ACTIONS(2547), + [anon_sym_bit_DASHand2] = ACTIONS(2547), + [anon_sym_bit_DASHxor2] = ACTIONS(2547), + [anon_sym_bit_DASHor2] = ACTIONS(2547), + [anon_sym_err_GT] = ACTIONS(2549), + [anon_sym_out_GT] = ACTIONS(2549), + [anon_sym_e_GT] = ACTIONS(2549), + [anon_sym_o_GT] = ACTIONS(2549), + [anon_sym_err_PLUSout_GT] = ACTIONS(2549), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2549), + [anon_sym_o_PLUSe_GT] = ACTIONS(2549), + [anon_sym_e_PLUSo_GT] = ACTIONS(2549), + [anon_sym_err_GT_GT] = ACTIONS(2547), + [anon_sym_out_GT_GT] = ACTIONS(2547), + [anon_sym_e_GT_GT] = ACTIONS(2547), + [anon_sym_o_GT_GT] = ACTIONS(2547), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2547), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2547), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2547), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2547), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(1152)] = { - [aux_sym__repeat_newline] = STATE(1206), + [aux_sym__repeat_newline] = STATE(1165), [sym_comment] = STATE(1152), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2684), + [sym__newline] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(2684), + [anon_sym_PIPE] = ACTIONS(2684), + [anon_sym_err_GT_PIPE] = ACTIONS(2684), + [anon_sym_out_GT_PIPE] = ACTIONS(2684), + [anon_sym_e_GT_PIPE] = ACTIONS(2684), + [anon_sym_o_GT_PIPE] = ACTIONS(2684), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), + [anon_sym_RPAREN] = ACTIONS(2684), + [anon_sym_GT2] = ACTIONS(2686), + [anon_sym_DASH2] = ACTIONS(2684), + [anon_sym_STAR2] = ACTIONS(2686), + [anon_sym_and2] = ACTIONS(2684), + [anon_sym_xor2] = ACTIONS(2684), + [anon_sym_or2] = ACTIONS(2684), + [anon_sym_not_DASHin2] = ACTIONS(2684), + [anon_sym_has2] = ACTIONS(2684), + [anon_sym_not_DASHhas2] = ACTIONS(2684), + [anon_sym_starts_DASHwith2] = ACTIONS(2684), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2684), + [anon_sym_ends_DASHwith2] = ACTIONS(2684), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2684), + [anon_sym_EQ_EQ2] = ACTIONS(2684), + [anon_sym_BANG_EQ2] = ACTIONS(2684), + [anon_sym_LT2] = ACTIONS(2686), + [anon_sym_LT_EQ2] = ACTIONS(2684), + [anon_sym_GT_EQ2] = ACTIONS(2684), + [anon_sym_EQ_TILDE2] = ACTIONS(2684), + [anon_sym_BANG_TILDE2] = ACTIONS(2684), + [anon_sym_like2] = ACTIONS(2684), + [anon_sym_not_DASHlike2] = ACTIONS(2684), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2686), + [anon_sym_mod2] = ACTIONS(2684), + [anon_sym_SLASH_SLASH2] = ACTIONS(2684), + [anon_sym_PLUS2] = ACTIONS(2686), + [anon_sym_bit_DASHshl2] = ACTIONS(2684), + [anon_sym_bit_DASHshr2] = ACTIONS(2684), + [anon_sym_bit_DASHand2] = ACTIONS(2684), + [anon_sym_bit_DASHxor2] = ACTIONS(2684), + [anon_sym_bit_DASHor2] = ACTIONS(2684), + [anon_sym_err_GT] = ACTIONS(2686), + [anon_sym_out_GT] = ACTIONS(2686), + [anon_sym_e_GT] = ACTIONS(2686), + [anon_sym_o_GT] = ACTIONS(2686), + [anon_sym_err_PLUSout_GT] = ACTIONS(2686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), + [anon_sym_o_PLUSe_GT] = ACTIONS(2686), + [anon_sym_e_PLUSo_GT] = ACTIONS(2686), + [anon_sym_err_GT_GT] = ACTIONS(2684), + [anon_sym_out_GT_GT] = ACTIONS(2684), + [anon_sym_e_GT_GT] = ACTIONS(2684), + [anon_sym_o_GT_GT] = ACTIONS(2684), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1153)] = { + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1153), - [anon_sym_in] = ACTIONS(1706), - [sym__newline] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_err_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_GT_PIPE] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), - [anon_sym_GT2] = ACTIONS(1619), - [anon_sym_DASH2] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_STAR2] = ACTIONS(1619), - [anon_sym_and2] = ACTIONS(1706), - [anon_sym_xor2] = ACTIONS(1706), - [anon_sym_or2] = ACTIONS(1706), - [anon_sym_not_DASHin2] = ACTIONS(1706), - [anon_sym_has2] = ACTIONS(1706), - [anon_sym_not_DASHhas2] = ACTIONS(1706), - [anon_sym_starts_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), - [anon_sym_ends_DASHwith2] = ACTIONS(1706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), - [anon_sym_EQ_EQ2] = ACTIONS(1706), - [anon_sym_BANG_EQ2] = ACTIONS(1706), - [anon_sym_LT2] = ACTIONS(1619), - [anon_sym_LT_EQ2] = ACTIONS(1706), - [anon_sym_GT_EQ2] = ACTIONS(1706), - [anon_sym_EQ_TILDE2] = ACTIONS(1706), - [anon_sym_BANG_TILDE2] = ACTIONS(1706), - [anon_sym_like2] = ACTIONS(1706), - [anon_sym_not_DASHlike2] = ACTIONS(1706), - [anon_sym_STAR_STAR2] = ACTIONS(1706), - [anon_sym_PLUS_PLUS2] = ACTIONS(1706), - [anon_sym_SLASH2] = ACTIONS(1619), - [anon_sym_mod2] = ACTIONS(1706), - [anon_sym_SLASH_SLASH2] = ACTIONS(1706), - [anon_sym_PLUS2] = ACTIONS(1619), - [anon_sym_bit_DASHshl2] = ACTIONS(1706), - [anon_sym_bit_DASHshr2] = ACTIONS(1706), - [anon_sym_bit_DASHand2] = ACTIONS(1706), - [anon_sym_bit_DASHxor2] = ACTIONS(1706), - [anon_sym_bit_DASHor2] = ACTIONS(1706), - [anon_sym_COLON2] = ACTIONS(1708), - [anon_sym_err_GT] = ACTIONS(1619), - [anon_sym_out_GT] = ACTIONS(1619), - [anon_sym_e_GT] = ACTIONS(1619), - [anon_sym_o_GT] = ACTIONS(1619), - [anon_sym_err_PLUSout_GT] = ACTIONS(1619), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1619), - [anon_sym_o_PLUSe_GT] = ACTIONS(1619), - [anon_sym_e_PLUSo_GT] = ACTIONS(1619), - [anon_sym_err_GT_GT] = ACTIONS(1706), - [anon_sym_out_GT_GT] = ACTIONS(1706), - [anon_sym_e_GT_GT] = ACTIONS(1706), - [anon_sym_o_GT_GT] = ACTIONS(1706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [anon_sym_in] = ACTIONS(2692), + [sym__newline] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_err_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_GT_PIPE] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), + [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_GT2] = ACTIONS(2806), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2692), + [anon_sym_xor2] = ACTIONS(2692), + [anon_sym_or2] = ACTIONS(2692), + [anon_sym_not_DASHin2] = ACTIONS(2692), + [anon_sym_has2] = ACTIONS(2692), + [anon_sym_not_DASHhas2] = ACTIONS(2692), + [anon_sym_starts_DASHwith2] = ACTIONS(2692), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2692), + [anon_sym_ends_DASHwith2] = ACTIONS(2692), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2692), + [anon_sym_EQ_EQ2] = ACTIONS(2814), + [anon_sym_BANG_EQ2] = ACTIONS(2814), + [anon_sym_LT2] = ACTIONS(2806), + [anon_sym_LT_EQ2] = ACTIONS(2814), + [anon_sym_GT_EQ2] = ACTIONS(2814), + [anon_sym_EQ_TILDE2] = ACTIONS(2692), + [anon_sym_BANG_TILDE2] = ACTIONS(2692), + [anon_sym_like2] = ACTIONS(2692), + [anon_sym_not_DASHlike2] = ACTIONS(2692), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2692), + [anon_sym_bit_DASHxor2] = ACTIONS(2692), + [anon_sym_bit_DASHor2] = ACTIONS(2692), + [anon_sym_err_GT] = ACTIONS(2694), + [anon_sym_out_GT] = ACTIONS(2694), + [anon_sym_e_GT] = ACTIONS(2694), + [anon_sym_o_GT] = ACTIONS(2694), + [anon_sym_err_PLUSout_GT] = ACTIONS(2694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), + [anon_sym_o_PLUSe_GT] = ACTIONS(2694), + [anon_sym_e_PLUSo_GT] = ACTIONS(2694), + [anon_sym_err_GT_GT] = ACTIONS(2692), + [anon_sym_out_GT_GT] = ACTIONS(2692), + [anon_sym_e_GT_GT] = ACTIONS(2692), + [anon_sym_o_GT_GT] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1154)] = { - [aux_sym__repeat_newline] = STATE(1150), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1154), - [anon_sym_in] = ACTIONS(2712), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2714), - [anon_sym_DASH2] = ACTIONS(2712), - [anon_sym_STAR2] = ACTIONS(2714), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2712), - [anon_sym_has2] = ACTIONS(2712), - [anon_sym_not_DASHhas2] = ACTIONS(2712), - [anon_sym_starts_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), - [anon_sym_ends_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), - [anon_sym_EQ_EQ2] = ACTIONS(2712), - [anon_sym_BANG_EQ2] = ACTIONS(2712), - [anon_sym_LT2] = ACTIONS(2714), - [anon_sym_LT_EQ2] = ACTIONS(2712), - [anon_sym_GT_EQ2] = ACTIONS(2712), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2714), - [anon_sym_mod2] = ACTIONS(2712), - [anon_sym_SLASH_SLASH2] = ACTIONS(2712), - [anon_sym_PLUS2] = ACTIONS(2714), - [anon_sym_bit_DASHshl2] = ACTIONS(2712), - [anon_sym_bit_DASHshr2] = ACTIONS(2712), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2772), + [sym__newline] = ACTIONS(2772), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_err_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_GT_PIPE] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_GT2] = ACTIONS(2806), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2772), + [anon_sym_xor2] = ACTIONS(2772), + [anon_sym_or2] = ACTIONS(2772), + [anon_sym_not_DASHin2] = ACTIONS(2772), + [anon_sym_has2] = ACTIONS(2772), + [anon_sym_not_DASHhas2] = ACTIONS(2772), + [anon_sym_starts_DASHwith2] = ACTIONS(2772), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2772), + [anon_sym_ends_DASHwith2] = ACTIONS(2772), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2772), + [anon_sym_EQ_EQ2] = ACTIONS(2814), + [anon_sym_BANG_EQ2] = ACTIONS(2814), + [anon_sym_LT2] = ACTIONS(2806), + [anon_sym_LT_EQ2] = ACTIONS(2814), + [anon_sym_GT_EQ2] = ACTIONS(2814), + [anon_sym_EQ_TILDE2] = ACTIONS(2772), + [anon_sym_BANG_TILDE2] = ACTIONS(2772), + [anon_sym_like2] = ACTIONS(2772), + [anon_sym_not_DASHlike2] = ACTIONS(2772), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2772), + [anon_sym_bit_DASHxor2] = ACTIONS(2772), + [anon_sym_bit_DASHor2] = ACTIONS(2772), + [anon_sym_err_GT] = ACTIONS(2774), + [anon_sym_out_GT] = ACTIONS(2774), + [anon_sym_e_GT] = ACTIONS(2774), + [anon_sym_o_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT] = ACTIONS(2774), + [anon_sym_err_GT_GT] = ACTIONS(2772), + [anon_sym_out_GT_GT] = ACTIONS(2772), + [anon_sym_e_GT_GT] = ACTIONS(2772), + [anon_sym_o_GT_GT] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1155)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1155), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2688), + [sym__newline] = ACTIONS(2688), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_err_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_GT_PIPE] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), + [anon_sym_RPAREN] = ACTIONS(2688), + [anon_sym_GT2] = ACTIONS(2690), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2688), + [anon_sym_xor2] = ACTIONS(2688), + [anon_sym_or2] = ACTIONS(2688), + [anon_sym_not_DASHin2] = ACTIONS(2688), + [anon_sym_has2] = ACTIONS(2688), + [anon_sym_not_DASHhas2] = ACTIONS(2688), + [anon_sym_starts_DASHwith2] = ACTIONS(2688), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2688), + [anon_sym_ends_DASHwith2] = ACTIONS(2688), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2688), + [anon_sym_EQ_EQ2] = ACTIONS(2688), + [anon_sym_BANG_EQ2] = ACTIONS(2688), + [anon_sym_LT2] = ACTIONS(2690), + [anon_sym_LT_EQ2] = ACTIONS(2688), + [anon_sym_GT_EQ2] = ACTIONS(2688), + [anon_sym_EQ_TILDE2] = ACTIONS(2688), + [anon_sym_BANG_TILDE2] = ACTIONS(2688), + [anon_sym_like2] = ACTIONS(2688), + [anon_sym_not_DASHlike2] = ACTIONS(2688), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2688), + [anon_sym_bit_DASHxor2] = ACTIONS(2688), + [anon_sym_bit_DASHor2] = ACTIONS(2688), + [anon_sym_err_GT] = ACTIONS(2690), + [anon_sym_out_GT] = ACTIONS(2690), + [anon_sym_e_GT] = ACTIONS(2690), + [anon_sym_o_GT] = ACTIONS(2690), + [anon_sym_err_PLUSout_GT] = ACTIONS(2690), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), + [anon_sym_o_PLUSe_GT] = ACTIONS(2690), + [anon_sym_e_PLUSo_GT] = ACTIONS(2690), + [anon_sym_err_GT_GT] = ACTIONS(2688), + [anon_sym_out_GT_GT] = ACTIONS(2688), + [anon_sym_e_GT_GT] = ACTIONS(2688), + [anon_sym_o_GT_GT] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1156)] = { - [aux_sym__repeat_newline] = STATE(1213), + [aux_sym__repeat_newline] = STATE(1240), [sym_comment] = STATE(1156), - [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2704), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2702), - [anon_sym_has2] = ACTIONS(2702), - [anon_sym_not_DASHhas2] = ACTIONS(2702), - [anon_sym_starts_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2702), - [anon_sym_ends_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2702), - [anon_sym_EQ_EQ2] = ACTIONS(2702), - [anon_sym_BANG_EQ2] = ACTIONS(2702), - [anon_sym_LT2] = ACTIONS(2704), - [anon_sym_LT_EQ2] = ACTIONS(2702), - [anon_sym_GT_EQ2] = ACTIONS(2702), - [anon_sym_EQ_TILDE2] = ACTIONS(2702), - [anon_sym_BANG_TILDE2] = ACTIONS(2702), - [anon_sym_like2] = ACTIONS(2702), - [anon_sym_not_DASHlike2] = ACTIONS(2702), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(2768), + [sym__newline] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2768), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_err_GT_PIPE] = ACTIONS(2768), + [anon_sym_out_GT_PIPE] = ACTIONS(2768), + [anon_sym_e_GT_PIPE] = ACTIONS(2768), + [anon_sym_o_GT_PIPE] = ACTIONS(2768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2768), + [anon_sym_RPAREN] = ACTIONS(2768), + [anon_sym_GT2] = ACTIONS(2770), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2768), + [anon_sym_xor2] = ACTIONS(2768), + [anon_sym_or2] = ACTIONS(2768), + [anon_sym_not_DASHin2] = ACTIONS(2768), + [anon_sym_has2] = ACTIONS(2768), + [anon_sym_not_DASHhas2] = ACTIONS(2768), + [anon_sym_starts_DASHwith2] = ACTIONS(2768), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2768), + [anon_sym_ends_DASHwith2] = ACTIONS(2768), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2768), + [anon_sym_EQ_EQ2] = ACTIONS(2768), + [anon_sym_BANG_EQ2] = ACTIONS(2768), + [anon_sym_LT2] = ACTIONS(2770), + [anon_sym_LT_EQ2] = ACTIONS(2768), + [anon_sym_GT_EQ2] = ACTIONS(2768), + [anon_sym_EQ_TILDE2] = ACTIONS(2768), + [anon_sym_BANG_TILDE2] = ACTIONS(2768), + [anon_sym_like2] = ACTIONS(2768), + [anon_sym_not_DASHlike2] = ACTIONS(2768), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), + [anon_sym_bit_DASHand2] = ACTIONS(2768), + [anon_sym_bit_DASHxor2] = ACTIONS(2768), + [anon_sym_bit_DASHor2] = ACTIONS(2768), + [anon_sym_err_GT] = ACTIONS(2770), + [anon_sym_out_GT] = ACTIONS(2770), + [anon_sym_e_GT] = ACTIONS(2770), + [anon_sym_o_GT] = ACTIONS(2770), + [anon_sym_err_PLUSout_GT] = ACTIONS(2770), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2770), + [anon_sym_o_PLUSe_GT] = ACTIONS(2770), + [anon_sym_e_PLUSo_GT] = ACTIONS(2770), + [anon_sym_err_GT_GT] = ACTIONS(2768), + [anon_sym_out_GT_GT] = ACTIONS(2768), + [anon_sym_e_GT_GT] = ACTIONS(2768), + [anon_sym_o_GT_GT] = ACTIONS(2768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2768), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1157)] = { - [aux_sym__repeat_newline] = STATE(1208), + [sym__expression] = STATE(4806), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2216), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1826), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), [sym_comment] = STATE(1157), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2533), + [anon_sym_true] = ACTIONS(2535), + [anon_sym_false] = ACTIONS(2535), + [anon_sym_null] = ACTIONS(2537), + [aux_sym_cmd_identifier_token3] = ACTIONS(2539), + [aux_sym_cmd_identifier_token4] = ACTIONS(2539), + [aux_sym_cmd_identifier_token5] = ACTIONS(2539), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1976), + [aux_sym__val_number_decimal_token3] = ACTIONS(2543), + [aux_sym__val_number_decimal_token4] = ACTIONS(2543), + [aux_sym__val_number_token1] = ACTIONS(2539), + [aux_sym__val_number_token2] = ACTIONS(2539), + [aux_sym__val_number_token3] = ACTIONS(2539), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2545), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1158)] = { - [aux_sym__repeat_newline] = STATE(1214), + [aux_sym__repeat_newline] = STATE(1197), [sym_comment] = STATE(1158), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), + [anon_sym_in] = ACTIONS(2832), + [sym__newline] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_err_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_GT_PIPE] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), + [anon_sym_RPAREN] = ACTIONS(2676), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2842), + [anon_sym_xor2] = ACTIONS(2844), + [anon_sym_or2] = ACTIONS(2676), + [anon_sym_not_DASHin2] = ACTIONS(2832), + [anon_sym_has2] = ACTIONS(2832), + [anon_sym_not_DASHhas2] = ACTIONS(2832), + [anon_sym_starts_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), + [anon_sym_ends_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), + [anon_sym_EQ_EQ2] = ACTIONS(2846), + [anon_sym_BANG_EQ2] = ACTIONS(2846), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2846), + [anon_sym_GT_EQ2] = ACTIONS(2846), + [anon_sym_EQ_TILDE2] = ACTIONS(2848), + [anon_sym_BANG_TILDE2] = ACTIONS(2848), + [anon_sym_like2] = ACTIONS(2848), + [anon_sym_not_DASHlike2] = ACTIONS(2848), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), [anon_sym_bit_DASHand2] = ACTIONS(2858), [anon_sym_bit_DASHxor2] = ACTIONS(2860), [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_err_GT] = ACTIONS(2678), + [anon_sym_out_GT] = ACTIONS(2678), + [anon_sym_e_GT] = ACTIONS(2678), + [anon_sym_o_GT] = ACTIONS(2678), + [anon_sym_err_PLUSout_GT] = ACTIONS(2678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), + [anon_sym_o_PLUSe_GT] = ACTIONS(2678), + [anon_sym_e_PLUSo_GT] = ACTIONS(2678), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1159)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1159), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2706), - [anon_sym_BANG_TILDE2] = ACTIONS(2706), - [anon_sym_like2] = ACTIONS(2706), - [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2772), + [sym__newline] = ACTIONS(2772), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_err_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_GT_PIPE] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_GT2] = ACTIONS(2774), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2772), + [anon_sym_xor2] = ACTIONS(2772), + [anon_sym_or2] = ACTIONS(2772), + [anon_sym_not_DASHin2] = ACTIONS(2772), + [anon_sym_has2] = ACTIONS(2772), + [anon_sym_not_DASHhas2] = ACTIONS(2772), + [anon_sym_starts_DASHwith2] = ACTIONS(2772), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2772), + [anon_sym_ends_DASHwith2] = ACTIONS(2772), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2772), + [anon_sym_EQ_EQ2] = ACTIONS(2772), + [anon_sym_BANG_EQ2] = ACTIONS(2772), + [anon_sym_LT2] = ACTIONS(2774), + [anon_sym_LT_EQ2] = ACTIONS(2772), + [anon_sym_GT_EQ2] = ACTIONS(2772), + [anon_sym_EQ_TILDE2] = ACTIONS(2772), + [anon_sym_BANG_TILDE2] = ACTIONS(2772), + [anon_sym_like2] = ACTIONS(2772), + [anon_sym_not_DASHlike2] = ACTIONS(2772), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2772), + [anon_sym_bit_DASHxor2] = ACTIONS(2772), + [anon_sym_bit_DASHor2] = ACTIONS(2772), + [anon_sym_err_GT] = ACTIONS(2774), + [anon_sym_out_GT] = ACTIONS(2774), + [anon_sym_e_GT] = ACTIONS(2774), + [anon_sym_o_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT] = ACTIONS(2774), + [anon_sym_err_GT_GT] = ACTIONS(2772), + [anon_sym_out_GT_GT] = ACTIONS(2772), + [anon_sym_e_GT_GT] = ACTIONS(2772), + [anon_sym_o_GT_GT] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1160)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1160), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2688), + [sym__newline] = ACTIONS(2688), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_err_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_GT_PIPE] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), + [anon_sym_RPAREN] = ACTIONS(2688), + [anon_sym_GT2] = ACTIONS(2690), + [anon_sym_DASH2] = ACTIONS(2688), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2688), + [anon_sym_xor2] = ACTIONS(2688), + [anon_sym_or2] = ACTIONS(2688), + [anon_sym_not_DASHin2] = ACTIONS(2688), + [anon_sym_has2] = ACTIONS(2688), + [anon_sym_not_DASHhas2] = ACTIONS(2688), + [anon_sym_starts_DASHwith2] = ACTIONS(2688), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2688), + [anon_sym_ends_DASHwith2] = ACTIONS(2688), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2688), + [anon_sym_EQ_EQ2] = ACTIONS(2688), + [anon_sym_BANG_EQ2] = ACTIONS(2688), + [anon_sym_LT2] = ACTIONS(2690), + [anon_sym_LT_EQ2] = ACTIONS(2688), + [anon_sym_GT_EQ2] = ACTIONS(2688), + [anon_sym_EQ_TILDE2] = ACTIONS(2688), + [anon_sym_BANG_TILDE2] = ACTIONS(2688), + [anon_sym_like2] = ACTIONS(2688), + [anon_sym_not_DASHlike2] = ACTIONS(2688), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2690), + [anon_sym_bit_DASHshl2] = ACTIONS(2688), + [anon_sym_bit_DASHshr2] = ACTIONS(2688), + [anon_sym_bit_DASHand2] = ACTIONS(2688), + [anon_sym_bit_DASHxor2] = ACTIONS(2688), + [anon_sym_bit_DASHor2] = ACTIONS(2688), + [anon_sym_err_GT] = ACTIONS(2690), + [anon_sym_out_GT] = ACTIONS(2690), + [anon_sym_e_GT] = ACTIONS(2690), + [anon_sym_o_GT] = ACTIONS(2690), + [anon_sym_err_PLUSout_GT] = ACTIONS(2690), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), + [anon_sym_o_PLUSe_GT] = ACTIONS(2690), + [anon_sym_e_PLUSo_GT] = ACTIONS(2690), + [anon_sym_err_GT_GT] = ACTIONS(2688), + [anon_sym_out_GT_GT] = ACTIONS(2688), + [anon_sym_e_GT_GT] = ACTIONS(2688), + [anon_sym_o_GT_GT] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1161)] = { - [aux_sym__repeat_newline] = STATE(1155), + [aux_sym__repeat_newline] = STATE(1242), [sym_comment] = STATE(1161), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2768), + [sym__newline] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2768), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_err_GT_PIPE] = ACTIONS(2768), + [anon_sym_out_GT_PIPE] = ACTIONS(2768), + [anon_sym_e_GT_PIPE] = ACTIONS(2768), + [anon_sym_o_GT_PIPE] = ACTIONS(2768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2768), + [anon_sym_RPAREN] = ACTIONS(2768), + [anon_sym_GT2] = ACTIONS(2770), + [anon_sym_DASH2] = ACTIONS(2768), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2768), + [anon_sym_xor2] = ACTIONS(2768), + [anon_sym_or2] = ACTIONS(2768), + [anon_sym_not_DASHin2] = ACTIONS(2768), + [anon_sym_has2] = ACTIONS(2768), + [anon_sym_not_DASHhas2] = ACTIONS(2768), + [anon_sym_starts_DASHwith2] = ACTIONS(2768), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2768), + [anon_sym_ends_DASHwith2] = ACTIONS(2768), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2768), + [anon_sym_EQ_EQ2] = ACTIONS(2768), + [anon_sym_BANG_EQ2] = ACTIONS(2768), + [anon_sym_LT2] = ACTIONS(2770), + [anon_sym_LT_EQ2] = ACTIONS(2768), + [anon_sym_GT_EQ2] = ACTIONS(2768), + [anon_sym_EQ_TILDE2] = ACTIONS(2768), + [anon_sym_BANG_TILDE2] = ACTIONS(2768), + [anon_sym_like2] = ACTIONS(2768), + [anon_sym_not_DASHlike2] = ACTIONS(2768), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2770), + [anon_sym_bit_DASHshl2] = ACTIONS(2768), + [anon_sym_bit_DASHshr2] = ACTIONS(2768), + [anon_sym_bit_DASHand2] = ACTIONS(2768), + [anon_sym_bit_DASHxor2] = ACTIONS(2768), + [anon_sym_bit_DASHor2] = ACTIONS(2768), + [anon_sym_err_GT] = ACTIONS(2770), + [anon_sym_out_GT] = ACTIONS(2770), + [anon_sym_e_GT] = ACTIONS(2770), + [anon_sym_o_GT] = ACTIONS(2770), + [anon_sym_err_PLUSout_GT] = ACTIONS(2770), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2770), + [anon_sym_o_PLUSe_GT] = ACTIONS(2770), + [anon_sym_e_PLUSo_GT] = ACTIONS(2770), + [anon_sym_err_GT_GT] = ACTIONS(2768), + [anon_sym_out_GT_GT] = ACTIONS(2768), + [anon_sym_e_GT_GT] = ACTIONS(2768), + [anon_sym_o_GT_GT] = ACTIONS(2768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2768), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1162)] = { - [aux_sym__repeat_newline] = STATE(1210), + [sym__expression] = STATE(4809), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2216), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1826), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), [sym_comment] = STATE(1162), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2914), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2533), + [anon_sym_true] = ACTIONS(2535), + [anon_sym_false] = ACTIONS(2535), + [anon_sym_null] = ACTIONS(2537), + [aux_sym_cmd_identifier_token3] = ACTIONS(2539), + [aux_sym_cmd_identifier_token4] = ACTIONS(2539), + [aux_sym_cmd_identifier_token5] = ACTIONS(2539), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1976), + [aux_sym__val_number_decimal_token3] = ACTIONS(2543), + [aux_sym__val_number_decimal_token4] = ACTIONS(2543), + [aux_sym__val_number_token1] = ACTIONS(2539), + [aux_sym__val_number_token2] = ACTIONS(2539), + [aux_sym__val_number_token3] = ACTIONS(2539), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2545), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1163)] = { + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1163), - [ts_builtin_sym_end] = ACTIONS(2501), - [aux_sym_cmd_identifier_token2] = ACTIONS(2916), - [anon_sym_in] = ACTIONS(2503), - [sym__newline] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_PIPE] = ACTIONS(2501), - [anon_sym_err_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_GT_PIPE] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2501), - [anon_sym_GT2] = ACTIONS(2503), - [anon_sym_DASH2] = ACTIONS(2503), - [anon_sym_STAR2] = ACTIONS(2503), - [anon_sym_and2] = ACTIONS(2503), - [anon_sym_xor2] = ACTIONS(2503), - [anon_sym_or2] = ACTIONS(2503), - [anon_sym_not_DASHin2] = ACTIONS(2503), - [anon_sym_has2] = ACTIONS(2503), - [anon_sym_not_DASHhas2] = ACTIONS(2503), - [anon_sym_starts_DASHwith2] = ACTIONS(2503), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2503), - [anon_sym_ends_DASHwith2] = ACTIONS(2503), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2503), - [anon_sym_EQ_EQ2] = ACTIONS(2501), - [anon_sym_BANG_EQ2] = ACTIONS(2501), - [anon_sym_LT2] = ACTIONS(2503), - [anon_sym_LT_EQ2] = ACTIONS(2501), - [anon_sym_GT_EQ2] = ACTIONS(2501), - [anon_sym_EQ_TILDE2] = ACTIONS(2501), - [anon_sym_BANG_TILDE2] = ACTIONS(2503), - [anon_sym_like2] = ACTIONS(2503), - [anon_sym_not_DASHlike2] = ACTIONS(2503), - [anon_sym_STAR_STAR2] = ACTIONS(2503), - [anon_sym_PLUS_PLUS2] = ACTIONS(2503), - [anon_sym_SLASH2] = ACTIONS(2503), - [anon_sym_mod2] = ACTIONS(2503), - [anon_sym_SLASH_SLASH2] = ACTIONS(2503), - [anon_sym_PLUS2] = ACTIONS(2503), - [anon_sym_bit_DASHshl2] = ACTIONS(2503), - [anon_sym_bit_DASHshr2] = ACTIONS(2503), - [anon_sym_bit_DASHand2] = ACTIONS(2503), - [anon_sym_bit_DASHxor2] = ACTIONS(2503), - [anon_sym_bit_DASHor2] = ACTIONS(2503), - [anon_sym_err_GT] = ACTIONS(2503), - [anon_sym_out_GT] = ACTIONS(2503), - [anon_sym_e_GT] = ACTIONS(2503), - [anon_sym_o_GT] = ACTIONS(2503), - [anon_sym_err_PLUSout_GT] = ACTIONS(2503), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2503), - [anon_sym_o_PLUSe_GT] = ACTIONS(2503), - [anon_sym_e_PLUSo_GT] = ACTIONS(2503), - [anon_sym_err_GT_GT] = ACTIONS(2501), - [anon_sym_out_GT_GT] = ACTIONS(2501), - [anon_sym_e_GT_GT] = ACTIONS(2501), - [anon_sym_o_GT_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2501), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(2692), + [sym__newline] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_err_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_GT_PIPE] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), + [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_GT2] = ACTIONS(2694), + [anon_sym_DASH2] = ACTIONS(2692), + [anon_sym_STAR2] = ACTIONS(2694), + [anon_sym_and2] = ACTIONS(2692), + [anon_sym_xor2] = ACTIONS(2692), + [anon_sym_or2] = ACTIONS(2692), + [anon_sym_not_DASHin2] = ACTIONS(2692), + [anon_sym_has2] = ACTIONS(2692), + [anon_sym_not_DASHhas2] = ACTIONS(2692), + [anon_sym_starts_DASHwith2] = ACTIONS(2692), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2692), + [anon_sym_ends_DASHwith2] = ACTIONS(2692), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2692), + [anon_sym_EQ_EQ2] = ACTIONS(2692), + [anon_sym_BANG_EQ2] = ACTIONS(2692), + [anon_sym_LT2] = ACTIONS(2694), + [anon_sym_LT_EQ2] = ACTIONS(2692), + [anon_sym_GT_EQ2] = ACTIONS(2692), + [anon_sym_EQ_TILDE2] = ACTIONS(2692), + [anon_sym_BANG_TILDE2] = ACTIONS(2692), + [anon_sym_like2] = ACTIONS(2692), + [anon_sym_not_DASHlike2] = ACTIONS(2692), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2694), + [anon_sym_mod2] = ACTIONS(2692), + [anon_sym_SLASH_SLASH2] = ACTIONS(2692), + [anon_sym_PLUS2] = ACTIONS(2694), + [anon_sym_bit_DASHshl2] = ACTIONS(2692), + [anon_sym_bit_DASHshr2] = ACTIONS(2692), + [anon_sym_bit_DASHand2] = ACTIONS(2692), + [anon_sym_bit_DASHxor2] = ACTIONS(2692), + [anon_sym_bit_DASHor2] = ACTIONS(2692), + [anon_sym_err_GT] = ACTIONS(2694), + [anon_sym_out_GT] = ACTIONS(2694), + [anon_sym_e_GT] = ACTIONS(2694), + [anon_sym_o_GT] = ACTIONS(2694), + [anon_sym_err_PLUSout_GT] = ACTIONS(2694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), + [anon_sym_o_PLUSe_GT] = ACTIONS(2694), + [anon_sym_e_PLUSo_GT] = ACTIONS(2694), + [anon_sym_err_GT_GT] = ACTIONS(2692), + [anon_sym_out_GT_GT] = ACTIONS(2692), + [anon_sym_e_GT_GT] = ACTIONS(2692), + [anon_sym_o_GT_GT] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1164)] = { - [aux_sym__repeat_newline] = STATE(1160), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1164), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2772), + [sym__newline] = ACTIONS(2772), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_err_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_GT_PIPE] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_GT2] = ACTIONS(2774), + [anon_sym_DASH2] = ACTIONS(2772), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2772), + [anon_sym_xor2] = ACTIONS(2772), + [anon_sym_or2] = ACTIONS(2772), + [anon_sym_not_DASHin2] = ACTIONS(2772), + [anon_sym_has2] = ACTIONS(2772), + [anon_sym_not_DASHhas2] = ACTIONS(2772), + [anon_sym_starts_DASHwith2] = ACTIONS(2772), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2772), + [anon_sym_ends_DASHwith2] = ACTIONS(2772), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2772), + [anon_sym_EQ_EQ2] = ACTIONS(2772), + [anon_sym_BANG_EQ2] = ACTIONS(2772), + [anon_sym_LT2] = ACTIONS(2774), + [anon_sym_LT_EQ2] = ACTIONS(2772), + [anon_sym_GT_EQ2] = ACTIONS(2772), + [anon_sym_EQ_TILDE2] = ACTIONS(2772), + [anon_sym_BANG_TILDE2] = ACTIONS(2772), + [anon_sym_like2] = ACTIONS(2772), + [anon_sym_not_DASHlike2] = ACTIONS(2772), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2774), + [anon_sym_bit_DASHshl2] = ACTIONS(2772), + [anon_sym_bit_DASHshr2] = ACTIONS(2772), + [anon_sym_bit_DASHand2] = ACTIONS(2772), + [anon_sym_bit_DASHxor2] = ACTIONS(2772), + [anon_sym_bit_DASHor2] = ACTIONS(2772), + [anon_sym_err_GT] = ACTIONS(2774), + [anon_sym_out_GT] = ACTIONS(2774), + [anon_sym_e_GT] = ACTIONS(2774), + [anon_sym_o_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT] = ACTIONS(2774), + [anon_sym_err_GT_GT] = ACTIONS(2772), + [anon_sym_out_GT_GT] = ACTIONS(2772), + [anon_sym_e_GT_GT] = ACTIONS(2772), + [anon_sym_o_GT_GT] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1165)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1165), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2918), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2688), + [sym__newline] = ACTIONS(2688), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_err_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_GT_PIPE] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), + [anon_sym_RPAREN] = ACTIONS(2688), + [anon_sym_GT2] = ACTIONS(2690), + [anon_sym_DASH2] = ACTIONS(2688), + [anon_sym_STAR2] = ACTIONS(2690), + [anon_sym_and2] = ACTIONS(2688), + [anon_sym_xor2] = ACTIONS(2688), + [anon_sym_or2] = ACTIONS(2688), + [anon_sym_not_DASHin2] = ACTIONS(2688), + [anon_sym_has2] = ACTIONS(2688), + [anon_sym_not_DASHhas2] = ACTIONS(2688), + [anon_sym_starts_DASHwith2] = ACTIONS(2688), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2688), + [anon_sym_ends_DASHwith2] = ACTIONS(2688), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2688), + [anon_sym_EQ_EQ2] = ACTIONS(2688), + [anon_sym_BANG_EQ2] = ACTIONS(2688), + [anon_sym_LT2] = ACTIONS(2690), + [anon_sym_LT_EQ2] = ACTIONS(2688), + [anon_sym_GT_EQ2] = ACTIONS(2688), + [anon_sym_EQ_TILDE2] = ACTIONS(2688), + [anon_sym_BANG_TILDE2] = ACTIONS(2688), + [anon_sym_like2] = ACTIONS(2688), + [anon_sym_not_DASHlike2] = ACTIONS(2688), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2690), + [anon_sym_mod2] = ACTIONS(2688), + [anon_sym_SLASH_SLASH2] = ACTIONS(2688), + [anon_sym_PLUS2] = ACTIONS(2690), + [anon_sym_bit_DASHshl2] = ACTIONS(2688), + [anon_sym_bit_DASHshr2] = ACTIONS(2688), + [anon_sym_bit_DASHand2] = ACTIONS(2688), + [anon_sym_bit_DASHxor2] = ACTIONS(2688), + [anon_sym_bit_DASHor2] = ACTIONS(2688), + [anon_sym_err_GT] = ACTIONS(2690), + [anon_sym_out_GT] = ACTIONS(2690), + [anon_sym_e_GT] = ACTIONS(2690), + [anon_sym_o_GT] = ACTIONS(2690), + [anon_sym_err_PLUSout_GT] = ACTIONS(2690), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), + [anon_sym_o_PLUSe_GT] = ACTIONS(2690), + [anon_sym_e_PLUSo_GT] = ACTIONS(2690), + [anon_sym_err_GT_GT] = ACTIONS(2688), + [anon_sym_out_GT_GT] = ACTIONS(2688), + [anon_sym_e_GT_GT] = ACTIONS(2688), + [anon_sym_o_GT_GT] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1166)] = { + [aux_sym__repeat_newline] = STATE(1245), [sym_comment] = STATE(1166), - [anon_sym_in] = ACTIONS(2276), - [sym__newline] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_PIPE] = ACTIONS(2276), - [anon_sym_err_GT_PIPE] = ACTIONS(2276), - [anon_sym_out_GT_PIPE] = ACTIONS(2276), - [anon_sym_e_GT_PIPE] = ACTIONS(2276), - [anon_sym_o_GT_PIPE] = ACTIONS(2276), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2276), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2276), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2276), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2276), - [anon_sym_RPAREN] = ACTIONS(2276), - [anon_sym_GT2] = ACTIONS(2278), - [anon_sym_DASH2] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_STAR2] = ACTIONS(2278), - [anon_sym_and2] = ACTIONS(2276), - [anon_sym_xor2] = ACTIONS(2276), - [anon_sym_or2] = ACTIONS(2276), - [anon_sym_not_DASHin2] = ACTIONS(2276), - [anon_sym_has2] = ACTIONS(2276), - [anon_sym_not_DASHhas2] = ACTIONS(2276), - [anon_sym_starts_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2276), - [anon_sym_ends_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2276), - [anon_sym_EQ_EQ2] = ACTIONS(2276), - [anon_sym_BANG_EQ2] = ACTIONS(2276), - [anon_sym_LT2] = ACTIONS(2278), - [anon_sym_LT_EQ2] = ACTIONS(2276), - [anon_sym_GT_EQ2] = ACTIONS(2276), - [anon_sym_EQ_TILDE2] = ACTIONS(2276), - [anon_sym_BANG_TILDE2] = ACTIONS(2276), - [anon_sym_like2] = ACTIONS(2276), - [anon_sym_not_DASHlike2] = ACTIONS(2276), - [anon_sym_STAR_STAR2] = ACTIONS(2276), - [anon_sym_PLUS_PLUS2] = ACTIONS(2276), - [anon_sym_SLASH2] = ACTIONS(2278), - [anon_sym_mod2] = ACTIONS(2276), - [anon_sym_SLASH_SLASH2] = ACTIONS(2276), - [anon_sym_PLUS2] = ACTIONS(2278), - [anon_sym_bit_DASHshl2] = ACTIONS(2276), - [anon_sym_bit_DASHshr2] = ACTIONS(2276), - [anon_sym_bit_DASHand2] = ACTIONS(2276), - [anon_sym_bit_DASHxor2] = ACTIONS(2276), - [anon_sym_bit_DASHor2] = ACTIONS(2276), - [anon_sym_err_GT] = ACTIONS(2278), - [anon_sym_out_GT] = ACTIONS(2278), - [anon_sym_e_GT] = ACTIONS(2278), - [anon_sym_o_GT] = ACTIONS(2278), - [anon_sym_err_PLUSout_GT] = ACTIONS(2278), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2278), - [anon_sym_o_PLUSe_GT] = ACTIONS(2278), - [anon_sym_e_PLUSo_GT] = ACTIONS(2278), - [anon_sym_err_GT_GT] = ACTIONS(2276), - [anon_sym_out_GT_GT] = ACTIONS(2276), - [anon_sym_e_GT_GT] = ACTIONS(2276), - [anon_sym_o_GT_GT] = ACTIONS(2276), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2276), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2276), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2276), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2276), + [anon_sym_in] = ACTIONS(2768), + [sym__newline] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2768), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_err_GT_PIPE] = ACTIONS(2768), + [anon_sym_out_GT_PIPE] = ACTIONS(2768), + [anon_sym_e_GT_PIPE] = ACTIONS(2768), + [anon_sym_o_GT_PIPE] = ACTIONS(2768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2768), + [anon_sym_RPAREN] = ACTIONS(2768), + [anon_sym_GT2] = ACTIONS(2770), + [anon_sym_DASH2] = ACTIONS(2768), + [anon_sym_STAR2] = ACTIONS(2770), + [anon_sym_and2] = ACTIONS(2768), + [anon_sym_xor2] = ACTIONS(2768), + [anon_sym_or2] = ACTIONS(2768), + [anon_sym_not_DASHin2] = ACTIONS(2768), + [anon_sym_has2] = ACTIONS(2768), + [anon_sym_not_DASHhas2] = ACTIONS(2768), + [anon_sym_starts_DASHwith2] = ACTIONS(2768), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2768), + [anon_sym_ends_DASHwith2] = ACTIONS(2768), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2768), + [anon_sym_EQ_EQ2] = ACTIONS(2768), + [anon_sym_BANG_EQ2] = ACTIONS(2768), + [anon_sym_LT2] = ACTIONS(2770), + [anon_sym_LT_EQ2] = ACTIONS(2768), + [anon_sym_GT_EQ2] = ACTIONS(2768), + [anon_sym_EQ_TILDE2] = ACTIONS(2768), + [anon_sym_BANG_TILDE2] = ACTIONS(2768), + [anon_sym_like2] = ACTIONS(2768), + [anon_sym_not_DASHlike2] = ACTIONS(2768), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2770), + [anon_sym_mod2] = ACTIONS(2768), + [anon_sym_SLASH_SLASH2] = ACTIONS(2768), + [anon_sym_PLUS2] = ACTIONS(2770), + [anon_sym_bit_DASHshl2] = ACTIONS(2768), + [anon_sym_bit_DASHshr2] = ACTIONS(2768), + [anon_sym_bit_DASHand2] = ACTIONS(2768), + [anon_sym_bit_DASHxor2] = ACTIONS(2768), + [anon_sym_bit_DASHor2] = ACTIONS(2768), + [anon_sym_err_GT] = ACTIONS(2770), + [anon_sym_out_GT] = ACTIONS(2770), + [anon_sym_e_GT] = ACTIONS(2770), + [anon_sym_o_GT] = ACTIONS(2770), + [anon_sym_err_PLUSout_GT] = ACTIONS(2770), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2770), + [anon_sym_o_PLUSe_GT] = ACTIONS(2770), + [anon_sym_e_PLUSo_GT] = ACTIONS(2770), + [anon_sym_err_GT_GT] = ACTIONS(2768), + [anon_sym_out_GT_GT] = ACTIONS(2768), + [anon_sym_e_GT_GT] = ACTIONS(2768), + [anon_sym_o_GT_GT] = ACTIONS(2768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2768), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1167)] = { - [aux_sym__repeat_newline] = STATE(1212), [sym_comment] = STATE(1167), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(2325), + [aux_sym_cmd_identifier_token2] = ACTIONS(2878), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2325), + [anon_sym_SEMI] = ACTIONS(2325), + [anon_sym_PIPE] = ACTIONS(2325), + [anon_sym_err_GT_PIPE] = ACTIONS(2325), + [anon_sym_out_GT_PIPE] = ACTIONS(2325), + [anon_sym_e_GT_PIPE] = ACTIONS(2325), + [anon_sym_o_GT_PIPE] = ACTIONS(2325), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2325), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2325), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2325), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2325), + [anon_sym_GT2] = ACTIONS(2327), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_STAR2] = ACTIONS(2327), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2325), + [anon_sym_BANG_EQ2] = ACTIONS(2325), + [anon_sym_LT2] = ACTIONS(2327), + [anon_sym_LT_EQ2] = ACTIONS(2325), + [anon_sym_GT_EQ2] = ACTIONS(2325), + [anon_sym_EQ_TILDE2] = ACTIONS(2325), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2327), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2327), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2327), + [anon_sym_out_GT] = ACTIONS(2327), + [anon_sym_e_GT] = ACTIONS(2327), + [anon_sym_o_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT] = ACTIONS(2327), + [anon_sym_err_GT_GT] = ACTIONS(2325), + [anon_sym_out_GT_GT] = ACTIONS(2325), + [anon_sym_e_GT_GT] = ACTIONS(2325), + [anon_sym_o_GT_GT] = ACTIONS(2325), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2325), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2325), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2325), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2325), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1168)] = { - [aux_sym__repeat_newline] = STATE(1219), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1168), - [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2704), - [anon_sym_DASH2] = ACTIONS(2702), - [anon_sym_STAR2] = ACTIONS(2704), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2702), - [anon_sym_has2] = ACTIONS(2702), - [anon_sym_not_DASHhas2] = ACTIONS(2702), - [anon_sym_starts_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2702), - [anon_sym_ends_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2702), - [anon_sym_EQ_EQ2] = ACTIONS(2702), - [anon_sym_BANG_EQ2] = ACTIONS(2702), - [anon_sym_LT2] = ACTIONS(2704), - [anon_sym_LT_EQ2] = ACTIONS(2702), - [anon_sym_GT_EQ2] = ACTIONS(2702), - [anon_sym_EQ_TILDE2] = ACTIONS(2702), - [anon_sym_BANG_TILDE2] = ACTIONS(2702), - [anon_sym_like2] = ACTIONS(2702), - [anon_sym_not_DASHlike2] = ACTIONS(2702), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2704), - [anon_sym_mod2] = ACTIONS(2702), - [anon_sym_SLASH_SLASH2] = ACTIONS(2702), - [anon_sym_PLUS2] = ACTIONS(2704), - [anon_sym_bit_DASHshl2] = ACTIONS(2702), - [anon_sym_bit_DASHshr2] = ACTIONS(2702), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2688), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_err_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_GT_PIPE] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), + [anon_sym_RPAREN] = ACTIONS(2688), + [anon_sym_GT2] = ACTIONS(2806), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2688), + [anon_sym_xor2] = ACTIONS(2688), + [anon_sym_or2] = ACTIONS(2688), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2814), + [anon_sym_BANG_EQ2] = ACTIONS(2814), + [anon_sym_LT2] = ACTIONS(2806), + [anon_sym_LT_EQ2] = ACTIONS(2814), + [anon_sym_GT_EQ2] = ACTIONS(2814), + [anon_sym_EQ_TILDE2] = ACTIONS(2816), + [anon_sym_BANG_TILDE2] = ACTIONS(2816), + [anon_sym_like2] = ACTIONS(2816), + [anon_sym_not_DASHlike2] = ACTIONS(2816), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2826), + [anon_sym_bit_DASHxor2] = ACTIONS(2828), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2690), + [anon_sym_out_GT] = ACTIONS(2690), + [anon_sym_e_GT] = ACTIONS(2690), + [anon_sym_o_GT] = ACTIONS(2690), + [anon_sym_err_PLUSout_GT] = ACTIONS(2690), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), + [anon_sym_o_PLUSe_GT] = ACTIONS(2690), + [anon_sym_e_PLUSo_GT] = ACTIONS(2690), + [anon_sym_err_GT_GT] = ACTIONS(2688), + [anon_sym_out_GT_GT] = ACTIONS(2688), + [anon_sym_e_GT_GT] = ACTIONS(2688), + [anon_sym_o_GT_GT] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1169)] = { + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1169), - [ts_builtin_sym_end] = ACTIONS(2128), - [anon_sym_in] = ACTIONS(2128), - [sym__newline] = ACTIONS(2128), - [anon_sym_SEMI] = ACTIONS(2128), - [anon_sym_PIPE] = ACTIONS(2128), - [anon_sym_err_GT_PIPE] = ACTIONS(2128), - [anon_sym_out_GT_PIPE] = ACTIONS(2128), - [anon_sym_e_GT_PIPE] = ACTIONS(2128), - [anon_sym_o_GT_PIPE] = ACTIONS(2128), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2128), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2128), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2128), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2128), - [anon_sym_GT2] = ACTIONS(2130), - [anon_sym_DASH2] = ACTIONS(2128), - [anon_sym_STAR2] = ACTIONS(2130), - [anon_sym_and2] = ACTIONS(2128), - [anon_sym_xor2] = ACTIONS(2128), - [anon_sym_or2] = ACTIONS(2128), - [anon_sym_not_DASHin2] = ACTIONS(2128), - [anon_sym_has2] = ACTIONS(2128), - [anon_sym_not_DASHhas2] = ACTIONS(2128), - [anon_sym_starts_DASHwith2] = ACTIONS(2128), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2128), - [anon_sym_ends_DASHwith2] = ACTIONS(2128), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2128), - [anon_sym_EQ_EQ2] = ACTIONS(2128), - [anon_sym_BANG_EQ2] = ACTIONS(2128), - [anon_sym_LT2] = ACTIONS(2130), - [anon_sym_LT_EQ2] = ACTIONS(2128), - [anon_sym_GT_EQ2] = ACTIONS(2128), - [anon_sym_EQ_TILDE2] = ACTIONS(2128), - [anon_sym_BANG_TILDE2] = ACTIONS(2128), - [anon_sym_like2] = ACTIONS(2128), - [anon_sym_not_DASHlike2] = ACTIONS(2128), - [anon_sym_STAR_STAR2] = ACTIONS(2128), - [anon_sym_PLUS_PLUS2] = ACTIONS(2128), - [anon_sym_SLASH2] = ACTIONS(2130), - [anon_sym_mod2] = ACTIONS(2128), - [anon_sym_SLASH_SLASH2] = ACTIONS(2128), - [anon_sym_PLUS2] = ACTIONS(2130), - [anon_sym_bit_DASHshl2] = ACTIONS(2128), - [anon_sym_bit_DASHshr2] = ACTIONS(2128), - [anon_sym_bit_DASHand2] = ACTIONS(2128), - [anon_sym_bit_DASHxor2] = ACTIONS(2128), - [anon_sym_bit_DASHor2] = ACTIONS(2128), - [anon_sym_LBRACK2] = ACTIONS(2920), - [anon_sym_err_GT] = ACTIONS(2130), - [anon_sym_out_GT] = ACTIONS(2130), - [anon_sym_e_GT] = ACTIONS(2130), - [anon_sym_o_GT] = ACTIONS(2130), - [anon_sym_err_PLUSout_GT] = ACTIONS(2130), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2130), - [anon_sym_o_PLUSe_GT] = ACTIONS(2130), - [anon_sym_e_PLUSo_GT] = ACTIONS(2130), - [anon_sym_err_GT_GT] = ACTIONS(2128), - [anon_sym_out_GT_GT] = ACTIONS(2128), - [anon_sym_e_GT_GT] = ACTIONS(2128), - [anon_sym_o_GT_GT] = ACTIONS(2128), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2128), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2128), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2128), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2128), + [anon_sym_in] = ACTIONS(2772), + [sym__newline] = ACTIONS(2772), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_err_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_GT_PIPE] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_GT2] = ACTIONS(2774), + [anon_sym_DASH2] = ACTIONS(2772), + [anon_sym_STAR2] = ACTIONS(2774), + [anon_sym_and2] = ACTIONS(2772), + [anon_sym_xor2] = ACTIONS(2772), + [anon_sym_or2] = ACTIONS(2772), + [anon_sym_not_DASHin2] = ACTIONS(2772), + [anon_sym_has2] = ACTIONS(2772), + [anon_sym_not_DASHhas2] = ACTIONS(2772), + [anon_sym_starts_DASHwith2] = ACTIONS(2772), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2772), + [anon_sym_ends_DASHwith2] = ACTIONS(2772), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2772), + [anon_sym_EQ_EQ2] = ACTIONS(2772), + [anon_sym_BANG_EQ2] = ACTIONS(2772), + [anon_sym_LT2] = ACTIONS(2774), + [anon_sym_LT_EQ2] = ACTIONS(2772), + [anon_sym_GT_EQ2] = ACTIONS(2772), + [anon_sym_EQ_TILDE2] = ACTIONS(2772), + [anon_sym_BANG_TILDE2] = ACTIONS(2772), + [anon_sym_like2] = ACTIONS(2772), + [anon_sym_not_DASHlike2] = ACTIONS(2772), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2774), + [anon_sym_mod2] = ACTIONS(2772), + [anon_sym_SLASH_SLASH2] = ACTIONS(2772), + [anon_sym_PLUS2] = ACTIONS(2774), + [anon_sym_bit_DASHshl2] = ACTIONS(2772), + [anon_sym_bit_DASHshr2] = ACTIONS(2772), + [anon_sym_bit_DASHand2] = ACTIONS(2772), + [anon_sym_bit_DASHxor2] = ACTIONS(2772), + [anon_sym_bit_DASHor2] = ACTIONS(2772), + [anon_sym_err_GT] = ACTIONS(2774), + [anon_sym_out_GT] = ACTIONS(2774), + [anon_sym_e_GT] = ACTIONS(2774), + [anon_sym_o_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT] = ACTIONS(2774), + [anon_sym_err_GT_GT] = ACTIONS(2772), + [anon_sym_out_GT_GT] = ACTIONS(2772), + [anon_sym_e_GT_GT] = ACTIONS(2772), + [anon_sym_o_GT_GT] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1170)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym__expression] = STATE(4762), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2216), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1826), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), [sym_comment] = STATE(1170), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2732), - [anon_sym_BANG_TILDE2] = ACTIONS(2732), - [anon_sym_like2] = ACTIONS(2732), - [anon_sym_not_DASHlike2] = ACTIONS(2732), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2732), - [anon_sym_bit_DASHxor2] = ACTIONS(2732), - [anon_sym_bit_DASHor2] = ACTIONS(2732), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2878), + [anon_sym_true] = ACTIONS(2535), + [anon_sym_false] = ACTIONS(2535), + [anon_sym_null] = ACTIONS(2537), + [aux_sym_cmd_identifier_token3] = ACTIONS(2539), + [aux_sym_cmd_identifier_token4] = ACTIONS(2539), + [aux_sym_cmd_identifier_token5] = ACTIONS(2539), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1976), + [aux_sym__val_number_decimal_token3] = ACTIONS(2543), + [aux_sym__val_number_decimal_token4] = ACTIONS(2543), + [aux_sym__val_number_token1] = ACTIONS(2539), + [aux_sym__val_number_token2] = ACTIONS(2539), + [aux_sym__val_number_token3] = ACTIONS(2539), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2545), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1171)] = { - [aux_sym__repeat_newline] = STATE(1165), + [aux_sym__repeat_newline] = STATE(1247), [sym_comment] = STATE(1171), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2914), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), + [anon_sym_in] = ACTIONS(2832), + [sym__newline] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2768), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_err_GT_PIPE] = ACTIONS(2768), + [anon_sym_out_GT_PIPE] = ACTIONS(2768), + [anon_sym_e_GT_PIPE] = ACTIONS(2768), + [anon_sym_o_GT_PIPE] = ACTIONS(2768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2768), + [anon_sym_RPAREN] = ACTIONS(2768), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2768), + [anon_sym_xor2] = ACTIONS(2768), + [anon_sym_or2] = ACTIONS(2768), + [anon_sym_not_DASHin2] = ACTIONS(2832), + [anon_sym_has2] = ACTIONS(2832), + [anon_sym_not_DASHhas2] = ACTIONS(2832), + [anon_sym_starts_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), + [anon_sym_ends_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), + [anon_sym_EQ_EQ2] = ACTIONS(2846), + [anon_sym_BANG_EQ2] = ACTIONS(2846), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2846), + [anon_sym_GT_EQ2] = ACTIONS(2846), + [anon_sym_EQ_TILDE2] = ACTIONS(2848), + [anon_sym_BANG_TILDE2] = ACTIONS(2848), + [anon_sym_like2] = ACTIONS(2848), + [anon_sym_not_DASHlike2] = ACTIONS(2848), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), [anon_sym_bit_DASHand2] = ACTIONS(2858), [anon_sym_bit_DASHxor2] = ACTIONS(2860), [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_err_GT] = ACTIONS(2770), + [anon_sym_out_GT] = ACTIONS(2770), + [anon_sym_e_GT] = ACTIONS(2770), + [anon_sym_o_GT] = ACTIONS(2770), + [anon_sym_err_PLUSout_GT] = ACTIONS(2770), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2770), + [anon_sym_o_PLUSe_GT] = ACTIONS(2770), + [anon_sym_e_PLUSo_GT] = ACTIONS(2770), + [anon_sym_err_GT_GT] = ACTIONS(2768), + [anon_sym_out_GT_GT] = ACTIONS(2768), + [anon_sym_e_GT_GT] = ACTIONS(2768), + [anon_sym_o_GT_GT] = ACTIONS(2768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2768), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1172)] = { + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1172), - [ts_builtin_sym_end] = ACTIONS(2635), - [aux_sym_cmd_identifier_token2] = ACTIONS(2916), - [anon_sym_in] = ACTIONS(2637), - [sym__newline] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_PIPE] = ACTIONS(2635), - [anon_sym_err_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_GT_PIPE] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2635), - [anon_sym_GT2] = ACTIONS(2637), - [anon_sym_DASH2] = ACTIONS(2637), - [anon_sym_STAR2] = ACTIONS(2637), - [anon_sym_and2] = ACTIONS(2637), - [anon_sym_xor2] = ACTIONS(2637), - [anon_sym_or2] = ACTIONS(2637), - [anon_sym_not_DASHin2] = ACTIONS(2637), - [anon_sym_has2] = ACTIONS(2637), - [anon_sym_not_DASHhas2] = ACTIONS(2637), - [anon_sym_starts_DASHwith2] = ACTIONS(2637), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2637), - [anon_sym_ends_DASHwith2] = ACTIONS(2637), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2637), - [anon_sym_EQ_EQ2] = ACTIONS(2635), - [anon_sym_BANG_EQ2] = ACTIONS(2635), - [anon_sym_LT2] = ACTIONS(2637), - [anon_sym_LT_EQ2] = ACTIONS(2635), - [anon_sym_GT_EQ2] = ACTIONS(2635), - [anon_sym_EQ_TILDE2] = ACTIONS(2635), - [anon_sym_BANG_TILDE2] = ACTIONS(2637), - [anon_sym_like2] = ACTIONS(2637), - [anon_sym_not_DASHlike2] = ACTIONS(2637), - [anon_sym_STAR_STAR2] = ACTIONS(2637), - [anon_sym_PLUS_PLUS2] = ACTIONS(2637), - [anon_sym_SLASH2] = ACTIONS(2637), - [anon_sym_mod2] = ACTIONS(2637), - [anon_sym_SLASH_SLASH2] = ACTIONS(2637), - [anon_sym_PLUS2] = ACTIONS(2637), - [anon_sym_bit_DASHshl2] = ACTIONS(2637), - [anon_sym_bit_DASHshr2] = ACTIONS(2637), - [anon_sym_bit_DASHand2] = ACTIONS(2637), - [anon_sym_bit_DASHxor2] = ACTIONS(2637), - [anon_sym_bit_DASHor2] = ACTIONS(2637), - [anon_sym_err_GT] = ACTIONS(2637), - [anon_sym_out_GT] = ACTIONS(2637), - [anon_sym_e_GT] = ACTIONS(2637), - [anon_sym_o_GT] = ACTIONS(2637), - [anon_sym_err_PLUSout_GT] = ACTIONS(2637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2637), - [anon_sym_o_PLUSe_GT] = ACTIONS(2637), - [anon_sym_e_PLUSo_GT] = ACTIONS(2637), - [anon_sym_err_GT_GT] = ACTIONS(2635), - [anon_sym_out_GT_GT] = ACTIONS(2635), - [anon_sym_e_GT_GT] = ACTIONS(2635), - [anon_sym_o_GT_GT] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2635), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2688), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_err_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_GT_PIPE] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), + [anon_sym_RPAREN] = ACTIONS(2688), + [anon_sym_GT2] = ACTIONS(2806), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2812), + [anon_sym_xor2] = ACTIONS(2688), + [anon_sym_or2] = ACTIONS(2688), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2814), + [anon_sym_BANG_EQ2] = ACTIONS(2814), + [anon_sym_LT2] = ACTIONS(2806), + [anon_sym_LT_EQ2] = ACTIONS(2814), + [anon_sym_GT_EQ2] = ACTIONS(2814), + [anon_sym_EQ_TILDE2] = ACTIONS(2816), + [anon_sym_BANG_TILDE2] = ACTIONS(2816), + [anon_sym_like2] = ACTIONS(2816), + [anon_sym_not_DASHlike2] = ACTIONS(2816), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2826), + [anon_sym_bit_DASHxor2] = ACTIONS(2828), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2690), + [anon_sym_out_GT] = ACTIONS(2690), + [anon_sym_e_GT] = ACTIONS(2690), + [anon_sym_o_GT] = ACTIONS(2690), + [anon_sym_err_PLUSout_GT] = ACTIONS(2690), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), + [anon_sym_o_PLUSe_GT] = ACTIONS(2690), + [anon_sym_e_PLUSo_GT] = ACTIONS(2690), + [anon_sym_err_GT_GT] = ACTIONS(2688), + [anon_sym_out_GT_GT] = ACTIONS(2688), + [anon_sym_e_GT_GT] = ACTIONS(2688), + [anon_sym_o_GT_GT] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1173)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1168), [sym_comment] = STATE(1173), - [anon_sym_in] = ACTIONS(2706), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2708), - [anon_sym_DASH2] = ACTIONS(2706), - [anon_sym_STAR2] = ACTIONS(2708), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2706), - [anon_sym_has2] = ACTIONS(2706), - [anon_sym_not_DASHhas2] = ACTIONS(2706), - [anon_sym_starts_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), - [anon_sym_ends_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), - [anon_sym_EQ_EQ2] = ACTIONS(2706), - [anon_sym_BANG_EQ2] = ACTIONS(2706), - [anon_sym_LT2] = ACTIONS(2708), - [anon_sym_LT_EQ2] = ACTIONS(2706), - [anon_sym_GT_EQ2] = ACTIONS(2706), - [anon_sym_EQ_TILDE2] = ACTIONS(2706), - [anon_sym_BANG_TILDE2] = ACTIONS(2706), - [anon_sym_like2] = ACTIONS(2706), - [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2708), - [anon_sym_mod2] = ACTIONS(2706), - [anon_sym_SLASH_SLASH2] = ACTIONS(2706), - [anon_sym_PLUS2] = ACTIONS(2708), - [anon_sym_bit_DASHshl2] = ACTIONS(2706), - [anon_sym_bit_DASHshr2] = ACTIONS(2706), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2832), + [sym__newline] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(2684), + [anon_sym_PIPE] = ACTIONS(2684), + [anon_sym_err_GT_PIPE] = ACTIONS(2684), + [anon_sym_out_GT_PIPE] = ACTIONS(2684), + [anon_sym_e_GT_PIPE] = ACTIONS(2684), + [anon_sym_o_GT_PIPE] = ACTIONS(2684), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), + [anon_sym_RPAREN] = ACTIONS(2684), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2684), + [anon_sym_xor2] = ACTIONS(2684), + [anon_sym_or2] = ACTIONS(2684), + [anon_sym_not_DASHin2] = ACTIONS(2832), + [anon_sym_has2] = ACTIONS(2832), + [anon_sym_not_DASHhas2] = ACTIONS(2832), + [anon_sym_starts_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), + [anon_sym_ends_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), + [anon_sym_EQ_EQ2] = ACTIONS(2846), + [anon_sym_BANG_EQ2] = ACTIONS(2846), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2846), + [anon_sym_GT_EQ2] = ACTIONS(2846), + [anon_sym_EQ_TILDE2] = ACTIONS(2848), + [anon_sym_BANG_TILDE2] = ACTIONS(2848), + [anon_sym_like2] = ACTIONS(2848), + [anon_sym_not_DASHlike2] = ACTIONS(2848), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), + [anon_sym_bit_DASHand2] = ACTIONS(2858), + [anon_sym_bit_DASHxor2] = ACTIONS(2860), + [anon_sym_bit_DASHor2] = ACTIONS(2862), + [anon_sym_err_GT] = ACTIONS(2686), + [anon_sym_out_GT] = ACTIONS(2686), + [anon_sym_e_GT] = ACTIONS(2686), + [anon_sym_o_GT] = ACTIONS(2686), + [anon_sym_err_PLUSout_GT] = ACTIONS(2686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), + [anon_sym_o_PLUSe_GT] = ACTIONS(2686), + [anon_sym_e_PLUSo_GT] = ACTIONS(2686), + [anon_sym_err_GT_GT] = ACTIONS(2684), + [anon_sym_out_GT_GT] = ACTIONS(2684), + [anon_sym_e_GT_GT] = ACTIONS(2684), + [anon_sym_o_GT_GT] = ACTIONS(2684), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1174)] = { - [aux_sym__repeat_newline] = STATE(1170), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1174), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2772), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_err_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_GT_PIPE] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_GT2] = ACTIONS(2806), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2772), + [anon_sym_xor2] = ACTIONS(2772), + [anon_sym_or2] = ACTIONS(2772), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2814), + [anon_sym_BANG_EQ2] = ACTIONS(2814), + [anon_sym_LT2] = ACTIONS(2806), + [anon_sym_LT_EQ2] = ACTIONS(2814), + [anon_sym_GT_EQ2] = ACTIONS(2814), + [anon_sym_EQ_TILDE2] = ACTIONS(2816), + [anon_sym_BANG_TILDE2] = ACTIONS(2816), + [anon_sym_like2] = ACTIONS(2816), + [anon_sym_not_DASHlike2] = ACTIONS(2816), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2826), + [anon_sym_bit_DASHxor2] = ACTIONS(2828), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2774), + [anon_sym_out_GT] = ACTIONS(2774), + [anon_sym_e_GT] = ACTIONS(2774), + [anon_sym_o_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT] = ACTIONS(2774), + [anon_sym_err_GT_GT] = ACTIONS(2772), + [anon_sym_out_GT_GT] = ACTIONS(2772), + [anon_sym_e_GT_GT] = ACTIONS(2772), + [anon_sym_o_GT_GT] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1175)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1175), - [anon_sym_in] = ACTIONS(2706), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2708), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2706), - [anon_sym_has2] = ACTIONS(2706), - [anon_sym_not_DASHhas2] = ACTIONS(2706), - [anon_sym_starts_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), - [anon_sym_ends_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), - [anon_sym_EQ_EQ2] = ACTIONS(2706), - [anon_sym_BANG_EQ2] = ACTIONS(2706), - [anon_sym_LT2] = ACTIONS(2708), - [anon_sym_LT_EQ2] = ACTIONS(2706), - [anon_sym_GT_EQ2] = ACTIONS(2706), - [anon_sym_EQ_TILDE2] = ACTIONS(2706), - [anon_sym_BANG_TILDE2] = ACTIONS(2706), - [anon_sym_like2] = ACTIONS(2706), - [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2688), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_err_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_GT_PIPE] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), + [anon_sym_RPAREN] = ACTIONS(2688), + [anon_sym_GT2] = ACTIONS(2806), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2812), + [anon_sym_xor2] = ACTIONS(2873), + [anon_sym_or2] = ACTIONS(2688), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2814), + [anon_sym_BANG_EQ2] = ACTIONS(2814), + [anon_sym_LT2] = ACTIONS(2806), + [anon_sym_LT_EQ2] = ACTIONS(2814), + [anon_sym_GT_EQ2] = ACTIONS(2814), + [anon_sym_EQ_TILDE2] = ACTIONS(2816), + [anon_sym_BANG_TILDE2] = ACTIONS(2816), + [anon_sym_like2] = ACTIONS(2816), + [anon_sym_not_DASHlike2] = ACTIONS(2816), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2826), + [anon_sym_bit_DASHxor2] = ACTIONS(2828), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2690), + [anon_sym_out_GT] = ACTIONS(2690), + [anon_sym_e_GT] = ACTIONS(2690), + [anon_sym_o_GT] = ACTIONS(2690), + [anon_sym_err_PLUSout_GT] = ACTIONS(2690), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), + [anon_sym_o_PLUSe_GT] = ACTIONS(2690), + [anon_sym_e_PLUSo_GT] = ACTIONS(2690), + [anon_sym_err_GT_GT] = ACTIONS(2688), + [anon_sym_out_GT_GT] = ACTIONS(2688), + [anon_sym_e_GT_GT] = ACTIONS(2688), + [anon_sym_o_GT_GT] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1176)] = { - [aux_sym__repeat_newline] = STATE(1243), + [aux_sym__repeat_newline] = STATE(1249), [sym_comment] = STATE(1176), - [anon_sym_in] = ACTIONS(2744), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2744), - [anon_sym_has2] = ACTIONS(2744), - [anon_sym_not_DASHhas2] = ACTIONS(2744), - [anon_sym_starts_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2744), - [anon_sym_ends_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2744), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2832), + [sym__newline] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2768), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_err_GT_PIPE] = ACTIONS(2768), + [anon_sym_out_GT_PIPE] = ACTIONS(2768), + [anon_sym_e_GT_PIPE] = ACTIONS(2768), + [anon_sym_o_GT_PIPE] = ACTIONS(2768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2768), + [anon_sym_RPAREN] = ACTIONS(2768), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2842), + [anon_sym_xor2] = ACTIONS(2768), + [anon_sym_or2] = ACTIONS(2768), + [anon_sym_not_DASHin2] = ACTIONS(2832), + [anon_sym_has2] = ACTIONS(2832), + [anon_sym_not_DASHhas2] = ACTIONS(2832), + [anon_sym_starts_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), + [anon_sym_ends_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), + [anon_sym_EQ_EQ2] = ACTIONS(2846), + [anon_sym_BANG_EQ2] = ACTIONS(2846), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2846), + [anon_sym_GT_EQ2] = ACTIONS(2846), + [anon_sym_EQ_TILDE2] = ACTIONS(2848), + [anon_sym_BANG_TILDE2] = ACTIONS(2848), + [anon_sym_like2] = ACTIONS(2848), + [anon_sym_not_DASHlike2] = ACTIONS(2848), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), + [anon_sym_bit_DASHand2] = ACTIONS(2858), + [anon_sym_bit_DASHxor2] = ACTIONS(2860), + [anon_sym_bit_DASHor2] = ACTIONS(2862), + [anon_sym_err_GT] = ACTIONS(2770), + [anon_sym_out_GT] = ACTIONS(2770), + [anon_sym_e_GT] = ACTIONS(2770), + [anon_sym_o_GT] = ACTIONS(2770), + [anon_sym_err_PLUSout_GT] = ACTIONS(2770), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2770), + [anon_sym_o_PLUSe_GT] = ACTIONS(2770), + [anon_sym_e_PLUSo_GT] = ACTIONS(2770), + [anon_sym_err_GT_GT] = ACTIONS(2768), + [anon_sym_out_GT_GT] = ACTIONS(2768), + [anon_sym_e_GT_GT] = ACTIONS(2768), + [anon_sym_o_GT_GT] = ACTIONS(2768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2768), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1177)] = { - [aux_sym__repeat_newline] = STATE(1216), + [aux_sym__repeat_newline] = STATE(1169), [sym_comment] = STATE(1177), - [anon_sym_in] = ACTIONS(2728), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2730), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2728), - [anon_sym_has2] = ACTIONS(2728), - [anon_sym_not_DASHhas2] = ACTIONS(2728), - [anon_sym_starts_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2728), - [anon_sym_ends_DASHwith2] = ACTIONS(2728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2728), - [anon_sym_EQ_EQ2] = ACTIONS(2728), - [anon_sym_BANG_EQ2] = ACTIONS(2728), - [anon_sym_LT2] = ACTIONS(2730), - [anon_sym_LT_EQ2] = ACTIONS(2728), - [anon_sym_GT_EQ2] = ACTIONS(2728), - [anon_sym_EQ_TILDE2] = ACTIONS(2728), - [anon_sym_BANG_TILDE2] = ACTIONS(2728), - [anon_sym_like2] = ACTIONS(2728), - [anon_sym_not_DASHlike2] = ACTIONS(2728), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2728), - [anon_sym_bit_DASHshr2] = ACTIONS(2728), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2676), + [sym__newline] = ACTIONS(2864), + [anon_sym_SEMI] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_err_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_GT_PIPE] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), + [anon_sym_RPAREN] = ACTIONS(2676), + [anon_sym_GT2] = ACTIONS(2678), + [anon_sym_DASH2] = ACTIONS(2676), + [anon_sym_STAR2] = ACTIONS(2678), + [anon_sym_and2] = ACTIONS(2676), + [anon_sym_xor2] = ACTIONS(2676), + [anon_sym_or2] = ACTIONS(2676), + [anon_sym_not_DASHin2] = ACTIONS(2676), + [anon_sym_has2] = ACTIONS(2676), + [anon_sym_not_DASHhas2] = ACTIONS(2676), + [anon_sym_starts_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2676), + [anon_sym_ends_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2676), + [anon_sym_EQ_EQ2] = ACTIONS(2676), + [anon_sym_BANG_EQ2] = ACTIONS(2676), + [anon_sym_LT2] = ACTIONS(2678), + [anon_sym_LT_EQ2] = ACTIONS(2676), + [anon_sym_GT_EQ2] = ACTIONS(2676), + [anon_sym_EQ_TILDE2] = ACTIONS(2676), + [anon_sym_BANG_TILDE2] = ACTIONS(2676), + [anon_sym_like2] = ACTIONS(2676), + [anon_sym_not_DASHlike2] = ACTIONS(2676), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2678), + [anon_sym_mod2] = ACTIONS(2676), + [anon_sym_SLASH_SLASH2] = ACTIONS(2676), + [anon_sym_PLUS2] = ACTIONS(2678), + [anon_sym_bit_DASHshl2] = ACTIONS(2676), + [anon_sym_bit_DASHshr2] = ACTIONS(2676), + [anon_sym_bit_DASHand2] = ACTIONS(2676), + [anon_sym_bit_DASHxor2] = ACTIONS(2676), + [anon_sym_bit_DASHor2] = ACTIONS(2676), + [anon_sym_err_GT] = ACTIONS(2678), + [anon_sym_out_GT] = ACTIONS(2678), + [anon_sym_e_GT] = ACTIONS(2678), + [anon_sym_o_GT] = ACTIONS(2678), + [anon_sym_err_PLUSout_GT] = ACTIONS(2678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), + [anon_sym_o_PLUSe_GT] = ACTIONS(2678), + [anon_sym_e_PLUSo_GT] = ACTIONS(2678), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1178)] = { - [aux_sym__repeat_newline] = STATE(1238), + [aux_sym__repeat_newline] = STATE(1212), [sym_comment] = STATE(1178), - [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2704), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2702), - [anon_sym_has2] = ACTIONS(2702), - [anon_sym_not_DASHhas2] = ACTIONS(2702), - [anon_sym_starts_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2702), - [anon_sym_ends_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2702), - [anon_sym_EQ_EQ2] = ACTIONS(2702), - [anon_sym_BANG_EQ2] = ACTIONS(2702), - [anon_sym_LT2] = ACTIONS(2704), - [anon_sym_LT_EQ2] = ACTIONS(2702), - [anon_sym_GT_EQ2] = ACTIONS(2702), - [anon_sym_EQ_TILDE2] = ACTIONS(2702), - [anon_sym_BANG_TILDE2] = ACTIONS(2702), - [anon_sym_like2] = ACTIONS(2702), - [anon_sym_not_DASHlike2] = ACTIONS(2702), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2702), - [anon_sym_bit_DASHshr2] = ACTIONS(2702), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(2676), + [sym__newline] = ACTIONS(2864), + [anon_sym_SEMI] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_err_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_GT_PIPE] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), + [anon_sym_RPAREN] = ACTIONS(2676), + [anon_sym_GT2] = ACTIONS(2678), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2676), + [anon_sym_xor2] = ACTIONS(2676), + [anon_sym_or2] = ACTIONS(2676), + [anon_sym_not_DASHin2] = ACTIONS(2676), + [anon_sym_has2] = ACTIONS(2676), + [anon_sym_not_DASHhas2] = ACTIONS(2676), + [anon_sym_starts_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2676), + [anon_sym_ends_DASHwith2] = ACTIONS(2676), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2676), + [anon_sym_EQ_EQ2] = ACTIONS(2676), + [anon_sym_BANG_EQ2] = ACTIONS(2676), + [anon_sym_LT2] = ACTIONS(2678), + [anon_sym_LT_EQ2] = ACTIONS(2676), + [anon_sym_GT_EQ2] = ACTIONS(2676), + [anon_sym_EQ_TILDE2] = ACTIONS(2676), + [anon_sym_BANG_TILDE2] = ACTIONS(2676), + [anon_sym_like2] = ACTIONS(2676), + [anon_sym_not_DASHlike2] = ACTIONS(2676), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2676), + [anon_sym_bit_DASHshr2] = ACTIONS(2676), + [anon_sym_bit_DASHand2] = ACTIONS(2676), + [anon_sym_bit_DASHxor2] = ACTIONS(2676), + [anon_sym_bit_DASHor2] = ACTIONS(2676), + [anon_sym_err_GT] = ACTIONS(2678), + [anon_sym_out_GT] = ACTIONS(2678), + [anon_sym_e_GT] = ACTIONS(2678), + [anon_sym_o_GT] = ACTIONS(2678), + [anon_sym_err_PLUSout_GT] = ACTIONS(2678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), + [anon_sym_o_PLUSe_GT] = ACTIONS(2678), + [anon_sym_e_PLUSo_GT] = ACTIONS(2678), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1179)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1179), - [anon_sym_in] = ACTIONS(2732), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2734), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2732), - [anon_sym_has2] = ACTIONS(2732), - [anon_sym_not_DASHhas2] = ACTIONS(2732), - [anon_sym_starts_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2732), - [anon_sym_ends_DASHwith2] = ACTIONS(2732), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2732), - [anon_sym_EQ_EQ2] = ACTIONS(2732), - [anon_sym_BANG_EQ2] = ACTIONS(2732), - [anon_sym_LT2] = ACTIONS(2734), - [anon_sym_LT_EQ2] = ACTIONS(2732), - [anon_sym_GT_EQ2] = ACTIONS(2732), - [anon_sym_EQ_TILDE2] = ACTIONS(2732), - [anon_sym_BANG_TILDE2] = ACTIONS(2732), - [anon_sym_like2] = ACTIONS(2732), - [anon_sym_not_DASHlike2] = ACTIONS(2732), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2732), - [anon_sym_bit_DASHshr2] = ACTIONS(2732), - [anon_sym_bit_DASHand2] = ACTIONS(2732), - [anon_sym_bit_DASHxor2] = ACTIONS(2732), - [anon_sym_bit_DASHor2] = ACTIONS(2732), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2688), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_err_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_GT_PIPE] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), + [anon_sym_RPAREN] = ACTIONS(2688), + [anon_sym_GT2] = ACTIONS(2806), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2688), + [anon_sym_xor2] = ACTIONS(2688), + [anon_sym_or2] = ACTIONS(2688), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2814), + [anon_sym_BANG_EQ2] = ACTIONS(2814), + [anon_sym_LT2] = ACTIONS(2806), + [anon_sym_LT_EQ2] = ACTIONS(2814), + [anon_sym_GT_EQ2] = ACTIONS(2814), + [anon_sym_EQ_TILDE2] = ACTIONS(2688), + [anon_sym_BANG_TILDE2] = ACTIONS(2688), + [anon_sym_like2] = ACTIONS(2688), + [anon_sym_not_DASHlike2] = ACTIONS(2688), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2688), + [anon_sym_bit_DASHxor2] = ACTIONS(2688), + [anon_sym_bit_DASHor2] = ACTIONS(2688), + [anon_sym_err_GT] = ACTIONS(2690), + [anon_sym_out_GT] = ACTIONS(2690), + [anon_sym_e_GT] = ACTIONS(2690), + [anon_sym_o_GT] = ACTIONS(2690), + [anon_sym_err_PLUSout_GT] = ACTIONS(2690), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), + [anon_sym_o_PLUSe_GT] = ACTIONS(2690), + [anon_sym_e_PLUSo_GT] = ACTIONS(2690), + [anon_sym_err_GT_GT] = ACTIONS(2688), + [anon_sym_out_GT_GT] = ACTIONS(2688), + [anon_sym_e_GT_GT] = ACTIONS(2688), + [anon_sym_o_GT_GT] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1180)] = { - [aux_sym__repeat_newline] = STATE(1224), + [aux_sym__repeat_newline] = STATE(1155), [sym_comment] = STATE(1180), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(2684), + [sym__newline] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(2684), + [anon_sym_PIPE] = ACTIONS(2684), + [anon_sym_err_GT_PIPE] = ACTIONS(2684), + [anon_sym_out_GT_PIPE] = ACTIONS(2684), + [anon_sym_e_GT_PIPE] = ACTIONS(2684), + [anon_sym_o_GT_PIPE] = ACTIONS(2684), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), + [anon_sym_RPAREN] = ACTIONS(2684), + [anon_sym_GT2] = ACTIONS(2686), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2684), + [anon_sym_xor2] = ACTIONS(2684), + [anon_sym_or2] = ACTIONS(2684), + [anon_sym_not_DASHin2] = ACTIONS(2684), + [anon_sym_has2] = ACTIONS(2684), + [anon_sym_not_DASHhas2] = ACTIONS(2684), + [anon_sym_starts_DASHwith2] = ACTIONS(2684), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2684), + [anon_sym_ends_DASHwith2] = ACTIONS(2684), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2684), + [anon_sym_EQ_EQ2] = ACTIONS(2684), + [anon_sym_BANG_EQ2] = ACTIONS(2684), + [anon_sym_LT2] = ACTIONS(2686), + [anon_sym_LT_EQ2] = ACTIONS(2684), + [anon_sym_GT_EQ2] = ACTIONS(2684), + [anon_sym_EQ_TILDE2] = ACTIONS(2684), + [anon_sym_BANG_TILDE2] = ACTIONS(2684), + [anon_sym_like2] = ACTIONS(2684), + [anon_sym_not_DASHlike2] = ACTIONS(2684), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), + [anon_sym_bit_DASHand2] = ACTIONS(2684), + [anon_sym_bit_DASHxor2] = ACTIONS(2684), + [anon_sym_bit_DASHor2] = ACTIONS(2684), + [anon_sym_err_GT] = ACTIONS(2686), + [anon_sym_out_GT] = ACTIONS(2686), + [anon_sym_e_GT] = ACTIONS(2686), + [anon_sym_o_GT] = ACTIONS(2686), + [anon_sym_err_PLUSout_GT] = ACTIONS(2686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), + [anon_sym_o_PLUSe_GT] = ACTIONS(2686), + [anon_sym_e_PLUSo_GT] = ACTIONS(2686), + [anon_sym_err_GT_GT] = ACTIONS(2684), + [anon_sym_out_GT_GT] = ACTIONS(2684), + [anon_sym_e_GT_GT] = ACTIONS(2684), + [anon_sym_o_GT_GT] = ACTIONS(2684), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1181)] = { - [aux_sym__repeat_newline] = STATE(1218), + [aux_sym__repeat_newline] = STATE(1174), [sym_comment] = STATE(1181), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2728), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1182)] = { - [aux_sym__repeat_newline] = STATE(1244), - [sym_comment] = STATE(1182), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2914), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), + [anon_sym_in] = ACTIONS(2832), + [sym__newline] = ACTIONS(2864), + [anon_sym_SEMI] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_err_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_GT_PIPE] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), + [anon_sym_RPAREN] = ACTIONS(2676), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2676), + [anon_sym_xor2] = ACTIONS(2676), + [anon_sym_or2] = ACTIONS(2676), + [anon_sym_not_DASHin2] = ACTIONS(2832), + [anon_sym_has2] = ACTIONS(2832), + [anon_sym_not_DASHhas2] = ACTIONS(2832), + [anon_sym_starts_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), + [anon_sym_ends_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), + [anon_sym_EQ_EQ2] = ACTIONS(2846), + [anon_sym_BANG_EQ2] = ACTIONS(2846), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2846), + [anon_sym_GT_EQ2] = ACTIONS(2846), + [anon_sym_EQ_TILDE2] = ACTIONS(2848), + [anon_sym_BANG_TILDE2] = ACTIONS(2848), + [anon_sym_like2] = ACTIONS(2848), + [anon_sym_not_DASHlike2] = ACTIONS(2848), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), [anon_sym_bit_DASHand2] = ACTIONS(2858), [anon_sym_bit_DASHxor2] = ACTIONS(2860), [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_err_GT] = ACTIONS(2678), + [anon_sym_out_GT] = ACTIONS(2678), + [anon_sym_e_GT] = ACTIONS(2678), + [anon_sym_o_GT] = ACTIONS(2678), + [anon_sym_err_PLUSout_GT] = ACTIONS(2678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), + [anon_sym_o_PLUSe_GT] = ACTIONS(2678), + [anon_sym_e_PLUSo_GT] = ACTIONS(2678), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(1182)] = { + [sym_comment] = STATE(1182), + [anon_sym_export] = ACTIONS(2880), + [anon_sym_alias] = ACTIONS(2884), + [anon_sym_let] = ACTIONS(2884), + [anon_sym_mut] = ACTIONS(2884), + [anon_sym_const] = ACTIONS(2884), + [aux_sym_cmd_identifier_token1] = ACTIONS(2880), + [anon_sym_def] = ACTIONS(2884), + [anon_sym_use] = ACTIONS(2884), + [anon_sym_export_DASHenv] = ACTIONS(2884), + [anon_sym_extern] = ACTIONS(2884), + [anon_sym_module] = ACTIONS(2884), + [anon_sym_for] = ACTIONS(2884), + [anon_sym_loop] = ACTIONS(2884), + [anon_sym_while] = ACTIONS(2884), + [anon_sym_if] = ACTIONS(2884), + [anon_sym_else] = ACTIONS(2884), + [anon_sym_try] = ACTIONS(2884), + [anon_sym_catch] = ACTIONS(2884), + [anon_sym_match] = ACTIONS(2884), + [anon_sym_in] = ACTIONS(2880), + [anon_sym_true] = ACTIONS(2884), + [anon_sym_false] = ACTIONS(2884), + [anon_sym_null] = ACTIONS(2884), + [aux_sym_cmd_identifier_token3] = ACTIONS(2884), + [aux_sym_cmd_identifier_token4] = ACTIONS(2884), + [aux_sym_cmd_identifier_token5] = ACTIONS(2884), + [sym__newline] = ACTIONS(2884), + [anon_sym_SEMI] = ACTIONS(2888), + [anon_sym_PIPE] = ACTIONS(2110), + [anon_sym_AT] = ACTIONS(2888), + [anon_sym_LBRACK] = ACTIONS(2888), + [anon_sym_LPAREN] = ACTIONS(2884), + [anon_sym_DOLLAR] = ACTIONS(2880), + [anon_sym_DASH2] = ACTIONS(2880), + [anon_sym_LBRACE] = ACTIONS(2888), + [anon_sym_RBRACE] = ACTIONS(2888), + [anon_sym_DOT_DOT] = ACTIONS(2891), + [anon_sym_where] = ACTIONS(2888), + [aux_sym_expr_unary_token1] = ACTIONS(2888), + [anon_sym_PLUS2] = ACTIONS(2894), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2896), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2888), + [anon_sym_DOT_DOT_LT] = ACTIONS(2888), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2896), + [aux_sym__val_number_decimal_token1] = ACTIONS(2880), + [aux_sym__val_number_decimal_token2] = ACTIONS(2884), + [aux_sym__val_number_decimal_token3] = ACTIONS(2884), + [aux_sym__val_number_decimal_token4] = ACTIONS(2884), + [aux_sym__val_number_token1] = ACTIONS(2884), + [aux_sym__val_number_token2] = ACTIONS(2884), + [aux_sym__val_number_token3] = ACTIONS(2884), + [anon_sym_0b] = ACTIONS(2891), + [anon_sym_0o] = ACTIONS(2891), + [anon_sym_0x] = ACTIONS(2891), + [sym_val_date] = ACTIONS(2888), + [anon_sym_DQUOTE] = ACTIONS(2884), + [anon_sym_SQUOTE] = ACTIONS(2884), + [anon_sym_BQUOTE] = ACTIONS(2884), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2884), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2884), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2896), + [anon_sym_CARET] = ACTIONS(2888), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2884), + }, [STATE(1183)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1193), [sym_comment] = STATE(1183), - [anon_sym_in] = ACTIONS(2706), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2708), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2706), - [anon_sym_has2] = ACTIONS(2706), - [anon_sym_not_DASHhas2] = ACTIONS(2706), - [anon_sym_starts_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), - [anon_sym_ends_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), - [anon_sym_EQ_EQ2] = ACTIONS(2706), - [anon_sym_BANG_EQ2] = ACTIONS(2706), - [anon_sym_LT2] = ACTIONS(2708), - [anon_sym_LT_EQ2] = ACTIONS(2706), - [anon_sym_GT_EQ2] = ACTIONS(2706), - [anon_sym_EQ_TILDE2] = ACTIONS(2706), - [anon_sym_BANG_TILDE2] = ACTIONS(2706), - [anon_sym_like2] = ACTIONS(2706), - [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2706), - [anon_sym_bit_DASHshr2] = ACTIONS(2706), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2666), + [sym__newline] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2668), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2666), + [anon_sym_has2] = ACTIONS(2666), + [anon_sym_not_DASHhas2] = ACTIONS(2666), + [anon_sym_starts_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2666), + [anon_sym_ends_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2666), + [anon_sym_EQ_EQ2] = ACTIONS(2666), + [anon_sym_BANG_EQ2] = ACTIONS(2666), + [anon_sym_LT2] = ACTIONS(2668), + [anon_sym_LT_EQ2] = ACTIONS(2666), + [anon_sym_GT_EQ2] = ACTIONS(2666), + [anon_sym_EQ_TILDE2] = ACTIONS(2666), + [anon_sym_BANG_TILDE2] = ACTIONS(2666), + [anon_sym_like2] = ACTIONS(2666), + [anon_sym_not_DASHlike2] = ACTIONS(2666), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), + [anon_sym_bit_DASHand2] = ACTIONS(2666), + [anon_sym_bit_DASHxor2] = ACTIONS(2666), + [anon_sym_bit_DASHor2] = ACTIONS(2666), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1184)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1184), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2732), - [anon_sym_bit_DASHxor2] = ACTIONS(2732), - [anon_sym_bit_DASHor2] = ACTIONS(2732), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2688), + [sym__newline] = ACTIONS(2688), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_err_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_GT_PIPE] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), + [anon_sym_RPAREN] = ACTIONS(2688), + [anon_sym_GT2] = ACTIONS(2690), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2688), + [anon_sym_xor2] = ACTIONS(2688), + [anon_sym_or2] = ACTIONS(2688), + [anon_sym_not_DASHin2] = ACTIONS(2688), + [anon_sym_has2] = ACTIONS(2688), + [anon_sym_not_DASHhas2] = ACTIONS(2688), + [anon_sym_starts_DASHwith2] = ACTIONS(2688), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2688), + [anon_sym_ends_DASHwith2] = ACTIONS(2688), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2688), + [anon_sym_EQ_EQ2] = ACTIONS(2688), + [anon_sym_BANG_EQ2] = ACTIONS(2688), + [anon_sym_LT2] = ACTIONS(2690), + [anon_sym_LT_EQ2] = ACTIONS(2688), + [anon_sym_GT_EQ2] = ACTIONS(2688), + [anon_sym_EQ_TILDE2] = ACTIONS(2688), + [anon_sym_BANG_TILDE2] = ACTIONS(2688), + [anon_sym_like2] = ACTIONS(2688), + [anon_sym_not_DASHlike2] = ACTIONS(2688), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_bit_DASHshl2] = ACTIONS(2688), + [anon_sym_bit_DASHshr2] = ACTIONS(2688), + [anon_sym_bit_DASHand2] = ACTIONS(2688), + [anon_sym_bit_DASHxor2] = ACTIONS(2688), + [anon_sym_bit_DASHor2] = ACTIONS(2688), + [anon_sym_err_GT] = ACTIONS(2690), + [anon_sym_out_GT] = ACTIONS(2690), + [anon_sym_e_GT] = ACTIONS(2690), + [anon_sym_o_GT] = ACTIONS(2690), + [anon_sym_err_PLUSout_GT] = ACTIONS(2690), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), + [anon_sym_o_PLUSe_GT] = ACTIONS(2690), + [anon_sym_e_PLUSo_GT] = ACTIONS(2690), + [anon_sym_err_GT_GT] = ACTIONS(2688), + [anon_sym_out_GT_GT] = ACTIONS(2688), + [anon_sym_e_GT_GT] = ACTIONS(2688), + [anon_sym_o_GT_GT] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1185)] = { - [aux_sym__repeat_newline] = STATE(1179), + [aux_sym__repeat_newline] = STATE(1192), [sym_comment] = STATE(1185), - [anon_sym_in] = ACTIONS(2712), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2714), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2712), - [anon_sym_has2] = ACTIONS(2712), - [anon_sym_not_DASHhas2] = ACTIONS(2712), - [anon_sym_starts_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), - [anon_sym_ends_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), - [anon_sym_EQ_EQ2] = ACTIONS(2712), - [anon_sym_BANG_EQ2] = ACTIONS(2712), - [anon_sym_LT2] = ACTIONS(2714), - [anon_sym_LT_EQ2] = ACTIONS(2712), - [anon_sym_GT_EQ2] = ACTIONS(2712), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2712), - [anon_sym_bit_DASHshr2] = ACTIONS(2712), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2832), + [sym__newline] = ACTIONS(2864), + [anon_sym_SEMI] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_err_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_GT_PIPE] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), + [anon_sym_RPAREN] = ACTIONS(2676), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2842), + [anon_sym_xor2] = ACTIONS(2676), + [anon_sym_or2] = ACTIONS(2676), + [anon_sym_not_DASHin2] = ACTIONS(2832), + [anon_sym_has2] = ACTIONS(2832), + [anon_sym_not_DASHhas2] = ACTIONS(2832), + [anon_sym_starts_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), + [anon_sym_ends_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), + [anon_sym_EQ_EQ2] = ACTIONS(2846), + [anon_sym_BANG_EQ2] = ACTIONS(2846), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2846), + [anon_sym_GT_EQ2] = ACTIONS(2846), + [anon_sym_EQ_TILDE2] = ACTIONS(2848), + [anon_sym_BANG_TILDE2] = ACTIONS(2848), + [anon_sym_like2] = ACTIONS(2848), + [anon_sym_not_DASHlike2] = ACTIONS(2848), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), + [anon_sym_bit_DASHand2] = ACTIONS(2858), + [anon_sym_bit_DASHxor2] = ACTIONS(2860), + [anon_sym_bit_DASHor2] = ACTIONS(2862), + [anon_sym_err_GT] = ACTIONS(2678), + [anon_sym_out_GT] = ACTIONS(2678), + [anon_sym_e_GT] = ACTIONS(2678), + [anon_sym_o_GT] = ACTIONS(2678), + [anon_sym_err_PLUSout_GT] = ACTIONS(2678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), + [anon_sym_o_PLUSe_GT] = ACTIONS(2678), + [anon_sym_e_PLUSo_GT] = ACTIONS(2678), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1186)] = { - [aux_sym__repeat_newline] = STATE(1227), + [aux_sym__repeat_newline] = STATE(1191), [sym_comment] = STATE(1186), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), + [anon_sym_in] = ACTIONS(2832), + [sym__newline] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2832), + [anon_sym_has2] = ACTIONS(2832), + [anon_sym_not_DASHhas2] = ACTIONS(2832), + [anon_sym_starts_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), + [anon_sym_ends_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), + [anon_sym_EQ_EQ2] = ACTIONS(2846), + [anon_sym_BANG_EQ2] = ACTIONS(2846), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2846), + [anon_sym_GT_EQ2] = ACTIONS(2846), + [anon_sym_EQ_TILDE2] = ACTIONS(2848), + [anon_sym_BANG_TILDE2] = ACTIONS(2848), + [anon_sym_like2] = ACTIONS(2848), + [anon_sym_not_DASHlike2] = ACTIONS(2848), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2728), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_bit_DASHxor2] = ACTIONS(2860), + [anon_sym_bit_DASHor2] = ACTIONS(2862), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1187)] = { - [aux_sym__repeat_newline] = STATE(1209), + [aux_sym__repeat_newline] = STATE(1217), [sym_comment] = STATE(1187), - [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2702), - [anon_sym_has2] = ACTIONS(2702), - [anon_sym_not_DASHhas2] = ACTIONS(2702), - [anon_sym_starts_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2702), - [anon_sym_ends_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2702), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2702), - [anon_sym_BANG_TILDE2] = ACTIONS(2702), - [anon_sym_like2] = ACTIONS(2702), - [anon_sym_not_DASHlike2] = ACTIONS(2702), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(2832), + [sym__newline] = ACTIONS(2864), + [anon_sym_SEMI] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_err_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_GT_PIPE] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), + [anon_sym_RPAREN] = ACTIONS(2676), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2676), + [anon_sym_xor2] = ACTIONS(2676), + [anon_sym_or2] = ACTIONS(2676), + [anon_sym_not_DASHin2] = ACTIONS(2832), + [anon_sym_has2] = ACTIONS(2832), + [anon_sym_not_DASHhas2] = ACTIONS(2832), + [anon_sym_starts_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), + [anon_sym_ends_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), + [anon_sym_EQ_EQ2] = ACTIONS(2846), + [anon_sym_BANG_EQ2] = ACTIONS(2846), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2846), + [anon_sym_GT_EQ2] = ACTIONS(2846), + [anon_sym_EQ_TILDE2] = ACTIONS(2848), + [anon_sym_BANG_TILDE2] = ACTIONS(2848), + [anon_sym_like2] = ACTIONS(2848), + [anon_sym_not_DASHlike2] = ACTIONS(2848), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), + [anon_sym_bit_DASHand2] = ACTIONS(2676), + [anon_sym_bit_DASHxor2] = ACTIONS(2676), + [anon_sym_bit_DASHor2] = ACTIONS(2676), + [anon_sym_err_GT] = ACTIONS(2678), + [anon_sym_out_GT] = ACTIONS(2678), + [anon_sym_e_GT] = ACTIONS(2678), + [anon_sym_o_GT] = ACTIONS(2678), + [anon_sym_err_PLUSout_GT] = ACTIONS(2678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), + [anon_sym_o_PLUSe_GT] = ACTIONS(2678), + [anon_sym_e_PLUSo_GT] = ACTIONS(2678), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1188)] = { - [aux_sym__repeat_newline] = STATE(1246), [sym_comment] = STATE(1188), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [ts_builtin_sym_end] = ACTIONS(2094), + [anon_sym_in] = ACTIONS(2094), + [sym__newline] = ACTIONS(2094), + [anon_sym_SEMI] = ACTIONS(2094), + [anon_sym_PIPE] = ACTIONS(2094), + [anon_sym_err_GT_PIPE] = ACTIONS(2094), + [anon_sym_out_GT_PIPE] = ACTIONS(2094), + [anon_sym_e_GT_PIPE] = ACTIONS(2094), + [anon_sym_o_GT_PIPE] = ACTIONS(2094), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2094), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2094), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2094), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2094), + [anon_sym_GT2] = ACTIONS(2096), + [anon_sym_DASH2] = ACTIONS(2094), + [anon_sym_STAR2] = ACTIONS(2096), + [anon_sym_and2] = ACTIONS(2094), + [anon_sym_xor2] = ACTIONS(2094), + [anon_sym_or2] = ACTIONS(2094), + [anon_sym_not_DASHin2] = ACTIONS(2094), + [anon_sym_has2] = ACTIONS(2094), + [anon_sym_not_DASHhas2] = ACTIONS(2094), + [anon_sym_starts_DASHwith2] = ACTIONS(2094), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2094), + [anon_sym_ends_DASHwith2] = ACTIONS(2094), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2094), + [anon_sym_EQ_EQ2] = ACTIONS(2094), + [anon_sym_BANG_EQ2] = ACTIONS(2094), + [anon_sym_LT2] = ACTIONS(2096), + [anon_sym_LT_EQ2] = ACTIONS(2094), + [anon_sym_GT_EQ2] = ACTIONS(2094), + [anon_sym_EQ_TILDE2] = ACTIONS(2094), + [anon_sym_BANG_TILDE2] = ACTIONS(2094), + [anon_sym_like2] = ACTIONS(2094), + [anon_sym_not_DASHlike2] = ACTIONS(2094), + [anon_sym_LPAREN2] = ACTIONS(2094), + [anon_sym_STAR_STAR2] = ACTIONS(2094), + [anon_sym_PLUS_PLUS2] = ACTIONS(2094), + [anon_sym_SLASH2] = ACTIONS(2096), + [anon_sym_mod2] = ACTIONS(2094), + [anon_sym_SLASH_SLASH2] = ACTIONS(2094), + [anon_sym_PLUS2] = ACTIONS(2096), + [anon_sym_bit_DASHshl2] = ACTIONS(2094), + [anon_sym_bit_DASHshr2] = ACTIONS(2094), + [anon_sym_bit_DASHand2] = ACTIONS(2094), + [anon_sym_bit_DASHxor2] = ACTIONS(2094), + [anon_sym_bit_DASHor2] = ACTIONS(2094), + [anon_sym_err_GT] = ACTIONS(2096), + [anon_sym_out_GT] = ACTIONS(2096), + [anon_sym_e_GT] = ACTIONS(2096), + [anon_sym_o_GT] = ACTIONS(2096), + [anon_sym_err_PLUSout_GT] = ACTIONS(2096), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2096), + [anon_sym_o_PLUSe_GT] = ACTIONS(2096), + [anon_sym_e_PLUSo_GT] = ACTIONS(2096), + [anon_sym_err_GT_GT] = ACTIONS(2094), + [anon_sym_out_GT_GT] = ACTIONS(2094), + [anon_sym_e_GT_GT] = ACTIONS(2094), + [anon_sym_o_GT_GT] = ACTIONS(2094), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2094), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2094), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2094), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2094), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1189)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1189), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2732), - [anon_sym_bit_DASHor2] = ACTIONS(2732), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2688), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_err_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_GT_PIPE] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), + [anon_sym_RPAREN] = ACTIONS(2688), + [anon_sym_GT2] = ACTIONS(2806), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2688), + [anon_sym_xor2] = ACTIONS(2688), + [anon_sym_or2] = ACTIONS(2688), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2814), + [anon_sym_BANG_EQ2] = ACTIONS(2814), + [anon_sym_LT2] = ACTIONS(2806), + [anon_sym_LT_EQ2] = ACTIONS(2814), + [anon_sym_GT_EQ2] = ACTIONS(2814), + [anon_sym_EQ_TILDE2] = ACTIONS(2816), + [anon_sym_BANG_TILDE2] = ACTIONS(2816), + [anon_sym_like2] = ACTIONS(2816), + [anon_sym_not_DASHlike2] = ACTIONS(2816), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2688), + [anon_sym_bit_DASHxor2] = ACTIONS(2688), + [anon_sym_bit_DASHor2] = ACTIONS(2688), + [anon_sym_err_GT] = ACTIONS(2690), + [anon_sym_out_GT] = ACTIONS(2690), + [anon_sym_e_GT] = ACTIONS(2690), + [anon_sym_o_GT] = ACTIONS(2690), + [anon_sym_err_PLUSout_GT] = ACTIONS(2690), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), + [anon_sym_o_PLUSe_GT] = ACTIONS(2690), + [anon_sym_e_PLUSo_GT] = ACTIONS(2690), + [anon_sym_err_GT_GT] = ACTIONS(2688), + [anon_sym_out_GT_GT] = ACTIONS(2688), + [anon_sym_e_GT_GT] = ACTIONS(2688), + [anon_sym_o_GT_GT] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1190)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1190), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2194), + [sym__newline] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym_PIPE] = ACTIONS(2194), + [anon_sym_err_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_GT_PIPE] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2194), + [anon_sym_RPAREN] = ACTIONS(2194), + [anon_sym_GT2] = ACTIONS(2196), + [anon_sym_DASH2] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2194), + [anon_sym_STAR2] = ACTIONS(2196), + [anon_sym_and2] = ACTIONS(2194), + [anon_sym_xor2] = ACTIONS(2194), + [anon_sym_or2] = ACTIONS(2194), + [anon_sym_not_DASHin2] = ACTIONS(2194), + [anon_sym_has2] = ACTIONS(2194), + [anon_sym_not_DASHhas2] = ACTIONS(2194), + [anon_sym_starts_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2194), + [anon_sym_ends_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2194), + [anon_sym_EQ_EQ2] = ACTIONS(2194), + [anon_sym_BANG_EQ2] = ACTIONS(2194), + [anon_sym_LT2] = ACTIONS(2196), + [anon_sym_LT_EQ2] = ACTIONS(2194), + [anon_sym_GT_EQ2] = ACTIONS(2194), + [anon_sym_EQ_TILDE2] = ACTIONS(2194), + [anon_sym_BANG_TILDE2] = ACTIONS(2194), + [anon_sym_like2] = ACTIONS(2194), + [anon_sym_not_DASHlike2] = ACTIONS(2194), + [anon_sym_STAR_STAR2] = ACTIONS(2194), + [anon_sym_PLUS_PLUS2] = ACTIONS(2194), + [anon_sym_SLASH2] = ACTIONS(2196), + [anon_sym_mod2] = ACTIONS(2194), + [anon_sym_SLASH_SLASH2] = ACTIONS(2194), + [anon_sym_PLUS2] = ACTIONS(2196), + [anon_sym_bit_DASHshl2] = ACTIONS(2194), + [anon_sym_bit_DASHshr2] = ACTIONS(2194), + [anon_sym_bit_DASHand2] = ACTIONS(2194), + [anon_sym_bit_DASHxor2] = ACTIONS(2194), + [anon_sym_bit_DASHor2] = ACTIONS(2194), + [anon_sym_err_GT] = ACTIONS(2196), + [anon_sym_out_GT] = ACTIONS(2196), + [anon_sym_e_GT] = ACTIONS(2196), + [anon_sym_o_GT] = ACTIONS(2196), + [anon_sym_err_PLUSout_GT] = ACTIONS(2196), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2196), + [anon_sym_o_PLUSe_GT] = ACTIONS(2196), + [anon_sym_e_PLUSo_GT] = ACTIONS(2196), + [anon_sym_err_GT_GT] = ACTIONS(2194), + [anon_sym_out_GT_GT] = ACTIONS(2194), + [anon_sym_e_GT_GT] = ACTIONS(2194), + [anon_sym_o_GT_GT] = ACTIONS(2194), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1191)] = { - [aux_sym__repeat_newline] = STATE(1229), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1191), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_err_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_GT_PIPE] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2728), - [anon_sym_xor2] = ACTIONS(2728), - [anon_sym_or2] = ACTIONS(2728), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2728), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2728), - [anon_sym_out_GT_GT] = ACTIONS(2728), - [anon_sym_e_GT_GT] = ACTIONS(2728), - [anon_sym_o_GT_GT] = ACTIONS(2728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2728), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_err_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_GT_PIPE] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), + [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_GT2] = ACTIONS(2806), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2692), + [anon_sym_xor2] = ACTIONS(2692), + [anon_sym_or2] = ACTIONS(2692), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2814), + [anon_sym_BANG_EQ2] = ACTIONS(2814), + [anon_sym_LT2] = ACTIONS(2806), + [anon_sym_LT_EQ2] = ACTIONS(2814), + [anon_sym_GT_EQ2] = ACTIONS(2814), + [anon_sym_EQ_TILDE2] = ACTIONS(2816), + [anon_sym_BANG_TILDE2] = ACTIONS(2816), + [anon_sym_like2] = ACTIONS(2816), + [anon_sym_not_DASHlike2] = ACTIONS(2816), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2826), + [anon_sym_bit_DASHxor2] = ACTIONS(2828), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2694), + [anon_sym_out_GT] = ACTIONS(2694), + [anon_sym_e_GT] = ACTIONS(2694), + [anon_sym_o_GT] = ACTIONS(2694), + [anon_sym_err_PLUSout_GT] = ACTIONS(2694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), + [anon_sym_o_PLUSe_GT] = ACTIONS(2694), + [anon_sym_e_PLUSo_GT] = ACTIONS(2694), + [anon_sym_err_GT_GT] = ACTIONS(2692), + [anon_sym_out_GT_GT] = ACTIONS(2692), + [anon_sym_e_GT_GT] = ACTIONS(2692), + [anon_sym_o_GT_GT] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1192)] = { - [aux_sym__repeat_newline] = STATE(1184), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1192), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2772), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_err_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_GT_PIPE] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_GT2] = ACTIONS(2806), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2812), + [anon_sym_xor2] = ACTIONS(2772), + [anon_sym_or2] = ACTIONS(2772), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2814), + [anon_sym_BANG_EQ2] = ACTIONS(2814), + [anon_sym_LT2] = ACTIONS(2806), + [anon_sym_LT_EQ2] = ACTIONS(2814), + [anon_sym_GT_EQ2] = ACTIONS(2814), + [anon_sym_EQ_TILDE2] = ACTIONS(2816), + [anon_sym_BANG_TILDE2] = ACTIONS(2816), + [anon_sym_like2] = ACTIONS(2816), + [anon_sym_not_DASHlike2] = ACTIONS(2816), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2826), + [anon_sym_bit_DASHxor2] = ACTIONS(2828), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2774), + [anon_sym_out_GT] = ACTIONS(2774), + [anon_sym_e_GT] = ACTIONS(2774), + [anon_sym_o_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT] = ACTIONS(2774), + [anon_sym_err_GT_GT] = ACTIONS(2772), + [anon_sym_out_GT_GT] = ACTIONS(2772), + [anon_sym_e_GT_GT] = ACTIONS(2772), + [anon_sym_o_GT_GT] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1193)] = { - [aux_sym__repeat_newline] = STATE(1215), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1193), - [anon_sym_in] = ACTIONS(2702), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2704), - [anon_sym_DASH2] = ACTIONS(2702), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2702), - [anon_sym_has2] = ACTIONS(2702), - [anon_sym_not_DASHhas2] = ACTIONS(2702), - [anon_sym_starts_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2702), - [anon_sym_ends_DASHwith2] = ACTIONS(2702), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2702), - [anon_sym_EQ_EQ2] = ACTIONS(2702), - [anon_sym_BANG_EQ2] = ACTIONS(2702), - [anon_sym_LT2] = ACTIONS(2704), - [anon_sym_LT_EQ2] = ACTIONS(2702), - [anon_sym_GT_EQ2] = ACTIONS(2702), - [anon_sym_EQ_TILDE2] = ACTIONS(2702), - [anon_sym_BANG_TILDE2] = ACTIONS(2702), - [anon_sym_like2] = ACTIONS(2702), - [anon_sym_not_DASHlike2] = ACTIONS(2702), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2704), - [anon_sym_bit_DASHshl2] = ACTIONS(2702), - [anon_sym_bit_DASHshr2] = ACTIONS(2702), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(2692), + [sym__newline] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_err_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_GT_PIPE] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), + [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_GT2] = ACTIONS(2694), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2692), + [anon_sym_xor2] = ACTIONS(2692), + [anon_sym_or2] = ACTIONS(2692), + [anon_sym_not_DASHin2] = ACTIONS(2692), + [anon_sym_has2] = ACTIONS(2692), + [anon_sym_not_DASHhas2] = ACTIONS(2692), + [anon_sym_starts_DASHwith2] = ACTIONS(2692), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2692), + [anon_sym_ends_DASHwith2] = ACTIONS(2692), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2692), + [anon_sym_EQ_EQ2] = ACTIONS(2692), + [anon_sym_BANG_EQ2] = ACTIONS(2692), + [anon_sym_LT2] = ACTIONS(2694), + [anon_sym_LT_EQ2] = ACTIONS(2692), + [anon_sym_GT_EQ2] = ACTIONS(2692), + [anon_sym_EQ_TILDE2] = ACTIONS(2692), + [anon_sym_BANG_TILDE2] = ACTIONS(2692), + [anon_sym_like2] = ACTIONS(2692), + [anon_sym_not_DASHlike2] = ACTIONS(2692), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2692), + [anon_sym_bit_DASHxor2] = ACTIONS(2692), + [anon_sym_bit_DASHor2] = ACTIONS(2692), + [anon_sym_err_GT] = ACTIONS(2694), + [anon_sym_out_GT] = ACTIONS(2694), + [anon_sym_e_GT] = ACTIONS(2694), + [anon_sym_o_GT] = ACTIONS(2694), + [anon_sym_err_PLUSout_GT] = ACTIONS(2694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), + [anon_sym_o_PLUSe_GT] = ACTIONS(2694), + [anon_sym_e_PLUSo_GT] = ACTIONS(2694), + [anon_sym_err_GT_GT] = ACTIONS(2692), + [anon_sym_out_GT_GT] = ACTIONS(2692), + [anon_sym_e_GT_GT] = ACTIONS(2692), + [anon_sym_o_GT_GT] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1194)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1251), [sym_comment] = STATE(1194), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_err_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_GT_PIPE] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2732), - [anon_sym_xor2] = ACTIONS(2732), - [anon_sym_or2] = ACTIONS(2732), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2732), - [anon_sym_err_GT] = ACTIONS(2734), - [anon_sym_out_GT] = ACTIONS(2734), - [anon_sym_e_GT] = ACTIONS(2734), - [anon_sym_o_GT] = ACTIONS(2734), - [anon_sym_err_PLUSout_GT] = ACTIONS(2734), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), - [anon_sym_o_PLUSe_GT] = ACTIONS(2734), - [anon_sym_e_PLUSo_GT] = ACTIONS(2734), - [anon_sym_err_GT_GT] = ACTIONS(2732), - [anon_sym_out_GT_GT] = ACTIONS(2732), - [anon_sym_e_GT_GT] = ACTIONS(2732), - [anon_sym_o_GT_GT] = ACTIONS(2732), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_in] = ACTIONS(2832), + [sym__newline] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2768), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_err_GT_PIPE] = ACTIONS(2768), + [anon_sym_out_GT_PIPE] = ACTIONS(2768), + [anon_sym_e_GT_PIPE] = ACTIONS(2768), + [anon_sym_o_GT_PIPE] = ACTIONS(2768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2768), + [anon_sym_RPAREN] = ACTIONS(2768), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2842), + [anon_sym_xor2] = ACTIONS(2844), + [anon_sym_or2] = ACTIONS(2768), + [anon_sym_not_DASHin2] = ACTIONS(2832), + [anon_sym_has2] = ACTIONS(2832), + [anon_sym_not_DASHhas2] = ACTIONS(2832), + [anon_sym_starts_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), + [anon_sym_ends_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), + [anon_sym_EQ_EQ2] = ACTIONS(2846), + [anon_sym_BANG_EQ2] = ACTIONS(2846), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2846), + [anon_sym_GT_EQ2] = ACTIONS(2846), + [anon_sym_EQ_TILDE2] = ACTIONS(2848), + [anon_sym_BANG_TILDE2] = ACTIONS(2848), + [anon_sym_like2] = ACTIONS(2848), + [anon_sym_not_DASHlike2] = ACTIONS(2848), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), + [anon_sym_bit_DASHand2] = ACTIONS(2858), + [anon_sym_bit_DASHxor2] = ACTIONS(2860), + [anon_sym_bit_DASHor2] = ACTIONS(2862), + [anon_sym_err_GT] = ACTIONS(2770), + [anon_sym_out_GT] = ACTIONS(2770), + [anon_sym_e_GT] = ACTIONS(2770), + [anon_sym_o_GT] = ACTIONS(2770), + [anon_sym_err_PLUSout_GT] = ACTIONS(2770), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2770), + [anon_sym_o_PLUSe_GT] = ACTIONS(2770), + [anon_sym_e_PLUSo_GT] = ACTIONS(2770), + [anon_sym_err_GT_GT] = ACTIONS(2768), + [anon_sym_out_GT_GT] = ACTIONS(2768), + [anon_sym_e_GT_GT] = ACTIONS(2768), + [anon_sym_o_GT_GT] = ACTIONS(2768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2768), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1195)] = { - [aux_sym__repeat_newline] = STATE(1189), [sym_comment] = STATE(1195), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [ts_builtin_sym_end] = ACTIONS(2114), + [anon_sym_in] = ACTIONS(2114), + [sym__newline] = ACTIONS(2114), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2114), + [anon_sym_err_GT_PIPE] = ACTIONS(2114), + [anon_sym_out_GT_PIPE] = ACTIONS(2114), + [anon_sym_e_GT_PIPE] = ACTIONS(2114), + [anon_sym_o_GT_PIPE] = ACTIONS(2114), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2114), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2114), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2114), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2114), + [anon_sym_GT2] = ACTIONS(2116), + [anon_sym_DASH2] = ACTIONS(2114), + [anon_sym_STAR2] = ACTIONS(2116), + [anon_sym_and2] = ACTIONS(2114), + [anon_sym_xor2] = ACTIONS(2114), + [anon_sym_or2] = ACTIONS(2114), + [anon_sym_not_DASHin2] = ACTIONS(2114), + [anon_sym_has2] = ACTIONS(2114), + [anon_sym_not_DASHhas2] = ACTIONS(2114), + [anon_sym_starts_DASHwith2] = ACTIONS(2114), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2114), + [anon_sym_ends_DASHwith2] = ACTIONS(2114), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2114), + [anon_sym_EQ_EQ2] = ACTIONS(2114), + [anon_sym_BANG_EQ2] = ACTIONS(2114), + [anon_sym_LT2] = ACTIONS(2116), + [anon_sym_LT_EQ2] = ACTIONS(2114), + [anon_sym_GT_EQ2] = ACTIONS(2114), + [anon_sym_EQ_TILDE2] = ACTIONS(2114), + [anon_sym_BANG_TILDE2] = ACTIONS(2114), + [anon_sym_like2] = ACTIONS(2114), + [anon_sym_not_DASHlike2] = ACTIONS(2114), + [anon_sym_STAR_STAR2] = ACTIONS(2114), + [anon_sym_PLUS_PLUS2] = ACTIONS(2114), + [anon_sym_SLASH2] = ACTIONS(2116), + [anon_sym_mod2] = ACTIONS(2114), + [anon_sym_SLASH_SLASH2] = ACTIONS(2114), + [anon_sym_PLUS2] = ACTIONS(2116), + [anon_sym_bit_DASHshl2] = ACTIONS(2114), + [anon_sym_bit_DASHshr2] = ACTIONS(2114), + [anon_sym_bit_DASHand2] = ACTIONS(2114), + [anon_sym_bit_DASHxor2] = ACTIONS(2114), + [anon_sym_bit_DASHor2] = ACTIONS(2114), + [anon_sym_LBRACK2] = ACTIONS(2898), + [anon_sym_err_GT] = ACTIONS(2116), + [anon_sym_out_GT] = ACTIONS(2116), + [anon_sym_e_GT] = ACTIONS(2116), + [anon_sym_o_GT] = ACTIONS(2116), + [anon_sym_err_PLUSout_GT] = ACTIONS(2116), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2116), + [anon_sym_o_PLUSe_GT] = ACTIONS(2116), + [anon_sym_e_PLUSo_GT] = ACTIONS(2116), + [anon_sym_err_GT_GT] = ACTIONS(2114), + [anon_sym_out_GT_GT] = ACTIONS(2114), + [anon_sym_e_GT_GT] = ACTIONS(2114), + [anon_sym_o_GT_GT] = ACTIONS(2114), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2114), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2114), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2114), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2114), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1196)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1222), [sym_comment] = STATE(1196), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2832), + [sym__newline] = ACTIONS(2864), + [anon_sym_SEMI] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_err_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_GT_PIPE] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), + [anon_sym_RPAREN] = ACTIONS(2676), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2676), + [anon_sym_xor2] = ACTIONS(2676), + [anon_sym_or2] = ACTIONS(2676), + [anon_sym_not_DASHin2] = ACTIONS(2832), + [anon_sym_has2] = ACTIONS(2832), + [anon_sym_not_DASHhas2] = ACTIONS(2832), + [anon_sym_starts_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), + [anon_sym_ends_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), + [anon_sym_EQ_EQ2] = ACTIONS(2846), + [anon_sym_BANG_EQ2] = ACTIONS(2846), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2846), + [anon_sym_GT_EQ2] = ACTIONS(2846), + [anon_sym_EQ_TILDE2] = ACTIONS(2848), + [anon_sym_BANG_TILDE2] = ACTIONS(2848), + [anon_sym_like2] = ACTIONS(2848), + [anon_sym_not_DASHlike2] = ACTIONS(2848), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), + [anon_sym_bit_DASHand2] = ACTIONS(2858), + [anon_sym_bit_DASHxor2] = ACTIONS(2676), + [anon_sym_bit_DASHor2] = ACTIONS(2676), + [anon_sym_err_GT] = ACTIONS(2678), + [anon_sym_out_GT] = ACTIONS(2678), + [anon_sym_e_GT] = ACTIONS(2678), + [anon_sym_o_GT] = ACTIONS(2678), + [anon_sym_err_PLUSout_GT] = ACTIONS(2678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), + [anon_sym_o_PLUSe_GT] = ACTIONS(2678), + [anon_sym_e_PLUSo_GT] = ACTIONS(2678), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1197)] = { - [aux_sym__repeat_newline] = STATE(1228), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1197), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2772), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_err_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_GT_PIPE] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_GT2] = ACTIONS(2806), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2812), + [anon_sym_xor2] = ACTIONS(2873), + [anon_sym_or2] = ACTIONS(2772), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2814), + [anon_sym_BANG_EQ2] = ACTIONS(2814), + [anon_sym_LT2] = ACTIONS(2806), + [anon_sym_LT_EQ2] = ACTIONS(2814), + [anon_sym_GT_EQ2] = ACTIONS(2814), + [anon_sym_EQ_TILDE2] = ACTIONS(2816), + [anon_sym_BANG_TILDE2] = ACTIONS(2816), + [anon_sym_like2] = ACTIONS(2816), + [anon_sym_not_DASHlike2] = ACTIONS(2816), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2826), + [anon_sym_bit_DASHxor2] = ACTIONS(2828), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2774), + [anon_sym_out_GT] = ACTIONS(2774), + [anon_sym_e_GT] = ACTIONS(2774), + [anon_sym_o_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT] = ACTIONS(2774), + [anon_sym_err_GT_GT] = ACTIONS(2772), + [anon_sym_out_GT_GT] = ACTIONS(2772), + [anon_sym_e_GT_GT] = ACTIONS(2772), + [anon_sym_o_GT_GT] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1198)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1172), [sym_comment] = STATE(1198), - [anon_sym_in] = ACTIONS(2740), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2740), - [anon_sym_has2] = ACTIONS(2740), - [anon_sym_not_DASHhas2] = ACTIONS(2740), - [anon_sym_starts_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2740), - [anon_sym_ends_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2740), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2740), - [anon_sym_BANG_TILDE2] = ACTIONS(2740), - [anon_sym_like2] = ACTIONS(2740), - [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2832), + [sym__newline] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(2684), + [anon_sym_PIPE] = ACTIONS(2684), + [anon_sym_err_GT_PIPE] = ACTIONS(2684), + [anon_sym_out_GT_PIPE] = ACTIONS(2684), + [anon_sym_e_GT_PIPE] = ACTIONS(2684), + [anon_sym_o_GT_PIPE] = ACTIONS(2684), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), + [anon_sym_RPAREN] = ACTIONS(2684), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2842), + [anon_sym_xor2] = ACTIONS(2684), + [anon_sym_or2] = ACTIONS(2684), + [anon_sym_not_DASHin2] = ACTIONS(2832), + [anon_sym_has2] = ACTIONS(2832), + [anon_sym_not_DASHhas2] = ACTIONS(2832), + [anon_sym_starts_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), + [anon_sym_ends_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), + [anon_sym_EQ_EQ2] = ACTIONS(2846), + [anon_sym_BANG_EQ2] = ACTIONS(2846), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2846), + [anon_sym_GT_EQ2] = ACTIONS(2846), + [anon_sym_EQ_TILDE2] = ACTIONS(2848), + [anon_sym_BANG_TILDE2] = ACTIONS(2848), + [anon_sym_like2] = ACTIONS(2848), + [anon_sym_not_DASHlike2] = ACTIONS(2848), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), + [anon_sym_bit_DASHand2] = ACTIONS(2858), + [anon_sym_bit_DASHxor2] = ACTIONS(2860), + [anon_sym_bit_DASHor2] = ACTIONS(2862), + [anon_sym_err_GT] = ACTIONS(2686), + [anon_sym_out_GT] = ACTIONS(2686), + [anon_sym_e_GT] = ACTIONS(2686), + [anon_sym_o_GT] = ACTIONS(2686), + [anon_sym_err_PLUSout_GT] = ACTIONS(2686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), + [anon_sym_o_PLUSe_GT] = ACTIONS(2686), + [anon_sym_e_PLUSo_GT] = ACTIONS(2686), + [anon_sym_err_GT_GT] = ACTIONS(2684), + [anon_sym_out_GT_GT] = ACTIONS(2684), + [anon_sym_e_GT_GT] = ACTIONS(2684), + [anon_sym_o_GT_GT] = ACTIONS(2684), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1199)] = { - [aux_sym__repeat_newline] = STATE(1194), + [aux_sym__repeat_newline] = STATE(1253), [sym_comment] = STATE(1199), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2832), + [sym__newline] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2768), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_err_GT_PIPE] = ACTIONS(2768), + [anon_sym_out_GT_PIPE] = ACTIONS(2768), + [anon_sym_e_GT_PIPE] = ACTIONS(2768), + [anon_sym_o_GT_PIPE] = ACTIONS(2768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2768), + [anon_sym_RPAREN] = ACTIONS(2768), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2768), + [anon_sym_xor2] = ACTIONS(2768), + [anon_sym_or2] = ACTIONS(2768), + [anon_sym_not_DASHin2] = ACTIONS(2832), + [anon_sym_has2] = ACTIONS(2832), + [anon_sym_not_DASHhas2] = ACTIONS(2832), + [anon_sym_starts_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), + [anon_sym_ends_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), + [anon_sym_EQ_EQ2] = ACTIONS(2846), + [anon_sym_BANG_EQ2] = ACTIONS(2846), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2846), + [anon_sym_GT_EQ2] = ACTIONS(2846), + [anon_sym_EQ_TILDE2] = ACTIONS(2768), + [anon_sym_BANG_TILDE2] = ACTIONS(2768), + [anon_sym_like2] = ACTIONS(2768), + [anon_sym_not_DASHlike2] = ACTIONS(2768), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), + [anon_sym_bit_DASHand2] = ACTIONS(2768), + [anon_sym_bit_DASHxor2] = ACTIONS(2768), + [anon_sym_bit_DASHor2] = ACTIONS(2768), + [anon_sym_err_GT] = ACTIONS(2770), + [anon_sym_out_GT] = ACTIONS(2770), + [anon_sym_e_GT] = ACTIONS(2770), + [anon_sym_o_GT] = ACTIONS(2770), + [anon_sym_err_PLUSout_GT] = ACTIONS(2770), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2770), + [anon_sym_o_PLUSe_GT] = ACTIONS(2770), + [anon_sym_e_PLUSo_GT] = ACTIONS(2770), + [anon_sym_err_GT_GT] = ACTIONS(2768), + [anon_sym_out_GT_GT] = ACTIONS(2768), + [anon_sym_e_GT_GT] = ACTIONS(2768), + [anon_sym_o_GT_GT] = ACTIONS(2768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2768), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1200)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1153), [sym_comment] = STATE(1200), - [anon_sym_in] = ACTIONS(2740), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2742), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2740), - [anon_sym_has2] = ACTIONS(2740), - [anon_sym_not_DASHhas2] = ACTIONS(2740), - [anon_sym_starts_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2740), - [anon_sym_ends_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2740), - [anon_sym_EQ_EQ2] = ACTIONS(2740), - [anon_sym_BANG_EQ2] = ACTIONS(2740), - [anon_sym_LT2] = ACTIONS(2742), - [anon_sym_LT_EQ2] = ACTIONS(2740), - [anon_sym_GT_EQ2] = ACTIONS(2740), - [anon_sym_EQ_TILDE2] = ACTIONS(2740), - [anon_sym_BANG_TILDE2] = ACTIONS(2740), - [anon_sym_like2] = ACTIONS(2740), - [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2666), + [sym__newline] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2666), + [anon_sym_has2] = ACTIONS(2666), + [anon_sym_not_DASHhas2] = ACTIONS(2666), + [anon_sym_starts_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2666), + [anon_sym_ends_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2666), + [anon_sym_EQ_EQ2] = ACTIONS(2846), + [anon_sym_BANG_EQ2] = ACTIONS(2846), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2846), + [anon_sym_GT_EQ2] = ACTIONS(2846), + [anon_sym_EQ_TILDE2] = ACTIONS(2666), + [anon_sym_BANG_TILDE2] = ACTIONS(2666), + [anon_sym_like2] = ACTIONS(2666), + [anon_sym_not_DASHlike2] = ACTIONS(2666), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), + [anon_sym_bit_DASHand2] = ACTIONS(2666), + [anon_sym_bit_DASHxor2] = ACTIONS(2666), + [anon_sym_bit_DASHor2] = ACTIONS(2666), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1201)] = { - [aux_sym__repeat_newline] = STATE(1248), + [sym__ctrl_match_body] = STATE(5007), + [sym_match_arm] = STATE(4515), + [sym_default_arm] = STATE(4515), + [sym_match_pattern] = STATE(5101), + [sym__match_pattern] = STATE(3907), + [sym__match_pattern_expression] = STATE(4160), + [sym__match_pattern_value] = STATE(4162), + [sym__match_pattern_list] = STATE(4163), + [sym__match_pattern_record] = STATE(4167), + [sym_expr_parenthesized] = STATE(3716), + [sym_val_range] = STATE(4162), + [sym__val_range] = STATE(5013), + [sym_val_nothing] = STATE(4167), + [sym_val_bool] = STATE(3955), + [sym_val_variable] = STATE(3718), + [sym_val_number] = STATE(4167), + [sym__val_number_decimal] = STATE(3468), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(4167), + [sym_val_filesize] = STATE(4167), + [sym_val_binary] = STATE(4167), + [sym_val_string] = STATE(4167), + [sym__raw_str] = STATE(2243), + [sym__str_double_quotes] = STATE(2243), + [sym__str_single_quotes] = STATE(2243), + [sym__str_back_ticks] = STATE(2243), + [sym_val_table] = STATE(4167), + [sym_unquoted] = STATE(4170), + [sym__unquoted_anonymous_prefix] = STATE(5013), [sym_comment] = STATE(1201), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [aux_sym__types_body_repeat1] = STATE(1346), + [aux_sym__ctrl_match_body_repeat1] = STATE(1369), + [anon_sym_true] = ACTIONS(2900), + [anon_sym_false] = ACTIONS(2900), + [anon_sym_null] = ACTIONS(2902), + [aux_sym_cmd_identifier_token3] = ACTIONS(2904), + [aux_sym_cmd_identifier_token4] = ACTIONS(2904), + [aux_sym_cmd_identifier_token5] = ACTIONS(2904), + [sym__newline] = ACTIONS(2906), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2748), + [anon_sym_DOLLAR] = ACTIONS(2910), + [anon_sym_LBRACE] = ACTIONS(2912), + [anon_sym_RBRACE] = ACTIONS(2914), + [anon_sym__] = ACTIONS(2916), + [anon_sym_DOT_DOT] = ACTIONS(2918), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2920), + [anon_sym_DOT_DOT_LT] = ACTIONS(2920), + [aux_sym__val_number_decimal_token1] = ACTIONS(2922), + [aux_sym__val_number_decimal_token2] = ACTIONS(2924), + [aux_sym__val_number_decimal_token3] = ACTIONS(2926), + [aux_sym__val_number_decimal_token4] = ACTIONS(2926), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1790), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(1202)] = { + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1202), - [anon_sym_in] = ACTIONS(2276), - [sym__newline] = ACTIONS(2284), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_PIPE] = ACTIONS(2287), - [anon_sym_err_GT_PIPE] = ACTIONS(2287), - [anon_sym_out_GT_PIPE] = ACTIONS(2287), - [anon_sym_e_GT_PIPE] = ACTIONS(2287), - [anon_sym_o_GT_PIPE] = ACTIONS(2287), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2287), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2287), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2287), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2287), - [anon_sym_RPAREN] = ACTIONS(2287), - [anon_sym_GT2] = ACTIONS(2278), - [anon_sym_DASH2] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_STAR2] = ACTIONS(2278), - [anon_sym_and2] = ACTIONS(2276), - [anon_sym_xor2] = ACTIONS(2276), - [anon_sym_or2] = ACTIONS(2276), - [anon_sym_not_DASHin2] = ACTIONS(2276), - [anon_sym_has2] = ACTIONS(2276), - [anon_sym_not_DASHhas2] = ACTIONS(2276), - [anon_sym_starts_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2276), - [anon_sym_ends_DASHwith2] = ACTIONS(2276), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2276), - [anon_sym_EQ_EQ2] = ACTIONS(2276), - [anon_sym_BANG_EQ2] = ACTIONS(2276), - [anon_sym_LT2] = ACTIONS(2278), - [anon_sym_LT_EQ2] = ACTIONS(2276), - [anon_sym_GT_EQ2] = ACTIONS(2276), - [anon_sym_EQ_TILDE2] = ACTIONS(2276), - [anon_sym_BANG_TILDE2] = ACTIONS(2276), - [anon_sym_like2] = ACTIONS(2276), - [anon_sym_not_DASHlike2] = ACTIONS(2276), - [anon_sym_STAR_STAR2] = ACTIONS(2276), - [anon_sym_PLUS_PLUS2] = ACTIONS(2276), - [anon_sym_SLASH2] = ACTIONS(2278), - [anon_sym_mod2] = ACTIONS(2276), - [anon_sym_SLASH_SLASH2] = ACTIONS(2276), - [anon_sym_PLUS2] = ACTIONS(2278), - [anon_sym_bit_DASHshl2] = ACTIONS(2276), - [anon_sym_bit_DASHshr2] = ACTIONS(2276), - [anon_sym_bit_DASHand2] = ACTIONS(2276), - [anon_sym_bit_DASHxor2] = ACTIONS(2276), - [anon_sym_bit_DASHor2] = ACTIONS(2276), - [anon_sym_err_GT] = ACTIONS(2289), - [anon_sym_out_GT] = ACTIONS(2289), - [anon_sym_e_GT] = ACTIONS(2289), - [anon_sym_o_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT] = ACTIONS(2289), - [anon_sym_err_GT_GT] = ACTIONS(2287), - [anon_sym_out_GT_GT] = ACTIONS(2287), - [anon_sym_e_GT_GT] = ACTIONS(2287), - [anon_sym_o_GT_GT] = ACTIONS(2287), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2287), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2287), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2287), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2287), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2776), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2806), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2814), + [anon_sym_BANG_EQ2] = ACTIONS(2814), + [anon_sym_LT2] = ACTIONS(2806), + [anon_sym_LT_EQ2] = ACTIONS(2814), + [anon_sym_GT_EQ2] = ACTIONS(2814), + [anon_sym_EQ_TILDE2] = ACTIONS(2816), + [anon_sym_BANG_TILDE2] = ACTIONS(2816), + [anon_sym_like2] = ACTIONS(2816), + [anon_sym_not_DASHlike2] = ACTIONS(2816), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2826), + [anon_sym_bit_DASHxor2] = ACTIONS(2776), + [anon_sym_bit_DASHor2] = ACTIONS(2776), + [anon_sym_err_GT] = ACTIONS(2778), + [anon_sym_out_GT] = ACTIONS(2778), + [anon_sym_e_GT] = ACTIONS(2778), + [anon_sym_o_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT] = ACTIONS(2778), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1203)] = { + [aux_sym__repeat_newline] = STATE(1220), [sym_comment] = STATE(1203), - [anon_sym_in] = ACTIONS(2533), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2535), - [anon_sym_DASH2] = ACTIONS(2533), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2535), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2533), - [anon_sym_has2] = ACTIONS(2533), - [anon_sym_not_DASHhas2] = ACTIONS(2533), - [anon_sym_starts_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), - [anon_sym_ends_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), - [anon_sym_EQ_EQ2] = ACTIONS(2533), - [anon_sym_BANG_EQ2] = ACTIONS(2533), - [anon_sym_LT2] = ACTIONS(2535), - [anon_sym_LT_EQ2] = ACTIONS(2533), - [anon_sym_GT_EQ2] = ACTIONS(2533), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2535), - [anon_sym_mod2] = ACTIONS(2533), - [anon_sym_SLASH_SLASH2] = ACTIONS(2533), - [anon_sym_PLUS2] = ACTIONS(2535), - [anon_sym_bit_DASHshl2] = ACTIONS(2533), - [anon_sym_bit_DASHshr2] = ACTIONS(2533), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(2666), + [sym__newline] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2668), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2666), + [anon_sym_has2] = ACTIONS(2666), + [anon_sym_not_DASHhas2] = ACTIONS(2666), + [anon_sym_starts_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2666), + [anon_sym_ends_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2666), + [anon_sym_EQ_EQ2] = ACTIONS(2666), + [anon_sym_BANG_EQ2] = ACTIONS(2666), + [anon_sym_LT2] = ACTIONS(2668), + [anon_sym_LT_EQ2] = ACTIONS(2666), + [anon_sym_GT_EQ2] = ACTIONS(2666), + [anon_sym_EQ_TILDE2] = ACTIONS(2666), + [anon_sym_BANG_TILDE2] = ACTIONS(2666), + [anon_sym_like2] = ACTIONS(2666), + [anon_sym_not_DASHlike2] = ACTIONS(2666), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2666), + [anon_sym_bit_DASHshr2] = ACTIONS(2666), + [anon_sym_bit_DASHand2] = ACTIONS(2666), + [anon_sym_bit_DASHxor2] = ACTIONS(2666), + [anon_sym_bit_DASHor2] = ACTIONS(2666), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1204)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1254), [sym_comment] = STATE(1204), - [anon_sym_in] = ACTIONS(2740), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2742), - [anon_sym_DASH2] = ACTIONS(2740), - [anon_sym_STAR2] = ACTIONS(2742), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2740), - [anon_sym_has2] = ACTIONS(2740), - [anon_sym_not_DASHhas2] = ACTIONS(2740), - [anon_sym_starts_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2740), - [anon_sym_ends_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2740), - [anon_sym_EQ_EQ2] = ACTIONS(2740), - [anon_sym_BANG_EQ2] = ACTIONS(2740), - [anon_sym_LT2] = ACTIONS(2742), - [anon_sym_LT_EQ2] = ACTIONS(2740), - [anon_sym_GT_EQ2] = ACTIONS(2740), - [anon_sym_EQ_TILDE2] = ACTIONS(2740), - [anon_sym_BANG_TILDE2] = ACTIONS(2740), - [anon_sym_like2] = ACTIONS(2740), - [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2742), - [anon_sym_mod2] = ACTIONS(2740), - [anon_sym_SLASH_SLASH2] = ACTIONS(2740), - [anon_sym_PLUS2] = ACTIONS(2742), - [anon_sym_bit_DASHshl2] = ACTIONS(2740), - [anon_sym_bit_DASHshr2] = ACTIONS(2740), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2832), + [sym__newline] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2832), + [anon_sym_has2] = ACTIONS(2832), + [anon_sym_not_DASHhas2] = ACTIONS(2832), + [anon_sym_starts_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), + [anon_sym_ends_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), + [anon_sym_EQ_EQ2] = ACTIONS(2846), + [anon_sym_BANG_EQ2] = ACTIONS(2846), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2846), + [anon_sym_GT_EQ2] = ACTIONS(2846), + [anon_sym_EQ_TILDE2] = ACTIONS(2848), + [anon_sym_BANG_TILDE2] = ACTIONS(2848), + [anon_sym_like2] = ACTIONS(2848), + [anon_sym_not_DASHlike2] = ACTIONS(2848), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), + [anon_sym_bit_DASHand2] = ACTIONS(2858), + [anon_sym_bit_DASHxor2] = ACTIONS(2666), + [anon_sym_bit_DASHor2] = ACTIONS(2666), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1205)] = { [sym_comment] = STATE(1205), - [ts_builtin_sym_end] = ACTIONS(968), - [anon_sym_in] = ACTIONS(968), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(968), - [anon_sym_xor2] = ACTIONS(968), - [anon_sym_or2] = ACTIONS(968), - [anon_sym_not_DASHin2] = ACTIONS(968), - [anon_sym_has2] = ACTIONS(968), - [anon_sym_not_DASHhas2] = ACTIONS(968), - [anon_sym_starts_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(968), - [anon_sym_ends_DASHwith2] = ACTIONS(968), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(968), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(968), - [anon_sym_like2] = ACTIONS(968), - [anon_sym_not_DASHlike2] = ACTIONS(968), - [anon_sym_STAR_STAR2] = ACTIONS(968), - [anon_sym_PLUS_PLUS2] = ACTIONS(968), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(968), - [anon_sym_SLASH_SLASH2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(968), - [anon_sym_bit_DASHshr2] = ACTIONS(968), - [anon_sym_bit_DASHand2] = ACTIONS(968), - [anon_sym_bit_DASHxor2] = ACTIONS(968), - [anon_sym_bit_DASHor2] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [sym__unquoted_pattern] = ACTIONS(1820), + [ts_builtin_sym_end] = ACTIONS(2120), + [anon_sym_in] = ACTIONS(2120), + [sym__newline] = ACTIONS(2120), + [anon_sym_SEMI] = ACTIONS(2120), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_err_GT_PIPE] = ACTIONS(2120), + [anon_sym_out_GT_PIPE] = ACTIONS(2120), + [anon_sym_e_GT_PIPE] = ACTIONS(2120), + [anon_sym_o_GT_PIPE] = ACTIONS(2120), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2120), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2120), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2120), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2120), + [anon_sym_GT2] = ACTIONS(2122), + [anon_sym_DASH2] = ACTIONS(2120), + [anon_sym_STAR2] = ACTIONS(2122), + [anon_sym_and2] = ACTIONS(2120), + [anon_sym_xor2] = ACTIONS(2120), + [anon_sym_or2] = ACTIONS(2120), + [anon_sym_not_DASHin2] = ACTIONS(2120), + [anon_sym_has2] = ACTIONS(2120), + [anon_sym_not_DASHhas2] = ACTIONS(2120), + [anon_sym_starts_DASHwith2] = ACTIONS(2120), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2120), + [anon_sym_ends_DASHwith2] = ACTIONS(2120), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2120), + [anon_sym_EQ_EQ2] = ACTIONS(2120), + [anon_sym_BANG_EQ2] = ACTIONS(2120), + [anon_sym_LT2] = ACTIONS(2122), + [anon_sym_LT_EQ2] = ACTIONS(2120), + [anon_sym_GT_EQ2] = ACTIONS(2120), + [anon_sym_EQ_TILDE2] = ACTIONS(2120), + [anon_sym_BANG_TILDE2] = ACTIONS(2120), + [anon_sym_like2] = ACTIONS(2120), + [anon_sym_not_DASHlike2] = ACTIONS(2120), + [anon_sym_LPAREN2] = ACTIONS(2120), + [anon_sym_STAR_STAR2] = ACTIONS(2120), + [anon_sym_PLUS_PLUS2] = ACTIONS(2120), + [anon_sym_SLASH2] = ACTIONS(2122), + [anon_sym_mod2] = ACTIONS(2120), + [anon_sym_SLASH_SLASH2] = ACTIONS(2120), + [anon_sym_PLUS2] = ACTIONS(2122), + [anon_sym_bit_DASHshl2] = ACTIONS(2120), + [anon_sym_bit_DASHshr2] = ACTIONS(2120), + [anon_sym_bit_DASHand2] = ACTIONS(2120), + [anon_sym_bit_DASHxor2] = ACTIONS(2120), + [anon_sym_bit_DASHor2] = ACTIONS(2120), + [anon_sym_err_GT] = ACTIONS(2122), + [anon_sym_out_GT] = ACTIONS(2122), + [anon_sym_e_GT] = ACTIONS(2122), + [anon_sym_o_GT] = ACTIONS(2122), + [anon_sym_err_PLUSout_GT] = ACTIONS(2122), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2122), + [anon_sym_o_PLUSe_GT] = ACTIONS(2122), + [anon_sym_e_PLUSo_GT] = ACTIONS(2122), + [anon_sym_err_GT_GT] = ACTIONS(2120), + [anon_sym_out_GT_GT] = ACTIONS(2120), + [anon_sym_e_GT_GT] = ACTIONS(2120), + [anon_sym_o_GT_GT] = ACTIONS(2120), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2120), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2120), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2120), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2120), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1206)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1227), [sym_comment] = STATE(1206), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2832), + [sym__newline] = ACTIONS(2864), + [anon_sym_SEMI] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_err_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_GT_PIPE] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), + [anon_sym_RPAREN] = ACTIONS(2676), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2676), + [anon_sym_xor2] = ACTIONS(2676), + [anon_sym_or2] = ACTIONS(2676), + [anon_sym_not_DASHin2] = ACTIONS(2832), + [anon_sym_has2] = ACTIONS(2832), + [anon_sym_not_DASHhas2] = ACTIONS(2832), + [anon_sym_starts_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), + [anon_sym_ends_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), + [anon_sym_EQ_EQ2] = ACTIONS(2846), + [anon_sym_BANG_EQ2] = ACTIONS(2846), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2846), + [anon_sym_GT_EQ2] = ACTIONS(2846), + [anon_sym_EQ_TILDE2] = ACTIONS(2848), + [anon_sym_BANG_TILDE2] = ACTIONS(2848), + [anon_sym_like2] = ACTIONS(2848), + [anon_sym_not_DASHlike2] = ACTIONS(2848), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), + [anon_sym_bit_DASHand2] = ACTIONS(2858), + [anon_sym_bit_DASHxor2] = ACTIONS(2860), + [anon_sym_bit_DASHor2] = ACTIONS(2676), + [anon_sym_err_GT] = ACTIONS(2678), + [anon_sym_out_GT] = ACTIONS(2678), + [anon_sym_e_GT] = ACTIONS(2678), + [anon_sym_o_GT] = ACTIONS(2678), + [anon_sym_err_PLUSout_GT] = ACTIONS(2678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), + [anon_sym_o_PLUSe_GT] = ACTIONS(2678), + [anon_sym_e_PLUSo_GT] = ACTIONS(2678), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1207)] = { [sym_comment] = STATE(1207), - [ts_builtin_sym_end] = ACTIONS(968), - [aux_sym_cmd_identifier_token2] = ACTIONS(2916), - [anon_sym_in] = ACTIONS(868), - [sym__newline] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_err_GT_PIPE] = ACTIONS(968), - [anon_sym_out_GT_PIPE] = ACTIONS(968), - [anon_sym_e_GT_PIPE] = ACTIONS(968), - [anon_sym_o_GT_PIPE] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(968), - [anon_sym_GT2] = ACTIONS(868), - [anon_sym_DASH2] = ACTIONS(868), - [anon_sym_STAR2] = ACTIONS(868), - [anon_sym_and2] = ACTIONS(868), - [anon_sym_xor2] = ACTIONS(868), - [anon_sym_or2] = ACTIONS(868), - [anon_sym_not_DASHin2] = ACTIONS(868), - [anon_sym_has2] = ACTIONS(868), - [anon_sym_not_DASHhas2] = ACTIONS(868), - [anon_sym_starts_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(868), - [anon_sym_ends_DASHwith2] = ACTIONS(868), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(868), - [anon_sym_EQ_EQ2] = ACTIONS(968), - [anon_sym_BANG_EQ2] = ACTIONS(968), - [anon_sym_LT2] = ACTIONS(868), - [anon_sym_LT_EQ2] = ACTIONS(968), - [anon_sym_GT_EQ2] = ACTIONS(968), - [anon_sym_EQ_TILDE2] = ACTIONS(968), - [anon_sym_BANG_TILDE2] = ACTIONS(868), - [anon_sym_like2] = ACTIONS(868), - [anon_sym_not_DASHlike2] = ACTIONS(868), - [anon_sym_STAR_STAR2] = ACTIONS(868), - [anon_sym_PLUS_PLUS2] = ACTIONS(868), - [anon_sym_SLASH2] = ACTIONS(868), - [anon_sym_mod2] = ACTIONS(868), - [anon_sym_SLASH_SLASH2] = ACTIONS(868), - [anon_sym_PLUS2] = ACTIONS(868), - [anon_sym_bit_DASHshl2] = ACTIONS(868), - [anon_sym_bit_DASHshr2] = ACTIONS(868), - [anon_sym_bit_DASHand2] = ACTIONS(868), - [anon_sym_bit_DASHxor2] = ACTIONS(868), - [anon_sym_bit_DASHor2] = ACTIONS(868), - [anon_sym_err_GT] = ACTIONS(868), - [anon_sym_out_GT] = ACTIONS(868), - [anon_sym_e_GT] = ACTIONS(868), - [anon_sym_o_GT] = ACTIONS(868), - [anon_sym_err_PLUSout_GT] = ACTIONS(868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(868), - [anon_sym_o_PLUSe_GT] = ACTIONS(868), - [anon_sym_e_PLUSo_GT] = ACTIONS(868), - [anon_sym_err_GT_GT] = ACTIONS(968), - [anon_sym_out_GT_GT] = ACTIONS(968), - [anon_sym_e_GT_GT] = ACTIONS(968), - [anon_sym_o_GT_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2547), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_err_GT_PIPE] = ACTIONS(2547), + [anon_sym_out_GT_PIPE] = ACTIONS(2547), + [anon_sym_e_GT_PIPE] = ACTIONS(2547), + [anon_sym_o_GT_PIPE] = ACTIONS(2547), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2547), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2547), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2547), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2547), + [anon_sym_RPAREN] = ACTIONS(2547), + [anon_sym_GT2] = ACTIONS(2782), + [anon_sym_DASH2] = ACTIONS(2784), + [anon_sym_RBRACE] = ACTIONS(2547), + [anon_sym_STAR2] = ACTIONS(2786), + [anon_sym_and2] = ACTIONS(2547), + [anon_sym_xor2] = ACTIONS(2547), + [anon_sym_or2] = ACTIONS(2547), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2788), + [anon_sym_BANG_EQ2] = ACTIONS(2788), + [anon_sym_LT2] = ACTIONS(2782), + [anon_sym_LT_EQ2] = ACTIONS(2788), + [anon_sym_GT_EQ2] = ACTIONS(2788), + [anon_sym_EQ_TILDE2] = ACTIONS(2790), + [anon_sym_BANG_TILDE2] = ACTIONS(2790), + [anon_sym_like2] = ACTIONS(2790), + [anon_sym_not_DASHlike2] = ACTIONS(2790), + [anon_sym_STAR_STAR2] = ACTIONS(2792), + [anon_sym_PLUS_PLUS2] = ACTIONS(2792), + [anon_sym_SLASH2] = ACTIONS(2786), + [anon_sym_mod2] = ACTIONS(2794), + [anon_sym_SLASH_SLASH2] = ACTIONS(2794), + [anon_sym_PLUS2] = ACTIONS(2796), + [anon_sym_bit_DASHshl2] = ACTIONS(2798), + [anon_sym_bit_DASHshr2] = ACTIONS(2798), + [anon_sym_bit_DASHand2] = ACTIONS(2547), + [anon_sym_bit_DASHxor2] = ACTIONS(2547), + [anon_sym_bit_DASHor2] = ACTIONS(2547), + [anon_sym_err_GT] = ACTIONS(2549), + [anon_sym_out_GT] = ACTIONS(2549), + [anon_sym_e_GT] = ACTIONS(2549), + [anon_sym_o_GT] = ACTIONS(2549), + [anon_sym_err_PLUSout_GT] = ACTIONS(2549), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2549), + [anon_sym_o_PLUSe_GT] = ACTIONS(2549), + [anon_sym_e_PLUSo_GT] = ACTIONS(2549), + [anon_sym_err_GT_GT] = ACTIONS(2547), + [anon_sym_out_GT_GT] = ACTIONS(2547), + [anon_sym_e_GT_GT] = ACTIONS(2547), + [anon_sym_o_GT_GT] = ACTIONS(2547), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2547), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2547), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2547), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2547), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1208)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1160), [sym_comment] = STATE(1208), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2684), + [sym__newline] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(2684), + [anon_sym_PIPE] = ACTIONS(2684), + [anon_sym_err_GT_PIPE] = ACTIONS(2684), + [anon_sym_out_GT_PIPE] = ACTIONS(2684), + [anon_sym_e_GT_PIPE] = ACTIONS(2684), + [anon_sym_o_GT_PIPE] = ACTIONS(2684), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), + [anon_sym_RPAREN] = ACTIONS(2684), + [anon_sym_GT2] = ACTIONS(2686), + [anon_sym_DASH2] = ACTIONS(2684), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2684), + [anon_sym_xor2] = ACTIONS(2684), + [anon_sym_or2] = ACTIONS(2684), + [anon_sym_not_DASHin2] = ACTIONS(2684), + [anon_sym_has2] = ACTIONS(2684), + [anon_sym_not_DASHhas2] = ACTIONS(2684), + [anon_sym_starts_DASHwith2] = ACTIONS(2684), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2684), + [anon_sym_ends_DASHwith2] = ACTIONS(2684), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2684), + [anon_sym_EQ_EQ2] = ACTIONS(2684), + [anon_sym_BANG_EQ2] = ACTIONS(2684), + [anon_sym_LT2] = ACTIONS(2686), + [anon_sym_LT_EQ2] = ACTIONS(2684), + [anon_sym_GT_EQ2] = ACTIONS(2684), + [anon_sym_EQ_TILDE2] = ACTIONS(2684), + [anon_sym_BANG_TILDE2] = ACTIONS(2684), + [anon_sym_like2] = ACTIONS(2684), + [anon_sym_not_DASHlike2] = ACTIONS(2684), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2686), + [anon_sym_bit_DASHshl2] = ACTIONS(2684), + [anon_sym_bit_DASHshr2] = ACTIONS(2684), + [anon_sym_bit_DASHand2] = ACTIONS(2684), + [anon_sym_bit_DASHxor2] = ACTIONS(2684), + [anon_sym_bit_DASHor2] = ACTIONS(2684), + [anon_sym_err_GT] = ACTIONS(2686), + [anon_sym_out_GT] = ACTIONS(2686), + [anon_sym_e_GT] = ACTIONS(2686), + [anon_sym_o_GT] = ACTIONS(2686), + [anon_sym_err_PLUSout_GT] = ACTIONS(2686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), + [anon_sym_o_PLUSe_GT] = ACTIONS(2686), + [anon_sym_e_PLUSo_GT] = ACTIONS(2686), + [anon_sym_err_GT_GT] = ACTIONS(2684), + [anon_sym_out_GT_GT] = ACTIONS(2684), + [anon_sym_e_GT_GT] = ACTIONS(2684), + [anon_sym_o_GT_GT] = ACTIONS(2684), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1209)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1243), [sym_comment] = STATE(1209), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2720), - [anon_sym_has2] = ACTIONS(2720), - [anon_sym_not_DASHhas2] = ACTIONS(2720), - [anon_sym_starts_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), - [anon_sym_ends_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2768), + [sym__newline] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2768), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_err_GT_PIPE] = ACTIONS(2768), + [anon_sym_out_GT_PIPE] = ACTIONS(2768), + [anon_sym_e_GT_PIPE] = ACTIONS(2768), + [anon_sym_o_GT_PIPE] = ACTIONS(2768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2768), + [anon_sym_RPAREN] = ACTIONS(2768), + [anon_sym_GT2] = ACTIONS(2770), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2768), + [anon_sym_xor2] = ACTIONS(2768), + [anon_sym_or2] = ACTIONS(2768), + [anon_sym_not_DASHin2] = ACTIONS(2768), + [anon_sym_has2] = ACTIONS(2768), + [anon_sym_not_DASHhas2] = ACTIONS(2768), + [anon_sym_starts_DASHwith2] = ACTIONS(2768), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2768), + [anon_sym_ends_DASHwith2] = ACTIONS(2768), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2768), + [anon_sym_EQ_EQ2] = ACTIONS(2768), + [anon_sym_BANG_EQ2] = ACTIONS(2768), + [anon_sym_LT2] = ACTIONS(2770), + [anon_sym_LT_EQ2] = ACTIONS(2768), + [anon_sym_GT_EQ2] = ACTIONS(2768), + [anon_sym_EQ_TILDE2] = ACTIONS(2768), + [anon_sym_BANG_TILDE2] = ACTIONS(2768), + [anon_sym_like2] = ACTIONS(2768), + [anon_sym_not_DASHlike2] = ACTIONS(2768), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2768), + [anon_sym_bit_DASHshr2] = ACTIONS(2768), + [anon_sym_bit_DASHand2] = ACTIONS(2768), + [anon_sym_bit_DASHxor2] = ACTIONS(2768), + [anon_sym_bit_DASHor2] = ACTIONS(2768), + [anon_sym_err_GT] = ACTIONS(2770), + [anon_sym_out_GT] = ACTIONS(2770), + [anon_sym_e_GT] = ACTIONS(2770), + [anon_sym_o_GT] = ACTIONS(2770), + [anon_sym_err_PLUSout_GT] = ACTIONS(2770), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2770), + [anon_sym_o_PLUSe_GT] = ACTIONS(2770), + [anon_sym_e_PLUSo_GT] = ACTIONS(2770), + [anon_sym_err_GT_GT] = ACTIONS(2768), + [anon_sym_out_GT_GT] = ACTIONS(2768), + [anon_sym_e_GT_GT] = ACTIONS(2768), + [anon_sym_o_GT_GT] = ACTIONS(2768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2768), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1210)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1131), [sym_comment] = STATE(1210), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2918), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2832), + [sym__newline] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2842), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2832), + [anon_sym_has2] = ACTIONS(2832), + [anon_sym_not_DASHhas2] = ACTIONS(2832), + [anon_sym_starts_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), + [anon_sym_ends_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), + [anon_sym_EQ_EQ2] = ACTIONS(2846), + [anon_sym_BANG_EQ2] = ACTIONS(2846), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2846), + [anon_sym_GT_EQ2] = ACTIONS(2846), + [anon_sym_EQ_TILDE2] = ACTIONS(2848), + [anon_sym_BANG_TILDE2] = ACTIONS(2848), + [anon_sym_like2] = ACTIONS(2848), + [anon_sym_not_DASHlike2] = ACTIONS(2848), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), + [anon_sym_bit_DASHand2] = ACTIONS(2858), + [anon_sym_bit_DASHxor2] = ACTIONS(2860), + [anon_sym_bit_DASHor2] = ACTIONS(2862), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1211)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1184), [sym_comment] = STATE(1211), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2684), + [sym__newline] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(2684), + [anon_sym_PIPE] = ACTIONS(2684), + [anon_sym_err_GT_PIPE] = ACTIONS(2684), + [anon_sym_out_GT_PIPE] = ACTIONS(2684), + [anon_sym_e_GT_PIPE] = ACTIONS(2684), + [anon_sym_o_GT_PIPE] = ACTIONS(2684), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), + [anon_sym_RPAREN] = ACTIONS(2684), + [anon_sym_GT2] = ACTIONS(2686), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2684), + [anon_sym_xor2] = ACTIONS(2684), + [anon_sym_or2] = ACTIONS(2684), + [anon_sym_not_DASHin2] = ACTIONS(2684), + [anon_sym_has2] = ACTIONS(2684), + [anon_sym_not_DASHhas2] = ACTIONS(2684), + [anon_sym_starts_DASHwith2] = ACTIONS(2684), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2684), + [anon_sym_ends_DASHwith2] = ACTIONS(2684), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2684), + [anon_sym_EQ_EQ2] = ACTIONS(2684), + [anon_sym_BANG_EQ2] = ACTIONS(2684), + [anon_sym_LT2] = ACTIONS(2686), + [anon_sym_LT_EQ2] = ACTIONS(2684), + [anon_sym_GT_EQ2] = ACTIONS(2684), + [anon_sym_EQ_TILDE2] = ACTIONS(2684), + [anon_sym_BANG_TILDE2] = ACTIONS(2684), + [anon_sym_like2] = ACTIONS(2684), + [anon_sym_not_DASHlike2] = ACTIONS(2684), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2684), + [anon_sym_bit_DASHshr2] = ACTIONS(2684), + [anon_sym_bit_DASHand2] = ACTIONS(2684), + [anon_sym_bit_DASHxor2] = ACTIONS(2684), + [anon_sym_bit_DASHor2] = ACTIONS(2684), + [anon_sym_err_GT] = ACTIONS(2686), + [anon_sym_out_GT] = ACTIONS(2686), + [anon_sym_e_GT] = ACTIONS(2686), + [anon_sym_o_GT] = ACTIONS(2686), + [anon_sym_err_PLUSout_GT] = ACTIONS(2686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), + [anon_sym_o_PLUSe_GT] = ACTIONS(2686), + [anon_sym_e_PLUSo_GT] = ACTIONS(2686), + [anon_sym_err_GT_GT] = ACTIONS(2684), + [anon_sym_out_GT_GT] = ACTIONS(2684), + [anon_sym_e_GT_GT] = ACTIONS(2684), + [anon_sym_o_GT_GT] = ACTIONS(2684), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1212)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1212), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2740), - [anon_sym_BANG_TILDE2] = ACTIONS(2740), - [anon_sym_like2] = ACTIONS(2740), - [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2772), + [sym__newline] = ACTIONS(2772), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_err_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_GT_PIPE] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_GT2] = ACTIONS(2774), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2772), + [anon_sym_xor2] = ACTIONS(2772), + [anon_sym_or2] = ACTIONS(2772), + [anon_sym_not_DASHin2] = ACTIONS(2772), + [anon_sym_has2] = ACTIONS(2772), + [anon_sym_not_DASHhas2] = ACTIONS(2772), + [anon_sym_starts_DASHwith2] = ACTIONS(2772), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2772), + [anon_sym_ends_DASHwith2] = ACTIONS(2772), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2772), + [anon_sym_EQ_EQ2] = ACTIONS(2772), + [anon_sym_BANG_EQ2] = ACTIONS(2772), + [anon_sym_LT2] = ACTIONS(2774), + [anon_sym_LT_EQ2] = ACTIONS(2772), + [anon_sym_GT_EQ2] = ACTIONS(2772), + [anon_sym_EQ_TILDE2] = ACTIONS(2772), + [anon_sym_BANG_TILDE2] = ACTIONS(2772), + [anon_sym_like2] = ACTIONS(2772), + [anon_sym_not_DASHlike2] = ACTIONS(2772), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_bit_DASHshl2] = ACTIONS(2772), + [anon_sym_bit_DASHshr2] = ACTIONS(2772), + [anon_sym_bit_DASHand2] = ACTIONS(2772), + [anon_sym_bit_DASHxor2] = ACTIONS(2772), + [anon_sym_bit_DASHor2] = ACTIONS(2772), + [anon_sym_err_GT] = ACTIONS(2774), + [anon_sym_out_GT] = ACTIONS(2774), + [anon_sym_e_GT] = ACTIONS(2774), + [anon_sym_o_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT] = ACTIONS(2774), + [anon_sym_err_GT_GT] = ACTIONS(2772), + [anon_sym_out_GT_GT] = ACTIONS(2772), + [anon_sym_e_GT_GT] = ACTIONS(2772), + [anon_sym_o_GT_GT] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1213)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1213), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2722), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2720), - [anon_sym_has2] = ACTIONS(2720), - [anon_sym_not_DASHhas2] = ACTIONS(2720), - [anon_sym_starts_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), - [anon_sym_ends_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), - [anon_sym_EQ_EQ2] = ACTIONS(2720), - [anon_sym_BANG_EQ2] = ACTIONS(2720), - [anon_sym_LT2] = ACTIONS(2722), - [anon_sym_LT_EQ2] = ACTIONS(2720), - [anon_sym_GT_EQ2] = ACTIONS(2720), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2776), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2806), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2814), + [anon_sym_BANG_EQ2] = ACTIONS(2814), + [anon_sym_LT2] = ACTIONS(2806), + [anon_sym_LT_EQ2] = ACTIONS(2814), + [anon_sym_GT_EQ2] = ACTIONS(2814), + [anon_sym_EQ_TILDE2] = ACTIONS(2816), + [anon_sym_BANG_TILDE2] = ACTIONS(2816), + [anon_sym_like2] = ACTIONS(2816), + [anon_sym_not_DASHlike2] = ACTIONS(2816), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2826), + [anon_sym_bit_DASHxor2] = ACTIONS(2828), + [anon_sym_bit_DASHor2] = ACTIONS(2776), + [anon_sym_err_GT] = ACTIONS(2778), + [anon_sym_out_GT] = ACTIONS(2778), + [anon_sym_e_GT] = ACTIONS(2778), + [anon_sym_o_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT] = ACTIONS(2778), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1214)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1248), [sym_comment] = STATE(1214), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2832), + [sym__newline] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2768), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_err_GT_PIPE] = ACTIONS(2768), + [anon_sym_out_GT_PIPE] = ACTIONS(2768), + [anon_sym_e_GT_PIPE] = ACTIONS(2768), + [anon_sym_o_GT_PIPE] = ACTIONS(2768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2768), + [anon_sym_RPAREN] = ACTIONS(2768), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2768), + [anon_sym_xor2] = ACTIONS(2768), + [anon_sym_or2] = ACTIONS(2768), + [anon_sym_not_DASHin2] = ACTIONS(2832), + [anon_sym_has2] = ACTIONS(2832), + [anon_sym_not_DASHhas2] = ACTIONS(2832), + [anon_sym_starts_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), + [anon_sym_ends_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), + [anon_sym_EQ_EQ2] = ACTIONS(2846), + [anon_sym_BANG_EQ2] = ACTIONS(2846), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2846), + [anon_sym_GT_EQ2] = ACTIONS(2846), + [anon_sym_EQ_TILDE2] = ACTIONS(2848), + [anon_sym_BANG_TILDE2] = ACTIONS(2848), + [anon_sym_like2] = ACTIONS(2848), + [anon_sym_not_DASHlike2] = ACTIONS(2848), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), + [anon_sym_bit_DASHand2] = ACTIONS(2768), + [anon_sym_bit_DASHxor2] = ACTIONS(2768), + [anon_sym_bit_DASHor2] = ACTIONS(2768), + [anon_sym_err_GT] = ACTIONS(2770), + [anon_sym_out_GT] = ACTIONS(2770), + [anon_sym_e_GT] = ACTIONS(2770), + [anon_sym_o_GT] = ACTIONS(2770), + [anon_sym_err_PLUSout_GT] = ACTIONS(2770), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2770), + [anon_sym_o_PLUSe_GT] = ACTIONS(2770), + [anon_sym_e_PLUSo_GT] = ACTIONS(2770), + [anon_sym_err_GT_GT] = ACTIONS(2768), + [anon_sym_out_GT_GT] = ACTIONS(2768), + [anon_sym_e_GT_GT] = ACTIONS(2768), + [anon_sym_o_GT_GT] = ACTIONS(2768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2768), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1215)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1215), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2722), - [anon_sym_DASH2] = ACTIONS(2720), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2720), - [anon_sym_has2] = ACTIONS(2720), - [anon_sym_not_DASHhas2] = ACTIONS(2720), - [anon_sym_starts_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), - [anon_sym_ends_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), - [anon_sym_EQ_EQ2] = ACTIONS(2720), - [anon_sym_BANG_EQ2] = ACTIONS(2720), - [anon_sym_LT2] = ACTIONS(2722), - [anon_sym_LT_EQ2] = ACTIONS(2720), - [anon_sym_GT_EQ2] = ACTIONS(2720), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2722), - [anon_sym_bit_DASHshl2] = ACTIONS(2720), - [anon_sym_bit_DASHshr2] = ACTIONS(2720), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(1689), + [sym__newline] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_PIPE] = ACTIONS(1689), + [anon_sym_err_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_GT_PIPE] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), + [anon_sym_GT2] = ACTIONS(1615), + [anon_sym_DASH2] = ACTIONS(1689), + [anon_sym_RBRACE] = ACTIONS(1689), + [anon_sym_STAR2] = ACTIONS(1615), + [anon_sym_and2] = ACTIONS(1689), + [anon_sym_xor2] = ACTIONS(1689), + [anon_sym_or2] = ACTIONS(1689), + [anon_sym_not_DASHin2] = ACTIONS(1689), + [anon_sym_has2] = ACTIONS(1689), + [anon_sym_not_DASHhas2] = ACTIONS(1689), + [anon_sym_starts_DASHwith2] = ACTIONS(1689), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1689), + [anon_sym_ends_DASHwith2] = ACTIONS(1689), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1689), + [anon_sym_EQ_EQ2] = ACTIONS(1689), + [anon_sym_BANG_EQ2] = ACTIONS(1689), + [anon_sym_LT2] = ACTIONS(1615), + [anon_sym_LT_EQ2] = ACTIONS(1689), + [anon_sym_GT_EQ2] = ACTIONS(1689), + [anon_sym_EQ_TILDE2] = ACTIONS(1689), + [anon_sym_BANG_TILDE2] = ACTIONS(1689), + [anon_sym_like2] = ACTIONS(1689), + [anon_sym_not_DASHlike2] = ACTIONS(1689), + [anon_sym_STAR_STAR2] = ACTIONS(1689), + [anon_sym_PLUS_PLUS2] = ACTIONS(1689), + [anon_sym_SLASH2] = ACTIONS(1615), + [anon_sym_mod2] = ACTIONS(1689), + [anon_sym_SLASH_SLASH2] = ACTIONS(1689), + [anon_sym_PLUS2] = ACTIONS(1615), + [anon_sym_bit_DASHshl2] = ACTIONS(1689), + [anon_sym_bit_DASHshr2] = ACTIONS(1689), + [anon_sym_bit_DASHand2] = ACTIONS(1689), + [anon_sym_bit_DASHxor2] = ACTIONS(1689), + [anon_sym_bit_DASHor2] = ACTIONS(1689), + [anon_sym_COLON2] = ACTIONS(1691), + [anon_sym_err_GT] = ACTIONS(1615), + [anon_sym_out_GT] = ACTIONS(1615), + [anon_sym_e_GT] = ACTIONS(1615), + [anon_sym_o_GT] = ACTIONS(1615), + [anon_sym_err_PLUSout_GT] = ACTIONS(1615), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), + [anon_sym_o_PLUSe_GT] = ACTIONS(1615), + [anon_sym_e_PLUSo_GT] = ACTIONS(1615), + [anon_sym_err_GT_GT] = ACTIONS(1689), + [anon_sym_out_GT_GT] = ACTIONS(1689), + [anon_sym_e_GT_GT] = ACTIONS(1689), + [anon_sym_o_GT_GT] = ACTIONS(1689), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1216)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1216), - [anon_sym_in] = ACTIONS(2740), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2742), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2740), - [anon_sym_has2] = ACTIONS(2740), - [anon_sym_not_DASHhas2] = ACTIONS(2740), - [anon_sym_starts_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2740), - [anon_sym_ends_DASHwith2] = ACTIONS(2740), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2740), - [anon_sym_EQ_EQ2] = ACTIONS(2740), - [anon_sym_BANG_EQ2] = ACTIONS(2740), - [anon_sym_LT2] = ACTIONS(2742), - [anon_sym_LT_EQ2] = ACTIONS(2740), - [anon_sym_GT_EQ2] = ACTIONS(2740), - [anon_sym_EQ_TILDE2] = ACTIONS(2740), - [anon_sym_BANG_TILDE2] = ACTIONS(2740), - [anon_sym_like2] = ACTIONS(2740), - [anon_sym_not_DASHlike2] = ACTIONS(2740), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2740), - [anon_sym_bit_DASHshr2] = ACTIONS(2740), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2688), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_err_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_GT_PIPE] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), + [anon_sym_RPAREN] = ACTIONS(2688), + [anon_sym_GT2] = ACTIONS(2806), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2688), + [anon_sym_xor2] = ACTIONS(2688), + [anon_sym_or2] = ACTIONS(2688), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2814), + [anon_sym_BANG_EQ2] = ACTIONS(2814), + [anon_sym_LT2] = ACTIONS(2806), + [anon_sym_LT_EQ2] = ACTIONS(2814), + [anon_sym_GT_EQ2] = ACTIONS(2814), + [anon_sym_EQ_TILDE2] = ACTIONS(2816), + [anon_sym_BANG_TILDE2] = ACTIONS(2816), + [anon_sym_like2] = ACTIONS(2816), + [anon_sym_not_DASHlike2] = ACTIONS(2816), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2826), + [anon_sym_bit_DASHxor2] = ACTIONS(2688), + [anon_sym_bit_DASHor2] = ACTIONS(2688), + [anon_sym_err_GT] = ACTIONS(2690), + [anon_sym_out_GT] = ACTIONS(2690), + [anon_sym_e_GT] = ACTIONS(2690), + [anon_sym_o_GT] = ACTIONS(2690), + [anon_sym_err_PLUSout_GT] = ACTIONS(2690), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), + [anon_sym_o_PLUSe_GT] = ACTIONS(2690), + [anon_sym_e_PLUSo_GT] = ACTIONS(2690), + [anon_sym_err_GT_GT] = ACTIONS(2688), + [anon_sym_out_GT_GT] = ACTIONS(2688), + [anon_sym_e_GT_GT] = ACTIONS(2688), + [anon_sym_o_GT_GT] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1217)] = { - [aux_sym__repeat_newline] = STATE(1132), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1217), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2772), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_err_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_GT_PIPE] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_GT2] = ACTIONS(2806), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2772), + [anon_sym_xor2] = ACTIONS(2772), + [anon_sym_or2] = ACTIONS(2772), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2814), + [anon_sym_BANG_EQ2] = ACTIONS(2814), + [anon_sym_LT2] = ACTIONS(2806), + [anon_sym_LT_EQ2] = ACTIONS(2814), + [anon_sym_GT_EQ2] = ACTIONS(2814), + [anon_sym_EQ_TILDE2] = ACTIONS(2816), + [anon_sym_BANG_TILDE2] = ACTIONS(2816), + [anon_sym_like2] = ACTIONS(2816), + [anon_sym_not_DASHlike2] = ACTIONS(2816), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2772), + [anon_sym_bit_DASHxor2] = ACTIONS(2772), + [anon_sym_bit_DASHor2] = ACTIONS(2772), + [anon_sym_err_GT] = ACTIONS(2774), + [anon_sym_out_GT] = ACTIONS(2774), + [anon_sym_e_GT] = ACTIONS(2774), + [anon_sym_o_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT] = ACTIONS(2774), + [anon_sym_err_GT_GT] = ACTIONS(2772), + [anon_sym_out_GT_GT] = ACTIONS(2772), + [anon_sym_e_GT_GT] = ACTIONS(2772), + [anon_sym_o_GT_GT] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1218)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1133), [sym_comment] = STATE(1218), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2740), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), + [anon_sym_in] = ACTIONS(2666), + [sym__newline] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2668), + [anon_sym_DASH2] = ACTIONS(2666), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2666), + [anon_sym_has2] = ACTIONS(2666), + [anon_sym_not_DASHhas2] = ACTIONS(2666), + [anon_sym_starts_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2666), + [anon_sym_ends_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2666), + [anon_sym_EQ_EQ2] = ACTIONS(2666), + [anon_sym_BANG_EQ2] = ACTIONS(2666), + [anon_sym_LT2] = ACTIONS(2668), + [anon_sym_LT_EQ2] = ACTIONS(2666), + [anon_sym_GT_EQ2] = ACTIONS(2666), + [anon_sym_EQ_TILDE2] = ACTIONS(2666), + [anon_sym_BANG_TILDE2] = ACTIONS(2666), + [anon_sym_like2] = ACTIONS(2666), + [anon_sym_not_DASHlike2] = ACTIONS(2666), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2668), + [anon_sym_bit_DASHshl2] = ACTIONS(2666), + [anon_sym_bit_DASHshr2] = ACTIONS(2666), + [anon_sym_bit_DASHand2] = ACTIONS(2666), + [anon_sym_bit_DASHxor2] = ACTIONS(2666), + [anon_sym_bit_DASHor2] = ACTIONS(2666), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1219)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1202), [sym_comment] = STATE(1219), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2722), - [anon_sym_DASH2] = ACTIONS(2720), - [anon_sym_STAR2] = ACTIONS(2722), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2720), - [anon_sym_has2] = ACTIONS(2720), - [anon_sym_not_DASHhas2] = ACTIONS(2720), - [anon_sym_starts_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), - [anon_sym_ends_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), - [anon_sym_EQ_EQ2] = ACTIONS(2720), - [anon_sym_BANG_EQ2] = ACTIONS(2720), - [anon_sym_LT2] = ACTIONS(2722), - [anon_sym_LT_EQ2] = ACTIONS(2720), - [anon_sym_GT_EQ2] = ACTIONS(2720), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2722), - [anon_sym_mod2] = ACTIONS(2720), - [anon_sym_SLASH_SLASH2] = ACTIONS(2720), - [anon_sym_PLUS2] = ACTIONS(2722), - [anon_sym_bit_DASHshl2] = ACTIONS(2720), - [anon_sym_bit_DASHshr2] = ACTIONS(2720), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2832), + [sym__newline] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2768), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_err_GT_PIPE] = ACTIONS(2768), + [anon_sym_out_GT_PIPE] = ACTIONS(2768), + [anon_sym_e_GT_PIPE] = ACTIONS(2768), + [anon_sym_o_GT_PIPE] = ACTIONS(2768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2768), + [anon_sym_RPAREN] = ACTIONS(2768), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2768), + [anon_sym_xor2] = ACTIONS(2768), + [anon_sym_or2] = ACTIONS(2768), + [anon_sym_not_DASHin2] = ACTIONS(2832), + [anon_sym_has2] = ACTIONS(2832), + [anon_sym_not_DASHhas2] = ACTIONS(2832), + [anon_sym_starts_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), + [anon_sym_ends_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), + [anon_sym_EQ_EQ2] = ACTIONS(2846), + [anon_sym_BANG_EQ2] = ACTIONS(2846), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2846), + [anon_sym_GT_EQ2] = ACTIONS(2846), + [anon_sym_EQ_TILDE2] = ACTIONS(2848), + [anon_sym_BANG_TILDE2] = ACTIONS(2848), + [anon_sym_like2] = ACTIONS(2848), + [anon_sym_not_DASHlike2] = ACTIONS(2848), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), + [anon_sym_bit_DASHand2] = ACTIONS(2858), + [anon_sym_bit_DASHxor2] = ACTIONS(2768), + [anon_sym_bit_DASHor2] = ACTIONS(2768), + [anon_sym_err_GT] = ACTIONS(2770), + [anon_sym_out_GT] = ACTIONS(2770), + [anon_sym_e_GT] = ACTIONS(2770), + [anon_sym_o_GT] = ACTIONS(2770), + [anon_sym_err_PLUSout_GT] = ACTIONS(2770), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2770), + [anon_sym_o_PLUSe_GT] = ACTIONS(2770), + [anon_sym_e_PLUSo_GT] = ACTIONS(2770), + [anon_sym_err_GT_GT] = ACTIONS(2768), + [anon_sym_out_GT_GT] = ACTIONS(2768), + [anon_sym_e_GT_GT] = ACTIONS(2768), + [anon_sym_o_GT_GT] = ACTIONS(2768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2768), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1220)] = { + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1220), - [ts_builtin_sym_end] = ACTIONS(2092), - [anon_sym_in] = ACTIONS(2092), - [sym__newline] = ACTIONS(2092), - [anon_sym_SEMI] = ACTIONS(2092), - [anon_sym_PIPE] = ACTIONS(2092), - [anon_sym_err_GT_PIPE] = ACTIONS(2092), - [anon_sym_out_GT_PIPE] = ACTIONS(2092), - [anon_sym_e_GT_PIPE] = ACTIONS(2092), - [anon_sym_o_GT_PIPE] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2092), - [anon_sym_GT2] = ACTIONS(2094), - [anon_sym_DASH2] = ACTIONS(2092), - [anon_sym_STAR2] = ACTIONS(2094), - [anon_sym_and2] = ACTIONS(2092), - [anon_sym_xor2] = ACTIONS(2092), - [anon_sym_or2] = ACTIONS(2092), - [anon_sym_not_DASHin2] = ACTIONS(2092), - [anon_sym_has2] = ACTIONS(2092), - [anon_sym_not_DASHhas2] = ACTIONS(2092), - [anon_sym_starts_DASHwith2] = ACTIONS(2092), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2092), - [anon_sym_ends_DASHwith2] = ACTIONS(2092), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2092), - [anon_sym_EQ_EQ2] = ACTIONS(2092), - [anon_sym_BANG_EQ2] = ACTIONS(2092), - [anon_sym_LT2] = ACTIONS(2094), - [anon_sym_LT_EQ2] = ACTIONS(2092), - [anon_sym_GT_EQ2] = ACTIONS(2092), - [anon_sym_EQ_TILDE2] = ACTIONS(2092), - [anon_sym_BANG_TILDE2] = ACTIONS(2092), - [anon_sym_like2] = ACTIONS(2092), - [anon_sym_not_DASHlike2] = ACTIONS(2092), - [anon_sym_LPAREN2] = ACTIONS(2092), - [anon_sym_STAR_STAR2] = ACTIONS(2092), - [anon_sym_PLUS_PLUS2] = ACTIONS(2092), - [anon_sym_SLASH2] = ACTIONS(2094), - [anon_sym_mod2] = ACTIONS(2092), - [anon_sym_SLASH_SLASH2] = ACTIONS(2092), - [anon_sym_PLUS2] = ACTIONS(2094), - [anon_sym_bit_DASHshl2] = ACTIONS(2092), - [anon_sym_bit_DASHshr2] = ACTIONS(2092), - [anon_sym_bit_DASHand2] = ACTIONS(2092), - [anon_sym_bit_DASHxor2] = ACTIONS(2092), - [anon_sym_bit_DASHor2] = ACTIONS(2092), - [anon_sym_err_GT] = ACTIONS(2094), - [anon_sym_out_GT] = ACTIONS(2094), - [anon_sym_e_GT] = ACTIONS(2094), - [anon_sym_o_GT] = ACTIONS(2094), - [anon_sym_err_PLUSout_GT] = ACTIONS(2094), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2094), - [anon_sym_o_PLUSe_GT] = ACTIONS(2094), - [anon_sym_e_PLUSo_GT] = ACTIONS(2094), - [anon_sym_err_GT_GT] = ACTIONS(2092), - [anon_sym_out_GT_GT] = ACTIONS(2092), - [anon_sym_e_GT_GT] = ACTIONS(2092), - [anon_sym_o_GT_GT] = ACTIONS(2092), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2092), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2092), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2092), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2092), + [anon_sym_in] = ACTIONS(2692), + [sym__newline] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_err_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_GT_PIPE] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), + [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_GT2] = ACTIONS(2694), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2692), + [anon_sym_xor2] = ACTIONS(2692), + [anon_sym_or2] = ACTIONS(2692), + [anon_sym_not_DASHin2] = ACTIONS(2692), + [anon_sym_has2] = ACTIONS(2692), + [anon_sym_not_DASHhas2] = ACTIONS(2692), + [anon_sym_starts_DASHwith2] = ACTIONS(2692), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2692), + [anon_sym_ends_DASHwith2] = ACTIONS(2692), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2692), + [anon_sym_EQ_EQ2] = ACTIONS(2692), + [anon_sym_BANG_EQ2] = ACTIONS(2692), + [anon_sym_LT2] = ACTIONS(2694), + [anon_sym_LT_EQ2] = ACTIONS(2692), + [anon_sym_GT_EQ2] = ACTIONS(2692), + [anon_sym_EQ_TILDE2] = ACTIONS(2692), + [anon_sym_BANG_TILDE2] = ACTIONS(2692), + [anon_sym_like2] = ACTIONS(2692), + [anon_sym_not_DASHlike2] = ACTIONS(2692), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_bit_DASHshl2] = ACTIONS(2692), + [anon_sym_bit_DASHshr2] = ACTIONS(2692), + [anon_sym_bit_DASHand2] = ACTIONS(2692), + [anon_sym_bit_DASHxor2] = ACTIONS(2692), + [anon_sym_bit_DASHor2] = ACTIONS(2692), + [anon_sym_err_GT] = ACTIONS(2694), + [anon_sym_out_GT] = ACTIONS(2694), + [anon_sym_e_GT] = ACTIONS(2694), + [anon_sym_o_GT] = ACTIONS(2694), + [anon_sym_err_PLUSout_GT] = ACTIONS(2694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), + [anon_sym_o_PLUSe_GT] = ACTIONS(2694), + [anon_sym_e_PLUSo_GT] = ACTIONS(2694), + [anon_sym_err_GT_GT] = ACTIONS(2692), + [anon_sym_out_GT_GT] = ACTIONS(2692), + [anon_sym_e_GT_GT] = ACTIONS(2692), + [anon_sym_o_GT_GT] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1221)] = { - [aux_sym__repeat_newline] = STATE(1159), + [sym__ctrl_match_body] = STATE(5063), + [sym_match_arm] = STATE(4515), + [sym_default_arm] = STATE(4515), + [sym_match_pattern] = STATE(5101), + [sym__match_pattern] = STATE(3907), + [sym__match_pattern_expression] = STATE(4160), + [sym__match_pattern_value] = STATE(4162), + [sym__match_pattern_list] = STATE(4163), + [sym__match_pattern_record] = STATE(4167), + [sym_expr_parenthesized] = STATE(3716), + [sym_val_range] = STATE(4162), + [sym__val_range] = STATE(5013), + [sym_val_nothing] = STATE(4167), + [sym_val_bool] = STATE(3955), + [sym_val_variable] = STATE(3718), + [sym_val_number] = STATE(4167), + [sym__val_number_decimal] = STATE(3468), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(4167), + [sym_val_filesize] = STATE(4167), + [sym_val_binary] = STATE(4167), + [sym_val_string] = STATE(4167), + [sym__raw_str] = STATE(2243), + [sym__str_double_quotes] = STATE(2243), + [sym__str_single_quotes] = STATE(2243), + [sym__str_back_ticks] = STATE(2243), + [sym_val_table] = STATE(4167), + [sym_unquoted] = STATE(4170), + [sym__unquoted_anonymous_prefix] = STATE(5013), [sym_comment] = STATE(1221), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [aux_sym__types_body_repeat1] = STATE(1346), + [aux_sym__ctrl_match_body_repeat1] = STATE(1369), + [anon_sym_true] = ACTIONS(2900), + [anon_sym_false] = ACTIONS(2900), + [anon_sym_null] = ACTIONS(2902), + [aux_sym_cmd_identifier_token3] = ACTIONS(2904), + [aux_sym_cmd_identifier_token4] = ACTIONS(2904), + [aux_sym_cmd_identifier_token5] = ACTIONS(2904), + [sym__newline] = ACTIONS(2906), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2748), + [anon_sym_DOLLAR] = ACTIONS(2910), + [anon_sym_LBRACE] = ACTIONS(2912), + [anon_sym_RBRACE] = ACTIONS(2930), + [anon_sym__] = ACTIONS(2916), + [anon_sym_DOT_DOT] = ACTIONS(2918), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2920), + [anon_sym_DOT_DOT_LT] = ACTIONS(2920), + [aux_sym__val_number_decimal_token1] = ACTIONS(2922), + [aux_sym__val_number_decimal_token2] = ACTIONS(2924), + [aux_sym__val_number_decimal_token3] = ACTIONS(2926), + [aux_sym__val_number_decimal_token4] = ACTIONS(2926), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1790), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(1222)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1222), - [anon_sym_in] = ACTIONS(2706), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2708), - [anon_sym_DASH2] = ACTIONS(2706), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2706), - [anon_sym_has2] = ACTIONS(2706), - [anon_sym_not_DASHhas2] = ACTIONS(2706), - [anon_sym_starts_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), - [anon_sym_ends_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), - [anon_sym_EQ_EQ2] = ACTIONS(2706), - [anon_sym_BANG_EQ2] = ACTIONS(2706), - [anon_sym_LT2] = ACTIONS(2708), - [anon_sym_LT_EQ2] = ACTIONS(2706), - [anon_sym_GT_EQ2] = ACTIONS(2706), - [anon_sym_EQ_TILDE2] = ACTIONS(2706), - [anon_sym_BANG_TILDE2] = ACTIONS(2706), - [anon_sym_like2] = ACTIONS(2706), - [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2708), - [anon_sym_bit_DASHshl2] = ACTIONS(2706), - [anon_sym_bit_DASHshr2] = ACTIONS(2706), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2772), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_err_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_GT_PIPE] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_GT2] = ACTIONS(2806), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2772), + [anon_sym_xor2] = ACTIONS(2772), + [anon_sym_or2] = ACTIONS(2772), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2814), + [anon_sym_BANG_EQ2] = ACTIONS(2814), + [anon_sym_LT2] = ACTIONS(2806), + [anon_sym_LT_EQ2] = ACTIONS(2814), + [anon_sym_GT_EQ2] = ACTIONS(2814), + [anon_sym_EQ_TILDE2] = ACTIONS(2816), + [anon_sym_BANG_TILDE2] = ACTIONS(2816), + [anon_sym_like2] = ACTIONS(2816), + [anon_sym_not_DASHlike2] = ACTIONS(2816), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2826), + [anon_sym_bit_DASHxor2] = ACTIONS(2772), + [anon_sym_bit_DASHor2] = ACTIONS(2772), + [anon_sym_err_GT] = ACTIONS(2774), + [anon_sym_out_GT] = ACTIONS(2774), + [anon_sym_e_GT] = ACTIONS(2774), + [anon_sym_o_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT] = ACTIONS(2774), + [anon_sym_err_GT_GT] = ACTIONS(2772), + [anon_sym_out_GT_GT] = ACTIONS(2772), + [anon_sym_e_GT_GT] = ACTIONS(2772), + [anon_sym_o_GT_GT] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1223)] = { + [aux_sym__repeat_newline] = STATE(1189), [sym_comment] = STATE(1223), - [ts_builtin_sym_end] = ACTIONS(2084), - [anon_sym_in] = ACTIONS(2084), - [sym__newline] = ACTIONS(2084), - [anon_sym_SEMI] = ACTIONS(2084), - [anon_sym_PIPE] = ACTIONS(2084), - [anon_sym_err_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_GT_PIPE] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2084), - [anon_sym_GT2] = ACTIONS(2086), - [anon_sym_DASH2] = ACTIONS(2084), - [anon_sym_STAR2] = ACTIONS(2086), - [anon_sym_and2] = ACTIONS(2084), - [anon_sym_xor2] = ACTIONS(2084), - [anon_sym_or2] = ACTIONS(2084), - [anon_sym_not_DASHin2] = ACTIONS(2084), - [anon_sym_has2] = ACTIONS(2084), - [anon_sym_not_DASHhas2] = ACTIONS(2084), - [anon_sym_starts_DASHwith2] = ACTIONS(2084), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2084), - [anon_sym_ends_DASHwith2] = ACTIONS(2084), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2084), - [anon_sym_EQ_EQ2] = ACTIONS(2084), - [anon_sym_BANG_EQ2] = ACTIONS(2084), - [anon_sym_LT2] = ACTIONS(2086), - [anon_sym_LT_EQ2] = ACTIONS(2084), - [anon_sym_GT_EQ2] = ACTIONS(2084), - [anon_sym_EQ_TILDE2] = ACTIONS(2084), - [anon_sym_BANG_TILDE2] = ACTIONS(2084), - [anon_sym_like2] = ACTIONS(2084), - [anon_sym_not_DASHlike2] = ACTIONS(2084), - [anon_sym_LPAREN2] = ACTIONS(2084), - [anon_sym_STAR_STAR2] = ACTIONS(2084), - [anon_sym_PLUS_PLUS2] = ACTIONS(2084), - [anon_sym_SLASH2] = ACTIONS(2086), - [anon_sym_mod2] = ACTIONS(2084), - [anon_sym_SLASH_SLASH2] = ACTIONS(2084), - [anon_sym_PLUS2] = ACTIONS(2086), - [anon_sym_bit_DASHshl2] = ACTIONS(2084), - [anon_sym_bit_DASHshr2] = ACTIONS(2084), - [anon_sym_bit_DASHand2] = ACTIONS(2084), - [anon_sym_bit_DASHxor2] = ACTIONS(2084), - [anon_sym_bit_DASHor2] = ACTIONS(2084), - [anon_sym_err_GT] = ACTIONS(2086), - [anon_sym_out_GT] = ACTIONS(2086), - [anon_sym_e_GT] = ACTIONS(2086), - [anon_sym_o_GT] = ACTIONS(2086), - [anon_sym_err_PLUSout_GT] = ACTIONS(2086), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2086), - [anon_sym_o_PLUSe_GT] = ACTIONS(2086), - [anon_sym_e_PLUSo_GT] = ACTIONS(2086), - [anon_sym_err_GT_GT] = ACTIONS(2084), - [anon_sym_out_GT_GT] = ACTIONS(2084), - [anon_sym_e_GT_GT] = ACTIONS(2084), - [anon_sym_o_GT_GT] = ACTIONS(2084), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2084), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2084), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2084), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2832), + [sym__newline] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(2684), + [anon_sym_PIPE] = ACTIONS(2684), + [anon_sym_err_GT_PIPE] = ACTIONS(2684), + [anon_sym_out_GT_PIPE] = ACTIONS(2684), + [anon_sym_e_GT_PIPE] = ACTIONS(2684), + [anon_sym_o_GT_PIPE] = ACTIONS(2684), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), + [anon_sym_RPAREN] = ACTIONS(2684), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2684), + [anon_sym_xor2] = ACTIONS(2684), + [anon_sym_or2] = ACTIONS(2684), + [anon_sym_not_DASHin2] = ACTIONS(2832), + [anon_sym_has2] = ACTIONS(2832), + [anon_sym_not_DASHhas2] = ACTIONS(2832), + [anon_sym_starts_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), + [anon_sym_ends_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), + [anon_sym_EQ_EQ2] = ACTIONS(2846), + [anon_sym_BANG_EQ2] = ACTIONS(2846), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2846), + [anon_sym_GT_EQ2] = ACTIONS(2846), + [anon_sym_EQ_TILDE2] = ACTIONS(2848), + [anon_sym_BANG_TILDE2] = ACTIONS(2848), + [anon_sym_like2] = ACTIONS(2848), + [anon_sym_not_DASHlike2] = ACTIONS(2848), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), + [anon_sym_bit_DASHand2] = ACTIONS(2684), + [anon_sym_bit_DASHxor2] = ACTIONS(2684), + [anon_sym_bit_DASHor2] = ACTIONS(2684), + [anon_sym_err_GT] = ACTIONS(2686), + [anon_sym_out_GT] = ACTIONS(2686), + [anon_sym_e_GT] = ACTIONS(2686), + [anon_sym_o_GT] = ACTIONS(2686), + [anon_sym_err_PLUSout_GT] = ACTIONS(2686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), + [anon_sym_o_PLUSe_GT] = ACTIONS(2686), + [anon_sym_e_PLUSo_GT] = ACTIONS(2686), + [anon_sym_err_GT_GT] = ACTIONS(2684), + [anon_sym_out_GT_GT] = ACTIONS(2684), + [anon_sym_e_GT_GT] = ACTIONS(2684), + [anon_sym_o_GT_GT] = ACTIONS(2684), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1224)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1213), [sym_comment] = STATE(1224), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2832), + [sym__newline] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2768), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_err_GT_PIPE] = ACTIONS(2768), + [anon_sym_out_GT_PIPE] = ACTIONS(2768), + [anon_sym_e_GT_PIPE] = ACTIONS(2768), + [anon_sym_o_GT_PIPE] = ACTIONS(2768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2768), + [anon_sym_RPAREN] = ACTIONS(2768), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2768), + [anon_sym_xor2] = ACTIONS(2768), + [anon_sym_or2] = ACTIONS(2768), + [anon_sym_not_DASHin2] = ACTIONS(2832), + [anon_sym_has2] = ACTIONS(2832), + [anon_sym_not_DASHhas2] = ACTIONS(2832), + [anon_sym_starts_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), + [anon_sym_ends_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), + [anon_sym_EQ_EQ2] = ACTIONS(2846), + [anon_sym_BANG_EQ2] = ACTIONS(2846), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2846), + [anon_sym_GT_EQ2] = ACTIONS(2846), + [anon_sym_EQ_TILDE2] = ACTIONS(2848), + [anon_sym_BANG_TILDE2] = ACTIONS(2848), + [anon_sym_like2] = ACTIONS(2848), + [anon_sym_not_DASHlike2] = ACTIONS(2848), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), + [anon_sym_bit_DASHand2] = ACTIONS(2858), + [anon_sym_bit_DASHxor2] = ACTIONS(2860), + [anon_sym_bit_DASHor2] = ACTIONS(2768), + [anon_sym_err_GT] = ACTIONS(2770), + [anon_sym_out_GT] = ACTIONS(2770), + [anon_sym_e_GT] = ACTIONS(2770), + [anon_sym_o_GT] = ACTIONS(2770), + [anon_sym_err_PLUSout_GT] = ACTIONS(2770), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2770), + [anon_sym_o_PLUSe_GT] = ACTIONS(2770), + [anon_sym_e_PLUSo_GT] = ACTIONS(2770), + [anon_sym_err_GT_GT] = ACTIONS(2768), + [anon_sym_out_GT_GT] = ACTIONS(2768), + [anon_sym_e_GT_GT] = ACTIONS(2768), + [anon_sym_o_GT_GT] = ACTIONS(2768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2768), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1225)] = { - [aux_sym__repeat_newline] = STATE(540), + [sym__expression] = STATE(4770), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2216), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1826), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), [sym_comment] = STATE(1225), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1226)] = { - [aux_sym__repeat_newline] = STATE(1183), - [sym_comment] = STATE(1226), - [anon_sym_in] = ACTIONS(2744), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2746), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2744), - [anon_sym_has2] = ACTIONS(2744), - [anon_sym_not_DASHhas2] = ACTIONS(2744), - [anon_sym_starts_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2744), - [anon_sym_ends_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2744), - [anon_sym_EQ_EQ2] = ACTIONS(2744), - [anon_sym_BANG_EQ2] = ACTIONS(2744), - [anon_sym_LT2] = ACTIONS(2746), - [anon_sym_LT_EQ2] = ACTIONS(2744), - [anon_sym_GT_EQ2] = ACTIONS(2744), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2744), - [anon_sym_bit_DASHshr2] = ACTIONS(2744), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1227)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1227), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2740), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1228)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1228), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1229)] = { - [aux_sym__repeat_newline] = STATE(540), - [sym_comment] = STATE(1229), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_err_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_GT_PIPE] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2740), - [anon_sym_xor2] = ACTIONS(2740), - [anon_sym_or2] = ACTIONS(2740), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2740), - [anon_sym_err_GT] = ACTIONS(2742), - [anon_sym_out_GT] = ACTIONS(2742), - [anon_sym_e_GT] = ACTIONS(2742), - [anon_sym_o_GT] = ACTIONS(2742), - [anon_sym_err_PLUSout_GT] = ACTIONS(2742), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2742), - [anon_sym_o_PLUSe_GT] = ACTIONS(2742), - [anon_sym_e_PLUSo_GT] = ACTIONS(2742), - [anon_sym_err_GT_GT] = ACTIONS(2740), - [anon_sym_out_GT_GT] = ACTIONS(2740), - [anon_sym_e_GT_GT] = ACTIONS(2740), - [anon_sym_o_GT_GT] = ACTIONS(2740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1230)] = { - [sym__expression] = STATE(4655), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), - [sym_comment] = STATE(1230), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), + [aux_sym_cmd_identifier_token2] = ACTIONS(2878), + [anon_sym_true] = ACTIONS(2535), + [anon_sym_false] = ACTIONS(2535), + [anon_sym_null] = ACTIONS(2537), + [aux_sym_cmd_identifier_token3] = ACTIONS(2539), + [aux_sym_cmd_identifier_token4] = ACTIONS(2539), + [aux_sym_cmd_identifier_token5] = ACTIONS(2539), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1976), + [aux_sym__val_number_decimal_token3] = ACTIONS(2543), + [aux_sym__val_number_decimal_token4] = ACTIONS(2543), + [aux_sym__val_number_token1] = ACTIONS(2539), + [aux_sym__val_number_token2] = ACTIONS(2539), + [aux_sym__val_number_token3] = ACTIONS(2539), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2545), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -137032,1740 +136900,2075 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(1226)] = { + [aux_sym__repeat_newline] = STATE(1132), + [sym_comment] = STATE(1226), + [anon_sym_in] = ACTIONS(2832), + [sym__newline] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2832), + [anon_sym_has2] = ACTIONS(2832), + [anon_sym_not_DASHhas2] = ACTIONS(2832), + [anon_sym_starts_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), + [anon_sym_ends_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), + [anon_sym_EQ_EQ2] = ACTIONS(2846), + [anon_sym_BANG_EQ2] = ACTIONS(2846), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2846), + [anon_sym_GT_EQ2] = ACTIONS(2846), + [anon_sym_EQ_TILDE2] = ACTIONS(2848), + [anon_sym_BANG_TILDE2] = ACTIONS(2848), + [anon_sym_like2] = ACTIONS(2848), + [anon_sym_not_DASHlike2] = ACTIONS(2848), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), + [anon_sym_bit_DASHand2] = ACTIONS(2858), + [anon_sym_bit_DASHxor2] = ACTIONS(2860), + [anon_sym_bit_DASHor2] = ACTIONS(2666), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1227)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_comment] = STATE(1227), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2772), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_err_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_GT_PIPE] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_GT2] = ACTIONS(2806), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2772), + [anon_sym_xor2] = ACTIONS(2772), + [anon_sym_or2] = ACTIONS(2772), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2814), + [anon_sym_BANG_EQ2] = ACTIONS(2814), + [anon_sym_LT2] = ACTIONS(2806), + [anon_sym_LT_EQ2] = ACTIONS(2814), + [anon_sym_GT_EQ2] = ACTIONS(2814), + [anon_sym_EQ_TILDE2] = ACTIONS(2816), + [anon_sym_BANG_TILDE2] = ACTIONS(2816), + [anon_sym_like2] = ACTIONS(2816), + [anon_sym_not_DASHlike2] = ACTIONS(2816), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2826), + [anon_sym_bit_DASHxor2] = ACTIONS(2828), + [anon_sym_bit_DASHor2] = ACTIONS(2772), + [anon_sym_err_GT] = ACTIONS(2774), + [anon_sym_out_GT] = ACTIONS(2774), + [anon_sym_e_GT] = ACTIONS(2774), + [anon_sym_o_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT] = ACTIONS(2774), + [anon_sym_err_GT_GT] = ACTIONS(2772), + [anon_sym_out_GT_GT] = ACTIONS(2772), + [anon_sym_e_GT_GT] = ACTIONS(2772), + [anon_sym_o_GT_GT] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1228)] = { + [sym_comment] = STATE(1228), + [ts_builtin_sym_end] = ACTIONS(2562), + [aux_sym_cmd_identifier_token2] = ACTIONS(2878), + [anon_sym_in] = ACTIONS(2564), + [sym__newline] = ACTIONS(2562), + [anon_sym_SEMI] = ACTIONS(2562), + [anon_sym_PIPE] = ACTIONS(2562), + [anon_sym_err_GT_PIPE] = ACTIONS(2562), + [anon_sym_out_GT_PIPE] = ACTIONS(2562), + [anon_sym_e_GT_PIPE] = ACTIONS(2562), + [anon_sym_o_GT_PIPE] = ACTIONS(2562), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2562), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2562), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2562), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2562), + [anon_sym_GT2] = ACTIONS(2564), + [anon_sym_DASH2] = ACTIONS(2564), + [anon_sym_STAR2] = ACTIONS(2564), + [anon_sym_and2] = ACTIONS(2564), + [anon_sym_xor2] = ACTIONS(2564), + [anon_sym_or2] = ACTIONS(2564), + [anon_sym_not_DASHin2] = ACTIONS(2564), + [anon_sym_has2] = ACTIONS(2564), + [anon_sym_not_DASHhas2] = ACTIONS(2564), + [anon_sym_starts_DASHwith2] = ACTIONS(2564), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2564), + [anon_sym_ends_DASHwith2] = ACTIONS(2564), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2564), + [anon_sym_EQ_EQ2] = ACTIONS(2562), + [anon_sym_BANG_EQ2] = ACTIONS(2562), + [anon_sym_LT2] = ACTIONS(2564), + [anon_sym_LT_EQ2] = ACTIONS(2562), + [anon_sym_GT_EQ2] = ACTIONS(2562), + [anon_sym_EQ_TILDE2] = ACTIONS(2562), + [anon_sym_BANG_TILDE2] = ACTIONS(2564), + [anon_sym_like2] = ACTIONS(2564), + [anon_sym_not_DASHlike2] = ACTIONS(2564), + [anon_sym_STAR_STAR2] = ACTIONS(2564), + [anon_sym_PLUS_PLUS2] = ACTIONS(2564), + [anon_sym_SLASH2] = ACTIONS(2564), + [anon_sym_mod2] = ACTIONS(2564), + [anon_sym_SLASH_SLASH2] = ACTIONS(2564), + [anon_sym_PLUS2] = ACTIONS(2564), + [anon_sym_bit_DASHshl2] = ACTIONS(2564), + [anon_sym_bit_DASHshr2] = ACTIONS(2564), + [anon_sym_bit_DASHand2] = ACTIONS(2564), + [anon_sym_bit_DASHxor2] = ACTIONS(2564), + [anon_sym_bit_DASHor2] = ACTIONS(2564), + [anon_sym_err_GT] = ACTIONS(2564), + [anon_sym_out_GT] = ACTIONS(2564), + [anon_sym_e_GT] = ACTIONS(2564), + [anon_sym_o_GT] = ACTIONS(2564), + [anon_sym_err_PLUSout_GT] = ACTIONS(2564), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2564), + [anon_sym_o_PLUSe_GT] = ACTIONS(2564), + [anon_sym_e_PLUSo_GT] = ACTIONS(2564), + [anon_sym_err_GT_GT] = ACTIONS(2562), + [anon_sym_out_GT_GT] = ACTIONS(2562), + [anon_sym_e_GT_GT] = ACTIONS(2562), + [anon_sym_o_GT_GT] = ACTIONS(2562), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2562), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2562), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2562), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2562), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(1229)] = { + [sym__ctrl_match_body] = STATE(5025), + [sym_match_arm] = STATE(4515), + [sym_default_arm] = STATE(4515), + [sym_match_pattern] = STATE(5101), + [sym__match_pattern] = STATE(3907), + [sym__match_pattern_expression] = STATE(4160), + [sym__match_pattern_value] = STATE(4162), + [sym__match_pattern_list] = STATE(4163), + [sym__match_pattern_record] = STATE(4167), + [sym_expr_parenthesized] = STATE(3716), + [sym_val_range] = STATE(4162), + [sym__val_range] = STATE(5013), + [sym_val_nothing] = STATE(4167), + [sym_val_bool] = STATE(3955), + [sym_val_variable] = STATE(3718), + [sym_val_number] = STATE(4167), + [sym__val_number_decimal] = STATE(3468), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(4167), + [sym_val_filesize] = STATE(4167), + [sym_val_binary] = STATE(4167), + [sym_val_string] = STATE(4167), + [sym__raw_str] = STATE(2243), + [sym__str_double_quotes] = STATE(2243), + [sym__str_single_quotes] = STATE(2243), + [sym__str_back_ticks] = STATE(2243), + [sym_val_table] = STATE(4167), + [sym_unquoted] = STATE(4170), + [sym__unquoted_anonymous_prefix] = STATE(5013), + [sym_comment] = STATE(1229), + [aux_sym__types_body_repeat1] = STATE(1346), + [aux_sym__ctrl_match_body_repeat1] = STATE(1369), + [anon_sym_true] = ACTIONS(2900), + [anon_sym_false] = ACTIONS(2900), + [anon_sym_null] = ACTIONS(2902), + [aux_sym_cmd_identifier_token3] = ACTIONS(2904), + [aux_sym_cmd_identifier_token4] = ACTIONS(2904), + [aux_sym_cmd_identifier_token5] = ACTIONS(2904), + [sym__newline] = ACTIONS(2906), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2748), + [anon_sym_DOLLAR] = ACTIONS(2910), + [anon_sym_LBRACE] = ACTIONS(2912), + [anon_sym_RBRACE] = ACTIONS(2932), + [anon_sym__] = ACTIONS(2916), + [anon_sym_DOT_DOT] = ACTIONS(2918), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2920), + [anon_sym_DOT_DOT_LT] = ACTIONS(2920), + [aux_sym__val_number_decimal_token1] = ACTIONS(2922), + [aux_sym__val_number_decimal_token2] = ACTIONS(2924), + [aux_sym__val_number_decimal_token3] = ACTIONS(2926), + [aux_sym__val_number_decimal_token4] = ACTIONS(2926), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2928), + [anon_sym_DQUOTE] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(1790), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1792), + }, + [STATE(1230)] = { + [sym_comment] = STATE(1230), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2547), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_err_GT_PIPE] = ACTIONS(2547), + [anon_sym_out_GT_PIPE] = ACTIONS(2547), + [anon_sym_e_GT_PIPE] = ACTIONS(2547), + [anon_sym_o_GT_PIPE] = ACTIONS(2547), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2547), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2547), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2547), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2547), + [anon_sym_RPAREN] = ACTIONS(2547), + [anon_sym_GT2] = ACTIONS(2782), + [anon_sym_DASH2] = ACTIONS(2784), + [anon_sym_RBRACE] = ACTIONS(2547), + [anon_sym_STAR2] = ACTIONS(2786), + [anon_sym_and2] = ACTIONS(2547), + [anon_sym_xor2] = ACTIONS(2547), + [anon_sym_or2] = ACTIONS(2547), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2788), + [anon_sym_BANG_EQ2] = ACTIONS(2788), + [anon_sym_LT2] = ACTIONS(2782), + [anon_sym_LT_EQ2] = ACTIONS(2788), + [anon_sym_GT_EQ2] = ACTIONS(2788), + [anon_sym_EQ_TILDE2] = ACTIONS(2790), + [anon_sym_BANG_TILDE2] = ACTIONS(2790), + [anon_sym_like2] = ACTIONS(2790), + [anon_sym_not_DASHlike2] = ACTIONS(2790), + [anon_sym_STAR_STAR2] = ACTIONS(2792), + [anon_sym_PLUS_PLUS2] = ACTIONS(2792), + [anon_sym_SLASH2] = ACTIONS(2786), + [anon_sym_mod2] = ACTIONS(2794), + [anon_sym_SLASH_SLASH2] = ACTIONS(2794), + [anon_sym_PLUS2] = ACTIONS(2796), + [anon_sym_bit_DASHshl2] = ACTIONS(2798), + [anon_sym_bit_DASHshr2] = ACTIONS(2798), + [anon_sym_bit_DASHand2] = ACTIONS(2800), + [anon_sym_bit_DASHxor2] = ACTIONS(2802), + [anon_sym_bit_DASHor2] = ACTIONS(2934), + [anon_sym_err_GT] = ACTIONS(2549), + [anon_sym_out_GT] = ACTIONS(2549), + [anon_sym_e_GT] = ACTIONS(2549), + [anon_sym_o_GT] = ACTIONS(2549), + [anon_sym_err_PLUSout_GT] = ACTIONS(2549), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2549), + [anon_sym_o_PLUSe_GT] = ACTIONS(2549), + [anon_sym_e_PLUSo_GT] = ACTIONS(2549), + [anon_sym_err_GT_GT] = ACTIONS(2547), + [anon_sym_out_GT_GT] = ACTIONS(2547), + [anon_sym_e_GT_GT] = ACTIONS(2547), + [anon_sym_o_GT_GT] = ACTIONS(2547), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2547), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2547), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2547), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2547), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(1231)] = { - [aux_sym__repeat_newline] = STATE(540), [sym_comment] = STATE(1231), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2918), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2547), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_err_GT_PIPE] = ACTIONS(2547), + [anon_sym_out_GT_PIPE] = ACTIONS(2547), + [anon_sym_e_GT_PIPE] = ACTIONS(2547), + [anon_sym_o_GT_PIPE] = ACTIONS(2547), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2547), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2547), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2547), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2547), + [anon_sym_RPAREN] = ACTIONS(2547), + [anon_sym_GT2] = ACTIONS(2782), + [anon_sym_DASH2] = ACTIONS(2784), + [anon_sym_RBRACE] = ACTIONS(2547), + [anon_sym_STAR2] = ACTIONS(2786), + [anon_sym_and2] = ACTIONS(2936), + [anon_sym_xor2] = ACTIONS(2547), + [anon_sym_or2] = ACTIONS(2547), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2788), + [anon_sym_BANG_EQ2] = ACTIONS(2788), + [anon_sym_LT2] = ACTIONS(2782), + [anon_sym_LT_EQ2] = ACTIONS(2788), + [anon_sym_GT_EQ2] = ACTIONS(2788), + [anon_sym_EQ_TILDE2] = ACTIONS(2790), + [anon_sym_BANG_TILDE2] = ACTIONS(2790), + [anon_sym_like2] = ACTIONS(2790), + [anon_sym_not_DASHlike2] = ACTIONS(2790), + [anon_sym_STAR_STAR2] = ACTIONS(2792), + [anon_sym_PLUS_PLUS2] = ACTIONS(2792), + [anon_sym_SLASH2] = ACTIONS(2786), + [anon_sym_mod2] = ACTIONS(2794), + [anon_sym_SLASH_SLASH2] = ACTIONS(2794), + [anon_sym_PLUS2] = ACTIONS(2796), + [anon_sym_bit_DASHshl2] = ACTIONS(2798), + [anon_sym_bit_DASHshr2] = ACTIONS(2798), + [anon_sym_bit_DASHand2] = ACTIONS(2800), + [anon_sym_bit_DASHxor2] = ACTIONS(2802), + [anon_sym_bit_DASHor2] = ACTIONS(2934), + [anon_sym_err_GT] = ACTIONS(2549), + [anon_sym_out_GT] = ACTIONS(2549), + [anon_sym_e_GT] = ACTIONS(2549), + [anon_sym_o_GT] = ACTIONS(2549), + [anon_sym_err_PLUSout_GT] = ACTIONS(2549), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2549), + [anon_sym_o_PLUSe_GT] = ACTIONS(2549), + [anon_sym_e_PLUSo_GT] = ACTIONS(2549), + [anon_sym_err_GT_GT] = ACTIONS(2547), + [anon_sym_out_GT_GT] = ACTIONS(2547), + [anon_sym_e_GT_GT] = ACTIONS(2547), + [anon_sym_o_GT_GT] = ACTIONS(2547), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2547), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2547), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2547), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2547), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1232)] = { - [sym__expression] = STATE(4669), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), [sym_comment] = STATE(1232), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_cmd_identifier_token2] = ACTIONS(2662), + [anon_sym_in] = ACTIONS(2327), + [sym__newline] = ACTIONS(2325), + [anon_sym_SEMI] = ACTIONS(2325), + [anon_sym_PIPE] = ACTIONS(2325), + [anon_sym_err_GT_PIPE] = ACTIONS(2325), + [anon_sym_out_GT_PIPE] = ACTIONS(2325), + [anon_sym_e_GT_PIPE] = ACTIONS(2325), + [anon_sym_o_GT_PIPE] = ACTIONS(2325), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2325), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2325), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2325), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2325), + [anon_sym_GT2] = ACTIONS(2327), + [anon_sym_DASH2] = ACTIONS(2327), + [anon_sym_RBRACE] = ACTIONS(2325), + [anon_sym_STAR2] = ACTIONS(2327), + [anon_sym_and2] = ACTIONS(2327), + [anon_sym_xor2] = ACTIONS(2327), + [anon_sym_or2] = ACTIONS(2327), + [anon_sym_not_DASHin2] = ACTIONS(2327), + [anon_sym_has2] = ACTIONS(2327), + [anon_sym_not_DASHhas2] = ACTIONS(2327), + [anon_sym_starts_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), + [anon_sym_ends_DASHwith2] = ACTIONS(2327), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), + [anon_sym_EQ_EQ2] = ACTIONS(2325), + [anon_sym_BANG_EQ2] = ACTIONS(2325), + [anon_sym_LT2] = ACTIONS(2327), + [anon_sym_LT_EQ2] = ACTIONS(2325), + [anon_sym_GT_EQ2] = ACTIONS(2325), + [anon_sym_EQ_TILDE2] = ACTIONS(2325), + [anon_sym_BANG_TILDE2] = ACTIONS(2327), + [anon_sym_like2] = ACTIONS(2327), + [anon_sym_not_DASHlike2] = ACTIONS(2327), + [anon_sym_STAR_STAR2] = ACTIONS(2327), + [anon_sym_PLUS_PLUS2] = ACTIONS(2327), + [anon_sym_SLASH2] = ACTIONS(2327), + [anon_sym_mod2] = ACTIONS(2327), + [anon_sym_SLASH_SLASH2] = ACTIONS(2327), + [anon_sym_PLUS2] = ACTIONS(2327), + [anon_sym_bit_DASHshl2] = ACTIONS(2327), + [anon_sym_bit_DASHshr2] = ACTIONS(2327), + [anon_sym_bit_DASHand2] = ACTIONS(2327), + [anon_sym_bit_DASHxor2] = ACTIONS(2327), + [anon_sym_bit_DASHor2] = ACTIONS(2327), + [anon_sym_err_GT] = ACTIONS(2327), + [anon_sym_out_GT] = ACTIONS(2327), + [anon_sym_e_GT] = ACTIONS(2327), + [anon_sym_o_GT] = ACTIONS(2327), + [anon_sym_err_PLUSout_GT] = ACTIONS(2327), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2327), + [anon_sym_o_PLUSe_GT] = ACTIONS(2327), + [anon_sym_e_PLUSo_GT] = ACTIONS(2327), + [anon_sym_err_GT_GT] = ACTIONS(2325), + [anon_sym_out_GT_GT] = ACTIONS(2325), + [anon_sym_e_GT_GT] = ACTIONS(2325), + [anon_sym_o_GT_GT] = ACTIONS(2325), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2325), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2325), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2325), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2325), [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1233)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1140), [sym_comment] = STATE(1233), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1234)] = { - [aux_sym__repeat_newline] = STATE(1231), - [sym_comment] = STATE(1234), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2908), - [anon_sym_xor2] = ACTIONS(2914), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), + [anon_sym_in] = ACTIONS(2832), + [sym__newline] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2842), + [anon_sym_xor2] = ACTIONS(2844), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2832), + [anon_sym_has2] = ACTIONS(2832), + [anon_sym_not_DASHhas2] = ACTIONS(2832), + [anon_sym_starts_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), + [anon_sym_ends_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), + [anon_sym_EQ_EQ2] = ACTIONS(2846), + [anon_sym_BANG_EQ2] = ACTIONS(2846), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2846), + [anon_sym_GT_EQ2] = ACTIONS(2846), + [anon_sym_EQ_TILDE2] = ACTIONS(2848), + [anon_sym_BANG_TILDE2] = ACTIONS(2848), + [anon_sym_like2] = ACTIONS(2848), + [anon_sym_not_DASHlike2] = ACTIONS(2848), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), [anon_sym_bit_DASHand2] = ACTIONS(2858), [anon_sym_bit_DASHxor2] = ACTIONS(2860), [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(1234)] = { + [sym_comment] = STATE(1234), + [ts_builtin_sym_end] = ACTIONS(890), + [aux_sym_cmd_identifier_token2] = ACTIONS(2878), + [anon_sym_in] = ACTIONS(793), + [sym__newline] = ACTIONS(890), + [anon_sym_SEMI] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(890), + [anon_sym_err_GT_PIPE] = ACTIONS(890), + [anon_sym_out_GT_PIPE] = ACTIONS(890), + [anon_sym_e_GT_PIPE] = ACTIONS(890), + [anon_sym_o_GT_PIPE] = ACTIONS(890), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(890), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(890), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(890), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(890), + [anon_sym_GT2] = ACTIONS(793), + [anon_sym_DASH2] = ACTIONS(793), + [anon_sym_STAR2] = ACTIONS(793), + [anon_sym_and2] = ACTIONS(793), + [anon_sym_xor2] = ACTIONS(793), + [anon_sym_or2] = ACTIONS(793), + [anon_sym_not_DASHin2] = ACTIONS(793), + [anon_sym_has2] = ACTIONS(793), + [anon_sym_not_DASHhas2] = ACTIONS(793), + [anon_sym_starts_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), + [anon_sym_ends_DASHwith2] = ACTIONS(793), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), + [anon_sym_EQ_EQ2] = ACTIONS(890), + [anon_sym_BANG_EQ2] = ACTIONS(890), + [anon_sym_LT2] = ACTIONS(793), + [anon_sym_LT_EQ2] = ACTIONS(890), + [anon_sym_GT_EQ2] = ACTIONS(890), + [anon_sym_EQ_TILDE2] = ACTIONS(890), + [anon_sym_BANG_TILDE2] = ACTIONS(793), + [anon_sym_like2] = ACTIONS(793), + [anon_sym_not_DASHlike2] = ACTIONS(793), + [anon_sym_STAR_STAR2] = ACTIONS(793), + [anon_sym_PLUS_PLUS2] = ACTIONS(793), + [anon_sym_SLASH2] = ACTIONS(793), + [anon_sym_mod2] = ACTIONS(793), + [anon_sym_SLASH_SLASH2] = ACTIONS(793), + [anon_sym_PLUS2] = ACTIONS(793), + [anon_sym_bit_DASHshl2] = ACTIONS(793), + [anon_sym_bit_DASHshr2] = ACTIONS(793), + [anon_sym_bit_DASHand2] = ACTIONS(793), + [anon_sym_bit_DASHxor2] = ACTIONS(793), + [anon_sym_bit_DASHor2] = ACTIONS(793), + [anon_sym_err_GT] = ACTIONS(793), + [anon_sym_out_GT] = ACTIONS(793), + [anon_sym_e_GT] = ACTIONS(793), + [anon_sym_o_GT] = ACTIONS(793), + [anon_sym_err_PLUSout_GT] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT] = ACTIONS(793), + [anon_sym_o_PLUSe_GT] = ACTIONS(793), + [anon_sym_e_PLUSo_GT] = ACTIONS(793), + [anon_sym_err_GT_GT] = ACTIONS(890), + [anon_sym_out_GT_GT] = ACTIONS(890), + [anon_sym_e_GT_GT] = ACTIONS(890), + [anon_sym_o_GT_GT] = ACTIONS(890), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(890), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(890), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(890), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(890), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(1235)] = { - [aux_sym__repeat_newline] = STATE(1196), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1235), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_err_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_GT_PIPE] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), + [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_GT2] = ACTIONS(2806), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2692), + [anon_sym_xor2] = ACTIONS(2692), + [anon_sym_or2] = ACTIONS(2692), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2814), + [anon_sym_BANG_EQ2] = ACTIONS(2814), + [anon_sym_LT2] = ACTIONS(2806), + [anon_sym_LT_EQ2] = ACTIONS(2814), + [anon_sym_GT_EQ2] = ACTIONS(2814), + [anon_sym_EQ_TILDE2] = ACTIONS(2816), + [anon_sym_BANG_TILDE2] = ACTIONS(2816), + [anon_sym_like2] = ACTIONS(2816), + [anon_sym_not_DASHlike2] = ACTIONS(2816), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2692), + [anon_sym_bit_DASHxor2] = ACTIONS(2692), + [anon_sym_bit_DASHor2] = ACTIONS(2692), + [anon_sym_err_GT] = ACTIONS(2694), + [anon_sym_out_GT] = ACTIONS(2694), + [anon_sym_e_GT] = ACTIONS(2694), + [anon_sym_o_GT] = ACTIONS(2694), + [anon_sym_err_PLUSout_GT] = ACTIONS(2694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), + [anon_sym_o_PLUSe_GT] = ACTIONS(2694), + [anon_sym_e_PLUSo_GT] = ACTIONS(2694), + [anon_sym_err_GT_GT] = ACTIONS(2692), + [anon_sym_out_GT_GT] = ACTIONS(2692), + [anon_sym_e_GT_GT] = ACTIONS(2692), + [anon_sym_o_GT_GT] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1236)] = { - [aux_sym__repeat_newline] = STATE(1137), [sym_comment] = STATE(1236), - [anon_sym_in] = ACTIONS(2712), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2712), - [anon_sym_has2] = ACTIONS(2712), - [anon_sym_not_DASHhas2] = ACTIONS(2712), - [anon_sym_starts_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), - [anon_sym_ends_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2547), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_err_GT_PIPE] = ACTIONS(2547), + [anon_sym_out_GT_PIPE] = ACTIONS(2547), + [anon_sym_e_GT_PIPE] = ACTIONS(2547), + [anon_sym_o_GT_PIPE] = ACTIONS(2547), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2547), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2547), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2547), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2547), + [anon_sym_RPAREN] = ACTIONS(2547), + [anon_sym_GT2] = ACTIONS(2782), + [anon_sym_DASH2] = ACTIONS(2784), + [anon_sym_RBRACE] = ACTIONS(2547), + [anon_sym_STAR2] = ACTIONS(2786), + [anon_sym_and2] = ACTIONS(2936), + [anon_sym_xor2] = ACTIONS(2938), + [anon_sym_or2] = ACTIONS(2547), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2788), + [anon_sym_BANG_EQ2] = ACTIONS(2788), + [anon_sym_LT2] = ACTIONS(2782), + [anon_sym_LT_EQ2] = ACTIONS(2788), + [anon_sym_GT_EQ2] = ACTIONS(2788), + [anon_sym_EQ_TILDE2] = ACTIONS(2790), + [anon_sym_BANG_TILDE2] = ACTIONS(2790), + [anon_sym_like2] = ACTIONS(2790), + [anon_sym_not_DASHlike2] = ACTIONS(2790), + [anon_sym_STAR_STAR2] = ACTIONS(2792), + [anon_sym_PLUS_PLUS2] = ACTIONS(2792), + [anon_sym_SLASH2] = ACTIONS(2786), + [anon_sym_mod2] = ACTIONS(2794), + [anon_sym_SLASH_SLASH2] = ACTIONS(2794), + [anon_sym_PLUS2] = ACTIONS(2796), + [anon_sym_bit_DASHshl2] = ACTIONS(2798), + [anon_sym_bit_DASHshr2] = ACTIONS(2798), + [anon_sym_bit_DASHand2] = ACTIONS(2800), + [anon_sym_bit_DASHxor2] = ACTIONS(2802), + [anon_sym_bit_DASHor2] = ACTIONS(2934), + [anon_sym_err_GT] = ACTIONS(2549), + [anon_sym_out_GT] = ACTIONS(2549), + [anon_sym_e_GT] = ACTIONS(2549), + [anon_sym_o_GT] = ACTIONS(2549), + [anon_sym_err_PLUSout_GT] = ACTIONS(2549), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2549), + [anon_sym_o_PLUSe_GT] = ACTIONS(2549), + [anon_sym_e_PLUSo_GT] = ACTIONS(2549), + [anon_sym_err_GT_GT] = ACTIONS(2547), + [anon_sym_out_GT_GT] = ACTIONS(2547), + [anon_sym_e_GT_GT] = ACTIONS(2547), + [anon_sym_o_GT_GT] = ACTIONS(2547), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2547), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2547), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2547), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2547), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1237)] = { - [sym__ctrl_match_body] = STATE(5013), - [sym_match_arm] = STATE(4586), - [sym_default_arm] = STATE(4586), - [sym_match_pattern] = STATE(5092), - [sym__match_pattern] = STATE(3762), - [sym__match_pattern_expression] = STATE(4049), - [sym__match_pattern_value] = STATE(4051), - [sym__match_pattern_list] = STATE(4052), - [sym__match_pattern_record] = STATE(4053), - [sym_expr_parenthesized] = STATE(3714), - [sym_val_range] = STATE(4051), - [sym__val_range] = STATE(5173), - [sym_val_nothing] = STATE(4053), - [sym_val_bool] = STATE(4021), - [sym_val_variable] = STATE(3715), - [sym_val_number] = STATE(4053), - [sym__val_number_decimal] = STATE(3487), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(4053), - [sym_val_filesize] = STATE(4053), - [sym_val_binary] = STATE(4053), - [sym_val_string] = STATE(4053), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_table] = STATE(4053), - [sym_unquoted] = STATE(4070), - [sym__unquoted_anonymous_prefix] = STATE(5173), [sym_comment] = STATE(1237), - [aux_sym__types_body_repeat1] = STATE(1347), - [aux_sym__ctrl_match_body_repeat1] = STATE(1372), - [anon_sym_true] = ACTIONS(2868), - [anon_sym_false] = ACTIONS(2868), - [anon_sym_null] = ACTIONS(2870), - [aux_sym_cmd_identifier_token3] = ACTIONS(2872), - [aux_sym_cmd_identifier_token4] = ACTIONS(2872), - [aux_sym_cmd_identifier_token5] = ACTIONS(2872), - [sym__newline] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_RBRACE] = ACTIONS(2922), - [anon_sym__] = ACTIONS(2884), - [anon_sym_DOT_DOT] = ACTIONS(2886), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2888), - [anon_sym_DOT_DOT_LT] = ACTIONS(2888), - [aux_sym__val_number_decimal_token1] = ACTIONS(2890), - [aux_sym__val_number_decimal_token2] = ACTIONS(2892), - [aux_sym__val_number_decimal_token3] = ACTIONS(2894), - [aux_sym__val_number_decimal_token4] = ACTIONS(2894), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2896), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2547), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_err_GT_PIPE] = ACTIONS(2547), + [anon_sym_out_GT_PIPE] = ACTIONS(2547), + [anon_sym_e_GT_PIPE] = ACTIONS(2547), + [anon_sym_o_GT_PIPE] = ACTIONS(2547), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2547), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2547), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2547), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2547), + [anon_sym_RPAREN] = ACTIONS(2547), + [anon_sym_GT2] = ACTIONS(2782), + [anon_sym_DASH2] = ACTIONS(2784), + [anon_sym_RBRACE] = ACTIONS(2547), + [anon_sym_STAR2] = ACTIONS(2786), + [anon_sym_and2] = ACTIONS(2547), + [anon_sym_xor2] = ACTIONS(2547), + [anon_sym_or2] = ACTIONS(2547), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2788), + [anon_sym_BANG_EQ2] = ACTIONS(2788), + [anon_sym_LT2] = ACTIONS(2782), + [anon_sym_LT_EQ2] = ACTIONS(2788), + [anon_sym_GT_EQ2] = ACTIONS(2788), + [anon_sym_EQ_TILDE2] = ACTIONS(2547), + [anon_sym_BANG_TILDE2] = ACTIONS(2547), + [anon_sym_like2] = ACTIONS(2547), + [anon_sym_not_DASHlike2] = ACTIONS(2547), + [anon_sym_STAR_STAR2] = ACTIONS(2792), + [anon_sym_PLUS_PLUS2] = ACTIONS(2792), + [anon_sym_SLASH2] = ACTIONS(2786), + [anon_sym_mod2] = ACTIONS(2794), + [anon_sym_SLASH_SLASH2] = ACTIONS(2794), + [anon_sym_PLUS2] = ACTIONS(2796), + [anon_sym_bit_DASHshl2] = ACTIONS(2798), + [anon_sym_bit_DASHshr2] = ACTIONS(2798), + [anon_sym_bit_DASHand2] = ACTIONS(2547), + [anon_sym_bit_DASHxor2] = ACTIONS(2547), + [anon_sym_bit_DASHor2] = ACTIONS(2547), + [anon_sym_err_GT] = ACTIONS(2549), + [anon_sym_out_GT] = ACTIONS(2549), + [anon_sym_e_GT] = ACTIONS(2549), + [anon_sym_o_GT] = ACTIONS(2549), + [anon_sym_err_PLUSout_GT] = ACTIONS(2549), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2549), + [anon_sym_o_PLUSe_GT] = ACTIONS(2549), + [anon_sym_e_PLUSo_GT] = ACTIONS(2549), + [anon_sym_err_GT_GT] = ACTIONS(2547), + [anon_sym_out_GT_GT] = ACTIONS(2547), + [anon_sym_e_GT_GT] = ACTIONS(2547), + [anon_sym_o_GT_GT] = ACTIONS(2547), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2547), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2547), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2547), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2547), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(1238)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1238), - [anon_sym_in] = ACTIONS(2720), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2722), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2720), - [anon_sym_has2] = ACTIONS(2720), - [anon_sym_not_DASHhas2] = ACTIONS(2720), - [anon_sym_starts_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2720), - [anon_sym_ends_DASHwith2] = ACTIONS(2720), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2720), - [anon_sym_EQ_EQ2] = ACTIONS(2720), - [anon_sym_BANG_EQ2] = ACTIONS(2720), - [anon_sym_LT2] = ACTIONS(2722), - [anon_sym_LT_EQ2] = ACTIONS(2720), - [anon_sym_GT_EQ2] = ACTIONS(2720), - [anon_sym_EQ_TILDE2] = ACTIONS(2720), - [anon_sym_BANG_TILDE2] = ACTIONS(2720), - [anon_sym_like2] = ACTIONS(2720), - [anon_sym_not_DASHlike2] = ACTIONS(2720), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2720), - [anon_sym_bit_DASHshr2] = ACTIONS(2720), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2776), + [sym__newline] = ACTIONS(2776), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2806), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2776), + [anon_sym_has2] = ACTIONS(2776), + [anon_sym_not_DASHhas2] = ACTIONS(2776), + [anon_sym_starts_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2776), + [anon_sym_ends_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2776), + [anon_sym_EQ_EQ2] = ACTIONS(2814), + [anon_sym_BANG_EQ2] = ACTIONS(2814), + [anon_sym_LT2] = ACTIONS(2806), + [anon_sym_LT_EQ2] = ACTIONS(2814), + [anon_sym_GT_EQ2] = ACTIONS(2814), + [anon_sym_EQ_TILDE2] = ACTIONS(2776), + [anon_sym_BANG_TILDE2] = ACTIONS(2776), + [anon_sym_like2] = ACTIONS(2776), + [anon_sym_not_DASHlike2] = ACTIONS(2776), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2776), + [anon_sym_bit_DASHxor2] = ACTIONS(2776), + [anon_sym_bit_DASHor2] = ACTIONS(2776), + [anon_sym_err_GT] = ACTIONS(2778), + [anon_sym_out_GT] = ACTIONS(2778), + [anon_sym_e_GT] = ACTIONS(2778), + [anon_sym_o_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT] = ACTIONS(2778), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1239)] = { [sym_comment] = STATE(1239), - [aux_sym_cmd_identifier_token2] = ACTIONS(2664), - [anon_sym_in] = ACTIONS(2503), - [sym__newline] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_PIPE] = ACTIONS(2501), - [anon_sym_err_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_GT_PIPE] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2501), - [anon_sym_GT2] = ACTIONS(2503), - [anon_sym_DASH2] = ACTIONS(2503), - [anon_sym_RBRACE] = ACTIONS(2501), - [anon_sym_STAR2] = ACTIONS(2503), - [anon_sym_and2] = ACTIONS(2503), - [anon_sym_xor2] = ACTIONS(2503), - [anon_sym_or2] = ACTIONS(2503), - [anon_sym_not_DASHin2] = ACTIONS(2503), - [anon_sym_has2] = ACTIONS(2503), - [anon_sym_not_DASHhas2] = ACTIONS(2503), - [anon_sym_starts_DASHwith2] = ACTIONS(2503), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2503), - [anon_sym_ends_DASHwith2] = ACTIONS(2503), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2503), - [anon_sym_EQ_EQ2] = ACTIONS(2501), - [anon_sym_BANG_EQ2] = ACTIONS(2501), - [anon_sym_LT2] = ACTIONS(2503), - [anon_sym_LT_EQ2] = ACTIONS(2501), - [anon_sym_GT_EQ2] = ACTIONS(2501), - [anon_sym_EQ_TILDE2] = ACTIONS(2501), - [anon_sym_BANG_TILDE2] = ACTIONS(2503), - [anon_sym_like2] = ACTIONS(2503), - [anon_sym_not_DASHlike2] = ACTIONS(2503), - [anon_sym_STAR_STAR2] = ACTIONS(2503), - [anon_sym_PLUS_PLUS2] = ACTIONS(2503), - [anon_sym_SLASH2] = ACTIONS(2503), - [anon_sym_mod2] = ACTIONS(2503), - [anon_sym_SLASH_SLASH2] = ACTIONS(2503), - [anon_sym_PLUS2] = ACTIONS(2503), - [anon_sym_bit_DASHshl2] = ACTIONS(2503), - [anon_sym_bit_DASHshr2] = ACTIONS(2503), - [anon_sym_bit_DASHand2] = ACTIONS(2503), - [anon_sym_bit_DASHxor2] = ACTIONS(2503), - [anon_sym_bit_DASHor2] = ACTIONS(2503), - [anon_sym_err_GT] = ACTIONS(2503), - [anon_sym_out_GT] = ACTIONS(2503), - [anon_sym_e_GT] = ACTIONS(2503), - [anon_sym_o_GT] = ACTIONS(2503), - [anon_sym_err_PLUSout_GT] = ACTIONS(2503), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2503), - [anon_sym_o_PLUSe_GT] = ACTIONS(2503), - [anon_sym_e_PLUSo_GT] = ACTIONS(2503), - [anon_sym_err_GT_GT] = ACTIONS(2501), - [anon_sym_out_GT_GT] = ACTIONS(2501), - [anon_sym_e_GT_GT] = ACTIONS(2501), - [anon_sym_o_GT_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2501), - [anon_sym_POUND] = ACTIONS(103), + [ts_builtin_sym_end] = ACTIONS(890), + [anon_sym_in] = ACTIONS(890), + [sym__newline] = ACTIONS(890), + [anon_sym_SEMI] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(890), + [anon_sym_err_GT_PIPE] = ACTIONS(890), + [anon_sym_out_GT_PIPE] = ACTIONS(890), + [anon_sym_e_GT_PIPE] = ACTIONS(890), + [anon_sym_o_GT_PIPE] = ACTIONS(890), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(890), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(890), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(890), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(890), + [anon_sym_GT2] = ACTIONS(793), + [anon_sym_DASH2] = ACTIONS(890), + [anon_sym_STAR2] = ACTIONS(793), + [anon_sym_and2] = ACTIONS(890), + [anon_sym_xor2] = ACTIONS(890), + [anon_sym_or2] = ACTIONS(890), + [anon_sym_not_DASHin2] = ACTIONS(890), + [anon_sym_has2] = ACTIONS(890), + [anon_sym_not_DASHhas2] = ACTIONS(890), + [anon_sym_starts_DASHwith2] = ACTIONS(890), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(890), + [anon_sym_ends_DASHwith2] = ACTIONS(890), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(890), + [anon_sym_EQ_EQ2] = ACTIONS(890), + [anon_sym_BANG_EQ2] = ACTIONS(890), + [anon_sym_LT2] = ACTIONS(793), + [anon_sym_LT_EQ2] = ACTIONS(890), + [anon_sym_GT_EQ2] = ACTIONS(890), + [anon_sym_EQ_TILDE2] = ACTIONS(890), + [anon_sym_BANG_TILDE2] = ACTIONS(890), + [anon_sym_like2] = ACTIONS(890), + [anon_sym_not_DASHlike2] = ACTIONS(890), + [anon_sym_STAR_STAR2] = ACTIONS(890), + [anon_sym_PLUS_PLUS2] = ACTIONS(890), + [anon_sym_SLASH2] = ACTIONS(793), + [anon_sym_mod2] = ACTIONS(890), + [anon_sym_SLASH_SLASH2] = ACTIONS(890), + [anon_sym_PLUS2] = ACTIONS(793), + [anon_sym_bit_DASHshl2] = ACTIONS(890), + [anon_sym_bit_DASHshr2] = ACTIONS(890), + [anon_sym_bit_DASHand2] = ACTIONS(890), + [anon_sym_bit_DASHxor2] = ACTIONS(890), + [anon_sym_bit_DASHor2] = ACTIONS(890), + [anon_sym_err_GT] = ACTIONS(793), + [anon_sym_out_GT] = ACTIONS(793), + [anon_sym_e_GT] = ACTIONS(793), + [anon_sym_o_GT] = ACTIONS(793), + [anon_sym_err_PLUSout_GT] = ACTIONS(793), + [anon_sym_out_PLUSerr_GT] = ACTIONS(793), + [anon_sym_o_PLUSe_GT] = ACTIONS(793), + [anon_sym_e_PLUSo_GT] = ACTIONS(793), + [anon_sym_err_GT_GT] = ACTIONS(890), + [anon_sym_out_GT_GT] = ACTIONS(890), + [anon_sym_e_GT_GT] = ACTIONS(890), + [anon_sym_o_GT_GT] = ACTIONS(890), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(890), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(890), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(890), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(890), + [sym__unquoted_pattern] = ACTIONS(1830), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1240)] = { - [sym__expression] = STATE(4757), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1240), - [aux_sym_cmd_identifier_token2] = ACTIONS(2916), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_in] = ACTIONS(2776), + [sym__newline] = ACTIONS(2776), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2778), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2776), + [anon_sym_has2] = ACTIONS(2776), + [anon_sym_not_DASHhas2] = ACTIONS(2776), + [anon_sym_starts_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2776), + [anon_sym_ends_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2776), + [anon_sym_EQ_EQ2] = ACTIONS(2776), + [anon_sym_BANG_EQ2] = ACTIONS(2776), + [anon_sym_LT2] = ACTIONS(2778), + [anon_sym_LT_EQ2] = ACTIONS(2776), + [anon_sym_GT_EQ2] = ACTIONS(2776), + [anon_sym_EQ_TILDE2] = ACTIONS(2776), + [anon_sym_BANG_TILDE2] = ACTIONS(2776), + [anon_sym_like2] = ACTIONS(2776), + [anon_sym_not_DASHlike2] = ACTIONS(2776), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2776), + [anon_sym_bit_DASHxor2] = ACTIONS(2776), + [anon_sym_bit_DASHor2] = ACTIONS(2776), + [anon_sym_err_GT] = ACTIONS(2778), + [anon_sym_out_GT] = ACTIONS(2778), + [anon_sym_e_GT] = ACTIONS(2778), + [anon_sym_o_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT] = ACTIONS(2778), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1241)] = { - [aux_sym__repeat_newline] = STATE(1211), [sym_comment] = STATE(1241), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2662), + [anon_sym_in] = ACTIONS(2564), + [sym__newline] = ACTIONS(2562), + [anon_sym_SEMI] = ACTIONS(2562), + [anon_sym_PIPE] = ACTIONS(2562), + [anon_sym_err_GT_PIPE] = ACTIONS(2562), + [anon_sym_out_GT_PIPE] = ACTIONS(2562), + [anon_sym_e_GT_PIPE] = ACTIONS(2562), + [anon_sym_o_GT_PIPE] = ACTIONS(2562), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2562), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2562), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2562), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2562), + [anon_sym_GT2] = ACTIONS(2564), + [anon_sym_DASH2] = ACTIONS(2564), + [anon_sym_RBRACE] = ACTIONS(2562), + [anon_sym_STAR2] = ACTIONS(2564), + [anon_sym_and2] = ACTIONS(2564), + [anon_sym_xor2] = ACTIONS(2564), + [anon_sym_or2] = ACTIONS(2564), + [anon_sym_not_DASHin2] = ACTIONS(2564), + [anon_sym_has2] = ACTIONS(2564), + [anon_sym_not_DASHhas2] = ACTIONS(2564), + [anon_sym_starts_DASHwith2] = ACTIONS(2564), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2564), + [anon_sym_ends_DASHwith2] = ACTIONS(2564), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2564), + [anon_sym_EQ_EQ2] = ACTIONS(2562), + [anon_sym_BANG_EQ2] = ACTIONS(2562), + [anon_sym_LT2] = ACTIONS(2564), + [anon_sym_LT_EQ2] = ACTIONS(2562), + [anon_sym_GT_EQ2] = ACTIONS(2562), + [anon_sym_EQ_TILDE2] = ACTIONS(2562), + [anon_sym_BANG_TILDE2] = ACTIONS(2564), + [anon_sym_like2] = ACTIONS(2564), + [anon_sym_not_DASHlike2] = ACTIONS(2564), + [anon_sym_STAR_STAR2] = ACTIONS(2564), + [anon_sym_PLUS_PLUS2] = ACTIONS(2564), + [anon_sym_SLASH2] = ACTIONS(2564), + [anon_sym_mod2] = ACTIONS(2564), + [anon_sym_SLASH_SLASH2] = ACTIONS(2564), + [anon_sym_PLUS2] = ACTIONS(2564), + [anon_sym_bit_DASHshl2] = ACTIONS(2564), + [anon_sym_bit_DASHshr2] = ACTIONS(2564), + [anon_sym_bit_DASHand2] = ACTIONS(2564), + [anon_sym_bit_DASHxor2] = ACTIONS(2564), + [anon_sym_bit_DASHor2] = ACTIONS(2564), + [anon_sym_err_GT] = ACTIONS(2564), + [anon_sym_out_GT] = ACTIONS(2564), + [anon_sym_e_GT] = ACTIONS(2564), + [anon_sym_o_GT] = ACTIONS(2564), + [anon_sym_err_PLUSout_GT] = ACTIONS(2564), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2564), + [anon_sym_o_PLUSe_GT] = ACTIONS(2564), + [anon_sym_e_PLUSo_GT] = ACTIONS(2564), + [anon_sym_err_GT_GT] = ACTIONS(2562), + [anon_sym_out_GT_GT] = ACTIONS(2562), + [anon_sym_e_GT_GT] = ACTIONS(2562), + [anon_sym_o_GT_GT] = ACTIONS(2562), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2562), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2562), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2562), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2562), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1242)] = { + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1242), - [aux_sym_cmd_identifier_token2] = ACTIONS(2664), - [anon_sym_in] = ACTIONS(2637), - [sym__newline] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_PIPE] = ACTIONS(2635), - [anon_sym_err_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_GT_PIPE] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2635), - [anon_sym_GT2] = ACTIONS(2637), - [anon_sym_DASH2] = ACTIONS(2637), - [anon_sym_RBRACE] = ACTIONS(2635), - [anon_sym_STAR2] = ACTIONS(2637), - [anon_sym_and2] = ACTIONS(2637), - [anon_sym_xor2] = ACTIONS(2637), - [anon_sym_or2] = ACTIONS(2637), - [anon_sym_not_DASHin2] = ACTIONS(2637), - [anon_sym_has2] = ACTIONS(2637), - [anon_sym_not_DASHhas2] = ACTIONS(2637), - [anon_sym_starts_DASHwith2] = ACTIONS(2637), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2637), - [anon_sym_ends_DASHwith2] = ACTIONS(2637), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2637), - [anon_sym_EQ_EQ2] = ACTIONS(2635), - [anon_sym_BANG_EQ2] = ACTIONS(2635), - [anon_sym_LT2] = ACTIONS(2637), - [anon_sym_LT_EQ2] = ACTIONS(2635), - [anon_sym_GT_EQ2] = ACTIONS(2635), - [anon_sym_EQ_TILDE2] = ACTIONS(2635), - [anon_sym_BANG_TILDE2] = ACTIONS(2637), - [anon_sym_like2] = ACTIONS(2637), - [anon_sym_not_DASHlike2] = ACTIONS(2637), - [anon_sym_STAR_STAR2] = ACTIONS(2637), - [anon_sym_PLUS_PLUS2] = ACTIONS(2637), - [anon_sym_SLASH2] = ACTIONS(2637), - [anon_sym_mod2] = ACTIONS(2637), - [anon_sym_SLASH_SLASH2] = ACTIONS(2637), - [anon_sym_PLUS2] = ACTIONS(2637), - [anon_sym_bit_DASHshl2] = ACTIONS(2637), - [anon_sym_bit_DASHshr2] = ACTIONS(2637), - [anon_sym_bit_DASHand2] = ACTIONS(2637), - [anon_sym_bit_DASHxor2] = ACTIONS(2637), - [anon_sym_bit_DASHor2] = ACTIONS(2637), - [anon_sym_err_GT] = ACTIONS(2637), - [anon_sym_out_GT] = ACTIONS(2637), - [anon_sym_e_GT] = ACTIONS(2637), - [anon_sym_o_GT] = ACTIONS(2637), - [anon_sym_err_PLUSout_GT] = ACTIONS(2637), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2637), - [anon_sym_o_PLUSe_GT] = ACTIONS(2637), - [anon_sym_e_PLUSo_GT] = ACTIONS(2637), - [anon_sym_err_GT_GT] = ACTIONS(2635), - [anon_sym_out_GT_GT] = ACTIONS(2635), - [anon_sym_e_GT_GT] = ACTIONS(2635), - [anon_sym_o_GT_GT] = ACTIONS(2635), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2635), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2635), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2635), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2635), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(2776), + [sym__newline] = ACTIONS(2776), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2778), + [anon_sym_DASH2] = ACTIONS(2776), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2776), + [anon_sym_has2] = ACTIONS(2776), + [anon_sym_not_DASHhas2] = ACTIONS(2776), + [anon_sym_starts_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2776), + [anon_sym_ends_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2776), + [anon_sym_EQ_EQ2] = ACTIONS(2776), + [anon_sym_BANG_EQ2] = ACTIONS(2776), + [anon_sym_LT2] = ACTIONS(2778), + [anon_sym_LT_EQ2] = ACTIONS(2776), + [anon_sym_GT_EQ2] = ACTIONS(2776), + [anon_sym_EQ_TILDE2] = ACTIONS(2776), + [anon_sym_BANG_TILDE2] = ACTIONS(2776), + [anon_sym_like2] = ACTIONS(2776), + [anon_sym_not_DASHlike2] = ACTIONS(2776), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2778), + [anon_sym_bit_DASHshl2] = ACTIONS(2776), + [anon_sym_bit_DASHshr2] = ACTIONS(2776), + [anon_sym_bit_DASHand2] = ACTIONS(2776), + [anon_sym_bit_DASHxor2] = ACTIONS(2776), + [anon_sym_bit_DASHor2] = ACTIONS(2776), + [anon_sym_err_GT] = ACTIONS(2778), + [anon_sym_out_GT] = ACTIONS(2778), + [anon_sym_e_GT] = ACTIONS(2778), + [anon_sym_o_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT] = ACTIONS(2778), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1243)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1243), - [anon_sym_in] = ACTIONS(2706), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2706), - [anon_sym_xor2] = ACTIONS(2706), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2706), - [anon_sym_has2] = ACTIONS(2706), - [anon_sym_not_DASHhas2] = ACTIONS(2706), - [anon_sym_starts_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), - [anon_sym_ends_DASHwith2] = ACTIONS(2706), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2706), - [anon_sym_BANG_TILDE2] = ACTIONS(2706), - [anon_sym_like2] = ACTIONS(2706), - [anon_sym_not_DASHlike2] = ACTIONS(2706), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2706), - [anon_sym_bit_DASHxor2] = ACTIONS(2706), - [anon_sym_bit_DASHor2] = ACTIONS(2706), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2776), + [sym__newline] = ACTIONS(2776), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2778), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2776), + [anon_sym_has2] = ACTIONS(2776), + [anon_sym_not_DASHhas2] = ACTIONS(2776), + [anon_sym_starts_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2776), + [anon_sym_ends_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2776), + [anon_sym_EQ_EQ2] = ACTIONS(2776), + [anon_sym_BANG_EQ2] = ACTIONS(2776), + [anon_sym_LT2] = ACTIONS(2778), + [anon_sym_LT_EQ2] = ACTIONS(2776), + [anon_sym_GT_EQ2] = ACTIONS(2776), + [anon_sym_EQ_TILDE2] = ACTIONS(2776), + [anon_sym_BANG_TILDE2] = ACTIONS(2776), + [anon_sym_like2] = ACTIONS(2776), + [anon_sym_not_DASHlike2] = ACTIONS(2776), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_bit_DASHshl2] = ACTIONS(2776), + [anon_sym_bit_DASHshr2] = ACTIONS(2776), + [anon_sym_bit_DASHand2] = ACTIONS(2776), + [anon_sym_bit_DASHxor2] = ACTIONS(2776), + [anon_sym_bit_DASHor2] = ACTIONS(2776), + [anon_sym_err_GT] = ACTIONS(2778), + [anon_sym_out_GT] = ACTIONS(2778), + [anon_sym_e_GT] = ACTIONS(2778), + [anon_sym_o_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT] = ACTIONS(2778), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1244)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1261), [sym_comment] = STATE(1244), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_err_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_GT_PIPE] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2910), - [anon_sym_xor2] = ACTIONS(2918), - [anon_sym_or2] = ACTIONS(2706), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2804), - [anon_sym_bit_DASHor2] = ACTIONS(2903), - [anon_sym_err_GT] = ACTIONS(2708), - [anon_sym_out_GT] = ACTIONS(2708), - [anon_sym_e_GT] = ACTIONS(2708), - [anon_sym_o_GT] = ACTIONS(2708), - [anon_sym_err_PLUSout_GT] = ACTIONS(2708), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), - [anon_sym_o_PLUSe_GT] = ACTIONS(2708), - [anon_sym_e_PLUSo_GT] = ACTIONS(2708), - [anon_sym_err_GT_GT] = ACTIONS(2706), - [anon_sym_out_GT_GT] = ACTIONS(2706), - [anon_sym_e_GT_GT] = ACTIONS(2706), - [anon_sym_o_GT_GT] = ACTIONS(2706), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_in] = ACTIONS(2832), + [sym__newline] = ACTIONS(2864), + [anon_sym_SEMI] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_err_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_GT_PIPE] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), + [anon_sym_RPAREN] = ACTIONS(2676), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2676), + [anon_sym_xor2] = ACTIONS(2676), + [anon_sym_or2] = ACTIONS(2676), + [anon_sym_not_DASHin2] = ACTIONS(2832), + [anon_sym_has2] = ACTIONS(2832), + [anon_sym_not_DASHhas2] = ACTIONS(2832), + [anon_sym_starts_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), + [anon_sym_ends_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), + [anon_sym_EQ_EQ2] = ACTIONS(2846), + [anon_sym_BANG_EQ2] = ACTIONS(2846), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2846), + [anon_sym_GT_EQ2] = ACTIONS(2846), + [anon_sym_EQ_TILDE2] = ACTIONS(2676), + [anon_sym_BANG_TILDE2] = ACTIONS(2676), + [anon_sym_like2] = ACTIONS(2676), + [anon_sym_not_DASHlike2] = ACTIONS(2676), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), + [anon_sym_bit_DASHand2] = ACTIONS(2676), + [anon_sym_bit_DASHxor2] = ACTIONS(2676), + [anon_sym_bit_DASHor2] = ACTIONS(2676), + [anon_sym_err_GT] = ACTIONS(2678), + [anon_sym_out_GT] = ACTIONS(2678), + [anon_sym_e_GT] = ACTIONS(2678), + [anon_sym_o_GT] = ACTIONS(2678), + [anon_sym_err_PLUSout_GT] = ACTIONS(2678), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), + [anon_sym_o_PLUSe_GT] = ACTIONS(2678), + [anon_sym_e_PLUSo_GT] = ACTIONS(2678), + [anon_sym_err_GT_GT] = ACTIONS(2676), + [anon_sym_out_GT_GT] = ACTIONS(2676), + [anon_sym_e_GT_GT] = ACTIONS(2676), + [anon_sym_o_GT_GT] = ACTIONS(2676), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1245)] = { - [aux_sym__repeat_newline] = STATE(1225), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1245), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2856), - [anon_sym_BANG_TILDE2] = ACTIONS(2856), - [anon_sym_like2] = ACTIONS(2856), - [anon_sym_not_DASHlike2] = ACTIONS(2856), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2776), + [sym__newline] = ACTIONS(2776), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2778), + [anon_sym_DASH2] = ACTIONS(2776), + [anon_sym_STAR2] = ACTIONS(2778), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2776), + [anon_sym_has2] = ACTIONS(2776), + [anon_sym_not_DASHhas2] = ACTIONS(2776), + [anon_sym_starts_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2776), + [anon_sym_ends_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2776), + [anon_sym_EQ_EQ2] = ACTIONS(2776), + [anon_sym_BANG_EQ2] = ACTIONS(2776), + [anon_sym_LT2] = ACTIONS(2778), + [anon_sym_LT_EQ2] = ACTIONS(2776), + [anon_sym_GT_EQ2] = ACTIONS(2776), + [anon_sym_EQ_TILDE2] = ACTIONS(2776), + [anon_sym_BANG_TILDE2] = ACTIONS(2776), + [anon_sym_like2] = ACTIONS(2776), + [anon_sym_not_DASHlike2] = ACTIONS(2776), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2778), + [anon_sym_mod2] = ACTIONS(2776), + [anon_sym_SLASH_SLASH2] = ACTIONS(2776), + [anon_sym_PLUS2] = ACTIONS(2778), + [anon_sym_bit_DASHshl2] = ACTIONS(2776), + [anon_sym_bit_DASHshr2] = ACTIONS(2776), + [anon_sym_bit_DASHand2] = ACTIONS(2776), + [anon_sym_bit_DASHxor2] = ACTIONS(2776), + [anon_sym_bit_DASHor2] = ACTIONS(2776), + [anon_sym_err_GT] = ACTIONS(2778), + [anon_sym_out_GT] = ACTIONS(2778), + [anon_sym_e_GT] = ACTIONS(2778), + [anon_sym_o_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT] = ACTIONS(2778), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1246)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(1216), [sym_comment] = STATE(1246), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2720), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2832), + [sym__newline] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(2684), + [anon_sym_PIPE] = ACTIONS(2684), + [anon_sym_err_GT_PIPE] = ACTIONS(2684), + [anon_sym_out_GT_PIPE] = ACTIONS(2684), + [anon_sym_e_GT_PIPE] = ACTIONS(2684), + [anon_sym_o_GT_PIPE] = ACTIONS(2684), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), + [anon_sym_RPAREN] = ACTIONS(2684), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2684), + [anon_sym_xor2] = ACTIONS(2684), + [anon_sym_or2] = ACTIONS(2684), + [anon_sym_not_DASHin2] = ACTIONS(2832), + [anon_sym_has2] = ACTIONS(2832), + [anon_sym_not_DASHhas2] = ACTIONS(2832), + [anon_sym_starts_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), + [anon_sym_ends_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), + [anon_sym_EQ_EQ2] = ACTIONS(2846), + [anon_sym_BANG_EQ2] = ACTIONS(2846), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2846), + [anon_sym_GT_EQ2] = ACTIONS(2846), + [anon_sym_EQ_TILDE2] = ACTIONS(2848), + [anon_sym_BANG_TILDE2] = ACTIONS(2848), + [anon_sym_like2] = ACTIONS(2848), + [anon_sym_not_DASHlike2] = ACTIONS(2848), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), + [anon_sym_bit_DASHand2] = ACTIONS(2858), + [anon_sym_bit_DASHxor2] = ACTIONS(2684), + [anon_sym_bit_DASHor2] = ACTIONS(2684), + [anon_sym_err_GT] = ACTIONS(2686), + [anon_sym_out_GT] = ACTIONS(2686), + [anon_sym_e_GT] = ACTIONS(2686), + [anon_sym_o_GT] = ACTIONS(2686), + [anon_sym_err_PLUSout_GT] = ACTIONS(2686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), + [anon_sym_o_PLUSe_GT] = ACTIONS(2686), + [anon_sym_e_PLUSo_GT] = ACTIONS(2686), + [anon_sym_err_GT_GT] = ACTIONS(2684), + [anon_sym_out_GT_GT] = ACTIONS(2684), + [anon_sym_e_GT_GT] = ACTIONS(2684), + [anon_sym_o_GT_GT] = ACTIONS(2684), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1247)] = { + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1247), - [anon_sym_in] = ACTIONS(2533), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2808), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2533), - [anon_sym_has2] = ACTIONS(2533), - [anon_sym_not_DASHhas2] = ACTIONS(2533), - [anon_sym_starts_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), - [anon_sym_ends_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2776), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2806), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), [anon_sym_EQ_EQ2] = ACTIONS(2814), [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2808), + [anon_sym_LT2] = ACTIONS(2806), [anon_sym_LT_EQ2] = ACTIONS(2814), [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), + [anon_sym_EQ_TILDE2] = ACTIONS(2816), + [anon_sym_BANG_TILDE2] = ACTIONS(2816), + [anon_sym_like2] = ACTIONS(2816), + [anon_sym_not_DASHlike2] = ACTIONS(2816), [anon_sym_STAR_STAR2] = ACTIONS(2818), [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), + [anon_sym_SLASH2] = ACTIONS(2810), [anon_sym_mod2] = ACTIONS(2820), [anon_sym_SLASH_SLASH2] = ACTIONS(2820), [anon_sym_PLUS2] = ACTIONS(2822), [anon_sym_bit_DASHshl2] = ACTIONS(2824), [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_bit_DASHand2] = ACTIONS(2826), + [anon_sym_bit_DASHxor2] = ACTIONS(2828), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2778), + [anon_sym_out_GT] = ACTIONS(2778), + [anon_sym_e_GT] = ACTIONS(2778), + [anon_sym_o_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT] = ACTIONS(2778), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1248)] = { - [aux_sym__repeat_newline] = STATE(540), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1248), - [anon_sym_in] = ACTIONS(2788), - [sym__newline] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_PIPE] = ACTIONS(2720), - [anon_sym_err_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_GT_PIPE] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2720), - [anon_sym_RPAREN] = ACTIONS(2720), - [anon_sym_GT2] = ACTIONS(2790), - [anon_sym_DASH2] = ACTIONS(2792), - [anon_sym_STAR2] = ACTIONS(2782), - [anon_sym_and2] = ACTIONS(2720), - [anon_sym_xor2] = ACTIONS(2720), - [anon_sym_or2] = ACTIONS(2720), - [anon_sym_not_DASHin2] = ACTIONS(2788), - [anon_sym_has2] = ACTIONS(2788), - [anon_sym_not_DASHhas2] = ACTIONS(2788), - [anon_sym_starts_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2788), - [anon_sym_ends_DASHwith2] = ACTIONS(2788), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2788), - [anon_sym_EQ_EQ2] = ACTIONS(2794), - [anon_sym_BANG_EQ2] = ACTIONS(2794), - [anon_sym_LT2] = ACTIONS(2790), - [anon_sym_LT_EQ2] = ACTIONS(2794), - [anon_sym_GT_EQ2] = ACTIONS(2794), - [anon_sym_EQ_TILDE2] = ACTIONS(2796), - [anon_sym_BANG_TILDE2] = ACTIONS(2796), - [anon_sym_like2] = ACTIONS(2796), - [anon_sym_not_DASHlike2] = ACTIONS(2796), - [anon_sym_STAR_STAR2] = ACTIONS(2784), - [anon_sym_PLUS_PLUS2] = ACTIONS(2784), - [anon_sym_SLASH2] = ACTIONS(2782), - [anon_sym_mod2] = ACTIONS(2786), - [anon_sym_SLASH_SLASH2] = ACTIONS(2786), - [anon_sym_PLUS2] = ACTIONS(2798), - [anon_sym_bit_DASHshl2] = ACTIONS(2800), - [anon_sym_bit_DASHshr2] = ACTIONS(2800), - [anon_sym_bit_DASHand2] = ACTIONS(2802), - [anon_sym_bit_DASHxor2] = ACTIONS(2720), - [anon_sym_bit_DASHor2] = ACTIONS(2720), - [anon_sym_err_GT] = ACTIONS(2722), - [anon_sym_out_GT] = ACTIONS(2722), - [anon_sym_e_GT] = ACTIONS(2722), - [anon_sym_o_GT] = ACTIONS(2722), - [anon_sym_err_PLUSout_GT] = ACTIONS(2722), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2722), - [anon_sym_o_PLUSe_GT] = ACTIONS(2722), - [anon_sym_e_PLUSo_GT] = ACTIONS(2722), - [anon_sym_err_GT_GT] = ACTIONS(2720), - [anon_sym_out_GT_GT] = ACTIONS(2720), - [anon_sym_e_GT_GT] = ACTIONS(2720), - [anon_sym_o_GT_GT] = ACTIONS(2720), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2720), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2720), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2720), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2720), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2776), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2806), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2814), + [anon_sym_BANG_EQ2] = ACTIONS(2814), + [anon_sym_LT2] = ACTIONS(2806), + [anon_sym_LT_EQ2] = ACTIONS(2814), + [anon_sym_GT_EQ2] = ACTIONS(2814), + [anon_sym_EQ_TILDE2] = ACTIONS(2816), + [anon_sym_BANG_TILDE2] = ACTIONS(2816), + [anon_sym_like2] = ACTIONS(2816), + [anon_sym_not_DASHlike2] = ACTIONS(2816), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2776), + [anon_sym_bit_DASHxor2] = ACTIONS(2776), + [anon_sym_bit_DASHor2] = ACTIONS(2776), + [anon_sym_err_GT] = ACTIONS(2778), + [anon_sym_out_GT] = ACTIONS(2778), + [anon_sym_e_GT] = ACTIONS(2778), + [anon_sym_o_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT] = ACTIONS(2778), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1249)] = { - [aux_sym__repeat_newline] = STATE(1141), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1249), - [anon_sym_in] = ACTIONS(2712), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2714), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2712), - [anon_sym_has2] = ACTIONS(2712), - [anon_sym_not_DASHhas2] = ACTIONS(2712), - [anon_sym_starts_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), - [anon_sym_ends_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), - [anon_sym_EQ_EQ2] = ACTIONS(2712), - [anon_sym_BANG_EQ2] = ACTIONS(2712), - [anon_sym_LT2] = ACTIONS(2714), - [anon_sym_LT_EQ2] = ACTIONS(2712), - [anon_sym_GT_EQ2] = ACTIONS(2712), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2776), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2806), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2812), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2814), + [anon_sym_BANG_EQ2] = ACTIONS(2814), + [anon_sym_LT2] = ACTIONS(2806), + [anon_sym_LT_EQ2] = ACTIONS(2814), + [anon_sym_GT_EQ2] = ACTIONS(2814), + [anon_sym_EQ_TILDE2] = ACTIONS(2816), + [anon_sym_BANG_TILDE2] = ACTIONS(2816), + [anon_sym_like2] = ACTIONS(2816), + [anon_sym_not_DASHlike2] = ACTIONS(2816), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2826), + [anon_sym_bit_DASHxor2] = ACTIONS(2828), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2778), + [anon_sym_out_GT] = ACTIONS(2778), + [anon_sym_e_GT] = ACTIONS(2778), + [anon_sym_o_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT] = ACTIONS(2778), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1250)] = { - [aux_sym__repeat_newline] = STATE(1222), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1250), - [anon_sym_in] = ACTIONS(2744), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2746), - [anon_sym_DASH2] = ACTIONS(2744), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2744), - [anon_sym_has2] = ACTIONS(2744), - [anon_sym_not_DASHhas2] = ACTIONS(2744), - [anon_sym_starts_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2744), - [anon_sym_ends_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2744), - [anon_sym_EQ_EQ2] = ACTIONS(2744), - [anon_sym_BANG_EQ2] = ACTIONS(2744), - [anon_sym_LT2] = ACTIONS(2746), - [anon_sym_LT_EQ2] = ACTIONS(2744), - [anon_sym_GT_EQ2] = ACTIONS(2744), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2746), - [anon_sym_bit_DASHshl2] = ACTIONS(2744), - [anon_sym_bit_DASHshr2] = ACTIONS(2744), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2688), + [sym__newline] = ACTIONS(2688), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_err_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_GT_PIPE] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), + [anon_sym_RPAREN] = ACTIONS(2688), + [anon_sym_GT2] = ACTIONS(2806), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2688), + [anon_sym_xor2] = ACTIONS(2688), + [anon_sym_or2] = ACTIONS(2688), + [anon_sym_not_DASHin2] = ACTIONS(2688), + [anon_sym_has2] = ACTIONS(2688), + [anon_sym_not_DASHhas2] = ACTIONS(2688), + [anon_sym_starts_DASHwith2] = ACTIONS(2688), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2688), + [anon_sym_ends_DASHwith2] = ACTIONS(2688), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2688), + [anon_sym_EQ_EQ2] = ACTIONS(2814), + [anon_sym_BANG_EQ2] = ACTIONS(2814), + [anon_sym_LT2] = ACTIONS(2806), + [anon_sym_LT_EQ2] = ACTIONS(2814), + [anon_sym_GT_EQ2] = ACTIONS(2814), + [anon_sym_EQ_TILDE2] = ACTIONS(2688), + [anon_sym_BANG_TILDE2] = ACTIONS(2688), + [anon_sym_like2] = ACTIONS(2688), + [anon_sym_not_DASHlike2] = ACTIONS(2688), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2688), + [anon_sym_bit_DASHxor2] = ACTIONS(2688), + [anon_sym_bit_DASHor2] = ACTIONS(2688), + [anon_sym_err_GT] = ACTIONS(2690), + [anon_sym_out_GT] = ACTIONS(2690), + [anon_sym_e_GT] = ACTIONS(2690), + [anon_sym_o_GT] = ACTIONS(2690), + [anon_sym_err_PLUSout_GT] = ACTIONS(2690), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), + [anon_sym_o_PLUSe_GT] = ACTIONS(2690), + [anon_sym_e_PLUSo_GT] = ACTIONS(2690), + [anon_sym_err_GT_GT] = ACTIONS(2688), + [anon_sym_out_GT_GT] = ACTIONS(2688), + [anon_sym_e_GT_GT] = ACTIONS(2688), + [anon_sym_o_GT_GT] = ACTIONS(2688), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1251)] = { + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1251), - [anon_sym_in] = ACTIONS(2533), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2535), - [anon_sym_DASH2] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2533), - [anon_sym_has2] = ACTIONS(2533), - [anon_sym_not_DASHhas2] = ACTIONS(2533), - [anon_sym_starts_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), - [anon_sym_ends_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), - [anon_sym_EQ_EQ2] = ACTIONS(2533), - [anon_sym_BANG_EQ2] = ACTIONS(2533), - [anon_sym_LT2] = ACTIONS(2535), - [anon_sym_LT_EQ2] = ACTIONS(2533), - [anon_sym_GT_EQ2] = ACTIONS(2533), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2776), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2806), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2812), + [anon_sym_xor2] = ACTIONS(2873), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2814), + [anon_sym_BANG_EQ2] = ACTIONS(2814), + [anon_sym_LT2] = ACTIONS(2806), + [anon_sym_LT_EQ2] = ACTIONS(2814), + [anon_sym_GT_EQ2] = ACTIONS(2814), + [anon_sym_EQ_TILDE2] = ACTIONS(2816), + [anon_sym_BANG_TILDE2] = ACTIONS(2816), + [anon_sym_like2] = ACTIONS(2816), + [anon_sym_not_DASHlike2] = ACTIONS(2816), [anon_sym_STAR_STAR2] = ACTIONS(2818), [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), + [anon_sym_SLASH2] = ACTIONS(2810), [anon_sym_mod2] = ACTIONS(2820), [anon_sym_SLASH_SLASH2] = ACTIONS(2820), [anon_sym_PLUS2] = ACTIONS(2822), [anon_sym_bit_DASHshl2] = ACTIONS(2824), [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_bit_DASHand2] = ACTIONS(2826), + [anon_sym_bit_DASHxor2] = ACTIONS(2828), + [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_err_GT] = ACTIONS(2778), + [anon_sym_out_GT] = ACTIONS(2778), + [anon_sym_e_GT] = ACTIONS(2778), + [anon_sym_o_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT] = ACTIONS(2778), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1252)] = { [sym_comment] = STATE(1252), - [anon_sym_export] = ACTIONS(2924), - [anon_sym_alias] = ACTIONS(2928), - [anon_sym_let] = ACTIONS(2928), - [anon_sym_mut] = ACTIONS(2928), - [anon_sym_const] = ACTIONS(2928), - [aux_sym_cmd_identifier_token1] = ACTIONS(2924), - [anon_sym_def] = ACTIONS(2928), - [anon_sym_use] = ACTIONS(2928), - [anon_sym_export_DASHenv] = ACTIONS(2928), - [anon_sym_extern] = ACTIONS(2928), - [anon_sym_module] = ACTIONS(2928), - [anon_sym_for] = ACTIONS(2928), - [anon_sym_loop] = ACTIONS(2928), - [anon_sym_while] = ACTIONS(2928), - [anon_sym_if] = ACTIONS(2928), - [anon_sym_else] = ACTIONS(2928), - [anon_sym_try] = ACTIONS(2928), - [anon_sym_catch] = ACTIONS(2928), - [anon_sym_match] = ACTIONS(2928), - [anon_sym_in] = ACTIONS(2924), - [anon_sym_true] = ACTIONS(2928), - [anon_sym_false] = ACTIONS(2928), - [anon_sym_null] = ACTIONS(2928), - [aux_sym_cmd_identifier_token3] = ACTIONS(2928), - [aux_sym_cmd_identifier_token4] = ACTIONS(2928), - [aux_sym_cmd_identifier_token5] = ACTIONS(2928), - [sym__newline] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(2932), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_AT] = ACTIONS(2932), - [anon_sym_LBRACK] = ACTIONS(2932), - [anon_sym_LPAREN] = ACTIONS(2928), - [anon_sym_DOLLAR] = ACTIONS(2924), - [anon_sym_DASH2] = ACTIONS(2924), - [anon_sym_LBRACE] = ACTIONS(2932), - [anon_sym_RBRACE] = ACTIONS(2932), - [anon_sym_DOT_DOT] = ACTIONS(2935), - [anon_sym_where] = ACTIONS(2932), - [aux_sym_expr_unary_token1] = ACTIONS(2932), - [anon_sym_PLUS2] = ACTIONS(2938), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2940), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2932), - [anon_sym_DOT_DOT_LT] = ACTIONS(2932), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2940), - [aux_sym__val_number_decimal_token1] = ACTIONS(2924), - [aux_sym__val_number_decimal_token2] = ACTIONS(2928), - [aux_sym__val_number_decimal_token3] = ACTIONS(2928), - [aux_sym__val_number_decimal_token4] = ACTIONS(2928), - [aux_sym__val_number_token1] = ACTIONS(2928), - [aux_sym__val_number_token2] = ACTIONS(2928), - [aux_sym__val_number_token3] = ACTIONS(2928), - [anon_sym_0b] = ACTIONS(2935), - [anon_sym_0o] = ACTIONS(2935), - [anon_sym_0x] = ACTIONS(2935), - [sym_val_date] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_SQUOTE] = ACTIONS(2928), - [anon_sym_BQUOTE] = ACTIONS(2928), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2928), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2928), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2940), - [anon_sym_CARET] = ACTIONS(2932), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2928), + [anon_sym_in] = ACTIONS(2194), + [sym__newline] = ACTIONS(2420), + [anon_sym_SEMI] = ACTIONS(2423), + [anon_sym_PIPE] = ACTIONS(2423), + [anon_sym_err_GT_PIPE] = ACTIONS(2423), + [anon_sym_out_GT_PIPE] = ACTIONS(2423), + [anon_sym_e_GT_PIPE] = ACTIONS(2423), + [anon_sym_o_GT_PIPE] = ACTIONS(2423), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2423), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2423), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2423), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2423), + [anon_sym_RPAREN] = ACTIONS(2423), + [anon_sym_GT2] = ACTIONS(2196), + [anon_sym_DASH2] = ACTIONS(2194), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_STAR2] = ACTIONS(2196), + [anon_sym_and2] = ACTIONS(2194), + [anon_sym_xor2] = ACTIONS(2194), + [anon_sym_or2] = ACTIONS(2194), + [anon_sym_not_DASHin2] = ACTIONS(2194), + [anon_sym_has2] = ACTIONS(2194), + [anon_sym_not_DASHhas2] = ACTIONS(2194), + [anon_sym_starts_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2194), + [anon_sym_ends_DASHwith2] = ACTIONS(2194), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2194), + [anon_sym_EQ_EQ2] = ACTIONS(2194), + [anon_sym_BANG_EQ2] = ACTIONS(2194), + [anon_sym_LT2] = ACTIONS(2196), + [anon_sym_LT_EQ2] = ACTIONS(2194), + [anon_sym_GT_EQ2] = ACTIONS(2194), + [anon_sym_EQ_TILDE2] = ACTIONS(2194), + [anon_sym_BANG_TILDE2] = ACTIONS(2194), + [anon_sym_like2] = ACTIONS(2194), + [anon_sym_not_DASHlike2] = ACTIONS(2194), + [anon_sym_STAR_STAR2] = ACTIONS(2194), + [anon_sym_PLUS_PLUS2] = ACTIONS(2194), + [anon_sym_SLASH2] = ACTIONS(2196), + [anon_sym_mod2] = ACTIONS(2194), + [anon_sym_SLASH_SLASH2] = ACTIONS(2194), + [anon_sym_PLUS2] = ACTIONS(2196), + [anon_sym_bit_DASHshl2] = ACTIONS(2194), + [anon_sym_bit_DASHshr2] = ACTIONS(2194), + [anon_sym_bit_DASHand2] = ACTIONS(2194), + [anon_sym_bit_DASHxor2] = ACTIONS(2194), + [anon_sym_bit_DASHor2] = ACTIONS(2194), + [anon_sym_err_GT] = ACTIONS(2425), + [anon_sym_out_GT] = ACTIONS(2425), + [anon_sym_e_GT] = ACTIONS(2425), + [anon_sym_o_GT] = ACTIONS(2425), + [anon_sym_err_PLUSout_GT] = ACTIONS(2425), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2425), + [anon_sym_o_PLUSe_GT] = ACTIONS(2425), + [anon_sym_e_PLUSo_GT] = ACTIONS(2425), + [anon_sym_err_GT_GT] = ACTIONS(2423), + [anon_sym_out_GT_GT] = ACTIONS(2423), + [anon_sym_e_GT_GT] = ACTIONS(2423), + [anon_sym_o_GT_GT] = ACTIONS(2423), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2423), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2423), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2423), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2423), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1253)] = { - [aux_sym__repeat_newline] = STATE(1146), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1253), - [anon_sym_in] = ACTIONS(2712), - [sym__newline] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_PIPE] = ACTIONS(2712), - [anon_sym_err_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_GT_PIPE] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_GT2] = ACTIONS(2714), - [anon_sym_DASH2] = ACTIONS(2712), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2712), - [anon_sym_xor2] = ACTIONS(2712), - [anon_sym_or2] = ACTIONS(2712), - [anon_sym_not_DASHin2] = ACTIONS(2712), - [anon_sym_has2] = ACTIONS(2712), - [anon_sym_not_DASHhas2] = ACTIONS(2712), - [anon_sym_starts_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2712), - [anon_sym_ends_DASHwith2] = ACTIONS(2712), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2712), - [anon_sym_EQ_EQ2] = ACTIONS(2712), - [anon_sym_BANG_EQ2] = ACTIONS(2712), - [anon_sym_LT2] = ACTIONS(2714), - [anon_sym_LT_EQ2] = ACTIONS(2712), - [anon_sym_GT_EQ2] = ACTIONS(2712), - [anon_sym_EQ_TILDE2] = ACTIONS(2712), - [anon_sym_BANG_TILDE2] = ACTIONS(2712), - [anon_sym_like2] = ACTIONS(2712), - [anon_sym_not_DASHlike2] = ACTIONS(2712), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2714), - [anon_sym_bit_DASHshl2] = ACTIONS(2712), - [anon_sym_bit_DASHshr2] = ACTIONS(2712), - [anon_sym_bit_DASHand2] = ACTIONS(2712), - [anon_sym_bit_DASHxor2] = ACTIONS(2712), - [anon_sym_bit_DASHor2] = ACTIONS(2712), - [anon_sym_err_GT] = ACTIONS(2714), - [anon_sym_out_GT] = ACTIONS(2714), - [anon_sym_e_GT] = ACTIONS(2714), - [anon_sym_o_GT] = ACTIONS(2714), - [anon_sym_err_PLUSout_GT] = ACTIONS(2714), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2714), - [anon_sym_o_PLUSe_GT] = ACTIONS(2714), - [anon_sym_e_PLUSo_GT] = ACTIONS(2714), - [anon_sym_err_GT_GT] = ACTIONS(2712), - [anon_sym_out_GT_GT] = ACTIONS(2712), - [anon_sym_e_GT_GT] = ACTIONS(2712), - [anon_sym_o_GT_GT] = ACTIONS(2712), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2712), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2712), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2712), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2712), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2776), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2806), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2814), + [anon_sym_BANG_EQ2] = ACTIONS(2814), + [anon_sym_LT2] = ACTIONS(2806), + [anon_sym_LT_EQ2] = ACTIONS(2814), + [anon_sym_GT_EQ2] = ACTIONS(2814), + [anon_sym_EQ_TILDE2] = ACTIONS(2776), + [anon_sym_BANG_TILDE2] = ACTIONS(2776), + [anon_sym_like2] = ACTIONS(2776), + [anon_sym_not_DASHlike2] = ACTIONS(2776), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2776), + [anon_sym_bit_DASHxor2] = ACTIONS(2776), + [anon_sym_bit_DASHor2] = ACTIONS(2776), + [anon_sym_err_GT] = ACTIONS(2778), + [anon_sym_out_GT] = ACTIONS(2778), + [anon_sym_e_GT] = ACTIONS(2778), + [anon_sym_o_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT] = ACTIONS(2778), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1254)] = { + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1254), - [anon_sym_in] = ACTIONS(2533), - [sym__newline] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_err_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_GT_PIPE] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_GT2] = ACTIONS(2535), - [anon_sym_DASH2] = ACTIONS(2533), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR2] = ACTIONS(2812), - [anon_sym_and2] = ACTIONS(2533), - [anon_sym_xor2] = ACTIONS(2533), - [anon_sym_or2] = ACTIONS(2533), - [anon_sym_not_DASHin2] = ACTIONS(2533), - [anon_sym_has2] = ACTIONS(2533), - [anon_sym_not_DASHhas2] = ACTIONS(2533), - [anon_sym_starts_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), - [anon_sym_ends_DASHwith2] = ACTIONS(2533), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), - [anon_sym_EQ_EQ2] = ACTIONS(2533), - [anon_sym_BANG_EQ2] = ACTIONS(2533), - [anon_sym_LT2] = ACTIONS(2535), - [anon_sym_LT_EQ2] = ACTIONS(2533), - [anon_sym_GT_EQ2] = ACTIONS(2533), - [anon_sym_EQ_TILDE2] = ACTIONS(2533), - [anon_sym_BANG_TILDE2] = ACTIONS(2533), - [anon_sym_like2] = ACTIONS(2533), - [anon_sym_not_DASHlike2] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2692), + [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_err_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_GT_PIPE] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), + [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_GT2] = ACTIONS(2806), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2692), + [anon_sym_xor2] = ACTIONS(2692), + [anon_sym_or2] = ACTIONS(2692), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2814), + [anon_sym_BANG_EQ2] = ACTIONS(2814), + [anon_sym_LT2] = ACTIONS(2806), + [anon_sym_LT_EQ2] = ACTIONS(2814), + [anon_sym_GT_EQ2] = ACTIONS(2814), + [anon_sym_EQ_TILDE2] = ACTIONS(2816), + [anon_sym_BANG_TILDE2] = ACTIONS(2816), + [anon_sym_like2] = ACTIONS(2816), + [anon_sym_not_DASHlike2] = ACTIONS(2816), [anon_sym_STAR_STAR2] = ACTIONS(2818), [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2812), + [anon_sym_SLASH2] = ACTIONS(2810), [anon_sym_mod2] = ACTIONS(2820), [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2535), - [anon_sym_bit_DASHshl2] = ACTIONS(2533), - [anon_sym_bit_DASHshr2] = ACTIONS(2533), - [anon_sym_bit_DASHand2] = ACTIONS(2533), - [anon_sym_bit_DASHxor2] = ACTIONS(2533), - [anon_sym_bit_DASHor2] = ACTIONS(2533), - [anon_sym_err_GT] = ACTIONS(2535), - [anon_sym_out_GT] = ACTIONS(2535), - [anon_sym_e_GT] = ACTIONS(2535), - [anon_sym_o_GT] = ACTIONS(2535), - [anon_sym_err_PLUSout_GT] = ACTIONS(2535), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), - [anon_sym_o_PLUSe_GT] = ACTIONS(2535), - [anon_sym_e_PLUSo_GT] = ACTIONS(2535), - [anon_sym_err_GT_GT] = ACTIONS(2533), - [anon_sym_out_GT_GT] = ACTIONS(2533), - [anon_sym_e_GT_GT] = ACTIONS(2533), - [anon_sym_o_GT_GT] = ACTIONS(2533), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2826), + [anon_sym_bit_DASHxor2] = ACTIONS(2692), + [anon_sym_bit_DASHor2] = ACTIONS(2692), + [anon_sym_err_GT] = ACTIONS(2694), + [anon_sym_out_GT] = ACTIONS(2694), + [anon_sym_e_GT] = ACTIONS(2694), + [anon_sym_o_GT] = ACTIONS(2694), + [anon_sym_err_PLUSout_GT] = ACTIONS(2694), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), + [anon_sym_o_PLUSe_GT] = ACTIONS(2694), + [anon_sym_e_PLUSo_GT] = ACTIONS(2694), + [anon_sym_err_GT_GT] = ACTIONS(2692), + [anon_sym_out_GT_GT] = ACTIONS(2692), + [anon_sym_e_GT_GT] = ACTIONS(2692), + [anon_sym_o_GT_GT] = ACTIONS(2692), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1255)] = { - [aux_sym__repeat_newline] = STATE(1173), [sym_comment] = STATE(1255), - [anon_sym_in] = ACTIONS(2744), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2746), - [anon_sym_DASH2] = ACTIONS(2744), - [anon_sym_STAR2] = ACTIONS(2746), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2744), - [anon_sym_has2] = ACTIONS(2744), - [anon_sym_not_DASHhas2] = ACTIONS(2744), - [anon_sym_starts_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2744), - [anon_sym_ends_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2744), - [anon_sym_EQ_EQ2] = ACTIONS(2744), - [anon_sym_BANG_EQ2] = ACTIONS(2744), - [anon_sym_LT2] = ACTIONS(2746), - [anon_sym_LT_EQ2] = ACTIONS(2744), - [anon_sym_GT_EQ2] = ACTIONS(2744), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2746), - [anon_sym_mod2] = ACTIONS(2744), - [anon_sym_SLASH_SLASH2] = ACTIONS(2744), - [anon_sym_PLUS2] = ACTIONS(2746), - [anon_sym_bit_DASHshl2] = ACTIONS(2744), - [anon_sym_bit_DASHshr2] = ACTIONS(2744), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2547), + [sym__newline] = ACTIONS(2547), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_err_GT_PIPE] = ACTIONS(2547), + [anon_sym_out_GT_PIPE] = ACTIONS(2547), + [anon_sym_e_GT_PIPE] = ACTIONS(2547), + [anon_sym_o_GT_PIPE] = ACTIONS(2547), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2547), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2547), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2547), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2547), + [anon_sym_RPAREN] = ACTIONS(2547), + [anon_sym_GT2] = ACTIONS(2549), + [anon_sym_DASH2] = ACTIONS(2784), + [anon_sym_RBRACE] = ACTIONS(2547), + [anon_sym_STAR2] = ACTIONS(2786), + [anon_sym_and2] = ACTIONS(2547), + [anon_sym_xor2] = ACTIONS(2547), + [anon_sym_or2] = ACTIONS(2547), + [anon_sym_not_DASHin2] = ACTIONS(2547), + [anon_sym_has2] = ACTIONS(2547), + [anon_sym_not_DASHhas2] = ACTIONS(2547), + [anon_sym_starts_DASHwith2] = ACTIONS(2547), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2547), + [anon_sym_ends_DASHwith2] = ACTIONS(2547), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2547), + [anon_sym_EQ_EQ2] = ACTIONS(2547), + [anon_sym_BANG_EQ2] = ACTIONS(2547), + [anon_sym_LT2] = ACTIONS(2549), + [anon_sym_LT_EQ2] = ACTIONS(2547), + [anon_sym_GT_EQ2] = ACTIONS(2547), + [anon_sym_EQ_TILDE2] = ACTIONS(2547), + [anon_sym_BANG_TILDE2] = ACTIONS(2547), + [anon_sym_like2] = ACTIONS(2547), + [anon_sym_not_DASHlike2] = ACTIONS(2547), + [anon_sym_STAR_STAR2] = ACTIONS(2792), + [anon_sym_PLUS_PLUS2] = ACTIONS(2792), + [anon_sym_SLASH2] = ACTIONS(2786), + [anon_sym_mod2] = ACTIONS(2794), + [anon_sym_SLASH_SLASH2] = ACTIONS(2794), + [anon_sym_PLUS2] = ACTIONS(2796), + [anon_sym_bit_DASHshl2] = ACTIONS(2547), + [anon_sym_bit_DASHshr2] = ACTIONS(2547), + [anon_sym_bit_DASHand2] = ACTIONS(2547), + [anon_sym_bit_DASHxor2] = ACTIONS(2547), + [anon_sym_bit_DASHor2] = ACTIONS(2547), + [anon_sym_err_GT] = ACTIONS(2549), + [anon_sym_out_GT] = ACTIONS(2549), + [anon_sym_e_GT] = ACTIONS(2549), + [anon_sym_o_GT] = ACTIONS(2549), + [anon_sym_err_PLUSout_GT] = ACTIONS(2549), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2549), + [anon_sym_o_PLUSe_GT] = ACTIONS(2549), + [anon_sym_e_PLUSo_GT] = ACTIONS(2549), + [anon_sym_err_GT_GT] = ACTIONS(2547), + [anon_sym_out_GT_GT] = ACTIONS(2547), + [anon_sym_e_GT_GT] = ACTIONS(2547), + [anon_sym_o_GT_GT] = ACTIONS(2547), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2547), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2547), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2547), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2547), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1256)] = { - [sym__expression] = STATE(4780), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [sym__expression] = STATE(4752), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2216), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1826), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), [sym_comment] = STATE(1256), - [aux_sym_cmd_identifier_token2] = ACTIONS(2916), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), + [aux_sym_cmd_identifier_token2] = ACTIONS(2533), + [anon_sym_true] = ACTIONS(2535), + [anon_sym_false] = ACTIONS(2535), + [anon_sym_null] = ACTIONS(2537), + [aux_sym_cmd_identifier_token3] = ACTIONS(2539), + [aux_sym_cmd_identifier_token4] = ACTIONS(2539), + [aux_sym_cmd_identifier_token5] = ACTIONS(2539), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1976), + [aux_sym__val_number_decimal_token3] = ACTIONS(2543), + [aux_sym__val_number_decimal_token4] = ACTIONS(2543), + [aux_sym__val_number_token1] = ACTIONS(2539), + [aux_sym__val_number_token2] = ACTIONS(2539), + [aux_sym__val_number_token3] = ACTIONS(2539), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2545), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -138775,64 +138978,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1257)] = { - [sym__expression] = STATE(4755), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [sym__expression] = STATE(4786), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2216), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1826), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), [sym_comment] = STATE(1257), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), + [aux_sym_cmd_identifier_token2] = ACTIONS(2533), + [anon_sym_true] = ACTIONS(2535), + [anon_sym_false] = ACTIONS(2535), + [anon_sym_null] = ACTIONS(2537), + [aux_sym_cmd_identifier_token3] = ACTIONS(2539), + [aux_sym_cmd_identifier_token4] = ACTIONS(2539), + [aux_sym_cmd_identifier_token5] = ACTIONS(2539), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1976), + [aux_sym__val_number_decimal_token3] = ACTIONS(2543), + [aux_sym__val_number_decimal_token4] = ACTIONS(2543), + [aux_sym__val_number_token1] = ACTIONS(2539), + [aux_sym__val_number_token2] = ACTIONS(2539), + [aux_sym__val_number_token3] = ACTIONS(2539), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2545), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -138842,64 +139045,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1258)] = { - [sym__expression] = STATE(4771), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [sym__expression] = STATE(4792), + [sym_expr_unary] = STATE(926), + [sym__expr_unary_minus] = STATE(958), + [sym_expr_binary] = STATE(926), + [sym__expr_binary_expression] = STATE(2216), + [sym_expr_parenthesized] = STATE(674), + [sym_val_range] = STATE(926), + [sym__value] = STATE(926), + [sym_val_nothing] = STATE(922), + [sym_val_bool] = STATE(922), + [sym_val_variable] = STATE(677), + [sym_val_cellpath] = STATE(922), + [sym_val_number] = STATE(922), + [sym__val_number_decimal] = STATE(1826), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(922), + [sym_val_filesize] = STATE(922), + [sym_val_binary] = STATE(922), + [sym_val_string] = STATE(922), + [sym__raw_str] = STATE(422), + [sym__str_double_quotes] = STATE(422), + [sym__str_single_quotes] = STATE(422), + [sym__str_back_ticks] = STATE(422), + [sym_val_interpolated] = STATE(922), + [sym__inter_single_quotes] = STATE(847), + [sym__inter_double_quotes] = STATE(848), + [sym_val_list] = STATE(922), + [sym_val_record] = STATE(922), + [sym_val_table] = STATE(922), + [sym_val_closure] = STATE(922), [sym_comment] = STATE(1258), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), + [aux_sym_cmd_identifier_token2] = ACTIONS(2533), + [anon_sym_true] = ACTIONS(2535), + [anon_sym_false] = ACTIONS(2535), + [anon_sym_null] = ACTIONS(2537), + [aux_sym_cmd_identifier_token3] = ACTIONS(2539), + [aux_sym_cmd_identifier_token4] = ACTIONS(2539), + [aux_sym_cmd_identifier_token5] = ACTIONS(2539), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1976), + [aux_sym__val_number_decimal_token3] = ACTIONS(2543), + [aux_sym__val_number_decimal_token4] = ACTIONS(2543), + [aux_sym__val_number_token1] = ACTIONS(2539), + [aux_sym__val_number_token2] = ACTIONS(2539), + [aux_sym__val_number_token3] = ACTIONS(2539), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), + [sym_val_date] = ACTIONS(2545), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -138909,271 +139112,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1259)] = { - [sym__expression] = STATE(4775), - [sym_expr_unary] = STATE(944), - [sym__expr_unary_minus] = STATE(945), - [sym_expr_binary] = STATE(944), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(700), - [sym_val_range] = STATE(944), - [sym__value] = STATE(944), - [sym_val_nothing] = STATE(943), - [sym_val_bool] = STATE(943), - [sym_val_variable] = STATE(697), - [sym_val_cellpath] = STATE(943), - [sym_val_number] = STATE(943), - [sym__val_number_decimal] = STATE(1830), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(943), - [sym_val_filesize] = STATE(943), - [sym_val_binary] = STATE(943), - [sym_val_string] = STATE(943), - [sym__raw_str] = STATE(415), - [sym__str_double_quotes] = STATE(415), - [sym__str_single_quotes] = STATE(415), - [sym__str_back_ticks] = STATE(415), - [sym_val_interpolated] = STATE(943), - [sym__inter_single_quotes] = STATE(743), - [sym__inter_double_quotes] = STATE(744), - [sym_val_list] = STATE(943), - [sym_val_record] = STATE(943), - [sym_val_table] = STATE(943), - [sym_val_closure] = STATE(943), + [sym__ctrl_match_body] = STATE(5006), + [sym_match_arm] = STATE(4515), + [sym_default_arm] = STATE(4515), + [sym_match_pattern] = STATE(5101), + [sym__match_pattern] = STATE(3907), + [sym__match_pattern_expression] = STATE(4160), + [sym__match_pattern_value] = STATE(4162), + [sym__match_pattern_list] = STATE(4163), + [sym__match_pattern_record] = STATE(4167), + [sym_expr_parenthesized] = STATE(3716), + [sym_val_range] = STATE(4162), + [sym__val_range] = STATE(5013), + [sym_val_nothing] = STATE(4167), + [sym_val_bool] = STATE(3955), + [sym_val_variable] = STATE(3718), + [sym_val_number] = STATE(4167), + [sym__val_number_decimal] = STATE(3468), + [sym__val_number] = STATE(676), + [sym_val_duration] = STATE(4167), + [sym_val_filesize] = STATE(4167), + [sym_val_binary] = STATE(4167), + [sym_val_string] = STATE(4167), + [sym__raw_str] = STATE(2243), + [sym__str_double_quotes] = STATE(2243), + [sym__str_single_quotes] = STATE(2243), + [sym__str_back_ticks] = STATE(2243), + [sym_val_table] = STATE(4167), + [sym_unquoted] = STATE(4170), + [sym__unquoted_anonymous_prefix] = STATE(5013), [sym_comment] = STATE(1259), - [aux_sym_cmd_identifier_token2] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_null] = ACTIONS(2553), - [aux_sym_cmd_identifier_token3] = ACTIONS(2555), - [aux_sym_cmd_identifier_token4] = ACTIONS(2555), - [aux_sym_cmd_identifier_token5] = ACTIONS(2555), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1926), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(2559), - [aux_sym__val_number_decimal_token4] = ACTIONS(2559), - [aux_sym__val_number_token1] = ACTIONS(2555), - [aux_sym__val_number_token2] = ACTIONS(2555), - [aux_sym__val_number_token3] = ACTIONS(2555), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(1260)] = { - [sym__ctrl_match_body] = STATE(5084), - [sym_match_arm] = STATE(4586), - [sym_default_arm] = STATE(4586), - [sym_match_pattern] = STATE(5092), - [sym__match_pattern] = STATE(3762), - [sym__match_pattern_expression] = STATE(4049), - [sym__match_pattern_value] = STATE(4051), - [sym__match_pattern_list] = STATE(4052), - [sym__match_pattern_record] = STATE(4053), - [sym_expr_parenthesized] = STATE(3714), - [sym_val_range] = STATE(4051), - [sym__val_range] = STATE(5173), - [sym_val_nothing] = STATE(4053), - [sym_val_bool] = STATE(4021), - [sym_val_variable] = STATE(3715), - [sym_val_number] = STATE(4053), - [sym__val_number_decimal] = STATE(3487), - [sym__val_number] = STATE(694), - [sym_val_duration] = STATE(4053), - [sym_val_filesize] = STATE(4053), - [sym_val_binary] = STATE(4053), - [sym_val_string] = STATE(4053), - [sym__raw_str] = STATE(2228), - [sym__str_double_quotes] = STATE(2228), - [sym__str_single_quotes] = STATE(2228), - [sym__str_back_ticks] = STATE(2228), - [sym_val_table] = STATE(4053), - [sym_unquoted] = STATE(4070), - [sym__unquoted_anonymous_prefix] = STATE(5173), - [sym_comment] = STATE(1260), - [aux_sym__types_body_repeat1] = STATE(1347), - [aux_sym__ctrl_match_body_repeat1] = STATE(1372), - [anon_sym_true] = ACTIONS(2868), - [anon_sym_false] = ACTIONS(2868), - [anon_sym_null] = ACTIONS(2870), - [aux_sym_cmd_identifier_token3] = ACTIONS(2872), - [aux_sym_cmd_identifier_token4] = ACTIONS(2872), - [aux_sym_cmd_identifier_token5] = ACTIONS(2872), - [sym__newline] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_DOLLAR] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_RBRACE] = ACTIONS(2942), - [anon_sym__] = ACTIONS(2884), - [anon_sym_DOT_DOT] = ACTIONS(2886), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2888), - [anon_sym_DOT_DOT_LT] = ACTIONS(2888), - [aux_sym__val_number_decimal_token1] = ACTIONS(2890), - [aux_sym__val_number_decimal_token2] = ACTIONS(2892), - [aux_sym__val_number_decimal_token3] = ACTIONS(2894), - [aux_sym__val_number_decimal_token4] = ACTIONS(2894), + [aux_sym__types_body_repeat1] = STATE(1346), + [aux_sym__ctrl_match_body_repeat1] = STATE(1369), + [anon_sym_true] = ACTIONS(2900), + [anon_sym_false] = ACTIONS(2900), + [anon_sym_null] = ACTIONS(2902), + [aux_sym_cmd_identifier_token3] = ACTIONS(2904), + [aux_sym_cmd_identifier_token4] = ACTIONS(2904), + [aux_sym_cmd_identifier_token5] = ACTIONS(2904), + [sym__newline] = ACTIONS(2906), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2748), + [anon_sym_DOLLAR] = ACTIONS(2910), + [anon_sym_LBRACE] = ACTIONS(2912), + [anon_sym_RBRACE] = ACTIONS(2940), + [anon_sym__] = ACTIONS(2916), + [anon_sym_DOT_DOT] = ACTIONS(2918), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2920), + [anon_sym_DOT_DOT_LT] = ACTIONS(2920), + [aux_sym__val_number_decimal_token1] = ACTIONS(2922), + [aux_sym__val_number_decimal_token2] = ACTIONS(2924), + [aux_sym__val_number_decimal_token3] = ACTIONS(2926), + [aux_sym__val_number_decimal_token4] = ACTIONS(2926), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2896), + [sym_val_date] = ACTIONS(2928), [anon_sym_DQUOTE] = ACTIONS(1786), [anon_sym_SQUOTE] = ACTIONS(1788), [anon_sym_BQUOTE] = ACTIONS(1790), - [aux_sym_unquoted_token1] = ACTIONS(1914), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1792), }, + [STATE(1260)] = { + [aux_sym__repeat_newline] = STATE(1136), + [sym_comment] = STATE(1260), + [anon_sym_in] = ACTIONS(2832), + [sym__newline] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(2684), + [anon_sym_PIPE] = ACTIONS(2684), + [anon_sym_err_GT_PIPE] = ACTIONS(2684), + [anon_sym_out_GT_PIPE] = ACTIONS(2684), + [anon_sym_e_GT_PIPE] = ACTIONS(2684), + [anon_sym_o_GT_PIPE] = ACTIONS(2684), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), + [anon_sym_RPAREN] = ACTIONS(2684), + [anon_sym_GT2] = ACTIONS(2836), + [anon_sym_DASH2] = ACTIONS(2838), + [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_and2] = ACTIONS(2684), + [anon_sym_xor2] = ACTIONS(2684), + [anon_sym_or2] = ACTIONS(2684), + [anon_sym_not_DASHin2] = ACTIONS(2832), + [anon_sym_has2] = ACTIONS(2832), + [anon_sym_not_DASHhas2] = ACTIONS(2832), + [anon_sym_starts_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), + [anon_sym_ends_DASHwith2] = ACTIONS(2832), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), + [anon_sym_EQ_EQ2] = ACTIONS(2846), + [anon_sym_BANG_EQ2] = ACTIONS(2846), + [anon_sym_LT2] = ACTIONS(2836), + [anon_sym_LT_EQ2] = ACTIONS(2846), + [anon_sym_GT_EQ2] = ACTIONS(2846), + [anon_sym_EQ_TILDE2] = ACTIONS(2848), + [anon_sym_BANG_TILDE2] = ACTIONS(2848), + [anon_sym_like2] = ACTIONS(2848), + [anon_sym_not_DASHlike2] = ACTIONS(2848), + [anon_sym_STAR_STAR2] = ACTIONS(2850), + [anon_sym_PLUS_PLUS2] = ACTIONS(2850), + [anon_sym_SLASH2] = ACTIONS(2840), + [anon_sym_mod2] = ACTIONS(2852), + [anon_sym_SLASH_SLASH2] = ACTIONS(2852), + [anon_sym_PLUS2] = ACTIONS(2854), + [anon_sym_bit_DASHshl2] = ACTIONS(2856), + [anon_sym_bit_DASHshr2] = ACTIONS(2856), + [anon_sym_bit_DASHand2] = ACTIONS(2858), + [anon_sym_bit_DASHxor2] = ACTIONS(2860), + [anon_sym_bit_DASHor2] = ACTIONS(2684), + [anon_sym_err_GT] = ACTIONS(2686), + [anon_sym_out_GT] = ACTIONS(2686), + [anon_sym_e_GT] = ACTIONS(2686), + [anon_sym_o_GT] = ACTIONS(2686), + [anon_sym_err_PLUSout_GT] = ACTIONS(2686), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), + [anon_sym_o_PLUSe_GT] = ACTIONS(2686), + [anon_sym_e_PLUSo_GT] = ACTIONS(2686), + [anon_sym_err_GT_GT] = ACTIONS(2684), + [anon_sym_out_GT_GT] = ACTIONS(2684), + [anon_sym_e_GT_GT] = ACTIONS(2684), + [anon_sym_o_GT_GT] = ACTIONS(2684), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(1261)] = { - [aux_sym__repeat_newline] = STATE(1233), + [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1261), - [anon_sym_in] = ACTIONS(2851), - [sym__newline] = ACTIONS(2905), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_err_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_GT_PIPE] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_GT2] = ACTIONS(2835), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2702), - [anon_sym_xor2] = ACTIONS(2702), - [anon_sym_or2] = ACTIONS(2702), - [anon_sym_not_DASHin2] = ACTIONS(2851), - [anon_sym_has2] = ACTIONS(2851), - [anon_sym_not_DASHhas2] = ACTIONS(2851), - [anon_sym_starts_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2851), - [anon_sym_ends_DASHwith2] = ACTIONS(2851), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2851), - [anon_sym_EQ_EQ2] = ACTIONS(2841), - [anon_sym_BANG_EQ2] = ACTIONS(2841), - [anon_sym_LT2] = ACTIONS(2835), - [anon_sym_LT_EQ2] = ACTIONS(2841), - [anon_sym_GT_EQ2] = ACTIONS(2841), - [anon_sym_EQ_TILDE2] = ACTIONS(2702), - [anon_sym_BANG_TILDE2] = ACTIONS(2702), - [anon_sym_like2] = ACTIONS(2702), - [anon_sym_not_DASHlike2] = ACTIONS(2702), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2702), - [anon_sym_bit_DASHxor2] = ACTIONS(2702), - [anon_sym_bit_DASHor2] = ACTIONS(2702), - [anon_sym_err_GT] = ACTIONS(2704), - [anon_sym_out_GT] = ACTIONS(2704), - [anon_sym_e_GT] = ACTIONS(2704), - [anon_sym_o_GT] = ACTIONS(2704), - [anon_sym_err_PLUSout_GT] = ACTIONS(2704), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2704), - [anon_sym_o_PLUSe_GT] = ACTIONS(2704), - [anon_sym_e_PLUSo_GT] = ACTIONS(2704), - [anon_sym_err_GT_GT] = ACTIONS(2702), - [anon_sym_out_GT_GT] = ACTIONS(2702), - [anon_sym_e_GT_GT] = ACTIONS(2702), - [anon_sym_o_GT_GT] = ACTIONS(2702), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2702), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2702), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2702), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2702), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1262)] = { - [aux_sym__repeat_newline] = STATE(1175), - [sym_comment] = STATE(1262), - [anon_sym_in] = ACTIONS(2744), - [sym__newline] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2744), - [anon_sym_err_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_GT_PIPE] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_GT2] = ACTIONS(2746), - [anon_sym_DASH2] = ACTIONS(2837), - [anon_sym_STAR2] = ACTIONS(2839), - [anon_sym_and2] = ACTIONS(2744), - [anon_sym_xor2] = ACTIONS(2744), - [anon_sym_or2] = ACTIONS(2744), - [anon_sym_not_DASHin2] = ACTIONS(2744), - [anon_sym_has2] = ACTIONS(2744), - [anon_sym_not_DASHhas2] = ACTIONS(2744), - [anon_sym_starts_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2744), - [anon_sym_ends_DASHwith2] = ACTIONS(2744), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2744), - [anon_sym_EQ_EQ2] = ACTIONS(2744), - [anon_sym_BANG_EQ2] = ACTIONS(2744), - [anon_sym_LT2] = ACTIONS(2746), - [anon_sym_LT_EQ2] = ACTIONS(2744), - [anon_sym_GT_EQ2] = ACTIONS(2744), - [anon_sym_EQ_TILDE2] = ACTIONS(2744), - [anon_sym_BANG_TILDE2] = ACTIONS(2744), - [anon_sym_like2] = ACTIONS(2744), - [anon_sym_not_DASHlike2] = ACTIONS(2744), - [anon_sym_STAR_STAR2] = ACTIONS(2843), - [anon_sym_PLUS_PLUS2] = ACTIONS(2843), - [anon_sym_SLASH2] = ACTIONS(2839), - [anon_sym_mod2] = ACTIONS(2845), - [anon_sym_SLASH_SLASH2] = ACTIONS(2845), - [anon_sym_PLUS2] = ACTIONS(2847), - [anon_sym_bit_DASHshl2] = ACTIONS(2849), - [anon_sym_bit_DASHshr2] = ACTIONS(2849), - [anon_sym_bit_DASHand2] = ACTIONS(2744), - [anon_sym_bit_DASHxor2] = ACTIONS(2744), - [anon_sym_bit_DASHor2] = ACTIONS(2744), - [anon_sym_err_GT] = ACTIONS(2746), - [anon_sym_out_GT] = ACTIONS(2746), - [anon_sym_e_GT] = ACTIONS(2746), - [anon_sym_o_GT] = ACTIONS(2746), - [anon_sym_err_PLUSout_GT] = ACTIONS(2746), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2746), - [anon_sym_o_PLUSe_GT] = ACTIONS(2746), - [anon_sym_e_PLUSo_GT] = ACTIONS(2746), - [anon_sym_err_GT_GT] = ACTIONS(2744), - [anon_sym_out_GT_GT] = ACTIONS(2744), - [anon_sym_e_GT_GT] = ACTIONS(2744), - [anon_sym_o_GT_GT] = ACTIONS(2744), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2744), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2744), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2744), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2744), + [anon_sym_in] = ACTIONS(2804), + [sym__newline] = ACTIONS(2772), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_err_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_GT_PIPE] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_GT2] = ACTIONS(2806), + [anon_sym_DASH2] = ACTIONS(2808), + [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_and2] = ACTIONS(2772), + [anon_sym_xor2] = ACTIONS(2772), + [anon_sym_or2] = ACTIONS(2772), + [anon_sym_not_DASHin2] = ACTIONS(2804), + [anon_sym_has2] = ACTIONS(2804), + [anon_sym_not_DASHhas2] = ACTIONS(2804), + [anon_sym_starts_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), + [anon_sym_ends_DASHwith2] = ACTIONS(2804), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), + [anon_sym_EQ_EQ2] = ACTIONS(2814), + [anon_sym_BANG_EQ2] = ACTIONS(2814), + [anon_sym_LT2] = ACTIONS(2806), + [anon_sym_LT_EQ2] = ACTIONS(2814), + [anon_sym_GT_EQ2] = ACTIONS(2814), + [anon_sym_EQ_TILDE2] = ACTIONS(2772), + [anon_sym_BANG_TILDE2] = ACTIONS(2772), + [anon_sym_like2] = ACTIONS(2772), + [anon_sym_not_DASHlike2] = ACTIONS(2772), + [anon_sym_STAR_STAR2] = ACTIONS(2818), + [anon_sym_PLUS_PLUS2] = ACTIONS(2818), + [anon_sym_SLASH2] = ACTIONS(2810), + [anon_sym_mod2] = ACTIONS(2820), + [anon_sym_SLASH_SLASH2] = ACTIONS(2820), + [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_bit_DASHshl2] = ACTIONS(2824), + [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_bit_DASHand2] = ACTIONS(2772), + [anon_sym_bit_DASHxor2] = ACTIONS(2772), + [anon_sym_bit_DASHor2] = ACTIONS(2772), + [anon_sym_err_GT] = ACTIONS(2774), + [anon_sym_out_GT] = ACTIONS(2774), + [anon_sym_e_GT] = ACTIONS(2774), + [anon_sym_o_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT] = ACTIONS(2774), + [anon_sym_err_GT_GT] = ACTIONS(2772), + [anon_sym_out_GT_GT] = ACTIONS(2772), + [anon_sym_e_GT_GT] = ACTIONS(2772), + [anon_sym_o_GT_GT] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), [anon_sym_POUND] = ACTIONS(3), }, }; @@ -139182,9 +139318,9 @@ static const uint16_t ts_small_parse_table[] = { [0] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1263), 1, + STATE(1262), 1, sym_comment, - ACTIONS(2274), 13, + ACTIONS(2064), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139198,7 +139334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2272), 49, + ACTIONS(2062), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139251,7 +139387,7 @@ static const uint16_t ts_small_parse_table[] = { [73] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1264), 1, + STATE(1263), 1, sym_comment, ACTIONS(2154), 13, anon_sym_GT2, @@ -139317,12 +139453,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [146] = 4, + [146] = 37, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(157), 1, + anon_sym_LBRACK, + ACTIONS(159), 1, + anon_sym_LPAREN, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(195), 1, + sym_val_date, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(287), 1, + anon_sym_DASH2, + ACTIONS(1020), 1, + anon_sym_DOLLAR, + ACTIONS(2435), 1, + aux_sym_expr_unary_token1, + ACTIONS(2439), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2441), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2656), 1, + anon_sym_null, + ACTIONS(2942), 1, + anon_sym_DOT_DOT, + STATE(676), 1, + sym__val_number, + STATE(847), 1, + sym__inter_single_quotes, + STATE(848), 1, + sym__inter_double_quotes, + STATE(958), 1, + sym__expr_unary_minus, + STATE(1264), 1, + sym_comment, + STATE(1874), 1, + sym__val_number_decimal, + STATE(1955), 1, + sym_expr_parenthesized, + STATE(1959), 1, + sym_val_variable, + STATE(2218), 1, + sym__expr_binary_expression, + STATE(5120), 1, + sym__expression, + ACTIONS(193), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2427), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2443), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(2944), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(422), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(926), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(189), 6, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(922), 13, + sym_val_nothing, + sym_val_bool, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [285] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1265), 1, sym_comment, - ACTIONS(2220), 13, + ACTIONS(1954), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139336,7 +139574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2218), 49, + ACTIONS(1952), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139386,12 +139624,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [219] = 4, + [358] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1266), 1, sym_comment, - ACTIONS(1966), 13, + ACTIONS(2485), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139405,7 +139643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1964), 49, + ACTIONS(2483), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139455,47 +139693,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [292] = 17, + [431] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - ACTIONS(2964), 1, - anon_sym_bit_DASHand2, - ACTIONS(2966), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2968), 1, - anon_sym_bit_DASHor2, STATE(1267), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(2580), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2954), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2535), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -139504,17 +139712,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2944), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 23, + ACTIONS(2578), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -139526,9 +139726,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -139537,18 +139762,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [391] = 6, + [504] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1268), 1, sym_comment, - ACTIONS(2138), 5, + ACTIONS(2339), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2140), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -139557,8 +139781,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2136), 20, + ACTIONS(2337), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -139570,16 +139795,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(2134), 29, - anon_sym_in, anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, @@ -139608,12 +139823,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [468] = 4, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [577] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1269), 1, sym_comment, - ACTIONS(2102), 13, + ACTIONS(1850), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139627,7 +139850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2100), 49, + ACTIONS(1848), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139677,12 +139900,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [541] = 4, + [650] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1270), 1, sym_comment, - ACTIONS(2517), 13, + ACTIONS(2620), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139696,7 +139919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2515), 49, + ACTIONS(2618), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139746,12 +139969,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [614] = 4, + [723] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1271), 1, sym_comment, - ACTIONS(2078), 13, + ACTIONS(2489), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139765,7 +139988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2076), 49, + ACTIONS(2487), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139815,12 +140038,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [687] = 4, + [796] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1272), 1, sym_comment, - ACTIONS(2593), 13, + ACTIONS(2628), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139834,7 +140057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2591), 49, + ACTIONS(2626), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139884,145 +140107,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, - [760] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1273), 1, - sym_comment, - ACTIONS(2204), 13, - anon_sym_GT2, - 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(2202), 49, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [833] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1274), 1, - sym_comment, - ACTIONS(2521), 13, - anon_sym_GT2, - 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(2519), 49, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [906] = 37, + [869] = 37, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(157), 1, @@ -140031,6 +140116,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(165), 1, anon_sym_LBRACE, + ACTIONS(169), 1, + anon_sym_DOT_DOT, + ACTIONS(173), 1, + aux_sym_expr_unary_token1, ACTIONS(191), 1, anon_sym_0b, ACTIONS(195), 1, @@ -140049,56 +140138,52 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(287), 1, anon_sym_DASH2, - ACTIONS(1022), 1, + ACTIONS(1020), 1, anon_sym_DOLLAR, - ACTIONS(2406), 1, - aux_sym_expr_unary_token1, - ACTIONS(2410), 1, + ACTIONS(1976), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2412), 1, + ACTIONS(1978), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2668), 1, + ACTIONS(2656), 1, anon_sym_null, - ACTIONS(2970), 1, - anon_sym_DOT_DOT, - STATE(694), 1, + STATE(674), 1, + sym_expr_parenthesized, + STATE(676), 1, sym__val_number, - STATE(743), 1, + STATE(677), 1, + sym_val_variable, + STATE(847), 1, sym__inter_single_quotes, - STATE(744), 1, + STATE(848), 1, sym__inter_double_quotes, - STATE(945), 1, + STATE(958), 1, sym__expr_unary_minus, - STATE(1275), 1, + STATE(1273), 1, sym_comment, - STATE(1875), 1, + STATE(1826), 1, sym__val_number_decimal, - STATE(1955), 1, - sym_expr_parenthesized, - STATE(1959), 1, - sym_val_variable, STATE(2216), 1, sym__expr_binary_expression, - STATE(5053), 1, + STATE(4789), 1, sym__expression, + ACTIONS(179), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(2398), 2, + ACTIONS(1914), 2, anon_sym_true, anon_sym_false, - ACTIONS(2414), 2, + ACTIONS(1980), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(2972), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(944), 4, + STATE(926), 4, sym_expr_unary, sym_expr_binary, sym_val_range, @@ -140110,7 +140195,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(943), 13, + STATE(922), 13, sym_val_nothing, sym_val_bool, sym_val_cellpath, @@ -140124,27 +140209,17 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [1045] = 9, + [1008] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - STATE(1276), 1, + STATE(1274), 1, sym_comment, - ACTIONS(2950), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2535), 10, + ACTIONS(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, @@ -140153,7 +140228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2533), 44, + ACTIONS(2479), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140167,6 +140242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -140185,6 +140261,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -140198,12 +140278,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1128] = 4, + [1081] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1277), 1, + STATE(1275), 1, sym_comment, - ACTIONS(2507), 13, + ACTIONS(1864), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140217,7 +140297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2505), 49, + ACTIONS(1862), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140267,49 +140347,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, - [1201] = 18, + [1154] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - ACTIONS(2964), 1, - anon_sym_bit_DASHand2, - ACTIONS(2966), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2968), 1, - anon_sym_bit_DASHor2, - ACTIONS(2974), 1, - anon_sym_and2, - STATE(1278), 1, + STATE(1276), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(2078), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2954), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2535), 8, + anon_sym_PLUS2, + ACTIONS(2080), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -140318,16 +140367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2944), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 22, + ACTIONS(2076), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -140340,8 +140380,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_xor2, - anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -140350,12 +140388,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, - [1302] = 4, + ACTIONS(2074), 29, + anon_sym_in, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [1231] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1279), 1, + STATE(1277), 1, sym_comment, - ACTIONS(2224), 13, + ACTIONS(2331), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140369,7 +140437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2222), 49, + ACTIONS(2329), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140419,12 +140487,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1375] = 4, + [1304] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1280), 1, + STATE(1278), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2313), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140438,7 +140506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2311), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140488,12 +140556,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1448] = 4, + [1377] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1281), 1, + STATE(1279), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2634), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140507,7 +140575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2632), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140557,12 +140625,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1521] = 4, + [1450] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1282), 1, + STATE(1280), 1, sym_comment, - ACTIONS(2535), 13, + ACTIONS(2493), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140576,7 +140644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2533), 49, + ACTIONS(2491), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140626,90 +140694,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1594] = 13, + [1523] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - STATE(1283), 1, - sym_comment, - ACTIONS(2946), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2535), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2944), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 30, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [1685] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1284), 1, + STATE(1281), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2497), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140723,7 +140713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2495), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140773,12 +140763,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1758] = 4, + [1596] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1285), 1, + STATE(1282), 1, sym_comment, - ACTIONS(2605), 13, + ACTIONS(2078), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140792,7 +140782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2603), 49, + ACTIONS(2074), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140842,16 +140832,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1831] = 15, + [1669] = 12, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2948), 1, anon_sym_DASH2, - ACTIONS(2960), 1, + ACTIONS(2958), 1, anon_sym_PLUS2, - ACTIONS(2964), 1, - anon_sym_bit_DASHand2, - STATE(1286), 1, + STATE(1283), 1, sym_comment, ACTIONS(2946), 2, anon_sym_GT2, @@ -140859,13 +140847,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2950), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2956), 2, + ACTIONS(2954), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, + ACTIONS(2956), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, + ACTIONS(2960), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, ACTIONS(2952), 4, @@ -140873,12 +140861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2954), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2535), 8, + ACTIONS(2549), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -140887,17 +140870,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2944), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 25, + ACTIONS(2547), 38, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -140912,6 +140887,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -140922,119 +140909,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1926] = 39, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2978), 1, - anon_sym_null, - ACTIONS(2982), 1, - sym__newline, - ACTIONS(2984), 1, - anon_sym_LBRACK, - ACTIONS(2986), 1, - anon_sym_LPAREN, - ACTIONS(2988), 1, - anon_sym_DOLLAR, - ACTIONS(2990), 1, - anon_sym_LBRACE, - ACTIONS(2992), 1, - anon_sym_DOT_DOT, - ACTIONS(2996), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2998), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3004), 1, - anon_sym_0b, - ACTIONS(3008), 1, - sym_val_date, - ACTIONS(3010), 1, - anon_sym_DQUOTE, - ACTIONS(3012), 1, - anon_sym_SQUOTE, - ACTIONS(3014), 1, - anon_sym_BQUOTE, - ACTIONS(3016), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3018), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3020), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3022), 1, - sym_raw_string_begin, - STATE(1287), 1, - sym_comment, - STATE(1329), 1, - aux_sym__repeat_newline, - STATE(2444), 1, - sym__val_number_decimal, - STATE(2871), 1, - sym_expr_parenthesized, - STATE(2884), 1, - sym_val_variable, - STATE(2924), 1, - sym__inter_single_quotes, - STATE(2925), 1, - sym__inter_double_quotes, - STATE(2980), 1, - sym_val_bool, - STATE(3024), 1, - sym__unquoted_in_record, - STATE(3062), 1, - sym__val_number, - ACTIONS(2976), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2994), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3000), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3006), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4567), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2980), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3002), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3260), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(2548), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3061), 12, - sym_val_nothing, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [2069] = 5, + [1758] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1288), 1, + STATE(1284), 1, sym_comment, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2535), 13, + ACTIONS(793), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141048,7 +140928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2533), 47, + ACTIONS(890), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141081,6 +140961,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -141096,17 +140978,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, - [2144] = 4, + [1831] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1289), 1, + ACTIONS(2948), 1, + anon_sym_DASH2, + ACTIONS(2958), 1, + anon_sym_PLUS2, + STATE(1285), 1, sym_comment, - ACTIONS(868), 13, - anon_sym_GT2, + ACTIONS(2950), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2954), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2956), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2960), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2549), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -141115,7 +141010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(968), 49, + ACTIONS(2547), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141129,7 +141024,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -141148,12 +141042,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -141165,12 +141053,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2217] = 4, + [1916] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1290), 1, + STATE(1286), 1, sym_comment, - ACTIONS(2577), 13, + ACTIONS(2064), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141184,7 +141072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2575), 49, + ACTIONS(2062), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141234,120 +141122,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, - [2290] = 39, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2978), 1, - anon_sym_null, - ACTIONS(2982), 1, - sym__newline, - ACTIONS(2984), 1, - anon_sym_LBRACK, - ACTIONS(2986), 1, - anon_sym_LPAREN, - ACTIONS(2988), 1, - anon_sym_DOLLAR, - ACTIONS(2990), 1, - anon_sym_LBRACE, - ACTIONS(2992), 1, - anon_sym_DOT_DOT, - ACTIONS(2996), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2998), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3004), 1, - anon_sym_0b, - ACTIONS(3008), 1, - sym_val_date, - ACTIONS(3010), 1, - anon_sym_DQUOTE, - ACTIONS(3012), 1, - anon_sym_SQUOTE, - ACTIONS(3014), 1, - anon_sym_BQUOTE, - ACTIONS(3016), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3018), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3020), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3022), 1, - sym_raw_string_begin, - STATE(1291), 1, - sym_comment, - STATE(2226), 1, - aux_sym__repeat_newline, - STATE(2444), 1, - sym__val_number_decimal, - STATE(2821), 1, - sym_expr_parenthesized, - STATE(2884), 1, - sym_val_variable, - STATE(2924), 1, - sym__inter_single_quotes, - STATE(2925), 1, - sym__inter_double_quotes, - STATE(2961), 1, - sym__unquoted_in_record, - STATE(2980), 1, - sym_val_bool, - STATE(3062), 1, - sym__val_number, - ACTIONS(2976), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2994), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3000), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3006), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4567), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2980), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3002), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3234), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(2548), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3061), 12, - sym_val_nothing, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [2433] = 4, + [1989] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1292), 1, + STATE(1287), 1, sym_comment, - ACTIONS(1868), 13, - anon_sym_GT2, + ACTIONS(2950), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(2954), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2956), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2549), 11, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -141357,7 +141148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1866), 49, + ACTIONS(2547), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141390,10 +141181,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -141407,12 +141194,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2506] = 4, + [2068] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1293), 1, + STATE(1288), 1, sym_comment, - ACTIONS(2565), 13, + ACTIONS(2560), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141426,7 +141213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2563), 49, + ACTIONS(2558), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141476,12 +141263,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2579] = 4, + [2141] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1294), 1, + STATE(1289), 1, sym_comment, - ACTIONS(2601), 13, + ACTIONS(2064), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141495,7 +141282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2599), 49, + ACTIONS(2062), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141545,12 +141332,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, - [2652] = 4, + [2214] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1295), 1, + STATE(1290), 1, sym_comment, - ACTIONS(2573), 13, + ACTIONS(2954), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2549), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141564,7 +141354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2571), 49, + ACTIONS(2547), 47, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141597,8 +141387,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -141614,12 +141402,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2725] = 4, + [2289] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1296), 1, + STATE(1291), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141633,7 +141421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2086), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141683,12 +141471,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2798] = 4, + [2362] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1297), 1, + STATE(1292), 1, sym_comment, - ACTIONS(2609), 13, + ACTIONS(2064), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141702,7 +141490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2607), 49, + ACTIONS(2062), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141752,17 +141540,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, - [2871] = 4, + [2435] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(1298), 1, + ACTIONS(2948), 1, + anon_sym_DASH2, + ACTIONS(2958), 1, + anon_sym_PLUS2, + ACTIONS(2966), 1, + anon_sym_bit_DASHand2, + ACTIONS(2968), 1, + anon_sym_bit_DASHxor2, + ACTIONS(2970), 1, + anon_sym_bit_DASHor2, + STATE(1293), 1, sym_comment, - ACTIONS(2208), 13, + ACTIONS(2946), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(2950), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2954), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2956), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2960), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2952), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2964), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2549), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -141771,9 +141589,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2206), 49, - ts_builtin_sym_end, + ACTIONS(2962), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2547), 23, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -141785,34 +141611,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -141821,12 +141622,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2944] = 4, + [2534] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1299), 1, + STATE(1294), 1, sym_comment, - ACTIONS(2513), 13, + ACTIONS(1615), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141840,7 +141641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2511), 49, + ACTIONS(1689), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141890,12 +141691,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3017] = 4, + [2607] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1300), 1, + STATE(1295), 1, sym_comment, - ACTIONS(2212), 13, + ACTIONS(2064), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141909,7 +141710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2210), 49, + ACTIONS(2062), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141959,17 +141760,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, - [3090] = 4, + [2680] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(1301), 1, + ACTIONS(2948), 1, + anon_sym_DASH2, + ACTIONS(2958), 1, + anon_sym_PLUS2, + ACTIONS(2966), 1, + anon_sym_bit_DASHand2, + ACTIONS(2968), 1, + anon_sym_bit_DASHxor2, + ACTIONS(2970), 1, + anon_sym_bit_DASHor2, + ACTIONS(2972), 1, + anon_sym_and2, + STATE(1296), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2946), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(2950), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2954), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2956), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2960), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2952), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2964), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2549), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -141978,9 +141811,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, - ts_builtin_sym_end, + ACTIONS(2962), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2547), 22, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -141992,34 +141833,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -142028,12 +141843,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3163] = 4, + [2781] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1302), 1, + STATE(1297), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2481), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142047,7 +141862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2479), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142097,12 +141912,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3236] = 4, + [2854] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1303), 1, + STATE(1298), 1, sym_comment, - ACTIONS(1619), 13, + ACTIONS(2064), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142116,7 +141931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1706), 49, + ACTIONS(2062), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142166,17 +141981,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3309] = 4, + [2927] = 19, ACTIONS(3), 1, anon_sym_POUND, - STATE(1304), 1, + ACTIONS(2948), 1, + anon_sym_DASH2, + ACTIONS(2958), 1, + anon_sym_PLUS2, + ACTIONS(2966), 1, + anon_sym_bit_DASHand2, + ACTIONS(2968), 1, + anon_sym_bit_DASHxor2, + ACTIONS(2970), 1, + anon_sym_bit_DASHor2, + ACTIONS(2972), 1, + anon_sym_and2, + ACTIONS(2974), 1, + anon_sym_xor2, + STATE(1299), 1, sym_comment, - ACTIONS(2114), 13, + ACTIONS(2946), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(2950), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2954), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2956), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2960), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2952), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2964), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2549), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -142185,9 +142034,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2112), 49, - ts_builtin_sym_end, + ACTIONS(2962), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2547), 21, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -142199,34 +142056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -142235,12 +142065,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3382] = 4, + [3030] = 39, ACTIONS(3), 1, anon_sym_POUND, - STATE(1305), 1, + ACTIONS(2978), 1, + anon_sym_null, + ACTIONS(2982), 1, + sym__newline, + ACTIONS(2984), 1, + anon_sym_LBRACK, + ACTIONS(2986), 1, + anon_sym_LPAREN, + ACTIONS(2988), 1, + anon_sym_DOLLAR, + ACTIONS(2990), 1, + anon_sym_LBRACE, + ACTIONS(2992), 1, + anon_sym_DOT_DOT, + ACTIONS(2996), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2998), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3004), 1, + anon_sym_0b, + ACTIONS(3008), 1, + sym_val_date, + ACTIONS(3010), 1, + anon_sym_DQUOTE, + ACTIONS(3012), 1, + anon_sym_SQUOTE, + ACTIONS(3014), 1, + anon_sym_BQUOTE, + ACTIONS(3016), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3018), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3020), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(3022), 1, + sym_raw_string_begin, + STATE(1300), 1, sym_comment, - ACTIONS(2621), 13, + STATE(2230), 1, + aux_sym__repeat_newline, + STATE(2479), 1, + sym__val_number_decimal, + STATE(2872), 1, + sym_expr_parenthesized, + STATE(2959), 1, + sym_val_variable, + STATE(2980), 1, + sym__unquoted_in_record, + STATE(2982), 1, + sym_val_bool, + STATE(2990), 1, + sym__inter_single_quotes, + STATE(2997), 1, + sym__inter_double_quotes, + STATE(3072), 1, + sym__val_number, + ACTIONS(2976), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2994), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3000), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3006), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4621), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(2980), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(3002), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3266), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(2624), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2976), 12, + sym_val_nothing, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [3173] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1301), 1, + sym_comment, + ACTIONS(2624), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142254,7 +142188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2619), 49, + ACTIONS(2622), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142304,12 +142238,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3455] = 4, + [3246] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1306), 1, + STATE(1302), 1, sym_comment, - ACTIONS(2216), 13, + ACTIONS(2064), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142323,7 +142257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2214), 49, + ACTIONS(2062), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142373,12 +142307,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, - [3528] = 4, + [3319] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(1307), 1, + ACTIONS(2948), 1, + anon_sym_DASH2, + ACTIONS(2958), 1, + anon_sym_PLUS2, + STATE(1303), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2946), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2950), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(2954), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2956), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2960), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2952), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2549), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2962), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2547), 30, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [3410] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1304), 1, + sym_comment, + ACTIONS(2100), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142392,7 +142404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2098), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142442,51 +142454,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3601] = 19, + [3483] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - ACTIONS(2964), 1, - anon_sym_bit_DASHand2, - ACTIONS(2966), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2968), 1, - anon_sym_bit_DASHor2, - ACTIONS(2974), 1, - anon_sym_and2, - ACTIONS(3024), 1, - anon_sym_xor2, - STATE(1308), 1, + STATE(1305), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(2064), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2954), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2535), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -142495,17 +142473,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2944), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 21, + ACTIONS(2062), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -142517,7 +142487,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -142526,12 +142523,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3704] = 4, + [3556] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1309), 1, + STATE(1306), 1, sym_comment, - ACTIONS(2260), 13, + ACTIONS(2549), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142545,7 +142542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2258), 49, + ACTIONS(2547), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142595,12 +142592,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3777] = 4, + [3629] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1310), 1, + STATE(1307), 1, sym_comment, - ACTIONS(2264), 13, + ACTIONS(1944), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142614,7 +142611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2262), 49, + ACTIONS(1942), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142664,12 +142661,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3850] = 4, + [3702] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1311), 1, + STATE(1308), 1, sym_comment, - ACTIONS(2122), 13, + ACTIONS(2064), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142683,7 +142680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2120), 49, + ACTIONS(2062), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142733,17 +142730,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, - [3923] = 4, + [3775] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1312), 1, + ACTIONS(2948), 1, + anon_sym_DASH2, + ACTIONS(2958), 1, + anon_sym_PLUS2, + STATE(1309), 1, sym_comment, - ACTIONS(2090), 13, - anon_sym_GT2, + ACTIONS(2950), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2954), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2956), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2549), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -142752,7 +142759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2547), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142766,7 +142773,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -142785,10 +142791,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -142802,12 +142804,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3996] = 4, + [3858] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1313), 1, + STATE(1310), 1, sym_comment, - ACTIONS(2525), 13, + ACTIONS(2064), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142821,7 +142823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2523), 49, + ACTIONS(2062), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142871,18 +142873,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4069] = 16, + [3931] = 14, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2948), 1, anon_sym_DASH2, - ACTIONS(2960), 1, + ACTIONS(2958), 1, anon_sym_PLUS2, - ACTIONS(2964), 1, - anon_sym_bit_DASHand2, - ACTIONS(2966), 1, - anon_sym_bit_DASHxor2, - STATE(1314), 1, + STATE(1311), 1, sym_comment, ACTIONS(2946), 2, anon_sym_GT2, @@ -142890,13 +142888,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2950), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2956), 2, + ACTIONS(2954), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, + ACTIONS(2956), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, + ACTIONS(2960), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, ACTIONS(2952), 4, @@ -142904,12 +142902,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2954), 4, + ACTIONS(2964), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2535), 8, + ACTIONS(2549), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -142918,7 +142916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2944), 8, + ACTIONS(2962), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -142927,8 +142925,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 24, + ACTIONS(2547), 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, + [4024] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1312), 1, + sym_comment, + ACTIONS(2064), 13, + anon_sym_GT2, + 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(2062), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -142940,9 +142985,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_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -142952,14 +143021,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, - [4166] = 14, + [4097] = 15, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2948), 1, anon_sym_DASH2, - ACTIONS(2960), 1, + ACTIONS(2958), 1, anon_sym_PLUS2, - STATE(1315), 1, + ACTIONS(2966), 1, + anon_sym_bit_DASHand2, + STATE(1313), 1, sym_comment, ACTIONS(2946), 2, anon_sym_GT2, @@ -142967,13 +143038,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2950), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2956), 2, + ACTIONS(2954), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, + ACTIONS(2956), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, + ACTIONS(2960), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, ACTIONS(2952), 4, @@ -142981,12 +143052,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2954), 4, + ACTIONS(2964), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2535), 8, + ACTIONS(2549), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -142995,7 +143066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2944), 8, + ACTIONS(2962), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -143004,7 +143075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 26, + ACTIONS(2547), 25, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -143020,7 +143091,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, @@ -143031,12 +143101,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4259] = 4, + [4192] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1316), 1, + STATE(1314), 1, sym_comment, - ACTIONS(2196), 13, + ACTIONS(2064), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143050,7 +143120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2194), 49, + ACTIONS(2062), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143100,12 +143170,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4332] = 4, + [4265] = 16, ACTIONS(3), 1, anon_sym_POUND, - STATE(1317), 1, + ACTIONS(2948), 1, + anon_sym_DASH2, + ACTIONS(2958), 1, + anon_sym_PLUS2, + ACTIONS(2966), 1, + anon_sym_bit_DASHand2, + ACTIONS(2968), 1, + anon_sym_bit_DASHxor2, + STATE(1315), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2946), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2950), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(2954), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2956), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2960), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2952), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2964), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2549), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2962), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2547), 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, + [4362] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1316), 1, + sym_comment, + ACTIONS(2600), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143119,7 +143270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2598), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143169,12 +143320,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4405] = 4, + [4435] = 39, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2978), 1, + anon_sym_null, + ACTIONS(2982), 1, + sym__newline, + ACTIONS(2984), 1, + anon_sym_LBRACK, + ACTIONS(2986), 1, + anon_sym_LPAREN, + ACTIONS(2988), 1, + anon_sym_DOLLAR, + ACTIONS(2990), 1, + anon_sym_LBRACE, + ACTIONS(2992), 1, + anon_sym_DOT_DOT, + ACTIONS(2996), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2998), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3004), 1, + anon_sym_0b, + ACTIONS(3008), 1, + sym_val_date, + ACTIONS(3010), 1, + anon_sym_DQUOTE, + ACTIONS(3012), 1, + anon_sym_SQUOTE, + ACTIONS(3014), 1, + anon_sym_BQUOTE, + ACTIONS(3016), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3018), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3020), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(3022), 1, + sym_raw_string_begin, + STATE(1317), 1, + sym_comment, + STATE(1332), 1, + aux_sym__repeat_newline, + STATE(2479), 1, + sym__val_number_decimal, + STATE(2934), 1, + sym_expr_parenthesized, + STATE(2959), 1, + sym_val_variable, + STATE(2972), 1, + sym__unquoted_in_record, + STATE(2982), 1, + sym_val_bool, + STATE(2990), 1, + sym__inter_single_quotes, + STATE(2997), 1, + sym__inter_double_quotes, + STATE(3072), 1, + sym__val_number, + ACTIONS(2976), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2994), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3000), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3006), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4621), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(2980), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(3002), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3282), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(2624), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2976), 12, + sym_val_nothing, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [4578] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1318), 1, sym_comment, - ACTIONS(1976), 13, + ACTIONS(2604), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143188,7 +143443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1974), 49, + ACTIONS(2602), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143238,12 +143493,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4478] = 4, + [4651] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1319), 1, sym_comment, - ACTIONS(2270), 13, + ACTIONS(2608), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143257,7 +143512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2268), 49, + ACTIONS(2606), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143307,12 +143562,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4551] = 4, + [4724] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1320), 1, sym_comment, - ACTIONS(1860), 13, + ACTIONS(2612), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143326,7 +143581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1858), 49, + ACTIONS(2610), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143376,12 +143631,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4624] = 4, + [4797] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1321), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2616), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143395,7 +143650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2614), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143445,12 +143700,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4697] = 4, + [4870] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1322), 1, sym_comment, - ACTIONS(2138), 13, + ACTIONS(2064), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143464,7 +143719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2134), 49, + ACTIONS(2062), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143514,36 +143769,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4770] = 12, + [4943] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, STATE(1323), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(2335), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(2956), 2, + 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(2333), 49, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2535), 8, + anon_sym_bit_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, + [5016] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1324), 1, + sym_comment, + ACTIONS(2343), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -143552,7 +143857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2533), 38, + ACTIONS(2341), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143566,6 +143871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -143576,10 +143882,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -143591,12 +143907,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4859] = 4, + [5089] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1324), 1, + STATE(1325), 1, sym_comment, - ACTIONS(2200), 13, + ACTIONS(2347), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143610,7 +143926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2198), 49, + ACTIONS(2345), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143660,12 +143976,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4932] = 4, + [5162] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1325), 1, + STATE(1326), 1, sym_comment, - ACTIONS(2256), 13, + ACTIONS(2351), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143679,7 +143995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2254), 49, + ACTIONS(2349), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143729,12 +144045,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5005] = 4, + [5235] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1326), 1, + STATE(1327), 1, sym_comment, - ACTIONS(2256), 13, + ACTIONS(2511), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143748,7 +144064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2254), 49, + ACTIONS(2509), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143798,12 +144114,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5078] = 4, + [5308] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1327), 1, + STATE(1328), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2138), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143817,7 +144133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2136), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143867,109 +144183,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5151] = 37, + [5381] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(157), 1, - anon_sym_LBRACK, - ACTIONS(159), 1, - anon_sym_LPAREN, - ACTIONS(165), 1, - anon_sym_LBRACE, - ACTIONS(169), 1, - anon_sym_DOT_DOT, - ACTIONS(173), 1, - aux_sym_expr_unary_token1, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(195), 1, - sym_val_date, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(287), 1, + STATE(1329), 1, + sym_comment, + ACTIONS(2355), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2353), 49, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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(1022), 1, - anon_sym_DOLLAR, - ACTIONS(1926), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1928), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2668), 1, - anon_sym_null, - STATE(694), 1, - sym__val_number, - STATE(697), 1, - sym_val_variable, - STATE(700), 1, - sym_expr_parenthesized, - STATE(743), 1, - sym__inter_single_quotes, - STATE(744), 1, - sym__inter_double_quotes, - STATE(945), 1, - sym__expr_unary_minus, - STATE(1328), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [5454] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1330), 1, sym_comment, - STATE(1830), 1, - sym__val_number_decimal, - STATE(2215), 1, - sym__expr_binary_expression, - STATE(4698), 1, - sym__expression, - ACTIONS(179), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1930), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(944), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(189), 6, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(943), 13, - sym_val_nothing, - sym_val_bool, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [5290] = 39, + ACTIONS(2146), 13, + anon_sym_GT2, + 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(2144), 49, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [5527] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1331), 1, + sym_comment, + ACTIONS(2576), 13, + anon_sym_GT2, + 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(2574), 49, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [5600] = 39, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2978), 1, @@ -144008,26 +144429,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__unquoted_in_record_token1, ACTIONS(3022), 1, sym_raw_string_begin, - STATE(1329), 1, + STATE(1332), 1, sym_comment, - STATE(2226), 1, + STATE(2230), 1, aux_sym__repeat_newline, - STATE(2444), 1, + STATE(2479), 1, sym__val_number_decimal, - STATE(2866), 1, + STATE(2927), 1, sym_expr_parenthesized, - STATE(2884), 1, + STATE(2959), 1, sym_val_variable, - STATE(2924), 1, + STATE(2982), 1, + sym_val_bool, + STATE(2990), 1, sym__inter_single_quotes, - STATE(2925), 1, + STATE(2997), 1, sym__inter_double_quotes, - STATE(2969), 1, - sym__unquoted_in_record, - STATE(2980), 1, - sym_val_bool, - STATE(3062), 1, + STATE(3072), 1, sym__val_number, + STATE(3123), 1, + sym__unquoted_in_record, ACTIONS(2976), 2, anon_sym_true, anon_sym_false, @@ -144040,7 +144461,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3006), 2, anon_sym_0o, anon_sym_0x, - STATE(4567), 2, + STATE(4621), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(2980), 3, @@ -144051,16 +144472,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3231), 3, + STATE(3339), 3, sym_val_range, sym__value, sym__unquoted_in_record_with_expr, - STATE(2548), 4, + STATE(2624), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3061), 12, + STATE(2976), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -144073,82 +144494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [5433] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2960), 1, - anon_sym_PLUS2, - STATE(1330), 1, - sym_comment, - ACTIONS(2950), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2535), 10, - 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(2533), 42, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [5518] = 39, + [5743] = 39, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2978), 1, @@ -144187,26 +144533,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__unquoted_in_record_token1, ACTIONS(3022), 1, sym_raw_string_begin, - STATE(1291), 1, + STATE(1300), 1, aux_sym__repeat_newline, - STATE(1331), 1, + STATE(1333), 1, sym_comment, - STATE(2444), 1, + STATE(2479), 1, sym__val_number_decimal, - STATE(2866), 1, + STATE(2927), 1, sym_expr_parenthesized, - STATE(2884), 1, + STATE(2959), 1, sym_val_variable, - STATE(2924), 1, + STATE(2982), 1, + sym_val_bool, + STATE(2990), 1, sym__inter_single_quotes, - STATE(2925), 1, + STATE(2997), 1, sym__inter_double_quotes, - STATE(2969), 1, - sym__unquoted_in_record, - STATE(2980), 1, - sym_val_bool, - STATE(3062), 1, + STATE(3072), 1, sym__val_number, + STATE(3123), 1, + sym__unquoted_in_record, ACTIONS(2976), 2, anon_sym_true, anon_sym_false, @@ -144219,7 +144565,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3006), 2, anon_sym_0o, anon_sym_0x, - STATE(4567), 2, + STATE(4621), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(2980), 3, @@ -144230,16 +144576,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3231), 3, + STATE(3339), 3, sym_val_range, sym__value, sym__unquoted_in_record_with_expr, - STATE(2548), 4, + STATE(2624), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3061), 12, + STATE(2976), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -144252,12 +144598,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [5661] = 4, + [5886] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1332), 1, + STATE(1334), 1, sym_comment, - ACTIONS(2539), 13, + ACTIONS(2517), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144271,7 +144617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2537), 49, + ACTIONS(2515), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144321,12 +144667,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5734] = 4, + [5959] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1333), 1, + STATE(1335), 1, sym_comment, - ACTIONS(2617), 13, + ACTIONS(2453), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144340,7 +144686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2615), 49, + ACTIONS(2451), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144390,12 +144736,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5807] = 4, + [6032] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1334), 1, + STATE(1336), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2457), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144409,7 +144755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2455), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144459,23 +144805,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, - [5880] = 7, + [6105] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1335), 1, + STATE(1337), 1, sym_comment, - ACTIONS(2950), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2956), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2535), 11, + ACTIONS(2461), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -144485,7 +144824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2533), 45, + ACTIONS(2459), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144518,6 +144857,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -144531,12 +144874,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5959] = 4, + [6178] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1336), 1, + STATE(1338), 1, sym_comment, - ACTIONS(2228), 13, + ACTIONS(2465), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144550,7 +144893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2226), 49, + ACTIONS(2463), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144600,183 +144943,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6032] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1337), 1, - sym_comment, - ACTIONS(2232), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2230), 49, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [6105] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(157), 1, - anon_sym_LBRACK, - ACTIONS(159), 1, - anon_sym_LPAREN, - ACTIONS(165), 1, - anon_sym_LBRACE, - ACTIONS(169), 1, - anon_sym_DOT_DOT, - ACTIONS(173), 1, - aux_sym_expr_unary_token1, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(195), 1, - sym_val_date, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(287), 1, - anon_sym_DASH2, - ACTIONS(1022), 1, - anon_sym_DOLLAR, - ACTIONS(1926), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1928), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2668), 1, - anon_sym_null, - STATE(694), 1, - sym__val_number, - STATE(697), 1, - sym_val_variable, - STATE(700), 1, - sym_expr_parenthesized, - STATE(743), 1, - sym__inter_single_quotes, - STATE(744), 1, - sym__inter_double_quotes, - STATE(945), 1, - sym__expr_unary_minus, - STATE(1338), 1, - sym_comment, - STATE(1830), 1, - sym__val_number_decimal, - STATE(2215), 1, - sym__expr_binary_expression, - STATE(4715), 1, - sym__expression, - ACTIONS(179), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1930), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(944), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(189), 6, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(943), 13, - sym_val_nothing, - sym_val_bool, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [6244] = 4, + [6251] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1339), 1, sym_comment, - ACTIONS(2236), 13, + ACTIONS(2469), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144790,7 +144962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2234), 49, + ACTIONS(2467), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144840,12 +145012,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6317] = 4, + [6324] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1340), 1, sym_comment, - ACTIONS(2240), 13, + ACTIONS(2473), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144859,7 +145031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2238), 49, + ACTIONS(2471), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144909,12 +145081,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6390] = 4, + [6397] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1341), 1, sym_comment, - ACTIONS(2244), 13, + ACTIONS(2477), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144928,7 +145100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2242), 49, + ACTIONS(2475), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144978,12 +145150,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6463] = 4, + [6470] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1342), 1, sym_comment, - ACTIONS(2248), 13, + ACTIONS(2527), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144997,7 +145169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2246), 49, + ACTIONS(2525), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145047,150 +145219,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6536] = 4, + [6543] = 37, ACTIONS(3), 1, anon_sym_POUND, - STATE(1343), 1, - sym_comment, - ACTIONS(2252), 13, - anon_sym_GT2, - 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(2250), 49, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - 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(157), 1, + anon_sym_LBRACK, + ACTIONS(159), 1, + anon_sym_LPAREN, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(169), 1, + anon_sym_DOT_DOT, + ACTIONS(173), 1, + aux_sym_expr_unary_token1, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(195), 1, + sym_val_date, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(287), 1, anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [6609] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1344), 1, + ACTIONS(1020), 1, + anon_sym_DOLLAR, + ACTIONS(1976), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1978), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2656), 1, + anon_sym_null, + STATE(674), 1, + sym_expr_parenthesized, + STATE(676), 1, + sym__val_number, + STATE(677), 1, + sym_val_variable, + STATE(847), 1, + sym__inter_single_quotes, + STATE(848), 1, + sym__inter_double_quotes, + STATE(958), 1, + sym__expr_unary_minus, + STATE(1343), 1, sym_comment, - ACTIONS(2569), 13, - anon_sym_GT2, - 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(2567), 49, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, + STATE(1826), 1, + sym__val_number_decimal, + STATE(2216), 1, + sym__expr_binary_expression, + STATE(4673), 1, + sym__expression, + ACTIONS(179), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(193), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1914), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1980), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(422), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(926), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(189), 6, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(922), 13, + sym_val_nothing, + sym_val_bool, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, [6682] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1345), 1, + STATE(1344), 1, sym_comment, - ACTIONS(2090), 13, + ACTIONS(2449), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145204,7 +145340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2088), 49, + ACTIONS(2447), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145271,79 +145407,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(1914), 1, + ACTIONS(1912), 1, aux_sym_unquoted_token1, - ACTIONS(2664), 1, + ACTIONS(2662), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, + ACTIONS(2664), 1, anon_sym_COLON2, - ACTIONS(2680), 1, + ACTIONS(2746), 1, anon_sym_LBRACK, - ACTIONS(2682), 1, + ACTIONS(2748), 1, anon_sym_LPAREN, - ACTIONS(2684), 1, + ACTIONS(2750), 1, anon_sym_DOLLAR, - ACTIONS(2686), 1, + ACTIONS(2752), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(3026), 1, anon_sym_null, - ACTIONS(3032), 1, + ACTIONS(3030), 1, anon_sym_DOT_DOT, - ACTIONS(3040), 1, + ACTIONS(3038), 1, sym_val_date, - STATE(694), 1, + STATE(676), 1, sym__val_number, - STATE(743), 1, + STATE(847), 1, sym__inter_single_quotes, - STATE(744), 1, + STATE(848), 1, sym__inter_double_quotes, - STATE(1346), 1, + STATE(1345), 1, sym_comment, - STATE(3710), 1, + STATE(3742), 1, sym__val_number_decimal, - STATE(4151), 1, + STATE(4269), 1, sym_val_variable, - STATE(4303), 1, + STATE(4320), 1, sym_expr_parenthesized, - STATE(4684), 1, + STATE(4793), 1, sym_val_bool, - STATE(4934), 1, + STATE(4986), 1, sym_unquoted, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3026), 2, + ACTIONS(3024), 2, anon_sym_true, anon_sym_false, - ACTIONS(3034), 2, + ACTIONS(3032), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3036), 2, + ACTIONS(3034), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3038), 2, + ACTIONS(3036), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4933), 2, + STATE(4985), 2, sym_val_range, sym__value, - STATE(5173), 2, + STATE(5013), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(2555), 3, + ACTIONS(2539), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3030), 3, + ACTIONS(3028), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, + STATE(2243), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(943), 12, + STATE(922), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -145369,91 +145505,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(1914), 1, + ACTIONS(1912), 1, aux_sym_unquoted_token1, - ACTIONS(2682), 1, + ACTIONS(2748), 1, anon_sym_LPAREN, - ACTIONS(2870), 1, + ACTIONS(2902), 1, anon_sym_null, - ACTIONS(2874), 1, + ACTIONS(2906), 1, sym__newline, - ACTIONS(2876), 1, + ACTIONS(2908), 1, anon_sym_LBRACK, - ACTIONS(2878), 1, + ACTIONS(2910), 1, anon_sym_DOLLAR, - ACTIONS(2880), 1, + ACTIONS(2912), 1, anon_sym_LBRACE, - ACTIONS(2884), 1, + ACTIONS(2916), 1, anon_sym__, - ACTIONS(2886), 1, + ACTIONS(2918), 1, anon_sym_DOT_DOT, - ACTIONS(2890), 1, + ACTIONS(2922), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2892), 1, + ACTIONS(2924), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2896), 1, + ACTIONS(2928), 1, sym_val_date, - STATE(694), 1, + STATE(676), 1, sym__val_number, - STATE(1347), 1, + STATE(1346), 1, sym_comment, - STATE(1360), 1, + STATE(1364), 1, aux_sym__ctrl_match_body_repeat1, - STATE(2241), 1, + STATE(2233), 1, aux_sym__types_body_repeat1, - STATE(3487), 1, + STATE(3468), 1, sym__val_number_decimal, - STATE(3714), 1, + STATE(3716), 1, sym_expr_parenthesized, - STATE(3715), 1, + STATE(3718), 1, sym_val_variable, - STATE(3762), 1, + STATE(3907), 1, sym__match_pattern, - STATE(4021), 1, + STATE(3955), 1, sym_val_bool, - STATE(4049), 1, + STATE(4160), 1, sym__match_pattern_expression, - STATE(4052), 1, + STATE(4163), 1, sym__match_pattern_list, - STATE(4070), 1, + STATE(4170), 1, sym_unquoted, - STATE(5092), 1, + STATE(5101), 1, sym_match_pattern, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(2868), 2, + ACTIONS(2900), 2, anon_sym_true, anon_sym_false, - ACTIONS(2888), 2, + ACTIONS(2920), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(2894), 2, + ACTIONS(2926), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4051), 2, + STATE(4162), 2, sym__match_pattern_value, sym_val_range, - STATE(4512), 2, + STATE(4609), 2, sym_match_arm, sym_default_arm, - STATE(5173), 2, + STATE(5013), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(189), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(2872), 3, + ACTIONS(2904), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, + STATE(2243), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4053), 8, + STATE(4167), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -145462,220 +145598,20 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [7043] = 37, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(1914), 1, - aux_sym_unquoted_token1, - ACTIONS(2680), 1, - anon_sym_LBRACK, - ACTIONS(2682), 1, - anon_sym_LPAREN, - ACTIONS(2684), 1, - anon_sym_DOLLAR, - ACTIONS(2686), 1, - anon_sym_LBRACE, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3028), 1, - anon_sym_null, - ACTIONS(3032), 1, - anon_sym_DOT_DOT, - ACTIONS(3040), 1, - sym_val_date, - STATE(694), 1, - sym__val_number, - STATE(743), 1, - sym__inter_single_quotes, - STATE(744), 1, - sym__inter_double_quotes, - STATE(1348), 1, - sym_comment, - STATE(3710), 1, - sym__val_number_decimal, - STATE(4151), 1, - sym_val_variable, - STATE(4291), 1, - sym_expr_parenthesized, - STATE(4684), 1, - sym_val_bool, - STATE(4998), 1, - sym_unquoted, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3026), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3034), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3036), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3038), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4906), 2, - sym_val_range, - sym__value, - STATE(5173), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2555), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3030), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(943), 12, - sym_val_nothing, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [7180] = 37, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(1914), 1, - aux_sym_unquoted_token1, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2680), 1, - anon_sym_LBRACK, - ACTIONS(2682), 1, - anon_sym_LPAREN, - ACTIONS(2684), 1, - anon_sym_DOLLAR, - ACTIONS(2686), 1, - anon_sym_LBRACE, - ACTIONS(3028), 1, - anon_sym_null, - ACTIONS(3032), 1, - anon_sym_DOT_DOT, - ACTIONS(3040), 1, - sym_val_date, - STATE(694), 1, - sym__val_number, - STATE(743), 1, - sym__inter_single_quotes, - STATE(744), 1, - sym__inter_double_quotes, - STATE(1349), 1, - sym_comment, - STATE(3710), 1, - sym__val_number_decimal, - STATE(4151), 1, - sym_val_variable, - STATE(4303), 1, - sym_expr_parenthesized, - STATE(4684), 1, - sym_val_bool, - STATE(4934), 1, - sym_unquoted, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3026), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3034), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3036), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3038), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4933), 2, - sym_val_range, - sym__value, - STATE(5173), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2555), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3030), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(943), 12, - sym_val_nothing, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [7317] = 7, + [7043] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1350), 1, + STATE(1347), 1, sym_comment, - STATE(1357), 1, + STATE(1350), 1, aux_sym__block_body_repeat1, ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3046), 2, + ACTIONS(3044), 2, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(3042), 10, + ACTIONS(3040), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -145686,7 +145622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, + ACTIONS(3042), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -145732,7 +145668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7394] = 37, + [7120] = 37, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1386), 1, @@ -145753,73 +145689,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1426), 1, sym_raw_string_begin, - ACTIONS(1496), 1, + ACTIONS(1476), 1, anon_sym_LBRACE, ACTIONS(1578), 1, anon_sym_LBRACK, - ACTIONS(3050), 1, + ACTIONS(3048), 1, anon_sym_null, - ACTIONS(3054), 1, + ACTIONS(3052), 1, anon_sym_DOT_DOT, - ACTIONS(3058), 1, + ACTIONS(3056), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3060), 1, + ACTIONS(3058), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3064), 1, + ACTIONS(3062), 1, sym_val_date, - ACTIONS(3066), 1, + ACTIONS(3064), 1, aux_sym__unquoted_in_record_token1, - STATE(1351), 1, + STATE(1348), 1, sym_comment, - STATE(3418), 1, + STATE(3443), 1, sym__val_number_decimal, - STATE(3846), 1, + STATE(3879), 1, sym_val_variable, - STATE(3932), 1, + STATE(3996), 1, sym_expr_parenthesized, - STATE(4118), 1, + STATE(4156), 1, + sym__unquoted_in_record, + STATE(4215), 1, sym_val_bool, - STATE(4130), 1, + STATE(4361), 1, sym__val_number, - STATE(4257), 1, - sym__unquoted_in_record, - STATE(4369), 1, - sym__inter_double_quotes, - STATE(4504), 1, + STATE(4595), 1, sym__inter_single_quotes, + STATE(4596), 1, + sym__inter_double_quotes, ACTIONS(1408), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3048), 2, + ACTIONS(3046), 2, anon_sym_true, anon_sym_false, - ACTIONS(3056), 2, + ACTIONS(3054), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3062), 2, + ACTIONS(3060), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4415), 2, + STATE(4462), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(1404), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3052), 3, + ACTIONS(3050), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(4643), 3, + STATE(4763), 3, sym_val_range, sym__value, sym__unquoted_in_record_with_expr, - STATE(3505), 4, + STATE(3638), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4452), 12, + STATE(4604), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -145832,7 +145768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7531] = 37, + [7257] = 37, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1386), 1, @@ -145853,73 +145789,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1426), 1, sym_raw_string_begin, - ACTIONS(1496), 1, + ACTIONS(1476), 1, anon_sym_LBRACE, ACTIONS(1578), 1, anon_sym_LBRACK, - ACTIONS(3050), 1, + ACTIONS(3048), 1, anon_sym_null, - ACTIONS(3054), 1, + ACTIONS(3052), 1, anon_sym_DOT_DOT, - ACTIONS(3058), 1, + ACTIONS(3056), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3060), 1, + ACTIONS(3058), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3064), 1, + ACTIONS(3062), 1, sym_val_date, - ACTIONS(3066), 1, + ACTIONS(3064), 1, aux_sym__unquoted_in_record_token1, - STATE(1352), 1, + STATE(1349), 1, sym_comment, - STATE(3418), 1, + STATE(3443), 1, sym__val_number_decimal, - STATE(3846), 1, + STATE(3879), 1, sym_val_variable, - STATE(3982), 1, + STATE(4032), 1, sym_expr_parenthesized, - STATE(4118), 1, + STATE(4215), 1, sym_val_bool, - STATE(4130), 1, + STATE(4361), 1, sym__val_number, - STATE(4307), 1, + STATE(4365), 1, sym__unquoted_in_record, - STATE(4369), 1, - sym__inter_double_quotes, - STATE(4504), 1, + STATE(4595), 1, sym__inter_single_quotes, + STATE(4596), 1, + sym__inter_double_quotes, ACTIONS(1408), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3048), 2, + ACTIONS(3046), 2, anon_sym_true, anon_sym_false, - ACTIONS(3056), 2, + ACTIONS(3054), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3062), 2, + ACTIONS(3060), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4415), 2, + STATE(4462), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(1404), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3052), 3, + ACTIONS(3050), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(4714), 3, + STATE(4737), 3, sym_val_range, sym__value, sym__unquoted_in_record_with_expr, - STATE(3505), 4, + STATE(3638), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4452), 12, + STATE(4604), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -145932,7 +145868,145 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7668] = 37, + [7394] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3070), 2, + sym__newline, + anon_sym_SEMI, + STATE(1350), 2, + sym_comment, + aux_sym__block_body_repeat1, + ACTIONS(3066), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3068), 47, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [7467] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1350), 1, + aux_sym__block_body_repeat1, + STATE(1351), 1, + sym_comment, + ACTIONS(153), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3073), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(3040), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3042), 45, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_where, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [7544] = 37, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1386), 1, @@ -145953,73 +146027,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1426), 1, sym_raw_string_begin, - ACTIONS(1496), 1, + ACTIONS(1476), 1, anon_sym_LBRACE, ACTIONS(1578), 1, anon_sym_LBRACK, - ACTIONS(3050), 1, + ACTIONS(3048), 1, anon_sym_null, - ACTIONS(3054), 1, + ACTIONS(3052), 1, anon_sym_DOT_DOT, - ACTIONS(3058), 1, + ACTIONS(3056), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3060), 1, + ACTIONS(3058), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3064), 1, + ACTIONS(3062), 1, sym_val_date, - ACTIONS(3066), 1, + ACTIONS(3064), 1, aux_sym__unquoted_in_record_token1, - STATE(1353), 1, + STATE(1352), 1, sym_comment, - STATE(3418), 1, + STATE(3443), 1, sym__val_number_decimal, - STATE(3846), 1, + STATE(3879), 1, sym_val_variable, - STATE(3942), 1, + STATE(4088), 1, sym_expr_parenthesized, - STATE(4118), 1, + STATE(4188), 1, + sym__unquoted_in_record, + STATE(4215), 1, sym_val_bool, - STATE(4130), 1, + STATE(4361), 1, sym__val_number, - STATE(4263), 1, - sym__unquoted_in_record, - STATE(4369), 1, - sym__inter_double_quotes, - STATE(4504), 1, + STATE(4595), 1, sym__inter_single_quotes, + STATE(4596), 1, + sym__inter_double_quotes, ACTIONS(1408), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3048), 2, + ACTIONS(3046), 2, anon_sym_true, anon_sym_false, - ACTIONS(3056), 2, + ACTIONS(3054), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3062), 2, + ACTIONS(3060), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4415), 2, + STATE(4462), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(1404), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3052), 3, + ACTIONS(3050), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(4665), 3, + STATE(4733), 3, sym_val_range, sym__value, sym__unquoted_in_record_with_expr, - STATE(3505), 4, + STATE(3638), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4452), 12, + STATE(4604), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -146032,20 +146106,15 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7805] = 7, + [7681] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1354), 1, - sym_comment, - STATE(1357), 1, - aux_sym__block_body_repeat1, - ACTIONS(153), 2, + ACTIONS(3075), 1, sym__newline, - anon_sym_SEMI, - ACTIONS(3068), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(3042), 10, + STATE(1353), 2, + aux_sym__repeat_newline, + sym_comment, + ACTIONS(1940), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146056,7 +146125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, + ACTIONS(1935), 48, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -146081,10 +146150,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -146102,88 +146174,220 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7882] = 5, - ACTIONS(3), 1, + [7754] = 37, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3070), 1, - sym__newline, - STATE(1355), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1960), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(1912), 1, + aux_sym_unquoted_token1, + ACTIONS(2746), 1, + anon_sym_LBRACK, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2750), 1, anon_sym_DOLLAR, - anon_sym_DASH2, + ACTIONS(2752), 1, + anon_sym_LBRACE, + ACTIONS(2878), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3026), 1, + anon_sym_null, + ACTIONS(3030), 1, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, + ACTIONS(3038), 1, + sym_val_date, + STATE(676), 1, + sym__val_number, + STATE(847), 1, + sym__inter_single_quotes, + STATE(848), 1, + sym__inter_double_quotes, + STATE(1354), 1, + sym_comment, + STATE(3742), 1, + sym__val_number_decimal, + STATE(4269), 1, + sym_val_variable, + STATE(4313), 1, + sym_expr_parenthesized, + STATE(4793), 1, + sym_val_bool, + STATE(5137), 1, + sym_unquoted, + ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(1955), 48, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + ACTIONS(3024), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + ACTIONS(3032), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3034), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3036), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4989), 2, + sym_val_range, + sym__value, + STATE(5013), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(2539), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3028), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_AT, + STATE(2243), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(922), 12, + sym_val_nothing, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [7891] = 37, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(1912), 1, + aux_sym_unquoted_token1, + ACTIONS(2533), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2746), 1, anon_sym_LBRACK, + ACTIONS(2748), 1, anon_sym_LPAREN, + ACTIONS(2750), 1, + anon_sym_DOLLAR, + ACTIONS(2752), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, + ACTIONS(3026), 1, + anon_sym_null, + ACTIONS(3030), 1, + anon_sym_DOT_DOT, + ACTIONS(3038), 1, + sym_val_date, + STATE(676), 1, + sym__val_number, + STATE(847), 1, + sym__inter_single_quotes, + STATE(848), 1, + sym__inter_double_quotes, + STATE(1355), 1, + sym_comment, + STATE(3742), 1, + sym__val_number_decimal, + STATE(4269), 1, + sym_val_variable, + STATE(4320), 1, + sym_expr_parenthesized, + STATE(4793), 1, + sym_val_bool, + STATE(4986), 1, + sym_unquoted, + ACTIONS(193), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3024), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3032), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + ACTIONS(3034), 2, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + ACTIONS(3036), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + STATE(4985), 2, + sym_val_range, + sym__value, + STATE(5013), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(2539), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [7955] = 7, + ACTIONS(3028), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2243), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(922), 12, + sym_val_nothing, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [8028] = 7, ACTIONS(3), 1, anon_sym_POUND, + STATE(1350), 1, + aux_sym__block_body_repeat1, STATE(1356), 1, sym_comment, - STATE(1357), 1, - aux_sym__block_body_repeat1, ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3073), 2, + ACTIONS(3078), 2, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(3042), 10, + ACTIONS(3040), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146194,7 +146398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, + ACTIONS(3042), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -146240,16 +146444,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8032] = 5, + [8105] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3079), 2, + ACTIONS(3080), 2, sym__newline, anon_sym_SEMI, STATE(1357), 2, sym_comment, aux_sym__block_body_repeat1, - ACTIONS(3075), 10, + ACTIONS(3066), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146260,8 +146464,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3077), 47, + ACTIONS(3068), 46, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -146288,9 +146493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -146308,16 +146511,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8105] = 6, + [8177] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2096), 1, + ACTIONS(2110), 1, anon_sym_POUND_BANG, - ACTIONS(2932), 1, + ACTIONS(2888), 1, sym__newline, STATE(1358), 1, sym_comment, - ACTIONS(3084), 10, + ACTIONS(3085), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146328,7 +146531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3082), 47, + ACTIONS(3083), 47, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -146376,12 +146579,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8179] = 4, + [8251] = 7, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3073), 1, + ts_builtin_sym_end, + STATE(1357), 1, + aux_sym__block_body_repeat1, STATE(1359), 1, sym_comment, - ACTIONS(2098), 10, + ACTIONS(55), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3040), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146392,7 +146602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2096), 49, + ACTIONS(3042), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -146417,14 +146627,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -146442,210 +146648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8249] = 40, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(1914), 1, - aux_sym_unquoted_token1, - ACTIONS(2682), 1, - anon_sym_LPAREN, - ACTIONS(2870), 1, - anon_sym_null, - ACTIONS(2876), 1, - anon_sym_LBRACK, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(2880), 1, - anon_sym_LBRACE, - ACTIONS(2884), 1, - anon_sym__, - ACTIONS(2886), 1, - anon_sym_DOT_DOT, - ACTIONS(2890), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2892), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2896), 1, - sym_val_date, - STATE(694), 1, - sym__val_number, - STATE(1360), 1, - sym_comment, - STATE(1361), 1, - aux_sym__ctrl_match_body_repeat1, - STATE(3487), 1, - sym__val_number_decimal, - STATE(3714), 1, - sym_expr_parenthesized, - STATE(3715), 1, - sym_val_variable, - STATE(3762), 1, - sym__match_pattern, - STATE(4021), 1, - sym_val_bool, - STATE(4049), 1, - sym__match_pattern_expression, - STATE(4052), 1, - sym__match_pattern_list, - STATE(4070), 1, - sym_unquoted, - STATE(5092), 1, - sym_match_pattern, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2868), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2888), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(2894), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4051), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4611), 2, - sym_match_arm, - sym_default_arm, - STATE(5173), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(189), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(2872), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4053), 8, - sym__match_pattern_record, - sym_val_nothing, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [8391] = 39, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3089), 1, - anon_sym_null, - ACTIONS(3095), 1, - anon_sym_LBRACK, - ACTIONS(3098), 1, - anon_sym_LPAREN, - ACTIONS(3101), 1, - anon_sym_DOLLAR, - ACTIONS(3104), 1, - anon_sym_LBRACE, - ACTIONS(3107), 1, - anon_sym__, - ACTIONS(3110), 1, - anon_sym_DOT_DOT, - ACTIONS(3116), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3119), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3128), 1, - anon_sym_0b, - ACTIONS(3134), 1, - sym_val_date, - ACTIONS(3137), 1, - anon_sym_DQUOTE, - ACTIONS(3140), 1, - anon_sym_SQUOTE, - ACTIONS(3143), 1, - anon_sym_BQUOTE, - ACTIONS(3146), 1, - aux_sym_unquoted_token1, - ACTIONS(3149), 1, - sym_raw_string_begin, - STATE(694), 1, - sym__val_number, - STATE(3487), 1, - sym__val_number_decimal, - STATE(3714), 1, - sym_expr_parenthesized, - STATE(3715), 1, - sym_val_variable, - STATE(3762), 1, - sym__match_pattern, - STATE(4021), 1, - sym_val_bool, - STATE(4049), 1, - sym__match_pattern_expression, - STATE(4052), 1, - sym__match_pattern_list, - STATE(4070), 1, - sym_unquoted, - STATE(5092), 1, - sym_match_pattern, - ACTIONS(3086), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3113), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3122), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3131), 2, - anon_sym_0o, - anon_sym_0x, - STATE(1361), 2, - sym_comment, - aux_sym__ctrl_match_body_repeat1, - STATE(4051), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4789), 2, - sym_match_arm, - sym_default_arm, - STATE(5173), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(3092), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3125), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4053), 8, - sym__match_pattern_record, - sym_val_nothing, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [8531] = 36, + [8327] = 36, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -146662,74 +146665,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(3018), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3154), 1, + ACTIONS(3089), 1, anon_sym_null, - ACTIONS(3158), 1, + ACTIONS(3093), 1, anon_sym_LBRACK, - ACTIONS(3160), 1, + ACTIONS(3095), 1, anon_sym_LPAREN, - ACTIONS(3162), 1, + ACTIONS(3097), 1, anon_sym_DOLLAR, - ACTIONS(3164), 1, + ACTIONS(3099), 1, anon_sym_LBRACE, - ACTIONS(3166), 1, + ACTIONS(3101), 1, anon_sym_DOT_DOT, - ACTIONS(3168), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3172), 1, + ACTIONS(3107), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3174), 1, + ACTIONS(3109), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3178), 1, + ACTIONS(3113), 1, sym_val_date, - ACTIONS(3180), 1, + ACTIONS(3115), 1, aux_sym_unquoted_token1, - STATE(1362), 1, + STATE(1360), 1, sym_comment, - STATE(2924), 1, + STATE(2990), 1, sym__inter_single_quotes, - STATE(2925), 1, + STATE(2997), 1, sym__inter_double_quotes, - STATE(3062), 1, + STATE(3072), 1, sym__val_number, - STATE(3544), 1, + STATE(3553), 1, sym__val_number_decimal, - STATE(4166), 1, + STATE(4273), 1, sym_val_bool, - STATE(4382), 1, + STATE(4594), 1, sym_unquoted, ACTIONS(3006), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3152), 2, + ACTIONS(3087), 2, anon_sym_true, anon_sym_false, - ACTIONS(3170), 2, + ACTIONS(3105), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3176), 2, + ACTIONS(3111), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4380), 2, + STATE(4593), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(4947), 2, + STATE(5030), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(3002), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3156), 3, + ACTIONS(3091), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, + STATE(2243), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3061), 13, + STATE(2976), 13, sym_val_nothing, sym_val_variable, sym_val_cellpath, @@ -146743,19 +146746,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [8665] = 7, + [8461] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3186), 1, - sym__newline, - ACTIONS(3189), 1, - anon_sym_SEMI, - STATE(4576), 1, - aux_sym__repeat_newline, - STATE(1363), 2, + STATE(1361), 1, sym_comment, - aux_sym__parenthesized_body_repeat1, - ACTIONS(3182), 10, + ACTIONS(2112), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146766,7 +146762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3184), 45, + ACTIONS(2110), 49, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -146791,10 +146787,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -146812,20 +146812,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8741] = 8, + [8531] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2557), 1, + ACTIONS(3121), 1, sym__newline, - ACTIONS(3196), 1, + ACTIONS(3124), 1, anon_sym_SEMI, - STATE(1363), 1, - aux_sym__parenthesized_body_repeat1, - STATE(1364), 1, - sym_comment, - STATE(1383), 1, + STATE(4466), 1, aux_sym__repeat_newline, - ACTIONS(3192), 10, + STATE(1362), 2, + sym_comment, + aux_sym__parenthesized_body_repeat1, + ACTIONS(3117), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146836,7 +146835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3194), 45, + ACTIONS(3119), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -146882,110 +146881,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8819] = 36, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(799), 1, - anon_sym_DOLLAR, - ACTIONS(815), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(821), 1, - anon_sym_0b, - ACTIONS(841), 1, - aux_sym_unquoted_token1, - ACTIONS(843), 1, - sym_raw_string_begin, - ACTIONS(3200), 1, - anon_sym_null, - ACTIONS(3204), 1, - anon_sym_LBRACK, - ACTIONS(3206), 1, - anon_sym_LPAREN, - ACTIONS(3208), 1, - anon_sym_LBRACE, - ACTIONS(3210), 1, - anon_sym_DOT_DOT, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3216), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3222), 1, - sym_val_date, - ACTIONS(3224), 1, - anon_sym_DQUOTE, - ACTIONS(3226), 1, - anon_sym_SQUOTE, - ACTIONS(3228), 1, - anon_sym_BQUOTE, - ACTIONS(3230), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3232), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(1365), 1, - sym_comment, - STATE(2448), 1, - sym__val_number_decimal, - STATE(2695), 1, - sym_val_bool, - STATE(2956), 1, - sym_unquoted, - STATE(3023), 1, - sym__val_number, - STATE(3063), 1, - sym__inter_single_quotes, - STATE(3066), 1, - sym__inter_double_quotes, - ACTIONS(823), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3198), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3214), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3218), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(3060), 2, - sym__expr_parenthesized_immediate, - sym__value, - STATE(5027), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(3202), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3220), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(2454), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3021), 13, - sym_val_nothing, - sym_val_variable, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [8953] = 4, + [8607] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1366), 1, + ACTIONS(3078), 1, + ts_builtin_sym_end, + STATE(1357), 1, + aux_sym__block_body_repeat1, + STATE(1363), 1, sym_comment, - ACTIONS(3084), 10, + ACTIONS(55), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3040), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146996,7 +146904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3082), 49, + ACTIONS(3042), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147021,14 +146929,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -147046,88 +146950,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9023] = 7, + [8683] = 40, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3068), 1, - ts_builtin_sym_end, - STATE(1367), 1, - sym_comment, - STATE(1370), 1, - aux_sym__block_body_repeat1, - ACTIONS(55), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3042), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(1912), 1, + aux_sym_unquoted_token1, + ACTIONS(2748), 1, + anon_sym_LPAREN, + ACTIONS(2902), 1, + anon_sym_null, + ACTIONS(2908), 1, + anon_sym_LBRACK, + ACTIONS(2910), 1, anon_sym_DOLLAR, - anon_sym_DASH2, + ACTIONS(2912), 1, + anon_sym_LBRACE, + ACTIONS(2916), 1, + anon_sym__, + ACTIONS(2918), 1, anon_sym_DOT_DOT, + ACTIONS(2922), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, + ACTIONS(2924), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2928), 1, + sym_val_date, + STATE(676), 1, + sym__val_number, + STATE(1364), 1, + sym_comment, + STATE(1368), 1, + aux_sym__ctrl_match_body_repeat1, + STATE(3468), 1, + sym__val_number_decimal, + STATE(3716), 1, + sym_expr_parenthesized, + STATE(3718), 1, + sym_val_variable, + STATE(3907), 1, + sym__match_pattern, + STATE(3955), 1, + sym_val_bool, + STATE(4160), 1, + sym__match_pattern_expression, + STATE(4163), 1, + sym__match_pattern_list, + STATE(4170), 1, + sym_unquoted, + STATE(5101), 1, + sym_match_pattern, + ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + ACTIONS(2900), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, + ACTIONS(2920), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, + ACTIONS(2926), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + STATE(4162), 2, + sym__match_pattern_value, + sym_val_range, + STATE(4501), 2, + sym_match_arm, + sym_default_arm, + STATE(5013), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(189), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [9099] = 7, + ACTIONS(2904), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2243), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4167), 8, + sym__match_pattern_record, + sym_val_nothing, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [8825] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3073), 1, - ts_builtin_sym_end, - STATE(1368), 1, - sym_comment, - STATE(1370), 1, - aux_sym__block_body_repeat1, - ACTIONS(55), 2, + ACTIONS(2541), 1, sym__newline, + ACTIONS(3131), 1, anon_sym_SEMI, - ACTIONS(3042), 10, + STATE(1362), 1, + aux_sym__parenthesized_body_repeat1, + STATE(1365), 1, + sym_comment, + STATE(1377), 1, + aux_sym__repeat_newline, + ACTIONS(3127), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147138,7 +147076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3044), 45, + ACTIONS(3129), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147184,14 +147122,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9175] = 5, + [8903] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2096), 1, - anon_sym_PIPE, - STATE(1369), 1, + STATE(1366), 1, sym_comment, - ACTIONS(2935), 10, + ACTIONS(3085), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147202,7 +147138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2932), 48, + ACTIONS(3083), 49, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147232,6 +147168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_where, @@ -147251,143 +147188,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9247] = 5, + [8973] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3234), 2, - sym__newline, - anon_sym_SEMI, - STATE(1370), 2, - sym_comment, - aux_sym__block_body_repeat1, - ACTIONS(3075), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + ACTIONS(3135), 1, + anon_sym_null, + ACTIONS(3139), 1, + anon_sym_LBRACK, + ACTIONS(3141), 1, + anon_sym_LPAREN, + ACTIONS(3143), 1, anon_sym_DOLLAR, - anon_sym_DASH2, + ACTIONS(3145), 1, + anon_sym_LBRACE, + ACTIONS(3147), 1, anon_sym_DOT_DOT, + ACTIONS(3149), 1, + anon_sym_LPAREN2, + ACTIONS(3153), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3155), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3161), 1, anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3077), 46, + ACTIONS(3165), 1, + sym_val_date, + ACTIONS(3167), 1, + anon_sym_DQUOTE, + ACTIONS(3169), 1, + anon_sym_SQUOTE, + ACTIONS(3171), 1, + anon_sym_BQUOTE, + ACTIONS(3173), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3175), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3177), 1, + aux_sym_unquoted_token1, + ACTIONS(3179), 1, sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + STATE(1367), 1, + sym_comment, + STATE(1841), 1, + sym__val_number_decimal, + STATE(2118), 1, + sym_val_bool, + STATE(2135), 1, + sym__val_number, + STATE(2151), 1, + sym__inter_single_quotes, + STATE(2153), 1, + sym__inter_double_quotes, + STATE(2196), 1, + sym_unquoted, + ACTIONS(3133), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, + ACTIONS(3151), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, + ACTIONS(3157), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + ACTIONS(3163), 2, + anon_sym_0o, + anon_sym_0x, + STATE(2195), 2, + sym__expr_parenthesized_immediate, + sym__value, + STATE(4865), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3137), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(3159), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [9319] = 7, + STATE(2161), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2136), 13, + sym_val_nothing, + sym_val_variable, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [9107] = 39, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3046), 1, - ts_builtin_sym_end, - STATE(1370), 1, - aux_sym__block_body_repeat1, - STATE(1371), 1, - sym_comment, - ACTIONS(55), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3042), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + ACTIONS(3184), 1, + anon_sym_null, + ACTIONS(3190), 1, + anon_sym_LBRACK, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(3196), 1, anon_sym_DOLLAR, - anon_sym_DASH2, + ACTIONS(3199), 1, + anon_sym_LBRACE, + ACTIONS(3202), 1, + anon_sym__, + ACTIONS(3205), 1, anon_sym_DOT_DOT, + ACTIONS(3211), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3214), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3223), 1, anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3044), 45, + ACTIONS(3229), 1, + sym_val_date, + ACTIONS(3232), 1, + anon_sym_DQUOTE, + ACTIONS(3235), 1, + anon_sym_SQUOTE, + ACTIONS(3238), 1, + anon_sym_BQUOTE, + ACTIONS(3241), 1, + aux_sym_unquoted_token1, + ACTIONS(3244), 1, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + STATE(676), 1, + sym__val_number, + STATE(3468), 1, + sym__val_number_decimal, + STATE(3716), 1, + sym_expr_parenthesized, + STATE(3718), 1, + sym_val_variable, + STATE(3907), 1, + sym__match_pattern, + STATE(3955), 1, + sym_val_bool, + STATE(4160), 1, + sym__match_pattern_expression, + STATE(4163), 1, + sym__match_pattern_list, + STATE(4170), 1, + sym_unquoted, + STATE(5101), 1, + sym_match_pattern, + ACTIONS(3181), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, + ACTIONS(3208), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, + ACTIONS(3217), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + ACTIONS(3226), 2, + anon_sym_0o, + anon_sym_0x, + STATE(1368), 2, + sym_comment, + aux_sym__ctrl_match_body_repeat1, + STATE(4162), 2, + sym__match_pattern_value, + sym_val_range, + STATE(4659), 2, + sym_match_arm, + sym_default_arm, + STATE(5013), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3187), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(3220), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [9395] = 40, + STATE(2243), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4167), 8, + sym__match_pattern_record, + sym_val_nothing, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [9247] = 40, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(191), 1, @@ -147400,87 +147400,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(1914), 1, + ACTIONS(1912), 1, aux_sym_unquoted_token1, - ACTIONS(2682), 1, + ACTIONS(2748), 1, anon_sym_LPAREN, - ACTIONS(2870), 1, + ACTIONS(2902), 1, anon_sym_null, - ACTIONS(2876), 1, + ACTIONS(2908), 1, anon_sym_LBRACK, - ACTIONS(2878), 1, + ACTIONS(2910), 1, anon_sym_DOLLAR, - ACTIONS(2880), 1, + ACTIONS(2912), 1, anon_sym_LBRACE, - ACTIONS(2884), 1, + ACTIONS(2916), 1, anon_sym__, - ACTIONS(2886), 1, + ACTIONS(2918), 1, anon_sym_DOT_DOT, - ACTIONS(2890), 1, + ACTIONS(2922), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2892), 1, + ACTIONS(2924), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2896), 1, + ACTIONS(2928), 1, sym_val_date, - STATE(694), 1, + STATE(676), 1, sym__val_number, - STATE(1361), 1, + STATE(1368), 1, aux_sym__ctrl_match_body_repeat1, - STATE(1372), 1, + STATE(1369), 1, sym_comment, - STATE(3487), 1, + STATE(3468), 1, sym__val_number_decimal, - STATE(3714), 1, + STATE(3716), 1, sym_expr_parenthesized, - STATE(3715), 1, + STATE(3718), 1, sym_val_variable, - STATE(3762), 1, + STATE(3907), 1, sym__match_pattern, - STATE(4021), 1, + STATE(3955), 1, sym_val_bool, - STATE(4049), 1, + STATE(4160), 1, sym__match_pattern_expression, - STATE(4052), 1, + STATE(4163), 1, sym__match_pattern_list, - STATE(4070), 1, + STATE(4170), 1, sym_unquoted, - STATE(5092), 1, + STATE(5101), 1, sym_match_pattern, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(2868), 2, + ACTIONS(2900), 2, anon_sym_true, anon_sym_false, - ACTIONS(2888), 2, + ACTIONS(2920), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(2894), 2, + ACTIONS(2926), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4051), 2, + STATE(4162), 2, sym__match_pattern_value, sym_val_range, - STATE(4512), 2, + STATE(4609), 2, sym_match_arm, sym_default_arm, - STATE(5173), 2, + STATE(5013), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(189), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(2872), 3, + ACTIONS(2904), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, + STATE(2243), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4053), 8, + STATE(4167), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -147489,91 +147489,91 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [9537] = 36, + [9389] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(914), 1, + ACTIONS(824), 1, anon_sym_DOLLAR, - ACTIONS(930), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(936), 1, + ACTIONS(846), 1, anon_sym_0b, - ACTIONS(956), 1, + ACTIONS(868), 1, aux_sym_unquoted_token1, - ACTIONS(958), 1, + ACTIONS(870), 1, sym_raw_string_begin, - ACTIONS(3239), 1, + ACTIONS(1240), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3249), 1, anon_sym_null, - ACTIONS(3243), 1, + ACTIONS(3253), 1, anon_sym_LBRACK, - ACTIONS(3245), 1, + ACTIONS(3255), 1, anon_sym_LPAREN, - ACTIONS(3247), 1, + ACTIONS(3257), 1, anon_sym_LBRACE, - ACTIONS(3249), 1, + ACTIONS(3259), 1, anon_sym_DOT_DOT, - ACTIONS(3251), 1, + ACTIONS(3261), 1, anon_sym_LPAREN2, - ACTIONS(3255), 1, + ACTIONS(3265), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3261), 1, + ACTIONS(3271), 1, sym_val_date, - ACTIONS(3263), 1, + ACTIONS(3273), 1, anon_sym_DQUOTE, - ACTIONS(3265), 1, + ACTIONS(3275), 1, anon_sym_SQUOTE, - ACTIONS(3267), 1, + ACTIONS(3277), 1, anon_sym_BQUOTE, - ACTIONS(3269), 1, + ACTIONS(3279), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3271), 1, + ACTIONS(3281), 1, anon_sym_DOLLAR_DQUOTE, - STATE(1373), 1, + STATE(1370), 1, sym_comment, - STATE(2469), 1, - sym__val_number_decimal, - STATE(2876), 1, - sym_val_bool, - STATE(3091), 1, + STATE(2983), 1, sym__inter_single_quotes, - STATE(3098), 1, - sym__inter_double_quotes, - STATE(3152), 1, - sym_unquoted, - STATE(3203), 1, + STATE(3024), 1, sym__val_number, - ACTIONS(938), 2, + STATE(3069), 1, + sym_unquoted, + STATE(3101), 1, + sym__inter_double_quotes, + STATE(3582), 1, + sym__val_number_decimal, + STATE(4029), 1, + sym_val_bool, + ACTIONS(848), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3237), 2, + ACTIONS(3247), 2, anon_sym_true, anon_sym_false, - ACTIONS(3253), 2, + ACTIONS(3263), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3257), 2, + ACTIONS(3267), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3147), 2, + STATE(3068), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(4885), 2, + STATE(5145), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3241), 3, + ACTIONS(3251), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3259), 3, + ACTIONS(3269), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2472), 4, + STATE(2508), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3180), 13, + STATE(3022), 13, sym_val_nothing, sym_val_variable, sym_val_cellpath, @@ -147587,91 +147587,91 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9671] = 36, + [9523] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(799), 1, + ACTIONS(824), 1, anon_sym_DOLLAR, - ACTIONS(821), 1, + ACTIONS(840), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(846), 1, anon_sym_0b, - ACTIONS(841), 1, + ACTIONS(868), 1, aux_sym_unquoted_token1, - ACTIONS(843), 1, + ACTIONS(870), 1, sym_raw_string_begin, - ACTIONS(1240), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3204), 1, + ACTIONS(3253), 1, anon_sym_LBRACK, - ACTIONS(3206), 1, + ACTIONS(3255), 1, anon_sym_LPAREN, - ACTIONS(3208), 1, + ACTIONS(3257), 1, anon_sym_LBRACE, - ACTIONS(3210), 1, + ACTIONS(3259), 1, anon_sym_DOT_DOT, - ACTIONS(3212), 1, + ACTIONS(3261), 1, anon_sym_LPAREN2, - ACTIONS(3224), 1, + ACTIONS(3273), 1, anon_sym_DQUOTE, - ACTIONS(3226), 1, + ACTIONS(3275), 1, anon_sym_SQUOTE, - ACTIONS(3228), 1, + ACTIONS(3277), 1, anon_sym_BQUOTE, - ACTIONS(3230), 1, + ACTIONS(3279), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3232), 1, + ACTIONS(3281), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3275), 1, + ACTIONS(3285), 1, anon_sym_null, - ACTIONS(3279), 1, + ACTIONS(3289), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3283), 1, + ACTIONS(3293), 1, sym_val_date, - STATE(1374), 1, + STATE(1371), 1, sym_comment, - STATE(2956), 1, - sym_unquoted, - STATE(3023), 1, - sym__val_number, - STATE(3063), 1, - sym__inter_single_quotes, - STATE(3066), 1, - sym__inter_double_quotes, - STATE(3526), 1, + STATE(2488), 1, sym__val_number_decimal, - STATE(3975), 1, + STATE(2861), 1, sym_val_bool, - ACTIONS(823), 2, + STATE(2983), 1, + sym__inter_single_quotes, + STATE(3024), 1, + sym__val_number, + STATE(3069), 1, + sym_unquoted, + STATE(3101), 1, + sym__inter_double_quotes, + ACTIONS(848), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3214), 2, + ACTIONS(3263), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3273), 2, + ACTIONS(3283), 2, anon_sym_true, anon_sym_false, - ACTIONS(3281), 2, + ACTIONS(3291), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3060), 2, + STATE(3068), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(5027), 2, + STATE(5145), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3220), 3, + ACTIONS(3269), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3277), 3, + ACTIONS(3287), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2454), 4, + STATE(2508), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3021), 13, + STATE(3022), 13, sym_val_nothing, sym_val_variable, sym_val_cellpath, @@ -147685,91 +147685,160 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9805] = 36, + [9657] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3287), 1, + ACTIONS(3044), 1, + ts_builtin_sym_end, + STATE(1357), 1, + aux_sym__block_body_repeat1, + STATE(1372), 1, + sym_comment, + ACTIONS(55), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3040), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3042), 45, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, anon_sym_null, - ACTIONS(3291), 1, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(3293), 1, anon_sym_LPAREN, - ACTIONS(3295), 1, + anon_sym_LBRACE, + anon_sym_where, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [9733] = 36, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(930), 1, anon_sym_DOLLAR, + ACTIONS(946), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(952), 1, + anon_sym_0b, + ACTIONS(972), 1, + aux_sym_unquoted_token1, + ACTIONS(974), 1, + sym_raw_string_begin, ACTIONS(3297), 1, - anon_sym_LBRACE, - ACTIONS(3299), 1, - anon_sym_DOT_DOT, + anon_sym_null, ACTIONS(3301), 1, - anon_sym_LPAREN2, + anon_sym_LBRACK, + ACTIONS(3303), 1, + anon_sym_LPAREN, ACTIONS(3305), 1, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACE, ACTIONS(3307), 1, - aux_sym__val_number_decimal_token2, + anon_sym_DOT_DOT, + ACTIONS(3309), 1, + anon_sym_LPAREN2, ACTIONS(3313), 1, - anon_sym_0b, - ACTIONS(3317), 1, - sym_val_date, + aux_sym__val_number_decimal_token2, ACTIONS(3319), 1, - anon_sym_DQUOTE, + sym_val_date, ACTIONS(3321), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(3323), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(3325), 1, - anon_sym_DOLLAR_SQUOTE, + anon_sym_BQUOTE, ACTIONS(3327), 1, - anon_sym_DOLLAR_DQUOTE, + anon_sym_DOLLAR_SQUOTE, ACTIONS(3329), 1, - aux_sym_unquoted_token1, - ACTIONS(3331), 1, - sym_raw_string_begin, - STATE(1375), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(1373), 1, sym_comment, - STATE(1841), 1, + STATE(2541), 1, sym__val_number_decimal, - STATE(2116), 1, + STATE(2897), 1, sym_val_bool, - STATE(2168), 1, - sym__inter_single_quotes, - STATE(2176), 1, - sym_unquoted, - STATE(2178), 1, + STATE(3146), 1, sym__val_number, - STATE(2179), 1, + STATE(3245), 1, + sym_unquoted, + STATE(3261), 1, + sym__inter_single_quotes, + STATE(3262), 1, sym__inter_double_quotes, - ACTIONS(3285), 2, + ACTIONS(954), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3295), 2, anon_sym_true, anon_sym_false, - ACTIONS(3303), 2, + ACTIONS(3311), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3309), 2, + ACTIONS(3315), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3315), 2, - anon_sym_0o, - anon_sym_0x, - STATE(2174), 2, + STATE(3243), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(5168), 2, + STATE(5082), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3289), 3, + ACTIONS(3299), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3311), 3, + ACTIONS(3317), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2160), 4, + STATE(2543), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(2171), 13, + STATE(3144), 13, sym_val_nothing, sym_val_variable, sym_val_cellpath, @@ -147783,12 +147852,14 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9939] = 4, + [9867] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1376), 1, + ACTIONS(2110), 1, + anon_sym_PIPE, + STATE(1374), 1, sym_comment, - ACTIONS(3335), 10, + ACTIONS(2891), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147799,9 +147870,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3333), 48, + ACTIONS(2888), 48, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -147831,6 +147901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -147848,12 +147919,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10008] = 4, + [9939] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1377), 1, + ACTIONS(3083), 1, + anon_sym_RPAREN, + STATE(1375), 1, sym_comment, - ACTIONS(3339), 10, + ACTIONS(3335), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3331), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147864,9 +147940,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3337), 48, + ACTIONS(3333), 45, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -147890,8 +147965,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, @@ -147913,12 +147986,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10077] = 4, + [10012] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1378), 1, + STATE(1376), 1, sym_comment, - ACTIONS(3341), 10, + ACTIONS(3338), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147929,7 +148002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3343), 48, + ACTIONS(3340), 48, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147978,85 +148051,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10146] = 12, + [10081] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3345), 1, - anon_sym_DOT, - STATE(1379), 1, - sym_comment, - STATE(1434), 1, - sym__immediate_decimal, - ACTIONS(3347), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3349), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(698), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1596), 41, - anon_sym_in, + ACTIONS(2541), 1, sym__newline, + ACTIONS(3346), 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, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [10231] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1380), 1, + STATE(1353), 1, + aux_sym__repeat_newline, + STATE(1377), 1, sym_comment, - ACTIONS(3084), 10, + ACTIONS(3342), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148067,9 +148073,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3082), 48, + ACTIONS(3344), 45, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -148093,8 +148098,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, @@ -148116,17 +148119,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10300] = 6, + [10156] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3082), 1, - anon_sym_RPAREN, - STATE(1381), 1, + STATE(1378), 1, sym_comment, - ACTIONS(3355), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3351), 10, + ACTIONS(3350), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148137,8 +148135,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3353), 45, + ACTIONS(3348), 48, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -148162,73 +148161,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [10373] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1357), 1, - aux_sym__block_body_repeat1, - STATE(1382), 1, - sym_comment, - ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3042), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3044), 45, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, @@ -148250,18 +148184,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10446] = 7, + [10225] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2557), 1, - sym__newline, - ACTIONS(3362), 1, - anon_sym_SEMI, - STATE(1355), 1, - aux_sym__repeat_newline, - STATE(1383), 1, + STATE(1379), 1, sym_comment, - ACTIONS(3358), 10, + ACTIONS(3352), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148272,7 +148200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3360), 45, + ACTIONS(3354), 48, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148297,10 +148225,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -148318,12 +148249,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10521] = 4, + [10294] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1384), 1, + STATE(1380), 1, sym_comment, - ACTIONS(3364), 10, + ACTIONS(3085), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148334,8 +148265,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3366), 48, + ACTIONS(3083), 48, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -148365,7 +148297,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -148383,12 +148314,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10590] = 4, + [10363] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1385), 1, + STATE(1381), 1, sym_comment, - ACTIONS(3368), 10, + ACTIONS(3356), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148399,7 +148330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3370), 48, + ACTIONS(3358), 48, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148448,179 +148379,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10659] = 12, + [10432] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1649), 1, + ACTIONS(1584), 1, anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(1588), 1, anon_sym_LPAREN2, - ACTIONS(3372), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(3360), 1, anon_sym_DOT, - STATE(1386), 1, - sym_comment, - STATE(1443), 1, - sym__immediate_decimal, - ACTIONS(3374), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3376), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(929), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1596), 40, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [10743] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - STATE(1387), 1, - sym_comment, - STATE(1486), 1, - sym__immediate_decimal, - ACTIONS(3378), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3380), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(723), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1596), 41, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [10825] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1639), 1, - sym__unquoted_pattern, - STATE(1388), 1, + STATE(1382), 1, sym_comment, - STATE(1471), 1, + STATE(1438), 1, sym__immediate_decimal, - ACTIONS(3378), 2, + ACTIONS(3362), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3380), 2, + ACTIONS(3364), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(742), 2, + STATE(707), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1633), 6, + ACTIONS(1586), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1631), 41, + ACTIONS(1582), 41, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -148662,12 +148452,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [10907] = 4, + [10517] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1389), 1, + STATE(1383), 1, sym_comment, - ACTIONS(3182), 10, + ACTIONS(3368), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148678,8 +148468,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3184), 47, + ACTIONS(3366), 48, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -148726,56 +148517,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10975] = 13, + [10586] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3388), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3395), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3398), 1, - aux_sym__val_number_decimal_token2, - STATE(2103), 1, - sym__val_number_decimal, - STATE(4476), 1, - sym_env_var, - STATE(5052), 1, - sym_cmd_identifier, - ACTIONS(3382), 2, + STATE(1350), 1, + aux_sym__block_body_repeat1, + STATE(1384), 1, + sym_comment, + ACTIONS(153), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3040), 10, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3401), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(1390), 2, - sym_comment, - aux_sym_pipe_element_parenthesized_repeat2, - ACTIONS(3393), 6, anon_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(3391), 17, + ACTIONS(3042), 45, sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(3385), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -148799,12 +148563,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [11061] = 4, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_where, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [10659] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1391), 1, + STATE(1385), 1, sym_comment, - ACTIONS(3351), 10, + ACTIONS(3331), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148815,7 +148600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3353), 47, + ACTIONS(3333), 47, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148863,38 +148648,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11129] = 13, + [10727] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(1671), 1, + anon_sym_DOLLAR, + ACTIONS(1673), 1, + anon_sym_LPAREN2, + ACTIONS(3370), 1, + anon_sym_DOT, + STATE(1386), 1, + sym_comment, + STATE(1439), 1, + sym__immediate_decimal, + ACTIONS(3372), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3374), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(930), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1586), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1582), 40, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [10811] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3410), 1, + ACTIONS(3382), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3417), 1, + ACTIONS(3389), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3420), 1, + ACTIONS(3392), 1, aux_sym__val_number_decimal_token2, - STATE(2103), 1, + STATE(2091), 1, sym__val_number_decimal, - STATE(4750), 1, + STATE(4409), 1, sym_env_var, - STATE(5052), 1, + STATE(4941), 1, sym_cmd_identifier, - ACTIONS(3404), 2, + ACTIONS(3376), 2, anon_sym_export, anon_sym_in, - ACTIONS(3423), 2, + ACTIONS(3395), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(1392), 2, + STATE(1387), 2, sym_comment, - aux_sym_pipe_element_repeat2, - ACTIONS(3415), 6, + aux_sym_pipe_element_parenthesized_repeat2, + ACTIONS(3387), 6, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3413), 17, + ACTIONS(3385), 17, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -148912,7 +148769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - ACTIONS(3407), 23, + ACTIONS(3379), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -148936,213 +148793,101 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [11215] = 33, + [10897] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1386), 1, - anon_sym_LPAREN, - ACTIONS(1390), 1, - anon_sym_DOLLAR, - ACTIONS(1406), 1, - anon_sym_0b, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1418), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(1420), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(1502), 1, + ACTIONS(3404), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3411), 1, aux_sym__val_number_decimal_token1, - ACTIONS(1504), 1, + ACTIONS(3414), 1, aux_sym__val_number_decimal_token2, - ACTIONS(1578), 1, - anon_sym_LBRACK, - ACTIONS(3426), 1, - anon_sym_null, - ACTIONS(3428), 1, - anon_sym_LBRACE, - ACTIONS(3430), 1, - anon_sym_DOT_DOT, - ACTIONS(3434), 1, - sym_val_date, - STATE(1393), 1, - sym_comment, - STATE(3676), 1, + STATE(2091), 1, sym__val_number_decimal, - STATE(3846), 1, - sym_val_variable, - STATE(4031), 1, - sym_expr_parenthesized, - STATE(4130), 1, - sym__val_number, - STATE(4369), 1, - sym__inter_double_quotes, - STATE(4504), 1, - sym__inter_single_quotes, - STATE(4768), 1, - sym_block, - ACTIONS(1408), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1482), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1506), 2, + STATE(4687), 1, + sym_env_var, + STATE(4941), 1, + sym_cmd_identifier, + ACTIONS(3398), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3417), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3432), 2, + STATE(1388), 2, + sym_comment, + aux_sym_pipe_element_repeat2, + ACTIONS(3409), 6, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3407), 17, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(4772), 2, - sym_val_range, - sym__value, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1404), 6, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(4452), 13, - sym_val_nothing, - sym_val_bool, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [11340] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1376), 1, - anon_sym_null, - ACTIONS(1386), 1, - anon_sym_LPAREN, - ACTIONS(1398), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1400), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(1406), 1, - anon_sym_0b, - ACTIONS(1412), 1, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(1414), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, anon_sym_BQUOTE, - ACTIONS(1424), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(1568), 1, - anon_sym_DOT_DOT, - ACTIONS(2656), 1, - anon_sym_DOLLAR, - ACTIONS(2658), 1, - anon_sym_LBRACE, - ACTIONS(2662), 1, - sym_val_date, - ACTIONS(3436), 1, - sym__newline, - ACTIONS(3438), 1, - anon_sym_LBRACK, - STATE(1394), 1, - sym_comment, - STATE(1424), 1, - aux_sym__match_pattern_list_body_repeat1, - STATE(2247), 1, - aux_sym__types_body_repeat1, - STATE(3555), 1, - sym__val_number_decimal, - STATE(3756), 1, - sym_expr_parenthesized, - STATE(3757), 1, - sym_val_variable, - STATE(4130), 1, - sym__val_number, - STATE(4265), 1, - sym_val_bool, - STATE(4441), 1, - sym__match_pattern_list, - ACTIONS(1374), 2, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + ACTIONS(3401), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_true, anon_sym_false, - ACTIONS(1396), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(1402), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(1408), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4325), 2, - sym__match_pattern_expression, - sym__unquoted_in_list, - STATE(4440), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4978), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(1378), 3, + anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(1404), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4447), 8, - sym__match_pattern_record, - sym_val_nothing, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [11473] = 6, - ACTIONS(103), 1, + [10983] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3442), 1, - sym__newline, - ACTIONS(3445), 1, - sym__space, - ACTIONS(3448), 1, - sym_raw_string_begin, - STATE(1395), 2, + STATE(1389), 1, sym_comment, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(3440), 52, + ACTIONS(3117), 10, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3119), 47, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, - aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -149156,32 +148901,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, anon_sym_LBRACE, - anon_sym_DOT_DOT, + anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -149189,26 +148930,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11544] = 11, + [11051] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, + ACTIONS(1584), 1, + anon_sym_DOLLAR, + ACTIONS(1588), 1, + anon_sym_LPAREN2, + ACTIONS(1598), 1, sym__unquoted_pattern, - ACTIONS(1649), 1, + STATE(1390), 1, + sym_comment, + STATE(1466), 1, + sym__immediate_decimal, + ACTIONS(3420), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3422), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(809), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1586), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1582), 41, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [11133] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1584), 1, anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(1588), 1, anon_sym_LPAREN2, - STATE(1396), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + STATE(1391), 1, sym_comment, - STATE(1504), 1, + STATE(1468), 1, sym__immediate_decimal, - ACTIONS(3450), 2, + ACTIONS(3420), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3452), 2, + ACTIONS(3422), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1343), 2, + STATE(846), 2, sym__expr_parenthesized_immediate, sym_val_variable, ACTIONS(1633), 6, @@ -149218,8 +149030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1631), 40, - ts_builtin_sym_end, + ACTIONS(1631), 41, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -149232,6 +149043,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, @@ -149259,36 +149072,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [11625] = 11, + [11215] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1641), 1, sym__unquoted_pattern, - ACTIONS(1649), 1, + ACTIONS(1671), 1, anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(1673), 1, anon_sym_LPAREN2, - STATE(1397), 1, + STATE(1392), 1, sym_comment, - STATE(1505), 1, + STATE(1495), 1, sym__immediate_decimal, - ACTIONS(3450), 2, + ACTIONS(3424), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3452), 2, + ACTIONS(3426), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1311), 2, + STATE(1341), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 6, + ACTIONS(1633), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 40, + ACTIONS(1631), 40, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -149329,20 +149142,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [11706] = 7, + [11296] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3391), 1, + ACTIONS(3385), 1, sym_raw_string_begin, - ACTIONS(3454), 1, + ACTIONS(3428), 1, sym__newline, - ACTIONS(3456), 1, + ACTIONS(3430), 1, sym__space, - STATE(1395), 1, - aux_sym_pipe_element_parenthesized_repeat1, - STATE(1398), 1, + STATE(1393), 1, sym_comment, - ACTIONS(3393), 52, + STATE(1399), 1, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(3387), 52, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -149395,7 +149208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11779] = 33, + [11369] = 33, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1386), 1, @@ -149416,52 +149229,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, ACTIONS(1426), 1, sym_raw_string_begin, - ACTIONS(1502), 1, + ACTIONS(1482), 1, aux_sym__val_number_decimal_token1, - ACTIONS(1504), 1, + ACTIONS(1484), 1, aux_sym__val_number_decimal_token2, ACTIONS(1578), 1, anon_sym_LBRACK, - ACTIONS(3426), 1, + ACTIONS(3432), 1, anon_sym_null, - ACTIONS(3428), 1, + ACTIONS(3434), 1, anon_sym_LBRACE, - ACTIONS(3430), 1, + ACTIONS(3436), 1, anon_sym_DOT_DOT, - ACTIONS(3434), 1, + ACTIONS(3440), 1, sym_val_date, - STATE(1399), 1, + STATE(1394), 1, sym_comment, - STATE(3676), 1, + STATE(3759), 1, sym__val_number_decimal, - STATE(3846), 1, + STATE(3879), 1, sym_val_variable, - STATE(4025), 1, + STATE(4014), 1, sym_expr_parenthesized, - STATE(4130), 1, + STATE(4361), 1, sym__val_number, - STATE(4369), 1, - sym__inter_double_quotes, - STATE(4504), 1, + STATE(4595), 1, sym__inter_single_quotes, - STATE(4624), 1, + STATE(4596), 1, + sym__inter_double_quotes, + STATE(4674), 1, sym_block, ACTIONS(1408), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(1482), 2, + ACTIONS(1462), 2, anon_sym_true, anon_sym_false, - ACTIONS(1506), 2, + ACTIONS(1486), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3432), 2, + ACTIONS(3438), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(4766), 2, + STATE(4709), 2, sym_val_range, sym__value, - STATE(3505), 4, + STATE(3638), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, @@ -149473,7 +149286,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(4452), 13, + STATE(4604), 13, sym_val_nothing, sym_val_bool, sym_val_cellpath, @@ -149487,14 +149300,180 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [11904] = 6, + [11494] = 37, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1376), 1, + anon_sym_null, + ACTIONS(1386), 1, + anon_sym_LPAREN, + ACTIONS(1398), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1400), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(1406), 1, + anon_sym_0b, + ACTIONS(1412), 1, + anon_sym_DQUOTE, + ACTIONS(1414), 1, + anon_sym_SQUOTE, + ACTIONS(1416), 1, + anon_sym_BQUOTE, + ACTIONS(1424), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(1426), 1, + sym_raw_string_begin, + ACTIONS(1560), 1, + anon_sym_DOT_DOT, + ACTIONS(2650), 1, + anon_sym_DOLLAR, + ACTIONS(2652), 1, + anon_sym_LBRACE, + ACTIONS(2654), 1, + sym_val_date, + ACTIONS(3442), 1, + sym__newline, + ACTIONS(3444), 1, + anon_sym_LBRACK, + STATE(1395), 1, + sym_comment, + STATE(1419), 1, + aux_sym__match_pattern_list_body_repeat1, + STATE(2250), 1, + aux_sym__types_body_repeat1, + STATE(3591), 1, + sym__val_number_decimal, + STATE(3839), 1, + sym_expr_parenthesized, + STATE(3841), 1, + sym_val_variable, + STATE(4190), 1, + sym_val_bool, + STATE(4361), 1, + sym__val_number, + STATE(4619), 1, + sym__match_pattern_list, + ACTIONS(1374), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1396), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(1402), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(1408), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4132), 2, + sym__match_pattern_expression, + sym__unquoted_in_list, + STATE(4618), 2, + sym__match_pattern_value, + sym_val_range, + STATE(5078), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(1378), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(1404), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3638), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4622), 8, + sym__match_pattern_record, + sym_val_nothing, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [11627] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(1671), 1, + anon_sym_DOLLAR, + ACTIONS(1673), 1, + anon_sym_LPAREN2, + STATE(1396), 1, + sym_comment, + STATE(1503), 1, + sym__immediate_decimal, + ACTIONS(3424), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3426), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1263), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1586), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1582), 40, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [11708] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3458), 1, + ACTIONS(3446), 1, anon_sym_DOT, - ACTIONS(3460), 1, + ACTIONS(3448), 1, aux_sym__immediate_decimal_token5, - STATE(1400), 1, + STATE(1397), 1, sym_comment, ACTIONS(739), 8, anon_sym_GT2, @@ -149552,14 +149531,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [11975] = 6, + [11779] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3462), 1, + ACTIONS(3450), 1, aux_sym__immediate_decimal_token1, - ACTIONS(3464), 1, + ACTIONS(3452), 1, aux_sym__immediate_decimal_token5, - STATE(1401), 1, + STATE(1398), 1, sym_comment, ACTIONS(747), 8, anon_sym_GT2, @@ -149617,16 +149596,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, + [11850] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3456), 1, + sym__newline, + ACTIONS(3459), 1, + sym__space, + ACTIONS(3462), 1, + sym_raw_string_begin, + STATE(1399), 2, + sym_comment, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(3454), 52, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [11921] = 33, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1386), 1, + anon_sym_LPAREN, + ACTIONS(1390), 1, + anon_sym_DOLLAR, + ACTIONS(1406), 1, + anon_sym_0b, + ACTIONS(1412), 1, + anon_sym_DQUOTE, + ACTIONS(1414), 1, + anon_sym_SQUOTE, + ACTIONS(1416), 1, + anon_sym_BQUOTE, + ACTIONS(1418), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(1420), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1426), 1, + sym_raw_string_begin, + ACTIONS(1482), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1484), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(1578), 1, + anon_sym_LBRACK, + ACTIONS(3432), 1, + anon_sym_null, + ACTIONS(3434), 1, + anon_sym_LBRACE, + ACTIONS(3436), 1, + anon_sym_DOT_DOT, + ACTIONS(3440), 1, + sym_val_date, + STATE(1400), 1, + sym_comment, + STATE(3759), 1, + sym__val_number_decimal, + STATE(3879), 1, + sym_val_variable, + STATE(4011), 1, + sym_expr_parenthesized, + STATE(4361), 1, + sym__val_number, + STATE(4595), 1, + sym__inter_single_quotes, + STATE(4596), 1, + sym__inter_double_quotes, + STATE(4821), 1, + sym_block, + ACTIONS(1408), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1462), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1486), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3438), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(4669), 2, + sym_val_range, + sym__value, + STATE(3638), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1404), 6, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(4604), 13, + sym_val_nothing, + sym_val_bool, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, [12046] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3464), 1, + anon_sym_DOT, ACTIONS(3466), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3468), 1, aux_sym__immediate_decimal_token5, - STATE(1402), 1, + STATE(1401), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(739), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -149635,7 +149771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(749), 45, + ACTIONS(741), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -149681,23 +149817,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12116] = 5, + [12116] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3470), 1, - aux_sym__immediate_decimal_token5, - STATE(1403), 1, + ACTIONS(1756), 1, + anon_sym_LPAREN2, + ACTIONS(1766), 1, + sym__unquoted_pattern, + ACTIONS(3468), 1, + anon_sym_DOT_DOT2, + ACTIONS(3472), 1, + sym_filesize_unit, + ACTIONS(3474), 1, + sym_duration_unit, + STATE(1402), 1, sym_comment, - ACTIONS(771), 8, + STATE(4726), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3470), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(793), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(773), 46, + ACTIONS(890), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -149731,7 +149877,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -149741,26 +149886,31 @@ 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, - [12184] = 5, - ACTIONS(103), 1, + [12196] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3474), 1, - sym__space, - ACTIONS(3477), 1, - sym_raw_string_begin, - STATE(1404), 2, + ACTIONS(3476), 1, + sym__newline, + STATE(1403), 2, + aux_sym__repeat_newline, sym_comment, - aux_sym_pipe_element_repeat1, - ACTIONS(3472), 52, + ACTIONS(1940), 10, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1935), 43, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, - aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -149774,7 +149924,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, @@ -149783,23 +149932,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token5, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, anon_sym_LBRACE, - anon_sym_DOT_DOT, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -149807,31 +149949,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12252] = 5, - ACTIONS(3), 1, + [12264] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3479), 1, - sym__newline, - STATE(1405), 2, - aux_sym__repeat_newline, + ACTIONS(3481), 1, + sym__space, + ACTIONS(3484), 1, + sym_raw_string_begin, + STATE(1404), 2, sym_comment, - ACTIONS(1960), 10, + aux_sym_pipe_element_repeat1, + ACTIONS(3479), 52, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1955), 43, - sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, + aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -149845,6 +149979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, @@ -149853,16 +149988,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token5, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, anon_sym_LBRACE, + anon_sym_DOT_DOT, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -149870,87 +150012,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12320] = 11, - ACTIONS(3), 1, + [12332] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - sym__unquoted_pattern, - ACTIONS(3482), 1, - anon_sym_DOT_DOT2, - ACTIONS(3486), 1, - sym_filesize_unit, - ACTIONS(3488), 1, - sym_duration_unit, - STATE(1406), 1, + STATE(1405), 1, sym_comment, - STATE(4633), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3484), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(968), 42, + ACTIONS(3486), 2, + sym_raw_string_begin, + sym__space, + ACTIONS(864), 53, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [12400] = 6, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [12398] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3413), 1, + ACTIONS(3407), 1, sym_raw_string_begin, - ACTIONS(3490), 1, + ACTIONS(3488), 1, sym__space, STATE(1404), 1, aux_sym_pipe_element_repeat1, - STATE(1407), 1, + STATE(1406), 1, sym_comment, - ACTIONS(3415), 52, + ACTIONS(3409), 52, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -150003,14 +150138,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12470] = 6, + [12468] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3492), 1, - anon_sym_DOT, - ACTIONS(3494), 1, + ACTIONS(3448), 1, aux_sym__immediate_decimal_token5, - STATE(1408), 1, + STATE(1407), 1, sym_comment, ACTIONS(739), 8, anon_sym_GT2, @@ -150021,8 +150154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(741), 45, - ts_builtin_sym_end, + ACTIONS(741), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150035,7 +150167,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -150067,76 +150201,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12540] = 4, - ACTIONS(103), 1, + [12536] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1409), 1, + ACTIONS(3490), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3492), 1, + aux_sym__immediate_decimal_token5, + STATE(1408), 1, sym_comment, - ACTIONS(3496), 2, - sym_raw_string_begin, - sym__space, - ACTIONS(858), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + ACTIONS(747), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(749), 45, + ts_builtin_sym_end, anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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_LBRACE, - anon_sym_DOT_DOT, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, [12606] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3460), 1, + ACTIONS(3494), 1, aux_sym__immediate_decimal_token5, - STATE(1410), 1, + STATE(1409), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(771), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -150145,7 +150281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(741), 46, + ACTIONS(773), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150193,165 +150329,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_duration_unit, [12674] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(1411), 1, - sym_comment, - ACTIONS(3500), 2, - sym_raw_string_begin, - sym__space, - ACTIONS(3498), 52, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [12739] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3505), 1, - anon_sym_null, - ACTIONS(3511), 1, - anon_sym_LBRACK, - ACTIONS(3514), 1, - anon_sym_LPAREN, - ACTIONS(3517), 1, - anon_sym_DOLLAR, - ACTIONS(3520), 1, - anon_sym_LBRACE, - ACTIONS(3523), 1, - anon_sym_DOT_DOT, - ACTIONS(3529), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3532), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3541), 1, - anon_sym_0b, - ACTIONS(3547), 1, - sym_val_date, - ACTIONS(3550), 1, - anon_sym_DQUOTE, - ACTIONS(3553), 1, - anon_sym_SQUOTE, - ACTIONS(3556), 1, - anon_sym_BQUOTE, - ACTIONS(3559), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3562), 1, - sym_raw_string_begin, - STATE(3672), 1, - sym__val_number_decimal, - STATE(4130), 1, - sym__val_number, - STATE(4138), 1, - sym_expr_parenthesized, - STATE(4139), 1, - sym_val_variable, - STATE(4441), 1, - sym__match_pattern_list, - STATE(4695), 1, - sym_val_bool, - ACTIONS(3502), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3526), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3535), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3544), 2, - anon_sym_0o, - anon_sym_0x, - STATE(1412), 2, - sym_comment, - aux_sym__match_pattern_list_body_repeat1, - STATE(4440), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4670), 2, - sym__match_pattern_expression, - sym__unquoted_in_list, - STATE(4978), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(3508), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3538), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4447), 8, - sym__match_pattern_record, - sym_val_nothing, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [12864] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3565), 1, - aux_sym__immediate_decimal_token5, - STATE(1413), 1, + STATE(1410), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(747), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -150360,8 +150342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(773), 45, - ts_builtin_sym_end, + ACTIONS(749), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150374,7 +150355,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -150406,16 +150389,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12931] = 6, + [12739] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3567), 1, - anon_sym_DOT, - ACTIONS(3569), 1, + ACTIONS(3496), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3498), 1, aux_sym__immediate_decimal_token5, - STATE(1414), 1, + STATE(1411), 1, sym_comment, - ACTIONS(1738), 7, + ACTIONS(1740), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -150423,7 +150406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 45, + ACTIONS(1738), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150469,34 +150452,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [13000] = 11, + [12808] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(1820), 1, - sym__unquoted_pattern, - ACTIONS(3571), 1, + STATE(1412), 1, + sym_comment, + ACTIONS(874), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_DOT_DOT2, - ACTIONS(3575), 1, sym_filesize_unit, - ACTIONS(3577), 1, - sym_duration_unit, - STATE(1415), 1, - sym_comment, - STATE(4753), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3573), 2, + sym__unquoted_pattern, + ACTIONS(876), 46, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(868), 5, + sym_duration_unit, + [12873] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1413), 1, + sym_comment, + ACTIONS(771), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(968), 41, - ts_builtin_sym_end, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(773), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150509,7 +150540,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -150528,6 +150561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -150537,12 +150571,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [13079] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [12938] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1416), 1, + STATE(1414), 1, sym_comment, - ACTIONS(2098), 10, + ACTIONS(2112), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -150553,7 +150590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2096), 44, + ACTIONS(2110), 44, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -150598,7 +150635,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [13144] = 36, + [13003] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3500), 1, + aux_sym__immediate_decimal_token5, + STATE(1415), 1, + sym_comment, + ACTIONS(771), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(773), 45, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [13070] = 36, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(191), 1, @@ -150611,78 +150710,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(1914), 1, + ACTIONS(1912), 1, aux_sym_unquoted_token1, - ACTIONS(2682), 1, + ACTIONS(2748), 1, anon_sym_LPAREN, - ACTIONS(2876), 1, + ACTIONS(2908), 1, anon_sym_LBRACK, - ACTIONS(2878), 1, + ACTIONS(2910), 1, anon_sym_DOLLAR, - ACTIONS(2880), 1, + ACTIONS(2912), 1, anon_sym_LBRACE, - ACTIONS(3581), 1, + ACTIONS(3504), 1, anon_sym_null, - ACTIONS(3585), 1, + ACTIONS(3508), 1, anon_sym_DOT_DOT, - ACTIONS(3589), 1, + ACTIONS(3512), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3591), 1, + ACTIONS(3514), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3595), 1, + ACTIONS(3518), 1, sym_val_date, - STATE(694), 1, + STATE(676), 1, sym__val_number, - STATE(1417), 1, + STATE(1416), 1, sym_comment, - STATE(3501), 1, + STATE(3612), 1, sym__val_number_decimal, - STATE(3714), 1, + STATE(3716), 1, sym_expr_parenthesized, - STATE(3715), 1, + STATE(3718), 1, sym_val_variable, - STATE(4049), 1, + STATE(4160), 1, sym__match_pattern_expression, - STATE(4052), 1, + STATE(4163), 1, sym__match_pattern_list, - STATE(4070), 1, + STATE(4170), 1, sym_unquoted, - STATE(4195), 1, + STATE(4338), 1, sym_val_bool, - STATE(4596), 1, + STATE(4488), 1, sym__match_pattern, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3579), 2, + ACTIONS(3502), 2, anon_sym_true, anon_sym_false, - ACTIONS(3587), 2, + ACTIONS(3510), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3593), 2, + ACTIONS(3516), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4051), 2, + STATE(4162), 2, sym__match_pattern_value, sym_val_range, - STATE(5173), 2, + STATE(5013), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(189), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3583), 3, + ACTIONS(3506), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2243), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4167), 8, + sym__match_pattern_record, + sym_val_nothing, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [13199] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(1417), 1, + sym_comment, + ACTIONS(3522), 2, + sym_raw_string_begin, + sym__space, + ACTIONS(3520), 52, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [13264] = 34, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3527), 1, + anon_sym_null, + ACTIONS(3533), 1, + anon_sym_LBRACK, + ACTIONS(3536), 1, + anon_sym_LPAREN, + ACTIONS(3539), 1, + anon_sym_DOLLAR, + ACTIONS(3542), 1, + anon_sym_LBRACE, + ACTIONS(3545), 1, + anon_sym_DOT_DOT, + ACTIONS(3551), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3554), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3563), 1, + anon_sym_0b, + ACTIONS(3569), 1, + sym_val_date, + ACTIONS(3572), 1, + anon_sym_DQUOTE, + ACTIONS(3575), 1, + anon_sym_SQUOTE, + ACTIONS(3578), 1, + anon_sym_BQUOTE, + ACTIONS(3581), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(3584), 1, + sym_raw_string_begin, + STATE(3713), 1, + sym__val_number_decimal, + STATE(4149), 1, + sym_expr_parenthesized, + STATE(4150), 1, + sym_val_variable, + STATE(4361), 1, + sym__val_number, + STATE(4619), 1, + sym__match_pattern_list, + STATE(4678), 1, + sym_val_bool, + ACTIONS(3524), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3548), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3557), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3566), 2, + anon_sym_0o, + anon_sym_0x, + STATE(1418), 2, + sym_comment, + aux_sym__match_pattern_list_body_repeat1, + STATE(4618), 2, + sym__match_pattern_value, + sym_val_range, + STATE(4727), 2, + sym__match_pattern_expression, + sym__unquoted_in_list, + STATE(5078), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(3530), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, + ACTIONS(3560), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3638), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4053), 8, + STATE(4622), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -150691,7 +150942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [13273] = 36, + [13389] = 36, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1376), 1, @@ -150714,35 +150965,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__unquoted_in_list_token1, ACTIONS(1426), 1, sym_raw_string_begin, - ACTIONS(1568), 1, + ACTIONS(1560), 1, anon_sym_DOT_DOT, - ACTIONS(2656), 1, + ACTIONS(2650), 1, anon_sym_DOLLAR, - ACTIONS(2658), 1, + ACTIONS(2652), 1, anon_sym_LBRACE, - ACTIONS(2662), 1, + ACTIONS(2654), 1, sym_val_date, - ACTIONS(3438), 1, + ACTIONS(3444), 1, anon_sym_LBRACK, - STATE(1412), 1, - aux_sym__match_pattern_list_body_repeat1, STATE(1418), 1, + aux_sym__match_pattern_list_body_repeat1, + STATE(1419), 1, sym_comment, - STATE(3555), 1, + STATE(3591), 1, sym__val_number_decimal, - STATE(3756), 1, + STATE(3839), 1, sym_expr_parenthesized, - STATE(3757), 1, + STATE(3841), 1, sym_val_variable, - STATE(4048), 1, - sym__match_pattern_expression, - STATE(4130), 1, - sym__val_number, - STATE(4265), 1, + STATE(4190), 1, sym_val_bool, - STATE(4326), 1, + STATE(4321), 1, + sym__match_pattern_expression, + STATE(4322), 1, sym__unquoted_in_list, - STATE(4441), 1, + STATE(4361), 1, + sym__val_number, + STATE(4619), 1, sym__match_pattern_list, ACTIONS(1374), 2, anon_sym_true, @@ -150756,10 +151007,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1408), 2, anon_sym_0o, anon_sym_0x, - STATE(4440), 2, + STATE(4618), 2, sym__match_pattern_value, sym_val_range, - STATE(4978), 2, + STATE(5078), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(1378), 3, @@ -150770,12 +151021,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3505), 4, + STATE(3638), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4447), 8, + STATE(4622), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -150784,16 +151035,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [13402] = 6, + [13518] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1756), 1, + anon_sym_LPAREN2, + ACTIONS(1830), 1, + sym__unquoted_pattern, + ACTIONS(3587), 1, + anon_sym_DOT_DOT2, + ACTIONS(3591), 1, + sym_filesize_unit, + ACTIONS(3593), 1, + sym_duration_unit, + STATE(1420), 1, + sym_comment, + STATE(4757), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3589), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(793), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(890), 41, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [13597] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3595), 1, + anon_sym_DOT, ACTIONS(3597), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3599), 1, aux_sym__immediate_decimal_token5, - STATE(1419), 1, + STATE(1421), 1, sym_comment, - ACTIONS(1728), 7, + ACTIONS(1730), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -150801,7 +151120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 45, + ACTIONS(1728), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150847,7 +151166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [13471] = 36, + [13666] = 36, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(191), 1, @@ -150860,78 +151179,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(1914), 1, + ACTIONS(1912), 1, aux_sym_unquoted_token1, - ACTIONS(2682), 1, + ACTIONS(2748), 1, anon_sym_LPAREN, - ACTIONS(2876), 1, + ACTIONS(2908), 1, anon_sym_LBRACK, - ACTIONS(2878), 1, + ACTIONS(2910), 1, anon_sym_DOLLAR, - ACTIONS(2880), 1, + ACTIONS(2912), 1, anon_sym_LBRACE, - ACTIONS(3581), 1, + ACTIONS(3504), 1, anon_sym_null, - ACTIONS(3585), 1, + ACTIONS(3508), 1, anon_sym_DOT_DOT, - ACTIONS(3589), 1, + ACTIONS(3512), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3591), 1, + ACTIONS(3514), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3595), 1, + ACTIONS(3518), 1, sym_val_date, - STATE(694), 1, + STATE(676), 1, sym__val_number, - STATE(1420), 1, + STATE(1422), 1, sym_comment, - STATE(3501), 1, + STATE(3612), 1, sym__val_number_decimal, - STATE(3714), 1, + STATE(3716), 1, sym_expr_parenthesized, - STATE(3715), 1, + STATE(3718), 1, sym_val_variable, - STATE(4049), 1, + STATE(4160), 1, sym__match_pattern_expression, - STATE(4052), 1, + STATE(4163), 1, sym__match_pattern_list, - STATE(4070), 1, + STATE(4170), 1, sym_unquoted, - STATE(4195), 1, + STATE(4338), 1, sym_val_bool, - STATE(4607), 1, + STATE(4458), 1, sym__match_pattern, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3579), 2, + ACTIONS(3502), 2, anon_sym_true, anon_sym_false, - ACTIONS(3587), 2, + ACTIONS(3510), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3593), 2, + ACTIONS(3516), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4051), 2, + STATE(4162), 2, sym__match_pattern_value, sym_val_range, - STATE(5173), 2, + STATE(5013), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(189), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3583), 3, + ACTIONS(3506), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2228), 4, + STATE(2243), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4053), 8, + STATE(4167), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -150940,12 +151259,107 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [13600] = 4, + [13795] = 36, ACTIONS(3), 1, anon_sym_POUND, - STATE(1421), 1, + ACTIONS(1376), 1, + anon_sym_null, + ACTIONS(1386), 1, + anon_sym_LPAREN, + ACTIONS(1398), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1400), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(1406), 1, + anon_sym_0b, + ACTIONS(1412), 1, + anon_sym_DQUOTE, + ACTIONS(1414), 1, + anon_sym_SQUOTE, + ACTIONS(1416), 1, + anon_sym_BQUOTE, + ACTIONS(1424), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(1426), 1, + sym_raw_string_begin, + ACTIONS(1560), 1, + anon_sym_DOT_DOT, + ACTIONS(2650), 1, + anon_sym_DOLLAR, + ACTIONS(2652), 1, + anon_sym_LBRACE, + ACTIONS(2654), 1, + sym_val_date, + ACTIONS(3444), 1, + anon_sym_LBRACK, + STATE(1418), 1, + aux_sym__match_pattern_list_body_repeat1, + STATE(1423), 1, + sym_comment, + STATE(3591), 1, + sym__val_number_decimal, + STATE(3839), 1, + sym_expr_parenthesized, + STATE(3841), 1, + sym_val_variable, + STATE(4134), 1, + sym__match_pattern_expression, + STATE(4135), 1, + sym__unquoted_in_list, + STATE(4190), 1, + sym_val_bool, + STATE(4361), 1, + sym__val_number, + STATE(4619), 1, + sym__match_pattern_list, + ACTIONS(1374), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1396), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(1402), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(1408), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4618), 2, + sym__match_pattern_value, + sym_val_range, + STATE(5078), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(1378), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(1404), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3638), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4622), 8, + sym__match_pattern_record, + sym_val_nothing, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [13924] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3466), 1, + aux_sym__immediate_decimal_token5, + STATE(1424), 1, sym_comment, - ACTIONS(849), 8, + ACTIONS(739), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -150954,7 +151368,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(851), 46, + ACTIONS(741), 45, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150967,9 +151382,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -151001,24 +151414,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [13665] = 5, + [13991] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3494), 1, + ACTIONS(3597), 1, aux_sym__immediate_decimal_token5, - STATE(1422), 1, + STATE(1425), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(1730), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(741), 45, - ts_builtin_sym_end, + ACTIONS(1728), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151031,7 +151442,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -151062,13 +151475,12 @@ 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, - [13732] = 4, + [14057] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1423), 1, + STATE(1426), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(771), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151077,7 +151489,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(749), 46, + ACTIONS(773), 45, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151090,9 +151503,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -151124,105 +151535,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [13797] = 36, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1376), 1, - anon_sym_null, - ACTIONS(1386), 1, - anon_sym_LPAREN, - ACTIONS(1398), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1400), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(1406), 1, - anon_sym_0b, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1424), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(1568), 1, - anon_sym_DOT_DOT, - ACTIONS(2656), 1, - anon_sym_DOLLAR, - ACTIONS(2658), 1, - anon_sym_LBRACE, - ACTIONS(2662), 1, - sym_val_date, - ACTIONS(3438), 1, - anon_sym_LBRACK, - STATE(1412), 1, - aux_sym__match_pattern_list_body_repeat1, - STATE(1424), 1, - sym_comment, - STATE(3555), 1, - sym__val_number_decimal, - STATE(3756), 1, - sym_expr_parenthesized, - STATE(3757), 1, - sym_val_variable, - STATE(4130), 1, - sym__val_number, - STATE(4145), 1, - sym__match_pattern_expression, - STATE(4149), 1, - sym__unquoted_in_list, - STATE(4265), 1, - sym_val_bool, - STATE(4441), 1, - sym__match_pattern_list, - ACTIONS(1374), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1396), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(1402), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(1408), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4440), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4978), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(1378), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(1404), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4447), 8, - sym__match_pattern_record, - sym_val_nothing, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [13926] = 4, + [14121] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1425), 1, + STATE(1427), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(874), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151231,7 +151549,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(773), 46, + ACTIONS(876), 45, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151244,9 +151563,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -151278,16 +151595,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [13991] = 6, + [14185] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3601), 1, + ACTIONS(3599), 1, aux_sym__immediate_decimal_token1, - ACTIONS(3603), 1, + ACTIONS(3601), 1, aux_sym__immediate_decimal_token5, - STATE(1426), 1, + STATE(1428), 1, sym_comment, - ACTIONS(1728), 7, + ACTIONS(1740), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151295,7 +151612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 44, + ACTIONS(1738), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -151340,24 +151657,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14059] = 6, + [14253] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3605), 1, - anon_sym_DOT, - ACTIONS(3607), 1, - aux_sym__immediate_decimal_token5, - STATE(1427), 1, + STATE(1429), 1, sym_comment, - ACTIONS(1738), 7, + ACTIONS(747), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(1736), 44, + ACTIONS(749), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -151402,21 +151716,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14127] = 4, + sym_duration_unit, + [14317] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1428), 1, + ACTIONS(3603), 1, + anon_sym_DOT, + ACTIONS(3605), 1, + aux_sym__immediate_decimal_token5, + STATE(1430), 1, sym_comment, - ACTIONS(849), 8, + ACTIONS(1730), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(851), 45, + ACTIONS(1728), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -151461,15 +151779,14 @@ 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, - [14191] = 5, + [14385] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3569), 1, + ACTIONS(3607), 1, aux_sym__immediate_decimal_token5, - STATE(1429), 1, + STATE(1431), 1, sym_comment, - ACTIONS(1738), 7, + ACTIONS(1808), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151477,7 +151794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 45, + ACTIONS(1806), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151523,22 +151840,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14257] = 4, + [14451] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1430), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(1946), 1, + anon_sym_LPAREN2, + ACTIONS(3609), 1, + anon_sym_DOT_DOT2, + STATE(1432), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(3611), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1944), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(773), 45, - ts_builtin_sym_end, + ACTIONS(1942), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151551,7 +151873,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -151570,7 +151894,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -151580,17 +151903,14 @@ 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, - [14321] = 5, + [14522] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3609), 1, + ACTIONS(3613), 1, aux_sym__immediate_decimal_token5, - STATE(1431), 1, + STATE(1433), 1, sym_comment, - ACTIONS(1804), 7, + ACTIONS(1808), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151598,7 +151918,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 45, + ACTIONS(1806), 44, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151611,9 +151932,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -151644,22 +151963,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14387] = 4, + [14587] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1432), 1, + STATE(1434), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(1740), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(749), 45, - ts_builtin_sym_end, + ACTIONS(1738), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151672,7 +151989,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -151703,13 +152022,12 @@ 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, - [14451] = 4, + [14650] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1433), 1, + STATE(1435), 1, sym_comment, - ACTIONS(1728), 7, + ACTIONS(1846), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151717,7 +152035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 45, + ACTIONS(1844), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151763,27 +152081,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14514] = 8, + [14713] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(3611), 1, - anon_sym_DOT_DOT2, - STATE(1434), 1, + STATE(1436), 1, sym_comment, - ACTIONS(3613), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 5, + ACTIONS(1808), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 42, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1806), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151817,6 +152128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -151826,12 +152138,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [14585] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [14776] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1435), 1, + ACTIONS(3605), 1, + aux_sym__immediate_decimal_token5, + STATE(1437), 1, sym_comment, - ACTIONS(1804), 7, + ACTIONS(1730), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151839,7 +152155,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 45, + ACTIONS(1728), 44, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151852,9 +152169,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -151885,27 +152200,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14648] = 8, + [14841] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, + ACTIONS(1956), 1, anon_sym_LPAREN2, + ACTIONS(1962), 1, + sym__unquoted_pattern, ACTIONS(3615), 1, anon_sym_DOT_DOT2, - STATE(1436), 1, + STATE(1438), 1, sym_comment, ACTIONS(3617), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 5, + ACTIONS(1954), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 42, + ACTIONS(1952), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151948,81 +152263,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [14719] = 4, + [14912] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1437), 1, - sym_comment, - ACTIONS(1872), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 45, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, + ACTIONS(1956), 1, 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, + ACTIONS(1962), 1, + sym__unquoted_pattern, + ACTIONS(3619), 1, + anon_sym_DOT_DOT2, + STATE(1439), 1, + sym_comment, + ACTIONS(3621), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14782] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3607), 1, - aux_sym__immediate_decimal_token5, - STATE(1438), 1, - sym_comment, - ACTIONS(1738), 7, + ACTIONS(1954), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 44, + ACTIONS(1952), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -152055,7 +152316,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -152065,16 +152325,12 @@ 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, - [14847] = 5, + [14982] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3619), 1, - aux_sym__immediate_decimal_token5, - STATE(1439), 1, + STATE(1440), 1, sym_comment, - ACTIONS(1804), 7, + ACTIONS(1846), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -152082,7 +152338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 44, + ACTIONS(1844), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -152127,23 +152383,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14912] = 6, + [15044] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3621), 1, - anon_sym_DOT, ACTIONS(3623), 1, + anon_sym_DOT, + ACTIONS(3625), 1, aux_sym__immediate_decimal_token5, - STATE(1440), 1, + STATE(1441), 1, sym_comment, - ACTIONS(1738), 6, + ACTIONS(1730), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1736), 43, + ACTIONS(1728), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152187,204 +152443,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [14978] = 8, + [15110] = 22, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(3625), 1, - anon_sym_DOT_DOT2, - STATE(1441), 1, - sym_comment, - ACTIONS(3627), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1964), 41, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [15048] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3629), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, ACTIONS(3631), 1, - aux_sym__immediate_decimal_token5, + aux_sym_cmd_identifier_token1, + ACTIONS(3635), 1, + anon_sym_LBRACK, + ACTIONS(3637), 1, + anon_sym_STAR2, STATE(1442), 1, sym_comment, - ACTIONS(1728), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1726), 43, + STATE(2106), 1, + sym__val_number_decimal, + STATE(3568), 1, + sym_val_string, + STATE(3611), 1, + sym_cmd_identifier, + STATE(4100), 1, + sym__command_name, + STATE(4102), 1, + sym_wild_card, + STATE(4103), 1, + sym_command_list, + STATE(4172), 1, + sym_scope_pattern, + ACTIONS(3627), 2, + anon_sym_export, anon_sym_in, + ACTIONS(3639), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3641), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3633), 4, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [15114] = 8, + STATE(2243), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3629), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [15208] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(3633), 1, - anon_sym_DOT_DOT2, STATE(1443), 1, sym_comment, - ACTIONS(3635), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 5, + ACTIONS(1740), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 41, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [15184] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1444), 1, - sym_comment, - ACTIONS(1728), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 44, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1738), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -152429,7 +152577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [15246] = 22, + [15270] = 22, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -152440,35 +152588,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3631), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3645), 1, + ACTIONS(3635), 1, anon_sym_LBRACK, - ACTIONS(3647), 1, + ACTIONS(3637), 1, anon_sym_STAR2, - STATE(1445), 1, + STATE(1444), 1, sym_comment, - STATE(2099), 1, + STATE(2106), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3568), 1, sym_val_string, - STATE(4342), 1, + STATE(3611), 1, + sym_cmd_identifier, + STATE(4100), 1, sym__command_name, - STATE(4343), 1, + STATE(4101), 1, sym_scope_pattern, - STATE(4344), 1, + STATE(4102), 1, sym_wild_card, - STATE(4346), 1, + STATE(4103), 1, sym_command_list, - ACTIONS(3637), 2, + ACTIONS(3627), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3641), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, ACTIONS(3643), 4, @@ -152476,12 +152624,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(2228), 4, + STATE(2243), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3629), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -152505,159 +152653,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [15344] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1856), 1, - anon_sym_DOT2, - STATE(423), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(441), 1, - sym_path, - STATE(923), 1, - sym_cell_path, - STATE(1446), 1, - sym_comment, - ACTIONS(1853), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(3653), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(1850), 29, - anon_sym_in, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [15416] = 22, + [15368] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(1946), 1, + anon_sym_LPAREN2, ACTIONS(3645), 1, - anon_sym_LBRACK, - ACTIONS(3647), 1, - anon_sym_STAR2, - STATE(1447), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4193), 1, - sym_scope_pattern, - STATE(4342), 1, - sym__command_name, - STATE(4344), 1, - sym_wild_card, - STATE(4346), 1, - sym_command_list, - ACTIONS(3637), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3657), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [15514] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1448), 1, + anon_sym_DOT_DOT2, + STATE(1445), 1, sym_comment, - ACTIONS(1804), 7, + ACTIONS(3647), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1944), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 44, + ACTIONS(1942), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -152690,7 +152706,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -152700,23 +152715,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, - [15576] = 4, + [15438] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1449), 1, + ACTIONS(3649), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3651), 1, + aux_sym__immediate_decimal_token5, + STATE(1446), 1, sym_comment, - ACTIONS(1872), 7, + ACTIONS(1740), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1870), 44, - ts_builtin_sym_end, + ACTIONS(1738), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152729,7 +152744,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -152758,86 +152775,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, - [15638] = 9, + [15504] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2266), 1, + ACTIONS(1842), 1, anon_sym_DOT2, - STATE(518), 1, + STATE(416), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(783), 1, + STATE(435), 1, sym_path, - STATE(1292), 1, + STATE(938), 1, sym_cell_path, - STATE(1450), 1, - sym_comment, - ACTIONS(1853), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(3653), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(1850), 29, - anon_sym_in, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [15709] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3659), 1, - aux_sym__immediate_decimal_token5, - STATE(1451), 1, + STATE(1447), 1, sym_comment, - ACTIONS(1804), 6, + ACTIONS(1889), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1802), 43, - anon_sym_in, + ACTIONS(3653), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -152850,8 +152807,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_RBRACE, + ACTIONS(1886), 29, + anon_sym_in, + anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -152870,7 +152829,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -152880,21 +152838,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15772] = 5, + [15576] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3623), 1, - aux_sym__immediate_decimal_token5, - STATE(1452), 1, + STATE(1448), 1, sym_comment, - ACTIONS(1738), 6, + ACTIONS(1808), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 43, + ACTIONS(1806), 44, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152907,9 +152865,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -152938,50 +152894,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15835] = 20, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [15638] = 20, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(251), 1, aux_sym_cmd_identifier_token1, - ACTIONS(843), 1, + ACTIONS(870), 1, sym_raw_string_begin, - ACTIONS(3224), 1, + ACTIONS(3273), 1, anon_sym_DQUOTE, - ACTIONS(3226), 1, + ACTIONS(3275), 1, anon_sym_SQUOTE, - ACTIONS(3228), 1, + ACTIONS(3277), 1, anon_sym_BQUOTE, - ACTIONS(3230), 1, + ACTIONS(3279), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3232), 1, + ACTIONS(3281), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3661), 1, + ACTIONS(3657), 1, anon_sym_LPAREN, - ACTIONS(3663), 1, + ACTIONS(3659), 1, anon_sym_DOLLAR, - STATE(1453), 1, + STATE(1449), 1, sym_comment, - STATE(2101), 1, + STATE(2087), 1, sym__val_number_decimal, - STATE(3063), 1, + STATE(2983), 1, sym__inter_single_quotes, - STATE(3066), 1, + STATE(3101), 1, sym__inter_double_quotes, ACTIONS(277), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3641), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2454), 4, + STATE(2508), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3031), 5, + STATE(3009), 5, sym_cmd_identifier, sym_expr_parenthesized, sym_val_variable, @@ -153011,56 +152969,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [15928] = 20, + [15731] = 22, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(251), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(843), 1, - sym_raw_string_begin, - ACTIONS(3224), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(3226), 1, + ACTIONS(93), 1, anon_sym_SQUOTE, - ACTIONS(3228), 1, + ACTIONS(95), 1, anon_sym_BQUOTE, - ACTIONS(3230), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3232), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3661), 1, - anon_sym_LPAREN, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - STATE(1454), 1, + ACTIONS(105), 1, + sym_raw_string_begin, + ACTIONS(3665), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3669), 1, + anon_sym_STAR2, + STATE(1450), 1, sym_comment, - STATE(2101), 1, + STATE(2000), 1, sym__val_number_decimal, - STATE(3063), 1, - sym__inter_single_quotes, - STATE(3066), 1, - sym__inter_double_quotes, - ACTIONS(277), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, + STATE(4323), 1, + sym_cmd_identifier, + STATE(4324), 1, + sym_val_string, + STATE(4414), 1, + sym__command_name, + STATE(4420), 1, + sym_scope_pattern, + STATE(4424), 1, + sym_wild_card, + STATE(4429), 1, + sym_command_list, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3641), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2454), 4, + ACTIONS(3661), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3643), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + STATE(490), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(2839), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(271), 23, + ACTIONS(3663), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -153084,58 +153044,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [16021] = 22, + [15828] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(91), 1, + ACTIONS(251), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(870), 1, + sym_raw_string_begin, + ACTIONS(3273), 1, anon_sym_DQUOTE, - ACTIONS(93), 1, + ACTIONS(3275), 1, anon_sym_SQUOTE, - ACTIONS(95), 1, + ACTIONS(3277), 1, anon_sym_BQUOTE, - ACTIONS(105), 1, - sym_raw_string_begin, - ACTIONS(3669), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3671), 1, - anon_sym_LBRACK, - ACTIONS(3673), 1, - anon_sym_STAR2, - STATE(1455), 1, + ACTIONS(3279), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3281), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3657), 1, + anon_sym_LPAREN, + ACTIONS(3659), 1, + anon_sym_DOLLAR, + STATE(1451), 1, sym_comment, - STATE(1976), 1, + STATE(2087), 1, sym__val_number_decimal, - STATE(4297), 1, - sym_cmd_identifier, - STATE(4298), 1, - sym_val_string, - STATE(4372), 1, - sym__command_name, - STATE(4373), 1, - sym_scope_pattern, - STATE(4377), 1, - sym_wild_card, - STATE(4378), 1, - sym_command_list, - ACTIONS(3649), 2, + STATE(2983), 1, + sym__inter_single_quotes, + STATE(3101), 1, + sym__inter_double_quotes, + ACTIONS(277), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3641), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3665), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3643), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - STATE(480), 4, + STATE(2508), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3667), 23, + STATE(2894), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(271), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -153159,23 +153117,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [16118] = 6, + [15921] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3675), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3677), 1, + ACTIONS(3671), 1, + anon_sym_DOT, + ACTIONS(3673), 1, aux_sym__immediate_decimal_token5, - STATE(1456), 1, + STATE(1452), 1, sym_comment, - ACTIONS(1728), 6, + ACTIONS(1730), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1726), 42, + ACTIONS(1728), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -153218,80 +153176,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16183] = 20, + [15986] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(19), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(958), 1, - sym_raw_string_begin, - ACTIONS(3263), 1, - anon_sym_DQUOTE, - ACTIONS(3265), 1, - anon_sym_SQUOTE, - ACTIONS(3267), 1, - anon_sym_BQUOTE, - ACTIONS(3269), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3271), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3679), 1, - anon_sym_LPAREN, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - STATE(1457), 1, + ACTIONS(3675), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3677), 1, + aux_sym__immediate_decimal_token5, + STATE(1453), 1, sym_comment, - STATE(2085), 1, - sym__val_number_decimal, - STATE(3091), 1, - sym__inter_single_quotes, - STATE(3098), 1, - sym__inter_double_quotes, - ACTIONS(45), 2, - anon_sym_export, + ACTIONS(1740), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1738), 42, + ts_builtin_sym_end, anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2472), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2962), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(39), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [16276] = 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_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [16051] = 22, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(91), 1, @@ -153302,47 +153246,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(105), 1, sym_raw_string_begin, - ACTIONS(3669), 1, + ACTIONS(3665), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3671), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3673), 1, + ACTIONS(3669), 1, anon_sym_STAR2, - STATE(1458), 1, + STATE(1454), 1, sym_comment, - STATE(1976), 1, + STATE(2000), 1, sym__val_number_decimal, - STATE(4297), 1, + STATE(4323), 1, sym_cmd_identifier, - STATE(4298), 1, + STATE(4324), 1, sym_val_string, - STATE(4372), 1, + STATE(4414), 1, sym__command_name, - STATE(4377), 1, + STATE(4424), 1, sym_wild_card, - STATE(4378), 1, + STATE(4429), 1, sym_command_list, - STATE(4593), 1, + STATE(4557), 1, sym_scope_pattern, - ACTIONS(3649), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3641), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3665), 2, + ACTIONS(3661), 2, anon_sym_export, anon_sym_in, - ACTIONS(3657), 3, + ACTIONS(3633), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - STATE(480), 4, + STATE(490), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3667), 23, + ACTIONS(3663), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -153366,25 +153310,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [16373] = 6, + [16148] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3683), 1, - anon_sym_DOT, - ACTIONS(3685), 1, - aux_sym__immediate_decimal_token5, - STATE(1459), 1, + ACTIONS(2192), 1, + anon_sym_DOT2, + STATE(547), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(712), 1, + sym_path, + STATE(1269), 1, + sym_cell_path, + STATE(1455), 1, sym_comment, - ACTIONS(1738), 6, + ACTIONS(1889), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1736), 42, + ACTIONS(3653), 12, ts_builtin_sym_end, - anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -153396,6 +153342,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(1886), 29, + anon_sym_in, anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, @@ -153415,7 +153363,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -153425,22 +153372,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16438] = 6, + [16219] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(1460), 1, + ACTIONS(3625), 1, + aux_sym__immediate_decimal_token5, + STATE(1456), 1, sym_comment, - ACTIONS(1619), 5, + ACTIONS(1730), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1706), 42, + sym__unquoted_pattern, + ACTIONS(1728), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153474,6 +153420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -153483,19 +153430,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16502] = 4, + [16282] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1461), 1, + ACTIONS(3679), 1, + aux_sym__immediate_decimal_token5, + STATE(1457), 1, sym_comment, - ACTIONS(1728), 6, + ACTIONS(1808), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1726), 43, + ACTIONS(1806), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153539,77 +153488,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16562] = 6, + [16345] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(1462), 1, + ACTIONS(19), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(974), 1, + sym_raw_string_begin, + ACTIONS(3321), 1, + anon_sym_DQUOTE, + ACTIONS(3323), 1, + anon_sym_SQUOTE, + ACTIONS(3325), 1, + anon_sym_BQUOTE, + ACTIONS(3327), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3329), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3681), 1, + anon_sym_LPAREN, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + STATE(1458), 1, sym_comment, - ACTIONS(996), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(994), 42, + STATE(2062), 1, + sym__val_number_decimal, + STATE(3261), 1, + sym__inter_single_quotes, + STATE(3262), 1, + sym__inter_double_quotes, + ACTIONS(45), 2, + anon_sym_export, anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [16626] = 4, + ACTIONS(3639), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3641), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2543), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3062), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(39), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [16438] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1463), 1, + STATE(1459), 1, sym_comment, - ACTIONS(1804), 6, + ACTIONS(2327), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1802), 43, + ACTIONS(2325), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153653,20 +153617,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16686] = 7, + [16498] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1623), 1, sym__entry_separator, - ACTIONS(3689), 1, + ACTIONS(3687), 1, anon_sym_RBRACE, - ACTIONS(3691), 1, + ACTIONS(3689), 1, sym_raw_string_begin, - STATE(1464), 1, + STATE(1460), 1, sym_comment, - STATE(1473), 1, + STATE(1476), 1, aux_sym__types_body_repeat2, - ACTIONS(3687), 45, + ACTIONS(3685), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -153712,22 +153676,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16752] = 6, + [16564] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, + ACTIONS(2554), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2556), 1, sym__unquoted_pattern, - STATE(1465), 1, + STATE(1461), 1, sym_comment, - ACTIONS(1016), 5, + ACTIONS(1615), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1018), 42, + ACTIONS(1689), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153770,79 +153734,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16816] = 7, + [16628] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1623), 1, sym__entry_separator, - ACTIONS(3696), 1, + ACTIONS(3693), 1, anon_sym_RBRACE, - ACTIONS(3699), 1, - sym_raw_string_begin, - STATE(1466), 1, - sym_comment, - STATE(1473), 1, - aux_sym__types_body_repeat2, - ACTIONS(3693), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [16882] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(3691), 1, + ACTIONS(3695), 1, sym_raw_string_begin, - ACTIONS(3702), 1, - anon_sym_RBRACE, - STATE(1467), 1, + STATE(1462), 1, sym_comment, - STATE(1473), 1, + STATE(1476), 1, aux_sym__types_body_repeat2, - ACTIONS(3687), 45, + ACTIONS(3691), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -153888,79 +153793,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16948] = 7, + [16694] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1623), 1, sym__entry_separator, - ACTIONS(3706), 1, - anon_sym_RBRACE, - ACTIONS(3708), 1, + ACTIONS(3695), 1, sym_raw_string_begin, - STATE(1468), 1, - sym_comment, - STATE(1473), 1, - aux_sym__types_body_repeat2, - ACTIONS(3704), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [17014] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(3706), 1, + ACTIONS(3697), 1, anon_sym_RBRACE, - ACTIONS(3708), 1, - sym_raw_string_begin, - STATE(1469), 1, + STATE(1463), 1, sym_comment, - STATE(1473), 1, + STATE(1476), 1, aux_sym__types_body_repeat2, - ACTIONS(3704), 45, + ACTIONS(3691), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154006,22 +153852,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17080] = 6, + [16760] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1598), 1, sym__unquoted_pattern, - ACTIONS(1968), 1, + ACTIONS(1946), 1, anon_sym_LPAREN2, - STATE(1470), 1, + STATE(1464), 1, sym_comment, - ACTIONS(1966), 5, + ACTIONS(1944), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 42, + ACTIONS(1942), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154064,22 +153910,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17144] = 6, + [16824] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2631), 1, + ACTIONS(1956), 1, anon_sym_LPAREN2, - ACTIONS(2633), 1, + ACTIONS(1962), 1, sym__unquoted_pattern, - STATE(1471), 1, + STATE(1465), 1, sym_comment, - ACTIONS(2569), 5, + ACTIONS(2576), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2567), 42, + ACTIONS(2574), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154122,19 +153968,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17208] = 4, + [16888] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1472), 1, + ACTIONS(1956), 1, + anon_sym_LPAREN2, + ACTIONS(1962), 1, + sym__unquoted_pattern, + STATE(1466), 1, sym_comment, - ACTIONS(2503), 6, + ACTIONS(1954), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(2501), 43, + ACTIONS(1952), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154168,7 +154017,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -154178,197 +154026,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17268] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3712), 1, - sym__entry_separator, - ACTIONS(3715), 1, - sym_raw_string_begin, - STATE(1473), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3710), 46, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [17330] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(3691), 1, - sym_raw_string_begin, - ACTIONS(3717), 1, - anon_sym_RBRACE, - STATE(1473), 1, - aux_sym__types_body_repeat2, - STATE(1474), 1, - sym_comment, - ACTIONS(3687), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [17396] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(3708), 1, - sym_raw_string_begin, - ACTIONS(3719), 1, - anon_sym_RBRACE, - STATE(1473), 1, - aux_sym__types_body_repeat2, - STATE(1475), 1, - sym_comment, - ACTIONS(3704), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [17462] = 5, + [16952] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3685), 1, - aux_sym__immediate_decimal_token5, - STATE(1476), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2513), 1, + anon_sym_LPAREN2, + STATE(1467), 1, sym_comment, - ACTIONS(1738), 6, + ACTIONS(2511), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1736), 42, - ts_builtin_sym_end, + ACTIONS(2509), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154381,7 +154054,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -154400,7 +154075,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -154410,19 +154084,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17524] = 4, + [17016] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1477), 1, - sym_comment, - ACTIONS(1872), 6, - anon_sym_GT2, + ACTIONS(2529), 1, + anon_sym_LPAREN2, + ACTIONS(2531), 1, + sym__unquoted_pattern, + STATE(1468), 1, + sym_comment, + ACTIONS(2527), 5, + anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1870), 43, + ACTIONS(2525), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154456,7 +154133,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -154466,81 +154142,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17584] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(3691), 1, - sym_raw_string_begin, - ACTIONS(3721), 1, - anon_sym_RBRACE, - STATE(1473), 1, - aux_sym__types_body_repeat2, - STATE(1478), 1, - sym_comment, - ACTIONS(3687), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [17650] = 6, + [17080] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(2566), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(2568), 1, sym__unquoted_pattern, - STATE(1479), 1, + STATE(1469), 1, sym_comment, - ACTIONS(2577), 5, + ACTIONS(2564), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2575), 42, + ACTIONS(2562), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154583,81 +154200,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17714] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(3708), 1, - sym_raw_string_begin, - ACTIONS(3723), 1, - anon_sym_RBRACE, - STATE(1473), 1, - aux_sym__types_body_repeat2, - STATE(1480), 1, - sym_comment, - ACTIONS(3704), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [17780] = 5, + [17144] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3725), 1, - aux_sym__immediate_decimal_token5, - STATE(1481), 1, + ACTIONS(2570), 1, + anon_sym_LPAREN2, + ACTIONS(2572), 1, + sym__unquoted_pattern, + STATE(1470), 1, sym_comment, - ACTIONS(1804), 6, + ACTIONS(996), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1802), 42, - ts_builtin_sym_end, + ACTIONS(994), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154670,7 +154228,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -154689,7 +154249,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -154699,22 +154258,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17842] = 6, + [17208] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2639), 1, + ACTIONS(2570), 1, anon_sym_LPAREN2, - ACTIONS(2641), 1, + ACTIONS(2572), 1, sym__unquoted_pattern, - STATE(1482), 1, + STATE(1471), 1, sym_comment, - ACTIONS(2637), 5, + ACTIONS(1004), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2635), 42, + ACTIONS(1012), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154757,20 +154316,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17906] = 7, + [17272] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1623), 1, + sym__entry_separator, + ACTIONS(3702), 1, + anon_sym_RBRACE, + ACTIONS(3705), 1, + sym_raw_string_begin, + STATE(1472), 1, + sym_comment, + STATE(1476), 1, + aux_sym__types_body_repeat2, + ACTIONS(3699), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [17338] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1623), 1, sym__entry_separator, - ACTIONS(3699), 1, + ACTIONS(3689), 1, sym_raw_string_begin, - ACTIONS(3727), 1, + ACTIONS(3708), 1, anon_sym_RBRACE, STATE(1473), 1, - aux_sym__types_body_repeat2, - STATE(1483), 1, sym_comment, - ACTIONS(3693), 45, + STATE(1476), 1, + aux_sym__types_body_repeat2, + ACTIONS(3685), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154816,20 +154434,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17972] = 7, + [17404] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1623), 1, sym__entry_separator, + ACTIONS(3689), 1, + sym_raw_string_begin, ACTIONS(3708), 1, + anon_sym_RBRACE, + STATE(1474), 1, + sym_comment, + STATE(1476), 1, + aux_sym__types_body_repeat2, + ACTIONS(3685), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [17470] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1623), 1, + sym__entry_separator, + ACTIONS(3705), 1, sym_raw_string_begin, - ACTIONS(3730), 1, + ACTIONS(3710), 1, anon_sym_RBRACE, - STATE(1473), 1, + STATE(1475), 1, + sym_comment, + STATE(1476), 1, aux_sym__types_body_repeat2, - STATE(1484), 1, + ACTIONS(3699), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [17536] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3715), 1, + sym__entry_separator, + ACTIONS(3718), 1, + sym_raw_string_begin, + STATE(1476), 2, sym_comment, - ACTIONS(3704), 45, + aux_sym__types_body_repeat2, + ACTIONS(3713), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154859,6 +154592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_PLUS2, anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_DOT_DOLLAR, @@ -154875,20 +154609,256 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [18038] = 7, + [17598] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1623), 1, sym__entry_separator, - ACTIONS(3708), 1, + ACTIONS(3695), 1, sym_raw_string_begin, - ACTIONS(3730), 1, + ACTIONS(3720), 1, anon_sym_RBRACE, - STATE(1473), 1, + STATE(1476), 1, aux_sym__types_body_repeat2, - STATE(1485), 1, + STATE(1477), 1, + sym_comment, + ACTIONS(3691), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [17664] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1623), 1, + sym__entry_separator, + ACTIONS(3695), 1, + sym_raw_string_begin, + ACTIONS(3722), 1, + anon_sym_RBRACE, + STATE(1476), 1, + aux_sym__types_body_repeat2, + STATE(1478), 1, + sym_comment, + ACTIONS(3691), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [17730] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1623), 1, + sym__entry_separator, + ACTIONS(3689), 1, + sym_raw_string_begin, + ACTIONS(3724), 1, + anon_sym_RBRACE, + STATE(1476), 1, + aux_sym__types_body_repeat2, + STATE(1479), 1, + sym_comment, + ACTIONS(3685), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [17796] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1623), 1, + sym__entry_separator, + ACTIONS(3689), 1, + sym_raw_string_begin, + ACTIONS(3726), 1, + anon_sym_RBRACE, + STATE(1476), 1, + aux_sym__types_body_repeat2, + STATE(1480), 1, + sym_comment, + ACTIONS(3685), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [17862] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1623), 1, + sym__entry_separator, + ACTIONS(3689), 1, + sym_raw_string_begin, + ACTIONS(3726), 1, + anon_sym_RBRACE, + STATE(1476), 1, + aux_sym__types_body_repeat2, + STATE(1481), 1, sym_comment, - ACTIONS(3704), 45, + ACTIONS(3685), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154934,22 +154904,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [18104] = 6, + [17928] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(1486), 1, + ACTIONS(3673), 1, + aux_sym__immediate_decimal_token5, + STATE(1482), 1, sym_comment, - ACTIONS(1976), 5, + ACTIONS(1730), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 42, + sym__unquoted_pattern, + ACTIONS(1728), 42, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154962,9 +154932,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -154983,6 +154951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -154992,22 +154961,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18168] = 6, + [17990] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(1487), 1, + ACTIONS(3728), 1, + aux_sym__immediate_decimal_token5, + STATE(1483), 1, sym_comment, - ACTIONS(2525), 5, + ACTIONS(1808), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2523), 42, + sym__unquoted_pattern, + ACTIONS(1806), 42, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155020,9 +154989,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -155041,6 +155008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -155050,14 +155018,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18232] = 5, - ACTIONS(103), 1, + [18052] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - STATE(1488), 1, + STATE(1484), 1, sym_comment, - ACTIONS(968), 18, + ACTIONS(1740), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1738), 43, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -155070,17 +155044,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, - ACTIONS(868), 29, - anon_sym_in, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [18112] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1485), 1, + sym_comment, + ACTIONS(1808), 6, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1806), 43, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -155091,93 +155112,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_LT2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18293] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(1489), 1, - sym_comment, - ACTIONS(3734), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3732), 46, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [18352] = 6, + [18172] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(1490), 1, + STATE(1486), 1, sym_comment, - ACTIONS(2637), 5, + ACTIONS(1846), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2635), 41, - ts_builtin_sym_end, + sym__unquoted_pattern, + ACTIONS(1844), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155190,7 +155155,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -155209,6 +155176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -155218,18 +155186,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18415] = 6, + [18232] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1623), 1, sym__entry_separator, - ACTIONS(3708), 1, + ACTIONS(3689), 1, sym_raw_string_begin, - STATE(1473), 1, + STATE(1476), 1, aux_sym__types_body_repeat2, - STATE(1491), 1, + STATE(1487), 1, sym_comment, - ACTIONS(3704), 45, + ACTIONS(3685), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -155275,19 +155243,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [18478] = 4, + [18295] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1492), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2513), 1, + anon_sym_LPAREN2, + STATE(1488), 1, sym_comment, - ACTIONS(2503), 6, + ACTIONS(2511), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(2501), 42, + ACTIONS(2509), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155320,7 +155291,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -155330,14 +155300,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18537] = 5, + [18358] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2533), 1, aux_sym_cmd_identifier_token2, - STATE(1493), 1, + STATE(1489), 1, sym_comment, - ACTIONS(2501), 18, + ACTIONS(890), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -155356,7 +155326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, - ACTIONS(2503), 29, + ACTIONS(793), 29, anon_sym_in, anon_sym_GT2, anon_sym_DASH2, @@ -155386,22 +155356,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18598] = 6, + [18419] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(1494), 1, + STATE(1490), 1, sym_comment, - ACTIONS(996), 5, + ACTIONS(2327), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(994), 41, + sym__unquoted_pattern, + ACTIONS(2325), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155434,6 +155401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -155443,22 +155411,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18661] = 6, + [18478] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, + ACTIONS(2566), 1, anon_sym_LPAREN2, - STATE(1495), 1, + ACTIONS(2568), 1, + sym__unquoted_pattern, + STATE(1491), 1, sym_comment, - ACTIONS(1966), 5, + ACTIONS(2564), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 41, + ACTIONS(2562), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155500,18 +155468,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18724] = 6, + [18541] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(3691), 1, - sym_raw_string_begin, - STATE(1473), 1, - aux_sym__types_body_repeat2, - STATE(1496), 1, + STATE(1492), 1, sym_comment, - ACTIONS(3687), 45, + ACTIONS(3732), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3730), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -155541,6 +155506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_PLUS2, anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_DOT_DOLLAR, @@ -155557,24 +155523,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [18787] = 6, - ACTIONS(3), 1, + [18600] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(1497), 1, + ACTIONS(2533), 1, + aux_sym_cmd_identifier_token2, + STATE(1493), 1, sym_comment, - ACTIONS(1016), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1018), 41, - ts_builtin_sym_end, - anon_sym_in, + ACTIONS(2325), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -155586,7 +155542,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_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + ACTIONS(2327), 29, + anon_sym_in, + anon_sym_GT2, anon_sym_DASH2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -155597,92 +155564,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, + anon_sym_LT2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18850] = 5, - ACTIONS(3), 1, + [18661] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3740), 1, - sym__newline, - STATE(1498), 2, + ACTIONS(2533), 1, + aux_sym_cmd_identifier_token2, + STATE(1494), 1, sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3736), 7, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(2562), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + ACTIONS(2564), 29, anon_sym_in, - anon_sym_DOLLAR, + anon_sym_GT2, anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_LT2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_PLUS2, - aux_sym__val_number_decimal_token1, - ACTIONS(3738), 39, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [18911] = 4, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [18722] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1499), 1, + ACTIONS(2529), 1, + anon_sym_LPAREN2, + ACTIONS(2531), 1, + sym__unquoted_pattern, + STATE(1495), 1, sym_comment, - ACTIONS(1804), 6, + ACTIONS(2527), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1802), 42, + ACTIONS(2525), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155715,7 +155683,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -155725,19 +155692,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18970] = 4, + [18785] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1500), 1, + STATE(1496), 1, sym_comment, - ACTIONS(1872), 6, + ACTIONS(1740), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1870), 42, + ACTIONS(1738), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155780,22 +155747,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19029] = 6, + [18844] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2595), 1, + ACTIONS(1956), 1, anon_sym_LPAREN2, - ACTIONS(2597), 1, + ACTIONS(1962), 1, sym__unquoted_pattern, - STATE(1501), 1, + STATE(1497), 1, sym_comment, - ACTIONS(1619), 5, + ACTIONS(2576), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1706), 41, + ACTIONS(2574), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155837,22 +155804,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19092] = 6, + [18907] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(1502), 1, + STATE(1498), 1, sym_comment, - ACTIONS(2525), 5, + ACTIONS(1808), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2523), 41, + sym__unquoted_pattern, + ACTIONS(1806), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155885,6 +155849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -155894,20 +155859,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19155] = 5, + [18966] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, - STATE(1503), 1, + STATE(1499), 1, sym_comment, - ACTIONS(868), 5, + ACTIONS(1846), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(968), 42, + sym__unquoted_pattern, + ACTIONS(1844), 42, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155920,9 +155885,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -155941,6 +155904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -155950,22 +155914,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19216] = 6, + [19025] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3738), 1, + sym__newline, + STATE(1500), 2, + sym_comment, + aux_sym__types_body_repeat1, + ACTIONS(3734), 7, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + aux_sym__val_number_decimal_token1, + ACTIONS(3736), 39, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [19086] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2631), 1, + ACTIONS(2570), 1, anon_sym_LPAREN2, - ACTIONS(2633), 1, + ACTIONS(2572), 1, sym__unquoted_pattern, - STATE(1504), 1, + STATE(1501), 1, sym_comment, - ACTIONS(2569), 5, + ACTIONS(996), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2567), 41, + ACTIONS(994), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -156007,22 +156027,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19279] = 6, + [19149] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(2570), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(2572), 1, sym__unquoted_pattern, - STATE(1505), 1, + STATE(1502), 1, sym_comment, - ACTIONS(1976), 5, + ACTIONS(1004), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 41, + ACTIONS(1012), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -156064,22 +156084,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19342] = 6, + [19212] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(1956), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(1962), 1, sym__unquoted_pattern, - STATE(1506), 1, + STATE(1503), 1, sym_comment, - ACTIONS(2577), 5, + ACTIONS(1954), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2575), 41, + ACTIONS(1952), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -156121,19 +156141,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19405] = 4, + [19275] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1507), 1, + ACTIONS(2554), 1, + anon_sym_LPAREN2, + ACTIONS(2556), 1, + sym__unquoted_pattern, + STATE(1504), 1, sym_comment, - ACTIONS(1728), 6, + ACTIONS(1615), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1726), 42, + ACTIONS(1689), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -156166,7 +156189,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -156176,14 +156198,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19464] = 5, - ACTIONS(103), 1, + [19338] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - STATE(1508), 1, + ACTIONS(1766), 1, + sym__unquoted_pattern, + STATE(1505), 1, sym_comment, - ACTIONS(2635), 18, + ACTIONS(793), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(890), 42, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -156196,17 +156225,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, - ACTIONS(2637), 29, - anon_sym_in, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [19399] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(1946), 1, + anon_sym_LPAREN2, + STATE(1506), 1, + sym_comment, + ACTIONS(1944), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1942), 41, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -156217,98 +156294,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_LT2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19525] = 15, - ACTIONS(3), 1, + [19462] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(1509), 1, + ACTIONS(1623), 1, + sym__entry_separator, + ACTIONS(3695), 1, + sym_raw_string_begin, + STATE(1476), 1, + aux_sym__types_body_repeat2, + STATE(1507), 1, sym_comment, - STATE(4563), 1, - sym_block, - STATE(4675), 1, - sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, - sym__one_type, - STATE(5090), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [19605] = 5, + ACTIONS(3691), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [19525] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1510), 1, + ACTIONS(1830), 1, + sym__unquoted_pattern, + STATE(1508), 1, sym_comment, - ACTIONS(2565), 5, + ACTIONS(793), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(3757), 13, + ACTIONS(890), 41, + ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -156320,10 +156395,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, - ACTIONS(2563), 29, - anon_sym_in, anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, @@ -156352,16 +156423,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19665] = 5, - ACTIONS(103), 1, + [19585] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - STATE(1511), 1, - sym_comment, - ACTIONS(2501), 17, - ts_builtin_sym_end, + ACTIONS(2870), 1, sym__newline, + ACTIONS(3741), 1, + anon_sym_DASH2, + ACTIONS(3749), 1, + anon_sym_PLUS2, + STATE(1509), 1, + sym_comment, + STATE(1552), 1, + aux_sym__repeat_newline, + ACTIONS(2686), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3743), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3747), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2684), 35, + anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -156372,16 +156460,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, - ACTIONS(2503), 29, - anon_sym_in, - anon_sym_GT2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [19657] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, anon_sym_DASH2, + ACTIONS(3759), 1, + anon_sym_PLUS2, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(1510), 1, + sym_comment, + ACTIONS(2694), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3753), 2, anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3755), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3757), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2692), 36, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -156392,30 +156531,396 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [19727] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2870), 1, + sym__newline, + ACTIONS(3741), 1, + anon_sym_DASH2, + ACTIONS(3749), 1, + anon_sym_PLUS2, + STATE(1511), 1, + sym_comment, + STATE(1553), 1, + aux_sym__repeat_newline, + ACTIONS(3743), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3747), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3763), 2, + anon_sym_GT2, anon_sym_LT2, + ACTIONS(3769), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3765), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3767), 4, + anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + ACTIONS(3761), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2684), 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, + [19807] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_DASH2, + ACTIONS(3759), 1, + anon_sym_PLUS2, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(1512), 1, + sym_comment, + ACTIONS(3753), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3755), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(3757), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3773), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3779), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3775), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3777), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3771), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2692), 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, + [19885] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2870), 1, + sym__newline, + ACTIONS(3741), 1, + anon_sym_DASH2, + ACTIONS(3749), 1, + anon_sym_PLUS2, + ACTIONS(3781), 1, + anon_sym_bit_DASHand2, + STATE(1513), 1, + sym_comment, + STATE(1554), 1, + aux_sym__repeat_newline, + ACTIONS(3743), 2, + anon_sym_STAR2, anon_sym_SLASH2, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(3763), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3769), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3765), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3767), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3761), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2684), 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, + [19967] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_DASH2, + ACTIONS(3759), 1, anon_sym_PLUS2, + ACTIONS(3783), 1, + anon_sym_bit_DASHand2, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(1514), 1, + sym_comment, + ACTIONS(3753), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3755), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3757), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3773), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3779), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(3775), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3777), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3771), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2692), 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, + [20047] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2870), 1, + sym__newline, + ACTIONS(3741), 1, + anon_sym_DASH2, + ACTIONS(3749), 1, + anon_sym_PLUS2, + ACTIONS(3781), 1, anon_sym_bit_DASHand2, + ACTIONS(3785), 1, anon_sym_bit_DASHxor2, + STATE(1515), 1, + sym_comment, + STATE(1555), 1, + aux_sym__repeat_newline, + ACTIONS(3743), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3747), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3763), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3769), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3765), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3767), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3761), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2684), 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, - [19725] = 5, - ACTIONS(103), 1, + [20131] = 16, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - STATE(1512), 1, + ACTIONS(3751), 1, + anon_sym_DASH2, + ACTIONS(3759), 1, + anon_sym_PLUS2, + ACTIONS(3783), 1, + anon_sym_bit_DASHand2, + ACTIONS(3787), 1, + anon_sym_bit_DASHxor2, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(1516), 1, sym_comment, - ACTIONS(2635), 17, - ts_builtin_sym_end, + ACTIONS(3753), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3755), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3757), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3773), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3779), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3775), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3777), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3771), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2692), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -156427,16 +156932,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [20213] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(3741), 1, + anon_sym_DASH2, + ACTIONS(3749), 1, + anon_sym_PLUS2, + ACTIONS(3781), 1, + anon_sym_bit_DASHand2, + STATE(1514), 1, + aux_sym__repeat_newline, + STATE(1517), 1, + sym_comment, + ACTIONS(3743), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3747), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3763), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3769), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3765), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(3767), 4, anon_sym_EQ_TILDE2, - ACTIONS(2637), 29, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3761), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2666), 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, + [20295] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2864), 1, + sym__newline, + ACTIONS(3741), 1, + anon_sym_DASH2, + ACTIONS(3749), 1, + anon_sym_PLUS2, + STATE(1518), 1, + sym_comment, + STATE(1557), 1, + aux_sym__repeat_newline, + ACTIONS(3743), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3747), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3763), 2, anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3769), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3765), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2676), 29, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [20371] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2864), 1, + sym__newline, + ACTIONS(3741), 1, anon_sym_DASH2, + ACTIONS(3749), 1, + anon_sym_PLUS2, + STATE(1519), 1, + sym_comment, + STATE(1559), 1, + aux_sym__repeat_newline, + ACTIONS(2678), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3743), 2, anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3747), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3769), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2676), 33, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -156447,55 +157117,302 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [20445] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(3741), 1, + anon_sym_DASH2, + ACTIONS(3749), 1, + anon_sym_PLUS2, + ACTIONS(3781), 1, + anon_sym_bit_DASHand2, + ACTIONS(3785), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3789), 1, + anon_sym_bit_DASHor2, + STATE(1520), 1, + sym_comment, + STATE(1653), 1, + aux_sym__repeat_newline, + ACTIONS(3743), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3747), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3763), 2, + anon_sym_GT2, anon_sym_LT2, + ACTIONS(3769), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3765), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3767), 4, + anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + ACTIONS(3761), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2666), 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, + [20531] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2864), 1, + sym__newline, + STATE(1521), 1, + sym_comment, + STATE(1561), 1, + aux_sym__repeat_newline, + ACTIONS(3743), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(3747), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2678), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2676), 36, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [20599] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(3741), 1, + anon_sym_DASH2, + ACTIONS(3749), 1, + anon_sym_PLUS2, + ACTIONS(3781), 1, + anon_sym_bit_DASHand2, + ACTIONS(3785), 1, + anon_sym_bit_DASHxor2, + STATE(1516), 1, + aux_sym__repeat_newline, + STATE(1522), 1, + sym_comment, + ACTIONS(3743), 2, + anon_sym_STAR2, anon_sym_SLASH2, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(3763), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3769), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3765), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3767), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3761), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2666), 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, + [20683] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2864), 1, + sym__newline, + STATE(1523), 1, + sym_comment, + STATE(1563), 1, + aux_sym__repeat_newline, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2678), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(2676), 38, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19785] = 15, + [20747] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3791), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3793), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3799), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3801), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3803), 1, anon_sym_LBRACE, - STATE(1513), 1, + STATE(1524), 1, sym_comment, - STATE(4491), 1, + STATE(4335), 1, sym_block, - STATE(4647), 1, + STATE(4808), 1, sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, + STATE(4927), 1, sym__one_type, - STATE(5090), 1, + STATE(5031), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, anon_sym_table, anon_sym_record, - STATE(4276), 4, + STATE(4316), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3795), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -156527,40 +157444,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [19865] = 15, + [20827] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2864), 1, + sym__newline, + ACTIONS(3741), 1, + anon_sym_DASH2, + ACTIONS(3749), 1, + anon_sym_PLUS2, + ACTIONS(3781), 1, + anon_sym_bit_DASHand2, + ACTIONS(3785), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3789), 1, + anon_sym_bit_DASHor2, + STATE(1525), 1, + sym_comment, + STATE(1565), 1, + aux_sym__repeat_newline, + ACTIONS(3743), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3747), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3763), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3769), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3765), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3767), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3761), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2676), 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, + [20913] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3791), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3793), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3799), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3801), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3803), 1, anon_sym_LBRACE, - STATE(1514), 1, + STATE(1526), 1, sym_comment, - STATE(4519), 1, + STATE(4344), 1, sym_block, - STATE(4646), 1, + STATE(4745), 1, sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, + STATE(4927), 1, sym__one_type, - STATE(5090), 1, + STATE(5031), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, anon_sym_table, anon_sym_record, - STATE(4276), 4, + STATE(4316), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3795), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -156592,94 +157577,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [19945] = 4, + [20993] = 19, ACTIONS(3), 1, anon_sym_POUND, - STATE(1515), 1, - sym_comment, - ACTIONS(2938), 7, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOLLAR, + ACTIONS(2864), 1, + sym__newline, + ACTIONS(3741), 1, anon_sym_DASH2, + ACTIONS(3749), 1, anon_sym_PLUS2, - aux_sym__val_number_decimal_token1, - ACTIONS(2940), 40, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [20003] = 15, + ACTIONS(3781), 1, + anon_sym_bit_DASHand2, + ACTIONS(3785), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3789), 1, + anon_sym_bit_DASHor2, + ACTIONS(3805), 1, + anon_sym_and2, + STATE(1527), 1, + sym_comment, + STATE(1567), 1, + aux_sym__repeat_newline, + ACTIONS(3743), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3747), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3763), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3769), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3765), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3767), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3761), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2676), 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, + [21081] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3791), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3793), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3799), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3801), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3803), 1, anon_sym_LBRACE, - STATE(1516), 1, + STATE(1528), 1, sym_comment, - STATE(4456), 1, + STATE(4345), 1, sym_block, - STATE(4704), 1, + STATE(4748), 1, sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, + STATE(4927), 1, sym__one_type, - STATE(5090), 1, + STATE(5031), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, anon_sym_table, anon_sym_record, - STATE(4276), 4, + STATE(4316), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3795), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -156711,104 +157711,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20083] = 15, + [21161] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(1517), 1, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(3741), 1, + anon_sym_DASH2, + ACTIONS(3749), 1, + anon_sym_PLUS2, + ACTIONS(3781), 1, + anon_sym_bit_DASHand2, + ACTIONS(3785), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3789), 1, + anon_sym_bit_DASHor2, + ACTIONS(3805), 1, + anon_sym_and2, + ACTIONS(3807), 1, + anon_sym_xor2, + STATE(1529), 1, sym_comment, - STATE(4462), 1, - sym_block, - STATE(4749), 1, - sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, - sym__one_type, - STATE(5090), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [20163] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - STATE(1518), 1, - sym_comment, - ACTIONS(968), 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, + STATE(1569), 1, + aux_sym__repeat_newline, + ACTIONS(3743), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3747), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3763), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3769), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3765), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(3767), 4, anon_sym_EQ_TILDE2, - ACTIONS(868), 29, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3761), 8, anon_sym_in, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -156816,59 +157768,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_LT2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, + ACTIONS(2676), 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, + [21251] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2864), 1, + sym__newline, + ACTIONS(3741), 1, + anon_sym_DASH2, + ACTIONS(3749), 1, + anon_sym_PLUS2, + STATE(1530), 1, + sym_comment, + STATE(1571), 1, + aux_sym__repeat_newline, + ACTIONS(3743), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [20223] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3760), 1, - anon_sym_DOT, - STATE(1519), 1, - sym_comment, - STATE(1826), 1, - sym__immediate_decimal, - ACTIONS(3762), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3764), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(698), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 6, + ACTIONS(3763), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1596), 30, + ACTIONS(3769), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3765), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3761), 8, anon_sym_in, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -156876,40 +157823,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, + ACTIONS(2676), 21, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [20297] = 5, + [21329] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1820), 1, - sym__unquoted_pattern, - STATE(1520), 1, + ACTIONS(2875), 1, + sym__newline, + STATE(1531), 1, sym_comment, - ACTIONS(868), 5, + STATE(1650), 1, + aux_sym__repeat_newline, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2668), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(968), 41, - ts_builtin_sym_end, + ACTIONS(2666), 38, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -156920,6 +157875,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_and2, anon_sym_xor2, @@ -156939,8 +157895,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -156948,105 +157902,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [20357] = 15, + [21393] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3791), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3793), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3799), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3801), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3809), 1, anon_sym_LBRACE, - STATE(1521), 1, + STATE(1532), 1, sym_comment, - STATE(4577), 1, + STATE(4496), 1, sym_block, - STATE(4728), 1, + STATE(4800), 1, sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, + STATE(4927), 1, sym__one_type, - STATE(5090), 1, + STATE(5031), 1, sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [20437] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(1522), 1, - sym_comment, - STATE(4583), 1, - sym_block, - STATE(4729), 1, - sym_returns, - STATE(5015), 1, + STATE(5154), 1, sym__type_annotation, - STATE(5058), 1, - sym__one_type, - STATE(5090), 1, - sym__multiple_types, - ACTIONS(3749), 2, + ACTIONS(3797), 2, anon_sym_table, anon_sym_record, - STATE(4276), 4, + STATE(4316), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3795), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157078,105 +157967,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20517] = 15, + [21473] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(1523), 1, + ACTIONS(2864), 1, + sym__newline, + ACTIONS(3741), 1, + anon_sym_DASH2, + ACTIONS(3749), 1, + anon_sym_PLUS2, + STATE(1533), 1, sym_comment, - STATE(4601), 1, - sym_block, - STATE(4735), 1, - sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, - sym__one_type, - STATE(5090), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [20597] = 15, + STATE(1573), 1, + aux_sym__repeat_newline, + ACTIONS(2678), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3743), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3747), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2676), 35, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [21545] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3791), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3793), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3799), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3801), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3809), 1, anon_sym_LBRACE, - STATE(1524), 1, + STATE(1534), 1, sym_comment, - STATE(4603), 1, + STATE(4503), 1, sym_block, - STATE(4743), 1, + STATE(4826), 1, sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, + STATE(4927), 1, sym__one_type, - STATE(5090), 1, + STATE(5031), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, anon_sym_table, anon_sym_record, - STATE(4276), 4, + STATE(4316), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3795), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157208,175 +158093,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20677] = 20, - ACTIONS(103), 1, + [21625] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3766), 1, - anon_sym_DASH_DASH, - STATE(1525), 1, + ACTIONS(2864), 1, + sym__newline, + ACTIONS(3741), 1, + anon_sym_DASH2, + ACTIONS(3749), 1, + anon_sym_PLUS2, + STATE(1535), 1, sym_comment, - STATE(1713), 1, - aux_sym_decl_def_repeat1, - STATE(2099), 1, - sym__val_number_decimal, - STATE(2148), 1, - sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(3729), 1, - sym__command_name, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + STATE(1575), 1, + aux_sym__repeat_newline, + ACTIONS(3743), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3747), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3763), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3769), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3765), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3767), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3761), 8, anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [20767] = 15, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2676), 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, + [21705] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3791), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3793), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3799), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3801), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3809), 1, anon_sym_LBRACE, - STATE(1526), 1, + STATE(1536), 1, sym_comment, - STATE(4473), 1, + STATE(4504), 1, sym_block, - STATE(4700), 1, + STATE(4671), 1, sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, + STATE(4927), 1, sym__one_type, - STATE(5090), 1, + STATE(5031), 1, sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [20847] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(1527), 1, - sym_comment, - STATE(4474), 1, - sym_block, - STATE(4702), 1, - sym_returns, - STATE(5015), 1, + STATE(5154), 1, sym__type_annotation, - STATE(5058), 1, - sym__one_type, - STATE(5090), 1, - sym__multiple_types, - ACTIONS(3749), 2, + ACTIONS(3797), 2, anon_sym_table, anon_sym_record, - STATE(4276), 4, + STATE(4316), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3795), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157408,238 +158223,242 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [20927] = 15, + [21785] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(1528), 1, + ACTIONS(2864), 1, + sym__newline, + ACTIONS(3741), 1, + anon_sym_DASH2, + ACTIONS(3749), 1, + anon_sym_PLUS2, + ACTIONS(3781), 1, + anon_sym_bit_DASHand2, + STATE(1537), 1, sym_comment, - STATE(4475), 1, - sym_block, - STATE(4703), 1, - sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, - sym__one_type, - STATE(5090), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21007] = 15, + STATE(1577), 1, + aux_sym__repeat_newline, + ACTIONS(3743), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3747), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3763), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3769), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3765), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3767), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3761), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2676), 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, + [21867] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(1529), 1, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(3741), 1, + anon_sym_DASH2, + ACTIONS(3749), 1, + anon_sym_PLUS2, + ACTIONS(3781), 1, + anon_sym_bit_DASHand2, + ACTIONS(3785), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3789), 1, + anon_sym_bit_DASHor2, + ACTIONS(3805), 1, + anon_sym_and2, + STATE(1538), 1, sym_comment, - STATE(4483), 1, - sym_block, - STATE(4705), 1, - sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, - sym__one_type, - STATE(5090), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21087] = 18, + STATE(1661), 1, + aux_sym__repeat_newline, + ACTIONS(3743), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3747), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3763), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3769), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3765), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3767), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3761), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2666), 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, + [21955] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3772), 1, - anon_sym_LBRACK, - ACTIONS(3774), 1, - anon_sym_DOLLAR, - ACTIONS(3776), 1, - anon_sym_LBRACE, - STATE(1530), 1, + ACTIONS(2864), 1, + sym__newline, + ACTIONS(3741), 1, + anon_sym_DASH2, + ACTIONS(3749), 1, + anon_sym_PLUS2, + ACTIONS(3781), 1, + anon_sym_bit_DASHand2, + ACTIONS(3785), 1, + anon_sym_bit_DASHxor2, + STATE(1539), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - ACTIONS(3637), 2, - anon_sym_export, + STATE(1579), 1, + aux_sym__repeat_newline, + ACTIONS(3743), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3747), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3763), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3769), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3765), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3767), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3761), 8, anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(3093), 2, - sym_cmd_identifier, - sym_val_string, - STATE(3095), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [21173] = 15, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2676), 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, + [22039] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3791), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3793), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3799), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3801), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3803), 1, anon_sym_LBRACE, - STATE(1531), 1, + STATE(1540), 1, sym_comment, - STATE(4534), 1, + STATE(4330), 1, sym_block, - STATE(4730), 1, + STATE(4785), 1, sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, + STATE(4927), 1, sym__one_type, - STATE(5090), 1, + STATE(5031), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, anon_sym_table, anon_sym_record, - STATE(4276), 4, + STATE(4316), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3795), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157671,40 +158490,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21253] = 15, + [22119] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3791), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3793), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3799), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3801), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3809), 1, anon_sym_LBRACE, - STATE(1532), 1, + STATE(1541), 1, sym_comment, - STATE(4535), 1, + STATE(4417), 1, sym_block, - STATE(4731), 1, + STATE(4743), 1, sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, + STATE(4927), 1, sym__one_type, - STATE(5090), 1, + STATE(5031), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, anon_sym_table, anon_sym_record, - STATE(4276), 4, + STATE(4316), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3795), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157736,105 +158555,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21333] = 15, + [22199] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(1533), 1, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(3741), 1, + anon_sym_DASH2, + ACTIONS(3749), 1, + anon_sym_PLUS2, + ACTIONS(3781), 1, + anon_sym_bit_DASHand2, + ACTIONS(3785), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3789), 1, + anon_sym_bit_DASHor2, + ACTIONS(3805), 1, + anon_sym_and2, + ACTIONS(3807), 1, + anon_sym_xor2, + STATE(1542), 1, sym_comment, - STATE(4430), 1, - sym_block, - STATE(4653), 1, - sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, - sym__one_type, - STATE(5090), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21413] = 15, + STATE(1664), 1, + aux_sym__repeat_newline, + ACTIONS(3743), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3747), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3763), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3769), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3765), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3767), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3761), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2666), 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, + [22289] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3791), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3793), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3799), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3801), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3809), 1, anon_sym_LBRACE, - STATE(1534), 1, + STATE(1543), 1, sym_comment, - STATE(4434), 1, + STATE(4572), 1, sym_block, - STATE(4658), 1, + STATE(4773), 1, sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, + STATE(4927), 1, sym__one_type, - STATE(5090), 1, + STATE(5031), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, anon_sym_table, anon_sym_record, - STATE(4276), 4, + STATE(4316), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3795), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -157866,1941 +158690,862 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [21493] = 15, + [22369] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1535), 1, + anon_sym_DASH2, + ACTIONS(3759), 1, + anon_sym_PLUS2, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(1544), 1, sym_comment, - STATE(4241), 1, - sym_block, - STATE(4686), 1, - sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, - sym__one_type, - STATE(5090), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21573] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1536), 1, - sym_comment, - STATE(4252), 1, - sym_block, - STATE(4690), 1, - sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, - sym__one_type, - STATE(5090), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21653] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3784), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3786), 1, - sym__newline, - ACTIONS(3788), 1, - anon_sym_RBRACK, - STATE(1537), 1, - sym_comment, - STATE(1703), 1, - aux_sym__types_body_repeat1, - STATE(1770), 1, - aux_sym__command_list_body_repeat1, - STATE(2107), 1, - sym__val_number_decimal, - STATE(4461), 1, - sym__command_name, - STATE(4777), 1, - sym_cmd_identifier, - STATE(4779), 1, - sym_val_string, - STATE(4823), 1, - sym__command_list_body, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, - anon_sym_export, + ACTIONS(3753), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3755), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3757), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3773), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3779), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3775), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2688), 30, anon_sym_in, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3782), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [21745] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1538), 1, - sym_comment, - STATE(4055), 1, - sym_block, - STATE(4760), 1, - sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, - sym__one_type, - STATE(5090), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21825] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1539), 1, - sym_comment, - STATE(4056), 1, - sym_block, - STATE(4761), 1, - sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, - sym__one_type, - STATE(5090), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21905] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1540), 1, - sym_comment, - STATE(4064), 1, - sym_block, - STATE(4769), 1, - sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, - sym__one_type, - STATE(5090), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21985] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1541), 1, - sym_comment, - STATE(4065), 1, - sym_block, - STATE(4770), 1, - sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, - sym__one_type, - STATE(5090), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22065] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1542), 1, - sym_comment, - STATE(4066), 1, - sym_block, - STATE(4773), 1, - sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, - sym__one_type, - STATE(5090), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22145] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1543), 1, - sym_comment, - STATE(4067), 1, - sym_block, - STATE(4774), 1, - sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, - sym__one_type, - STATE(5090), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22225] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(1544), 1, - sym_comment, - STATE(4433), 1, - sym_block, - STATE(4758), 1, - sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, - sym__one_type, - STATE(5090), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22305] = 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [22443] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, - anon_sym_LBRACE, + anon_sym_DASH2, + ACTIONS(3759), 1, + anon_sym_PLUS2, + STATE(517), 1, + aux_sym__repeat_newline, STATE(1545), 1, sym_comment, - STATE(4477), 1, - sym_block, - STATE(4651), 1, - sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, - sym__one_type, - STATE(5090), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22385] = 15, + ACTIONS(2690), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3753), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3755), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3757), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3779), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2688), 34, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [22515] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, + STATE(517), 1, + aux_sym__repeat_newline, STATE(1546), 1, sym_comment, - STATE(4075), 1, - sym_block, - STATE(4649), 1, - sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, - sym__one_type, - STATE(5090), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22465] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1547), 1, - sym_comment, - STATE(4076), 1, - sym_block, - STATE(4652), 1, - sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, - sym__one_type, - STATE(5090), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22545] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1548), 1, - sym_comment, - STATE(4077), 1, - sym_block, - STATE(4654), 1, - sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, - sym__one_type, - STATE(5090), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22625] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1549), 1, - sym_comment, - STATE(4078), 1, - sym_block, - STATE(4656), 1, - sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, - sym__one_type, - STATE(5090), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22705] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3010), 1, - anon_sym_DQUOTE, - ACTIONS(3012), 1, - anon_sym_SQUOTE, - ACTIONS(3014), 1, - anon_sym_BQUOTE, - ACTIONS(3022), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(3792), 1, - anon_sym_DOLLAR, - ACTIONS(3794), 1, - anon_sym_LBRACE, - STATE(1550), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - ACTIONS(3637), 2, - anon_sym_export, + ACTIONS(3753), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3755), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3757), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2690), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2688), 37, anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(3093), 2, - sym_cmd_identifier, - sym_val_string, - STATE(3095), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(2548), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [22791] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1551), 1, - sym_comment, - STATE(4087), 1, - sym_block, - STATE(4706), 1, - sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, - sym__one_type, - STATE(5090), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22871] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1552), 1, - sym_comment, - STATE(4088), 1, - sym_block, - STATE(4718), 1, - sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, - sym__one_type, - STATE(5090), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22951] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1553), 1, - sym_comment, - STATE(4090), 1, - sym_block, - STATE(4711), 1, - sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, - sym__one_type, - STATE(5090), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [23031] = 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [22581] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1554), 1, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(1547), 1, sym_comment, - STATE(4091), 1, - sym_block, - STATE(4712), 1, - sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, - sym__one_type, - STATE(5090), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [23111] = 15, + ACTIONS(3755), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2690), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2688), 39, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [22643] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1555), 1, + anon_sym_DASH2, + ACTIONS(3759), 1, + anon_sym_PLUS2, + ACTIONS(3783), 1, + anon_sym_bit_DASHand2, + ACTIONS(3787), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3811), 1, + anon_sym_bit_DASHor2, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(1548), 1, sym_comment, - STATE(4098), 1, - sym_block, - STATE(4739), 1, - sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, - sym__one_type, - STATE(5090), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [23191] = 15, + ACTIONS(3753), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3755), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3757), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3773), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3779), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3775), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3777), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3771), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2688), 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, + [22727] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1556), 1, + anon_sym_DASH2, + ACTIONS(3759), 1, + anon_sym_PLUS2, + ACTIONS(3783), 1, + anon_sym_bit_DASHand2, + ACTIONS(3787), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3811), 1, + anon_sym_bit_DASHor2, + ACTIONS(3813), 1, + anon_sym_and2, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(1549), 1, sym_comment, - STATE(4099), 1, - sym_block, - STATE(4740), 1, - sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, - sym__one_type, - STATE(5090), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [23271] = 15, + ACTIONS(3753), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3755), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3757), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3773), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3779), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3775), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3777), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3771), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2688), 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, + [22813] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1557), 1, + anon_sym_DASH2, + ACTIONS(3759), 1, + anon_sym_PLUS2, + ACTIONS(3783), 1, + anon_sym_bit_DASHand2, + ACTIONS(3787), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3811), 1, + anon_sym_bit_DASHor2, + ACTIONS(3813), 1, + anon_sym_and2, + ACTIONS(3815), 1, + anon_sym_xor2, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(1550), 1, sym_comment, - STATE(4108), 1, - sym_block, - STATE(4636), 1, - sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, - sym__one_type, - STATE(5090), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [23351] = 15, + ACTIONS(3753), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3755), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3757), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3773), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3779), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3775), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3777), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3771), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2688), 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, + [22901] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1558), 1, + anon_sym_DASH2, + ACTIONS(3759), 1, + anon_sym_PLUS2, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(1551), 1, sym_comment, - STATE(4109), 1, - sym_block, - STATE(4639), 1, - sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, - sym__one_type, - STATE(5090), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [23431] = 15, + ACTIONS(3753), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3755), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3757), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3773), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3779), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3775), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3771), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2688), 22, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [22977] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1559), 1, + anon_sym_DASH2, + ACTIONS(3759), 1, + anon_sym_PLUS2, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(1552), 1, sym_comment, - STATE(4110), 1, - sym_block, - STATE(4641), 1, - sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, - sym__one_type, - STATE(5090), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [23511] = 15, + ACTIONS(2690), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3753), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3755), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3757), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2688), 36, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [23047] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1560), 1, + anon_sym_DASH2, + ACTIONS(3759), 1, + anon_sym_PLUS2, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(1553), 1, sym_comment, - STATE(4111), 1, - sym_block, - STATE(4642), 1, - sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, - sym__one_type, - STATE(5090), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [23591] = 15, + ACTIONS(3753), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3755), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3757), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3773), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3779), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3775), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3777), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3771), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2688), 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, + [23125] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1561), 1, + anon_sym_DASH2, + ACTIONS(3759), 1, + anon_sym_PLUS2, + ACTIONS(3783), 1, + anon_sym_bit_DASHand2, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(1554), 1, sym_comment, - STATE(4122), 1, - sym_block, - STATE(4657), 1, - sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, - sym__one_type, - STATE(5090), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [23671] = 15, + ACTIONS(3753), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3755), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3757), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3773), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3779), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3775), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3777), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3771), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2688), 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, + [23205] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(1562), 1, + anon_sym_DASH2, + ACTIONS(3759), 1, + anon_sym_PLUS2, + ACTIONS(3783), 1, + anon_sym_bit_DASHand2, + ACTIONS(3787), 1, + anon_sym_bit_DASHxor2, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(1555), 1, sym_comment, - STATE(4123), 1, - sym_block, - STATE(4659), 1, - sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, - sym__one_type, - STATE(5090), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [23751] = 21, + ACTIONS(3753), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3755), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3757), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3773), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3779), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3775), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3777), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3771), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2688), 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, + [23287] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3784), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3786), 1, + ACTIONS(2867), 1, sym__newline, - ACTIONS(3796), 1, - anon_sym_RBRACK, - STATE(1563), 1, + ACTIONS(3741), 1, + anon_sym_DASH2, + ACTIONS(3749), 1, + anon_sym_PLUS2, + STATE(1556), 1, sym_comment, - STATE(1703), 1, - aux_sym__types_body_repeat1, - STATE(1770), 1, - aux_sym__command_list_body_repeat1, - STATE(2107), 1, - sym__val_number_decimal, - STATE(4461), 1, - sym__command_name, - STATE(4777), 1, - sym_cmd_identifier, - STATE(4779), 1, - sym_val_string, - STATE(4812), 1, - sym__command_list_body, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, - anon_sym_export, + STATE(1584), 1, + aux_sym__repeat_newline, + ACTIONS(3743), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3747), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3763), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3769), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3765), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2768), 29, anon_sym_in, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3782), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [23843] = 13, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [23363] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3751), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3759), 1, anon_sym_PLUS2, - STATE(1564), 1, - sym_comment, - STATE(1579), 1, + STATE(517), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + STATE(1557), 1, + sym_comment, + ACTIONS(3753), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3755), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3757), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3773), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3779), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3775), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2744), 29, + ACTIONS(2772), 30, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -159829,35 +159574,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [23919] = 12, + [23437] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2867), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(1565), 1, + STATE(1558), 1, sym_comment, - STATE(1581), 1, + STATE(1585), 1, aux_sym__repeat_newline, - ACTIONS(2746), 2, + ACTIONS(2770), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3769), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2744), 33, + ACTIONS(2768), 33, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -159891,30 +159636,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [23993] = 9, + [23511] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - STATE(1566), 1, - sym_comment, - STATE(1583), 1, + ACTIONS(3751), 1, + anon_sym_DASH2, + ACTIONS(3759), 1, + anon_sym_PLUS2, + STATE(517), 1, aux_sym__repeat_newline, - ACTIONS(3802), 2, + STATE(1559), 1, + sym_comment, + ACTIONS(2774), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3753), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3755), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3757), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2746), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2744), 36, + ACTIONS(3779), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2772), 34, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -159926,7 +159676,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -159945,30 +159694,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24061] = 7, + [23583] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2867), 1, sym__newline, - STATE(1567), 1, + STATE(1560), 1, sym_comment, - STATE(1585), 1, + STATE(1586), 1, aux_sym__repeat_newline, - ACTIONS(3806), 2, + ACTIONS(3743), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2746), 5, + ACTIONS(3747), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2770), 3, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2744), 38, + ACTIONS(2768), 36, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -160000,59 +159751,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24125] = 18, + [23651] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - ACTIONS(3818), 1, - anon_sym_bit_DASHand2, - ACTIONS(3820), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, - anon_sym_bit_DASHor2, - STATE(1568), 1, - sym_comment, - STATE(1587), 1, + STATE(517), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + STATE(1561), 1, + sym_comment, + ACTIONS(3753), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3755), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3757), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(2774), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2772), 37, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [23717] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2867), 1, + sym__newline, + STATE(1562), 1, + sym_comment, + STATE(1587), 1, + aux_sym__repeat_newline, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2770), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2768), 38, anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -160060,7 +159856,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 14, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [23781] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(1563), 1, + sym_comment, + ACTIONS(3755), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2774), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2772), 39, + anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160072,56 +159901,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_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [24211] = 19, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [23843] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2867), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3781), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3785), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3789), 1, anon_sym_bit_DASHor2, - ACTIONS(3824), 1, - anon_sym_and2, - STATE(1569), 1, + STATE(1564), 1, sym_comment, - STATE(1678), 1, + STATE(1588), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3763), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3769), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3765), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3767), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3761), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160130,7 +159980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 13, + ACTIONS(2768), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160142,57 +159992,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [24299] = 20, + [23929] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3751), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3759), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3783), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3787), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHor2, - ACTIONS(3824), 1, - anon_sym_and2, - ACTIONS(3826), 1, - anon_sym_xor2, - STATE(1570), 1, - sym_comment, - STATE(1590), 1, + STATE(517), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + STATE(1565), 1, + sym_comment, + ACTIONS(3753), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3755), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3757), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3773), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3779), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3775), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3777), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3771), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160201,7 +160046,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 12, + ACTIONS(2772), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160213,41 +160059,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [24389] = 14, + [24013] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2867), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(1571), 1, + ACTIONS(3781), 1, + anon_sym_bit_DASHand2, + ACTIONS(3785), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3789), 1, + anon_sym_bit_DASHor2, + ACTIONS(3805), 1, + anon_sym_and2, + STATE(1566), 1, sym_comment, - STATE(1592), 1, + STATE(1589), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3763), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3769), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3765), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3814), 8, + ACTIONS(3767), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3761), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160256,7 +160117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 21, + ACTIONS(2768), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160268,116 +160129,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [24467] = 11, + [24101] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3751), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3759), 1, anon_sym_PLUS2, - STATE(1572), 1, - sym_comment, - STATE(1594), 1, - aux_sym__repeat_newline, - ACTIONS(2746), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2744), 35, - anon_sym_in, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, + ACTIONS(3783), 1, anon_sym_bit_DASHand2, + ACTIONS(3787), 1, anon_sym_bit_DASHxor2, + ACTIONS(3811), 1, anon_sym_bit_DASHor2, - [24539] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - STATE(1573), 1, - sym_comment, - STATE(1596), 1, + ACTIONS(3813), 1, + anon_sym_and2, + STATE(517), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + STATE(1567), 1, + sym_comment, + ACTIONS(3753), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3755), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3757), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3773), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3779), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3775), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3777), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3771), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160386,7 +160184,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 17, + ACTIONS(2772), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160398,53 +160197,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_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [24619] = 16, + [24187] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2834), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3781), 1, anon_sym_bit_DASHand2, - STATE(1574), 1, + ACTIONS(3785), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3789), 1, + anon_sym_bit_DASHor2, + ACTIONS(3805), 1, + anon_sym_and2, + ACTIONS(3807), 1, + anon_sym_xor2, + STATE(1568), 1, sym_comment, - STATE(1598), 1, + STATE(1590), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3763), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3769), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3765), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3767), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3761), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160453,7 +160256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 16, + ACTIONS(2768), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160465,54 +160268,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [24701] = 17, + [24277] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3751), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3759), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3783), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3787), 1, anon_sym_bit_DASHxor2, - STATE(1575), 1, - sym_comment, - STATE(1600), 1, + ACTIONS(3811), 1, + anon_sym_bit_DASHor2, + ACTIONS(3813), 1, + anon_sym_and2, + ACTIONS(3815), 1, + anon_sym_xor2, + STATE(517), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + STATE(1569), 1, + sym_comment, + ACTIONS(3753), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3755), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3757), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3773), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3779), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3775), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3777), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3771), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160521,7 +160324,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 15, + ACTIONS(2772), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160533,178 +160337,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - [24785] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_COLON, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(1576), 1, - sym_comment, - STATE(4409), 1, - sym_block, - STATE(4752), 1, - sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, - sym__one_type, - STATE(5090), 1, - sym__multiple_types, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [24865] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3784), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3828), 1, - anon_sym_LBRACK, - ACTIONS(3830), 1, - anon_sym_DOLLAR, - ACTIONS(3832), 1, - anon_sym_LBRACE, - STATE(1577), 1, - sym_comment, - STATE(2107), 1, - sym__val_number_decimal, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, - anon_sym_export, - anon_sym_in, - STATE(4663), 2, - sym_cmd_identifier, - sym_val_string, - STATE(4673), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3782), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [24951] = 13, + [24365] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2867), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(1578), 1, + STATE(1570), 1, sym_comment, - STATE(1614), 1, + STATE(1591), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3763), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3769), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3765), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2702), 29, + ACTIONS(3761), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2768), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160719,13 +160395,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -160733,39 +160402,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25027] = 12, + [24443] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3751), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3759), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(1579), 1, + STATE(1571), 1, sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3753), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3755), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3757), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3773), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3779), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3775), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2706), 30, + ACTIONS(3771), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2772), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -160781,13 +160458,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -160795,35 +160465,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25101] = 12, + [24519] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2867), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(1580), 1, + STATE(1572), 1, sym_comment, - STATE(1615), 1, + STATE(1592), 1, aux_sym__repeat_newline, - ACTIONS(2704), 2, + ACTIONS(2770), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2702), 33, + ACTIONS(2768), 35, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -160854,36 +160521,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25175] = 11, + [24591] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3751), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3759), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(1581), 1, + STATE(1573), 1, sym_comment, - ACTIONS(2708), 2, + ACTIONS(2774), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3753), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3755), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3757), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2706), 34, + ACTIONS(2772), 36, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -160915,33 +160581,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25247] = 9, + [24661] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2867), 1, sym__newline, - STATE(1582), 1, + ACTIONS(3741), 1, + anon_sym_DASH2, + ACTIONS(3749), 1, + anon_sym_PLUS2, + STATE(1574), 1, sym_comment, - STATE(1616), 1, + STATE(1593), 1, aux_sym__repeat_newline, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2704), 3, + ACTIONS(3763), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2702), 36, + ACTIONS(3769), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3765), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3767), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3761), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2768), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160953,123 +160645,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25315] = 8, + [24741] = 14, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + ACTIONS(3751), 1, + anon_sym_DASH2, + ACTIONS(3759), 1, + anon_sym_PLUS2, + STATE(517), 1, aux_sym__repeat_newline, - STATE(1583), 1, + STATE(1575), 1, sym_comment, - ACTIONS(3838), 2, + ACTIONS(3753), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3755), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3757), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2708), 3, + ACTIONS(3773), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2706), 37, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, + ACTIONS(3779), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3775), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(3777), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [25381] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2905), 1, - sym__newline, - STATE(1584), 1, - sym_comment, - STATE(1617), 1, - aux_sym__repeat_newline, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2704), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2702), 38, + ACTIONS(3771), 8, anon_sym_in, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -161077,39 +160696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [25445] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1585), 1, - sym_comment, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2708), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2706), 39, - anon_sym_in, + ACTIONS(2772), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -161122,77 +160709,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25507] = 18, + [24819] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2867), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3781), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, - anon_sym_bit_DASHor2, - STATE(1586), 1, + STATE(1576), 1, sym_comment, - STATE(1618), 1, + STATE(1594), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3763), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3769), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3765), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3767), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3761), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161201,7 +160764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 14, + ACTIONS(2768), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161216,49 +160779,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [25593] = 17, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [24901] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3751), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3759), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3783), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, - anon_sym_bit_DASHor2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(1587), 1, + STATE(1577), 1, sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3753), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3755), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3757), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3773), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3779), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3775), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3777), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3771), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161267,7 +160828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 15, + ACTIONS(2772), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -161283,53 +160844,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [25677] = 19, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [24981] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2867), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3781), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3785), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, - anon_sym_bit_DASHor2, - ACTIONS(3824), 1, - anon_sym_and2, - STATE(1588), 1, + STATE(1578), 1, sym_comment, - STATE(1619), 1, + STATE(1595), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3763), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3769), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3765), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3767), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3761), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161338,7 +160897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 13, + ACTIONS(2768), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161350,57 +160909,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [25765] = 20, + anon_sym_bit_DASHor2, + [25065] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3751), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3759), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3783), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(3787), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, - anon_sym_bit_DASHor2, - ACTIONS(3824), 1, - anon_sym_and2, - ACTIONS(3826), 1, - anon_sym_xor2, - STATE(1589), 1, - sym_comment, - STATE(1620), 1, + STATE(517), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + STATE(1579), 1, + sym_comment, + ACTIONS(3753), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3755), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3757), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3773), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3779), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3775), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3777), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3771), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161409,7 +160962,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 12, + ACTIONS(2772), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161421,119 +160975,290 @@ static 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, - [25855] = 19, + anon_sym_bit_DASHor2, + [25147] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - ACTIONS(3854), 1, - anon_sym_bit_DASHand2, - ACTIONS(3856), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, - anon_sym_bit_DASHor2, - ACTIONS(3860), 1, - anon_sym_and2, - ACTIONS(3862), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1590), 1, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(1580), 1, + sym_comment, + STATE(4183), 1, + sym_block, + STATE(4666), 1, + sym_returns, + STATE(4927), 1, + sym__one_type, + STATE(5031), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [25227] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3809), 1, + anon_sym_LBRACE, + STATE(1581), 1, + sym_comment, + STATE(4597), 1, + sym_block, + STATE(4679), 1, + sym_returns, + STATE(4927), 1, + sym__one_type, + STATE(5031), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [25307] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1584), 1, + anon_sym_DOLLAR, + ACTIONS(1588), 1, + anon_sym_LPAREN2, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(3817), 1, + anon_sym_DOT, + STATE(1582), 1, sym_comment, - ACTIONS(3834), 2, + STATE(1831), 1, + sym__immediate_decimal, + ACTIONS(3819), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3821), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(707), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1586), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + anon_sym_PLUS2, + ACTIONS(1582), 30, + anon_sym_in, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [25381] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1583), 1, + sym_comment, + ACTIONS(2894), 7, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 13, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + aux_sym__val_number_decimal_token1, + ACTIONS(2896), 40, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [25943] = 14, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [25439] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3751), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3759), 1, anon_sym_PLUS2, - STATE(1591), 1, - sym_comment, - STATE(1621), 1, + STATE(517), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + STATE(1584), 1, + sym_comment, + ACTIONS(3753), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3755), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3757), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3773), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3779), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3775), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3814), 8, + ACTIONS(2776), 30, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 21, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161548,6 +161273,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -161555,47 +161287,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26021] = 13, + [25513] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3751), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3759), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(1592), 1, + STATE(1585), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(2778), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3753), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3755), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3757), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3779), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3850), 8, + ACTIONS(2776), 34, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -161611,6 +161330,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -161618,33 +161348,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26097] = 11, + [25585] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - STATE(1593), 1, - sym_comment, - STATE(1622), 1, + STATE(517), 1, aux_sym__repeat_newline, - ACTIONS(2704), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + STATE(1586), 1, + sym_comment, + ACTIONS(3753), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3755), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3757), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2702), 35, + ACTIONS(2778), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2776), 37, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161656,6 +161382,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_and2, anon_sym_xor2, anon_sym_or2, @@ -161679,30 +161406,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26169] = 10, + [25651] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(1594), 1, + STATE(1587), 1, sym_comment, - ACTIONS(2708), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3755), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2706), 36, + ACTIONS(2778), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2776), 39, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -161716,6 +161436,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_and2, anon_sym_xor2, anon_sym_or2, @@ -161734,50 +161455,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26239] = 15, + [25713] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3751), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3759), 1, anon_sym_PLUS2, - STATE(1595), 1, - sym_comment, - STATE(1623), 1, + ACTIONS(3783), 1, + anon_sym_bit_DASHand2, + ACTIONS(3787), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3811), 1, + anon_sym_bit_DASHor2, + STATE(517), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + STATE(1588), 1, + sym_comment, + ACTIONS(3753), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3755), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3757), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3773), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3779), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3775), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3777), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3771), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161786,7 +161513,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 17, + ACTIONS(2776), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161801,46 +161529,51 @@ 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, - [26319] = 14, + [25797] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3751), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3759), 1, anon_sym_PLUS2, - STATE(540), 1, + ACTIONS(3783), 1, + anon_sym_bit_DASHand2, + ACTIONS(3787), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3811), 1, + anon_sym_bit_DASHor2, + ACTIONS(3813), 1, + anon_sym_and2, + STATE(517), 1, aux_sym__repeat_newline, - STATE(1596), 1, + STATE(1589), 1, sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3753), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3755), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3757), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3773), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3779), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3775), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3777), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3771), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161849,7 +161582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 18, + ACTIONS(2776), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -161862,53 +161595,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [26397] = 16, + [25883] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3751), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3759), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(3783), 1, anon_sym_bit_DASHand2, - STATE(1597), 1, - sym_comment, - STATE(1624), 1, + ACTIONS(3787), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3811), 1, + anon_sym_bit_DASHor2, + ACTIONS(3813), 1, + anon_sym_and2, + ACTIONS(3815), 1, + anon_sym_xor2, + STATE(517), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + STATE(1590), 1, + sym_comment, + ACTIONS(3753), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3755), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3757), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3773), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3779), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3775), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3777), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3771), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161917,7 +161652,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 16, + ACTIONS(2776), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161929,50 +161665,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_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [26479] = 15, + [25971] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3751), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3759), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, - anon_sym_bit_DASHand2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(1598), 1, + STATE(1591), 1, sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3753), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3755), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3757), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3773), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3779), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3775), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3771), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161981,7 +161706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 17, + ACTIONS(2776), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -161997,51 +161722,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26559] = 17, + [26047] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3751), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3759), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, - anon_sym_bit_DASHand2, - ACTIONS(3820), 1, - anon_sym_bit_DASHxor2, - STATE(1599), 1, - sym_comment, - STATE(1625), 1, + STATE(517), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1592), 1, + sym_comment, + ACTIONS(2778), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3753), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3755), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3757), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2776), 36, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [26117] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_DASH2, + ACTIONS(3759), 1, + anon_sym_PLUS2, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(1593), 1, + sym_comment, + ACTIONS(3753), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3755), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3757), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3773), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3779), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3775), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3777), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + ACTIONS(3771), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162050,7 +161834,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 15, + ACTIONS(2776), 18, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162065,48 +161850,48 @@ 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, - [26643] = 16, + [26195] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3751), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3759), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3783), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, - anon_sym_bit_DASHxor2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(1600), 1, + STATE(1594), 1, sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3753), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3755), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3757), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3773), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3779), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3775), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3777), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3771), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162115,7 +161900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 16, + ACTIONS(2776), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -162131,42 +161916,59 @@ 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, - [26725] = 13, + [26275] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(3800), 1, + ACTIONS(3751), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3759), 1, anon_sym_PLUS2, - STATE(1601), 1, - sym_comment, - STATE(1627), 1, + ACTIONS(3783), 1, + anon_sym_bit_DASHand2, + ACTIONS(3787), 1, + anon_sym_bit_DASHxor2, + STATE(517), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + STATE(1595), 1, + sym_comment, + ACTIONS(3753), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3755), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3757), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3773), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3779), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3775), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2712), 29, + ACTIONS(3777), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3771), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2776), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162181,50 +161983,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26801] = 12, + [26357] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2875), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(1602), 1, + STATE(1596), 1, sym_comment, - STATE(1629), 1, + STATE(1672), 1, aux_sym__repeat_newline, - ACTIONS(2714), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3763), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3769), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2712), 33, + ACTIONS(3765), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3761), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2666), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162239,17 +162041,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -162257,29 +162048,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26875] = 9, + [26435] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - STATE(1603), 1, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(1597), 1, sym_comment, - STATE(1631), 1, + STATE(4333), 1, + sym_block, + STATE(4803), 1, + sym_returns, + STATE(4927), 1, + sym__one_type, + STATE(5031), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [26515] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(3741), 1, + anon_sym_DASH2, + ACTIONS(3749), 1, + anon_sym_PLUS2, + STATE(1510), 1, aux_sym__repeat_newline, - ACTIONS(3802), 2, + STATE(1598), 1, + sym_comment, + ACTIONS(2668), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2714), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2712), 36, + ACTIONS(2666), 35, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -162292,7 +162151,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -162316,40 +162174,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26943] = 15, + [26587] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3791), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3793), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3799), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3801), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3803), 1, anon_sym_LBRACE, - STATE(1604), 1, + STATE(1599), 1, sym_comment, - STATE(4432), 1, + STATE(4334), 1, sym_block, - STATE(4640), 1, + STATE(4805), 1, sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, + STATE(4927), 1, sym__one_type, - STATE(5090), 1, + STATE(5031), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, anon_sym_table, anon_sym_record, - STATE(4276), 4, + STATE(4316), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3795), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -162381,25 +162239,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [27023] = 7, + [26667] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2875), 1, sym__newline, - STATE(1605), 1, + ACTIONS(3741), 1, + anon_sym_DASH2, + ACTIONS(3749), 1, + anon_sym_PLUS2, + STATE(1600), 1, sym_comment, - STATE(1633), 1, + STATE(1638), 1, aux_sym__repeat_newline, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2714), 5, + ACTIONS(2668), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3743), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2712), 38, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3747), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3769), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2666), 33, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -162412,7 +162280,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -162431,254 +162298,831 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27087] = 18, + [26741] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - ACTIONS(3818), 1, - anon_sym_bit_DASHand2, - ACTIONS(3820), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, - anon_sym_bit_DASHor2, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3809), 1, + anon_sym_LBRACE, + STATE(1601), 1, + sym_comment, + STATE(4497), 1, + sym_block, + STATE(4732), 1, + sym_returns, + STATE(4927), 1, + sym__one_type, + STATE(5031), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [26821] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(1602), 1, + sym_comment, + STATE(4239), 1, + sym_block, + STATE(4749), 1, + sym_returns, + STATE(4927), 1, + sym__one_type, + STATE(5031), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [26901] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(1603), 1, + sym_comment, + STATE(4240), 1, + sym_block, + STATE(4680), 1, + sym_returns, + STATE(4927), 1, + sym__one_type, + STATE(5031), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [26981] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3809), 1, + anon_sym_LBRACE, + STATE(1604), 1, + sym_comment, + STATE(4559), 1, + sym_block, + STATE(4810), 1, + sym_returns, + STATE(4927), 1, + sym__one_type, + STATE(5031), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [27061] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3809), 1, + anon_sym_LBRACE, + STATE(1605), 1, + sym_comment, + STATE(4561), 1, + sym_block, + STATE(4657), 1, + sym_returns, + STATE(4927), 1, + sym__one_type, + STATE(5031), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [27141] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3809), 1, + anon_sym_LBRACE, STATE(1606), 1, sym_comment, - STATE(1635), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3816), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + STATE(4654), 1, + sym_block, + STATE(4824), 1, + sym_returns, + STATE(4927), 1, + sym__one_type, + STATE(5031), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [27221] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3809), 1, + anon_sym_LBRACE, + STATE(1607), 1, + sym_comment, + STATE(4436), 1, + sym_block, + STATE(4818), 1, + sym_returns, + STATE(4927), 1, + sym__one_type, + STATE(5031), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [27301] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3809), 1, + anon_sym_LBRACE, + STATE(1608), 1, + sym_comment, + STATE(4564), 1, + sym_block, + STATE(4825), 1, + sym_returns, + STATE(4927), 1, + sym__one_type, + STATE(5031), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [27381] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3809), 1, + anon_sym_LBRACE, + STATE(1609), 1, + sym_comment, + STATE(4573), 1, + sym_block, + STATE(4661), 1, + sym_returns, + STATE(4927), 1, + sym__one_type, + STATE(5031), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [27461] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(1610), 1, + sym_comment, + STATE(4242), 1, + sym_block, + STATE(4685), 1, + sym_returns, + STATE(4927), 1, + sym__one_type, + STATE(5031), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [27541] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(1611), 1, + sym_comment, + STATE(4243), 1, + sym_block, + STATE(4694), 1, + sym_returns, + STATE(4927), 1, + sym__one_type, + STATE(5031), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [27621] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3827), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3829), 1, + anon_sym_LBRACK, + ACTIONS(3831), 1, + anon_sym_DOLLAR, + ACTIONS(3833), 1, + anon_sym_LBRACE, + ACTIONS(3835), 1, + anon_sym_DQUOTE, + ACTIONS(3837), 1, + anon_sym_SQUOTE, + ACTIONS(3839), 1, + anon_sym_BQUOTE, + ACTIONS(3841), 1, + sym_raw_string_begin, + STATE(1612), 1, + sym_comment, + STATE(2095), 1, + sym__val_number_decimal, + ACTIONS(3639), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3641), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3823), 2, + anon_sym_export, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 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, - [27173] = 19, + STATE(2435), 2, + sym_cmd_identifier, + sym_val_string, + STATE(2419), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(2395), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3825), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [27707] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2875), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, - anon_sym_bit_DASHand2, - ACTIONS(3820), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, - anon_sym_bit_DASHor2, - ACTIONS(3824), 1, - anon_sym_and2, - STATE(1607), 1, - sym_comment, - STATE(1637), 1, + STATE(1512), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + STATE(1613), 1, + sym_comment, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3816), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3814), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 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, - [27261] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - ACTIONS(3818), 1, - anon_sym_bit_DASHand2, - ACTIONS(3820), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, - anon_sym_bit_DASHor2, - ACTIONS(3824), 1, - anon_sym_and2, - ACTIONS(3826), 1, - anon_sym_xor2, - STATE(1608), 1, - sym_comment, - STATE(1639), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, + ACTIONS(3763), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3769), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3765), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, + ACTIONS(3767), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 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, - [27351] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - STATE(1609), 1, - sym_comment, - STATE(1641), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3814), 8, + ACTIONS(3761), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162687,7 +163131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 21, + ACTIONS(2666), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162702,39 +163146,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27429] = 11, + [27787] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2875), 1, sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - STATE(1610), 1, + STATE(1614), 1, sym_comment, - STATE(1643), 1, + STATE(1640), 1, aux_sym__repeat_newline, - ACTIONS(2714), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2712), 35, + ACTIONS(2668), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2666), 36, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -162747,6 +163184,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_and2, anon_sym_xor2, anon_sym_or2, @@ -162770,236 +163208,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27501] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - STATE(1611), 1, - sym_comment, - STATE(1645), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3816), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3814), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 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, - [27581] = 16, + [27855] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - ACTIONS(3818), 1, - anon_sym_bit_DASHand2, - STATE(1612), 1, + ACTIONS(3010), 1, + anon_sym_DQUOTE, + ACTIONS(3012), 1, + anon_sym_SQUOTE, + ACTIONS(3014), 1, + anon_sym_BQUOTE, + ACTIONS(3022), 1, + sym_raw_string_begin, + ACTIONS(3631), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3843), 1, + anon_sym_LBRACK, + ACTIONS(3845), 1, + anon_sym_DOLLAR, + ACTIONS(3847), 1, + anon_sym_LBRACE, + STATE(1615), 1, sym_comment, - STATE(1647), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3816), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + STATE(2106), 1, + sym__val_number_decimal, + ACTIONS(3627), 2, + anon_sym_export, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 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, - [27663] = 17, + ACTIONS(3639), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3641), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(3196), 2, + sym_cmd_identifier, + sym_val_string, + STATE(3133), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(2624), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3629), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [27941] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - ACTIONS(3818), 1, - anon_sym_bit_DASHand2, - ACTIONS(3820), 1, - anon_sym_bit_DASHxor2, - STATE(1613), 1, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(1616), 1, sym_comment, - STATE(1649), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3816), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3814), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 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, - [27747] = 12, + STATE(4262), 1, + sym_block, + STATE(4688), 1, + sym_returns, + STATE(4927), 1, + sym__one_type, + STATE(5031), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [28021] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3851), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3861), 1, anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1614), 1, + STATE(1617), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3849), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3853), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3857), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3859), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3863), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3855), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2720), 30, + ACTIONS(2547), 31, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163013,6 +163384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -163030,33 +163402,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27821] = 11, + [28093] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3851), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3861), 1, anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1615), 1, + STATE(1618), 1, sym_comment, - ACTIONS(2722), 2, + ACTIONS(2549), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3853), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3857), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3859), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3863), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2720), 34, + ACTIONS(2547), 35, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163070,6 +163440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -163091,27 +163462,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27893] = 8, + [28163] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1616), 1, + STATE(1619), 1, sym_comment, - ACTIONS(3838), 2, + ACTIONS(3853), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3857), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3859), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2722), 3, + ACTIONS(2549), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2720), 37, + ACTIONS(2547), 38, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163126,6 +163495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -163149,23 +163519,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27959] = 6, + [28227] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1617), 1, + STATE(1620), 1, sym_comment, - ACTIONS(3842), 2, + ACTIONS(3857), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2722), 5, + ACTIONS(2549), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2720), 39, + ACTIONS(2547), 40, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163180,6 +163548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -163205,49 +163574,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28021] = 17, + [28287] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3851), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3861), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3869), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3871), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3873), 1, anon_sym_bit_DASHor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1618), 1, + STATE(1621), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3849), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3853), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3857), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3859), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3863), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3855), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3867), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3865), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163256,7 +163623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 15, + ACTIONS(2547), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163269,54 +163636,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [28105] = 18, + [28369] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3851), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3861), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3869), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3871), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3873), 1, anon_sym_bit_DASHor2, - ACTIONS(3860), 1, + ACTIONS(3875), 1, anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1619), 1, + STATE(1622), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3849), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3853), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3857), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3859), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3863), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3855), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3867), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3865), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163325,7 +163691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 14, + ACTIONS(2547), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163338,55 +163704,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [28191] = 19, + [28453] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3851), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3861), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3869), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3871), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3873), 1, anon_sym_bit_DASHor2, - ACTIONS(3860), 1, + ACTIONS(3875), 1, anon_sym_and2, - ACTIONS(3862), 1, + ACTIONS(3877), 1, anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1620), 1, + STATE(1623), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3849), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3853), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3857), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3859), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3863), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3855), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3867), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3865), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163395,7 +163760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 13, + ACTIONS(2547), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163408,39 +163773,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_or2, - [28279] = 13, + [28539] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3851), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3861), 1, anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1621), 1, + STATE(1624), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3849), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3853), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3857), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3859), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3863), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3855), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3850), 8, + ACTIONS(3865), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163449,7 +163813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 22, + ACTIONS(2547), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163462,6 +163826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -163472,30 +163837,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28355] = 10, + [28613] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3851), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3861), 1, anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1622), 1, + STATE(1625), 1, sym_comment, - ACTIONS(2722), 2, + ACTIONS(2549), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3853), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3857), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3859), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2720), 36, + ACTIONS(2547), 37, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163509,6 +163872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -163532,43 +163896,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28425] = 14, + [28681] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3851), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3861), 1, anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1623), 1, + STATE(1626), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3849), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3853), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3857), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3859), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3863), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3855), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3867), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3865), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163577,7 +163939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 18, + ACTIONS(2547), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163590,51 +163952,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28503] = 15, + [28757] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3851), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3861), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3869), 1, anon_sym_bit_DASHand2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1624), 1, + STATE(1627), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3849), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3853), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3857), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3859), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3863), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3855), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3867), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3865), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163643,7 +164004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 17, + ACTIONS(2547), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163656,52 +164017,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28583] = 16, + [28835] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3851), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3861), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3869), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3871), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1625), 1, + STATE(1628), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(3849), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3853), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3857), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3859), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3863), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3855), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3867), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3865), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163710,7 +164070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 16, + ACTIONS(2547), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163723,44 +164083,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [28665] = 13, + [28915] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2870), 1, sym__newline, - ACTIONS(3800), 1, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(1626), 1, - sym_comment, - STATE(1650), 1, + STATE(1544), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + STATE(1629), 1, + sym_comment, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, + ACTIONS(3763), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3769), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, + ACTIONS(3765), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2728), 29, + ACTIONS(2684), 29, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -163790,38 +164151,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28741] = 12, + [28991] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3751), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3759), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(1627), 1, + STATE(1630), 1, sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3753), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3755), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3757), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3773), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3779), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3775), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2732), 30, + ACTIONS(2692), 30, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163852,96 +164213,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28815] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - STATE(1628), 1, - sym_comment, - STATE(1651), 1, - aux_sym__repeat_newline, - ACTIONS(2730), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2728), 33, - anon_sym_in, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [28889] = 11, - ACTIONS(3), 1, + [29065] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1629), 1, + ACTIONS(2878), 1, + aux_sym_cmd_identifier_token2, + STATE(1631), 1, sym_comment, - ACTIONS(2734), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2732), 34, - anon_sym_in, + ACTIONS(890), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163953,64 +164233,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [28961] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - STATE(1630), 1, - sym_comment, - STATE(1652), 1, - aux_sym__repeat_newline, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2730), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2728), 36, + ACTIONS(793), 29, anon_sym_in, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_GT2, anon_sym_DASH2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -164021,311 +164253,382 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, + anon_sym_LT2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [29029] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1631), 1, - sym_comment, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2734), 3, - anon_sym_GT2, - anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2732), 37, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29095] = 7, + [29125] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3803), 1, + anon_sym_LBRACE, STATE(1632), 1, sym_comment, - STATE(1653), 1, - aux_sym__repeat_newline, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2730), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2728), 38, - anon_sym_in, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [29159] = 6, + STATE(4263), 1, + sym_block, + STATE(4696), 1, + sym_returns, + STATE(4927), 1, + sym__one_type, + STATE(5031), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [29205] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3809), 1, + anon_sym_LBRACE, STATE(1633), 1, sym_comment, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2734), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2732), 39, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [29221] = 18, + STATE(4606), 1, + sym_block, + STATE(4707), 1, + sym_returns, + STATE(4927), 1, + sym__one_type, + STATE(5031), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [29285] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - ACTIONS(3818), 1, - anon_sym_bit_DASHand2, - ACTIONS(3820), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, - anon_sym_bit_DASHor2, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3809), 1, + anon_sym_LBRACE, STATE(1634), 1, sym_comment, - STATE(1654), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3816), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + STATE(4500), 1, + sym_block, + STATE(4706), 1, + sym_returns, + STATE(4927), 1, + sym__one_type, + STATE(5031), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [29365] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1412), 1, + anon_sym_DQUOTE, + ACTIONS(1414), 1, + anon_sym_SQUOTE, + ACTIONS(1416), 1, + anon_sym_BQUOTE, + ACTIONS(1426), 1, + sym_raw_string_begin, + ACTIONS(3883), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3885), 1, + sym__newline, + ACTIONS(3887), 1, + anon_sym_RBRACK, + STATE(1635), 1, + sym_comment, + STATE(1709), 1, + aux_sym__types_body_repeat1, + STATE(1773), 1, + aux_sym__command_list_body_repeat1, + STATE(2094), 1, + sym__val_number_decimal, + STATE(4489), 1, + sym__command_name, + STATE(4739), 1, + sym_cmd_identifier, + STATE(4740), 1, + sym_val_string, + STATE(5135), 1, + sym__command_list_body, + ACTIONS(3639), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3641), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3879), 2, + anon_sym_export, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 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, - [29307] = 17, + STATE(3638), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3881), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [29457] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3809), 1, + anon_sym_LBRACE, + STATE(1636), 1, + sym_comment, + STATE(4516), 1, + sym_block, + STATE(4665), 1, + sym_returns, + STATE(4927), 1, + sym__one_type, + STATE(5031), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [29537] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(2870), 1, + sym__newline, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, - anon_sym_bit_DASHand2, - ACTIONS(3856), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, - anon_sym_bit_DASHor2, - STATE(540), 1, + STATE(1545), 1, aux_sym__repeat_newline, - STATE(1635), 1, + STATE(1637), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(2686), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3769), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3852), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(2684), 33, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 15, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164340,54 +164643,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [29391] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - ACTIONS(3818), 1, - anon_sym_bit_DASHand2, - ACTIONS(3820), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, - anon_sym_bit_DASHor2, - ACTIONS(3824), 1, - anon_sym_and2, - STATE(1636), 1, - sym_comment, - STATE(1655), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3816), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3814), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -164395,214 +164650,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 13, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_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, - [29479] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - ACTIONS(3854), 1, - anon_sym_bit_DASHand2, - ACTIONS(3856), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, - anon_sym_bit_DASHor2, - ACTIONS(3860), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1637), 1, - sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 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, - [29565] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - ACTIONS(3818), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, anon_sym_bit_DASHor2, - ACTIONS(3824), 1, - anon_sym_and2, - ACTIONS(3826), 1, - anon_sym_xor2, - STATE(1638), 1, - sym_comment, - STATE(1656), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3816), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3814), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 12, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [29655] = 19, + [29611] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3751), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3759), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, - anon_sym_bit_DASHand2, - ACTIONS(3856), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, - anon_sym_bit_DASHor2, - ACTIONS(3860), 1, - anon_sym_and2, - ACTIONS(3862), 1, - anon_sym_xor2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(1639), 1, + STATE(1638), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(2694), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3753), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3755), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3757), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3779), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3852), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(2692), 34, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -164615,42 +164701,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [29743] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - STATE(1640), 1, - sym_comment, - STATE(1657), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3814), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -164658,84 +164711,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 21, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [29821] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1641), 1, - sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3850), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 22, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -164743,32 +164722,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29897] = 11, + [29683] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2870), 1, sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - STATE(1642), 1, - sym_comment, - STATE(1658), 1, + STATE(1546), 1, aux_sym__repeat_newline, - ACTIONS(2730), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, + STATE(1639), 1, + sym_comment, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3806), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2728), 35, + ACTIONS(2686), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2684), 36, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -164781,6 +164757,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_and2, anon_sym_xor2, anon_sym_or2, @@ -164804,30 +164781,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29969] = 10, + [29751] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(1643), 1, + STATE(1640), 1, sym_comment, - ACTIONS(2734), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3753), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3755), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3757), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2732), 36, + ACTIONS(2694), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2692), 37, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -164841,6 +164815,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_and2, anon_sym_xor2, anon_sym_or2, @@ -164864,54 +164839,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30039] = 15, + [29817] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2870), 1, sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - STATE(1644), 1, - sym_comment, - STATE(1659), 1, + STATE(1547), 1, aux_sym__repeat_newline, - ACTIONS(3798), 2, + STATE(1641), 1, + sym_comment, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2686), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3816), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + anon_sym_PLUS2, + ACTIONS(2684), 38, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164923,50 +164870,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [30119] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1645), 1, - sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3852), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3850), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -164974,433 +164881,564 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_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, - [30197] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2832), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - ACTIONS(3818), 1, - anon_sym_bit_DASHand2, - STATE(1646), 1, - sym_comment, - STATE(1660), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3816), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3814), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 16, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [30279] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - ACTIONS(3854), 1, - anon_sym_bit_DASHand2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1647), 1, - sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3852), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3850), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30359] = 17, + [29881] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(1642), 1, + sym_comment, + STATE(4207), 1, + sym_block, + STATE(4764), 1, + sym_returns, + STATE(4927), 1, + sym__one_type, + STATE(5031), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [29961] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(1643), 1, + sym_comment, + STATE(4208), 1, + sym_block, + STATE(4765), 1, + sym_returns, + STATE(4927), 1, + sym__one_type, + STATE(5031), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [30041] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(1644), 1, + sym_comment, + STATE(4219), 1, + sym_block, + STATE(4779), 1, + sym_returns, + STATE(4927), 1, + sym__one_type, + STATE(5031), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [30121] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(1645), 1, + sym_comment, + STATE(4220), 1, + sym_block, + STATE(4780), 1, + sym_returns, + STATE(4927), 1, + sym__one_type, + STATE(5031), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [30201] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(1646), 1, + sym_comment, + STATE(4221), 1, + sym_block, + STATE(4782), 1, + sym_returns, + STATE(4927), 1, + sym__one_type, + STATE(5031), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [30281] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(1647), 1, + sym_comment, + STATE(4222), 1, + sym_block, + STATE(4783), 1, + sym_returns, + STATE(4927), 1, + sym__one_type, + STATE(5031), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [30361] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(1412), 1, + anon_sym_DQUOTE, + ACTIONS(1414), 1, + anon_sym_SQUOTE, + ACTIONS(1416), 1, + anon_sym_BQUOTE, + ACTIONS(1426), 1, + sym_raw_string_begin, + ACTIONS(3883), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3885), 1, sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, - anon_sym_PLUS2, - ACTIONS(3818), 1, - anon_sym_bit_DASHand2, - ACTIONS(3820), 1, - anon_sym_bit_DASHxor2, + ACTIONS(3889), 1, + anon_sym_RBRACK, STATE(1648), 1, sym_comment, - STATE(1661), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3816), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3814), 8, + STATE(1709), 1, + aux_sym__types_body_repeat1, + STATE(1773), 1, + aux_sym__command_list_body_repeat1, + STATE(2094), 1, + sym__val_number_decimal, + STATE(4489), 1, + sym__command_name, + STATE(4739), 1, + sym_cmd_identifier, + STATE(4740), 1, + sym_val_string, + STATE(4993), 1, + sym__command_list_body, + ACTIONS(3639), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3641), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3879), 2, + anon_sym_export, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 15, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [30443] = 16, + STATE(3638), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3881), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [30453] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - ACTIONS(3854), 1, - anon_sym_bit_DASHand2, - ACTIONS(3856), 1, - anon_sym_bit_DASHxor2, - STATE(540), 1, - aux_sym__repeat_newline, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3809), 1, + anon_sym_LBRACE, STATE(1649), 1, sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3852), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3850), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [30525] = 12, + STATE(4598), 1, + sym_block, + STATE(4712), 1, + sym_returns, + STATE(4927), 1, + sym__one_type, + STATE(5031), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [30533] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, STATE(1650), 1, sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3755), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2740), 30, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [30599] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1651), 1, - sym_comment, - ACTIONS(2742), 2, + ACTIONS(2694), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2740), 34, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [30671] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1652), 1, - sym_comment, - ACTIONS(3838), 2, anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2742), 3, - anon_sym_GT2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2740), 37, + ACTIONS(2692), 39, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -165433,29 +165471,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30737] = 6, + [30595] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1653), 1, + STATE(1651), 1, sym_comment, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2742), 5, + ACTIONS(2620), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2740), 39, - anon_sym_in, + ACTIONS(3891), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165468,6 +165502,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_RBRACE, + ACTIONS(2618), 29, + anon_sym_in, anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, @@ -165487,6 +165524,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -165494,49 +165533,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [30799] = 17, + [30655] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(2870), 1, + sym__newline, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3781), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3785), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3789), 1, anon_sym_bit_DASHor2, - STATE(540), 1, + STATE(1548), 1, aux_sym__repeat_newline, - STATE(1654), 1, + STATE(1652), 1, sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3763), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3769), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3765), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3767), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3761), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165545,8 +165586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 15, - sym__newline, + ACTIONS(2684), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165561,51 +165601,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [30883] = 18, + [30741] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3751), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3759), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3783), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3787), 1, anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHor2, - ACTIONS(3860), 1, - anon_sym_and2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(1655), 1, + STATE(1653), 1, sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3753), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3755), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3757), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3773), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3779), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3775), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3777), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3771), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165614,7 +165652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 14, + ACTIONS(2692), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165627,64 +165665,88 @@ static 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, - [30969] = 19, - ACTIONS(3), 1, + [30825] = 20, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - ACTIONS(3854), 1, - anon_sym_bit_DASHand2, - ACTIONS(3856), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, - anon_sym_bit_DASHor2, - ACTIONS(3860), 1, - anon_sym_and2, - ACTIONS(3862), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1656), 1, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(2662), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2664), 1, + anon_sym_COLON2, + ACTIONS(3631), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3894), 1, + anon_sym_DASH_DASH, + STATE(1654), 1, sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3852), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + STATE(1704), 1, + aux_sym_decl_def_repeat1, + STATE(2106), 1, + sym__val_number_decimal, + STATE(2205), 1, + sym_long_flag, + STATE(3568), 1, + sym_val_string, + STATE(3611), 1, + sym_cmd_identifier, + STATE(3744), 1, + sym__command_name, + ACTIONS(3896), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3898), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2243), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3627), 25, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 13, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [30915] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2878), 1, + aux_sym_cmd_identifier_token2, + STATE(1655), 1, + sym_comment, + ACTIONS(2325), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165696,41 +165758,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, - [31057] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1657), 1, - sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3850), 8, + anon_sym_EQ_TILDE2, + ACTIONS(2327), 29, anon_sym_in, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -165738,54 +165778,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 22, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_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_LT2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31133] = 10, - ACTIONS(3), 1, + [30975] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1658), 1, + ACTIONS(2878), 1, + aux_sym_cmd_identifier_token2, + STATE(1656), 1, sym_comment, - ACTIONS(2742), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2740), 36, - anon_sym_in, + ACTIONS(2562), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165797,7 +165813,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_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + ACTIONS(2564), 29, + anon_sym_in, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -165808,56 +165833,263 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, + anon_sym_LT2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31203] = 14, + [31035] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(1657), 1, + sym_comment, + STATE(4270), 1, + sym_block, + STATE(4658), 1, + sym_returns, + STATE(4927), 1, + sym__one_type, + STATE(5031), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [31115] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(1658), 1, + sym_comment, + STATE(4271), 1, + sym_block, + STATE(4682), 1, + sym_returns, + STATE(4927), 1, + sym__one_type, + STATE(5031), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [31195] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(1659), 1, + sym_comment, + STATE(4283), 1, + sym_block, + STATE(4692), 1, + sym_returns, + STATE(4927), 1, + sym__one_type, + STATE(5031), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [31275] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(2870), 1, + sym__newline, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(540), 1, + ACTIONS(3781), 1, + anon_sym_bit_DASHand2, + ACTIONS(3785), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3789), 1, + anon_sym_bit_DASHor2, + ACTIONS(3805), 1, + anon_sym_and2, + STATE(1549), 1, aux_sym__repeat_newline, - STATE(1659), 1, + STATE(1660), 1, sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3763), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3769), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3765), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3767), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3761), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165866,8 +166098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 18, - sym__newline, + ACTIONS(2684), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165879,51 +166110,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [31281] = 15, + [31363] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(3751), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3759), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3783), 1, anon_sym_bit_DASHand2, - STATE(540), 1, + ACTIONS(3787), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3811), 1, + anon_sym_bit_DASHor2, + ACTIONS(3813), 1, + anon_sym_and2, + STATE(517), 1, aux_sym__repeat_newline, - STATE(1660), 1, + STATE(1661), 1, sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3753), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3755), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3757), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3773), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3779), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3775), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3777), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3771), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165932,7 +166165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 17, + ACTIONS(2692), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165945,52 +166178,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_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [31361] = 16, + [31449] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3836), 1, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3846), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3854), 1, + ACTIONS(3781), 1, anon_sym_bit_DASHand2, - ACTIONS(3856), 1, + ACTIONS(3785), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, + ACTIONS(3789), 1, + anon_sym_bit_DASHor2, + ACTIONS(3805), 1, + anon_sym_and2, + ACTIONS(3807), 1, + anon_sym_xor2, + STATE(1550), 1, aux_sym__repeat_newline, - STATE(1661), 1, + STATE(1662), 1, sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(3763), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3769), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(3765), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(3767), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(3761), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165999,8 +166237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 16, - sym__newline, + ACTIONS(2684), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -166012,44 +166249,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - [31443] = 15, + [31539] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3791), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3793), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3799), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3801), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3803), 1, anon_sym_LBRACE, - STATE(1662), 1, + STATE(1663), 1, sym_comment, - STATE(4571), 1, + STATE(4287), 1, sym_block, - STATE(4687), 1, + STATE(4697), 1, sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, + STATE(4927), 1, sym__one_type, - STATE(5090), 1, + STATE(5031), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, anon_sym_table, anon_sym_record, - STATE(4276), 4, + STATE(4316), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3795), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -166081,40 +166315,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [31523] = 15, + [31619] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_DASH2, + ACTIONS(3759), 1, + anon_sym_PLUS2, + ACTIONS(3783), 1, + anon_sym_bit_DASHand2, + ACTIONS(3787), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3811), 1, + anon_sym_bit_DASHor2, + ACTIONS(3813), 1, + anon_sym_and2, + ACTIONS(3815), 1, + anon_sym_xor2, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(1664), 1, + sym_comment, + ACTIONS(3753), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3755), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3757), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3773), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3779), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3775), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3777), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3771), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2692), 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, + [31707] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3791), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3793), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3799), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3801), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3809), 1, anon_sym_LBRACE, - STATE(1663), 1, + STATE(1665), 1, sym_comment, - STATE(4604), 1, + STATE(4425), 1, sym_block, - STATE(4696), 1, + STATE(4710), 1, sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, + STATE(4927), 1, sym__one_type, - STATE(5090), 1, + STATE(5031), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, anon_sym_table, anon_sym_record, - STATE(4276), 4, + STATE(4316), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3795), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -166146,40 +166449,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [31603] = 15, + [31787] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3791), 1, anon_sym_COLON, - ACTIONS(3745), 1, + ACTIONS(3793), 1, anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3799), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3801), 1, anon_sym_oneof, - ACTIONS(3755), 1, + ACTIONS(3809), 1, anon_sym_LBRACE, - STATE(1664), 1, + STATE(1666), 1, sym_comment, - STATE(4388), 1, + STATE(4416), 1, sym_block, - STATE(4724), 1, + STATE(4717), 1, sym_returns, - STATE(5015), 1, - sym__type_annotation, - STATE(5058), 1, + STATE(4927), 1, sym__one_type, - STATE(5090), 1, + STATE(5031), 1, sym__multiple_types, - ACTIONS(3749), 2, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, anon_sym_table, anon_sym_record, - STATE(4276), 4, + STATE(4316), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3795), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -166211,53 +166514,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [31683] = 11, + [31867] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(2870), 1, + sym__newline, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(1665), 1, + STATE(1551), 1, + aux_sym__repeat_newline, + STATE(1667), 1, sym_comment, - ACTIONS(3864), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(3763), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3769), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3765), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2533), 31, + ACTIONS(3761), 8, anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -166265,40 +166556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [31755] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3866), 1, - anon_sym_DASH2, - ACTIONS(3876), 1, - anon_sym_PLUS2, - STATE(1666), 1, - sym_comment, - ACTIONS(2535), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3872), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2533), 35, - anon_sym_in, - sym__newline, + ACTIONS(2684), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -166310,21 +166568,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -166332,159 +166578,301 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [31825] = 7, + [31945] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(1667), 1, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3809), 1, + anon_sym_LBRACE, + STATE(1668), 1, sym_comment, - ACTIONS(3868), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3872), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2535), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2533), 38, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [31889] = 5, + STATE(4463), 1, + sym_block, + STATE(4718), 1, + sym_returns, + STATE(4927), 1, + sym__one_type, + STATE(5031), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [32025] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(1668), 1, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3809), 1, + anon_sym_LBRACE, + STATE(1669), 1, sym_comment, - ACTIONS(3872), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2535), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2533), 40, + STATE(4505), 1, + sym_block, + STATE(4807), 1, + sym_returns, + STATE(4927), 1, + sym__one_type, + STATE(5031), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [32105] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3809), 1, + anon_sym_LBRACE, + STATE(1670), 1, + sym_comment, + STATE(4608), 1, + sym_block, + STATE(4721), 1, + sym_returns, + STATE(4927), 1, + sym__one_type, + STATE(5031), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [32185] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(3631), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3900), 1, + anon_sym_LBRACK, + ACTIONS(3902), 1, + anon_sym_DOLLAR, + ACTIONS(3904), 1, + anon_sym_LBRACE, + STATE(1671), 1, + sym_comment, + STATE(2106), 1, + sym__val_number_decimal, + ACTIONS(3627), 2, + anon_sym_export, anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [31949] = 16, + ACTIONS(3639), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3641), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(3196), 2, + sym_cmd_identifier, + sym_val_string, + STATE(3133), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(2243), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3629), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [32271] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(3751), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(3759), 1, anon_sym_PLUS2, - ACTIONS(3884), 1, - anon_sym_bit_DASHand2, - ACTIONS(3886), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3888), 1, - anon_sym_bit_DASHor2, - STATE(1669), 1, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(1672), 1, sym_comment, - ACTIONS(3864), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3753), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3755), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3757), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(3773), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3779), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3775), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3882), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3880), 8, + ACTIONS(3771), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166493,7 +166881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 16, + ACTIONS(2692), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166506,132 +166894,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [32031] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3866), 1, - anon_sym_DASH2, - ACTIONS(3876), 1, - anon_sym_PLUS2, - ACTIONS(3884), 1, - anon_sym_bit_DASHand2, - ACTIONS(3886), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3888), 1, - anon_sym_bit_DASHor2, - ACTIONS(3890), 1, - anon_sym_and2, - STATE(1670), 1, - sym_comment, - ACTIONS(3864), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3872), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3882), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3880), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 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_xor2, - anon_sym_or2, - [32115] = 18, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [32347] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3809), 1, + anon_sym_LBRACE, + STATE(1673), 1, + sym_comment, + STATE(4590), 1, + sym_block, + STATE(4691), 1, + sym_returns, + STATE(4927), 1, + sym__one_type, + STATE(5031), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [32427] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3809), 1, + anon_sym_LBRACE, + STATE(1674), 1, + sym_comment, + STATE(4601), 1, + sym_block, + STATE(4716), 1, + sym_returns, + STATE(4927), 1, + sym__one_type, + STATE(5031), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [32507] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3884), 1, - anon_sym_bit_DASHand2, - ACTIONS(3886), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3888), 1, - anon_sym_bit_DASHor2, - ACTIONS(3890), 1, - anon_sym_and2, - ACTIONS(3892), 1, - anon_sym_xor2, - STATE(1671), 1, + STATE(1630), 1, + aux_sym__repeat_newline, + STATE(1675), 1, sym_comment, - ACTIONS(3864), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(3763), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3769), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(3765), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3882), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3880), 8, + ACTIONS(2666), 29, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 14, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -166643,39 +167080,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_RBRACE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [32201] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3866), 1, - anon_sym_DASH2, - ACTIONS(3876), 1, - anon_sym_PLUS2, - STATE(1672), 1, - sym_comment, - ACTIONS(3864), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3872), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3880), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -166683,23 +167090,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 23, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_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_like2, @@ -166707,28 +167097,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32275] = 9, + [32583] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, - anon_sym_DASH2, - ACTIONS(3876), 1, - anon_sym_PLUS2, - STATE(1673), 1, + ACTIONS(3791), 1, + anon_sym_COLON, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(1676), 1, sym_comment, - ACTIONS(2535), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, + STATE(4182), 1, + sym_block, + STATE(4664), 1, + sym_returns, + STATE(4927), 1, + sym__one_type, + STATE(5031), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [32663] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1677), 1, + sym_comment, + ACTIONS(3906), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(3908), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(3910), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2533), 37, + ACTIONS(2549), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2547), 37, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -166741,8 +167194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -166766,107 +167218,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32343] = 13, + [32726] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, - anon_sym_DASH2, - ACTIONS(3876), 1, - anon_sym_PLUS2, - STATE(1674), 1, + ACTIONS(1584), 1, + anon_sym_DOLLAR, + ACTIONS(1588), 1, + anon_sym_LPAREN2, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(3912), 1, + anon_sym_DOT, + STATE(1678), 1, sym_comment, - ACTIONS(3864), 2, + STATE(1871), 1, + sym__immediate_decimal, + ACTIONS(3914), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3916), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1964), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1586), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3872), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3882), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3880), 8, + anon_sym_PLUS2, + ACTIONS(1582), 29, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 19, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [32419] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3866), 1, - anon_sym_DASH2, - ACTIONS(3876), 1, - anon_sym_PLUS2, - ACTIONS(3884), 1, - anon_sym_bit_DASHand2, - STATE(1675), 1, - sym_comment, - ACTIONS(3864), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3872), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3882), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3880), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -166874,256 +167262,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [32497] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3866), 1, - anon_sym_DASH2, - ACTIONS(3876), 1, - anon_sym_PLUS2, - ACTIONS(3884), 1, - anon_sym_bit_DASHand2, - ACTIONS(3886), 1, - anon_sym_bit_DASHxor2, - STATE(1676), 1, - sym_comment, - ACTIONS(3864), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3868), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3872), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3882), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3880), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [32577] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3784), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3896), 1, - anon_sym_DOLLAR, - ACTIONS(3898), 1, - anon_sym_LBRACE, - STATE(1677), 1, - sym_comment, - STATE(2107), 1, - sym__val_number_decimal, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, - anon_sym_export, - anon_sym_in, - STATE(4663), 2, - sym_cmd_identifier, - sym_val_string, - STATE(4673), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3782), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [32663] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - ACTIONS(3854), 1, - anon_sym_bit_DASHand2, - ACTIONS(3856), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, - anon_sym_bit_DASHor2, - ACTIONS(3860), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(1678), 1, - sym_comment, - ACTIONS(3834), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3838), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3842), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3852), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3850), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 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, - [32749] = 11, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [32799] = 11, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1584), 1, anon_sym_DOLLAR, ACTIONS(1588), 1, anon_sym_LPAREN2, - ACTIONS(1639), 1, + ACTIONS(1598), 1, sym__unquoted_pattern, STATE(1679), 1, sym_comment, - STATE(1925), 1, + STATE(1958), 1, sym__immediate_decimal, - ACTIONS(3900), 2, + ACTIONS(3918), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3902), 2, + ACTIONS(3920), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(742), 2, + STATE(809), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1633), 6, + ACTIONS(1586), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1631), 30, + ACTIONS(1582), 30, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -167154,104 +167339,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32820] = 19, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3766), 1, - anon_sym_DASH_DASH, - STATE(1680), 1, - sym_comment, - STATE(1713), 1, - aux_sym_decl_def_repeat1, - STATE(2099), 1, - sym__val_number_decimal, - STATE(2148), 1, - sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(3729), 1, - sym__command_name, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [32907] = 11, + [32870] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3928), 1, anon_sym_PLUS2, - STATE(1681), 1, + STATE(1680), 1, sym_comment, - ACTIONS(3904), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3906), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3908), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3910), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3922), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3930), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3926), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2533), 30, + ACTIONS(2547), 30, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -167282,31 +167399,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [32978] = 10, + [32941] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3932), 1, + sym__newline, + ACTIONS(3934), 1, + anon_sym_RBRACK, + STATE(1681), 1, + sym_comment, + STATE(1731), 1, + aux_sym__types_body_repeat1, + STATE(1807), 1, + aux_sym__types_body_repeat3, + STATE(4452), 1, + sym__one_type, + STATE(4979), 1, + sym__type_annotation, + STATE(5160), 1, + sym__types_body, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [33018] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3928), 1, anon_sym_PLUS2, STATE(1682), 1, sym_comment, - ACTIONS(2535), 2, + ACTIONS(2549), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3906), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3908), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3910), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3930), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2533), 34, + ACTIONS(2547), 34, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -167341,25 +167521,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33047] = 7, + [33087] = 5, ACTIONS(3), 1, anon_sym_POUND, STATE(1683), 1, sym_comment, ACTIONS(3908), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3912), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2535), 3, + ACTIONS(2549), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2533), 37, + ACTIONS(2547), 39, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -167392,28 +167568,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33110] = 5, + [33146] = 16, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3924), 1, + anon_sym_DASH2, + ACTIONS(3928), 1, + anon_sym_PLUS2, + ACTIONS(3940), 1, + anon_sym_bit_DASHand2, + ACTIONS(3942), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3944), 1, + anon_sym_bit_DASHor2, STATE(1684), 1, sym_comment, - ACTIONS(3912), 2, + ACTIONS(3906), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3908), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2535), 5, + ACTIONS(3910), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3922), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2533), 39, - ts_builtin_sym_end, + ACTIONS(3930), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3926), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3938), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3936), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2547), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -167425,7 +167637,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, + [33227] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1584), 1, + anon_sym_DOLLAR, + ACTIONS(1588), 1, + anon_sym_LPAREN2, + ACTIONS(1641), 1, + sym__unquoted_pattern, + STATE(1685), 1, + sym_comment, + STATE(1944), 1, + sym__immediate_decimal, + ACTIONS(3918), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3920), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(846), 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(1631), 30, + anon_sym_in, + sym__newline, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -167444,6 +167691,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -167451,47 +167700,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33169] = 16, + [33298] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3928), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, + ACTIONS(3940), 1, anon_sym_bit_DASHand2, - ACTIONS(3926), 1, + ACTIONS(3942), 1, anon_sym_bit_DASHxor2, - ACTIONS(3928), 1, + ACTIONS(3944), 1, anon_sym_bit_DASHor2, - STATE(1685), 1, + ACTIONS(3946), 1, + anon_sym_and2, + STATE(1686), 1, sym_comment, - ACTIONS(3904), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3906), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3908), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3910), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3922), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3930), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3926), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3938), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3936), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167500,7 +167751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 15, + ACTIONS(2547), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -167513,62 +167764,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [33250] = 17, + [33381] = 19, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(2533), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3631), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3894), 1, + anon_sym_DASH_DASH, + STATE(1687), 1, + sym_comment, + STATE(1704), 1, + aux_sym_decl_def_repeat1, + STATE(2106), 1, + sym__val_number_decimal, + STATE(2205), 1, + sym_long_flag, + STATE(3568), 1, + sym_val_string, + STATE(3611), 1, + sym_cmd_identifier, + STATE(3744), 1, + sym__command_name, + ACTIONS(3896), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3898), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2243), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3627), 25, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [33468] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_DASH2, - ACTIONS(3916), 1, - anon_sym_PLUS2, ACTIONS(3924), 1, - anon_sym_bit_DASHand2, - ACTIONS(3926), 1, - anon_sym_bit_DASHxor2, + anon_sym_DASH2, ACTIONS(3928), 1, - anon_sym_bit_DASHor2, - ACTIONS(3930), 1, - anon_sym_and2, - STATE(1686), 1, + anon_sym_PLUS2, + STATE(1688), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(2549), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3906), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3908), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3910), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3922), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3920), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 14, + ACTIONS(2547), 36, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -167580,168 +167869,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor2, - anon_sym_or2, - [33333] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_DASH2, - ACTIONS(3916), 1, - anon_sym_PLUS2, - ACTIONS(3924), 1, - anon_sym_bit_DASHand2, - ACTIONS(3926), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3928), 1, - anon_sym_bit_DASHor2, - ACTIONS(3930), 1, anon_sym_and2, - ACTIONS(3932), 1, anon_sym_xor2, - STATE(1687), 1, - sym_comment, - ACTIONS(3904), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3908), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3912), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 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, - [33418] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(3936), 1, - anon_sym_RBRACK, - STATE(1688), 1, - sym_comment, - STATE(1726), 1, - aux_sym__types_body_repeat1, - STATE(1797), 1, - aux_sym__types_body_repeat3, - STATE(4464), 1, - sym__one_type, - STATE(4804), 1, - sym__type_annotation, - STATE(4900), 1, - sym__types_body, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [33495] = 12, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [33535] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3928), 1, anon_sym_PLUS2, STATE(1689), 1, sym_comment, - ACTIONS(3904), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3906), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3908), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3910), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3922), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3930), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3926), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3920), 8, + ACTIONS(3938), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3936), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167750,7 +167935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 22, + ACTIONS(2547), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -167766,37 +167951,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33568] = 9, + [33610] = 19, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(2878), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3631), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3894), 1, + anon_sym_DASH_DASH, + STATE(1690), 1, + sym_comment, + STATE(1697), 1, + aux_sym_decl_def_repeat1, + STATE(2106), 1, + sym__val_number_decimal, + STATE(2205), 1, + sym_long_flag, + STATE(3568), 1, + sym_val_string, + STATE(3611), 1, + sym_cmd_identifier, + STATE(3726), 1, + sym__command_name, + ACTIONS(3896), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3898), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2243), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3627), 25, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [33697] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3928), 1, anon_sym_PLUS2, - STATE(1690), 1, + ACTIONS(3940), 1, + anon_sym_bit_DASHand2, + STATE(1691), 1, sym_comment, - ACTIONS(2535), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3906), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3908), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3910), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2533), 36, - ts_builtin_sym_end, + ACTIONS(3922), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3930), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3926), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3938), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3936), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2547), 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, + [33774] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1692), 1, + sym_comment, + ACTIONS(2620), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(3891), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -167808,6 +168109,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(2618), 29, + anon_sym_in, + anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -167826,46 +168130,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33635] = 13, + [33833] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3928), 1, anon_sym_PLUS2, - STATE(1691), 1, + ACTIONS(3940), 1, + anon_sym_bit_DASHand2, + ACTIONS(3942), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3944), 1, + anon_sym_bit_DASHor2, + ACTIONS(3946), 1, + anon_sym_and2, + ACTIONS(3948), 1, + anon_sym_xor2, + STATE(1693), 1, sym_comment, - ACTIONS(3904), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3906), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3908), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3910), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3922), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3930), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3926), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3938), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3936), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167874,7 +168192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 18, + ACTIONS(2547), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -167887,49 +168205,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_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [33710] = 14, + [33918] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3928), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, + ACTIONS(3940), 1, anon_sym_bit_DASHand2, - STATE(1692), 1, + ACTIONS(3942), 1, + anon_sym_bit_DASHxor2, + STATE(1694), 1, sym_comment, - ACTIONS(3904), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3906), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3908), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3910), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3922), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3930), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3926), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(3938), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3936), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167938,7 +168253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 17, + ACTIONS(2547), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -167954,47 +168269,37 @@ 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, - [33787] = 15, + [33997] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, + ACTIONS(3924), 1, anon_sym_DASH2, - ACTIONS(3916), 1, + ACTIONS(3928), 1, anon_sym_PLUS2, - ACTIONS(3924), 1, - anon_sym_bit_DASHand2, - ACTIONS(3926), 1, - anon_sym_bit_DASHxor2, - STATE(1693), 1, + STATE(1695), 1, sym_comment, - ACTIONS(3904), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3908), 2, + ACTIONS(3906), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3912), 2, + ACTIONS(3908), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, + ACTIONS(3910), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, + ACTIONS(3922), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3930), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(3926), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(3936), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -168003,7 +168308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 16, + ACTIONS(2547), 22, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -168019,9 +168324,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33866] = 19, - ACTIONS(103), 1, + [34070] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1584), 1, + anon_sym_DOLLAR, + ACTIONS(1588), 1, + anon_sym_LPAREN2, + ACTIONS(1598), 1, + sym__unquoted_pattern, + STATE(1696), 1, + sym_comment, + STATE(1996), 1, + sym__immediate_decimal, + ACTIONS(3950), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3952), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(809), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1586), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1582), 29, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [34140] = 19, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, anon_sym_DQUOTE, @@ -168031,39 +168401,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(3631), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3766), 1, + ACTIONS(3954), 1, anon_sym_DASH_DASH, - STATE(1694), 1, + STATE(1697), 1, sym_comment, - STATE(1710), 1, + STATE(2074), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2106), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2205), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3568), 1, sym_val_string, - STATE(3629), 1, + STATE(3611), 1, + sym_cmd_identifier, + STATE(3708), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3627), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3641), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2243), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, + ACTIONS(3629), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168081,45 +168451,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [33953] = 12, + [34226] = 11, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1584), 1, anon_sym_DOLLAR, ACTIONS(1588), 1, anon_sym_LPAREN2, - ACTIONS(1615), 1, + ACTIONS(1641), 1, sym__unquoted_pattern, - ACTIONS(3938), 1, - anon_sym_DOT, - STATE(1695), 1, + STATE(1698), 1, sym_comment, - STATE(1855), 1, + STATE(2002), 1, sym__immediate_decimal, - ACTIONS(3940), 2, + ACTIONS(3950), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3942), 2, + ACTIONS(3952), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1963), 2, + STATE(846), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 6, + ACTIONS(1633), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 29, + ACTIONS(1631), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -168149,92 +168516,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34026] = 5, + [34296] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1696), 1, + ACTIONS(3956), 1, + anon_sym_DOT, + ACTIONS(3958), 1, + aux_sym__immediate_decimal_token5, + STATE(1699), 1, sym_comment, - ACTIONS(2565), 5, + ACTIONS(739), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(3757), 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(2563), 29, - anon_sym_in, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [34085] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, + anon_sym_DOT_DOT2, + sym_filesize_unit, sym__unquoted_pattern, - STATE(1697), 1, - sym_comment, - STATE(1919), 1, - sym__immediate_decimal, - ACTIONS(3900), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3902), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(723), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1596), 30, + ACTIONS(741), 35, anon_sym_in, sym__newline, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -168254,6 +168557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -168263,7 +168567,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34156] = 19, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [34356] = 19, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -168274,39 +168581,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3631), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, + ACTIONS(3954), 1, anon_sym_DASH_DASH, - STATE(1698), 1, + STATE(1700), 1, sym_comment, - STATE(2081), 1, + STATE(1711), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2106), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2205), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3568), 1, sym_val_string, - STATE(3691), 1, + STATE(3611), 1, + sym_cmd_identifier, + STATE(3704), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3627), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3641), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2243), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3629), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168330,74 +168637,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34242] = 19, + [34442] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, - anon_sym_DASH_DASH, - STATE(1698), 1, - aux_sym_decl_def_repeat1, - STATE(1699), 1, + ACTIONS(1584), 1, + anon_sym_DOLLAR, + ACTIONS(1588), 1, + anon_sym_LPAREN2, + ACTIONS(1611), 1, + anon_sym_DOT, + STATE(1701), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(2148), 1, - sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(3658), 1, - sym__command_name, - ACTIONS(3637), 2, - anon_sym_export, + STATE(1963), 1, + sym__immediate_decimal, + ACTIONS(3914), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3916), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1962), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1609), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1607), 29, anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [34328] = 19, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [34512] = 19, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -168408,39 +168707,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3631), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, + ACTIONS(3954), 1, anon_sym_DASH_DASH, - STATE(1700), 1, - sym_comment, STATE(1702), 1, + sym_comment, + STATE(1708), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2106), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2205), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3568), 1, sym_val_string, - STATE(3654), 1, + STATE(3611), 1, + sym_cmd_identifier, + STATE(3706), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3627), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3641), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2243), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3629), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168464,7 +168763,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34414] = 19, + [34598] = 19, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -168475,39 +168774,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3631), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, + ACTIONS(3954), 1, anon_sym_DASH_DASH, - STATE(1701), 1, + STATE(1703), 1, sym_comment, - STATE(1709), 1, + STATE(1705), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2106), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2205), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3568), 1, sym_val_string, - STATE(3627), 1, + STATE(3611), 1, + sym_cmd_identifier, + STATE(3746), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3627), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3641), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2243), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3629), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168531,7 +168830,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34500] = 19, + [34684] = 19, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -168542,106 +168841,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3631), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, + ACTIONS(3954), 1, anon_sym_DASH_DASH, - STATE(1702), 1, + STATE(1704), 1, sym_comment, - STATE(2081), 1, + STATE(2074), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2106), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2205), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3568), 1, sym_val_string, - STATE(3657), 1, + STATE(3611), 1, + sym_cmd_identifier, + STATE(3748), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3627), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [34586] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3784), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3786), 1, - sym__newline, - STATE(1703), 1, - sym_comment, - STATE(1763), 1, - aux_sym__command_list_body_repeat1, - STATE(2107), 1, - sym__val_number_decimal, - STATE(2121), 1, - aux_sym__types_body_repeat1, - STATE(4401), 1, - sym__command_name, - STATE(4777), 1, - sym_cmd_identifier, - STATE(4779), 1, - sym_val_string, - ACTIONS(3649), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3641), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, - anon_sym_export, - anon_sym_in, - STATE(3505), 4, + STATE(2243), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3782), 23, + ACTIONS(3629), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168665,292 +168897,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34672] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3946), 1, - anon_sym_DOT, - ACTIONS(3948), 1, - aux_sym__immediate_decimal_token5, - STATE(1704), 1, - sym_comment, - ACTIONS(739), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(741), 35, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [34732] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1600), 1, - anon_sym_DOT, - STATE(1705), 1, - sym_comment, - STATE(1957), 1, - sym__immediate_decimal, - ACTIONS(3940), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3942), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1963), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1596), 29, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [34802] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3950), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3952), 1, - aux_sym__immediate_decimal_token5, - STATE(1706), 1, - sym_comment, - ACTIONS(747), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(749), 35, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [34862] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - STATE(1707), 1, - sym_comment, - STATE(1978), 1, - sym__immediate_decimal, - ACTIONS(3954), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(723), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1596), 29, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [34932] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1639), 1, - sym__unquoted_pattern, - STATE(1708), 1, - sym_comment, - STATE(2092), 1, - sym__immediate_decimal, - ACTIONS(3954), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(742), 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(1631), 29, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [35002] = 19, + [34770] = 19, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -168961,39 +168908,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3631), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, + ACTIONS(3954), 1, anon_sym_DASH_DASH, - STATE(1709), 1, + STATE(1705), 1, sym_comment, - STATE(2081), 1, + STATE(2074), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2106), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2205), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3568), 1, sym_val_string, - STATE(3633), 1, + STATE(3611), 1, + sym_cmd_identifier, + STATE(3751), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3627), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3641), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2243), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3629), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169017,7 +168964,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35088] = 19, + [34856] = 19, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -169028,39 +168975,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3631), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, + ACTIONS(3954), 1, anon_sym_DASH_DASH, - STATE(1710), 1, + STATE(1706), 1, sym_comment, - STATE(2081), 1, + STATE(1707), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2106), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2205), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3568), 1, sym_val_string, - STATE(3666), 1, + STATE(3611), 1, + sym_cmd_identifier, + STATE(3753), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3627), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3641), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2243), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3629), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169084,66 +169031,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35174] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1590), 1, - anon_sym_DOT, - STATE(1711), 1, - sym_comment, - STATE(1962), 1, - sym__immediate_decimal, - ACTIONS(3940), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3942), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1961), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1586), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1582), 29, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [35244] = 19, + [34942] = 19, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -169154,39 +169042,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3631), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, + ACTIONS(3954), 1, anon_sym_DASH_DASH, - STATE(1712), 1, + STATE(1707), 1, sym_comment, - STATE(1714), 1, + STATE(2074), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2106), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2205), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3568), 1, sym_val_string, - STATE(3716), 1, + STATE(3611), 1, + sym_cmd_identifier, + STATE(3756), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3627), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3641), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2243), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3629), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169210,7 +169098,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35330] = 19, + [35028] = 19, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -169221,39 +169109,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3631), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, + ACTIONS(3954), 1, anon_sym_DASH_DASH, - STATE(1713), 1, + STATE(1708), 1, sym_comment, - STATE(2081), 1, + STATE(2074), 1, aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(2106), 1, sym__val_number_decimal, - STATE(2148), 1, + STATE(2205), 1, sym_long_flag, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3568), 1, sym_val_string, - STATE(3628), 1, + STATE(3611), 1, + sym_cmd_identifier, + STATE(3775), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3627), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3641), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2243), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3629), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169277,50 +169165,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35416] = 19, + [35114] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1412), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1414), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1416), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1426), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3883), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3944), 1, - anon_sym_DASH_DASH, - STATE(1714), 1, + ACTIONS(3885), 1, + sym__newline, + STATE(1709), 1, sym_comment, - STATE(2081), 1, - aux_sym_decl_def_repeat1, - STATE(2099), 1, + STATE(1768), 1, + aux_sym__command_list_body_repeat1, + STATE(2094), 1, sym__val_number_decimal, - STATE(2148), 1, - sym_long_flag, - STATE(3532), 1, + STATE(2117), 1, + aux_sym__types_body_repeat1, + STATE(4613), 1, + sym__command_name, + STATE(4739), 1, sym_cmd_identifier, - STATE(3570), 1, + STATE(4740), 1, sym_val_string, - STATE(3648), 1, - sym__command_name, - ACTIONS(3637), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3641), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + ACTIONS(3879), 2, + anon_sym_export, + anon_sym_in, + STATE(3638), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3881), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169344,24 +169232,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35502] = 10, + [35200] = 11, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1584), 1, anon_sym_DOLLAR, ACTIONS(1588), 1, anon_sym_LPAREN2, - STATE(722), 1, - sym__immediate_decimal, - STATE(1715), 1, + ACTIONS(1590), 1, + anon_sym_DOT, + STATE(1710), 1, sym_comment, - ACTIONS(3954), 2, + STATE(1957), 1, + sym__immediate_decimal, + ACTIONS(3914), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(3916), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(721), 2, + STATE(1964), 2, sym__expr_parenthesized_immediate, sym_val_variable, ACTIONS(1586), 6, @@ -169401,8 +169291,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35569] = 17, - ACTIONS(103), 1, + [35270] = 19, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, anon_sym_DQUOTE, @@ -169412,35 +169302,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(3641), 1, + ACTIONS(3631), 1, aux_sym_cmd_identifier_token1, - STATE(1716), 1, + ACTIONS(3954), 1, + anon_sym_DASH_DASH, + STATE(1711), 1, sym_comment, - STATE(2099), 1, + STATE(2074), 1, + aux_sym_decl_def_repeat1, + STATE(2106), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(2205), 1, + sym_long_flag, + STATE(3568), 1, sym_val_string, - STATE(3845), 1, + STATE(3611), 1, + sym_cmd_identifier, + STATE(3709), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3627), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3641), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2243), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, + ACTIONS(3629), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169458,43 +169352,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35650] = 10, + [35356] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - STATE(896), 1, - sym__immediate_decimal, - STATE(1717), 1, - sym_comment, - ACTIONS(3954), 2, + ACTIONS(3960), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(723), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 6, + ACTIONS(3962), 1, + aux_sym__immediate_decimal_token5, + STATE(1712), 1, + sym_comment, + ACTIONS(747), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1596), 29, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(749), 35, anon_sym_in, - anon_sym_EQ_GT, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -169513,6 +169399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -169522,33 +169409,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35717] = 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [35416] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3964), 1, + anon_sym_DOT2, + STATE(1713), 1, + sym_comment, + STATE(1740), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1834), 1, + sym_path, + STATE(1856), 1, + sym_cell_path, + ACTIONS(1663), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1661), 37, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [35479] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(1756), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1766), 1, sym__unquoted_pattern, - ACTIONS(3958), 1, + ACTIONS(3966), 1, anon_sym_DOT_DOT2, - ACTIONS(3962), 1, + ACTIONS(3970), 1, sym_filesize_unit, - ACTIONS(3964), 1, + ACTIONS(3972), 1, sym_duration_unit, - STATE(1718), 1, + STATE(1714), 1, sym_comment, - STATE(4633), 1, + STATE(4726), 1, sym__expr_parenthesized_immediate, - ACTIONS(3960), 2, + ACTIONS(3968), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(868), 5, + ACTIONS(793), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(968), 31, + ACTIONS(890), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -169580,34 +169525,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35786] = 12, + [35548] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3934), 1, + ACTIONS(3974), 1, + anon_sym_DOT, + ACTIONS(3976), 1, + aux_sym__immediate_decimal_token5, + STATE(1715), 1, + sym_comment, + ACTIONS(739), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(741), 34, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [35607] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3932), 1, sym__newline, - ACTIONS(3970), 1, + ACTIONS(3982), 1, anon_sym_list, - ACTIONS(3972), 1, + ACTIONS(3984), 1, anon_sym_oneof, - STATE(1719), 1, + STATE(1716), 1, sym_comment, - STATE(1746), 1, + STATE(1764), 1, aux_sym__types_body_repeat1, - STATE(1831), 1, + STATE(1835), 1, aux_sym__composite_argument_body_repeat1, - STATE(4507), 1, + STATE(4493), 1, sym__all_type, - STATE(4942), 1, + STATE(5247), 1, sym__composite_argument_body, - ACTIONS(3968), 2, + ACTIONS(3980), 2, anon_sym_table, anon_sym_record, - STATE(4516), 4, + STATE(4814), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3966), 31, + ACTIONS(3978), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -169639,27 +169637,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [35857] = 6, + [35678] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3974), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3976), 1, - aux_sym__immediate_decimal_token5, - STATE(1720), 1, + ACTIONS(1584), 1, + anon_sym_DOLLAR, + ACTIONS(1588), 1, + anon_sym_LPAREN2, + STATE(841), 1, + sym__immediate_decimal, + STATE(1717), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(3950), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3952), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(840), 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, - sym__unquoted_pattern, - ACTIONS(749), 34, + ACTIONS(1643), 29, anon_sym_in, - anon_sym_DASH2, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -169679,7 +169685,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -169689,94 +169694,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [35916] = 17, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1721), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(5000), 1, - sym__command_name, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [35997] = 5, + [35745] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3978), 1, - aux_sym__immediate_decimal_token5, - STATE(1722), 1, + ACTIONS(1584), 1, + anon_sym_DOLLAR, + ACTIONS(1588), 1, + anon_sym_LPAREN2, + STATE(843), 1, + sym__immediate_decimal, + STATE(1718), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(3950), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3952), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(842), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1649), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(773), 35, + ACTIONS(1647), 29, anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -169795,7 +169742,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -169805,37 +169751,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [36054] = 10, + [35812] = 10, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1584), 1, anon_sym_DOLLAR, ACTIONS(1588), 1, anon_sym_LPAREN2, - STATE(925), 1, + STATE(845), 1, sym__immediate_decimal, - STATE(1723), 1, + STATE(1719), 1, sym_comment, - ACTIONS(3954), 2, + ACTIONS(3950), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(3952), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(742), 2, + STATE(844), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1633), 6, + ACTIONS(1653), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1631), 29, + ACTIONS(1651), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -169865,46 +169808,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36121] = 17, - ACTIONS(103), 1, + [35879] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1724), 1, + ACTIONS(3964), 1, + anon_sym_DOT2, + STATE(1720), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4147), 1, - sym__command_name, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, + STATE(1740), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1834), 1, + sym_path, + STATE(1863), 1, + sym_cell_path, + ACTIONS(1432), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1434), 37, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169922,19 +169844,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [36202] = 5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [35942] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3948), 1, + ACTIONS(3932), 1, + sym__newline, + ACTIONS(3982), 1, + anon_sym_list, + ACTIONS(3984), 1, + anon_sym_oneof, + STATE(1721), 1, + sym_comment, + STATE(1764), 1, + aux_sym__types_body_repeat1, + STATE(1835), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4493), 1, + sym__all_type, + STATE(4999), 1, + sym__composite_argument_body, + ACTIONS(3980), 2, + anon_sym_table, + anon_sym_record, + STATE(4814), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3978), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [36013] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3958), 1, aux_sym__immediate_decimal_token5, - STATE(1725), 1, + STATE(1722), 1, sym_comment, ACTIONS(739), 8, anon_sym_GT2, @@ -169981,34 +169974,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [36259] = 12, + [36070] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(3932), 1, + sym__newline, + ACTIONS(3982), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3984), 1, anon_sym_oneof, - ACTIONS(3934), 1, + STATE(1723), 1, + sym_comment, + STATE(1764), 1, + aux_sym__types_body_repeat1, + STATE(1835), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4493), 1, + sym__all_type, + STATE(4875), 1, + sym__composite_argument_body, + ACTIONS(3980), 2, + anon_sym_table, + anon_sym_record, + STATE(4814), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3978), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [36141] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3986), 1, + aux_sym__immediate_decimal_token5, + STATE(1724), 1, + sym_comment, + ACTIONS(771), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(773), 35, + anon_sym_in, sym__newline, - STATE(1726), 1, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [36198] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3932), 1, + sym__newline, + ACTIONS(3982), 1, + anon_sym_list, + ACTIONS(3984), 1, + anon_sym_oneof, + STATE(1725), 1, sym_comment, - STATE(1783), 1, - aux_sym__types_body_repeat3, - STATE(1934), 1, + STATE(1764), 1, aux_sym__types_body_repeat1, - STATE(4525), 1, - sym__one_type, - STATE(4804), 1, - sym__type_annotation, - ACTIONS(3749), 2, + STATE(1835), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4493), 1, + sym__all_type, + STATE(4870), 1, + sym__composite_argument_body, + ACTIONS(3980), 2, anon_sym_table, anon_sym_record, - STATE(4276), 4, + STATE(4814), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3978), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -170040,24 +170144,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [36330] = 8, + [36269] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3980), 1, - anon_sym_DOT2, - STATE(1727), 1, + ACTIONS(3988), 1, + anon_sym_QMARK2, + ACTIONS(3990), 1, + anon_sym_BANG, + STATE(1726), 1, sym_comment, - STATE(1742), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1825), 1, - sym_path, - STATE(1862), 1, - sym_cell_path, - ACTIONS(1681), 3, + STATE(1836), 1, + sym__path_suffix, + ACTIONS(1438), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1679), 37, + anon_sym_DOT2, + ACTIONS(1440), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -170095,34 +170198,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [36393] = 10, + [36330] = 17, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(2662), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2664), 1, + anon_sym_COLON2, + ACTIONS(3631), 1, + aux_sym_cmd_identifier_token1, + STATE(1727), 1, + sym_comment, + STATE(2106), 1, + sym__val_number_decimal, + STATE(3568), 1, + sym_val_string, + STATE(3611), 1, + sym_cmd_identifier, + STATE(4267), 1, + sym__command_name, + ACTIONS(3896), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3898), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2243), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3627), 25, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [36411] = 17, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(2662), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2664), 1, + anon_sym_COLON2, + ACTIONS(3631), 1, + aux_sym_cmd_identifier_token1, + STATE(1728), 1, + sym_comment, + STATE(2106), 1, + sym__val_number_decimal, + STATE(3568), 1, + sym_val_string, + STATE(3611), 1, + sym_cmd_identifier, + STATE(3877), 1, + sym__command_name, + ACTIONS(3896), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3898), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2243), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3627), 25, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [36492] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3992), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3994), 1, + aux_sym__immediate_decimal_token5, + STATE(1729), 1, + sym_comment, + ACTIONS(747), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(749), 34, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [36551] = 10, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1584), 1, anon_sym_DOLLAR, ACTIONS(1588), 1, anon_sym_LPAREN2, - STATE(737), 1, + STATE(924), 1, sym__immediate_decimal, - STATE(1728), 1, + STATE(1730), 1, sym_comment, - ACTIONS(3954), 2, + ACTIONS(3950), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(3952), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(736), 2, + STATE(809), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1669), 6, + ACTIONS(1586), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1667), 29, + ACTIONS(1582), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -170152,34 +170436,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36460] = 10, + [36618] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3932), 1, + sym__newline, + STATE(1731), 1, + sym_comment, + STATE(1794), 1, + aux_sym__types_body_repeat3, + STATE(1943), 1, + aux_sym__types_body_repeat1, + STATE(4518), 1, + sym__one_type, + STATE(4979), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [36689] = 10, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1584), 1, anon_sym_DOLLAR, ACTIONS(1588), 1, anon_sym_LPAREN2, - STATE(739), 1, + STATE(909), 1, sym__immediate_decimal, - STATE(1729), 1, + STATE(1732), 1, sym_comment, - ACTIONS(3954), 2, + ACTIONS(3950), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(3952), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(738), 2, + STATE(846), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1673), 6, + ACTIONS(1633), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1671), 29, + ACTIONS(1631), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -170209,34 +170552,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36527] = 10, + [36756] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3964), 1, + anon_sym_DOT2, + STATE(1733), 1, + sym_comment, + STATE(1740), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1834), 1, + sym_path, + STATE(1846), 1, + sym_cell_path, + ACTIONS(1657), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1655), 37, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [36819] = 10, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1584), 1, anon_sym_DOLLAR, ACTIONS(1588), 1, anon_sym_LPAREN2, - STATE(741), 1, + STATE(807), 1, sym__immediate_decimal, - STATE(1730), 1, + STATE(1734), 1, sym_comment, - ACTIONS(3954), 2, + ACTIONS(3950), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(3952), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(740), 2, + STATE(806), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1677), 6, + ACTIONS(1609), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1675), 29, + ACTIONS(1607), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -170266,93 +170664,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36594] = 12, - ACTIONS(3), 1, + [36886] = 17, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(3970), 1, - anon_sym_list, - ACTIONS(3972), 1, - anon_sym_oneof, - STATE(1731), 1, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(2662), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2664), 1, + anon_sym_COLON2, + ACTIONS(3631), 1, + aux_sym_cmd_identifier_token1, + STATE(1735), 1, sym_comment, - STATE(1746), 1, - aux_sym__types_body_repeat1, - STATE(1831), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4507), 1, - sym__all_type, - STATE(4856), 1, - sym__composite_argument_body, - ACTIONS(3968), 2, - anon_sym_table, - anon_sym_record, - STATE(4516), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3966), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [36665] = 12, + STATE(2106), 1, + sym__val_number_decimal, + STATE(3568), 1, + sym_val_string, + STATE(3611), 1, + sym_cmd_identifier, + STATE(4982), 1, + sym__command_name, + ACTIONS(3896), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3898), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2243), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3627), 25, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [36967] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(3970), 1, + ACTIONS(3799), 1, anon_sym_list, - ACTIONS(3972), 1, + ACTIONS(3801), 1, anon_sym_oneof, - STATE(1732), 1, + ACTIONS(3996), 1, + anon_sym_GT2, + ACTIONS(3998), 1, + anon_sym_AT2, + STATE(1736), 1, sym_comment, - STATE(1746), 1, - aux_sym__types_body_repeat1, - STATE(1831), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4507), 1, + STATE(4480), 1, sym__all_type, - STATE(4825), 1, - sym__composite_argument_body, - ACTIONS(3968), 2, + STATE(4998), 1, + sym_param_completer, + ACTIONS(3797), 2, anon_sym_table, anon_sym_record, - STATE(4516), 4, + STATE(4704), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3966), 31, + ACTIONS(3795), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -170384,24 +170785,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [36736] = 7, + [37035] = 16, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(2533), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3631), 1, + aux_sym_cmd_identifier_token1, + STATE(1737), 1, + sym_comment, + STATE(2106), 1, + sym__val_number_decimal, + STATE(3568), 1, + sym_val_string, + STATE(3611), 1, + sym_cmd_identifier, + STATE(4857), 1, + sym__command_name, + ACTIONS(3896), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3898), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2243), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3627), 25, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [37113] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3982), 1, + ACTIONS(4000), 1, anon_sym_QMARK2, - ACTIONS(3984), 1, + ACTIONS(4002), 1, anon_sym_BANG, - STATE(1733), 1, + STATE(1738), 1, sym_comment, - STATE(1833), 1, + STATE(1862), 1, sym__path_suffix, - ACTIONS(1446), 4, + ACTIONS(1438), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1448), 37, + ACTIONS(1440), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170428,8 +170892,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, @@ -170438,24 +170900,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [36797] = 8, + [37173] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1756), 1, + anon_sym_LPAREN2, + ACTIONS(1766), 1, + sym__unquoted_pattern, + ACTIONS(4004), 1, + anon_sym_DOT_DOT2, + ACTIONS(4008), 1, + sym_filesize_unit, + ACTIONS(4010), 1, + sym_duration_unit, + STATE(1739), 1, + sym_comment, + STATE(4726), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4006), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(793), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(890), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [37241] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3980), 1, + ACTIONS(3964), 1, anon_sym_DOT2, - STATE(1734), 1, + STATE(1740), 1, sym_comment, - STATE(1742), 1, + STATE(1741), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(1825), 1, + STATE(1834), 1, sym_path, - STATE(1866), 1, - sym_cell_path, - ACTIONS(1643), 3, + ACTIONS(1490), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1641), 37, + ACTIONS(1492), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -170493,24 +171010,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [36860] = 8, + [37301] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3980), 1, + ACTIONS(4012), 1, anon_sym_DOT2, - STATE(1735), 1, + STATE(1834), 1, + sym_path, + STATE(1741), 2, sym_comment, - STATE(1742), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(1825), 1, - sym_path, - STATE(1858), 1, - sym_cell_path, - ACTIONS(1432), 3, + ACTIONS(1494), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1434), 37, + ACTIONS(1496), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -170548,28 +171062,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [36923] = 6, + [37359] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3986), 1, + ACTIONS(4015), 1, anon_sym_DOT, - ACTIONS(3988), 1, + ACTIONS(4017), 1, aux_sym__immediate_decimal_token5, - STATE(1736), 1, + STATE(1742), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(739), 6, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(741), 35, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_filesize_unit, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [37417] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4019), 1, + anon_sym_DOT, + ACTIONS(4021), 1, + aux_sym__immediate_decimal_token5, + STATE(1743), 1, + sym_comment, + ACTIONS(1730), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(741), 34, + ACTIONS(1728), 34, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -170600,84 +171166,70 @@ 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, - [36982] = 11, + [37475] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3990), 1, - anon_sym_GT2, - ACTIONS(3992), 1, - anon_sym_AT2, - STATE(1737), 1, + ACTIONS(4023), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4025), 1, + aux_sym__immediate_decimal_token5, + STATE(1744), 1, sym_comment, - STATE(4442), 1, - sym__all_type, - STATE(4853), 1, - sym_param_completer, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4708), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [37050] = 8, + ACTIONS(747), 7, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT_DOT2, + aux_sym__val_number_decimal_token1, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(749), 34, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_filesize_unit, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [37533] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3994), 1, - anon_sym_DOT2, - STATE(1738), 1, + STATE(1745), 1, sym_comment, - STATE(1812), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1857), 1, - sym_path, - STATE(1908), 1, - sym_cell_path, - ACTIONS(1681), 3, + ACTIONS(1505), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1679), 36, + anon_sym_DOT2, + ACTIONS(1507), 39, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170704,6 +171256,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, @@ -170712,101 +171266,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37112] = 11, + anon_sym_QMARK2, + anon_sym_BANG, + [37587] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - sym__unquoted_pattern, - ACTIONS(3996), 1, - anon_sym_DOT_DOT2, - ACTIONS(4000), 1, - sym_filesize_unit, - ACTIONS(4002), 1, - sym_duration_unit, - STATE(1739), 1, + STATE(1746), 1, sym_comment, - STATE(4633), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3998), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(968), 30, + ACTIONS(1509), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [37180] = 16, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(93), 1, - anon_sym_SQUOTE, - ACTIONS(95), 1, - anon_sym_BQUOTE, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(105), 1, + anon_sym_DOT2, + ACTIONS(1511), 39, sym_raw_string_begin, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3669), 1, - aux_sym_cmd_identifier_token1, - STATE(1740), 1, - sym_comment, - STATE(1976), 1, - sym__val_number_decimal, - STATE(3907), 1, - sym__command_name, - STATE(4297), 1, - sym_cmd_identifier, - STATE(4298), 1, - sym_val_string, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(480), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3665), 25, - anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170824,33 +171297,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [37258] = 8, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [37641] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3994), 1, - anon_sym_DOT2, - STATE(1741), 1, + STATE(1747), 1, sym_comment, - STATE(1812), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1857), 1, - sym_path, - STATE(1898), 1, - sym_cell_path, - ACTIONS(1643), 3, + ACTIONS(1458), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1641), 36, + anon_sym_DOT2, + ACTIONS(1460), 39, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -170877,6 +171356,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, @@ -170885,22 +171366,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37320] = 7, + anon_sym_QMARK2, + anon_sym_BANG, + [37695] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3980), 1, - anon_sym_DOT2, - STATE(1742), 1, + STATE(1748), 1, sym_comment, - STATE(1743), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1825), 1, - sym_path, - ACTIONS(1458), 3, + ACTIONS(1513), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1460), 37, + anon_sym_DOT2, + ACTIONS(1515), 39, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -170938,21 +171416,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37380] = 6, + anon_sym_QMARK2, + anon_sym_BANG, + [37749] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4004), 1, - anon_sym_DOT2, - STATE(1825), 1, - sym_path, - STATE(1743), 2, + STATE(1749), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1524), 3, + ACTIONS(1517), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1526), 37, + anon_sym_DOT2, + ACTIONS(1519), 39, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -170990,23 +171466,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37438] = 6, + anon_sym_QMARK2, + anon_sym_BANG, + [37803] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4007), 1, - anon_sym_DOT, - ACTIONS(4009), 1, - aux_sym__immediate_decimal_token5, - STATE(1744), 1, + STATE(1750), 1, sym_comment, - ACTIONS(739), 6, + ACTIONS(1521), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(741), 35, + anon_sym_DOT2, + ACTIONS(1523), 39, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -171031,153 +171503,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37496] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(4011), 1, - anon_sym_GT2, - STATE(1745), 1, - sym_comment, - STATE(4493), 1, - sym__all_type, - STATE(4822), 1, - sym_param_completer, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4708), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [37564] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(3970), 1, - anon_sym_list, - ACTIONS(3972), 1, - anon_sym_oneof, - STATE(1746), 1, - sym_comment, - STATE(1828), 1, - aux_sym__composite_argument_body_repeat1, - STATE(1934), 1, - aux_sym__types_body_repeat1, - STATE(4370), 1, - sym__all_type, - ACTIONS(3968), 2, - anon_sym_table, - anon_sym_record, - STATE(4516), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3966), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [37632] = 6, + anon_sym_QMARK2, + anon_sym_BANG, + [37857] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4013), 1, - anon_sym_DOT, - ACTIONS(4015), 1, + ACTIONS(3976), 1, aux_sym__immediate_decimal_token5, - STATE(1747), 1, + STATE(1751), 1, sym_comment, - ACTIONS(1738), 7, + ACTIONS(739), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(1736), 34, + ACTIONS(741), 34, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -171208,25 +171568,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [37690] = 6, + sym_duration_unit, + [37913] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4017), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4019), 1, - aux_sym__immediate_decimal_token5, - STATE(1748), 1, + ACTIONS(4027), 1, + anon_sym_DOT2, + STATE(1752), 1, sym_comment, - ACTIONS(747), 7, + STATE(1800), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1860), 1, + sym_path, + STATE(1909), 1, + sym_cell_path, + ACTIONS(1657), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - aux_sym__val_number_decimal_token1, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(749), 34, + ACTIONS(1655), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171250,28 +171612,158 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37748] = 4, + [37975] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1749), 1, + ACTIONS(4029), 1, + aux_sym__immediate_decimal_token5, + STATE(1753), 1, sym_comment, - ACTIONS(1478), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(771), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(773), 34, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1480), 39, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [38031] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4031), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4033), 1, + aux_sym__immediate_decimal_token5, + STATE(1754), 1, + sym_comment, + ACTIONS(1740), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1738), 34, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [38089] = 16, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, sym_raw_string_begin, + ACTIONS(2533), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3631), 1, + aux_sym_cmd_identifier_token1, + STATE(1755), 1, + sym_comment, + STATE(2106), 1, + sym__val_number_decimal, + STATE(3568), 1, + sym_val_string, + STATE(3611), 1, + sym_cmd_identifier, + STATE(4982), 1, + sym__command_name, + ACTIONS(3896), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3898), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2243), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3627), 25, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171289,39 +171781,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, + [38167] = 16, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(2533), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3631), 1, + aux_sym_cmd_identifier_token1, + STATE(1756), 1, + sym_comment, + STATE(2106), 1, + sym__val_number_decimal, + STATE(3568), 1, + sym_val_string, + STATE(3611), 1, + sym_cmd_identifier, + STATE(4267), 1, + sym__command_name, + ACTIONS(3896), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + ACTIONS(3898), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + STATE(2243), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3627), 25, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [38245] = 16, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1786), 1, anon_sym_DQUOTE, + ACTIONS(1788), 1, anon_sym_SQUOTE, + ACTIONS(1790), 1, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [37802] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1750), 1, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(2533), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3631), 1, + aux_sym_cmd_identifier_token1, + STATE(1757), 1, sym_comment, - ACTIONS(1543), 4, + STATE(2106), 1, + sym__val_number_decimal, + STATE(3568), 1, + sym_val_string, + STATE(3611), 1, + sym_cmd_identifier, + STATE(3877), 1, + sym__command_name, + ACTIONS(3896), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3898), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2243), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3627), 25, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1545), 39, - sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171339,39 +171905,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, + [38323] = 16, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(2878), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3631), 1, + aux_sym_cmd_identifier_token1, + STATE(1758), 1, + sym_comment, + STATE(2106), 1, + sym__val_number_decimal, + STATE(3568), 1, + sym_val_string, + STATE(3611), 1, + sym_cmd_identifier, + STATE(4296), 1, + sym__command_name, + ACTIONS(3896), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + ACTIONS(3898), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + STATE(2243), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3627), 25, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [38401] = 16, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1786), 1, anon_sym_DQUOTE, + ACTIONS(1788), 1, anon_sym_SQUOTE, + ACTIONS(1790), 1, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [37856] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1751), 1, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(2533), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3631), 1, + aux_sym_cmd_identifier_token1, + STATE(1759), 1, sym_comment, - ACTIONS(1466), 4, + STATE(2106), 1, + sym__val_number_decimal, + STATE(3568), 1, + sym_val_string, + STATE(3611), 1, + sym_cmd_identifier, + STATE(5157), 1, + sym__command_name, + ACTIONS(3896), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3898), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2243), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3627), 25, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1468), 39, - sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171389,39 +172029,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, + [38479] = 16, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(2533), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3631), 1, + aux_sym_cmd_identifier_token1, + STATE(1760), 1, + sym_comment, + STATE(2106), 1, + sym__val_number_decimal, + STATE(3568), 1, + sym_val_string, + STATE(3611), 1, + sym_cmd_identifier, + STATE(5005), 1, + sym__command_name, + ACTIONS(3896), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + ACTIONS(3898), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [37910] = 4, + STATE(2243), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3627), 25, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [38557] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1752), 1, + ACTIONS(4027), 1, + anon_sym_DOT2, + STATE(1761), 1, sym_comment, - ACTIONS(1470), 4, + STATE(1800), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1860), 1, + sym_path, + STATE(1899), 1, + sym_cell_path, + ACTIONS(1663), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1472), 39, + ACTIONS(1661), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171448,8 +172144,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, @@ -171458,9 +172152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [37964] = 16, + [38619] = 16, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -171471,32 +172163,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(2549), 1, + ACTIONS(2878), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(3631), 1, aux_sym_cmd_identifier_token1, - STATE(1753), 1, + STATE(1762), 1, sym_comment, - STATE(2099), 1, + STATE(2106), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3568), 1, sym_val_string, - STATE(4953), 1, + STATE(3611), 1, + sym_cmd_identifier, + STATE(5116), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3896), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3898), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2243), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(3627), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -171522,18 +172214,140 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38042] = 4, + [38697] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(1754), 1, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3998), 1, + anon_sym_AT2, + ACTIONS(4035), 1, + anon_sym_GT2, + STATE(1763), 1, + sym_comment, + STATE(4431), 1, + sym__all_type, + STATE(4845), 1, + sym_param_completer, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4704), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [38765] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3932), 1, + sym__newline, + ACTIONS(3982), 1, + anon_sym_list, + ACTIONS(3984), 1, + anon_sym_oneof, + STATE(1764), 1, + sym_comment, + STATE(1842), 1, + aux_sym__composite_argument_body_repeat1, + STATE(1943), 1, + aux_sym__types_body_repeat1, + STATE(4474), 1, + sym__all_type, + ACTIONS(3980), 2, + anon_sym_table, + anon_sym_record, + STATE(4814), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3978), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [38833] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4027), 1, + anon_sym_DOT2, + STATE(1765), 1, sym_comment, - ACTIONS(1514), 4, + STATE(1800), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1860), 1, + sym_path, + STATE(1883), 1, + sym_cell_path, + ACTIONS(1432), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1516), 39, + ACTIONS(1434), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171560,8 +172374,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, @@ -171570,46 +172382,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [38096] = 16, - ACTIONS(103), 1, + [38895] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3998), 1, + anon_sym_AT2, + ACTIONS(4037), 1, + anon_sym_GT2, + STATE(1766), 1, + sym_comment, + STATE(4403), 1, + sym__all_type, + STATE(5246), 1, + sym_param_completer, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4704), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [38963] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(3998), 1, + anon_sym_AT2, + ACTIONS(4039), 1, + anon_sym_GT2, + STATE(1767), 1, + sym_comment, + STATE(4467), 1, + sym__all_type, + STATE(5255), 1, + sym_param_completer, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4704), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [39031] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1412), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1414), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1416), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1426), 1, sym_raw_string_begin, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(3883), 1, aux_sym_cmd_identifier_token1, - STATE(1755), 1, + STATE(1768), 1, sym_comment, - STATE(2099), 1, + STATE(1769), 1, + aux_sym__command_list_body_repeat1, + STATE(2094), 1, sym__val_number_decimal, - STATE(3532), 1, + STATE(4603), 1, + sym__command_name, + STATE(4739), 1, sym_cmd_identifier, - STATE(3570), 1, + STATE(4740), 1, sym_val_string, - STATE(5086), 1, - sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3641), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + ACTIONS(3879), 2, + anon_sym_export, + anon_sym_in, + STATE(3638), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, + ACTIONS(3881), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171627,51 +172553,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38174] = 16, - ACTIONS(103), 1, + [39111] = 16, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(4047), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4056), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(4059), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(4062), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(4065), 1, sym_raw_string_begin, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1756), 1, - sym_comment, - STATE(2099), 1, + STATE(2094), 1, sym__val_number_decimal, - STATE(3532), 1, + STATE(4739), 1, sym_cmd_identifier, - STATE(3570), 1, + STATE(4740), 1, sym_val_string, - STATE(4980), 1, + STATE(4747), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(4041), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(4050), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(4053), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(1769), 2, + sym_comment, + aux_sym__command_list_body_repeat1, + STATE(3638), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, + ACTIONS(4044), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171689,17 +172615,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38252] = 4, + [39189] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1757), 1, + STATE(1770), 1, sym_comment, ACTIONS(747), 8, anon_sym_GT2, @@ -171746,32 +172671,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [38306] = 11, + [39243] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(3793), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3801), 1, anon_sym_oneof, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(4021), 1, - anon_sym_GT2, - STATE(1758), 1, + STATE(1771), 1, sym_comment, - STATE(4498), 1, - sym__all_type, - STATE(4925), 1, - sym_param_completer, - ACTIONS(3749), 2, + STATE(5136), 1, + sym__one_type, + STATE(5139), 1, + sym__multiple_types, + STATE(5154), 1, + sym__type_annotation, + ACTIONS(3797), 2, anon_sym_table, anon_sym_record, - STATE(4708), 4, + STATE(4316), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3795), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -171803,10 +172728,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [38374] = 4, + [39311] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1759), 1, + STATE(1772), 1, sym_comment, ACTIONS(771), 8, anon_sym_GT2, @@ -171853,159 +172778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [38428] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1760), 1, - sym_comment, - ACTIONS(849), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(851), 35, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [38482] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3988), 1, - aux_sym__immediate_decimal_token5, - STATE(1761), 1, - sym_comment, - ACTIONS(739), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(741), 34, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [38538] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4023), 1, - aux_sym__immediate_decimal_token5, - STATE(1762), 1, - sym_comment, - ACTIONS(771), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(773), 34, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [38594] = 17, + [39365] = 17, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1412), 1, @@ -172016,97 +172789,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1426), 1, sym_raw_string_begin, - ACTIONS(3784), 1, + ACTIONS(3883), 1, aux_sym_cmd_identifier_token1, - STATE(1763), 1, - sym_comment, - STATE(1764), 1, + STATE(1769), 1, aux_sym__command_list_body_repeat1, - STATE(2107), 1, + STATE(1773), 1, + sym_comment, + STATE(2094), 1, sym__val_number_decimal, - STATE(4537), 1, + STATE(4616), 1, sym__command_name, - STATE(4777), 1, + STATE(4739), 1, sym_cmd_identifier, - STATE(4779), 1, + STATE(4740), 1, sym_val_string, - ACTIONS(3649), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3641), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, - anon_sym_export, - anon_sym_in, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3782), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [38674] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4031), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(4040), 1, - anon_sym_DQUOTE, - ACTIONS(4043), 1, - anon_sym_SQUOTE, - ACTIONS(4046), 1, - anon_sym_BQUOTE, - ACTIONS(4049), 1, - sym_raw_string_begin, - STATE(2107), 1, - sym__val_number_decimal, - STATE(4736), 1, - sym__command_name, - STATE(4777), 1, - sym_cmd_identifier, - STATE(4779), 1, - sym_val_string, - ACTIONS(4025), 2, + ACTIONS(3879), 2, anon_sym_export, anon_sym_in, - ACTIONS(4034), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4037), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(1764), 2, - sym_comment, - aux_sym__command_list_body_repeat1, - STATE(3505), 4, + STATE(3638), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4028), 23, + ACTIONS(3881), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172130,24 +172841,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38752] = 6, + [39445] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4052), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4054), 1, - aux_sym__immediate_decimal_token5, - STATE(1765), 1, + STATE(1774), 1, sym_comment, - ACTIONS(1728), 7, + ACTIONS(874), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(1726), 34, + ACTIONS(876), 35, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -172182,7 +172890,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [38810] = 16, + sym_duration_unit, + [39499] = 16, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -172193,32 +172902,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(2549), 1, + ACTIONS(2533), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(3631), 1, aux_sym_cmd_identifier_token1, - STATE(1766), 1, + STATE(1775), 1, sym_comment, - STATE(2099), 1, + STATE(2106), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3568), 1, sym_val_string, - STATE(5000), 1, + STATE(3611), 1, + sym_cmd_identifier, + STATE(5143), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3896), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3898), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2243), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(3627), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -172244,43 +172953,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38888] = 16, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1786), 1, + [39577] = 16, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(93), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(95), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(105), 1, sym_raw_string_begin, - ACTIONS(2549), 1, + ACTIONS(2878), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(3665), 1, aux_sym_cmd_identifier_token1, - STATE(1767), 1, + STATE(1776), 1, sym_comment, - STATE(2099), 1, + STATE(2000), 1, sym__val_number_decimal, - STATE(3532), 1, + STATE(3957), 1, + sym__command_name, + STATE(4323), 1, sym_cmd_identifier, - STATE(3570), 1, + STATE(4324), 1, sym_val_string, - STATE(4147), 1, - sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3896), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3898), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(490), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, + ACTIONS(3661), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -172306,8 +173015,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38966] = 16, - ACTIONS(103), 1, + [39655] = 16, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, anon_sym_DQUOTE, @@ -172317,33 +173026,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(3631), 1, aux_sym_cmd_identifier_token1, - STATE(1768), 1, + STATE(1777), 1, sym_comment, - STATE(2099), 1, + STATE(2106), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3568), 1, sym_val_string, - STATE(3845), 1, + STATE(3611), 1, + sym_cmd_identifier, + STATE(4202), 1, sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3627), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3641), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2243), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, + ACTIONS(3629), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172361,39 +173070,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [39732] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4068), 1, + aux_sym__immediate_decimal_token5, + STATE(1778), 1, + sym_comment, + ACTIONS(771), 6, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(773), 35, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39044] = 11, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_filesize_unit, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [39787] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3751), 1, + ACTIONS(3799), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(3801), 1, anon_sym_oneof, - STATE(1769), 1, + ACTIONS(4070), 1, + sym__newline, + STATE(1779), 1, sym_comment, - STATE(5015), 1, + STATE(1801), 1, + aux_sym__repeat_newline, + STATE(4562), 1, sym__type_annotation, - STATE(5029), 1, - sym__one_type, - STATE(5085), 1, - sym__multiple_types, - ACTIONS(3749), 2, + ACTIONS(3797), 2, anon_sym_table, anon_sym_record, - STATE(4276), 4, + STATE(4316), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(3795), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -172425,72 +173181,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [39112] = 17, + [39852] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3784), 1, - aux_sym_cmd_identifier_token1, - STATE(1764), 1, - aux_sym__command_list_body_repeat1, - STATE(1770), 1, - sym_comment, - STATE(2107), 1, - sym__val_number_decimal, - STATE(4423), 1, - sym__command_name, - STATE(4777), 1, - sym_cmd_identifier, - STATE(4779), 1, - sym_val_string, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3780), 2, - anon_sym_export, - anon_sym_in, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3782), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [39192] = 16, - ACTIONS(103), 1, - anon_sym_POUND, ACTIONS(1786), 1, anon_sym_DQUOTE, ACTIONS(1788), 1, @@ -172499,300 +173192,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, + ACTIONS(3631), 1, aux_sym_cmd_identifier_token1, - STATE(1771), 1, + STATE(1780), 1, sym_comment, - STATE(2099), 1, + STATE(2106), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3568), 1, sym_val_string, - STATE(4201), 1, - sym__command_name, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [39270] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4056), 1, - anon_sym_QMARK2, - ACTIONS(4058), 1, - anon_sym_BANG, - STATE(1772), 1, - sym_comment, - STATE(1867), 1, - sym__path_suffix, - ACTIONS(1446), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1448), 36, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [39330] = 16, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1773), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, + STATE(3611), 1, sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4850), 1, + STATE(3822), 1, sym__command_name, - ACTIONS(3768), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [39408] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3994), 1, - anon_sym_DOT2, - STATE(1774), 1, - sym_comment, - STATE(1812), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1857), 1, - sym_path, - STATE(1896), 1, - sym_cell_path, - ACTIONS(1432), 3, + ACTIONS(3627), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1434), 36, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [39470] = 16, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1775), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(5101), 1, - sym__command_name, - ACTIONS(3768), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3770), 2, + ACTIONS(3641), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2243), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3637), 25, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [39548] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1776), 1, - sym_comment, - ACTIONS(1474), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1476), 39, - sym_raw_string_begin, + ACTIONS(3629), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172811,113 +173237,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_match, anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [39602] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1777), 1, - sym_comment, - ACTIONS(747), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(749), 34, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [39655] = 16, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [39929] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1778), 1, + STATE(1781), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4194), 1, - sym__command_name, - ACTIONS(3637), 2, + ACTIONS(1513), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3649), 2, + anon_sym_DOT2, + ACTIONS(1515), 38, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [39982] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1782), 1, + sym_comment, + ACTIONS(1517), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1519), 38, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172941,7 +173327,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39732] = 16, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [40035] = 16, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -172952,33 +173351,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3631), 1, aux_sym_cmd_identifier_token1, - STATE(1779), 1, + STATE(1783), 1, sym_comment, - STATE(2099), 1, + STATE(2106), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3568), 1, sym_val_string, - STATE(4962), 1, + STATE(3611), 1, + sym_cmd_identifier, + STATE(5081), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3627), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3641), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2243), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3629), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173002,17 +173401,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39809] = 4, + [40112] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1780), 1, + STATE(1784), 1, sym_comment, - ACTIONS(1478), 4, + ACTIONS(1521), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1480), 38, + ACTIONS(1523), 38, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -173051,180 +173450,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [39862] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1781), 1, - sym_comment, - ACTIONS(4060), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - anon_sym_LBRACE, - anon_sym_RBRACE, - [39913] = 3, + [40165] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1782), 1, - sym_comment, - ACTIONS(4062), 42, + ACTIONS(4070), 1, sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - anon_sym_LBRACE, - anon_sym_RBRACE, - [39964] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(4076), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(4078), 1, anon_sym_oneof, - STATE(1783), 1, + STATE(1785), 1, sym_comment, - STATE(1784), 1, - aux_sym__types_body_repeat3, - STATE(4410), 1, - sym__one_type, - STATE(4804), 1, - sym__type_annotation, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [40029] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4070), 1, - anon_sym_list, - ACTIONS(4073), 1, - anon_sym_oneof, - STATE(4748), 1, - sym__one_type, - STATE(4804), 1, + STATE(1796), 1, + aux_sym__repeat_newline, + STATE(3089), 1, sym__type_annotation, - ACTIONS(4067), 2, + ACTIONS(4074), 2, anon_sym_table, anon_sym_record, - STATE(1784), 2, - sym_comment, - aux_sym__types_body_repeat3, - STATE(4276), 4, + STATE(3222), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4064), 31, + ACTIONS(4072), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -173256,44 +173505,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [40092] = 16, + [40230] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1785), 1, + ACTIONS(4080), 1, + anon_sym_DOT2, + STATE(1860), 1, + sym_path, + STATE(1786), 2, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4142), 1, - sym__command_name, - ACTIONS(3637), 2, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1494), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(1496), 36, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173317,17 +173545,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [40169] = 4, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [40287] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1786), 1, + STATE(1787), 1, sym_comment, - ACTIONS(1543), 4, + ACTIONS(1505), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1545), 38, + ACTIONS(1507), 38, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -173366,19 +173605,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [40222] = 4, + [40340] = 16, ACTIONS(3), 1, anon_sym_POUND, - STATE(1787), 1, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(3631), 1, + aux_sym_cmd_identifier_token1, + STATE(1788), 1, sym_comment, - ACTIONS(1466), 4, + STATE(2106), 1, + sym__val_number_decimal, + STATE(3568), 1, + sym_val_string, + STATE(3611), 1, + sym_cmd_identifier, + STATE(4200), 1, + sym__command_name, + ACTIONS(3627), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1468), 38, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(3639), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3641), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2243), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3629), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173402,130 +173666,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [40275] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(4076), 1, - sym__newline, - STATE(1788), 1, - sym_comment, - STATE(1970), 1, - aux_sym__repeat_newline, - STATE(4538), 1, - sym__type_annotation, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [40340] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(4076), 1, - sym__newline, - STATE(1789), 1, - sym_comment, - STATE(1791), 1, - aux_sym__repeat_newline, - STATE(4484), 1, - sym__type_annotation, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [40405] = 16, + [40417] = 16, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(91), 1, @@ -173536,33 +173677,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(105), 1, sym_raw_string_begin, - ACTIONS(3669), 1, + ACTIONS(3665), 1, aux_sym_cmd_identifier_token1, - STATE(1790), 1, + STATE(1789), 1, sym_comment, - STATE(1976), 1, + STATE(2000), 1, sym__val_number_decimal, - STATE(3894), 1, + STATE(4045), 1, sym__command_name, - STATE(4297), 1, + STATE(4323), 1, sym_cmd_identifier, - STATE(4298), 1, + STATE(4324), 1, sym_val_string, - ACTIONS(3649), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3641), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3665), 2, + ACTIONS(3661), 2, anon_sym_export, anon_sym_in, - STATE(480), 4, + STATE(490), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3667), 23, + ACTIONS(3663), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173586,30 +173727,116 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [40482] = 10, + [40494] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(4076), 1, + ACTIONS(4083), 1, + anon_sym_BANG, + STATE(1790), 1, + sym_comment, + ACTIONS(1446), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1448), 37, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [40549] = 4, + ACTIONS(3), 1, + anon_sym_POUND, STATE(1791), 1, sym_comment, - STATE(1970), 1, - aux_sym__repeat_newline, - STATE(4520), 1, - sym__type_annotation, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(1509), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1511), 38, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [40602] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1792), 1, + sym_comment, + ACTIONS(4085), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -173639,14 +173866,20 @@ 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, - [40547] = 3, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + anon_sym_LBRACE, + anon_sym_RBRACE, + [40653] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(1792), 1, + STATE(1793), 1, sym_comment, - ACTIONS(4078), 42, + ACTIONS(4087), 42, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -173689,17 +173922,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneof, anon_sym_LBRACE, anon_sym_RBRACE, - [40598] = 3, + [40704] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1793), 1, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + STATE(1794), 1, sym_comment, - ACTIONS(4080), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + STATE(1795), 1, + aux_sym__types_body_repeat3, + STATE(4642), 1, + sym__one_type, + STATE(4979), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -173729,38 +173975,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, - anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - anon_sym_LBRACE, - anon_sym_RBRACE, - [40649] = 10, + [40769] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4076), 1, - sym__newline, - ACTIONS(4086), 1, + ACTIONS(4095), 1, anon_sym_list, - ACTIONS(4088), 1, + ACTIONS(4098), 1, anon_sym_oneof, - STATE(1794), 1, - sym_comment, - STATE(1970), 1, - aux_sym__repeat_newline, - STATE(3026), 1, + STATE(4772), 1, + sym__one_type, + STATE(4979), 1, sym__type_annotation, - ACTIONS(4084), 2, + ACTIONS(4092), 2, anon_sym_table, anon_sym_record, - STATE(3131), 4, + STATE(1795), 2, + sym_comment, + aux_sym__types_body_repeat3, + STATE(4316), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4082), 31, + ACTIONS(4089), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -173792,129 +174031,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [40714] = 5, + [40832] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4090), 1, - anon_sym_QMARK2, - STATE(1795), 1, - sym_comment, - ACTIONS(1438), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1440), 37, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, + ACTIONS(4070), 1, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [40769] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1796), 1, - sym_comment, - ACTIONS(771), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(773), 34, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [40822] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(4076), 1, anon_sym_list, - ACTIONS(3753), 1, + ACTIONS(4078), 1, anon_sym_oneof, - STATE(1784), 1, - aux_sym__types_body_repeat3, - STATE(1797), 1, + STATE(1796), 1, sym_comment, - STATE(4527), 1, - sym__one_type, - STATE(4804), 1, + STATE(2109), 1, + aux_sym__repeat_newline, + STATE(3093), 1, sym__type_annotation, - ACTIONS(3749), 2, + ACTIONS(4074), 2, anon_sym_table, anon_sym_record, - STATE(4276), 4, + STATE(3222), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(4072), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -173946,228 +174086,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [40887] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1798), 1, - sym_comment, - ACTIONS(849), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(851), 34, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [40940] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1799), 1, - sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(4997), 1, - sym__command_name, - ACTIONS(3637), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [41017] = 4, + [40897] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1800), 1, - sym_comment, - ACTIONS(1470), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1472), 38, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, + ACTIONS(4083), 1, anon_sym_QMARK2, - anon_sym_BANG, - [41070] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4015), 1, - aux_sym__immediate_decimal_token5, - STATE(1801), 1, - sym_comment, - ACTIONS(1738), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 34, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [41125] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1802), 1, + STATE(1797), 1, sym_comment, - ACTIONS(1474), 4, + ACTIONS(1446), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1476), 38, + ACTIONS(1448), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174194,135 +174126,86 @@ 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, aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [41178] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4092), 1, - aux_sym__immediate_decimal_token5, - STATE(1803), 1, - sym_comment, - ACTIONS(1804), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 34, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [41233] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4094), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4096), 1, - aux_sym__immediate_decimal_token5, - STATE(1804), 1, - sym_comment, - ACTIONS(1728), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 33, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [41290] = 6, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [40952] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4098), 1, - anon_sym_DOT, - ACTIONS(4100), 1, - aux_sym__immediate_decimal_token5, - STATE(1805), 1, + ACTIONS(4070), 1, + sym__newline, + ACTIONS(4076), 1, + anon_sym_list, + ACTIONS(4078), 1, + anon_sym_oneof, + STATE(1798), 1, + sym_comment, + STATE(2109), 1, + aux_sym__repeat_newline, + STATE(3094), 1, + sym__type_annotation, + ACTIONS(4074), 2, + anon_sym_table, + anon_sym_record, + STATE(3222), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4072), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [41017] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1799), 1, sym_comment, - ACTIONS(1738), 7, + ACTIONS(747), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(1736), 33, + ACTIONS(749), 34, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -174356,17 +174239,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [41347] = 4, + sym_duration_unit, + [41070] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1806), 1, + ACTIONS(4027), 1, + anon_sym_DOT2, + STATE(1786), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1800), 1, sym_comment, - ACTIONS(1514), 4, + STATE(1860), 1, + sym_path, + ACTIONS(1490), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1516), 38, + ACTIONS(1492), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -174403,19 +174292,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [41400] = 3, + [41129] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1807), 1, - sym_comment, - ACTIONS(4102), 42, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(4070), 1, sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + STATE(1801), 1, + sym_comment, + STATE(2109), 1, + aux_sym__repeat_newline, + STATE(4440), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -174445,25 +174345,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, - anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - anon_sym_LBRACE, - anon_sym_RBRACE, - [41451] = 3, + [41194] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1808), 1, - sym_comment, - ACTIONS(4104), 42, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + ACTIONS(4070), 1, sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + STATE(1802), 1, + sym_comment, + STATE(1804), 1, + aux_sym__repeat_newline, + STATE(4443), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -174493,52 +174400,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, - anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - anon_sym_LBRACE, - anon_sym_RBRACE, - [41502] = 16, + [41259] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3641), 1, - aux_sym_cmd_identifier_token1, - STATE(1809), 1, + ACTIONS(4017), 1, + aux_sym__immediate_decimal_token5, + STATE(1803), 1, sym_comment, - STATE(2099), 1, - sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, - sym_val_string, - STATE(3871), 1, - sym__command_name, - ACTIONS(3637), 2, + ACTIONS(739), 6, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3649), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3639), 23, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(741), 35, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174562,30 +174441,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [41579] = 10, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_filesize_unit, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [41314] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4076), 1, - sym__newline, - ACTIONS(4086), 1, + ACTIONS(3799), 1, anon_sym_list, - ACTIONS(4088), 1, + ACTIONS(3801), 1, anon_sym_oneof, - STATE(1810), 1, + ACTIONS(4070), 1, + sym__newline, + STATE(1804), 1, sym_comment, - STATE(1814), 1, + STATE(2109), 1, aux_sym__repeat_newline, - STATE(3053), 1, + STATE(4484), 1, sym__type_annotation, - ACTIONS(4084), 2, + ACTIONS(3797), 2, anon_sym_table, anon_sym_record, - STATE(3131), 4, + STATE(4316), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4082), 31, + ACTIONS(3795), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -174617,30 +174507,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [41644] = 10, + [41379] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - ACTIONS(4076), 1, - sym__newline, - STATE(1788), 1, - aux_sym__repeat_newline, - STATE(1811), 1, + STATE(1805), 1, sym_comment, - STATE(4459), 1, - sym__type_annotation, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, + ACTIONS(4101), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -174670,135 +174547,86 @@ 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, - [41709] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3994), 1, - anon_sym_DOT2, - STATE(1812), 1, - sym_comment, - STATE(1813), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1857), 1, - sym_path, - ACTIONS(1458), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1460), 36, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [41768] = 6, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + anon_sym_LBRACE, + anon_sym_RBRACE, + [41430] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4106), 1, - anon_sym_DOT2, - STATE(1857), 1, - sym_path, - STATE(1813), 2, + STATE(1806), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1524), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1526), 36, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, + ACTIONS(4103), 42, sym__newline, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [41825] = 10, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + anon_sym_LBRACE, + anon_sym_RBRACE, + [41481] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4076), 1, - sym__newline, - ACTIONS(4086), 1, + ACTIONS(3799), 1, anon_sym_list, - ACTIONS(4088), 1, + ACTIONS(3801), 1, anon_sym_oneof, - STATE(1814), 1, + STATE(1795), 1, + aux_sym__types_body_repeat3, + STATE(1807), 1, sym_comment, - STATE(1970), 1, - aux_sym__repeat_newline, - STATE(3054), 1, + STATE(4521), 1, + sym__one_type, + STATE(4979), 1, sym__type_annotation, - ACTIONS(4084), 2, + ACTIONS(3797), 2, anon_sym_table, anon_sym_record, - STATE(3131), 4, + STATE(4316), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4082), 31, + ACTIONS(3795), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -174830,30 +174658,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [41890] = 10, + [41546] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4076), 1, + STATE(1808), 1, + sym_comment, + ACTIONS(4105), 42, sym__newline, - ACTIONS(4086), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, anon_sym_list, - ACTIONS(4088), 1, anon_sym_oneof, - STATE(1794), 1, - aux_sym__repeat_newline, - STATE(1815), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + [41597] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1809), 1, sym_comment, - STATE(2916), 1, - sym__type_annotation, - ACTIONS(4084), 2, - anon_sym_table, - anon_sym_record, - STATE(3131), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4082), 31, + ACTIONS(771), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(773), 34, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [41650] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1810), 1, + sym_comment, + ACTIONS(874), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(876), 34, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [41703] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4021), 1, + aux_sym__immediate_decimal_token5, + STATE(1811), 1, + sym_comment, + ACTIONS(1730), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1728), 34, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [41758] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1812), 1, + sym_comment, + ACTIONS(4107), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -174883,22 +174894,27 @@ 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, - [41955] = 5, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + anon_sym_LBRACE, + anon_sym_RBRACE, + [41809] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4090), 1, - anon_sym_BANG, - STATE(1816), 1, + STATE(1813), 1, sym_comment, - ACTIONS(1438), 4, + ACTIONS(1458), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1440), 37, + ACTIONS(1460), 38, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174925,8 +174941,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, @@ -174935,7 +174949,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [42010] = 16, + anon_sym_QMARK2, + anon_sym_BANG, + [41862] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4109), 1, + aux_sym__immediate_decimal_token5, + STATE(1814), 1, + sym_comment, + ACTIONS(1808), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1806), 34, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [41917] = 16, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -174946,33 +175012,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3631), 1, aux_sym_cmd_identifier_token1, - STATE(1817), 1, + STATE(1815), 1, sym_comment, - STATE(2099), 1, + STATE(2106), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3568), 1, sym_val_string, - STATE(5180), 1, + STATE(3611), 1, + sym_cmd_identifier, + STATE(5014), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3627), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3641), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2243), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3629), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174996,7 +175062,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [42087] = 16, + [41994] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4111), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4113), 1, + aux_sym__immediate_decimal_token5, + STATE(1816), 1, + sym_comment, + ACTIONS(1740), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1738), 33, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [42051] = 16, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -175007,33 +175124,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3631), 1, aux_sym_cmd_identifier_token1, - STATE(1818), 1, + STATE(1817), 1, sym_comment, - STATE(2099), 1, + STATE(2106), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3568), 1, sym_val_string, - STATE(4190), 1, + STATE(3611), 1, + sym_cmd_identifier, + STATE(5250), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3627), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3641), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2243), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3629), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175057,7 +175174,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [42164] = 16, + [42128] = 16, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -175068,33 +175185,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3631), 1, aux_sym_cmd_identifier_token1, - STATE(1819), 1, + STATE(1818), 1, sym_comment, - STATE(2099), 1, + STATE(2106), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3568), 1, sym_val_string, - STATE(4331), 1, + STATE(3611), 1, + sym_cmd_identifier, + STATE(4290), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3627), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3641), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2243), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3629), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175118,7 +175235,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [42241] = 16, + [42205] = 16, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -175129,33 +175246,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3631), 1, aux_sym_cmd_identifier_token1, - STATE(1820), 1, + STATE(1819), 1, sym_comment, - STATE(2099), 1, + STATE(2106), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3568), 1, sym_val_string, - STATE(4849), 1, + STATE(3611), 1, + sym_cmd_identifier, + STATE(4371), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3627), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3641), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2243), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3629), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175179,7 +175296,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [42318] = 16, + [42282] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4115), 1, + anon_sym_DOT, + ACTIONS(4117), 1, + aux_sym__immediate_decimal_token5, + STATE(1820), 1, + sym_comment, + ACTIONS(1730), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1728), 33, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [42339] = 16, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -175190,33 +175358,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3631), 1, aux_sym_cmd_identifier_token1, STATE(1821), 1, sym_comment, - STATE(2099), 1, + STATE(2106), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3568), 1, sym_val_string, - STATE(4968), 1, + STATE(3611), 1, + sym_cmd_identifier, + STATE(4965), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3627), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3641), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2243), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3629), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175240,7 +175408,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [42395] = 16, + [42416] = 16, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1786), 1, @@ -175251,33 +175419,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(3641), 1, + ACTIONS(3631), 1, aux_sym_cmd_identifier_token1, STATE(1822), 1, sym_comment, - STATE(2099), 1, + STATE(2106), 1, sym__val_number_decimal, - STATE(3532), 1, - sym_cmd_identifier, - STATE(3570), 1, + STATE(3568), 1, sym_val_string, - STATE(5201), 1, + STATE(3611), 1, + sym_cmd_identifier, + STATE(5037), 1, sym__command_name, - ACTIONS(3637), 2, + ACTIONS(3627), 2, anon_sym_export, anon_sym_in, - ACTIONS(3649), 2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3651), 2, + ACTIONS(3641), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2228), 4, + STATE(2243), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3639), 23, + ACTIONS(3629), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175301,72 +175469,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [42472] = 5, + [42493] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4009), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(3631), 1, + aux_sym_cmd_identifier_token1, STATE(1823), 1, sym_comment, - ACTIONS(739), 6, + STATE(2106), 1, + sym__val_number_decimal, + STATE(3568), 1, + sym_val_string, + STATE(3611), 1, + sym_cmd_identifier, + STATE(4919), 1, + sym__command_name, + ACTIONS(3627), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(741), 35, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(3639), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + ACTIONS(3641), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - sym_filesize_unit, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [42527] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4109), 1, - aux_sym__immediate_decimal_token5, - STATE(1824), 1, - sym_comment, - ACTIONS(771), 6, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(773), 35, - sym_raw_string_begin, + STATE(2243), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3629), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175390,86 +175530,130 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_filesize_unit, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [42582] = 4, + [42570] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4070), 1, + sym__newline, + ACTIONS(4076), 1, + anon_sym_list, + ACTIONS(4078), 1, + anon_sym_oneof, + STATE(1798), 1, + aux_sym__repeat_newline, + STATE(1824), 1, + sym_comment, + STATE(3044), 1, + sym__type_annotation, + ACTIONS(4074), 2, + anon_sym_table, + anon_sym_record, + STATE(3222), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4072), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [42635] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1825), 1, sym_comment, - ACTIONS(1462), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(1846), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1844), 34, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1464), 37, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [42634] = 8, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [42687] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(4111), 1, + ACTIONS(801), 1, anon_sym_DOT_DOT2, + ACTIONS(4119), 1, + sym_filesize_unit, + ACTIONS(4121), 1, + sym_duration_unit, STATE(1826), 1, sym_comment, - ACTIONS(4113), 2, + ACTIONS(803), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 5, + ACTIONS(793), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 31, + ACTIONS(890), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -175501,27 +175685,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [42694] = 8, + [42747] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(4115), 1, - anon_sym_DOT_DOT2, STATE(1827), 1, sym_comment, - ACTIONS(4117), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 5, + ACTIONS(1740), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 31, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1738), 34, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -175544,6 +175721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -175553,65 +175731,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [42754] = 9, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [42799] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3970), 1, - anon_sym_list, - ACTIONS(3972), 1, - anon_sym_oneof, STATE(1828), 1, sym_comment, - STATE(1838), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4614), 1, - sym__all_type, - ACTIONS(3968), 2, - anon_sym_table, - anon_sym_record, - STATE(4516), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3966), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [42816] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1829), 1, - sym_comment, - ACTIONS(1728), 7, + ACTIONS(1808), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -175619,7 +175746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 34, + ACTIONS(1806), 34, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -175654,31 +175781,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [42868] = 8, + [42851] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(876), 1, - anon_sym_DOT_DOT2, - ACTIONS(4119), 1, - sym_filesize_unit, - ACTIONS(4121), 1, - sym_duration_unit, - STATE(1830), 1, + ACTIONS(4117), 1, + aux_sym__immediate_decimal_token5, + STATE(1829), 1, sym_comment, - ACTIONS(878), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 5, + ACTIONS(1730), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(968), 31, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1728), 33, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -175697,6 +175818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -175706,162 +175828,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [42928] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3970), 1, - anon_sym_list, - ACTIONS(3972), 1, - anon_sym_oneof, - STATE(1831), 1, - sym_comment, - STATE(1838), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4387), 1, - sym__all_type, - ACTIONS(3968), 2, - anon_sym_table, - anon_sym_record, - STATE(4516), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3966), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [42990] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [42905] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4123), 1, - anon_sym_QMARK2, - STATE(1832), 1, - sym_comment, - ACTIONS(1438), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1440), 36, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [43044] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1833), 1, - sym_comment, - ACTIONS(1520), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1522), 37, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [43096] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1834), 1, + aux_sym__immediate_decimal_token5, + STATE(1830), 1, sym_comment, - ACTIONS(1804), 7, + ACTIONS(1808), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -175869,11 +175845,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 34, + ACTIONS(1806), 33, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -175904,20 +175879,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [43148] = 4, + [42959] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1835), 1, + ACTIONS(1956), 1, + anon_sym_LPAREN2, + ACTIONS(1962), 1, + sym__unquoted_pattern, + ACTIONS(4125), 1, + anon_sym_DOT_DOT2, + STATE(1831), 1, sym_comment, - ACTIONS(1872), 7, + ACTIONS(4127), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1954), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 34, + ACTIONS(1952), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -175940,7 +175922,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -175950,27 +175931,31 @@ 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, - [43200] = 5, + [43019] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4100), 1, - aux_sym__immediate_decimal_token5, - STATE(1836), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(1946), 1, + anon_sym_LPAREN2, + ACTIONS(4129), 1, + anon_sym_DOT_DOT2, + STATE(1832), 1, sym_comment, - ACTIONS(1738), 7, + ACTIONS(4131), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1944), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 33, + ACTIONS(1942), 31, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -175989,7 +175974,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -175999,23 +175983,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, - [43254] = 5, + [43079] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, - anon_sym_BANG, - STATE(1837), 1, + STATE(1833), 1, sym_comment, - ACTIONS(1438), 4, + ACTIONS(1529), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1440), 36, + ACTIONS(1531), 37, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [43131] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1834), 1, + sym_comment, + ACTIONS(1552), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1554), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176042,6 +176069,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, @@ -176050,27 +176079,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43308] = 8, + [43183] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4131), 1, + ACTIONS(3982), 1, anon_sym_list, - ACTIONS(4134), 1, + ACTIONS(3984), 1, anon_sym_oneof, - STATE(4756), 1, + STATE(1835), 1, + sym_comment, + STATE(1843), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4517), 1, sym__all_type, - ACTIONS(4128), 2, + ACTIONS(3980), 2, anon_sym_table, anon_sym_record, - STATE(1838), 2, - sym_comment, - aux_sym__composite_argument_body_repeat1, - STATE(4516), 4, + STATE(4814), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4125), 31, + ACTIONS(3978), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176102,68 +176132,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43368] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4137), 1, - aux_sym__immediate_decimal_token5, - STATE(1839), 1, - sym_comment, - ACTIONS(1804), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 33, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [43422] = 4, + [43245] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1840), 1, + STATE(1836), 1, sym_comment, - ACTIONS(747), 6, + ACTIONS(1525), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(749), 35, + anon_sym_DOT2, + ACTIONS(1527), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176188,39 +176167,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43474] = 9, + [43297] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4139), 1, - anon_sym_DOT_DOT2, - ACTIONS(4143), 1, - sym_filesize_unit, - ACTIONS(4145), 1, - sym_duration_unit, - ACTIONS(4147), 1, - sym__unquoted_pattern, - STATE(1841), 1, + ACTIONS(4133), 1, + anon_sym_QMARK2, + STATE(1837), 1, sym_comment, - ACTIONS(4141), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 3, + ACTIONS(1446), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(968), 32, + anon_sym_DOT2, + ACTIONS(1448), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176244,7 +176218,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -176252,19 +176229,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43536] = 4, + [43351] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1842), 1, + STATE(1838), 1, sym_comment, - ACTIONS(771), 6, + ACTIONS(747), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT_DOT2, sym_duration_unit, sym__unquoted_pattern, - ACTIONS(773), 35, + ACTIONS(749), 35, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176300,19 +176277,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43588] = 4, + [43403] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1843), 1, + STATE(1839), 1, sym_comment, - ACTIONS(849), 6, + ACTIONS(771), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT_DOT2, sym_duration_unit, sym__unquoted_pattern, - ACTIONS(851), 35, + ACTIONS(773), 35, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176348,17 +176325,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43640] = 4, + [43455] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1844), 1, + STATE(1840), 1, sym_comment, - ACTIONS(1535), 4, + ACTIONS(874), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1537), 37, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(876), 35, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176383,29 +176362,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43692] = 4, + [43507] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1845), 1, + ACTIONS(4135), 1, + anon_sym_DOT_DOT2, + ACTIONS(4139), 1, + sym_filesize_unit, + ACTIONS(4141), 1, + sym_duration_unit, + ACTIONS(4143), 1, + sym__unquoted_pattern, + STATE(1841), 1, sym_comment, - ACTIONS(1474), 3, + ACTIONS(4137), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(793), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1476), 37, + ACTIONS(890), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176430,12 +176418,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -176443,26 +176426,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [43743] = 8, + [43569] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3970), 1, + ACTIONS(3982), 1, anon_sym_list, - ACTIONS(3972), 1, + ACTIONS(3984), 1, anon_sym_oneof, - STATE(1846), 1, + STATE(1842), 1, sym_comment, - STATE(4229), 1, + STATE(1843), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4591), 1, sym__all_type, - ACTIONS(3968), 2, + ACTIONS(3980), 2, anon_sym_table, anon_sym_record, - STATE(4516), 4, + STATE(4814), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3966), 31, + ACTIONS(3978), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176494,218 +176479,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43802] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1847), 1, - sym_comment, - ACTIONS(1728), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 33, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [43853] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1848), 1, - sym_comment, - ACTIONS(1804), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 33, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [43904] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1849), 1, - sym_comment, - ACTIONS(1872), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 33, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [43955] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(4149), 1, - anon_sym_DOT_DOT2, - STATE(1850), 1, - sym_comment, - ACTIONS(4151), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1964), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [44014] = 8, + [43631] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3970), 1, + ACTIONS(4151), 1, anon_sym_list, - ACTIONS(3972), 1, + ACTIONS(4154), 1, anon_sym_oneof, - STATE(1851), 1, - sym_comment, - STATE(4692), 1, - sym__type_annotation, - ACTIONS(3968), 2, + STATE(4708), 1, + sym__all_type, + ACTIONS(4148), 2, anon_sym_table, anon_sym_record, - STATE(4764), 4, + STATE(1843), 2, + sym_comment, + aux_sym__composite_argument_body_repeat1, + STATE(4814), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3966), 31, + ACTIONS(4145), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176737,17 +176531,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [44073] = 4, + [43691] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1852), 1, + ACTIONS(4133), 1, + anon_sym_BANG, + STATE(1844), 1, sym_comment, - ACTIONS(2094), 3, + ACTIONS(1446), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2092), 37, + anon_sym_DOT2, + ACTIONS(1448), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176774,8 +176572,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, @@ -176784,87 +176580,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44124] = 28, - ACTIONS(103), 1, + [43745] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(4153), 1, - anon_sym_null, - ACTIONS(4157), 1, - anon_sym_LPAREN, - ACTIONS(4159), 1, - anon_sym_DOLLAR, ACTIONS(4161), 1, - anon_sym_DOT_DOT, - ACTIONS(4165), 1, - sym_val_date, - ACTIONS(4167), 1, - anon_sym_DQUOTE, - ACTIONS(4169), 1, - anon_sym_SQUOTE, - ACTIONS(4171), 1, - anon_sym_BQUOTE, - ACTIONS(4173), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4175), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4177), 1, - aux_sym_unquoted_token1, - ACTIONS(4179), 1, - sym_raw_string_begin, - STATE(1853), 1, + anon_sym_list, + ACTIONS(4163), 1, + anon_sym_oneof, + STATE(1845), 1, sym_comment, - STATE(1854), 1, - sym__inter_single_quotes, - STATE(1856), 1, - sym__inter_double_quotes, - STATE(3750), 1, - sym__val_number_decimal, - STATE(4855), 1, - sym_val_bool, - ACTIONS(3026), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3036), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3038), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(4163), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(4861), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4155), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1869), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1445), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [44223] = 4, + STATE(2337), 1, + sym__all_type, + ACTIONS(4159), 2, + anon_sym_table, + anon_sym_record, + STATE(2371), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4157), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [43804] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1854), 1, + STATE(1846), 1, sym_comment, - ACTIONS(2256), 3, + ACTIONS(1663), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2254), 37, + ACTIONS(1661), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -176902,27 +176678,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44274] = 8, + [43855] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(4165), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4167), 1, + aux_sym__immediate_decimal_token5, + STATE(1847), 1, + sym_comment, + ACTIONS(1740), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(4181), 1, - anon_sym_DOT_DOT2, - STATE(1855), 1, + ACTIONS(1738), 32, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [43910] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1848), 1, sym_comment, - ACTIONS(4183), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 5, + ACTIONS(1740), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 30, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1738), 33, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -176944,6 +176762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -176953,16 +176772,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [44333] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [43961] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4169), 1, + anon_sym_DOT, + ACTIONS(4171), 1, + aux_sym__immediate_decimal_token5, + STATE(1849), 1, + sym_comment, + ACTIONS(739), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(741), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [44016] = 28, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2662), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2664), 1, + anon_sym_COLON2, + ACTIONS(4173), 1, + anon_sym_null, + ACTIONS(4177), 1, + anon_sym_LPAREN, + ACTIONS(4179), 1, + anon_sym_DOLLAR, + ACTIONS(4181), 1, + anon_sym_DOT_DOT, + ACTIONS(4185), 1, + sym_val_date, + ACTIONS(4187), 1, + anon_sym_DQUOTE, + ACTIONS(4189), 1, + anon_sym_SQUOTE, + ACTIONS(4191), 1, + anon_sym_BQUOTE, + ACTIONS(4193), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4195), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4197), 1, + aux_sym_unquoted_token1, + ACTIONS(4199), 1, + sym_raw_string_begin, + STATE(1850), 1, + sym_comment, + STATE(1853), 1, + sym__inter_single_quotes, + STATE(1857), 1, + sym__inter_double_quotes, + STATE(3821), 1, + sym__val_number_decimal, + STATE(5241), 1, + sym_val_bool, + ACTIONS(3024), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3034), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3036), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(4183), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5221), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4175), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1867), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1444), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [44115] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1856), 1, + STATE(1851), 1, sym_comment, - ACTIONS(2256), 3, + ACTIONS(2493), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2254), 37, + ACTIONS(2491), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177000,19 +176941,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44384] = 4, + [44166] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1857), 1, + STATE(1852), 1, sym_comment, - ACTIONS(1462), 4, + ACTIONS(2497), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1464), 36, + ACTIONS(2495), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177039,6 +176978,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, @@ -177047,16 +176988,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44435] = 4, + [44217] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1858), 1, + STATE(1853), 1, sym_comment, - ACTIONS(1556), 3, + ACTIONS(2481), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1558), 37, + ACTIONS(2479), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177094,65 +177035,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44486] = 6, - ACTIONS(103), 1, + [44268] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4185), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4187), 1, - aux_sym__immediate_decimal_token5, - STATE(1859), 1, + ACTIONS(3982), 1, + anon_sym_list, + ACTIONS(3984), 1, + anon_sym_oneof, + STATE(1854), 1, sym_comment, - ACTIONS(747), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(749), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [44541] = 4, + STATE(4676), 1, + sym__type_annotation, + ACTIONS(3980), 2, + anon_sym_table, + anon_sym_record, + STATE(4702), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3978), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [44327] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1860), 1, + STATE(1855), 1, sym_comment, - ACTIONS(2260), 3, + ACTIONS(2096), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2258), 37, + ACTIONS(2094), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177190,16 +177133,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44592] = 4, + [44378] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1861), 1, + STATE(1856), 1, sym_comment, - ACTIONS(2264), 3, + ACTIONS(1802), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2262), 37, + ACTIONS(1800), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177237,16 +177180,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44643] = 4, + [44429] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1862), 1, + STATE(1857), 1, sym_comment, - ACTIONS(1643), 3, + ACTIONS(2481), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1641), 37, + ACTIONS(2479), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177284,116 +177227,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44694] = 8, + [44480] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_list, - ACTIONS(3753), 1, - anon_sym_oneof, - STATE(1863), 1, - sym_comment, - STATE(4984), 1, - sym__type_annotation, - ACTIONS(3749), 2, - anon_sym_table, - anon_sym_record, - STATE(4276), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3747), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [44753] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4189), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4191), 1, - aux_sym__immediate_decimal_token5, - STATE(1864), 1, - sym_comment, - ACTIONS(1728), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1726), 32, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [44808] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1865), 1, + STATE(1858), 1, sym_comment, - ACTIONS(2274), 3, + ACTIONS(2122), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2272), 37, + ACTIONS(2120), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177431,64 +177274,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44859] = 4, - ACTIONS(3), 1, + [44531] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1866), 1, + ACTIONS(4201), 1, + sym__entry_separator, + STATE(1859), 2, sym_comment, - ACTIONS(1824), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1822), 37, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, + aux_sym__types_body_repeat2, + ACTIONS(3713), 38, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [44910] = 4, + anon_sym_RBRACK, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_GT2, + anon_sym_oneof, + [44582] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1867), 1, + STATE(1860), 1, sym_comment, - ACTIONS(1520), 4, + ACTIONS(1552), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1522), 36, + ACTIONS(1554), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -177525,17 +177368,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44961] = 4, + [44633] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4204), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4206), 1, + aux_sym__immediate_decimal_token5, + STATE(1861), 1, + sym_comment, + ACTIONS(747), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(749), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [44688] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1868), 1, + STATE(1862), 1, sym_comment, - ACTIONS(1535), 4, + ACTIONS(1525), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1537), 36, + ACTIONS(1527), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -177572,16 +177464,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45012] = 4, + [44739] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1869), 1, + STATE(1863), 1, sym_comment, - ACTIONS(1478), 3, + ACTIONS(1572), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1480), 37, + ACTIONS(1574), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177619,17 +177511,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45063] = 4, + [44790] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1870), 1, + STATE(1864), 1, sym_comment, - ACTIONS(1543), 3, + ACTIONS(1529), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1545), 37, + anon_sym_DOT2, + ACTIONS(1531), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177656,8 +177550,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, @@ -177666,16 +177558,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45114] = 4, + [44841] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1871), 1, + STATE(1865), 1, sym_comment, - ACTIONS(1466), 3, + ACTIONS(2485), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1468), 37, + ACTIONS(2483), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177713,16 +177605,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45165] = 4, + [44892] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1872), 1, + STATE(1866), 1, sym_comment, - ACTIONS(2086), 3, + ACTIONS(2489), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2084), 37, + ACTIONS(2487), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177760,16 +177652,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45216] = 4, + [44943] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1873), 1, + STATE(1867), 1, sym_comment, - ACTIONS(1470), 3, + ACTIONS(1505), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1472), 37, + ACTIONS(1507), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177807,16 +177699,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45267] = 4, + [44994] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3799), 1, + anon_sym_list, + ACTIONS(3801), 1, + anon_sym_oneof, + STATE(1868), 1, + sym_comment, + STATE(5244), 1, + sym__type_annotation, + ACTIONS(3797), 2, + anon_sym_table, + anon_sym_record, + STATE(4316), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3795), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [45053] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1874), 1, + STATE(1869), 1, sym_comment, - ACTIONS(1514), 3, + ACTIONS(1509), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1516), 37, + ACTIONS(1511), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177854,27 +177797,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45318] = 8, + [45104] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4119), 1, - sym_filesize_unit, - ACTIONS(4121), 1, - sym_duration_unit, - ACTIONS(4193), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(1946), 1, + anon_sym_LPAREN2, + ACTIONS(4208), 1, anon_sym_DOT_DOT2, - STATE(1875), 1, + STATE(1870), 1, sym_comment, - ACTIONS(4195), 2, + ACTIONS(4210), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(868), 5, + ACTIONS(1944), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(968), 30, + ACTIONS(1942), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -177905,174 +177848,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [45377] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4197), 1, - sym__entry_separator, - STATE(1876), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3710), 38, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_GT2, - anon_sym_oneof, - [45428] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3970), 1, - anon_sym_list, - ACTIONS(3972), 1, - anon_sym_oneof, - STATE(1877), 1, - sym_comment, - STATE(4530), 1, - sym__all_type, - ACTIONS(3968), 2, - anon_sym_table, - anon_sym_record, - STATE(4516), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3966), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [45487] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4200), 1, - anon_sym_DOT, - ACTIONS(4202), 1, - aux_sym__immediate_decimal_token5, - STATE(1878), 1, - sym_comment, - ACTIONS(739), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(741), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [45542] = 6, + [45163] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4204), 1, - anon_sym_DOT, - ACTIONS(4206), 1, - aux_sym__immediate_decimal_token5, - STATE(1879), 1, + ACTIONS(1956), 1, + anon_sym_LPAREN2, + ACTIONS(1962), 1, + sym__unquoted_pattern, + ACTIONS(4212), 1, + anon_sym_DOT_DOT2, + STATE(1871), 1, sym_comment, - ACTIONS(1738), 6, + ACTIONS(4214), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1954), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1736), 32, + ACTIONS(1952), 30, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -178091,7 +177890,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -178101,16 +177899,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [45597] = 4, + [45222] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1880), 1, + STATE(1872), 1, sym_comment, - ACTIONS(2270), 3, + ACTIONS(1458), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2268), 37, + ACTIONS(1460), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -178148,69 +177946,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45648] = 4, + [45273] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1881), 1, + STATE(1873), 1, sym_comment, - ACTIONS(2256), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(1808), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1806), 33, anon_sym_in, - ACTIONS(2254), 36, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [45324] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4119), 1, + sym_filesize_unit, + ACTIONS(4121), 1, + sym_duration_unit, + ACTIONS(4216), 1, + anon_sym_DOT_DOT2, + STATE(1874), 1, + sym_comment, + ACTIONS(4218), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(793), 5, + anon_sym_GT2, anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [45698] = 7, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(890), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [45383] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4208), 1, - anon_sym_QMARK2, - ACTIONS(4210), 1, - anon_sym_BANG, - STATE(1882), 1, + STATE(1875), 1, sym_comment, - STATE(2111), 1, - sym__path_suffix, - ACTIONS(1446), 4, + ACTIONS(1513), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1448), 32, + ACTIONS(1515), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -178235,7 +178078,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_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, @@ -178243,24 +178091,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45754] = 8, + [45434] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, - anon_sym_DOT2, - STATE(1883), 1, + STATE(1876), 1, sym_comment, - STATE(1947), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, - sym_path, - STATE(2152), 1, - sym_cell_path, - ACTIONS(1884), 3, + ACTIONS(1517), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1882), 32, + ACTIONS(1519), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -178285,7 +178125,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_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, @@ -178293,18 +178138,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45812] = 4, + [45485] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1884), 1, + STATE(1877), 1, sym_comment, - ACTIONS(1474), 3, + ACTIONS(1521), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1476), 36, + ACTIONS(1523), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178331,6 +178175,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, @@ -178339,18 +178185,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45862] = 4, + [45536] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1885), 1, + STATE(1878), 1, + sym_comment, + ACTIONS(1846), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1844), 33, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [45587] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4220), 1, + anon_sym_DOT, + ACTIONS(4222), 1, + aux_sym__immediate_decimal_token5, + STATE(1879), 1, + sym_comment, + ACTIONS(1730), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1728), 32, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [45642] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4224), 1, + anon_sym_DOT2, + STATE(1880), 1, sym_comment, - ACTIONS(2264), 3, + STATE(1917), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2130), 1, + sym_path, + STATE(2188), 1, + sym_cell_path, + ACTIONS(1850), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2262), 36, + ACTIONS(1848), 32, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178374,10 +178323,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -178385,16 +178331,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45912] = 4, + [45700] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1886), 1, + STATE(1881), 1, sym_comment, - ACTIONS(1478), 3, + ACTIONS(2493), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1480), 36, + ACTIONS(2491), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -178431,16 +178377,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45962] = 4, + [45750] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3732), 1, + sym__entry_separator, + STATE(1882), 1, + sym_comment, + ACTIONS(3730), 38, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_GT2, + anon_sym_oneof, + [45800] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1887), 1, + STATE(1883), 1, sym_comment, - ACTIONS(2260), 3, + ACTIONS(1572), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2258), 36, + ACTIONS(1574), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -178477,25 +178469,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46012] = 8, + [45850] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, - anon_sym_DOT2, - STATE(1888), 1, + STATE(1884), 1, sym_comment, - STATE(1947), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, - sym_path, - STATE(2205), 1, - sym_cell_path, - ACTIONS(1864), 3, + ACTIONS(1513), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1862), 32, + ACTIONS(1515), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178519,7 +178504,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -178527,16 +178515,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46070] = 4, + [45900] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1889), 1, + STATE(1885), 1, sym_comment, - ACTIONS(2086), 3, + ACTIONS(1517), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2084), 36, + ACTIONS(1519), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -178573,16 +178561,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46120] = 4, + [45950] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1890), 1, + STATE(1886), 1, sym_comment, - ACTIONS(1466), 3, + ACTIONS(1521), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1468), 36, + ACTIONS(1523), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -178619,16 +178607,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46170] = 4, + [46000] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1891), 1, + STATE(1887), 1, sym_comment, - ACTIONS(1470), 3, + ACTIONS(2497), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1472), 36, + ACTIONS(2495), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -178665,26 +178653,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46220] = 6, + [46050] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4214), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4216), 1, + ACTIONS(4226), 1, aux_sym__immediate_decimal_token5, - STATE(1892), 1, + STATE(1888), 1, sym_comment, - ACTIONS(1728), 6, + ACTIONS(1808), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1726), 31, + ACTIONS(1806), 32, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -178713,72 +178700,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [46274] = 6, + [46102] = 27, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4218), 1, - anon_sym_DOT, - ACTIONS(4220), 1, - aux_sym__immediate_decimal_token5, - STATE(1893), 1, + ACTIONS(2533), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4173), 1, + anon_sym_null, + ACTIONS(4177), 1, + anon_sym_LPAREN, + ACTIONS(4179), 1, + anon_sym_DOLLAR, + ACTIONS(4181), 1, + anon_sym_DOT_DOT, + ACTIONS(4185), 1, + sym_val_date, + ACTIONS(4187), 1, + anon_sym_DQUOTE, + ACTIONS(4189), 1, + anon_sym_SQUOTE, + ACTIONS(4191), 1, + anon_sym_BQUOTE, + ACTIONS(4193), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4195), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4197), 1, + aux_sym_unquoted_token1, + ACTIONS(4199), 1, + sym_raw_string_begin, + STATE(1853), 1, + sym__inter_single_quotes, + STATE(1857), 1, + sym__inter_double_quotes, + STATE(1889), 1, sym_comment, - ACTIONS(739), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - ACTIONS(741), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [46328] = 8, + STATE(3821), 1, + sym__val_number_decimal, + STATE(5241), 1, + sym_val_bool, + ACTIONS(3024), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3034), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3036), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(4183), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5221), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4175), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1867), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1444), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [46198] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, + ACTIONS(4224), 1, anon_sym_DOT2, - STATE(1894), 1, + STATE(1890), 1, sym_comment, - STATE(1947), 1, + STATE(1917), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, + STATE(2130), 1, sym_path, - STATE(2150), 1, + STATE(2191), 1, sym_cell_path, - ACTIONS(1868), 3, + ACTIONS(1864), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1866), 32, + ACTIONS(1862), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -178811,66 +178819,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46386] = 6, + [46256] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4222), 1, - anon_sym_DOT, ACTIONS(4224), 1, - aux_sym__immediate_decimal_token5, - STATE(1895), 1, - sym_comment, - ACTIONS(1738), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1736), 31, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [46440] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1896), 1, + anon_sym_DOT2, + STATE(1891), 1, sym_comment, - ACTIONS(1556), 3, + STATE(1917), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2130), 1, + sym_path, + STATE(2197), 1, + sym_cell_path, + ACTIONS(1840), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1558), 36, + ACTIONS(1838), 32, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178894,10 +178861,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -178905,87 +178869,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46490] = 27, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(4153), 1, - anon_sym_null, - ACTIONS(4157), 1, - anon_sym_LPAREN, - ACTIONS(4159), 1, - anon_sym_DOLLAR, - ACTIONS(4161), 1, - anon_sym_DOT_DOT, - ACTIONS(4165), 1, - sym_val_date, - ACTIONS(4167), 1, - anon_sym_DQUOTE, - ACTIONS(4169), 1, - anon_sym_SQUOTE, - ACTIONS(4171), 1, - anon_sym_BQUOTE, - ACTIONS(4173), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4175), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4177), 1, - aux_sym_unquoted_token1, - ACTIONS(4179), 1, - sym_raw_string_begin, - STATE(1854), 1, - sym__inter_single_quotes, - STATE(1856), 1, - sym__inter_double_quotes, - STATE(1897), 1, - sym_comment, - STATE(3750), 1, - sym__val_number_decimal, - STATE(4855), 1, - sym_val_bool, - ACTIONS(3026), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3036), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3038), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(4163), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(4861), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4155), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1869), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1445), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [46586] = 4, + [46314] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1898), 1, + ACTIONS(4224), 1, + anon_sym_DOT2, + STATE(1892), 1, sym_comment, - ACTIONS(1824), 3, + STATE(1917), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2130), 1, + sym_path, + STATE(2190), 1, + sym_cell_path, + ACTIONS(1432), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1822), 36, + ACTIONS(1434), 32, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -179009,10 +178911,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -179020,141 +178919,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46636] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4226), 1, - aux_sym__immediate_decimal_token5, - STATE(1899), 1, - sym_comment, - ACTIONS(1804), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1802), 32, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [46688] = 27, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(4153), 1, - anon_sym_null, - ACTIONS(4165), 1, - sym_val_date, - ACTIONS(4230), 1, - anon_sym_LPAREN, - ACTIONS(4232), 1, - anon_sym_DOLLAR, - ACTIONS(4234), 1, - anon_sym_DOT_DOT, - ACTIONS(4238), 1, - anon_sym_DQUOTE, - ACTIONS(4240), 1, - anon_sym_SQUOTE, - ACTIONS(4242), 1, - anon_sym_BQUOTE, - ACTIONS(4244), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4246), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4248), 1, - aux_sym_unquoted_token1, - ACTIONS(4250), 1, - sym_raw_string_begin, - STATE(1881), 1, - sym__inter_double_quotes, - STATE(1900), 1, - sym_comment, - STATE(1915), 1, - sym__inter_single_quotes, - STATE(3811), 1, - sym__val_number_decimal, - STATE(4855), 1, - sym_val_bool, - ACTIONS(3026), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3036), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3038), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(4236), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(5104), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4228), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1886), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1455), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [46784] = 8, + [46372] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, - anon_sym_DOT2, - STATE(1901), 1, + STATE(1893), 1, sym_comment, - STATE(1947), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, - sym_path, - STATE(2209), 1, - sym_cell_path, - ACTIONS(1853), 3, + ACTIONS(2485), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1850), 32, + ACTIONS(2483), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -179178,7 +178954,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -179186,155 +178965,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46842] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4252), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4254), 1, - aux_sym__immediate_decimal_token5, - STATE(1902), 1, - sym_comment, - ACTIONS(747), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - ACTIONS(749), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [46896] = 4, + [46422] = 27, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3734), 1, - sym__entry_separator, - STATE(1903), 1, - sym_comment, - ACTIONS(3732), 38, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_GT2, - anon_sym_oneof, - [46946] = 5, + ACTIONS(2878), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4173), 1, + anon_sym_null, + ACTIONS(4185), 1, + sym_val_date, + ACTIONS(4230), 1, + anon_sym_LPAREN, + ACTIONS(4232), 1, + anon_sym_DOLLAR, + ACTIONS(4234), 1, + anon_sym_DOT_DOT, + ACTIONS(4238), 1, + anon_sym_DQUOTE, + ACTIONS(4240), 1, + anon_sym_SQUOTE, + ACTIONS(4242), 1, + anon_sym_BQUOTE, + ACTIONS(4244), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4246), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4248), 1, + aux_sym_unquoted_token1, + ACTIONS(4250), 1, + sym_raw_string_begin, + STATE(1894), 1, + sym_comment, + STATE(1903), 1, + sym__inter_single_quotes, + STATE(1904), 1, + sym__inter_double_quotes, + STATE(3842), 1, + sym__val_number_decimal, + STATE(5241), 1, + sym_val_bool, + ACTIONS(3024), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3034), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3036), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(4236), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5109), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4228), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1908), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1450), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [46518] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4206), 1, - aux_sym__immediate_decimal_token5, - STATE(1904), 1, + ACTIONS(4224), 1, + anon_sym_DOT2, + STATE(1895), 1, sym_comment, - ACTIONS(1738), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1736), 32, + STATE(1917), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2130), 1, + sym_path, + STATE(2183), 1, + sym_cell_path, + ACTIONS(1884), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [46998] = 5, + ACTIONS(1882), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [46576] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4256), 1, + ACTIONS(4252), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4254), 1, aux_sym__immediate_decimal_token5, - STATE(1905), 1, + STATE(1896), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(747), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -179342,8 +179101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token6, sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(773), 30, + ACTIONS(749), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -179374,18 +179132,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [47050] = 4, + [46630] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1906), 1, + ACTIONS(4256), 1, + anon_sym_QMARK2, + ACTIONS(4258), 1, + anon_sym_BANG, + STATE(1897), 1, sym_comment, - ACTIONS(2270), 3, + STATE(2123), 1, + sym__path_suffix, + ACTIONS(1438), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2268), 36, + anon_sym_DOT2, + ACTIONS(1440), 32, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -179409,10 +179173,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -179420,18 +179181,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47100] = 4, + [46686] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1907), 1, + ACTIONS(4224), 1, + anon_sym_DOT2, + STATE(1898), 1, sym_comment, - ACTIONS(2274), 3, + STATE(1917), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2130), 1, + sym_path, + STATE(2169), 1, + sym_cell_path, + ACTIONS(1856), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2272), 36, + ACTIONS(1854), 32, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -179455,10 +179223,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -179466,16 +179231,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47150] = 4, + [46744] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1908), 1, + STATE(1899), 1, sym_comment, - ACTIONS(1643), 3, + ACTIONS(1802), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1641), 36, + ACTIONS(1800), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -179512,66 +179277,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47200] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4212), 1, - anon_sym_DOT2, - STATE(1909), 1, - sym_comment, - STATE(1947), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, - sym_path, - STATE(2203), 1, - sym_cell_path, - ACTIONS(1880), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1878), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [47258] = 4, + [46794] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1910), 1, + STATE(1900), 1, sym_comment, - ACTIONS(1514), 3, + ACTIONS(2122), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1516), 36, + ACTIONS(2120), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -179608,25 +179323,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47308] = 8, + [46844] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, - anon_sym_DOT2, - STATE(1911), 1, + STATE(1901), 1, sym_comment, - STATE(1947), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, - sym_path, - STATE(2182), 1, - sym_cell_path, - ACTIONS(1432), 3, + ACTIONS(2096), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1434), 32, + ACTIONS(2094), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -179650,7 +179358,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -179658,14 +179369,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47366] = 5, + [46894] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4202), 1, + ACTIONS(4260), 1, + anon_sym_DOT, + ACTIONS(4262), 1, aux_sym__immediate_decimal_token5, - STATE(1912), 1, + STATE(1902), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(739), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -179673,7 +179386,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token6, sym_filesize_unit, - anon_sym_COLON2, ACTIONS(741), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -179705,16 +179417,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [47418] = 4, + [46948] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1913), 1, + STATE(1903), 1, sym_comment, - ACTIONS(2094), 3, + ACTIONS(2481), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2092), 36, + ACTIONS(2479), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -179751,16 +179463,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47468] = 4, + [46998] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1914), 1, + STATE(1904), 1, sym_comment, - ACTIONS(1543), 3, + ACTIONS(2481), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1545), 36, + ACTIONS(2479), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -179797,70 +179509,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47518] = 4, - ACTIONS(3), 1, + [47048] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1915), 1, + ACTIONS(4171), 1, + aux_sym__immediate_decimal_token5, + STATE(1905), 1, sym_comment, - ACTIONS(2256), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2254), 36, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [47568] = 8, + ACTIONS(739), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(741), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [47100] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4212), 1, + ACTIONS(4224), 1, anon_sym_DOT2, - STATE(1916), 1, + STATE(1906), 1, sym_comment, - STATE(1947), 1, + STATE(1917), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, + STATE(2130), 1, sym_path, - STATE(2207), 1, + STATE(2203), 1, sym_cell_path, - ACTIONS(1860), 3, + ACTIONS(1889), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1858), 32, + ACTIONS(1886), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -179893,21 +179606,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47626] = 5, + [47158] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4258), 1, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, aux_sym__immediate_decimal_token5, - STATE(1917), 1, + STATE(1907), 1, sym_comment, - ACTIONS(1804), 6, + ACTIONS(1730), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1802), 31, + ACTIONS(1728), 31, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -179939,113 +179654,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [47677] = 6, + [47212] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(1918), 1, + STATE(1908), 1, sym_comment, - ACTIONS(2577), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2575), 31, + ACTIONS(1505), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, + ACTIONS(1507), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [47730] = 6, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [47262] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(1919), 1, + STATE(1909), 1, sym_comment, - ACTIONS(1976), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1974), 31, + ACTIONS(1663), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, + ACTIONS(1661), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [47783] = 4, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [47312] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1920), 1, + ACTIONS(4222), 1, + aux_sym__immediate_decimal_token5, + STATE(1910), 1, sym_comment, - ACTIONS(2503), 6, + ACTIONS(1730), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(2501), 32, + ACTIONS(1728), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -180078,397 +179793,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [47832] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4262), 1, - anon_sym_GT2, - ACTIONS(4264), 1, - sym__entry_separator, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(1921), 1, - sym_comment, - ACTIONS(4260), 35, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [47885] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(4266), 1, - anon_sym_RBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(1922), 1, - sym_comment, - ACTIONS(4268), 35, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [47938] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(4270), 1, - anon_sym_RBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(1923), 1, - sym_comment, - ACTIONS(4268), 35, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [47991] = 6, + [47364] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(1924), 1, + STATE(1911), 1, sym_comment, - ACTIONS(2525), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2523), 31, + ACTIONS(1509), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, + ACTIONS(1511), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [48044] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(1925), 1, - sym_comment, - ACTIONS(2569), 5, - anon_sym_GT2, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2567), 31, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [48097] = 6, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [47414] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(4272), 1, - anon_sym_RBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(1926), 1, + ACTIONS(4268), 1, + aux_sym__immediate_decimal_token5, + STATE(1912), 1, sym_comment, - ACTIONS(4268), 35, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [48150] = 6, + ACTIONS(771), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(773), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [47466] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(1927), 1, + STATE(1913), 1, sym_comment, - ACTIONS(2637), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2635), 31, + ACTIONS(1458), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, + ACTIONS(1460), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [48203] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(1928), 1, - sym_comment, - ACTIONS(1619), 5, - anon_sym_GT2, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1706), 31, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [48256] = 5, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [47516] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4224), 1, + ACTIONS(4270), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4272), 1, aux_sym__immediate_decimal_token5, - STATE(1929), 1, + STATE(1914), 1, sym_comment, - ACTIONS(1738), 6, + ACTIONS(1740), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1736), 31, + ACTIONS(1738), 31, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -180500,65 +179980,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48307] = 6, - ACTIONS(103), 1, + [47570] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(4274), 1, - anon_sym_GT2, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(1930), 1, + STATE(1915), 1, sym_comment, - ACTIONS(4260), 35, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [48360] = 6, + ACTIONS(2489), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2487), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [47620] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4274), 1, + anon_sym_RBRACK, + ACTIONS(4278), 1, sym__entry_separator, - ACTIONS(4276), 1, - anon_sym_GT2, - STATE(1876), 1, + STATE(1859), 1, aux_sym__types_body_repeat2, - STATE(1931), 1, + STATE(1916), 1, sym_comment, - ACTIONS(4260), 35, + ACTIONS(4276), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180594,22 +180073,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [48413] = 6, + [47673] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(4224), 1, + anon_sym_DOT2, + STATE(1917), 1, + sym_comment, + STATE(1920), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2130), 1, + sym_path, + ACTIONS(1490), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1492), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [47728] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1641), 1, sym__unquoted_pattern, - STATE(1932), 1, + ACTIONS(2513), 1, + anon_sym_LPAREN2, + STATE(1918), 1, sym_comment, - ACTIONS(996), 5, + ACTIONS(2511), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(994), 31, + ACTIONS(2509), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -180641,22 +180168,404 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48466] = 6, + [47781] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(1933), 1, + STATE(1919), 1, sym_comment, - ACTIONS(1016), 5, + ACTIONS(1505), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1507), 34, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [47830] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4280), 1, + anon_sym_DOT2, + STATE(2130), 1, + sym_path, + STATE(1920), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1494), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1496), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [47883] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1921), 1, + sym_comment, + ACTIONS(1509), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1511), 34, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [47932] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1922), 1, + sym_comment, + ACTIONS(1458), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1460), 34, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [47981] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1923), 1, + sym_comment, + ACTIONS(1513), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1515), 34, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [48030] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1924), 1, + sym_comment, + ACTIONS(1517), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1519), 34, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [48079] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1925), 1, + sym_comment, + ACTIONS(1521), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1523), 34, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [48128] = 27, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3034), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4177), 1, + anon_sym_LPAREN, + ACTIONS(4179), 1, + anon_sym_DOLLAR, + ACTIONS(4181), 1, + anon_sym_DOT_DOT, + ACTIONS(4187), 1, + anon_sym_DQUOTE, + ACTIONS(4189), 1, + anon_sym_SQUOTE, + ACTIONS(4191), 1, + anon_sym_BQUOTE, + ACTIONS(4193), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4195), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4197), 1, + aux_sym_unquoted_token1, + ACTIONS(4199), 1, + sym_raw_string_begin, + ACTIONS(4285), 1, + anon_sym_null, + ACTIONS(4289), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4293), 1, + sym_val_date, + STATE(1853), 1, + sym__inter_single_quotes, + STATE(1857), 1, + sym__inter_double_quotes, + STATE(1926), 1, + sym_comment, + STATE(3821), 1, + sym__val_number_decimal, + STATE(5241), 1, + sym_val_bool, + ACTIONS(4183), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4283), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4291), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(5221), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4287), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1867), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1442), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [48223] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1927), 1, + sym_comment, + ACTIONS(1740), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1018), 31, + sym__unquoted_pattern, + ACTIONS(1738), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -180679,6 +180588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -180688,63 +180598,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48519] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4278), 1, - sym__newline, - STATE(1934), 2, - sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3738), 36, - anon_sym_LBRACK, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [48568] = 6, + [48272] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4278), 1, sym__entry_separator, - ACTIONS(4281), 1, - anon_sym_RBRACK, - STATE(1876), 1, + ACTIONS(4297), 1, + anon_sym_GT2, + STATE(1859), 1, aux_sym__types_body_repeat2, - STATE(1935), 1, + STATE(1928), 1, sym_comment, - ACTIONS(4268), 35, + ACTIONS(4295), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180780,135 +180645,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [48621] = 27, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3036), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4157), 1, - anon_sym_LPAREN, - ACTIONS(4159), 1, - anon_sym_DOLLAR, - ACTIONS(4161), 1, - anon_sym_DOT_DOT, - ACTIONS(4167), 1, - anon_sym_DQUOTE, - ACTIONS(4169), 1, - anon_sym_SQUOTE, - ACTIONS(4171), 1, - anon_sym_BQUOTE, - ACTIONS(4173), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4175), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4177), 1, - aux_sym_unquoted_token1, - ACTIONS(4179), 1, - sym_raw_string_begin, - ACTIONS(4285), 1, - anon_sym_null, - ACTIONS(4289), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4293), 1, - sym_val_date, - STATE(1854), 1, - sym__inter_single_quotes, - STATE(1856), 1, - sym__inter_double_quotes, - STATE(1936), 1, - sym_comment, - STATE(3750), 1, - sym__val_number_decimal, - STATE(4855), 1, - sym_val_bool, - ACTIONS(4163), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4283), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4291), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4861), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4287), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1869), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1447), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [48716] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_COLON2, - ACTIONS(874), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4295), 1, - sym_filesize_unit, - ACTIONS(4297), 1, - sym_duration_unit, - STATE(1937), 1, - sym_comment, - ACTIONS(872), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(870), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [48773] = 6, + [48325] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4278), 1, sym__entry_separator, ACTIONS(4299), 1, anon_sym_GT2, - STATE(1876), 1, + STATE(1859), 1, aux_sym__types_body_repeat2, - STATE(1938), 1, + STATE(1929), 1, sym_comment, - ACTIONS(4260), 35, + ACTIONS(4295), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180944,195 +180692,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [48826] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4220), 1, - aux_sym__immediate_decimal_token5, - STATE(1939), 1, - sym_comment, - ACTIONS(739), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - ACTIONS(741), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [48877] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4305), 1, - sym_long_flag_identifier, - ACTIONS(4307), 1, - anon_sym_EQ2, - STATE(1940), 1, - sym_comment, - STATE(2191), 1, - sym__flag_equals_value, - ACTIONS(4303), 9, - sym_raw_string_begin, - aux_sym_cmd_identifier_token4, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - ACTIONS(4301), 26, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token5, - aux_sym__val_number_decimal_token1, - [48932] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1941), 1, - sym_comment, - ACTIONS(1514), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1516), 34, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [48981] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4309), 1, - aux_sym__immediate_decimal_token5, - STATE(1942), 1, - sym_comment, - ACTIONS(771), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - ACTIONS(773), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [49032] = 27, + [48378] = 27, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3036), 1, + ACTIONS(3034), 1, aux_sym__val_number_decimal_token1, ACTIONS(4230), 1, anon_sym_LPAREN, @@ -181160,15 +180723,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, ACTIONS(4293), 1, sym_val_date, - STATE(1881), 1, - sym__inter_double_quotes, - STATE(1915), 1, + STATE(1903), 1, sym__inter_single_quotes, - STATE(1943), 1, + STATE(1904), 1, + sym__inter_double_quotes, + STATE(1930), 1, sym_comment, - STATE(3811), 1, + STATE(3842), 1, sym__val_number_decimal, - STATE(4855), 1, + STATE(5241), 1, sym_val_bool, ACTIONS(4236), 2, anon_sym_DOT_DOT_EQ, @@ -181179,267 +180742,133 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4291), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(5104), 2, + STATE(5109), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(4311), 3, + ACTIONS(4301), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(1886), 4, + STATE(1908), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(1458), 5, + STATE(1454), 5, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, sym_unquoted, - [49127] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(1944), 1, - sym_comment, - ACTIONS(747), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(749), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [49176] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(1945), 1, - sym_comment, - ACTIONS(771), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(773), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [49225] = 4, + [48473] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(1946), 1, - sym_comment, - ACTIONS(849), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(851), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [49274] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4212), 1, - anon_sym_DOT2, - STATE(1947), 1, - sym_comment, - STATE(1948), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, - sym_path, - ACTIONS(1458), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1460), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [49329] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4313), 1, - anon_sym_DOT2, - STATE(2133), 1, - sym_path, - STATE(1948), 2, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(4303), 1, + anon_sym_RBRACK, + STATE(1859), 1, + aux_sym__types_body_repeat2, + STATE(1931), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1524), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1526), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [49382] = 4, + ACTIONS(4276), 35, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [48526] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4305), 1, + aux_sym__immediate_decimal_token5, + STATE(1932), 1, + sym_comment, + ACTIONS(771), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(773), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [48577] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1949), 1, + ACTIONS(2570), 1, + anon_sym_LPAREN2, + ACTIONS(2572), 1, + sym__unquoted_pattern, + STATE(1933), 1, sym_comment, - ACTIONS(1728), 6, + ACTIONS(996), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1726), 32, + ACTIONS(994), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -181462,7 +180891,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -181472,19 +180900,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49431] = 4, + [48630] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1950), 1, + STATE(1934), 1, sym_comment, - ACTIONS(1804), 6, + ACTIONS(2327), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1802), 32, + ACTIONS(2325), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -181517,19 +180945,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49480] = 4, + [48679] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1951), 1, + STATE(1935), 1, sym_comment, - ACTIONS(1872), 6, + ACTIONS(1808), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1870), 32, + ACTIONS(1806), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -181562,22 +180990,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49529] = 6, + [48728] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(1952), 1, + STATE(1936), 1, sym_comment, - ACTIONS(1966), 5, + ACTIONS(1846), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 31, + sym__unquoted_pattern, + ACTIONS(1844), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -181600,6 +181025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -181609,161 +181035,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49582] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1953), 1, - sym_comment, - ACTIONS(1478), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1480), 34, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [49631] = 4, - ACTIONS(3), 1, + [48777] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1954), 1, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(4307), 1, + anon_sym_RBRACK, + STATE(1859), 1, + aux_sym__types_body_repeat2, + STATE(1937), 1, sym_comment, - ACTIONS(1543), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1545), 34, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [49680] = 7, - ACTIONS(3), 1, + ACTIONS(4276), 35, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [48830] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2136), 1, - anon_sym_EQ_GT, - ACTIONS(4316), 1, - anon_sym_DOT_DOT2, - STATE(1955), 1, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(4309), 1, + anon_sym_RBRACK, + STATE(1859), 1, + aux_sym__types_body_repeat2, + STATE(1938), 1, sym_comment, - ACTIONS(4318), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2138), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2134), 29, - anon_sym_in, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [49735] = 6, + ACTIONS(4276), 35, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [48883] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4320), 1, + ACTIONS(4311), 1, anon_sym_DOT_DOT2, - STATE(1956), 1, + STATE(1939), 1, sym_comment, - ACTIONS(4322), 2, + ACTIONS(4313), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 5, + ACTIONS(2078), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 30, + ACTIONS(2074), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -181794,118 +181176,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49788] = 6, - ACTIONS(3), 1, + [48936] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4324), 1, - anon_sym_DOT_DOT2, - STATE(1957), 1, + STATE(1940), 1, sym_comment, - ACTIONS(4326), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1974), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [49841] = 4, - ACTIONS(3), 1, + ACTIONS(874), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(876), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [48985] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1958), 1, + ACTIONS(4262), 1, + aux_sym__immediate_decimal_token5, + STATE(1941), 1, sym_comment, - ACTIONS(1466), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1468), 34, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [49890] = 6, + ACTIONS(739), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(741), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [49036] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4316), 1, - anon_sym_DOT_DOT2, - STATE(1959), 1, + ACTIONS(2570), 1, + anon_sym_LPAREN2, + ACTIONS(2572), 1, + sym__unquoted_pattern, + STATE(1942), 1, sym_comment, - ACTIONS(4318), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1619), 5, + ACTIONS(1004), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1706), 30, + ACTIONS(1012), 31, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -181933,26 +181314,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49943] = 6, + [49089] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4328), 1, - anon_sym_DOT_DOT2, - STATE(1960), 1, + ACTIONS(4315), 1, + sym__newline, + STATE(1943), 2, sym_comment, - ACTIONS(4330), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2154), 5, + aux_sym__types_body_repeat1, + ACTIONS(3736), 36, + anon_sym_LBRACK, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [49138] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2529), 1, + anon_sym_LPAREN2, + ACTIONS(2531), 1, + sym__unquoted_pattern, + STATE(1944), 1, + sym_comment, + ACTIONS(2527), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2152), 30, + ACTIONS(2525), 31, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -181980,26 +181406,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49996] = 6, + [49191] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4332), 1, - anon_sym_DOT_DOT2, - STATE(1961), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(1946), 1, + anon_sym_LPAREN2, + STATE(1945), 1, sym_comment, - ACTIONS(4334), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2102), 5, + ACTIONS(1944), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2100), 30, + ACTIONS(1942), 31, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -182027,26 +181453,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50049] = 6, + [49244] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4336), 1, - anon_sym_DOT_DOT2, - STATE(1962), 1, + ACTIONS(2566), 1, + anon_sym_LPAREN2, + ACTIONS(2568), 1, + sym__unquoted_pattern, + STATE(1946), 1, sym_comment, - ACTIONS(4338), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2078), 5, + ACTIONS(2564), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2076), 30, + ACTIONS(2562), 31, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -182074,26 +181500,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50102] = 6, + [49297] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4340), 1, - anon_sym_DOT_DOT2, - STATE(1963), 1, + ACTIONS(2554), 1, + anon_sym_LPAREN2, + ACTIONS(2556), 1, + sym__unquoted_pattern, + STATE(1947), 1, sym_comment, - ACTIONS(4342), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2122), 5, + ACTIONS(1615), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2120), 30, + ACTIONS(1689), 31, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -182121,67 +181547,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50155] = 4, + [49350] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1964), 1, + ACTIONS(4322), 1, + sym_long_flag_identifier, + ACTIONS(4324), 1, + anon_sym_EQ2, + STATE(1948), 1, sym_comment, - ACTIONS(1470), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1472), 34, + STATE(2199), 1, + sym__flag_equals_value, + ACTIONS(4320), 9, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [50204] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1965), 1, - sym_comment, - ACTIONS(1474), 4, + ACTIONS(4318), 26, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1476), 34, - sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, + aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -182195,39 +181588,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [50253] = 6, + [49405] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4316), 1, - anon_sym_DOT_DOT2, - STATE(1966), 1, + ACTIONS(4266), 1, + aux_sym__immediate_decimal_token5, + STATE(1949), 1, sym_comment, - ACTIONS(4318), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2138), 5, + ACTIONS(1730), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2134), 30, + sym__unquoted_pattern, + ACTIONS(1728), 31, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -182249,6 +181631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -182258,25 +181641,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50306] = 6, + [49456] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(1956), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(1962), 1, sym__unquoted_pattern, - STATE(1967), 1, + STATE(1950), 1, sym_comment, - ACTIONS(2577), 5, + ACTIONS(2576), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2575), 30, + ACTIONS(2574), 31, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -182304,69 +181688,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50358] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4346), 1, - anon_sym_RBRACK, - ACTIONS(4348), 1, - sym__entry_separator, - ACTIONS(4350), 1, - sym_raw_string_begin, - STATE(1968), 1, - sym_comment, - STATE(2091), 1, - aux_sym__types_body_repeat2, - ACTIONS(4344), 33, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [50412] = 6, + [49509] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(1969), 1, + ACTIONS(4326), 1, + aux_sym__immediate_decimal_token5, + STATE(1951), 1, sym_comment, - ACTIONS(1619), 5, + ACTIONS(1808), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1706), 30, + sym__unquoted_pattern, + ACTIONS(1806), 31, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -182388,6 +181724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -182397,15 +181734,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50464] = 4, - ACTIONS(3), 1, + [49560] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4352), 1, - sym__newline, - STATE(1970), 2, - aux_sym__repeat_newline, + ACTIONS(793), 1, + anon_sym_COLON2, + ACTIONS(799), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4328), 1, + sym_filesize_unit, + ACTIONS(4330), 1, + sym_duration_unit, + STATE(1952), 1, + sym_comment, + ACTIONS(797), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(795), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [49617] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(4332), 1, + anon_sym_GT2, + STATE(1859), 1, + aux_sym__types_body_repeat2, + STATE(1953), 1, sym_comment, - ACTIONS(1955), 35, + ACTIONS(4295), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -182441,110 +181830,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [50512] = 4, - ACTIONS(3), 1, + [49670] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1971), 1, + STATE(1954), 1, sym_comment, - ACTIONS(1728), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1726), 31, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [50560] = 4, + ACTIONS(747), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(749), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [49719] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1972), 1, - sym_comment, - ACTIONS(1804), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1802), 31, - anon_sym_in, - anon_sym_DASH2, + ACTIONS(2076), 1, anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [50608] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1973), 1, + ACTIONS(4311), 1, + anon_sym_DOT_DOT2, + STATE(1955), 1, sym_comment, - ACTIONS(1872), 6, + ACTIONS(4313), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2078), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1870), 31, + ACTIONS(2074), 29, anon_sym_in, anon_sym_DASH2, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -182563,7 +181914,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -182573,22 +181923,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50656] = 6, + [49774] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(1974), 1, + ACTIONS(4334), 1, + anon_sym_DOT_DOT2, + STATE(1956), 1, sym_comment, - ACTIONS(1966), 5, + ACTIONS(4336), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1944), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1964), 30, + ACTIONS(1942), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -182619,162 +181970,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50708] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(1975), 1, - sym_comment, - ACTIONS(4268), 35, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [50758] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4359), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4361), 1, - sym_filesize_unit, - ACTIONS(4363), 1, - sym_duration_unit, - STATE(1976), 1, - sym_comment, - ACTIONS(4357), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4355), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [50812] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2266), 1, - anon_sym_DOT2, - STATE(453), 1, - sym_cell_path, - STATE(518), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(783), 1, - sym_path, - STATE(1977), 1, - sym_comment, - ACTIONS(1432), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(1434), 31, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - [50868] = 6, + [49827] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(1978), 1, + ACTIONS(4338), 1, + anon_sym_DOT_DOT2, + STATE(1957), 1, sym_comment, - ACTIONS(1976), 5, + ACTIONS(4340), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1954), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1974), 30, + ACTIONS(1952), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -182805,180 +182017,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [50920] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - STATE(1876), 1, - aux_sym__types_body_repeat2, - STATE(1979), 1, - sym_comment, - ACTIONS(4260), 35, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [50970] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4307), 1, - anon_sym_EQ2, - STATE(1980), 1, - sym_comment, - STATE(2173), 1, - sym__flag_equals_value, - ACTIONS(4365), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(4367), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [51022] = 8, + [49880] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4369), 1, - sym__newline, - ACTIONS(4373), 1, - anon_sym_LBRACK, - ACTIONS(4378), 1, - anon_sym_DOT_DOT, - STATE(1981), 1, - sym_comment, - ACTIONS(4376), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2938), 6, - anon_sym_DOLLAR, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2940), 26, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - [51078] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - STATE(1982), 1, + ACTIONS(1956), 1, + anon_sym_LPAREN2, + ACTIONS(1962), 1, + sym__unquoted_pattern, + STATE(1958), 1, sym_comment, - STATE(1997), 1, - aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(1954), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2744), 19, + anon_sym_PLUS2, + ACTIONS(1952), 31, anon_sym_in, + sym__newline, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -182990,44 +182047,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51144] = 12, + [49933] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - STATE(1983), 1, + ACTIONS(4311), 1, + anon_sym_DOT_DOT2, + STATE(1959), 1, sym_comment, - STATE(1999), 1, - aux_sym__repeat_newline, - ACTIONS(2746), 2, + ACTIONS(4313), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1615), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2744), 23, + anon_sym_PLUS2, + ACTIONS(1689), 30, anon_sym_in, - anon_sym_LBRACE, + anon_sym_DASH2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -183046,35 +182102,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51208] = 9, + [49986] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(1960), 1, + sym_comment, + ACTIONS(771), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(773), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [50035] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - STATE(1984), 1, + ACTIONS(4342), 1, + anon_sym_DOT_DOT2, + STATE(1961), 1, sym_comment, - STATE(2001), 1, - aux_sym__repeat_newline, - ACTIONS(4385), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2746), 3, + ACTIONS(4344), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2100), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2744), 26, + ACTIONS(2098), 30, anon_sym_in, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -183093,33 +182194,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51266] = 7, + [50088] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - STATE(1985), 1, + ACTIONS(4346), 1, + anon_sym_DOT_DOT2, + STATE(1962), 1, sym_comment, - STATE(2003), 1, - aux_sym__repeat_newline, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2746), 5, + ACTIONS(4348), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2138), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2744), 28, + ACTIONS(2136), 30, anon_sym_in, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -183138,6 +182241,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -183145,116 +182250,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51320] = 18, + [50141] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - ACTIONS(4401), 1, - anon_sym_bit_DASHand2, - ACTIONS(4403), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, - anon_sym_bit_DASHor2, - STATE(1986), 1, + ACTIONS(4350), 1, + anon_sym_DOT_DOT2, + STATE(1963), 1, sym_comment, - STATE(2005), 1, - aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4352), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2146), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2744), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4387), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4399), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + anon_sym_PLUS2, + ACTIONS(2144), 30, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [51396] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(4383), 1, anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - ACTIONS(4401), 1, - anon_sym_bit_DASHand2, - ACTIONS(4403), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, - anon_sym_bit_DASHor2, - ACTIONS(4407), 1, + anon_sym_EQ_GT, anon_sym_and2, - STATE(1987), 1, - sym_comment, - STATE(2007), 1, - aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2744), 3, - anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4387), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4399), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4397), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -183262,195 +182280,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [51474] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - ACTIONS(4401), 1, - anon_sym_bit_DASHand2, - ACTIONS(4403), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, - anon_sym_bit_DASHor2, - ACTIONS(4407), 1, - anon_sym_and2, - ACTIONS(4409), 1, - anon_sym_xor2, - STATE(1988), 1, - sym_comment, - STATE(2009), 1, - aux_sym__repeat_newline, - ACTIONS(2744), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [51554] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - STATE(1989), 1, - sym_comment, - STATE(2011), 1, - aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4389), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4397), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2744), 11, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51622] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4348), 1, - sym__entry_separator, - ACTIONS(4350), 1, - sym_raw_string_begin, - ACTIONS(4411), 1, - anon_sym_RBRACK, - STATE(1990), 1, - sym_comment, - STATE(2091), 1, - aux_sym__types_body_repeat2, - ACTIONS(4344), 33, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [51676] = 11, + [50194] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - STATE(1991), 1, + ACTIONS(4354), 1, + anon_sym_DOT_DOT2, + STATE(1964), 1, sym_comment, - STATE(2013), 1, - aux_sym__repeat_newline, - ACTIONS(2746), 2, + ACTIONS(4356), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2154), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2744), 25, + anon_sym_PLUS2, + ACTIONS(2152), 30, anon_sym_in, - anon_sym_LBRACE, + anon_sym_DASH2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -183469,171 +182335,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [51738] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - STATE(1992), 1, - sym_comment, - STATE(2015), 1, - aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4389), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4399), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2744), 7, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [51808] = 16, - ACTIONS(3), 1, + [50247] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2853), 1, - sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - ACTIONS(4401), 1, - anon_sym_bit_DASHand2, - STATE(1993), 1, - sym_comment, - STATE(2017), 1, - aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(4358), 1, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4399), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2744), 6, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4397), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [51880] = 17, + STATE(1859), 1, + aux_sym__types_body_repeat2, + STATE(1965), 1, + sym_comment, + ACTIONS(4295), 35, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [50300] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2853), 1, + ACTIONS(2834), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4364), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4368), 1, + anon_sym_and2, + ACTIONS(4370), 1, + anon_sym_xor2, + ACTIONS(4380), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4384), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4386), 1, anon_sym_bit_DASHxor2, - STATE(1994), 1, + ACTIONS(4388), 1, + anon_sym_bit_DASHor2, + STATE(1966), 1, sym_comment, - STATE(2019), 1, + STATE(2054), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(2768), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4366), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4382), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4372), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4374), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2744), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4360), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -183642,87 +182451,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [51954] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4415), 1, - anon_sym_RBRACK, - ACTIONS(4417), 1, - sym__entry_separator, - ACTIONS(4419), 1, - sym_raw_string_begin, - STATE(1995), 1, - sym_comment, - STATE(2102), 1, - aux_sym__types_body_repeat2, - ACTIONS(4413), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [52008] = 13, + [50380] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2870), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4364), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4380), 1, anon_sym_PLUS2, - STATE(1996), 1, + STATE(1967), 1, sym_comment, - STATE(2032), 1, + STATE(2012), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4366), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4382), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4372), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2702), 19, + ACTIONS(2684), 19, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -183742,38 +182504,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52074] = 12, + [50446] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(1997), 1, + STATE(1968), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4390), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2706), 20, + ACTIONS(2692), 20, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -183794,35 +182556,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52138] = 12, + [50510] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2870), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4364), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4380), 1, anon_sym_PLUS2, - STATE(1998), 1, + STATE(1969), 1, sym_comment, - STATE(2033), 1, + STATE(2013), 1, aux_sym__repeat_newline, - ACTIONS(2704), 2, + ACTIONS(2686), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4366), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4382), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2702), 23, + ACTIONS(2684), 23, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -183846,33 +182608,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52202] = 11, + [50574] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(1999), 1, + STATE(1970), 1, sym_comment, - ACTIONS(2708), 2, + ACTIONS(2694), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2706), 24, + ACTIONS(2692), 24, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -183897,29 +182659,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52264] = 9, + [50636] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2870), 1, sym__newline, - STATE(2000), 1, + STATE(1971), 1, sym_comment, - STATE(2034), 1, + STATE(2014), 1, aux_sym__repeat_newline, - ACTIONS(4385), 2, + ACTIONS(4366), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2704), 3, + ACTIONS(2686), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2702), 26, + ACTIONS(2684), 26, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -183946,27 +182708,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52322] = 8, + [50694] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2001), 1, + STATE(1972), 1, sym_comment, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2708), 3, + ACTIONS(2694), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2706), 27, + ACTIONS(2692), 27, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -183994,25 +182756,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52378] = 7, + [50750] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2870), 1, sym__newline, - STATE(2002), 1, + STATE(1973), 1, sym_comment, - STATE(2035), 1, + STATE(2015), 1, aux_sym__repeat_newline, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2704), 5, + ACTIONS(2686), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2702), 28, + ACTIONS(2684), 28, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -184041,23 +182803,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52432] = 6, + [50804] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2003), 1, + STATE(1974), 1, sym_comment, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2708), 5, + ACTIONS(2694), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2706), 29, + ACTIONS(2692), 29, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -184087,56 +182849,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52484] = 18, + [50856] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2870), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4364), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4380), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4384), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4386), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4388), 1, anon_sym_bit_DASHor2, - STATE(2004), 1, + STATE(1975), 1, sym_comment, - STATE(2036), 1, + STATE(2016), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4366), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4382), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2702), 4, + ACTIONS(2684), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(4372), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4374), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4360), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184145,55 +182907,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52560] = 17, + [50932] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4410), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4412), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4414), 1, anon_sym_bit_DASHor2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2005), 1, + STATE(1976), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4390), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4408), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2706), 5, + ACTIONS(2692), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4437), 8, + ACTIONS(4406), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184202,57 +182964,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52634] = 19, + [51006] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2870), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4364), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4368), 1, + anon_sym_and2, + ACTIONS(4380), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4384), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4386), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4388), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, - anon_sym_and2, - STATE(2006), 1, + STATE(1977), 1, sym_comment, - STATE(2037), 1, + STATE(2017), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4366), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4382), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2702), 3, + ACTIONS(2684), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(4372), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4374), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4360), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184261,56 +183023,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52712] = 18, + [51084] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4410), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4412), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4414), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4416), 1, anon_sym_and2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2007), 1, + STATE(1978), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4390), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2706), 4, + ACTIONS(2692), 4, sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4408), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4406), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184319,58 +183081,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52788] = 20, + [51160] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2834), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4364), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4368), 1, + anon_sym_and2, + ACTIONS(4370), 1, + anon_sym_xor2, + ACTIONS(4380), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4384), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4386), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4388), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, - anon_sym_and2, - ACTIONS(4409), 1, - anon_sym_xor2, - STATE(2008), 1, + STATE(1979), 1, sym_comment, - STATE(2038), 1, + STATE(2018), 1, aux_sym__repeat_newline, - ACTIONS(2702), 2, + ACTIONS(2684), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4381), 2, + ACTIONS(4362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4366), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4382), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4372), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4374), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4360), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184379,57 +183141,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52868] = 19, + [51240] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4410), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4412), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4414), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4416), 1, anon_sym_and2, - ACTIONS(4449), 1, + ACTIONS(4418), 1, anon_sym_xor2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2009), 1, + STATE(1980), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4390), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2706), 3, + ACTIONS(2692), 3, sym__newline, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4408), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4406), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184438,40 +183200,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52946] = 14, + [51318] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2870), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4364), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4380), 1, anon_sym_PLUS2, - STATE(2010), 1, + STATE(1981), 1, sym_comment, - STATE(2039), 1, + STATE(2019), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4366), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4382), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4372), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4397), 8, + ACTIONS(4360), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184480,7 +183242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2702), 11, + ACTIONS(2684), 11, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -184492,38 +183254,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53014] = 13, + [51386] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2011), 1, + STATE(1982), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4390), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4437), 8, + ACTIONS(4406), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184532,7 +183294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2706), 12, + ACTIONS(2692), 12, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -184545,32 +183307,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53080] = 11, + [51452] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2870), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4364), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4380), 1, anon_sym_PLUS2, - STATE(2012), 1, + STATE(1983), 1, sym_comment, - STATE(2040), 1, + STATE(2020), 1, aux_sym__repeat_newline, - ACTIONS(2704), 2, + ACTIONS(2686), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4366), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2702), 25, + ACTIONS(2684), 25, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -184596,30 +183358,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53142] = 10, + [51514] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2013), 1, + STATE(1984), 1, sym_comment, - ACTIONS(2708), 2, + ACTIONS(2694), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2706), 26, + ACTIONS(2692), 26, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -184646,45 +183408,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53202] = 15, + [51574] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2870), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4364), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4380), 1, anon_sym_PLUS2, - STATE(2014), 1, + STATE(1985), 1, sym_comment, - STATE(2041), 1, + STATE(2021), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4366), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4382), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4372), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4374), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2702), 7, + ACTIONS(2684), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -184692,7 +183454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4360), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184701,43 +183463,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53272] = 14, + [51644] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2015), 1, + STATE(1986), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4390), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4408), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2706), 8, + ACTIONS(2692), 8, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -184746,7 +183508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4406), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184755,54 +183517,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53340] = 16, + [51712] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2870), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4364), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4380), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4384), 1, anon_sym_bit_DASHand2, - STATE(2016), 1, + STATE(1987), 1, sym_comment, - STATE(2042), 1, + STATE(2022), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4366), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4382), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4372), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4374), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2702), 6, + ACTIONS(2684), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4360), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184811,45 +183573,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53412] = 15, + [51784] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4410), 1, anon_sym_bit_DASHand2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2017), 1, + STATE(1988), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4390), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4408), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2706), 7, + ACTIONS(2692), 7, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -184857,7 +183619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4406), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184866,55 +183628,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53482] = 17, + [51854] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2905), 1, + ACTIONS(2870), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4364), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4380), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4384), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4386), 1, anon_sym_bit_DASHxor2, - STATE(2018), 1, + STATE(1989), 1, sym_comment, - STATE(2043), 1, + STATE(2023), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4366), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4382), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4372), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4374), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2702), 5, + ACTIONS(2684), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4360), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184923,54 +183685,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53556] = 16, + [51928] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4410), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4412), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2019), 1, + STATE(1990), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4390), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4408), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2706), 6, + ACTIONS(2692), 6, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4406), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -184979,40 +183741,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53628] = 13, + [52000] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2864), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4364), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4380), 1, anon_sym_PLUS2, - STATE(2020), 1, + STATE(1991), 1, sym_comment, - STATE(2045), 1, + STATE(2025), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4366), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4382), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4372), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2712), 19, + ACTIONS(2676), 19, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -185032,35 +183794,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53694] = 12, + [52066] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2864), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4364), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4380), 1, anon_sym_PLUS2, - STATE(2021), 1, + STATE(1992), 1, sym_comment, - STATE(2047), 1, + STATE(2027), 1, aux_sym__repeat_newline, - ACTIONS(2714), 2, + ACTIONS(2678), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4366), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4382), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2712), 23, + ACTIONS(2676), 23, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -185084,29 +183846,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53758] = 9, + [52130] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2864), 1, sym__newline, - STATE(2022), 1, + STATE(1993), 1, sym_comment, - STATE(2049), 1, + STATE(2029), 1, aux_sym__repeat_newline, - ACTIONS(4385), 2, + ACTIONS(4366), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2714), 3, + ACTIONS(2678), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2712), 26, + ACTIONS(2676), 26, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -185133,25 +183895,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53816] = 7, + [52188] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2864), 1, sym__newline, - STATE(2023), 1, + STATE(1994), 1, sym_comment, - STATE(2051), 1, + STATE(2031), 1, aux_sym__repeat_newline, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2714), 5, + ACTIONS(2678), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2712), 28, + ACTIONS(2676), 28, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -185180,57 +183942,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53870] = 18, + [52242] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2864), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4364), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4380), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4384), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4386), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4388), 1, anon_sym_bit_DASHor2, - STATE(2024), 1, + STATE(1995), 1, sym_comment, - STATE(2053), 1, + STATE(2033), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4366), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4382), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2712), 4, + ACTIONS(2676), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(4372), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4374), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4360), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [52318] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1956), 1, + anon_sym_LPAREN2, + ACTIONS(1962), 1, + sym__unquoted_pattern, + STATE(1996), 1, + sym_comment, + ACTIONS(1954), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1952), 30, anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -185238,57 +184029,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53946] = 19, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [52370] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2864), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4364), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4368), 1, + anon_sym_and2, + ACTIONS(4380), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4384), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4386), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4388), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, - anon_sym_and2, - STATE(2025), 1, + STATE(1997), 1, sym_comment, - STATE(2055), 1, + STATE(2035), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4366), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4382), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2712), 3, + ACTIONS(2676), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(4372), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4374), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4360), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185297,58 +184105,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54024] = 20, + [52448] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2513), 1, + anon_sym_LPAREN2, + STATE(1998), 1, + sym_comment, + ACTIONS(2511), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(2509), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, + [52500] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(4364), 1, + anon_sym_DASH2, + ACTIONS(4368), 1, anon_sym_and2, - ACTIONS(4409), 1, + ACTIONS(4370), 1, anon_sym_xor2, - STATE(2026), 1, + ACTIONS(4380), 1, + anon_sym_PLUS2, + ACTIONS(4384), 1, + anon_sym_bit_DASHand2, + ACTIONS(4386), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4388), 1, + anon_sym_bit_DASHor2, + STATE(1999), 1, sym_comment, - STATE(2057), 1, + STATE(2037), 1, aux_sym__repeat_newline, - ACTIONS(2712), 2, + ACTIONS(2676), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4381), 2, + ACTIONS(4362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4366), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4382), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4372), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4374), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4360), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185357,40 +184211,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54104] = 14, + [52580] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4424), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4426), 1, + sym_filesize_unit, + ACTIONS(4428), 1, + sym_duration_unit, + STATE(2000), 1, + sym_comment, + ACTIONS(4422), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4420), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [52634] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2864), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4364), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4380), 1, anon_sym_PLUS2, - STATE(2027), 1, + STATE(2001), 1, sym_comment, - STATE(2059), 1, + STATE(2039), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4366), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4382), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4372), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4397), 8, + ACTIONS(4360), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185399,7 +184300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2712), 11, + ACTIONS(2676), 11, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -185411,32 +184312,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54172] = 11, + [52702] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2529), 1, + anon_sym_LPAREN2, + ACTIONS(2531), 1, + sym__unquoted_pattern, + STATE(2002), 1, + sym_comment, + ACTIONS(2527), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2525), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [52754] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2003), 1, + sym_comment, + ACTIONS(2327), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(2325), 31, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [52802] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2864), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4364), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4380), 1, anon_sym_PLUS2, - STATE(2028), 1, + STATE(2004), 1, sym_comment, - STATE(2061), 1, + STATE(2041), 1, aux_sym__repeat_newline, - ACTIONS(2714), 2, + ACTIONS(2678), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4366), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2712), 25, + ACTIONS(2676), 25, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -185462,45 +184453,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54234] = 15, + [52864] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2864), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4364), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4380), 1, anon_sym_PLUS2, - STATE(2029), 1, + STATE(2005), 1, sym_comment, - STATE(2063), 1, + STATE(2043), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4366), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4382), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4372), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4374), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2712), 7, + ACTIONS(2676), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -185508,7 +184499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4360), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185517,54 +184508,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54304] = 16, + [52934] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4432), 1, + anon_sym_RBRACK, + ACTIONS(4434), 1, + sym__entry_separator, + ACTIONS(4436), 1, + sym_raw_string_begin, + STATE(2006), 1, + sym_comment, + STATE(2093), 1, + aux_sym__types_body_repeat2, + ACTIONS(4430), 33, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [52988] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2864), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4364), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4380), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4384), 1, anon_sym_bit_DASHand2, - STATE(2030), 1, + STATE(2007), 1, sym_comment, - STATE(2065), 1, + STATE(2045), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4366), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4382), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4372), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4374), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2712), 6, + ACTIONS(2676), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4360), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185573,56 +184611,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54376] = 17, + [53060] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4434), 1, + sym__entry_separator, + ACTIONS(4436), 1, + sym_raw_string_begin, + ACTIONS(4438), 1, + anon_sym_RBRACK, + STATE(2008), 1, + sym_comment, + STATE(2093), 1, + aux_sym__types_body_repeat2, + ACTIONS(4430), 33, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [53114] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2900), 1, + ACTIONS(2864), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4364), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4380), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4384), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4386), 1, anon_sym_bit_DASHxor2, - STATE(2031), 1, + STATE(2009), 1, sym_comment, - STATE(2067), 1, + STATE(2047), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4366), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4382), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4372), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4374), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2712), 5, + ACTIONS(2676), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4360), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [53188] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2554), 1, + anon_sym_LPAREN2, + ACTIONS(2556), 1, + sym__unquoted_pattern, + STATE(2010), 1, + sym_comment, + ACTIONS(1615), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1689), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [53240] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2566), 1, + anon_sym_LPAREN2, + ACTIONS(2568), 1, + sym__unquoted_pattern, + STATE(2011), 1, + sym_comment, + ACTIONS(2564), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2562), 30, anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -185630,38 +184790,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54450] = 12, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [53292] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2032), 1, + STATE(2012), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4390), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2720), 20, + ACTIONS(2688), 20, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -185682,33 +184859,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54514] = 11, + [53356] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2033), 1, + STATE(2013), 1, sym_comment, - ACTIONS(2722), 2, + ACTIONS(2690), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2720), 24, + ACTIONS(2688), 24, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -185733,27 +184910,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54576] = 8, + [53418] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2034), 1, + STATE(2014), 1, sym_comment, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2722), 3, + ACTIONS(2690), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2720), 27, + ACTIONS(2688), 27, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -185781,23 +184958,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54632] = 6, + [53474] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2035), 1, + STATE(2015), 1, sym_comment, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2722), 5, + ACTIONS(2690), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2720), 29, + ACTIONS(2688), 29, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -185827,55 +185004,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54684] = 17, + [53526] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4410), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4412), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4414), 1, anon_sym_bit_DASHor2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2036), 1, + STATE(2016), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4390), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4408), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2720), 5, + ACTIONS(2688), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4437), 8, + ACTIONS(4406), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185884,56 +185061,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54758] = 18, + [53600] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4410), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4412), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4414), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4416), 1, anon_sym_and2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2037), 1, + STATE(2017), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4390), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2720), 4, + ACTIONS(2688), 4, sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4408), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4406), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185942,57 +185119,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54834] = 19, + [53676] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4410), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4412), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4414), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4416), 1, anon_sym_and2, - ACTIONS(4449), 1, + ACTIONS(4418), 1, anon_sym_xor2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2038), 1, + STATE(2018), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4390), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2720), 3, + ACTIONS(2688), 3, sym__newline, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4408), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4406), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186001,38 +185178,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54912] = 13, + [53754] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2039), 1, + STATE(2019), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4390), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4437), 8, + ACTIONS(4406), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186041,7 +185218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2720), 12, + ACTIONS(2688), 12, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -186054,30 +185231,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54978] = 10, + [53820] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2040), 1, + STATE(2020), 1, sym_comment, - ACTIONS(2722), 2, + ACTIONS(2690), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2720), 26, + ACTIONS(2688), 26, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -186104,43 +185281,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55038] = 14, + [53880] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2041), 1, + STATE(2021), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4390), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4408), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2720), 8, + ACTIONS(2688), 8, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -186149,7 +185326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4406), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186158,45 +185335,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55106] = 15, + [53948] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4410), 1, anon_sym_bit_DASHand2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2042), 1, + STATE(2022), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4390), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4408), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2720), 7, + ACTIONS(2688), 7, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -186204,7 +185381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4406), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186213,54 +185390,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55176] = 16, + [54018] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4410), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4412), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2043), 1, + STATE(2023), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4390), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4408), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2720), 6, + ACTIONS(2688), 6, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4406), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186269,40 +185446,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55248] = 13, + [54090] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2867), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4364), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4380), 1, anon_sym_PLUS2, - STATE(2044), 1, + STATE(2024), 1, sym_comment, - STATE(2068), 1, + STATE(2048), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4366), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4382), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4372), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2728), 19, + ACTIONS(2768), 19, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -186322,38 +185499,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55314] = 12, + [54156] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2045), 1, + STATE(2025), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4390), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2732), 20, + ACTIONS(2772), 20, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -186374,35 +185551,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55378] = 12, + [54220] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2867), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4364), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4380), 1, anon_sym_PLUS2, - STATE(2046), 1, + STATE(2026), 1, sym_comment, - STATE(2069), 1, + STATE(2049), 1, aux_sym__repeat_newline, - ACTIONS(2730), 2, + ACTIONS(2770), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4366), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4382), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2728), 23, + ACTIONS(2768), 23, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -186426,33 +185603,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55442] = 11, + [54284] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2047), 1, + STATE(2027), 1, sym_comment, - ACTIONS(2734), 2, + ACTIONS(2774), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2732), 24, + ACTIONS(2772), 24, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -186477,29 +185654,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55504] = 9, + [54346] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2867), 1, sym__newline, - STATE(2048), 1, + STATE(2028), 1, sym_comment, - STATE(2070), 1, + STATE(2050), 1, aux_sym__repeat_newline, - ACTIONS(4385), 2, + ACTIONS(4366), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2730), 3, + ACTIONS(2770), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2728), 26, + ACTIONS(2768), 26, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -186526,27 +185703,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55562] = 8, + [54404] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2049), 1, + STATE(2029), 1, sym_comment, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2734), 3, + ACTIONS(2774), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2732), 27, + ACTIONS(2772), 27, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -186574,25 +185751,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55618] = 7, + [54460] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2867), 1, sym__newline, - STATE(2050), 1, + STATE(2030), 1, sym_comment, - STATE(2071), 1, + STATE(2051), 1, aux_sym__repeat_newline, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2730), 5, + ACTIONS(2770), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2728), 28, + ACTIONS(2768), 28, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -186621,23 +185798,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55672] = 6, + [54514] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2051), 1, + STATE(2031), 1, sym_comment, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2734), 5, + ACTIONS(2774), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2732), 29, + ACTIONS(2772), 29, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -186667,56 +185844,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55724] = 18, + [54566] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2867), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4364), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4380), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4384), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4386), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4388), 1, anon_sym_bit_DASHor2, - STATE(2052), 1, + STATE(2032), 1, sym_comment, - STATE(2072), 1, + STATE(2052), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4366), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4382), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2728), 4, + ACTIONS(2768), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(4372), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4374), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4360), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186725,55 +185902,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55800] = 17, + [54642] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4410), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4412), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4414), 1, anon_sym_bit_DASHor2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2053), 1, + STATE(2033), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4390), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4408), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2732), 5, + ACTIONS(2772), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4437), 8, + ACTIONS(4406), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186782,57 +185959,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55874] = 19, + [54716] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2867), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4364), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4368), 1, + anon_sym_and2, + ACTIONS(4380), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4384), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4386), 1, anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, + ACTIONS(4388), 1, anon_sym_bit_DASHor2, - ACTIONS(4407), 1, - anon_sym_and2, - STATE(2054), 1, + STATE(2034), 1, sym_comment, - STATE(2073), 1, + STATE(2053), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4366), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4382), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2728), 3, + ACTIONS(2768), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4387), 4, + ACTIONS(4372), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4374), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, + ACTIONS(4360), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186841,56 +186018,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55952] = 18, + [54794] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4410), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4412), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4414), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4416), 1, anon_sym_and2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2055), 1, + STATE(2035), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4390), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2732), 4, + ACTIONS(2772), 4, sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4408), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4406), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186899,117 +186076,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56028] = 20, + [54870] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(1766), 1, + sym__unquoted_pattern, + STATE(2036), 1, + sym_comment, + ACTIONS(793), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(890), 31, + anon_sym_in, sym__newline, - ACTIONS(4383), 1, anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - ACTIONS(4401), 1, - anon_sym_bit_DASHand2, - ACTIONS(4403), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, - anon_sym_bit_DASHor2, - ACTIONS(4407), 1, + anon_sym_LBRACE, anon_sym_and2, - ACTIONS(4409), 1, anon_sym_xor2, - STATE(2056), 1, - sym_comment, - STATE(2074), 1, - aux_sym__repeat_newline, - ACTIONS(2728), 2, - anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4397), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [56108] = 19, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [54920] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4410), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4412), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4414), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4416), 1, anon_sym_and2, - ACTIONS(4449), 1, + ACTIONS(4418), 1, anon_sym_xor2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2057), 1, + STATE(2037), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4390), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2732), 3, + ACTIONS(2772), 3, sym__newline, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4408), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4406), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187018,40 +186180,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56186] = 14, + [54998] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2867), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4364), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4380), 1, anon_sym_PLUS2, - STATE(2058), 1, + STATE(2038), 1, sym_comment, - STATE(2075), 1, + STATE(2055), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4366), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4382), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4372), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4397), 8, + ACTIONS(4360), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187060,7 +186222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2728), 11, + ACTIONS(2768), 11, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -187072,38 +186234,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56254] = 13, + [55066] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2059), 1, + STATE(2039), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4390), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4437), 8, + ACTIONS(4406), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187112,7 +186274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2732), 12, + ACTIONS(2772), 12, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -187125,32 +186287,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56320] = 11, + [55132] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2867), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4364), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4380), 1, anon_sym_PLUS2, - STATE(2060), 1, + STATE(2040), 1, sym_comment, - STATE(2076), 1, + STATE(2056), 1, aux_sym__repeat_newline, - ACTIONS(2730), 2, + ACTIONS(2770), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4366), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2728), 25, + ACTIONS(2768), 25, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -187176,30 +186338,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56382] = 10, + [55194] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2061), 1, + STATE(2041), 1, sym_comment, - ACTIONS(2734), 2, + ACTIONS(2774), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2732), 26, + ACTIONS(2772), 26, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -187226,45 +186388,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56442] = 15, + [55254] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2867), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4364), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4380), 1, anon_sym_PLUS2, - STATE(2062), 1, + STATE(2042), 1, sym_comment, - STATE(2077), 1, + STATE(2057), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4366), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4382), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4372), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4374), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2728), 7, + ACTIONS(2768), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -187272,7 +186434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4360), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187281,43 +186443,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56512] = 14, + [55324] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2063), 1, + STATE(2043), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4390), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4408), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2732), 8, + ACTIONS(2772), 8, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -187326,7 +186488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4406), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187335,54 +186497,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56580] = 16, + [55392] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2867), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4364), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4380), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4384), 1, anon_sym_bit_DASHand2, - STATE(2064), 1, + STATE(2044), 1, sym_comment, - STATE(2078), 1, + STATE(2110), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4366), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4382), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4372), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4374), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2728), 6, + ACTIONS(2768), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4360), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187391,45 +186553,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56652] = 15, + [55464] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4410), 1, anon_sym_bit_DASHand2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2065), 1, + STATE(2045), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4390), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4408), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2732), 7, + ACTIONS(2772), 7, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -187437,7 +186599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4406), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187446,55 +186608,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56722] = 17, + [55534] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2832), 1, + ACTIONS(2867), 1, sym__newline, - ACTIONS(4383), 1, + ACTIONS(4364), 1, anon_sym_DASH2, - ACTIONS(4393), 1, + ACTIONS(4380), 1, anon_sym_PLUS2, - ACTIONS(4401), 1, + ACTIONS(4384), 1, anon_sym_bit_DASHand2, - ACTIONS(4403), 1, + ACTIONS(4386), 1, anon_sym_bit_DASHxor2, - STATE(2066), 1, + STATE(2046), 1, sym_comment, - STATE(2079), 1, + STATE(2058), 1, aux_sym__repeat_newline, - ACTIONS(4381), 2, + ACTIONS(4362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4385), 2, + ACTIONS(4366), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4389), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, + ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, + ACTIONS(4382), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, + ACTIONS(4372), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4399), 4, + ACTIONS(4374), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2728), 5, + ACTIONS(2768), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4397), 8, + ACTIONS(4360), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187503,54 +186665,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56796] = 16, + [55608] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4410), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4412), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2067), 1, + STATE(2047), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4390), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4408), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2732), 6, + ACTIONS(2772), 6, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4406), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187559,38 +186721,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56868] = 12, + [55680] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2068), 1, + STATE(2048), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4390), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2740), 20, + ACTIONS(2776), 20, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -187611,33 +186773,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56932] = 11, + [55744] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2069), 1, + STATE(2049), 1, sym_comment, - ACTIONS(2742), 2, + ACTIONS(2778), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2740), 24, + ACTIONS(2776), 24, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -187662,27 +186824,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56994] = 8, + [55806] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2070), 1, + STATE(2050), 1, sym_comment, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2742), 3, + ACTIONS(2778), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2740), 27, + ACTIONS(2776), 27, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -187710,23 +186872,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57050] = 6, + [55862] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2071), 1, + STATE(2051), 1, sym_comment, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2742), 5, + ACTIONS(2778), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2740), 29, + ACTIONS(2776), 29, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -187756,55 +186918,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57102] = 17, + [55914] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4410), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4412), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4414), 1, anon_sym_bit_DASHor2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2072), 1, + STATE(2052), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4390), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4408), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2740), 5, + ACTIONS(2776), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4437), 8, + ACTIONS(4406), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187813,56 +186975,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57176] = 18, + [55988] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4410), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4412), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4414), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4416), 1, anon_sym_and2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2073), 1, + STATE(2053), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4390), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2740), 4, + ACTIONS(2776), 4, sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4408), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4406), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187871,57 +187033,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57252] = 19, + [56064] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4410), 1, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, + ACTIONS(4412), 1, anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, + ACTIONS(4414), 1, anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(4416), 1, anon_sym_and2, - ACTIONS(4449), 1, + ACTIONS(4418), 1, anon_sym_xor2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2074), 1, + STATE(2054), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4390), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2740), 3, + ACTIONS(2776), 3, sym__newline, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4427), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4408), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4437), 8, + ACTIONS(4406), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187930,38 +187092,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57330] = 13, + [56142] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2075), 1, + STATE(2055), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4390), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4437), 8, + ACTIONS(4406), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187970,7 +187132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2740), 12, + ACTIONS(2776), 12, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -187983,30 +187145,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57396] = 10, + [56208] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2076), 1, + STATE(2056), 1, sym_comment, - ACTIONS(2742), 2, + ACTIONS(2778), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2740), 26, + ACTIONS(2776), 26, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -188033,43 +187195,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57456] = 14, + [56268] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2077), 1, + STATE(2057), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4390), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4408), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2740), 8, + ACTIONS(2776), 8, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -188078,7 +187240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4406), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188087,53 +187249,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57524] = 15, + [56336] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(4410), 1, anon_sym_bit_DASHand2, - STATE(540), 1, + ACTIONS(4412), 1, + anon_sym_bit_DASHxor2, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2078), 1, + STATE(2058), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4390), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4425), 2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4429), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, + ACTIONS(4408), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2740), 7, + ACTIONS(2776), 6, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4437), 8, + ACTIONS(4406), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188142,55 +187305,482 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57594] = 16, + [56408] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4423), 1, - anon_sym_DASH2, - ACTIONS(4433), 1, + ACTIONS(2570), 1, + anon_sym_LPAREN2, + ACTIONS(2572), 1, + sym__unquoted_pattern, + STATE(2059), 1, + sym_comment, + ACTIONS(996), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(4441), 1, + ACTIONS(994), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, - ACTIONS(4443), 1, anon_sym_bit_DASHxor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2079), 1, + anon_sym_bit_DASHor2, + [56460] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4278), 1, + sym__entry_separator, + STATE(1859), 1, + aux_sym__types_body_repeat2, + STATE(2060), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(4276), 35, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [56510] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2061), 1, + sym_comment, + ACTIONS(874), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(876), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [56558] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(896), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4440), 1, + sym_filesize_unit, + ACTIONS(4442), 1, + sym_duration_unit, + STATE(2062), 1, + sym_comment, + ACTIONS(894), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(892), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [56612] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2570), 1, + anon_sym_LPAREN2, + ACTIONS(2572), 1, + sym__unquoted_pattern, + STATE(2063), 1, + sym_comment, + ACTIONS(1004), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4429), 2, + anon_sym_PLUS2, + ACTIONS(1012), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [56664] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4278), 1, + sym__entry_separator, + STATE(1859), 1, + aux_sym__types_body_repeat2, + STATE(2064), 1, + sym_comment, + ACTIONS(4295), 35, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [56714] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4434), 1, + sym__entry_separator, + ACTIONS(4436), 1, + sym_raw_string_begin, + ACTIONS(4444), 1, + anon_sym_RBRACK, + STATE(2065), 1, + sym_comment, + STATE(2093), 1, + aux_sym__types_body_repeat2, + ACTIONS(4430), 33, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [56768] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4446), 1, + sym__newline, + ACTIONS(4450), 1, + anon_sym_LBRACK, + ACTIONS(4455), 1, + anon_sym_DOT_DOT, + STATE(2066), 1, + sym_comment, + ACTIONS(4453), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2894), 6, + anon_sym_DOLLAR, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2896), 26, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + [56824] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2067), 1, + sym_comment, + ACTIONS(996), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(994), 32, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4439), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2740), 6, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [56872] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2068), 1, + sym_comment, + ACTIONS(1004), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1012), 32, + anon_sym_in, sym__newline, + anon_sym_DASH2, anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + 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(4437), 8, + [56920] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2069), 1, + sym_comment, + ACTIONS(2564), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2562), 32, anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -188198,12 +187788,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57666] = 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_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [56968] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4446), 1, + sym__newline, + ACTIONS(4450), 1, + anon_sym_LBRACK, + STATE(2070), 1, + sym_comment, + ACTIONS(4453), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2894), 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2896), 26, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + [57022] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2080), 1, + STATE(2071), 1, sym_comment, - ACTIONS(747), 7, + ACTIONS(771), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -188211,7 +187865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token6, sym_filesize_unit, - ACTIONS(749), 30, + ACTIONS(773), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -188242,21 +187896,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [57714] = 6, + [57070] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2192), 1, + anon_sym_DOT2, + STATE(434), 1, + sym_cell_path, + STATE(547), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(712), 1, + sym_path, + STATE(2072), 1, + sym_comment, + ACTIONS(1432), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1434), 31, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + [57126] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4458), 1, + sym__newline, + STATE(2073), 1, + sym_comment, + ACTIONS(4453), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2894), 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2896), 27, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + [57178] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4455), 1, + ACTIONS(4465), 1, anon_sym_DASH_DASH, - STATE(2148), 1, + STATE(2205), 1, sym_long_flag, - STATE(2081), 2, + STATE(2074), 2, sym_comment, aux_sym_decl_def_repeat1, - ACTIONS(4451), 3, + ACTIONS(4461), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4453), 31, + ACTIONS(4463), 31, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -188288,67 +188036,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [57766] = 4, + [57230] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2082), 1, + ACTIONS(4324), 1, + anon_sym_EQ2, + STATE(2075), 1, sym_comment, - ACTIONS(996), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(994), 32, + STATE(2192), 1, + sym__flag_equals_value, + ACTIONS(4468), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, + ACTIONS(4470), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [57282] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2875), 1, sym__newline, + ACTIONS(4364), 1, anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, + ACTIONS(4380), 1, + anon_sym_PLUS2, + STATE(1968), 1, + aux_sym__repeat_newline, + STATE(2076), 1, + sym_comment, + ACTIONS(4362), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4366), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(4382), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [57814] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2083), 1, - sym_comment, - ACTIONS(1016), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1018), 32, + ACTIONS(4372), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2666), 19, anon_sym_in, - sym__newline, - anon_sym_DASH2, anon_sym_LBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -188359,42 +188128,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57862] = 6, + [57348] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(2084), 1, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(4364), 1, + anon_sym_DASH2, + ACTIONS(4380), 1, + anon_sym_PLUS2, + STATE(1970), 1, + aux_sym__repeat_newline, + STATE(2077), 1, sym_comment, - ACTIONS(2525), 5, + ACTIONS(2668), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4366), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2523), 30, + ACTIONS(4376), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4378), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4382), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2666), 23, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -188413,122 +188184,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57914] = 7, + [57412] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(974), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4458), 1, - sym_filesize_unit, - ACTIONS(4460), 1, - sym_duration_unit, - STATE(2085), 1, - sym_comment, - ACTIONS(972), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(970), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [57968] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4462), 1, - sym__newline, - STATE(2086), 1, - sym_comment, - ACTIONS(4376), 2, + ACTIONS(4474), 1, anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2938), 7, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2940), 27, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - [58020] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4417), 1, + ACTIONS(4476), 1, sym__entry_separator, - ACTIONS(4419), 1, + ACTIONS(4478), 1, sym_raw_string_begin, - ACTIONS(4465), 1, - anon_sym_RBRACK, - STATE(2087), 1, + STATE(2078), 1, sym_comment, - STATE(2102), 1, + STATE(2096), 1, aux_sym__types_body_repeat2, - ACTIONS(4413), 33, + ACTIONS(4472), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -188562,66 +188234,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACK, aux_sym__unquoted_in_list_token1, - [58074] = 3, + [57466] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(2088), 1, - sym_comment, - ACTIONS(2940), 37, + ACTIONS(2875), 1, sym__newline, - anon_sym_LBRACK, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [58120] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2089), 1, + STATE(1972), 1, + aux_sym__repeat_newline, + STATE(2079), 1, sym_comment, - ACTIONS(2637), 5, - anon_sym_GT2, + ACTIONS(4366), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(4376), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4378), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2668), 3, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2635), 32, + ACTIONS(2666), 26, anon_sym_in, - sym__newline, anon_sym_DASH2, anon_sym_LBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -188640,123 +188278,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58168] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2090), 1, - sym_comment, - ACTIONS(771), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - ACTIONS(773), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [58216] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3715), 1, - sym_raw_string_begin, - ACTIONS(4467), 1, - sym__entry_separator, - STATE(2091), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3710), 34, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_RBRACK, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [58266] = 6, + [57524] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(2092), 1, + ACTIONS(2875), 1, + sym__newline, + STATE(1974), 1, + aux_sym__repeat_newline, + STATE(2080), 1, sym_comment, - ACTIONS(2569), 5, + ACTIONS(4376), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2668), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2567), 30, + ACTIONS(2666), 28, anon_sym_in, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -188775,8 +188323,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -188784,19 +188330,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58318] = 4, + [57578] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2093), 1, + STATE(2081), 1, sym_comment, - ACTIONS(2503), 6, + ACTIONS(1740), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(2501), 31, + ACTIONS(1738), 31, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -188828,69 +188374,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58366] = 5, - ACTIONS(3), 1, + [57626] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4470), 1, - anon_sym_QMARK2, - STATE(2094), 1, - sym_comment, - ACTIONS(1438), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1440), 32, + ACTIONS(4434), 1, + sym__entry_separator, + ACTIONS(4436), 1, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [58416] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4470), 1, - anon_sym_BANG, - STATE(2095), 1, + ACTIONS(4480), 1, + anon_sym_RBRACK, + STATE(2082), 1, sym_comment, - ACTIONS(1438), 4, + STATE(2093), 1, + aux_sym__types_body_repeat2, + ACTIONS(4430), 33, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1440), 32, - sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, + aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -188904,13 +188407,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -188918,68 +188421,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [58466] = 6, + [57680] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(2096), 1, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(4364), 1, + anon_sym_DASH2, + ACTIONS(4380), 1, + anon_sym_PLUS2, + ACTIONS(4384), 1, + anon_sym_bit_DASHand2, + ACTIONS(4386), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4388), 1, + anon_sym_bit_DASHor2, + STATE(1976), 1, + aux_sym__repeat_newline, + STATE(2083), 1, sym_comment, - ACTIONS(2637), 5, + ACTIONS(4362), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4366), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2635), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + ACTIONS(4376), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4378), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4382), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2666), 4, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, + ACTIONS(4372), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4374), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [58518] = 6, + ACTIONS(4360), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [57756] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2097), 1, + STATE(2084), 1, sym_comment, - ACTIONS(996), 5, + ACTIONS(1808), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(994), 30, + sym__unquoted_pattern, + ACTIONS(1806), 31, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -189001,6 +188513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -189010,24 +188523,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58570] = 5, + [57804] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, - STATE(2098), 1, + STATE(2085), 1, sym_comment, - ACTIONS(868), 5, + ACTIONS(1846), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(968), 31, + sym__unquoted_pattern, + ACTIONS(1844), 31, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -189046,6 +188557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -189055,24 +188567,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58620] = 7, + [57852] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2086), 1, + sym_comment, + ACTIONS(2896), 37, + sym__newline, + anon_sym_LBRACK, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [57898] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4476), 1, + ACTIONS(910), 1, aux_sym_cmd_identifier_token6, - ACTIONS(4478), 1, + ACTIONS(4482), 1, sym_filesize_unit, - ACTIONS(4480), 1, + ACTIONS(4484), 1, sym_duration_unit, - STATE(2099), 1, + STATE(2087), 1, sym_comment, - ACTIONS(4474), 5, + ACTIONS(908), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(4472), 29, + ACTIONS(906), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -189102,28 +188657,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [58674] = 6, + [57952] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2100), 1, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(4364), 1, + anon_sym_DASH2, + ACTIONS(4368), 1, + anon_sym_and2, + ACTIONS(4380), 1, + anon_sym_PLUS2, + ACTIONS(4384), 1, + anon_sym_bit_DASHand2, + ACTIONS(4386), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4388), 1, + anon_sym_bit_DASHor2, + STATE(1978), 1, + aux_sym__repeat_newline, + STATE(2088), 1, sym_comment, - ACTIONS(1016), 5, + ACTIONS(4362), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4366), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1018), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, + ACTIONS(4376), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4378), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4382), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2666), 3, + anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, + ACTIONS(4372), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4374), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4360), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -189131,41 +188716,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [58030] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(4364), 1, + anon_sym_DASH2, + ACTIONS(4368), 1, + anon_sym_and2, + ACTIONS(4370), 1, + anon_sym_xor2, + ACTIONS(4380), 1, + anon_sym_PLUS2, + ACTIONS(4384), 1, + anon_sym_bit_DASHand2, + ACTIONS(4386), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4388), 1, + anon_sym_bit_DASHor2, + STATE(1980), 1, + aux_sym__repeat_newline, + STATE(2089), 1, + sym_comment, + ACTIONS(2666), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4362), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4366), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4376), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4378), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4382), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4372), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4374), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [58726] = 7, + ACTIONS(4360), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [58110] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(888), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4482), 1, - sym_filesize_unit, - ACTIONS(4484), 1, - sym_duration_unit, - STATE(2101), 1, + STATE(2090), 1, sym_comment, - ACTIONS(886), 5, + ACTIONS(747), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(884), 29, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(749), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -189195,69 +188819,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [58780] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3715), 1, - sym_raw_string_begin, - ACTIONS(4486), 1, - sym__entry_separator, - STATE(2102), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3710), 34, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [58830] = 7, + sym_duration_unit, + [58158] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4493), 1, + ACTIONS(4490), 1, aux_sym_cmd_identifier_token6, - ACTIONS(4495), 1, + ACTIONS(4492), 1, sym_filesize_unit, - ACTIONS(4497), 1, + ACTIONS(4494), 1, sym_duration_unit, - STATE(2103), 1, + STATE(2091), 1, sym_comment, - ACTIONS(4491), 5, + ACTIONS(4488), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(4489), 29, + ACTIONS(4486), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -189287,20 +188867,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [58884] = 7, + [58212] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4417), 1, + ACTIONS(4476), 1, sym__entry_separator, - ACTIONS(4419), 1, + ACTIONS(4478), 1, sym_raw_string_begin, - ACTIONS(4499), 1, + ACTIONS(4496), 1, anon_sym_RBRACK, - STATE(2102), 1, - aux_sym__types_body_repeat2, - STATE(2104), 1, + STATE(2092), 1, sym_comment, - ACTIONS(4413), 33, + STATE(2096), 1, + aux_sym__types_body_repeat2, + ACTIONS(4472), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -189334,118 +188914,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACK, aux_sym__unquoted_in_list_token1, - [58938] = 7, + [58266] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4417), 1, - sym__entry_separator, - ACTIONS(4419), 1, + ACTIONS(3718), 1, sym_raw_string_begin, - ACTIONS(4501), 1, - anon_sym_RBRACK, - STATE(2102), 1, - aux_sym__types_body_repeat2, - STATE(2105), 1, + ACTIONS(4498), 1, + sym__entry_separator, + STATE(2093), 2, sym_comment, - ACTIONS(4413), 33, + aux_sym__types_body_repeat2, + ACTIONS(3713), 34, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [58992] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4369), 1, - sym__newline, - ACTIONS(4373), 1, - anon_sym_LBRACK, - STATE(2106), 1, - sym_comment, - ACTIONS(4376), 2, anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2938), 7, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2940), 26, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - [59046] = 7, + [58316] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4507), 1, + ACTIONS(4505), 1, aux_sym_cmd_identifier_token6, - ACTIONS(4509), 1, + ACTIONS(4507), 1, sym_filesize_unit, - ACTIONS(4511), 1, + ACTIONS(4509), 1, sym_duration_unit, - STATE(2107), 1, + STATE(2094), 1, sym_comment, - ACTIONS(4505), 5, + ACTIONS(4503), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(4503), 29, + ACTIONS(4501), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -189475,67 +189006,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [59100] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4348), 1, - sym__entry_separator, - ACTIONS(4350), 1, - sym_raw_string_begin, - ACTIONS(4513), 1, - anon_sym_RBRACK, - STATE(2091), 1, - aux_sym__types_body_repeat2, - STATE(2108), 1, - sym_comment, - ACTIONS(4344), 33, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [59154] = 4, + [58370] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(2109), 1, + ACTIONS(4515), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4517), 1, + sym_filesize_unit, + ACTIONS(4519), 1, + sym_duration_unit, + STATE(2095), 1, sym_comment, - ACTIONS(849), 7, + ACTIONS(4513), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - ACTIONS(851), 30, + ACTIONS(4511), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -189565,106 +189053,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - sym_duration_unit, - [59202] = 7, + [58424] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4348), 1, - sym__entry_separator, - ACTIONS(4350), 1, + ACTIONS(3718), 1, sym_raw_string_begin, - ACTIONS(4515), 1, - anon_sym_RBRACK, - STATE(2091), 1, - aux_sym__types_body_repeat2, - STATE(2110), 1, + ACTIONS(4521), 1, + sym__entry_separator, + STATE(2096), 2, sym_comment, - ACTIONS(4344), 33, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, + aux_sym__types_body_repeat2, + ACTIONS(3713), 34, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59256] = 4, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [58474] = 7, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2111), 1, - sym_comment, - ACTIONS(1520), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1522), 32, + ACTIONS(4476), 1, + sym__entry_separator, + ACTIONS(4478), 1, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + ACTIONS(4524), 1, + anon_sym_RBRACK, + STATE(2096), 1, + aux_sym__types_body_repeat2, + STATE(2097), 1, + sym_comment, + ACTIONS(4472), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59303] = 4, - ACTIONS(103), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [58528] = 14, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2112), 1, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(4364), 1, + anon_sym_DASH2, + ACTIONS(4380), 1, + anon_sym_PLUS2, + STATE(1982), 1, + aux_sym__repeat_newline, + STATE(2098), 1, sym_comment, - ACTIONS(3734), 2, - sym_raw_string_begin, + ACTIONS(4362), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4366), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4376), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4378), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4382), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4372), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4360), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2666), 11, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [58596] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4476), 1, sym__entry_separator, - ACTIONS(3732), 34, + ACTIONS(4478), 1, + sym_raw_string_begin, + ACTIONS(4526), 1, + anon_sym_RBRACK, + STATE(2096), 1, + aux_sym__types_body_repeat2, + STATE(2099), 1, + sym_comment, + ACTIONS(4472), 33, anon_sym_true, anon_sym_false, anon_sym_null, @@ -189672,7 +189220,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, @@ -189699,61 +189246,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACK, aux_sym__unquoted_in_list_token1, - [59350] = 4, - ACTIONS(103), 1, + [58650] = 11, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2113), 1, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(4364), 1, + anon_sym_DASH2, + ACTIONS(4380), 1, + anon_sym_PLUS2, + STATE(1984), 1, + aux_sym__repeat_newline, + STATE(2100), 1, sym_comment, - ACTIONS(3734), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3732), 34, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + ACTIONS(2668), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4366), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4376), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4378), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2666), 25, anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_RBRACK, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [59397] = 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [58712] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(2114), 1, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(4364), 1, + anon_sym_DASH2, + ACTIONS(4380), 1, + anon_sym_PLUS2, + STATE(1986), 1, + aux_sym__repeat_newline, + STATE(2101), 1, + sym_comment, + ACTIONS(4362), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4366), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4376), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4378), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4382), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4372), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4374), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2666), 7, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4360), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [58782] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(4364), 1, + anon_sym_DASH2, + ACTIONS(4380), 1, + anon_sym_PLUS2, + ACTIONS(4384), 1, + anon_sym_bit_DASHand2, + STATE(1988), 1, + aux_sym__repeat_newline, + STATE(2102), 1, + sym_comment, + ACTIONS(4362), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4366), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4376), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4378), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4382), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4372), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4374), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2666), 6, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4360), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [58854] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2875), 1, + sym__newline, + ACTIONS(4364), 1, + anon_sym_DASH2, + ACTIONS(4380), 1, + anon_sym_PLUS2, + ACTIONS(4384), 1, + anon_sym_bit_DASHand2, + ACTIONS(4386), 1, + anon_sym_bit_DASHxor2, + STATE(1990), 1, + aux_sym__repeat_newline, + STATE(2103), 1, + sym_comment, + ACTIONS(4362), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4366), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4376), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4378), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4382), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4372), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4374), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2666), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4360), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [58928] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4528), 1, + anon_sym_QMARK2, + STATE(2104), 1, sym_comment, - ACTIONS(2637), 3, + ACTIONS(1446), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2635), 32, + anon_sym_DOT2, + ACTIONS(1448), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -189786,18 +189510,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59446] = 5, + [58978] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4147), 1, - sym__unquoted_pattern, - STATE(2115), 1, + ACTIONS(4528), 1, + anon_sym_BANG, + STATE(2105), 1, sym_comment, - ACTIONS(868), 3, + ACTIONS(1446), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(968), 32, + anon_sym_DOT2, + ACTIONS(1448), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -189830,106 +189555,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59495] = 5, + [59028] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4534), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4536), 1, + sym_filesize_unit, + ACTIONS(4538), 1, + sym_duration_unit, + STATE(2106), 1, + sym_comment, + ACTIONS(4532), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4530), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [59082] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, + ACTIONS(1598), 1, sym__unquoted_pattern, - STATE(2116), 1, + ACTIONS(1946), 1, + anon_sym_LPAREN2, + STATE(2107), 1, sym_comment, - ACTIONS(1619), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(1944), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1942), 30, anon_sym_in, - ACTIONS(1706), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [59544] = 5, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [59134] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4517), 1, + ACTIONS(1956), 1, + anon_sym_LPAREN2, + ACTIONS(1962), 1, + sym__unquoted_pattern, + STATE(2108), 1, + sym_comment, + ACTIONS(2576), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2574), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [59186] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4540), 1, sym__newline, - STATE(2117), 2, + STATE(2109), 2, + aux_sym__repeat_newline, sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3736), 7, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3738), 27, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1935), 35, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [59234] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4392), 1, + anon_sym_DASH2, + ACTIONS(4402), 1, + anon_sym_PLUS2, + ACTIONS(4410), 1, + anon_sym_bit_DASHand2, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(2110), 1, + sym_comment, + ACTIONS(4390), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4394), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4398), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4400), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4404), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4396), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4408), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2776), 7, + sym__newline, anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - [59593] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4406), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [59304] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4417), 1, - sym__entry_separator, - ACTIONS(4419), 1, - sym_raw_string_begin, - STATE(2102), 1, - aux_sym__types_body_repeat2, - STATE(2118), 1, + STATE(2111), 1, sym_comment, - ACTIONS(4413), 33, + ACTIONS(3732), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3730), 34, anon_sym_true, anon_sym_false, anon_sym_null, @@ -189937,6 +189809,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, @@ -189963,12 +189836,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACK, aux_sym__unquoted_in_list_token1, - [59644] = 5, + [59351] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, + ACTIONS(2572), 1, sym__unquoted_pattern, - STATE(2119), 1, + STATE(2112), 1, sym_comment, ACTIONS(996), 3, anon_sym_export, @@ -190007,112 +189880,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59693] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4348), 1, - sym__entry_separator, - ACTIONS(4350), 1, - sym_raw_string_begin, - STATE(2091), 1, - aux_sym__types_body_repeat2, - STATE(2120), 1, - sym_comment, - ACTIONS(4344), 33, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [59744] = 5, + [59400] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4520), 1, + ACTIONS(4543), 1, sym__newline, - STATE(2121), 2, + STATE(2113), 2, sym_comment, aux_sym__types_body_repeat1, - ACTIONS(3736), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(3738), 31, + ACTIONS(3734), 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(3736), 27, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59793] = 5, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + [59449] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2122), 1, + STATE(2114), 1, sym_comment, - ACTIONS(1016), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1018), 32, + ACTIONS(3732), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3730), 34, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, + aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -190126,13 +189952,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + anon_sym_RBRACK, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -190140,57 +189967,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [59842] = 20, + [59496] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2837), 1, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(4364), 1, anon_sym_DASH2, - ACTIONS(2847), 1, + ACTIONS(4368), 1, + anon_sym_and2, + ACTIONS(4370), 1, + anon_sym_xor2, + ACTIONS(4380), 1, anon_sym_PLUS2, - ACTIONS(2858), 1, + ACTIONS(4384), 1, anon_sym_bit_DASHand2, - ACTIONS(2860), 1, + ACTIONS(4386), 1, anon_sym_bit_DASHxor2, - ACTIONS(2862), 1, + ACTIONS(4388), 1, anon_sym_bit_DASHor2, - ACTIONS(2908), 1, - anon_sym_and2, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(2914), 1, - anon_sym_xor2, - ACTIONS(4523), 1, + ACTIONS(4546), 1, anon_sym_or2, - STATE(2123), 1, + STATE(2115), 1, sym_comment, - STATE(2124), 1, + STATE(2116), 1, aux_sym__repeat_newline, - ACTIONS(2835), 2, + ACTIONS(4362), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(2839), 2, + ACTIONS(4366), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2843), 2, + ACTIONS(4376), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2845), 2, + ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2849), 2, + ACTIONS(4382), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2841), 4, + ACTIONS(4372), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2856), 4, + ACTIONS(4374), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2851), 8, + ACTIONS(4360), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190199,85 +190026,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [59921] = 20, + [59575] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2792), 1, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(4392), 1, anon_sym_DASH2, - ACTIONS(2798), 1, + ACTIONS(4402), 1, anon_sym_PLUS2, - ACTIONS(2802), 1, + ACTIONS(4410), 1, anon_sym_bit_DASHand2, - ACTIONS(2804), 1, + ACTIONS(4412), 1, anon_sym_bit_DASHxor2, - ACTIONS(2903), 1, + ACTIONS(4414), 1, anon_sym_bit_DASHor2, - ACTIONS(2910), 1, + ACTIONS(4416), 1, anon_sym_and2, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(2918), 1, + ACTIONS(4418), 1, anon_sym_xor2, - ACTIONS(4525), 1, + ACTIONS(4548), 1, anon_sym_or2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2124), 1, + STATE(2116), 1, sym_comment, - ACTIONS(2782), 2, + ACTIONS(4390), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4394), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2784), 2, + ACTIONS(4398), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2786), 2, + ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2790), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2800), 2, + ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2794), 4, + ACTIONS(4396), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2796), 4, + ACTIONS(4408), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2788), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [60000] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, - STATE(2125), 1, - sym_comment, - ACTIONS(868), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(968), 30, + ACTIONS(4406), 8, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -190285,35 +190085,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [60049] = 5, + [59654] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4527), 1, - anon_sym_LBRACK2, - STATE(2126), 1, + ACTIONS(4550), 1, + sym__newline, + STATE(2117), 2, sym_comment, - ACTIONS(2130), 3, + aux_sym__types_body_repeat1, + ACTIONS(3734), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2128), 32, + ACTIONS(3736), 31, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190338,7 +190122,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -190346,17 +190129,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60098] = 4, + [59703] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2127), 1, + ACTIONS(2556), 1, + sym__unquoted_pattern, + STATE(2118), 1, sym_comment, - ACTIONS(1535), 4, + ACTIONS(1615), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1537), 32, + ACTIONS(1689), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190389,234 +190173,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60145] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(4383), 1, - anon_sym_DASH2, - ACTIONS(4393), 1, - anon_sym_PLUS2, - ACTIONS(4401), 1, - anon_sym_bit_DASHand2, - ACTIONS(4403), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4405), 1, - anon_sym_bit_DASHor2, - ACTIONS(4407), 1, - anon_sym_and2, - ACTIONS(4409), 1, - anon_sym_xor2, - ACTIONS(4529), 1, - anon_sym_or2, - STATE(2128), 1, - sym_comment, - STATE(2129), 1, - aux_sym__repeat_newline, - ACTIONS(4381), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4385), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4389), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4391), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4395), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4387), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4399), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4397), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [60224] = 20, + [59752] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(4423), 1, + ACTIONS(2808), 1, anon_sym_DASH2, - ACTIONS(4433), 1, - anon_sym_PLUS2, - ACTIONS(4441), 1, - anon_sym_bit_DASHand2, - ACTIONS(4443), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4445), 1, - anon_sym_bit_DASHor2, - ACTIONS(4447), 1, + ACTIONS(2812), 1, anon_sym_and2, - ACTIONS(4449), 1, - anon_sym_xor2, - ACTIONS(4531), 1, - anon_sym_or2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2129), 1, - sym_comment, - ACTIONS(4421), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4425), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4429), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4431), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4435), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4427), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4439), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4437), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [60303] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3800), 1, - anon_sym_DASH2, - ACTIONS(3810), 1, + ACTIONS(2822), 1, anon_sym_PLUS2, - ACTIONS(3818), 1, + ACTIONS(2826), 1, anon_sym_bit_DASHand2, - ACTIONS(3820), 1, + ACTIONS(2828), 1, anon_sym_bit_DASHxor2, - ACTIONS(3822), 1, + ACTIONS(2830), 1, anon_sym_bit_DASHor2, - ACTIONS(3824), 1, - anon_sym_and2, - ACTIONS(3826), 1, - anon_sym_xor2, - ACTIONS(4533), 1, - anon_sym_or2, - STATE(2130), 1, - sym_comment, - STATE(2131), 1, - aux_sym__repeat_newline, - ACTIONS(3798), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3802), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3806), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3808), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3812), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3804), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3816), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3814), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [60382] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2834), 1, sym__newline, - ACTIONS(3836), 1, - anon_sym_DASH2, - ACTIONS(3846), 1, - anon_sym_PLUS2, - ACTIONS(3854), 1, - anon_sym_bit_DASHand2, - ACTIONS(3856), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3858), 1, - anon_sym_bit_DASHor2, - ACTIONS(3860), 1, - anon_sym_and2, - ACTIONS(3862), 1, + ACTIONS(2873), 1, anon_sym_xor2, - ACTIONS(4535), 1, + ACTIONS(4553), 1, anon_sym_or2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2131), 1, + STATE(2119), 1, sym_comment, - ACTIONS(3834), 2, + ACTIONS(2806), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3838), 2, + ACTIONS(2810), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3842), 2, + ACTIONS(2818), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3844), 2, + ACTIONS(2820), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3848), 2, + ACTIONS(2824), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3840), 4, + ACTIONS(2814), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3852), 4, + ACTIONS(2816), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3850), 8, + ACTIONS(2804), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190625,17 +190232,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60461] = 4, + [59831] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2132), 1, + ACTIONS(2568), 1, + sym__unquoted_pattern, + STATE(2120), 1, sym_comment, - ACTIONS(2503), 4, + ACTIONS(2564), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - sym__unquoted_pattern, - ACTIONS(2501), 32, + ACTIONS(2562), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190668,17 +190276,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60508] = 4, + [59880] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2133), 1, + ACTIONS(4143), 1, + sym__unquoted_pattern, + STATE(2121), 1, sym_comment, - ACTIONS(1462), 4, + ACTIONS(793), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1464), 32, + ACTIONS(890), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190711,58 +190320,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60555] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2134), 1, - sym_comment, - ACTIONS(2096), 36, - sym__newline, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [60600] = 4, + [59929] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2135), 1, + STATE(2122), 1, sym_comment, - ACTIONS(2573), 3, + ACTIONS(2327), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2571), 32, + sym__unquoted_pattern, + ACTIONS(2325), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190795,230 +190363,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60646] = 4, + [59976] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2136), 1, + STATE(2123), 1, sym_comment, - ACTIONS(2938), 3, + ACTIONS(1525), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2940), 32, + anon_sym_DOT2, + ACTIONS(1527), 32, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [60692] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4537), 1, - anon_sym_DASH2, - ACTIONS(4545), 1, - anon_sym_PLUS2, - STATE(2137), 1, - sym_comment, - ACTIONS(2535), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4539), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4541), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2533), 23, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [60750] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2138), 1, - sym_comment, - ACTIONS(4539), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4541), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2535), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2533), 26, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [60802] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2139), 1, - sym_comment, - ACTIONS(4541), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2535), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2533), 28, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [60850] = 16, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [60023] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(4557), 1, + ACTIONS(3781), 1, anon_sym_bit_DASHand2, - ACTIONS(4559), 1, + ACTIONS(3785), 1, anon_sym_bit_DASHxor2, - ACTIONS(4561), 1, + ACTIONS(3789), 1, anon_sym_bit_DASHor2, - STATE(2140), 1, + ACTIONS(3805), 1, + anon_sym_and2, + ACTIONS(3807), 1, + anon_sym_xor2, + ACTIONS(4555), 1, + anon_sym_or2, + STATE(2124), 1, sym_comment, - ACTIONS(4539), 2, + STATE(2125), 1, + aux_sym__repeat_newline, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, + ACTIONS(3763), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(2533), 4, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4553), 4, + ACTIONS(3769), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3765), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4555), 4, + ACTIONS(3767), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4549), 8, + ACTIONS(3761), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191027,53 +190465,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60920] = 17, + [60102] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(3751), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(3759), 1, anon_sym_PLUS2, - ACTIONS(4557), 1, + ACTIONS(3783), 1, anon_sym_bit_DASHand2, - ACTIONS(4559), 1, + ACTIONS(3787), 1, anon_sym_bit_DASHxor2, - ACTIONS(4561), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHor2, - ACTIONS(4563), 1, + ACTIONS(3813), 1, anon_sym_and2, - STATE(2141), 1, + ACTIONS(3815), 1, + anon_sym_xor2, + ACTIONS(4557), 1, + anon_sym_or2, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(2125), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(3753), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(3755), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(3757), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, + ACTIONS(3773), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(2533), 3, - anon_sym_EQ_GT, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4553), 4, + ACTIONS(3779), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3775), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4555), 4, + ACTIONS(3777), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4549), 8, + ACTIONS(3771), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191082,92 +190524,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60992] = 18, + [60181] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2572), 1, + sym__unquoted_pattern, + STATE(2126), 1, + sym_comment, + ACTIONS(1004), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1012), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [60230] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(2838), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(2842), 1, + anon_sym_and2, + ACTIONS(2844), 1, + anon_sym_xor2, + ACTIONS(2854), 1, anon_sym_PLUS2, - ACTIONS(4557), 1, + ACTIONS(2858), 1, anon_sym_bit_DASHand2, - ACTIONS(4559), 1, + ACTIONS(2860), 1, anon_sym_bit_DASHxor2, - ACTIONS(4561), 1, + ACTIONS(2862), 1, anon_sym_bit_DASHor2, - ACTIONS(4563), 1, - anon_sym_and2, - ACTIONS(4565), 1, - anon_sym_xor2, - STATE(2142), 1, - sym_comment, - ACTIONS(2533), 2, - anon_sym_EQ_GT, + ACTIONS(4559), 1, anon_sym_or2, - ACTIONS(4539), 2, + STATE(2119), 1, + aux_sym__repeat_newline, + STATE(2127), 1, + sym_comment, + ACTIONS(2836), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2840), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(2850), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(2852), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(2856), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, + ACTIONS(2846), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4555), 4, + ACTIONS(2848), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4549), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [61066] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4537), 1, - anon_sym_DASH2, - ACTIONS(4545), 1, - anon_sym_PLUS2, - STATE(2143), 1, - sym_comment, - ACTIONS(4539), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4541), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4549), 8, + ACTIONS(2832), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -191176,41 +190627,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 11, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [61128] = 9, + [60309] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, - anon_sym_DASH2, - ACTIONS(4545), 1, - anon_sym_PLUS2, - STATE(2144), 1, + ACTIONS(1766), 1, + sym__unquoted_pattern, + STATE(2128), 1, sym_comment, - ACTIONS(2535), 2, + ACTIONS(793), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4539), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4541), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2533), 25, + anon_sym_PLUS2, + ACTIONS(890), 30, anon_sym_in, + anon_sym_DASH2, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -191230,177 +190662,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [61184] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4537), 1, - anon_sym_DASH2, - ACTIONS(4545), 1, - anon_sym_PLUS2, - STATE(2145), 1, - sym_comment, - ACTIONS(4539), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4541), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4555), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2533), 7, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4549), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [61248] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4537), 1, - anon_sym_DASH2, - ACTIONS(4545), 1, - anon_sym_PLUS2, - ACTIONS(4557), 1, anon_sym_bit_DASHand2, - STATE(2146), 1, - sym_comment, - ACTIONS(4539), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4541), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4555), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2533), 6, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4549), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [61314] = 15, - ACTIONS(3), 1, + [60358] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4537), 1, - anon_sym_DASH2, - ACTIONS(4545), 1, - anon_sym_PLUS2, - ACTIONS(4557), 1, - anon_sym_bit_DASHand2, - ACTIONS(4559), 1, - anon_sym_bit_DASHxor2, - STATE(2147), 1, + ACTIONS(4476), 1, + sym__entry_separator, + ACTIONS(4478), 1, + sym_raw_string_begin, + STATE(2096), 1, + aux_sym__types_body_repeat2, + STATE(2129), 1, sym_comment, - ACTIONS(4539), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4541), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4555), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2533), 5, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4549), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [61382] = 4, + ACTIONS(4472), 33, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [60409] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2148), 1, + STATE(2130), 1, sym_comment, - ACTIONS(4567), 3, + ACTIONS(1552), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4569), 32, + anon_sym_DOT2, + ACTIONS(1554), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191433,59 +190759,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61428] = 5, - ACTIONS(103), 1, + [60456] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4575), 1, - aux_sym_cmd_identifier_token6, - STATE(2149), 1, + STATE(2131), 1, sym_comment, - ACTIONS(4573), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4571), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [61476] = 4, + ACTIONS(2110), 36, + sym__newline, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [60501] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2150), 1, + STATE(2132), 1, sym_comment, - ACTIONS(2521), 3, + ACTIONS(1529), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2519), 32, + anon_sym_DOT2, + ACTIONS(1531), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191518,59 +190844,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61522] = 5, + [60548] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1002), 1, - aux_sym_cmd_identifier_token6, - STATE(2151), 1, + ACTIONS(4434), 1, + sym__entry_separator, + ACTIONS(4436), 1, + sym_raw_string_begin, + STATE(2093), 1, + aux_sym__types_body_repeat2, + STATE(2133), 1, sym_comment, - ACTIONS(1000), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(998), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [61570] = 4, + ACTIONS(4430), 33, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [60599] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2152), 1, + ACTIONS(4561), 1, + anon_sym_LBRACK2, + STATE(2134), 1, sym_comment, - ACTIONS(1860), 3, + ACTIONS(2116), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1858), 32, + ACTIONS(2114), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191603,58 +190933,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61616] = 4, + [60648] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2153), 1, + STATE(2135), 1, sym_comment, - ACTIONS(2938), 7, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2940), 28, + ACTIONS(2088), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2086), 32, sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - [61662] = 4, + [60694] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2154), 1, + STATE(2136), 1, sym_comment, - ACTIONS(2086), 3, + ACTIONS(1615), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2084), 32, + ACTIONS(1689), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191687,16 +191017,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61708] = 4, + [60740] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2155), 1, + STATE(2137), 1, sym_comment, - ACTIONS(2270), 3, + ACTIONS(2620), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2268), 32, + ACTIONS(2618), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191729,16 +191059,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61754] = 4, + [60786] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2156), 1, + STATE(2138), 1, sym_comment, - ACTIONS(2274), 3, + ACTIONS(2628), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2272), 32, + ACTIONS(2626), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191771,82 +191101,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61800] = 28, + [60832] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4579), 1, - anon_sym_null, - ACTIONS(4583), 1, - sym__newline, - ACTIONS(4585), 1, - anon_sym_GT2, - ACTIONS(4587), 1, - anon_sym_DOT_DOT, - ACTIONS(4591), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4593), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4597), 1, - sym_val_date, - STATE(2157), 1, + ACTIONS(4565), 1, + anon_sym_DASH2, + ACTIONS(4575), 1, + anon_sym_PLUS2, + STATE(2139), 1, sym_comment, - STATE(2224), 1, - aux_sym__types_body_repeat1, - STATE(2250), 1, - aux_sym__collection_body_repeat1, - STATE(3843), 1, - sym__val_number_decimal, - STATE(4294), 1, - sym_val_string, - STATE(4296), 1, - sym__unquoted_in_record, - STATE(4489), 1, - sym__collection_entry, - STATE(4797), 1, - sym__collection_body, - STATE(4941), 1, - sym_val_bool, + ACTIONS(4563), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4567), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4571), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4573), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, ACTIONS(4577), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4569), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2547), 19, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [60892] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2140), 1, + sym_comment, + ACTIONS(2560), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2558), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_true, anon_sym_false, - ACTIONS(4589), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4595), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4874), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4581), 3, + anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [61894] = 4, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [60938] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2158), 1, + STATE(2141), 1, + sym_comment, + ACTIONS(4567), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4571), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4573), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2549), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2547), 26, + anon_sym_in, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [60990] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2142), 1, sym_comment, - ACTIONS(1888), 3, + ACTIONS(1872), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1886), 32, + ACTIONS(1870), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191879,82 +191279,437 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61940] = 28, + [61036] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, + STATE(2143), 1, + sym_comment, + ACTIONS(4571), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2549), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2547), 28, + anon_sym_in, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [61084] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4565), 1, + anon_sym_DASH2, + ACTIONS(4575), 1, + anon_sym_PLUS2, + ACTIONS(4583), 1, + anon_sym_bit_DASHand2, + ACTIONS(4585), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4587), 1, + anon_sym_bit_DASHor2, + STATE(2144), 1, + sym_comment, + ACTIONS(4563), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4567), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4571), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4573), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4577), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2547), 4, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4569), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4581), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4579), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [61154] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4565), 1, + anon_sym_DASH2, + ACTIONS(4575), 1, + anon_sym_PLUS2, + ACTIONS(4583), 1, + anon_sym_bit_DASHand2, + ACTIONS(4585), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4587), 1, + anon_sym_bit_DASHor2, + ACTIONS(4589), 1, + anon_sym_and2, + STATE(2145), 1, + sym_comment, + ACTIONS(4563), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4567), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4571), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4573), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4577), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2547), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4569), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4581), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4579), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [61226] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4565), 1, + anon_sym_DASH2, + ACTIONS(4575), 1, + anon_sym_PLUS2, + ACTIONS(4583), 1, + anon_sym_bit_DASHand2, + ACTIONS(4585), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4587), 1, + anon_sym_bit_DASHor2, + ACTIONS(4589), 1, + anon_sym_and2, + ACTIONS(4591), 1, + anon_sym_xor2, + STATE(2146), 1, + sym_comment, + ACTIONS(2547), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4563), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4567), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4571), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4573), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4577), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4569), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4581), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4579), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [61300] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4565), 1, + anon_sym_DASH2, + ACTIONS(4575), 1, + anon_sym_PLUS2, + STATE(2147), 1, + sym_comment, + ACTIONS(4563), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4567), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4571), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4573), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4577), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4569), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4579), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2547), 11, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [61362] = 27, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3835), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(3837), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, + ACTIONS(3839), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(3841), 1, sym_raw_string_begin, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4579), 1, + ACTIONS(4595), 1, anon_sym_null, - ACTIONS(4583), 1, - sym__newline, - ACTIONS(4587), 1, + ACTIONS(4601), 1, + anon_sym_GT2, + ACTIONS(4603), 1, anon_sym_DOT_DOT, - ACTIONS(4591), 1, + ACTIONS(4607), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4593), 1, + ACTIONS(4609), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4597), 1, + ACTIONS(4613), 1, sym_val_date, - ACTIONS(4599), 1, - anon_sym_GT2, - STATE(2159), 1, + ACTIONS(4615), 1, + aux_sym__unquoted_in_record_token1, + STATE(2148), 1, sym_comment, - STATE(2224), 1, - aux_sym__types_body_repeat1, - STATE(2250), 1, + STATE(2217), 1, aux_sym__collection_body_repeat1, - STATE(3843), 1, - sym__val_number_decimal, - STATE(4294), 1, - sym_val_string, - STATE(4296), 1, + STATE(2339), 1, sym__unquoted_in_record, - STATE(4489), 1, + STATE(2348), 1, + sym_val_string, + STATE(2396), 1, sym__collection_entry, - STATE(4817), 1, + STATE(3881), 1, + sym__val_number_decimal, + STATE(4830), 1, sym__collection_body, - STATE(4941), 1, + STATE(5043), 1, sym_val_bool, + ACTIONS(4593), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4599), 2, + anon_sym_COMMA, + anon_sym_LF, + ACTIONS(4605), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4611), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4843), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4597), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2395), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [61454] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4565), 1, + anon_sym_DASH2, + ACTIONS(4575), 1, + anon_sym_PLUS2, + STATE(2149), 1, + sym_comment, + ACTIONS(2549), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4567), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4571), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4573), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2547), 25, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [61510] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4565), 1, + anon_sym_DASH2, + ACTIONS(4575), 1, + anon_sym_PLUS2, + STATE(2150), 1, + sym_comment, + ACTIONS(4563), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4567), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4571), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4573), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, ACTIONS(4577), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4589), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4595), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4874), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4581), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [62034] = 4, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4569), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4581), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2547), 7, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4579), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [61574] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2160), 1, + STATE(2151), 1, sym_comment, - ACTIONS(1478), 3, + ACTIONS(2481), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1480), 32, + ACTIONS(2479), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191987,101 +191742,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62080] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4605), 1, - aux_sym_cmd_identifier_token6, - STATE(2161), 1, - sym_comment, - ACTIONS(4603), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4601), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [62128] = 4, + [61620] = 14, ACTIONS(3), 1, anon_sym_POUND, - STATE(2162), 1, + ACTIONS(4565), 1, + anon_sym_DASH2, + ACTIONS(4575), 1, + anon_sym_PLUS2, + ACTIONS(4583), 1, + anon_sym_bit_DASHand2, + STATE(2152), 1, sym_comment, - ACTIONS(1543), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(4563), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4567), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4571), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4573), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4577), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4569), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4581), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2547), 6, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4579), 8, anon_sym_in, - ACTIONS(1545), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [62174] = 4, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [61686] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2163), 1, + STATE(2153), 1, sym_comment, - ACTIONS(1466), 3, + ACTIONS(2481), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1468), 32, + ACTIONS(2479), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192114,16 +191836,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62220] = 4, + [61732] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2164), 1, + STATE(2154), 1, sym_comment, - ACTIONS(868), 3, + ACTIONS(2485), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(968), 32, + ACTIONS(2483), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192156,16 +191878,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62266] = 4, + [61778] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2165), 1, + STATE(2155), 1, sym_comment, - ACTIONS(1470), 3, + ACTIONS(2489), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1472), 32, + ACTIONS(2487), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192198,58 +191920,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62312] = 4, + [61824] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2166), 1, + ACTIONS(4617), 1, + sym__newline, + STATE(2156), 2, + aux_sym__repeat_newline, sym_comment, - ACTIONS(1474), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1476), 32, + ACTIONS(1940), 8, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1935), 25, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62358] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [61872] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2167), 1, + STATE(2157), 1, sym_comment, - ACTIONS(1514), 3, + ACTIONS(2493), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1516), 32, + ACTIONS(2491), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192282,16 +192005,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62404] = 4, + [61918] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2168), 1, + STATE(2158), 1, sym_comment, - ACTIONS(2256), 3, + ACTIONS(2497), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2254), 32, + ACTIONS(2495), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192324,85 +192047,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62450] = 11, + [61964] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, + ACTIONS(4565), 1, anon_sym_DASH2, - ACTIONS(4619), 1, + ACTIONS(4575), 1, anon_sym_PLUS2, - STATE(2169), 1, + ACTIONS(4583), 1, + anon_sym_bit_DASHand2, + ACTIONS(4585), 1, + anon_sym_bit_DASHxor2, + STATE(2159), 1, sym_comment, - ACTIONS(4607), 2, + ACTIONS(4563), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4611), 2, + ACTIONS(4567), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4615), 2, + ACTIONS(4571), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, + ACTIONS(4573), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, + ACTIONS(4577), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, + ACTIONS(4569), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2533), 19, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, + ACTIONS(4581), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [62510] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4609), 1, - anon_sym_DASH2, - ACTIONS(4619), 1, - anon_sym_PLUS2, - STATE(2170), 1, - sym_comment, - ACTIONS(2535), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2533), 23, - anon_sym_in, + ACTIONS(2547), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4579), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -192410,27 +192100,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [62568] = 4, + [62032] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2171), 1, + STATE(2160), 1, sym_comment, - ACTIONS(1619), 3, + ACTIONS(2313), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1706), 32, + ACTIONS(2311), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192463,61 +192142,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62614] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2172), 1, - sym_comment, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2535), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2533), 26, - anon_sym_in, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [62666] = 4, + [62078] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2173), 1, + STATE(2161), 1, sym_comment, - ACTIONS(4623), 3, + ACTIONS(1505), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4625), 32, + ACTIONS(1507), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192550,16 +192184,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62712] = 4, + [62124] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2174), 1, + STATE(2162), 1, sym_comment, - ACTIONS(4627), 3, + ACTIONS(1509), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4629), 32, + ACTIONS(1511), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192592,59 +192226,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62758] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2175), 1, - sym_comment, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2535), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2533), 28, - anon_sym_in, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [62806] = 4, + [62170] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2176), 1, + STATE(2163), 1, sym_comment, - ACTIONS(4631), 3, + ACTIONS(1458), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4633), 32, + ACTIONS(1460), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192677,70 +192268,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62852] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4609), 1, - anon_sym_DASH2, - ACTIONS(4619), 1, - anon_sym_PLUS2, - ACTIONS(4639), 1, - anon_sym_bit_DASHand2, - ACTIONS(4641), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4643), 1, - anon_sym_bit_DASHor2, - STATE(2177), 1, - sym_comment, - ACTIONS(4607), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4611), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4615), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2533), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4613), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4637), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4635), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [62922] = 4, + [62216] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2178), 1, + STATE(2164), 1, sym_comment, - ACTIONS(2114), 3, + ACTIONS(2331), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2112), 32, + ACTIONS(2329), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192773,16 +192310,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62968] = 4, + [62262] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2179), 1, + STATE(2165), 1, sym_comment, - ACTIONS(2256), 3, + ACTIONS(2122), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2254), 32, + ACTIONS(2120), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192815,16 +192352,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63014] = 4, + [62308] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2180), 1, + STATE(2166), 1, sym_comment, - ACTIONS(1876), 3, + ACTIONS(1513), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1874), 32, + ACTIONS(1515), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192857,16 +192394,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63060] = 4, + [62354] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2181), 1, + STATE(2167), 1, sym_comment, - ACTIONS(2507), 3, + ACTIONS(1517), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2505), 32, + ACTIONS(1519), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192899,16 +192436,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63106] = 4, + [62400] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2182), 1, + STATE(2168), 1, sym_comment, - ACTIONS(1556), 3, + ACTIONS(1521), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1558), 32, + ACTIONS(1523), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192941,16 +192478,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63152] = 4, + [62446] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2183), 1, + STATE(2169), 1, sym_comment, - ACTIONS(2617), 3, + ACTIONS(1864), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2615), 32, + ACTIONS(1862), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192983,53 +192520,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63198] = 17, + [62492] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, + ACTIONS(4622), 1, anon_sym_DASH2, - ACTIONS(4619), 1, + ACTIONS(4632), 1, anon_sym_PLUS2, - ACTIONS(4639), 1, + STATE(2170), 1, + sym_comment, + ACTIONS(4620), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4624), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4628), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4630), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4634), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4626), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2547), 19, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, anon_sym_bit_DASHand2, - ACTIONS(4641), 1, anon_sym_bit_DASHxor2, - ACTIONS(4643), 1, anon_sym_bit_DASHor2, - ACTIONS(4645), 1, + [62552] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4622), 1, + anon_sym_DASH2, + ACTIONS(4632), 1, + anon_sym_PLUS2, + STATE(2171), 1, + sym_comment, + ACTIONS(2549), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4624), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4628), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4630), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4634), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2547), 23, + anon_sym_in, + anon_sym_EQ_GT, anon_sym_and2, - STATE(2184), 1, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [62610] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2172), 1, + sym_comment, + ACTIONS(4624), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4628), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4630), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2549), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2547), 26, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [62662] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2173), 1, sym_comment, - ACTIONS(4607), 2, + ACTIONS(4628), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2549), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(4611), 2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2547), 28, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [62710] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4622), 1, + anon_sym_DASH2, + ACTIONS(4632), 1, + anon_sym_PLUS2, + ACTIONS(4640), 1, + anon_sym_bit_DASHand2, + ACTIONS(4642), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4644), 1, + anon_sym_bit_DASHor2, + STATE(2174), 1, + sym_comment, + ACTIONS(4620), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4624), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4615), 2, + ACTIONS(4628), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, + ACTIONS(4630), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, + ACTIONS(4634), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2533), 3, - anon_sym_LBRACE, + ACTIONS(2547), 4, + anon_sym_EQ_GT, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4613), 4, + ACTIONS(4626), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4637), 4, + ACTIONS(4638), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4635), 8, + ACTIONS(4636), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -193038,54 +192759,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [63270] = 18, + [62780] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, + ACTIONS(4622), 1, anon_sym_DASH2, - ACTIONS(4619), 1, + ACTIONS(4632), 1, anon_sym_PLUS2, - ACTIONS(4639), 1, + ACTIONS(4640), 1, anon_sym_bit_DASHand2, - ACTIONS(4641), 1, + ACTIONS(4642), 1, anon_sym_bit_DASHxor2, - ACTIONS(4643), 1, + ACTIONS(4644), 1, anon_sym_bit_DASHor2, - ACTIONS(4645), 1, + ACTIONS(4646), 1, anon_sym_and2, - ACTIONS(4647), 1, + STATE(2175), 1, + sym_comment, + ACTIONS(4620), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4624), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4628), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4630), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4634), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2547), 3, + anon_sym_EQ_GT, anon_sym_xor2, - STATE(2185), 1, + anon_sym_or2, + ACTIONS(4626), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4638), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4636), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [62852] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4622), 1, + anon_sym_DASH2, + ACTIONS(4632), 1, + anon_sym_PLUS2, + ACTIONS(4640), 1, + anon_sym_bit_DASHand2, + ACTIONS(4642), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4644), 1, + anon_sym_bit_DASHor2, + ACTIONS(4646), 1, + anon_sym_and2, + ACTIONS(4648), 1, + anon_sym_xor2, + STATE(2176), 1, sym_comment, - ACTIONS(2533), 2, - anon_sym_LBRACE, + ACTIONS(2547), 2, + anon_sym_EQ_GT, anon_sym_or2, - ACTIONS(4607), 2, + ACTIONS(4620), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4611), 2, + ACTIONS(4624), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4615), 2, + ACTIONS(4628), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, + ACTIONS(4630), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, + ACTIONS(4634), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, + ACTIONS(4626), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4637), 4, + ACTIONS(4638), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4635), 8, + ACTIONS(4636), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -193094,36 +192870,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [63344] = 12, + [62926] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, + ACTIONS(4622), 1, anon_sym_DASH2, - ACTIONS(4619), 1, + ACTIONS(4632), 1, anon_sym_PLUS2, - STATE(2186), 1, + STATE(2177), 1, sym_comment, - ACTIONS(4607), 2, + ACTIONS(4620), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4611), 2, + ACTIONS(4624), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4615), 2, + ACTIONS(4628), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, + ACTIONS(4630), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, + ACTIONS(4634), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, + ACTIONS(4626), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4635), 8, + ACTIONS(4636), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -193132,8 +192908,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2533), 11, - anon_sym_LBRACE, + ACTIONS(2547), 11, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -193144,30 +192920,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [63406] = 9, + [62988] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, + ACTIONS(4622), 1, anon_sym_DASH2, - ACTIONS(4619), 1, + ACTIONS(4632), 1, anon_sym_PLUS2, - STATE(2187), 1, + STATE(2178), 1, sym_comment, - ACTIONS(2535), 2, + ACTIONS(2549), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4611), 2, + ACTIONS(4624), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4615), 2, + ACTIONS(4628), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, + ACTIONS(4630), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2533), 25, + ACTIONS(2547), 25, anon_sym_in, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -193191,49 +192967,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [63462] = 13, + [63044] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, + ACTIONS(4622), 1, anon_sym_DASH2, - ACTIONS(4619), 1, + ACTIONS(4632), 1, anon_sym_PLUS2, - STATE(2188), 1, + STATE(2179), 1, sym_comment, - ACTIONS(4607), 2, + ACTIONS(4620), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4611), 2, + ACTIONS(4624), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4615), 2, + ACTIONS(4628), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, + ACTIONS(4630), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, + ACTIONS(4634), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, + ACTIONS(4626), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4637), 4, + ACTIONS(4638), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2533), 7, - anon_sym_LBRACE, + ACTIONS(2547), 7, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4635), 8, + ACTIONS(4636), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -193242,50 +193018,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [63526] = 14, + [63108] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, + ACTIONS(4622), 1, anon_sym_DASH2, - ACTIONS(4619), 1, + ACTIONS(4632), 1, anon_sym_PLUS2, - ACTIONS(4639), 1, + ACTIONS(4640), 1, anon_sym_bit_DASHand2, - STATE(2189), 1, + STATE(2180), 1, sym_comment, - ACTIONS(4607), 2, + ACTIONS(4620), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4611), 2, + ACTIONS(4624), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4615), 2, + ACTIONS(4628), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, + ACTIONS(4630), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, + ACTIONS(4634), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, + ACTIONS(4626), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4637), 4, + ACTIONS(4638), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2533), 6, - anon_sym_LBRACE, + ACTIONS(2547), 6, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4635), 8, + ACTIONS(4636), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -193294,51 +193070,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [63592] = 15, + [63174] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, + ACTIONS(4622), 1, anon_sym_DASH2, - ACTIONS(4619), 1, + ACTIONS(4632), 1, anon_sym_PLUS2, - ACTIONS(4639), 1, + ACTIONS(4640), 1, anon_sym_bit_DASHand2, - ACTIONS(4641), 1, + ACTIONS(4642), 1, anon_sym_bit_DASHxor2, - STATE(2190), 1, + STATE(2181), 1, sym_comment, - ACTIONS(4607), 2, + ACTIONS(4620), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4611), 2, + ACTIONS(4624), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4615), 2, + ACTIONS(4628), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, + ACTIONS(4630), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, + ACTIONS(4634), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, + ACTIONS(4626), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4637), 4, + ACTIONS(4638), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2533), 5, - anon_sym_LBRACE, + ACTIONS(2547), 5, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4635), 8, + ACTIONS(4636), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -193347,62 +193123,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [63660] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2191), 1, - sym_comment, - ACTIONS(4649), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(4651), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [63706] = 5, + [63242] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1014), 1, + ACTIONS(1002), 1, aux_sym_cmd_identifier_token6, - STATE(2192), 1, + STATE(2182), 1, sym_comment, - ACTIONS(1012), 5, + ACTIONS(1000), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(1010), 29, + ACTIONS(998), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -193432,16 +193166,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [63754] = 4, + [63290] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2193), 1, + STATE(2183), 1, sym_comment, - ACTIONS(2565), 3, + ACTIONS(2339), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2563), 32, + ACTIONS(2337), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193474,16 +193208,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63800] = 4, + [63336] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2194), 1, + STATE(2184), 1, sym_comment, - ACTIONS(2260), 3, + ACTIONS(2604), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2258), 32, + ACTIONS(2602), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193516,59 +193250,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63846] = 5, - ACTIONS(103), 1, + [63382] = 27, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1008), 1, - aux_sym_cmd_identifier_token6, - STATE(2195), 1, + ACTIONS(3835), 1, + anon_sym_DQUOTE, + ACTIONS(3837), 1, + anon_sym_SQUOTE, + ACTIONS(3839), 1, + anon_sym_BQUOTE, + ACTIONS(3841), 1, + sym_raw_string_begin, + ACTIONS(4595), 1, + anon_sym_null, + ACTIONS(4603), 1, + anon_sym_DOT_DOT, + ACTIONS(4607), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4609), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4613), 1, + sym_val_date, + ACTIONS(4615), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4650), 1, + anon_sym_GT2, + STATE(2185), 1, sym_comment, - ACTIONS(1006), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1004), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [63894] = 4, + STATE(2217), 1, + aux_sym__collection_body_repeat1, + STATE(2339), 1, + sym__unquoted_in_record, + STATE(2348), 1, + sym_val_string, + STATE(2396), 1, + sym__collection_entry, + STATE(3881), 1, + sym__val_number_decimal, + STATE(5043), 1, + sym_val_bool, + STATE(5238), 1, + sym__collection_body, + ACTIONS(4593), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4599), 2, + anon_sym_COMMA, + anon_sym_LF, + ACTIONS(4605), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4611), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4843), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4597), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2395), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [63474] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2196), 1, + STATE(2186), 1, sym_comment, - ACTIONS(2220), 3, + ACTIONS(2608), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2218), 32, + ACTIONS(2606), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193601,16 +193357,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63940] = 4, + [63520] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2197), 1, + STATE(2187), 1, sym_comment, - ACTIONS(2264), 3, + ACTIONS(2612), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2262), 32, + ACTIONS(2610), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193643,16 +193399,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63986] = 4, + [63566] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2198), 1, + STATE(2188), 1, sym_comment, - ACTIONS(2609), 3, + ACTIONS(2616), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2607), 32, + ACTIONS(2614), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193685,211 +193441,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64032] = 5, - ACTIONS(103), 1, + [63612] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4657), 1, - aux_sym_cmd_identifier_token6, - STATE(2199), 1, + STATE(2189), 1, sym_comment, - ACTIONS(4655), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4653), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [64080] = 5, - ACTIONS(103), 1, + ACTIONS(1868), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1866), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [63658] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4663), 1, - aux_sym_cmd_identifier_token6, - STATE(2200), 1, + STATE(2190), 1, sym_comment, - ACTIONS(4661), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4659), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [64128] = 5, + ACTIONS(1572), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1574), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [63704] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4665), 1, - sym__newline, - STATE(2201), 2, - aux_sym__repeat_newline, + STATE(2191), 1, sym_comment, - ACTIONS(1960), 8, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(1955), 25, + ACTIONS(2580), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2578), 32, sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [63750] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2192), 1, + sym_comment, + ACTIONS(4652), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(4654), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [64176] = 28, + [63796] = 27, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, + ACTIONS(3835), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(3837), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, + ACTIONS(3839), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(3841), 1, sym_raw_string_begin, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4579), 1, + ACTIONS(4595), 1, anon_sym_null, - ACTIONS(4583), 1, - sym__newline, - ACTIONS(4587), 1, + ACTIONS(4603), 1, anon_sym_DOT_DOT, - ACTIONS(4591), 1, + ACTIONS(4607), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4593), 1, + ACTIONS(4609), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4597), 1, + ACTIONS(4613), 1, sym_val_date, - ACTIONS(4668), 1, + ACTIONS(4615), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4656), 1, anon_sym_GT2, - STATE(2202), 1, + STATE(2193), 1, sym_comment, - STATE(2224), 1, - aux_sym__types_body_repeat1, - STATE(2250), 1, + STATE(2217), 1, aux_sym__collection_body_repeat1, - STATE(3843), 1, - sym__val_number_decimal, - STATE(4294), 1, - sym_val_string, - STATE(4296), 1, + STATE(2339), 1, sym__unquoted_in_record, - STATE(4489), 1, + STATE(2348), 1, + sym_val_string, + STATE(2396), 1, sym__collection_entry, - STATE(4892), 1, + STATE(3881), 1, + sym__val_number_decimal, + STATE(4882), 1, sym__collection_body, - STATE(4941), 1, + STATE(5043), 1, sym_val_bool, - ACTIONS(4577), 2, + ACTIONS(4593), 2, anon_sym_true, anon_sym_false, - ACTIONS(4589), 2, + ACTIONS(4599), 2, + anon_sym_COMMA, + anon_sym_LF, + ACTIONS(4605), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4595), 2, + ACTIONS(4611), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4874), 2, + STATE(4843), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(4581), 3, + ACTIONS(4597), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(3505), 4, + STATE(2395), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [64270] = 4, + [63888] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2203), 1, + STATE(2194), 1, sym_comment, - ACTIONS(2224), 3, + ACTIONS(2355), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2222), 32, + ACTIONS(2353), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193922,16 +193716,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64316] = 4, + [63934] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2204), 1, + STATE(2195), 1, sym_comment, - ACTIONS(2539), 3, + ACTIONS(4658), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2537), 32, + ACTIONS(4660), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193964,16 +193758,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64362] = 4, + [63980] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2205), 1, + STATE(2196), 1, sym_comment, - ACTIONS(2204), 3, + ACTIONS(4662), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2202), 32, + ACTIONS(4664), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194006,16 +193800,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64408] = 4, + [64026] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2206), 1, + STATE(2197), 1, sym_comment, - ACTIONS(2513), 3, + ACTIONS(2449), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2511), 32, + ACTIONS(2447), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194048,16 +193842,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64454] = 4, + [64072] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2207), 1, + STATE(2198), 1, sym_comment, - ACTIONS(2593), 3, + ACTIONS(2517), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2591), 32, + ACTIONS(2515), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194090,16 +193884,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64500] = 4, + [64118] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2208), 1, + STATE(2199), 1, sym_comment, - ACTIONS(2094), 3, + ACTIONS(4666), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2092), 32, + ACTIONS(4668), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194132,16 +193926,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64546] = 4, + [64164] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2209), 1, + STATE(2200), 1, sym_comment, - ACTIONS(1868), 3, + ACTIONS(2096), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1866), 32, + ACTIONS(2094), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194174,16 +193968,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64592] = 4, + [64210] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2210), 1, + STATE(2201), 1, + sym_comment, + ACTIONS(2894), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2896), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [64256] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1018), 1, + aux_sym_cmd_identifier_token6, + STATE(2202), 1, + sym_comment, + ACTIONS(1016), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1014), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [64304] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2203), 1, sym_comment, - ACTIONS(2196), 3, + ACTIONS(1850), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2194), 32, + ACTIONS(1848), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194216,16 +194095,423 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64638] = 4, + [64350] = 27, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3835), 1, + anon_sym_DQUOTE, + ACTIONS(3837), 1, + anon_sym_SQUOTE, + ACTIONS(3839), 1, + anon_sym_BQUOTE, + ACTIONS(3841), 1, + sym_raw_string_begin, + ACTIONS(4595), 1, + anon_sym_null, + ACTIONS(4603), 1, + anon_sym_DOT_DOT, + ACTIONS(4607), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4609), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4613), 1, + sym_val_date, + ACTIONS(4615), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4670), 1, + anon_sym_GT2, + STATE(2204), 1, + sym_comment, + STATE(2217), 1, + aux_sym__collection_body_repeat1, + STATE(2339), 1, + sym__unquoted_in_record, + STATE(2348), 1, + sym_val_string, + STATE(2396), 1, + sym__collection_entry, + STATE(3881), 1, + sym__val_number_decimal, + STATE(4994), 1, + sym__collection_body, + STATE(5043), 1, + sym_val_bool, + ACTIONS(4593), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4599), 2, + anon_sym_COMMA, + anon_sym_LF, + ACTIONS(4605), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4611), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4843), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4597), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2395), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [64442] = 4, ACTIONS(3), 1, anon_sym_POUND, + STATE(2205), 1, + sym_comment, + ACTIONS(4672), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(4674), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [64488] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1010), 1, + aux_sym_cmd_identifier_token6, + STATE(2206), 1, + sym_comment, + ACTIONS(1008), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1006), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [64536] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4680), 1, + aux_sym_cmd_identifier_token6, + STATE(2207), 1, + sym_comment, + ACTIONS(4678), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4676), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [64584] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4686), 1, + aux_sym_cmd_identifier_token6, + STATE(2208), 1, + sym_comment, + ACTIONS(4684), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4682), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [64632] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4692), 1, + aux_sym_cmd_identifier_token6, + STATE(2209), 1, + sym_comment, + ACTIONS(4690), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4688), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [64680] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4698), 1, + aux_sym_cmd_identifier_token6, + STATE(2210), 1, + sym_comment, + ACTIONS(4696), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4694), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [64728] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4704), 1, + aux_sym_cmd_identifier_token6, STATE(2211), 1, sym_comment, - ACTIONS(2517), 3, + ACTIONS(4702), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4700), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [64776] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2212), 1, + sym_comment, + ACTIONS(2894), 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2896), 28, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + [64822] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2213), 1, + sym_comment, + ACTIONS(793), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2515), 32, + ACTIONS(890), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194258,38 +194544,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64684] = 11, + [64868] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(4565), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(4575), 1, anon_sym_PLUS2, - STATE(2212), 1, + STATE(2214), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(2549), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4567), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(4571), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(4573), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(4577), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2533), 19, + ACTIONS(2547), 23, anon_sym_in, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -194300,6 +194581,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -194307,53 +194592,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [64744] = 18, + [64926] = 25, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4709), 1, + anon_sym_null, + ACTIONS(4718), 1, + anon_sym_GT2, + ACTIONS(4720), 1, + anon_sym_DOT_DOT, + ACTIONS(4726), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4729), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4735), 1, + sym_val_date, + ACTIONS(4738), 1, + anon_sym_DQUOTE, + ACTIONS(4741), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_BQUOTE, + ACTIONS(4747), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4750), 1, + sym_raw_string_begin, + STATE(2339), 1, + sym__unquoted_in_record, + STATE(2348), 1, + sym_val_string, + STATE(2396), 1, + sym__collection_entry, + STATE(3881), 1, + sym__val_number_decimal, + STATE(5043), 1, + sym_val_bool, + ACTIONS(4706), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4715), 2, + anon_sym_COMMA, + anon_sym_LF, + ACTIONS(4723), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4732), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2215), 2, + sym_comment, + aux_sym__collection_body_repeat1, + STATE(4843), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4712), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2395), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [65013] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2810), 1, + ACTIONS(4565), 1, anon_sym_DASH2, - ACTIONS(2822), 1, + ACTIONS(4575), 1, anon_sym_PLUS2, - ACTIONS(2826), 1, + ACTIONS(4583), 1, anon_sym_bit_DASHand2, - ACTIONS(2828), 1, + ACTIONS(4585), 1, anon_sym_bit_DASHxor2, - ACTIONS(2830), 1, + ACTIONS(4587), 1, anon_sym_bit_DASHor2, - ACTIONS(2864), 1, + ACTIONS(4589), 1, anon_sym_and2, - ACTIONS(2866), 1, + ACTIONS(4591), 1, anon_sym_xor2, - ACTIONS(4670), 1, + ACTIONS(4753), 1, anon_sym_or2, - STATE(2213), 1, + STATE(2216), 1, sym_comment, - ACTIONS(2808), 2, + ACTIONS(4563), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(2812), 2, + ACTIONS(4567), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2818), 2, + ACTIONS(4571), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2820), 2, + ACTIONS(4573), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2824), 2, + ACTIONS(4577), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2814), 4, + ACTIONS(4569), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2816), 4, + ACTIONS(4581), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2806), 8, + ACTIONS(4579), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194362,53 +194709,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [64817] = 18, + [65086] = 26, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3835), 1, + anon_sym_DQUOTE, + ACTIONS(3837), 1, + anon_sym_SQUOTE, + ACTIONS(3839), 1, + anon_sym_BQUOTE, + ACTIONS(3841), 1, + sym_raw_string_begin, + ACTIONS(4595), 1, + anon_sym_null, + ACTIONS(4603), 1, + anon_sym_DOT_DOT, + ACTIONS(4607), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4609), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4613), 1, + sym_val_date, + ACTIONS(4615), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4755), 1, + anon_sym_GT2, + STATE(2215), 1, + aux_sym__collection_body_repeat1, + STATE(2217), 1, + sym_comment, + STATE(2339), 1, + sym__unquoted_in_record, + STATE(2348), 1, + sym_val_string, + STATE(2396), 1, + sym__collection_entry, + STATE(3881), 1, + sym__val_number_decimal, + STATE(5043), 1, + sym_val_bool, + ACTIONS(4593), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4599), 2, + anon_sym_COMMA, + anon_sym_LF, + ACTIONS(4605), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4611), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4843), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4597), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2395), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [65175] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3866), 1, + ACTIONS(4622), 1, anon_sym_DASH2, - ACTIONS(3876), 1, + ACTIONS(4632), 1, anon_sym_PLUS2, - ACTIONS(3884), 1, + ACTIONS(4640), 1, anon_sym_bit_DASHand2, - ACTIONS(3886), 1, + ACTIONS(4642), 1, anon_sym_bit_DASHxor2, - ACTIONS(3888), 1, + ACTIONS(4644), 1, anon_sym_bit_DASHor2, - ACTIONS(3890), 1, + ACTIONS(4646), 1, anon_sym_and2, - ACTIONS(3892), 1, + ACTIONS(4648), 1, anon_sym_xor2, - ACTIONS(4672), 1, + ACTIONS(4757), 1, anon_sym_or2, - STATE(2214), 1, + STATE(2218), 1, sym_comment, - ACTIONS(3864), 2, + ACTIONS(4620), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3868), 2, + ACTIONS(4624), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3872), 2, + ACTIONS(4628), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3874), 2, + ACTIONS(4630), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3878), 2, + ACTIONS(4634), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3870), 4, + ACTIONS(4626), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3882), 4, + ACTIONS(4638), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3880), 8, + ACTIONS(4636), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194417,53 +194827,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [64890] = 18, + [65248] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4609), 1, + STATE(2219), 1, + sym_comment, + ACTIONS(2112), 8, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(2110), 26, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [65293] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2784), 1, anon_sym_DASH2, - ACTIONS(4619), 1, + ACTIONS(2796), 1, anon_sym_PLUS2, - ACTIONS(4639), 1, + ACTIONS(2800), 1, anon_sym_bit_DASHand2, - ACTIONS(4641), 1, + ACTIONS(2802), 1, anon_sym_bit_DASHxor2, - ACTIONS(4643), 1, + ACTIONS(2934), 1, anon_sym_bit_DASHor2, - ACTIONS(4645), 1, + ACTIONS(2936), 1, anon_sym_and2, - ACTIONS(4647), 1, + ACTIONS(2938), 1, anon_sym_xor2, - ACTIONS(4674), 1, + ACTIONS(4759), 1, anon_sym_or2, - STATE(2215), 1, + STATE(2220), 1, sym_comment, - ACTIONS(4607), 2, + ACTIONS(2782), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4611), 2, + ACTIONS(2786), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4615), 2, + ACTIONS(2792), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4617), 2, + ACTIONS(2794), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4621), 2, + ACTIONS(2798), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4613), 4, + ACTIONS(2788), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4637), 4, + ACTIONS(2790), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4635), 8, + ACTIONS(2780), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194472,80 +194923,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [64963] = 18, + [65366] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4537), 1, + ACTIONS(3851), 1, anon_sym_DASH2, - ACTIONS(4545), 1, + ACTIONS(3861), 1, anon_sym_PLUS2, - ACTIONS(4557), 1, + ACTIONS(3869), 1, anon_sym_bit_DASHand2, - ACTIONS(4559), 1, + ACTIONS(3871), 1, anon_sym_bit_DASHxor2, - ACTIONS(4561), 1, + ACTIONS(3873), 1, anon_sym_bit_DASHor2, - ACTIONS(4563), 1, + ACTIONS(3875), 1, anon_sym_and2, - ACTIONS(4565), 1, + ACTIONS(3877), 1, anon_sym_xor2, - ACTIONS(4676), 1, + ACTIONS(4761), 1, anon_sym_or2, - STATE(2216), 1, + STATE(2221), 1, sym_comment, - ACTIONS(4539), 2, + ACTIONS(3849), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3853), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4541), 2, + ACTIONS(3857), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4543), 2, + ACTIONS(3859), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4547), 2, + ACTIONS(3863), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4553), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4555), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4549), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [65036] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2217), 1, - sym_comment, - ACTIONS(4682), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4684), 4, + ACTIONS(3855), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4686), 4, + ACTIONS(3867), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4678), 8, + ACTIONS(3865), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194554,43 +194978,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(4680), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [65087] = 18, + [65439] = 18, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2948), 1, anon_sym_DASH2, - ACTIONS(2960), 1, + ACTIONS(2958), 1, anon_sym_PLUS2, - ACTIONS(2964), 1, - anon_sym_bit_DASHand2, ACTIONS(2966), 1, - anon_sym_bit_DASHxor2, + anon_sym_bit_DASHand2, ACTIONS(2968), 1, + anon_sym_bit_DASHxor2, + ACTIONS(2970), 1, anon_sym_bit_DASHor2, - ACTIONS(2974), 1, + ACTIONS(2972), 1, anon_sym_and2, - ACTIONS(3024), 1, + ACTIONS(2974), 1, anon_sym_xor2, - ACTIONS(4688), 1, + ACTIONS(4763), 1, anon_sym_or2, - STATE(2218), 1, + STATE(2222), 1, sym_comment, ACTIONS(2946), 2, anon_sym_GT2, @@ -194598,13 +195005,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2950), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2956), 2, + ACTIONS(2954), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2958), 2, + ACTIONS(2956), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2962), 2, + ACTIONS(2960), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, ACTIONS(2952), 4, @@ -194612,12 +195019,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2954), 4, + ACTIONS(2964), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2944), 8, + ACTIONS(2962), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194626,94 +195033,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [65160] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2219), 1, - sym_comment, - ACTIONS(2098), 8, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2096), 26, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [65205] = 18, + [65512] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3906), 1, - anon_sym_DASH2, - ACTIONS(3916), 1, - anon_sym_PLUS2, - ACTIONS(3924), 1, - anon_sym_bit_DASHand2, - ACTIONS(3926), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3928), 1, - anon_sym_bit_DASHor2, - ACTIONS(3930), 1, - anon_sym_and2, - ACTIONS(3932), 1, - anon_sym_xor2, - ACTIONS(4690), 1, - anon_sym_or2, - STATE(2220), 1, + STATE(2223), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(4769), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3908), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3912), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3914), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3918), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3910), 4, + ACTIONS(4771), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3922), 4, + ACTIONS(4773), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3920), 8, + ACTIONS(4765), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194722,25 +195060,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [65278] = 7, + ACTIONS(4767), 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, + [65563] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(2221), 1, + ACTIONS(3924), 1, + anon_sym_DASH2, + ACTIONS(3928), 1, + anon_sym_PLUS2, + ACTIONS(3940), 1, + anon_sym_bit_DASHand2, + ACTIONS(3942), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3944), 1, + anon_sym_bit_DASHor2, + ACTIONS(3946), 1, + anon_sym_and2, + ACTIONS(3948), 1, + anon_sym_xor2, + ACTIONS(4775), 1, + anon_sym_or2, + STATE(2224), 1, sym_comment, - ACTIONS(4694), 2, + ACTIONS(3906), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3908), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3910), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3922), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4696), 4, + ACTIONS(3930), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3926), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4698), 4, + ACTIONS(3938), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4692), 8, + ACTIONS(3936), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194749,33 +195132,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(4680), 15, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [65328] = 5, + [65636] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3715), 1, + ACTIONS(3718), 1, sym_raw_string_begin, - ACTIONS(4700), 1, + ACTIONS(4777), 1, sym__entry_separator, - STATE(2222), 2, + STATE(2225), 2, sym_comment, aux_sym__types_body_repeat2, - ACTIONS(3710), 30, + ACTIONS(3713), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -194806,20 +195173,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [65374] = 7, + [65682] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4705), 1, + ACTIONS(4782), 1, anon_sym_RBRACE, - ACTIONS(4707), 1, + ACTIONS(4784), 1, sym__entry_separator, - ACTIONS(4709), 1, + ACTIONS(4786), 1, sym_raw_string_begin, - STATE(2222), 1, + STATE(2225), 1, aux_sym__types_body_repeat2, - STATE(2223), 1, + STATE(2226), 1, sym_comment, - ACTIONS(4703), 29, + ACTIONS(4780), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -194849,82 +195216,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [65424] = 26, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4579), 1, - anon_sym_null, - ACTIONS(4583), 1, - sym__newline, - ACTIONS(4587), 1, - anon_sym_DOT_DOT, - ACTIONS(4591), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4593), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4597), 1, - sym_val_date, - STATE(2224), 1, - sym_comment, - STATE(2246), 1, - aux_sym__collection_body_repeat1, - STATE(2386), 1, - aux_sym__types_body_repeat1, - STATE(3843), 1, - sym__val_number_decimal, - STATE(4294), 1, - sym_val_string, - STATE(4296), 1, - sym__unquoted_in_record, - STATE(4478), 1, - sym__collection_entry, - STATE(4941), 1, - sym_val_bool, - ACTIONS(4577), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4589), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4595), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4874), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4581), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [65512] = 7, + [65732] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4707), 1, + ACTIONS(4784), 1, sym__entry_separator, - ACTIONS(4709), 1, + ACTIONS(4786), 1, sym_raw_string_begin, - ACTIONS(4711), 1, + ACTIONS(4788), 1, anon_sym_RBRACE, - STATE(2222), 1, - aux_sym__types_body_repeat2, STATE(2225), 1, + aux_sym__types_body_repeat2, + STATE(2227), 1, sym_comment, - ACTIONS(4703), 29, + ACTIONS(4780), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -194954,24 +195259,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [65562] = 5, + [65782] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4713), 1, - sym__newline, - STATE(2226), 2, - aux_sym__repeat_newline, + STATE(2228), 1, sym_comment, - ACTIONS(1960), 7, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_record_token1, - ACTIONS(1955), 24, + ACTIONS(4792), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4794), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4796), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4790), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(4767), 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, + [65832] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4784), 1, + sym__entry_separator, + ACTIONS(4786), 1, sym_raw_string_begin, + ACTIONS(4798), 1, + anon_sym_RBRACE, + STATE(2225), 1, + aux_sym__types_body_repeat2, + STATE(2229), 1, + sym_comment, + ACTIONS(4780), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -194980,35 +195324,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token5, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [65608] = 7, - ACTIONS(103), 1, + aux_sym_unquoted_token1, + [65882] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4707), 1, - sym__entry_separator, - ACTIONS(4709), 1, - sym_raw_string_begin, - ACTIONS(4716), 1, - anon_sym_RBRACE, - STATE(2222), 1, - aux_sym__types_body_repeat2, - STATE(2227), 1, + ACTIONS(4800), 1, + sym__newline, + STATE(2230), 2, + aux_sym__repeat_newline, sym_comment, - ACTIONS(4703), 29, + ACTIONS(1940), 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_record_token1, + ACTIONS(1935), 24, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195017,37 +195371,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token5, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym__val_number_token2, + aux_sym__val_number_token3, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym_unquoted_token1, - [65658] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [65928] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2228), 1, + STATE(2231), 1, sym_comment, - ACTIONS(1478), 3, + ACTIONS(1458), 3, anon_sym_EQ, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1480), 29, + ACTIONS(1460), 29, anon_sym_if, anon_sym_in, sym__newline, @@ -195077,16 +195425,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [65701] = 4, + [65971] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2229), 1, + STATE(2232), 1, sym_comment, - ACTIONS(1470), 3, + ACTIONS(1509), 3, anon_sym_EQ, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1472), 29, + ACTIONS(1511), 29, anon_sym_if, anon_sym_in, sym__newline, @@ -195116,102 +195464,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [65744] = 4, + [66014] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2230), 1, - sym_comment, - ACTIONS(1474), 3, - anon_sym_EQ, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1476), 29, - anon_sym_if, - anon_sym_in, + ACTIONS(4803), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - [65787] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - ACTIONS(4724), 1, - sym_raw_string_begin, - STATE(2231), 1, + STATE(2233), 2, sym_comment, - STATE(2245), 1, - aux_sym__types_body_repeat2, - ACTIONS(4720), 2, - anon_sym_RBRACK, + aux_sym__types_body_repeat1, + ACTIONS(3734), 7, + anon_sym__, anon_sym_DOT_DOT, - ACTIONS(4718), 27, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym__unquoted_in_list_token1, - [65836] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - ACTIONS(4724), 1, + aux_sym_unquoted_token1, + ACTIONS(3736), 23, sym_raw_string_begin, - STATE(2232), 1, - sym_comment, - STATE(2245), 1, - aux_sym__types_body_repeat2, - ACTIONS(4726), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(4718), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195224,31 +195494,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym__unquoted_in_list_token1, - [65885] = 4, + [66059] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2233), 1, + STATE(2234), 1, sym_comment, - ACTIONS(1514), 3, + ACTIONS(1521), 3, anon_sym_EQ, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1516), 29, + ACTIONS(1523), 29, anon_sym_if, anon_sym_in, sym__newline, @@ -195278,21 +195543,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [65928] = 7, + [66102] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - ACTIONS(4724), 1, + ACTIONS(3718), 1, sym_raw_string_begin, - STATE(2234), 1, + ACTIONS(4806), 1, + sym__entry_separator, + STATE(2235), 2, sym_comment, - STATE(2245), 1, aux_sym__types_body_repeat2, - ACTIONS(4728), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(4718), 27, + ACTIONS(3713), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195300,9 +195561,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -195320,21 +195583,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [65977] = 7, + [66147] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(4813), 1, sym__entry_separator, - ACTIONS(4724), 1, + ACTIONS(4815), 1, sym_raw_string_begin, STATE(2235), 1, - sym_comment, - STATE(2245), 1, aux_sym__types_body_repeat2, - ACTIONS(4730), 2, + STATE(2236), 1, + sym_comment, + ACTIONS(4811), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(4718), 27, + ACTIONS(4809), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195362,21 +195625,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [66026] = 7, + [66196] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(4813), 1, sym__entry_separator, - ACTIONS(4724), 1, + ACTIONS(4815), 1, sym_raw_string_begin, - STATE(2236), 1, - sym_comment, - STATE(2245), 1, + STATE(2235), 1, aux_sym__types_body_repeat2, - ACTIONS(4730), 2, + STATE(2237), 1, + sym_comment, + ACTIONS(4817), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(4718), 27, + ACTIONS(4809), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195404,64 +195667,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [66075] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4369), 1, - sym__newline, - ACTIONS(4373), 1, - anon_sym_LBRACK, - ACTIONS(4378), 1, - anon_sym_DOT_DOT, - STATE(2237), 1, - sym_comment, - ACTIONS(4376), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2938), 5, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2940), 22, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [66126] = 7, + [66245] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - ACTIONS(4724), 1, - sym_raw_string_begin, STATE(2238), 1, sym_comment, - STATE(2245), 1, - aux_sym__types_body_repeat2, - ACTIONS(4720), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(4718), 27, + ACTIONS(3732), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3730), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195472,6 +195686,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -195488,16 +195705,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym__unquoted_in_list_token1, - [66175] = 4, - ACTIONS(103), 1, + aux_sym_unquoted_token1, + [66288] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(2239), 1, sym_comment, - ACTIONS(3734), 2, - sym_raw_string_begin, + ACTIONS(1513), 3, + anon_sym_EQ, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1515), 29, + anon_sym_if, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + [66331] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4813), 1, sym__entry_separator, - ACTIONS(3732), 30, + ACTIONS(4815), 1, + sym_raw_string_begin, + STATE(2235), 1, + aux_sym__types_body_repeat2, + STATE(2240), 1, + sym_comment, + ACTIONS(4819), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(4809), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195508,9 +195770,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym__, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -195527,19 +195786,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym_unquoted_token1, - [66218] = 6, + aux_sym__unquoted_in_list_token1, + [66380] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4707), 1, + ACTIONS(4813), 1, sym__entry_separator, - ACTIONS(4709), 1, + ACTIONS(4815), 1, sym_raw_string_begin, - STATE(2222), 1, + STATE(2235), 1, aux_sym__types_body_repeat2, - STATE(2240), 1, + STATE(2241), 1, sym_comment, - ACTIONS(4703), 29, + ACTIONS(4821), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(4809), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195550,8 +195812,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -195568,24 +195828,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym_unquoted_token1, - [66265] = 5, + aux_sym__unquoted_in_list_token1, + [66429] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4732), 1, - sym__newline, - STATE(2241), 2, + STATE(2242), 1, sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3736), 7, - anon_sym__, + ACTIONS(2112), 7, + anon_sym_DOLLAR, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(3738), 23, + aux_sym__unquoted_in_record_token1, + ACTIONS(2110), 25, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -195593,9 +195850,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -195609,16 +195866,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [66310] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [66472] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2242), 1, + STATE(2243), 1, sym_comment, - ACTIONS(1543), 3, + ACTIONS(1505), 3, anon_sym_EQ, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1545), 29, + ACTIONS(1507), 29, anon_sym_if, anon_sym_in, sym__newline, @@ -195648,16 +195907,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [66353] = 4, + [66515] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4784), 1, + sym__entry_separator, + ACTIONS(4786), 1, + sym_raw_string_begin, + STATE(2225), 1, + aux_sym__types_body_repeat2, + STATE(2244), 1, + sym_comment, + ACTIONS(4780), 29, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + aux_sym_unquoted_token1, + [66562] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2243), 1, + STATE(2245), 1, sym_comment, - ACTIONS(1466), 3, + ACTIONS(1517), 3, anon_sym_EQ, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1468), 29, + ACTIONS(1519), 29, anon_sym_if, anon_sym_in, sym__newline, @@ -195687,160 +195987,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [66396] = 4, - ACTIONS(3), 1, + [66605] = 7, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2244), 1, + ACTIONS(4813), 1, + sym__entry_separator, + ACTIONS(4815), 1, + sym_raw_string_begin, + STATE(2235), 1, + aux_sym__types_body_repeat2, + STATE(2246), 1, sym_comment, - ACTIONS(2098), 7, - anon_sym_DOLLAR, + ACTIONS(4811), 2, + anon_sym_RBRACK, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_record_token1, - ACTIONS(2096), 25, - sym_raw_string_begin, + ACTIONS(4809), 27, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [66439] = 5, - ACTIONS(103), 1, + aux_sym__unquoted_in_list_token1, + [66654] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3715), 1, - sym_raw_string_begin, - ACTIONS(4735), 1, - sym__entry_separator, - STATE(2245), 2, + ACTIONS(4446), 1, + sym__newline, + ACTIONS(4450), 1, + anon_sym_LBRACK, + ACTIONS(4455), 1, + anon_sym_DOT_DOT, + STATE(2247), 1, sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3710), 29, + ACTIONS(4453), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2894), 5, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2896), 22, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym__unquoted_in_list_token1, - [66484] = 24, - ACTIONS(3), 1, + [66705] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(4813), 1, + sym__entry_separator, + ACTIONS(4815), 1, sym_raw_string_begin, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4579), 1, - anon_sym_null, - ACTIONS(4587), 1, - anon_sym_DOT_DOT, - ACTIONS(4591), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4593), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4597), 1, - sym_val_date, - STATE(2246), 1, - sym_comment, - STATE(2249), 1, - aux_sym__collection_body_repeat1, - STATE(3843), 1, - sym__val_number_decimal, - STATE(4294), 1, - sym_val_string, - STATE(4296), 1, - sym__unquoted_in_record, - STATE(4610), 1, - sym__collection_entry, - STATE(4941), 1, - sym_val_bool, - ACTIONS(4577), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4589), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4595), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4874), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4581), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [66566] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4738), 1, - sym__newline, - STATE(2247), 2, + STATE(2235), 1, + aux_sym__types_body_repeat2, + STATE(2248), 1, sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3736), 6, + ACTIONS(4821), 2, + anon_sym_RBRACK, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3738), 23, - sym_raw_string_begin, + ACTIONS(4809), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195853,25 +196099,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [66610] = 4, + aux_sym__unquoted_in_list_token1, + [66754] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2248), 1, + STATE(2249), 1, sym_comment, - ACTIONS(3734), 2, + ACTIONS(3732), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(3732), 29, + ACTIONS(3730), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195901,135 +196152,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [66652] = 23, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4744), 1, - anon_sym_null, - ACTIONS(4750), 1, - anon_sym_DOT_DOT, - ACTIONS(4756), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4759), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4765), 1, - sym_val_date, - ACTIONS(4768), 1, - anon_sym_DQUOTE, - ACTIONS(4771), 1, - anon_sym_SQUOTE, - ACTIONS(4774), 1, - anon_sym_BQUOTE, - ACTIONS(4777), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4780), 1, - sym_raw_string_begin, - STATE(3843), 1, - sym__val_number_decimal, - STATE(4619), 1, - sym_val_string, - STATE(4620), 1, - sym__unquoted_in_record, - STATE(4751), 1, - sym__collection_entry, - STATE(4941), 1, - sym_val_bool, - ACTIONS(4741), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4753), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4762), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2249), 2, - sym_comment, - aux_sym__collection_body_repeat1, - STATE(4874), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4747), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [66732] = 24, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3066), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4579), 1, - anon_sym_null, - ACTIONS(4587), 1, - anon_sym_DOT_DOT, - ACTIONS(4591), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4593), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4597), 1, - sym_val_date, - STATE(2249), 1, - aux_sym__collection_body_repeat1, - STATE(2250), 1, - sym_comment, - STATE(3843), 1, - sym__val_number_decimal, - STATE(4294), 1, - sym_val_string, - STATE(4296), 1, - sym__unquoted_in_record, - STATE(4482), 1, - sym__collection_entry, - STATE(4941), 1, - sym_val_bool, - ACTIONS(4577), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4589), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4595), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4874), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4581), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [66814] = 4, + [66796] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2251), 1, + ACTIONS(4823), 1, + sym__newline, + STATE(2250), 2, sym_comment, - ACTIONS(2938), 7, - anon_sym__, + aux_sym__types_body_repeat1, + ACTIONS(3734), 6, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(2940), 24, + aux_sym__unquoted_in_list_token1, + ACTIONS(3736), 23, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -196037,7 +196175,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -196054,18 +196191,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [66856] = 6, + [66840] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(4813), 1, sym__entry_separator, - ACTIONS(4724), 1, + ACTIONS(4815), 1, sym_raw_string_begin, - STATE(2245), 1, + STATE(2235), 1, aux_sym__types_body_repeat2, - STATE(2252), 1, + STATE(2251), 1, sym_comment, - ACTIONS(4718), 28, + ACTIONS(4809), 28, anon_sym_true, anon_sym_false, anon_sym_null, @@ -196094,19 +196231,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [66902] = 4, + [66886] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2253), 1, + STATE(2252), 1, sym_comment, - ACTIONS(2938), 6, + ACTIONS(2894), 7, + anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2940), 24, + aux_sym_unquoted_token1, + ACTIONS(2896), 24, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -196131,14 +196269,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [66943] = 6, + [66928] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2254), 1, + STATE(2253), 1, sym_comment, - STATE(3109), 1, + STATE(3191), 1, sym_redirection, - ACTIONS(4785), 8, + ACTIONS(4828), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -196147,7 +196285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4787), 8, + ACTIONS(4830), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -196156,7 +196294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(4783), 13, + ACTIONS(4826), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196170,14 +196308,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [66988] = 6, + [66973] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2254), 1, + sym_comment, + ACTIONS(2894), 6, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2896), 24, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [67014] = 6, ACTIONS(3), 1, anon_sym_POUND, STATE(2255), 1, sym_comment, - STATE(3079), 1, + STATE(3201), 1, sym_redirection, - ACTIONS(4785), 8, + ACTIONS(4828), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -196186,7 +196361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4787), 8, + ACTIONS(4830), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -196195,7 +196370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(4789), 13, + ACTIONS(4832), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196209,14 +196384,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [67033] = 6, + [67059] = 6, ACTIONS(3), 1, anon_sym_POUND, STATE(2256), 1, sym_comment, - STATE(3295), 1, + STATE(3274), 1, sym_redirection, - ACTIONS(4785), 8, + ACTIONS(4828), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -196225,7 +196400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4787), 8, + ACTIONS(4830), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -196234,7 +196409,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(4791), 12, + ACTIONS(4834), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196247,7 +196422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [67077] = 25, + [67103] = 25, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196260,61 +196435,77 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(1584), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2756), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4836), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4838), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4840), 1, anon_sym_DASH2, - ACTIONS(4799), 1, + ACTIONS(4842), 1, anon_sym_LBRACE, - ACTIONS(4801), 1, + ACTIONS(4844), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(958), 1, sym__expr_unary_minus, STATE(2257), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2626), 1, sym__where_predicate_lhs, - STATE(2776), 1, + STATE(2737), 1, sym__binary_predicate_parenthesized, - STATE(2777), 1, + STATE(2738), 1, sym_where_predicate, - STATE(3065), 1, + STATE(3043), 1, aux_sym__repeat_newline, - STATE(3134), 1, + STATE(3195), 1, sym_val_closure, - ACTIONS(1937), 2, + ACTIONS(1914), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2223), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2743), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67159] = 4, + [67185] = 6, ACTIONS(3), 1, anon_sym_POUND, STATE(2258), 1, sym_comment, - ACTIONS(1556), 2, - anon_sym_EQ, - anon_sym_DOT_DOT2, - ACTIONS(1558), 27, - anon_sym_if, - anon_sym_in, + STATE(3327), 1, + sym_redirection, + ACTIONS(4846), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4848), 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(4832), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196326,21 +196517,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_COLON, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [67199] = 25, + [67229] = 25, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196353,58 +196530,58 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(1584), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2756), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4836), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4838), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4840), 1, anon_sym_DASH2, - ACTIONS(4799), 1, + ACTIONS(4842), 1, anon_sym_LBRACE, - ACTIONS(4801), 1, + ACTIONS(4844), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(958), 1, sym__expr_unary_minus, STATE(2257), 1, aux_sym__repeat_newline, STATE(2259), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2626), 1, sym__where_predicate_lhs, - STATE(2763), 1, + STATE(2813), 1, sym__binary_predicate_parenthesized, - STATE(2770), 1, + STATE(2814), 1, sym_where_predicate, - STATE(3096), 1, + STATE(3260), 1, sym_val_closure, - ACTIONS(1937), 2, + ACTIONS(1914), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2223), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2743), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67281] = 6, + [67311] = 6, ACTIONS(3), 1, anon_sym_POUND, STATE(2260), 1, sym_comment, - STATE(3230), 1, + STATE(3292), 1, sym_redirection, - ACTIONS(4785), 8, + ACTIONS(4846), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -196413,7 +196590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4787), 8, + ACTIONS(4848), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -196422,7 +196599,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(4803), 12, + ACTIONS(4826), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196434,15 +196612,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, - [67325] = 6, + [67355] = 6, ACTIONS(3), 1, anon_sym_POUND, STATE(2261), 1, sym_comment, - STATE(3334), 1, + STATE(3278), 1, sym_redirection, - ACTIONS(4805), 8, + ACTIONS(4828), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -196451,7 +196628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4807), 8, + ACTIONS(4830), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -196460,8 +196637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(4789), 12, - ts_builtin_sym_end, + ACTIONS(4850), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196473,33 +196649,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, - [67369] = 6, + anon_sym_RPAREN, + [67399] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2262), 1, sym_comment, - STATE(3229), 1, - sym_redirection, - ACTIONS(4805), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4807), 8, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(4783), 12, - ts_builtin_sym_end, + ACTIONS(1572), 2, + anon_sym_EQ, + anon_sym_DOT_DOT2, + ACTIONS(1574), 27, + anon_sym_if, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196511,21 +196672,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, - [67413] = 7, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [67439] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4809), 1, + ACTIONS(4852), 1, anon_sym_QMARK2, - ACTIONS(4811), 1, + ACTIONS(4854), 1, anon_sym_BANG, - STATE(437), 1, + STATE(441), 1, sym__path_suffix, STATE(2263), 1, sym_comment, - ACTIONS(1446), 2, + ACTIONS(1438), 2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1448), 23, + ACTIONS(1440), 23, anon_sym_if, anon_sym_in, sym__newline, @@ -196549,7 +196724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [67458] = 23, + [67484] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196562,47 +196737,47 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(1584), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2756), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4836), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4838), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4840), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4844), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(958), 1, sym__expr_unary_minus, STATE(2264), 1, sym_comment, - STATE(2370), 1, + STATE(2294), 1, + aux_sym__repeat_newline, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2626), 1, sym__where_predicate_lhs, - STATE(2759), 1, + STATE(2732), 1, sym__binary_predicate_parenthesized, - STATE(2765), 1, + STATE(2745), 1, sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1914), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2223), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2743), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67534] = 23, + [67560] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196615,47 +196790,47 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(1584), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2756), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4836), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4838), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4840), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4844), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(958), 1, sym__expr_unary_minus, - STATE(2264), 1, - aux_sym__repeat_newline, STATE(2265), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2626), 1, sym__where_predicate_lhs, - STATE(2749), 1, + STATE(2776), 1, sym__binary_predicate_parenthesized, - STATE(2750), 1, + STATE(2777), 1, sym_where_predicate, - ACTIONS(1937), 2, + STATE(3043), 1, + aux_sym__repeat_newline, + ACTIONS(1914), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2223), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2743), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67610] = 23, + [67636] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196668,100 +196843,85 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(1584), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2756), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4836), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4838), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4840), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4844), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(958), 1, sym__expr_unary_minus, STATE(2266), 1, sym_comment, - STATE(2370), 1, + STATE(2274), 1, + aux_sym__repeat_newline, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2626), 1, sym__where_predicate_lhs, - STATE(2718), 1, + STATE(2805), 1, sym__binary_predicate_parenthesized, - STATE(2719), 1, + STATE(2806), 1, sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1914), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2223), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2743), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67686] = 23, + [67712] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(4793), 1, - sym__newline, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, - sym__expr_unary_minus, + ACTIONS(1432), 1, + anon_sym_DOT_DOT2, + ACTIONS(4856), 1, + anon_sym_DOT2, + STATE(435), 1, + sym_path, + STATE(2262), 1, + sym_cell_path, STATE(2267), 1, sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2672), 1, - sym__binary_predicate_parenthesized, - STATE(2673), 1, - sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(2217), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2745), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [67762] = 23, + STATE(2283), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1434), 22, + anon_sym_if, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [67758] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196774,47 +196934,47 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(1584), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2756), 1, aux_sym_expr_unary_token1, - ACTIONS(4795), 1, + ACTIONS(4836), 1, + sym__newline, + ACTIONS(4838), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4840), 1, anon_sym_DASH2, - ACTIONS(4799), 1, - anon_sym_LBRACE, - ACTIONS(4801), 1, + ACTIONS(4844), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(958), 1, sym__expr_unary_minus, STATE(2268), 1, sym_comment, - STATE(2370), 1, + STATE(2270), 1, + aux_sym__repeat_newline, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2626), 1, sym__where_predicate_lhs, - STATE(2743), 1, - sym__binary_predicate, - STATE(2744), 1, + STATE(2784), 1, + sym__binary_predicate_parenthesized, + STATE(2865), 1, sym_where_predicate, - STATE(3161), 1, - sym_val_closure, - ACTIONS(1937), 2, + ACTIONS(1914), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2223), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2743), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67838] = 23, + [67834] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196827,47 +196987,47 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(1584), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2756), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4836), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4838), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4840), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4844), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(958), 1, sym__expr_unary_minus, STATE(2269), 1, sym_comment, - STATE(2279), 1, + STATE(2275), 1, aux_sym__repeat_newline, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2626), 1, sym__where_predicate_lhs, - STATE(2727), 1, + STATE(2807), 1, sym__binary_predicate_parenthesized, - STATE(2729), 1, + STATE(2808), 1, sym_where_predicate, - ACTIONS(1937), 2, + ACTIONS(1914), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2223), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2743), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67914] = 23, + [67910] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196880,47 +197040,47 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(1584), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2756), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4836), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4838), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4840), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4844), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(958), 1, sym__expr_unary_minus, STATE(2270), 1, sym_comment, - STATE(2280), 1, - aux_sym__repeat_newline, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2626), 1, sym__where_predicate_lhs, - STATE(2738), 1, + STATE(2836), 1, sym__binary_predicate_parenthesized, - STATE(2739), 1, + STATE(2838), 1, sym_where_predicate, - ACTIONS(1937), 2, + STATE(3043), 1, + aux_sym__repeat_newline, + ACTIONS(1914), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2223), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2743), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67990] = 23, + [67986] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196933,47 +197093,47 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(1584), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2756), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4836), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4838), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4840), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4844), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(958), 1, sym__expr_unary_minus, STATE(2271), 1, sym_comment, - STATE(2281), 1, - aux_sym__repeat_newline, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2626), 1, sym__where_predicate_lhs, - STATE(2746), 1, + STATE(2695), 1, sym__binary_predicate_parenthesized, - STATE(2753), 1, + STATE(2696), 1, sym_where_predicate, - ACTIONS(1937), 2, + STATE(3043), 1, + aux_sym__repeat_newline, + ACTIONS(1914), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2223), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2743), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68066] = 23, + [68062] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196986,85 +197146,47 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(1584), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2756), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4836), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4838), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4840), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4844), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(958), 1, sym__expr_unary_minus, STATE(2272), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2626), 1, sym__where_predicate_lhs, - STATE(2754), 1, + STATE(2702), 1, sym__binary_predicate_parenthesized, - STATE(2755), 1, + STATE(2703), 1, sym_where_predicate, - STATE(3065), 1, + STATE(3043), 1, aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1914), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2223), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2743), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68142] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1432), 1, - anon_sym_DOT_DOT2, - ACTIONS(4813), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(2258), 1, - sym_cell_path, - STATE(2273), 1, - sym_comment, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1434), 22, - anon_sym_if, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [68188] = 23, + [68138] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197077,47 +197199,47 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(1584), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2756), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4836), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4838), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4840), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4844), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(958), 1, sym__expr_unary_minus, - STATE(2274), 1, + STATE(2271), 1, + aux_sym__repeat_newline, + STATE(2273), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2626), 1, sym__where_predicate_lhs, - STATE(2771), 1, + STATE(2786), 1, sym__binary_predicate_parenthesized, - STATE(2772), 1, + STATE(2787), 1, sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1914), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2223), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2743), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68264] = 23, + [68214] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197130,47 +197252,47 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(1584), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2756), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4836), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4838), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4840), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4844), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(958), 1, sym__expr_unary_minus, - STATE(2275), 1, + STATE(2274), 1, sym_comment, - STATE(2289), 1, - aux_sym__repeat_newline, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2626), 1, sym__where_predicate_lhs, - STATE(2775), 1, + STATE(2716), 1, sym__binary_predicate_parenthesized, - STATE(2781), 1, + STATE(2717), 1, sym_where_predicate, - ACTIONS(1937), 2, + STATE(3043), 1, + aux_sym__repeat_newline, + ACTIONS(1914), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2223), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2743), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68340] = 23, + [68290] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197183,47 +197305,47 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(1584), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2756), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4836), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4838), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4840), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4844), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(958), 1, sym__expr_unary_minus, - STATE(2267), 1, - aux_sym__repeat_newline, - STATE(2276), 1, + STATE(2275), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2626), 1, sym__where_predicate_lhs, - STATE(2788), 1, + STATE(2720), 1, sym__binary_predicate_parenthesized, - STATE(2804), 1, + STATE(2725), 1, sym_where_predicate, - ACTIONS(1937), 2, + STATE(3043), 1, + aux_sym__repeat_newline, + ACTIONS(1914), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2223), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2743), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68416] = 23, + [68366] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197236,47 +197358,47 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(1584), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2756), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4836), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4838), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4840), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4844), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(958), 1, sym__expr_unary_minus, - STATE(2277), 1, + STATE(2276), 1, sym_comment, - STATE(2278), 1, - aux_sym__repeat_newline, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2626), 1, sym__where_predicate_lhs, - STATE(2646), 1, + STATE(2729), 1, sym__binary_predicate_parenthesized, - STATE(2680), 1, + STATE(2730), 1, sym_where_predicate, - ACTIONS(1937), 2, + STATE(3043), 1, + aux_sym__repeat_newline, + ACTIONS(1914), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2223), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2743), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68492] = 23, + [68442] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197289,47 +197411,47 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(1584), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2756), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4836), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4838), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4840), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4844), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(958), 1, sym__expr_unary_minus, - STATE(2278), 1, + STATE(2276), 1, + aux_sym__repeat_newline, + STATE(2277), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2626), 1, sym__where_predicate_lhs, - STATE(2676), 1, + STATE(2809), 1, sym__binary_predicate_parenthesized, - STATE(2677), 1, + STATE(2810), 1, sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1914), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2223), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2743), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68568] = 23, + [68518] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197342,47 +197464,47 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(1584), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2756), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4836), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4838), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4840), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4844), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(958), 1, sym__expr_unary_minus, - STATE(2279), 1, + STATE(2278), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2626), 1, sym__where_predicate_lhs, - STATE(2649), 1, + STATE(2770), 1, sym__binary_predicate_parenthesized, - STATE(2650), 1, + STATE(2771), 1, sym_where_predicate, - STATE(3065), 1, + STATE(3043), 1, aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1914), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2223), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2743), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68644] = 23, + [68594] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197395,47 +197517,47 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(1584), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2756), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4836), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4838), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4840), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4844), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(958), 1, sym__expr_unary_minus, - STATE(2280), 1, + STATE(2279), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2626), 1, sym__where_predicate_lhs, - STATE(2654), 1, + STATE(2780), 1, sym__binary_predicate_parenthesized, - STATE(2655), 1, + STATE(2781), 1, sym_where_predicate, - STATE(3065), 1, + STATE(3043), 1, aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1914), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2223), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2743), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68720] = 23, + [68670] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197448,47 +197570,47 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(1584), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2756), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, - sym__newline, - ACTIONS(4795), 1, + ACTIONS(4838), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4840), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4842), 1, + anon_sym_LBRACE, + ACTIONS(4844), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(958), 1, sym__expr_unary_minus, - STATE(2281), 1, + STATE(2280), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2626), 1, sym__where_predicate_lhs, - STATE(2658), 1, - sym__binary_predicate_parenthesized, - STATE(2659), 1, + STATE(2740), 1, + sym__binary_predicate, + STATE(2741), 1, sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, + STATE(3259), 1, + sym_val_closure, + ACTIONS(1914), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2223), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2743), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68796] = 23, + [68746] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197499,73 +197621,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(2764), 1, + ACTIONS(2724), 1, aux_sym_expr_unary_token1, - ACTIONS(4801), 1, + ACTIONS(4844), 1, aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, + ACTIONS(4858), 1, anon_sym_LPAREN, - ACTIONS(4817), 1, + ACTIONS(4860), 1, anon_sym_DOLLAR, - ACTIONS(4819), 1, + ACTIONS(4862), 1, anon_sym_DASH2, - ACTIONS(4821), 1, + ACTIONS(4864), 1, anon_sym_LBRACE, - STATE(1294), 1, + STATE(1279), 1, sym__expr_unary_minus, - STATE(2282), 1, + STATE(2281), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2563), 1, + STATE(2600), 1, sym__where_predicate_lhs, - STATE(2823), 1, + STATE(2922), 1, sym__binary_predicate, - STATE(2827), 1, + STATE(2940), 1, sym_where_predicate, - STATE(3287), 1, + STATE(3388), 1, sym_val_closure, - ACTIONS(2174), 2, + ACTIONS(2172), 2, anon_sym_true, anon_sym_false, - STATE(2221), 2, + STATE(2228), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2831), 2, + STATE(2942), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68872] = 11, + [68822] = 11, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1588), 1, anon_sym_LPAREN2, - ACTIONS(1615), 1, + ACTIONS(1598), 1, sym__unquoted_pattern, - ACTIONS(2878), 1, + ACTIONS(2910), 1, anon_sym_DOLLAR, - ACTIONS(4823), 1, + ACTIONS(4866), 1, anon_sym_DOT, - STATE(2283), 1, + STATE(2282), 1, sym_comment, - STATE(2409), 1, + STATE(2453), 1, sym__immediate_decimal, - ACTIONS(4825), 2, + ACTIONS(4868), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4827), 2, + ACTIONS(4870), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2503), 2, + STATE(2563), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1596), 16, + ACTIONS(1582), 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, + [68874] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1490), 1, + anon_sym_DOT_DOT2, + ACTIONS(4856), 1, + anon_sym_DOT2, + STATE(435), 1, + sym_path, + STATE(2283), 1, + sym_comment, + STATE(2284), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1492), 23, + anon_sym_if, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [68918] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1494), 1, + anon_sym_DOT_DOT2, + ACTIONS(4872), 1, + anon_sym_DOT2, + STATE(435), 1, + sym_path, + STATE(2284), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1496), 23, + anon_sym_if, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [68960] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1657), 1, + anon_sym_DOT_DOT2, + ACTIONS(4856), 1, + anon_sym_DOT2, + STATE(435), 1, + sym_path, + STATE(460), 1, + sym_cell_path, + STATE(2283), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2285), 1, + sym_comment, + ACTIONS(1655), 22, + anon_sym_if, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [69006] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1663), 1, + anon_sym_DOT_DOT2, + ACTIONS(4856), 1, + anon_sym_DOT2, + STATE(435), 1, + sym_path, + STATE(462), 1, + sym_cell_path, + STATE(2283), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2286), 1, + sym_comment, + ACTIONS(1661), 22, + anon_sym_if, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -197578,11 +197844,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_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [68924] = 23, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [69052] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197595,47 +197866,47 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(1584), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2756), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4836), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4838), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4840), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4844), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(958), 1, sym__expr_unary_minus, - STATE(2284), 1, - sym_comment, - STATE(2288), 1, + STATE(2278), 1, aux_sym__repeat_newline, - STATE(2370), 1, + STATE(2287), 1, + sym_comment, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2626), 1, sym__where_predicate_lhs, - STATE(2730), 1, + STATE(2826), 1, sym__binary_predicate_parenthesized, - STATE(2731), 1, + STATE(2858), 1, sym_where_predicate, - ACTIONS(1937), 2, + ACTIONS(1914), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2223), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2743), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69000] = 23, + [69128] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197648,47 +197919,47 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(1584), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2756), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4836), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4838), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4840), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4844), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(958), 1, sym__expr_unary_minus, - STATE(2285), 1, - sym_comment, - STATE(2294), 1, + STATE(2265), 1, aux_sym__repeat_newline, - STATE(2370), 1, + STATE(2288), 1, + sym_comment, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2626), 1, sym__where_predicate_lhs, - STATE(2732), 1, - sym__binary_predicate_parenthesized, - STATE(2740), 1, + STATE(2728), 1, sym_where_predicate, - ACTIONS(1937), 2, + STATE(2763), 1, + sym__binary_predicate_parenthesized, + ACTIONS(1914), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2223), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2743), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69076] = 23, + [69204] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197701,47 +197972,47 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(1584), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2756), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4836), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4838), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4840), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4844), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(958), 1, sym__expr_unary_minus, - STATE(2266), 1, + STATE(2272), 1, aux_sym__repeat_newline, - STATE(2286), 1, + STATE(2289), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2626), 1, sym__where_predicate_lhs, - STATE(2741), 1, + STATE(2788), 1, sym__binary_predicate_parenthesized, - STATE(2742), 1, + STATE(2789), 1, sym_where_predicate, - ACTIONS(1937), 2, + ACTIONS(1914), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2223), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2743), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69152] = 23, + [69280] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197754,47 +198025,47 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(1584), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2756), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4836), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4838), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4840), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4844), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(958), 1, sym__expr_unary_minus, - STATE(2272), 1, + STATE(2279), 1, aux_sym__repeat_newline, - STATE(2287), 1, + STATE(2290), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2626), 1, sym__where_predicate_lhs, - STATE(2747), 1, - sym__binary_predicate_parenthesized, - STATE(2748), 1, + STATE(2819), 1, sym_where_predicate, - ACTIONS(1937), 2, + STATE(2829), 1, + sym__binary_predicate_parenthesized, + ACTIONS(1914), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2223), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2743), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69228] = 23, + [69356] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197807,47 +198078,47 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(1584), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2756), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4836), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4838), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4840), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4844), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(958), 1, sym__expr_unary_minus, - STATE(2288), 1, + STATE(2291), 1, sym_comment, - STATE(2370), 1, + STATE(2292), 1, + aux_sym__repeat_newline, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2626), 1, sym__where_predicate_lhs, - STATE(2697), 1, + STATE(2775), 1, sym__binary_predicate_parenthesized, - STATE(2698), 1, + STATE(2797), 1, sym_where_predicate, - STATE(3065), 1, - aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1914), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2223), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2743), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69304] = 23, + [69432] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197860,196 +198131,100 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(1584), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2756), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4836), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4838), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4840), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4844), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(958), 1, sym__expr_unary_minus, - STATE(2289), 1, + STATE(2292), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2626), 1, sym__where_predicate_lhs, - STATE(2668), 1, + STATE(2790), 1, sym__binary_predicate_parenthesized, - STATE(2669), 1, + STATE(2791), 1, sym_where_predicate, - STATE(3065), 1, + STATE(3043), 1, aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1914), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2223), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2743), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69380] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1458), 1, - anon_sym_DOT_DOT2, - ACTIONS(4813), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(2290), 1, - sym_comment, - STATE(2291), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1460), 23, - anon_sym_if, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [69424] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1524), 1, - anon_sym_DOT_DOT2, - ACTIONS(4829), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(2291), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 23, - anon_sym_if, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [69466] = 8, + [69508] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1681), 1, - anon_sym_DOT_DOT2, - ACTIONS(4813), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(465), 1, - sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2292), 1, - sym_comment, - ACTIONS(1679), 22, - anon_sym_if, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1584), 1, + anon_sym_DOLLAR, + ACTIONS(2756), 1, + aux_sym_expr_unary_token1, + ACTIONS(4836), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [69512] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1643), 1, - anon_sym_DOT_DOT2, - ACTIONS(4813), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(466), 1, - sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4840), 1, + anon_sym_DASH2, + ACTIONS(4844), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(958), 1, + sym__expr_unary_minus, STATE(2293), 1, sym_comment, - ACTIONS(1641), 22, - anon_sym_if, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [69558] = 23, + STATE(2295), 1, + aux_sym__repeat_newline, + STATE(2417), 1, + sym_val_string, + STATE(2451), 1, + sym__where_predicate_lhs_path_head, + STATE(2626), 1, + sym__where_predicate_lhs, + STATE(2837), 1, + sym__binary_predicate_parenthesized, + STATE(2848), 1, + sym_where_predicate, + ACTIONS(1914), 2, + anon_sym_true, + anon_sym_false, + STATE(2223), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2743), 2, + sym_expr_unary, + sym_val_bool, + STATE(422), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [69584] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -198062,47 +198237,47 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(1584), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2756), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4836), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4838), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4840), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4844), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(958), 1, sym__expr_unary_minus, STATE(2294), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2626), 1, sym__where_predicate_lhs, - STATE(2703), 1, + STATE(2801), 1, sym__binary_predicate_parenthesized, - STATE(2712), 1, + STATE(2802), 1, sym_where_predicate, - STATE(3065), 1, + STATE(3043), 1, aux_sym__repeat_newline, - ACTIONS(1937), 2, + ACTIONS(1914), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2223), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2743), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69634] = 23, + [69660] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -198115,57 +198290,320 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(1584), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2756), 1, aux_sym_expr_unary_token1, - ACTIONS(4793), 1, + ACTIONS(4836), 1, sym__newline, - ACTIONS(4795), 1, + ACTIONS(4838), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4840), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4844), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(958), 1, sym__expr_unary_minus, - STATE(2274), 1, - aux_sym__repeat_newline, STATE(2295), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2626), 1, sym__where_predicate_lhs, - STATE(2751), 1, + STATE(2795), 1, sym__binary_predicate_parenthesized, - STATE(2752), 1, + STATE(2796), 1, sym_where_predicate, - ACTIONS(1937), 2, + STATE(3043), 1, + aux_sym__repeat_newline, + ACTIONS(1914), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2223), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2743), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69710] = 5, + [69736] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1700), 1, - anon_sym_BANG, + ACTIONS(4875), 1, + anon_sym_DOT2, STATE(2296), 1, sym_comment, - ACTIONS(1438), 2, + STATE(2329), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2373), 1, + sym_path, + STATE(2430), 1, + sym_cell_path, + ACTIONS(1864), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(1862), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [69781] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_DOT2, + STATE(2297), 1, + sym_comment, + STATE(2329), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2373), 1, + sym_path, + STATE(2432), 1, + sym_cell_path, + ACTIONS(4879), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4877), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [69826] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1588), 1, + anon_sym_LPAREN2, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2910), 1, + anon_sym_DOLLAR, + STATE(2298), 1, + sym_comment, + STATE(2576), 1, + sym__immediate_decimal, + ACTIONS(4881), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4883), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(846), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1631), 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, + [69875] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1588), 1, + anon_sym_LPAREN2, + ACTIONS(1611), 1, + anon_sym_DOT, + ACTIONS(2910), 1, + anon_sym_DOLLAR, + STATE(2299), 1, + sym_comment, + STATE(2562), 1, + sym__immediate_decimal, + ACTIONS(1592), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(1594), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2561), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1607), 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, + [69924] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_DOT2, + STATE(2300), 1, + sym_comment, + STATE(2329), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2373), 1, + sym_path, + STATE(2423), 1, + sym_cell_path, + ACTIONS(1850), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(1848), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [69969] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_DOT2, + STATE(2301), 1, + sym_comment, + STATE(2329), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2373), 1, + sym_path, + STATE(2401), 1, + sym_cell_path, + ACTIONS(1432), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(1434), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [70014] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4875), 1, + anon_sym_DOT2, + STATE(2302), 1, + sym_comment, + STATE(2329), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2373), 1, + sym_path, + STATE(2413), 1, + sym_cell_path, + ACTIONS(1856), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(1854), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [70059] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1693), 1, + anon_sym_BANG, + STATE(2303), 1, + sym_comment, + ACTIONS(1446), 2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1440), 23, + ACTIONS(1448), 23, anon_sym_if, anon_sym_in, sym__newline, @@ -198189,26 +198627,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [69749] = 10, + [70098] = 10, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1588), 1, anon_sym_LPAREN2, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(2878), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2910), 1, anon_sym_DOLLAR, - STATE(2297), 1, + STATE(2304), 1, sym_comment, - STATE(2502), 1, + STATE(2573), 1, sym__immediate_decimal, - ACTIONS(1592), 2, + ACTIONS(4881), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1594), 2, + ACTIONS(4883), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2501), 2, + STATE(809), 2, sym__expr_parenthesized_immediate, sym_val_variable, ACTIONS(1582), 16, @@ -198228,31 +198666,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [69798] = 11, + [70147] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1598), 1, sym__unquoted_pattern, - ACTIONS(1651), 1, + ACTIONS(1673), 1, anon_sym_LPAREN2, - ACTIONS(4832), 1, + ACTIONS(4885), 1, anon_sym_DOLLAR, - ACTIONS(4834), 1, + ACTIONS(4887), 1, anon_sym_DOT, - STATE(2298), 1, + STATE(2305), 1, sym_comment, - STATE(2436), 1, + STATE(2509), 1, sym__immediate_decimal, - ACTIONS(4836), 2, + ACTIONS(4889), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4838), 2, + ACTIONS(4891), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2580), 2, + STATE(2629), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1596), 15, + ACTIONS(1582), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -198268,29 +198706,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [69849] = 10, + [70198] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, + ACTIONS(4893), 1, + anon_sym_QMARK2, + ACTIONS(4895), 1, + anon_sym_BANG, + STATE(2306), 1, + sym_comment, + STATE(2384), 1, + sym__path_suffix, + ACTIONS(1438), 4, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__unquoted_in_record_token1, + ACTIONS(1440), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [70241] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4897), 1, + anon_sym_DOT2, + STATE(2373), 1, + sym_path, + STATE(2307), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1494), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(1496), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [70281] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1584), 1, anon_sym_DOLLAR, - STATE(2299), 1, + ACTIONS(2756), 1, + aux_sym_expr_unary_token1, + ACTIONS(4838), 1, + anon_sym_LPAREN, + ACTIONS(4840), 1, + anon_sym_DASH2, + ACTIONS(4844), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(958), 1, + sym__expr_unary_minus, + STATE(2308), 1, sym_comment, - STATE(2533), 1, - sym__immediate_decimal, - ACTIONS(4840), 2, + STATE(2417), 1, + sym_val_string, + STATE(2451), 1, + sym__where_predicate_lhs_path_head, + STATE(2626), 1, + sym__where_predicate_lhs, + STATE(2767), 1, + sym__binary_predicate, + STATE(2768), 1, + sym_where_predicate, + ACTIONS(1914), 2, + anon_sym_true, + anon_sym_false, + STATE(2223), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2743), 2, + sym_expr_unary, + sym_val_bool, + STATE(422), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [70351] = 13, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1582), 1, + sym__space, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(3261), 1, + anon_sym_LPAREN2, + ACTIONS(3659), 1, + anon_sym_DOLLAR, + ACTIONS(4900), 1, + anon_sym_DOT, + ACTIONS(4902), 1, aux_sym__immediate_decimal_token1, + ACTIONS(4904), 1, aux_sym__immediate_decimal_token2, - ACTIONS(4842), 2, + STATE(2309), 1, + sym_comment, + STATE(2547), 1, + sym__immediate_decimal, + ACTIONS(4906), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(723), 2, + STATE(2676), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1596), 16, + ACTIONS(1586), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198304,71 +198866,125 @@ 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, - [69898] = 10, + [70405] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2310), 1, + sym_comment, + ACTIONS(1505), 4, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__unquoted_in_record_token1, + ACTIONS(1507), 21, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [70441] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2311), 1, + sym_comment, + ACTIONS(1509), 4, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__unquoted_in_record_token1, + ACTIONS(1511), 21, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [70477] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(2300), 1, + STATE(2312), 1, sym_comment, - STATE(2535), 1, - sym__immediate_decimal, - ACTIONS(4840), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4842), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(742), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1631), 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, - [69947] = 10, + ACTIONS(1458), 4, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__unquoted_in_record_token1, + ACTIONS(1460), 21, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [70513] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1598), 1, sym__unquoted_pattern, - ACTIONS(1651), 1, + ACTIONS(1673), 1, anon_sym_LPAREN2, - ACTIONS(4832), 1, + ACTIONS(4885), 1, anon_sym_DOLLAR, - STATE(2301), 1, + STATE(2313), 1, sym_comment, - STATE(2603), 1, + STATE(2666), 1, sym__immediate_decimal, - ACTIONS(4844), 2, + ACTIONS(4908), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4846), 2, + ACTIONS(4910), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1311), 2, + STATE(1263), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1596), 15, + ACTIONS(1582), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -198384,124 +199000,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [69995] = 21, + [70561] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, + STATE(2314), 1, + sym_comment, + ACTIONS(1513), 4, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__unquoted_in_record_token1, + ACTIONS(1515), 21, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(199), 1, anon_sym_SQUOTE, - ACTIONS(201), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(2764), 1, - aux_sym_expr_unary_token1, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, - anon_sym_LPAREN, - ACTIONS(4817), 1, - anon_sym_DOLLAR, - ACTIONS(4819), 1, - anon_sym_DASH2, - STATE(1294), 1, - sym__expr_unary_minus, - STATE(2302), 1, + anon_sym_QMARK2, + anon_sym_BANG, + [70597] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2315), 1, sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2563), 1, - sym__where_predicate_lhs, - STATE(2854), 1, - sym__binary_predicate, - STATE(2855), 1, - sym_where_predicate, - ACTIONS(2174), 2, + ACTIONS(1517), 4, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__unquoted_in_record_token1, + ACTIONS(1519), 21, + sym_raw_string_begin, anon_sym_true, anon_sym_false, - STATE(2221), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2831), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70065] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(199), 1, anon_sym_SQUOTE, - ACTIONS(201), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(2764), 1, - aux_sym_expr_unary_token1, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, - anon_sym_LPAREN, - ACTIONS(4817), 1, - anon_sym_DOLLAR, - ACTIONS(4819), 1, - anon_sym_DASH2, - STATE(1294), 1, - sym__expr_unary_minus, - STATE(2303), 1, + anon_sym_QMARK2, + anon_sym_BANG, + [70633] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2316), 1, sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2563), 1, - sym__where_predicate_lhs, - STATE(2861), 1, - sym__binary_predicate, - STATE(2862), 1, - sym_where_predicate, - ACTIONS(2174), 2, + ACTIONS(1521), 4, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__unquoted_in_record_token1, + ACTIONS(1523), 21, + sym_raw_string_begin, anon_sym_true, anon_sym_false, - STATE(2221), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2831), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70135] = 10, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [70669] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, + ACTIONS(1641), 1, sym__unquoted_pattern, - ACTIONS(1651), 1, + ACTIONS(1673), 1, anon_sym_LPAREN2, - ACTIONS(4832), 1, + ACTIONS(4885), 1, anon_sym_DOLLAR, - STATE(2304), 1, + STATE(2317), 1, sym_comment, - STATE(2618), 1, + STATE(2680), 1, sym__immediate_decimal, - ACTIONS(4844), 2, + ACTIONS(4908), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4846), 2, + ACTIONS(4910), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1343), 2, + STATE(1341), 2, sym__expr_parenthesized_immediate, sym_val_variable, ACTIONS(1631), 15, @@ -198520,76 +199134,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [70183] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, - aux_sym_expr_unary_token1, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, - sym__expr_unary_minus, - STATE(2305), 1, - sym_comment, - STATE(2370), 1, - sym_val_string, - STATE(2389), 1, - sym__where_predicate_lhs_path_head, - STATE(2537), 1, - sym__where_predicate_lhs, - STATE(2798), 1, - sym__binary_predicate, - STATE(2799), 1, - sym_where_predicate, - ACTIONS(1937), 2, - anon_sym_true, - anon_sym_false, - STATE(2217), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2745), 2, - sym_expr_unary, - sym_val_bool, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70253] = 9, + [70717] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1588), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(2910), 1, anon_sym_DOLLAR, - STATE(722), 1, + STATE(807), 1, sym__immediate_decimal, - STATE(2306), 1, + STATE(2318), 1, sym_comment, ACTIONS(1594), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, + ACTIONS(1635), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(721), 2, + STATE(806), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1582), 16, + ACTIONS(1607), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198606,27 +199171,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [70299] = 9, + [70763] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1588), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(2910), 1, anon_sym_DOLLAR, - STATE(737), 1, + STATE(841), 1, sym__immediate_decimal, - STATE(2307), 1, + STATE(2319), 1, sym_comment, ACTIONS(1594), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, + ACTIONS(1635), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(736), 2, + STATE(840), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1667), 16, + ACTIONS(1643), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198643,27 +199208,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [70345] = 9, + [70809] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1588), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(2910), 1, anon_sym_DOLLAR, - STATE(739), 1, + STATE(843), 1, sym__immediate_decimal, - STATE(2308), 1, + STATE(2320), 1, sym_comment, ACTIONS(1594), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, + ACTIONS(1635), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(738), 2, + STATE(842), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1671), 16, + ACTIONS(1647), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198680,27 +199245,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [70391] = 9, + [70855] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1588), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(2910), 1, anon_sym_DOLLAR, - STATE(741), 1, + STATE(845), 1, sym__immediate_decimal, - STATE(2309), 1, + STATE(2321), 1, sym_comment, ACTIONS(1594), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, + ACTIONS(1635), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(740), 2, + STATE(844), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1675), 16, + ACTIONS(1651), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198717,7 +199282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [70437] = 21, + [70901] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -198728,45 +199293,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2724), 1, aux_sym_expr_unary_token1, - ACTIONS(4795), 1, + ACTIONS(4844), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4858), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4860), 1, + anon_sym_DOLLAR, + ACTIONS(4862), 1, anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(1279), 1, sym__expr_unary_minus, - STATE(2310), 1, + STATE(2322), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2600), 1, sym__where_predicate_lhs, - STATE(2800), 1, + STATE(2903), 1, sym__binary_predicate, - STATE(2801), 1, + STATE(2904), 1, sym_where_predicate, - ACTIONS(1937), 2, + ACTIONS(2172), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2228), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2942), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70507] = 21, + [70971] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -198777,45 +199342,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2724), 1, aux_sym_expr_unary_token1, - ACTIONS(4795), 1, + ACTIONS(4844), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4858), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4860), 1, + anon_sym_DOLLAR, + ACTIONS(4862), 1, anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(1279), 1, sym__expr_unary_minus, - STATE(2311), 1, + STATE(2323), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2600), 1, sym__where_predicate_lhs, - STATE(2802), 1, + STATE(2905), 1, sym__binary_predicate, - STATE(2803), 1, + STATE(2906), 1, sym_where_predicate, - ACTIONS(1937), 2, + ACTIONS(2172), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2228), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2942), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70577] = 21, + [71041] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -198826,72 +199391,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(2724), 1, + aux_sym_expr_unary_token1, + ACTIONS(4844), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4858), 1, + anon_sym_LPAREN, + ACTIONS(4860), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(4862), 1, + anon_sym_DASH2, + STATE(1279), 1, + sym__expr_unary_minus, + STATE(2324), 1, + sym_comment, + STATE(2417), 1, + sym_val_string, + STATE(2451), 1, + sym__where_predicate_lhs_path_head, + STATE(2600), 1, + sym__where_predicate_lhs, + STATE(2907), 1, + sym__binary_predicate, + STATE(2908), 1, + sym_where_predicate, + ACTIONS(2172), 2, + anon_sym_true, + anon_sym_false, + STATE(2228), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2942), 2, + sym_expr_unary, + sym_val_bool, + STATE(422), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [71111] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(2724), 1, aux_sym_expr_unary_token1, - ACTIONS(4795), 1, + ACTIONS(4844), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4858), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4860), 1, + anon_sym_DOLLAR, + ACTIONS(4862), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + STATE(1279), 1, + sym__expr_unary_minus, + STATE(2325), 1, + sym_comment, + STATE(2417), 1, + sym_val_string, + STATE(2451), 1, + sym__where_predicate_lhs_path_head, + STATE(2600), 1, + sym__where_predicate_lhs, + STATE(2914), 1, + sym__binary_predicate, + STATE(2915), 1, + sym_where_predicate, + ACTIONS(2172), 2, + anon_sym_true, + anon_sym_false, + STATE(2228), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2942), 2, + sym_expr_unary, + sym_val_bool, + STATE(422), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [71181] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(2724), 1, + aux_sym_expr_unary_token1, + ACTIONS(4844), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + ACTIONS(4858), 1, + anon_sym_LPAREN, + ACTIONS(4860), 1, + anon_sym_DOLLAR, + ACTIONS(4862), 1, + anon_sym_DASH2, + STATE(1279), 1, sym__expr_unary_minus, - STATE(2312), 1, + STATE(2326), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2600), 1, sym__where_predicate_lhs, - STATE(2805), 1, + STATE(2916), 1, sym__binary_predicate, - STATE(2808), 1, + STATE(2917), 1, sym_where_predicate, - ACTIONS(1937), 2, + ACTIONS(2172), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2228), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2942), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70647] = 13, - ACTIONS(103), 1, + [71251] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1596), 1, - sym__space, - ACTIONS(1615), 1, + ACTIONS(4912), 1, + anon_sym_DOT, + ACTIONS(4914), 1, + aux_sym__immediate_decimal_token5, + STATE(2327), 1, + sym_comment, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(3212), 1, + ACTIONS(741), 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(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4848), 1, - anon_sym_DOT, - ACTIONS(4850), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [71291] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4916), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4852), 1, - aux_sym__immediate_decimal_token2, - STATE(2313), 1, + ACTIONS(4918), 1, + aux_sym__immediate_decimal_token5, + STATE(2328), 1, sym_comment, - STATE(2509), 1, - sym__immediate_decimal, - ACTIONS(4854), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2608), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 13, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198905,29 +199587,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [70701] = 10, + 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, + [71331] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(4875), 1, + anon_sym_DOT2, + STATE(2307), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2329), 1, + sym_comment, + STATE(2373), 1, + sym_path, + ACTIONS(1490), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(1492), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [71373] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1673), 1, anon_sym_LPAREN2, - ACTIONS(1687), 1, + ACTIONS(1685), 1, anon_sym_DOT, - ACTIONS(4832), 1, + ACTIONS(4885), 1, anon_sym_DOLLAR, - STATE(2314), 1, + STATE(2330), 1, sym_comment, - STATE(2579), 1, + STATE(2628), 1, sym__immediate_decimal, - ACTIONS(1655), 2, + ACTIONS(1677), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1657), 2, + ACTIONS(1679), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2578), 2, + STATE(2627), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1582), 15, + ACTIONS(1607), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -198943,7 +199668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [70749] = 21, + [71421] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -198954,45 +199679,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2724), 1, aux_sym_expr_unary_token1, - ACTIONS(4795), 1, + ACTIONS(4844), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4858), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4860), 1, + anon_sym_DOLLAR, + ACTIONS(4862), 1, anon_sym_DASH2, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(1279), 1, sym__expr_unary_minus, - STATE(2315), 1, + STATE(2331), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2600), 1, sym__where_predicate_lhs, - STATE(2809), 1, - sym__binary_predicate, - STATE(2810), 1, + STATE(2919), 1, sym_where_predicate, - ACTIONS(1937), 2, + STATE(2965), 1, + sym__binary_predicate, + ACTIONS(2172), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2228), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2942), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70819] = 21, + [71491] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -199005,43 +199730,43 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(1584), 1, anon_sym_DOLLAR, - ACTIONS(2690), 1, + ACTIONS(2756), 1, aux_sym_expr_unary_token1, - ACTIONS(4795), 1, + ACTIONS(4838), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4840), 1, anon_sym_DASH2, - ACTIONS(4801), 1, + ACTIONS(4844), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(945), 1, + STATE(958), 1, sym__expr_unary_minus, - STATE(2316), 1, + STATE(2332), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2537), 1, + STATE(2626), 1, sym__where_predicate_lhs, - STATE(2812), 1, + STATE(2755), 1, sym__binary_predicate, - STATE(2813), 1, + STATE(2756), 1, sym_where_predicate, - ACTIONS(1937), 2, + ACTIONS(1914), 2, anon_sym_true, anon_sym_false, - STATE(2217), 2, + STATE(2223), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2745), 2, + STATE(2743), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70889] = 21, + [71561] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -199052,45 +199777,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(2764), 1, + ACTIONS(1584), 1, + anon_sym_DOLLAR, + ACTIONS(2756), 1, aux_sym_expr_unary_token1, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, + ACTIONS(4838), 1, anon_sym_LPAREN, - ACTIONS(4817), 1, - anon_sym_DOLLAR, - ACTIONS(4819), 1, + ACTIONS(4840), 1, anon_sym_DASH2, - STATE(1294), 1, + ACTIONS(4844), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(958), 1, sym__expr_unary_minus, - STATE(2317), 1, + STATE(2333), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2563), 1, + STATE(2626), 1, sym__where_predicate_lhs, - STATE(2864), 1, + STATE(2757), 1, sym__binary_predicate, - STATE(2865), 1, + STATE(2758), 1, sym_where_predicate, - ACTIONS(2174), 2, + ACTIONS(1914), 2, anon_sym_true, anon_sym_false, - STATE(2221), 2, + STATE(2223), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2831), 2, + STATE(2743), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70959] = 21, + [71631] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -199101,45 +199826,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(2764), 1, + ACTIONS(1584), 1, + anon_sym_DOLLAR, + ACTIONS(2756), 1, aux_sym_expr_unary_token1, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, + ACTIONS(4838), 1, anon_sym_LPAREN, - ACTIONS(4817), 1, - anon_sym_DOLLAR, - ACTIONS(4819), 1, + ACTIONS(4840), 1, anon_sym_DASH2, - STATE(1294), 1, + ACTIONS(4844), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(958), 1, sym__expr_unary_minus, - STATE(2318), 1, + STATE(2334), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2563), 1, + STATE(2626), 1, sym__where_predicate_lhs, - STATE(2890), 1, - sym_where_predicate, - STATE(2915), 1, + STATE(2759), 1, sym__binary_predicate, - ACTIONS(2174), 2, + STATE(2760), 1, + sym_where_predicate, + ACTIONS(1914), 2, anon_sym_true, anon_sym_false, - STATE(2221), 2, + STATE(2223), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2831), 2, + STATE(2743), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [71029] = 21, + [71701] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -199150,45 +199875,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(2764), 1, + ACTIONS(1584), 1, + anon_sym_DOLLAR, + ACTIONS(2756), 1, aux_sym_expr_unary_token1, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, + ACTIONS(4838), 1, anon_sym_LPAREN, - ACTIONS(4817), 1, - anon_sym_DOLLAR, - ACTIONS(4819), 1, + ACTIONS(4840), 1, anon_sym_DASH2, - STATE(1294), 1, + ACTIONS(4844), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(958), 1, sym__expr_unary_minus, - STATE(2319), 1, + STATE(2335), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2563), 1, + STATE(2626), 1, sym__where_predicate_lhs, - STATE(2856), 1, + STATE(2761), 1, sym__binary_predicate, - STATE(2858), 1, + STATE(2764), 1, sym_where_predicate, - ACTIONS(2174), 2, + ACTIONS(1914), 2, anon_sym_true, anon_sym_false, - STATE(2221), 2, + STATE(2223), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2831), 2, + STATE(2743), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [71099] = 21, + [71771] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -199199,52 +199924,330 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(2764), 1, + ACTIONS(1584), 1, + anon_sym_DOLLAR, + ACTIONS(2756), 1, aux_sym_expr_unary_token1, - ACTIONS(4801), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4815), 1, + ACTIONS(4838), 1, anon_sym_LPAREN, - ACTIONS(4817), 1, - anon_sym_DOLLAR, - ACTIONS(4819), 1, + ACTIONS(4840), 1, anon_sym_DASH2, - STATE(1294), 1, + ACTIONS(4844), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(958), 1, sym__expr_unary_minus, - STATE(2320), 1, + STATE(2336), 1, sym_comment, - STATE(2370), 1, + STATE(2417), 1, sym_val_string, - STATE(2389), 1, + STATE(2451), 1, sym__where_predicate_lhs_path_head, - STATE(2563), 1, + STATE(2626), 1, sym__where_predicate_lhs, - STATE(2859), 1, + STATE(2765), 1, sym__binary_predicate, - STATE(2860), 1, + STATE(2766), 1, sym_where_predicate, - ACTIONS(2174), 2, + ACTIONS(1914), 2, anon_sym_true, anon_sym_false, - STATE(2221), 2, + STATE(2223), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2831), 2, + STATE(2743), 2, sym_expr_unary, sym_val_bool, - STATE(415), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [71169] = 6, + [71841] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4856), 1, + ACTIONS(4922), 1, + anon_sym_AT2, + STATE(2337), 1, + sym_comment, + STATE(2436), 1, + sym_param_completer, + ACTIONS(4924), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4920), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [71880] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1631), 1, + sym__space, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(3261), 1, + anon_sym_LPAREN2, + ACTIONS(3659), 1, + anon_sym_DOLLAR, + ACTIONS(4926), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4928), 1, + aux_sym__immediate_decimal_token2, + STATE(2338), 1, + sym_comment, + STATE(2753), 1, + sym__immediate_decimal, + ACTIONS(4930), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3005), 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, + [71931] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4934), 1, + anon_sym_COLON, + STATE(2339), 1, + sym_comment, + STATE(2421), 1, + sym__collection_annotation, + ACTIONS(4936), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4932), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [71970] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4938), 1, anon_sym_DOT, - ACTIONS(4858), 1, + ACTIONS(4940), 1, aux_sym__immediate_decimal_token5, - STATE(2321), 1, + STATE(2340), 1, + sym_comment, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 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, + [72009] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4942), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4944), 1, + aux_sym__immediate_decimal_token5, + STATE(2341), 1, + sym_comment, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 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, + [72048] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4946), 1, + anon_sym_QMARK2, + STATE(2342), 1, + sym_comment, + ACTIONS(1446), 4, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__unquoted_in_record_token1, + ACTIONS(1448), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [72085] = 13, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(3309), 1, + anon_sym_LPAREN2, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + ACTIONS(4948), 1, + anon_sym_DOT, + ACTIONS(4950), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4952), 1, + aux_sym__immediate_decimal_token2, + STATE(2343), 1, + sym_comment, + STATE(2599), 1, + sym__immediate_decimal, + ACTIONS(1582), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4954), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2835), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1586), 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, + [72138] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1756), 1, + anon_sym_LPAREN2, + ACTIONS(1766), 1, + sym__unquoted_pattern, + ACTIONS(4956), 1, + anon_sym_DOT_DOT2, + ACTIONS(4960), 1, + sym_filesize_unit, + ACTIONS(4962), 1, + sym_duration_unit, + STATE(2344), 1, + sym_comment, + STATE(4726), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4958), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(890), 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, + [72185] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4914), 1, + aux_sym__immediate_decimal_token5, + STATE(2345), 1, sym_comment, ACTIONS(739), 2, anon_sym_DOT_DOT2, @@ -199271,19 +200274,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [71209] = 6, + [72222] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4964), 1, + aux_sym__immediate_decimal_token5, + STATE(2346), 1, + sym_comment, + ACTIONS(771), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(773), 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, + [72259] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1607), 1, + sym__space, + ACTIONS(3261), 1, + anon_sym_LPAREN2, + ACTIONS(3659), 1, + anon_sym_DOLLAR, + ACTIONS(4902), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4904), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(4966), 1, + anon_sym_DOT, + STATE(2347), 1, + sym_comment, + STATE(2675), 1, + sym__immediate_decimal, + ACTIONS(4906), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2674), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1609), 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, + [72310] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4934), 1, + anon_sym_COLON, + STATE(2348), 1, + sym_comment, + STATE(2433), 1, + sym__collection_annotation, + ACTIONS(4970), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4968), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [72349] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1673), 1, + anon_sym_LPAREN2, + ACTIONS(4885), 1, + anon_sym_DOLLAR, + STATE(1330), 1, + sym__immediate_decimal, + STATE(2349), 1, + sym_comment, + ACTIONS(1679), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1710), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1328), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1607), 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, + [72394] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4860), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4862), 1, - aux_sym__immediate_decimal_token5, - STATE(2322), 1, + ACTIONS(1673), 1, + anon_sym_LPAREN2, + ACTIONS(4885), 1, + anon_sym_DOLLAR, + STATE(1336), 1, + sym__immediate_decimal, + STATE(2350), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 21, + ACTIONS(1679), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1710), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1335), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1643), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199295,37 +200447,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_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, - [71249] = 9, + [72439] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1673), 1, anon_sym_LPAREN2, - ACTIONS(4832), 1, + ACTIONS(4885), 1, anon_sym_DOLLAR, - STATE(1342), 1, + STATE(1338), 1, sym__immediate_decimal, - STATE(2323), 1, + STATE(2351), 1, sym_comment, - ACTIONS(1657), 2, + ACTIONS(1679), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, + ACTIONS(1710), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1341), 2, + STATE(1337), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1675), 15, + ACTIONS(1647), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -199341,17 +200486,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71294] = 5, + [72484] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4864), 1, - aux_sym__immediate_decimal_token5, - STATE(2324), 1, + ACTIONS(1673), 1, + anon_sym_LPAREN2, + ACTIONS(4885), 1, + anon_sym_DOLLAR, + STATE(1340), 1, + sym__immediate_decimal, + STATE(2352), 1, sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 21, + ACTIONS(1679), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1710), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1339), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1651), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199363,39 +200519,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [71331] = 12, + [72529] = 12, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1582), 1, sym__space, - ACTIONS(3212), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(3261), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(3659), 1, anon_sym_DOLLAR, - ACTIONS(4850), 1, + ACTIONS(4926), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4852), 1, + ACTIONS(4928), 1, aux_sym__immediate_decimal_token2, - ACTIONS(4866), 1, - anon_sym_DOT, - STATE(2325), 1, + STATE(2353), 1, sym_comment, - STATE(2607), 1, + STATE(2736), 1, sym__immediate_decimal, - ACTIONS(4854), 2, + ACTIONS(4930), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2606), 2, + STATE(3097), 2, sym__expr_parenthesized_immediate, sym_val_variable, ACTIONS(1586), 13, @@ -199412,35 +200561,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [71382] = 13, + [72580] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4946), 1, + anon_sym_BANG, + STATE(2354), 1, + sym_comment, + ACTIONS(1446), 4, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__unquoted_in_record_token1, + ACTIONS(1448), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [72617] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4974), 1, + anon_sym_LT, + STATE(2355), 1, + sym_comment, + ACTIONS(4976), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4972), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [72654] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4978), 1, + anon_sym_LT, + STATE(2356), 1, + sym_comment, + ACTIONS(4976), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4972), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [72691] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2357), 1, + sym_comment, + ACTIONS(1509), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(1511), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [72725] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1641), 1, sym__unquoted_pattern, - ACTIONS(3251), 1, + ACTIONS(3309), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR, - ACTIONS(4868), 1, - anon_sym_DOT, - ACTIONS(4870), 1, + ACTIONS(4980), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4872), 1, + ACTIONS(4982), 1, aux_sym__immediate_decimal_token2, - STATE(2326), 1, + STATE(2358), 1, sym_comment, - STATE(2560), 1, + STATE(2931), 1, sym__immediate_decimal, - ACTIONS(1596), 2, + ACTIONS(1631), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4874), 2, + ACTIONS(4984), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2706), 2, + STATE(3227), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 11, + ACTIONS(1633), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199452,19 +200725,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [71435] = 6, + [72775] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4876), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4878), 1, + STATE(2359), 1, + sym_comment, + ACTIONS(4988), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4986), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [72809] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2360), 1, + sym_comment, + ACTIONS(1521), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(1523), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [72843] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4990), 1, aux_sym__immediate_decimal_token5, - STATE(2327), 1, + STATE(2361), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(771), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 20, + ACTIONS(773), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -199485,65 +200816,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [71474] = 6, - ACTIONS(3), 1, + [72879] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4880), 1, + ACTIONS(4992), 1, anon_sym_DOT, - ACTIONS(4882), 1, + ACTIONS(4994), 1, aux_sym__immediate_decimal_token5, - STATE(2328), 1, + STATE(2362), 1, sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 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, + ACTIONS(741), 6, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [71513] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1631), 1, - sym__space, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4884), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4886), 1, - aux_sym__immediate_decimal_token2, - STATE(2329), 1, - sym_comment, - STATE(2713), 1, - sym__immediate_decimal, - ACTIONS(4888), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3013), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 13, + ACTIONS(739), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199557,32 +200846,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [71564] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1596), 1, - sym__space, - ACTIONS(1615), 1, + anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4884), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4886), 1, - aux_sym__immediate_decimal_token2, - STATE(2330), 1, + [72917] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2363), 1, sym_comment, - STATE(2708), 1, - sym__immediate_decimal, - ACTIONS(4888), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2982), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1598), 13, + ACTIONS(1458), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(1460), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [72951] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4996), 1, + anon_sym_DOT, + ACTIONS(4998), 1, + aux_sym__immediate_decimal_token5, + STATE(2364), 1, + sym_comment, + ACTIONS(1730), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1728), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199596,27 +200904,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [71615] = 10, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [72989] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2365), 1, + sym_comment, + ACTIONS(1513), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(1515), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [73023] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(1756), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1830), 1, sym__unquoted_pattern, - ACTIONS(4890), 1, + ACTIONS(5000), 1, anon_sym_DOT_DOT2, - ACTIONS(4894), 1, + ACTIONS(5004), 1, sym_filesize_unit, - ACTIONS(4896), 1, + ACTIONS(5006), 1, sym_duration_unit, - STATE(2331), 1, + STATE(2366), 1, sym_comment, - STATE(4633), 1, + STATE(4757), 1, sym__expr_parenthesized_immediate, - ACTIONS(4892), 2, + ACTIONS(5002), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(968), 16, + ACTIONS(890), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199628,69 +200973,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71662] = 9, + [73069] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - ACTIONS(4832), 1, - anon_sym_DOLLAR, - STATE(1337), 1, - sym__immediate_decimal, - STATE(2332), 1, + STATE(2367), 1, sym_comment, - ACTIONS(1657), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(1336), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1667), 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, - [71707] = 9, + ACTIONS(5010), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5008), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [73103] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, + STATE(2368), 1, + sym_comment, + ACTIONS(1529), 4, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__unquoted_in_record_token1, + ACTIONS(1531), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [73137] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(3309), 1, anon_sym_LPAREN2, - ACTIONS(4832), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR, - STATE(1271), 1, - sym__immediate_decimal, - STATE(2333), 1, + ACTIONS(4980), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4982), 1, + aux_sym__immediate_decimal_token2, + STATE(2369), 1, sym_comment, - ACTIONS(1657), 2, + STATE(2926), 1, + sym__immediate_decimal, + ACTIONS(1582), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4984), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(1269), 2, + STATE(3171), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1582), 15, - ts_builtin_sym_end, + ACTIONS(1586), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199702,56 +201074,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_and2, - anon_sym_xor2, - anon_sym_or2, - [71752] = 9, + [73187] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - ACTIONS(4832), 1, - anon_sym_DOLLAR, - STATE(1340), 1, - sym__immediate_decimal, - STATE(2334), 1, + STATE(2370), 1, sym_comment, - ACTIONS(1657), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(1339), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1671), 15, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - [71797] = 5, + ACTIONS(5014), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5012), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [73221] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4858), 1, - aux_sym__immediate_decimal_token5, - STATE(2335), 1, + STATE(2371), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(5018), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5016), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [73255] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2372), 1, + sym_comment, + ACTIONS(747), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 21, + ACTIONS(749), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199773,15 +201164,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [71834] = 4, + [73289] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2336), 1, + STATE(2373), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(1552), 4, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__unquoted_in_record_token1, + ACTIONS(1554), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [73323] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2374), 1, + sym_comment, + ACTIONS(1517), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(1519), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [73357] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2375), 1, + sym_comment, + ACTIONS(771), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 21, + ACTIONS(773), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199803,19 +201254,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [71868] = 6, + [73391] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4898), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4900), 1, - aux_sym__immediate_decimal_token5, - STATE(2337), 1, + STATE(2376), 1, sym_comment, - ACTIONS(1728), 2, + ACTIONS(874), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 19, + ACTIONS(876), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199835,28 +201282,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [71906] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(1820), 1, - sym__unquoted_pattern, - ACTIONS(4902), 1, - anon_sym_DOT_DOT2, - ACTIONS(4906), 1, sym_filesize_unit, - ACTIONS(4908), 1, sym_duration_unit, - STATE(2338), 1, + [73425] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5020), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5022), 1, + aux_sym__immediate_decimal_token5, + STATE(2377), 1, sym_comment, - STATE(4753), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4904), 2, + ACTIONS(749), 6, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(968), 15, - ts_builtin_sym_end, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(747), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199868,18 +201312,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, - [71952] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [73463] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2339), 1, + ACTIONS(5024), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5026), 1, + aux_sym__immediate_decimal_token5, + STATE(2378), 1, sym_comment, - ACTIONS(849), 2, + ACTIONS(1740), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(851), 21, + ACTIONS(1738), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199899,70 +201348,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [71986] = 12, - ACTIONS(103), 1, + [73501] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3251), 1, - anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4870), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4872), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(4910), 1, - anon_sym_DOT, - STATE(2340), 1, + STATE(2379), 1, sym_comment, - STATE(2705), 1, - sym__immediate_decimal, - ACTIONS(1582), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4874), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2704), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1586), 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, - [72036] = 11, + ACTIONS(5030), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5028), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [73535] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2380), 1, + sym_comment, + ACTIONS(5034), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5032), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [73569] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2381), 1, + sym_comment, + ACTIONS(5038), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5036), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [73603] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2382), 1, + sym_comment, + ACTIONS(5042), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5040), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [73637] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2383), 1, + sym_comment, + ACTIONS(5046), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5044), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [73671] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2384), 1, + sym_comment, + ACTIONS(1525), 4, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__unquoted_in_record_token1, + ACTIONS(1527), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [73705] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1582), 1, + ACTIONS(1607), 1, sym__space, - ACTIONS(3212), 1, + ACTIONS(3261), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(3659), 1, anon_sym_DOLLAR, - ACTIONS(4912), 1, + ACTIONS(5048), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4914), 1, + ACTIONS(5050), 1, aux_sym__immediate_decimal_token2, - STATE(2341), 1, + STATE(2385), 1, sym_comment, - STATE(2981), 1, + STATE(3078), 1, sym__immediate_decimal, - ACTIONS(4854), 2, + ACTIONS(4906), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2979), 2, + STATE(3114), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1586), 13, + ACTIONS(1609), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199976,15 +201565,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [72084] = 4, + [73753] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2342), 1, + ACTIONS(5052), 1, + anon_sym_DOT2, + STATE(435), 1, + sym_path, + STATE(811), 1, + sym_cell_path, + STATE(2283), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2386), 1, sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 21, + ACTIONS(1882), 19, + anon_sym_if, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199997,39 +201592,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [72118] = 11, + [73793] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1667), 1, + ACTIONS(1643), 1, sym__space, - ACTIONS(3212), 1, + ACTIONS(3261), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(3659), 1, anon_sym_DOLLAR, - ACTIONS(4912), 1, + ACTIONS(5048), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4914), 1, + ACTIONS(5050), 1, aux_sym__immediate_decimal_token2, - STATE(2343), 1, + STATE(2387), 1, sym_comment, - STATE(3008), 1, + STATE(3049), 1, sym__immediate_decimal, - ACTIONS(4854), 2, + ACTIONS(4906), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3006), 2, + STATE(3103), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1669), 13, + ACTIONS(1645), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200043,30 +201635,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [72166] = 11, + [73841] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1671), 1, + ACTIONS(1647), 1, sym__space, - ACTIONS(3212), 1, + ACTIONS(3261), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(3659), 1, anon_sym_DOLLAR, - ACTIONS(4912), 1, + ACTIONS(5048), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4914), 1, + ACTIONS(5050), 1, aux_sym__immediate_decimal_token2, - STATE(2344), 1, + STATE(2388), 1, sym_comment, - STATE(3010), 1, + STATE(2986), 1, sym__immediate_decimal, - ACTIONS(4854), 2, + ACTIONS(4906), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3074), 2, + STATE(3095), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1673), 13, + ACTIONS(1649), 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, + [73889] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5052), 1, + anon_sym_DOT2, + STATE(435), 1, + sym_path, + STATE(839), 1, + sym_cell_path, + STATE(2283), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2389), 1, + sym_comment, + ACTIONS(1838), 19, + anon_sym_if, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200079,31 +201699,121 @@ static 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, - [72214] = 11, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [73929] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1675), 1, + ACTIONS(1651), 1, sym__space, - ACTIONS(3212), 1, + ACTIONS(3261), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(3659), 1, anon_sym_DOLLAR, - ACTIONS(4912), 1, + ACTIONS(5048), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4914), 1, + ACTIONS(5050), 1, aux_sym__immediate_decimal_token2, - STATE(2345), 1, + STATE(2390), 1, sym_comment, - STATE(3012), 1, + STATE(3002), 1, sym__immediate_decimal, - ACTIONS(4854), 2, + ACTIONS(4906), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3011), 2, + STATE(2996), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1677), 13, + ACTIONS(1653), 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, + [73977] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2391), 1, + sym_comment, + ACTIONS(5056), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5054), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [74011] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2392), 1, + sym_comment, + ACTIONS(4976), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4972), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [74045] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4940), 1, + aux_sym__immediate_decimal_token5, + STATE(2393), 1, + sym_comment, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200115,35 +201825,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [72262] = 12, + 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, + [74081] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3251), 1, + ACTIONS(3309), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR, - ACTIONS(4916), 1, + ACTIONS(4950), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4918), 1, + ACTIONS(4952), 1, aux_sym__immediate_decimal_token2, - STATE(2346), 1, + ACTIONS(5058), 1, + anon_sym_DOT, + STATE(2394), 1, sym_comment, - STATE(2875), 1, + STATE(2834), 1, sym__immediate_decimal, - ACTIONS(1596), 2, + ACTIONS(1607), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4920), 2, + ACTIONS(4954), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3199), 2, + STATE(2833), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1598), 11, + ACTIONS(1609), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200155,50 +201871,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, - [72312] = 5, + [74131] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4922), 1, - aux_sym__immediate_decimal_token5, - STATE(2347), 1, + STATE(2395), 1, sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 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, - [72348] = 6, + ACTIONS(1505), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(1507), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [74165] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4924), 1, - anon_sym_DOT, - ACTIONS(4926), 1, + STATE(2396), 1, + sym_comment, + ACTIONS(5062), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5060), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [74198] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2397), 1, + sym_comment, + ACTIONS(5066), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5064), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [74231] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5068), 1, aux_sym__immediate_decimal_token5, - STATE(2348), 1, + STATE(2398), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(1808), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 19, + ACTIONS(1806), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200218,56 +201989,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [72386] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4928), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(724), 1, - sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2349), 1, - sym_comment, - ACTIONS(1862), 19, - anon_sym_if, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [72426] = 6, + [74266] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4930), 1, + ACTIONS(5070), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4932), 1, + ACTIONS(5072), 1, aux_sym__immediate_decimal_token5, - STATE(2350), 1, + STATE(2399), 1, sym_comment, - ACTIONS(749), 6, + ACTIONS(749), 7, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(747), 15, + ACTIONS(747), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200279,25 +202018,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [72464] = 7, + [74303] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4928), 1, + STATE(2400), 1, + sym_comment, + ACTIONS(5076), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5074), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [74336] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2401), 1, + sym_comment, + ACTIONS(1572), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(1574), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [74369] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1657), 1, + anon_sym_DOT_DOT2, + ACTIONS(5078), 1, anon_sym_DOT2, - STATE(441), 1, + STATE(712), 1, sym_path, - STATE(735), 1, + STATE(961), 1, sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2351), 1, + STATE(2402), 1, sym_comment, - ACTIONS(1878), 19, - anon_sym_if, + STATE(2447), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1655), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200309,30 +202106,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_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [72504] = 6, - ACTIONS(103), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [74410] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4934), 1, + ACTIONS(5080), 1, anon_sym_DOT, - ACTIONS(4936), 1, + ACTIONS(5082), 1, aux_sym__immediate_decimal_token5, - STATE(2352), 1, + STATE(2403), 1, sym_comment, - ACTIONS(741), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(739), 15, + ACTIONS(1730), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1728), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200344,37 +202136,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_DOT_DOT2, - sym__unquoted_pattern, - [72542] = 12, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [74447] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(3251), 1, + ACTIONS(3309), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR, - ACTIONS(4916), 1, + ACTIONS(5084), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4918), 1, + ACTIONS(5086), 1, aux_sym__immediate_decimal_token2, - STATE(2353), 1, + STATE(2404), 1, sym_comment, - STATE(2894), 1, + STATE(3217), 1, sym__immediate_decimal, - ACTIONS(1631), 2, + ACTIONS(1643), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4920), 2, + ACTIONS(4954), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3138), 2, + STATE(3216), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1633), 11, + ACTIONS(1645), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200386,46 +202178,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [72592] = 5, + [74494] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4882), 1, - aux_sym__immediate_decimal_token5, - STATE(2354), 1, + STATE(2405), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(5090), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5088), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [74527] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5092), 1, + anon_sym_QMARK2, + ACTIONS(5094), 1, + anon_sym_BANG, + STATE(2406), 1, + sym_comment, + STATE(2557), 1, + sym__path_suffix, + ACTIONS(1438), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 20, - ts_builtin_sym_end, + anon_sym_DOT2, + ACTIONS(1440), 16, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, + anon_sym_COLON, + anon_sym_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, - sym_filesize_unit, - sym_duration_unit, - [72628] = 4, + [74566] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2355), 1, + ACTIONS(5096), 1, + anon_sym_QMARK2, + ACTIONS(5098), 1, + anon_sym_BANG, + STATE(754), 1, + sym__path_suffix, + STATE(2407), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(1438), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 20, + anon_sym_DOT2, + ACTIONS(1440), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -200441,36 +202269,18 @@ 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, - [72661] = 11, - ACTIONS(103), 1, + [74605] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3251), 1, - anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4938), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4940), 1, - aux_sym__immediate_decimal_token2, - STATE(2356), 1, + STATE(2408), 1, sym_comment, - STATE(3132), 1, - sym__immediate_decimal, - ACTIONS(1675), 2, + ACTIONS(771), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(773), 20, ts_builtin_sym_end, - sym__space, - ACTIONS(4874), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3125), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1677), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200482,62 +202292,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, - [72708] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4942), 1, - anon_sym_DOT, - ACTIONS(4944), 1, - aux_sym__immediate_decimal_token5, - STATE(2357), 1, - sym_comment, - ACTIONS(741), 7, - ts_builtin_sym_end, - sym__space, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(739), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [72745] = 11, + [74638] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3251), 1, + ACTIONS(3309), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR, - ACTIONS(4938), 1, + ACTIONS(5084), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4940), 1, + ACTIONS(5086), 1, aux_sym__immediate_decimal_token2, - STATE(2358), 1, + STATE(2409), 1, sym_comment, - STATE(3195), 1, + STATE(3170), 1, sym__immediate_decimal, - ACTIONS(1582), 2, + ACTIONS(1607), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4874), 2, + ACTIONS(4954), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3182), 2, + STATE(3169), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1586), 11, + ACTIONS(1609), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200549,49 +202336,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, - [72792] = 7, + [74685] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4946), 1, - anon_sym_QMARK2, - ACTIONS(4948), 1, - anon_sym_BANG, - STATE(784), 1, - sym__path_suffix, - STATE(2359), 1, + STATE(2410), 1, sym_comment, - ACTIONS(1446), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1448), 17, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [72831] = 5, + ACTIONS(5102), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5100), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [74718] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4926), 1, - aux_sym__immediate_decimal_token5, - STATE(2360), 1, + STATE(2411), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(874), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 19, + ACTIONS(876), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200603,36 +202386,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [72866] = 5, - ACTIONS(103), 1, + sym_filesize_unit, + sym_duration_unit, + [74751] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3715), 1, - sym_raw_string_begin, - ACTIONS(4950), 1, - sym__entry_separator, - STATE(2361), 2, + STATE(2412), 1, sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3710), 19, + ACTIONS(5106), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5104), 19, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, anon_sym_GT2, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -200640,31 +202423,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym__unquoted_in_record_token1, - [72901] = 7, - ACTIONS(103), 1, + [74784] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4955), 1, - anon_sym_GT2, - ACTIONS(4957), 1, - sym__entry_separator, - ACTIONS(4959), 1, - sym_raw_string_begin, - STATE(2361), 1, - aux_sym__types_body_repeat2, - STATE(2362), 1, + STATE(2413), 1, sym_comment, - ACTIONS(4953), 18, + ACTIONS(1864), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(1862), 19, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DOT_DOT, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -200672,89 +202452,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym__unquoted_in_record_token1, - [72940] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(4961), 1, - anon_sym_DOT_DOT2, - ACTIONS(4965), 1, - sym_filesize_unit, - ACTIONS(4967), 1, - sym_duration_unit, - ACTIONS(4969), 1, - sym__unquoted_pattern, - STATE(2363), 1, - sym_comment, - STATE(4626), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4963), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(868), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [72987] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1681), 1, - anon_sym_DOT_DOT2, - ACTIONS(4971), 1, - anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(932), 1, - sym_cell_path, - STATE(2364), 1, - sym_comment, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1679), 17, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [73028] = 6, + [74817] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4973), 1, + ACTIONS(5108), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4975), 1, + ACTIONS(5110), 1, aux_sym__immediate_decimal_token5, - STATE(2365), 1, + STATE(2414), 1, sym_comment, - ACTIONS(1728), 2, + ACTIONS(1740), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 18, + ACTIONS(1738), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -200773,17 +202483,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [73065] = 5, + [74854] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4977), 1, + ACTIONS(4998), 1, aux_sym__immediate_decimal_token5, - STATE(2366), 1, + STATE(2415), 1, sym_comment, - ACTIONS(1804), 2, + ACTIONS(1730), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 19, + ACTIONS(1728), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200803,116 +202513,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [73100] = 8, + [74889] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1643), 1, - anon_sym_DOT_DOT2, - ACTIONS(4971), 1, - anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(935), 1, - sym_cell_path, - STATE(2367), 1, - sym_comment, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1641), 17, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [73141] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4979), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4981), 1, - aux_sym__immediate_decimal_token5, - STATE(2368), 1, - sym_comment, - ACTIONS(749), 7, - ts_builtin_sym_end, - sym__space, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_record, + ACTIONS(3103), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(747), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [73178] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4983), 1, + ACTIONS(3845), 1, + anon_sym_DOLLAR, + ACTIONS(5112), 1, anon_sym_DOT, - ACTIONS(4985), 1, - aux_sym__immediate_decimal_token5, - STATE(2369), 1, + ACTIONS(5114), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5116), 1, + aux_sym__immediate_decimal_token2, + STATE(2416), 1, sym_comment, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 18, - ts_builtin_sym_end, + STATE(2635), 1, + sym__immediate_decimal, + ACTIONS(1586), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5118), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2899), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1582), 9, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [73215] = 7, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [74940] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1663), 1, - anon_sym_QMARK2, ACTIONS(1665), 1, + anon_sym_QMARK2, + ACTIONS(1667), 1, anon_sym_BANG, - STATE(2370), 1, + STATE(2417), 1, sym_comment, - STATE(2496), 1, + STATE(2545), 1, sym__path_suffix, - ACTIONS(4989), 2, + ACTIONS(5122), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4987), 17, + ACTIONS(5120), 17, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -200930,21 +202583,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_like2, anon_sym_not_DASHlike2, anon_sym_DOT2, - [73254] = 5, - ACTIONS(103), 1, + [74979] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4936), 1, - aux_sym__immediate_decimal_token5, - STATE(2371), 1, + STATE(2418), 1, sym_comment, - ACTIONS(741), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(739), 15, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200956,34 +202604,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [73289] = 7, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [75012] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4957), 1, - sym__entry_separator, - ACTIONS(4959), 1, - sym_raw_string_begin, - ACTIONS(4991), 1, - anon_sym_GT2, - STATE(2361), 1, - aux_sym__types_body_repeat2, - STATE(2372), 1, + STATE(2419), 1, sym_comment, - ACTIONS(4953), 18, + ACTIONS(5126), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5124), 19, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DOT_DOT, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -200991,31 +202641,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym__unquoted_in_record_token1, - [73328] = 7, - ACTIONS(103), 1, + [75045] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4957), 1, - sym__entry_separator, - ACTIONS(4959), 1, - sym_raw_string_begin, - ACTIONS(4993), 1, - anon_sym_GT2, - STATE(2361), 1, - aux_sym__types_body_repeat2, - STATE(2373), 1, + STATE(2420), 1, sym_comment, - ACTIONS(4953), 18, + ACTIONS(5130), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5128), 19, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DOT_DOT, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -201023,48 +202670,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym__unquoted_in_record_token1, - [73367] = 7, + [75078] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4995), 1, - anon_sym_QMARK2, - ACTIONS(4997), 1, - anon_sym_BANG, - STATE(2374), 1, + STATE(2421), 1, sym_comment, - STATE(2476), 1, - sym__path_suffix, - ACTIONS(1446), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1448), 16, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(5134), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5132), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, anon_sym_COMMA, - anon_sym_DOLLAR, + anon_sym_LF, anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [73406] = 4, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [75111] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2375), 1, - sym_comment, - ACTIONS(771), 2, + ACTIONS(1432), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 20, + ACTIONS(5078), 1, + anon_sym_DOT2, + STATE(434), 1, + sym_cell_path, + STATE(712), 1, + sym_path, + STATE(2422), 1, + sym_comment, + STATE(2447), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1434), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -201080,35 +202730,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, - sym_filesize_unit, - sym_duration_unit, - [73439] = 7, - ACTIONS(103), 1, + [75152] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4957), 1, - sym__entry_separator, - ACTIONS(4959), 1, - sym_raw_string_begin, - ACTIONS(4999), 1, - anon_sym_GT2, - STATE(2361), 1, - aux_sym__types_body_repeat2, - STATE(2376), 1, + STATE(2423), 1, sym_comment, - ACTIONS(4953), 18, + ACTIONS(2616), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(2614), 19, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DOT_DOT, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -201116,32 +202761,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym__unquoted_in_record_token1, - [73478] = 11, + [75185] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3251), 1, + ACTIONS(3309), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR, - ACTIONS(4938), 1, + ACTIONS(5084), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4940), 1, + ACTIONS(5086), 1, aux_sym__immediate_decimal_token2, - STATE(2377), 1, + STATE(2424), 1, sym_comment, - STATE(3111), 1, + STATE(3219), 1, sym__immediate_decimal, - ACTIONS(1667), 2, + ACTIONS(1647), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4874), 2, + ACTIONS(4954), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3110), 2, + STATE(3218), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1669), 11, + ACTIONS(1649), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201153,53 +202797,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, - [73525] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3792), 1, - anon_sym_DOLLAR, - ACTIONS(5001), 1, - anon_sym_DOT, - ACTIONS(5003), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5005), 1, - aux_sym__immediate_decimal_token2, - STATE(2378), 1, - sym_comment, - STATE(2637), 1, - sym__immediate_decimal, - ACTIONS(1598), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5007), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2913), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 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, - [73576] = 4, + [75232] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2379), 1, - sym_comment, - ACTIONS(849), 2, + ACTIONS(1663), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(851), 20, + ACTIONS(5078), 1, + anon_sym_DOT2, + STATE(712), 1, + sym_path, + STATE(945), 1, + sym_cell_path, + STATE(2425), 1, + sym_comment, + STATE(2447), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1661), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -201215,17 +202828,14 @@ 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, - [73609] = 5, + [75273] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5009), 1, + ACTIONS(5136), 1, aux_sym__immediate_decimal_token5, - STATE(2380), 1, + STATE(2426), 1, sym_comment, ACTIONS(773), 6, sym__space, @@ -201250,31 +202860,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [73644] = 11, + [75308] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2427), 1, + sym_comment, + ACTIONS(5140), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5138), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [75341] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3251), 1, + ACTIONS(3309), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR, - ACTIONS(4938), 1, + ACTIONS(5084), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4940), 1, + ACTIONS(5086), 1, aux_sym__immediate_decimal_token2, - STATE(2381), 1, + STATE(2428), 1, sym_comment, - STATE(3121), 1, + STATE(3221), 1, sym__immediate_decimal, - ACTIONS(1671), 2, + ACTIONS(1651), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4874), 2, + ACTIONS(4954), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3112), 2, + STATE(3220), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1673), 11, + ACTIONS(1653), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201286,23 +202925,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, - [73691] = 8, - ACTIONS(3), 1, + [75388] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1432), 1, - anon_sym_DOT_DOT2, - ACTIONS(4971), 1, - anon_sym_DOT2, - STATE(453), 1, - sym_cell_path, - STATE(783), 1, - sym_path, - STATE(2382), 1, + ACTIONS(4994), 1, + aux_sym__immediate_decimal_token5, + STATE(2429), 1, sym_comment, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1434), 17, - ts_builtin_sym_end, + ACTIONS(741), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(739), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201314,62 +202951,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [75423] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2430), 1, + sym_comment, + ACTIONS(2580), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(2578), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [75456] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(890), 1, + sym__space, + ACTIONS(1756), 1, + anon_sym_LPAREN2, + ACTIONS(5142), 1, + anon_sym_DOT_DOT2, + ACTIONS(5146), 1, + sym_filesize_unit, + ACTIONS(5148), 1, + sym_duration_unit, + ACTIONS(5150), 1, + sym__unquoted_pattern, + STATE(2431), 1, + sym_comment, + STATE(4723), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5144), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [73732] = 12, + ACTIONS(793), 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, + [75503] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2432), 1, + sym_comment, + ACTIONS(1850), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(1848), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [75536] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_record, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3792), 1, - anon_sym_DOLLAR, - ACTIONS(5011), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5013), 1, - aux_sym__immediate_decimal_token2, - STATE(2383), 1, + STATE(2433), 1, sym_comment, - STATE(2994), 1, - sym__immediate_decimal, - ACTIONS(1633), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5015), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3221), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1631), 9, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(5154), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5152), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [73780] = 6, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [75569] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5017), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5019), 1, + ACTIONS(5156), 1, + anon_sym_DOT, + ACTIONS(5158), 1, aux_sym__immediate_decimal_token5, - STATE(2384), 1, + STATE(2434), 1, sym_comment, - ACTIONS(1726), 4, + ACTIONS(741), 7, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 15, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(739), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201381,30 +203107,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [73816] = 4, - ACTIONS(103), 1, + [75606] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2385), 1, + STATE(2435), 1, sym_comment, - ACTIONS(3734), 2, + ACTIONS(5162), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5160), 19, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3732), 19, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, anon_sym_GT2, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -201412,20 +203138,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym__unquoted_in_record_token1, - [73848] = 5, + [75639] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5021), 1, - sym__newline, - STATE(2386), 2, + STATE(2436), 1, sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3736), 3, + ACTIONS(5166), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__unquoted_in_record_token1, - ACTIONS(3738), 16, + ACTIONS(5164), 19, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -201433,6 +203155,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -201442,20 +203167,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [73882] = 7, + [75672] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1458), 1, + ACTIONS(1494), 1, anon_sym_DOT_DOT2, - ACTIONS(4971), 1, + ACTIONS(5168), 1, anon_sym_DOT2, - STATE(783), 1, + STATE(712), 1, sym_path, - STATE(2387), 1, + STATE(2437), 2, sym_comment, - STATE(2407), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1460), 17, + ACTIONS(1496), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -201473,24 +203197,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [73920] = 8, - ACTIONS(103), 1, + [75708] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_DOT2, - STATE(2388), 1, + ACTIONS(5082), 1, + aux_sym__immediate_decimal_token5, + STATE(2438), 1, sym_comment, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2615), 1, - sym_cell_path, - ACTIONS(1641), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1643), 14, + ACTIONS(1730), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1728), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201502,49 +203220,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, - [73960] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1856), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(2389), 1, - sym_comment, - STATE(2417), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(5028), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5026), 16, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - [73998] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [75742] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2390), 1, + ACTIONS(5171), 1, + aux_sym__immediate_decimal_token5, + STATE(2439), 1, sym_comment, - ACTIONS(1514), 2, + ACTIONS(1808), 2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1516), 19, + sym__unquoted_pattern, + ACTIONS(1806), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -201560,65 +203252,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [74030] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2391), 1, - sym_comment, - ACTIONS(851), 6, - sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(849), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [74062] = 12, + [75776] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3168), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(3792), 1, + ACTIONS(3845), 1, anon_sym_DOLLAR, - ACTIONS(5003), 1, + ACTIONS(5114), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5005), 1, + ACTIONS(5116), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5030), 1, + ACTIONS(5173), 1, anon_sym_DOT, - STATE(2392), 1, + STATE(2440), 1, sym_comment, - STATE(2909), 1, + STATE(2892), 1, sym__immediate_decimal, - ACTIONS(1586), 2, + ACTIONS(1609), 2, sym_identifier, anon_sym_DASH2, - ACTIONS(5007), 2, + ACTIONS(5118), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2906), 2, + STATE(2891), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1582), 9, + ACTIONS(1607), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -201628,75 +203291,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [74110] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4944), 1, - aux_sym__immediate_decimal_token5, - STATE(2393), 1, - sym_comment, - ACTIONS(741), 7, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(739), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [74144] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_DOT2, - STATE(2394), 1, - sym_comment, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2627), 1, - sym_cell_path, - ACTIONS(1434), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1432), 14, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [74184] = 6, + [75824] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5032), 1, + ACTIONS(5175), 1, anon_sym_DOT, - ACTIONS(5034), 1, + ACTIONS(5177), 1, aux_sym__immediate_decimal_token5, - STATE(2395), 1, + STATE(2441), 1, sym_comment, ACTIONS(739), 6, sym_identifier, @@ -201719,14 +203321,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74220] = 6, + [75860] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5036), 1, + ACTIONS(5179), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5038), 1, + ACTIONS(5181), 1, aux_sym__immediate_decimal_token5, - STATE(2396), 1, + STATE(2442), 1, sym_comment, ACTIONS(747), 6, sym_identifier, @@ -201749,30 +203351,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74256] = 11, - ACTIONS(103), 1, + [75896] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(5040), 1, + STATE(2443), 1, + sym_comment, + ACTIONS(1740), 2, anon_sym_DOT_DOT2, - ACTIONS(5044), 1, - sym_filesize_unit, - ACTIONS(5046), 1, - sym_duration_unit, - ACTIONS(5048), 1, sym__unquoted_pattern, - STATE(2397), 1, - sym_comment, - STATE(4631), 1, - sym__expr_parenthesized_immediate, - ACTIONS(968), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5042), 2, + ACTIONS(1738), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(868), 11, + [75928] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2444), 1, + sym_comment, + ACTIONS(1808), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1806), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201784,15 +203399,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, - [74302] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [75960] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2398), 1, + STATE(2445), 1, sym_comment, - ACTIONS(1728), 2, + ACTIONS(1846), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 19, + ACTIONS(1844), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201812,22 +203435,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74334] = 5, + [75992] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5050), 1, - aux_sym__immediate_decimal_token5, - STATE(2399), 1, + ACTIONS(1756), 1, + anon_sym_LPAREN2, + ACTIONS(5183), 1, + anon_sym_DOT_DOT2, + ACTIONS(5187), 1, + sym_filesize_unit, + ACTIONS(5189), 1, + sym_duration_unit, + ACTIONS(5191), 1, + sym__unquoted_pattern, + STATE(2446), 1, sym_comment, - ACTIONS(773), 7, + STATE(4760), 1, + sym__expr_parenthesized_immediate, + ACTIONS(890), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, + ACTIONS(5185), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(771), 13, + ACTIONS(793), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201839,17 +203470,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [74368] = 4, + [76038] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2400), 1, - sym_comment, - ACTIONS(1804), 2, + ACTIONS(1490), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 19, + ACTIONS(5078), 1, + anon_sym_DOT2, + STATE(712), 1, + sym_path, + STATE(2437), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2447), 1, + sym_comment, + ACTIONS(1492), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201861,23 +203496,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74400] = 4, - ACTIONS(3), 1, + [76076] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2401), 1, + ACTIONS(5158), 1, + aux_sym__immediate_decimal_token5, + STATE(2448), 1, sym_comment, - ACTIONS(1872), 2, + ACTIONS(741), 7, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(739), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1870), 19, + [76110] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5193), 1, + anon_sym_DOT2, + STATE(2449), 1, + sym_comment, + STATE(2504), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2607), 1, + sym_path, + STATE(2687), 1, + sym_cell_path, + ACTIONS(1434), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1432), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201891,52 +203561,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, - [74432] = 6, + anon_sym_DOT_DOT2, + [76150] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4957), 1, - sym__entry_separator, - ACTIONS(4959), 1, - sym_raw_string_begin, - STATE(2361), 1, - aux_sym__types_body_repeat2, - STATE(2402), 1, - sym_comment, - ACTIONS(4953), 18, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym__unquoted_in_record_token1, - [74468] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2403), 1, + ACTIONS(5195), 1, + aux_sym__immediate_decimal_token5, + STATE(2450), 1, sym_comment, - ACTIONS(1474), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1476), 19, + ACTIONS(773), 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(771), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201948,29 +203589,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [74500] = 7, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [76184] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1842), 1, + anon_sym_DOT2, + STATE(435), 1, + sym_path, + STATE(2451), 1, + sym_comment, + STATE(2463), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(5199), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5197), 16, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + [76222] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5052), 1, + ACTIONS(5201), 1, anon_sym_QMARK2, - ACTIONS(5054), 1, + ACTIONS(5203), 1, anon_sym_BANG, - STATE(2404), 1, + STATE(2452), 1, sym_comment, - STATE(2566), 1, + STATE(2619), 1, sym__path_suffix, - ACTIONS(1448), 3, + ACTIONS(1440), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1446), 15, + ACTIONS(1438), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201986,18 +203653,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [74538] = 5, + [76260] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4985), 1, - aux_sym__immediate_decimal_token5, - STATE(2405), 1, - sym_comment, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, + ACTIONS(1956), 1, + anon_sym_LPAREN2, + ACTIONS(1962), 1, sym__unquoted_pattern, - ACTIONS(1736), 18, - ts_builtin_sym_end, + ACTIONS(5205), 1, + anon_sym_DOT_DOT2, + STATE(2453), 1, + sym_comment, + ACTIONS(5207), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1952), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202009,27 +203679,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_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, + [76298] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5193), 1, + anon_sym_DOT2, + STATE(2454), 1, + sym_comment, + STATE(2504), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2607), 1, + sym_path, + STATE(2683), 1, + sym_cell_path, + ACTIONS(1655), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74572] = 7, + ACTIONS(1657), 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, + [76338] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_record, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(5056), 1, + ACTIONS(3845), 1, + anon_sym_DOLLAR, + ACTIONS(5209), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5211), 1, + aux_sym__immediate_decimal_token2, + STATE(2455), 1, + sym_comment, + STATE(3061), 1, + sym__immediate_decimal, + ACTIONS(1586), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5213), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3291), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1582), 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, + [76386] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_record, + ACTIONS(3103), 1, + anon_sym_LPAREN2, + ACTIONS(3845), 1, + anon_sym_DOLLAR, + ACTIONS(5209), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5211), 1, + aux_sym__immediate_decimal_token2, + STATE(2456), 1, + sym_comment, + STATE(3083), 1, + sym__immediate_decimal, + ACTIONS(1633), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5213), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3343), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1631), 9, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [76434] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5215), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5217), 1, + aux_sym__immediate_decimal_token5, + STATE(2457), 1, + sym_comment, + ACTIONS(1738), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1740), 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(2406), 1, + sym__unquoted_pattern, + [76470] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5193), 1, + anon_sym_DOT2, + STATE(2458), 1, sym_comment, - ACTIONS(5058), 2, + STATE(2504), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2607), 1, + sym_path, + STATE(2646), 1, + sym_cell_path, + ACTIONS(1661), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1964), 16, + ACTIONS(1663), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202043,22 +203849,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, - [74610] = 6, + anon_sym_DOT_DOT2, + [76510] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1524), 1, + STATE(2459), 1, + sym_comment, + ACTIONS(1505), 2, anon_sym_DOT_DOT2, - ACTIONS(5060), 1, anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(2407), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 17, + ACTIONS(1507), 19, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -202076,15 +203876,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74646] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + [76542] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2460), 1, + sym_comment, + ACTIONS(749), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(747), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [76574] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2408), 1, + STATE(2461), 1, sym_comment, - ACTIONS(1466), 2, + ACTIONS(1509), 2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1468), 19, + ACTIONS(1511), 19, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -202104,21 +203934,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [74678] = 7, + [76606] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(5063), 1, - anon_sym_DOT_DOT2, - STATE(2409), 1, + STATE(2462), 1, sym_comment, - ACTIONS(5065), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 16, + ACTIONS(1458), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1460), 19, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202130,24 +203955,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [74716] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [76638] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1842), 1, + anon_sym_DOT2, + STATE(423), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(435), 1, + sym_path, + STATE(2463), 1, + sym_comment, + ACTIONS(5221), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5219), 16, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + [76676] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2410), 1, + STATE(2464), 1, sym_comment, - ACTIONS(749), 6, + ACTIONS(773), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(747), 15, + ACTIONS(771), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202163,15 +204021,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [74748] = 4, + [76708] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2411), 1, + STATE(2465), 1, sym_comment, - ACTIONS(1470), 2, + ACTIONS(1513), 2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1472), 19, + ACTIONS(1515), 19, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -202191,24 +204049,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [74780] = 8, - ACTIONS(103), 1, + [76740] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_DOT2, - STATE(2412), 1, + STATE(2466), 1, sym_comment, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2601), 1, - sym_cell_path, - ACTIONS(1679), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1681), 14, + ACTIONS(1517), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1519), 19, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202220,23 +204070,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, - [74820] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [76772] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4928), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(930), 1, - sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2413), 1, + STATE(2467), 1, sym_comment, - ACTIONS(1882), 17, + ACTIONS(1521), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1523), 19, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202248,26 +204098,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [74858] = 7, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [76804] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4928), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(923), 1, - sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2414), 1, + STATE(2468), 1, sym_comment, - ACTIONS(1850), 17, + ACTIONS(876), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(874), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202280,25 +204130,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [74896] = 7, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [76836] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4928), 1, + ACTIONS(5052), 1, anon_sym_DOT2, - STATE(441), 1, + STATE(435), 1, sym_path, - STATE(936), 1, + STATE(942), 1, sym_cell_path, - STATE(2290), 1, + STATE(2283), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2415), 1, + STATE(2469), 1, sym_comment, - ACTIONS(1858), 17, + ACTIONS(1854), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202316,20 +204164,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [74934] = 7, + [76874] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4928), 1, + ACTIONS(5052), 1, anon_sym_DOT2, - STATE(441), 1, + STATE(435), 1, sym_path, - STATE(899), 1, + STATE(938), 1, sym_cell_path, - STATE(2290), 1, + STATE(2283), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2416), 1, + STATE(2470), 1, sym_comment, - ACTIONS(1866), 17, + ACTIONS(1886), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202347,85 +204195,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [74972] = 7, + [76912] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1856), 1, + ACTIONS(5052), 1, anon_sym_DOT2, - STATE(420), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(441), 1, + STATE(435), 1, sym_path, - STATE(2417), 1, - sym_comment, - ACTIONS(5069), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5067), 16, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - [75010] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3792), 1, - anon_sym_DOLLAR, - ACTIONS(5011), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5013), 1, - aux_sym__immediate_decimal_token2, - STATE(2418), 1, - sym_comment, - STATE(2991), 1, - sym__immediate_decimal, - ACTIONS(1598), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5015), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3351), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 9, - anon_sym_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, - [75058] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5071), 1, - aux_sym__immediate_decimal_token5, - STATE(2419), 1, + STATE(927), 1, + sym_cell_path, + STATE(2283), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2471), 1, sym_comment, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 18, - ts_builtin_sym_end, + ACTIONS(1862), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202437,22 +204220,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [75092] = 4, + [76950] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2420), 1, - sym_comment, - ACTIONS(1478), 2, - anon_sym_DOT_DOT2, + ACTIONS(5052), 1, anon_sym_DOT2, - ACTIONS(1480), 19, - ts_builtin_sym_end, + STATE(435), 1, + sym_path, + STATE(937), 1, + sym_cell_path, + STATE(2283), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2472), 1, + sym_comment, + ACTIONS(1848), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202464,26 +204251,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_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_QMARK2, - anon_sym_BANG, - [75124] = 4, + [76988] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2421), 1, + ACTIONS(5223), 1, + anon_sym_DOT, + ACTIONS(5225), 1, + aux_sym__immediate_decimal_token5, + STATE(2473), 1, sym_comment, - ACTIONS(773), 6, + ACTIONS(1728), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(771), 15, + ACTIONS(1730), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202499,16 +204287,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [75156] = 4, + [77024] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2422), 1, - sym_comment, - ACTIONS(1543), 2, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(1946), 1, + anon_sym_LPAREN2, + ACTIONS(5227), 1, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1545), 19, - ts_builtin_sym_end, + STATE(2474), 1, + sym_comment, + ACTIONS(5229), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1942), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202520,28 +204313,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_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [75188] = 6, + [77062] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5073), 1, - anon_sym_DOT, - ACTIONS(5075), 1, - aux_sym__immediate_decimal_token5, - STATE(2423), 1, + STATE(2475), 1, sym_comment, - ACTIONS(1736), 4, + ACTIONS(1511), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 15, + ACTIONS(1509), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202556,17 +204342,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [75224] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [77093] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2424), 1, - sym_comment, - ACTIONS(1872), 2, - anon_sym_DOT_DOT2, + ACTIONS(1740), 1, sym__unquoted_pattern, - ACTIONS(1870), 18, - ts_builtin_sym_end, + ACTIONS(5231), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5233), 1, + aux_sym__immediate_decimal_token5, + STATE(2476), 1, + sym_comment, + ACTIONS(1738), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202578,24 +204368,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, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [75255] = 8, + [77128] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, + ACTIONS(5235), 1, anon_sym_DOT2, - STATE(2425), 1, + STATE(2477), 1, sym_comment, - STATE(2489), 1, + STATE(2554), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, + STATE(2659), 1, sym_path, - STATE(2701), 1, + STATE(2705), 1, sym_cell_path, ACTIONS(1434), 4, ts_builtin_sym_end, @@ -202615,58 +204405,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [75294] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2426), 1, - sym_comment, - ACTIONS(851), 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(849), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [75325] = 11, + [77167] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3792), 1, - anon_sym_DOLLAR, - ACTIONS(5079), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5081), 1, - aux_sym__immediate_decimal_token2, - STATE(2427), 1, + ACTIONS(5177), 1, + aux_sym__immediate_decimal_token5, + STATE(2478), 1, sym_comment, - STATE(3279), 1, - sym__immediate_decimal, - ACTIONS(1669), 2, + ACTIONS(739), 6, sym_identifier, anon_sym_DASH2, - ACTIONS(5007), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3275), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1667), 9, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(741), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -202674,67 +204427,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [75370] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3792), 1, anon_sym_DOLLAR, - ACTIONS(5079), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5081), 1, - aux_sym__immediate_decimal_token2, - STATE(2428), 1, - sym_comment, - STATE(3304), 1, - sym__immediate_decimal, - ACTIONS(1673), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5007), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3285), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1671), 9, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [75415] = 11, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [77200] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3168), 1, + ACTIONS(5237), 1, anon_sym_LPAREN2, - ACTIONS(3792), 1, - anon_sym_DOLLAR, - ACTIONS(5079), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5081), 1, - aux_sym__immediate_decimal_token2, - STATE(2429), 1, + ACTIONS(5239), 1, + anon_sym_DOT_DOT2, + ACTIONS(5243), 1, + sym_filesize_unit, + ACTIONS(5245), 1, + sym_duration_unit, + ACTIONS(5247), 1, + sym__unquoted_pattern_in_record, + STATE(2479), 1, sym_comment, - STATE(3220), 1, - sym__immediate_decimal, - ACTIONS(1677), 2, + STATE(4761), 1, + sym__expr_parenthesized_immediate, + ACTIONS(793), 2, sym_identifier, anon_sym_DASH2, - ACTIONS(5007), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3305), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1675), 9, + ACTIONS(5241), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(890), 10, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -202742,24 +204464,19 @@ 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, - [75460] = 7, + [77245] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_DOT2, - STATE(2430), 1, + STATE(2480), 1, sym_comment, - STATE(2434), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - ACTIONS(1460), 3, + ACTIONS(1515), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1458), 14, + ACTIONS(1513), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202774,22 +204491,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [75497] = 6, - ACTIONS(103), 1, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [77276] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5083), 1, + ACTIONS(1730), 1, + sym__unquoted_pattern, + ACTIONS(5249), 1, anon_sym_DOT, - ACTIONS(5085), 1, + ACTIONS(5251), 1, aux_sym__immediate_decimal_token5, - STATE(2431), 1, + STATE(2481), 1, sym_comment, - ACTIONS(1736), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 13, + ACTIONS(1728), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202801,27 +204517,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_LPAREN2, + [77311] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2126), 1, + anon_sym_BANG, + STATE(2482), 1, + sym_comment, + ACTIONS(1446), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [75532] = 8, + anon_sym_DOT2, + ACTIONS(1448), 17, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [77344] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2432), 1, + STATE(2483), 1, sym_comment, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2756), 1, - sym_cell_path, - ACTIONS(1679), 4, - ts_builtin_sym_end, + ACTIONS(1519), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1681), 12, + ACTIONS(1517), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202833,23 +204572,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - [75571] = 7, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [77375] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(5087), 1, - anon_sym_DOT_DOT2, - STATE(2433), 1, + ACTIONS(3845), 1, + anon_sym_DOLLAR, + ACTIONS(5253), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5255), 1, + aux_sym__immediate_decimal_token2, + STATE(2484), 1, + sym_comment, + STATE(3375), 1, + sym__immediate_decimal, + ACTIONS(1609), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5118), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3350), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1607), 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, + [77420] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5225), 1, + aux_sym__immediate_decimal_token5, + STATE(2485), 1, sym_comment, - ACTIONS(5089), 2, + ACTIONS(1728), 4, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1964), 15, - ts_builtin_sym_end, + ACTIONS(1730), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202861,24 +204636,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_and2, - anon_sym_xor2, - anon_sym_or2, - [75608] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [77453] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5091), 1, - anon_sym_DOT2, - STATE(2542), 1, - sym_path, - STATE(2434), 2, + STATE(2486), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 3, + ACTIONS(1523), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1524), 14, + ACTIONS(1521), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202893,18 +204664,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [75643] = 6, - ACTIONS(3), 1, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [77484] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern, - ACTIONS(5094), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5096), 1, + ACTIONS(5257), 1, aux_sym__immediate_decimal_token5, - STATE(2435), 1, + STATE(2487), 1, sym_comment, - ACTIONS(1726), 17, + ACTIONS(1806), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1808), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202918,26 +204693,27 @@ 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, - [75678] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, + anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(5098), 1, + [77517] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(890), 1, + sym__space, + ACTIONS(4135), 1, anon_sym_DOT_DOT2, - STATE(2436), 1, + ACTIONS(5146), 1, + sym_filesize_unit, + ACTIONS(5148), 1, + sym_duration_unit, + ACTIONS(5150), 1, + sym__unquoted_pattern, + STATE(2488), 1, sym_comment, - ACTIONS(5100), 2, + ACTIONS(4137), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 15, - ts_builtin_sym_end, + ACTIONS(793), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202949,52 +204725,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_and2, - anon_sym_xor2, - anon_sym_or2, - [75715] = 11, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [77558] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3792), 1, - anon_sym_DOLLAR, - ACTIONS(5079), 1, + ACTIONS(5259), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5081), 1, - aux_sym__immediate_decimal_token2, - STATE(2437), 1, + ACTIONS(5261), 1, + aux_sym__immediate_decimal_token5, + STATE(2489), 1, sym_comment, - STATE(3347), 1, - sym__immediate_decimal, - ACTIONS(1586), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5007), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3345), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1582), 9, - anon_sym_EQ, + ACTIONS(1738), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1740), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [75760] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [77593] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2438), 1, + STATE(2490), 1, sym_comment, - ACTIONS(1804), 2, + ACTIONS(1740), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 18, + ACTIONS(1738), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -203013,47 +204783,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [75791] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2439), 1, - sym_comment, - ACTIONS(2938), 3, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__unquoted_in_record_token1, - ACTIONS(2940), 17, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [75822] = 4, + [77624] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2440), 1, + ACTIONS(5235), 1, + anon_sym_DOT2, + STATE(2491), 1, sym_comment, - ACTIONS(773), 7, + STATE(2554), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2659), 1, + sym_path, + STATE(2722), 1, + sym_cell_path, + ACTIONS(1655), 4, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(771), 13, + ACTIONS(1657), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203066,17 +204814,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, - sym__unquoted_pattern, - [75853] = 4, - ACTIONS(103), 1, + [77663] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2441), 1, + STATE(2492), 1, sym_comment, - ACTIONS(1516), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1514), 17, + ACTIONS(1808), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1806), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203088,27 +204835,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [75884] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [77694] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5034), 1, + ACTIONS(5263), 1, aux_sym__immediate_decimal_token5, - STATE(2442), 1, + STATE(2493), 1, sym_comment, - ACTIONS(739), 6, + ACTIONS(771), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, sym__unquoted_pattern_in_record, - ACTIONS(741), 13, + ACTIONS(773), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -203122,22 +204869,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [75917] = 6, + [77727] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5102), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5104), 1, - aux_sym__immediate_decimal_token5, - STATE(2443), 1, + STATE(2494), 1, sym_comment, - ACTIONS(1726), 5, + ACTIONS(749), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 13, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(747), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203151,78 +204896,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [75952] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5108), 1, - anon_sym_DOT_DOT2, - ACTIONS(5112), 1, - sym_filesize_unit, - ACTIONS(5114), 1, - sym_duration_unit, - ACTIONS(5116), 1, - sym__unquoted_pattern_in_record, - STATE(2444), 1, - sym_comment, - STATE(4792), 1, - sym__expr_parenthesized_immediate, - ACTIONS(868), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5110), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(968), 10, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [75997] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_QMARK2, - STATE(2445), 1, - sym_comment, - ACTIONS(1438), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1440), 16, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [76030] = 4, + [77758] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(2446), 1, + ACTIONS(5265), 1, + anon_sym_QMARK2, + ACTIONS(5267), 1, + anon_sym_BANG, + STATE(2495), 1, sym_comment, - ACTIONS(1545), 3, + STATE(2640), 1, + sym__path_suffix, + ACTIONS(1440), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1543), 17, + ACTIONS(1438), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203234,24 +204924,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, anon_sym_DOT2, - [76061] = 6, - ACTIONS(3), 1, + [77795] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(5120), 1, - anon_sym_DOT, - ACTIONS(5122), 1, - aux_sym__immediate_decimal_token5, - STATE(2447), 1, + STATE(2496), 1, sym_comment, - ACTIONS(1736), 17, + ACTIONS(1460), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1458), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203265,29 +204949,24 @@ 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, - [76096] = 9, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [77826] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - ACTIONS(4139), 1, - anon_sym_DOT_DOT2, - ACTIONS(4965), 1, - sym_filesize_unit, - ACTIONS(4967), 1, - sym_duration_unit, - ACTIONS(4969), 1, - sym__unquoted_pattern, - STATE(2448), 1, + STATE(2497), 1, sym_comment, - ACTIONS(4141), 2, + ACTIONS(773), 7, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(868), 13, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(771), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203299,21 +204978,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, - [76137] = 5, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [77857] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5124), 1, - aux_sym__immediate_decimal_token5, - STATE(2449), 1, + ACTIONS(5235), 1, + anon_sym_DOT2, + STATE(2498), 1, sym_comment, - ACTIONS(1802), 4, + STATE(2554), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2659), 1, + sym_path, + STATE(2815), 1, + sym_cell_path, + ACTIONS(1661), 4, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 15, + ACTIONS(1663), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203325,16 +205010,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_DOT_DOT2, - sym__unquoted_pattern, - [76170] = 4, + [77896] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2450), 1, + STATE(2499), 1, sym_comment, - ACTIONS(749), 7, + ACTIONS(876), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, @@ -203342,7 +205024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(747), 13, + ACTIONS(874), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203356,71 +205038,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [76201] = 4, - ACTIONS(103), 1, + [77927] = 11, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2451), 1, + ACTIONS(3103), 1, + anon_sym_LPAREN2, + ACTIONS(3845), 1, + anon_sym_DOLLAR, + ACTIONS(5253), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5255), 1, + aux_sym__immediate_decimal_token2, + STATE(2500), 1, sym_comment, - ACTIONS(1472), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1470), 17, + STATE(3400), 1, + sym__immediate_decimal, + ACTIONS(1645), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5118), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3376), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1643), 9, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76232] = 5, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [77972] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5126), 1, - aux_sym__immediate_decimal_token5, - STATE(2452), 1, + ACTIONS(3103), 1, + anon_sym_LPAREN2, + ACTIONS(3845), 1, + anon_sym_DOLLAR, + ACTIONS(5253), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5255), 1, + aux_sym__immediate_decimal_token2, + STATE(2501), 1, sym_comment, - ACTIONS(771), 6, + STATE(3348), 1, + sym__immediate_decimal, + ACTIONS(1649), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5118), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3277), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1647), 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, + [78017] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3103), 1, + anon_sym_LPAREN2, + ACTIONS(3845), 1, + anon_sym_DOLLAR, + ACTIONS(5253), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5255), 1, + aux_sym__immediate_decimal_token2, + STATE(2502), 1, + sym_comment, + STATE(3362), 1, + sym__immediate_decimal, + ACTIONS(1653), 2, sym_identifier, anon_sym_DASH2, + ACTIONS(5118), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3359), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1651), 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, + [78062] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5269), 1, + anon_sym_QMARK2, + STATE(2503), 1, + sym_comment, + ACTIONS(1446), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(773), 13, + anon_sym_DOT2, + ACTIONS(1448), 16, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [76265] = 4, - ACTIONS(3), 1, + [78095] = 7, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2453), 1, + ACTIONS(5193), 1, + anon_sym_DOT2, + STATE(2504), 1, sym_comment, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 18, - ts_builtin_sym_end, + STATE(2507), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2607), 1, + sym_path, + ACTIONS(1492), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1490), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203432,22 +205195,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, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [76296] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [78132] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2454), 1, + ACTIONS(5271), 1, + anon_sym_DOT, + ACTIONS(5273), 1, + aux_sym__immediate_decimal_token5, + STATE(2505), 1, sym_comment, - ACTIONS(1480), 3, + ACTIONS(1728), 5, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1478), 17, + ACTIONS(1730), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203459,29 +205225,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76327] = 7, - ACTIONS(103), 1, + sym__unquoted_pattern, + [78167] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5128), 1, - anon_sym_QMARK2, - ACTIONS(5130), 1, - anon_sym_BANG, - STATE(2455), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(1946), 1, + anon_sym_LPAREN2, + ACTIONS(5275), 1, + anon_sym_DOT_DOT2, + STATE(2506), 1, sym_comment, - STATE(2609), 1, - sym__path_suffix, - ACTIONS(1448), 4, - ts_builtin_sym_end, - sym__space, + ACTIONS(5277), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1446), 13, + ACTIONS(1942), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203493,27 +205254,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [76364] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [78204] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, + ACTIONS(5279), 1, anon_sym_DOT2, - STATE(2456), 1, + STATE(2607), 1, + sym_path, + STATE(2507), 2, sym_comment, - STATE(2489), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2761), 1, - sym_cell_path, - ACTIONS(1641), 4, - ts_builtin_sym_end, + ACTIONS(1496), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1643), 12, + ACTIONS(1494), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203525,17 +205283,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, - [76403] = 4, + [78239] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2457), 1, + STATE(2508), 1, sym_comment, - ACTIONS(1468), 3, + ACTIONS(1507), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1466), 17, + ACTIONS(1505), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203553,16 +205313,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [76434] = 4, - ACTIONS(103), 1, + [78270] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2458), 1, + ACTIONS(1956), 1, + anon_sym_LPAREN2, + ACTIONS(1962), 1, + sym__unquoted_pattern, + ACTIONS(5282), 1, + anon_sym_DOT_DOT2, + STATE(2509), 1, sym_comment, - ACTIONS(1476), 3, - sym__space, + ACTIONS(5284), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1474), 17, + ACTIONS(1952), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203574,23 +205340,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76465] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [78307] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2164), 1, - anon_sym_BANG, - STATE(2459), 1, + STATE(2510), 1, sym_comment, - ACTIONS(1438), 2, + ACTIONS(1846), 2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1440), 17, + sym__unquoted_pattern, + ACTIONS(1844), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -203606,21 +205367,51 @@ 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, + [78338] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5269), 1, + anon_sym_BANG, + STATE(2511), 1, + sym_comment, + ACTIONS(1446), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1448), 16, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [76498] = 5, + [78371] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5075), 1, + ACTIONS(5286), 1, aux_sym__immediate_decimal_token5, - STATE(2460), 1, + STATE(2512), 1, sym_comment, - ACTIONS(1736), 4, + ACTIONS(1806), 5, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 15, + ACTIONS(1808), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203632,49 +205423,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_DOT_DOT2, sym__unquoted_pattern, - [76531] = 5, + [78403] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_BANG, - STATE(2461), 1, + ACTIONS(5288), 1, + anon_sym_DOT2, + STATE(2513), 1, sym_comment, - ACTIONS(1438), 3, + STATE(2552), 1, + sym_path, + STATE(2613), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2893), 1, + sym_cell_path, + ACTIONS(1657), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1440), 16, + ACTIONS(1655), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [76564] = 4, - ACTIONS(103), 1, + [78441] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2462), 1, + ACTIONS(5290), 1, + anon_sym_DOT2, + STATE(712), 1, + sym_path, + STATE(1267), 1, + sym_cell_path, + STATE(2447), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2514), 1, sym_comment, - ACTIONS(1545), 4, + ACTIONS(1862), 15, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1543), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203686,21 +205481,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_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76594] = 4, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [78477] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2463), 1, + ACTIONS(5290), 1, + anon_sym_DOT2, + STATE(712), 1, + sym_path, + STATE(1268), 1, + sym_cell_path, + STATE(2447), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2515), 1, sym_comment, - ACTIONS(1476), 4, + ACTIONS(1882), 15, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1474), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203712,87 +205510,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_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [78513] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5290), 1, anon_sym_DOT2, - [76624] = 15, + STATE(712), 1, + sym_path, + STATE(1321), 1, + sym_cell_path, + STATE(2447), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2516), 1, + sym_comment, + ACTIONS(1848), 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, + [78549] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(843), 1, - sym_raw_string_begin, - ACTIONS(3224), 1, - anon_sym_DQUOTE, - ACTIONS(3226), 1, - anon_sym_SQUOTE, - ACTIONS(3228), 1, - anon_sym_BQUOTE, - ACTIONS(3230), 1, + ACTIONS(203), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3232), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3661), 1, + ACTIONS(1774), 1, anon_sym_LPAREN, - ACTIONS(3663), 1, + ACTIONS(1786), 1, + anon_sym_DQUOTE, + ACTIONS(1788), 1, + anon_sym_SQUOTE, + ACTIONS(1790), 1, + anon_sym_BQUOTE, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(5292), 1, anon_sym_DOLLAR, - ACTIONS(5132), 1, + ACTIONS(5294), 1, sym__unquoted_naive, - STATE(2464), 1, - sym_comment, - STATE(3063), 1, + STATE(847), 1, sym__inter_single_quotes, - STATE(3066), 1, + STATE(848), 1, sym__inter_double_quotes, - STATE(2454), 4, + STATE(2517), 1, + sym_comment, + STATE(2243), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(2967), 4, + STATE(3178), 4, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - [76676] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2465), 1, - sym_comment, - ACTIONS(1516), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1514), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [76706] = 7, + [78601] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5134), 1, + ACTIONS(5290), 1, anon_sym_DOT2, - STATE(783), 1, + STATE(712), 1, sym_path, - STATE(1274), 1, + STATE(1344), 1, sym_cell_path, - STATE(2387), 1, + STATE(2447), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2466), 1, + STATE(2518), 1, sym_comment, - ACTIONS(1866), 15, + ACTIONS(1838), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -203808,53 +205608,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [76742] = 14, + [78637] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, - anon_sym_COMMA, - ACTIONS(5138), 1, + STATE(2519), 1, + sym_comment, + ACTIONS(771), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(773), 13, anon_sym_EQ, - ACTIONS(5140), 1, sym__newline, - ACTIONS(5142), 1, + anon_sym_PIPE, anon_sym_COLON, - ACTIONS(5144), 1, - anon_sym_LPAREN, - ACTIONS(5146), 1, - anon_sym_DASH2, - STATE(2467), 1, + 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, + [78667] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2520), 1, sym_comment, - STATE(2621), 1, - sym_flag_capsule, - STATE(2623), 1, - aux_sym_parameter_repeat1, - STATE(3374), 1, - aux_sym_parameter_repeat2, - STATE(4267), 1, - aux_sym__repeat_newline, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5136), 7, + ACTIONS(1529), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1531), 16, + anon_sym_EQ, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [76792] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [78697] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2468), 1, + STATE(2521), 1, sym_comment, - ACTIONS(1726), 4, + ACTIONS(1515), 4, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 15, + ACTIONS(1513), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203866,30 +205682,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [76822] = 9, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [78727] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4139), 1, - anon_sym_DOT_DOT2, - ACTIONS(5044), 1, - sym_filesize_unit, - ACTIONS(5046), 1, - sym_duration_unit, - ACTIONS(5048), 1, - sym__unquoted_pattern, - STATE(2469), 1, + STATE(2522), 1, sym_comment, - ACTIONS(968), 2, + ACTIONS(1519), 4, ts_builtin_sym_end, sym__space, - ACTIONS(4141), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(868), 11, + ACTIONS(1517), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203901,45 +205708,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, - [76862] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5134), 1, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(1292), 1, - sym_cell_path, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2470), 1, - sym_comment, - ACTIONS(1850), 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, - [76898] = 5, - ACTIONS(3), 1, + [78757] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern, - ACTIONS(5148), 1, - aux_sym__immediate_decimal_token5, - STATE(2471), 1, + STATE(2523), 1, sym_comment, - ACTIONS(1802), 17, + ACTIONS(1523), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1521), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203951,23 +205734,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [76930] = 4, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [78787] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(2472), 1, + ACTIONS(5296), 1, + anon_sym_QMARK2, + STATE(2524), 1, sym_comment, - ACTIONS(1480), 4, - ts_builtin_sym_end, + ACTIONS(1448), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1478), 15, + ACTIONS(1446), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203979,23 +205761,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, - anon_sym_QMARK2, - anon_sym_BANG, anon_sym_DOT2, - [76960] = 4, + [78819] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2473), 1, + STATE(2525), 1, sym_comment, - ACTIONS(849), 6, + ACTIONS(874), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, sym__unquoted_pattern_in_record, - ACTIONS(851), 13, + ACTIONS(876), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -204009,21 +205791,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [76990] = 7, + [78849] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5134), 1, - anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(1272), 1, - sym_cell_path, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2474), 1, + ACTIONS(1730), 1, + sym__unquoted_pattern, + ACTIONS(5251), 1, + aux_sym__immediate_decimal_token5, + STATE(2526), 1, sym_comment, - ACTIONS(1858), 15, - ts_builtin_sym_end, + ACTIONS(1728), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204035,20 +205812,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [77026] = 5, + anon_sym_LPAREN2, + [78881] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5152), 1, - anon_sym_DOT_DOT2, - STATE(2475), 1, + ACTIONS(1808), 1, + sym__unquoted_pattern, + ACTIONS(5298), 1, + aux_sym__immediate_decimal_token5, + STATE(2527), 1, sym_comment, - ACTIONS(5154), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 16, + ACTIONS(1806), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204065,47 +205844,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [77058] = 4, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [78913] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2476), 1, + ACTIONS(5296), 1, + anon_sym_BANG, + STATE(2528), 1, sym_comment, - ACTIONS(1520), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1522), 16, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + ACTIONS(1448), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [77088] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5134), 1, - anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(1273), 1, - sym_cell_path, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2477), 1, - sym_comment, - ACTIONS(1862), 15, - ts_builtin_sym_end, + ACTIONS(1446), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204117,20 +205868,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, - [77124] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [78945] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5152), 1, - anon_sym_DOT_DOT2, - STATE(2478), 1, + ACTIONS(1730), 1, + sym__unquoted_pattern, + ACTIONS(5300), 1, + anon_sym_DOT, + ACTIONS(5302), 1, + aux_sym__immediate_decimal_token5, + STATE(2529), 1, sym_comment, - ACTIONS(5154), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1706), 16, + ACTIONS(1728), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204142,26 +205896,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [77156] = 7, + anon_sym_LPAREN2, + [78979] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5134), 1, - anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(1320), 1, - sym_cell_path, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2479), 1, + ACTIONS(5304), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5306), 1, + aux_sym__immediate_decimal_token5, + STATE(2530), 1, sym_comment, - ACTIONS(1882), 15, - ts_builtin_sym_end, + ACTIONS(1740), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1738), 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, + [79013] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5310), 1, + anon_sym_DOT_DOT2, + STATE(2531), 1, + sym_comment, + ACTIONS(5312), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5308), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204173,22 +205950,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [77192] = 6, + [79045] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(5156), 1, - anon_sym_DOT, - ACTIONS(5158), 1, - aux_sym__immediate_decimal_token5, - STATE(2480), 1, + ACTIONS(5310), 1, + anon_sym_DOT_DOT2, + STATE(2532), 1, sym_comment, - ACTIONS(1736), 16, - ts_builtin_sym_end, + ACTIONS(5312), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5308), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204200,21 +205977,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [77226] = 5, + [79077] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5152), 1, + ACTIONS(5310), 1, anon_sym_DOT_DOT2, - STATE(2481), 1, + STATE(2533), 1, sym_comment, - ACTIONS(5154), 2, + ACTIONS(5312), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 16, + ACTIONS(5308), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204231,22 +206009,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [77258] = 6, + [79109] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5160), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5162), 1, - aux_sym__immediate_decimal_token5, - STATE(2482), 1, + ACTIONS(5288), 1, + anon_sym_DOT2, + STATE(2534), 1, sym_comment, - ACTIONS(1728), 4, - sym_identifier, + STATE(2552), 1, + sym_path, + STATE(2613), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2887), 1, + sym_cell_path, + ACTIONS(1432), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1726), 13, + ACTIONS(1434), 13, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -204256,23 +206037,54 @@ 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, + [79147] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5273), 1, + aux_sym__immediate_decimal_token5, + STATE(2535), 1, + sym_comment, + ACTIONS(1728), 5, + ts_builtin_sym_end, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [77292] = 4, + ACTIONS(1730), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [79179] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2483), 1, + ACTIONS(5288), 1, + anon_sym_DOT2, + STATE(2536), 1, sym_comment, - ACTIONS(747), 6, - sym_identifier, + STATE(2552), 1, + sym_path, + STATE(2613), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2869), 1, + sym_cell_path, + ACTIONS(1663), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(749), 13, + ACTIONS(1661), 13, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -204282,94 +206094,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, - [77322] = 15, + [79217] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1774), 1, - anon_sym_LPAREN, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(974), 1, sym_raw_string_begin, - ACTIONS(5164), 1, - anon_sym_DOLLAR, - ACTIONS(5166), 1, - sym__unquoted_naive, - STATE(743), 1, - sym__inter_single_quotes, - STATE(744), 1, - sym__inter_double_quotes, - STATE(2484), 1, - sym_comment, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3209), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [77374] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(91), 1, + ACTIONS(3321), 1, anon_sym_DQUOTE, - ACTIONS(93), 1, + ACTIONS(3323), 1, anon_sym_SQUOTE, - ACTIONS(95), 1, + ACTIONS(3325), 1, anon_sym_BQUOTE, - ACTIONS(97), 1, + ACTIONS(3327), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3329), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(105), 1, - sym_raw_string_begin, - ACTIONS(5168), 1, + ACTIONS(3681), 1, anon_sym_LPAREN, - ACTIONS(5170), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR, - ACTIONS(5172), 1, + ACTIONS(5314), 1, sym__unquoted_naive, - STATE(1325), 1, + STATE(2537), 1, + sym_comment, + STATE(3261), 1, sym__inter_single_quotes, - STATE(1326), 1, + STATE(3262), 1, sym__inter_double_quotes, - STATE(2485), 1, - sym_comment, - STATE(480), 4, + STATE(2543), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3310), 4, + STATE(3129), 4, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - [77426] = 4, + [79269] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2486), 1, + STATE(2538), 1, sym_comment, - ACTIONS(1472), 4, - ts_builtin_sym_end, + ACTIONS(1738), 4, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1470), 15, + ACTIONS(1740), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204381,21 +206155,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [77456] = 4, + sym__unquoted_pattern, + [79299] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2487), 1, + STATE(2539), 1, sym_comment, - ACTIONS(1870), 4, + ACTIONS(1806), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1872), 15, + ACTIONS(1808), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204411,51 +206185,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [77486] = 6, - ACTIONS(3), 1, + [79329] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_DOT, - ACTIONS(5176), 1, - aux_sym__immediate_decimal_token5, - STATE(2488), 1, + STATE(2540), 1, sym_comment, - ACTIONS(1738), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1736), 13, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + ACTIONS(1844), 4, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [77520] = 7, + ACTIONS(1846), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [79359] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, + ACTIONS(4135), 1, + anon_sym_DOT_DOT2, + ACTIONS(5187), 1, + sym_filesize_unit, + ACTIONS(5189), 1, + sym_duration_unit, + ACTIONS(5191), 1, + sym__unquoted_pattern, + STATE(2541), 1, sym_comment, - STATE(2492), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - ACTIONS(1460), 4, + ACTIONS(890), 2, ts_builtin_sym_end, sym__space, + ACTIONS(4137), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1458), 12, + ACTIONS(793), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204467,18 +206242,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_DOT_DOT2, - [77556] = 4, + [79399] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1474), 1, + anon_sym_COMMA, + ACTIONS(5318), 1, + anon_sym_EQ, + ACTIONS(5320), 1, + sym__newline, + ACTIONS(5322), 1, + anon_sym_COLON, + ACTIONS(5324), 1, + anon_sym_LPAREN, + ACTIONS(5326), 1, + anon_sym_DASH2, + STATE(2542), 1, + sym_comment, + STATE(2655), 1, + aux_sym_parameter_repeat1, + STATE(2664), 1, + sym_flag_capsule, + STATE(3435), 1, + aux_sym_parameter_repeat2, + STATE(4168), 1, + aux_sym__repeat_newline, + STATE(3384), 2, + sym_param_type, + sym_param_value, + ACTIONS(5316), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [79449] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2490), 1, + STATE(2543), 1, sym_comment, - ACTIONS(1468), 4, + ACTIONS(1507), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1466), 15, + ACTIONS(1505), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204494,52 +206304,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [77586] = 8, - ACTIONS(3), 1, + [79479] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2491), 1, - sym_comment, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2868), 1, - sym_cell_path, - ACTIONS(1643), 2, - anon_sym_DASH2, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(1942), 1, + sym__space, + ACTIONS(1946), 1, + anon_sym_LPAREN2, + ACTIONS(5328), 1, anon_sym_DOT_DOT2, - ACTIONS(1641), 13, - anon_sym_EQ, - sym_identifier, + STATE(2544), 1, + sym_comment, + ACTIONS(5330), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1944), 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, - [77624] = 6, - ACTIONS(103), 1, + anon_sym_RBRACE, + [79517] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5180), 1, + STATE(2545), 1, + sym_comment, + ACTIONS(5334), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5332), 17, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, anon_sym_DOT2, - STATE(2611), 1, - sym_path, - STATE(2492), 2, + [79547] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2546), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 4, + ACTIONS(1511), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1524), 12, + ACTIONS(1509), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204552,20 +206383,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [77658] = 5, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [79577] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5085), 1, - aux_sym__immediate_decimal_token5, - STATE(2493), 1, - sym_comment, - ACTIONS(1736), 5, - ts_builtin_sym_end, + ACTIONS(1952), 1, sym__space, + ACTIONS(1956), 1, anon_sym_LPAREN2, + ACTIONS(1962), 1, + sym__unquoted_pattern, + ACTIONS(5336), 1, + anon_sym_DOT_DOT2, + STATE(2547), 1, + sym_comment, + ACTIONS(5338), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 13, + ACTIONS(1954), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204577,27 +206414,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_DOT_DOT2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [79615] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(93), 1, + anon_sym_SQUOTE, + ACTIONS(95), 1, + anon_sym_BQUOTE, + ACTIONS(97), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(105), 1, + sym_raw_string_begin, + ACTIONS(5340), 1, + anon_sym_LPAREN, + ACTIONS(5342), 1, + anon_sym_DOLLAR, + ACTIONS(5344), 1, + sym__unquoted_naive, + STATE(1274), 1, + sym__inter_double_quotes, + STATE(1297), 1, + sym__inter_single_quotes, + STATE(2548), 1, + sym_comment, + STATE(490), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3322), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [79667] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1740), 1, sym__unquoted_pattern, - [77690] = 8, + ACTIONS(5346), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5348), 1, + aux_sym__immediate_decimal_token5, + STATE(2549), 1, + sym_comment, + ACTIONS(1738), 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, + [79701] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2494), 1, + ACTIONS(5350), 1, + anon_sym_DOT, + ACTIONS(5352), 1, + aux_sym__immediate_decimal_token5, + STATE(2550), 1, sym_comment, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2863), 1, - sym_cell_path, - ACTIONS(1432), 2, + ACTIONS(1730), 4, + sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1434), 13, + sym__unquoted_pattern_in_record, + ACTIONS(1728), 13, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -204607,82 +206506,138 @@ 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, - [77728] = 15, + [79735] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(958), 1, + ACTIONS(870), 1, sym_raw_string_begin, - ACTIONS(3263), 1, + ACTIONS(3273), 1, anon_sym_DQUOTE, - ACTIONS(3265), 1, + ACTIONS(3275), 1, anon_sym_SQUOTE, - ACTIONS(3267), 1, + ACTIONS(3277), 1, anon_sym_BQUOTE, - ACTIONS(3269), 1, + ACTIONS(3279), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3271), 1, + ACTIONS(3281), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3679), 1, + ACTIONS(3657), 1, anon_sym_LPAREN, - ACTIONS(3681), 1, + ACTIONS(3659), 1, anon_sym_DOLLAR, - ACTIONS(5183), 1, + ACTIONS(5354), 1, sym__unquoted_naive, - STATE(2495), 1, + STATE(2551), 1, sym_comment, - STATE(3091), 1, + STATE(2983), 1, sym__inter_single_quotes, - STATE(3098), 1, + STATE(3101), 1, sym__inter_double_quotes, - STATE(2472), 4, + STATE(2508), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3092), 4, + STATE(3081), 4, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - [77780] = 4, + [79787] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2496), 1, + STATE(2552), 1, sym_comment, - ACTIONS(5187), 2, + ACTIONS(1552), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1554), 16, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5185), 17, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [79817] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2553), 1, + sym_comment, + ACTIONS(1460), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1458), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [79847] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5235), 1, anon_sym_DOT2, - [77810] = 5, + STATE(2554), 1, + sym_comment, + STATE(2564), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2659), 1, + sym_path, + ACTIONS(1492), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1490), 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, + [79883] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5152), 1, + ACTIONS(5310), 1, anon_sym_DOT_DOT2, - STATE(2497), 1, + STATE(2555), 1, sym_comment, - ACTIONS(5154), 2, + ACTIONS(5312), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 16, + ACTIONS(1689), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204699,74 +206654,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [77842] = 8, + [79915] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5178), 1, + ACTIONS(5290), 1, anon_sym_DOT2, - STATE(2498), 1, - sym_comment, - STATE(2511), 1, + STATE(712), 1, sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2900), 1, + STATE(1275), 1, sym_cell_path, - ACTIONS(1681), 2, + STATE(2447), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2556), 1, + sym_comment, + ACTIONS(1854), 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, + [79951] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2557), 1, + sym_comment, + ACTIONS(1525), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1679), 13, + anon_sym_DOT2, + ACTIONS(1527), 16, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [77880] = 5, + [79981] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(5122), 1, - aux_sym__immediate_decimal_token5, - STATE(2499), 1, + STATE(2558), 1, sym_comment, - ACTIONS(1736), 17, + ACTIONS(747), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(749), 13, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_LPAREN2, - [77912] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [80011] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5189), 1, - anon_sym_DOT_DOT2, - STATE(2500), 1, + ACTIONS(5290), 1, + anon_sym_DOT2, + STATE(712), 1, + sym_path, + STATE(1269), 1, + sym_cell_path, + STATE(2447), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2559), 1, sym_comment, - ACTIONS(5191), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 16, + ACTIONS(1886), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204778,22 +206761,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, - [77944] = 5, + [80047] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5193), 1, + ACTIONS(5356), 1, anon_sym_DOT_DOT2, - STATE(2501), 1, + STATE(2560), 1, sym_comment, - ACTIONS(5195), 2, + ACTIONS(5358), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2100), 16, + ACTIONS(2098), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204810,17 +206791,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [77976] = 5, + [80079] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5197), 1, + ACTIONS(5360), 1, anon_sym_DOT_DOT2, - STATE(2502), 1, + STATE(2561), 1, sym_comment, - ACTIONS(5199), 2, + ACTIONS(5362), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2076), 16, + ACTIONS(2136), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204837,17 +206818,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [78008] = 5, + [80111] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5201), 1, + ACTIONS(5364), 1, anon_sym_DOT_DOT2, - STATE(2503), 1, + STATE(2562), 1, sym_comment, - ACTIONS(5203), 2, + ACTIONS(5366), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2120), 16, + ACTIONS(2144), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204864,19 +206845,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [78040] = 6, + [80143] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern, - ACTIONS(5205), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5207), 1, - aux_sym__immediate_decimal_token5, - STATE(2504), 1, + ACTIONS(5368), 1, + anon_sym_DOT_DOT2, + STATE(2563), 1, sym_comment, - ACTIONS(1726), 16, - ts_builtin_sym_end, + ACTIONS(5370), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2152), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204888,27 +206867,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, - [78074] = 8, + [80175] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1964), 1, - sym__space, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(5209), 1, - anon_sym_DOT_DOT2, - STATE(2505), 1, + ACTIONS(5372), 1, + anon_sym_DOT2, + STATE(2659), 1, + sym_path, + STATE(2564), 2, sym_comment, - ACTIONS(5211), 2, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1496), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 13, + ACTIONS(1494), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204920,20 +206899,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, - [78112] = 5, + anon_sym_DOT_DOT2, + [80209] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5213), 1, - anon_sym_BANG, - STATE(2506), 1, - sym_comment, - ACTIONS(1440), 3, + ACTIONS(5193), 1, + anon_sym_DOT2, + ACTIONS(5377), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1438), 15, + STATE(2504), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2565), 1, + sym_comment, + STATE(2607), 1, + sym_path, + STATE(3012), 1, + sym_cell_path, + ACTIONS(5375), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204947,77 +206929,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [78144] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2507), 1, - sym_comment, - ACTIONS(771), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(773), 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, - [78174] = 4, + [80246] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2508), 1, + STATE(2566), 1, sym_comment, - ACTIONS(1535), 3, + ACTIONS(1513), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1537), 16, + ACTIONS(1515), 15, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [78204] = 8, - ACTIONS(103), 1, + anon_sym_QMARK2, + anon_sym_BANG, + [80275] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__space, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(2327), 1, sym__unquoted_pattern, - ACTIONS(5215), 1, - anon_sym_DOT_DOT2, - STATE(2509), 1, + STATE(2567), 1, sym_comment, - ACTIONS(5217), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 13, + ACTIONS(2325), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205031,20 +206975,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [78242] = 5, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [80304] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5219), 1, - aux_sym__immediate_decimal_token5, - STATE(2510), 1, - sym_comment, - ACTIONS(1802), 5, - ts_builtin_sym_end, - sym__space, + ACTIONS(2554), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 13, + ACTIONS(2556), 1, + sym__unquoted_pattern, + STATE(2568), 1, + sym_comment, + ACTIONS(1689), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205056,46 +207000,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_DOT_DOT2, - sym__unquoted_pattern, - [78274] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80335] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2511), 1, + ACTIONS(5379), 1, + aux_sym__immediate_decimal_token5, + STATE(2569), 1, sym_comment, - ACTIONS(1462), 3, + ACTIONS(1808), 4, + sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1464), 16, + sym__unquoted_pattern_in_record, + ACTIONS(1806), 13, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [78304] = 5, - ACTIONS(103), 1, + [80366] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5213), 1, - anon_sym_QMARK2, - STATE(2512), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(1946), 1, + anon_sym_LPAREN2, + STATE(2570), 1, sym_comment, - ACTIONS(1440), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1438), 15, + ACTIONS(1942), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205109,22 +207054,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, - anon_sym_DOT2, - [78336] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80397] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5134), 1, - anon_sym_DOT2, - STATE(783), 1, - sym_path, - STATE(1279), 1, - sym_cell_path, - STATE(2387), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2513), 1, + ACTIONS(5381), 1, + anon_sym_DOT_DOT2, + STATE(2571), 1, sym_comment, - ACTIONS(1878), 15, + ACTIONS(5383), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5308), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -205140,17 +207083,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [78372] = 4, - ACTIONS(103), 1, + [80428] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2514), 1, - sym_comment, - ACTIONS(1802), 4, - sym__space, + ACTIONS(1956), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 15, + ACTIONS(1962), 1, + sym__unquoted_pattern, + STATE(2572), 1, + sym_comment, + ACTIONS(2574), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205164,18 +207106,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [78402] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80459] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2595), 1, + ACTIONS(1956), 1, anon_sym_LPAREN2, - ACTIONS(2597), 1, + ACTIONS(1962), 1, sym__unquoted_pattern, - STATE(2515), 1, + STATE(2573), 1, sym_comment, - ACTIONS(1706), 16, + ACTIONS(1952), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205192,22 +207135,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [78433] = 8, - ACTIONS(103), 1, + [80490] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1858), 1, - sym__space, - ACTIONS(5024), 1, - anon_sym_DOT2, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2516), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2513), 1, + anon_sym_LPAREN2, + STATE(2574), 1, sym_comment, - STATE(2542), 1, - sym_path, - STATE(2932), 1, - sym_cell_path, - ACTIONS(1860), 13, + ACTIONS(2509), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205221,44 +207158,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [78470] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80521] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5223), 1, - anon_sym_DASH2, - STATE(2517), 1, - sym_comment, - ACTIONS(5221), 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, - [78499] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5225), 1, - anon_sym_BANG, - STATE(2518), 1, + ACTIONS(5381), 1, + anon_sym_DOT_DOT2, + STATE(2575), 1, sym_comment, - ACTIONS(1440), 4, - ts_builtin_sym_end, - sym__space, + ACTIONS(5383), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1438), 13, + ACTIONS(5308), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205270,24 +207184,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [78530] = 8, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80552] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1866), 1, - sym__space, - ACTIONS(5024), 1, - anon_sym_DOT2, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2519), 1, + ACTIONS(2529), 1, + anon_sym_LPAREN2, + ACTIONS(2531), 1, + sym__unquoted_pattern, + STATE(2576), 1, sym_comment, - STATE(2542), 1, - sym_path, - STATE(3025), 1, - sym_cell_path, - ACTIONS(1868), 13, + ACTIONS(2525), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205301,17 +207210,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [78567] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [80583] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5227), 1, + ACTIONS(5381), 1, anon_sym_DOT_DOT2, - STATE(2520), 1, + STATE(2577), 1, sym_comment, - ACTIONS(5229), 2, + ACTIONS(5383), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 15, + ACTIONS(5308), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -205327,43 +207239,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [78598] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_DOT2, - ACTIONS(5233), 1, - sym__space, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2521), 1, - sym_comment, - STATE(2542), 1, - sym_path, - STATE(3003), 1, - sym_cell_path, - ACTIONS(5231), 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, - [78635] = 4, + [80614] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2503), 1, - sym__unquoted_pattern, - STATE(2522), 1, + ACTIONS(1756), 1, + anon_sym_LPAREN2, + STATE(2578), 1, sym_comment, - ACTIONS(2501), 17, + STATE(4728), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5385), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205380,17 +207265,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [78664] = 5, + [80645] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, + ACTIONS(1756), 1, anon_sym_LPAREN2, - STATE(2523), 1, + STATE(2579), 1, sym_comment, - ACTIONS(1964), 16, + STATE(4728), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5385), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205407,16 +207291,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [78695] = 5, + [80676] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, + ACTIONS(1756), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2524), 1, + STATE(2580), 1, sym_comment, - ACTIONS(994), 16, + STATE(4728), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5385), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205433,67 +207317,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [78726] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5235), 1, - aux_sym__immediate_decimal_token5, - STATE(2525), 1, - sym_comment, - ACTIONS(1804), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1802), 13, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [78757] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5239), 1, - anon_sym_DASH2, - STATE(2526), 1, - sym_comment, - ACTIONS(5237), 17, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [78786] = 5, - ACTIONS(3), 1, + [80707] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(2527), 1, + ACTIONS(1854), 1, + sym__space, + ACTIONS(5193), 1, + anon_sym_DOT2, + STATE(2504), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2581), 1, sym_comment, - ACTIONS(2635), 16, + STATE(2607), 1, + sym_path, + STATE(2988), 1, + sym_cell_path, + ACTIONS(1856), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205507,19 +207346,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, - [78817] = 5, - ACTIONS(3), 1, + [80744] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(2528), 1, + ACTIONS(1886), 1, + sym__space, + ACTIONS(5193), 1, + anon_sym_DOT2, + STATE(2504), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2582), 1, sym_comment, - ACTIONS(2575), 16, + STATE(2607), 1, + sym_path, + STATE(3116), 1, + sym_cell_path, + ACTIONS(1889), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205533,21 +207375,42 @@ 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, - [78848] = 4, - ACTIONS(103), 1, + [80781] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2529), 1, + ACTIONS(5140), 1, + anon_sym_DASH2, + STATE(2583), 1, + sym_comment, + ACTIONS(5138), 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, + [80810] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1808), 1, + sym__unquoted_pattern, + ACTIONS(5387), 1, + aux_sym__immediate_decimal_token5, + STATE(2584), 1, sym_comment, - ACTIONS(1802), 5, + ACTIONS(1806), 16, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205559,16 +207422,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, - sym__unquoted_pattern, - [78877] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [80841] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5243), 1, + ACTIONS(5106), 1, anon_sym_DASH2, - STATE(2530), 1, + STATE(2585), 1, sym_comment, - ACTIONS(5241), 17, + ACTIONS(5104), 17, anon_sym_EQ, sym_identifier, sym__newline, @@ -205586,18 +207451,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [78906] = 4, + [80870] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(2531), 1, + ACTIONS(5389), 1, + anon_sym_QMARK2, + STATE(2586), 1, sym_comment, - ACTIONS(1726), 5, + ACTIONS(1448), 4, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 13, + ACTIONS(1446), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205610,17 +207476,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [78935] = 4, - ACTIONS(103), 1, + anon_sym_DOT2, + [80901] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2532), 1, + ACTIONS(2566), 1, + anon_sym_LPAREN2, + ACTIONS(2568), 1, + sym__unquoted_pattern, + STATE(2587), 1, sym_comment, - ACTIONS(1537), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1535), 15, + ACTIONS(2562), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205634,18 +207500,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, + [80932] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2588), 1, + sym_comment, + ACTIONS(1517), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - [78964] = 5, + ACTIONS(1519), 15, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [80961] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(2570), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(2572), 1, sym__unquoted_pattern, - STATE(2533), 1, + STATE(2589), 1, sym_comment, - ACTIONS(1974), 16, + ACTIONS(994), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205662,16 +207554,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [78995] = 5, - ACTIONS(3), 1, + [80992] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, + ACTIONS(1598), 1, sym__unquoted_pattern, - ACTIONS(2629), 1, + ACTIONS(1946), 1, anon_sym_LPAREN2, - STATE(2534), 1, + ACTIONS(5391), 1, + anon_sym_DOT_DOT2, + STATE(2590), 1, sym_comment, - ACTIONS(2523), 16, + ACTIONS(1942), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5393), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1944), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205683,21 +207583,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [79026] = 5, + [81029] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2631), 1, + ACTIONS(2570), 1, anon_sym_LPAREN2, - ACTIONS(2633), 1, + ACTIONS(2572), 1, sym__unquoted_pattern, - STATE(2535), 1, + STATE(2591), 1, sym_comment, - ACTIONS(2567), 16, + ACTIONS(1012), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205714,74 +207609,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [79057] = 4, - ACTIONS(3), 1, + [81060] = 8, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2536), 1, - sym_comment, - ACTIONS(1470), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, + ACTIONS(5193), 1, anon_sym_DOT2, - ACTIONS(1472), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(5397), 1, + sym__space, + STATE(2504), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2592), 1, + sym_comment, + STATE(2607), 1, + sym_path, + STATE(3004), 1, + sym_cell_path, + ACTIONS(5395), 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, - anon_sym_QMARK2, - anon_sym_BANG, - [79086] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2537), 1, - sym_comment, - ACTIONS(4682), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4684), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4686), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4678), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [79119] = 8, + anon_sym_RBRACE, + [81097] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5024), 1, + ACTIONS(5193), 1, anon_sym_DOT2, - ACTIONS(5247), 1, + ACTIONS(5401), 1, sym__space, - STATE(2430), 1, + STATE(2504), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2538), 1, + STATE(2593), 1, sym_comment, - STATE(2542), 1, + STATE(2607), 1, sym_path, - STATE(3037), 1, + STATE(3006), 1, sym_cell_path, - ACTIONS(5245), 13, + ACTIONS(5399), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205795,22 +207667,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [79156] = 8, + [81134] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5024), 1, + ACTIONS(5193), 1, anon_sym_DOT2, - ACTIONS(5251), 1, + ACTIONS(5405), 1, sym__space, - STATE(2430), 1, + STATE(2504), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2539), 1, + STATE(2594), 1, sym_comment, - STATE(2542), 1, + STATE(2607), 1, sym_path, - STATE(3036), 1, + STATE(3007), 1, sym_cell_path, - ACTIONS(5249), 13, + ACTIONS(5403), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205824,14 +207696,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [79193] = 4, + [81171] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5255), 1, + ACTIONS(5130), 1, anon_sym_DASH2, - STATE(2540), 1, + STATE(2595), 1, sym_comment, - ACTIONS(5253), 17, + ACTIONS(5128), 17, anon_sym_EQ, sym_identifier, sym__newline, @@ -205849,41 +207721,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [79222] = 4, + [81200] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1862), 1, + sym__space, + ACTIONS(5193), 1, + anon_sym_DOT2, + STATE(2504), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2596), 1, + sym_comment, + STATE(2607), 1, + sym_path, + STATE(3048), 1, + sym_cell_path, + ACTIONS(1864), 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, + [81237] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5259), 1, - anon_sym_DASH2, - STATE(2541), 1, + STATE(2597), 1, sym_comment, - ACTIONS(5257), 17, + ACTIONS(1521), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1523), 15, anon_sym_EQ, sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [79251] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [81266] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2542), 1, - sym_comment, - ACTIONS(1464), 3, + ACTIONS(1848), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1462), 15, + ACTIONS(5193), 1, + anon_sym_DOT2, + STATE(2504), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2598), 1, + sym_comment, + STATE(2607), 1, + sym_path, + STATE(3028), 1, + sym_cell_path, + ACTIONS(1850), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205897,21 +207804,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [79280] = 6, + [81303] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5261), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5263), 1, - aux_sym__immediate_decimal_token5, - STATE(2543), 1, + ACTIONS(1956), 1, + anon_sym_LPAREN2, + ACTIONS(1962), 1, + sym__unquoted_pattern, + ACTIONS(5407), 1, + anon_sym_DOT_DOT2, + STATE(2599), 1, sym_comment, - ACTIONS(1726), 2, + ACTIONS(1952), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1728), 14, + ACTIONS(5409), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1954), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205923,50 +207833,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym__unquoted_pattern, - [79313] = 4, + [81340] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2544), 1, + STATE(2600), 1, sym_comment, - ACTIONS(1474), 3, + ACTIONS(4792), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4794), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4796), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4790), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [81373] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5066), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1476), 15, + STATE(2601), 1, + sym_comment, + ACTIONS(5064), 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, - anon_sym_QMARK2, - anon_sym_BANG, - [79342] = 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + [81402] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_DOT2, - ACTIONS(5267), 1, - sym__space, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2545), 1, + ACTIONS(5411), 1, + anon_sym_DOT, + ACTIONS(5413), 1, + aux_sym__immediate_decimal_token5, + STATE(2602), 1, sym_comment, - STATE(3016), 1, - sym_cell_path, - ACTIONS(5265), 13, + ACTIONS(1728), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1730), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205980,16 +207911,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [79379] = 5, + sym__unquoted_pattern, + [81435] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(1730), 1, sym__unquoted_pattern, - STATE(2546), 1, + ACTIONS(5302), 1, + aux_sym__immediate_decimal_token5, + STATE(2603), 1, sym_comment, - ACTIONS(1018), 16, + ACTIONS(1728), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206001,21 +207934,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [79410] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1752), 1, anon_sym_LPAREN2, - STATE(2547), 1, + [81466] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2604), 1, sym_comment, - STATE(4634), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5269), 16, + ACTIONS(1738), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1740), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206027,52 +207961,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [79441] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [81495] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2548), 1, + ACTIONS(5415), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5417), 1, + aux_sym__immediate_decimal_token5, + STATE(2605), 1, sym_comment, - ACTIONS(1478), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1480), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(1738), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1740), 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, - anon_sym_QMARK2, - anon_sym_BANG, - [79470] = 8, + anon_sym_RBRACE, + sym__unquoted_pattern, + [81528] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5024), 1, - anon_sym_DOT2, - ACTIONS(5273), 1, - sym__space, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2549), 1, + STATE(2606), 1, sym_comment, - STATE(3005), 1, - sym_cell_path, - ACTIONS(5271), 13, + ACTIONS(1531), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1529), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206086,19 +208013,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [79507] = 6, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [81557] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5275), 1, - anon_sym_DOT, - ACTIONS(5277), 1, - aux_sym__immediate_decimal_token5, - STATE(2550), 1, + STATE(2607), 1, sym_comment, - ACTIONS(1736), 2, + ACTIONS(1554), 3, sym__space, - anon_sym_LPAREN2, - ACTIONS(1738), 14, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1552), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206112,20 +208038,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [81586] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1740), 1, sym__unquoted_pattern, - [79540] = 5, + STATE(2608), 1, + sym_comment, + ACTIONS(1738), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [81615] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5225), 1, - anon_sym_QMARK2, - STATE(2551), 1, + ACTIONS(5389), 1, + anon_sym_BANG, + STATE(2609), 1, sym_comment, - ACTIONS(1440), 4, + ACTIONS(1448), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1438), 13, + ACTIONS(1446), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206139,47 +208091,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [79571] = 4, + [81646] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2552), 1, + ACTIONS(1808), 1, + sym__unquoted_pattern, + STATE(2610), 1, sym_comment, - ACTIONS(1514), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1516), 15, - anon_sym_EQ, - sym_identifier, + ACTIONS(1806), 17, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [79600] = 8, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [81675] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1882), 1, + ACTIONS(1838), 1, sym__space, - ACTIONS(5024), 1, + ACTIONS(5193), 1, anon_sym_DOT2, - STATE(2430), 1, + STATE(2504), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, + STATE(2607), 1, sym_path, - STATE(2553), 1, + STATE(2611), 1, sym_comment, - STATE(2968), 1, + STATE(3111), 1, sym_cell_path, - ACTIONS(1884), 13, + ACTIONS(1840), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206193,22 +208145,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [79637] = 8, - ACTIONS(103), 1, + [81712] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1878), 1, - sym__space, - ACTIONS(5024), 1, + STATE(2612), 1, + sym_comment, + ACTIONS(1458), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, anon_sym_DOT2, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, + ACTIONS(1460), 15, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [81741] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5288), 1, + anon_sym_DOT2, + STATE(2552), 1, sym_path, - STATE(2554), 1, + STATE(2613), 1, sym_comment, - STATE(2987), 1, - sym_cell_path, - ACTIONS(1880), 13, + STATE(2616), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1490), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1492), 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, + [81776] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2614), 1, + sym_comment, + ACTIONS(1806), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1808), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206220,19 +208221,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, - [79674] = 5, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [81805] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, + ACTIONS(1846), 1, sym__unquoted_pattern, - ACTIONS(5158), 1, - aux_sym__immediate_decimal_token5, - STATE(2555), 1, + STATE(2615), 1, sym_comment, - ACTIONS(1736), 16, - ts_builtin_sym_end, + ACTIONS(1844), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206244,25 +208242,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, - [79705] = 7, + [81834] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5178), 1, + ACTIONS(5419), 1, anon_sym_DOT2, - STATE(2511), 1, + STATE(2552), 1, sym_path, - STATE(2556), 1, - sym_comment, - STATE(2575), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1458), 2, + ACTIONS(1494), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1460), 13, + STATE(2616), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1496), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -206276,22 +208275,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [79740] = 8, + [81867] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1862), 1, - sym__space, - ACTIONS(5024), 1, - anon_sym_DOT2, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2557), 1, + STATE(2617), 1, sym_comment, - STATE(2931), 1, - sym_cell_path, - ACTIONS(1864), 13, + ACTIONS(1844), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1846), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206303,16 +208298,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, - [79777] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1728), 1, + anon_sym_DOT_DOT2, sym__unquoted_pattern, - STATE(2558), 1, + [81896] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1882), 1, + sym__space, + ACTIONS(5193), 1, + anon_sym_DOT2, + STATE(2504), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2607), 1, + sym_path, + STATE(2618), 1, sym_comment, - ACTIONS(1726), 17, + STATE(2969), 1, + sym_cell_path, + ACTIONS(1884), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206326,22 +208329,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [79806] = 4, + [81933] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2559), 1, + STATE(2619), 1, sym_comment, - ACTIONS(1870), 5, - ts_builtin_sym_end, + ACTIONS(1527), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1872), 13, + ACTIONS(1525), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206353,26 +208350,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [79835] = 8, - ACTIONS(103), 1, + anon_sym_DOT2, + [81962] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(5279), 1, + ACTIONS(5381), 1, anon_sym_DOT_DOT2, - STATE(2560), 1, + STATE(2620), 1, sym_comment, - ACTIONS(1974), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5281), 2, + ACTIONS(5383), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1976), 11, + ACTIONS(1689), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206384,16 +208377,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, - [79872] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [81993] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2561), 1, + ACTIONS(5076), 1, + anon_sym_DASH2, + STATE(2621), 1, + sym_comment, + ACTIONS(5074), 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, + [82022] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5090), 1, + anon_sym_DASH2, + STATE(2622), 1, + sym_comment, + ACTIONS(5088), 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, + [82051] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5352), 1, + aux_sym__immediate_decimal_token5, + STATE(2623), 1, + sym_comment, + ACTIONS(1730), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1728), 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, + [82082] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2624), 1, sym_comment, - ACTIONS(1543), 3, + ACTIONS(1505), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1545), 15, + ACTIONS(1507), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -206409,17 +208481,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [79901] = 5, + [82111] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5227), 1, + ACTIONS(5422), 1, anon_sym_DOT_DOT2, - STATE(2562), 1, + STATE(2625), 1, sym_comment, - ACTIONS(5229), 2, + ACTIONS(5424), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 15, + ACTIONS(2098), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -206435,25 +208507,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [79932] = 6, + [82142] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2563), 1, + STATE(2626), 1, sym_comment, - ACTIONS(4694), 2, + ACTIONS(4769), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4696), 4, + ACTIONS(4771), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4698), 4, + ACTIONS(4773), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4692), 8, + ACTIONS(4765), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -206462,17 +208534,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [79965] = 5, + [82175] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5227), 1, + ACTIONS(5426), 1, anon_sym_DOT_DOT2, - STATE(2564), 1, + STATE(2627), 1, sym_comment, - ACTIONS(5229), 2, + ACTIONS(5428), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1706), 15, + ACTIONS(2136), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -206488,24 +208560,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [79996] = 8, - ACTIONS(103), 1, + [82206] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(5283), 1, + ACTIONS(5430), 1, anon_sym_DOT_DOT2, - STATE(2565), 1, + STATE(2628), 1, sym_comment, - ACTIONS(1964), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5285), 2, + ACTIONS(5432), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1966), 11, + ACTIONS(2144), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206517,41 +208583,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, - [80033] = 4, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [82237] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2566), 1, + ACTIONS(5434), 1, + anon_sym_DOT_DOT2, + STATE(2629), 1, sym_comment, - ACTIONS(1522), 3, - sym__space, + ACTIONS(5436), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1520), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [80062] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2567), 1, - sym_comment, - STATE(4634), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5269), 16, + ACTIONS(2152), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206563,21 +208609,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80093] = 4, + [82268] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2568), 1, + STATE(2630), 1, sym_comment, - ACTIONS(1466), 3, + ACTIONS(1509), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1468), 15, + ACTIONS(1511), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -206593,14 +208637,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [80122] = 4, - ACTIONS(3), 1, + [82297] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern, - STATE(2569), 1, + ACTIONS(5193), 1, + anon_sym_DOT2, + ACTIONS(5440), 1, + sym__space, + STATE(2504), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2607), 1, + sym_path, + STATE(2631), 1, sym_comment, - ACTIONS(1802), 17, + STATE(3013), 1, + sym_cell_path, + ACTIONS(5438), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206614,70 +208666,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [80151] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5289), 1, - anon_sym_DASH2, - STATE(2570), 1, - sym_comment, - ACTIONS(5287), 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, - [80180] = 4, + [82334] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1872), 1, - sym__unquoted_pattern, - STATE(2571), 1, - sym_comment, - ACTIONS(1870), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + ACTIONS(2554), 1, anon_sym_LPAREN2, - [80209] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1804), 1, + ACTIONS(2556), 1, sym__unquoted_pattern, - ACTIONS(5291), 1, - aux_sym__immediate_decimal_token5, - STATE(2572), 1, + STATE(2632), 1, sym_comment, - ACTIONS(1802), 16, + ACTIONS(1689), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -206693,48 +208691,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [80240] = 8, - ACTIONS(103), 1, + [82364] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1850), 1, - sym__space, - ACTIONS(5024), 1, - anon_sym_DOT2, - STATE(2430), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, - sym_path, - STATE(2573), 1, + STATE(2633), 1, sym_comment, - STATE(3050), 1, - sym_cell_path, - ACTIONS(1853), 13, + ACTIONS(1872), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1870), 15, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - [80277] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5227), 1, - anon_sym_DOT_DOT2, - STATE(2574), 1, - sym_comment, - ACTIONS(5229), 2, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5150), 15, + [82392] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5442), 1, + anon_sym_DOT, + ACTIONS(5444), 1, + aux_sym__immediate_decimal_token5, + STATE(2634), 1, + sym_comment, + ACTIONS(1728), 3, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1730), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206746,23 +208740,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, - [80308] = 6, + sym__unquoted_pattern, + [82424] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5293), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - ACTIONS(1524), 2, + ACTIONS(1954), 1, anon_sym_DASH2, + ACTIONS(1956), 1, + anon_sym_LPAREN2, + ACTIONS(1962), 1, + sym__unquoted_pattern_in_record, + ACTIONS(5446), 1, anon_sym_DOT_DOT2, - STATE(2575), 2, + STATE(2635), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 13, + ACTIONS(5448), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1952), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -206774,20 +208769,52 @@ 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, - [80341] = 5, + [82460] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5296), 1, - anon_sym_DOT_DOT2, - STATE(2576), 1, + ACTIONS(1474), 1, + anon_sym_COMMA, + ACTIONS(5318), 1, + anon_sym_EQ, + ACTIONS(5320), 1, + sym__newline, + ACTIONS(5322), 1, + anon_sym_COLON, + ACTIONS(5452), 1, + anon_sym_DASH2, + STATE(2636), 1, sym_comment, - ACTIONS(5298), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 15, - ts_builtin_sym_end, + STATE(2697), 1, + aux_sym_parameter_repeat1, + STATE(3427), 1, + aux_sym_parameter_repeat2, + STATE(4168), 1, + aux_sym__repeat_newline, + STATE(3384), 2, + sym_param_type, + sym_param_value, + ACTIONS(5450), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [82504] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4320), 1, + sym__space, + ACTIONS(5454), 1, + sym_long_flag_identifier, + ACTIONS(5456), 1, + anon_sym_EQ2, + STATE(2637), 1, + sym_comment, + STATE(3045), 1, + sym__flag_equals_value, + ACTIONS(4318), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206799,47 +208826,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_xor2, - anon_sym_or2, - [80372] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [82538] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5176), 1, + ACTIONS(5458), 1, aux_sym__immediate_decimal_token5, - STATE(2577), 1, + STATE(2638), 1, sym_comment, - ACTIONS(1738), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1736), 13, - anon_sym_EQ, + ACTIONS(1806), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1808), 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_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [80403] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + sym__unquoted_pattern, + [82568] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5300), 1, - anon_sym_DOT_DOT2, - STATE(2578), 1, + ACTIONS(5235), 1, + anon_sym_DOT2, + STATE(2554), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2639), 1, sym_comment, - ACTIONS(5302), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2100), 15, + STATE(2659), 1, + sym_path, + STATE(3162), 1, + sym_cell_path, + ACTIONS(1886), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1889), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206851,21 +208881,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, - [80434] = 5, - ACTIONS(3), 1, + [82604] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5304), 1, - anon_sym_DOT_DOT2, - STATE(2579), 1, + STATE(2640), 1, sym_comment, - ACTIONS(5306), 2, + ACTIONS(1527), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2076), 15, - ts_builtin_sym_end, + ACTIONS(1525), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206877,20 +208903,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, - [80465] = 5, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [82632] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5308), 1, - anon_sym_DOT_DOT2, - STATE(2580), 1, + ACTIONS(1846), 1, + sym__unquoted_pattern, + STATE(2641), 1, sym_comment, - ACTIONS(5310), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2120), 15, + ACTIONS(1844), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -206906,16 +208928,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80496] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1752), 1, anon_sym_LPAREN2, - STATE(2581), 1, + [82660] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2642), 1, sym_comment, - STATE(4634), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5269), 16, + ACTIONS(1870), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1872), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206929,23 +208952,21 @@ 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, - [80527] = 6, + anon_sym_DOT_DOT2, + [82688] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5312), 1, - anon_sym_DOT, - ACTIONS(5314), 1, + ACTIONS(5460), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5462), 1, aux_sym__immediate_decimal_token5, - STATE(2582), 1, + STATE(2643), 1, sym_comment, - ACTIONS(1736), 3, + ACTIONS(1738), 3, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, - ACTIONS(1738), 12, + ACTIONS(1740), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206958,15 +208979,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, sym__unquoted_pattern, - [80559] = 4, - ACTIONS(3), 1, + [82720] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern, - STATE(2583), 1, + ACTIONS(5235), 1, + anon_sym_DOT2, + STATE(2554), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2644), 1, sym_comment, - ACTIONS(1802), 16, + STATE(2659), 1, + sym_path, + STATE(3179), 1, + sym_cell_path, + ACTIONS(1882), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1884), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206978,59 +209007,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [80587] = 12, + [82756] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, - anon_sym_COMMA, - ACTIONS(5138), 1, - anon_sym_EQ, - ACTIONS(5140), 1, - sym__newline, - ACTIONS(5142), 1, - anon_sym_COLON, - ACTIONS(5318), 1, - anon_sym_DASH2, - STATE(2584), 1, + ACTIONS(1756), 1, + anon_sym_LPAREN2, + STATE(2645), 1, sym_comment, - STATE(2787), 1, - aux_sym_parameter_repeat1, - STATE(3394), 1, - aux_sym_parameter_repeat2, - STATE(4267), 1, - aux_sym__repeat_newline, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5316), 7, - sym_identifier, + STATE(4759), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5385), 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, - [80631] = 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, + [82786] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2585), 1, + STATE(2646), 1, sym_comment, - STATE(2611), 1, - sym_path, - STATE(3086), 1, - sym_cell_path, - ACTIONS(5247), 2, - ts_builtin_sym_end, + ACTIONS(1800), 3, sym__space, - ACTIONS(5245), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1802), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207042,17 +209053,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, - [80667] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [82814] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5320), 1, - aux_sym__immediate_decimal_token5, - STATE(2586), 1, + ACTIONS(5235), 1, + anon_sym_DOT2, + STATE(2554), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2647), 1, sym_comment, - ACTIONS(1802), 2, + STATE(2659), 1, + sym_path, + STATE(3184), 1, + sym_cell_path, + ACTIONS(1848), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1804), 14, + ACTIONS(1850), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207064,19 +209084,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, - sym__unquoted_pattern, - [80697] = 5, + [82850] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2595), 1, + ACTIONS(2570), 1, anon_sym_LPAREN2, - ACTIONS(2597), 1, + ACTIONS(2572), 1, sym__unquoted_pattern, - STATE(2587), 1, + STATE(2648), 1, sym_comment, - ACTIONS(1706), 15, + ACTIONS(994), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -207092,40 +209109,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80727] = 4, + [82880] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2588), 1, + STATE(2649), 1, sym_comment, - ACTIONS(1804), 3, + ACTIONS(1868), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1802), 14, + ACTIONS(1866), 15, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [80755] = 4, + [82908] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2589), 1, + STATE(2650), 1, sym_comment, - ACTIONS(1872), 3, + ACTIONS(1846), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(1870), 14, + ACTIONS(1844), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -207140,24 +209157,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [80783] = 9, - ACTIONS(103), 1, + [82936] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5322), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(1946), 1, + anon_sym_LPAREN2, + STATE(2651), 1, + sym_comment, + ACTIONS(1942), 15, + ts_builtin_sym_end, sym__newline, - ACTIONS(5324), 1, - sym__space, - ACTIONS(5328), 1, - anon_sym_COLON2, - ACTIONS(5330), 1, - anon_sym_EQ2, - STATE(2590), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [82966] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2652), 1, sym_comment, - STATE(2840), 1, - aux_sym_attribute_repeat1, - STATE(4171), 1, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(5326), 11, + ACTIONS(1531), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1529), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -207168,15 +209204,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_RBRACE, - [80821] = 4, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [82994] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1872), 1, + ACTIONS(2570), 1, + anon_sym_LPAREN2, + ACTIONS(2572), 1, sym__unquoted_pattern, - STATE(2591), 1, + STATE(2653), 1, sym_comment, - ACTIONS(1870), 16, + ACTIONS(1012), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -207192,32 +209231,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + [83024] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1756), 1, anon_sym_LPAREN2, - [80849] = 12, + STATE(2654), 1, + sym_comment, + STATE(4759), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5385), 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, + [83054] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, + ACTIONS(1474), 1, anon_sym_COMMA, - ACTIONS(5138), 1, + ACTIONS(5318), 1, anon_sym_EQ, - ACTIONS(5140), 1, + ACTIONS(5320), 1, sym__newline, - ACTIONS(5142), 1, + ACTIONS(5322), 1, anon_sym_COLON, - ACTIONS(5334), 1, + ACTIONS(5466), 1, anon_sym_DASH2, - STATE(2592), 1, + STATE(2655), 1, sym_comment, - STATE(2787), 1, + STATE(2697), 1, aux_sym_parameter_repeat1, - STATE(3384), 1, + STATE(3429), 1, aux_sym_parameter_repeat2, - STATE(4267), 1, + STATE(4168), 1, aux_sym__repeat_newline, - STATE(3256), 2, + STATE(3384), 2, sym_param_type, sym_param_value, - ACTIONS(5332), 7, + ACTIONS(5464), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -207225,48 +209288,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [80893] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2593), 1, - sym_comment, - STATE(4754), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5269), 15, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [80923] = 8, + [83098] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, + ACTIONS(5235), 1, anon_sym_DOT2, - STATE(2489), 1, + STATE(2554), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2594), 1, + STATE(2656), 1, sym_comment, - STATE(2611), 1, + STATE(2659), 1, sym_path, - STATE(3197), 1, + STATE(3198), 1, sym_cell_path, - ACTIONS(1878), 2, + ACTIONS(1838), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1880), 11, + ACTIONS(1840), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207278,14 +209316,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, - [80959] = 4, + [83134] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern, - STATE(2595), 1, + ACTIONS(1756), 1, + anon_sym_LPAREN2, + STATE(2657), 1, sym_comment, - ACTIONS(1726), 16, + STATE(4759), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5385), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -207301,17 +209341,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [80987] = 4, + [83164] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2596), 1, + ACTIONS(5235), 1, + anon_sym_DOT2, + STATE(2554), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2658), 1, sym_comment, - ACTIONS(1874), 3, + STATE(2659), 1, + sym_path, + STATE(3136), 1, + sym_cell_path, + ACTIONS(5397), 2, + ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1876), 14, + ACTIONS(5395), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207323,23 +209369,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [81015] = 7, + [83200] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5338), 1, - sym__space, - ACTIONS(5340), 1, - anon_sym_EQ2, - ACTIONS(5342), 1, - sym_short_flag_identifier, - STATE(2597), 1, + STATE(2659), 1, sym_comment, - STATE(3073), 1, - sym__flag_equals_value, - ACTIONS(5336), 13, + ACTIONS(1554), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1552), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207351,21 +209391,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, - [81049] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5346), 1, - sym__space, - ACTIONS(5348), 1, anon_sym_DOT_DOT2, - STATE(2598), 1, + anon_sym_DOT2, + [83228] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1808), 1, + sym__unquoted_pattern, + STATE(2660), 1, sym_comment, - ACTIONS(5350), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5344), 13, + ACTIONS(1806), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207377,25 +209413,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, - [81081] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [83256] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, + ACTIONS(5235), 1, anon_sym_DOT2, - STATE(2489), 1, + STATE(2554), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2599), 1, - sym_comment, - STATE(2611), 1, + STATE(2659), 1, sym_path, - STATE(3212), 1, + STATE(2661), 1, + sym_comment, + STATE(3215), 1, sym_cell_path, - ACTIONS(1866), 2, + ACTIONS(5377), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1868), 11, + ACTIONS(5375), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207407,16 +209445,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, - [81117] = 5, + [83292] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(1956), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(1962), 1, sym__unquoted_pattern, - STATE(2600), 1, + STATE(2662), 1, sym_comment, - ACTIONS(2575), 15, + ACTIONS(2574), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -207432,16 +209470,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81147] = 4, + [83322] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2601), 1, + ACTIONS(5235), 1, + anon_sym_DOT2, + STATE(2554), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2659), 1, + sym_path, + STATE(2663), 1, sym_comment, - ACTIONS(1641), 3, + STATE(3143), 1, + sym_cell_path, + ACTIONS(5401), 2, + ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1643), 14, + ACTIONS(5399), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207453,26 +209498,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, + [83358] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1474), 1, + anon_sym_COMMA, + ACTIONS(5318), 1, + anon_sym_EQ, + ACTIONS(5320), 1, + sym__newline, + ACTIONS(5322), 1, + anon_sym_COLON, + ACTIONS(5470), 1, + anon_sym_DASH2, + STATE(2664), 1, + sym_comment, + STATE(2682), 1, + aux_sym_parameter_repeat1, + STATE(3428), 1, + aux_sym_parameter_repeat2, + STATE(4168), 1, + aux_sym__repeat_newline, + STATE(3384), 2, + sym_param_type, + sym_param_value, + ACTIONS(5468), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [81175] = 8, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [83402] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2602), 1, + STATE(2665), 1, sym_comment, - STATE(2611), 1, - sym_path, - STATE(3143), 1, - sym_cell_path, - ACTIONS(1882), 2, - ts_builtin_sym_end, + ACTIONS(1866), 3, sym__space, - ACTIONS(1884), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1868), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207484,16 +209551,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, - [81211] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [83430] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(1956), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(1962), 1, sym__unquoted_pattern, - STATE(2603), 1, + STATE(2666), 1, sym_comment, - ACTIONS(1974), 15, + ACTIONS(1952), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -207509,71 +209579,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81241] = 6, - ACTIONS(103), 1, + [83460] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1706), 1, - sym__space, - ACTIONS(5348), 1, - anon_sym_DOT_DOT2, - STATE(2604), 1, + STATE(2667), 1, sym_comment, - ACTIONS(5350), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1619), 13, + ACTIONS(1740), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1738), 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, - [81273] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2152), 1, - sym__space, - ACTIONS(5352), 1, - anon_sym_DOT_DOT2, - STATE(2605), 1, - sym_comment, - ACTIONS(5354), 2, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2154), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [81305] = 6, + [83488] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2100), 1, - sym__space, - ACTIONS(5356), 1, - anon_sym_DOT_DOT2, - STATE(2606), 1, + ACTIONS(5235), 1, + anon_sym_DOT2, + STATE(2554), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2659), 1, + sym_path, + STATE(2668), 1, sym_comment, - ACTIONS(5358), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2102), 13, + STATE(3189), 1, + sym_cell_path, + ACTIONS(1862), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1864), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207585,21 +209631,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, - [81337] = 6, + [83524] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2076), 1, + ACTIONS(5456), 1, + anon_sym_EQ2, + ACTIONS(5474), 1, sym__space, - ACTIONS(5360), 1, - anon_sym_DOT_DOT2, - STATE(2607), 1, + ACTIONS(5476), 1, + sym_short_flag_identifier, + STATE(2669), 1, sym_comment, - ACTIONS(5362), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2078), 13, + STATE(3014), 1, + sym__flag_equals_value, + ACTIONS(5472), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207613,19 +209658,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [81369] = 6, + [83558] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2120), 1, + ACTIONS(5480), 1, sym__space, - ACTIONS(5364), 1, + ACTIONS(5482), 1, anon_sym_DOT_DOT2, - STATE(2608), 1, + STATE(2670), 1, sym_comment, - ACTIONS(5366), 2, + ACTIONS(5484), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2122), 13, + ACTIONS(5478), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207639,40 +209684,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [81401] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2609), 1, - sym_comment, - ACTIONS(1522), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1520), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [81429] = 4, + [83590] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2610), 1, + STATE(2671), 1, sym_comment, - ACTIONS(1728), 3, + ACTIONS(1808), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(1726), 14, + ACTIONS(1806), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -207687,17 +209708,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [81457] = 4, + [83618] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2611), 1, - sym_comment, - ACTIONS(1464), 4, - ts_builtin_sym_end, + ACTIONS(1689), 1, sym__space, + ACTIONS(5482), 1, + anon_sym_DOT_DOT2, + STATE(2672), 1, + sym_comment, + ACTIONS(5484), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1462), 13, + ACTIONS(1615), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207709,47 +209732,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_DOT2, - [81485] = 8, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [83650] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1966), 1, - anon_sym_DASH2, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(5368), 1, + ACTIONS(2098), 1, + sym__space, + ACTIONS(5486), 1, anon_sym_DOT_DOT2, - STATE(2612), 1, + STATE(2673), 1, sym_comment, - ACTIONS(5370), 2, + ACTIONS(5488), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1964), 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, - [81521] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2613), 1, - sym_comment, - STATE(4754), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5269), 15, - ts_builtin_sym_end, + ACTIONS(2100), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207761,20 +209758,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [81551] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [83682] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(2614), 1, + ACTIONS(2136), 1, + sym__space, + ACTIONS(5490), 1, + anon_sym_DOT_DOT2, + STATE(2674), 1, sym_comment, - ACTIONS(2523), 15, - ts_builtin_sym_end, + ACTIONS(5492), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2138), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207786,19 +209784,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [81581] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [83714] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2615), 1, - sym_comment, - ACTIONS(1822), 3, + ACTIONS(2144), 1, sym__space, + ACTIONS(5494), 1, + anon_sym_DOT_DOT2, + STATE(2675), 1, + sym_comment, + ACTIONS(5496), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1824), 14, + ACTIONS(2146), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207812,48 +209812,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [81609] = 4, - ACTIONS(3), 1, + [83746] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2616), 1, - sym_comment, - ACTIONS(1876), 2, - anon_sym_DASH2, + ACTIONS(2152), 1, + sym__space, + ACTIONS(5498), 1, anon_sym_DOT_DOT2, - ACTIONS(1874), 15, - anon_sym_EQ, - sym_identifier, + STATE(2676), 1, + sym_comment, + ACTIONS(5500), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2154), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [81637] = 8, + anon_sym_RBRACE, + [83778] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, + ACTIONS(5235), 1, anon_sym_DOT2, - STATE(2489), 1, + STATE(2554), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, + STATE(2659), 1, sym_path, - STATE(2617), 1, + STATE(2677), 1, sym_comment, - STATE(3084), 1, + STATE(3148), 1, sym_cell_path, - ACTIONS(1862), 2, + ACTIONS(5405), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1864), 11, + ACTIONS(5403), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207865,16 +209866,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, - [81673] = 5, + [83814] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, + ACTIONS(1641), 1, sym__unquoted_pattern, - STATE(2618), 1, + ACTIONS(2513), 1, + anon_sym_LPAREN2, + STATE(2678), 1, sym_comment, - ACTIONS(2567), 15, + ACTIONS(2509), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -207890,16 +209891,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81703] = 5, + [83844] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1474), 1, + anon_sym_COMMA, + ACTIONS(5318), 1, + anon_sym_EQ, + ACTIONS(5320), 1, + sym__newline, + ACTIONS(5322), 1, + anon_sym_COLON, + ACTIONS(5504), 1, + anon_sym_DASH2, + STATE(2636), 1, + aux_sym_parameter_repeat1, + STATE(2679), 1, + sym_comment, + STATE(3434), 1, + aux_sym_parameter_repeat2, + STATE(4168), 1, + aux_sym__repeat_newline, + STATE(3384), 2, + sym_param_type, + sym_param_value, + ACTIONS(5502), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [83888] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2639), 1, + ACTIONS(2529), 1, anon_sym_LPAREN2, - ACTIONS(2641), 1, + ACTIONS(2531), 1, sym__unquoted_pattern, - STATE(2619), 1, + STATE(2680), 1, sym_comment, - ACTIONS(2635), 15, + ACTIONS(2525), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -207915,14 +209948,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81733] = 4, + [83918] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, + ACTIONS(2566), 1, + anon_sym_LPAREN2, + ACTIONS(2568), 1, sym__unquoted_pattern, - STATE(2620), 1, + STATE(2681), 1, sym_comment, - ACTIONS(968), 16, + ACTIONS(2562), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207934,36 +209970,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, - [81761] = 12, + [83948] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, + ACTIONS(1474), 1, anon_sym_COMMA, - ACTIONS(5138), 1, + ACTIONS(5318), 1, anon_sym_EQ, - ACTIONS(5140), 1, + ACTIONS(5320), 1, sym__newline, - ACTIONS(5142), 1, + ACTIONS(5322), 1, anon_sym_COLON, - ACTIONS(5374), 1, + ACTIONS(5508), 1, anon_sym_DASH2, - STATE(2584), 1, - aux_sym_parameter_repeat1, - STATE(2621), 1, + STATE(2682), 1, sym_comment, - STATE(3391), 1, + STATE(2697), 1, + aux_sym_parameter_repeat1, + STATE(3440), 1, aux_sym_parameter_repeat2, - STATE(4267), 1, + STATE(4168), 1, aux_sym__repeat_newline, - STATE(3256), 2, + STATE(3384), 2, sym_param_type, sym_param_value, - ACTIONS(5372), 7, + ACTIONS(5506), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -207971,16 +210005,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [81805] = 4, + [83992] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2622), 1, + STATE(2683), 1, sym_comment, - ACTIONS(1886), 3, + ACTIONS(1661), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1888), 14, + ACTIONS(1663), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207995,100 +210029,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [81833] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1494), 1, - anon_sym_COMMA, - ACTIONS(5138), 1, - anon_sym_EQ, - ACTIONS(5140), 1, - sym__newline, - ACTIONS(5142), 1, - anon_sym_COLON, - ACTIONS(5378), 1, - anon_sym_DASH2, - STATE(2623), 1, - sym_comment, - STATE(2787), 1, - aux_sym_parameter_repeat1, - STATE(3367), 1, - aux_sym_parameter_repeat2, - STATE(4267), 1, - aux_sym__repeat_newline, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5376), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [81877] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2624), 1, - sym_comment, - ACTIONS(1888), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1886), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [81905] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2625), 1, - sym_comment, - STATE(3094), 1, - sym_cell_path, - ACTIONS(1858), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1860), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [81941] = 5, + [84020] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(2327), 1, sym__unquoted_pattern, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(2626), 1, + STATE(2684), 1, sym_comment, - ACTIONS(1964), 15, + ACTIONS(2325), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -208104,47 +210052,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81971] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2627), 1, - sym_comment, - ACTIONS(1558), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1556), 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, - [81999] = 8, + anon_sym_LPAREN2, + [84048] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, + ACTIONS(5235), 1, anon_sym_DOT2, - STATE(2489), 1, + STATE(2554), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, + STATE(2659), 1, sym_path, - STATE(2628), 1, + STATE(2685), 1, sym_comment, - STATE(3122), 1, + STATE(3244), 1, sym_cell_path, - ACTIONS(5233), 2, + ACTIONS(1854), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5231), 11, + ACTIONS(1856), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208156,20 +210081,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, - [82035] = 6, - ACTIONS(103), 1, + [84084] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5380), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5382), 1, - aux_sym__immediate_decimal_token5, - STATE(2629), 1, + ACTIONS(1766), 1, + sym__unquoted_pattern, + STATE(2686), 1, sym_comment, - ACTIONS(1726), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1728), 12, + ACTIONS(890), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208181,24 +210100,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, - sym__unquoted_pattern, - [82067] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [84112] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2630), 1, + STATE(2687), 1, sym_comment, - STATE(3097), 1, - sym_cell_path, - ACTIONS(5251), 2, - ts_builtin_sym_end, + ACTIONS(1574), 3, sym__space, - ACTIONS(5249), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1572), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208210,80 +210126,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, - [82103] = 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [84140] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, - anon_sym_COMMA, - ACTIONS(5138), 1, - anon_sym_EQ, - ACTIONS(5140), 1, - sym__newline, - ACTIONS(5142), 1, - anon_sym_COLON, - ACTIONS(5386), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_record, + ACTIONS(1944), 1, anon_sym_DASH2, - STATE(2592), 1, - aux_sym_parameter_repeat1, - STATE(2631), 1, + ACTIONS(1946), 1, + anon_sym_LPAREN2, + ACTIONS(5510), 1, + anon_sym_DOT_DOT2, + STATE(2688), 1, sym_comment, - STATE(3363), 1, - aux_sym_parameter_repeat2, - STATE(4267), 1, - aux_sym__repeat_newline, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5384), 7, + ACTIONS(5512), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1942), 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, - [82147] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2632), 1, - sym_comment, - STATE(4754), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5269), 15, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [82177] = 8, + [84176] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, + ACTIONS(5235), 1, anon_sym_DOT2, - STATE(2489), 1, + STATE(2554), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, + STATE(2659), 1, sym_path, - STATE(2633), 1, + STATE(2689), 1, sym_comment, - STATE(3213), 1, + STATE(3246), 1, sym_cell_path, - ACTIONS(1850), 2, + ACTIONS(5440), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1853), 11, + ACTIONS(5438), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208295,21 +210185,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, - [82213] = 7, + [84212] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4303), 1, + ACTIONS(5514), 1, + sym__newline, + ACTIONS(5516), 1, sym__space, - ACTIONS(5340), 1, + ACTIONS(5520), 1, + anon_sym_COLON2, + ACTIONS(5522), 1, anon_sym_EQ2, - ACTIONS(5388), 1, - sym_long_flag_identifier, - STATE(2634), 1, + STATE(2690), 1, sym_comment, - STATE(2933), 1, - sym__flag_equals_value, - ACTIONS(4301), 13, - sym__newline, + STATE(2910), 1, + aux_sym_attribute_repeat1, + STATE(4375), 1, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(5518), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208320,25 +210213,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, - [82247] = 8, + [84250] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2635), 1, + ACTIONS(5413), 1, + aux_sym__immediate_decimal_token5, + STATE(2691), 1, sym_comment, - STATE(3123), 1, - sym_cell_path, - ACTIONS(5273), 2, - ts_builtin_sym_end, + ACTIONS(1728), 2, sym__space, - ACTIONS(5271), 11, + anon_sym_LPAREN2, + ACTIONS(1730), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208350,23 +210236,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, - [82283] = 8, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym__unquoted_pattern, + [84280] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(2636), 1, + ACTIONS(1740), 1, + sym__unquoted_pattern, + STATE(2692), 1, sym_comment, - STATE(3124), 1, - sym_cell_path, - ACTIONS(5267), 2, + ACTIONS(1738), 16, ts_builtin_sym_end, - sym__space, - ACTIONS(5265), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208378,23 +210259,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, - [82319] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [84308] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1976), 1, + ACTIONS(1856), 1, anon_sym_DASH2, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - ACTIONS(5390), 1, - anon_sym_DOT_DOT2, - STATE(2637), 1, + ACTIONS(5288), 1, + anon_sym_DOT2, + STATE(2552), 1, + sym_path, + STATE(2613), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2693), 1, sym_comment, - ACTIONS(5392), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 11, + STATE(2948), 1, + sym_cell_path, + ACTIONS(1854), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -208406,17 +210290,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [82355] = 5, - ACTIONS(103), 1, + [84343] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5277), 1, - aux_sym__immediate_decimal_token5, - STATE(2638), 1, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(2694), 1, sym_comment, - ACTIONS(1736), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1738), 14, + ACTIONS(5524), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208429,20 +210310,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, - sym__unquoted_pattern, - [82385] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [84370] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2639), 1, - sym_comment, - ACTIONS(994), 15, - ts_builtin_sym_end, + ACTIONS(5526), 1, sym__newline, + ACTIONS(5531), 1, + anon_sym_and2, + STATE(2695), 1, + sym_comment, + STATE(2842), 1, + aux_sym__repeat_newline, + ACTIONS(5529), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208453,21 +210335,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, - [82415] = 4, - ACTIONS(103), 1, + [84401] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2640), 1, - sym_comment, - ACTIONS(1537), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1535), 13, + ACTIONS(5533), 1, sym__newline, + ACTIONS(5538), 1, + anon_sym_and2, + STATE(2696), 1, + sym_comment, + STATE(2843), 1, + aux_sym__repeat_newline, + ACTIONS(5536), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208478,19 +210360,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_DOT_DOT2, - anon_sym_DOT2, - [82443] = 5, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [84432] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5542), 1, + anon_sym_EQ, + ACTIONS(5545), 1, + sym__newline, + ACTIONS(5548), 1, + anon_sym_COLON, + ACTIONS(5551), 1, + anon_sym_DASH2, + STATE(4168), 1, + aux_sym__repeat_newline, + STATE(2697), 2, + sym_comment, + aux_sym_parameter_repeat1, + STATE(3384), 2, + sym_param_type, + sym_param_value, + ACTIONS(5540), 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, + [84469] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2641), 1, + ACTIONS(5555), 1, + anon_sym_and2, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(2698), 1, sym_comment, - ACTIONS(1018), 15, - ts_builtin_sym_end, + ACTIONS(5553), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208502,18 +210412,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, + anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [82473] = 4, + [84498] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2503), 1, - sym__unquoted_pattern, - STATE(2642), 1, + ACTIONS(5557), 1, + anon_sym_and2, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(2699), 1, sym_comment, - ACTIONS(2501), 16, - ts_builtin_sym_end, + ACTIONS(5524), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208525,18 +210436,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, - anon_sym_LPAREN2, - [82501] = 4, - ACTIONS(3), 1, + [84527] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2643), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(1942), 1, + sym__space, + ACTIONS(1946), 1, + anon_sym_LPAREN2, + STATE(2700), 1, sym_comment, - ACTIONS(5394), 15, + ACTIONS(1944), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208549,20 +210463,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, - [82528] = 4, + anon_sym_RBRACE, + [84558] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2644), 1, + STATE(2701), 1, sym_comment, - ACTIONS(1886), 4, + ACTIONS(1870), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1888), 12, + ACTIONS(1872), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208575,21 +210487,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, - [82555] = 6, - ACTIONS(103), 1, + [84585] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5396), 1, - anon_sym_DOT_DOT2, - STATE(2645), 1, - sym_comment, - ACTIONS(1706), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5398), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1619), 11, + ACTIONS(2834), 1, sym__newline, + ACTIONS(5531), 1, + anon_sym_and2, + ACTIONS(5559), 1, + anon_sym_xor2, + STATE(2702), 1, + sym_comment, + STATE(2844), 1, + aux_sym__repeat_newline, + ACTIONS(5529), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208600,20 +210511,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, - [82586] = 7, + anon_sym_RPAREN, + anon_sym_or2, + [84618] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2834), 1, sym__newline, - ACTIONS(5402), 1, + ACTIONS(5538), 1, anon_sym_and2, - ACTIONS(5404), 1, + ACTIONS(5561), 1, anon_sym_xor2, - STATE(2646), 1, + STATE(2703), 1, sym_comment, - STATE(2678), 1, + STATE(2845), 1, aux_sym__repeat_newline, - ACTIONS(5400), 12, + ACTIONS(5536), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208626,18 +210539,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [82619] = 6, + [84651] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5555), 1, anon_sym_and2, - ACTIONS(5410), 1, + ACTIONS(5563), 1, anon_sym_xor2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2647), 1, + STATE(2704), 1, sym_comment, - ACTIONS(5406), 13, + ACTIONS(5553), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208651,18 +210564,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [82650] = 6, - ACTIONS(3), 1, + [84682] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - ACTIONS(5416), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2648), 1, + STATE(2705), 1, sym_comment, - ACTIONS(5412), 13, + ACTIONS(1574), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1572), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208674,16 +210586,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, - [82681] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [84709] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2643), 1, - aux_sym__repeat_newline, - STATE(2649), 1, + ACTIONS(1756), 1, + anon_sym_LPAREN2, + ACTIONS(5567), 1, + sym__space, + STATE(2706), 1, sym_comment, - ACTIONS(5418), 15, + STATE(4725), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5565), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208696,17 +210611,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, - [82708] = 4, + anon_sym_RBRACE, + [84740] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2650), 1, - sym_comment, - STATE(2684), 1, + ACTIONS(5557), 1, + anon_sym_and2, + ACTIONS(5569), 1, + anon_sym_xor2, + STATE(517), 1, aux_sym__repeat_newline, - ACTIONS(5420), 15, + STATE(2707), 1, + sym_comment, + ACTIONS(5524), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208719,42 +210636,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, - [82735] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5422), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5424), 1, - aux_sym__immediate_decimal_token5, - STATE(2651), 1, - sym_comment, - ACTIONS(1728), 3, - sym_identifier, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1726), 11, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [82766] = 4, + [84771] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2652), 1, + STATE(2708), 1, sym_comment, - ACTIONS(5426), 15, + ACTIONS(5571), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208770,14 +210660,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [82793] = 4, + [84798] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2653), 1, + STATE(2709), 1, sym_comment, - ACTIONS(5428), 15, + ACTIONS(5573), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208793,18 +210683,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [82820] = 6, + [84825] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5555), 1, anon_sym_and2, - ACTIONS(5430), 1, - sym__newline, - STATE(2654), 1, - sym_comment, - STATE(2685), 1, + STATE(517), 1, aux_sym__repeat_newline, - ACTIONS(5418), 13, + STATE(2710), 1, + sym_comment, + ACTIONS(5571), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208818,18 +210707,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [82851] = 6, + [84854] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5433), 1, - sym__newline, - ACTIONS(5436), 1, - anon_sym_and2, - STATE(2655), 1, + ACTIONS(1830), 1, + sym__unquoted_pattern, + STATE(2711), 1, sym_comment, - STATE(2686), 1, - aux_sym__repeat_newline, - ACTIONS(5420), 13, + ACTIONS(890), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208840,19 +210727,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_and2, anon_sym_xor2, anon_sym_or2, - [82882] = 5, - ACTIONS(3), 1, + [84881] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2656), 1, + ACTIONS(5522), 1, + anon_sym_EQ2, + ACTIONS(5575), 1, + sym__space, + STATE(2712), 1, sym_comment, - ACTIONS(5426), 14, + STATE(2910), 1, + aux_sym_attribute_repeat1, + ACTIONS(5518), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208865,18 +210754,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, - [82911] = 5, + anon_sym_RBRACE, + [84912] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5557), 1, anon_sym_and2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2657), 1, + STATE(2713), 1, sym_comment, - ACTIONS(5428), 14, + ACTIONS(5573), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208891,20 +210779,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [82940] = 7, + [84941] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, + ACTIONS(5555), 1, anon_sym_and2, - ACTIONS(5404), 1, + ACTIONS(5563), 1, anon_sym_xor2, - STATE(2658), 1, - sym_comment, - STATE(2687), 1, + STATE(517), 1, aux_sym__repeat_newline, - ACTIONS(5418), 12, + STATE(2714), 1, + sym_comment, + ACTIONS(5571), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208917,20 +210804,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [82973] = 7, + [84972] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, + ACTIONS(5557), 1, anon_sym_and2, - ACTIONS(5438), 1, + ACTIONS(5569), 1, anon_sym_xor2, - STATE(2659), 1, - sym_comment, - STATE(2688), 1, + STATE(517), 1, aux_sym__repeat_newline, - ACTIONS(5420), 12, + STATE(2715), 1, + sym_comment, + ACTIONS(5573), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -208943,18 +210829,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [83006] = 6, + [85003] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2660), 1, + STATE(2716), 1, sym_comment, - ACTIONS(5426), 13, + STATE(2846), 1, + aux_sym__repeat_newline, + ACTIONS(5577), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208967,19 +210849,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, - [83037] = 6, + [85030] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - ACTIONS(5416), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2661), 1, + STATE(2717), 1, sym_comment, - ACTIONS(5428), 13, + STATE(2855), 1, + aux_sym__repeat_newline, + ACTIONS(5579), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208992,15 +210872,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, - [83068] = 4, + [85057] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2662), 1, + STATE(2718), 1, sym_comment, - ACTIONS(5440), 15, + ACTIONS(5581), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209016,14 +210898,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83095] = 4, + [85084] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2663), 1, + STATE(2719), 1, sym_comment, - ACTIONS(5442), 15, + ACTIONS(5583), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209039,17 +210921,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83122] = 5, + [85111] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5531), 1, anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2664), 1, - sym_comment, - ACTIONS(5440), 14, + ACTIONS(5585), 1, sym__newline, + STATE(2720), 1, + sym_comment, + STATE(2862), 1, + aux_sym__repeat_newline, + ACTIONS(5577), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209063,16 +210946,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [83151] = 5, + [85142] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5555), 1, anon_sym_and2, - STATE(540), 1, + ACTIONS(5563), 1, + anon_sym_xor2, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2665), 1, + STATE(2721), 1, sym_comment, - ACTIONS(5442), 14, + ACTIONS(5588), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209085,20 +210970,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, - [83180] = 6, - ACTIONS(3), 1, + [85173] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2666), 1, + STATE(2722), 1, sym_comment, - ACTIONS(5440), 13, + ACTIONS(1661), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1663), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209110,20 +210993,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_or2, - [83211] = 6, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [85200] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - ACTIONS(5416), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2667), 1, + ACTIONS(5590), 1, + anon_sym_EQ2, + ACTIONS(5592), 1, + sym_short_flag_identifier, + STATE(2723), 1, sym_comment, - ACTIONS(5442), 13, + STATE(3208), 1, + sym__flag_equals_value, + ACTIONS(5474), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5472), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209135,16 +211020,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, - [83242] = 4, - ACTIONS(3), 1, + [85233] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2668), 1, + ACTIONS(5594), 1, + anon_sym_DOT_DOT2, + STATE(2724), 1, sym_comment, - STATE(2689), 1, - aux_sym__repeat_newline, - ACTIONS(5444), 15, + ACTIONS(5480), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5596), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5478), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209156,19 +211045,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, - [83269] = 4, + [85264] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2669), 1, + ACTIONS(5538), 1, + anon_sym_and2, + ACTIONS(5598), 1, + sym__newline, + STATE(2725), 1, sym_comment, - STATE(2690), 1, + STATE(2785), 1, aux_sym__repeat_newline, - ACTIONS(5446), 15, - sym__newline, + ACTIONS(5579), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209180,17 +211068,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, - [83296] = 4, + [85295] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + ACTIONS(5555), 1, + anon_sym_and2, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2670), 1, + STATE(2726), 1, sym_comment, - ACTIONS(5448), 15, + ACTIONS(5581), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209203,17 +211092,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, - [83323] = 4, + [85324] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + ACTIONS(5557), 1, + anon_sym_and2, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2671), 1, + STATE(2727), 1, sym_comment, - ACTIONS(5450), 15, + ACTIONS(5583), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209226,21 +211116,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, - [83350] = 6, + [85353] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5538), 1, anon_sym_and2, - ACTIONS(5452), 1, + ACTIONS(5601), 1, sym__newline, - STATE(2672), 1, + STATE(2728), 1, sym_comment, - STATE(2691), 1, + STATE(2779), 1, aux_sym__repeat_newline, - ACTIONS(5444), 13, + ACTIONS(5604), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209254,18 +211143,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [83381] = 6, + [85384] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5455), 1, + ACTIONS(2834), 1, sym__newline, - STATE(2673), 1, - sym_comment, - STATE(2692), 1, + ACTIONS(5531), 1, + anon_sym_and2, + ACTIONS(5559), 1, + anon_sym_xor2, + STATE(2721), 1, aux_sym__repeat_newline, - ACTIONS(5446), 13, + STATE(2729), 1, + sym_comment, + ACTIONS(5577), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209277,19 +211168,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, - [83412] = 5, + [85417] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(5538), 1, anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2674), 1, + ACTIONS(5561), 1, + anon_sym_xor2, + STATE(2730), 1, sym_comment, - ACTIONS(5448), 14, - sym__newline, + STATE(2811), 1, + aux_sym__repeat_newline, + ACTIONS(5579), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209301,18 +211194,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, - [83441] = 5, + [85450] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5555), 1, anon_sym_and2, - STATE(540), 1, + ACTIONS(5563), 1, + anon_sym_xor2, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2675), 1, + STATE(2731), 1, sym_comment, - ACTIONS(5450), 14, + ACTIONS(5581), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209325,22 +211219,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, - [83470] = 7, + [85481] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2834), 1, sym__newline, - ACTIONS(5402), 1, + ACTIONS(5531), 1, anon_sym_and2, - ACTIONS(5404), 1, + ACTIONS(5559), 1, anon_sym_xor2, - STATE(2676), 1, + STATE(2732), 1, sym_comment, - STATE(2693), 1, + STATE(2803), 1, aux_sym__repeat_newline, - ACTIONS(5444), 12, + ACTIONS(5606), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209353,20 +211246,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [83503] = 7, + [85514] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, + ACTIONS(5557), 1, anon_sym_and2, - ACTIONS(5438), 1, + ACTIONS(5569), 1, anon_sym_xor2, - STATE(2677), 1, - sym_comment, - STATE(2694), 1, + STATE(517), 1, aux_sym__repeat_newline, - ACTIONS(5446), 12, + STATE(2733), 1, + sym_comment, + ACTIONS(5583), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209379,18 +211271,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [83536] = 6, - ACTIONS(3), 1, + [85545] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2678), 1, + STATE(2734), 1, + sym_comment, + ACTIONS(1866), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1868), 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, + [85572] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1956), 1, + anon_sym_LPAREN2, + ACTIONS(1962), 1, + sym__unquoted_pattern, + ACTIONS(2574), 1, + sym__space, + STATE(2735), 1, sym_comment, - ACTIONS(5448), 13, + ACTIONS(2576), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209403,20 +211318,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [83567] = 6, + anon_sym_RBRACE, + [85603] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1952), 1, + sym__space, + ACTIONS(1956), 1, + anon_sym_LPAREN2, + ACTIONS(1962), 1, + sym__unquoted_pattern, + STATE(2736), 1, + sym_comment, + ACTIONS(1954), 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, + [85634] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(5531), 1, anon_sym_and2, - ACTIONS(5416), 1, + ACTIONS(5559), 1, anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2679), 1, + ACTIONS(5610), 1, + anon_sym_or2, + STATE(2737), 1, sym_comment, - ACTIONS(5450), 13, - sym__newline, + STATE(2864), 1, + aux_sym__repeat_newline, + ACTIONS(5608), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209428,21 +211371,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_or2, - [83598] = 7, + [85669] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2834), 1, sym__newline, - ACTIONS(5436), 1, + ACTIONS(5538), 1, anon_sym_and2, - ACTIONS(5438), 1, + ACTIONS(5561), 1, anon_sym_xor2, - STATE(2679), 1, - aux_sym__repeat_newline, - STATE(2680), 1, + ACTIONS(5614), 1, + anon_sym_or2, + STATE(2738), 1, sym_comment, - ACTIONS(5458), 12, + STATE(2812), 1, + aux_sym__repeat_newline, + ACTIONS(5612), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209454,19 +211398,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_or2, - [83631] = 6, + [85704] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1736), 1, + ACTIONS(1728), 1, sym__space, - ACTIONS(5075), 1, + ACTIONS(5225), 1, aux_sym__immediate_decimal_token5, - ACTIONS(5460), 1, + ACTIONS(5616), 1, anon_sym_DOT, - STATE(2681), 1, + STATE(2739), 1, sym_comment, - ACTIONS(1738), 13, + ACTIONS(1730), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209480,20 +211423,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [83662] = 6, - ACTIONS(103), 1, + [85735] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5462), 1, - anon_sym_DOT_DOT2, - STATE(2682), 1, + ACTIONS(5620), 1, + anon_sym_and2, + ACTIONS(5622), 1, + anon_sym_xor2, + ACTIONS(5624), 1, + anon_sym_or2, + STATE(2740), 1, sym_comment, - ACTIONS(2152), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5464), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2154), 11, + ACTIONS(5618), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209505,39 +211446,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, - [83693] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5466), 1, - anon_sym_DOT, - ACTIONS(5468), 1, - aux_sym__immediate_decimal_token5, - STATE(2683), 1, - sym_comment, - ACTIONS(1738), 3, - sym_identifier, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1736), 11, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - 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, - [83724] = 4, + anon_sym_RBRACE, + [85766] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2684), 1, + ACTIONS(5628), 1, + anon_sym_and2, + ACTIONS(5630), 1, + anon_sym_xor2, + ACTIONS(5632), 1, + anon_sym_or2, + STATE(2741), 1, sym_comment, - ACTIONS(5470), 15, + ACTIONS(5626), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209550,19 +211472,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, - [83751] = 5, + anon_sym_RBRACE, + [85797] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5555), 1, anon_sym_and2, - STATE(540), 1, + ACTIONS(5563), 1, + anon_sym_xor2, + ACTIONS(5636), 1, + anon_sym_or2, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2685), 1, + STATE(2742), 1, sym_comment, - ACTIONS(5394), 14, + ACTIONS(5634), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209575,18 +211499,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_xor2, - anon_sym_or2, - [83780] = 5, + [85830] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2686), 1, + STATE(2743), 1, sym_comment, - ACTIONS(5470), 14, + ACTIONS(4767), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209599,20 +211517,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, - [83809] = 6, - ACTIONS(3), 1, + [85855] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2687), 1, + ACTIONS(5638), 1, + aux_sym__immediate_decimal_token5, + STATE(2744), 1, sym_comment, - ACTIONS(5394), 13, + ACTIONS(1806), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1808), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209624,21 +211544,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_or2, - [83840] = 6, + sym__unquoted_pattern, + [85884] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(5538), 1, anon_sym_and2, - ACTIONS(5416), 1, + ACTIONS(5561), 1, anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2688), 1, + STATE(2745), 1, sym_comment, - ACTIONS(5470), 13, - sym__newline, + STATE(2804), 1, + aux_sym__repeat_newline, + ACTIONS(5640), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -209651,14 +211571,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [83871] = 4, + [85917] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2689), 1, + STATE(2746), 1, sym_comment, - ACTIONS(5472), 15, + ACTIONS(5308), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209671,17 +211589,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, - [83898] = 4, - ACTIONS(3), 1, + [85942] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2690), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2509), 1, + sym__space, + ACTIONS(2513), 1, + anon_sym_LPAREN2, + STATE(2747), 1, sym_comment, - ACTIONS(5474), 15, + ACTIONS(2511), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209694,19 +211617,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, - [83925] = 5, + anon_sym_RBRACE, + [85973] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2691), 1, + STATE(2748), 1, sym_comment, - ACTIONS(5472), 14, + ACTIONS(5385), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209719,18 +211636,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, - [83954] = 5, + [85998] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2692), 1, + STATE(2749), 1, sym_comment, - ACTIONS(5474), 14, + ACTIONS(5308), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209743,20 +211658,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, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83983] = 6, + [86023] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2693), 1, + ACTIONS(5642), 1, + anon_sym_DOT, + ACTIONS(5644), 1, + aux_sym__immediate_decimal_token5, + STATE(2750), 1, sym_comment, - ACTIONS(5472), 13, + ACTIONS(1730), 3, + sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1728), 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, + [86054] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2751), 1, + sym_comment, + ACTIONS(5385), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209769,19 +211705,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, - [84014] = 6, + [86079] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - ACTIONS(5416), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2694), 1, + STATE(2752), 1, sym_comment, - ACTIONS(5474), 13, + ACTIONS(5308), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209794,19 +211727,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, - [84045] = 6, + [86104] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1706), 1, + ACTIONS(2525), 1, sym__space, - ACTIONS(2595), 1, + ACTIONS(2529), 1, anon_sym_LPAREN2, - ACTIONS(2597), 1, + ACTIONS(2531), 1, sym__unquoted_pattern, - STATE(2695), 1, + STATE(2753), 1, sym_comment, - ACTIONS(1619), 13, + ACTIONS(2527), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209820,18 +211756,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [84076] = 5, - ACTIONS(103), 1, + [86135] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5314), 1, - aux_sym__immediate_decimal_token5, - STATE(2696), 1, + STATE(2754), 1, sym_comment, - ACTIONS(1736), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1738), 12, + ACTIONS(5385), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209843,15 +211773,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - sym__unquoted_pattern, - [84105] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86160] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2697), 1, + STATE(2755), 1, sym_comment, - STATE(2806), 1, - aux_sym__repeat_newline, - ACTIONS(5476), 15, + ACTIONS(5646), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209864,17 +211796,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, - [84132] = 4, + [86185] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2698), 1, + STATE(2756), 1, sym_comment, - STATE(2807), 1, - aux_sym__repeat_newline, - ACTIONS(5478), 15, + ACTIONS(5648), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209887,21 +211818,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [84159] = 6, - ACTIONS(103), 1, + [86210] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1964), 1, - sym__space, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(2699), 1, + ACTIONS(5620), 1, + anon_sym_and2, + STATE(2757), 1, sym_comment, - ACTIONS(1966), 13, + ACTIONS(5646), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209915,14 +211843,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [84190] = 4, + anon_sym_xor2, + anon_sym_or2, + [86237] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2700), 1, + ACTIONS(5628), 1, + anon_sym_and2, + STATE(2758), 1, sym_comment, - ACTIONS(5480), 15, + ACTIONS(5648), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209935,20 +211865,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_RBRACE, anon_sym_xor2, anon_sym_or2, - [84217] = 4, - ACTIONS(103), 1, + [86264] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2701), 1, + ACTIONS(5620), 1, + anon_sym_and2, + ACTIONS(5622), 1, + anon_sym_xor2, + STATE(2759), 1, sym_comment, - ACTIONS(1558), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1556), 12, + ACTIONS(5646), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209960,15 +211889,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, - [84244] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_or2, + [86293] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2702), 1, + ACTIONS(5628), 1, + anon_sym_and2, + ACTIONS(5630), 1, + anon_sym_xor2, + STATE(2760), 1, sym_comment, - ACTIONS(5482), 15, + ACTIONS(5648), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209981,21 +211914,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_RBRACE, anon_sym_or2, - [84271] = 6, + [86322] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5484), 1, - sym__newline, - STATE(2703), 1, + STATE(2761), 1, sym_comment, - STATE(2811), 1, - aux_sym__repeat_newline, - ACTIONS(5476), 13, + ACTIONS(5650), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210007,22 +211934,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, - [84302] = 6, + [86347] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5487), 1, - anon_sym_DOT_DOT2, - STATE(2704), 1, + ACTIONS(5444), 1, + aux_sym__immediate_decimal_token5, + STATE(2762), 1, sym_comment, - ACTIONS(2100), 2, + ACTIONS(1728), 3, ts_builtin_sym_end, sym__space, - ACTIONS(5489), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2102), 11, + anon_sym_LPAREN2, + ACTIONS(1730), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210034,21 +211961,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, - [84333] = 6, - ACTIONS(103), 1, + sym__unquoted_pattern, + [86376] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5491), 1, - anon_sym_DOT_DOT2, - STATE(2705), 1, - sym_comment, - ACTIONS(2076), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5493), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2078), 11, + ACTIONS(5531), 1, + anon_sym_and2, + ACTIONS(5652), 1, sym__newline, + STATE(2763), 1, + sym_comment, + STATE(2778), 1, + aux_sym__repeat_newline, + ACTIONS(5655), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210059,20 +211984,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [84364] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [86407] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5495), 1, - anon_sym_DOT_DOT2, - STATE(2706), 1, + STATE(2764), 1, sym_comment, - ACTIONS(2120), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5497), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2122), 11, + ACTIONS(5657), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210084,18 +212004,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, - [84395] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86432] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(2575), 1, - sym__space, - STATE(2707), 1, + ACTIONS(5620), 1, + anon_sym_and2, + STATE(2765), 1, sym_comment, - ACTIONS(2577), 13, + ACTIONS(5650), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210109,18 +212030,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [84426] = 6, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [86459] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__space, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(2708), 1, + ACTIONS(5628), 1, + anon_sym_and2, + STATE(2766), 1, sym_comment, - ACTIONS(1976), 13, + ACTIONS(5657), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210134,18 +212053,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [84457] = 5, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [86486] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5499), 1, - aux_sym__immediate_decimal_token5, - STATE(2709), 1, + ACTIONS(5620), 1, + anon_sym_and2, + ACTIONS(5622), 1, + anon_sym_xor2, + STATE(2767), 1, sym_comment, - ACTIONS(1802), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1804), 12, + ACTIONS(5650), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210157,19 +212076,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, - sym__unquoted_pattern, - [84486] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_or2, + [86515] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2523), 1, - sym__space, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(2710), 1, + ACTIONS(5628), 1, + anon_sym_and2, + ACTIONS(5630), 1, + anon_sym_xor2, + STATE(2768), 1, sym_comment, - ACTIONS(2525), 13, + ACTIONS(5657), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210183,18 +212102,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [84517] = 6, + anon_sym_or2, + [86544] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5330), 1, - anon_sym_EQ2, - ACTIONS(5501), 1, - sym__space, - STATE(2711), 1, + STATE(2769), 1, sym_comment, - STATE(2840), 1, - aux_sym_attribute_repeat1, - ACTIONS(5326), 13, + ACTIONS(2325), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2327), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210208,18 +212125,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [84548] = 6, + sym__unquoted_pattern, + [86571] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5503), 1, - sym__newline, - STATE(2712), 1, + STATE(2770), 1, sym_comment, - STATE(2814), 1, + STATE(2816), 1, aux_sym__repeat_newline, - ACTIONS(5478), 13, + ACTIONS(5659), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210231,20 +212146,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, - [84579] = 6, - ACTIONS(103), 1, + [86598] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, - sym__space, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(2713), 1, + STATE(2771), 1, sym_comment, - ACTIONS(2569), 13, + STATE(2817), 1, + aux_sym__repeat_newline, + ACTIONS(5661), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210257,17 +212169,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, - [84610] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86625] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2714), 1, + STATE(2772), 1, sym_comment, - ACTIONS(5480), 14, + ACTIONS(5663), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210280,18 +212192,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, - [84639] = 5, - ACTIONS(3), 1, + [86652] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2715), 1, + ACTIONS(2562), 1, + sym__space, + ACTIONS(2566), 1, + anon_sym_LPAREN2, + ACTIONS(2568), 1, + sym__unquoted_pattern, + STATE(2773), 1, sym_comment, - ACTIONS(5482), 14, + ACTIONS(2564), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210304,17 +212219,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_xor2, - anon_sym_or2, - [84668] = 4, - ACTIONS(103), 1, + anon_sym_RBRACE, + [86683] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2716), 1, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(2774), 1, sym_comment, - ACTIONS(2501), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2503), 14, + ACTIONS(5665), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210327,20 +212240,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, - sym__unquoted_pattern, - [84695] = 6, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86710] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2635), 1, - sym__space, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(2717), 1, + STATE(2775), 1, sym_comment, - ACTIONS(2637), 13, + STATE(2792), 1, + aux_sym__repeat_newline, + ACTIONS(5606), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210353,21 +212263,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, - [84726] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86737] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, + ACTIONS(5531), 1, anon_sym_and2, - ACTIONS(5404), 1, - anon_sym_xor2, - STATE(2647), 1, - aux_sym__repeat_newline, - STATE(2718), 1, + ACTIONS(5667), 1, + sym__newline, + STATE(2776), 1, sym_comment, - ACTIONS(5476), 12, + STATE(2820), 1, + aux_sym__repeat_newline, + ACTIONS(5659), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210379,21 +212289,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, - [84759] = 7, + [86768] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, + ACTIONS(5538), 1, anon_sym_and2, - ACTIONS(5438), 1, - anon_sym_xor2, - STATE(2648), 1, - aux_sym__repeat_newline, - STATE(2719), 1, + ACTIONS(5670), 1, + sym__newline, + STATE(2777), 1, sym_comment, - ACTIONS(5478), 12, + STATE(2821), 1, + aux_sym__repeat_newline, + ACTIONS(5661), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210405,19 +212314,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, - [84792] = 6, + [86799] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5555), 1, anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2720), 1, + STATE(2778), 1, sym_comment, - ACTIONS(5480), 13, + ACTIONS(5663), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210430,22 +212338,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, - [84823] = 7, - ACTIONS(103), 1, + [86828] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5506), 1, - anon_sym_EQ2, - ACTIONS(5508), 1, - sym_short_flag_identifier, - STATE(2721), 1, + ACTIONS(5557), 1, + anon_sym_and2, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(2779), 1, sym_comment, - STATE(3126), 1, - sym__flag_equals_value, - ACTIONS(5338), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5336), 11, + ACTIONS(5665), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210457,19 +212361,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, - [84856] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [86857] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(994), 1, - sym__space, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2722), 1, - sym_comment, - ACTIONS(996), 13, + ACTIONS(2834), 1, sym__newline, + ACTIONS(5531), 1, + anon_sym_and2, + ACTIONS(5559), 1, + anon_sym_xor2, + STATE(2780), 1, + sym_comment, + STATE(2822), 1, + aux_sym__repeat_newline, + ACTIONS(5659), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210481,20 +212389,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, - [84887] = 6, - ACTIONS(103), 1, + anon_sym_or2, + [86890] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1018), 1, - sym__space, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2723), 1, - sym_comment, - ACTIONS(1016), 13, + ACTIONS(2834), 1, sym__newline, + ACTIONS(5538), 1, + anon_sym_and2, + ACTIONS(5561), 1, + anon_sym_xor2, + STATE(2781), 1, + sym_comment, + STATE(2832), 1, + aux_sym__repeat_newline, + ACTIONS(5661), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210506,19 +212415,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, - [84918] = 6, + anon_sym_or2, + [86923] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, + ACTIONS(5555), 1, anon_sym_and2, - ACTIONS(5416), 1, + ACTIONS(5563), 1, anon_sym_xor2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2724), 1, + STATE(2782), 1, sym_comment, - ACTIONS(5482), 13, + ACTIONS(5663), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210532,20 +212441,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [84949] = 7, + [86954] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, + ACTIONS(5557), 1, anon_sym_and2, - ACTIONS(5410), 1, + ACTIONS(5569), 1, anon_sym_xor2, - ACTIONS(5512), 1, - anon_sym_or2, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2725), 1, + STATE(2783), 1, sym_comment, - ACTIONS(5510), 12, + ACTIONS(5665), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210558,20 +212465,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [84982] = 7, + anon_sym_or2, + [86985] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - ACTIONS(5416), 1, - anon_sym_xor2, - ACTIONS(5516), 1, - anon_sym_or2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2726), 1, + STATE(2784), 1, sym_comment, - ACTIONS(5514), 12, + STATE(2863), 1, + aux_sym__repeat_newline, + ACTIONS(5673), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210584,14 +212486,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [85015] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [87012] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2652), 1, + ACTIONS(5557), 1, + anon_sym_and2, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2727), 1, + STATE(2785), 1, sym_comment, - ACTIONS(5518), 15, + ACTIONS(5675), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210604,24 +212511,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, - [85042] = 6, - ACTIONS(103), 1, + [87041] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5396), 1, - anon_sym_DOT_DOT2, - STATE(2728), 1, - sym_comment, - ACTIONS(5346), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5398), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5344), 11, + ACTIONS(5531), 1, + anon_sym_and2, + ACTIONS(5677), 1, sym__newline, + STATE(2698), 1, + aux_sym__repeat_newline, + STATE(2786), 1, + sym_comment, + ACTIONS(5673), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210632,15 +212535,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, - [85073] = 4, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [87072] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2653), 1, + ACTIONS(5538), 1, + anon_sym_and2, + ACTIONS(5680), 1, + sym__newline, + STATE(2699), 1, aux_sym__repeat_newline, - STATE(2729), 1, + STATE(2787), 1, sym_comment, - ACTIONS(5520), 15, - sym__newline, + ACTIONS(5683), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210652,18 +212561,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, - [85100] = 4, + [87103] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2700), 1, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(5531), 1, + anon_sym_and2, + ACTIONS(5559), 1, + anon_sym_xor2, + STATE(2704), 1, aux_sym__repeat_newline, - STATE(2730), 1, + STATE(2788), 1, sym_comment, - ACTIONS(5522), 15, - sym__newline, + ACTIONS(5673), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210675,18 +212588,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, - [85127] = 4, + [87136] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2702), 1, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(5538), 1, + anon_sym_and2, + ACTIONS(5561), 1, + anon_sym_xor2, + STATE(2707), 1, aux_sym__repeat_newline, - STATE(2731), 1, + STATE(2789), 1, sym_comment, - ACTIONS(5524), 15, - sym__newline, + ACTIONS(5683), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210698,21 +212614,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_and2, - anon_sym_xor2, anon_sym_or2, - [85154] = 6, + [87169] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5526), 1, - sym__newline, - STATE(2714), 1, + STATE(2708), 1, aux_sym__repeat_newline, - STATE(2732), 1, + STATE(2790), 1, sym_comment, - ACTIONS(5522), 13, + ACTIONS(5685), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210724,20 +212635,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, - [85185] = 6, - ACTIONS(103), 1, + [87196] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(2144), 1, - sym__space, - STATE(2733), 1, + STATE(2709), 1, + aux_sym__repeat_newline, + STATE(2791), 1, sym_comment, - STATE(5091), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2146), 13, + ACTIONS(5687), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210750,19 +212658,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, - [85216] = 6, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [87223] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(2148), 1, - sym__space, - STATE(2734), 1, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(2792), 1, sym_comment, - STATE(5091), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2150), 13, + ACTIONS(5689), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210775,21 +212681,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, - [85247] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5414), 1, anon_sym_and2, - ACTIONS(5416), 1, anon_sym_xor2, - ACTIONS(5516), 1, anon_sym_or2, - STATE(540), 1, + [87250] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2735), 1, + STATE(2793), 1, sym_comment, - ACTIONS(5529), 12, + ACTIONS(5691), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210802,18 +212704,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [85280] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [87277] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(2170), 1, - sym__space, - STATE(2736), 1, + ACTIONS(5590), 1, + anon_sym_EQ2, + ACTIONS(5693), 1, + sym_long_flag_identifier, + STATE(2794), 1, sym_comment, - STATE(5091), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2172), 13, + STATE(3175), 1, + sym__flag_equals_value, + ACTIONS(4320), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4318), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210825,21 +212733,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, - [85311] = 6, - ACTIONS(103), 1, + [87310] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(2072), 1, - sym__space, - STATE(2737), 1, + ACTIONS(5531), 1, + anon_sym_and2, + ACTIONS(5695), 1, + sym__newline, + STATE(2710), 1, + aux_sym__repeat_newline, + STATE(2795), 1, sym_comment, - STATE(5091), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2074), 13, - sym__newline, + ACTIONS(5685), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210851,19 +212756,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, - [85342] = 6, + anon_sym_xor2, + anon_sym_or2, + [87341] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5538), 1, anon_sym_and2, - ACTIONS(5531), 1, + ACTIONS(5698), 1, sym__newline, - STATE(2656), 1, + STATE(2713), 1, aux_sym__repeat_newline, - STATE(2738), 1, + STATE(2796), 1, sym_comment, - ACTIONS(5518), 13, + ACTIONS(5687), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210877,18 +212783,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [85373] = 6, + [87372] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5534), 1, - sym__newline, - STATE(2657), 1, + STATE(2793), 1, aux_sym__repeat_newline, - STATE(2739), 1, + STATE(2797), 1, sym_comment, - ACTIONS(5520), 13, + ACTIONS(5640), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210900,20 +212803,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, - [85404] = 6, + [87399] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5436), 1, + ACTIONS(5555), 1, anon_sym_and2, - ACTIONS(5537), 1, - sym__newline, - STATE(2715), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2740), 1, + STATE(2798), 1, sym_comment, - ACTIONS(5524), 13, + ACTIONS(5689), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210927,20 +212830,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [85435] = 7, + [87428] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, + ACTIONS(5557), 1, anon_sym_and2, - ACTIONS(5404), 1, + ACTIONS(5569), 1, anon_sym_xor2, - STATE(2720), 1, + ACTIONS(5703), 1, + anon_sym_or2, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2741), 1, + STATE(2799), 1, sym_comment, - ACTIONS(5522), 12, + ACTIONS(5701), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210952,21 +212856,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_or2, - [85468] = 7, + [87461] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, + ACTIONS(5557), 1, anon_sym_and2, - ACTIONS(5438), 1, - anon_sym_xor2, - STATE(2724), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2742), 1, + STATE(2800), 1, sym_comment, - ACTIONS(5524), 12, + ACTIONS(5691), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210978,20 +212878,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, - [85501] = 6, + [87490] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5542), 1, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(5531), 1, anon_sym_and2, - ACTIONS(5544), 1, + ACTIONS(5559), 1, anon_sym_xor2, - ACTIONS(5546), 1, - anon_sym_or2, - STATE(2743), 1, + STATE(2714), 1, + aux_sym__repeat_newline, + STATE(2801), 1, sym_comment, - ACTIONS(5540), 13, - sym__newline, + ACTIONS(5685), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211003,20 +212905,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, - [85532] = 6, + anon_sym_or2, + [87523] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5550), 1, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(5538), 1, anon_sym_and2, - ACTIONS(5552), 1, + ACTIONS(5561), 1, anon_sym_xor2, - ACTIONS(5554), 1, - anon_sym_or2, - STATE(2744), 1, + STATE(2715), 1, + aux_sym__repeat_newline, + STATE(2802), 1, sym_comment, - ACTIONS(5548), 13, - sym__newline, + ACTIONS(5687), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211028,13 +212931,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, - [85563] = 3, + anon_sym_or2, + [87556] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2745), 1, + ACTIONS(5555), 1, + anon_sym_and2, + ACTIONS(5563), 1, + anon_sym_xor2, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(2803), 1, sym_comment, - ACTIONS(4680), 16, + ACTIONS(5689), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211047,24 +212956,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_and2, - anon_sym_xor2, anon_sym_or2, - [85588] = 7, + [87587] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, + ACTIONS(5557), 1, anon_sym_and2, - ACTIONS(5404), 1, + ACTIONS(5569), 1, anon_sym_xor2, - STATE(2660), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2746), 1, + STATE(2804), 1, sym_comment, - ACTIONS(5518), 12, + ACTIONS(5691), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211077,14 +212982,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [85621] = 4, + [87618] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2747), 1, - sym_comment, - STATE(2757), 1, + STATE(2718), 1, aux_sym__repeat_newline, - ACTIONS(5556), 15, + STATE(2805), 1, + sym_comment, + ACTIONS(5705), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211100,14 +213005,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85648] = 4, + [87645] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2748), 1, - sym_comment, - STATE(2758), 1, + STATE(2719), 1, aux_sym__repeat_newline, - ACTIONS(5558), 15, + STATE(2806), 1, + sym_comment, + ACTIONS(5707), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211123,18 +213028,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85675] = 6, + [87672] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5402), 1, + ACTIONS(5531), 1, anon_sym_and2, - ACTIONS(5560), 1, + ACTIONS(5709), 1, sym__newline, - STATE(2749), 1, - sym_comment, - STATE(2766), 1, + STATE(2726), 1, aux_sym__repeat_newline, - ACTIONS(5556), 13, + STATE(2807), 1, + sym_comment, + ACTIONS(5705), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211148,18 +213053,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [85706] = 6, + [87703] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5436), 1, + ACTIONS(5538), 1, anon_sym_and2, - ACTIONS(5563), 1, + ACTIONS(5712), 1, sym__newline, - STATE(2750), 1, - sym_comment, - STATE(2767), 1, + STATE(2727), 1, aux_sym__repeat_newline, - ACTIONS(5558), 13, + STATE(2808), 1, + sym_comment, + ACTIONS(5707), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211173,20 +213078,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [85737] = 7, + [87734] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2834), 1, sym__newline, - ACTIONS(5402), 1, + ACTIONS(5531), 1, anon_sym_and2, - ACTIONS(5404), 1, + ACTIONS(5559), 1, anon_sym_xor2, - STATE(2751), 1, - sym_comment, - STATE(2773), 1, + STATE(2731), 1, aux_sym__repeat_newline, - ACTIONS(5556), 12, + STATE(2809), 1, + sym_comment, + ACTIONS(5705), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211199,20 +213104,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [85770] = 7, + [87767] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2834), 1, sym__newline, - ACTIONS(5436), 1, + ACTIONS(5538), 1, anon_sym_and2, - ACTIONS(5438), 1, + ACTIONS(5561), 1, anon_sym_xor2, - STATE(2752), 1, - sym_comment, - STATE(2774), 1, + STATE(2733), 1, aux_sym__repeat_newline, - ACTIONS(5558), 12, + STATE(2810), 1, + sym_comment, + ACTIONS(5707), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211225,20 +213130,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [85803] = 7, + [87800] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, + ACTIONS(5557), 1, anon_sym_and2, - ACTIONS(5438), 1, + ACTIONS(5569), 1, anon_sym_xor2, - STATE(2661), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2753), 1, + STATE(2811), 1, sym_comment, - ACTIONS(5520), 12, + ACTIONS(5675), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211251,14 +213155,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [85836] = 4, + [87831] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2662), 1, + ACTIONS(5557), 1, + anon_sym_and2, + ACTIONS(5569), 1, + anon_sym_xor2, + ACTIONS(5703), 1, + anon_sym_or2, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2754), 1, + STATE(2812), 1, sym_comment, - ACTIONS(5566), 15, + ACTIONS(5715), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211271,18 +213181,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + [87864] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(5531), 1, anon_sym_and2, + ACTIONS(5559), 1, anon_sym_xor2, + ACTIONS(5610), 1, anon_sym_or2, - [85863] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2663), 1, + STATE(2742), 1, aux_sym__repeat_newline, - STATE(2755), 1, + STATE(2813), 1, sym_comment, - ACTIONS(5568), 15, - sym__newline, + ACTIONS(5717), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211294,20 +213208,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + [87899] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(5538), 1, anon_sym_and2, + ACTIONS(5561), 1, anon_sym_xor2, + ACTIONS(5614), 1, anon_sym_or2, - [85890] = 4, + STATE(2799), 1, + aux_sym__repeat_newline, + STATE(2814), 1, + sym_comment, + ACTIONS(5719), 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, + [87934] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2756), 1, + STATE(2815), 1, sym_comment, - ACTIONS(1641), 4, + ACTIONS(1800), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1643), 12, + ACTIONS(1802), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211320,14 +213258,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [85917] = 4, + [87961] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2757), 1, + STATE(2816), 1, sym_comment, - ACTIONS(5570), 15, + ACTIONS(5721), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211343,14 +213281,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85944] = 4, + [87988] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2758), 1, + STATE(2817), 1, sym_comment, - ACTIONS(5572), 15, + ACTIONS(5723), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211366,18 +213304,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85971] = 6, - ACTIONS(3), 1, + [88015] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5574), 1, - sym__newline, - STATE(2664), 1, - aux_sym__repeat_newline, - STATE(2759), 1, + STATE(2818), 1, sym_comment, - ACTIONS(5566), 13, + ACTIONS(1738), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1740), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211389,24 +213325,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, - [86002] = 7, - ACTIONS(103), 1, + anon_sym_RBRACE, + sym__unquoted_pattern, + [88042] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5506), 1, - anon_sym_EQ2, - ACTIONS(5577), 1, - sym_long_flag_identifier, - STATE(2760), 1, - sym_comment, - STATE(3204), 1, - sym__flag_equals_value, - ACTIONS(4303), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4301), 11, + ACTIONS(2834), 1, sym__newline, + ACTIONS(5538), 1, + anon_sym_and2, + ACTIONS(5561), 1, + anon_sym_xor2, + STATE(2783), 1, + aux_sym__repeat_newline, + STATE(2819), 1, + sym_comment, + ACTIONS(5604), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211417,17 +213351,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, - [86035] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_or2, + [88075] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2761), 1, + ACTIONS(5555), 1, + anon_sym_and2, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(2820), 1, sym_comment, - ACTIONS(1822), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1824), 12, + ACTIONS(5721), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211439,19 +213374,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, - [86062] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [88104] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(5581), 1, - sym__space, - STATE(2762), 1, + ACTIONS(5557), 1, + anon_sym_and2, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(2821), 1, sym_comment, - STATE(4627), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5579), 13, + ACTIONS(5723), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211464,23 +213399,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, - [86093] = 8, + anon_sym_xor2, + anon_sym_or2, + [88133] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, + ACTIONS(5555), 1, anon_sym_and2, - ACTIONS(5404), 1, + ACTIONS(5563), 1, anon_sym_xor2, - ACTIONS(5585), 1, - anon_sym_or2, - STATE(2763), 1, - sym_comment, - STATE(2778), 1, + STATE(517), 1, aux_sym__repeat_newline, - ACTIONS(5583), 11, + STATE(2822), 1, + sym_comment, + ACTIONS(5721), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211492,15 +213425,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [86128] = 4, + anon_sym_or2, + [88164] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2764), 1, + STATE(2823), 1, sym_comment, - ACTIONS(1726), 2, + ACTIONS(1806), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(1728), 14, + ACTIONS(1808), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211515,18 +213449,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, sym__unquoted_pattern, - [86155] = 6, - ACTIONS(3), 1, + [88191] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5436), 1, - anon_sym_and2, - ACTIONS(5587), 1, - sym__newline, - STATE(2665), 1, - aux_sym__repeat_newline, - STATE(2765), 1, + ACTIONS(5594), 1, + anon_sym_DOT_DOT2, + STATE(2824), 1, sym_comment, - ACTIONS(5568), 13, + ACTIONS(1689), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5596), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1615), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211537,19 +213474,15 @@ static const uint16_t ts_small_parse_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, - [86186] = 5, - ACTIONS(3), 1, + [88222] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2766), 1, + STATE(2825), 1, sym_comment, - ACTIONS(5570), 14, + ACTIONS(1844), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1846), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211562,18 +213495,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, - [86215] = 5, + anon_sym_RBRACE, + sym__unquoted_pattern, + [88249] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - STATE(540), 1, + STATE(2772), 1, aux_sym__repeat_newline, - STATE(2767), 1, + STATE(2826), 1, sym_comment, - ACTIONS(5572), 14, + ACTIONS(5655), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211586,17 +213517,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [86244] = 4, + [88276] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2768), 1, + ACTIONS(5725), 1, + anon_sym_DOT_DOT2, + STATE(2827), 1, sym_comment, - ACTIONS(1802), 2, + ACTIONS(2098), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1804), 14, + ACTIONS(5727), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2100), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211608,18 +213545,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym__unquoted_pattern, - [86271] = 4, + [88307] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2769), 1, - sym_comment, - ACTIONS(1870), 2, + ACTIONS(994), 1, sym__space, + ACTIONS(2570), 1, anon_sym_LPAREN2, - ACTIONS(1872), 14, + ACTIONS(2572), 1, + sym__unquoted_pattern, + STATE(2828), 1, + sym_comment, + ACTIONS(996), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211633,23 +213570,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [86298] = 8, + [88338] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2834), 1, sym__newline, - ACTIONS(5436), 1, + ACTIONS(5531), 1, anon_sym_and2, - ACTIONS(5438), 1, + ACTIONS(5559), 1, anon_sym_xor2, - ACTIONS(5592), 1, - anon_sym_or2, - STATE(2735), 1, + STATE(2782), 1, aux_sym__repeat_newline, - STATE(2770), 1, + STATE(2829), 1, sym_comment, - ACTIONS(5590), 11, + ACTIONS(5655), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211661,20 +213595,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [86333] = 7, - ACTIONS(3), 1, + anon_sym_or2, + [88371] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5404), 1, - anon_sym_xor2, - STATE(2666), 1, - aux_sym__repeat_newline, - STATE(2771), 1, + ACTIONS(1012), 1, + sym__space, + ACTIONS(2570), 1, + anon_sym_LPAREN2, + ACTIONS(2572), 1, + sym__unquoted_pattern, + STATE(2830), 1, sym_comment, - ACTIONS(5566), 12, + ACTIONS(1004), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211686,21 +213620,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_or2, - [86366] = 7, + anon_sym_RBRACE, + [88402] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(5729), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5731), 1, + aux_sym__immediate_decimal_token5, + STATE(2831), 1, + sym_comment, + ACTIONS(1740), 3, + sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1738), 11, + anon_sym_EQ, sym__newline, - ACTIONS(5436), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [88433] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5557), 1, anon_sym_and2, - ACTIONS(5438), 1, + ACTIONS(5569), 1, anon_sym_xor2, - STATE(2667), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2772), 1, + STATE(2832), 1, sym_comment, - ACTIONS(5568), 12, + ACTIONS(5723), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211713,18 +213671,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [86399] = 6, - ACTIONS(3), 1, + [88464] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - ACTIONS(5410), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2773), 1, + ACTIONS(5733), 1, + anon_sym_DOT_DOT2, + STATE(2833), 1, sym_comment, - ACTIONS(5570), 13, + ACTIONS(2136), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5735), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2138), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211736,20 +213696,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, - [86430] = 6, - ACTIONS(3), 1, + [88495] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - ACTIONS(5416), 1, - anon_sym_xor2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2774), 1, + ACTIONS(5737), 1, + anon_sym_DOT_DOT2, + STATE(2834), 1, sym_comment, - ACTIONS(5572), 13, + ACTIONS(2144), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5739), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2146), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211761,16 +213721,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, - [86461] = 4, - ACTIONS(3), 1, + [88526] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2670), 1, - aux_sym__repeat_newline, - STATE(2775), 1, + ACTIONS(5741), 1, + anon_sym_DOT_DOT2, + STATE(2835), 1, sym_comment, - ACTIONS(5400), 15, + ACTIONS(2152), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5743), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2154), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211782,26 +213746,15 @@ static const uint16_t ts_small_parse_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, - [86488] = 8, + [88557] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5404), 1, - anon_sym_xor2, - ACTIONS(5585), 1, - anon_sym_or2, - STATE(2725), 1, - aux_sym__repeat_newline, - STATE(2776), 1, + STATE(2836), 1, sym_comment, - ACTIONS(5594), 11, + STATE(2839), 1, + aux_sym__repeat_newline, + ACTIONS(5529), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211813,22 +213766,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [86523] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(5436), 1, anon_sym_and2, - ACTIONS(5438), 1, anon_sym_xor2, - ACTIONS(5592), 1, anon_sym_or2, - STATE(2726), 1, + [88584] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5531), 1, + anon_sym_and2, + ACTIONS(5745), 1, + sym__newline, + STATE(2798), 1, aux_sym__repeat_newline, - STATE(2777), 1, + STATE(2837), 1, sym_comment, - ACTIONS(5596), 11, + ACTIONS(5606), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211840,20 +213792,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [86558] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - ACTIONS(5410), 1, anon_sym_xor2, - ACTIONS(5512), 1, anon_sym_or2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2778), 1, + [88615] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2838), 1, sym_comment, - ACTIONS(5598), 12, + STATE(2841), 1, + aux_sym__repeat_newline, + ACTIONS(5536), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211866,12 +213814,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [86591] = 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [88642] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2779), 1, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(2839), 1, sym_comment, - ACTIONS(5150), 16, + ACTIONS(5748), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211884,16 +213837,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, - [86616] = 3, + [88669] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2780), 1, + ACTIONS(4879), 1, + anon_sym_DASH2, + ACTIONS(5288), 1, + anon_sym_DOT2, + STATE(2552), 1, + sym_path, + STATE(2613), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2840), 1, + sym_comment, + STATE(2930), 1, + sym_cell_path, + ACTIONS(4877), 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, + [88704] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(2841), 1, sym_comment, - ACTIONS(5269), 16, + ACTIONS(5750), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211906,18 +213887,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, - [86641] = 4, + [88731] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2671), 1, + ACTIONS(5555), 1, + anon_sym_and2, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2781), 1, + STATE(2842), 1, sym_comment, - ACTIONS(5458), 15, + ACTIONS(5748), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211930,15 +213912,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, - [86668] = 3, + [88760] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2782), 1, + ACTIONS(5557), 1, + anon_sym_and2, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(2843), 1, sym_comment, - ACTIONS(5150), 16, + ACTIONS(5750), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211951,16 +213936,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_and2, anon_sym_xor2, anon_sym_or2, - [86693] = 3, + [88789] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2783), 1, + ACTIONS(5555), 1, + anon_sym_and2, + ACTIONS(5563), 1, + anon_sym_xor2, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(2844), 1, sym_comment, - ACTIONS(5269), 16, + ACTIONS(5748), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211973,21 +213962,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, - [86718] = 4, - ACTIONS(103), 1, + [88820] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2784), 1, + ACTIONS(5557), 1, + anon_sym_and2, + ACTIONS(5569), 1, + anon_sym_xor2, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(2845), 1, sym_comment, - ACTIONS(1874), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1876), 12, + ACTIONS(5750), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211999,40 +213986,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, - [86745] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - ACTIONS(5602), 1, - anon_sym_DASH2, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2785), 1, - sym_comment, - STATE(2826), 1, - sym_cell_path, - ACTIONS(5600), 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, - [86780] = 3, + anon_sym_or2, + [88851] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2786), 1, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(2846), 1, sym_comment, - ACTIONS(5150), 16, + ACTIONS(5588), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212045,50 +214008,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, - [86805] = 9, - ACTIONS(3), 1, + [88878] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5606), 1, - anon_sym_EQ, - ACTIONS(5609), 1, - sym__newline, - ACTIONS(5612), 1, - anon_sym_COLON, - ACTIONS(5615), 1, - anon_sym_DASH2, - STATE(4267), 1, - aux_sym__repeat_newline, - STATE(2787), 2, + ACTIONS(5456), 1, + anon_sym_EQ2, + ACTIONS(5754), 1, + sym__space, + STATE(2847), 1, sym_comment, - aux_sym_parameter_repeat1, - STATE(3256), 2, - sym_param_type, - sym_param_value, - ACTIONS(5604), 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, - [86842] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5402), 1, - anon_sym_and2, - ACTIONS(5617), 1, + STATE(3124), 1, + sym__flag_equals_value, + ACTIONS(5752), 13, sym__newline, - STATE(2674), 1, - aux_sym__repeat_newline, - STATE(2788), 1, - sym_comment, - ACTIONS(5400), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212100,21 +214035,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, - [86873] = 6, - ACTIONS(103), 1, + anon_sym_RBRACE, + [88909] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5340), 1, - anon_sym_EQ2, - ACTIONS(5622), 1, - sym__space, - STATE(2789), 1, - sym_comment, - STATE(2955), 1, - sym__flag_equals_value, - ACTIONS(5620), 13, + ACTIONS(5538), 1, + anon_sym_and2, + ACTIONS(5756), 1, sym__newline, + STATE(2800), 1, + aux_sym__repeat_newline, + STATE(2848), 1, + sym_comment, + ACTIONS(5640), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212126,19 +214059,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, - [86904] = 6, + anon_sym_xor2, + anon_sym_or2, + [88940] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4367), 1, + ACTIONS(4470), 1, sym__space, - ACTIONS(5340), 1, + ACTIONS(5456), 1, anon_sym_EQ2, - STATE(2790), 1, + STATE(2849), 1, sym_comment, - STATE(3070), 1, + STATE(3067), 1, sym__flag_equals_value, - ACTIONS(4365), 13, + ACTIONS(4468), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212152,49 +214086,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [86935] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1853), 1, - anon_sym_DASH2, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2791), 1, - sym_comment, - STATE(2826), 1, - sym_cell_path, - ACTIONS(1850), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [86970] = 8, + [88971] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1864), 1, + ACTIONS(1889), 1, anon_sym_DASH2, - ACTIONS(5178), 1, + ACTIONS(5288), 1, anon_sym_DOT2, - STATE(2511), 1, + STATE(2552), 1, sym_path, - STATE(2556), 1, + STATE(2613), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2792), 1, + STATE(2850), 1, sym_comment, - STATE(2934), 1, + STATE(2930), 1, sym_cell_path, - ACTIONS(1862), 11, + ACTIONS(1886), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -212206,22 +214113,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [87005] = 8, + [89006] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1868), 1, + ACTIONS(1884), 1, anon_sym_DASH2, - ACTIONS(5178), 1, + ACTIONS(5288), 1, anon_sym_DOT2, - STATE(2511), 1, + STATE(2552), 1, sym_path, - STATE(2556), 1, + STATE(2613), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2793), 1, + STATE(2851), 1, sym_comment, - STATE(2843), 1, + STATE(3052), 1, sym_cell_path, - ACTIONS(1866), 11, + ACTIONS(1882), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -212233,22 +214140,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [87040] = 8, + [89041] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, + ACTIONS(1850), 1, anon_sym_DASH2, - ACTIONS(5178), 1, + ACTIONS(5288), 1, anon_sym_DOT2, - STATE(2511), 1, + STATE(2552), 1, sym_path, - STATE(2556), 1, + STATE(2613), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2794), 1, + STATE(2852), 1, sym_comment, - STATE(3032), 1, + STATE(2946), 1, sym_cell_path, - ACTIONS(1878), 11, + ACTIONS(1848), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -212260,22 +214167,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [87075] = 8, + [89076] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1884), 1, + ACTIONS(1840), 1, anon_sym_DASH2, - ACTIONS(5178), 1, + ACTIONS(5288), 1, anon_sym_DOT2, - STATE(2511), 1, + STATE(2552), 1, sym_path, - STATE(2556), 1, + STATE(2613), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2795), 1, + STATE(2853), 1, sym_comment, - STATE(2899), 1, + STATE(3088), 1, sym_cell_path, - ACTIONS(1882), 11, + ACTIONS(1838), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -212287,22 +214194,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [87110] = 8, + [89111] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1860), 1, + ACTIONS(1864), 1, anon_sym_DASH2, - ACTIONS(5178), 1, + ACTIONS(5288), 1, anon_sym_DOT2, - STATE(2511), 1, + STATE(2552), 1, sym_path, - STATE(2556), 1, + STATE(2613), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2796), 1, + STATE(2854), 1, sym_comment, - STATE(2914), 1, + STATE(2867), 1, sym_cell_path, - ACTIONS(1858), 11, + ACTIONS(1862), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -212314,12 +214221,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [87145] = 3, + [89146] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2797), 1, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(2855), 1, sym_comment, - ACTIONS(5269), 16, + ACTIONS(5675), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212332,16 +214241,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, - [87170] = 3, - ACTIONS(3), 1, + [89173] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2798), 1, + ACTIONS(1756), 1, + anon_sym_LPAREN2, + ACTIONS(2164), 1, + sym__space, + STATE(2856), 1, sym_comment, - ACTIONS(5624), 16, + STATE(5243), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2166), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212355,15 +214269,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, - [87195] = 3, - ACTIONS(3), 1, + [89204] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2799), 1, + ACTIONS(1756), 1, + anon_sym_LPAREN2, + ACTIONS(2132), 1, + sym__space, + STATE(2857), 1, sym_comment, - ACTIONS(5626), 16, + STATE(5243), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2134), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212377,17 +214294,14 @@ 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, - [87220] = 4, + [89235] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_and2, - STATE(2800), 1, + STATE(2774), 1, + aux_sym__repeat_newline, + STATE(2858), 1, sym_comment, - ACTIONS(5624), 15, + ACTIONS(5604), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212400,17 +214314,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, - [87247] = 4, - ACTIONS(3), 1, + [89262] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_and2, - STATE(2801), 1, + ACTIONS(1756), 1, + anon_sym_LPAREN2, + ACTIONS(2066), 1, + sym__space, + STATE(2859), 1, sym_comment, - ACTIONS(5626), 15, + STATE(5243), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2068), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212424,18 +214342,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_xor2, - anon_sym_or2, - [87274] = 5, - ACTIONS(3), 1, + [89293] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_and2, - ACTIONS(5544), 1, - anon_sym_xor2, - STATE(2802), 1, + ACTIONS(1756), 1, + anon_sym_LPAREN2, + ACTIONS(2070), 1, + sym__space, + STATE(2860), 1, sym_comment, - ACTIONS(5624), 14, + STATE(5243), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2072), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212449,17 +214367,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_or2, - [87303] = 5, - ACTIONS(3), 1, + [89324] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_and2, - ACTIONS(5552), 1, - anon_sym_xor2, - STATE(2803), 1, + ACTIONS(1689), 1, + sym__space, + ACTIONS(2554), 1, + anon_sym_LPAREN2, + ACTIONS(2556), 1, + sym__unquoted_pattern, + STATE(2861), 1, sym_comment, - ACTIONS(5626), 14, + ACTIONS(1615), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212473,19 +214392,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_or2, - [87332] = 6, + [89355] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5436), 1, + ACTIONS(5555), 1, anon_sym_and2, - ACTIONS(5628), 1, - sym__newline, - STATE(2675), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2804), 1, + STATE(2862), 1, sym_comment, - ACTIONS(5458), 13, + ACTIONS(5588), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212499,12 +214416,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [87363] = 3, + [89384] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2805), 1, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(2863), 1, sym_comment, - ACTIONS(5631), 16, + ACTIONS(5553), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212517,18 +214436,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87388] = 4, + [89411] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + ACTIONS(5555), 1, + anon_sym_and2, + ACTIONS(5563), 1, + anon_sym_xor2, + ACTIONS(5636), 1, + anon_sym_or2, + STATE(517), 1, aux_sym__repeat_newline, - STATE(2806), 1, + STATE(2864), 1, sym_comment, - ACTIONS(5406), 15, + ACTIONS(5759), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212541,17 +214465,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, - [87415] = 4, + [89444] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(2694), 1, aux_sym__repeat_newline, - STATE(2807), 1, + STATE(2865), 1, sym_comment, - ACTIONS(5412), 15, + ACTIONS(5683), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212567,12 +214488,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87442] = 3, - ACTIONS(3), 1, + [89471] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2808), 1, + ACTIONS(1756), 1, + anon_sym_LPAREN2, + STATE(2866), 1, sym_comment, - ACTIONS(5633), 16, + STATE(5243), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2066), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2068), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212584,19 +214512,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, + [89501] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2580), 1, + anon_sym_DASH2, + STATE(2867), 1, + sym_comment, + ACTIONS(2578), 14, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [87467] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [89527] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_and2, - STATE(2809), 1, + STATE(2868), 1, sym_comment, - ACTIONS(5631), 15, + ACTIONS(5761), 15, + anon_sym_else, + anon_sym_catch, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212610,16 +214555,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_xor2, - anon_sym_or2, - [87494] = 4, + [89551] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_and2, - STATE(2810), 1, + STATE(2869), 1, + sym_comment, + ACTIONS(1802), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1800), 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, + [89577] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5763), 1, + anon_sym_LBRACK2, + STATE(2870), 1, + sym_comment, + ACTIONS(2116), 2, + anon_sym_LBRACK, + anon_sym_DASH2, + ACTIONS(2114), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [89605] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1756), 1, + anon_sym_LPAREN2, + STATE(2871), 1, sym_comment, - ACTIONS(5633), 15, + STATE(5243), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2164), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2166), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212631,20 +214624,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, + [89635] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5767), 1, + anon_sym_DASH2, + ACTIONS(5769), 1, + anon_sym_DOT_DOT2, + STATE(2872), 1, + sym_comment, + ACTIONS(5771), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5765), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_xor2, - anon_sym_or2, - [87521] = 5, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [89665] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2811), 1, + STATE(2873), 1, sym_comment, - ACTIONS(5406), 14, + ACTIONS(5385), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212656,19 +214666,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, - [87550] = 5, + [89689] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5542), 1, - anon_sym_and2, - ACTIONS(5544), 1, - anon_sym_xor2, - STATE(2812), 1, + STATE(2874), 1, sym_comment, - ACTIONS(5631), 14, + ACTIONS(5308), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212680,19 +214687,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_or2, - [87579] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5550), 1, anon_sym_and2, - ACTIONS(5552), 1, anon_sym_xor2, - STATE(2813), 1, + anon_sym_or2, + [89713] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2875), 1, sym_comment, - ACTIONS(5633), 14, + ACTIONS(1806), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1808), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212704,19 +214711,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, - anon_sym_or2, - [87608] = 5, + sym__unquoted_pattern, + [89739] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_and2, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2814), 1, + STATE(2876), 1, sym_comment, - ACTIONS(5412), 14, + ACTIONS(5385), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212728,17 +214730,15 @@ static const uint16_t ts_small_parse_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, - [87637] = 4, + [89763] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1820), 1, - sym__unquoted_pattern, - STATE(2815), 1, + STATE(2877), 1, sym_comment, - ACTIONS(968), 15, + ACTIONS(5308), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -212754,19 +214754,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [87664] = 6, + [89787] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(870), 1, + sym_raw_string_begin, + ACTIONS(3273), 1, + anon_sym_DQUOTE, + ACTIONS(3275), 1, + anon_sym_SQUOTE, + ACTIONS(3277), 1, + anon_sym_BQUOTE, + ACTIONS(3279), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3281), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5773), 1, + aux_sym_env_var_token1, + STATE(2878), 1, + sym_comment, + STATE(2983), 1, + sym__inter_single_quotes, + STATE(3101), 1, + sym__inter_double_quotes, + STATE(4799), 2, + sym_val_string, + sym_val_interpolated, + STATE(2508), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [89831] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1968), 1, + ACTIONS(1756), 1, anon_sym_LPAREN2, - STATE(2816), 1, + STATE(2879), 1, sym_comment, - ACTIONS(1964), 2, + STATE(5243), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2132), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1966), 11, + ACTIONS(2134), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212778,16 +214809,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, - [87694] = 4, + [89861] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5775), 1, + sym_identifier, + ACTIONS(5780), 1, + anon_sym_DOLLAR, + ACTIONS(5783), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5786), 1, + anon_sym_DASH_DASH, + ACTIONS(5789), 1, + anon_sym_DASH2, + STATE(2542), 1, + sym_param_long_flag, + STATE(2679), 1, + sym__param_name, + STATE(3309), 1, + sym_param_short_flag, + STATE(3337), 1, + sym_param_rest, + STATE(3338), 1, + sym_param_opt, + STATE(3644), 1, + sym_parameter, + STATE(2880), 2, + sym_comment, + aux_sym_parameter_parens_repeat1, + ACTIONS(5778), 3, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + [89907] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2817), 1, + STATE(2881), 1, sym_comment, - ACTIONS(1802), 3, + ACTIONS(1844), 3, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, - ACTIONS(1804), 12, + ACTIONS(1846), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212800,22 +214863,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, sym__unquoted_pattern, - [87720] = 7, + [89933] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5792), 1, + sym_identifier, + ACTIONS(5794), 1, + sym__newline, + ACTIONS(5796), 1, + anon_sym_RBRACK, + ACTIONS(5798), 1, + anon_sym_DOLLAR, + ACTIONS(5800), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_DASH_DASH, + ACTIONS(5804), 1, + anon_sym_DASH2, + STATE(2542), 1, + sym_param_long_flag, + STATE(2679), 1, + sym__param_name, + STATE(2882), 1, + sym_comment, + STATE(3251), 1, + aux_sym_parameter_parens_repeat1, + STATE(3309), 1, + sym_param_short_flag, + STATE(3328), 1, + aux_sym__repeat_newline, + STATE(3337), 1, + sym_param_rest, + STATE(3338), 1, + sym_param_opt, + STATE(3644), 1, + sym_parameter, + [89985] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5635), 1, - sym__newline, - STATE(881), 1, - aux_sym__pipe_separator, - STATE(2818), 1, + ACTIONS(5792), 1, + sym_identifier, + ACTIONS(5794), 1, + sym__newline, + ACTIONS(5798), 1, + anon_sym_DOLLAR, + ACTIONS(5800), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_DASH_DASH, + ACTIONS(5804), 1, + anon_sym_DASH2, + ACTIONS(5806), 1, + anon_sym_RPAREN, + STATE(2542), 1, + sym_param_long_flag, + STATE(2679), 1, + sym__param_name, + STATE(2883), 1, + sym_comment, + STATE(3255), 1, + aux_sym_parameter_parens_repeat1, + STATE(3309), 1, + sym_param_short_flag, + STATE(3328), 1, + aux_sym__repeat_newline, + STATE(3337), 1, + sym_param_rest, + STATE(3338), 1, + sym_param_opt, + STATE(3644), 1, + sym_parameter, + [90037] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2884), 1, sym_comment, - STATE(3365), 1, - aux_sym__repeat_newline, - ACTIONS(5638), 3, + ACTIONS(2094), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2096), 13, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2303), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -212825,16 +214953,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, - [87752] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [90063] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(2819), 1, - sym_comment, - ACTIONS(1870), 3, - ts_builtin_sym_end, + ACTIONS(5575), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1872), 12, + STATE(2885), 1, + sym_comment, + STATE(2920), 1, + aux_sym_attribute_repeat1, + ACTIONS(5808), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212846,18 +214976,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, - sym__unquoted_pattern, - [87778] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [90091] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2820), 1, - sym_comment, - ACTIONS(2084), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2086), 13, + ACTIONS(5810), 1, sym__newline, + STATE(751), 1, + aux_sym__pipe_separator, + STATE(2886), 1, + sym_comment, + STATE(3431), 1, + aux_sym__repeat_newline, + ACTIONS(5813), 3, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2273), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -212867,21 +215003,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [87804] = 6, + [90123] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5642), 1, + STATE(2887), 1, + sym_comment, + ACTIONS(1572), 2, anon_sym_DASH2, - ACTIONS(5644), 1, anon_sym_DOT_DOT2, - STATE(2821), 1, - sym_comment, - ACTIONS(5646), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5640), 11, + ACTIONS(1574), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -212893,16 +215023,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [87834] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [90149] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2822), 1, - sym_comment, - ACTIONS(5257), 2, - sym__space, + ACTIONS(5074), 1, anon_sym_EQ2, - ACTIONS(5259), 13, + STATE(2888), 1, + sym_comment, + ACTIONS(5076), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212913,21 +215045,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, - [87860] = 6, - ACTIONS(3), 1, + anon_sym_COLON2, + [90175] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5648), 1, - anon_sym_and2, - ACTIONS(5650), 1, - anon_sym_xor2, - ACTIONS(5652), 1, - anon_sym_or2, - STATE(2823), 1, + ACTIONS(5575), 1, + sym__space, + STATE(2889), 1, sym_comment, - ACTIONS(5540), 12, - ts_builtin_sym_end, + STATE(2910), 1, + aux_sym_attribute_repeat1, + ACTIONS(5518), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212939,43 +215068,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, - [87890] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [90203] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(1588), 1, anon_sym_LPAREN2, - STATE(2824), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2910), 1, + anon_sym_DOLLAR, + ACTIONS(5815), 1, + anon_sym_DOT, + STATE(2890), 1, sym_comment, - STATE(5091), 1, + STATE(3637), 1, + sym__immediate_decimal, + ACTIONS(5817), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5819), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3762), 2, sym__expr_parenthesized_immediate, - ACTIONS(2144), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2146), 11, + sym_val_variable, + ACTIONS(1582), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [87920] = 5, + anon_sym_EQ_GT, + [90243] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5654), 1, - aux_sym__immediate_decimal_token5, - STATE(2825), 1, - sym_comment, - ACTIONS(1804), 3, - sym_identifier, + ACTIONS(2138), 1, anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1802), 11, + ACTIONS(5821), 1, + anon_sym_DOT_DOT2, + STATE(2891), 1, + sym_comment, + ACTIONS(5823), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2136), 11, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -212985,95 +215123,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [87948] = 4, + [90273] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1868), 1, + ACTIONS(2146), 1, anon_sym_DASH2, - STATE(2826), 1, + ACTIONS(5825), 1, + anon_sym_DOT_DOT2, + STATE(2892), 1, sym_comment, - ACTIONS(1866), 14, + ACTIONS(5827), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2144), 11, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [87974] = 6, + [90303] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5656), 1, - anon_sym_and2, - ACTIONS(5658), 1, - anon_sym_xor2, - ACTIONS(5660), 1, - anon_sym_or2, - STATE(2827), 1, + STATE(2893), 1, sym_comment, - ACTIONS(5548), 12, - ts_builtin_sym_end, + ACTIONS(1663), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1661), 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, - [88004] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5662), 1, - sym_identifier, - ACTIONS(5667), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5670), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5673), 1, anon_sym_DASH_DASH, - ACTIONS(5676), 1, - anon_sym_DASH2, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - STATE(2828), 2, - sym_comment, - aux_sym_parameter_parens_repeat1, - ACTIONS(5665), 3, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - [88050] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [90329] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5287), 1, - anon_sym_EQ2, - STATE(2829), 1, + ACTIONS(5575), 1, + sym__space, + STATE(2885), 1, + aux_sym_attribute_repeat1, + STATE(2894), 1, sym_comment, - ACTIONS(5289), 14, + ACTIONS(5829), 13, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213084,21 +215190,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COLON2, - [88076] = 6, + [90357] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5506), 1, - anon_sym_EQ2, - STATE(2830), 1, + STATE(2895), 1, sym_comment, - STATE(3135), 1, - sym__flag_equals_value, - ACTIONS(4367), 2, + ACTIONS(1738), 3, ts_builtin_sym_end, sym__space, - ACTIONS(4365), 11, + anon_sym_LPAREN2, + ACTIONS(1740), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213110,13 +215213,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, - [88106] = 3, - ACTIONS(3), 1, + sym__unquoted_pattern, + [90383] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2831), 1, + ACTIONS(2566), 1, + anon_sym_LPAREN2, + ACTIONS(2568), 1, + sym__unquoted_pattern, + STATE(2896), 1, sym_comment, - ACTIONS(4680), 15, + ACTIONS(2562), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2564), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213128,22 +215238,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, - [88130] = 6, + [90413] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(2554), 1, anon_sym_LPAREN2, - STATE(2832), 1, + ACTIONS(2556), 1, + sym__unquoted_pattern, + STATE(2897), 1, sym_comment, - STATE(4667), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5581), 2, + ACTIONS(1689), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5579), 11, + ACTIONS(1615), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213155,15 +215262,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, - [88160] = 4, + [90443] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2100), 1, + anon_sym_DASH2, + ACTIONS(5831), 1, + anon_sym_DOT_DOT2, + STATE(2898), 1, + sym_comment, + ACTIONS(5833), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2098), 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, + [90473] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2154), 1, + anon_sym_DASH2, + ACTIONS(5835), 1, + anon_sym_DOT_DOT2, + STATE(2899), 1, + sym_comment, + ACTIONS(5837), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2152), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [90503] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2833), 1, + STATE(2900), 1, sym_comment, - ACTIONS(5241), 2, + ACTIONS(2120), 2, sym__space, - anon_sym_EQ2, - ACTIONS(5243), 13, + anon_sym_LPAREN2, + ACTIONS(2122), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213177,20 +215332,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [88186] = 6, + [90529] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2834), 1, + ACTIONS(5104), 1, + anon_sym_EQ2, + STATE(2901), 1, sym_comment, - STATE(5091), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2148), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2150), 11, + ACTIONS(5106), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213201,16 +215352,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, - [88216] = 4, - ACTIONS(103), 1, + anon_sym_RBRACE, + anon_sym_COLON2, + [90555] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5253), 1, - anon_sym_EQ2, - STATE(2835), 1, + STATE(2902), 1, sym_comment, - ACTIONS(5255), 14, + ACTIONS(5385), 15, + ts_builtin_sym_end, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213221,18 +215372,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - anon_sym_COLON2, - [88242] = 4, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [90579] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2836), 1, + STATE(2903), 1, sym_comment, - ACTIONS(2501), 3, + ACTIONS(5646), 15, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2503), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213244,20 +215393,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, - sym__unquoted_pattern, - [88268] = 6, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [90603] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2837), 1, + STATE(2904), 1, sym_comment, - ACTIONS(994), 2, + ACTIONS(5648), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(996), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213269,19 +215414,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, - [88298] = 6, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [90627] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(2838), 1, + ACTIONS(5839), 1, + anon_sym_and2, + STATE(2905), 1, sym_comment, - ACTIONS(1018), 2, + ACTIONS(5646), 14, ts_builtin_sym_end, - sym__space, - ACTIONS(1016), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213293,16 +215437,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, - [88328] = 5, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [90653] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5501), 1, - sym__space, - STATE(2839), 1, + ACTIONS(5841), 1, + anon_sym_and2, + STATE(2906), 1, sym_comment, - STATE(2867), 1, - aux_sym_attribute_repeat1, - ACTIONS(5679), 13, + ACTIONS(5648), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213314,18 +215459,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, - [88356] = 5, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [90679] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5501), 1, - sym__space, - STATE(2840), 1, + ACTIONS(5839), 1, + anon_sym_and2, + ACTIONS(5843), 1, + anon_sym_xor2, + STATE(2907), 1, sym_comment, - STATE(2857), 1, - aux_sym_attribute_repeat1, - ACTIONS(5681), 13, + ACTIONS(5646), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213337,14 +215483,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, - [88384] = 3, + anon_sym_or2, + [90707] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2841), 1, + ACTIONS(5841), 1, + anon_sym_and2, + ACTIONS(5845), 1, + anon_sym_xor2, + STATE(2908), 1, sym_comment, - ACTIONS(5150), 15, + ACTIONS(5648), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213357,19 +215506,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [88408] = 4, + [90735] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5241), 1, + ACTIONS(5590), 1, anon_sym_EQ2, - STATE(2842), 1, + STATE(2909), 1, sym_comment, - ACTIONS(5243), 14, - sym__newline, + STATE(3223), 1, + sym__flag_equals_value, + ACTIONS(4470), 2, + ts_builtin_sym_end, sym__space, + ACTIONS(4468), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213380,37 +215531,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - anon_sym_COLON2, - [88434] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2521), 1, - anon_sym_DASH2, - STATE(2843), 1, - sym_comment, - ACTIONS(2519), 14, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [88460] = 3, - ACTIONS(3), 1, + [90765] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2844), 1, + ACTIONS(5575), 1, + sym__space, + STATE(2910), 1, sym_comment, - ACTIONS(5269), 15, - ts_builtin_sym_end, + STATE(2920), 1, + aux_sym_attribute_repeat1, + ACTIONS(5847), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213422,16 +215552,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [88484] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [90793] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2845), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(1946), 1, + anon_sym_LPAREN2, + STATE(2911), 1, sym_comment, - ACTIONS(5150), 15, + ACTIONS(1942), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1944), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213443,25 +215578,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [88508] = 7, - ACTIONS(3), 1, + [90823] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5683), 1, - sym__newline, - STATE(881), 1, - aux_sym__pipe_separator, - STATE(2846), 1, + ACTIONS(2570), 1, + anon_sym_LPAREN2, + ACTIONS(2572), 1, + sym__unquoted_pattern, + STATE(2912), 1, sym_comment, - STATE(3365), 1, - aux_sym__repeat_newline, - ACTIONS(5686), 3, + ACTIONS(994), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(996), 11, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2303), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -213471,80 +215602,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, - [88540] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5690), 1, - sym__newline, - ACTIONS(5692), 1, - anon_sym_PIPE, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2847), 1, - sym_comment, - STATE(2852), 1, - aux_sym__repeat_newline, - STATE(3179), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [88592] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(843), 1, - sym_raw_string_begin, - ACTIONS(3224), 1, - anon_sym_DQUOTE, - ACTIONS(3226), 1, - anon_sym_SQUOTE, - ACTIONS(3228), 1, - anon_sym_BQUOTE, - ACTIONS(3230), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3232), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5702), 1, - aux_sym_env_var_token1, - STATE(2848), 1, - sym_comment, - STATE(3063), 1, - sym__inter_single_quotes, - STATE(3066), 1, - sym__inter_double_quotes, - STATE(4765), 2, - sym_val_string, - sym_val_interpolated, - STATE(2454), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [88636] = 3, - ACTIONS(3), 1, + [90853] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2849), 1, + ACTIONS(2570), 1, + anon_sym_LPAREN2, + ACTIONS(2572), 1, + sym__unquoted_pattern, + STATE(2913), 1, sym_comment, - ACTIONS(5704), 15, - anon_sym_else, - anon_sym_catch, + ACTIONS(1012), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1004), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213556,14 +215626,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [88660] = 3, + [90883] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2850), 1, + STATE(2914), 1, sym_comment, - ACTIONS(5269), 15, + ACTIONS(5650), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213579,12 +215647,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [88684] = 3, + [90907] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2851), 1, + STATE(2915), 1, sym_comment, - ACTIONS(5150), 15, + ACTIONS(5657), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213600,47 +215668,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [88708] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5690), 1, - sym__newline, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5706), 1, - anon_sym_PIPE, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2852), 1, - sym_comment, - STATE(3151), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3306), 1, - aux_sym__repeat_newline, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [88760] = 3, + [90931] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2853), 1, + ACTIONS(5839), 1, + anon_sym_and2, + STATE(2916), 1, sym_comment, - ACTIONS(5269), 15, + ACTIONS(5650), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213653,15 +215688,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, - [88784] = 3, + [90957] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2854), 1, + ACTIONS(5841), 1, + anon_sym_and2, + STATE(2917), 1, sym_comment, - ACTIONS(5624), 15, + ACTIONS(5657), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213674,16 +215710,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, - [88808] = 3, - ACTIONS(3), 1, + [90983] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2855), 1, + STATE(2918), 1, sym_comment, - ACTIONS(5626), 15, + ACTIONS(2325), 3, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2327), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213695,17 +215733,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, - [88832] = 4, + sym__unquoted_pattern, + [91009] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5648), 1, + ACTIONS(5841), 1, anon_sym_and2, - STATE(2856), 1, + ACTIONS(5845), 1, + anon_sym_xor2, + STATE(2919), 1, sym_comment, - ACTIONS(5624), 14, + ACTIONS(5657), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213718,17 +215756,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, - [88858] = 4, + [91037] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5710), 1, + ACTIONS(5851), 1, sym__space, - STATE(2857), 2, + STATE(2920), 2, sym_comment, aux_sym_attribute_repeat1, - ACTIONS(5708), 13, + ACTIONS(5849), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213742,15 +215779,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [88884] = 4, - ACTIONS(3), 1, + [91063] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5656), 1, - anon_sym_and2, - STATE(2858), 1, + ACTIONS(5590), 1, + anon_sym_EQ2, + STATE(2921), 1, sym_comment, - ACTIONS(5626), 14, + STATE(3263), 1, + sym__flag_equals_value, + ACTIONS(5754), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(5752), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213762,18 +215803,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor2, - anon_sym_or2, - [88910] = 5, + [91093] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5648), 1, + ACTIONS(5839), 1, anon_sym_and2, - ACTIONS(5650), 1, + ACTIONS(5843), 1, anon_sym_xor2, - STATE(2859), 1, + ACTIONS(5854), 1, + anon_sym_or2, + STATE(2922), 1, sym_comment, - ACTIONS(5624), 13, + ACTIONS(5618), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -213786,18 +215827,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_or2, - [88938] = 5, + [91123] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5656), 1, - anon_sym_and2, - ACTIONS(5658), 1, - anon_sym_xor2, - STATE(2860), 1, + ACTIONS(5792), 1, + sym_identifier, + ACTIONS(5794), 1, + sym__newline, + ACTIONS(5798), 1, + anon_sym_DOLLAR, + ACTIONS(5800), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_DASH_DASH, + ACTIONS(5804), 1, + anon_sym_DASH2, + ACTIONS(5856), 1, + anon_sym_PIPE, + STATE(2542), 1, + sym_param_long_flag, + STATE(2679), 1, + sym__param_name, + STATE(2923), 1, sym_comment, - ACTIONS(5626), 13, + STATE(3256), 1, + aux_sym_parameter_parens_repeat1, + STATE(3309), 1, + sym_param_short_flag, + STATE(3328), 1, + aux_sym__repeat_newline, + STATE(3337), 1, + sym_param_rest, + STATE(3338), 1, + sym_param_opt, + STATE(3644), 1, + sym_parameter, + [91175] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1956), 1, + anon_sym_LPAREN2, + ACTIONS(1962), 1, + sym__unquoted_pattern, + STATE(2924), 1, + sym_comment, + ACTIONS(2574), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2576), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213809,14 +215886,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_or2, - [88966] = 3, - ACTIONS(3), 1, + [91205] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2861), 1, + ACTIONS(1756), 1, + anon_sym_LPAREN2, + STATE(2925), 1, sym_comment, - ACTIONS(5631), 15, + STATE(4797), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5567), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(5565), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213828,16 +215910,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, - [88990] = 3, - ACTIONS(3), 1, + [91235] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2862), 1, + ACTIONS(1956), 1, + anon_sym_LPAREN2, + ACTIONS(1962), 1, + sym__unquoted_pattern, + STATE(2926), 1, sym_comment, - ACTIONS(5633), 15, + ACTIONS(1952), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1954), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213849,18 +215934,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, - [89014] = 4, + [91265] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2863), 1, - sym_comment, - ACTIONS(1556), 2, - anon_sym_DASH2, + ACTIONS(5769), 1, anon_sym_DOT_DOT2, - ACTIONS(1558), 13, + ACTIONS(5860), 1, + anon_sym_DASH2, + STATE(2927), 1, + sym_comment, + ACTIONS(5771), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5858), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -213872,17 +215958,19 @@ 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, - [89040] = 4, - ACTIONS(3), 1, + [91295] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5648), 1, - anon_sym_and2, - STATE(2864), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2513), 1, + anon_sym_LPAREN2, + STATE(2928), 1, sym_comment, - ACTIONS(5631), 14, + ACTIONS(2509), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2511), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213894,17 +215982,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, - [89066] = 4, - ACTIONS(3), 1, + [91325] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5656), 1, - anon_sym_and2, - STATE(2865), 1, + ACTIONS(2114), 1, + sym__space, + ACTIONS(5862), 1, + anon_sym_LBRACK2, + STATE(2929), 1, sym_comment, - ACTIONS(5633), 14, - ts_builtin_sym_end, + ACTIONS(2116), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213916,42 +216003,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_xor2, - anon_sym_or2, - [89092] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [91353] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5644), 1, - anon_sym_DOT_DOT2, - ACTIONS(5715), 1, + ACTIONS(1850), 1, anon_sym_DASH2, - STATE(2866), 1, + STATE(2930), 1, sym_comment, - ACTIONS(5646), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5713), 11, + ACTIONS(1848), 14, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [89122] = 5, + [91379] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5501), 1, - sym__space, - STATE(2857), 1, - aux_sym_attribute_repeat1, - STATE(2867), 1, + ACTIONS(2529), 1, + anon_sym_LPAREN2, + ACTIONS(2531), 1, + sym__unquoted_pattern, + STATE(2931), 1, sym_comment, - ACTIONS(5717), 13, + ACTIONS(2525), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2527), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213963,40 +216051,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, - [89150] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2868), 1, - sym_comment, - ACTIONS(1824), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1822), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [89176] = 4, + [91409] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5221), 1, - anon_sym_EQ2, - STATE(2869), 1, + STATE(2932), 1, sym_comment, - ACTIONS(5223), 14, - sym__newline, + ACTIONS(5138), 2, sym__space, + anon_sym_EQ2, + ACTIONS(5140), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214007,18 +216071,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COLON2, - [89202] = 4, + [91435] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5237), 1, - anon_sym_EQ2, - STATE(2870), 1, + STATE(2933), 1, sym_comment, - ACTIONS(5239), 14, - sym__newline, + ACTIONS(5128), 2, sym__space, + anon_sym_EQ2, + ACTIONS(5130), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214029,21 +216093,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_COLON2, - [89228] = 6, + [91461] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5644), 1, + ACTIONS(5769), 1, anon_sym_DOT_DOT2, - ACTIONS(5721), 1, + ACTIONS(5866), 1, anon_sym_DASH2, - STATE(2871), 1, + STATE(2934), 1, sym_comment, - ACTIONS(5646), 2, + ACTIONS(5771), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5719), 11, + ACTIONS(5864), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -214055,64 +216119,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [89258] = 6, - ACTIONS(103), 1, + [91491] = 17, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(2872), 1, - sym_comment, - ACTIONS(2635), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2637), 11, + ACTIONS(5792), 1, + sym_identifier, + ACTIONS(5794), 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, - [89288] = 6, + ACTIONS(5798), 1, + anon_sym_DOLLAR, + ACTIONS(5800), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_DASH_DASH, + ACTIONS(5804), 1, + anon_sym_DASH2, + ACTIONS(5868), 1, + anon_sym_RBRACK, + STATE(2542), 1, + sym_param_long_flag, + STATE(2679), 1, + sym__param_name, + STATE(2935), 1, + sym_comment, + STATE(3141), 1, + aux_sym_parameter_parens_repeat1, + STATE(3309), 1, + sym_param_short_flag, + STATE(3328), 1, + aux_sym__repeat_newline, + STATE(3337), 1, + sym_param_rest, + STATE(3338), 1, + sym_param_opt, + STATE(3644), 1, + sym_parameter, + [91543] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(2873), 1, + STATE(2936), 1, sym_comment, - ACTIONS(2575), 2, - ts_builtin_sym_end, + ACTIONS(5074), 2, sym__space, - ACTIONS(2577), 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, - [89318] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5257), 1, anon_sym_EQ2, - STATE(2874), 1, - sym_comment, - ACTIONS(5259), 14, + ACTIONS(5076), 13, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214123,45 +216174,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COLON2, - [89344] = 6, - ACTIONS(103), 1, + [91569] = 17, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(2875), 1, - sym_comment, - ACTIONS(1974), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1976), 11, + ACTIONS(5792), 1, + sym_identifier, + ACTIONS(5794), 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, - [89374] = 6, + ACTIONS(5798), 1, + anon_sym_DOLLAR, + ACTIONS(5800), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_DASH_DASH, + ACTIONS(5804), 1, + anon_sym_DASH2, + ACTIONS(5870), 1, + anon_sym_RPAREN, + STATE(2542), 1, + sym_param_long_flag, + STATE(2679), 1, + sym__param_name, + STATE(2937), 1, + sym_comment, + STATE(3145), 1, + aux_sym_parameter_parens_repeat1, + STATE(3309), 1, + sym_param_short_flag, + STATE(3328), 1, + aux_sym__repeat_newline, + STATE(3337), 1, + sym_param_rest, + STATE(3338), 1, + sym_param_opt, + STATE(3644), 1, + sym_parameter, + [91621] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(2876), 1, + ACTIONS(5273), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(5872), 1, + anon_sym_DOT, + STATE(2938), 1, sym_comment, - ACTIONS(1706), 2, + ACTIONS(1728), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1619), 11, + ACTIONS(1730), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214173,43 +216235,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, - [89404] = 6, - ACTIONS(103), 1, + [91651] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - STATE(2877), 1, + ACTIONS(5644), 1, + aux_sym__immediate_decimal_token5, + STATE(2939), 1, sym_comment, - STATE(5091), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2170), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2172), 11, + ACTIONS(1730), 3, + sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1728), 11, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [89434] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1752), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_LPAREN2, - STATE(2878), 1, + [91679] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5841), 1, + anon_sym_and2, + ACTIONS(5845), 1, + anon_sym_xor2, + ACTIONS(5874), 1, + anon_sym_or2, + STATE(2940), 1, sym_comment, - STATE(5091), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2072), 2, + ACTIONS(5626), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(2074), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214221,86 +216282,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, - [89464] = 17, + [91709] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(5792), 1, sym_identifier, - ACTIONS(5690), 1, + ACTIONS(5794), 1, sym__newline, - ACTIONS(5694), 1, + ACTIONS(5798), 1, anon_sym_DOLLAR, - ACTIONS(5696), 1, + ACTIONS(5800), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, + ACTIONS(5802), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, + ACTIONS(5804), 1, anon_sym_DASH2, - ACTIONS(5723), 1, - anon_sym_RBRACK, - STATE(2467), 1, + ACTIONS(5876), 1, + anon_sym_PIPE, + STATE(2542), 1, sym_param_long_flag, - STATE(2631), 1, + STATE(2679), 1, sym__param_name, - STATE(2879), 1, - sym_comment, - STATE(3198), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3306), 1, + STATE(2923), 1, aux_sym__repeat_newline, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [89516] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5690), 1, - sym__newline, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5725), 1, - anon_sym_RPAREN, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2880), 1, + STATE(2941), 1, sym_comment, - STATE(3083), 1, + STATE(3161), 1, aux_sym_parameter_parens_repeat1, - STATE(3269), 1, + STATE(3309), 1, sym_param_short_flag, - STATE(3306), 1, - aux_sym__repeat_newline, - STATE(3314), 1, + STATE(3337), 1, sym_param_rest, - STATE(3328), 1, + STATE(3338), 1, sym_param_opt, - STATE(3582), 1, + STATE(3644), 1, sym_parameter, - [89568] = 5, - ACTIONS(103), 1, + [91761] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2128), 1, - sym__space, - ACTIONS(5727), 1, - anon_sym_LBRACK2, - STATE(2881), 1, + STATE(2942), 1, sym_comment, - ACTIONS(2130), 13, + ACTIONS(4767), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214312,21 +216335,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, - [89596] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [91785] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5085), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(5729), 1, - anon_sym_DOT, - STATE(2882), 1, + ACTIONS(1756), 1, + anon_sym_LPAREN2, + STATE(2943), 1, sym_comment, - ACTIONS(1736), 2, + STATE(5243), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2070), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1738), 11, + ACTIONS(2072), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214338,62 +216362,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, - [89626] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5468), 1, - aux_sym__immediate_decimal_token5, - STATE(2883), 1, - sym_comment, - ACTIONS(1738), 3, - sym_identifier, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1736), 11, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [89654] = 6, - ACTIONS(3), 1, + [91815] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1619), 1, - anon_sym_DASH2, - ACTIONS(5644), 1, - anon_sym_DOT_DOT2, - STATE(2884), 1, + STATE(2944), 1, sym_comment, - ACTIONS(5646), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1706), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5088), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5090), 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, - [89684] = 4, + anon_sym_RBRACE, + [91841] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2885), 1, + STATE(2945), 1, sym_comment, - ACTIONS(5253), 2, + ACTIONS(5064), 2, sym__space, anon_sym_EQ2, - ACTIONS(5255), 13, + ACTIONS(5066), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214407,80 +216406,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [89710] = 6, + [91867] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2154), 1, + ACTIONS(2616), 1, anon_sym_DASH2, - ACTIONS(5731), 1, - anon_sym_DOT_DOT2, - STATE(2886), 1, - sym_comment, - ACTIONS(5733), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 11, + STATE(2946), 1, + sym_comment, + ACTIONS(2614), 14, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [89740] = 17, + [91893] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5690), 1, + ACTIONS(5878), 1, sym__newline, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5735), 1, - anon_sym_RBRACK, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2887), 1, + STATE(751), 1, + aux_sym__pipe_separator, + STATE(2947), 1, sym_comment, - STATE(2901), 1, + STATE(3431), 1, aux_sym__repeat_newline, - STATE(3171), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [89792] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(2888), 1, - sym_comment, - ACTIONS(2523), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2525), 11, - sym__newline, + ACTIONS(5881), 3, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2273), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -214490,73 +216453,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [89822] = 17, + [91925] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(1864), 1, + anon_sym_DASH2, + STATE(2948), 1, + sym_comment, + ACTIONS(1862), 14, + anon_sym_EQ, sym_identifier, - ACTIONS(5690), 1, sym__newline, - ACTIONS(5694), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5696), 1, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5737), 1, - anon_sym_RPAREN, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2889), 1, - sym_comment, - STATE(2902), 1, - aux_sym__repeat_newline, - STATE(3174), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [89874] = 5, + [91951] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5656), 1, - anon_sym_and2, - ACTIONS(5658), 1, - anon_sym_xor2, - STATE(2890), 1, + ACTIONS(5883), 1, + aux_sym__immediate_decimal_token5, + STATE(2949), 1, sym_comment, - ACTIONS(5633), 13, - ts_builtin_sym_end, + ACTIONS(1808), 3, + sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1806), 11, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or2, - [89902] = 3, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [91979] = 7, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2891), 1, - sym_comment, - ACTIONS(5739), 15, - anon_sym_else, - anon_sym_catch, + ACTIONS(5522), 1, + anon_sym_EQ2, + ACTIONS(5885), 1, sym__newline, + ACTIONS(5887), 1, + sym__space, + STATE(2950), 1, + sym_comment, + STATE(3039), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(5889), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214568,49 +216523,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, - [89926] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(5741), 1, - anon_sym_DOT, - STATE(2892), 1, - sym_comment, - STATE(3577), 1, - sym__immediate_decimal, - ACTIONS(5743), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5745), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3636), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [89966] = 6, + [92011] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5506), 1, + ACTIONS(5522), 1, anon_sym_EQ2, - STATE(2893), 1, - sym_comment, - STATE(3081), 1, - sym__flag_equals_value, - ACTIONS(5622), 2, + ACTIONS(5891), 1, ts_builtin_sym_end, + ACTIONS(5893), 1, sym__space, - ACTIONS(5620), 11, + STATE(2951), 1, + sym_comment, + STATE(3119), 1, + aux_sym_attribute_repeat1, + ACTIONS(5518), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214622,19 +216548,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [89996] = 6, + [92043] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(2894), 1, + STATE(2952), 1, sym_comment, - ACTIONS(2567), 2, - ts_builtin_sym_end, + ACTIONS(5104), 2, sym__space, - ACTIONS(2569), 11, + anon_sym_EQ2, + ACTIONS(5106), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214646,20 +216568,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [90026] = 7, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [92069] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5330), 1, - anon_sym_EQ2, - ACTIONS(5747), 1, - ts_builtin_sym_end, - ACTIONS(5749), 1, - sym__space, - STATE(2895), 1, + STATE(2953), 1, sym_comment, - STATE(3009), 1, - aux_sym_attribute_repeat1, - ACTIONS(5326), 11, + ACTIONS(5308), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214671,16 +216588,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, - [90058] = 5, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [92093] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - ACTIONS(4969), 1, - sym__unquoted_pattern, - STATE(2896), 1, + STATE(2954), 1, sym_comment, - ACTIONS(868), 13, + ACTIONS(5895), 15, + anon_sym_else, + anon_sym_catch, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214694,16 +216612,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90086] = 4, + [92117] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2897), 1, - sym_comment, - ACTIONS(5287), 2, - sym__space, + ACTIONS(5088), 1, anon_sym_EQ2, - ACTIONS(5289), 13, + STATE(2955), 1, + sym_comment, + ACTIONS(5090), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214714,156 +216632,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_RBRACE, - [90112] = 5, + anon_sym_COLON2, + [92143] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5751), 1, - anon_sym_LBRACK2, - STATE(2898), 1, - sym_comment, - ACTIONS(2130), 2, - anon_sym_LBRACK, - anon_sym_DASH2, - ACTIONS(2128), 12, - anon_sym_EQ, + ACTIONS(5792), 1, sym_identifier, + ACTIONS(5794), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5798), 1, anon_sym_DOLLAR, + ACTIONS(5800), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, anon_sym_DASH_DASH, - [90140] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1860), 1, + ACTIONS(5804), 1, anon_sym_DASH2, - STATE(2899), 1, - sym_comment, - ACTIONS(1858), 14, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, + ACTIONS(5897), 1, 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, - [90166] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2900), 1, + STATE(2542), 1, + sym_param_long_flag, + STATE(2679), 1, + sym__param_name, + STATE(2882), 1, + aux_sym__repeat_newline, + STATE(2956), 1, sym_comment, - ACTIONS(1643), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1641), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [90192] = 17, + STATE(3258), 1, + aux_sym_parameter_parens_repeat1, + STATE(3309), 1, + sym_param_short_flag, + STATE(3337), 1, + sym_param_rest, + STATE(3338), 1, + sym_param_opt, + STATE(3644), 1, + sym_parameter, + [92195] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(5792), 1, sym_identifier, - ACTIONS(5690), 1, + ACTIONS(5794), 1, sym__newline, - ACTIONS(5694), 1, + ACTIONS(5798), 1, anon_sym_DOLLAR, - ACTIONS(5696), 1, + ACTIONS(5800), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, + ACTIONS(5802), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, + ACTIONS(5804), 1, anon_sym_DASH2, - ACTIONS(5753), 1, - anon_sym_RBRACK, - STATE(2467), 1, + ACTIONS(5899), 1, + anon_sym_RPAREN, + STATE(2542), 1, sym_param_long_flag, - STATE(2631), 1, + STATE(2679), 1, sym__param_name, - STATE(2901), 1, + STATE(2883), 1, + aux_sym__repeat_newline, + STATE(2957), 1, sym_comment, - STATE(3202), 1, + STATE(3132), 1, aux_sym_parameter_parens_repeat1, - STATE(3269), 1, + STATE(3309), 1, sym_param_short_flag, - STATE(3306), 1, - aux_sym__repeat_newline, - STATE(3314), 1, + STATE(3337), 1, sym_param_rest, - STATE(3328), 1, + STATE(3338), 1, sym_param_opt, - STATE(3582), 1, + STATE(3644), 1, sym_parameter, - [90244] = 17, + [92247] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(5792), 1, sym_identifier, - ACTIONS(5690), 1, + ACTIONS(5794), 1, sym__newline, - ACTIONS(5694), 1, + ACTIONS(5798), 1, anon_sym_DOLLAR, - ACTIONS(5696), 1, + ACTIONS(5800), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, + ACTIONS(5802), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, + ACTIONS(5804), 1, anon_sym_DASH2, - ACTIONS(5755), 1, - anon_sym_RPAREN, - STATE(2467), 1, + ACTIONS(5901), 1, + anon_sym_RBRACK, + STATE(2542), 1, sym_param_long_flag, - STATE(2631), 1, + STATE(2679), 1, sym__param_name, - STATE(2902), 1, + STATE(2935), 1, + aux_sym__repeat_newline, + STATE(2958), 1, sym_comment, - STATE(3172), 1, + STATE(3152), 1, aux_sym_parameter_parens_repeat1, - STATE(3269), 1, + STATE(3309), 1, sym_param_short_flag, - STATE(3306), 1, - aux_sym__repeat_newline, - STATE(3314), 1, + STATE(3337), 1, sym_param_rest, - STATE(3328), 1, + STATE(3338), 1, sym_param_opt, - STATE(3582), 1, + STATE(3644), 1, sym_parameter, - [90296] = 4, + [92299] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1615), 1, + anon_sym_DASH2, + ACTIONS(5769), 1, + anon_sym_DOT_DOT2, + STATE(2959), 1, + sym_comment, + ACTIONS(5771), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1689), 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, + [92329] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2903), 1, + ACTIONS(5064), 1, + anon_sym_EQ2, + STATE(2960), 1, sym_comment, - ACTIONS(1726), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1728), 12, + ACTIONS(5066), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214874,17 +216783,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - sym__unquoted_pattern, - [90322] = 4, + anon_sym_RBRACE, + anon_sym_COLON2, + [92355] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2904), 1, + ACTIONS(5128), 1, + anon_sym_EQ2, + STATE(2961), 1, sym_comment, - ACTIONS(2092), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2094), 13, + ACTIONS(5130), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214895,18 +216805,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, - [90348] = 5, + anon_sym_COLON2, + [92381] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5792), 1, + sym_identifier, + ACTIONS(5794), 1, + sym__newline, + ACTIONS(5798), 1, + anon_sym_DOLLAR, + ACTIONS(5800), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_DASH_DASH, + ACTIONS(5804), 1, + anon_sym_DASH2, + ACTIONS(5903), 1, + anon_sym_RPAREN, + STATE(2542), 1, + sym_param_long_flag, + STATE(2679), 1, + sym__param_name, + STATE(2937), 1, + aux_sym__repeat_newline, + STATE(2962), 1, + sym_comment, + STATE(3158), 1, + aux_sym_parameter_parens_repeat1, + STATE(3309), 1, + sym_param_short_flag, + STATE(3337), 1, + sym_param_rest, + STATE(3338), 1, + sym_param_opt, + STATE(3644), 1, + sym_parameter, + [92433] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5501), 1, + ACTIONS(890), 1, sym__space, - STATE(2840), 1, - aux_sym_attribute_repeat1, - STATE(2905), 1, + ACTIONS(5150), 1, + sym__unquoted_pattern, + STATE(2963), 1, sym_comment, - ACTIONS(5326), 13, + ACTIONS(793), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214920,39 +216865,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90376] = 6, + [92461] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5138), 1, + anon_sym_EQ2, + STATE(2964), 1, + sym_comment, + ACTIONS(5140), 14, + sym__newline, + sym__space, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACE, + anon_sym_COLON2, + [92487] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2102), 1, - anon_sym_DASH2, - ACTIONS(5757), 1, - anon_sym_DOT_DOT2, - STATE(2906), 1, + ACTIONS(5839), 1, + anon_sym_and2, + ACTIONS(5843), 1, + anon_sym_xor2, + STATE(2965), 1, sym_comment, - ACTIONS(5759), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2100), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5650), 13, + 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, - [90406] = 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_or2, + [92515] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2907), 1, - sym_comment, - ACTIONS(5221), 2, + ACTIONS(890), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5223), 13, + STATE(2966), 1, + sym_comment, + ACTIONS(793), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214966,15 +216931,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90432] = 4, + [92540] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2908), 1, - sym_comment, - ACTIONS(5237), 2, + ACTIONS(2311), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5239), 13, + STATE(2967), 1, + sym_comment, + ACTIONS(2313), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214988,79 +216952,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90458] = 6, + [92565] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2078), 1, - anon_sym_DASH2, - ACTIONS(5761), 1, - anon_sym_DOT_DOT2, - STATE(2909), 1, + ACTIONS(5905), 1, + sym__newline, + STATE(893), 1, + aux_sym__pipe_separator, + STATE(2968), 1, sym_comment, - ACTIONS(5763), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2076), 11, - anon_sym_EQ, - sym_identifier, + STATE(3431), 1, + aux_sym__repeat_newline, + ACTIONS(5908), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(2273), 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, + [92596] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2337), 1, + sym__space, + STATE(2969), 1, + sym_comment, + ACTIONS(2339), 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, - [90488] = 17, + anon_sym_RBRACE, + [92621] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5690), 1, - sym__newline, - ACTIONS(5694), 1, + ACTIONS(1588), 1, + anon_sym_LPAREN2, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2910), 1, anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5765), 1, - anon_sym_RBRACK, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2879), 1, - aux_sym__repeat_newline, - STATE(2910), 1, + ACTIONS(5910), 1, + anon_sym_DOT, + STATE(2970), 1, sym_comment, - STATE(3077), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [90540] = 7, + STATE(3731), 1, + sym__immediate_decimal, + ACTIONS(5912), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5914), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3762), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1582), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [92660] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5330), 1, - anon_sym_EQ2, - ACTIONS(5767), 1, - sym__newline, - ACTIONS(5769), 1, + ACTIONS(2345), 1, sym__space, - STATE(2911), 1, + STATE(2971), 1, sym_comment, - STATE(3033), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(5771), 11, + ACTIONS(2347), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215072,54 +217045,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [90572] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5690), 1, - sym__newline, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5773), 1, - anon_sym_RPAREN, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2880), 1, - aux_sym__repeat_newline, - STATE(2912), 1, - sym_comment, - STATE(3088), 1, - aux_sym_parameter_parens_repeat1, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [90624] = 6, + anon_sym_RBRACE, + [92685] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2122), 1, + ACTIONS(5237), 1, + anon_sym_LPAREN2, + ACTIONS(5866), 1, anon_sym_DASH2, - ACTIONS(5775), 1, - anon_sym_DOT_DOT2, - STATE(2913), 1, + STATE(2972), 1, sym_comment, - ACTIONS(5777), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2120), 11, + STATE(4767), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5864), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -215131,14 +217069,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [90654] = 4, + [92714] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2593), 1, + ACTIONS(793), 1, anon_sym_DASH2, - STATE(2914), 1, + STATE(2973), 1, sym_comment, - ACTIONS(2591), 14, + ACTIONS(890), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -215150,22 +217088,50 @@ 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, - [90680] = 5, + [92739] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5648), 1, - anon_sym_and2, - ACTIONS(5650), 1, - anon_sym_xor2, - STATE(2915), 1, + ACTIONS(1588), 1, + anon_sym_LPAREN2, + ACTIONS(1611), 1, + anon_sym_DOT, + ACTIONS(2910), 1, + anon_sym_DOLLAR, + STATE(2974), 1, sym_comment, - ACTIONS(5631), 13, - ts_builtin_sym_end, + STATE(3761), 1, + sym__immediate_decimal, + ACTIONS(5817), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5819), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3760), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1607), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [92776] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5916), 1, sym__newline, + STATE(893), 1, + aux_sym__pipe_separator, + STATE(2975), 1, + sym_comment, + STATE(3431), 1, + aux_sym__repeat_newline, + ACTIONS(5919), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(2273), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -215175,42 +217141,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or2, - [90708] = 6, + [92807] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5781), 1, - anon_sym_AT2, - ACTIONS(5783), 1, + ACTIONS(1615), 1, anon_sym_DASH2, - STATE(2916), 1, + STATE(2976), 1, sym_comment, - STATE(3241), 1, - sym_param_completer, - ACTIONS(5779), 11, + ACTIONS(1689), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [90737] = 6, - ACTIONS(103), 1, + [92832] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5767), 1, + ACTIONS(5921), 1, + anon_sym_catch, + ACTIONS(5923), 1, sym__newline, - ACTIONS(5769), 1, - sym__space, - STATE(2917), 1, + STATE(2977), 1, sym_comment, - STATE(3043), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(5785), 11, + STATE(3121), 1, + aux_sym__repeat_newline, + ACTIONS(5926), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215222,21 +217185,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [90766] = 7, + [92861] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5787), 1, + ACTIONS(5928), 1, + anon_sym_else, + ACTIONS(5930), 1, sym__newline, - STATE(788), 1, - aux_sym__pipe_separator, - STATE(2918), 1, + STATE(2978), 1, sym_comment, - STATE(3365), 1, + STATE(3054), 1, aux_sym__repeat_newline, - ACTIONS(5790), 2, + ACTIONS(5933), 11, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2303), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -215246,81 +217207,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [90797] = 6, + anon_sym_RPAREN, + [92890] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5792), 1, - anon_sym_else, - ACTIONS(5794), 1, - sym__newline, - STATE(2919), 1, + STATE(2979), 1, sym_comment, - STATE(3047), 1, - aux_sym__repeat_newline, - ACTIONS(5797), 11, - anon_sym_SEMI, + ACTIONS(2327), 2, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(2325), 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, - [90826] = 4, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [92915] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2268), 1, - sym__space, - STATE(2920), 1, + ACTIONS(5237), 1, + anon_sym_LPAREN2, + ACTIONS(5767), 1, + anon_sym_DASH2, + STATE(2980), 1, sym_comment, - ACTIONS(2270), 13, + STATE(4767), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5765), 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, - [90851] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [92944] = 13, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2272), 1, + ACTIONS(1582), 1, sym__space, - STATE(2921), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(3261), 1, + anon_sym_LPAREN2, + ACTIONS(3659), 1, + anon_sym_DOLLAR, + ACTIONS(5935), 1, + anon_sym_DOT, + ACTIONS(5937), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5939), 1, + aux_sym__immediate_decimal_token2, + STATE(2981), 1, sym_comment, - ACTIONS(2274), 13, + STATE(3662), 1, + sym__immediate_decimal, + ACTIONS(1586), 2, sym__newline, anon_sym_SEMI, + ACTIONS(5941), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3853), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [92987] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1615), 1, + anon_sym_DASH2, + ACTIONS(2554), 1, + anon_sym_LPAREN2, + ACTIONS(2556), 1, + sym__unquoted_pattern_in_record, + STATE(2982), 1, + sym_comment, + ACTIONS(1689), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [90876] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [93016] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2922), 1, - sym_comment, - ACTIONS(5241), 3, - ts_builtin_sym_end, + ACTIONS(2479), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5243), 11, + STATE(2983), 1, + sym_comment, + ACTIONS(2481), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215332,19 +217324,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, - [90901] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93041] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5174), 1, + ACTIONS(5350), 1, anon_sym_DOT, - ACTIONS(5176), 1, + ACTIONS(5352), 1, aux_sym__immediate_decimal_token5, - STATE(2923), 1, + STATE(2984), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(1730), 2, sym_identifier, anon_sym_DASH2, - ACTIONS(1736), 10, + ACTIONS(1728), 10, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -215355,14 +217349,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [90930] = 4, + [93070] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2256), 1, + ACTIONS(2331), 1, anon_sym_DASH2, - STATE(2924), 1, + STATE(2985), 1, sym_comment, - ACTIONS(2254), 13, + ACTIONS(2329), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -215376,14 +217370,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [90955] = 4, + [93095] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2463), 1, + sym__space, + STATE(2986), 1, + sym_comment, + ACTIONS(2465), 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, + [93120] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2256), 1, + ACTIONS(2560), 1, anon_sym_DASH2, - STATE(2925), 1, + STATE(2987), 1, sym_comment, - ACTIONS(2254), 13, + ACTIONS(2558), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -215397,17 +217412,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [90980] = 5, + [93145] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5799), 1, - ts_builtin_sym_end, - ACTIONS(5801), 1, + ACTIONS(1862), 1, sym__space, - STATE(2926), 2, + STATE(2988), 1, sym_comment, - aux_sym_attribute_repeat1, - ACTIONS(5708), 11, + ACTIONS(1864), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215419,41 +217431,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [91007] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93170] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5806), 1, + ACTIONS(5943), 1, + anon_sym_catch, + ACTIONS(5945), 1, + sym__newline, + STATE(2977), 1, + aux_sym__repeat_newline, + STATE(2989), 1, + sym_comment, + ACTIONS(5948), 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, + [93199] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2481), 1, anon_sym_DASH2, - STATE(2927), 1, + STATE(2990), 1, sym_comment, - STATE(4927), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5804), 11, + ACTIONS(2479), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91036] = 6, + [93224] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5810), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_record, + ACTIONS(1944), 1, anon_sym_DASH2, - STATE(2928), 1, + ACTIONS(1946), 1, + anon_sym_LPAREN2, + STATE(2991), 1, sym_comment, - STATE(4927), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5808), 11, + ACTIONS(1942), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -215465,20 +217500,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91065] = 6, - ACTIONS(103), 1, + [93253] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5747), 1, - ts_builtin_sym_end, - ACTIONS(5749), 1, - sym__space, - STATE(2929), 1, - sym_comment, - STATE(3009), 1, - aux_sym_attribute_repeat1, - ACTIONS(5326), 11, + ACTIONS(5878), 1, sym__newline, + STATE(751), 1, + aux_sym__pipe_separator, + STATE(2992), 1, + sym_comment, + STATE(3431), 1, + aux_sym__repeat_newline, + ACTIONS(5881), 2, + ts_builtin_sym_end, anon_sym_SEMI, + ACTIONS(2273), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -215488,14 +217524,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, - [91094] = 4, + [93284] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2152), 1, + ACTIONS(2349), 1, sym__space, - STATE(2930), 1, + STATE(2993), 1, sym_comment, - ACTIONS(2154), 13, + ACTIONS(2351), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215509,14 +217545,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91119] = 4, + [93309] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2202), 1, - sym__space, - STATE(2931), 1, + STATE(2994), 1, sym_comment, - ACTIONS(2204), 13, + ACTIONS(5064), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5066), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215528,16 +217566,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, - [91144] = 4, + [93334] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2591), 1, - sym__space, - STATE(2932), 1, + STATE(2995), 1, sym_comment, - ACTIONS(2593), 13, + ACTIONS(5088), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5090), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215549,16 +217587,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, - [91169] = 4, + [93359] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4651), 1, + ACTIONS(2467), 1, sym__space, - STATE(2933), 1, + STATE(2996), 1, sym_comment, - ACTIONS(4649), 13, + ACTIONS(2469), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215572,14 +217608,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91194] = 4, + [93384] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2204), 1, + ACTIONS(2481), 1, anon_sym_DASH2, - STATE(2934), 1, + STATE(2997), 1, sym_comment, - ACTIONS(2202), 13, + ACTIONS(2479), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -215593,16 +217629,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91219] = 4, + [93409] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2935), 1, + STATE(2998), 1, sym_comment, - ACTIONS(2084), 3, + ACTIONS(5104), 3, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(2086), 11, + anon_sym_EQ2, + ACTIONS(5106), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215614,14 +217650,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, - [91244] = 4, + [93434] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2609), 1, + ACTIONS(2485), 1, anon_sym_DASH2, - STATE(2936), 1, + STATE(2999), 1, sym_comment, - ACTIONS(2607), 13, + ACTIONS(2483), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -215635,18 +217671,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91269] = 6, + [93459] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(2489), 1, + anon_sym_DASH2, + STATE(3000), 1, + sym_comment, + ACTIONS(2487), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(5812), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [93484] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5950), 1, anon_sym_else, - STATE(540), 1, + ACTIONS(5952), 1, + sym__newline, + STATE(2978), 1, aux_sym__repeat_newline, - STATE(2937), 1, + STATE(3001), 1, sym_comment, - ACTIONS(1955), 11, + ACTIONS(5955), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215658,21 +217715,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [91298] = 7, - ACTIONS(3), 1, + [93513] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5683), 1, - sym__newline, - STATE(881), 1, - aux_sym__pipe_separator, - STATE(2938), 1, + ACTIONS(2471), 1, + sym__space, + STATE(3002), 1, sym_comment, - STATE(3365), 1, - aux_sym__repeat_newline, - ACTIONS(5686), 2, - ts_builtin_sym_end, + ACTIONS(2473), 13, + sym__newline, anon_sym_SEMI, - ACTIONS(2303), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -215682,15 +217734,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, - [91329] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93538] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2939), 1, + ACTIONS(5959), 1, + sym__space, + STATE(3003), 1, sym_comment, - ACTIONS(5704), 14, - ts_builtin_sym_end, - anon_sym_else, - anon_sym_catch, + ACTIONS(5957), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215702,16 +217755,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, - [91352] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93563] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2940), 1, + ACTIONS(5377), 1, + sym__space, + STATE(3004), 1, sym_comment, - ACTIONS(5287), 3, - ts_builtin_sym_end, + ACTIONS(5375), 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, + [93588] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2475), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5289), 11, + STATE(3005), 1, + sym_comment, + ACTIONS(2477), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215723,87 +217797,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, - [91377] = 10, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93613] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(2941), 1, + ACTIONS(5963), 1, + sym__space, + STATE(3006), 1, sym_comment, - STATE(3635), 1, - sym__immediate_decimal, - ACTIONS(5743), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5745), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3634), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1582), 4, - anon_sym_if, + ACTIONS(5961), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - [91414] = 4, - ACTIONS(3), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93638] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2513), 1, - anon_sym_DASH2, - STATE(2942), 1, + ACTIONS(5440), 1, + sym__space, + STATE(3007), 1, sym_comment, - ACTIONS(2511), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(5438), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [91439] = 4, + anon_sym_RBRACE, + [93663] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2517), 1, + ACTIONS(2564), 1, anon_sym_DASH2, - STATE(2943), 1, + ACTIONS(2566), 1, + anon_sym_LPAREN2, + ACTIONS(2568), 1, + sym__unquoted_pattern_in_record, + STATE(3008), 1, sym_comment, - ACTIONS(2515), 13, + ACTIONS(2562), 11, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91464] = 6, - ACTIONS(3), 1, + [93692] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5815), 1, - anon_sym_else, - ACTIONS(5817), 1, + ACTIONS(5885), 1, sym__newline, - STATE(2944), 1, + ACTIONS(5887), 1, + sym__space, + STATE(3009), 1, sym_comment, - STATE(2963), 1, - aux_sym__repeat_newline, - ACTIONS(5820), 11, + STATE(3034), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(5965), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215815,41 +217887,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [91493] = 6, - ACTIONS(3), 1, + [93721] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5824), 1, - anon_sym_DASH2, - STATE(2945), 1, + ACTIONS(2626), 1, + sym__space, + STATE(3010), 1, sym_comment, - STATE(4927), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5822), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2628), 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, - [91522] = 6, + anon_sym_RBRACE, + [93746] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5826), 1, - anon_sym_catch, - ACTIONS(5828), 1, + ACTIONS(1937), 1, sym__newline, - STATE(2946), 1, - sym_comment, - STATE(3048), 1, + ACTIONS(5967), 1, + anon_sym_catch, + STATE(517), 1, aux_sym__repeat_newline, - ACTIONS(5831), 11, + STATE(3011), 1, + sym_comment, + ACTIONS(1935), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215861,14 +217931,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [91551] = 4, + [93775] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2218), 1, + ACTIONS(5972), 1, sym__space, - STATE(2947), 1, + STATE(3012), 1, sym_comment, - ACTIONS(2220), 13, + ACTIONS(5970), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215882,71 +217952,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91576] = 6, - ACTIONS(3), 1, + [93800] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5835), 1, - anon_sym_DASH2, - STATE(2948), 1, + ACTIONS(5976), 1, + sym__space, + STATE(3013), 1, sym_comment, - STATE(4927), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5833), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5974), 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, - [91605] = 13, + anon_sym_RBRACE, + [93825] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(5839), 1, - anon_sym_DOT, - ACTIONS(5841), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5843), 1, - aux_sym__immediate_decimal_token2, - STATE(2949), 1, + ACTIONS(5980), 1, + sym__space, + STATE(3014), 1, sym_comment, - STATE(3606), 1, - sym__immediate_decimal, - ACTIONS(1598), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(5845), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3863), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [91648] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5847), 1, - anon_sym_else, - ACTIONS(5849), 1, + ACTIONS(5978), 13, sym__newline, - STATE(2950), 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, + [93850] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2483), 1, + sym__space, + STATE(3015), 1, sym_comment, - STATE(3057), 1, - aux_sym__repeat_newline, - ACTIONS(5852), 11, + ACTIONS(2485), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215958,14 +218014,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [91677] = 4, + anon_sym_RBRACE, + [93875] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2220), 1, + ACTIONS(2620), 1, anon_sym_DASH2, - STATE(2951), 1, + STATE(3016), 1, sym_comment, - ACTIONS(2218), 13, + ACTIONS(2618), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -215979,14 +218036,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91702] = 4, + [93900] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2260), 1, + ACTIONS(2628), 1, anon_sym_DASH2, - STATE(2952), 1, + STATE(3017), 1, sym_comment, - ACTIONS(2258), 13, + ACTIONS(2626), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -216000,21 +218057,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91727] = 7, + [93925] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5635), 1, + ACTIONS(996), 1, + anon_sym_DASH2, + ACTIONS(2570), 1, + anon_sym_LPAREN2, + ACTIONS(2572), 1, + sym__unquoted_pattern_in_record, + STATE(3018), 1, + sym_comment, + ACTIONS(994), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - STATE(881), 1, - aux_sym__pipe_separator, - STATE(2953), 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, + [93954] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2487), 1, + sym__space, + STATE(3019), 1, sym_comment, - STATE(3365), 1, - aux_sym__repeat_newline, - ACTIONS(5638), 2, - ts_builtin_sym_end, + ACTIONS(2489), 13, + sym__newline, anon_sym_SEMI, - ACTIONS(2303), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -216024,35 +218099,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, - [91758] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93979] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2264), 1, + ACTIONS(1004), 1, anon_sym_DASH2, - STATE(2954), 1, + ACTIONS(2570), 1, + anon_sym_LPAREN2, + ACTIONS(2572), 1, + sym__unquoted_pattern_in_record, + STATE(3020), 1, sym_comment, - ACTIONS(2262), 13, + ACTIONS(1012), 11, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91783] = 4, + [94008] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5856), 1, + ACTIONS(2602), 1, sym__space, - STATE(2955), 1, + STATE(3021), 1, sym_comment, - ACTIONS(5854), 13, + ACTIONS(2604), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216066,14 +218145,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91808] = 4, + [94033] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4633), 1, + ACTIONS(1689), 1, sym__space, - STATE(2956), 1, + STATE(3022), 1, sym_comment, - ACTIONS(4631), 13, + ACTIONS(1615), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216087,18 +218166,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91833] = 6, + [94058] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5749), 1, + ACTIONS(2606), 1, sym__space, - ACTIONS(5858), 1, - ts_builtin_sym_end, - STATE(2926), 1, - aux_sym_attribute_repeat1, - STATE(2957), 1, + STATE(3023), 1, sym_comment, - ACTIONS(5717), 11, + ACTIONS(2608), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216110,16 +218185,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, - [91862] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94083] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2958), 1, - sym_comment, - ACTIONS(5253), 3, - ts_builtin_sym_end, + ACTIONS(2086), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5255), 11, + STATE(3024), 1, + sym_comment, + ACTIONS(2088), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216131,16 +218206,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, - [91887] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94108] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2959), 1, - sym_comment, - ACTIONS(5221), 3, - ts_builtin_sym_end, + ACTIONS(5893), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5223), 11, + ACTIONS(5982), 1, + ts_builtin_sym_end, + STATE(3025), 1, + sym_comment, + STATE(3041), 1, + aux_sym_attribute_repeat1, + ACTIONS(5808), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216152,71 +218231,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, - [91912] = 13, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1596), 1, - sym__space, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(5860), 1, - anon_sym_DOT, - ACTIONS(5862), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5864), 1, - aux_sym__immediate_decimal_token2, - STATE(2960), 1, - sym_comment, - STATE(3598), 1, - sym__immediate_decimal, - ACTIONS(1598), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5866), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3872), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [91955] = 6, + [94137] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5642), 1, + ACTIONS(2313), 1, anon_sym_DASH2, - STATE(2961), 1, + STATE(3026), 1, sym_comment, - STATE(4632), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5640), 11, + ACTIONS(2311), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91984] = 6, + [94162] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5749), 1, + ACTIONS(2610), 1, sym__space, - ACTIONS(5868), 1, - ts_builtin_sym_end, - STATE(2957), 1, - aux_sym_attribute_repeat1, - STATE(2962), 1, + STATE(3027), 1, sym_comment, - ACTIONS(5679), 11, + ACTIONS(2612), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216228,18 +218271,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, - [92013] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94187] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(5870), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2963), 1, + ACTIONS(2614), 1, + sym__space, + STATE(3028), 1, sym_comment, - ACTIONS(1955), 11, + ACTIONS(2616), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216251,18 +218293,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [92042] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [94212] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(5873), 1, - anon_sym_catch, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(2964), 1, + ACTIONS(5984), 1, + anon_sym_LBRACK2, + STATE(3029), 1, sym_comment, - ACTIONS(1955), 11, + ACTIONS(2114), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2116), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216273,17 +218316,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, - [92071] = 4, + [94239] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2965), 1, - sym_comment, - ACTIONS(5237), 3, - ts_builtin_sym_end, + ACTIONS(5480), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5239), 11, + STATE(3030), 1, + sym_comment, + ACTIONS(5478), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216295,18 +218335,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, - [92096] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94264] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5876), 1, + ACTIONS(5986), 1, anon_sym_catch, - ACTIONS(5878), 1, - sym__newline, - STATE(2966), 1, + STATE(3031), 1, sym_comment, - STATE(3042), 1, - aux_sym__repeat_newline, - ACTIONS(5881), 11, + ACTIONS(5988), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216318,14 +218357,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [92125] = 4, + anon_sym_RBRACE, + [94289] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5885), 1, - sym__space, - STATE(2967), 1, + STATE(3032), 1, sym_comment, - ACTIONS(5883), 13, + ACTIONS(2094), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2096), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216337,16 +218379,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, - [92150] = 4, + [94314] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1858), 1, - sym__space, - STATE(2968), 1, + ACTIONS(5191), 1, + sym__unquoted_pattern, + STATE(3033), 1, sym_comment, - ACTIONS(1860), 13, + ACTIONS(890), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(793), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216358,39 +218401,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [92175] = 6, - ACTIONS(3), 1, + [94341] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5715), 1, - anon_sym_DASH2, - STATE(2969), 1, - sym_comment, - STATE(4632), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5713), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5885), 1, sym__newline, + ACTIONS(5887), 1, + sym__space, + STATE(3034), 1, + sym_comment, + STATE(3073), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(5990), 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, - [92204] = 4, + [94370] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5889), 1, - sym__space, - STATE(2970), 1, + STATE(3035), 1, sym_comment, - ACTIONS(5887), 13, + ACTIONS(5138), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5140), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216402,16 +218445,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, - [92229] = 4, + [94395] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5346), 1, + ACTIONS(5994), 1, sym__space, - STATE(2971), 1, + STATE(3036), 1, sym_comment, - ACTIONS(5344), 13, + ACTIONS(5992), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216425,15 +218466,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92254] = 4, - ACTIONS(103), 1, + [94420] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5893), 1, - sym__space, - STATE(2972), 1, - sym_comment, - ACTIONS(5891), 13, + ACTIONS(1937), 1, sym__newline, + ACTIONS(5996), 1, + anon_sym_else, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(3037), 1, + sym_comment, + ACTIONS(1935), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216445,15 +218489,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, - [92279] = 4, + [94449] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5897), 1, + ACTIONS(2491), 1, sym__space, - STATE(2973), 1, + STATE(3038), 1, sym_comment, - ACTIONS(5895), 13, + ACTIONS(2493), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216467,15 +218510,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92304] = 4, + [94474] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5901), 1, + ACTIONS(5885), 1, + sym__newline, + ACTIONS(5887), 1, sym__space, - STATE(2974), 1, + STATE(3039), 1, sym_comment, - ACTIONS(5899), 13, - sym__newline, + STATE(3073), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(5999), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216487,15 +218533,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, - [92329] = 4, + [94503] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5905), 1, + ACTIONS(2495), 1, sym__space, - STATE(2975), 1, + STATE(3040), 1, sym_comment, - ACTIONS(5903), 13, + ACTIONS(2497), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216509,21 +218554,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92354] = 7, - ACTIONS(3), 1, + [94528] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5907), 1, - sym__newline, - STATE(788), 1, - aux_sym__pipe_separator, - STATE(2976), 1, + ACTIONS(6001), 1, + ts_builtin_sym_end, + ACTIONS(6003), 1, + sym__space, + STATE(3041), 2, sym_comment, - STATE(3365), 1, - aux_sym__repeat_newline, - ACTIONS(5910), 2, + aux_sym_attribute_repeat1, + ACTIONS(5849), 11, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2303), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -216533,14 +218576,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, - [92385] = 4, + [94555] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2198), 1, + ACTIONS(5891), 1, + ts_builtin_sym_end, + ACTIONS(5893), 1, sym__space, - STATE(2977), 1, + STATE(3042), 1, sym_comment, - ACTIONS(2200), 13, + STATE(3119), 1, + aux_sym_attribute_repeat1, + ACTIONS(5518), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216552,17 +218599,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, - [92410] = 4, + [94584] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2978), 1, + ACTIONS(1940), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(6006), 1, + sym__newline, + STATE(3043), 2, + aux_sym__repeat_newline, sym_comment, - ACTIONS(2503), 2, + ACTIONS(1935), 11, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(2501), 12, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [94611] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6011), 1, + anon_sym_AT2, + ACTIONS(6013), 1, + anon_sym_DASH2, + STATE(3044), 1, + sym_comment, + STATE(3314), 1, + sym_param_completer, + ACTIONS(6009), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -216574,15 +218644,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [92435] = 4, + [94640] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2100), 1, + ACTIONS(4668), 1, sym__space, - STATE(2979), 1, + STATE(3045), 1, sym_comment, - ACTIONS(2102), 13, + ACTIONS(4666), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216596,18 +218665,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92460] = 6, + [94665] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3046), 1, + sym_comment, + ACTIONS(2120), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2122), 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, + [94690] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1619), 1, - anon_sym_DASH2, - ACTIONS(2595), 1, + ACTIONS(1956), 1, anon_sym_LPAREN2, - ACTIONS(2597), 1, + ACTIONS(1962), 1, sym__unquoted_pattern_in_record, - STATE(2980), 1, + ACTIONS(2576), 1, + anon_sym_DASH2, + STATE(3047), 1, sym_comment, - ACTIONS(1706), 11, + ACTIONS(2574), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -216619,14 +218709,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92489] = 4, + [94719] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2076), 1, + ACTIONS(2578), 1, sym__space, - STATE(2981), 1, + STATE(3048), 1, sym_comment, - ACTIONS(2078), 13, + ACTIONS(2580), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216640,14 +218730,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92514] = 4, + [94744] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2120), 1, + ACTIONS(2455), 1, sym__space, - STATE(2982), 1, + STATE(3049), 1, sym_comment, - ACTIONS(2122), 13, + ACTIONS(2457), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216661,58 +218751,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92539] = 6, + [94769] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1966), 1, - anon_sym_DASH2, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - STATE(2983), 1, + ACTIONS(6015), 1, + anon_sym_catch, + ACTIONS(6017), 1, + sym__newline, + STATE(3050), 1, sym_comment, - ACTIONS(1964), 11, - anon_sym_EQ, - sym_identifier, + STATE(3109), 1, + aux_sym__repeat_newline, + ACTIONS(6020), 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, + [94798] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6024), 1, + sym__space, + STATE(3051), 1, + sym_comment, + ACTIONS(6022), 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, - [92568] = 4, + anon_sym_RBRACE, + [94823] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2984), 1, - sym_comment, - ACTIONS(1804), 2, + ACTIONS(2339), 1, anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1802), 12, + STATE(3052), 1, + sym_comment, + ACTIONS(2337), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [92593] = 4, + [94848] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5914), 1, + ACTIONS(6028), 1, sym__space, - STATE(2985), 1, + STATE(3053), 1, sym_comment, - ACTIONS(5912), 13, + ACTIONS(6026), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216726,15 +218837,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92618] = 4, + [94873] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5916), 1, - anon_sym_catch, - STATE(2986), 1, - sym_comment, - ACTIONS(5918), 13, + ACTIONS(1937), 1, sym__newline, + ACTIONS(6030), 1, + anon_sym_else, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(3054), 1, + sym_comment, + ACTIONS(1935), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216746,16 +218860,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, - [92643] = 4, - ACTIONS(103), 1, + [94902] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2222), 1, - sym__space, - STATE(2987), 1, - sym_comment, - ACTIONS(2224), 13, + ACTIONS(6033), 1, + anon_sym_else, + ACTIONS(6035), 1, sym__newline, + STATE(3037), 1, + aux_sym__repeat_newline, + STATE(3055), 1, + sym_comment, + ACTIONS(6038), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216767,15 +218883,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [92668] = 4, + [94931] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2604), 1, + anon_sym_DASH2, + STATE(3056), 1, + sym_comment, + ACTIONS(2602), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [94956] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2608), 1, + anon_sym_DASH2, + STATE(3057), 1, + sym_comment, + ACTIONS(2606), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [94981] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5581), 1, + ACTIONS(2098), 1, sym__space, - STATE(2988), 1, + STATE(3058), 1, sym_comment, - ACTIONS(5579), 13, + ACTIONS(2100), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216789,18 +218946,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92693] = 6, + [95006] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2577), 1, - anon_sym_DASH2, - STATE(2989), 1, + STATE(3059), 1, sym_comment, - ACTIONS(2575), 11, + ACTIONS(1740), 2, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1738), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -216812,40 +218966,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92722] = 5, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [95031] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5922), 1, - anon_sym_LT, - ACTIONS(5924), 1, - anon_sym_DASH2, - STATE(2990), 1, + ACTIONS(6042), 1, + sym__space, + STATE(3060), 1, sym_comment, - ACTIONS(5920), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(6040), 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_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [92749] = 6, + anon_sym_RBRACE, + [95056] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1976), 1, + ACTIONS(1954), 1, anon_sym_DASH2, - ACTIONS(1978), 1, + ACTIONS(1956), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(1962), 1, sym__unquoted_pattern_in_record, - STATE(2991), 1, + STATE(3061), 1, sym_comment, - ACTIONS(1974), 11, + ACTIONS(1952), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -216857,16 +219011,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92778] = 5, + [95085] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5893), 1, + sym__space, + ACTIONS(6044), 1, + ts_builtin_sym_end, + STATE(3025), 1, + aux_sym_attribute_repeat1, + STATE(3062), 1, + sym_comment, + ACTIONS(5829), 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, + [95114] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5924), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2511), 1, anon_sym_DASH2, - ACTIONS(5926), 1, - anon_sym_LT, - STATE(2992), 1, + ACTIONS(2513), 1, + anon_sym_LPAREN2, + STATE(3063), 1, sym_comment, - ACTIONS(5920), 12, + ACTIONS(2509), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -216876,21 +219055,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92805] = 6, + [95143] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2525), 1, + ACTIONS(4976), 1, anon_sym_DASH2, - ACTIONS(2629), 1, - anon_sym_LPAREN2, - STATE(2993), 1, + ACTIONS(6046), 1, + anon_sym_LT, + STATE(3064), 1, sym_comment, - ACTIONS(2523), 11, + ACTIONS(4972), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -216900,40 +219076,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92834] = 6, + [95170] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2569), 1, + ACTIONS(2612), 1, anon_sym_DASH2, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern_in_record, - STATE(2994), 1, + STATE(3065), 1, sym_comment, - ACTIONS(2567), 11, + ACTIONS(2610), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92863] = 4, + [95195] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2995), 1, - sym_comment, - ACTIONS(1872), 2, + ACTIONS(4976), 1, anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1870), 12, + ACTIONS(6048), 1, + anon_sym_LT, + STATE(3066), 1, + sym_comment, + ACTIONS(4972), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -216943,17 +219119,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [92888] = 4, + [95222] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2206), 1, + ACTIONS(4654), 1, sym__space, - STATE(2996), 1, + STATE(3067), 1, sym_comment, - ACTIONS(2208), 13, + ACTIONS(4652), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216967,14 +219143,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92913] = 4, + [95247] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2210), 1, + ACTIONS(4660), 1, sym__space, - STATE(2997), 1, + STATE(3068), 1, sym_comment, - ACTIONS(2212), 13, + ACTIONS(4658), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216988,14 +219164,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92938] = 4, + [95272] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2214), 1, + ACTIONS(4664), 1, sym__space, - STATE(2998), 1, + STATE(3069), 1, sym_comment, - ACTIONS(2216), 13, + ACTIONS(4662), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217009,66 +219185,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92963] = 11, + [95297] = 10, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1588), 1, anon_sym_LPAREN2, - ACTIONS(1615), 1, + ACTIONS(1598), 1, sym__unquoted_pattern, - ACTIONS(2878), 1, + ACTIONS(2910), 1, anon_sym_DOLLAR, - ACTIONS(5928), 1, - anon_sym_DOT, - STATE(2999), 1, + STATE(3070), 1, sym_comment, - STATE(3680), 1, + STATE(4003), 1, sym__immediate_decimal, - ACTIONS(5930), 2, + ACTIONS(6050), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(5932), 2, + ACTIONS(6052), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3636), 2, + STATE(809), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1596), 3, + ACTIONS(1582), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [93002] = 4, + [95334] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2270), 1, - anon_sym_DASH2, - STATE(3000), 1, - sym_comment, - ACTIONS(2268), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [93027] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5048), 1, - sym__unquoted_pattern, - STATE(3001), 1, + STATE(3071), 1, sym_comment, - ACTIONS(968), 2, + ACTIONS(5761), 14, ts_builtin_sym_end, - sym__space, - ACTIONS(868), 11, + anon_sym_else, + anon_sym_catch, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217080,14 +219232,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, - [93054] = 4, + [95357] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2274), 1, + ACTIONS(2088), 1, anon_sym_DASH2, - STATE(3002), 1, + STATE(3072), 1, sym_comment, - ACTIONS(2272), 13, + ACTIONS(2086), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -217101,84 +219253,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93079] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5251), 1, - sym__space, - STATE(3003), 1, - sym_comment, - ACTIONS(5249), 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, - [93104] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(3004), 1, - sym_comment, - STATE(3962), 1, - sym__immediate_decimal, - ACTIONS(5934), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5936), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(742), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1631), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [93141] = 4, + [95382] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5940), 1, - sym__space, - STATE(3005), 1, - sym_comment, - ACTIONS(5938), 13, + ACTIONS(6054), 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, - [93166] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2226), 1, + ACTIONS(6057), 1, sym__space, - STATE(3006), 1, + STATE(3073), 2, sym_comment, - ACTIONS(2228), 13, - sym__newline, + aux_sym__command_parenthesized_repeat1, + ACTIONS(6060), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217190,19 +219275,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, - [93191] = 6, + [95409] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2637), 1, - anon_sym_DASH2, - ACTIONS(2639), 1, + ACTIONS(5237), 1, anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern_in_record, - STATE(3007), 1, + ACTIONS(6064), 1, + anon_sym_DASH2, + STATE(3074), 1, sym_comment, - ACTIONS(2635), 11, + STATE(5230), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6062), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -217214,14 +219298,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93220] = 4, + [95438] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2230), 1, - sym__space, - STATE(3008), 1, + STATE(3075), 1, sym_comment, - ACTIONS(2232), 13, + ACTIONS(5128), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5130), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217233,20 +219319,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, - [93245] = 6, + [95463] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5749), 1, + ACTIONS(2558), 1, sym__space, - ACTIONS(5942), 1, - ts_builtin_sym_end, - STATE(2926), 1, - aux_sym_attribute_repeat1, - STATE(3009), 1, + STATE(3076), 1, sym_comment, - ACTIONS(5681), 11, + ACTIONS(2560), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217258,15 +219338,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, - [93274] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [95488] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2238), 1, - sym__space, - STATE(3010), 1, - sym_comment, - ACTIONS(2240), 13, + ACTIONS(6066), 1, + anon_sym_else, + ACTIONS(6068), 1, sym__newline, + STATE(3055), 1, + aux_sym__repeat_newline, + STATE(3077), 1, + sym_comment, + ACTIONS(6071), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217278,15 +219363,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, - [93299] = 4, + [95517] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2242), 1, + ACTIONS(2144), 1, sym__space, - STATE(3011), 1, + STATE(3078), 1, sym_comment, - ACTIONS(2244), 13, + ACTIONS(2146), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217300,15 +219384,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93324] = 4, - ACTIONS(103), 1, + [95542] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2246), 1, - sym__space, - STATE(3012), 1, - sym_comment, - ACTIONS(2248), 13, + ACTIONS(6073), 1, + anon_sym_else, + ACTIONS(6075), 1, sym__newline, + STATE(3079), 1, + sym_comment, + STATE(3090), 1, + aux_sym__repeat_newline, + ACTIONS(6078), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217320,15 +219407,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [93349] = 4, + [95571] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2355), 1, + anon_sym_DASH2, + STATE(3080), 1, + sym_comment, + ACTIONS(2353), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [95596] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2250), 1, + ACTIONS(6082), 1, sym__space, - STATE(3013), 1, + STATE(3081), 1, sym_comment, - ACTIONS(2252), 13, + ACTIONS(6080), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217342,18 +219449,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93374] = 6, + [95621] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(996), 1, - anon_sym_DASH2, - ACTIONS(2583), 1, + ACTIONS(5237), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_record, - STATE(3014), 1, + ACTIONS(6086), 1, + anon_sym_DASH2, + STATE(3082), 1, sym_comment, - ACTIONS(994), 11, + STATE(5230), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6084), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -217365,18 +219472,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93403] = 6, + [95650] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1016), 1, + ACTIONS(2527), 1, anon_sym_DASH2, - ACTIONS(2583), 1, + ACTIONS(2529), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, + ACTIONS(2531), 1, sym__unquoted_pattern_in_record, - STATE(3015), 1, + STATE(3083), 1, sym_comment, - ACTIONS(1018), 11, + ACTIONS(2525), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -217388,56 +219495,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93432] = 4, - ACTIONS(103), 1, + [95679] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5247), 1, - sym__space, - STATE(3016), 1, + ACTIONS(5237), 1, + anon_sym_LPAREN2, + ACTIONS(6090), 1, + anon_sym_DASH2, + STATE(3084), 1, sym_comment, - ACTIONS(5245), 13, + STATE(5230), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6088), 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, - [93457] = 4, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [95708] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2537), 1, - sym__space, - STATE(3017), 1, + ACTIONS(5237), 1, + anon_sym_LPAREN2, + ACTIONS(6094), 1, + anon_sym_DASH2, + STATE(3085), 1, sym_comment, - ACTIONS(2539), 13, + STATE(5230), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6092), 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, - [93482] = 4, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [95737] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2607), 1, - sym__space, - STATE(3018), 1, + STATE(3086), 1, sym_comment, - ACTIONS(2609), 13, + ACTIONS(5895), 14, + ts_builtin_sym_end, + anon_sym_else, + anon_sym_catch, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217449,38 +219561,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, - [93507] = 4, - ACTIONS(103), 1, + [95760] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2511), 1, - sym__space, - STATE(3019), 1, - sym_comment, - ACTIONS(2513), 13, + ACTIONS(6096), 1, + anon_sym_else, + ACTIONS(6098), 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, - [93532] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - STATE(3020), 1, + STATE(3087), 1, sym_comment, - ACTIONS(868), 13, - sym__newline, + STATE(3099), 1, + aux_sym__repeat_newline, + ACTIONS(6101), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217492,58 +219584,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [93557] = 4, - ACTIONS(103), 1, + [95789] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1706), 1, - sym__space, - STATE(3021), 1, + ACTIONS(2449), 1, + anon_sym_DASH2, + STATE(3088), 1, sym_comment, - ACTIONS(1619), 13, + ACTIONS(2447), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - [93582] = 4, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [95814] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2515), 1, - sym__space, - STATE(3022), 1, + ACTIONS(6011), 1, + anon_sym_AT2, + ACTIONS(6105), 1, + anon_sym_DASH2, + STATE(3089), 1, sym_comment, - ACTIONS(2517), 13, + STATE(3385), 1, + sym_param_completer, + ACTIONS(6103), 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, - [93607] = 4, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [95843] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2112), 1, - sym__space, - STATE(3023), 1, - sym_comment, - ACTIONS(2114), 13, + ACTIONS(6107), 1, + anon_sym_else, + ACTIONS(6109), 1, sym__newline, + STATE(3090), 1, + sym_comment, + STATE(3096), 1, + aux_sym__repeat_newline, + ACTIONS(6112), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217555,38 +219651,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [93632] = 6, + [95872] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5721), 1, + ACTIONS(2517), 1, anon_sym_DASH2, - STATE(3024), 1, - sym_comment, - STATE(4632), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5719), 11, + STATE(3091), 1, + sym_comment, + ACTIONS(2515), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93661] = 4, + [95897] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2519), 1, + ACTIONS(6116), 1, sym__space, - STATE(3025), 1, + STATE(3092), 1, sym_comment, - ACTIONS(2521), 13, + ACTIONS(6114), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217600,18 +219693,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93686] = 6, + [95922] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5781), 1, + ACTIONS(6011), 1, anon_sym_AT2, - ACTIONS(5946), 1, + ACTIONS(6013), 1, anon_sym_DASH2, - STATE(3026), 1, + STATE(3093), 1, sym_comment, - STATE(3284), 1, + STATE(3294), 1, + sym_param_completer, + ACTIONS(6009), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [95951] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6011), 1, + anon_sym_AT2, + ACTIONS(6120), 1, + anon_sym_DASH2, + STATE(3094), 1, + sym_comment, + STATE(3379), 1, sym_param_completer, - ACTIONS(5944), 11, + ACTIONS(6118), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -217623,14 +219739,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93715] = 4, + [95980] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2505), 1, + ACTIONS(2459), 1, sym__space, - STATE(3027), 1, + STATE(3095), 1, sym_comment, - ACTIONS(2507), 13, + ACTIONS(2461), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217644,18 +219760,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93740] = 6, + [96005] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5948), 1, - anon_sym_else, - ACTIONS(5950), 1, + ACTIONS(1937), 1, sym__newline, - STATE(3028), 1, - sym_comment, - STATE(3044), 1, + ACTIONS(6122), 1, + anon_sym_else, + STATE(517), 1, aux_sym__repeat_newline, - ACTIONS(5953), 11, + STATE(3096), 1, + sym_comment, + ACTIONS(1935), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217667,15 +219783,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [93769] = 3, - ACTIONS(3), 1, + [96034] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3029), 1, + ACTIONS(2152), 1, + sym__space, + STATE(3097), 1, sym_comment, - ACTIONS(5739), 14, - ts_builtin_sym_end, - anon_sym_else, - anon_sym_catch, + ACTIONS(2154), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217687,16 +219802,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, - [93792] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [96059] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2615), 1, - sym__space, - STATE(3030), 1, - sym_comment, - ACTIONS(2617), 13, + ACTIONS(5810), 1, sym__newline, + STATE(751), 1, + aux_sym__pipe_separator, + STATE(3098), 1, + sym_comment, + STATE(3431), 1, + aux_sym__repeat_newline, + ACTIONS(5813), 2, + ts_builtin_sym_end, anon_sym_SEMI, + ACTIONS(2273), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -217706,20 +219828,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, - [93817] = 6, - ACTIONS(103), 1, + [96090] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5767), 1, + ACTIONS(1937), 1, sym__newline, - ACTIONS(5769), 1, - sym__space, - STATE(2917), 1, - aux_sym__command_parenthesized_repeat1, - STATE(3031), 1, + ACTIONS(6125), 1, + anon_sym_else, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(3099), 1, sym_comment, - ACTIONS(5955), 11, + ACTIONS(1935), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217731,39 +219851,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [93846] = 4, - ACTIONS(3), 1, + [96119] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2224), 1, - anon_sym_DASH2, - STATE(3032), 1, + ACTIONS(2353), 1, + sym__space, + STATE(3100), 1, sym_comment, - ACTIONS(2222), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(2355), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [93871] = 6, + anon_sym_RBRACE, + [96144] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5767), 1, - sym__newline, - ACTIONS(5769), 1, + ACTIONS(2479), 1, sym__space, - STATE(3033), 1, + STATE(3101), 1, sym_comment, - STATE(3043), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(5957), 11, + ACTIONS(2481), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217775,56 +219892,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [93900] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [96169] = 13, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2539), 1, - anon_sym_DASH2, - STATE(3034), 1, - sym_comment, - ACTIONS(2537), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1582), 1, + sym__entry_separator, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6128), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [93925] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2617), 1, - anon_sym_DASH2, - STATE(3035), 1, + ACTIONS(6130), 1, + anon_sym_LPAREN2, + ACTIONS(6132), 1, + anon_sym_DOT, + ACTIONS(6134), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6136), 1, + aux_sym__immediate_decimal_token2, + STATE(3102), 1, sym_comment, - ACTIONS(2615), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, + STATE(3649), 1, + sym__immediate_decimal, + ACTIONS(1586), 2, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [93950] = 4, + anon_sym_DOT_DOT, + ACTIONS(6138), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3893), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [96212] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5961), 1, + ACTIONS(2451), 1, sym__space, - STATE(3036), 1, + STATE(3103), 1, sym_comment, - ACTIONS(5959), 13, + ACTIONS(2453), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217838,14 +219944,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93975] = 4, + [96237] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5965), 1, + ACTIONS(2329), 1, sym__space, - STATE(3037), 1, + STATE(3104), 1, sym_comment, - ACTIONS(5963), 13, + ACTIONS(2331), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217859,66 +219965,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94000] = 4, + [96262] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_DASH2, - STATE(3038), 1, + STATE(3105), 1, sym_comment, - ACTIONS(2563), 13, + ACTIONS(1808), 2, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1806), 12, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [94025] = 10, + anon_sym_LPAREN2, + [96287] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(3039), 1, + STATE(3106), 1, sym_comment, - STATE(3897), 1, - sym__immediate_decimal, - ACTIONS(5934), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5936), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(723), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1596), 4, - anon_sym_if, + ACTIONS(1846), 2, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1844), 12, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, - anon_sym_EQ_GT, - [94062] = 6, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [96312] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5967), 1, - anon_sym_else, - ACTIONS(5969), 1, - sym__newline, - STATE(2944), 1, - aux_sym__repeat_newline, - STATE(3040), 1, + ACTIONS(5567), 1, + sym__space, + STATE(3107), 1, sym_comment, - ACTIONS(5972), 11, + ACTIONS(5565), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217930,18 +220027,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94091] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [96337] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5974), 1, - anon_sym_catch, - ACTIONS(5976), 1, - sym__newline, - STATE(2946), 1, - aux_sym__repeat_newline, - STATE(3041), 1, + ACTIONS(2333), 1, + sym__space, + STATE(3108), 1, sym_comment, - ACTIONS(5979), 11, + ACTIONS(2335), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217953,18 +220048,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94120] = 6, + anon_sym_RBRACE, + [96362] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5981), 1, + ACTIONS(6140), 1, anon_sym_catch, - ACTIONS(5983), 1, + ACTIONS(6142), 1, sym__newline, - STATE(2964), 1, + STATE(3011), 1, aux_sym__repeat_newline, - STATE(3042), 1, + STATE(3109), 1, sym_comment, - ACTIONS(5986), 11, + ACTIONS(6145), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217976,40 +220072,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94149] = 5, - ACTIONS(103), 1, + [96391] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5988), 1, - sym__newline, - ACTIONS(5991), 1, - sym__space, - STATE(3043), 2, + ACTIONS(1588), 1, + anon_sym_LPAREN2, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2910), 1, + anon_sym_DOLLAR, + STATE(3110), 1, sym_comment, - aux_sym__command_parenthesized_repeat1, - ACTIONS(5994), 11, - anon_sym_SEMI, + STATE(3972), 1, + sym__immediate_decimal, + ACTIONS(6050), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6052), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(846), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1631), 4, + anon_sym_if, + 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_RPAREN, - [94176] = 6, - ACTIONS(3), 1, + anon_sym_EQ_GT, + [96428] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5996), 1, - anon_sym_else, - ACTIONS(5998), 1, - sym__newline, - STATE(2937), 1, - aux_sym__repeat_newline, - STATE(3044), 1, + ACTIONS(2447), 1, + sym__space, + STATE(3111), 1, sym_comment, - ACTIONS(6001), 11, + ACTIONS(2449), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218021,16 +220119,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94205] = 4, + anon_sym_RBRACE, + [96453] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3045), 1, - sym_comment, - ACTIONS(2092), 3, - ts_builtin_sym_end, + ACTIONS(2515), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(2094), 11, + STATE(3112), 1, + sym_comment, + ACTIONS(2517), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218042,16 +220139,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, - [94230] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [96478] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3046), 1, + STATE(3113), 1, sym_comment, - ACTIONS(5257), 3, + ACTIONS(5074), 3, ts_builtin_sym_end, sym__space, anon_sym_EQ2, - ACTIONS(5259), 11, + ACTIONS(5076), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218063,18 +220162,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [94255] = 6, - ACTIONS(3), 1, + [96503] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(6003), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3047), 1, + ACTIONS(2136), 1, + sym__space, + STATE(3114), 1, sym_comment, - ACTIONS(1955), 11, + ACTIONS(2138), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218086,18 +220182,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94284] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [96528] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(6006), 1, - anon_sym_catch, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3048), 1, + ACTIONS(2341), 1, + sym__space, + STATE(3115), 1, sym_comment, - ACTIONS(1955), 11, + ACTIONS(2343), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218109,14 +220203,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94313] = 4, + anon_sym_RBRACE, + [96553] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2258), 1, + ACTIONS(1848), 1, sym__space, - STATE(3049), 1, + STATE(3116), 1, sym_comment, - ACTIONS(2260), 13, + ACTIONS(1850), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218130,14 +220225,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94338] = 4, + [96578] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(2618), 1, sym__space, - STATE(3050), 1, + STATE(3117), 1, sym_comment, - ACTIONS(1868), 13, + ACTIONS(2620), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218151,15 +220246,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94363] = 4, - ACTIONS(103), 1, + [96603] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2563), 1, - sym__space, - STATE(3051), 1, - sym_comment, - ACTIONS(2565), 13, + ACTIONS(6147), 1, + anon_sym_else, + ACTIONS(6149), 1, sym__newline, + STATE(3087), 1, + aux_sym__repeat_newline, + STATE(3118), 1, + sym_comment, + ACTIONS(6152), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218171,15 +220269,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, - [94388] = 4, + [96632] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2571), 1, + ACTIONS(5893), 1, sym__space, - STATE(3052), 1, + ACTIONS(6154), 1, + ts_builtin_sym_end, + STATE(3041), 1, + aux_sym_attribute_repeat1, + STATE(3119), 1, sym_comment, - ACTIONS(2573), 13, + ACTIONS(5847), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218191,83 +220292,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_RBRACE, - [94413] = 6, + [96661] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5781), 1, - anon_sym_AT2, - ACTIONS(6011), 1, + ACTIONS(2493), 1, anon_sym_DASH2, - STATE(3053), 1, + STATE(3120), 1, sym_comment, - STATE(3300), 1, - sym_param_completer, - ACTIONS(6009), 11, + ACTIONS(2491), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [94442] = 6, + [96686] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5781), 1, - anon_sym_AT2, - ACTIONS(5783), 1, - anon_sym_DASH2, - STATE(3054), 1, - sym_comment, - STATE(3239), 1, - sym_param_completer, - ACTIONS(5779), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(1937), 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, - [94471] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3055), 1, + ACTIONS(6156), 1, + anon_sym_catch, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(3121), 1, sym_comment, - ACTIONS(1728), 2, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1726), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, + ACTIONS(1935), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [94496] = 4, + [96715] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(868), 1, + ACTIONS(2497), 1, anon_sym_DASH2, - STATE(3056), 1, + STATE(3122), 1, sym_comment, - ACTIONS(968), 13, + ACTIONS(2495), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -218281,58 +220357,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [94521] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(6013), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3057), 1, - sym_comment, - ACTIONS(1955), 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, - [94550] = 4, + [96740] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2573), 1, + ACTIONS(5237), 1, + anon_sym_LPAREN2, + ACTIONS(5860), 1, anon_sym_DASH2, - STATE(3058), 1, + STATE(3123), 1, sym_comment, - ACTIONS(2571), 13, + STATE(4767), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5858), 11, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [94575] = 4, + [96769] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2194), 1, + ACTIONS(6161), 1, sym__space, - STATE(3059), 1, + STATE(3124), 1, sym_comment, - ACTIONS(2196), 13, + ACTIONS(6159), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218346,14 +220401,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94600] = 4, + [96794] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4629), 1, - sym__space, - STATE(3060), 1, + STATE(3125), 1, sym_comment, - ACTIONS(4627), 13, + ACTIONS(2329), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2331), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218365,58 +220421,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [94625] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1619), 1, - anon_sym_DASH2, - STATE(3061), 1, - sym_comment, - ACTIONS(1706), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [94650] = 4, + [96818] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2114), 1, - anon_sym_DASH2, - STATE(3062), 1, - sym_comment, - ACTIONS(2112), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [94675] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2254), 1, - sym__space, - STATE(3063), 1, + STATE(3126), 1, sym_comment, - ACTIONS(2256), 13, + ACTIONS(6163), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218430,17 +220440,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94700] = 5, - ACTIONS(103), 1, + [96840] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6016), 1, - anon_sym_LBRACK2, - STATE(3064), 1, + ACTIONS(6167), 1, + anon_sym_else, + STATE(3127), 1, sym_comment, - ACTIONS(2128), 2, + ACTIONS(6165), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(2130), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218452,36 +220460,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [94727] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1960), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(6018), 1, - sym__newline, - STATE(3065), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1955), 11, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [94754] = 4, + [96864] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2254), 1, - sym__space, - STATE(3066), 1, + STATE(3128), 1, sym_comment, - ACTIONS(2256), 13, + ACTIONS(5480), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5478), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218493,16 +220480,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [94779] = 4, + [96888] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2262), 1, - sym__space, - STATE(3067), 1, + STATE(3129), 1, sym_comment, - ACTIONS(2264), 13, + ACTIONS(6082), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6080), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218514,41 +220500,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_RPAREN, + [96912] = 13, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1582), 1, + sym__entry_separator, + ACTIONS(1586), 1, anon_sym_RBRACE, - [94804] = 4, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_record, + ACTIONS(6128), 1, + anon_sym_DOLLAR, + ACTIONS(6130), 1, + anon_sym_LPAREN2, + ACTIONS(6169), 1, + anon_sym_DOT, + ACTIONS(6171), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6173), 1, + aux_sym__immediate_decimal_token2, + STATE(3130), 1, + sym_comment, + STATE(3715), 1, + sym__immediate_decimal, + ACTIONS(6175), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3788), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [96954] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1607), 1, + sym__entry_separator, + ACTIONS(6128), 1, + anon_sym_DOLLAR, + ACTIONS(6130), 1, + anon_sym_LPAREN2, + ACTIONS(6134), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6136), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6177), 1, + anon_sym_DOT, + STATE(3131), 1, + sym_comment, + STATE(3892), 1, + sym__immediate_decimal, + ACTIONS(1609), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6138), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3891), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [96994] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2507), 1, + ACTIONS(5792), 1, + sym_identifier, + ACTIONS(5798), 1, + anon_sym_DOLLAR, + ACTIONS(5800), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_DASH_DASH, + ACTIONS(5804), 1, anon_sym_DASH2, - STATE(3068), 1, + ACTIONS(5806), 1, + anon_sym_RPAREN, + STATE(2542), 1, + sym_param_long_flag, + STATE(2679), 1, + sym__param_name, + STATE(2880), 1, + aux_sym_parameter_parens_repeat1, + STATE(3132), 1, + sym_comment, + STATE(3309), 1, + sym_param_short_flag, + STATE(3337), 1, + sym_param_rest, + STATE(3338), 1, + sym_param_opt, + STATE(3644), 1, + sym_parameter, + [97040] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5126), 1, + anon_sym_DASH2, + STATE(3133), 1, sym_comment, - ACTIONS(2505), 13, + ACTIONS(5124), 12, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [94829] = 6, + [97064] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6021), 1, - anon_sym_else, - ACTIONS(6023), 1, - sym__newline, - STATE(2919), 1, - aux_sym__repeat_newline, - STATE(3069), 1, + STATE(3134), 1, sym_comment, - ACTIONS(6026), 11, + ACTIONS(6179), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218560,14 +220626,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94858] = 4, - ACTIONS(103), 1, + anon_sym_RBRACE, + [97086] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4625), 1, - sym__space, - STATE(3070), 1, + STATE(3135), 1, sym_comment, - ACTIONS(4623), 13, + ACTIONS(6181), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218581,18 +220646,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94883] = 6, - ACTIONS(3), 1, + [97108] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6028), 1, - anon_sym_else, - ACTIONS(6030), 1, - sym__newline, - STATE(2950), 1, - aux_sym__repeat_newline, - STATE(3071), 1, + STATE(3136), 1, sym_comment, - ACTIONS(6033), 11, + ACTIONS(5377), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5375), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218603,36 +220666,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, - [94912] = 4, + [97132] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2196), 1, + ACTIONS(793), 1, anon_sym_DASH2, - STATE(3072), 1, + ACTIONS(5247), 1, + sym__unquoted_pattern_in_record, + STATE(3137), 1, sym_comment, - ACTIONS(2194), 13, + ACTIONS(890), 11, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [94937] = 4, - ACTIONS(103), 1, + [97158] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6037), 1, - sym__space, - STATE(3073), 1, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(3138), 1, sym_comment, - ACTIONS(6035), 13, + ACTIONS(5701), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218645,15 +220707,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, - [94962] = 4, + [97182] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2234), 1, - sym__space, - STATE(3074), 1, + STATE(3139), 1, sym_comment, - ACTIONS(2236), 13, + ACTIONS(5994), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5992), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218665,93 +220727,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_RBRACE, - [94987] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(737), 1, - sym__immediate_decimal, - STATE(3075), 1, - sym_comment, - ACTIONS(5745), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6039), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(736), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1667), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [95021] = 4, + [97206] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6041), 1, - anon_sym_else, - STATE(3076), 1, + ACTIONS(4988), 1, + anon_sym_DASH2, + STATE(3140), 1, sym_comment, - ACTIONS(6043), 12, + ACTIONS(4986), 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_RBRACE, - [95045] = 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_LPAREN2, + [97230] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(5792), 1, sym_identifier, - ACTIONS(5694), 1, + ACTIONS(5798), 1, anon_sym_DOLLAR, - ACTIONS(5696), 1, + ACTIONS(5800), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, + ACTIONS(5802), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, + ACTIONS(5804), 1, anon_sym_DASH2, - ACTIONS(5723), 1, + ACTIONS(6183), 1, anon_sym_RBRACK, - STATE(2467), 1, + STATE(2542), 1, sym_param_long_flag, - STATE(2631), 1, + STATE(2679), 1, sym__param_name, - STATE(2828), 1, + STATE(2880), 1, aux_sym_parameter_parens_repeat1, - STATE(3077), 1, + STATE(3141), 1, sym_comment, - STATE(3269), 1, + STATE(3309), 1, sym_param_short_flag, - STATE(3314), 1, + STATE(3337), 1, sym_param_rest, - STATE(3328), 1, + STATE(3338), 1, sym_param_opt, - STATE(3582), 1, + STATE(3644), 1, sym_parameter, - [95091] = 4, + [97276] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3078), 1, + STATE(3142), 1, sym_comment, - ACTIONS(2537), 2, + ACTIONS(890), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2539), 11, + ACTIONS(793), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218763,12 +220798,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95115] = 3, - ACTIONS(3), 1, + [97300] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3079), 1, + STATE(3143), 1, sym_comment, - ACTIONS(4783), 13, + ACTIONS(5963), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5961), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218780,46 +220818,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [95137] = 13, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1598), 1, - anon_sym_RBRACK, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6045), 1, - anon_sym_DOT, - ACTIONS(6047), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6049), 1, - aux_sym__immediate_decimal_token2, - STATE(3080), 1, - sym_comment, - STATE(3673), 1, - sym__immediate_decimal, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3807), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [95179] = 4, + [97324] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3081), 1, + STATE(3144), 1, sym_comment, - ACTIONS(5856), 2, + ACTIONS(1689), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5854), 11, + ACTIONS(1615), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218831,71 +220838,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, - [95203] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(722), 1, - sym__immediate_decimal, - STATE(3082), 1, - sym_comment, - ACTIONS(5745), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6039), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(721), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1582), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [95237] = 15, + [97348] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(5792), 1, sym_identifier, - ACTIONS(5694), 1, + ACTIONS(5798), 1, anon_sym_DOLLAR, - ACTIONS(5696), 1, + ACTIONS(5800), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, + ACTIONS(5802), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, + ACTIONS(5804), 1, anon_sym_DASH2, - ACTIONS(6053), 1, + ACTIONS(6185), 1, anon_sym_RPAREN, - STATE(2467), 1, + STATE(2542), 1, sym_param_long_flag, - STATE(2631), 1, + STATE(2679), 1, sym__param_name, - STATE(2828), 1, + STATE(2880), 1, aux_sym_parameter_parens_repeat1, - STATE(3083), 1, + STATE(3145), 1, sym_comment, - STATE(3269), 1, + STATE(3309), 1, sym_param_short_flag, - STATE(3314), 1, + STATE(3337), 1, sym_param_rest, - STATE(3328), 1, + STATE(3338), 1, sym_param_opt, - STATE(3582), 1, + STATE(3644), 1, sym_parameter, - [95283] = 4, + [97394] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3084), 1, + STATE(3146), 1, sym_comment, - ACTIONS(2202), 2, + ACTIONS(2086), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2204), 11, + ACTIONS(2088), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218907,15 +220889,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95307] = 4, + [97418] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3085), 1, + STATE(3147), 1, sym_comment, - ACTIONS(5889), 2, + ACTIONS(5567), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5887), 11, + ACTIONS(5565), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218927,15 +220909,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95331] = 4, + [97442] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3086), 1, + STATE(3148), 1, sym_comment, - ACTIONS(5965), 2, + ACTIONS(5440), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5963), 11, + ACTIONS(5438), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218947,65 +220929,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95355] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3087), 1, - sym_comment, - ACTIONS(4789), 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, - [95377] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5725), 1, - anon_sym_RPAREN, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3088), 1, - sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [95423] = 4, + [97466] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3089), 1, + STATE(3149), 1, sym_comment, - ACTIONS(2505), 2, + ACTIONS(2558), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2507), 11, + ACTIONS(2560), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219017,43 +220949,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, - [95447] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1631), 1, - sym__space, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(6055), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6057), 1, - aux_sym__immediate_decimal_token2, - STATE(3090), 1, - sym_comment, - STATE(4029), 1, - sym__immediate_decimal, - ACTIONS(1633), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6059), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3013), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [95487] = 4, - ACTIONS(103), 1, + [97490] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3091), 1, + STATE(3150), 1, sym_comment, - ACTIONS(2254), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2256), 11, + ACTIONS(4826), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219065,15 +220966,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, - [95511] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [97512] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3092), 1, + STATE(3151), 1, sym_comment, - ACTIONS(5885), 2, + ACTIONS(2098), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5883), 11, + ACTIONS(2100), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219085,35 +220988,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, - [95535] = 4, + [97536] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6063), 1, - anon_sym_DASH2, - STATE(3093), 1, - sym_comment, - ACTIONS(6061), 12, - anon_sym_EQ, + ACTIONS(5792), 1, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5798), 1, anon_sym_DOLLAR, - anon_sym_GT2, + ACTIONS(5800), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, anon_sym_DASH_DASH, - [95559] = 4, - ACTIONS(103), 1, + ACTIONS(5804), 1, + anon_sym_DASH2, + ACTIONS(5868), 1, + anon_sym_RBRACK, + STATE(2542), 1, + sym_param_long_flag, + STATE(2679), 1, + sym__param_name, + STATE(2880), 1, + aux_sym_parameter_parens_repeat1, + STATE(3152), 1, + sym_comment, + STATE(3309), 1, + sym_param_short_flag, + STATE(3337), 1, + sym_param_rest, + STATE(3338), 1, + sym_param_opt, + STATE(3644), 1, + sym_parameter, + [97582] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3094), 1, + STATE(3153), 1, sym_comment, - ACTIONS(2591), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2593), 11, + ACTIONS(6187), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219125,143 +221036,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95583] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [97604] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6067), 1, - anon_sym_DASH2, - STATE(3095), 1, + ACTIONS(2112), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(3154), 1, sym_comment, - ACTIONS(6065), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2110), 12, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [95607] = 4, + anon_sym_DASH2, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [97628] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(3096), 1, + ACTIONS(1588), 1, + anon_sym_LPAREN2, + ACTIONS(2910), 1, + anon_sym_DOLLAR, + STATE(841), 1, + sym__immediate_decimal, + STATE(3155), 1, sym_comment, - STATE(3211), 1, - aux_sym__repeat_newline, - ACTIONS(5590), 12, + ACTIONS(5819), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6189), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(840), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1643), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [95631] = 4, + anon_sym_EQ_GT, + [97662] = 12, ACTIONS(103), 1, anon_sym_POUND, - STATE(3097), 1, + ACTIONS(1607), 1, + sym__entry_separator, + ACTIONS(6128), 1, + anon_sym_DOLLAR, + ACTIONS(6130), 1, + anon_sym_LPAREN2, + ACTIONS(6177), 1, + anon_sym_DOT, + ACTIONS(6191), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6193), 1, + aux_sym__immediate_decimal_token2, + STATE(3156), 1, sym_comment, - ACTIONS(5961), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5959), 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, - [95655] = 4, - ACTIONS(103), 1, + STATE(3912), 1, + sym__immediate_decimal, + ACTIONS(1609), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6195), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3906), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [97702] = 9, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3098), 1, + ACTIONS(1588), 1, + anon_sym_LPAREN2, + ACTIONS(2910), 1, + anon_sym_DOLLAR, + STATE(843), 1, + sym__immediate_decimal, + STATE(3157), 1, sym_comment, - ACTIONS(2254), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2256), 11, + ACTIONS(5819), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6189), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(842), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1647), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [95679] = 12, - ACTIONS(103), 1, + anon_sym_EQ_GT, + [97736] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5792), 1, + sym_identifier, + ACTIONS(5798), 1, + anon_sym_DOLLAR, + ACTIONS(5800), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_DASH_DASH, + ACTIONS(5804), 1, + anon_sym_DASH2, + ACTIONS(5870), 1, + anon_sym_RPAREN, + STATE(2542), 1, + sym_param_long_flag, + STATE(2679), 1, + sym__param_name, + STATE(2880), 1, + aux_sym_parameter_parens_repeat1, + STATE(3158), 1, + sym_comment, + STATE(3309), 1, + sym_param_short_flag, + STATE(3337), 1, + sym_param_rest, + STATE(3338), 1, + sym_param_opt, + STATE(3644), 1, + sym_parameter, + [97782] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1631), 1, - sym__entry_separator, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6069), 1, - anon_sym_DOLLAR, - ACTIONS(6071), 1, + ACTIONS(1588), 1, anon_sym_LPAREN2, - ACTIONS(6073), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, - aux_sym__immediate_decimal_token2, - STATE(3099), 1, - sym_comment, - STATE(4036), 1, + ACTIONS(2910), 1, + anon_sym_DOLLAR, + STATE(845), 1, sym__immediate_decimal, - ACTIONS(1633), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6077), 2, + STATE(3159), 1, + sym_comment, + ACTIONS(5819), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4225), 2, + ACTIONS(6189), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(844), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [95719] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6079), 1, - anon_sym_catch, - STATE(3100), 1, - sym_comment, - ACTIONS(5918), 12, - ts_builtin_sym_end, + ACTIONS(1651), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [95743] = 4, + anon_sym_EQ_GT, + [97816] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3101), 1, + STATE(3160), 1, sym_comment, - ACTIONS(2206), 2, + ACTIONS(6024), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2208), 11, + ACTIONS(6022), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219273,34 +221212,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, - [95767] = 3, + [97840] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(3102), 1, - sym_comment, - ACTIONS(6081), 13, - sym__newline, - anon_sym_SEMI, + ACTIONS(5792), 1, + sym_identifier, + ACTIONS(5798), 1, + anon_sym_DOLLAR, + ACTIONS(5800), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_DASH_DASH, + ACTIONS(5804), 1, + anon_sym_DASH2, + ACTIONS(5856), 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, - [95789] = 4, + STATE(2542), 1, + sym_param_long_flag, + STATE(2679), 1, + sym__param_name, + STATE(2880), 1, + aux_sym_parameter_parens_repeat1, + STATE(3161), 1, + sym_comment, + STATE(3309), 1, + sym_param_short_flag, + STATE(3337), 1, + sym_param_rest, + STATE(3338), 1, + sym_param_opt, + STATE(3644), 1, + sym_parameter, + [97886] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3103), 1, + STATE(3162), 1, sym_comment, - ACTIONS(2210), 2, + ACTIONS(1848), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2212), 11, + ACTIONS(1850), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219312,55 +221263,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95813] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2098), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(3104), 1, - sym_comment, - ACTIONS(2096), 12, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - sym__newline, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [95837] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5924), 1, - anon_sym_DASH2, - STATE(3105), 1, - sym_comment, - ACTIONS(5920), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [95861] = 4, - ACTIONS(3), 1, + [97910] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6083), 1, - anon_sym_else, - STATE(3106), 1, + STATE(3163), 1, sym_comment, - ACTIONS(6043), 12, + ACTIONS(2618), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2620), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219372,15 +221283,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95885] = 4, + [97934] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3107), 1, + STATE(3164), 1, sym_comment, - ACTIONS(2258), 2, + ACTIONS(2626), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2260), 11, + ACTIONS(2628), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219392,40 +221303,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95909] = 12, + [97958] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1582), 1, - sym__space, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4866), 1, - anon_sym_DOT, - ACTIONS(5862), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5864), 1, - aux_sym__immediate_decimal_token2, - STATE(3108), 1, - sym_comment, - STATE(3870), 1, - sym__immediate_decimal, - ACTIONS(1586), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5866), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3869), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [95949] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3109), 1, + STATE(3165), 1, sym_comment, - ACTIONS(6085), 13, + ACTIONS(6028), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6026), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219437,17 +221323,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [95971] = 4, + [97982] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3110), 1, + STATE(3166), 1, sym_comment, - ACTIONS(2226), 2, + ACTIONS(2311), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2228), 11, + ACTIONS(2313), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219459,15 +221343,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [95995] = 4, + [98006] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3111), 1, + STATE(3167), 1, sym_comment, - ACTIONS(2230), 2, + ACTIONS(6042), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2232), 11, + ACTIONS(6040), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219479,15 +221363,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96019] = 4, + [98030] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3112), 1, + STATE(3168), 1, sym_comment, - ACTIONS(2234), 2, + ACTIONS(2333), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2236), 11, + ACTIONS(2335), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219499,12 +221383,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96043] = 3, - ACTIONS(3), 1, + [98054] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3113), 1, + STATE(3169), 1, sym_comment, - ACTIONS(6087), 13, + ACTIONS(2136), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2138), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219516,14 +221403,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [96065] = 3, - ACTIONS(3), 1, + [98078] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3114), 1, + STATE(3170), 1, sym_comment, - ACTIONS(6089), 13, + ACTIONS(2144), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2146), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219535,14 +221423,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [96087] = 3, - ACTIONS(3), 1, + [98102] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3115), 1, + STATE(3171), 1, sym_comment, - ACTIONS(6091), 13, + ACTIONS(2152), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2154), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219554,16 +221443,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, - [96109] = 4, + [98126] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6095), 1, + ACTIONS(4976), 1, anon_sym_DASH2, - STATE(3116), 1, + STATE(3172), 1, sym_comment, - ACTIONS(6093), 12, + ACTIONS(4972), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -219576,103 +221463,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [96133] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6099), 1, - anon_sym_QMARK, - ACTIONS(6101), 1, - anon_sym_DASH2, - STATE(3117), 1, - sym_comment, - ACTIONS(6097), 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, - [96159] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3118), 1, - sym_comment, - ACTIONS(6103), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [96181] = 12, + [98150] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1582), 1, - sym__entry_separator, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(1607), 1, + sym__space, + ACTIONS(3261), 1, anon_sym_LPAREN2, - ACTIONS(5841), 1, + ACTIONS(3659), 1, + anon_sym_DOLLAR, + ACTIONS(4966), 1, + anon_sym_DOT, + ACTIONS(5937), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5843), 1, + ACTIONS(5939), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6105), 1, - anon_sym_DOT, - STATE(3119), 1, + STATE(3173), 1, sym_comment, - STATE(3862), 1, + STATE(3852), 1, sym__immediate_decimal, - ACTIONS(1586), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(5845), 2, + ACTIONS(1609), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(5941), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3861), 2, + STATE(3851), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [96221] = 4, + [98190] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6109), 1, - anon_sym_DASH2, - STATE(3120), 1, + ACTIONS(1588), 1, + anon_sym_LPAREN2, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2910), 1, + anon_sym_DOLLAR, + STATE(3174), 1, sym_comment, - ACTIONS(6107), 12, - anon_sym_EQ, - sym_identifier, + STATE(4368), 1, + sym__immediate_decimal, + ACTIONS(6197), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6199), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(809), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1582), 3, sym__newline, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [96245] = 4, + anon_sym_EQ_GT, + [98226] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3121), 1, + STATE(3175), 1, sym_comment, - ACTIONS(2238), 2, + ACTIONS(4668), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2240), 11, + ACTIONS(4666), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219684,15 +221537,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96269] = 4, - ACTIONS(103), 1, + [98250] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3122), 1, + ACTIONS(6201), 1, + anon_sym_catch, + STATE(3176), 1, sym_comment, - ACTIONS(5251), 2, + ACTIONS(5988), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(5249), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219704,15 +221557,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, - [96293] = 4, + [98274] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3123), 1, - sym_comment, - ACTIONS(5940), 2, - ts_builtin_sym_end, + ACTIONS(6205), 1, sym__space, - ACTIONS(5938), 11, + STATE(3177), 1, + sym_comment, + ACTIONS(6203), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219724,15 +221576,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, - [96317] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + [98298] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3124), 1, + STATE(3178), 1, sym_comment, - ACTIONS(5247), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5245), 11, + ACTIONS(6082), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219744,15 +221594,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, - [96341] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [98320] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3125), 1, + STATE(3179), 1, sym_comment, - ACTIONS(2242), 2, + ACTIONS(2337), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2244), 11, + ACTIONS(2339), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219764,15 +221616,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96365] = 4, + [98344] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3126), 1, + STATE(3180), 1, sym_comment, - ACTIONS(6037), 2, + ACTIONS(6116), 2, ts_builtin_sym_end, sym__space, - ACTIONS(6035), 11, + ACTIONS(6114), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219784,84 +221636,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96389] = 12, + [98368] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1596), 1, - sym__space, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(6055), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6057), 1, - aux_sym__immediate_decimal_token2, - STATE(3127), 1, - sym_comment, - STATE(4017), 1, - sym__immediate_decimal, - ACTIONS(1598), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6059), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2982), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [96429] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_DASH2, - ACTIONS(5116), 1, - sym__unquoted_pattern_in_record, - STATE(3128), 1, - sym_comment, - ACTIONS(968), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [96455] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6113), 1, - anon_sym_DASH2, - STATE(3129), 1, - sym_comment, - ACTIONS(6111), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [96479] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3130), 1, + STATE(3181), 1, sym_comment, - ACTIONS(2214), 2, + ACTIONS(2602), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2216), 11, + ACTIONS(2604), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219873,35 +221656,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96503] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6117), 1, - anon_sym_DASH2, - STATE(3131), 1, - sym_comment, - ACTIONS(6115), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [96527] = 4, + [98392] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3132), 1, + STATE(3182), 1, sym_comment, - ACTIONS(2246), 2, + ACTIONS(2606), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2248), 11, + ACTIONS(2608), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219913,15 +221676,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96551] = 4, + [98416] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3133), 1, + STATE(3183), 1, sym_comment, - ACTIONS(2615), 2, + ACTIONS(2610), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2617), 11, + ACTIONS(2612), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219933,14 +221696,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96575] = 4, - ACTIONS(3), 1, + [98440] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3134), 1, + STATE(3184), 1, sym_comment, - STATE(3173), 1, - aux_sym__repeat_newline, - ACTIONS(5596), 12, + ACTIONS(2614), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2616), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219952,16 +221716,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [96599] = 4, + [98464] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3135), 1, + STATE(3185), 1, sym_comment, - ACTIONS(4625), 2, + ACTIONS(2341), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4623), 11, + ACTIONS(2343), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219973,12 +221736,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96623] = 3, - ACTIONS(3), 1, + [98488] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3136), 1, + STATE(3186), 1, sym_comment, - ACTIONS(6119), 13, + ACTIONS(2345), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2347), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219990,37 +221756,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [96645] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6123), 1, - anon_sym_DASH2, - STATE(3137), 1, - sym_comment, - ACTIONS(6121), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [96669] = 4, + [98512] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3138), 1, + STATE(3187), 1, sym_comment, - ACTIONS(2250), 2, + ACTIONS(2349), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2252), 11, + ACTIONS(2351), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220032,55 +221776,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96693] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6127), 1, - anon_sym_DASH2, - STATE(3139), 1, - sym_comment, - ACTIONS(6125), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [96717] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6131), 1, - anon_sym_DASH2, - STATE(3140), 1, - sym_comment, - ACTIONS(6129), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [96741] = 4, + [98536] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3141), 1, + STATE(3188), 1, sym_comment, - ACTIONS(2262), 2, + ACTIONS(2353), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2264), 11, + ACTIONS(2355), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220092,35 +221796,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96765] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6135), 1, - anon_sym_DASH2, - STATE(3142), 1, - sym_comment, - ACTIONS(6133), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [96789] = 4, + [98560] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3143), 1, + STATE(3189), 1, sym_comment, - ACTIONS(1858), 2, + ACTIONS(2578), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1860), 11, + ACTIONS(2580), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220132,32 +221816,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, - [96813] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6139), 1, - anon_sym_DASH2, - STATE(3144), 1, - sym_comment, - ACTIONS(6137), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [96837] = 3, + [98584] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3145), 1, + STATE(3190), 1, sym_comment, - ACTIONS(6141), 13, + ACTIONS(6207), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220171,12 +221835,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96859] = 3, + [98606] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3146), 1, + STATE(3191), 1, sym_comment, - ACTIONS(6143), 13, + ACTIONS(4832), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220190,15 +221854,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96881] = 4, + [98628] = 12, ACTIONS(103), 1, anon_sym_POUND, - STATE(3147), 1, + ACTIONS(1631), 1, + sym__space, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(3261), 1, + anon_sym_LPAREN2, + ACTIONS(3659), 1, + anon_sym_DOLLAR, + ACTIONS(6209), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6211), 1, + aux_sym__immediate_decimal_token2, + STATE(3192), 1, + sym_comment, + STATE(3936), 1, + sym__immediate_decimal, + ACTIONS(1633), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6213), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3005), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [98668] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1582), 1, + sym__space, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(3261), 1, + anon_sym_LPAREN2, + ACTIONS(3659), 1, + anon_sym_DOLLAR, + ACTIONS(6209), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6211), 1, + aux_sym__immediate_decimal_token2, + STATE(3193), 1, + sym_comment, + STATE(4017), 1, + sym__immediate_decimal, + ACTIONS(1586), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6213), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3097), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [98708] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3194), 1, sym_comment, - ACTIONS(4629), 2, + ACTIONS(5959), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4627), 11, + ACTIONS(5957), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220210,15 +221930,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, - [96905] = 4, - ACTIONS(103), 1, + [98732] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3148), 1, + STATE(3195), 1, sym_comment, - ACTIONS(2607), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2609), 11, + STATE(3213), 1, + aux_sym__repeat_newline, + ACTIONS(5612), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220230,41 +221949,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, - [96929] = 10, + anon_sym_RPAREN, + [98756] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5162), 1, + anon_sym_DASH2, + STATE(3196), 1, + sym_comment, + ACTIONS(5160), 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, + [98780] = 10, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1588), 1, anon_sym_LPAREN2, - ACTIONS(1615), 1, + ACTIONS(1641), 1, sym__unquoted_pattern, - ACTIONS(2878), 1, + ACTIONS(2910), 1, anon_sym_DOLLAR, - STATE(3149), 1, + STATE(3197), 1, sym_comment, - STATE(4219), 1, + STATE(4298), 1, sym__immediate_decimal, - ACTIONS(6145), 2, + ACTIONS(6197), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6147), 2, + ACTIONS(6199), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(723), 2, + STATE(846), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1596), 3, + ACTIONS(1631), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [96965] = 4, + [98816] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3150), 1, + STATE(3198), 1, sym_comment, - ACTIONS(5581), 2, + ACTIONS(2447), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5579), 11, + ACTIONS(2449), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220276,46 +222016,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [96989] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(6149), 1, - anon_sym_PIPE, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3151), 1, - sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [97035] = 4, + [98840] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3152), 1, + STATE(3199), 1, sym_comment, - ACTIONS(4633), 2, + ACTIONS(2515), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4631), 11, + ACTIONS(2517), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220327,15 +222036,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97059] = 4, + [98864] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3153), 1, + STATE(3200), 1, sym_comment, - ACTIONS(2563), 2, + ACTIONS(2483), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2565), 11, + ACTIONS(2485), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220347,40 +222056,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, - [97083] = 9, + [98888] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(739), 1, - sym__immediate_decimal, - STATE(3154), 1, - sym_comment, - ACTIONS(5745), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6039), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(738), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1671), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [97117] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3155), 1, + STATE(3201), 1, sym_comment, - ACTIONS(2571), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2573), 11, + ACTIONS(6215), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220392,15 +222073,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, - [97141] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [98910] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3156), 1, + ACTIONS(6217), 1, + anon_sym_else, + STATE(3202), 1, sym_comment, - ACTIONS(2218), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2220), 11, + ACTIONS(6165), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220412,54 +222094,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, - [97165] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6153), 1, - anon_sym_DASH2, - STATE(3157), 1, - sym_comment, - ACTIONS(6151), 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, - [97189] = 4, + anon_sym_RBRACE, + [98934] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6157), 1, + ACTIONS(6221), 1, + anon_sym_QMARK, + ACTIONS(6223), 1, anon_sym_DASH2, - STATE(3158), 1, + STATE(3203), 1, sym_comment, - ACTIONS(6155), 12, + ACTIONS(6219), 11, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [97213] = 4, + [98960] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6159), 1, + ACTIONS(6225), 1, anon_sym_else, - STATE(3159), 1, + STATE(3204), 1, sym_comment, - ACTIONS(6043), 12, + ACTIONS(6165), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220472,37 +222136,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [97237] = 9, + [98984] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(741), 1, - sym__immediate_decimal, - STATE(3160), 1, + STATE(3205), 1, sym_comment, - ACTIONS(5745), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6039), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(740), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1675), 4, - anon_sym_if, + ACTIONS(6227), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - [97271] = 3, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [99006] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3161), 1, + STATE(3206), 1, sym_comment, - ACTIONS(5548), 13, + ACTIONS(6229), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220516,15 +222174,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97293] = 4, - ACTIONS(103), 1, + [99028] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3162), 1, + STATE(3207), 1, sym_comment, - ACTIONS(2511), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2513), 11, + ACTIONS(6231), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220536,15 +222191,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, - [97317] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [99050] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3163), 1, + STATE(3208), 1, sym_comment, - ACTIONS(2194), 2, + ACTIONS(5980), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2196), 11, + ACTIONS(5978), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220556,41 +222213,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, - [97341] = 10, - ACTIONS(3), 1, + [99074] = 13, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, + ACTIONS(1582), 1, + sym__entry_separator, + ACTIONS(1586), 1, + anon_sym_RBRACK, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6128), 1, anon_sym_DOLLAR, - STATE(3164), 1, - sym_comment, - STATE(4226), 1, - sym__immediate_decimal, - ACTIONS(6145), 2, + ACTIONS(6130), 1, + anon_sym_LPAREN2, + ACTIONS(6191), 1, aux_sym__immediate_decimal_token1, + ACTIONS(6193), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6147), 2, + ACTIONS(6233), 1, + anon_sym_DOT, + STATE(3209), 1, + sym_comment, + STATE(3700), 1, + sym__immediate_decimal, + ACTIONS(6195), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(742), 2, + STATE(3788), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1631), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [97377] = 4, - ACTIONS(103), 1, + [99116] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3165), 1, + STATE(3210), 1, sym_comment, - ACTIONS(968), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(868), 11, + ACTIONS(6235), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220602,15 +222259,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, - [97401] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [99138] = 12, ACTIONS(103), 1, anon_sym_POUND, - STATE(3166), 1, + ACTIONS(1582), 1, + sym__entry_separator, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6238), 1, + anon_sym_DOLLAR, + ACTIONS(6240), 1, + anon_sym_LPAREN2, + ACTIONS(6242), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6244), 1, + aux_sym__immediate_decimal_token2, + STATE(3211), 1, sym_comment, - ACTIONS(5346), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5344), 11, + STATE(3997), 1, + sym__immediate_decimal, + ACTIONS(1586), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6246), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4294), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [99178] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3212), 1, + sym_comment, + ACTIONS(6248), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220622,12 +222306,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, - [97425] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [99200] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3167), 1, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(3213), 1, sym_comment, - ACTIONS(6161), 13, + ACTIONS(5715), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220640,16 +222328,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, - [97447] = 4, - ACTIONS(103), 1, + [99224] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3168), 1, + STATE(3214), 1, sym_comment, - ACTIONS(2515), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2517), 11, + ACTIONS(6250), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220661,12 +222345,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, - [97471] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [99246] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3169), 1, + STATE(3215), 1, sym_comment, - ACTIONS(6163), 13, + ACTIONS(5972), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5970), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220678,17 +222367,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [97493] = 4, + [99270] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3170), 1, + STATE(3216), 1, sym_comment, - ACTIONS(5893), 2, + ACTIONS(2451), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5891), 11, + ACTIONS(2453), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220700,76 +222387,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97517] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5753), 1, - anon_sym_RBRACK, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3171), 1, - sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [97563] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(6165), 1, - anon_sym_RPAREN, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3172), 1, - sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [97609] = 4, - ACTIONS(3), 1, + [99294] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3173), 1, + STATE(3217), 1, sym_comment, - ACTIONS(5514), 12, + ACTIONS(2455), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2457), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220781,75 +222407,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [97633] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5755), 1, - anon_sym_RPAREN, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3174), 1, - sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [97679] = 12, + [99318] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6069), 1, - anon_sym_DOLLAR, - ACTIONS(6071), 1, - anon_sym_LPAREN2, - ACTIONS(6073), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, - aux_sym__immediate_decimal_token2, - STATE(3175), 1, - sym_comment, - STATE(4027), 1, - sym__immediate_decimal, - ACTIONS(1598), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6077), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4191), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [97719] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3176), 1, + STATE(3218), 1, sym_comment, - ACTIONS(5897), 2, + ACTIONS(2459), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5895), 11, + ACTIONS(2461), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220861,15 +222427,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97743] = 4, + [99342] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3177), 1, + STATE(3219), 1, sym_comment, - ACTIONS(2198), 2, + ACTIONS(2463), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2200), 11, + ACTIONS(2465), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220881,75 +222447,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97767] = 13, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1598), 1, - anon_sym_RBRACE, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6167), 1, - anon_sym_DOT, - ACTIONS(6169), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6171), 1, - aux_sym__immediate_decimal_token2, - STATE(3178), 1, - sym_comment, - STATE(3639), 1, - sym__immediate_decimal, - ACTIONS(6173), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3807), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [97809] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(5706), 1, - anon_sym_PIPE, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3179), 1, - sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [97855] = 4, + [99366] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3180), 1, + STATE(3220), 1, sym_comment, - ACTIONS(1706), 2, + ACTIONS(2467), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1619), 11, + ACTIONS(2469), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220961,15 +222467,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97879] = 4, + [99390] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3181), 1, + STATE(3221), 1, sym_comment, - ACTIONS(5901), 2, + ACTIONS(2471), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5899), 11, + ACTIONS(2473), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220981,15 +222487,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, - [97903] = 4, + [99414] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6254), 1, + anon_sym_DASH2, + STATE(3222), 1, + sym_comment, + ACTIONS(6252), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [99438] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3182), 1, + STATE(3223), 1, sym_comment, - ACTIONS(2100), 2, + ACTIONS(4654), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2102), 11, + ACTIONS(4652), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221001,18 +222527,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, - [97927] = 6, - ACTIONS(3), 1, + [99462] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5969), 1, - sym__newline, - ACTIONS(6175), 1, - anon_sym_else, - STATE(3183), 1, + STATE(3224), 1, sym_comment, - STATE(3186), 1, - aux_sym__repeat_newline, - ACTIONS(5972), 10, + ACTIONS(2491), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2493), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221023,18 +222547,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, - [97955] = 6, - ACTIONS(3), 1, + [99486] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6023), 1, - sym__newline, - ACTIONS(6177), 1, - anon_sym_else, - STATE(3184), 1, + STATE(3225), 1, sym_comment, - STATE(3188), 1, - aux_sym__repeat_newline, - ACTIONS(6026), 10, + ACTIONS(2495), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2497), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221045,18 +222567,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, - [97983] = 6, + [99510] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6030), 1, + ACTIONS(6149), 1, sym__newline, - ACTIONS(6179), 1, + ACTIONS(6256), 1, anon_sym_else, - STATE(3185), 1, + STATE(3226), 1, sym_comment, - STATE(3189), 1, + STATE(3230), 1, aux_sym__repeat_newline, - ACTIONS(6033), 10, + ACTIONS(6152), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221067,18 +222589,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, - [98011] = 6, - ACTIONS(3), 1, + [99538] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5817), 1, - sym__newline, - ACTIONS(6181), 1, - anon_sym_else, - STATE(3186), 1, + STATE(3227), 1, sym_comment, - STATE(3190), 1, - aux_sym__repeat_newline, - ACTIONS(5820), 10, + ACTIONS(2475), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2477), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221089,18 +222609,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, - [98039] = 6, + [99562] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5950), 1, + ACTIONS(6068), 1, sym__newline, - ACTIONS(6183), 1, + ACTIONS(6258), 1, anon_sym_else, - STATE(3187), 1, + STATE(3228), 1, sym_comment, - STATE(3191), 1, + STATE(3232), 1, aux_sym__repeat_newline, - ACTIONS(5953), 10, + ACTIONS(6071), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221111,18 +222631,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, - [98067] = 6, + [99590] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5794), 1, + ACTIONS(6075), 1, sym__newline, - ACTIONS(6185), 1, + ACTIONS(6260), 1, anon_sym_else, - STATE(3188), 1, + STATE(3229), 1, sym_comment, - STATE(3192), 1, + STATE(3233), 1, aux_sym__repeat_newline, - ACTIONS(5797), 10, + ACTIONS(6078), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221133,18 +222653,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, - [98095] = 6, + [99618] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5849), 1, + ACTIONS(6098), 1, sym__newline, - ACTIONS(6187), 1, + ACTIONS(6262), 1, anon_sym_else, - STATE(3189), 1, + STATE(3230), 1, sym_comment, - STATE(3193), 1, + STATE(3234), 1, aux_sym__repeat_newline, - ACTIONS(5852), 10, + ACTIONS(6101), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221155,18 +222675,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, - [98123] = 6, + [99646] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(5952), 1, sym__newline, - ACTIONS(6189), 1, + ACTIONS(6264), 1, anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3190), 1, + STATE(3231), 1, sym_comment, - ACTIONS(1955), 10, + STATE(3235), 1, + aux_sym__repeat_newline, + ACTIONS(5955), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221177,18 +222697,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, - [98151] = 6, + [99674] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5998), 1, + ACTIONS(6035), 1, sym__newline, - ACTIONS(6192), 1, + ACTIONS(6266), 1, anon_sym_else, - STATE(3191), 1, + STATE(3232), 1, sym_comment, - STATE(3194), 1, + STATE(3236), 1, aux_sym__repeat_newline, - ACTIONS(6001), 10, + ACTIONS(6038), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221199,18 +222719,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, - [98179] = 6, + [99702] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(6109), 1, sym__newline, - ACTIONS(6194), 1, + ACTIONS(6268), 1, anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3192), 1, + STATE(3233), 1, sym_comment, - ACTIONS(1955), 10, + STATE(3237), 1, + aux_sym__repeat_newline, + ACTIONS(6112), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221221,18 +222741,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, - [98207] = 6, + [99730] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(1937), 1, sym__newline, - ACTIONS(6197), 1, + ACTIONS(6270), 1, anon_sym_else, - STATE(540), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(3193), 1, + STATE(3234), 1, sym_comment, - ACTIONS(1955), 10, + ACTIONS(1935), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221243,18 +222763,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, - [98235] = 6, + [99758] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(5930), 1, sym__newline, - ACTIONS(6200), 1, + ACTIONS(6273), 1, anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3194), 1, + STATE(3235), 1, sym_comment, - ACTIONS(1955), 10, + STATE(3238), 1, + aux_sym__repeat_newline, + ACTIONS(5933), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221265,16 +222785,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, - [98263] = 4, - ACTIONS(103), 1, + [99786] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3195), 1, - sym_comment, - ACTIONS(2076), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2078), 11, + ACTIONS(1937), 1, sym__newline, + ACTIONS(6275), 1, + anon_sym_else, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(3236), 1, + sym_comment, + ACTIONS(1935), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221285,16 +222807,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, - [98287] = 4, - ACTIONS(103), 1, + [99814] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3196), 1, - sym_comment, - ACTIONS(5905), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5903), 11, + ACTIONS(1937), 1, sym__newline, + ACTIONS(6278), 1, + anon_sym_else, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(3237), 1, + sym_comment, + ACTIONS(1935), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221305,16 +222829,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, - [98311] = 4, - ACTIONS(103), 1, + [99842] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3197), 1, - sym_comment, - ACTIONS(2222), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2224), 11, + ACTIONS(1937), 1, sym__newline, + ACTIONS(6281), 1, + anon_sym_else, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(3238), 1, + sym_comment, + ACTIONS(1935), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221325,46 +222851,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, - [98335] = 15, + [99870] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5688), 1, + ACTIONS(5010), 1, + anon_sym_DASH2, + STATE(3239), 1, + sym_comment, + ACTIONS(5008), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(5694), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5696), 1, + anon_sym_AT2, anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(6203), 1, - anon_sym_RBRACK, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3198), 1, - sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [98381] = 4, + [99894] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3199), 1, + STATE(3240), 1, sym_comment, - ACTIONS(2120), 2, + ACTIONS(2487), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2122), 11, + ACTIONS(2489), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221376,43 +222891,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, - [98405] = 12, + [99918] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5014), 1, + anon_sym_DASH2, + STATE(3241), 1, + sym_comment, + ACTIONS(5012), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [99942] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1582), 1, + ACTIONS(1631), 1, sym__entry_separator, - ACTIONS(1776), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6238), 1, anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(6240), 1, anon_sym_LPAREN2, - ACTIONS(6047), 1, + ACTIONS(6242), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6049), 1, + ACTIONS(6244), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6105), 1, - anon_sym_DOT, - STATE(3200), 1, + STATE(3242), 1, sym_comment, - STATE(3806), 1, + STATE(4007), 1, sym__immediate_decimal, - ACTIONS(1586), 2, + ACTIONS(1633), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6051), 2, + anon_sym_DOT_DOT, + ACTIONS(6246), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3805), 2, + STATE(4398), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [98445] = 4, + [99982] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3201), 1, + STATE(3243), 1, sym_comment, - ACTIONS(2152), 2, + ACTIONS(4660), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2154), 11, + ACTIONS(4658), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221424,46 +222959,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98469] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5688), 1, - sym_identifier, - ACTIONS(5694), 1, - anon_sym_DOLLAR, - ACTIONS(5696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5698), 1, - anon_sym_DASH_DASH, - ACTIONS(5700), 1, - anon_sym_DASH2, - ACTIONS(6205), 1, - anon_sym_RBRACK, - STATE(2467), 1, - sym_param_long_flag, - STATE(2631), 1, - sym__param_name, - STATE(2828), 1, - aux_sym_parameter_parens_repeat1, - STATE(3202), 1, - sym_comment, - STATE(3269), 1, - sym_param_short_flag, - STATE(3314), 1, - sym_param_rest, - STATE(3328), 1, - sym_param_opt, - STATE(3582), 1, - sym_parameter, - [98515] = 4, + [100006] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3203), 1, + STATE(3244), 1, sym_comment, - ACTIONS(2112), 2, + ACTIONS(1862), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2114), 11, + ACTIONS(1864), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221475,15 +222979,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98539] = 4, + [100030] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3204), 1, + STATE(3245), 1, sym_comment, - ACTIONS(4651), 2, + ACTIONS(4664), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4649), 11, + ACTIONS(4662), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221495,15 +222999,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98563] = 4, + [100054] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3205), 1, + STATE(3246), 1, sym_comment, - ACTIONS(2268), 2, + ACTIONS(5976), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2270), 11, + ACTIONS(5974), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221515,93 +223019,301 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98587] = 4, - ACTIONS(103), 1, + [100078] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3206), 1, + ACTIONS(5034), 1, + anon_sym_DASH2, + STATE(3247), 1, sym_comment, - ACTIONS(2272), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2274), 11, + ACTIONS(5032), 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, - [98611] = 3, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [100102] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3207), 1, + ACTIONS(5038), 1, + anon_sym_DASH2, + STATE(3248), 1, sym_comment, - ACTIONS(6207), 13, + ACTIONS(5036), 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, - [98633] = 4, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [100126] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6212), 1, - sym__space, - STATE(3208), 1, + ACTIONS(5042), 1, + anon_sym_DASH2, + STATE(3249), 1, sym_comment, - ACTIONS(6210), 12, + ACTIONS(5040), 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, - [98657] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [100150] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3209), 1, + ACTIONS(5046), 1, + anon_sym_DASH2, + STATE(3250), 1, sym_comment, - ACTIONS(5885), 13, + ACTIONS(5044), 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, - [98679] = 4, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [100174] = 15, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3210), 1, + ACTIONS(5792), 1, + sym_identifier, + ACTIONS(5798), 1, + anon_sym_DOLLAR, + ACTIONS(5800), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_DASH_DASH, + ACTIONS(5804), 1, + anon_sym_DASH2, + ACTIONS(6284), 1, + anon_sym_RBRACK, + STATE(2542), 1, + sym_param_long_flag, + STATE(2679), 1, + sym__param_name, + STATE(2880), 1, + aux_sym_parameter_parens_repeat1, + STATE(3251), 1, sym_comment, - ACTIONS(5914), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5912), 11, + STATE(3309), 1, + sym_param_short_flag, + STATE(3337), 1, + sym_param_rest, + STATE(3338), 1, + sym_param_opt, + STATE(3644), 1, + sym_parameter, + [100220] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6288), 1, + anon_sym_DASH2, + STATE(3252), 1, + sym_comment, + ACTIONS(6286), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [100244] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5056), 1, + anon_sym_DASH2, + STATE(3253), 1, + sym_comment, + ACTIONS(5054), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [100268] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5030), 1, + anon_sym_DASH2, + STATE(3254), 1, + sym_comment, + ACTIONS(5028), 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, + [100292] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5792), 1, + sym_identifier, + ACTIONS(5798), 1, + anon_sym_DOLLAR, + ACTIONS(5800), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_DASH_DASH, + ACTIONS(5804), 1, + anon_sym_DASH2, + ACTIONS(6290), 1, + anon_sym_RPAREN, + STATE(2542), 1, + sym_param_long_flag, + STATE(2679), 1, + sym__param_name, + STATE(2880), 1, + aux_sym_parameter_parens_repeat1, + STATE(3255), 1, + sym_comment, + STATE(3309), 1, + sym_param_short_flag, + STATE(3337), 1, + sym_param_rest, + STATE(3338), 1, + sym_param_opt, + STATE(3644), 1, + sym_parameter, + [100338] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5792), 1, + sym_identifier, + ACTIONS(5798), 1, + anon_sym_DOLLAR, + ACTIONS(5800), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_DASH_DASH, + ACTIONS(5804), 1, + anon_sym_DASH2, + ACTIONS(6292), 1, + anon_sym_PIPE, + STATE(2542), 1, + sym_param_long_flag, + STATE(2679), 1, + sym__param_name, + STATE(2880), 1, + aux_sym_parameter_parens_repeat1, + STATE(3256), 1, + sym_comment, + STATE(3309), 1, + sym_param_short_flag, + STATE(3337), 1, + sym_param_rest, + STATE(3338), 1, + sym_param_opt, + STATE(3644), 1, + sym_parameter, + [100384] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1588), 1, + anon_sym_LPAREN2, + ACTIONS(2910), 1, + anon_sym_DOLLAR, + STATE(807), 1, + sym__immediate_decimal, + STATE(3257), 1, + sym_comment, + ACTIONS(5819), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6189), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(806), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1607), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [100418] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5792), 1, + sym_identifier, + ACTIONS(5796), 1, + anon_sym_RBRACK, + ACTIONS(5798), 1, + anon_sym_DOLLAR, + ACTIONS(5800), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_DASH_DASH, + ACTIONS(5804), 1, + anon_sym_DASH2, + STATE(2542), 1, + sym_param_long_flag, + STATE(2679), 1, + sym__param_name, + STATE(2880), 1, + aux_sym_parameter_parens_repeat1, + STATE(3258), 1, + sym_comment, + STATE(3309), 1, + sym_param_short_flag, + STATE(3337), 1, + sym_param_rest, + STATE(3338), 1, + sym_param_opt, + STATE(3644), 1, + sym_parameter, + [100464] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3259), 1, + sym_comment, + ACTIONS(5626), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221613,14 +223325,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, - [98703] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [100486] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(540), 1, + STATE(3138), 1, aux_sym__repeat_newline, - STATE(3211), 1, + STATE(3260), 1, sym_comment, - ACTIONS(5529), 12, + ACTIONS(5719), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221633,15 +223347,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [98727] = 4, + [100510] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3212), 1, + STATE(3261), 1, sym_comment, - ACTIONS(2519), 2, + ACTIONS(2479), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2521), 11, + ACTIONS(2481), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221653,15 +223367,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98751] = 4, + [100534] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3213), 1, + STATE(3262), 1, sym_comment, - ACTIONS(1866), 2, + ACTIONS(2479), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1868), 11, + ACTIONS(2481), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221673,33 +223387,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98775] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5969), 1, - sym__newline, - ACTIONS(6214), 1, - anon_sym_else, - STATE(3214), 1, - sym_comment, - STATE(3319), 1, - aux_sym__repeat_newline, - ACTIONS(5972), 9, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [98802] = 3, - ACTIONS(3), 1, + [100558] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3215), 1, + STATE(3263), 1, sym_comment, - ACTIONS(6216), 12, + ACTIONS(6161), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6159), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221711,58 +223407,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [98823] = 12, + [100582] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(1651), 1, + sym__space, + ACTIONS(3261), 1, anon_sym_LPAREN2, - ACTIONS(5841), 1, + ACTIONS(3659), 1, + anon_sym_DOLLAR, + ACTIONS(6294), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5843), 1, + ACTIONS(6296), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6218), 1, - anon_sym_RBRACK, - ACTIONS(6220), 1, - anon_sym_DOLLAR2, - ACTIONS(6222), 1, - aux_sym__unquoted_in_list_token2, - STATE(3216), 1, - sym_comment, - STATE(3603), 1, + STATE(3002), 1, sym__immediate_decimal, - ACTIONS(5845), 2, + STATE(3264), 1, + sym_comment, + ACTIONS(1653), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(5941), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3860), 2, + STATE(2996), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [98862] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3217), 1, - sym_comment, - ACTIONS(6224), 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, - [98883] = 3, + [100619] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3218), 1, + STATE(3265), 1, sym_comment, - ACTIONS(6226), 12, + ACTIONS(6229), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221774,53 +223451,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, - [98904] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6230), 1, - anon_sym_DASH2, - STATE(3219), 1, - sym_comment, - ACTIONS(6228), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [98927] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2248), 1, - anon_sym_DASH2, - STATE(3220), 1, - sym_comment, - ACTIONS(2246), 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, - [98950] = 4, + [100640] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2252), 1, + ACTIONS(5767), 1, anon_sym_DASH2, - STATE(3221), 1, + STATE(3266), 1, sym_comment, - ACTIONS(2250), 11, + ACTIONS(5765), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -221832,12 +223470,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [98973] = 3, + [100663] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3222), 1, + STATE(3267), 1, sym_comment, - ACTIONS(6232), 12, + ACTIONS(6298), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221850,30 +223488,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [98994] = 3, - ACTIONS(3), 1, + [100684] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3223), 1, + ACTIONS(6300), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6302), 1, + aux_sym__immediate_decimal_token5, + STATE(3268), 1, sym_comment, - ACTIONS(6234), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [99015] = 3, + ACTIONS(747), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(749), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [100711] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3224), 1, + STATE(3269), 1, sym_comment, - ACTIONS(6236), 12, + ACTIONS(6231), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221885,13 +223527,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, - [99036] = 3, + [100732] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3225), 1, + STATE(3270), 1, sym_comment, - ACTIONS(6238), 12, + ACTIONS(6235), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221903,38 +223545,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, - [99057] = 4, - ACTIONS(3), 1, + [100753] = 11, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2216), 1, - anon_sym_DASH2, - STATE(3226), 1, + ACTIONS(1643), 1, + sym__entry_separator, + ACTIONS(1776), 1, + anon_sym_DOLLAR, + ACTIONS(6130), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6306), 1, + aux_sym__immediate_decimal_token2, + STATE(3271), 1, sym_comment, - ACTIONS(2214), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, + STATE(4249), 1, + sym__immediate_decimal, + ACTIONS(1645), 2, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(6195), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4248), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [100790] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1647), 1, + sym__entry_separator, + ACTIONS(1776), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [99080] = 6, + ACTIONS(6130), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6306), 1, + aux_sym__immediate_decimal_token2, + STATE(3272), 1, + sym_comment, + STATE(4254), 1, + sym__immediate_decimal, + ACTIONS(1649), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6195), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4253), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [100827] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - STATE(788), 1, - aux_sym__pipe_separator, - STATE(3227), 1, + STATE(3273), 1, sym_comment, - STATE(3365), 1, - aux_sym__repeat_newline, - ACTIONS(2303), 9, + ACTIONS(6308), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -221944,18 +223614,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [99107] = 6, + anon_sym_RPAREN, + [100848] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - STATE(881), 1, - aux_sym__pipe_separator, - STATE(3228), 1, + STATE(3274), 1, sym_comment, - STATE(3365), 1, - aux_sym__repeat_newline, - ACTIONS(2303), 9, + ACTIONS(4850), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -221965,13 +223632,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, - [99134] = 3, + anon_sym_RPAREN, + [100869] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3229), 1, + STATE(3275), 1, sym_comment, - ACTIONS(6085), 12, - ts_builtin_sym_end, + ACTIONS(6310), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221983,14 +223650,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, - [99155] = 3, + anon_sym_RPAREN, + [100890] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3230), 1, - sym_comment, - ACTIONS(6240), 12, + ACTIONS(2834), 1, sym__newline, - anon_sym_SEMI, + STATE(893), 1, + aux_sym__pipe_separator, + STATE(3276), 1, + sym_comment, + STATE(3431), 1, + aux_sym__repeat_newline, + ACTIONS(2273), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -222000,15 +223672,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, - [99176] = 4, + [100917] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5715), 1, + ACTIONS(2461), 1, anon_sym_DASH2, - STATE(3231), 1, + STATE(3277), 1, sym_comment, - ACTIONS(5713), 11, + ACTIONS(2459), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222020,12 +223691,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99199] = 3, + [100940] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3232), 1, + STATE(3278), 1, sym_comment, - ACTIONS(6242), 12, + ACTIONS(6312), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222038,258 +223709,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99220] = 4, + [100961] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6246), 1, - anon_sym_DASH2, - STATE(3233), 1, + STATE(3279), 1, sym_comment, - ACTIONS(6244), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6314), 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, - [99243] = 4, + [100982] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5642), 1, - anon_sym_DASH2, - STATE(3234), 1, + STATE(3280), 1, sym_comment, - ACTIONS(5640), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6316), 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, - [99266] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1667), 1, - sym__entry_separator, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6250), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6252), 1, - aux_sym__immediate_decimal_token2, - STATE(3235), 1, - sym_comment, - STATE(4218), 1, - sym__immediate_decimal, - ACTIONS(1669), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4216), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [99303] = 11, + [101003] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1671), 1, + ACTIONS(1651), 1, sym__entry_separator, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, + ACTIONS(1776), 1, anon_sym_DOLLAR, - ACTIONS(6250), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6252), 1, - aux_sym__immediate_decimal_token2, - STATE(3236), 1, - sym_comment, - STATE(4221), 1, - sym__immediate_decimal, - ACTIONS(1673), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4367), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [99340] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1675), 1, - sym__entry_separator, - ACTIONS(5837), 1, + ACTIONS(6130), 1, anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6250), 1, + ACTIONS(6304), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6252), 1, + ACTIONS(6306), 1, aux_sym__immediate_decimal_token2, - STATE(3237), 1, + STATE(3281), 1, sym_comment, - STATE(4224), 1, + STATE(4256), 1, sym__immediate_decimal, - ACTIONS(1677), 2, + ACTIONS(1653), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4222), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [99377] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1667), 1, - sym__space, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(6254), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6256), 1, - aux_sym__immediate_decimal_token2, - STATE(3008), 1, - sym__immediate_decimal, - STATE(3238), 1, - sym_comment, - ACTIONS(1669), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5866), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3006), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [99414] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6260), 1, - anon_sym_DASH2, - STATE(3239), 1, - sym_comment, - ACTIONS(6258), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [99437] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1671), 1, - sym__space, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(6254), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6256), 1, - aux_sym__immediate_decimal_token2, - STATE(3010), 1, - sym__immediate_decimal, - STATE(3240), 1, - sym_comment, - ACTIONS(1673), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5866), 2, + ACTIONS(6195), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3074), 2, + STATE(4255), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [99474] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6260), 1, - anon_sym_DASH2, - STATE(3241), 1, - sym_comment, - ACTIONS(6258), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [99497] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6264), 1, - anon_sym_DASH2, - STATE(3242), 1, - sym_comment, - ACTIONS(6262), 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, - [99520] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6268), 1, - anon_sym_DASH2, - STATE(3243), 1, - sym_comment, - ACTIONS(6266), 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, - [99543] = 4, + [101040] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6272), 1, + ACTIONS(5866), 1, anon_sym_DASH2, - STATE(3244), 1, + STATE(3282), 1, sym_comment, - ACTIONS(6270), 11, + ACTIONS(5864), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222301,12 +223790,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99566] = 3, + [101063] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3245), 1, + STATE(3283), 1, sym_comment, - ACTIONS(6274), 12, + ACTIONS(6227), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222318,13 +223808,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, - [99587] = 3, + [101084] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3246), 1, + STATE(3284), 1, sym_comment, - ACTIONS(6276), 12, + ACTIONS(6318), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222337,12 +223826,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99608] = 3, + [101105] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3247), 1, + STATE(3285), 1, sym_comment, - ACTIONS(6278), 12, + ACTIONS(6320), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222355,33 +223844,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99629] = 6, + [101126] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6280), 1, - anon_sym_DOT, - ACTIONS(6282), 1, - aux_sym__immediate_decimal_token5, - STATE(3248), 1, - sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 8, - anon_sym_if, + ACTIONS(6322), 1, sym__newline, + ACTIONS(6325), 1, + anon_sym_DASH2, + STATE(3286), 1, + sym_comment, + ACTIONS(2110), 2, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4453), 8, + sym_identifier, anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [99656] = 3, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [101153] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3249), 1, + STATE(3287), 1, sym_comment, - ACTIONS(6284), 12, + ACTIONS(6327), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222394,12 +223883,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99677] = 3, + [101174] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3250), 1, + STATE(3288), 1, sym_comment, - ACTIONS(6286), 12, + ACTIONS(6329), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222412,14 +223901,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99698] = 4, + [101195] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6128), 1, + anon_sym_DOLLAR, + ACTIONS(6130), 1, + anon_sym_LPAREN2, + ACTIONS(6134), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6136), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6331), 1, + anon_sym_RBRACK, + ACTIONS(6333), 1, + anon_sym_DOLLAR2, + ACTIONS(6335), 1, + aux_sym__unquoted_in_list_token2, + STATE(3289), 1, + sym_comment, + STATE(3632), 1, + sym__immediate_decimal, + ACTIONS(6138), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3889), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [101234] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6290), 1, + ACTIONS(6149), 1, + sym__newline, + ACTIONS(6337), 1, + anon_sym_else, + STATE(3290), 1, + sym_comment, + STATE(3298), 1, + aux_sym__repeat_newline, + ACTIONS(6152), 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, + [101261] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2154), 1, anon_sym_DASH2, - STATE(3251), 1, + STATE(3291), 1, sym_comment, - ACTIONS(6288), 11, + ACTIONS(2152), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222431,12 +223968,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99721] = 3, + [101284] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3252), 1, + STATE(3292), 1, sym_comment, - ACTIONS(4789), 12, + ACTIONS(4832), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -222449,54 +223986,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, - [99742] = 6, - ACTIONS(3), 1, + [101305] = 12, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6292), 1, + ACTIONS(1582), 1, + sym__entry_separator, + ACTIONS(1586), 1, + anon_sym_RBRACE, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_record, + ACTIONS(1776), 1, + anon_sym_DOLLAR, + ACTIONS(6130), 1, + anon_sym_LPAREN2, + ACTIONS(6339), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6294), 1, - aux_sym__immediate_decimal_token5, - STATE(3253), 1, + ACTIONS(6341), 1, + aux_sym__immediate_decimal_token2, + STATE(3293), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 8, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [99769] = 6, + STATE(4229), 1, + sym__immediate_decimal, + ACTIONS(6343), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4294), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [101344] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6296), 1, - sym__newline, - ACTIONS(6299), 1, + ACTIONS(6347), 1, anon_sym_DASH2, - STATE(3254), 1, + STATE(3294), 1, sym_comment, - ACTIONS(2096), 2, + ACTIONS(6345), 11, anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4376), 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, - [99796] = 3, + [101367] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3255), 1, + STATE(3295), 1, sym_comment, - ACTIONS(6301), 12, + ACTIONS(6349), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222509,33 +224050,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99817] = 4, + [101388] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6305), 1, - anon_sym_DASH2, - STATE(3256), 1, - sym_comment, - ACTIONS(6303), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6068), 1, sym__newline, + ACTIONS(6351), 1, + anon_sym_else, + STATE(3296), 1, + sym_comment, + STATE(3300), 1, + aux_sym__repeat_newline, + ACTIONS(6071), 9, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [99840] = 3, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [101415] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3257), 1, - sym_comment, - ACTIONS(6307), 12, + ACTIONS(6075), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6353), 1, + anon_sym_else, + STATE(3297), 1, + sym_comment, + STATE(3301), 1, + aux_sym__repeat_newline, + ACTIONS(6078), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -222545,16 +224092,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, - [99861] = 3, + [101442] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3258), 1, - sym_comment, - ACTIONS(6163), 12, - ts_builtin_sym_end, + ACTIONS(6098), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6355), 1, + anon_sym_else, + STATE(3298), 1, + sym_comment, + STATE(3302), 1, + aux_sym__repeat_newline, + ACTIONS(6101), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -222564,14 +224113,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, - [99882] = 3, + [101469] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3259), 1, - sym_comment, - ACTIONS(6309), 12, + ACTIONS(5952), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6357), 1, + anon_sym_else, + STATE(3299), 1, + sym_comment, + STATE(3304), 1, + aux_sym__repeat_newline, + ACTIONS(5955), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -222581,34 +224134,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [99903] = 4, + [101496] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5721), 1, - anon_sym_DASH2, - STATE(3260), 1, - sym_comment, - ACTIONS(5719), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6035), 1, sym__newline, + ACTIONS(6359), 1, + anon_sym_else, + STATE(3300), 1, + sym_comment, + STATE(3305), 1, + aux_sym__repeat_newline, + ACTIONS(6038), 9, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [99926] = 3, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [101523] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3261), 1, - sym_comment, - ACTIONS(6311), 12, + ACTIONS(6109), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6361), 1, + anon_sym_else, + STATE(3301), 1, + sym_comment, + STATE(3306), 1, + aux_sym__repeat_newline, + ACTIONS(6112), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -222618,15 +224176,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, - [99947] = 3, + [101550] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3262), 1, - sym_comment, - ACTIONS(6313), 12, + ACTIONS(1937), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6363), 1, + anon_sym_else, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(3302), 1, + sym_comment, + ACTIONS(1935), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -222636,13 +224197,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, - [99968] = 3, + [101577] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3263), 1, + STATE(3303), 1, sym_comment, - ACTIONS(6315), 12, + ACTIONS(6366), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222655,40 +224215,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [99989] = 11, - ACTIONS(103), 1, + [101598] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1675), 1, - sym__space, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(6254), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6256), 1, - aux_sym__immediate_decimal_token2, - STATE(3012), 1, - sym__immediate_decimal, - STATE(3264), 1, - sym_comment, - ACTIONS(1677), 2, + ACTIONS(5930), 1, sym__newline, - anon_sym_SEMI, - ACTIONS(5866), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3011), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [100026] = 3, + ACTIONS(6368), 1, + anon_sym_else, + STATE(3304), 1, + sym_comment, + STATE(3307), 1, + aux_sym__repeat_newline, + ACTIONS(5933), 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, + [101625] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3265), 1, - sym_comment, - ACTIONS(6317), 12, + ACTIONS(1937), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6370), 1, + anon_sym_else, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(3305), 1, + sym_comment, + ACTIONS(1935), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -222698,16 +224257,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [100047] = 3, + [101652] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3266), 1, + ACTIONS(1937), 1, + sym__newline, + ACTIONS(6373), 1, + anon_sym_else, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(3306), 1, sym_comment, - ACTIONS(6081), 12, - ts_builtin_sym_end, + ACTIONS(1935), 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, + [101679] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1937), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(6376), 1, + anon_sym_else, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(3307), 1, + sym_comment, + ACTIONS(1935), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -222717,57 +224299,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, - [100068] = 6, + [101706] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6319), 1, - anon_sym_DOT, - ACTIONS(6321), 1, + ACTIONS(6379), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6381), 1, aux_sym__immediate_decimal_token5, - STATE(3267), 1, + STATE(3308), 1, sym_comment, - ACTIONS(739), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(747), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 6, - sym__space, + sym__unquoted_pattern_in_list, + ACTIONS(749), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [100095] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1452), 1, - anon_sym_BANG, - ACTIONS(6323), 1, - anon_sym_QMARK2, - STATE(351), 1, - sym__path_suffix, - STATE(3268), 1, - sym_comment, - ACTIONS(1448), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1446), 6, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_DOT2, - [100124] = 4, + [101733] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6327), 1, + ACTIONS(6385), 1, anon_sym_DASH2, - STATE(3269), 1, + STATE(3309), 1, sym_comment, - ACTIONS(6325), 11, + ACTIONS(6383), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222779,35 +224339,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100147] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6329), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6331), 1, - aux_sym__immediate_decimal_token5, - STATE(3270), 1, - sym_comment, - ACTIONS(747), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [100174] = 4, + [101756] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2208), 1, + ACTIONS(2347), 1, anon_sym_DASH2, - STATE(3271), 1, + STATE(3310), 1, sym_comment, - ACTIONS(2206), 11, + ACTIONS(2345), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222819,12 +224358,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100197] = 3, + [101779] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3272), 1, + STATE(3311), 1, sym_comment, - ACTIONS(6333), 12, + ACTIONS(6387), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222837,41 +224376,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100218] = 12, - ACTIONS(103), 1, + [101800] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1598), 1, - anon_sym_RBRACE, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6335), 1, + ACTIONS(6389), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6337), 1, - aux_sym__immediate_decimal_token2, - STATE(3273), 1, + ACTIONS(6391), 1, + aux_sym__immediate_decimal_token5, + STATE(3312), 1, sym_comment, - STATE(4137), 1, - sym__immediate_decimal, - ACTIONS(6339), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4191), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [100257] = 4, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 8, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [101827] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2212), 1, + ACTIONS(2335), 1, anon_sym_DASH2, - STATE(3274), 1, + STATE(3313), 1, sym_comment, - ACTIONS(2210), 11, + ACTIONS(2333), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222883,14 +224416,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100280] = 4, + [101850] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2228), 1, + ACTIONS(6347), 1, anon_sym_DASH2, - STATE(3275), 1, + STATE(3314), 1, sym_comment, - ACTIONS(2226), 11, + ACTIONS(6345), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222902,60 +224435,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100303] = 6, + [101873] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6341), 1, - anon_sym_DOT, - ACTIONS(6343), 1, - aux_sym__immediate_decimal_token5, - STATE(3276), 1, + ACTIONS(1444), 1, + anon_sym_BANG, + ACTIONS(6393), 1, + anon_sym_QMARK2, + STATE(352), 1, + sym__path_suffix, + STATE(3315), 1, sym_comment, - ACTIONS(739), 4, + ACTIONS(1440), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1438), 6, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(741), 6, + anon_sym_COLON2, + anon_sym_DOT2, + [101902] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3316), 1, + sym_comment, + ACTIONS(6395), 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, + [101923] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3317), 1, + sym_comment, + ACTIONS(6179), 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, + [101944] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6128), 1, + anon_sym_DOLLAR, + ACTIONS(6130), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [100330] = 11, + ACTIONS(6134), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6136), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6333), 1, + anon_sym_DOLLAR2, + ACTIONS(6335), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(6397), 1, + anon_sym_RBRACK, + STATE(3318), 1, + sym_comment, + STATE(3632), 1, + sym__immediate_decimal, + ACTIONS(6138), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3889), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [101983] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3319), 1, + sym_comment, + ACTIONS(6163), 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, + [102004] = 12, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1582), 1, sym__entry_separator, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, + ACTIONS(1586), 1, + anon_sym_RBRACK, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1776), 1, anon_sym_DOLLAR, - ACTIONS(6250), 1, + ACTIONS(6130), 1, + anon_sym_LPAREN2, + ACTIONS(6399), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6252), 1, + ACTIONS(6401), 1, aux_sym__immediate_decimal_token2, - STATE(3277), 1, + STATE(3320), 1, sym_comment, - STATE(4188), 1, + STATE(4193), 1, sym__immediate_decimal, - ACTIONS(1586), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6051), 2, + ACTIONS(6403), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4187), 2, + STATE(4294), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [100367] = 3, + [102043] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3278), 1, + STATE(3321), 1, sym_comment, - ACTIONS(6143), 12, - ts_builtin_sym_end, + ACTIONS(6405), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222967,31 +224582,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, - [100388] = 4, + anon_sym_RPAREN, + [102064] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2232), 1, - anon_sym_DASH2, - STATE(3279), 1, + STATE(3322), 1, sym_comment, - ACTIONS(2230), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6082), 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, - [100411] = 3, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [102085] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3280), 1, + ACTIONS(2834), 1, + sym__newline, + STATE(751), 1, + aux_sym__pipe_separator, + STATE(3323), 1, + sym_comment, + STATE(3431), 1, + aux_sym__repeat_newline, + ACTIONS(2273), 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, + [102112] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3324), 1, sym_comment, - ACTIONS(6345), 12, + ACTIONS(4834), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223004,13 +224640,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100432] = 3, + [102133] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3281), 1, + STATE(3325), 1, sym_comment, - ACTIONS(6087), 12, - ts_builtin_sym_end, + ACTIONS(6407), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223022,13 +224657,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, - [100453] = 3, + anon_sym_RPAREN, + [102154] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3282), 1, + STATE(3326), 1, sym_comment, - ACTIONS(6089), 12, - ts_builtin_sym_end, + ACTIONS(6409), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223040,12 +224675,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, - [100474] = 3, + anon_sym_RPAREN, + [102175] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3283), 1, + STATE(3327), 1, sym_comment, - ACTIONS(6091), 12, + ACTIONS(6215), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -223058,78 +224694,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [100495] = 4, + [102196] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6349), 1, + ACTIONS(1940), 1, anon_sym_DASH2, - STATE(3284), 1, + ACTIONS(6411), 1, + sym__newline, + STATE(3328), 2, + aux_sym__repeat_newline, sym_comment, - ACTIONS(6347), 11, + ACTIONS(1935), 9, anon_sym_EQ, sym_identifier, - sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100518] = 4, + [102221] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2236), 1, - anon_sym_DASH2, - STATE(3285), 1, + STATE(3329), 1, sym_comment, - ACTIONS(2234), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6414), 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, - [100541] = 12, + [102242] = 12, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1631), 1, sym__entry_separator, ACTIONS(1633), 1, - anon_sym_RBRACE, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_record, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, + anon_sym_RBRACK, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1776), 1, anon_sym_DOLLAR, - ACTIONS(6335), 1, + ACTIONS(6130), 1, + anon_sym_LPAREN2, + ACTIONS(6399), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6337), 1, + ACTIONS(6401), 1, aux_sym__immediate_decimal_token2, - STATE(3286), 1, + STATE(3330), 1, sym_comment, - STATE(4148), 1, + STATE(4265), 1, sym__immediate_decimal, - ACTIONS(6339), 2, + ACTIONS(6403), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4225), 2, + STATE(4398), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [100580] = 3, + [102281] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3287), 1, + STATE(3331), 1, sym_comment, - ACTIONS(5548), 12, - ts_builtin_sym_end, + ACTIONS(6416), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223141,13 +224776,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, - [100601] = 3, + anon_sym_RPAREN, + [102302] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3288), 1, + STATE(3332), 1, sym_comment, - ACTIONS(6103), 12, - ts_builtin_sym_end, + ACTIONS(6418), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223159,12 +224794,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, - [100622] = 3, + anon_sym_RPAREN, + [102323] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3289), 1, + STATE(3333), 1, sym_comment, - ACTIONS(6351), 12, + ACTIONS(4826), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223176,32 +224813,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, - [100643] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2154), 1, - anon_sym_DASH2, - STATE(3290), 1, - sym_comment, - ACTIONS(2152), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [100666] = 3, + [102344] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3291), 1, + STATE(3334), 1, sym_comment, - ACTIONS(6353), 12, + ACTIONS(6420), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223214,115 +224831,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100687] = 11, + [102365] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1582), 1, + ACTIONS(1643), 1, sym__space, - ACTIONS(3212), 1, + ACTIONS(3261), 1, anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(3659), 1, anon_sym_DOLLAR, - ACTIONS(6254), 1, + ACTIONS(6294), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6256), 1, + ACTIONS(6296), 1, aux_sym__immediate_decimal_token2, - STATE(2981), 1, + STATE(3049), 1, sym__immediate_decimal, - STATE(3292), 1, + STATE(3335), 1, sym_comment, - ACTIONS(1586), 2, + ACTIONS(1645), 2, sym__newline, anon_sym_SEMI, - ACTIONS(5866), 2, + ACTIONS(5941), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2979), 2, + STATE(3103), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [100724] = 8, + [102402] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6355), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(368), 1, - sym_cell_path, - STATE(3293), 1, + ACTIONS(1647), 1, + sym__space, + ACTIONS(3261), 1, + anon_sym_LPAREN2, + ACTIONS(3659), 1, + anon_sym_DOLLAR, + ACTIONS(6294), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6296), 1, + aux_sym__immediate_decimal_token2, + STATE(2986), 1, + sym__immediate_decimal, + STATE(3336), 1, sym_comment, - STATE(3378), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1434), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1432), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - [100755] = 3, + ACTIONS(1649), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(5941), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3095), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [102439] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3294), 1, + ACTIONS(6424), 1, + anon_sym_DASH2, + STATE(3337), 1, sym_comment, - ACTIONS(6357), 12, + ACTIONS(6422), 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, - [100776] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [102462] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3295), 1, + ACTIONS(6428), 1, + anon_sym_DASH2, + STATE(3338), 1, sym_comment, - ACTIONS(4803), 12, + ACTIONS(6426), 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, - [100797] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [102485] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3296), 1, + ACTIONS(5860), 1, + anon_sym_DASH2, + STATE(3339), 1, sym_comment, - ACTIONS(6359), 12, + ACTIONS(5858), 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, - [100818] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [102508] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3297), 1, + STATE(3340), 1, sym_comment, - ACTIONS(6361), 12, + ACTIONS(6430), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223335,33 +224958,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100839] = 6, + [102529] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6363), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6365), 1, + ACTIONS(6432), 1, + anon_sym_DOT, + ACTIONS(6434), 1, aux_sym__immediate_decimal_token5, - STATE(3298), 1, + STATE(3341), 1, sym_comment, - ACTIONS(747), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(739), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(749), 6, + sym__unquoted_pattern, + ACTIONS(741), 6, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [100866] = 3, + [102556] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3299), 1, + STATE(3342), 1, sym_comment, - ACTIONS(6367), 12, + ACTIONS(6436), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223374,14 +224997,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100887] = 4, + [102577] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6371), 1, + ACTIONS(2477), 1, anon_sym_DASH2, - STATE(3300), 1, + STATE(3343), 1, sym_comment, - ACTIONS(6369), 11, + ACTIONS(2475), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223393,13 +225016,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100910] = 3, + [102600] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3301), 1, + STATE(3344), 1, sym_comment, - ACTIONS(6161), 12, - ts_builtin_sym_end, + ACTIONS(6438), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223411,13 +225033,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, - [100931] = 3, + anon_sym_RPAREN, + [102621] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3302), 1, + STATE(3345), 1, sym_comment, - ACTIONS(6119), 12, - ts_builtin_sym_end, + ACTIONS(6440), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223429,13 +225051,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, - [100952] = 3, + anon_sym_RPAREN, + [102642] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3303), 1, + STATE(3346), 1, sym_comment, - ACTIONS(6207), 12, - ts_builtin_sym_end, + ACTIONS(6442), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223447,14 +225069,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, - [100973] = 4, + anon_sym_RPAREN, + [102663] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1607), 1, + sym__entry_separator, + ACTIONS(6238), 1, + anon_sym_DOLLAR, + ACTIONS(6240), 1, + anon_sym_LPAREN2, + ACTIONS(6242), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6244), 1, + aux_sym__immediate_decimal_token2, + STATE(3347), 1, + sym_comment, + STATE(4285), 1, + sym__immediate_decimal, + ACTIONS(1609), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6246), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4282), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [102700] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2240), 1, + ACTIONS(2465), 1, anon_sym_DASH2, - STATE(3304), 1, + STATE(3348), 1, sym_comment, - ACTIONS(2238), 11, + ACTIONS(2463), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223466,14 +225115,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100996] = 4, + [102723] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1643), 1, + sym__entry_separator, + ACTIONS(6238), 1, + anon_sym_DOLLAR, + ACTIONS(6240), 1, + anon_sym_LPAREN2, + ACTIONS(6242), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6244), 1, + aux_sym__immediate_decimal_token2, + STATE(3349), 1, + sym_comment, + STATE(4249), 1, + sym__immediate_decimal, + ACTIONS(1645), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6246), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4248), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [102760] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2244), 1, + ACTIONS(2138), 1, anon_sym_DASH2, - STATE(3305), 1, + STATE(3350), 1, sym_comment, - ACTIONS(2242), 11, + ACTIONS(2136), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223485,32 +225160,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [101019] = 5, - ACTIONS(3), 1, + [102783] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1960), 1, - anon_sym_DASH2, - ACTIONS(6373), 1, - sym__newline, - STATE(3306), 2, - aux_sym__repeat_newline, + ACTIONS(6444), 1, + anon_sym_DOT, + ACTIONS(6446), 1, + aux_sym__immediate_decimal_token5, + STATE(3351), 1, sym_comment, - ACTIONS(1955), 9, - anon_sym_EQ, - sym_identifier, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(739), 4, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [101044] = 3, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(741), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [102810] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3307), 1, + STATE(3352), 1, sym_comment, - ACTIONS(6376), 12, + ACTIONS(6250), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223522,13 +225199,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, - [101065] = 3, + [102831] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3308), 1, + STATE(3353), 1, sym_comment, - ACTIONS(6378), 12, + ACTIONS(6181), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223540,13 +225217,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, - [101086] = 3, + [102852] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3309), 1, + STATE(3354), 1, sym_comment, - ACTIONS(6380), 12, + ACTIONS(6448), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223559,13 +225235,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101107] = 3, + [102873] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3310), 1, + STATE(3355), 1, sym_comment, - ACTIONS(5885), 12, - ts_builtin_sym_end, + ACTIONS(6450), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223577,31 +225252,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, - [101128] = 3, + anon_sym_RPAREN, + [102894] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3311), 1, + ACTIONS(2351), 1, + anon_sym_DASH2, + STATE(3356), 1, sym_comment, - ACTIONS(6382), 12, + ACTIONS(2349), 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, - [101149] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [102917] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1647), 1, + sym__entry_separator, + ACTIONS(6238), 1, + anon_sym_DOLLAR, + ACTIONS(6240), 1, + anon_sym_LPAREN2, + ACTIONS(6242), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6244), 1, + aux_sym__immediate_decimal_token2, + STATE(3357), 1, + sym_comment, + STATE(4254), 1, + sym__immediate_decimal, + ACTIONS(1649), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6246), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4253), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [102954] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3312), 1, + STATE(3358), 1, sym_comment, - ACTIONS(6141), 12, - ts_builtin_sym_end, + ACTIONS(6452), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223613,12 +225315,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, - [101170] = 3, + anon_sym_RPAREN, + [102975] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3313), 1, + ACTIONS(2469), 1, + anon_sym_DASH2, + STATE(3359), 1, + sym_comment, + ACTIONS(2467), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [102998] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1651), 1, + sym__entry_separator, + ACTIONS(6238), 1, + anon_sym_DOLLAR, + ACTIONS(6240), 1, + anon_sym_LPAREN2, + ACTIONS(6242), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6244), 1, + aux_sym__immediate_decimal_token2, + STATE(3360), 1, sym_comment, - ACTIONS(6384), 12, + STATE(4256), 1, + sym__immediate_decimal, + ACTIONS(1653), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6246), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4255), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [103035] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3361), 1, + sym_comment, + ACTIONS(6454), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223631,14 +225379,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101191] = 4, + [103056] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6388), 1, + ACTIONS(2473), 1, anon_sym_DASH2, - STATE(3314), 1, + STATE(3362), 1, sym_comment, - ACTIONS(6386), 11, + ACTIONS(2471), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223650,12 +225398,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [101214] = 3, + [103079] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3315), 1, + STATE(3363), 1, sym_comment, - ACTIONS(6390), 12, + ACTIONS(6456), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223668,36 +225416,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101235] = 3, - ACTIONS(3), 1, + [103100] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3316), 1, + ACTIONS(6458), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6460), 1, + aux_sym__immediate_decimal_token5, + STATE(3364), 1, sym_comment, - ACTIONS(6392), 12, + ACTIONS(747), 4, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [101256] = 6, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [103127] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6023), 1, - sym__newline, - ACTIONS(6394), 1, - anon_sym_else, - STATE(3317), 1, + STATE(3365), 1, sym_comment, - STATE(3321), 1, - aux_sym__repeat_newline, - ACTIONS(6026), 9, + ACTIONS(6187), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223707,18 +225455,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, - [101283] = 6, + [103148] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6030), 1, - sym__newline, - ACTIONS(6396), 1, - anon_sym_else, - STATE(3318), 1, + STATE(3366), 1, sym_comment, - STATE(3322), 1, - aux_sym__repeat_newline, - ACTIONS(6033), 9, + ACTIONS(6462), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223728,81 +225472,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [101310] = 6, + anon_sym_RPAREN, + [103169] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5817), 1, - sym__newline, - ACTIONS(6398), 1, - anon_sym_else, - STATE(3319), 1, + ACTIONS(6466), 1, + anon_sym_DASH2, + STATE(3367), 1, sym_comment, - STATE(3323), 1, - aux_sym__repeat_newline, - ACTIONS(5820), 9, + ACTIONS(6464), 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, - [101337] = 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, + [103192] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1582), 1, + sym__entry_separator, + ACTIONS(1586), 1, + anon_sym_RBRACE, + ACTIONS(6128), 1, + anon_sym_DOLLAR, + ACTIONS(6130), 1, + anon_sym_LPAREN2, + ACTIONS(6191), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6193), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6468), 1, + anon_sym_DOT, + STATE(3368), 1, + sym_comment, + STATE(3929), 1, + sym__immediate_decimal, + ACTIONS(6195), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3788), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [103231] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5950), 1, - sym__newline, - ACTIONS(6400), 1, - anon_sym_else, - STATE(3320), 1, + ACTIONS(6472), 1, + anon_sym_DASH2, + STATE(3369), 1, sym_comment, - STATE(3324), 1, - aux_sym__repeat_newline, - ACTIONS(5953), 9, + ACTIONS(6470), 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, - [101364] = 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, + [103254] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5794), 1, - sym__newline, - ACTIONS(6402), 1, - anon_sym_else, - STATE(3321), 1, + ACTIONS(6476), 1, + anon_sym_DASH2, + STATE(3370), 1, sym_comment, - STATE(3325), 1, - aux_sym__repeat_newline, - ACTIONS(5797), 9, + ACTIONS(6474), 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, - [101391] = 6, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [103277] = 11, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5849), 1, + ACTIONS(1607), 1, + sym__space, + ACTIONS(3261), 1, + anon_sym_LPAREN2, + ACTIONS(3659), 1, + anon_sym_DOLLAR, + ACTIONS(6294), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6296), 1, + aux_sym__immediate_decimal_token2, + STATE(3078), 1, + sym__immediate_decimal, + STATE(3371), 1, + sym_comment, + ACTIONS(1609), 2, sym__newline, - ACTIONS(6404), 1, - anon_sym_else, - STATE(3322), 1, + anon_sym_SEMI, + ACTIONS(5941), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3114), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [103314] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3372), 1, sym_comment, - STATE(3326), 1, - aux_sym__repeat_newline, - ACTIONS(5852), 9, + ACTIONS(6478), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223812,81 +225600,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [101418] = 6, + anon_sym_RPAREN, + [103335] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(6406), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3323), 1, + ACTIONS(2100), 1, + anon_sym_DASH2, + STATE(3373), 1, sym_comment, - ACTIONS(1955), 9, + ACTIONS(2098), 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, - [101445] = 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, + [103358] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6482), 1, + anon_sym_DASH2, + STATE(3374), 1, + sym_comment, + ACTIONS(6480), 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, + [103381] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5998), 1, - sym__newline, - ACTIONS(6409), 1, - anon_sym_else, - STATE(3324), 1, + ACTIONS(2146), 1, + anon_sym_DASH2, + STATE(3375), 1, sym_comment, - STATE(3327), 1, - aux_sym__repeat_newline, - ACTIONS(6001), 9, + ACTIONS(2144), 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, - [101472] = 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, + [103404] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(6411), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3325), 1, + ACTIONS(2453), 1, + anon_sym_DASH2, + STATE(3376), 1, sym_comment, - ACTIONS(1955), 9, + ACTIONS(2451), 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, - [101499] = 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, + [103427] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(6414), 1, - anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3326), 1, + STATE(3377), 1, sym_comment, - ACTIONS(1955), 9, + ACTIONS(6207), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223896,18 +225695,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, - [101526] = 6, + [103448] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1957), 1, - sym__newline, - ACTIONS(6417), 1, + ACTIONS(6484), 1, anon_sym_else, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3327), 1, + STATE(3378), 1, sym_comment, - ACTIONS(1955), 9, + ACTIONS(6165), 11, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223917,14 +225714,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, - [101553] = 4, + [103471] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6422), 1, + ACTIONS(6488), 1, anon_sym_DASH2, - STATE(3328), 1, + STATE(3379), 1, sym_comment, - ACTIONS(6420), 11, + ACTIONS(6486), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223936,30 +225733,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [101576] = 3, + [103494] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3329), 1, + ACTIONS(6490), 1, + anon_sym_DOT, + ACTIONS(6492), 1, + aux_sym__immediate_decimal_token5, + STATE(3380), 1, sym_comment, - ACTIONS(6424), 12, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 8, + anon_sym_if, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [101597] = 3, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [103521] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3330), 1, + STATE(3381), 1, sym_comment, - ACTIONS(6426), 12, + ACTIONS(6494), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223972,38 +225772,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101618] = 11, + [103542] = 11, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1582), 1, + anon_sym_LBRACE, ACTIONS(1588), 1, anon_sym_LPAREN2, - ACTIONS(1596), 1, - anon_sym_LBRACE, - ACTIONS(1615), 1, + ACTIONS(1598), 1, sym__unquoted_pattern, - ACTIONS(2878), 1, + ACTIONS(2910), 1, anon_sym_DOLLAR, - ACTIONS(6428), 1, + ACTIONS(6496), 1, anon_sym_DOT, - STATE(3331), 1, + STATE(3382), 1, sym_comment, - STATE(3916), 1, + STATE(3994), 1, sym__immediate_decimal, - ACTIONS(6430), 2, + ACTIONS(6498), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6432), 2, + ACTIONS(6500), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4136), 2, + STATE(4148), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [101655] = 3, + [103579] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3332), 1, + ACTIONS(2343), 1, + anon_sym_DASH2, + STATE(3383), 1, + sym_comment, + ACTIONS(2341), 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, + [103602] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6504), 1, + anon_sym_DASH2, + STATE(3384), 1, + sym_comment, + ACTIONS(6502), 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, + [103625] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6508), 1, + anon_sym_DASH2, + STATE(3385), 1, + sym_comment, + ACTIONS(6506), 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, + [103648] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3386), 1, sym_comment, - ACTIONS(4791), 12, + ACTIONS(6510), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224016,12 +225873,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101676] = 3, + [103669] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3333), 1, + STATE(3387), 1, sym_comment, - ACTIONS(6434), 12, + ACTIONS(6512), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224034,12 +225891,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101697] = 3, + [103690] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3334), 1, + STATE(3388), 1, sym_comment, - ACTIONS(4783), 12, + ACTIONS(5626), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -224052,143 +225909,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, - [101718] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1582), 1, - sym__entry_separator, - ACTIONS(6069), 1, - anon_sym_DOLLAR, - ACTIONS(6071), 1, - anon_sym_LPAREN2, - ACTIONS(6073), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, - aux_sym__immediate_decimal_token2, - STATE(3335), 1, - sym_comment, - STATE(4188), 1, - sym__immediate_decimal, - ACTIONS(1586), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6077), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4187), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101755] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1667), 1, - sym__entry_separator, - ACTIONS(6069), 1, - anon_sym_DOLLAR, - ACTIONS(6071), 1, - anon_sym_LPAREN2, - ACTIONS(6073), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, - aux_sym__immediate_decimal_token2, - STATE(3336), 1, - sym_comment, - STATE(4218), 1, - sym__immediate_decimal, - ACTIONS(1669), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6077), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4216), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101792] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1671), 1, - sym__entry_separator, - ACTIONS(6069), 1, - anon_sym_DOLLAR, - ACTIONS(6071), 1, - anon_sym_LPAREN2, - ACTIONS(6073), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, - aux_sym__immediate_decimal_token2, - STATE(3337), 1, - sym_comment, - STATE(4221), 1, - sym__immediate_decimal, - ACTIONS(1673), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6077), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4367), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101829] = 11, - ACTIONS(103), 1, + [103711] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1675), 1, - sym__entry_separator, - ACTIONS(6069), 1, - anon_sym_DOLLAR, - ACTIONS(6071), 1, - anon_sym_LPAREN2, - ACTIONS(6073), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, - aux_sym__immediate_decimal_token2, - STATE(3338), 1, + ACTIONS(6516), 1, + anon_sym_DASH2, + STATE(3389), 1, sym_comment, - STATE(4224), 1, - sym__immediate_decimal, - ACTIONS(1677), 2, + ACTIONS(6514), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6077), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4222), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101866] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1776), 1, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(5841), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5843), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6220), 1, - anon_sym_DOLLAR2, - ACTIONS(6222), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(6436), 1, - anon_sym_RBRACK, - STATE(3339), 1, - sym_comment, - STATE(3603), 1, - sym__immediate_decimal, - ACTIONS(5845), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3860), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101905] = 3, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [103734] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3340), 1, + STATE(3390), 1, sym_comment, - ACTIONS(6438), 12, + ACTIONS(6518), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224201,12 +225946,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101926] = 3, + [103755] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3341), 1, + STATE(3391), 1, sym_comment, - ACTIONS(6440), 12, + ACTIONS(6520), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224219,41 +225964,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101947] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1631), 1, - sym__entry_separator, - ACTIONS(1633), 1, - anon_sym_RBRACK, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_list, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6442), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6444), 1, - aux_sym__immediate_decimal_token2, - STATE(3342), 1, - sym_comment, - STATE(4089), 1, - sym__immediate_decimal, - ACTIONS(6446), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4225), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101986] = 4, + [103776] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2200), 1, + ACTIONS(6524), 1, anon_sym_DASH2, - STATE(3343), 1, + STATE(3392), 1, sym_comment, - ACTIONS(2198), 11, + ACTIONS(6522), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -224265,60 +225983,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102009] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1598), 1, - anon_sym_RBRACE, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6047), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6049), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6448), 1, - anon_sym_DOT, - STATE(3344), 1, - sym_comment, - STATE(3887), 1, - sym__immediate_decimal, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3807), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [102048] = 4, + [103799] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2102), 1, - anon_sym_DASH2, - STATE(3345), 1, + STATE(3393), 1, sym_comment, - ACTIONS(2100), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6526), 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, - [102071] = 4, + [103820] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6450), 1, - anon_sym_else, - STATE(3346), 1, + STATE(3394), 1, sym_comment, - ACTIONS(6043), 11, + ACTIONS(6528), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224330,37 +226018,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, - [102094] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2078), 1, - anon_sym_DASH2, - STATE(3347), 1, - sym_comment, - ACTIONS(2076), 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, - [102117] = 6, + [103841] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6452), 1, + ACTIONS(6530), 1, anon_sym_DOT, - ACTIONS(6454), 1, + ACTIONS(6532), 1, aux_sym__immediate_decimal_token5, - STATE(3348), 1, + STATE(3395), 1, sym_comment, ACTIONS(739), 4, anon_sym_RBRACK, - anon_sym_DOT_DOT, + anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, ACTIONS(741), 6, @@ -224370,12 +226040,39 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [102144] = 3, + [103868] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1631), 1, + sym__entry_separator, + ACTIONS(1633), 1, + anon_sym_RBRACE, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_record, + ACTIONS(1776), 1, + anon_sym_DOLLAR, + ACTIONS(6130), 1, + anon_sym_LPAREN2, + ACTIONS(6339), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6341), 1, + aux_sym__immediate_decimal_token2, + STATE(3396), 1, + sym_comment, + STATE(4232), 1, + sym__immediate_decimal, + ACTIONS(6343), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4398), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [103907] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3349), 1, + STATE(3397), 1, sym_comment, - ACTIONS(6456), 12, + ACTIONS(6534), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224388,35 +226085,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [102165] = 6, - ACTIONS(103), 1, + [103928] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6458), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6460), 1, - aux_sym__immediate_decimal_token5, - STATE(3350), 1, + STATE(3398), 1, sym_comment, - ACTIONS(747), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(749), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [102192] = 4, + ACTIONS(6536), 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, + [103949] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3399), 1, + sym_comment, + ACTIONS(6538), 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, + [103970] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2122), 1, + ACTIONS(2457), 1, anon_sym_DASH2, - STATE(3351), 1, + STATE(3400), 1, sym_comment, - ACTIONS(2120), 11, + ACTIONS(2455), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -224428,12 +226140,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102215] = 3, + [103993] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3352), 1, + STATE(3401), 1, sym_comment, - ACTIONS(6462), 12, + ACTIONS(6540), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224446,39 +226158,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [102236] = 12, + [104014] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1596), 1, + ACTIONS(1607), 1, sym__entry_separator, - ACTIONS(1598), 1, - anon_sym_RBRACK, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, + ACTIONS(1776), 1, anon_sym_DOLLAR, - ACTIONS(6442), 1, + ACTIONS(6130), 1, + anon_sym_LPAREN2, + ACTIONS(6304), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6444), 1, + ACTIONS(6306), 1, aux_sym__immediate_decimal_token2, - STATE(3353), 1, + STATE(3402), 1, sym_comment, - STATE(4272), 1, + STATE(4285), 1, sym__immediate_decimal, - ACTIONS(6446), 2, + ACTIONS(1609), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6195), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4191), 2, + STATE(4282), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [102275] = 3, + [104051] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3354), 1, + STATE(3403), 1, sym_comment, - ACTIONS(6464), 12, + ACTIONS(6248), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224490,79 +226202,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [102296] = 9, + [104072] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(73), 1, - aux_sym_expr_unary_token1, - ACTIONS(1649), 1, + ACTIONS(1582), 1, + anon_sym_LBRACE, + ACTIONS(1588), 1, + anon_sym_LPAREN2, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2910), 1, anon_sym_DOLLAR, - ACTIONS(4815), 1, - anon_sym_LPAREN, - ACTIONS(4819), 1, - anon_sym_DASH2, - STATE(1294), 1, - sym__expr_unary_minus, - STATE(3355), 1, + STATE(3404), 1, sym_comment, - ACTIONS(2174), 2, - anon_sym_true, - anon_sym_false, - STATE(1305), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, + STATE(4729), 1, + sym__immediate_decimal, + ACTIONS(6542), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6544), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(809), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - [102328] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2098), 1, - anon_sym_DASH2, - STATE(3356), 1, - sym_comment, - ACTIONS(2096), 10, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [102350] = 11, + [104106] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, + ACTIONS(1582), 1, sym__entry_separator, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6466), 1, + ACTIONS(1586), 1, + anon_sym_RBRACE, + ACTIONS(1776), 1, + anon_sym_DOLLAR, + ACTIONS(6130), 1, anon_sym_LPAREN2, - ACTIONS(6468), 1, - anon_sym_DOT_DOT2, - ACTIONS(6472), 1, - sym_filesize_unit, - ACTIONS(6474), 1, - sym_duration_unit, - STATE(3357), 1, + ACTIONS(6304), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6306), 1, + aux_sym__immediate_decimal_token2, + STATE(3405), 1, sym_comment, - STATE(4723), 1, + STATE(4753), 1, + sym__immediate_decimal, + ACTIONS(6195), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4294), 2, sym__expr_parenthesized_immediate, - ACTIONS(868), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6470), 2, + sym_val_variable, + [104142] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6434), 1, + aux_sym__immediate_decimal_token5, + STATE(3406), 1, + sym_comment, + ACTIONS(739), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 6, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [102386] = 5, + sym_filesize_unit, + sym_duration_unit, + [104166] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6476), 1, + ACTIONS(6546), 1, aux_sym__immediate_decimal_token5, - STATE(3358), 1, + STATE(3407), 1, sym_comment, ACTIONS(771), 4, sym__newline, @@ -224576,41 +226289,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [102410] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2764), 1, - aux_sym_expr_unary_token1, - ACTIONS(4819), 1, - anon_sym_DASH2, - ACTIONS(4832), 1, - anon_sym_DOLLAR, - ACTIONS(5168), 1, - anon_sym_LPAREN, - STATE(1294), 1, - sym__expr_unary_minus, - STATE(3359), 1, - sym_comment, - ACTIONS(2174), 2, - anon_sym_true, - anon_sym_false, - STATE(1305), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [102442] = 5, + [104190] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6343), 1, + ACTIONS(6548), 1, + anon_sym_DOT, + ACTIONS(6550), 1, aux_sym__immediate_decimal_token5, - STATE(3360), 1, + STATE(3408), 1, sym_comment, - ACTIONS(739), 4, - anon_sym_RBRACK, + ACTIONS(739), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, + sym__unquoted_pattern_in_record, ACTIONS(741), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, @@ -224618,83 +226309,59 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [102466] = 10, - ACTIONS(3), 1, + [104216] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1631), 1, - anon_sym_LBRACE, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(3361), 1, - sym_comment, - STATE(4790), 1, - sym__immediate_decimal, - ACTIONS(6478), 2, + ACTIONS(6552), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6480), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(742), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [102500] = 6, + ACTIONS(6554), 1, + aux_sym__immediate_decimal_token5, + STATE(3409), 1, + sym_comment, + ACTIONS(747), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(749), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [104242] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6482), 1, + ACTIONS(6556), 1, anon_sym_DOT, - ACTIONS(6484), 1, + ACTIONS(6558), 1, aux_sym__immediate_decimal_token5, - STATE(3362), 1, + STATE(3410), 1, sym_comment, ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, ACTIONS(741), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [102526] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5334), 1, - anon_sym_DASH2, - STATE(3363), 1, - sym_comment, - STATE(3371), 1, - aux_sym_parameter_repeat2, - ACTIONS(1494), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(5332), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [102552] = 6, + [104268] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6486), 1, - anon_sym_DOT, - ACTIONS(6488), 1, + ACTIONS(6560), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6562), 1, aux_sym__immediate_decimal_token5, - STATE(3364), 1, + STATE(3411), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(747), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 7, + ACTIONS(749), 7, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, @@ -224702,82 +226369,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [102578] = 5, + [104294] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3365), 1, + ACTIONS(1588), 1, + anon_sym_LPAREN2, + ACTIONS(1631), 1, + anon_sym_LBRACE, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2910), 1, + anon_sym_DOLLAR, + STATE(3412), 1, sym_comment, - ACTIONS(2531), 9, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [102602] = 11, + STATE(4667), 1, + sym__immediate_decimal, + ACTIONS(6542), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6544), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(846), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [104328] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - ACTIONS(1752), 1, + ACTIONS(1631), 1, + sym__entry_separator, + ACTIONS(1633), 1, + anon_sym_RBRACE, + ACTIONS(1776), 1, + anon_sym_DOLLAR, + ACTIONS(6130), 1, anon_sym_LPAREN2, - ACTIONS(4969), 1, - sym__unquoted_pattern, - ACTIONS(6490), 1, + ACTIONS(6304), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6306), 1, + aux_sym__immediate_decimal_token2, + STATE(3413), 1, + sym_comment, + STATE(4690), 1, + sym__immediate_decimal, + ACTIONS(6195), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4398), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [104364] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6446), 1, + aux_sym__immediate_decimal_token5, + STATE(3414), 1, + sym_comment, + ACTIONS(739), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - ACTIONS(6494), 1, + sym__unquoted_pattern_in_list, + ACTIONS(741), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, - ACTIONS(6496), 1, sym_duration_unit, - STATE(3366), 1, + sym__entry_separator, + [104388] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6564), 1, + aux_sym__immediate_decimal_token5, + STATE(3415), 1, sym_comment, - STATE(4626), 1, - sym__expr_parenthesized_immediate, - ACTIONS(868), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6492), 2, + ACTIONS(771), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(773), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [102638] = 6, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [104412] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6500), 1, - anon_sym_DASH2, - STATE(3367), 1, + ACTIONS(6566), 1, + anon_sym_DOT, + ACTIONS(6568), 1, + aux_sym__immediate_decimal_token5, + STATE(3416), 1, sym_comment, - STATE(3371), 1, - aux_sym_parameter_repeat2, - ACTIONS(1494), 2, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 7, sym__newline, - anon_sym_COMMA, - ACTIONS(6498), 7, - sym_identifier, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [102664] = 5, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [104438] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6502), 1, + ACTIONS(6570), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6572), 1, aux_sym__immediate_decimal_token5, - STATE(3368), 1, + STATE(3417), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(747), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 8, - anon_sym_if, + ACTIONS(749), 7, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, @@ -224785,59 +226496,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [102688] = 8, + [104464] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6355), 1, + ACTIONS(6574), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(367), 1, sym_path, - STATE(3369), 1, + STATE(3418), 1, sym_comment, - STATE(3378), 1, + STATE(3536), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3663), 1, + STATE(3699), 1, sym_cell_path, - ACTIONS(1641), 3, + ACTIONS(1655), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1643), 4, + ACTIONS(1657), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - [102718] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6504), 1, - aux_sym__immediate_decimal_token5, - STATE(3370), 1, - sym_comment, - ACTIONS(771), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(773), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [102742] = 5, + [104494] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6511), 1, + ACTIONS(6581), 1, anon_sym_DASH2, - ACTIONS(6508), 2, + ACTIONS(6578), 2, sym__newline, anon_sym_COMMA, - STATE(3371), 2, + STATE(3419), 2, sym_comment, aux_sym_parameter_repeat2, - ACTIONS(6506), 7, + ACTIONS(6576), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -224845,30 +226537,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102766] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3372), 1, - sym_comment, - ACTIONS(1480), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1478), 8, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [102788] = 5, + [104518] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6282), 1, + ACTIONS(6492), 1, aux_sym__immediate_decimal_token5, - STATE(3373), 1, + STATE(3420), 1, sym_comment, ACTIONS(739), 2, anon_sym_DOT_DOT2, @@ -224882,217 +226556,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [102812] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5378), 1, - anon_sym_DASH2, - STATE(3371), 1, - aux_sym_parameter_repeat2, - STATE(3374), 1, - sym_comment, - ACTIONS(1494), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(5376), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [102838] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1582), 1, - anon_sym_LBRACE, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(3375), 1, - sym_comment, - STATE(4135), 1, - sym__immediate_decimal, - ACTIONS(6430), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6432), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4134), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [102872] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3376), 1, - sym_comment, - ACTIONS(1545), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1543), 8, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [102894] = 4, + [104542] = 11, ACTIONS(103), 1, anon_sym_POUND, - STATE(3377), 1, - sym_comment, - ACTIONS(1468), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1466), 8, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, + ACTIONS(890), 1, + sym__space, + ACTIONS(1756), 1, + anon_sym_LPAREN2, + ACTIONS(5150), 1, + sym__unquoted_pattern, + ACTIONS(6583), 1, anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [102916] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6355), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3378), 1, + ACTIONS(6587), 1, + sym_filesize_unit, + ACTIONS(6589), 1, + sym_duration_unit, + STATE(3421), 1, sym_comment, - STATE(3380), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1460), 3, + STATE(4723), 1, + sym__expr_parenthesized_immediate, + ACTIONS(793), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6585), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1458), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - [102944] = 4, + [104578] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(3379), 1, + ACTIONS(6532), 1, + aux_sym__immediate_decimal_token5, + STATE(3422), 1, sym_comment, - ACTIONS(1472), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1470), 8, + ACTIONS(739), 4, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [102966] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6513), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3380), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 3, + sym__unquoted_pattern_in_list, + ACTIONS(741), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - ACTIONS(1524), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - [102992] = 9, + [104602] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(173), 1, aux_sym_expr_unary_token1, ACTIONS(1584), 1, anon_sym_DOLLAR, - ACTIONS(4795), 1, + ACTIONS(4838), 1, anon_sym_LPAREN, - ACTIONS(4797), 1, + ACTIONS(4840), 1, anon_sym_DASH2, - STATE(945), 1, + STATE(958), 1, sym__expr_unary_minus, - STATE(3381), 1, + STATE(3423), 1, sym_comment, - ACTIONS(1937), 2, + ACTIONS(1914), 2, anon_sym_true, anon_sym_false, - STATE(953), 4, + STATE(948), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [103024] = 4, + [104634] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(3382), 1, + ACTIONS(6574), 1, + anon_sym_DOT2, + STATE(367), 1, + sym_path, + STATE(374), 1, + sym_cell_path, + STATE(3424), 1, sym_comment, - ACTIONS(1476), 3, + STATE(3536), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1434), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1474), 8, + ACTIONS(1432), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [103046] = 4, + [104664] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2112), 1, + anon_sym_DASH2, + STATE(3425), 1, + sym_comment, + ACTIONS(2110), 10, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104686] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(3383), 1, + ACTIONS(6591), 1, + aux_sym__immediate_decimal_token5, + STATE(3426), 1, sym_comment, - ACTIONS(1516), 3, + ACTIONS(771), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(773), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - ACTIONS(1514), 8, + [104710] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6595), 1, + anon_sym_DASH2, + STATE(3419), 1, + aux_sym_parameter_repeat2, + STATE(3427), 1, + sym_comment, + ACTIONS(1474), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(6593), 7, + sym_identifier, + anon_sym_PIPE, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [103068] = 6, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104736] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5508), 1, + anon_sym_DASH2, + STATE(3419), 1, + aux_sym_parameter_repeat2, + STATE(3428), 1, + sym_comment, + ACTIONS(1474), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(5506), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104762] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6518), 1, + ACTIONS(6599), 1, anon_sym_DASH2, - STATE(3371), 1, + STATE(3419), 1, aux_sym_parameter_repeat2, - STATE(3384), 1, + STATE(3429), 1, sym_comment, - ACTIONS(1494), 2, + ACTIONS(1474), 2, sym__newline, anon_sym_COMMA, - ACTIONS(6516), 7, + ACTIONS(6597), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -225100,154 +226742,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [103094] = 10, - ACTIONS(3), 1, + [104788] = 11, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(890), 1, + sym__entry_separator, + ACTIONS(6335), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6601), 1, anon_sym_LPAREN2, - ACTIONS(1596), 1, - anon_sym_LBRACE, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(3385), 1, + ACTIONS(6603), 1, + anon_sym_DOT_DOT2, + ACTIONS(6607), 1, + sym_filesize_unit, + ACTIONS(6609), 1, + sym_duration_unit, + STATE(3430), 1, sym_comment, - STATE(4788), 1, - sym__immediate_decimal, - ACTIONS(6478), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6480), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(723), 2, + STATE(4734), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - [103128] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6355), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3378), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3386), 1, - sym_comment, - STATE(3661), 1, - sym_cell_path, - ACTIONS(1679), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1681), 4, + ACTIONS(793), 2, anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [103158] = 11, - ACTIONS(103), 1, + ACTIONS(6605), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [104824] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1596), 1, - sym__entry_separator, - ACTIONS(1598), 1, - anon_sym_RBRACE, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6250), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6252), 1, - aux_sym__immediate_decimal_token2, - STATE(3387), 1, + ACTIONS(2834), 1, + sym__newline, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(3431), 1, sym_comment, - STATE(4699), 1, - sym__immediate_decimal, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4191), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [103194] = 5, - ACTIONS(103), 1, + ACTIONS(2523), 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, + [104848] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6321), 1, + ACTIONS(6611), 1, aux_sym__immediate_decimal_token5, - STATE(3388), 1, + STATE(3432), 1, sym_comment, - ACTIONS(739), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(771), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 6, - sym__space, - anon_sym_LPAREN2, + ACTIONS(773), 8, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [103218] = 11, - ACTIONS(103), 1, + [104872] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1631), 1, - sym__entry_separator, - ACTIONS(1633), 1, - anon_sym_RBRACE, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, + ACTIONS(1774), 1, + anon_sym_LPAREN, + ACTIONS(2756), 1, + aux_sym_expr_unary_token1, + ACTIONS(2910), 1, anon_sym_DOLLAR, - ACTIONS(6250), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6252), 1, - aux_sym__immediate_decimal_token2, - STATE(3389), 1, + ACTIONS(4840), 1, + anon_sym_DASH2, + STATE(958), 1, + sym__expr_unary_minus, + STATE(3433), 1, sym_comment, - STATE(4741), 1, - sym__immediate_decimal, - ACTIONS(6051), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4225), 2, - sym__expr_parenthesized_immediate, + ACTIONS(1914), 2, + anon_sym_true, + anon_sym_false, + STATE(948), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, sym_val_variable, - [103254] = 6, + [104904] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6520), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6522), 1, - aux_sym__immediate_decimal_token5, - STATE(3390), 1, + ACTIONS(5452), 1, + anon_sym_DASH2, + STATE(3419), 1, + aux_sym_parameter_repeat2, + STATE(3434), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 7, + ACTIONS(1474), 2, sym__newline, + anon_sym_COMMA, + ACTIONS(5450), 7, + sym_identifier, anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [103280] = 6, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104930] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5318), 1, + ACTIONS(5466), 1, anon_sym_DASH2, - STATE(3371), 1, + STATE(3419), 1, aux_sym_parameter_repeat2, - STATE(3391), 1, + STATE(3435), 1, sym_comment, - ACTIONS(1494), 2, + ACTIONS(1474), 2, sym__newline, anon_sym_COMMA, - ACTIONS(5316), 7, + ACTIONS(5464), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -225255,62 +226868,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [103306] = 6, - ACTIONS(103), 1, + [104956] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6524), 1, - anon_sym_DOT, - ACTIONS(6526), 1, - aux_sym__immediate_decimal_token5, - STATE(3392), 1, + ACTIONS(73), 1, + aux_sym_expr_unary_token1, + ACTIONS(1671), 1, + anon_sym_DOLLAR, + ACTIONS(4858), 1, + anon_sym_LPAREN, + ACTIONS(4862), 1, + anon_sym_DASH2, + STATE(1279), 1, + sym__expr_unary_minus, + STATE(3436), 1, sym_comment, - ACTIONS(739), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(741), 6, + ACTIONS(2172), 2, + anon_sym_true, + anon_sym_false, + STATE(1301), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [104988] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1588), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [103332] = 9, + ACTIONS(1607), 1, + anon_sym_LBRACE, + ACTIONS(1611), 1, + anon_sym_DOT, + ACTIONS(2910), 1, + anon_sym_DOLLAR, + STATE(3437), 1, + sym_comment, + STATE(4147), 1, + sym__immediate_decimal, + ACTIONS(6498), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6500), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4146), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105022] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1774), 1, + ACTIONS(1584), 1, + anon_sym_DOLLAR, + ACTIONS(2435), 1, + aux_sym_expr_unary_token1, + ACTIONS(4838), 1, anon_sym_LPAREN, - ACTIONS(2690), 1, + ACTIONS(4840), 1, + anon_sym_DASH2, + STATE(958), 1, + sym__expr_unary_minus, + STATE(3438), 1, + sym_comment, + ACTIONS(2427), 2, + anon_sym_true, + anon_sym_false, + STATE(948), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [105054] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2724), 1, aux_sym_expr_unary_token1, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - ACTIONS(4797), 1, + ACTIONS(4862), 1, anon_sym_DASH2, - STATE(945), 1, + ACTIONS(4885), 1, + anon_sym_DOLLAR, + ACTIONS(5340), 1, + anon_sym_LPAREN, + STATE(1279), 1, sym__expr_unary_minus, - STATE(3393), 1, + STATE(3439), 1, sym_comment, - ACTIONS(1937), 2, + ACTIONS(2172), 2, anon_sym_true, anon_sym_false, - STATE(953), 4, + STATE(1301), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [103364] = 6, + [105086] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6530), 1, + ACTIONS(6615), 1, anon_sym_DASH2, - STATE(3371), 1, + STATE(3419), 1, aux_sym_parameter_repeat2, - STATE(3394), 1, + STATE(3440), 1, sym_comment, - ACTIONS(1494), 2, + ACTIONS(1474), 2, sym__newline, anon_sym_COMMA, - ACTIONS(6528), 7, + ACTIONS(6613), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -225318,14 +226981,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [103390] = 4, + [105112] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6532), 1, + ACTIONS(6617), 1, anon_sym_else, - STATE(3395), 1, + STATE(3441), 1, sym_comment, - ACTIONS(6043), 10, + ACTIONS(6165), 10, sym__newline, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -225336,100 +226999,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [103412] = 9, - ACTIONS(3), 1, + [105134] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2406), 1, - aux_sym_expr_unary_token1, - ACTIONS(4795), 1, - anon_sym_LPAREN, - ACTIONS(4797), 1, - anon_sym_DASH2, - STATE(945), 1, - sym__expr_unary_minus, - STATE(3396), 1, + ACTIONS(6574), 1, + anon_sym_DOT2, + STATE(367), 1, + sym_path, + STATE(3442), 1, sym_comment, - ACTIONS(2398), 2, - anon_sym_true, - anon_sym_false, - STATE(953), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [103444] = 6, + STATE(3536), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3720), 1, + sym_cell_path, + ACTIONS(1661), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1663), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [105164] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6534), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6536), 1, - aux_sym__immediate_decimal_token5, - STATE(3397), 1, - sym_comment, - ACTIONS(747), 3, + ACTIONS(793), 1, anon_sym_RBRACE, + ACTIONS(890), 1, + sym__entry_separator, + ACTIONS(5237), 1, + anon_sym_LPAREN2, + ACTIONS(6619), 1, anon_sym_DOT_DOT2, + ACTIONS(6623), 1, + sym_filesize_unit, + ACTIONS(6625), 1, + sym_duration_unit, + ACTIONS(6627), 1, sym__unquoted_pattern_in_record, - ACTIONS(749), 6, - anon_sym_LPAREN2, + STATE(3443), 1, + sym_comment, + STATE(4662), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6621), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [105199] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6629), 1, + aux_sym__immediate_decimal_token5, + STATE(3444), 1, + sym_comment, + ACTIONS(771), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(773), 7, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [103470] = 5, + [105222] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6454), 1, + ACTIONS(6631), 1, + anon_sym_DOT, + ACTIONS(6633), 1, aux_sym__immediate_decimal_token5, - STATE(3398), 1, + STATE(3445), 1, sym_comment, - ACTIONS(739), 4, + ACTIONS(1728), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1730), 4, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - ACTIONS(741), 6, - anon_sym_LPAREN2, + [105247] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6558), 1, + aux_sym__immediate_decimal_token5, + STATE(3446), 1, + sym_comment, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [103494] = 5, + [105270] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6538), 1, - aux_sym__immediate_decimal_token5, - STATE(3399), 1, + STATE(3447), 1, sym_comment, ACTIONS(771), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, + sym__unquoted_pattern, ACTIONS(773), 6, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, + [105291] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1450), 1, + anon_sym_BANG, + STATE(3448), 1, + sym_comment, + ACTIONS(1448), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - [103518] = 6, + ACTIONS(1446), 6, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + anon_sym_DOT2, + [105314] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3449), 1, + sym_comment, + ACTIONS(874), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(876), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [105335] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6540), 1, + ACTIONS(1588), 1, + anon_sym_LPAREN2, + ACTIONS(1643), 1, + anon_sym_LBRACE, + ACTIONS(2910), 1, + anon_sym_DOLLAR, + STATE(841), 1, + sym__immediate_decimal, + STATE(3450), 1, + sym_comment, + ACTIONS(6500), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6635), 2, aux_sym__immediate_decimal_token1, - ACTIONS(6542), 1, + aux_sym__immediate_decimal_token2, + STATE(840), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105366] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6637), 1, aux_sym__immediate_decimal_token5, - STATE(3400), 1, + STATE(3451), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(771), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 7, + ACTIONS(773), 7, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, @@ -225437,498 +227192,363 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [103544] = 10, + [105389] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6069), 1, - anon_sym_DOLLAR, - ACTIONS(6071), 1, + ACTIONS(3309), 1, anon_sym_LPAREN2, - ACTIONS(6073), 1, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + ACTIONS(4950), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6075), 1, + ACTIONS(4952), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6222), 1, - aux_sym__unquoted_in_list_token2, - STATE(3401), 1, - sym_comment, - STATE(4014), 1, + ACTIONS(5191), 1, + aux_sym_unquoted_token2, + STATE(2590), 1, sym__immediate_decimal, - ACTIONS(6077), 2, + STATE(3452), 1, + sym_comment, + ACTIONS(4954), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4155), 2, + STATE(2827), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103577] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(6544), 1, - anon_sym_DQUOTE, - ACTIONS(6546), 1, - anon_sym_SQUOTE, - ACTIONS(6548), 1, - anon_sym_BQUOTE, - ACTIONS(6550), 1, - aux_sym_path_token1, - STATE(2374), 1, - sym_val_string, - STATE(3402), 1, - sym_comment, - STATE(2228), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [103608] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(6552), 1, - anon_sym_DQUOTE, - ACTIONS(6554), 1, - anon_sym_SQUOTE, - ACTIONS(6556), 1, - anon_sym_BQUOTE, - ACTIONS(6558), 1, - aux_sym_path_token1, - STATE(3403), 1, - sym_comment, - STATE(3610), 1, - sym_val_string, - STATE(3505), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [103639] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6560), 1, - anon_sym_DQUOTE, - ACTIONS(6562), 1, - anon_sym_SQUOTE, - ACTIONS(6564), 1, - anon_sym_BQUOTE, - ACTIONS(6566), 1, - aux_sym_path_token1, - ACTIONS(6568), 1, - sym_raw_string_begin, - STATE(336), 1, - sym_val_string, - STATE(3404), 1, - sym_comment, - STATE(365), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [103670] = 10, + [105422] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(3309), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, - aux_sym_unquoted_token2, - ACTIONS(5164), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR, - ACTIONS(5743), 1, + ACTIONS(4980), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6570), 1, + ACTIONS(4982), 1, aux_sym__immediate_decimal_token2, - STATE(3405), 1, - sym_comment, - STATE(3600), 1, + ACTIONS(5191), 1, + aux_sym_unquoted_token2, + STATE(2911), 1, sym__immediate_decimal, - ACTIONS(6572), 2, + STATE(3453), 1, + sym_comment, + ACTIONS(4984), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3625), 2, + STATE(3151), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103703] = 10, + [105455] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - aux_sym_unquoted_token2, - ACTIONS(5164), 1, + ACTIONS(6128), 1, anon_sym_DOLLAR, - ACTIONS(5934), 1, + ACTIONS(6130), 1, + anon_sym_LPAREN2, + ACTIONS(6134), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6574), 1, + ACTIONS(6136), 1, aux_sym__immediate_decimal_token2, - STATE(3406), 1, + ACTIONS(6335), 1, + aux_sym__unquoted_in_list_token2, + STATE(3454), 1, sym_comment, - STATE(4042), 1, + STATE(3632), 1, sym__immediate_decimal, - ACTIONS(6576), 2, + ACTIONS(6138), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(3889), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103736] = 4, + [105488] = 10, ACTIONS(103), 1, anon_sym_POUND, - STATE(3407), 1, - sym_comment, - ACTIONS(771), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 6, - sym__space, + ACTIONS(6238), 1, + anon_sym_DOLLAR, + ACTIONS(6240), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [103757] = 9, + ACTIONS(6242), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6244), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6335), 1, + aux_sym__unquoted_in_list_token2, + STATE(3455), 1, + sym_comment, + STATE(4053), 1, + sym__immediate_decimal, + ACTIONS(6246), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4377), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105521] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6578), 1, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(6639), 1, anon_sym_DQUOTE, - ACTIONS(6580), 1, + ACTIONS(6641), 1, anon_sym_SQUOTE, - ACTIONS(6582), 1, + ACTIONS(6643), 1, anon_sym_BQUOTE, - ACTIONS(6584), 1, + ACTIONS(6645), 1, aux_sym_path_token1, - ACTIONS(6586), 1, - sym_raw_string_begin, - STATE(374), 1, + STATE(408), 1, sym_val_string, - STATE(3408), 1, + STATE(3456), 1, sym_comment, - STATE(391), 4, + STATE(422), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [103788] = 10, - ACTIONS(103), 1, + [105552] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(1588), 1, anon_sym_LPAREN2, - ACTIONS(6047), 1, + ACTIONS(1647), 1, + anon_sym_LBRACE, + ACTIONS(2910), 1, + anon_sym_DOLLAR, + STATE(843), 1, + sym__immediate_decimal, + STATE(3457), 1, + sym_comment, + ACTIONS(6500), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6635), 2, aux_sym__immediate_decimal_token1, - ACTIONS(6049), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6222), 1, - aux_sym__unquoted_in_list_token2, - STATE(3409), 1, + STATE(842), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105583] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3458), 1, sym_comment, - STATE(3719), 1, + ACTIONS(747), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(749), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [105604] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1588), 1, + anon_sym_LPAREN2, + ACTIONS(1651), 1, + anon_sym_LBRACE, + ACTIONS(2910), 1, + anon_sym_DOLLAR, + STATE(845), 1, sym__immediate_decimal, - ACTIONS(6051), 2, + STATE(3459), 1, + sym_comment, + ACTIONS(6500), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3780), 2, + ACTIONS(6635), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(844), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103821] = 10, + [105635] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5837), 1, + ACTIONS(1588), 1, anon_sym_LPAREN2, - ACTIONS(6222), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(6248), 1, + ACTIONS(1766), 1, + aux_sym_unquoted_token2, + ACTIONS(5292), 1, anon_sym_DOLLAR, - ACTIONS(6442), 1, + ACTIONS(6498), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6444), 1, + ACTIONS(6647), 1, aux_sym__immediate_decimal_token2, - STATE(3410), 1, + STATE(3460), 1, sym_comment, - STATE(4359), 1, + STATE(4040), 1, sym__immediate_decimal, - ACTIONS(6446), 2, + ACTIONS(6649), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4155), 2, + STATE(4128), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103854] = 10, + [105668] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1588), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1766), 1, aux_sym_unquoted_token2, - ACTIONS(5164), 1, + ACTIONS(5292), 1, anon_sym_DOLLAR, - ACTIONS(6478), 1, + ACTIONS(6542), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, + ACTIONS(6651), 1, aux_sym__immediate_decimal_token2, - STATE(3411), 1, + STATE(3461), 1, sym_comment, - STATE(4668), 1, + STATE(4736), 1, sym__immediate_decimal, - ACTIONS(6590), 2, + ACTIONS(6653), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(715), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103887] = 5, + [105701] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6655), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6657), 1, + aux_sym__immediate_decimal_token5, + STATE(3462), 1, + sym_comment, + ACTIONS(1738), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1740), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [105726] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6659), 1, + anon_sym_DOT, + ACTIONS(6661), 1, aux_sym__immediate_decimal_token5, - STATE(3412), 1, + STATE(3463), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(1730), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 7, + ACTIONS(1728), 6, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [103910] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6592), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6594), 1, - aux_sym__immediate_decimal_token5, - STATE(3413), 1, - sym_comment, - ACTIONS(1726), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [103935] = 4, + [105751] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3414), 1, + STATE(3464), 1, sym_comment, - ACTIONS(849), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(771), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(851), 6, - sym__space, + sym__unquoted_pattern_in_list, + ACTIONS(773), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [103956] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(6596), 1, - anon_sym_DQUOTE, - ACTIONS(6598), 1, - anon_sym_SQUOTE, - ACTIONS(6600), 1, - anon_sym_BQUOTE, - ACTIONS(6602), 1, - aux_sym_path_token1, - STATE(406), 1, - sym_val_string, - STATE(3415), 1, - sym_comment, - STATE(415), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [103987] = 6, + sym__entry_separator, + [105772] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6604), 1, - anon_sym_DOT, - ACTIONS(6606), 1, + ACTIONS(6550), 1, aux_sym__immediate_decimal_token5, - STATE(3416), 1, + STATE(3465), 1, sym_comment, - ACTIONS(1736), 4, + ACTIONS(739), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(741), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - ACTIONS(1738), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [104012] = 4, - ACTIONS(3), 1, + [105795] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6299), 1, - anon_sym_DASH2, - STATE(3417), 1, + STATE(3466), 1, sym_comment, - ACTIONS(4376), 9, - sym_identifier, - sym__newline, - anon_sym_PIPE, + ACTIONS(874), 4, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [104033] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(868), 1, anon_sym_RBRACE, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(6608), 1, - anon_sym_DOT_DOT2, - ACTIONS(6612), 1, - sym_filesize_unit, - ACTIONS(6614), 1, - sym_duration_unit, - ACTIONS(6616), 1, - sym__unquoted_pattern_in_record, - STATE(3418), 1, - sym_comment, - STATE(4637), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6610), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [104068] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6488), 1, - aux_sym__immediate_decimal_token5, - STATE(3419), 1, - sym_comment, - ACTIONS(739), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + sym__unquoted_pattern_in_list, + ACTIONS(876), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [104091] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4969), 1, - aux_sym_unquoted_token2, - ACTIONS(5862), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5864), 1, - aux_sym__immediate_decimal_token2, - STATE(3420), 1, - sym_comment, - STATE(3608), 1, - sym__immediate_decimal, - ACTIONS(5866), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3852), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [104124] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, - anon_sym_DOLLAR, - ACTIONS(4969), 1, - aux_sym_unquoted_token2, - ACTIONS(6055), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6057), 1, - aux_sym__immediate_decimal_token2, - STATE(3421), 1, - sym_comment, - STATE(3997), 1, - sym__immediate_decimal, - ACTIONS(6059), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2930), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [104157] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3022), 1, - sym_raw_string_begin, - ACTIONS(6550), 1, - aux_sym_path_token1, - ACTIONS(6618), 1, - anon_sym_DQUOTE, - ACTIONS(6620), 1, - anon_sym_SQUOTE, - ACTIONS(6622), 1, - anon_sym_BQUOTE, - STATE(2374), 1, - sym_val_string, - STATE(3422), 1, - sym_comment, - STATE(2548), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [104188] = 6, + sym__entry_separator, + [105816] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6624), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6626), 1, - aux_sym__immediate_decimal_token5, - STATE(3423), 1, + STATE(3467), 1, sym_comment, - ACTIONS(1726), 4, - anon_sym_LPAREN2, + ACTIONS(1507), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1728), 4, + ACTIONS(1505), 7, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [104213] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [105837] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1766), 1, + sym__unquoted_pattern, + ACTIONS(6663), 1, + anon_sym_DOT_DOT2, + ACTIONS(6667), 1, + sym_filesize_unit, + ACTIONS(6669), 1, + sym_duration_unit, + STATE(3468), 1, + sym_comment, + ACTIONS(6665), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(890), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [105866] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3424), 1, + STATE(3469), 1, sym_comment, ACTIONS(747), 4, anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, ACTIONS(749), 6, @@ -225938,501 +227558,528 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [104234] = 4, - ACTIONS(3), 1, + [105887] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3425), 1, + STATE(3470), 1, sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 8, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1511), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [104255] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6628), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6630), 1, - aux_sym__immediate_decimal_token5, - STATE(3426), 1, - sym_comment, - ACTIONS(1728), 2, + sym__entry_separator, + ACTIONS(1509), 7, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [104280] = 9, - ACTIONS(3), 1, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [105908] = 10, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(1667), 1, - anon_sym_LBRACE, - ACTIONS(2878), 1, + ACTIONS(5114), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5116), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5247), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(6671), 1, anon_sym_DOLLAR, - STATE(737), 1, + STATE(2688), 1, sym__immediate_decimal, - STATE(3427), 1, + STATE(3471), 1, sym_comment, - ACTIONS(6432), 2, + ACTIONS(6673), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(6632), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(736), 2, + STATE(2898), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104311] = 9, - ACTIONS(3), 1, + [105941] = 10, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(3103), 1, anon_sym_LPAREN2, - ACTIONS(1671), 1, - anon_sym_LBRACE, - ACTIONS(2878), 1, + ACTIONS(5209), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5211), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5247), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(6671), 1, anon_sym_DOLLAR, - STATE(739), 1, + STATE(2991), 1, sym__immediate_decimal, - STATE(3428), 1, + STATE(3472), 1, sym_comment, - ACTIONS(6432), 2, + ACTIONS(6675), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(6632), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(738), 2, + STATE(3373), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104342] = 4, - ACTIONS(103), 1, + [105974] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3429), 1, + ACTIONS(6325), 1, + anon_sym_DASH2, + STATE(3473), 1, sym_comment, - ACTIONS(849), 4, + ACTIONS(4453), 9, + sym_identifier, + sym__newline, + anon_sym_PIPE, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(851), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [104363] = 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [105995] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, + ACTIONS(6128), 1, anon_sym_DOLLAR, - ACTIONS(4850), 1, + ACTIONS(6130), 1, + anon_sym_LPAREN2, + ACTIONS(6191), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4852), 1, + ACTIONS(6193), 1, aux_sym__immediate_decimal_token2, - ACTIONS(4969), 1, - aux_sym_unquoted_token2, - STATE(2505), 1, - sym__immediate_decimal, - STATE(3430), 1, + ACTIONS(6335), 1, + aux_sym__unquoted_in_list_token2, + STATE(3474), 1, sym_comment, - ACTIONS(4854), 2, + STATE(3677), 1, + sym__immediate_decimal, + ACTIONS(6195), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2605), 2, + STATE(3911), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104396] = 10, + [106028] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(3663), 1, + STATE(3475), 1, + sym_comment, + ACTIONS(1460), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1458), 7, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [106049] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1776), 1, anon_sym_DOLLAR, - ACTIONS(4884), 1, + ACTIONS(6130), 1, + anon_sym_LPAREN2, + ACTIONS(6335), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(6399), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4886), 1, + ACTIONS(6401), 1, aux_sym__immediate_decimal_token2, - ACTIONS(4969), 1, - aux_sym_unquoted_token2, - STATE(2699), 1, - sym__immediate_decimal, - STATE(3431), 1, + STATE(3476), 1, sym_comment, - ACTIONS(4888), 2, + STATE(4107), 1, + sym__immediate_decimal, + ACTIONS(6403), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2930), 2, + STATE(4377), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104429] = 9, - ACTIONS(3), 1, + [106082] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(6677), 1, + anon_sym_DOT, + ACTIONS(6679), 1, + aux_sym__immediate_decimal_token5, + STATE(3477), 1, + sym_comment, + ACTIONS(1728), 4, anon_sym_LPAREN2, - ACTIONS(1675), 1, - anon_sym_LBRACE, - ACTIONS(2878), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1730), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [106107] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6128), 1, anon_sym_DOLLAR, - STATE(741), 1, - sym__immediate_decimal, - STATE(3432), 1, + ACTIONS(6130), 1, + anon_sym_LPAREN2, + ACTIONS(6171), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6173), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6627), 1, + aux_sym__unquoted_in_record_token2, + STATE(3478), 1, sym_comment, - ACTIONS(6432), 2, + STATE(3710), 1, + sym__immediate_decimal, + ACTIONS(6175), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(6632), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(740), 2, + STATE(3911), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104460] = 9, + [106140] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6634), 1, - anon_sym_DQUOTE, - ACTIONS(6636), 1, - anon_sym_SQUOTE, - ACTIONS(6638), 1, - anon_sym_BQUOTE, - ACTIONS(6640), 1, - aux_sym_path_token1, - ACTIONS(6642), 1, - sym_raw_string_begin, - STATE(1772), 1, - sym_val_string, - STATE(3433), 1, - sym_comment, - STATE(1780), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [104491] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1582), 1, - anon_sym_LBRACE, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(1776), 1, anon_sym_DOLLAR, - STATE(722), 1, - sym__immediate_decimal, - STATE(3434), 1, + ACTIONS(6130), 1, + anon_sym_LPAREN2, + ACTIONS(6339), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6341), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6627), 1, + aux_sym__unquoted_in_record_token2, + STATE(3479), 1, sym_comment, - ACTIONS(6432), 2, + STATE(4224), 1, + sym__immediate_decimal, + ACTIONS(6343), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(6632), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(721), 2, + STATE(4377), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104522] = 5, + [106173] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1442), 1, - anon_sym_BANG, - STATE(3435), 1, + ACTIONS(6681), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6683), 1, + aux_sym__immediate_decimal_token5, + STATE(3480), 1, sym_comment, - ACTIONS(1440), 3, + ACTIONS(1738), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1438), 6, + ACTIONS(1740), 4, anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_DOT2, - [104545] = 10, + sym__unquoted_pattern_in_list, + [106198] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(6685), 1, + anon_sym_DOT, + ACTIONS(6687), 1, + aux_sym__immediate_decimal_token5, + STATE(3481), 1, + sym_comment, + ACTIONS(1728), 4, + sym__space, anon_sym_LPAREN2, - ACTIONS(1592), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1730), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [106223] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1673), 1, + anon_sym_LPAREN2, + ACTIONS(1677), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1762), 1, + ACTIONS(1830), 1, aux_sym_unquoted_token2, - ACTIONS(6644), 1, + ACTIONS(6689), 1, anon_sym_DOLLAR, - ACTIONS(6646), 1, + ACTIONS(6691), 1, aux_sym__immediate_decimal_token2, - STATE(642), 1, + STATE(675), 1, sym__immediate_decimal, - STATE(3436), 1, + STATE(3482), 1, sym_comment, - ACTIONS(6648), 2, + ACTIONS(6693), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(704), 2, + STATE(960), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104578] = 10, + [106256] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1673), 1, anon_sym_LPAREN2, - ACTIONS(1635), 1, + ACTIONS(1695), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1762), 1, + ACTIONS(1830), 1, aux_sym_unquoted_token2, - ACTIONS(6644), 1, + ACTIONS(6689), 1, anon_sym_DOLLAR, - ACTIONS(6650), 1, + ACTIONS(6695), 1, aux_sym__immediate_decimal_token2, - STATE(941), 1, + STATE(1116), 1, sym__immediate_decimal, - STATE(3437), 1, + STATE(3483), 1, sym_comment, - ACTIONS(6652), 2, + ACTIONS(6697), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(1304), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104611] = 9, + [106289] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(105), 1, + ACTIONS(1792), 1, sym_raw_string_begin, - ACTIONS(6654), 1, + ACTIONS(6699), 1, anon_sym_DQUOTE, - ACTIONS(6656), 1, + ACTIONS(6701), 1, anon_sym_SQUOTE, - ACTIONS(6658), 1, + ACTIONS(6703), 1, anon_sym_BQUOTE, - ACTIONS(6660), 1, + ACTIONS(6705), 1, aux_sym_path_token1, - STATE(502), 1, + STATE(2263), 1, sym_val_string, - STATE(3438), 1, + STATE(3484), 1, sym_comment, - STATE(480), 4, + STATE(2243), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [104642] = 6, + [106320] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6662), 1, - anon_sym_DOT, - ACTIONS(6664), 1, - aux_sym__immediate_decimal_token5, - STATE(3439), 1, - sym_comment, - ACTIONS(1736), 4, + ACTIONS(793), 1, + anon_sym_RBRACK, + ACTIONS(890), 1, + sym__entry_separator, + ACTIONS(6335), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6601), 1, anon_sym_LPAREN2, + ACTIONS(6707), 1, + anon_sym_DOT_DOT2, + ACTIONS(6711), 1, + sym_filesize_unit, + ACTIONS(6713), 1, + sym_duration_unit, + STATE(3485), 1, + sym_comment, + STATE(4734), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6709), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1738), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [104667] = 5, - ACTIONS(3), 1, + [106355] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6666), 1, - aux_sym__immediate_decimal_token5, - STATE(3440), 1, + STATE(3486), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(771), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + sym__unquoted_pattern_in_list, + ACTIONS(773), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [104690] = 9, + sym__entry_separator, + [106376] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6668), 1, - anon_sym_DQUOTE, - ACTIONS(6670), 1, - anon_sym_SQUOTE, - ACTIONS(6672), 1, - anon_sym_BQUOTE, - ACTIONS(6674), 1, - aux_sym_path_token1, - ACTIONS(6676), 1, - sym_raw_string_begin, - STATE(3441), 1, + STATE(3487), 1, sym_comment, - STATE(3677), 1, - sym_val_string, - STATE(3791), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [104721] = 10, - ACTIONS(103), 1, + ACTIONS(1515), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1513), 7, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [106397] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1588), 1, anon_sym_LPAREN2, - ACTIONS(1820), 1, - aux_sym_unquoted_token2, - ACTIONS(4836), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5170), 1, + ACTIONS(1607), 1, + anon_sym_LBRACE, + ACTIONS(2910), 1, anon_sym_DOLLAR, - ACTIONS(6678), 1, - aux_sym__immediate_decimal_token2, - STATE(2433), 1, + STATE(807), 1, sym__immediate_decimal, - STATE(3442), 1, + STATE(3488), 1, sym_comment, - ACTIONS(6680), 2, + ACTIONS(6500), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2576), 2, + ACTIONS(6635), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(806), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104754] = 10, + [106428] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - ACTIONS(1820), 1, - aux_sym_unquoted_token2, - ACTIONS(4844), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5170), 1, - anon_sym_DOLLAR, - ACTIONS(6682), 1, - aux_sym__immediate_decimal_token2, - STATE(2626), 1, - sym__immediate_decimal, - STATE(3443), 1, + STATE(3489), 1, sym_comment, - ACTIONS(6684), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1264), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [104787] = 9, + ACTIONS(1519), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1517), 7, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [106449] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3490), 1, + sym_comment, + ACTIONS(1523), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1521), 7, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [106470] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6686), 1, + ACTIONS(105), 1, + sym_raw_string_begin, + ACTIONS(6715), 1, anon_sym_DQUOTE, - ACTIONS(6688), 1, + ACTIONS(6717), 1, anon_sym_SQUOTE, - ACTIONS(6690), 1, + ACTIONS(6719), 1, anon_sym_BQUOTE, - ACTIONS(6692), 1, + ACTIONS(6721), 1, aux_sym_path_token1, - ACTIONS(6694), 1, - sym_raw_string_begin, - STATE(3268), 1, + STATE(487), 1, sym_val_string, - STATE(3444), 1, + STATE(3491), 1, sym_comment, - STATE(3372), 4, + STATE(490), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [104818] = 5, - ACTIONS(3), 1, + [106501] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6696), 1, - aux_sym__immediate_decimal_token5, - STATE(3445), 1, + STATE(3492), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(874), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + sym__unquoted_pattern_in_list, + ACTIONS(876), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [104841] = 10, + sym__entry_separator, + [106522] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1588), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1766), 1, aux_sym_unquoted_token2, - ACTIONS(4825), 1, + ACTIONS(3819), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5164), 1, + ACTIONS(6723), 1, anon_sym_DOLLAR, - ACTIONS(6698), 1, + ACTIONS(6725), 1, aux_sym__immediate_decimal_token2, - STATE(2406), 1, + STATE(1832), 1, sym__immediate_decimal, - STATE(3446), 1, + STATE(3493), 1, sym_comment, - ACTIONS(6700), 2, + ACTIONS(6727), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2500), 2, + STATE(681), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104874] = 10, + [106555] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1588), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1766), 1, aux_sym_unquoted_token2, - ACTIONS(4840), 1, + ACTIONS(3918), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5164), 1, + ACTIONS(6723), 1, anon_sym_DOLLAR, - ACTIONS(6702), 1, + ACTIONS(6729), 1, aux_sym__immediate_decimal_token2, - STATE(2523), 1, + STATE(1945), 1, sym__immediate_decimal, - STATE(3447), 1, + STATE(3494), 1, sym_comment, - ACTIONS(6704), 2, + ACTIONS(6731), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(715), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104907] = 4, + [106588] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3448), 1, + STATE(3495), 1, sym_comment, - ACTIONS(849), 2, + ACTIONS(771), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(851), 8, + ACTIONS(773), 8, anon_sym_if, sym__newline, anon_sym_PIPE, @@ -226441,929 +228088,865 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [104928] = 10, - ACTIONS(103), 1, + [106609] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(6248), 1, - anon_sym_DOLLAR, - ACTIONS(6335), 1, + ACTIONS(6733), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6337), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6616), 1, - aux_sym__unquoted_in_record_token2, - STATE(3449), 1, - sym_comment, - STATE(4127), 1, - sym__immediate_decimal, - ACTIONS(6339), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4155), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [104961] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6706), 1, + ACTIONS(6735), 1, aux_sym__immediate_decimal_token5, - STATE(3450), 1, + STATE(3496), 1, sym_comment, - ACTIONS(771), 3, - anon_sym_RBRACE, + ACTIONS(1740), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(773), 6, - anon_sym_LPAREN2, + sym__unquoted_pattern, + ACTIONS(1738), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [104984] = 10, + [106634] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1588), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1766), 1, aux_sym_unquoted_token2, - ACTIONS(5164), 1, + ACTIONS(5292), 1, anon_sym_DOLLAR, - ACTIONS(5930), 1, + ACTIONS(5817), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6708), 1, + ACTIONS(6737), 1, aux_sym__immediate_decimal_token2, - STATE(3451), 1, + STATE(3497), 1, sym_comment, - STATE(3687), 1, + STATE(3629), 1, sym__immediate_decimal, - ACTIONS(6710), 2, + ACTIONS(6739), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3625), 2, + STATE(3758), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105017] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3452), 1, - sym_comment, - ACTIONS(771), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(773), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [105038] = 10, + [106667] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1588), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1766), 1, aux_sym_unquoted_token2, - ACTIONS(5164), 1, + ACTIONS(5292), 1, anon_sym_DOLLAR, - ACTIONS(6145), 1, + ACTIONS(6050), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6712), 1, + ACTIONS(6741), 1, aux_sym__immediate_decimal_token2, - STATE(3453), 1, + STATE(3498), 1, sym_comment, - STATE(4213), 1, + STATE(3984), 1, sym__immediate_decimal, - ACTIONS(6714), 2, + ACTIONS(6743), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(715), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105071] = 9, + [106700] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(942), 1, + ACTIONS(6745), 1, anon_sym_DQUOTE, - ACTIONS(944), 1, + ACTIONS(6747), 1, anon_sym_SQUOTE, - ACTIONS(946), 1, + ACTIONS(6749), 1, anon_sym_BQUOTE, - ACTIONS(958), 1, - sym_raw_string_begin, - ACTIONS(6716), 1, + ACTIONS(6751), 1, aux_sym_path_token1, - STATE(2455), 1, + ACTIONS(6753), 1, + sym_raw_string_begin, + STATE(372), 1, sym_val_string, - STATE(3454), 1, + STATE(3499), 1, sym_comment, - STATE(2472), 4, + STATE(380), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [105102] = 10, + [106731] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(3261), 1, anon_sym_LPAREN2, - ACTIONS(1820), 1, + ACTIONS(3659), 1, + anon_sym_DOLLAR, + ACTIONS(5150), 1, aux_sym_unquoted_token2, - ACTIONS(3374), 1, + ACTIONS(5937), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6718), 1, - anon_sym_DOLLAR, - ACTIONS(6720), 1, + ACTIONS(5939), 1, aux_sym__immediate_decimal_token2, - STATE(1441), 1, - sym__immediate_decimal, - STATE(3455), 1, + STATE(3500), 1, sym_comment, - ACTIONS(6722), 2, + STATE(3653), 1, + sym__immediate_decimal, + ACTIONS(5941), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(950), 2, + STATE(3838), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105135] = 11, + [106764] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_RBRACK, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6466), 1, + ACTIONS(3261), 1, anon_sym_LPAREN2, - ACTIONS(6724), 1, - anon_sym_DOT_DOT2, - ACTIONS(6728), 1, - sym_filesize_unit, - ACTIONS(6730), 1, - sym_duration_unit, - STATE(3456), 1, + ACTIONS(3659), 1, + anon_sym_DOLLAR, + ACTIONS(5150), 1, + aux_sym_unquoted_token2, + ACTIONS(6209), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6211), 1, + aux_sym__immediate_decimal_token2, + STATE(3501), 1, sym_comment, - STATE(4723), 1, + STATE(3975), 1, + sym__immediate_decimal, + ACTIONS(6213), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3058), 2, sym__expr_parenthesized_immediate, - ACTIONS(6726), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [105170] = 10, + sym_val_variable, + [106797] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(3022), 1, + sym_raw_string_begin, + ACTIONS(6755), 1, + anon_sym_DQUOTE, + ACTIONS(6757), 1, + anon_sym_SQUOTE, + ACTIONS(6759), 1, + anon_sym_BQUOTE, + ACTIONS(6761), 1, + aux_sym_path_token1, + STATE(2406), 1, + sym_val_string, + STATE(3502), 1, + sym_comment, + STATE(2624), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [106828] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3261), 1, anon_sym_LPAREN2, - ACTIONS(6169), 1, + ACTIONS(3659), 1, + anon_sym_DOLLAR, + ACTIONS(4902), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6171), 1, + ACTIONS(4904), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6616), 1, - aux_sym__unquoted_in_record_token2, - STATE(3457), 1, - sym_comment, - STATE(3693), 1, + ACTIONS(5150), 1, + aux_sym_unquoted_token2, + STATE(2544), 1, sym__immediate_decimal, - ACTIONS(6173), 2, + STATE(3503), 1, + sym_comment, + ACTIONS(4906), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3780), 2, + STATE(2673), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105203] = 10, + [106861] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(3261), 1, anon_sym_LPAREN2, - ACTIONS(1820), 1, - aux_sym_unquoted_token2, - ACTIONS(3450), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6718), 1, + ACTIONS(3659), 1, anon_sym_DOLLAR, - ACTIONS(6732), 1, + ACTIONS(4926), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4928), 1, aux_sym__immediate_decimal_token2, - STATE(1495), 1, + ACTIONS(5150), 1, + aux_sym_unquoted_token2, + STATE(2700), 1, sym__immediate_decimal, - STATE(3458), 1, + STATE(3504), 1, sym_comment, - ACTIONS(6734), 2, + ACTIONS(4930), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1264), 2, + STATE(3058), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105236] = 9, + [106894] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6736), 1, + ACTIONS(6763), 1, anon_sym_DQUOTE, - ACTIONS(6738), 1, + ACTIONS(6765), 1, anon_sym_SQUOTE, - ACTIONS(6740), 1, + ACTIONS(6767), 1, anon_sym_BQUOTE, - ACTIONS(6742), 1, + ACTIONS(6769), 1, aux_sym_path_token1, - ACTIONS(6744), 1, + ACTIONS(6771), 1, sym_raw_string_begin, - STATE(1882), 1, + STATE(1738), 1, sym_val_string, - STATE(3459), 1, + STATE(3505), 1, sym_comment, - STATE(1953), 4, + STATE(1787), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [105267] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6526), 1, - aux_sym__immediate_decimal_token5, - STATE(3460), 1, - sym_comment, - ACTIONS(739), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(741), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [105290] = 10, + [106925] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3168), 1, + ACTIONS(1588), 1, anon_sym_LPAREN2, - ACTIONS(5003), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5005), 1, + ACTIONS(1592), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5116), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(6746), 1, + ACTIONS(1766), 1, + aux_sym_unquoted_token2, + ACTIONS(6723), 1, anon_sym_DOLLAR, - STATE(2612), 1, + ACTIONS(6773), 1, + aux_sym__immediate_decimal_token2, + STATE(544), 1, sym__immediate_decimal, - STATE(3461), 1, + STATE(3506), 1, sym_comment, - ACTIONS(6748), 2, + ACTIONS(6775), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2886), 2, + STATE(681), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105323] = 10, + [106958] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3168), 1, + ACTIONS(1588), 1, anon_sym_LPAREN2, - ACTIONS(5011), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5013), 1, + ACTIONS(1637), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5116), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(6746), 1, + ACTIONS(1766), 1, + aux_sym_unquoted_token2, + ACTIONS(6723), 1, anon_sym_DOLLAR, - STATE(2983), 1, + ACTIONS(6777), 1, + aux_sym__immediate_decimal_token2, + STATE(944), 1, sym__immediate_decimal, - STATE(3462), 1, + STATE(3507), 1, sym_comment, - ACTIONS(6750), 2, + ACTIONS(6779), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3290), 2, + STATE(715), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105356] = 10, + [106991] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(6781), 1, + anon_sym_DQUOTE, + ACTIONS(6783), 1, + anon_sym_SQUOTE, + ACTIONS(6785), 1, + anon_sym_BQUOTE, + ACTIONS(6787), 1, + aux_sym_path_token1, + ACTIONS(6789), 1, + sym_raw_string_begin, + STATE(3508), 1, + sym_comment, + STATE(3698), 1, + sym_val_string, + STATE(3797), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [107022] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1673), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1830), 1, aux_sym_unquoted_token2, - ACTIONS(3940), 1, + ACTIONS(4889), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, + ACTIONS(5342), 1, anon_sym_DOLLAR, - ACTIONS(6752), 1, + ACTIONS(6791), 1, aux_sym__immediate_decimal_token2, - STATE(1850), 1, + STATE(2506), 1, sym__immediate_decimal, - STATE(3463), 1, + STATE(3509), 1, sym_comment, - ACTIONS(6754), 2, + ACTIONS(6793), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1960), 2, + STATE(2625), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105389] = 10, + [107055] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3251), 1, + ACTIONS(1673), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4870), 1, + ACTIONS(1830), 1, + aux_sym_unquoted_token2, + ACTIONS(4908), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4872), 1, + ACTIONS(5342), 1, + anon_sym_DOLLAR, + ACTIONS(6795), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5048), 1, - aux_sym_unquoted_token2, - STATE(2565), 1, + STATE(2651), 1, sym__immediate_decimal, - STATE(3464), 1, + STATE(3510), 1, sym_comment, - ACTIONS(4874), 2, + ACTIONS(6797), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2682), 2, + STATE(1304), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105422] = 10, + [107088] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6799), 1, + anon_sym_DQUOTE, + ACTIONS(6801), 1, + anon_sym_SQUOTE, + ACTIONS(6803), 1, + anon_sym_BQUOTE, + ACTIONS(6805), 1, + aux_sym_path_token1, + ACTIONS(6807), 1, + sym_raw_string_begin, + STATE(3315), 1, + sym_val_string, + STATE(3511), 1, + sym_comment, + STATE(3467), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [107119] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1588), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1766), 1, aux_sym_unquoted_token2, - ACTIONS(3954), 1, + ACTIONS(4868), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, + ACTIONS(5292), 1, anon_sym_DOLLAR, - ACTIONS(6756), 1, + ACTIONS(6809), 1, aux_sym__immediate_decimal_token2, - STATE(1974), 1, + STATE(2474), 1, sym__immediate_decimal, - STATE(3465), 1, + STATE(3512), 1, sym_comment, - ACTIONS(6758), 2, + ACTIONS(6811), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(2560), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105455] = 10, + [107152] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1588), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1766), 1, aux_sym_unquoted_token2, - ACTIONS(5164), 1, - anon_sym_DOLLAR, - ACTIONS(6430), 1, + ACTIONS(4881), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, + ACTIONS(5292), 1, + anon_sym_DOLLAR, + ACTIONS(6813), 1, aux_sym__immediate_decimal_token2, - STATE(3466), 1, - sym_comment, - STATE(3945), 1, + STATE(2570), 1, sym__immediate_decimal, - ACTIONS(6762), 2, + STATE(3513), 1, + sym_comment, + ACTIONS(6815), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4116), 2, + STATE(715), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105488] = 9, + [107185] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(827), 1, + ACTIONS(6817), 1, anon_sym_DQUOTE, - ACTIONS(829), 1, + ACTIONS(6819), 1, anon_sym_SQUOTE, - ACTIONS(831), 1, + ACTIONS(6821), 1, anon_sym_BQUOTE, - ACTIONS(843), 1, - sym_raw_string_begin, - ACTIONS(6764), 1, + ACTIONS(6823), 1, aux_sym_path_token1, - STATE(2404), 1, + ACTIONS(6825), 1, + sym_raw_string_begin, + STATE(336), 1, sym_val_string, - STATE(3467), 1, + STATE(3514), 1, sym_comment, - STATE(2454), 4, + STATE(344), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [105519] = 10, + [107216] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1588), 1, anon_sym_LPAREN2, - ACTIONS(1655), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1820), 1, + ACTIONS(1766), 1, aux_sym_unquoted_token2, - ACTIONS(6718), 1, + ACTIONS(5292), 1, anon_sym_DOLLAR, - ACTIONS(6766), 1, + ACTIONS(5912), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6827), 1, aux_sym__immediate_decimal_token2, - STATE(693), 1, - sym__immediate_decimal, - STATE(3468), 1, + STATE(3515), 1, sym_comment, - ACTIONS(6768), 2, + STATE(3777), 1, + sym__immediate_decimal, + ACTIONS(6829), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(950), 2, + STATE(3758), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105552] = 10, + [107249] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1588), 1, anon_sym_LPAREN2, - ACTIONS(1683), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1820), 1, + ACTIONS(1766), 1, aux_sym_unquoted_token2, - ACTIONS(6718), 1, + ACTIONS(5292), 1, anon_sym_DOLLAR, - ACTIONS(6770), 1, + ACTIONS(6197), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6831), 1, aux_sym__immediate_decimal_token2, - STATE(1047), 1, - sym__immediate_decimal, - STATE(3469), 1, + STATE(3516), 1, sym_comment, - ACTIONS(6772), 2, + STATE(4394), 1, + sym__immediate_decimal, + ACTIONS(6833), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1264), 2, + STATE(715), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105585] = 6, + [107282] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6774), 1, - anon_sym_DOT, - ACTIONS(6776), 1, - aux_sym__immediate_decimal_token5, - STATE(3470), 1, + ACTIONS(958), 1, + anon_sym_DQUOTE, + ACTIONS(960), 1, + anon_sym_SQUOTE, + ACTIONS(962), 1, + anon_sym_BQUOTE, + ACTIONS(974), 1, + sym_raw_string_begin, + ACTIONS(6835), 1, + aux_sym_path_token1, + STATE(2495), 1, + sym_val_string, + STATE(3517), 1, sym_comment, - ACTIONS(1736), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [105610] = 10, + STATE(2543), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [107313] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3251), 1, + ACTIONS(1673), 1, anon_sym_LPAREN2, - ACTIONS(3681), 1, - anon_sym_DOLLAR, - ACTIONS(4916), 1, + ACTIONS(1830), 1, + aux_sym_unquoted_token2, + ACTIONS(3372), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4918), 1, + ACTIONS(6689), 1, + anon_sym_DOLLAR, + ACTIONS(6837), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5048), 1, + STATE(1445), 1, + sym__immediate_decimal, + STATE(3518), 1, + sym_comment, + ACTIONS(6839), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(960), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [107346] = 10, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1673), 1, + anon_sym_LPAREN2, + ACTIONS(1830), 1, aux_sym_unquoted_token2, - STATE(2816), 1, + ACTIONS(3424), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6689), 1, + anon_sym_DOLLAR, + ACTIONS(6841), 1, + aux_sym__immediate_decimal_token2, + STATE(1506), 1, sym__immediate_decimal, - STATE(3471), 1, + STATE(3519), 1, sym_comment, - ACTIONS(4920), 2, + ACTIONS(6843), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3201), 2, + STATE(1304), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105643] = 10, + [107379] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6845), 1, + anon_sym_DQUOTE, + ACTIONS(6847), 1, + anon_sym_SQUOTE, + ACTIONS(6849), 1, + anon_sym_BQUOTE, + ACTIONS(6851), 1, + aux_sym_path_token1, + ACTIONS(6853), 1, + sym_raw_string_begin, + STATE(1897), 1, + sym_val_string, + STATE(3520), 1, + sym_comment, + STATE(1919), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [107410] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1588), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1766), 1, aux_sym_unquoted_token2, - ACTIONS(3347), 1, + ACTIONS(3914), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, + ACTIONS(6723), 1, anon_sym_DOLLAR, - ACTIONS(6778), 1, + ACTIONS(6855), 1, aux_sym__immediate_decimal_token2, - STATE(1436), 1, + STATE(1870), 1, sym__immediate_decimal, - STATE(3472), 1, + STATE(3521), 1, sym_comment, - ACTIONS(6780), 2, + ACTIONS(6857), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(704), 2, + STATE(1961), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105676] = 10, + [107443] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1588), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1766), 1, aux_sym_unquoted_token2, - ACTIONS(3378), 1, + ACTIONS(3950), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, + ACTIONS(6723), 1, anon_sym_DOLLAR, - ACTIONS(6782), 1, + ACTIONS(6859), 1, aux_sym__immediate_decimal_token2, - STATE(1470), 1, + STATE(2107), 1, sym__immediate_decimal, - STATE(3473), 1, + STATE(3522), 1, sym_comment, - ACTIONS(6784), 2, + ACTIONS(6861), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(715), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105709] = 10, + [107476] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(852), 1, + anon_sym_DQUOTE, + ACTIONS(854), 1, + anon_sym_SQUOTE, + ACTIONS(856), 1, + anon_sym_BQUOTE, + ACTIONS(870), 1, + sym_raw_string_begin, + ACTIONS(6863), 1, + aux_sym_path_token1, + STATE(2452), 1, + sym_val_string, + STATE(3523), 1, + sym_comment, + STATE(2508), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [107507] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1588), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1766), 1, aux_sym_unquoted_token2, - ACTIONS(3762), 1, + ACTIONS(3362), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, + ACTIONS(6723), 1, anon_sym_DOLLAR, - ACTIONS(6786), 1, + ACTIONS(6865), 1, aux_sym__immediate_decimal_token2, - STATE(1827), 1, + STATE(1432), 1, sym__immediate_decimal, - STATE(3474), 1, + STATE(3524), 1, sym_comment, - ACTIONS(6788), 2, + ACTIONS(6867), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(704), 2, + STATE(681), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105742] = 10, + [107540] = 10, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1588), 1, anon_sym_LPAREN2, - ACTIONS(1762), 1, + ACTIONS(1766), 1, aux_sym_unquoted_token2, - ACTIONS(3900), 1, + ACTIONS(3420), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6644), 1, + ACTIONS(6723), 1, anon_sym_DOLLAR, - ACTIONS(6790), 1, + ACTIONS(6869), 1, aux_sym__immediate_decimal_token2, - STATE(1952), 1, + STATE(1464), 1, sym__immediate_decimal, - STATE(3475), 1, + STATE(3525), 1, sym_comment, - ACTIONS(6792), 2, + ACTIONS(6871), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(888), 2, + STATE(715), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105775] = 9, + [107573] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6794), 1, + ACTIONS(6873), 1, anon_sym_DQUOTE, - ACTIONS(6796), 1, + ACTIONS(6875), 1, anon_sym_SQUOTE, - ACTIONS(6798), 1, + ACTIONS(6877), 1, anon_sym_BQUOTE, - ACTIONS(6800), 1, + ACTIONS(6879), 1, aux_sym_path_token1, - ACTIONS(6802), 1, + ACTIONS(6881), 1, sym_raw_string_begin, - STATE(3476), 1, + STATE(3526), 1, sym_comment, - STATE(4040), 1, + STATE(4019), 1, sym_val_string, - STATE(4236), 4, + STATE(4091), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [105806] = 9, + [107604] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(6544), 1, + ACTIONS(6883), 1, anon_sym_DQUOTE, - ACTIONS(6546), 1, + ACTIONS(6885), 1, anon_sym_SQUOTE, - ACTIONS(6548), 1, + ACTIONS(6887), 1, anon_sym_BQUOTE, - ACTIONS(6804), 1, + ACTIONS(6889), 1, aux_sym_path_token1, - STATE(2263), 1, + ACTIONS(6891), 1, + sym_raw_string_begin, + STATE(1726), 1, sym_val_string, - STATE(3477), 1, + STATE(3527), 1, sym_comment, - STATE(2228), 4, + STATE(1745), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [105837] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - ACTIONS(5841), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5843), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6222), 1, - aux_sym__unquoted_in_list_token2, - STATE(3478), 1, - sym_comment, - STATE(3603), 1, - sym__immediate_decimal, - ACTIONS(5845), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3860), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105870] = 9, + [107635] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(6552), 1, + ACTIONS(6893), 1, anon_sym_DQUOTE, - ACTIONS(6554), 1, + ACTIONS(6895), 1, anon_sym_SQUOTE, - ACTIONS(6556), 1, + ACTIONS(6897), 1, anon_sym_BQUOTE, - ACTIONS(6692), 1, + ACTIONS(6899), 1, aux_sym_path_token1, - STATE(3268), 1, + ACTIONS(6901), 1, + sym_raw_string_begin, + STATE(2407), 1, sym_val_string, - STATE(3479), 1, + STATE(3528), 1, sym_comment, - STATE(3505), 4, + STATE(2459), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [105901] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6806), 1, - anon_sym_DOT, - ACTIONS(6808), 1, - aux_sym__immediate_decimal_token5, - STATE(3480), 1, - sym_comment, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [105926] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3481), 1, - sym_comment, - ACTIONS(747), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(749), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [105947] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6810), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6812), 1, - aux_sym__immediate_decimal_token5, - STATE(3482), 1, - sym_comment, - ACTIONS(1726), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1728), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [105972] = 9, + [107666] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6814), 1, + ACTIONS(1792), 1, + sym_raw_string_begin, + ACTIONS(6699), 1, anon_sym_DQUOTE, - ACTIONS(6816), 1, + ACTIONS(6701), 1, anon_sym_SQUOTE, - ACTIONS(6818), 1, + ACTIONS(6703), 1, anon_sym_BQUOTE, - ACTIONS(6820), 1, + ACTIONS(6761), 1, aux_sym_path_token1, - ACTIONS(6822), 1, - sym_raw_string_begin, - STATE(1733), 1, + STATE(2406), 1, sym_val_string, - STATE(3483), 1, + STATE(3529), 1, sym_comment, - STATE(1749), 4, + STATE(2243), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [106003] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3484), 1, - sym_comment, - ACTIONS(771), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(773), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [106024] = 4, + [107697] = 9, ACTIONS(103), 1, anon_sym_POUND, - STATE(3485), 1, + ACTIONS(1426), 1, + sym_raw_string_begin, + ACTIONS(6903), 1, + anon_sym_DQUOTE, + ACTIONS(6905), 1, + anon_sym_SQUOTE, + ACTIONS(6907), 1, + anon_sym_BQUOTE, + ACTIONS(6909), 1, + aux_sym_path_token1, + STATE(3530), 1, sym_comment, - ACTIONS(849), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(851), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [106045] = 9, + STATE(3739), 1, + sym_val_string, + STATE(3638), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [107728] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6824), 1, + ACTIONS(6911), 1, anon_sym_DQUOTE, - ACTIONS(6826), 1, + ACTIONS(6913), 1, anon_sym_SQUOTE, - ACTIONS(6828), 1, + ACTIONS(6915), 1, anon_sym_BQUOTE, - ACTIONS(6830), 1, + ACTIONS(6917), 1, aux_sym_path_token1, - ACTIONS(6832), 1, + ACTIONS(6919), 1, sym_raw_string_begin, - STATE(2359), 1, + STATE(334), 1, sym_val_string, - STATE(3486), 1, + STATE(3531), 1, sym_comment, - STATE(2420), 4, + STATE(349), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [106076] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, - ACTIONS(6834), 1, - anon_sym_DOT_DOT2, - ACTIONS(6838), 1, - sym_filesize_unit, - ACTIONS(6840), 1, - sym_duration_unit, - STATE(3487), 1, - sym_comment, - ACTIONS(6836), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(968), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [106105] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3488), 1, - sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 8, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [106126] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3489), 1, - sym_comment, - ACTIONS(747), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [106147] = 9, + [107759] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6842), 1, + ACTIONS(6921), 1, anon_sym_DQUOTE, - ACTIONS(6844), 1, + ACTIONS(6923), 1, anon_sym_SQUOTE, - ACTIONS(6846), 1, + ACTIONS(6925), 1, anon_sym_BQUOTE, - ACTIONS(6848), 1, + ACTIONS(6927), 1, aux_sym_path_token1, - ACTIONS(6850), 1, + ACTIONS(6929), 1, sym_raw_string_begin, - STATE(337), 1, + STATE(2306), 1, sym_val_string, - STATE(3490), 1, + STATE(3532), 1, sym_comment, - STATE(343), 4, + STATE(2310), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [106178] = 4, + [107790] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3491), 1, + STATE(3533), 1, sym_comment, - ACTIONS(771), 3, - anon_sym_RBRACE, + ACTIONS(747), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(773), 6, + sym__unquoted_pattern, + ACTIONS(749), 6, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [106198] = 4, + [107811] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3492), 1, + ACTIONS(6568), 1, + aux_sym__immediate_decimal_token5, + STATE(3534), 1, sym_comment, - ACTIONS(849), 2, + ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(851), 7, + ACTIONS(741), 7, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, @@ -227371,764 +228954,633 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [106218] = 7, - ACTIONS(3), 1, + [107834] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2843), 1, - sym_cell_path, - STATE(3493), 1, + ACTIONS(6931), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6933), 1, + aux_sym__immediate_decimal_token5, + STATE(3535), 1, sym_comment, - STATE(3592), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1866), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [106244] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1738), 4, + sym__space, anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(3494), 1, - sym_comment, - STATE(3930), 1, - sym__immediate_decimal, - ACTIONS(5934), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5936), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(728), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106272] = 8, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1740), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [107859] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(6854), 1, - anon_sym_DOLLAR, - STATE(2997), 1, - sym__immediate_decimal, - STATE(3495), 1, + ACTIONS(6574), 1, + anon_sym_DOT2, + STATE(367), 1, + sym_path, + STATE(3536), 1, sym_comment, - ACTIONS(4912), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6856), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2996), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106300] = 7, - ACTIONS(3), 1, + STATE(3537), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1492), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1490), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [107886] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6852), 1, + ACTIONS(6935), 1, anon_sym_DOT2, - STATE(2511), 1, + STATE(367), 1, sym_path, - STATE(2914), 1, - sym_cell_path, - STATE(3496), 1, + STATE(3537), 2, sym_comment, - STATE(3592), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1858), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [106326] = 4, + ACTIONS(1496), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1494), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [107911] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(3497), 1, + ACTIONS(6938), 1, + aux_sym__immediate_decimal_token5, + STATE(3538), 1, sym_comment, - ACTIONS(849), 3, + ACTIONS(771), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(851), 6, + ACTIONS(773), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [106346] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(6854), 1, - anon_sym_DOLLAR, - STATE(3498), 1, - sym_comment, - STATE(4023), 1, - sym__immediate_decimal, - ACTIONS(6055), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6858), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2998), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106374] = 8, + [107934] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3830), 1, - anon_sym_DOLLAR, - ACTIONS(6071), 1, - anon_sym_LPAREN2, - STATE(3499), 1, - sym_comment, - STATE(4209), 1, - sym__immediate_decimal, - ACTIONS(6073), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6860), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4208), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106402] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6862), 1, - aux_sym__immediate_decimal_token5, - STATE(3500), 1, + STATE(3539), 1, sym_comment, - ACTIONS(1802), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1804), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(874), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [106424] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1762), 1, sym__unquoted_pattern, - ACTIONS(6864), 1, - anon_sym_DOT_DOT2, - ACTIONS(6868), 1, - sym_filesize_unit, - ACTIONS(6870), 1, - sym_duration_unit, - STATE(3501), 1, - sym_comment, - ACTIONS(6866), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(968), 3, + ACTIONS(876), 8, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [106452] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1649), 1, - anon_sym_DOLLAR, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - STATE(1313), 1, - sym__immediate_decimal, - STATE(3502), 1, - sym_comment, - ACTIONS(1657), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(1306), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106480] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(6854), 1, - anon_sym_DOLLAR, - STATE(2710), 1, - sym__immediate_decimal, - STATE(3503), 1, - sym_comment, - ACTIONS(4884), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6872), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2998), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106508] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [107955] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(727), 1, - sym__immediate_decimal, - STATE(3504), 1, + STATE(3540), 1, sym_comment, - ACTIONS(1594), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(726), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106536] = 4, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 8, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [107976] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1480), 1, - sym__entry_separator, - STATE(3505), 1, - sym_comment, - ACTIONS(1478), 8, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [106556] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - STATE(958), 1, - sym__immediate_decimal, - STATE(3506), 1, - sym_comment, - ACTIONS(1635), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(1637), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(728), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106584] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3792), 1, - anon_sym_DOLLAR, - STATE(3274), 1, - sym__immediate_decimal, - STATE(3507), 1, + ACTIONS(1426), 1, + sym_raw_string_begin, + ACTIONS(6805), 1, + aux_sym_path_token1, + ACTIONS(6903), 1, + anon_sym_DQUOTE, + ACTIONS(6905), 1, + anon_sym_SQUOTE, + ACTIONS(6907), 1, + anon_sym_BQUOTE, + STATE(3315), 1, + sym_val_string, + STATE(3541), 1, sym_comment, - ACTIONS(5007), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(5081), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(3271), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106612] = 4, + STATE(3638), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [108007] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1476), 1, - sym__entry_separator, - STATE(3508), 1, - sym_comment, - ACTIONS(1474), 8, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [106632] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3896), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - STATE(3509), 1, + ACTIONS(6687), 1, + aux_sym__immediate_decimal_token5, + STATE(3542), 1, sym_comment, - STATE(4144), 1, - sym__immediate_decimal, - ACTIONS(6335), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6874), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4210), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106660] = 8, + ACTIONS(1728), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1730), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [108029] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1584), 1, anon_sym_DOLLAR, ACTIONS(1588), 1, anon_sym_LPAREN2, - STATE(727), 1, + STATE(1956), 1, sym__immediate_decimal, - STATE(3510), 1, + STATE(3543), 1, sym_comment, - ACTIONS(3954), 2, + ACTIONS(3914), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(3916), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(726), 2, + STATE(1961), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106688] = 4, - ACTIONS(103), 1, + [108057] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1516), 1, - sym__entry_separator, - STATE(3511), 1, + ACTIONS(6940), 1, + anon_sym_DOT, + ACTIONS(6942), 1, + aux_sym__immediate_decimal_token5, + STATE(3544), 1, sym_comment, - ACTIONS(1514), 8, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [106708] = 8, + ACTIONS(1730), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1728), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [108081] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - ACTIONS(4832), 1, + ACTIONS(1584), 1, anon_sym_DOLLAR, - STATE(2614), 1, + ACTIONS(1588), 1, + anon_sym_LPAREN2, + STATE(941), 1, sym__immediate_decimal, - STATE(3512), 1, + STATE(3545), 1, sym_comment, - ACTIONS(4844), 2, + ACTIONS(3950), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4846), 2, + ACTIONS(3952), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1306), 2, + STATE(715), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106736] = 8, + [108109] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3830), 1, + ACTIONS(1584), 1, anon_sym_DOLLAR, - ACTIONS(6071), 1, + ACTIONS(1588), 1, anon_sym_LPAREN2, - STATE(3513), 1, - sym_comment, - STATE(4033), 1, + STATE(682), 1, sym__immediate_decimal, - ACTIONS(6073), 2, + STATE(3546), 1, + sym_comment, + ACTIONS(1592), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6860), 2, + ACTIONS(1594), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4210), 2, + STATE(681), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106764] = 6, + [108137] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6876), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6878), 1, - aux_sym__immediate_decimal_token5, - STATE(3514), 1, + ACTIONS(6944), 1, + anon_sym_DOT2, + STATE(2552), 1, + sym_path, + STATE(2948), 1, + sym_cell_path, + STATE(3547), 1, sym_comment, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [106788] = 8, + STATE(3618), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1854), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + [108163] = 8, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1584), 1, + anon_sym_DOLLAR, ACTIONS(1588), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, - anon_sym_DOLLAR, - STATE(2534), 1, + STATE(941), 1, sym__immediate_decimal, - STATE(3515), 1, + STATE(3548), 1, sym_comment, - ACTIONS(4840), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4842), 2, + ACTIONS(1594), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + ACTIONS(1635), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(715), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106816] = 8, + [108191] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3251), 1, + ACTIONS(3309), 1, anon_sym_LPAREN2, - ACTIONS(6880), 1, + ACTIONS(6946), 1, anon_sym_DOLLAR, - STATE(2888), 1, + STATE(2928), 1, sym__immediate_decimal, - STATE(3516), 1, + STATE(3549), 1, sym_comment, - ACTIONS(4916), 2, + ACTIONS(4980), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6882), 2, + ACTIONS(6948), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3130), 2, + STATE(3187), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106844] = 8, + [108219] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3550), 1, + sym_comment, + ACTIONS(747), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(749), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [108239] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6944), 1, + anon_sym_DOT2, + STATE(2552), 1, + sym_path, + STATE(2867), 1, + sym_cell_path, + STATE(3551), 1, + sym_comment, + STATE(3618), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1862), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + [108265] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(1671), 1, anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(1673), 1, anon_sym_LPAREN2, - STATE(3517), 1, - sym_comment, - STATE(4072), 1, + STATE(931), 1, sym__immediate_decimal, - ACTIONS(6442), 2, + STATE(3552), 1, + sym_comment, + ACTIONS(1677), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6884), 2, + ACTIONS(1679), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4210), 2, + STATE(960), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106872] = 6, + [108293] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6886), 1, - anon_sym_DOT, - ACTIONS(6888), 1, - aux_sym__immediate_decimal_token5, - STATE(3518), 1, + ACTIONS(4135), 1, + anon_sym_DOT_DOT2, + ACTIONS(6950), 1, + sym_filesize_unit, + ACTIONS(6952), 1, + sym_duration_unit, + ACTIONS(6954), 1, + sym__unquoted_pattern, + STATE(3553), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(4137), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(890), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [108321] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3554), 1, + sym_comment, + ACTIONS(771), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 5, - anon_sym_LBRACE, + ACTIONS(773), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [106896] = 8, + [108341] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3168), 1, - anon_sym_LPAREN2, - ACTIONS(3792), 1, + ACTIONS(1671), 1, anon_sym_DOLLAR, - STATE(2993), 1, + ACTIONS(1673), 1, + anon_sym_LPAREN2, + STATE(1307), 1, sym__immediate_decimal, - STATE(3519), 1, + STATE(3555), 1, sym_comment, - ACTIONS(5013), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5015), 2, + ACTIONS(1679), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3226), 2, + ACTIONS(1710), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1304), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106924] = 8, + [108369] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6956), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6958), 1, + aux_sym__immediate_decimal_token5, + STATE(3556), 1, + sym_comment, + ACTIONS(1740), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1738), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [108393] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(3309), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(6946), 1, anon_sym_DOLLAR, - STATE(3520), 1, - sym_comment, - STATE(4223), 1, + STATE(3186), 1, sym__immediate_decimal, - ACTIONS(6145), 2, + STATE(3557), 1, + sym_comment, + ACTIONS(5084), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6147), 2, + ACTIONS(6960), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + STATE(3185), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106952] = 8, + [108421] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(6130), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(6962), 1, anon_sym_DOLLAR, - STATE(3521), 1, + STATE(3558), 1, sym_comment, - STATE(4701), 1, + STATE(4715), 1, sym__immediate_decimal, - ACTIONS(6478), 2, + ACTIONS(6304), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6480), 2, + ACTIONS(6964), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + STATE(4145), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106980] = 8, + [108449] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1649), 1, - anon_sym_DOLLAR, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - STATE(1502), 1, - sym__immediate_decimal, - STATE(3522), 1, + ACTIONS(6661), 1, + aux_sym__immediate_decimal_token5, + STATE(3559), 1, sym_comment, - ACTIONS(3450), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3452), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1306), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [107008] = 8, - ACTIONS(3), 1, + ACTIONS(1730), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1728), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [108471] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - STATE(2084), 1, - sym__immediate_decimal, - STATE(3523), 1, + ACTIONS(6966), 1, + aux_sym__immediate_decimal_token5, + STATE(3560), 1, sym_comment, - ACTIONS(3954), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(728), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [107036] = 8, + ACTIONS(1806), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1808), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [108493] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(2650), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(6130), 1, anon_sym_LPAREN2, - STATE(1487), 1, - sym__immediate_decimal, - STATE(3524), 1, + STATE(3561), 1, sym_comment, - ACTIONS(3378), 2, + STATE(4064), 1, + sym__immediate_decimal, + ACTIONS(6191), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3380), 2, + ACTIONS(6964), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + STATE(3911), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107064] = 8, + [108521] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1649), 1, - anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(6130), 1, anon_sym_LPAREN2, - STATE(956), 1, - sym__immediate_decimal, - STATE(3525), 1, + ACTIONS(6962), 1, + anon_sym_DOLLAR, + STATE(3562), 1, sym_comment, - ACTIONS(1655), 2, + STATE(4777), 1, + sym__immediate_decimal, + ACTIONS(6304), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1657), 2, + ACTIONS(6964), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(950), 2, + STATE(4377), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107092] = 9, + [108549] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - ACTIONS(4139), 1, - anon_sym_DOT_DOT2, - ACTIONS(4969), 1, - sym__unquoted_pattern, - ACTIONS(6494), 1, - sym_filesize_unit, - ACTIONS(6496), 1, - sym_duration_unit, - STATE(3526), 1, + ACTIONS(6679), 1, + aux_sym__immediate_decimal_token5, + STATE(3563), 1, sym_comment, - ACTIONS(868), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(4141), 2, + ACTIONS(1728), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [107122] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3251), 1, - anon_sym_LPAREN2, - ACTIONS(6880), 1, - anon_sym_DOLLAR, - STATE(3103), 1, - sym__immediate_decimal, - STATE(3527), 1, - sym_comment, - ACTIONS(4938), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6890), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3101), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [107150] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1468), 1, sym__entry_separator, - STATE(3528), 1, - sym_comment, - ACTIONS(1466), 8, - anon_sym_COLON, + ACTIONS(1730), 4, anon_sym_RBRACK, - anon_sym_GT2, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [107170] = 8, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [108571] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, + ACTIONS(1671), 1, anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(1673), 1, anon_sym_LPAREN2, - STATE(3529), 1, - sym_comment, - STATE(4719), 1, + STATE(1054), 1, sym__immediate_decimal, - ACTIONS(6250), 2, + STATE(3564), 1, + sym_comment, + ACTIONS(1695), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6892), 2, + ACTIONS(1697), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4210), 2, + STATE(1326), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107198] = 8, + [108599] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(1588), 1, anon_sym_LPAREN2, - ACTIONS(4832), 1, + ACTIONS(2910), 1, anon_sym_DOLLAR, - STATE(1300), 1, + STATE(813), 1, sym__immediate_decimal, - STATE(3530), 1, + STATE(3565), 1, sym_comment, - ACTIONS(1657), 2, + ACTIONS(5819), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, + ACTIONS(6189), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1298), 2, + STATE(812), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107226] = 8, + [108627] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, - anon_sym_LPAREN2, - STATE(3531), 1, + ACTIONS(6968), 1, + aux_sym__immediate_decimal_token5, + STATE(3566), 1, sym_comment, - STATE(4209), 1, - sym__immediate_decimal, - ACTIONS(6250), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6892), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4208), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [107254] = 3, + ACTIONS(1808), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1806), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [108649] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6970), 1, + anon_sym_DOT, + ACTIONS(6972), 1, + aux_sym__immediate_decimal_token5, + STATE(3567), 1, + sym_comment, + ACTIONS(1730), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1728), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [108673] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3532), 1, + STATE(3568), 1, sym_comment, - ACTIONS(6894), 9, + ACTIONS(6974), 9, anon_sym_EQ, sym__newline, anon_sym_SEMI, @@ -228138,531 +229590,280 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [107272] = 8, + [108691] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1584), 1, anon_sym_DOLLAR, ACTIONS(1588), 1, anon_sym_LPAREN2, - STATE(904), 1, + STATE(1918), 1, sym__immediate_decimal, - STATE(3533), 1, + STATE(3569), 1, sym_comment, - ACTIONS(3954), 2, + ACTIONS(3918), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, + ACTIONS(3920), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + STATE(815), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107300] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6896), 1, - aux_sym__immediate_decimal_token5, - STATE(3534), 1, - sym_comment, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [107322] = 8, + [108719] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(3261), 1, anon_sym_LPAREN2, - STATE(904), 1, - sym__immediate_decimal, - STATE(3535), 1, - sym_comment, - ACTIONS(1594), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(728), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [107350] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6808), 1, - aux_sym__immediate_decimal_token5, - STATE(3536), 1, - sym_comment, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [107372] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(6976), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - STATE(709), 1, + STATE(2971), 1, sym__immediate_decimal, - STATE(3537), 1, + STATE(3570), 1, sym_comment, - ACTIONS(1592), 2, + ACTIONS(6294), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1594), 2, + ACTIONS(6978), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(704), 2, + STATE(3115), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107400] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3538), 1, - sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [107420] = 8, + [108747] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2656), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(1588), 1, anon_sym_LPAREN2, - STATE(3539), 1, + ACTIONS(2910), 1, + anon_sym_DOLLAR, + STATE(3571), 1, sym_comment, - STATE(3976), 1, + STATE(3946), 1, sym__immediate_decimal, - ACTIONS(6047), 2, + ACTIONS(6050), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6892), 2, + ACTIONS(6052), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3780), 2, + STATE(815), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107448] = 8, + [108775] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3896), 1, - anon_sym_DOLLAR, - ACTIONS(5837), 1, + ACTIONS(3261), 1, anon_sym_LPAREN2, - STATE(3540), 1, - sym_comment, - STATE(4685), 1, + ACTIONS(6976), 1, + anon_sym_DOLLAR, + STATE(2971), 1, sym__immediate_decimal, - ACTIONS(6250), 2, + STATE(3572), 1, + sym_comment, + ACTIONS(5048), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6892), 2, + ACTIONS(6980), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4155), 2, + STATE(3115), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107476] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3541), 1, - sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [107496] = 4, + [108803] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3542), 1, + STATE(3573), 1, sym_comment, - ACTIONS(747), 3, + ACTIONS(771), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(749), 6, + ACTIONS(773), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [107516] = 8, + [108823] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - STATE(727), 1, - sym__immediate_decimal, - STATE(3543), 1, + STATE(3574), 1, sym_comment, - ACTIONS(1594), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(726), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [107544] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4139), 1, + ACTIONS(874), 2, anon_sym_DOT_DOT2, - ACTIONS(6898), 1, - sym_filesize_unit, - ACTIONS(6900), 1, - sym_duration_unit, - ACTIONS(6902), 1, sym__unquoted_pattern, - STATE(3544), 1, - sym_comment, - ACTIONS(4141), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(968), 3, + ACTIONS(876), 7, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [107572] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [108843] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(3261), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(6976), 1, anon_sym_DOLLAR, - STATE(727), 1, - sym__immediate_decimal, - STATE(3545), 1, + STATE(3575), 1, sym_comment, - ACTIONS(6432), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6632), 2, + STATE(4063), 1, + sym__immediate_decimal, + ACTIONS(6209), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(726), 2, + ACTIONS(6982), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2993), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107600] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3546), 1, - sym_comment, - ACTIONS(849), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(851), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [107620] = 8, + [108871] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(6240), 1, anon_sym_LPAREN2, - STATE(955), 1, - sym__immediate_decimal, - STATE(3547), 1, + ACTIONS(6984), 1, + anon_sym_DOLLAR, + STATE(3576), 1, sym_comment, - ACTIONS(1594), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1647), 2, + STATE(4143), 1, + sym__immediate_decimal, + ACTIONS(6242), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(888), 2, + ACTIONS(6986), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4142), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107648] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6776), 1, - aux_sym__immediate_decimal_token5, - STATE(3548), 1, - sym_comment, - ACTIONS(1736), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [107670] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3549), 1, - sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [107690] = 8, + [108899] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1649), 1, - anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(3261), 1, anon_sym_LPAREN2, - STATE(1083), 1, + ACTIONS(6976), 1, + anon_sym_DOLLAR, + STATE(2747), 1, sym__immediate_decimal, - STATE(3550), 1, + STATE(3577), 1, sym_comment, - ACTIONS(1683), 2, + ACTIONS(4926), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1685), 2, + ACTIONS(6988), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1306), 2, + STATE(2993), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107718] = 8, + [108927] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1649), 1, - anon_sym_DOLLAR, - ACTIONS(1651), 1, + ACTIONS(1588), 1, anon_sym_LPAREN2, - STATE(1300), 1, + ACTIONS(2910), 1, + anon_sym_DOLLAR, + STATE(813), 1, sym__immediate_decimal, - STATE(3551), 1, + STATE(3578), 1, sym_comment, - ACTIONS(1657), 2, + ACTIONS(1594), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, + ACTIONS(1635), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1298), 2, + STATE(812), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107746] = 8, + [108955] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(6130), 1, anon_sym_LPAREN2, - ACTIONS(2878), 1, + ACTIONS(6962), 1, anon_sym_DOLLAR, - STATE(727), 1, - sym__immediate_decimal, - STATE(3552), 1, + STATE(3579), 1, sym_comment, - ACTIONS(5745), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6039), 2, + STATE(4226), 1, + sym__immediate_decimal, + ACTIONS(6399), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(726), 2, + ACTIONS(6990), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4145), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107774] = 5, + [108983] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6664), 1, + ACTIONS(6992), 1, aux_sym__immediate_decimal_token5, - STATE(3553), 1, + STATE(3580), 1, sym_comment, - ACTIONS(1736), 4, + ACTIONS(1806), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1738), 4, + ACTIONS(1808), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [107796] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6904), 1, - anon_sym_DOT, - ACTIONS(6906), 1, - aux_sym__immediate_decimal_token5, - STATE(3554), 1, - sym_comment, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [107820] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6468), 1, - anon_sym_DOT_DOT2, - ACTIONS(6472), 1, - sym_filesize_unit, - ACTIONS(6474), 1, - sym_duration_unit, - STATE(3555), 1, - sym_comment, - ACTIONS(868), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6470), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [107850] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - STATE(1956), 1, - sym__immediate_decimal, - STATE(3556), 1, - sym_comment, - ACTIONS(3940), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3942), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1960), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [107878] = 8, + [109005] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1584), 1, anon_sym_DOLLAR, ACTIONS(1588), 1, anon_sym_LPAREN2, - STATE(955), 1, + STATE(899), 1, sym__immediate_decimal, - STATE(3557), 1, + STATE(3581), 1, sym_comment, - ACTIONS(3954), 2, + ACTIONS(1637), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3956), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(888), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [107906] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1649), 1, - anon_sym_DOLLAR, - ACTIONS(1651), 1, - anon_sym_LPAREN2, - STATE(1266), 1, - sym__immediate_decimal, - STATE(3558), 1, - sym_comment, - ACTIONS(1657), 2, + ACTIONS(1639), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1734), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(1264), 2, + STATE(815), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107934] = 6, + [109033] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6908), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6910), 1, - aux_sym__immediate_decimal_token5, - STATE(3559), 1, - sym_comment, - ACTIONS(1728), 3, - anon_sym_RBRACE, + ACTIONS(890), 1, + sym__space, + ACTIONS(4135), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1726), 4, - anon_sym_LPAREN2, + ACTIONS(5150), 1, + sym__unquoted_pattern, + ACTIONS(6587), 1, + sym_filesize_unit, + ACTIONS(6589), 1, + sym_duration_unit, + STATE(3582), 1, + sym_comment, + ACTIONS(793), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(4137), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [107958] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1472), 1, - sym__entry_separator, - STATE(3560), 1, - sym_comment, - ACTIONS(1470), 8, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [107978] = 4, + [109063] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3561), 1, + STATE(3583), 1, sym_comment, ACTIONS(747), 2, anon_sym_DOT_DOT2, @@ -228675,6448 +229876,6203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [107998] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2899), 1, - sym_cell_path, - STATE(3562), 1, - sym_comment, - STATE(3592), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1882), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [108024] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6912), 1, - aux_sym__immediate_decimal_token5, - STATE(3563), 1, - sym_comment, - ACTIONS(1802), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [108046] = 6, + [109083] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6914), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6916), 1, - aux_sym__immediate_decimal_token5, - STATE(3564), 1, - sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [108070] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6606), 1, - aux_sym__immediate_decimal_token5, - STATE(3565), 1, - sym_comment, - ACTIONS(1736), 4, + ACTIONS(6130), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1738), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [108092] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(6962), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - STATE(1924), 1, - sym__immediate_decimal, - STATE(3566), 1, + STATE(3584), 1, sym_comment, - ACTIONS(3900), 2, + STATE(4231), 1, + sym__immediate_decimal, + ACTIONS(6339), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3902), 2, + ACTIONS(6994), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(728), 2, + STATE(4145), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108120] = 8, + [109111] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3212), 1, - anon_sym_LPAREN2, - ACTIONS(6854), 1, + ACTIONS(1584), 1, anon_sym_DOLLAR, - STATE(2997), 1, + ACTIONS(1588), 1, + anon_sym_LPAREN2, + STATE(813), 1, sym__immediate_decimal, - STATE(3567), 1, + STATE(3585), 1, sym_comment, - ACTIONS(6254), 2, + ACTIONS(3950), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6918), 2, + ACTIONS(3952), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2996), 2, + STATE(812), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108148] = 4, + [109139] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1545), 1, - sym__entry_separator, - STATE(3568), 1, + STATE(3586), 1, sym_comment, - ACTIONS(1543), 8, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT2, + ACTIONS(874), 3, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [108168] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6920), 1, - aux_sym__immediate_decimal_token5, - STATE(3569), 1, - sym_comment, - ACTIONS(1802), 4, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(876), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - ACTIONS(1804), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [108190] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3570), 1, - sym_comment, - ACTIONS(6922), 9, - anon_sym_EQ, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [108208] = 6, + [109159] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6924), 1, - anon_sym_DOT, - ACTIONS(6926), 1, + ACTIONS(6633), 1, aux_sym__immediate_decimal_token5, - STATE(3571), 1, + STATE(3587), 1, sym_comment, - ACTIONS(1738), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1736), 4, + ACTIONS(1728), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [108232] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2258), 1, - sym_cell_path, - STATE(2511), 1, - sym_path, - STATE(3572), 1, - sym_comment, - STATE(3592), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1434), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [108258] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6930), 1, - anon_sym_DOT2, - STATE(2489), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2611), 1, - sym_path, - STATE(3133), 1, - sym_cell_path, - STATE(3573), 1, - sym_comment, - ACTIONS(6928), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [108283] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2266), 1, - anon_sym_DOT2, - STATE(518), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(783), 1, - sym_path, - STATE(1333), 1, - sym_cell_path, - STATE(3574), 1, - sym_comment, - ACTIONS(6932), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [108308] = 5, + ACTIONS(1730), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [109181] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6934), 1, - aux_sym__immediate_decimal_token5, - STATE(3575), 1, + STATE(3588), 1, sym_comment, - ACTIONS(1804), 2, + ACTIONS(771), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 5, + ACTIONS(773), 7, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [108329] = 7, + sym_filesize_unit, + sym_duration_unit, + [109201] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(3035), 1, - sym_cell_path, - STATE(3576), 1, + ACTIONS(1673), 1, + anon_sym_LPAREN2, + ACTIONS(4885), 1, + anon_sym_DOLLAR, + STATE(2678), 1, + sym__immediate_decimal, + STATE(3589), 1, sym_comment, - STATE(3592), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(6936), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [108354] = 6, + ACTIONS(4908), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4910), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1326), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109229] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(6938), 1, - anon_sym_DOT_DOT2, - STATE(3577), 1, + STATE(3590), 1, sym_comment, - ACTIONS(6940), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 4, - anon_sym_if, + ACTIONS(874), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(876), 7, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [108377] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3578), 1, - sym_comment, - ACTIONS(1802), 4, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [109249] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(890), 1, sym__entry_separator, - ACTIONS(1804), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, + ACTIONS(6335), 1, sym__unquoted_pattern_in_list, - [108396] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3579), 1, - sym_comment, - ACTIONS(1728), 2, + ACTIONS(6603), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(6607), 1, + sym_filesize_unit, + ACTIONS(6609), 1, + sym_duration_unit, + STATE(3591), 1, + sym_comment, + ACTIONS(793), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6605), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [108415] = 7, + [109279] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1856), 1, - anon_sym_DOT2, - STATE(423), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(441), 1, - sym_path, - STATE(951), 1, - sym_cell_path, - STATE(3580), 1, - sym_comment, - ACTIONS(6942), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [108440] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1884), 1, - sym__table_head_separator, - ACTIONS(6947), 1, - anon_sym_DOT_DOT, - ACTIONS(6949), 1, - anon_sym_DOT2, - STATE(3581), 1, + ACTIONS(6240), 1, + anon_sym_LPAREN2, + ACTIONS(6984), 1, + anon_sym_DOLLAR, + STATE(3592), 1, sym_comment, - STATE(3755), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4260), 1, - sym_path, - STATE(4397), 1, - sym_cell_path, - ACTIONS(6944), 2, - anon_sym_RBRACK, - sym__entry_separator, - [108469] = 4, + STATE(4001), 1, + sym__immediate_decimal, + ACTIONS(6242), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6986), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4145), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109307] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6953), 1, - anon_sym_DASH2, - STATE(3582), 1, - sym_comment, - ACTIONS(6951), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(1588), 1, + anon_sym_LPAREN2, + ACTIONS(2910), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [108488] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3583), 1, + STATE(2574), 1, + sym__immediate_decimal, + STATE(3593), 1, sym_comment, - ACTIONS(1726), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1728), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [108507] = 4, - ACTIONS(103), 1, + ACTIONS(4881), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4883), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(815), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109335] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3584), 1, + ACTIONS(1671), 1, + anon_sym_DOLLAR, + ACTIONS(1673), 1, + anon_sym_LPAREN2, + STATE(1325), 1, + sym__immediate_decimal, + STATE(3594), 1, sym_comment, - ACTIONS(1870), 4, + ACTIONS(1679), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1710), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1324), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109363] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1671), 1, + anon_sym_DOLLAR, + ACTIONS(1673), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1872), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [108526] = 4, + STATE(1327), 1, + sym__immediate_decimal, + STATE(3595), 1, + sym_comment, + ACTIONS(1679), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1710), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1326), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109391] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3585), 1, + ACTIONS(6996), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6998), 1, + aux_sym__immediate_decimal_token5, + STATE(3596), 1, sym_comment, - ACTIONS(1804), 2, + ACTIONS(1740), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1802), 6, - anon_sym_if, + ACTIONS(1738), 5, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [108545] = 7, + [109415] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6957), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3586), 1, + ACTIONS(3103), 1, + anon_sym_LPAREN2, + ACTIONS(3845), 1, + anon_sym_DOLLAR, + STATE(3063), 1, + sym__immediate_decimal, + STATE(3597), 1, sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4546), 1, - sym_cell_path, - ACTIONS(6955), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [108570] = 7, + ACTIONS(5211), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5213), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3356), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109443] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6961), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2556), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3035), 1, - sym_cell_path, - STATE(3587), 1, + ACTIONS(1588), 1, + anon_sym_LPAREN2, + ACTIONS(2910), 1, + anon_sym_DOLLAR, + STATE(3598), 1, sym_comment, - ACTIONS(6959), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [108595] = 4, + STATE(4289), 1, + sym__immediate_decimal, + ACTIONS(6197), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6199), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(815), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109471] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(3588), 1, + ACTIONS(1671), 1, + anon_sym_DOLLAR, + ACTIONS(1673), 1, + anon_sym_LPAREN2, + STATE(1488), 1, + sym__immediate_decimal, + STATE(3599), 1, sym_comment, - ACTIONS(1872), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [108614] = 5, + ACTIONS(3424), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3426), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1326), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109499] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6888), 1, - aux_sym__immediate_decimal_token5, - STATE(3589), 1, + ACTIONS(1588), 1, + anon_sym_LPAREN2, + ACTIONS(2910), 1, + anon_sym_DOLLAR, + STATE(813), 1, + sym__immediate_decimal, + STATE(3600), 1, sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [108635] = 5, - ACTIONS(103), 1, + ACTIONS(6500), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6635), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(812), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109527] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6926), 1, - aux_sym__immediate_decimal_token5, - STATE(3590), 1, + ACTIONS(1584), 1, + anon_sym_DOLLAR, + ACTIONS(1588), 1, + anon_sym_LPAREN2, + STATE(1998), 1, + sym__immediate_decimal, + STATE(3601), 1, sym_comment, - ACTIONS(1738), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1736), 4, + ACTIONS(3950), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3952), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(815), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109555] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1584), 1, + anon_sym_DOLLAR, + ACTIONS(1588), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [108656] = 7, + STATE(813), 1, + sym__immediate_decimal, + STATE(3602), 1, + sym_comment, + ACTIONS(1594), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1635), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(812), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109583] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4928), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3591), 1, + ACTIONS(1584), 1, + anon_sym_DOLLAR, + ACTIONS(1588), 1, + anon_sym_LPAREN2, + STATE(1467), 1, + sym__immediate_decimal, + STATE(3603), 1, sym_comment, - STATE(4156), 1, - sym_cell_path, - ACTIONS(6963), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [108681] = 6, + ACTIONS(3420), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3422), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(815), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109611] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(3592), 1, + ACTIONS(1584), 1, + anon_sym_DOLLAR, + ACTIONS(1588), 1, + anon_sym_LPAREN2, + STATE(943), 1, + sym__immediate_decimal, + STATE(3604), 1, sym_comment, - STATE(3593), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1460), 5, - anon_sym_EQ, + ACTIONS(1594), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1635), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(815), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109639] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1588), 1, + anon_sym_LPAREN2, + ACTIONS(2910), 1, + anon_sym_DOLLAR, + STATE(3605), 1, + sym_comment, + STATE(4798), 1, + sym__immediate_decimal, + ACTIONS(6542), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6544), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(815), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109667] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1673), 1, + anon_sym_LPAREN2, + ACTIONS(4885), 1, + anon_sym_DOLLAR, + STATE(1325), 1, + sym__immediate_decimal, + STATE(3606), 1, + sym_comment, + ACTIONS(1679), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1710), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1324), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109695] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3607), 1, + sym_comment, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 7, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_GT2, anon_sym_DASH_DASH, - [108704] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [109715] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6965), 1, + ACTIONS(6944), 1, anon_sym_DOT2, - STATE(2511), 1, + STATE(2262), 1, + sym_cell_path, + STATE(2552), 1, sym_path, - STATE(3593), 2, + STATE(3608), 1, sym_comment, + STATE(3618), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1526), 5, + ACTIONS(1434), 5, anon_sym_EQ, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_GT2, anon_sym_DASH_DASH, - [108725] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1856), 1, - anon_sym_DOT2, - STATE(423), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(441), 1, - sym_path, - STATE(951), 1, - sym_cell_path, - STATE(3594), 1, - sym_comment, - ACTIONS(6968), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [108750] = 5, + [109741] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6906), 1, + ACTIONS(7000), 1, + anon_sym_DOT, + ACTIONS(7002), 1, aux_sym__immediate_decimal_token5, - STATE(3595), 1, + STATE(3609), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [108771] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3596), 1, - sym_comment, - ACTIONS(1870), 4, - sym__space, - anon_sym_LPAREN2, + ACTIONS(741), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1872), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [108790] = 4, + sym_filesize_unit, + sym_duration_unit, + [109765] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(3597), 1, + ACTIONS(7004), 1, + aux_sym__immediate_decimal_token5, + STATE(3610), 1, sym_comment, - ACTIONS(1726), 4, + ACTIONS(1806), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 4, + ACTIONS(1808), 4, sym__newline, anon_sym_SEMI, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [108809] = 8, - ACTIONS(103), 1, + [109787] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__space, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(6970), 1, - anon_sym_DOT_DOT2, - STATE(3598), 1, + STATE(3611), 1, sym_comment, - ACTIONS(1976), 2, + ACTIONS(7006), 9, + anon_sym_EQ, sym__newline, anon_sym_SEMI, - ACTIONS(6972), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [108836] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(6974), 1, - anon_sym_alias, - ACTIONS(6976), 1, - anon_sym_const, - ACTIONS(6978), 1, - anon_sym_def, - ACTIONS(6980), 1, - anon_sym_use, - ACTIONS(6982), 1, - anon_sym_extern, - ACTIONS(6984), 1, - anon_sym_module, - STATE(3599), 1, - sym_comment, - [108867] = 6, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [109805] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1766), 1, sym__unquoted_pattern, - ACTIONS(6986), 1, + ACTIONS(7008), 1, anon_sym_DOT_DOT2, - STATE(3600), 1, + ACTIONS(7012), 1, + sym_filesize_unit, + ACTIONS(7014), 1, + sym_duration_unit, + STATE(3612), 1, sym_comment, - ACTIONS(6988), 2, + ACTIONS(7010), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1964), 4, - anon_sym_if, + ACTIONS(890), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [108890] = 5, + [109833] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6944), 1, + anon_sym_DOT2, + STATE(2552), 1, + sym_path, + STATE(2946), 1, + sym_cell_path, + STATE(3613), 1, + sym_comment, + STATE(3618), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1848), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + [109859] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6990), 1, + ACTIONS(7016), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7018), 1, aux_sym__immediate_decimal_token5, - STATE(3601), 1, + STATE(3614), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(747), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 5, + ACTIONS(749), 5, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [108911] = 7, + [109883] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6994), 1, - anon_sym_DOT2, - STATE(1947), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2133), 1, - sym_path, - STATE(2183), 1, - sym_cell_path, - STATE(3602), 1, + ACTIONS(6130), 1, + anon_sym_LPAREN2, + ACTIONS(6962), 1, + anon_sym_DOLLAR, + STATE(3615), 1, sym_comment, - ACTIONS(6992), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [108936] = 8, - ACTIONS(103), 1, + STATE(4143), 1, + sym__immediate_decimal, + ACTIONS(6304), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6964), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4142), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109911] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1964), 1, - sym__entry_separator, - ACTIONS(1968), 1, + ACTIONS(1584), 1, + anon_sym_DOLLAR, + ACTIONS(1588), 1, anon_sym_LPAREN2, - ACTIONS(6996), 1, - anon_sym_DOT_DOT2, - STATE(3603), 1, + STATE(943), 1, + sym__immediate_decimal, + STATE(3616), 1, sym_comment, - ACTIONS(1966), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6998), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [108963] = 5, - ACTIONS(103), 1, + ACTIONS(3950), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3952), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(815), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109939] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7000), 1, - aux_sym__immediate_decimal_token5, - STATE(3604), 1, - sym_comment, - ACTIONS(1804), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1802), 4, + ACTIONS(3103), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [108984] = 7, + ACTIONS(3845), 1, + anon_sym_DOLLAR, + STATE(3310), 1, + sym__immediate_decimal, + STATE(3617), 1, + sym_comment, + ACTIONS(5118), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(5255), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(3383), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109967] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4928), 1, + ACTIONS(6944), 1, anon_sym_DOT2, - STATE(441), 1, + STATE(2552), 1, sym_path, - STATE(951), 1, - sym_cell_path, - STATE(2290), 1, + STATE(3618), 1, + sym_comment, + STATE(3663), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3605), 1, + ACTIONS(1492), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + [109990] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7022), 1, + anon_sym_DOT2, + STATE(2552), 1, + sym_path, + STATE(2613), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2987), 1, + sym_cell_path, + STATE(3619), 1, sym_comment, - ACTIONS(7002), 4, + ACTIONS(7020), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [109009] = 8, + [110015] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__entry_separator, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7004), 1, - anon_sym_DOT_DOT2, - STATE(3606), 1, + ACTIONS(2662), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2664), 1, + anon_sym_COLON2, + ACTIONS(7024), 1, + anon_sym_alias, + ACTIONS(7026), 1, + anon_sym_const, + ACTIONS(7028), 1, + anon_sym_def, + ACTIONS(7030), 1, + anon_sym_use, + ACTIONS(7032), 1, + anon_sym_extern, + ACTIONS(7034), 1, + anon_sym_module, + STATE(3620), 1, sym_comment, - ACTIONS(1976), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7006), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [109036] = 7, + [110046] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1856), 1, + ACTIONS(2192), 1, anon_sym_DOT2, - STATE(423), 1, + STATE(547), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(441), 1, + STATE(712), 1, sym_path, - STATE(951), 1, + STATE(1288), 1, sym_cell_path, - STATE(3607), 1, + STATE(3621), 1, sym_comment, - ACTIONS(7008), 4, + ACTIONS(7036), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [109061] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1964), 1, - sym__space, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(7010), 1, - anon_sym_DOT_DOT2, - STATE(3608), 1, - sym_comment, - ACTIONS(1966), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7012), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [109088] = 6, + [110071] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7014), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7016), 1, + ACTIONS(7038), 1, + anon_sym_DOT, + ACTIONS(7040), 1, aux_sym__immediate_decimal_token5, - STATE(3609), 1, + STATE(3622), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(749), 4, + ACTIONS(741), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [109111] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1448), 1, - sym__entry_separator, - ACTIONS(7018), 1, - anon_sym_QMARK2, - ACTIONS(7020), 1, - anon_sym_BANG, - STATE(3610), 1, - sym_comment, - STATE(3901), 1, - sym__path_suffix, - ACTIONS(1446), 4, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [109136] = 6, + [110094] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7022), 1, - anon_sym_DOT, - ACTIONS(7024), 1, + ACTIONS(7042), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7044), 1, aux_sym__immediate_decimal_token5, - STATE(3611), 1, + STATE(3623), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(747), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(741), 4, + ACTIONS(749), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [109159] = 7, + [110117] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7028), 1, + ACTIONS(1842), 1, anon_sym_DOT2, - STATE(2430), 1, + STATE(416), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2542), 1, + STATE(435), 1, sym_path, - STATE(3030), 1, + STATE(916), 1, sym_cell_path, - STATE(3612), 1, + STATE(3624), 1, sym_comment, - ACTIONS(7026), 4, + ACTIONS(7046), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [109184] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4928), 1, - anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3613), 1, - sym_comment, - STATE(4327), 1, - sym_cell_path, - ACTIONS(7030), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [109209] = 4, + [110142] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3614), 1, + STATE(3625), 1, sym_comment, - ACTIONS(1802), 4, - sym__space, + ACTIONS(1738), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 4, - sym__newline, - anon_sym_SEMI, + sym__entry_separator, + ACTIONS(1740), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [109228] = 7, + sym__unquoted_pattern_in_list, + [110161] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5134), 1, + ACTIONS(5052), 1, anon_sym_DOT2, - STATE(783), 1, + STATE(435), 1, sym_path, - STATE(1333), 1, - sym_cell_path, - STATE(2387), 1, + STATE(2283), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3615), 1, + STATE(3626), 1, sym_comment, - ACTIONS(7032), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [109253] = 4, + STATE(4138), 1, + sym_cell_path, + ACTIONS(7048), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [110186] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(3616), 1, + ACTIONS(6972), 1, + aux_sym__immediate_decimal_token5, + STATE(3627), 1, sym_comment, - ACTIONS(1726), 4, + ACTIONS(1730), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1728), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1728), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [109272] = 4, + [110207] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3617), 1, + STATE(3628), 1, sym_comment, - ACTIONS(1802), 4, + ACTIONS(1844), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1804), 4, + ACTIONS(1846), 4, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [109291] = 4, - ACTIONS(103), 1, + [110226] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3618), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(7050), 1, + anon_sym_DOT_DOT2, + STATE(3629), 1, sym_comment, - ACTIONS(1870), 4, - anon_sym_LPAREN2, + ACTIONS(7052), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1872), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [109310] = 7, + ACTIONS(1942), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [110249] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2266), 1, + ACTIONS(2192), 1, anon_sym_DOT2, - STATE(518), 1, + STATE(547), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(783), 1, + STATE(712), 1, sym_path, - STATE(1333), 1, + STATE(1288), 1, sym_cell_path, - STATE(3619), 1, + STATE(3630), 1, sym_comment, - ACTIONS(7034), 4, + ACTIONS(7054), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [109335] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1884), 1, - sym__table_head_separator, - ACTIONS(7036), 1, - anon_sym_DOT2, - STATE(3620), 1, - sym_comment, - STATE(4178), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4650), 1, - sym_path, - STATE(5037), 1, - sym_cell_path, - ACTIONS(6947), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__entry_separator, - [109362] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1434), 1, - sym__entry_separator, - ACTIONS(7038), 1, - anon_sym_DOT2, - STATE(3621), 1, - sym_comment, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3891), 1, - sym_path, - STATE(4168), 1, - sym_cell_path, - ACTIONS(1432), 3, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - [109389] = 6, + [110274] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7040), 1, - anon_sym_DOT, - ACTIONS(7042), 1, + ACTIONS(6942), 1, aux_sym__immediate_decimal_token5, - STATE(3622), 1, + STATE(3631), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(1730), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1736), 3, - anon_sym_LBRACE, + ACTIONS(1728), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [109411] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3623), 1, - sym_comment, - STATE(4024), 1, - sym__variable_name, - STATE(4180), 1, - sym_val_variable, - STATE(4300), 1, - sym__assignment_pattern, - [109439] = 6, + [110295] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1526), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1942), 1, sym__entry_separator, - ACTIONS(7048), 1, - anon_sym_DOT2, - STATE(3891), 1, - sym_path, - STATE(3624), 2, + ACTIONS(1946), 1, + anon_sym_LPAREN2, + ACTIONS(7056), 1, + anon_sym_DOT_DOT2, + STATE(3632), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1524), 3, + ACTIONS(1944), 2, anon_sym_RBRACK, - anon_sym_GT2, anon_sym_DOT_DOT, - [109461] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7051), 1, - anon_sym_DOT_DOT2, - STATE(3625), 1, - sym_comment, - ACTIONS(7053), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [109481] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3626), 1, - sym_comment, - ACTIONS(1804), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1802), 4, - anon_sym_LPAREN2, + ACTIONS(7058), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [109499] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1513), 1, - sym_parameter_parens, - STATE(1514), 1, - sym_parameter_bracks, - STATE(3627), 1, - sym_comment, - STATE(3724), 1, - aux_sym_decl_def_repeat1, - STATE(4506), 1, - sym_long_flag, - [109527] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1542), 1, - sym_parameter_parens, - STATE(1543), 1, - sym_parameter_bracks, - STATE(3628), 1, - sym_comment, - STATE(3651), 1, - aux_sym_decl_def_repeat1, - STATE(4506), 1, - sym_long_flag, - [109555] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1544), 1, - sym_parameter_parens, - STATE(1545), 1, - sym_parameter_bracks, - STATE(3629), 1, - sym_comment, - STATE(3659), 1, - aux_sym_decl_def_repeat1, - STATE(4506), 1, - sym_long_flag, - [109583] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7061), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7063), 1, - aux_sym__immediate_decimal_token5, - STATE(3630), 1, - sym_comment, - ACTIONS(1726), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1728), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [109605] = 6, + [110322] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(7065), 1, - anon_sym_DOT, - ACTIONS(7067), 1, - aux_sym__immediate_decimal_token5, - STATE(3631), 1, + ACTIONS(7062), 1, + anon_sym_DOT2, + STATE(2554), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2659), 1, + sym_path, + STATE(3149), 1, + sym_cell_path, + STATE(3633), 1, sym_comment, - ACTIONS(1736), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [109627] = 8, + ACTIONS(7060), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [110347] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(1511), 1, sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3632), 1, + STATE(3634), 1, sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4206), 1, - sym_cell_path, - ACTIONS(1868), 2, + ACTIONS(1509), 7, anon_sym_RBRACK, anon_sym_RBRACE, - [109653] = 9, + anon_sym_DOT_DOT, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [110366] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1523), 1, - sym_parameter_parens, - STATE(1524), 1, - sym_parameter_bracks, - STATE(3633), 1, + STATE(3635), 1, sym_comment, - STATE(3713), 1, - aux_sym_decl_def_repeat1, - STATE(4506), 1, - sym_long_flag, - [109681] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7071), 1, + ACTIONS(1740), 2, anon_sym_DOT_DOT2, - STATE(3634), 1, - sym_comment, - ACTIONS(7073), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2100), 4, + sym__unquoted_pattern, + ACTIONS(1738), 6, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [109701] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7075), 1, - anon_sym_DOT_DOT2, - STATE(3635), 1, - sym_comment, - ACTIONS(7077), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2076), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [109721] = 5, + [110385] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1515), 1, + sym__entry_separator, + STATE(3636), 1, + sym_comment, + ACTIONS(1513), 7, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [110404] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7079), 1, + ACTIONS(1962), 1, + sym__unquoted_pattern, + ACTIONS(7064), 1, anon_sym_DOT_DOT2, - STATE(3636), 1, + STATE(3637), 1, sym_comment, - ACTIONS(7081), 2, + ACTIONS(7066), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2120), 4, + ACTIONS(1952), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [109741] = 6, + [110427] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7083), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7085), 1, - aux_sym__immediate_decimal_token5, - STATE(3637), 1, - sym_comment, - ACTIONS(1726), 2, - anon_sym_LPAREN2, + ACTIONS(1507), 1, sym__entry_separator, - ACTIONS(1728), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [109763] = 4, - ACTIONS(103), 1, - anon_sym_POUND, STATE(3638), 1, sym_comment, - ACTIONS(1874), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1876), 4, + ACTIONS(1505), 7, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [109781] = 8, - ACTIONS(103), 1, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [110446] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__entry_separator, - ACTIONS(1976), 1, - anon_sym_RBRACE, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7087), 1, - anon_sym_DOT_DOT2, + ACTIONS(7068), 1, + aux_sym__immediate_decimal_token5, STATE(3639), 1, sym_comment, - ACTIONS(7089), 2, + ACTIONS(1808), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1806), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [109807] = 7, + [110467] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1460), 1, - sym__entry_separator, - ACTIONS(7038), 1, + ACTIONS(1856), 1, + sym__table_head_separator, + ACTIONS(7073), 1, + anon_sym_DOT_DOT, + ACTIONS(7075), 1, anon_sym_DOT2, - STATE(3624), 1, - aux_sym__where_predicate_lhs_repeat1, STATE(3640), 1, sym_comment, - STATE(3891), 1, + STATE(3812), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4124), 1, sym_path, - ACTIONS(1458), 3, + STATE(4569), 1, + sym_cell_path, + ACTIONS(7070), 2, anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - [109831] = 9, + sym__entry_separator, + [110496] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1531), 1, - sym_parameter_parens, - STATE(1532), 1, - sym_parameter_bracks, + ACTIONS(7079), 1, + anon_sym_DOT2, + STATE(1917), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2130), 1, + sym_path, + STATE(2140), 1, + sym_cell_path, STATE(3641), 1, sym_comment, - STATE(4030), 1, - aux_sym_decl_def_repeat1, - STATE(4506), 1, - sym_long_flag, - [109859] = 9, + ACTIONS(7077), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [110521] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1546), 1, - sym_parameter_parens, - STATE(1547), 1, - sym_parameter_bracks, + ACTIONS(5052), 1, + anon_sym_DOT2, + STATE(435), 1, + sym_path, + STATE(916), 1, + sym_cell_path, + STATE(2283), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(3642), 1, sym_comment, - STATE(4030), 1, - aux_sym_decl_def_repeat1, - STATE(4506), 1, - sym_long_flag, - [109887] = 7, - ACTIONS(3), 1, + ACTIONS(7081), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [110546] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(7091), 1, - anon_sym_DOT, + ACTIONS(1523), 1, + sym__entry_separator, STATE(3643), 1, sym_comment, - STATE(4293), 1, - sym__immediate_decimal, - ACTIONS(6430), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6432), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [109911] = 5, + ACTIONS(1521), 7, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [110565] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7085), 1, + anon_sym_DASH2, + STATE(3644), 1, + sym_comment, + ACTIONS(7083), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [110584] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7093), 1, + ACTIONS(7087), 1, aux_sym__immediate_decimal_token5, - STATE(3644), 1, + STATE(3645), 1, sym_comment, ACTIONS(771), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(773), 4, + sym__unquoted_pattern, + ACTIONS(773), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [109931] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3645), 1, - sym_comment, - ACTIONS(1872), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [109949] = 9, - ACTIONS(3), 1, + [110605] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7095), 1, - anon_sym_RBRACK, + ACTIONS(1856), 1, + sym__table_head_separator, + ACTIONS(7089), 1, + anon_sym_DOT2, STATE(3646), 1, sym_comment, - STATE(4003), 1, - aux_sym__types_body_repeat1, - STATE(4540), 1, - sym_val_list, - STATE(4549), 1, - aux_sym__table_body_repeat1, - STATE(5022), 1, - sym__table_body, - [109977] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1434), 1, + STATE(4367), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4827), 1, + sym_path, + STATE(5035), 1, + sym_cell_path, + ACTIONS(7073), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, sym__entry_separator, - ACTIONS(7069), 1, + [110632] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5290), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(712), 1, sym_path, - STATE(368), 1, + STATE(1288), 1, sym_cell_path, + STATE(2447), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(3647), 1, sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1432), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [110003] = 9, + ACTIONS(7091), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [110657] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1548), 1, - sym_parameter_parens, - STATE(1549), 1, - sym_parameter_bracks, + ACTIONS(7095), 1, + anon_sym_DOT2, + STATE(367), 1, + sym_path, STATE(3648), 1, sym_comment, - STATE(3674), 1, - aux_sym_decl_def_repeat1, - STATE(4506), 1, - sym_long_flag, - [110031] = 4, + STATE(3771), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4625), 1, + sym_cell_path, + ACTIONS(7093), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [110682] = 8, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1952), 1, + sym__entry_separator, + ACTIONS(1956), 1, + anon_sym_LPAREN2, + ACTIONS(1962), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7097), 1, + anon_sym_DOT_DOT2, STATE(3649), 1, sym_comment, - ACTIONS(1872), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1870), 4, - anon_sym_LPAREN2, + ACTIONS(1954), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7099), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [110049] = 9, + [110709] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7097), 1, - anon_sym_RBRACK, + ACTIONS(7103), 1, + anon_sym_DOT2, + STATE(2504), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2607), 1, + sym_path, + STATE(3076), 1, + sym_cell_path, STATE(3650), 1, sym_comment, - STATE(4003), 1, - aux_sym__types_body_repeat1, - STATE(4540), 1, - sym_val_list, - STATE(4549), 1, - aux_sym__table_body_repeat1, - STATE(4794), 1, - sym__table_body, - [110077] = 9, + ACTIONS(7101), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [110734] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1551), 1, - sym_parameter_parens, - STATE(1552), 1, - sym_parameter_bracks, STATE(3651), 1, sym_comment, - STATE(4030), 1, - aux_sym_decl_def_repeat1, - STATE(4506), 1, - sym_long_flag, - [110105] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3652), 1, - sym_comment, - ACTIONS(849), 2, + ACTIONS(1808), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(851), 5, - anon_sym_LBRACE, + ACTIONS(1806), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [110123] = 7, + [110753] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6961), 1, + ACTIONS(1842), 1, anon_sym_DOT2, - STATE(2258), 1, - sym_cell_path, - STATE(2511), 1, - sym_path, - STATE(2556), 1, + STATE(416), 1, aux_sym__where_predicate_lhs_repeat1, + STATE(435), 1, + sym_path, + STATE(916), 1, + sym_cell_path, + STATE(3652), 1, + sym_comment, + ACTIONS(7105), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [110778] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(1942), 1, + sym__space, + ACTIONS(1946), 1, + anon_sym_LPAREN2, + ACTIONS(7107), 1, + anon_sym_DOT_DOT2, STATE(3653), 1, sym_comment, - ACTIONS(1434), 3, - anon_sym_EQ, + ACTIONS(1944), 2, sym__newline, - anon_sym_COLON, - [110147] = 9, - ACTIONS(3), 1, + anon_sym_SEMI, + ACTIONS(7109), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [110805] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1576), 1, - sym_parameter_parens, - STATE(1604), 1, - sym_parameter_bracks, STATE(3654), 1, sym_comment, - STATE(3727), 1, - aux_sym_decl_def_repeat1, - STATE(4506), 1, - sym_long_flag, - [110175] = 8, + ACTIONS(1738), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1740), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [110824] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1858), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, STATE(3655), 1, sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4280), 1, - sym_cell_path, - ACTIONS(1860), 2, + ACTIONS(1806), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1808), 4, anon_sym_RBRACK, anon_sym_RBRACE, - [110201] = 9, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [110843] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7099), 1, - anon_sym_RBRACK, + ACTIONS(7002), 1, + aux_sym__immediate_decimal_token5, STATE(3656), 1, sym_comment, - STATE(4003), 1, - aux_sym__types_body_repeat1, - STATE(4540), 1, - sym_val_list, - STATE(4549), 1, - aux_sym__table_body_repeat1, - STATE(4988), 1, - sym__table_body, - [110229] = 9, - ACTIONS(3), 1, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [110864] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1528), 1, - sym_parameter_parens, - STATE(1529), 1, - sym_parameter_bracks, STATE(3657), 1, sym_comment, - STATE(3708), 1, - aux_sym_decl_def_repeat1, - STATE(4506), 1, - sym_long_flag, - [110257] = 9, + ACTIONS(1738), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1740), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [110883] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1553), 1, - sym_parameter_parens, - STATE(1554), 1, - sym_parameter_bracks, STATE(3658), 1, sym_comment, - STATE(3688), 1, - aux_sym_decl_def_repeat1, - STATE(4506), 1, - sym_long_flag, - [110285] = 9, + ACTIONS(1846), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1844), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [110902] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1509), 1, - sym_parameter_parens, - STATE(1662), 1, - sym_parameter_bracks, + ACTIONS(5052), 1, + anon_sym_DOT2, + STATE(435), 1, + sym_path, + STATE(2283), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(3659), 1, sym_comment, - STATE(4030), 1, - aux_sym_decl_def_repeat1, - STATE(4506), 1, - sym_long_flag, - [110313] = 7, + STATE(4359), 1, + sym_cell_path, + ACTIONS(7111), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [110927] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6949), 1, - anon_sym_DOT2, STATE(3660), 1, sym_comment, - STATE(3755), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4260), 1, - sym_path, - STATE(4522), 1, - sym_cell_path, - ACTIONS(1860), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [110337] = 4, + ACTIONS(1806), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1808), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [110946] = 8, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1434), 1, + sym__entry_separator, + ACTIONS(7113), 1, + anon_sym_DOT2, + STATE(367), 1, + sym_path, + STATE(374), 1, + sym_cell_path, STATE(3661), 1, sym_comment, - ACTIONS(1641), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1643), 4, + STATE(3771), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1432), 3, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [110355] = 9, + anon_sym_COLON2, + [110973] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, + ACTIONS(1952), 1, + sym__space, + ACTIONS(1956), 1, + anon_sym_LPAREN2, + ACTIONS(1962), 1, + sym__unquoted_pattern, + ACTIONS(7115), 1, + anon_sym_DOT_DOT2, STATE(3662), 1, sym_comment, - STATE(4024), 1, - sym__variable_name, - STATE(4180), 1, - sym_val_variable, - STATE(4301), 1, - sym__assignment_pattern, - [110383] = 4, + ACTIONS(1954), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7117), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [111000] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7119), 1, + anon_sym_DOT2, + STATE(2552), 1, + sym_path, + STATE(3663), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1496), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + [111021] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3663), 1, + STATE(3664), 1, sym_comment, - ACTIONS(1822), 3, + ACTIONS(1844), 4, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1824), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, + ACTIONS(1846), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, - [110401] = 8, - ACTIONS(103), 1, + sym__unquoted_pattern, + [111040] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1878), 1, - sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(1842), 1, anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3664), 1, - sym_comment, - STATE(3778), 1, + STATE(416), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4215), 1, + STATE(435), 1, + sym_path, + STATE(916), 1, sym_cell_path, - ACTIONS(1880), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [110427] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7101), 1, - anon_sym_RBRACK, STATE(3665), 1, sym_comment, - STATE(4003), 1, - aux_sym__types_body_repeat1, - STATE(4540), 1, - sym_val_list, - STATE(4549), 1, - aux_sym__table_body_repeat1, - STATE(5047), 1, - sym__table_body, - [110455] = 9, + ACTIONS(7122), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [111065] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1663), 1, - sym_parameter_parens, - STATE(1664), 1, - sym_parameter_bracks, - STATE(3641), 1, - aux_sym_decl_def_repeat1, + ACTIONS(6944), 1, + anon_sym_DOT2, + STATE(2552), 1, + sym_path, + STATE(2987), 1, + sym_cell_path, + STATE(3618), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(3666), 1, sym_comment, - STATE(4506), 1, - sym_long_flag, - [110483] = 8, + ACTIONS(7124), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [111090] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1862), 1, - sym__entry_separator, - ACTIONS(7038), 1, - anon_sym_DOT2, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(7126), 1, + aux_sym__immediate_decimal_token5, STATE(3667), 1, sym_comment, - STATE(3891), 1, - sym_path, - STATE(4202), 1, - sym_cell_path, - ACTIONS(1864), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [110509] = 8, + ACTIONS(1808), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1806), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [111111] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1878), 1, + ACTIONS(1460), 1, sym__entry_separator, - ACTIONS(7038), 1, - anon_sym_DOT2, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, STATE(3668), 1, sym_comment, - STATE(3891), 1, - sym_path, - STATE(4215), 1, - sym_cell_path, - ACTIONS(1880), 2, + ACTIONS(1458), 7, anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT, - [110535] = 8, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [111130] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1862), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, STATE(3669), 1, sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4202), 1, - sym_cell_path, - ACTIONS(1864), 2, + ACTIONS(1844), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1846), 4, anon_sym_RBRACK, anon_sym_RBRACE, - [110561] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7103), 1, - anon_sym_RBRACK, - STATE(3670), 1, - sym_comment, - STATE(4003), 1, - aux_sym__types_body_repeat1, - STATE(4540), 1, - sym_val_list, - STATE(4549), 1, - aux_sym__table_body_repeat1, - STATE(5057), 1, - sym__table_body, - [110589] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7105), 1, - anon_sym_alias, - ACTIONS(7107), 1, - anon_sym_const, - ACTIONS(7109), 1, - anon_sym_def, - ACTIONS(7111), 1, - anon_sym_use, - ACTIONS(7113), 1, - anon_sym_extern, - ACTIONS(7115), 1, - anon_sym_module, - STATE(3671), 1, - sym_comment, - [110617] = 8, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [111149] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6724), 1, - anon_sym_DOT_DOT2, - ACTIONS(6728), 1, - sym_filesize_unit, - ACTIONS(6730), 1, - sym_duration_unit, - STATE(3672), 1, + STATE(3670), 1, sym_comment, - ACTIONS(6726), 2, + ACTIONS(1806), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [110643] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1974), 1, sym__entry_separator, - ACTIONS(1976), 1, + ACTIONS(1808), 4, anon_sym_RBRACK, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7117), 1, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - STATE(3673), 1, - sym_comment, - ACTIONS(7119), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [110669] = 9, - ACTIONS(3), 1, + sym__unquoted_pattern_in_list, + [111168] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1555), 1, - sym_parameter_parens, - STATE(1556), 1, - sym_parameter_bracks, - STATE(3674), 1, + ACTIONS(1519), 1, + sym__entry_separator, + STATE(3671), 1, sym_comment, - STATE(4030), 1, - aux_sym_decl_def_repeat1, - STATE(4506), 1, - sym_long_flag, - [110697] = 9, + ACTIONS(1517), 7, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [111187] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, + ACTIONS(3932), 1, sym__newline, - ACTIONS(7121), 1, + ACTIONS(7128), 1, + anon_sym_LBRACK, + ACTIONS(7130), 1, anon_sym_RBRACK, - STATE(3675), 1, + STATE(3672), 1, sym_comment, - STATE(4003), 1, + STATE(3998), 1, aux_sym__types_body_repeat1, - STATE(4540), 1, - sym_val_list, - STATE(4549), 1, + STATE(4399), 1, aux_sym__table_body_repeat1, - STATE(5004), 1, + STATE(4432), 1, + sym_val_list, + STATE(5235), 1, sym__table_body, - [110725] = 8, - ACTIONS(103), 1, + [111215] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_RBRACE, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(7123), 1, - anon_sym_DOT_DOT2, - ACTIONS(7127), 1, - sym_filesize_unit, - ACTIONS(7129), 1, - sym_duration_unit, - STATE(3676), 1, + ACTIONS(7132), 1, + aux_sym__immediate_decimal_token5, + STATE(3673), 1, sym_comment, - ACTIONS(7125), 2, + ACTIONS(771), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(773), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [110751] = 6, + sym_filesize_unit, + sym_duration_unit, + [111235] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7131), 1, - anon_sym_QMARK2, - ACTIONS(7133), 1, - anon_sym_BANG, - STATE(3677), 1, + ACTIONS(2662), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2664), 1, + anon_sym_COLON2, + ACTIONS(7134), 1, + sym_identifier, + ACTIONS(7136), 1, + anon_sym_DOLLAR, + STATE(3674), 1, sym_comment, - STATE(4322), 1, - sym__path_suffix, - ACTIONS(1446), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [110773] = 6, - ACTIONS(103), 1, + STATE(4070), 1, + sym__variable_name, + STATE(4191), 1, + sym_val_variable, + STATE(4327), 1, + sym__assignment_pattern, + [111263] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7135), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7138), 1, anon_sym_DOT, - ACTIONS(7137), 1, - aux_sym__immediate_decimal_token5, - STATE(3678), 1, + STATE(3675), 1, sym_comment, - ACTIONS(1736), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1738), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [110795] = 6, + STATE(4185), 1, + sym__immediate_decimal, + ACTIONS(7140), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7142), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [111287] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7139), 1, - anon_sym_DOT, - ACTIONS(7141), 1, - aux_sym__immediate_decimal_token5, - STATE(3679), 1, + ACTIONS(2662), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2664), 1, + anon_sym_COLON2, + ACTIONS(7134), 1, + sym_identifier, + ACTIONS(7136), 1, + anon_sym_DOLLAR, + STATE(3676), 1, sym_comment, - ACTIONS(1736), 2, - anon_sym_LPAREN2, + STATE(4070), 1, + sym__variable_name, + STATE(4191), 1, + sym_val_variable, + STATE(4329), 1, + sym__assignment_pattern, + [111315] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1942), 1, sym__entry_separator, - ACTIONS(1738), 3, + ACTIONS(1944), 1, anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [110817] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(7143), 1, + ACTIONS(1946), 1, + anon_sym_LPAREN2, + ACTIONS(7144), 1, anon_sym_DOT_DOT2, - STATE(3680), 1, + STATE(3677), 1, sym_comment, - ACTIONS(7145), 2, + ACTIONS(7146), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1974), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [110839] = 6, + [111341] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7147), 1, + ACTIONS(7148), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7149), 1, + ACTIONS(7150), 1, aux_sym__immediate_decimal_token5, - STATE(3681), 1, + STATE(3678), 1, sym_comment, - ACTIONS(1728), 2, + ACTIONS(1740), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1726), 3, + ACTIONS(1738), 3, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [110861] = 8, + [111363] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1882), 1, + ACTIONS(1854), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7113), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(367), 1, sym_path, - STATE(3682), 1, + STATE(3679), 1, sym_comment, - STATE(3778), 1, + STATE(3771), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4258), 1, + STATE(4422), 1, sym_cell_path, - ACTIONS(1884), 2, + ACTIONS(1856), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [110887] = 4, + [111389] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3683), 1, + ACTIONS(6944), 1, + anon_sym_DOT2, + STATE(2552), 1, + sym_path, + STATE(2930), 1, + sym_cell_path, + STATE(3618), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3680), 1, sym_comment, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [110905] = 8, + ACTIONS(1886), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [111413] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5233), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3684), 1, + STATE(3681), 1, sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4374), 1, - sym_cell_path, - ACTIONS(5231), 2, + ACTIONS(1866), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1868), 4, anon_sym_RBRACK, anon_sym_RBRACE, - [110931] = 9, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [111431] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7151), 1, - anon_sym_RBRACK, - STATE(3685), 1, - sym_comment, - STATE(4003), 1, - aux_sym__types_body_repeat1, - STATE(4540), 1, - sym_val_list, - STATE(4549), 1, - aux_sym__table_body_repeat1, - STATE(4799), 1, - sym__table_body, - [110959] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(6978), 1, - anon_sym_def, - ACTIONS(6980), 1, - anon_sym_use, - ACTIONS(6982), 1, - anon_sym_extern, - ACTIONS(6984), 1, - anon_sym_module, - ACTIONS(7153), 1, - anon_sym_alias, - ACTIONS(7155), 1, - anon_sym_const, - STATE(3686), 1, + STATE(3682), 1, sym_comment, - [110987] = 6, + ACTIONS(771), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(773), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [111449] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1730), 1, sym__unquoted_pattern, - ACTIONS(7157), 1, - anon_sym_DOT_DOT2, - STATE(3687), 1, + ACTIONS(7152), 1, + anon_sym_DOT, + ACTIONS(7154), 1, + aux_sym__immediate_decimal_token5, + STATE(3683), 1, sym_comment, - ACTIONS(7159), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1964), 3, + ACTIONS(1728), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [111009] = 9, + [111471] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6944), 1, + anon_sym_DOT2, + STATE(2552), 1, + sym_path, + STATE(3052), 1, + sym_cell_path, + STATE(3618), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3684), 1, + sym_comment, + ACTIONS(1882), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [111495] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7156), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7158), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7160), 1, anon_sym_DASH_DASH, - STATE(1557), 1, + STATE(1673), 1, sym_parameter_parens, - STATE(1558), 1, + STATE(1674), 1, sym_parameter_bracks, - STATE(3688), 1, + STATE(3685), 1, sym_comment, - STATE(4030), 1, + STATE(4081), 1, aux_sym_decl_def_repeat1, - STATE(4506), 1, + STATE(4586), 1, sym_long_flag, - [111037] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3689), 1, - sym_comment, - STATE(4024), 1, - sym__variable_name, - STATE(4180), 1, - sym_val_variable, - STATE(4302), 1, - sym__assignment_pattern, - [111065] = 7, + [111523] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6852), 1, + ACTIONS(6944), 1, anon_sym_DOT2, - STATE(2511), 1, + STATE(2552), 1, sym_path, - STATE(3032), 1, + STATE(3088), 1, sym_cell_path, - STATE(3592), 1, + STATE(3618), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3690), 1, + STATE(3686), 1, sym_comment, - ACTIONS(1878), 3, + ACTIONS(1838), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [111089] = 9, + [111547] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1882), 1, + sym__entry_separator, + ACTIONS(7162), 1, + anon_sym_DOT2, + STATE(3687), 1, + sym_comment, + STATE(3921), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4384), 1, + sym_path, + STATE(4393), 1, + sym_cell_path, + ACTIONS(1884), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [111573] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1838), 1, + sym__entry_separator, + ACTIONS(7162), 1, + anon_sym_DOT2, + STATE(3688), 1, + sym_comment, + STATE(3921), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4227), 1, + sym_cell_path, + STATE(4384), 1, + sym_path, + ACTIONS(1840), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [111599] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7164), 1, + anon_sym_DOT, + ACTIONS(7166), 1, + aux_sym__immediate_decimal_token5, + STATE(3689), 1, + sym_comment, + ACTIONS(1728), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1730), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [111621] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3690), 1, + sym_comment, + ACTIONS(874), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(876), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [111639] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(3932), 1, + sym__newline, + ACTIONS(7128), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1559), 1, - sym_parameter_parens, - STATE(1560), 1, - sym_parameter_bracks, + ACTIONS(7168), 1, + anon_sym_RBRACK, STATE(3691), 1, sym_comment, - STATE(3706), 1, - aux_sym_decl_def_repeat1, - STATE(4506), 1, - sym_long_flag, - [111117] = 8, + STATE(3998), 1, + aux_sym__types_body_repeat1, + STATE(4399), 1, + aux_sym__table_body_repeat1, + STATE(4432), 1, + sym_val_list, + STATE(5008), 1, + sym__table_body, + [111667] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5273), 1, + ACTIONS(1862), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7113), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(367), 1, sym_path, STATE(3692), 1, sym_comment, - STATE(3778), 1, + STATE(3771), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4408), 1, + STATE(4581), 1, sym_cell_path, - ACTIONS(5271), 2, + ACTIONS(1864), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [111143] = 8, + [111693] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1964), 1, + ACTIONS(1882), 1, sym__entry_separator, - ACTIONS(1966), 1, - anon_sym_RBRACE, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(7161), 1, - anon_sym_DOT_DOT2, + ACTIONS(7113), 1, + anon_sym_DOT2, + STATE(367), 1, + sym_path, STATE(3693), 1, sym_comment, - ACTIONS(7163), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [111169] = 4, + STATE(3771), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4393), 1, + sym_cell_path, + ACTIONS(1884), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [111719] = 8, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(5397), 1, + sym__entry_separator, + ACTIONS(7113), 1, + anon_sym_DOT2, + STATE(367), 1, + sym_path, STATE(3694), 1, sym_comment, - ACTIONS(1728), 3, + STATE(3771), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4630), 1, + sym_cell_path, + ACTIONS(5395), 2, + anon_sym_RBRACK, anon_sym_RBRACE, + [111745] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3695), 1, + sym_comment, + ACTIONS(1740), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1726), 4, - anon_sym_LPAREN2, + sym__unquoted_pattern, + ACTIONS(1738), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [111187] = 9, - ACTIONS(103), 1, + [111763] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(6974), 1, - anon_sym_alias, - ACTIONS(6976), 1, - anon_sym_const, - ACTIONS(6978), 1, - anon_sym_def, - ACTIONS(6980), 1, - anon_sym_use, - ACTIONS(6982), 1, - anon_sym_extern, - ACTIONS(6984), 1, - anon_sym_module, - STATE(3695), 1, + ACTIONS(7156), 1, + anon_sym_LBRACK, + ACTIONS(7158), 1, + anon_sym_LPAREN, + ACTIONS(7160), 1, + anon_sym_DASH_DASH, + STATE(1665), 1, + sym_parameter_parens, + STATE(1668), 1, + sym_parameter_bracks, + STATE(3696), 1, + sym_comment, + STATE(4081), 1, + aux_sym_decl_def_repeat1, + STATE(4586), 1, + sym_long_flag, + [111791] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3697), 1, sym_comment, - [111215] = 8, + ACTIONS(1808), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1806), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [111809] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7030), 1, + ACTIONS(7170), 1, + anon_sym_QMARK2, + ACTIONS(7172), 1, + anon_sym_BANG, + STATE(3698), 1, + sym_comment, + STATE(4153), 1, + sym__path_suffix, + ACTIONS(1438), 4, + anon_sym_RBRACK, sym__entry_separator, - ACTIONS(7038), 1, + sym__table_head_separator, anon_sym_DOT2, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3696), 1, + [111831] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3699), 1, sym_comment, - STATE(3891), 1, - sym_path, - STATE(4587), 1, - sym_cell_path, - ACTIONS(7165), 2, + ACTIONS(1661), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1663), 4, anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT, - [111241] = 9, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [111849] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7167), 1, + ACTIONS(1952), 1, + sym__entry_separator, + ACTIONS(1954), 1, anon_sym_RBRACK, - STATE(3697), 1, - sym_comment, - STATE(4003), 1, - aux_sym__types_body_repeat1, - STATE(4540), 1, - sym_val_list, - STATE(4549), 1, - aux_sym__table_body_repeat1, - STATE(4989), 1, - sym__table_body, - [111269] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7169), 1, - anon_sym_DOT, - STATE(3698), 1, + ACTIONS(1956), 1, + anon_sym_LPAREN2, + ACTIONS(1962), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7174), 1, + anon_sym_DOT_DOT2, + STATE(3700), 1, sym_comment, - STATE(4256), 1, - sym__immediate_decimal, - ACTIONS(7171), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7173), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [111293] = 7, - ACTIONS(3), 1, + ACTIONS(7176), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [111875] = 9, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2826), 1, - sym_cell_path, - STATE(3592), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3699), 1, + ACTIONS(2533), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7028), 1, + anon_sym_def, + ACTIONS(7030), 1, + anon_sym_use, + ACTIONS(7032), 1, + anon_sym_extern, + ACTIONS(7034), 1, + anon_sym_module, + ACTIONS(7178), 1, + anon_sym_alias, + ACTIONS(7180), 1, + anon_sym_const, + STATE(3701), 1, sym_comment, - ACTIONS(1850), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [111317] = 6, + [111903] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern, - ACTIONS(7175), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7177), 1, - aux_sym__immediate_decimal_token5, - STATE(3700), 1, + STATE(3702), 1, sym_comment, - ACTIONS(1726), 4, - anon_sym_if, + ACTIONS(1846), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1844), 5, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [111339] = 9, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [111921] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7038), 1, + ACTIONS(7162), 1, anon_sym_DOT2, - ACTIONS(7165), 1, - anon_sym_DOT_DOT, - ACTIONS(7179), 1, + ACTIONS(7182), 1, anon_sym_RBRACK, - ACTIONS(7183), 1, + ACTIONS(7186), 1, + anon_sym_DOT_DOT, + ACTIONS(7188), 1, sym__entry_separator, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3701), 1, + STATE(3703), 1, sym_comment, - STATE(3891), 1, + STATE(3921), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4384), 1, sym_path, - STATE(4616), 1, + STATE(4624), 1, sym_cell_path, - [111367] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7187), 1, - anon_sym_RBRACK, - STATE(3702), 1, - sym_comment, - STATE(4003), 1, - aux_sym__types_body_repeat1, - STATE(4540), 1, - sym_val_list, - STATE(4549), 1, - aux_sym__table_body_repeat1, - STATE(5202), 1, - sym__table_body, - [111395] = 7, + [111949] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2934), 1, - sym_cell_path, - STATE(3592), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3703), 1, - sym_comment, - ACTIONS(1862), 3, + ACTIONS(7156), 1, anon_sym_LBRACK, + ACTIONS(7158), 1, anon_sym_LPAREN, + ACTIONS(7160), 1, anon_sym_DASH_DASH, - [111419] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6949), 1, - anon_sym_DOT2, + STATE(1541), 1, + sym_parameter_bracks, + STATE(1666), 1, + sym_parameter_parens, + STATE(3696), 1, + aux_sym_decl_def_repeat1, STATE(3704), 1, sym_comment, - STATE(3755), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4260), 1, - sym_path, - STATE(4397), 1, - sym_cell_path, - ACTIONS(1884), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [111443] = 4, - ACTIONS(3), 1, + STATE(4586), 1, + sym_long_flag, + [111977] = 9, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2878), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7192), 1, + anon_sym_alias, + ACTIONS(7194), 1, + anon_sym_const, + ACTIONS(7196), 1, + anon_sym_def, + ACTIONS(7198), 1, + anon_sym_use, + ACTIONS(7200), 1, + anon_sym_extern, + ACTIONS(7202), 1, + anon_sym_module, STATE(3705), 1, sym_comment, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [111461] = 9, + [112005] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7156), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7158), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7160), 1, anon_sym_DASH_DASH, - STATE(1561), 1, + STATE(1606), 1, sym_parameter_parens, - STATE(1562), 1, + STATE(1607), 1, sym_parameter_bracks, STATE(3706), 1, sym_comment, - STATE(4030), 1, + STATE(3768), 1, aux_sym_decl_def_repeat1, - STATE(4506), 1, + STATE(4586), 1, sym_long_flag, - [111489] = 9, - ACTIONS(103), 1, + [112033] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6944), 1, - anon_sym_RBRACK, - ACTIONS(6947), 1, - anon_sym_DOT_DOT, - ACTIONS(7069), 1, - anon_sym_DOT2, - ACTIONS(7189), 1, - sym__entry_separator, - STATE(339), 1, - sym_path, + ACTIONS(7156), 1, + anon_sym_LBRACK, + ACTIONS(7158), 1, + anon_sym_LPAREN, + ACTIONS(7160), 1, + anon_sym_DASH_DASH, + STATE(1532), 1, + sym_parameter_parens, + STATE(1543), 1, + sym_parameter_bracks, STATE(3707), 1, sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4258), 1, - sym_cell_path, - [111517] = 9, + STATE(4081), 1, + aux_sym_decl_def_repeat1, + STATE(4586), 1, + sym_long_flag, + [112061] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7156), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7158), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7160), 1, anon_sym_DASH_DASH, - STATE(1516), 1, + STATE(1581), 1, sym_parameter_parens, - STATE(1517), 1, + STATE(1649), 1, sym_parameter_bracks, + STATE(3685), 1, + aux_sym_decl_def_repeat1, STATE(3708), 1, sym_comment, - STATE(4030), 1, - aux_sym_decl_def_repeat1, - STATE(4506), 1, + STATE(4586), 1, sym_long_flag, - [111545] = 9, + [112089] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, + ACTIONS(7156), 1, anon_sym_LBRACK, - ACTIONS(3934), 1, - sym__newline, - ACTIONS(7192), 1, - anon_sym_RBRACK, + ACTIONS(7158), 1, + anon_sym_LPAREN, + ACTIONS(7160), 1, + anon_sym_DASH_DASH, + STATE(1669), 1, + sym_parameter_parens, + STATE(1670), 1, + sym_parameter_bracks, STATE(3709), 1, sym_comment, - STATE(4003), 1, - aux_sym__types_body_repeat1, - STATE(4540), 1, - sym_val_list, - STATE(4549), 1, - aux_sym__table_body_repeat1, - STATE(5079), 1, - sym__table_body, - [111573] = 8, - ACTIONS(3), 1, + STATE(3712), 1, + aux_sym_decl_def_repeat1, + STATE(4586), 1, + sym_long_flag, + [112117] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, - anon_sym_LBRACE, - ACTIONS(1762), 1, - sym__unquoted_pattern, - ACTIONS(7194), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_record, + ACTIONS(1942), 1, + sym__entry_separator, + ACTIONS(1944), 1, + anon_sym_RBRACE, + ACTIONS(1946), 1, + anon_sym_LPAREN2, + ACTIONS(7204), 1, anon_sym_DOT_DOT2, - ACTIONS(7198), 1, - sym_filesize_unit, - ACTIONS(7200), 1, - sym_duration_unit, STATE(3710), 1, sym_comment, - ACTIONS(7196), 2, + ACTIONS(7206), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [111599] = 8, + [112143] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(7208), 1, + anon_sym_DOT, + STATE(3711), 1, + sym_comment, + STATE(4121), 1, + sym__immediate_decimal, + ACTIONS(6498), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6500), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [112167] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7156), 1, + anon_sym_LBRACK, + ACTIONS(7158), 1, + anon_sym_LPAREN, + ACTIONS(7160), 1, + anon_sym_DASH_DASH, + STATE(1634), 1, + sym_parameter_parens, + STATE(1636), 1, + sym_parameter_bracks, + STATE(3712), 1, + sym_comment, + STATE(4081), 1, + aux_sym_decl_def_repeat1, + STATE(4586), 1, + sym_long_flag, + [112195] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5251), 1, + ACTIONS(890), 1, sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3711), 1, + ACTIONS(6335), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6707), 1, + anon_sym_DOT_DOT2, + ACTIONS(6711), 1, + sym_filesize_unit, + ACTIONS(6713), 1, + sym_duration_unit, + STATE(3713), 1, sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4528), 1, - sym_cell_path, - ACTIONS(5249), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [111625] = 8, + ACTIONS(6709), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [112221] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6963), 1, + ACTIONS(7048), 1, sym__entry_separator, - ACTIONS(7038), 1, + ACTIONS(7162), 1, anon_sym_DOT2, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3712), 1, + STATE(3714), 1, sym_comment, - STATE(3891), 1, + STATE(3921), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4384), 1, sym_path, - STATE(4509), 1, + STATE(4485), 1, sym_cell_path, - ACTIONS(7202), 2, + ACTIONS(7186), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [111651] = 9, - ACTIONS(3), 1, + [112247] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1533), 1, - sym_parameter_parens, - STATE(1534), 1, - sym_parameter_bracks, - STATE(3713), 1, + ACTIONS(1952), 1, + sym__entry_separator, + ACTIONS(1954), 1, + anon_sym_RBRACE, + ACTIONS(1956), 1, + anon_sym_LPAREN2, + ACTIONS(1962), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7210), 1, + anon_sym_DOT_DOT2, + STATE(3715), 1, sym_comment, - STATE(4030), 1, - aux_sym_decl_def_repeat1, - STATE(4506), 1, - sym_long_flag, - [111679] = 5, + ACTIONS(7212), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [112273] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7206), 1, + ACTIONS(7216), 1, anon_sym_DOT_DOT2, - STATE(3714), 1, + STATE(3716), 1, sym_comment, - ACTIONS(7208), 2, + ACTIONS(7218), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7204), 4, + ACTIONS(7214), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [111699] = 5, + [112293] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3932), 1, + sym__newline, + ACTIONS(7128), 1, + anon_sym_LBRACK, + ACTIONS(7220), 1, + anon_sym_RBRACK, + STATE(3717), 1, + sym_comment, + STATE(3998), 1, + aux_sym__types_body_repeat1, + STATE(4399), 1, + aux_sym__table_body_repeat1, + STATE(4432), 1, + sym_val_list, + STATE(4933), 1, + sym__table_body, + [112321] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7206), 1, + ACTIONS(7216), 1, anon_sym_DOT_DOT2, - STATE(3715), 1, + STATE(3718), 1, sym_comment, - ACTIONS(7208), 2, + ACTIONS(7218), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7210), 4, + ACTIONS(7222), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [111719] = 9, - ACTIONS(3), 1, + [112341] = 9, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1538), 1, - sym_parameter_parens, - STATE(1539), 1, - sym_parameter_bracks, - STATE(3642), 1, - aux_sym_decl_def_repeat1, - STATE(3716), 1, + ACTIONS(7070), 1, + anon_sym_RBRACK, + ACTIONS(7073), 1, + anon_sym_DOT_DOT, + ACTIONS(7113), 1, + anon_sym_DOT2, + ACTIONS(7224), 1, + sym__entry_separator, + STATE(367), 1, + sym_path, + STATE(3719), 1, sym_comment, - STATE(4506), 1, - sym_long_flag, - [111747] = 4, - ACTIONS(3), 1, + STATE(3771), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4422), 1, + sym_cell_path, + [112369] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3717), 1, + STATE(3720), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 5, - anon_sym_LBRACE, + ACTIONS(1800), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [111765] = 8, + sym__entry_separator, + ACTIONS(1802), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [112387] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1850), 1, + ACTIONS(5377), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7113), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(367), 1, sym_path, - STATE(3718), 1, + STATE(3721), 1, sym_comment, - STATE(3778), 1, + STATE(3771), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4169), 1, + STATE(4637), 1, sym_cell_path, - ACTIONS(1853), 2, + ACTIONS(5375), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [111791] = 8, + [112413] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1964), 1, + ACTIONS(7111), 1, sym__entry_separator, - ACTIONS(1966), 1, - anon_sym_RBRACK, - ACTIONS(1968), 1, - anon_sym_LPAREN2, - ACTIONS(7212), 1, - anon_sym_DOT_DOT2, - STATE(3719), 1, + ACTIONS(7162), 1, + anon_sym_DOT2, + STATE(3722), 1, sym_comment, - ACTIONS(7214), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [111817] = 9, + STATE(3921), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4384), 1, + sym_path, + STATE(4571), 1, + sym_cell_path, + ACTIONS(7227), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [112439] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2533), 1, aux_sym_cmd_identifier_token2, - ACTIONS(6978), 1, - anon_sym_def, - ACTIONS(6980), 1, - anon_sym_use, - ACTIONS(6982), 1, - anon_sym_extern, - ACTIONS(6984), 1, - anon_sym_module, - ACTIONS(7216), 1, + ACTIONS(7024), 1, anon_sym_alias, - ACTIONS(7218), 1, + ACTIONS(7026), 1, anon_sym_const, - STATE(3720), 1, - sym_comment, - [111845] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1540), 1, - sym_parameter_parens, - STATE(1541), 1, - sym_parameter_bracks, - STATE(3721), 1, - sym_comment, - STATE(4030), 1, - aux_sym_decl_def_repeat1, - STATE(4506), 1, - sym_long_flag, - [111873] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(6978), 1, + ACTIONS(7028), 1, anon_sym_def, - ACTIONS(6980), 1, + ACTIONS(7030), 1, anon_sym_use, - ACTIONS(6982), 1, + ACTIONS(7032), 1, anon_sym_extern, - ACTIONS(6984), 1, + ACTIONS(7034), 1, anon_sym_module, - ACTIONS(7220), 1, - anon_sym_alias, - ACTIONS(7222), 1, - anon_sym_const, - STATE(3722), 1, - sym_comment, - [111901] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7024), 1, - aux_sym__immediate_decimal_token5, STATE(3723), 1, sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(741), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [111921] = 9, + [112467] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(3932), 1, + sym__newline, + ACTIONS(7128), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1521), 1, - sym_parameter_parens, - STATE(1522), 1, - sym_parameter_bracks, + ACTIONS(7229), 1, + anon_sym_RBRACK, STATE(3724), 1, sym_comment, - STATE(4030), 1, - aux_sym_decl_def_repeat1, - STATE(4506), 1, - sym_long_flag, - [111949] = 9, + STATE(3998), 1, + aux_sym__types_body_repeat1, + STATE(4399), 1, + aux_sym__table_body_repeat1, + STATE(4432), 1, + sym_val_list, + STATE(5057), 1, + sym__table_body, + [112495] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(6978), 1, - anon_sym_def, - ACTIONS(6980), 1, - anon_sym_use, - ACTIONS(6982), 1, - anon_sym_extern, - ACTIONS(6984), 1, - anon_sym_module, - ACTIONS(7224), 1, - anon_sym_alias, - ACTIONS(7226), 1, - anon_sym_const, + ACTIONS(1434), 1, + sym__entry_separator, + ACTIONS(7162), 1, + anon_sym_DOT2, STATE(3725), 1, sym_comment, - [111977] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3726), 1, - sym_comment, - ACTIONS(1886), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1888), 4, + STATE(3921), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4384), 1, + sym_path, + STATE(4525), 1, + sym_cell_path, + ACTIONS(1432), 2, anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [111995] = 9, + [112521] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(7156), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, + ACTIONS(7158), 1, anon_sym_LPAREN, - ACTIONS(7059), 1, + ACTIONS(7160), 1, anon_sym_DASH_DASH, - STATE(1526), 1, + STATE(1601), 1, sym_parameter_parens, - STATE(1527), 1, + STATE(1633), 1, sym_parameter_bracks, - STATE(3727), 1, - sym_comment, - STATE(4030), 1, + STATE(3707), 1, aux_sym_decl_def_repeat1, - STATE(4506), 1, + STATE(3726), 1, + sym_comment, + STATE(4586), 1, sym_long_flag, - [112023] = 9, + [112549] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, + ACTIONS(3932), 1, sym__newline, - ACTIONS(7228), 1, + ACTIONS(7128), 1, + anon_sym_LBRACK, + ACTIONS(7231), 1, anon_sym_RBRACK, - STATE(3728), 1, + STATE(3727), 1, sym_comment, - STATE(4003), 1, + STATE(3998), 1, aux_sym__types_body_repeat1, - STATE(4540), 1, - sym_val_list, - STATE(4549), 1, + STATE(4399), 1, aux_sym__table_body_repeat1, - STATE(4950), 1, + STATE(4432), 1, + sym_val_list, + STATE(5121), 1, sym__table_body, - [112051] = 9, + [112577] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7233), 1, + anon_sym_DOT, + ACTIONS(7235), 1, + aux_sym__immediate_decimal_token5, + STATE(3728), 1, + sym_comment, + ACTIONS(1728), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1730), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [112599] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, + ACTIONS(3932), 1, + sym__newline, + ACTIONS(7128), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - ACTIONS(7059), 1, - anon_sym_DASH_DASH, - STATE(1535), 1, - sym_parameter_parens, - STATE(1536), 1, - sym_parameter_bracks, - STATE(3721), 1, - aux_sym_decl_def_repeat1, + ACTIONS(7237), 1, + anon_sym_RBRACK, STATE(3729), 1, sym_comment, - STATE(4506), 1, - sym_long_flag, - [112079] = 4, + STATE(3998), 1, + aux_sym__types_body_repeat1, + STATE(4399), 1, + aux_sym__table_body_repeat1, + STATE(4432), 1, + sym_val_list, + STATE(5231), 1, + sym__table_body, + [112627] = 9, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3932), 1, + sym__newline, + ACTIONS(7128), 1, + anon_sym_LBRACK, + ACTIONS(7239), 1, + anon_sym_RBRACK, STATE(3730), 1, sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [112097] = 8, - ACTIONS(103), 1, + STATE(3998), 1, + aux_sym__types_body_repeat1, + STATE(4399), 1, + aux_sym__table_body_repeat1, + STATE(4432), 1, + sym_val_list, + STATE(4838), 1, + sym__table_body, + [112655] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, + ACTIONS(1962), 1, + sym__unquoted_pattern, + ACTIONS(7241), 1, + anon_sym_DOT_DOT2, STATE(3731), 1, sym_comment, - STATE(4039), 1, - sym__variable_name, - STATE(4180), 1, - sym_val_variable, - STATE(4458), 1, - sym__assignment_pattern, - [112122] = 7, + ACTIONS(7243), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1952), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [112677] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3340), 1, - sym__blosure, + ACTIONS(1740), 1, + sym__unquoted_pattern, + ACTIONS(7245), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7247), 1, + aux_sym__immediate_decimal_token5, STATE(3732), 1, sym_comment, - STATE(3113), 2, - sym_block, - sym_val_closure, - [112145] = 6, - ACTIONS(3), 1, + ACTIONS(1738), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [112699] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(57), 1, - anon_sym_AT, - STATE(3733), 1, + ACTIONS(1496), 1, + sym__entry_separator, + ACTIONS(7249), 1, + anon_sym_DOT2, + STATE(367), 1, + sym_path, + STATE(3733), 2, sym_comment, - STATE(3803), 1, - aux_sym_attribute_list_repeat1, - STATE(4716), 1, - sym_attribute, - ACTIONS(7232), 3, - anon_sym_export, - anon_sym_def, - anon_sym_extern, - [112166] = 7, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1494), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON2, + [112721] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(3932), 1, sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(3340), 1, - sym__blosure, + ACTIONS(7128), 1, + anon_sym_LBRACK, + ACTIONS(7252), 1, + anon_sym_RBRACK, STATE(3734), 1, sym_comment, - STATE(3788), 1, - aux_sym__repeat_newline, - STATE(3113), 2, - sym_block, - sym_val_closure, - [112189] = 7, - ACTIONS(3), 1, + STATE(3998), 1, + aux_sym__types_body_repeat1, + STATE(4399), 1, + aux_sym__table_body_repeat1, + STATE(4432), 1, + sym_val_list, + STATE(4858), 1, + sym__table_body, + [112749] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3341), 1, - sym__blosure, + ACTIONS(7075), 1, + anon_sym_DOT2, STATE(3735), 1, sym_comment, - STATE(3113), 2, - sym_block, - sym_val_closure, - [112212] = 7, - ACTIONS(3), 1, + STATE(3812), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4124), 1, + sym_path, + STATE(4638), 1, + sym_cell_path, + ACTIONS(1864), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [112773] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(3341), 1, - sym__blosure, STATE(3736), 1, sym_comment, - STATE(3790), 1, - aux_sym__repeat_newline, - STATE(3113), 2, - sym_block, - sym_val_closure, - [112235] = 7, + ACTIONS(1740), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1738), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [112791] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5338), 1, - sym__space, - ACTIONS(7234), 1, - anon_sym_EQ2, - ACTIONS(7236), 1, - sym_short_flag_identifier, - STATE(3073), 1, - sym__flag_equals_value, + ACTIONS(1848), 1, + sym__entry_separator, + ACTIONS(7113), 1, + anon_sym_DOT2, + STATE(367), 1, + sym_path, STATE(3737), 1, sym_comment, - ACTIONS(5336), 2, - sym__newline, - anon_sym_SEMI, - [112258] = 6, + STATE(3771), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4423), 1, + sym_cell_path, + ACTIONS(1850), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [112817] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5346), 1, - sym__space, - ACTIONS(7238), 1, - anon_sym_DOT_DOT2, STATE(3738), 1, sym_comment, - ACTIONS(5344), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7240), 2, + ACTIONS(1870), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [112279] = 6, - ACTIONS(3), 1, + sym__entry_separator, + ACTIONS(1872), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [112835] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7242), 1, - anon_sym_DOT, - ACTIONS(7244), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(1440), 1, + sym__entry_separator, + ACTIONS(7254), 1, + anon_sym_QMARK2, + ACTIONS(7256), 1, + anon_sym_BANG, STATE(3739), 1, sym_comment, - ACTIONS(1736), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [112300] = 4, - ACTIONS(3), 1, + STATE(4097), 1, + sym__path_suffix, + ACTIONS(1438), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [112859] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7246), 1, - anon_sym_LT, STATE(3740), 1, sym_comment, - ACTIONS(5920), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [112317] = 4, - ACTIONS(3), 1, + ACTIONS(1808), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1806), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [112877] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7248), 1, - anon_sym_LT, + ACTIONS(7258), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7260), 1, + aux_sym__immediate_decimal_token5, STATE(3741), 1, sym_comment, - ACTIONS(5920), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [112334] = 6, + ACTIONS(1738), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1740), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [112899] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, + ACTIONS(890), 1, + anon_sym_LBRACE, + ACTIONS(1766), 1, sym__unquoted_pattern, - ACTIONS(7250), 1, - anon_sym_DOT, - ACTIONS(7252), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(7262), 1, + anon_sym_DOT_DOT2, + ACTIONS(7266), 1, + sym_filesize_unit, + ACTIONS(7268), 1, + sym_duration_unit, STATE(3742), 1, sym_comment, - ACTIONS(1736), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [112355] = 8, + ACTIONS(7264), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [112925] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, + ACTIONS(5401), 1, + sym__entry_separator, + ACTIONS(7113), 1, + anon_sym_DOT2, + STATE(367), 1, + sym_path, STATE(3743), 1, sym_comment, - STATE(4024), 1, - sym__variable_name, - STATE(4180), 1, - sym_val_variable, - STATE(4300), 1, - sym__assignment_pattern, - [112380] = 8, - ACTIONS(103), 1, + STATE(3771), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4634), 1, + sym_cell_path, + ACTIONS(5399), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [112951] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, + ACTIONS(7156), 1, + anon_sym_LBRACK, + ACTIONS(7158), 1, + anon_sym_LPAREN, + ACTIONS(7160), 1, + anon_sym_DASH_DASH, + STATE(1580), 1, + sym_parameter_bracks, + STATE(1676), 1, + sym_parameter_parens, STATE(3744), 1, sym_comment, - STATE(4024), 1, - sym__variable_name, - STATE(4180), 1, - sym_val_variable, - STATE(4301), 1, - sym__assignment_pattern, - [112405] = 8, - ACTIONS(103), 1, + STATE(3747), 1, + aux_sym_decl_def_repeat1, + STATE(4586), 1, + sym_long_flag, + [112979] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, + ACTIONS(3932), 1, + sym__newline, + ACTIONS(7128), 1, + anon_sym_LBRACK, + ACTIONS(7270), 1, + anon_sym_RBRACK, STATE(3745), 1, sym_comment, - STATE(4024), 1, - sym__variable_name, - STATE(4180), 1, - sym_val_variable, - STATE(4302), 1, - sym__assignment_pattern, - [112430] = 6, - ACTIONS(103), 1, + STATE(3998), 1, + aux_sym__types_body_repeat1, + STATE(4399), 1, + aux_sym__table_body_repeat1, + STATE(4432), 1, + sym_val_list, + STATE(5004), 1, + sym__table_body, + [113007] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7254), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7256), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(7156), 1, + anon_sym_LBRACK, + ACTIONS(7158), 1, + anon_sym_LPAREN, + ACTIONS(7160), 1, + anon_sym_DASH_DASH, + STATE(1642), 1, + sym_parameter_parens, + STATE(1643), 1, + sym_parameter_bracks, STATE(3746), 1, sym_comment, - ACTIONS(1726), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1728), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [112451] = 7, - ACTIONS(103), 1, + STATE(3750), 1, + aux_sym_decl_def_repeat1, + STATE(4586), 1, + sym_long_flag, + [113035] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7156), 1, + anon_sym_LBRACK, + ACTIONS(7158), 1, anon_sym_LPAREN, - ACTIONS(7262), 1, - anon_sym_DQUOTE2, + ACTIONS(7160), 1, + anon_sym_DASH_DASH, + STATE(1644), 1, + sym_parameter_parens, + STATE(1645), 1, + sym_parameter_bracks, STATE(3747), 1, sym_comment, - STATE(3751), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4314), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [112474] = 7, - ACTIONS(103), 1, + STATE(4081), 1, + aux_sym_decl_def_repeat1, + STATE(4586), 1, + sym_long_flag, + [113063] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6430), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7264), 1, - aux_sym_unquoted_token2, + ACTIONS(7156), 1, + anon_sym_LBRACK, + ACTIONS(7158), 1, + anon_sym_LPAREN, + ACTIONS(7160), 1, + anon_sym_DASH_DASH, + STATE(1646), 1, + sym_parameter_parens, + STATE(1647), 1, + sym_parameter_bracks, STATE(3748), 1, sym_comment, - STATE(4232), 1, - sym__immediate_decimal, - ACTIONS(6762), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [112497] = 7, + STATE(3752), 1, + aux_sym_decl_def_repeat1, + STATE(4586), 1, + sym_long_flag, + [113091] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6478), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7264), 1, - aux_sym_unquoted_token2, STATE(3749), 1, sym_comment, - STATE(5081), 1, - sym__immediate_decimal, - ACTIONS(6590), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [112520] = 6, + ACTIONS(1846), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1844), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [113109] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4139), 1, - anon_sym_DOT_DOT2, - ACTIONS(7264), 1, - sym__unquoted_pattern, + ACTIONS(7156), 1, + anon_sym_LBRACK, + ACTIONS(7158), 1, + anon_sym_LPAREN, + ACTIONS(7160), 1, + anon_sym_DASH_DASH, + STATE(1602), 1, + sym_parameter_parens, + STATE(1603), 1, + sym_parameter_bracks, STATE(3750), 1, sym_comment, - ACTIONS(4141), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7266), 2, - sym_filesize_unit, - sym_duration_unit, - [112541] = 7, - ACTIONS(103), 1, + STATE(4081), 1, + aux_sym_decl_def_repeat1, + STATE(4586), 1, + sym_long_flag, + [113137] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7156), 1, + anon_sym_LBRACK, + ACTIONS(7158), 1, anon_sym_LPAREN, - ACTIONS(7268), 1, - anon_sym_DQUOTE2, + ACTIONS(7160), 1, + anon_sym_DASH_DASH, + STATE(1610), 1, + sym_parameter_parens, + STATE(1611), 1, + sym_parameter_bracks, STATE(3751), 1, sym_comment, - STATE(3814), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4314), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [112564] = 6, + STATE(3754), 1, + aux_sym_decl_def_repeat1, + STATE(4586), 1, + sym_long_flag, + [113165] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, + ACTIONS(7156), 1, + anon_sym_LBRACK, + ACTIONS(7158), 1, + anon_sym_LPAREN, + ACTIONS(7160), 1, + anon_sym_DASH_DASH, + STATE(1616), 1, + sym_parameter_parens, + STATE(1632), 1, + sym_parameter_bracks, STATE(3752), 1, sym_comment, - STATE(5001), 1, - sym__immediate_decimal, - ACTIONS(6478), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6480), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [112585] = 5, + STATE(4081), 1, + aux_sym_decl_def_repeat1, + STATE(4586), 1, + sym_long_flag, + [113193] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, + ACTIONS(7156), 1, + anon_sym_LBRACK, + ACTIONS(7158), 1, + anon_sym_LPAREN, + ACTIONS(7160), 1, + anon_sym_DASH_DASH, + STATE(1657), 1, + sym_parameter_parens, + STATE(1658), 1, + sym_parameter_bracks, STATE(3753), 1, sym_comment, - STATE(4057), 1, - sym_block, - ACTIONS(7270), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [112604] = 5, + STATE(3755), 1, + aux_sym_decl_def_repeat1, + STATE(4586), 1, + sym_long_flag, + [113221] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7156), 1, + anon_sym_LBRACK, + ACTIONS(7158), 1, + anon_sym_LPAREN, + ACTIONS(7160), 1, + anon_sym_DASH_DASH, + STATE(1659), 1, + sym_parameter_parens, + STATE(1663), 1, + sym_parameter_bracks, + STATE(3754), 1, + sym_comment, + STATE(4081), 1, + aux_sym_decl_def_repeat1, + STATE(4586), 1, + sym_long_flag, + [113249] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7156), 1, + anon_sym_LBRACK, + ACTIONS(7158), 1, + anon_sym_LPAREN, + ACTIONS(7160), 1, + anon_sym_DASH_DASH, + STATE(1540), 1, + sym_parameter_parens, + STATE(1597), 1, + sym_parameter_bracks, + STATE(3755), 1, + sym_comment, + STATE(4081), 1, + aux_sym_decl_def_repeat1, + STATE(4586), 1, + sym_long_flag, + [113277] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3754), 1, + ACTIONS(7156), 1, + anon_sym_LBRACK, + ACTIONS(7158), 1, + anon_sym_LPAREN, + ACTIONS(7160), 1, + anon_sym_DASH_DASH, + STATE(1524), 1, + sym_parameter_bracks, + STATE(1599), 1, + sym_parameter_parens, + STATE(3756), 1, sym_comment, - STATE(4058), 1, - sym_block, - ACTIONS(7270), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [112623] = 6, - ACTIONS(103), 1, + STATE(3757), 1, + aux_sym_decl_def_repeat1, + STATE(4586), 1, + sym_long_flag, + [113305] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6949), 1, - anon_sym_DOT2, - STATE(3755), 1, + ACTIONS(7156), 1, + anon_sym_LBRACK, + ACTIONS(7158), 1, + anon_sym_LPAREN, + ACTIONS(7160), 1, + anon_sym_DASH_DASH, + STATE(1526), 1, + sym_parameter_parens, + STATE(1528), 1, + sym_parameter_bracks, + STATE(3757), 1, sym_comment, - STATE(3758), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4260), 1, - sym_path, - ACTIONS(1458), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [112644] = 6, - ACTIONS(103), 1, + STATE(4081), 1, + aux_sym_decl_def_repeat1, + STATE(4586), 1, + sym_long_flag, + [113333] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7204), 1, - sym__entry_separator, - ACTIONS(7274), 1, + ACTIONS(7272), 1, anon_sym_DOT_DOT2, - STATE(3756), 1, + STATE(3758), 1, sym_comment, - ACTIONS(7272), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7276), 2, + ACTIONS(7274), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [112665] = 6, + ACTIONS(2098), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [113353] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7210), 1, + ACTIONS(793), 1, + anon_sym_RBRACE, + ACTIONS(890), 1, sym__entry_separator, - ACTIONS(7274), 1, + ACTIONS(7276), 1, anon_sym_DOT_DOT2, - STATE(3757), 1, - sym_comment, - ACTIONS(7276), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7278), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [112686] = 5, - ACTIONS(103), 1, - anon_sym_POUND, ACTIONS(7280), 1, - anon_sym_DOT2, - STATE(4260), 1, - sym_path, - STATE(3758), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1524), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [112705] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7283), 1, - aux_sym__immediate_decimal_token5, + sym_filesize_unit, + ACTIONS(7282), 1, + sym_duration_unit, STATE(3759), 1, sym_comment, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 3, - anon_sym_LBRACE, + ACTIONS(7278), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [112724] = 7, - ACTIONS(103), 1, + [113379] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7285), 1, - anon_sym_DQUOTE2, + ACTIONS(7284), 1, + anon_sym_DOT_DOT2, STATE(3760), 1, sym_comment, - STATE(3814), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4314), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [112747] = 7, + ACTIONS(7286), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2136), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [113399] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(3247), 1, - sym__blosure, - STATE(3732), 1, - aux_sym__repeat_newline, + ACTIONS(7288), 1, + anon_sym_DOT_DOT2, STATE(3761), 1, sym_comment, - STATE(3113), 2, - sym_block, - sym_val_closure, - [112770] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7287), 1, + ACTIONS(7290), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2144), 4, anon_sym_if, - ACTIONS(7289), 1, sym__newline, - ACTIONS(7291), 1, anon_sym_PIPE, - ACTIONS(7293), 1, anon_sym_EQ_GT, - STATE(3762), 1, - sym_comment, - STATE(4306), 1, - aux_sym_match_pattern_repeat1, - STATE(4895), 1, - sym_match_guard, - [112795] = 7, + [113419] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(7292), 1, + anon_sym_DOT_DOT2, + STATE(3762), 1, + sym_comment, + ACTIONS(7294), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2152), 4, + anon_sym_if, sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3272), 1, - sym__blosure, + anon_sym_PIPE, + anon_sym_EQ_GT, + [113439] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1838), 1, + sym__entry_separator, + ACTIONS(7113), 1, + anon_sym_DOT2, + STATE(367), 1, + sym_path, STATE(3763), 1, sym_comment, - STATE(3113), 2, - sym_block, - sym_val_closure, - [112818] = 7, + STATE(3771), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4227), 1, + sym_cell_path, + ACTIONS(1840), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [113465] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(3272), 1, - sym__blosure, - STATE(3735), 1, - aux_sym__repeat_newline, + ACTIONS(7022), 1, + anon_sym_DOT2, + STATE(2262), 1, + sym_cell_path, + STATE(2552), 1, + sym_path, + STATE(2613), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(3764), 1, sym_comment, - STATE(3113), 2, - sym_block, - sym_val_closure, - [112841] = 6, - ACTIONS(103), 1, + ACTIONS(1434), 3, + anon_sym_EQ, + sym__newline, + anon_sym_COLON, + [113489] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7295), 1, - anon_sym_DOT, - ACTIONS(7297), 1, + ACTIONS(7040), 1, aux_sym__immediate_decimal_token5, STATE(3765), 1, sym_comment, - ACTIONS(1736), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1738), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [112862] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1639), 1, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, + ACTIONS(741), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [113509] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2662), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2664), 1, + anon_sym_COLON2, + ACTIONS(7134), 1, + sym_identifier, + ACTIONS(7136), 1, + anon_sym_DOLLAR, STATE(3766), 1, sym_comment, - STATE(4888), 1, - sym__immediate_decimal, - ACTIONS(7299), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7301), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [112883] = 8, + STATE(4070), 1, + sym__variable_name, + STATE(4191), 1, + sym_val_variable, + STATE(4325), 1, + sym__assignment_pattern, + [113537] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7303), 1, + ACTIONS(3932), 1, sym__newline, - ACTIONS(7305), 1, - anon_sym_SEMI, - ACTIONS(7307), 1, - anon_sym_RPAREN, - STATE(1364), 1, - aux_sym__parenthesized_body_repeat1, + ACTIONS(7128), 1, + anon_sym_LBRACK, + ACTIONS(7296), 1, + anon_sym_RBRACK, STATE(3767), 1, sym_comment, - STATE(4239), 1, - aux_sym__block_body_repeat1, - STATE(4576), 1, - aux_sym__repeat_newline, - [112908] = 5, + STATE(3998), 1, + aux_sym__types_body_repeat1, + STATE(4399), 1, + aux_sym__table_body_repeat1, + STATE(4432), 1, + sym_val_list, + STATE(5098), 1, + sym__table_body, + [113565] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, + ACTIONS(7156), 1, + anon_sym_LBRACK, + ACTIONS(7158), 1, + anon_sym_LPAREN, + ACTIONS(7160), 1, + anon_sym_DASH_DASH, + STATE(1604), 1, + sym_parameter_parens, + STATE(1605), 1, + sym_parameter_bracks, STATE(3768), 1, sym_comment, - STATE(4092), 1, - sym_block, - ACTIONS(7309), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [112927] = 5, + STATE(4081), 1, + aux_sym_decl_def_repeat1, + STATE(4586), 1, + sym_long_flag, + [113593] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, + ACTIONS(3932), 1, + sym__newline, + ACTIONS(7128), 1, + anon_sym_LBRACK, + ACTIONS(7298), 1, + anon_sym_RBRACK, STATE(3769), 1, sym_comment, - STATE(4093), 1, - sym_block, - ACTIONS(7309), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [112946] = 8, + STATE(3998), 1, + aux_sym__types_body_repeat1, + STATE(4399), 1, + aux_sym__table_body_repeat1, + STATE(4432), 1, + sym_val_list, + STATE(5108), 1, + sym__table_body, + [113621] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3653), 1, - sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7075), 1, anon_sym_DOT2, - ACTIONS(7311), 1, - anon_sym_RBRACE, - STATE(339), 1, - sym_path, STATE(3770), 1, sym_comment, - STATE(3778), 1, + STATE(3812), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4169), 1, + STATE(4124), 1, + sym_path, + STATE(4569), 1, sym_cell_path, - [112971] = 8, + ACTIONS(1856), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [113645] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5600), 1, + ACTIONS(1492), 1, sym__entry_separator, - ACTIONS(5602), 1, - anon_sym_GT2, - ACTIONS(7038), 1, + ACTIONS(7113), 1, anon_sym_DOT2, - STATE(3640), 1, + STATE(367), 1, + sym_path, + STATE(3733), 1, aux_sym__where_predicate_lhs_repeat1, STATE(3771), 1, sym_comment, - STATE(3891), 1, - sym_path, - STATE(4169), 1, - sym_cell_path, - [112996] = 7, - ACTIONS(3), 1, + ACTIONS(1490), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON2, + [113669] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_DOT2, - STATE(2511), 1, - sym_path, - STATE(2826), 1, - sym_cell_path, - STATE(3592), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(7300), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7302), 1, + aux_sym__immediate_decimal_token5, STATE(3772), 1, sym_comment, - ACTIONS(5600), 2, - anon_sym_EQ, - anon_sym_GT2, - [113019] = 8, + ACTIONS(1738), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1740), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [113691] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5245), 1, - anon_sym_RBRACK, - ACTIONS(5247), 1, + ACTIONS(1886), 1, sym__entry_separator, - ACTIONS(7069), 1, + ACTIONS(7113), 1, anon_sym_DOT2, - STATE(339), 1, + STATE(367), 1, sym_path, + STATE(3771), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(3773), 1, sym_comment, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4727), 1, + STATE(4575), 1, sym_cell_path, - [113044] = 7, - ACTIONS(103), 1, + ACTIONS(1889), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [113717] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(7317), 1, - sym__entry_separator, - STATE(2234), 1, - aux_sym__types_body_repeat2, + ACTIONS(7304), 1, + anon_sym_DOT, + ACTIONS(7306), 1, + aux_sym__immediate_decimal_token5, STATE(3774), 1, sym_comment, - STATE(4745), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7315), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [113067] = 8, - ACTIONS(103), 1, + ACTIONS(1730), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1728), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [113739] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1866), 1, - sym__entry_separator, - ACTIONS(1868), 1, - anon_sym_GT2, - ACTIONS(7038), 1, - anon_sym_DOT2, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(7156), 1, + anon_sym_LBRACK, + ACTIONS(7158), 1, + anon_sym_LPAREN, + ACTIONS(7160), 1, + anon_sym_DASH_DASH, + STATE(1608), 1, + sym_parameter_parens, + STATE(1609), 1, + sym_parameter_bracks, STATE(3775), 1, sym_comment, - STATE(3891), 1, - sym_path, - STATE(4206), 1, - sym_cell_path, - [113092] = 8, - ACTIONS(103), 1, + STATE(3781), 1, + aux_sym_decl_def_repeat1, + STATE(4586), 1, + sym_long_flag, + [113767] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1882), 1, - sym__entry_separator, - ACTIONS(1884), 1, - anon_sym_GT2, - ACTIONS(7038), 1, - anon_sym_DOT2, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, STATE(3776), 1, sym_comment, - STATE(3891), 1, - sym_path, - STATE(4258), 1, - sym_cell_path, - [113117] = 8, - ACTIONS(103), 1, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [113785] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1858), 1, - sym__entry_separator, - ACTIONS(1860), 1, - anon_sym_GT2, - ACTIONS(7038), 1, - anon_sym_DOT2, - STATE(3640), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(7308), 1, + anon_sym_DOT_DOT2, STATE(3777), 1, sym_comment, - STATE(3891), 1, - sym_path, - STATE(4280), 1, - sym_cell_path, - [113142] = 7, + ACTIONS(7310), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1942), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [113807] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1460), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, + ACTIONS(2533), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7028), 1, + anon_sym_def, + ACTIONS(7030), 1, + anon_sym_use, + ACTIONS(7032), 1, + anon_sym_extern, + ACTIONS(7034), 1, + anon_sym_module, + ACTIONS(7312), 1, + anon_sym_alias, + ACTIONS(7314), 1, + anon_sym_const, STATE(3778), 1, sym_comment, - STATE(3797), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1458), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [113165] = 8, + [113835] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2533), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, + ACTIONS(7028), 1, + anon_sym_def, + ACTIONS(7030), 1, + anon_sym_use, + ACTIONS(7032), 1, + anon_sym_extern, + ACTIONS(7034), 1, + anon_sym_module, + ACTIONS(7316), 1, + anon_sym_alias, + ACTIONS(7318), 1, + anon_sym_const, STATE(3779), 1, sym_comment, - STATE(3914), 1, - sym__variable_name, - STATE(4180), 1, - sym_val_variable, - STATE(4417), 1, - sym__assignment_pattern_parenthesized, - [113190] = 6, + [113863] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2152), 1, - sym__entry_separator, + ACTIONS(2533), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7028), 1, + anon_sym_def, + ACTIONS(7030), 1, + anon_sym_use, + ACTIONS(7032), 1, + anon_sym_extern, + ACTIONS(7034), 1, + anon_sym_module, ACTIONS(7320), 1, - anon_sym_DOT_DOT2, + anon_sym_alias, + ACTIONS(7322), 1, + anon_sym_const, STATE(3780), 1, sym_comment, - ACTIONS(2154), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7322), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [113211] = 7, - ACTIONS(103), 1, + [113891] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7156), 1, + anon_sym_LBRACK, + ACTIONS(7158), 1, anon_sym_LPAREN, - ACTIONS(7324), 1, - anon_sym_DQUOTE2, + ACTIONS(7160), 1, + anon_sym_DASH_DASH, + STATE(1534), 1, + sym_parameter_parens, + STATE(1536), 1, + sym_parameter_bracks, STATE(3781), 1, sym_comment, - STATE(3784), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4314), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [113234] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4147), 1, - aux_sym_unquoted_token2, - ACTIONS(6430), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, - aux_sym__immediate_decimal_token2, - STATE(3782), 1, - sym_comment, - STATE(4232), 1, - sym__immediate_decimal, - ACTIONS(6762), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [113257] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4147), 1, - aux_sym_unquoted_token2, - ACTIONS(6478), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, - aux_sym__immediate_decimal_token2, - STATE(3783), 1, - sym_comment, - STATE(5081), 1, - sym__immediate_decimal, - ACTIONS(6590), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [113280] = 7, + STATE(4081), 1, + aux_sym_decl_def_repeat1, + STATE(4586), 1, + sym_long_flag, + [113919] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7324), 1, anon_sym_LPAREN, - ACTIONS(7326), 1, + ACTIONS(7328), 1, anon_sym_DQUOTE2, - STATE(3784), 1, + STATE(3782), 1, sym_comment, - STATE(3814), 1, + STATE(3833), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4314), 1, + STATE(4383), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7326), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [113303] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3785), 1, - sym_comment, - STATE(3914), 1, - sym__variable_name, - STATE(4180), 1, - sym_val_variable, - STATE(4521), 1, - sym__assignment_pattern_parenthesized, - [113328] = 8, + [113942] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3786), 1, + ACTIONS(3653), 1, + sym__entry_separator, + ACTIONS(7113), 1, + anon_sym_DOT2, + ACTIONS(7330), 1, + anon_sym_RBRACE, + STATE(367), 1, + sym_path, + STATE(3771), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3783), 1, sym_comment, - STATE(3914), 1, - sym__variable_name, - STATE(4180), 1, - sym_val_variable, - STATE(4503), 1, - sym__assignment_pattern_parenthesized, - [113353] = 7, + STATE(4575), 1, + sym_cell_path, + [113967] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2834), 1, sym__newline, - ACTIONS(7230), 1, + ACTIONS(7334), 1, anon_sym_LBRACE, - STATE(3218), 1, - sym__blosure, - STATE(3763), 1, + STATE(517), 1, aux_sym__repeat_newline, - STATE(3787), 1, + STATE(3267), 1, + sym__blosure, + STATE(3784), 1, sym_comment, - STATE(3113), 2, + STATE(3205), 2, sym_block, sym_val_closure, - [113376] = 7, - ACTIONS(3), 1, + [113990] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3224), 1, - sym__blosure, - STATE(3788), 1, + ACTIONS(5438), 1, + anon_sym_RBRACK, + ACTIONS(5440), 1, + sym__entry_separator, + ACTIONS(7113), 1, + anon_sym_DOT2, + STATE(367), 1, + sym_path, + STATE(3771), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3785), 1, sym_comment, - STATE(3113), 2, - sym_block, - sym_val_closure, - [113399] = 7, + STATE(4698), 1, + sym_cell_path, + [114015] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, - anon_sym_LBRACE, - STATE(3224), 1, - sym__blosure, - STATE(3789), 1, + ACTIONS(7336), 1, + anon_sym_DOT, + ACTIONS(7338), 1, + aux_sym__immediate_decimal_token5, + STATE(3786), 1, sym_comment, - STATE(3824), 1, - aux_sym__repeat_newline, - STATE(3113), 2, - sym_block, - sym_val_closure, - [113422] = 7, + ACTIONS(1728), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1730), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [114036] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2834), 1, sym__newline, - ACTIONS(7230), 1, + ACTIONS(7334), 1, anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3225), 1, + STATE(3267), 1, sym__blosure, - STATE(3790), 1, + STATE(3787), 1, sym_comment, - STATE(3113), 2, + STATE(3848), 1, + aux_sym__repeat_newline, + STATE(3205), 2, sym_block, sym_val_closure, - [113445] = 3, + [114059] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3791), 1, + ACTIONS(2152), 1, + sym__entry_separator, + ACTIONS(7340), 1, + anon_sym_DOT_DOT2, + STATE(3788), 1, sym_comment, - ACTIONS(1478), 6, + ACTIONS(2154), 2, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [113460] = 5, + anon_sym_RBRACE, + ACTIONS(7342), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [114080] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7324), 1, + anon_sym_LPAREN, + ACTIONS(7344), 1, + anon_sym_DQUOTE2, + STATE(3789), 1, + sym_comment, + STATE(3798), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4383), 1, + sym_expr_interpolated, + ACTIONS(7326), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [114103] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, + ACTIONS(1730), 1, sym__unquoted_pattern, - ACTIONS(7067), 1, + ACTIONS(7346), 1, + anon_sym_DOT, + ACTIONS(7348), 1, aux_sym__immediate_decimal_token5, - STATE(3792), 1, + STATE(3790), 1, sym_comment, - ACTIONS(1736), 4, - anon_sym_if, + ACTIONS(1728), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [113479] = 8, + [114124] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5191), 1, + aux_sym_unquoted_token2, + ACTIONS(6498), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6647), 1, + aux_sym__immediate_decimal_token2, + STATE(3791), 1, + sym_comment, + STATE(4203), 1, + sym__immediate_decimal, + ACTIONS(6649), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [114147] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5191), 1, + aux_sym_unquoted_token2, + ACTIONS(6542), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6651), 1, + aux_sym__immediate_decimal_token2, + STATE(3792), 1, + sym_comment, + STATE(4867), 1, + sym__immediate_decimal, + ACTIONS(6653), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [114170] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(461), 1, - anon_sym_RPAREN, - ACTIONS(7303), 1, + ACTIONS(2834), 1, sym__newline, - ACTIONS(7305), 1, - anon_sym_SEMI, - STATE(1364), 1, - aux_sym__parenthesized_body_repeat1, + ACTIONS(7334), 1, + anon_sym_LBRACE, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(3325), 1, + sym__blosure, STATE(3793), 1, sym_comment, - STATE(4220), 1, - aux_sym__block_body_repeat1, - STATE(4576), 1, - aux_sym__repeat_newline, - [113504] = 3, + STATE(3205), 2, + sym_block, + sym_val_closure, + [114193] = 6, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7350), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7352), 1, + aux_sym__immediate_decimal_token5, STATE(3794), 1, sym_comment, - ACTIONS(1543), 6, - anon_sym_RBRACK, + ACTIONS(1738), 2, + anon_sym_LPAREN2, sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [113519] = 3, - ACTIONS(103), 1, + ACTIONS(1740), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [114214] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(7334), 1, + anon_sym_LBRACE, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(3284), 1, + sym__blosure, STATE(3795), 1, sym_comment, - ACTIONS(1466), 6, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [113534] = 8, + STATE(3205), 2, + sym_block, + sym_val_closure, + [114237] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7069), 1, - anon_sym_DOT2, - ACTIONS(7328), 1, - anon_sym_RBRACE, - ACTIONS(7330), 1, - sym__entry_separator, - STATE(339), 1, - sym_path, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(2533), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7134), 1, + sym_identifier, + ACTIONS(7136), 1, + anon_sym_DOLLAR, STATE(3796), 1, sym_comment, - STATE(4689), 1, - sym_cell_path, - [113559] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1526), 1, - sym__entry_separator, - ACTIONS(7332), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - ACTIONS(1524), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(3797), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - [113580] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3798), 1, - sym_comment, - ACTIONS(1470), 6, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [113595] = 3, + STATE(4070), 1, + sym__variable_name, + STATE(4191), 1, + sym_val_variable, + STATE(4325), 1, + sym__assignment_pattern, + [114262] = 3, ACTIONS(103), 1, anon_sym_POUND, - STATE(3799), 1, + STATE(3797), 1, sym_comment, - ACTIONS(1474), 6, + ACTIONS(1505), 6, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [113610] = 3, + [114277] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(3800), 1, - sym_comment, - ACTIONS(1514), 6, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [113625] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern, - ACTIONS(7335), 1, - aux_sym__immediate_decimal_token5, - STATE(3801), 1, + ACTIONS(7324), 1, + anon_sym_LPAREN, + ACTIONS(7354), 1, + anon_sym_DQUOTE2, + STATE(3798), 1, sym_comment, - ACTIONS(1802), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [113644] = 8, + STATE(3815), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4383), 1, + sym_expr_interpolated, + ACTIONS(7326), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [114300] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2916), 1, + ACTIONS(2533), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7134), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7136), 1, anon_sym_DOLLAR, - STATE(3802), 1, + STATE(3799), 1, sym_comment, - STATE(4039), 1, + STATE(4070), 1, sym__variable_name, - STATE(4180), 1, + STATE(4191), 1, sym_val_variable, - STATE(4467), 1, + STATE(4327), 1, sym__assignment_pattern, - [113669] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7339), 1, - anon_sym_AT, - STATE(4716), 1, - sym_attribute, - STATE(3803), 2, - sym_comment, - aux_sym_attribute_list_repeat1, - ACTIONS(7337), 3, - anon_sym_export, - anon_sym_def, - anon_sym_extern, - [113688] = 8, + [114325] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2916), 1, + ACTIONS(2533), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7134), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7136), 1, anon_sym_DOLLAR, - STATE(3804), 1, + STATE(3800), 1, sym_comment, - STATE(4039), 1, + STATE(4070), 1, sym__variable_name, - STATE(4180), 1, + STATE(4191), 1, sym_val_variable, - STATE(4468), 1, + STATE(4329), 1, sym__assignment_pattern, - [113713] = 6, - ACTIONS(103), 1, + [114350] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2100), 1, - sym__entry_separator, - ACTIONS(7342), 1, - anon_sym_DOT_DOT2, - STATE(3805), 1, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(7334), 1, + anon_sym_LBRACE, + STATE(3284), 1, + sym__blosure, + STATE(3801), 1, sym_comment, - ACTIONS(2102), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7344), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [113734] = 6, + STATE(3857), 1, + aux_sym__repeat_newline, + STATE(3205), 2, + sym_block, + sym_val_closure, + [114373] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2076), 1, - sym__entry_separator, - ACTIONS(7346), 1, - anon_sym_DOT_DOT2, - STATE(3806), 1, + ACTIONS(2662), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2664), 1, + anon_sym_COLON2, + ACTIONS(5292), 1, + anon_sym_DOLLAR, + ACTIONS(7134), 1, + sym_identifier, + STATE(3802), 1, sym_comment, - ACTIONS(2078), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7348), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [113755] = 6, + STATE(4191), 1, + sym_val_variable, + STATE(5225), 1, + sym__variable_name, + [114398] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2120), 1, - sym__entry_separator, - ACTIONS(7350), 1, - anon_sym_DOT_DOT2, - STATE(3807), 1, + ACTIONS(7324), 1, + anon_sym_LPAREN, + ACTIONS(7356), 1, + anon_sym_DQUOTE2, + STATE(3803), 1, sym_comment, - ACTIONS(2122), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7352), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [113776] = 7, + STATE(3809), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4383), 1, + sym_expr_interpolated, + ACTIONS(7326), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [114421] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6430), 1, + ACTIONS(5150), 1, + aux_sym_unquoted_token2, + ACTIONS(6498), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, + ACTIONS(6647), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7354), 1, - aux_sym_unquoted_token2, - STATE(3808), 1, + STATE(3804), 1, sym_comment, - STATE(4232), 1, + STATE(4203), 1, sym__immediate_decimal, - ACTIONS(6762), 2, + ACTIONS(6649), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [113799] = 7, + [114444] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6478), 1, + ACTIONS(5150), 1, + aux_sym_unquoted_token2, + ACTIONS(6542), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, + ACTIONS(6651), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7354), 1, - aux_sym_unquoted_token2, - STATE(3809), 1, + STATE(3805), 1, sym_comment, - STATE(5081), 1, + STATE(4867), 1, sym__immediate_decimal, - ACTIONS(6590), 2, + ACTIONS(6653), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [113822] = 5, + [114467] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(7334), 1, + anon_sym_LBRACE, + STATE(3372), 1, + sym__blosure, + STATE(3806), 1, + sym_comment, + STATE(3887), 1, + aux_sym__repeat_newline, + STATE(3205), 2, + sym_block, + sym_val_closure, + [114490] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7137), 1, + ACTIONS(7358), 1, + anon_sym_DOT, + ACTIONS(7360), 1, aux_sym__immediate_decimal_token5, - STATE(3810), 1, + STATE(3807), 1, sym_comment, - ACTIONS(1736), 2, - sym__space, + ACTIONS(1728), 2, anon_sym_LPAREN2, - ACTIONS(1738), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [113841] = 6, + sym__entry_separator, + ACTIONS(1730), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [114511] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4139), 1, - anon_sym_DOT_DOT2, - ACTIONS(7354), 1, + ACTIONS(1730), 1, sym__unquoted_pattern, - STATE(3811), 1, + ACTIONS(7154), 1, + aux_sym__immediate_decimal_token5, + STATE(3808), 1, sym_comment, - ACTIONS(4141), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7266), 2, - sym_filesize_unit, - sym_duration_unit, - [113862] = 5, + ACTIONS(1728), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [114530] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1440), 1, + ACTIONS(7324), 1, + anon_sym_LPAREN, + ACTIONS(7362), 1, + anon_sym_DQUOTE2, + STATE(3809), 1, + sym_comment, + STATE(3815), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4383), 1, + sym_expr_interpolated, + ACTIONS(7326), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [114553] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3810), 1, + sym_comment, + ACTIONS(1509), 6, + anon_sym_RBRACK, sym__entry_separator, - ACTIONS(7356), 1, + sym__table_head_separator, anon_sym_QMARK2, - STATE(3812), 1, + anon_sym_BANG, + anon_sym_DOT2, + [114568] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3811), 1, sym_comment, - ACTIONS(1438), 4, + ACTIONS(1458), 6, anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, anon_sym_DOT2, - [113881] = 5, + [114583] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7358), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(7075), 1, + anon_sym_DOT2, + STATE(3812), 1, + sym_comment, + STATE(3872), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4124), 1, + sym_path, + ACTIONS(1490), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [114604] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7364), 1, + anon_sym_LT, STATE(3813), 1, sym_comment, - ACTIONS(1802), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1804), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [113900] = 6, + ACTIONS(4972), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [114621] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7360), 1, + ACTIONS(7324), 1, anon_sym_LPAREN, ACTIONS(7366), 1, anon_sym_DQUOTE2, - STATE(4314), 1, + STATE(3814), 1, + sym_comment, + STATE(3817), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4383), 1, sym_expr_interpolated, - ACTIONS(7363), 2, + ACTIONS(7326), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - STATE(3814), 2, - sym_comment, - aux_sym__inter_double_quotes_repeat1, - [113921] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3815), 1, - sym_comment, - STATE(3988), 1, - sym__variable_name, - STATE(4180), 1, - sym_val_variable, - STATE(4503), 1, - sym__assignment_pattern_parenthesized, - [113946] = 8, + [114644] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(5164), 1, - anon_sym_DOLLAR, - ACTIONS(7044), 1, - sym_identifier, - STATE(3816), 1, + ACTIONS(7368), 1, + anon_sym_LPAREN, + ACTIONS(7374), 1, + anon_sym_DQUOTE2, + STATE(4383), 1, + sym_expr_interpolated, + ACTIONS(7371), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + STATE(3815), 2, sym_comment, - STATE(4180), 1, - sym_val_variable, - STATE(5167), 1, - sym__variable_name, - [113971] = 7, + aux_sym__inter_double_quotes_repeat1, + [114665] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4303), 1, + ACTIONS(4320), 1, sym__space, - ACTIONS(7234), 1, - anon_sym_EQ2, - ACTIONS(7368), 1, + ACTIONS(7376), 1, sym_long_flag_identifier, - STATE(2933), 1, + ACTIONS(7378), 1, + anon_sym_EQ2, + STATE(3045), 1, sym__flag_equals_value, - STATE(3817), 1, + STATE(3816), 1, sym_comment, - ACTIONS(4301), 2, + ACTIONS(4318), 2, sym__newline, anon_sym_SEMI, - [113994] = 7, + [114688] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7324), 1, anon_sym_LPAREN, - ACTIONS(7370), 1, + ACTIONS(7380), 1, anon_sym_DQUOTE2, - STATE(3818), 1, - sym_comment, - STATE(3823), 1, + STATE(3815), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4314), 1, + STATE(3817), 1, + sym_comment, + STATE(4383), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7326), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114017] = 7, + [114711] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6430), 1, + ACTIONS(6498), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, + ACTIONS(6647), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6902), 1, + ACTIONS(7382), 1, aux_sym_unquoted_token2, - STATE(3819), 1, + STATE(3818), 1, sym_comment, - STATE(4232), 1, + STATE(4203), 1, sym__immediate_decimal, - ACTIONS(6762), 2, + ACTIONS(6649), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114040] = 7, + [114734] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7324), 1, + anon_sym_LPAREN, + ACTIONS(7384), 1, + anon_sym_DQUOTE2, + STATE(3819), 1, + sym_comment, + STATE(3825), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4383), 1, + sym_expr_interpolated, + ACTIONS(7326), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [114757] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6478), 1, + ACTIONS(6542), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, + ACTIONS(6651), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6902), 1, + ACTIONS(7382), 1, aux_sym_unquoted_token2, STATE(3820), 1, sym_comment, - STATE(5081), 1, + STATE(4867), 1, sym__immediate_decimal, - ACTIONS(6590), 2, + ACTIONS(6653), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114063] = 6, + [114780] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(4135), 1, + anon_sym_DOT_DOT2, + ACTIONS(7382), 1, sym__unquoted_pattern, STATE(3821), 1, sym_comment, - STATE(4886), 1, - sym__immediate_decimal, - ACTIONS(6478), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6480), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [114084] = 8, + ACTIONS(4137), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7386), 2, + sym_filesize_unit, + sym_duration_unit, + [114801] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7303), 1, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(3822), 1, + sym_comment, + STATE(4173), 1, + sym_block, + ACTIONS(7388), 4, sym__newline, - ACTIONS(7305), 1, anon_sym_SEMI, - ACTIONS(7372), 1, anon_sym_RPAREN, - STATE(1364), 1, - aux_sym__parenthesized_body_repeat1, - STATE(3822), 1, - sym_comment, - STATE(4248), 1, - aux_sym__block_body_repeat1, - STATE(4576), 1, - aux_sym__repeat_newline, - [114109] = 7, + anon_sym_RBRACE, + [114820] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7374), 1, - anon_sym_DQUOTE2, - STATE(3814), 1, - aux_sym__inter_double_quotes_repeat1, + ACTIONS(7113), 1, + anon_sym_DOT2, + ACTIONS(7390), 1, + anon_sym_RBRACE, + ACTIONS(7392), 1, + sym__entry_separator, + STATE(367), 1, + sym_path, + STATE(3771), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(3823), 1, sym_comment, - STATE(4314), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [114132] = 7, + STATE(4731), 1, + sym_cell_path, + [114845] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7230), 1, + ACTIONS(3803), 1, anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3263), 1, - sym__blosure, STATE(3824), 1, sym_comment, - STATE(3113), 2, + STATE(4209), 1, sym_block, - sym_val_closure, - [114155] = 7, + ACTIONS(7394), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [114864] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7324), 1, anon_sym_LPAREN, - ACTIONS(7376), 1, + ACTIONS(7396), 1, anon_sym_DQUOTE2, + STATE(3815), 1, + aux_sym__inter_double_quotes_repeat1, STATE(3825), 1, sym_comment, - STATE(3828), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4314), 1, + STATE(4383), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7326), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114178] = 7, - ACTIONS(103), 1, + [114887] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5048), 1, - aux_sym_unquoted_token2, - ACTIONS(6430), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(3803), 1, + anon_sym_LBRACE, STATE(3826), 1, sym_comment, - STATE(4232), 1, - sym__immediate_decimal, - ACTIONS(6762), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [114201] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5048), 1, - aux_sym_unquoted_token2, - ACTIONS(6478), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, - aux_sym__immediate_decimal_token2, - STATE(3827), 1, - sym_comment, - STATE(5081), 1, - sym__immediate_decimal, - ACTIONS(6590), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [114224] = 7, + STATE(4210), 1, + sym_block, + ACTIONS(7394), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [114906] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7324), 1, anon_sym_LPAREN, - ACTIONS(7378), 1, + ACTIONS(7398), 1, anon_sym_DQUOTE2, - STATE(3814), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3828), 1, + STATE(3827), 1, sym_comment, - STATE(4314), 1, + STATE(3831), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4383), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7326), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114247] = 7, + [114929] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7380), 1, - anon_sym_DQUOTE2, - STATE(3829), 1, + ACTIONS(6601), 1, + anon_sym_LPAREN2, + ACTIONS(7402), 1, + sym__entry_separator, + STATE(2237), 1, + aux_sym__types_body_repeat2, + STATE(3828), 1, sym_comment, - STATE(3832), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4314), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [114270] = 7, + STATE(4746), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7400), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [114952] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4969), 1, - aux_sym_unquoted_token2, - ACTIONS(6430), 1, + ACTIONS(7140), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, + ACTIONS(7405), 1, aux_sym__immediate_decimal_token2, - STATE(3830), 1, + ACTIONS(7409), 1, + aux_sym__unquoted_in_record_token2, + STATE(3829), 1, sym_comment, - STATE(4232), 1, + STATE(4098), 1, sym__immediate_decimal, - ACTIONS(6762), 2, + ACTIONS(7407), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114293] = 7, + [114975] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4969), 1, - aux_sym_unquoted_token2, - ACTIONS(6478), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, - aux_sym__immediate_decimal_token2, - STATE(3831), 1, + ACTIONS(7411), 1, + anon_sym_RBRACK, + ACTIONS(7413), 1, + anon_sym_DOT_DOT, + ACTIONS(7415), 1, + anon_sym_DOT_DOT2, + ACTIONS(7419), 1, + sym__entry_separator, + STATE(3830), 1, sym_comment, - STATE(5081), 1, - sym__immediate_decimal, - ACTIONS(6590), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [114316] = 7, + ACTIONS(7417), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [114998] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(7324), 1, anon_sym_LPAREN, - ACTIONS(7382), 1, + ACTIONS(7421), 1, anon_sym_DQUOTE2, - STATE(3814), 1, + STATE(3815), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3832), 1, + STATE(3831), 1, sym_comment, - STATE(4314), 1, + STATE(4383), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7326), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114339] = 7, + [115021] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, + ACTIONS(1689), 1, + sym__space, + ACTIONS(7423), 1, + anon_sym_DOT_DOT2, + STATE(3832), 1, + sym_comment, + ACTIONS(1615), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7425), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [115042] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7324), 1, anon_sym_LPAREN, - ACTIONS(7384), 1, + ACTIONS(7427), 1, anon_sym_DQUOTE2, + STATE(3815), 1, + aux_sym__inter_double_quotes_repeat1, STATE(3833), 1, sym_comment, - STATE(3834), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4314), 1, + STATE(4383), 1, sym_expr_interpolated, - ACTIONS(7260), 2, + ACTIONS(7326), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114362] = 7, + [115065] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7386), 1, - anon_sym_DQUOTE2, - STATE(3814), 1, - aux_sym__inter_double_quotes_repeat1, + ACTIONS(7415), 1, + anon_sym_DOT_DOT2, + ACTIONS(7429), 1, + anon_sym_RBRACK, + ACTIONS(7432), 1, + anon_sym_DOT_DOT, + ACTIONS(7434), 1, + sym__entry_separator, STATE(3834), 1, sym_comment, - STATE(4314), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [114385] = 7, + ACTIONS(7417), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [115088] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7388), 1, - anon_sym_DQUOTE2, + ACTIONS(6498), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6647), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7437), 1, + aux_sym_unquoted_token2, STATE(3835), 1, sym_comment, - STATE(3836), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4314), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [114408] = 7, + STATE(4203), 1, + sym__immediate_decimal, + ACTIONS(6649), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [115111] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7390), 1, - anon_sym_DQUOTE2, - STATE(3814), 1, - aux_sym__inter_double_quotes_repeat1, + ACTIONS(6542), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6651), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7437), 1, + aux_sym_unquoted_token2, STATE(3836), 1, sym_comment, - STATE(4314), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [114431] = 7, + STATE(4867), 1, + sym__immediate_decimal, + ACTIONS(6653), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [115134] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7392), 1, - anon_sym_DQUOTE2, + ACTIONS(6601), 1, + anon_sym_LPAREN2, + ACTIONS(7402), 1, + sym__entry_separator, + STATE(2240), 1, + aux_sym__types_body_repeat2, STATE(3837), 1, sym_comment, - STATE(3840), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4314), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [114454] = 6, + STATE(4746), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7439), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [115157] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7394), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7396), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(2098), 1, + sym__space, + ACTIONS(7441), 1, + anon_sym_DOT_DOT2, STATE(3838), 1, sym_comment, - ACTIONS(1726), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1728), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [114475] = 8, + ACTIONS(2100), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7443), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [115178] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7069), 1, - anon_sym_DOT2, - ACTIONS(7398), 1, - anon_sym_RBRACE, - ACTIONS(7400), 1, + ACTIONS(7214), 1, sym__entry_separator, - STATE(339), 1, - sym_path, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(7415), 1, + anon_sym_DOT_DOT2, STATE(3839), 1, sym_comment, - STATE(4662), 1, - sym_cell_path, - [114500] = 7, + ACTIONS(7413), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7417), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [115199] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7402), 1, - anon_sym_DQUOTE2, - STATE(3814), 1, - aux_sym__inter_double_quotes_repeat1, + ACTIONS(2878), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7134), 1, + sym_identifier, + ACTIONS(7136), 1, + anon_sym_DOLLAR, STATE(3840), 1, sym_comment, - STATE(4314), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [114523] = 7, + STATE(4042), 1, + sym__variable_name, + STATE(4191), 1, + sym_val_variable, + STATE(4605), 1, + sym__assignment_pattern, + [115224] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6616), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7171), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7404), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(7222), 1, + sym__entry_separator, + ACTIONS(7415), 1, + anon_sym_DOT_DOT2, STATE(3841), 1, sym_comment, - STATE(4340), 1, - sym__immediate_decimal, - ACTIONS(7406), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [114546] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6616), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7299), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7408), 1, - aux_sym__immediate_decimal_token2, - STATE(3842), 1, - sym_comment, - STATE(5087), 1, - sym__immediate_decimal, - ACTIONS(7410), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [114569] = 6, + ACTIONS(7417), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7432), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [115245] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6616), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7412), 1, + ACTIONS(4135), 1, anon_sym_DOT_DOT2, - STATE(3843), 1, + ACTIONS(7437), 1, + sym__unquoted_pattern, + STATE(3842), 1, sym_comment, - ACTIONS(7414), 2, + ACTIONS(4137), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7416), 2, + ACTIONS(7386), 2, sym_filesize_unit, sym_duration_unit, - [114590] = 6, - ACTIONS(3), 1, + [115266] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7418), 1, - sym_long_flag_identifier, - ACTIONS(7420), 1, + ACTIONS(5474), 1, + sym__space, + ACTIONS(7378), 1, anon_sym_EQ2, - STATE(3844), 1, - sym_comment, - STATE(4584), 1, + ACTIONS(7445), 1, + sym_short_flag_identifier, + STATE(3014), 1, sym__flag_equals_value, - ACTIONS(4303), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [114611] = 5, + STATE(3843), 1, + sym_comment, + ACTIONS(5472), 2, + sym__newline, + anon_sym_SEMI, + [115289] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3845), 1, - sym_comment, - STATE(4350), 1, - sym_block, - ACTIONS(7422), 4, + ACTIONS(7447), 1, sym__newline, + ACTIONS(7449), 1, anon_sym_SEMI, + ACTIONS(7451), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - [114630] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1706), 1, - sym__entry_separator, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, - STATE(3846), 1, + STATE(1365), 1, + aux_sym__parenthesized_body_repeat1, + STATE(3844), 1, sym_comment, - ACTIONS(1619), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114651] = 8, - ACTIONS(103), 1, + STATE(4113), 1, + aux_sym__block_body_repeat1, + STATE(4466), 1, + aux_sym__repeat_newline, + [115314] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5265), 1, - anon_sym_RBRACK, - ACTIONS(5267), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3847), 1, + ACTIONS(7453), 1, + anon_sym_LT, + STATE(3845), 1, sym_comment, - STATE(4737), 1, - sym_cell_path, - [114676] = 5, + ACTIONS(4972), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [115331] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7141), 1, + ACTIONS(7166), 1, aux_sym__immediate_decimal_token5, - STATE(3848), 1, + STATE(3846), 1, sym_comment, - ACTIONS(1736), 2, + ACTIONS(1728), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1738), 3, + ACTIONS(1730), 3, anon_sym_RBRACK, anon_sym_DOT_DOT, sym__unquoted_pattern_in_list, - [114695] = 6, + [115350] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1706), 1, - sym__space, - ACTIONS(7238), 1, - anon_sym_DOT_DOT2, - STATE(3849), 1, + ACTIONS(2878), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7134), 1, + sym_identifier, + ACTIONS(7136), 1, + anon_sym_DOLLAR, + STATE(3847), 1, sym_comment, - ACTIONS(1619), 2, + STATE(4042), 1, + sym__variable_name, + STATE(4191), 1, + sym_val_variable, + STATE(4430), 1, + sym__assignment_pattern, + [115375] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2834), 1, sym__newline, - anon_sym_SEMI, - ACTIONS(7240), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114716] = 5, + ACTIONS(7334), 1, + anon_sym_LBRACE, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(3285), 1, + sym__blosure, + STATE(3848), 1, + sym_comment, + STATE(3205), 2, + sym_block, + sym_val_closure, + [115398] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(7334), 1, + anon_sym_LBRACE, + STATE(3285), 1, + sym__blosure, + STATE(3793), 1, + aux_sym__repeat_newline, + STATE(3849), 1, + sym_comment, + STATE(3205), 2, + sym_block, + sym_val_closure, + [115421] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7428), 1, + ACTIONS(7455), 1, aux_sym__immediate_decimal_token5, STATE(3850), 1, sym_comment, - ACTIONS(1802), 2, + ACTIONS(1806), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1804), 3, + ACTIONS(1808), 3, anon_sym_RBRACK, anon_sym_DOT_DOT, sym__unquoted_pattern_in_list, - [114735] = 6, + [115440] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7430), 1, - anon_sym_DOT, - ACTIONS(7432), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(2136), 1, + sym__space, + ACTIONS(7457), 1, + anon_sym_DOT_DOT2, STATE(3851), 1, sym_comment, - ACTIONS(1736), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1738), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [114756] = 6, + ACTIONS(2138), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7459), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [115461] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2152), 1, + ACTIONS(2144), 1, sym__space, - ACTIONS(7434), 1, + ACTIONS(7461), 1, anon_sym_DOT_DOT2, STATE(3852), 1, sym_comment, - ACTIONS(2154), 2, + ACTIONS(2146), 2, sym__newline, anon_sym_SEMI, - ACTIONS(7436), 2, + ACTIONS(7463), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114777] = 5, - ACTIONS(3), 1, + [115482] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7042), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(2152), 1, + sym__space, + ACTIONS(7465), 1, + anon_sym_DOT_DOT2, STATE(3853), 1, sym_comment, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1736), 3, - anon_sym_LBRACE, + ACTIONS(2154), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7467), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114796] = 4, - ACTIONS(3), 1, + [115503] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(5480), 1, + sym__space, + ACTIONS(7423), 1, + anon_sym_DOT_DOT2, STATE(3854), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(749), 4, + ACTIONS(5478), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7425), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [114813] = 4, - ACTIONS(3), 1, + [115524] = 8, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7113), 1, + anon_sym_DOT2, + ACTIONS(7469), 1, + anon_sym_RBRACE, + ACTIONS(7471), 1, + sym__entry_separator, + STATE(367), 1, + sym_path, + STATE(3771), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(3855), 1, sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(773), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [114830] = 4, + STATE(4681), 1, + sym_cell_path, + [115549] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7473), 1, + sym_long_flag_identifier, + ACTIONS(7475), 1, + anon_sym_EQ2, STATE(3856), 1, sym_comment, - ACTIONS(849), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(851), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [114847] = 7, - ACTIONS(103), 1, + STATE(4607), 1, + sym__flag_equals_value, + ACTIONS(4320), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [115570] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7272), 1, - anon_sym_DOT_DOT, - ACTIONS(7274), 1, - anon_sym_DOT_DOT2, - ACTIONS(7438), 1, - anon_sym_RBRACK, - ACTIONS(7440), 1, - sym__entry_separator, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(7334), 1, + anon_sym_LBRACE, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(3287), 1, + sym__blosure, STATE(3857), 1, sym_comment, - ACTIONS(7276), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114870] = 7, + STATE(3205), 2, + sym_block, + sym_val_closure, + [115593] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7274), 1, - anon_sym_DOT_DOT2, - ACTIONS(7278), 1, - anon_sym_DOT_DOT, - ACTIONS(7442), 1, - anon_sym_RBRACK, - ACTIONS(7445), 1, - sym__entry_separator, + ACTIONS(7409), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7477), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7479), 1, + aux_sym__immediate_decimal_token2, STATE(3858), 1, sym_comment, - ACTIONS(7276), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114893] = 7, + STATE(5010), 1, + sym__immediate_decimal, + ACTIONS(7481), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [115616] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(7317), 1, - sym__entry_separator, - STATE(2232), 1, - aux_sym__types_body_repeat2, STATE(3859), 1, sym_comment, - STATE(4745), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7448), 2, + ACTIONS(1513), 6, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [114916] = 6, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [115631] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2152), 1, - sym__entry_separator, - ACTIONS(7450), 1, - anon_sym_DOT_DOT2, STATE(3860), 1, sym_comment, - ACTIONS(2154), 2, + ACTIONS(1517), 6, anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7452), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114937] = 6, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [115646] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2100), 1, - sym__entry_separator, - ACTIONS(7454), 1, - anon_sym_DOT_DOT2, STATE(3861), 1, sym_comment, - ACTIONS(2102), 2, + ACTIONS(1521), 6, anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7456), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114958] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2076), 1, sym__entry_separator, - ACTIONS(7458), 1, - anon_sym_DOT_DOT2, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [115661] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6661), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7483), 1, + anon_sym_DOT, STATE(3862), 1, sym_comment, - ACTIONS(2078), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7460), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114979] = 6, + ACTIONS(1728), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [115680] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2120), 1, - sym__entry_separator, - ACTIONS(7462), 1, - anon_sym_DOT_DOT2, + ACTIONS(7485), 1, + anon_sym_DOT, + ACTIONS(7487), 1, + aux_sym__immediate_decimal_token5, STATE(3863), 1, sym_comment, - ACTIONS(2122), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7464), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115000] = 8, + ACTIONS(1728), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1730), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [115701] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2533), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7134), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7136), 1, anon_sym_DOLLAR, STATE(3864), 1, sym_comment, - STATE(3987), 1, + STATE(3953), 1, sym__variable_name, - STATE(4180), 1, + STATE(4191), 1, sym_val_variable, - STATE(4300), 1, - sym__assignment_pattern, - [115025] = 8, - ACTIONS(103), 1, + STATE(4577), 1, + sym__assignment_pattern_parenthesized, + [115726] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, + ACTIONS(1808), 1, + sym__unquoted_pattern, + ACTIONS(7489), 1, + aux_sym__immediate_decimal_token5, STATE(3865), 1, sym_comment, - STATE(3987), 1, - sym__variable_name, - STATE(4180), 1, - sym_val_variable, - STATE(4301), 1, - sym__assignment_pattern, - [115050] = 8, + ACTIONS(1806), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [115745] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2533), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7134), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7136), 1, anon_sym_DOLLAR, STATE(3866), 1, sym_comment, - STATE(3987), 1, + STATE(3953), 1, sym__variable_name, - STATE(4180), 1, + STATE(4191), 1, sym_val_variable, - STATE(4302), 1, - sym__assignment_pattern, - [115075] = 7, - ACTIONS(103), 1, + STATE(4587), 1, + sym__assignment_pattern_parenthesized, + [115770] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7258), 1, - anon_sym_LPAREN, - ACTIONS(7466), 1, - anon_sym_DQUOTE2, - STATE(3760), 1, - aux_sym__inter_double_quotes_repeat1, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_record, STATE(3867), 1, sym_comment, - STATE(4314), 1, - sym_expr_interpolated, - ACTIONS(7260), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [115098] = 6, + STATE(4913), 1, + sym__immediate_decimal, + ACTIONS(7477), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7491), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [115791] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7468), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7470), 1, + ACTIONS(7495), 1, + anon_sym_AT, + STATE(4756), 1, + sym_attribute, + STATE(3868), 2, + sym_comment, + aux_sym_attribute_list_repeat1, + ACTIONS(7493), 3, + anon_sym_export, + anon_sym_def, + anon_sym_extern, + [115810] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(461), 1, + anon_sym_RPAREN, + ACTIONS(7447), 1, + sym__newline, + ACTIONS(7449), 1, + anon_sym_SEMI, + STATE(1365), 1, + aux_sym__parenthesized_body_repeat1, + STATE(3869), 1, + sym_comment, + STATE(4250), 1, + aux_sym__block_body_repeat1, + STATE(4466), 1, + aux_sym__repeat_newline, + [115835] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7498), 1, aux_sym__immediate_decimal_token5, - STATE(3868), 1, + STATE(3870), 1, sym_comment, - ACTIONS(1726), 2, + ACTIONS(1808), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1806), 3, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 2, + [115854] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3871), 1, + sym_comment, + ACTIONS(874), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - [115119] = 6, + ACTIONS(876), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [115871] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2100), 1, - sym__space, - ACTIONS(7472), 1, + ACTIONS(7500), 1, + anon_sym_DOT2, + STATE(4124), 1, + sym_path, + STATE(3872), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1494), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [115890] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(57), 1, + anon_sym_AT, + STATE(3868), 1, + aux_sym_attribute_list_repeat1, + STATE(3873), 1, + sym_comment, + STATE(4756), 1, + sym_attribute, + ACTIONS(7503), 3, + anon_sym_export, + anon_sym_def, + anon_sym_extern, + [115911] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3874), 1, + sym_comment, + ACTIONS(747), 2, anon_sym_DOT_DOT2, - STATE(3869), 1, + sym__unquoted_pattern_in_record, + ACTIONS(749), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [115928] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6944), 1, + anon_sym_DOT2, + STATE(2552), 1, + sym_path, + STATE(2930), 1, + sym_cell_path, + STATE(3618), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3875), 1, + sym_comment, + ACTIONS(4877), 2, + anon_sym_EQ, + anon_sym_GT2, + [115951] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(3876), 1, + sym_comment, + STATE(4186), 1, + sym_block, + ACTIONS(7505), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [115970] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(3877), 1, + sym_comment, + STATE(4105), 1, + sym_block, + ACTIONS(7507), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [115989] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(3878), 1, sym_comment, - ACTIONS(2102), 2, + STATE(4187), 1, + sym_block, + ACTIONS(7505), 4, sym__newline, anon_sym_SEMI, - ACTIONS(7474), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [116008] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1689), 1, + sym__entry_separator, + ACTIONS(7509), 1, + anon_sym_DOT_DOT2, + STATE(3879), 1, + sym_comment, + ACTIONS(1615), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(7511), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115140] = 6, - ACTIONS(103), 1, + [116029] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2076), 1, - sym__space, - ACTIONS(7476), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_record, + STATE(3880), 1, + sym_comment, + STATE(4971), 1, + sym__immediate_decimal, + ACTIONS(7477), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7491), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [116050] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7409), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7513), 1, anon_sym_DOT_DOT2, - STATE(3870), 1, + STATE(3881), 1, sym_comment, - ACTIONS(2078), 2, + ACTIONS(7515), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7517), 2, + sym_filesize_unit, + sym_duration_unit, + [116071] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2834), 1, sym__newline, - anon_sym_SEMI, - ACTIONS(7478), 2, + ACTIONS(7334), 1, + anon_sym_LBRACE, + STATE(3361), 1, + sym__blosure, + STATE(3784), 1, + aux_sym__repeat_newline, + STATE(3882), 1, + sym_comment, + STATE(3205), 2, + sym_block, + sym_val_closure, + [116094] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5403), 1, + anon_sym_RBRACK, + ACTIONS(5405), 1, + sym__entry_separator, + ACTIONS(7113), 1, + anon_sym_DOT2, + STATE(367), 1, + sym_path, + STATE(3771), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3883), 1, + sym_comment, + STATE(4794), 1, + sym_cell_path, + [116119] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7519), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7521), 1, + aux_sym__immediate_decimal_token5, + STATE(3884), 1, + sym_comment, + ACTIONS(1738), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115161] = 5, + ACTIONS(1740), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [116140] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7324), 1, + anon_sym_LPAREN, + ACTIONS(7523), 1, + anon_sym_DQUOTE2, + STATE(3885), 1, + sym_comment, + STATE(3925), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4383), 1, + sym_expr_interpolated, + ACTIONS(7326), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [116163] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4143), 1, + aux_sym_unquoted_token2, + ACTIONS(6498), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6647), 1, + aux_sym__immediate_decimal_token2, + STATE(3886), 1, + sym_comment, + STATE(4203), 1, + sym__immediate_decimal, + ACTIONS(6649), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [116186] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(7334), 1, anon_sym_LBRACE, - STATE(3871), 1, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(3401), 1, + sym__blosure, + STATE(3887), 1, sym_comment, - STATE(4200), 1, + STATE(3205), 2, sym_block, - ACTIONS(7480), 4, + sym_val_closure, + [116209] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2834), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [115180] = 6, + ACTIONS(7334), 1, + anon_sym_LBRACE, + STATE(3401), 1, + sym__blosure, + STATE(3795), 1, + aux_sym__repeat_newline, + STATE(3888), 1, + sym_comment, + STATE(3205), 2, + sym_block, + sym_val_closure, + [116232] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2098), 1, + sym__entry_separator, + ACTIONS(7525), 1, + anon_sym_DOT_DOT2, + STATE(3889), 1, + sym_comment, + ACTIONS(2100), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7527), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116253] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4143), 1, + aux_sym_unquoted_token2, + ACTIONS(6542), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6651), 1, + aux_sym__immediate_decimal_token2, + STATE(3890), 1, + sym_comment, + STATE(4867), 1, + sym__immediate_decimal, + ACTIONS(6653), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [116276] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2136), 1, + sym__entry_separator, + ACTIONS(7529), 1, + anon_sym_DOT_DOT2, + STATE(3891), 1, + sym_comment, + ACTIONS(2138), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7531), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116297] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2144), 1, + sym__entry_separator, + ACTIONS(7533), 1, + anon_sym_DOT_DOT2, + STATE(3892), 1, + sym_comment, + ACTIONS(2146), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7535), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116318] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2152), 1, + sym__entry_separator, + ACTIONS(7537), 1, + anon_sym_DOT_DOT2, + STATE(3893), 1, + sym_comment, + ACTIONS(2154), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7539), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116339] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern, + STATE(3894), 1, + sym_comment, + STATE(5144), 1, + sym__immediate_decimal, + ACTIONS(6542), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6544), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [116360] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7324), 1, + anon_sym_LPAREN, + ACTIONS(7541), 1, + anon_sym_DQUOTE2, + STATE(3895), 1, + sym_comment, + STATE(3922), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4383), 1, + sym_expr_interpolated, + ACTIONS(7326), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [116383] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2120), 1, - sym__space, - ACTIONS(7482), 1, - anon_sym_DOT_DOT2, - STATE(3872), 1, + ACTIONS(2878), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7134), 1, + sym_identifier, + ACTIONS(7136), 1, + anon_sym_DOLLAR, + STATE(3896), 1, sym_comment, - ACTIONS(2122), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7484), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115201] = 5, + STATE(4042), 1, + sym__variable_name, + STATE(4191), 1, + sym_val_variable, + STATE(4651), 1, + sym__assignment_pattern, + [116408] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6808), 1, + ACTIONS(7306), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7486), 1, - anon_sym_DOT, - STATE(3873), 1, + STATE(3897), 1, sym_comment, - ACTIONS(1736), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [115220] = 8, + ACTIONS(1730), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1728), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116427] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2533), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7134), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7136), 1, anon_sym_DOLLAR, - STATE(3874), 1, + STATE(3898), 1, sym_comment, - STATE(3915), 1, + STATE(4062), 1, sym__variable_name, - STATE(4180), 1, + STATE(4191), 1, sym_val_variable, - STATE(4300), 1, + STATE(4325), 1, sym__assignment_pattern, - [115245] = 8, + [116452] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2533), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7134), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7136), 1, anon_sym_DOLLAR, - STATE(3875), 1, + STATE(3899), 1, sym_comment, - STATE(3915), 1, + STATE(4062), 1, sym__variable_name, - STATE(4180), 1, + STATE(4191), 1, sym_val_variable, - STATE(4301), 1, + STATE(4327), 1, sym__assignment_pattern, - [115270] = 8, + [116477] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, + ACTIONS(2533), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, + ACTIONS(7134), 1, sym_identifier, - ACTIONS(7046), 1, + ACTIONS(7136), 1, anon_sym_DOLLAR, - STATE(3876), 1, + STATE(3900), 1, sym_comment, - STATE(3915), 1, + STATE(4062), 1, sym__variable_name, - STATE(4180), 1, + STATE(4191), 1, sym_val_variable, - STATE(4302), 1, + STATE(4329), 1, sym__assignment_pattern, - [115295] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - STATE(3877), 1, - sym_comment, - STATE(4996), 1, - sym__immediate_decimal, - ACTIONS(7299), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7301), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [115316] = 5, + [116502] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3803), 1, anon_sym_LBRACE, - STATE(3878), 1, + STATE(3901), 1, sym_comment, - STATE(4259), 1, + STATE(4272), 1, sym_block, - ACTIONS(7488), 4, + ACTIONS(7543), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [115335] = 5, + [116521] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7235), 1, + aux_sym__immediate_decimal_token5, + STATE(3902), 1, + sym_comment, + ACTIONS(1728), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1730), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [116540] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1641), 1, + sym__unquoted_pattern, + STATE(3903), 1, + sym_comment, + STATE(4866), 1, + sym__immediate_decimal, + ACTIONS(6542), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6544), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [116561] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3803), 1, anon_sym_LBRACE, - STATE(3879), 1, + STATE(3904), 1, sym_comment, - STATE(4262), 1, + STATE(4274), 1, sym_block, - ACTIONS(7488), 4, + ACTIONS(7543), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [115354] = 6, + [116580] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1740), 1, sym__unquoted_pattern, - ACTIONS(7490), 1, + ACTIONS(7545), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7492), 1, + ACTIONS(7547), 1, aux_sym__immediate_decimal_token5, - STATE(3880), 1, + STATE(3905), 1, sym_comment, - ACTIONS(1726), 3, + ACTIONS(1738), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [115375] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3881), 1, - sym_comment, - STATE(3988), 1, - sym__variable_name, - STATE(4180), 1, - sym_val_variable, - STATE(4417), 1, - sym__assignment_pattern_parenthesized, - [115400] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7044), 1, - sym_identifier, - ACTIONS(7046), 1, - anon_sym_DOLLAR, - STATE(3882), 1, - sym_comment, - STATE(3988), 1, - sym__variable_name, - STATE(4180), 1, - sym_val_variable, - STATE(4521), 1, - sym__assignment_pattern_parenthesized, - [115425] = 5, + [116601] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1440), 1, + ACTIONS(2136), 1, sym__entry_separator, - ACTIONS(7356), 1, - anon_sym_BANG, - STATE(3883), 1, + ACTIONS(7549), 1, + anon_sym_DOT_DOT2, + STATE(3906), 1, sym_comment, - ACTIONS(1438), 4, + ACTIONS(2138), 2, anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [115444] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3884), 1, - sym_comment, - ACTIONS(1802), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1804), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [115460] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3885), 1, - sym_comment, - ACTIONS(2501), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2503), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [115476] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2635), 1, - sym__space, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(3886), 1, - sym_comment, - ACTIONS(2637), 2, - sym__newline, - anon_sym_SEMI, - [115496] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1974), 1, - sym__entry_separator, - ACTIONS(1976), 1, anon_sym_RBRACE, - ACTIONS(7494), 1, - anon_sym_DOT_DOT2, - STATE(3887), 1, - sym_comment, - ACTIONS(7496), 2, + ACTIONS(7551), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115516] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2635), 1, - sym__entry_separator, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern_in_list, - STATE(3888), 1, - sym_comment, - ACTIONS(2637), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [115536] = 4, + [116622] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(3889), 1, - sym_comment, - ACTIONS(2575), 4, + ACTIONS(7553), 1, anon_sym_if, + ACTIONS(7555), 1, sym__newline, + ACTIONS(7557), 1, anon_sym_PIPE, + ACTIONS(7559), 1, anon_sym_EQ_GT, - [115552] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(994), 1, - sym__space, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(3890), 1, + STATE(3907), 1, sym_comment, - ACTIONS(996), 2, - sym__newline, - anon_sym_SEMI, - [115572] = 4, + STATE(4357), 1, + aux_sym_match_pattern_repeat1, + STATE(5039), 1, + sym_match_guard, + [116647] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1464), 1, - sym__entry_separator, - STATE(3891), 1, + ACTIONS(7324), 1, + anon_sym_LPAREN, + ACTIONS(7561), 1, + anon_sym_DQUOTE2, + STATE(3908), 1, sym_comment, - ACTIONS(1462), 4, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [115588] = 6, + STATE(3926), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4383), 1, + sym_expr_interpolated, + ACTIONS(7326), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [116670] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1018), 1, - sym__space, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(3892), 1, + ACTIONS(6498), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6647), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6954), 1, + aux_sym_unquoted_token2, + STATE(3909), 1, sym_comment, - ACTIONS(1016), 2, - sym__newline, - anon_sym_SEMI, - [115608] = 7, + STATE(4203), 1, + sym__immediate_decimal, + ACTIONS(6649), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [116693] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(5164), 1, - anon_sym_DOLLAR, - ACTIONS(7044), 1, - sym_identifier, - STATE(3893), 1, - sym_comment, - STATE(4180), 1, - sym_val_variable, - STATE(5026), 1, - sym__variable_name, - [115630] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3894), 1, + ACTIONS(6542), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6651), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6954), 1, + aux_sym_unquoted_token2, + STATE(3910), 1, sym_comment, - STATE(4383), 1, - sym_block, - ACTIONS(7480), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [115648] = 6, + STATE(4867), 1, + sym__immediate_decimal, + ACTIONS(6653), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [116716] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(994), 1, + ACTIONS(2098), 1, sym__entry_separator, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_list, - STATE(3895), 1, + ACTIONS(7563), 1, + anon_sym_DOT_DOT2, + STATE(3911), 1, sym_comment, - ACTIONS(996), 2, + ACTIONS(2100), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [115668] = 6, + anon_sym_RBRACE, + ACTIONS(7565), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116737] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1018), 1, + ACTIONS(2144), 1, sym__entry_separator, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_list, - STATE(3896), 1, + ACTIONS(7567), 1, + anon_sym_DOT_DOT2, + STATE(3912), 1, sym_comment, - ACTIONS(1016), 2, + ACTIONS(2146), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [115688] = 4, + anon_sym_RBRACE, + ACTIONS(7569), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116758] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, - STATE(3897), 1, - sym_comment, - ACTIONS(1974), 4, - anon_sym_if, + ACTIONS(7447), 1, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [115704] = 4, + ACTIONS(7449), 1, + anon_sym_SEMI, + ACTIONS(7571), 1, + anon_sym_RPAREN, + STATE(1365), 1, + aux_sym__parenthesized_body_repeat1, + STATE(3913), 1, + sym_comment, + STATE(4315), 1, + aux_sym__block_body_repeat1, + STATE(4466), 1, + aux_sym__repeat_newline, + [116783] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(3898), 1, + ACTIONS(7573), 1, + aux_sym__immediate_decimal_token5, + STATE(3914), 1, sym_comment, - ACTIONS(1726), 2, + ACTIONS(1806), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(1728), 3, + ACTIONS(1808), 3, sym__newline, anon_sym_SEMI, sym__unquoted_pattern, - [115720] = 7, - ACTIONS(3), 1, + [116802] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7498), 1, + ACTIONS(2533), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7134), 1, sym_identifier, - ACTIONS(7500), 1, + ACTIONS(7136), 1, anon_sym_DOLLAR, - STATE(3899), 1, + STATE(3915), 1, sym_comment, - STATE(4039), 1, + STATE(3970), 1, sym__variable_name, - STATE(4180), 1, + STATE(4191), 1, sym_val_variable, - STATE(4501), 1, + STATE(4325), 1, sym__assignment_pattern, - [115742] = 6, + [116827] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7502), 1, - anon_sym_LPAREN, - ACTIONS(7505), 1, - anon_sym_SQUOTE2, - ACTIONS(7507), 1, - sym_unescaped_interpolated_content, - STATE(4494), 1, - sym_expr_interpolated, - STATE(3900), 2, + ACTIONS(2533), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7134), 1, + sym_identifier, + ACTIONS(7136), 1, + anon_sym_DOLLAR, + STATE(3916), 1, sym_comment, - aux_sym__inter_single_quotes_repeat1, - [115762] = 4, + STATE(3970), 1, + sym__variable_name, + STATE(4191), 1, + sym_val_variable, + STATE(4327), 1, + sym__assignment_pattern, + [116852] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1522), 1, - sym__entry_separator, - STATE(3901), 1, + ACTIONS(2533), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7134), 1, + sym_identifier, + ACTIONS(7136), 1, + anon_sym_DOLLAR, + STATE(3917), 1, sym_comment, - ACTIONS(1520), 4, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [115778] = 7, + STATE(3970), 1, + sym__variable_name, + STATE(4191), 1, + sym_val_variable, + STATE(4329), 1, + sym__assignment_pattern, + [116877] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7510), 1, - anon_sym_LPAREN, - ACTIONS(7512), 1, - anon_sym_SQUOTE2, - ACTIONS(7514), 1, - sym_unescaped_interpolated_content, - STATE(3900), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3902), 1, - sym_comment, - STATE(4494), 1, - sym_expr_interpolated, - [115800] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7498), 1, + ACTIONS(2533), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7134), 1, sym_identifier, - ACTIONS(7500), 1, + ACTIONS(7136), 1, anon_sym_DOLLAR, - STATE(3903), 1, + STATE(3918), 1, sym_comment, - STATE(3914), 1, + STATE(4006), 1, sym__variable_name, - STATE(4180), 1, + STATE(4191), 1, sym_val_variable, - STATE(4615), 1, + STATE(4469), 1, sym__assignment_pattern_parenthesized, - [115822] = 4, + [116902] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1537), 1, - sym__entry_separator, - STATE(3904), 1, + ACTIONS(2533), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7134), 1, + sym_identifier, + ACTIONS(7136), 1, + anon_sym_DOLLAR, + STATE(3919), 1, sym_comment, - ACTIONS(1535), 4, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [115838] = 4, + STATE(4006), 1, + sym__variable_name, + STATE(4191), 1, + sym_val_variable, + STATE(4577), 1, + sym__assignment_pattern_parenthesized, + [116927] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(3905), 1, + ACTIONS(2533), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7134), 1, + sym_identifier, + ACTIONS(7136), 1, + anon_sym_DOLLAR, + STATE(3920), 1, sym_comment, - ACTIONS(1870), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1872), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [115854] = 4, + STATE(4006), 1, + sym__variable_name, + STATE(4191), 1, + sym_val_variable, + STATE(4587), 1, + sym__assignment_pattern_parenthesized, + [116952] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7516), 1, - anon_sym_BANG, - STATE(3906), 1, - sym_comment, - ACTIONS(1438), 4, - anon_sym_RBRACK, + ACTIONS(1492), 1, sym__entry_separator, - sym__table_head_separator, + ACTIONS(7162), 1, anon_sym_DOT2, - [115870] = 5, - ACTIONS(3), 1, + STATE(3921), 1, + sym_comment, + STATE(3927), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4384), 1, + sym_path, + ACTIONS(1490), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [116975] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3907), 1, + ACTIONS(7324), 1, + anon_sym_LPAREN, + ACTIONS(7575), 1, + anon_sym_DQUOTE2, + STATE(3815), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(3922), 1, sym_comment, - STATE(4411), 1, - sym_block, - ACTIONS(7422), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [115888] = 4, + STATE(4383), 1, + sym_expr_interpolated, + ACTIONS(7326), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [116998] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3908), 1, + STATE(3923), 1, sym_comment, - ACTIONS(1872), 2, + ACTIONS(771), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1870), 3, - anon_sym_LBRACE, + sym__unquoted_pattern_in_record, + ACTIONS(773), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115904] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3909), 1, - sym_comment, - ACTIONS(6137), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [115918] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3910), 1, - sym_comment, - ACTIONS(6121), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [115932] = 6, + sym_filesize_unit, + sym_duration_unit, + [117015] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, - ACTIONS(7438), 1, - anon_sym_RBRACK, - ACTIONS(7440), 1, - sym__entry_separator, - STATE(3911), 1, + ACTIONS(7577), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7579), 1, + aux_sym__immediate_decimal_token5, + STATE(3924), 1, sym_comment, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115952] = 6, + ACTIONS(1738), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1740), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [117036] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7518), 1, - anon_sym_DQUOTE, - STATE(3912), 1, + ACTIONS(7324), 1, + anon_sym_LPAREN, + ACTIONS(7581), 1, + anon_sym_DQUOTE2, + STATE(3815), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(3925), 1, sym_comment, - STATE(4185), 1, - aux_sym_string_content_repeat1, - STATE(5192), 1, - sym_string_content, - ACTIONS(7520), 2, - sym__escaped_str_content, - sym_escape_sequence, - [115972] = 7, + STATE(4383), 1, + sym_expr_interpolated, + ACTIONS(7326), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [117059] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7510), 1, + ACTIONS(7324), 1, anon_sym_LPAREN, - ACTIONS(7514), 1, - sym_unescaped_interpolated_content, - ACTIONS(7522), 1, - anon_sym_SQUOTE2, - STATE(3913), 1, + ACTIONS(7583), 1, + anon_sym_DQUOTE2, + STATE(3815), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(3926), 1, sym_comment, - STATE(3920), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4494), 1, + STATE(4383), 1, sym_expr_interpolated, - [115994] = 7, - ACTIONS(3), 1, + ACTIONS(7326), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [117082] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7524), 1, - anon_sym_EQ, - ACTIONS(7526), 1, - anon_sym_COLON, - STATE(3914), 1, + ACTIONS(1496), 1, + sym__entry_separator, + ACTIONS(7585), 1, + anon_sym_DOT2, + STATE(4384), 1, + sym_path, + ACTIONS(1494), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + STATE(3927), 2, sym_comment, - STATE(4539), 1, - aux_sym__repeat_newline, - STATE(5006), 1, - sym_param_type, - [116016] = 7, - ACTIONS(3), 1, + aux_sym__where_predicate_lhs_repeat1, + [117103] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7526), 1, - anon_sym_COLON, - ACTIONS(7528), 1, - anon_sym_EQ, - STATE(3915), 1, + ACTIONS(2533), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7134), 1, + sym_identifier, + ACTIONS(7136), 1, + anon_sym_DOLLAR, + STATE(3928), 1, sym_comment, - STATE(4539), 1, - aux_sym__repeat_newline, - STATE(5203), 1, - sym_param_type, - [116038] = 6, - ACTIONS(3), 1, + STATE(3953), 1, + sym__variable_name, + STATE(4191), 1, + sym_val_variable, + STATE(4469), 1, + sym__assignment_pattern_parenthesized, + [117128] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, - anon_sym_LBRACE, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(7530), 1, + ACTIONS(1952), 1, + sym__entry_separator, + ACTIONS(1954), 1, + anon_sym_RBRACE, + ACTIONS(7588), 1, anon_sym_DOT_DOT2, - STATE(3916), 1, + STATE(3929), 1, sym_comment, - ACTIONS(7532), 2, + ACTIONS(7590), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [116058] = 3, + [117148] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3917), 1, + STATE(3930), 1, sym_comment, - ACTIONS(6125), 5, + ACTIONS(5036), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT2, anon_sym_LBRACE, - [116072] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1882), 1, - sym__table_head_separator, - ACTIONS(7534), 1, - anon_sym_DOT2, - STATE(3918), 1, - sym_comment, - STATE(4178), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4650), 1, - sym_path, - STATE(5037), 1, - sym_cell_path, - [116094] = 5, + [117162] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7536), 1, + ACTIONS(7592), 1, aux_sym__immediate_decimal_token5, - STATE(3919), 1, + STATE(3931), 1, sym_comment, - ACTIONS(1802), 2, + ACTIONS(1806), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1804), 2, + ACTIONS(1808), 2, anon_sym_RBRACK, sym__unquoted_pattern_in_list, - [116112] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7510), 1, - anon_sym_LPAREN, - ACTIONS(7514), 1, - sym_unescaped_interpolated_content, - ACTIONS(7538), 1, - anon_sym_SQUOTE2, - STATE(3900), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3920), 1, - sym_comment, - STATE(4494), 1, - sym_expr_interpolated, - [116134] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3921), 1, - sym_comment, - ACTIONS(6129), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [116148] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3922), 1, - sym_comment, - STATE(4495), 1, - sym_block, - ACTIONS(7488), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [116166] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3923), 1, - sym_comment, - ACTIONS(6133), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [116180] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3924), 1, - sym_comment, - ACTIONS(6151), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(6153), 3, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_RBRACE, - [116196] = 6, + [117180] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7540), 1, + ACTIONS(7594), 1, anon_sym_DQUOTE, - STATE(3925), 1, + STATE(3932), 1, sym_comment, - STATE(4185), 1, + STATE(4319), 1, aux_sym_string_content_repeat1, - STATE(5095), 1, + STATE(4854), 1, sym_string_content, - ACTIONS(7520), 2, + ACTIONS(7596), 2, sym__escaped_str_content, sym_escape_sequence, - [116216] = 7, + [117200] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7510), 1, + ACTIONS(7598), 1, anon_sym_LPAREN, - ACTIONS(7514), 1, - sym_unescaped_interpolated_content, - ACTIONS(7542), 1, + ACTIONS(7600), 1, anon_sym_SQUOTE2, - STATE(3926), 1, + ACTIONS(7602), 1, + sym_unescaped_interpolated_content, + STATE(3933), 1, sym_comment, - STATE(3935), 1, + STATE(3938), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4494), 1, + STATE(4615), 1, sym_expr_interpolated, - [116238] = 7, + [117222] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1858), 1, + ACTIONS(1862), 1, sym__table_head_separator, - ACTIONS(7534), 1, + ACTIONS(7604), 1, anon_sym_DOT2, - STATE(3927), 1, + STATE(3934), 1, sym_comment, - STATE(4178), 1, + STATE(4367), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4650), 1, + STATE(4827), 1, sym_path, - STATE(4818), 1, + STATE(5083), 1, sym_cell_path, - [116260] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3928), 1, - sym_comment, - STATE(4496), 1, - sym_block, - ACTIONS(7488), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [116278] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1354), 1, - aux_sym__block_body_repeat1, - STATE(3929), 1, - sym_comment, - ACTIONS(153), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3046), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [116296] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - STATE(3930), 1, - sym_comment, - ACTIONS(2523), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116312] = 4, + [117244] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(3931), 1, + ACTIONS(7487), 1, + aux_sym__immediate_decimal_token5, + STATE(3935), 1, sym_comment, - ACTIONS(6111), 2, + ACTIONS(1728), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(6113), 3, - anon_sym_COLON, - anon_sym_GT2, + ACTIONS(1730), 2, anon_sym_RBRACE, - [116328] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, - ACTIONS(7544), 1, - anon_sym_RBRACE, - ACTIONS(7546), 1, - sym__entry_separator, - STATE(3932), 1, - sym_comment, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [116348] = 6, + sym__unquoted_pattern_in_record, + [117262] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4367), 1, + ACTIONS(2525), 1, sym__space, - ACTIONS(7234), 1, - anon_sym_EQ2, - STATE(3070), 1, - sym__flag_equals_value, - STATE(3933), 1, + ACTIONS(2529), 1, + anon_sym_LPAREN2, + ACTIONS(2531), 1, + sym__unquoted_pattern, + STATE(3936), 1, sym_comment, - ACTIONS(4365), 2, + ACTIONS(2527), 2, sym__newline, anon_sym_SEMI, - [116368] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7548), 1, - anon_sym_DQUOTE, - STATE(3934), 1, - sym_comment, - STATE(4185), 1, - aux_sym_string_content_repeat1, - STATE(5050), 1, - sym_string_content, - ACTIONS(7520), 2, - sym__escaped_str_content, - sym_escape_sequence, - [116388] = 7, + [117282] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7510), 1, + ACTIONS(7598), 1, anon_sym_LPAREN, - ACTIONS(7514), 1, + ACTIONS(7602), 1, sym_unescaped_interpolated_content, - ACTIONS(7550), 1, + ACTIONS(7606), 1, anon_sym_SQUOTE2, - STATE(3900), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3935), 1, - sym_comment, - STATE(4494), 1, - sym_expr_interpolated, - [116410] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1736), 1, - sym__entry_separator, - ACTIONS(6664), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7552), 1, - anon_sym_DOT, - STATE(3936), 1, - sym_comment, - ACTIONS(1738), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [116430] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7554), 1, - anon_sym_DQUOTE, STATE(3937), 1, sym_comment, - STATE(4185), 1, - aux_sym_string_content_repeat1, - STATE(4972), 1, - sym_string_content, - ACTIONS(7520), 2, - sym__escaped_str_content, - sym_escape_sequence, - [116450] = 7, + STATE(3962), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4615), 1, + sym_expr_interpolated, + [117304] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7510), 1, + ACTIONS(7598), 1, anon_sym_LPAREN, - ACTIONS(7514), 1, + ACTIONS(7602), 1, sym_unescaped_interpolated_content, - ACTIONS(7556), 1, + ACTIONS(7608), 1, anon_sym_SQUOTE2, STATE(3938), 1, sym_comment, - STATE(3943), 1, + STATE(3962), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4494), 1, + STATE(4615), 1, sym_expr_interpolated, - [116472] = 4, + [117326] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, STATE(3939), 1, sym_comment, - ACTIONS(968), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116488] = 5, - ACTIONS(103), 1, + ACTIONS(5008), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [117340] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2128), 1, - sym__entry_separator, - ACTIONS(7558), 1, - anon_sym_LBRACK2, + ACTIONS(3809), 1, + anon_sym_LBRACE, STATE(3940), 1, sym_comment, - ACTIONS(2130), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [116506] = 4, + STATE(4411), 1, + sym_block, + ACTIONS(7505), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [117358] = 7, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7598), 1, + anon_sym_LPAREN, + ACTIONS(7602), 1, + sym_unescaped_interpolated_content, + ACTIONS(7610), 1, + anon_sym_SQUOTE2, STATE(3941), 1, sym_comment, - ACTIONS(2501), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2503), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - sym__unquoted_pattern_in_list, - [116522] = 6, - ACTIONS(103), 1, + STATE(3962), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4615), 1, + sym_expr_interpolated, + [117380] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, - ACTIONS(7560), 1, - anon_sym_RBRACE, - ACTIONS(7562), 1, - sym__entry_separator, + ACTIONS(3809), 1, + anon_sym_LBRACE, STATE(3942), 1, sym_comment, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [116542] = 7, + STATE(4412), 1, + sym_block, + ACTIONS(7505), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [117398] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7510), 1, - anon_sym_LPAREN, - ACTIONS(7514), 1, - sym_unescaped_interpolated_content, - ACTIONS(7564), 1, - anon_sym_SQUOTE2, - STATE(3900), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(7612), 1, + anon_sym_DQUOTE, STATE(3943), 1, sym_comment, - STATE(4494), 1, - sym_expr_interpolated, - [116564] = 3, + STATE(4319), 1, + aux_sym_string_content_repeat1, + STATE(4871), 1, + sym_string_content, + ACTIONS(7596), 2, + sym__escaped_str_content, + sym_escape_sequence, + [117418] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(3944), 1, sym_comment, - ACTIONS(5920), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, + ACTIONS(1846), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1844), 3, anon_sym_LBRACE, - [116578] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [117434] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1964), 1, - anon_sym_LBRACE, - ACTIONS(7566), 1, - anon_sym_DOT_DOT2, + ACTIONS(7614), 1, + anon_sym_RBRACK, + ACTIONS(7617), 1, + anon_sym_DOT_DOT, STATE(3945), 1, sym_comment, - ACTIONS(7568), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [116598] = 6, - ACTIONS(103), 1, + STATE(3947), 1, + aux_sym_parameter_repeat2, + ACTIONS(1388), 2, + sym__newline, + anon_sym_COMMA, + [117454] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7570), 1, - anon_sym_DQUOTE, + ACTIONS(1641), 1, + sym__unquoted_pattern, STATE(3946), 1, sym_comment, - STATE(4185), 1, - aux_sym_string_content_repeat1, - STATE(5066), 1, - sym_string_content, - ACTIONS(7520), 2, - sym__escaped_str_content, - sym_escape_sequence, - [116618] = 7, - ACTIONS(103), 1, + ACTIONS(2509), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [117470] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7510), 1, - anon_sym_LPAREN, - ACTIONS(7514), 1, - sym_unescaped_interpolated_content, - ACTIONS(7572), 1, - anon_sym_SQUOTE2, - STATE(3947), 1, + ACTIONS(6576), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7619), 2, + sym__newline, + anon_sym_COMMA, + STATE(3947), 2, sym_comment, - STATE(3949), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4494), 1, - sym_expr_interpolated, - [116640] = 7, + aux_sym_parameter_repeat2, + [117486] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7030), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1728), 1, + sym__space, + ACTIONS(6687), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7622), 1, + anon_sym_DOT, STATE(3948), 1, sym_comment, - STATE(4587), 1, - sym_cell_path, - [116662] = 7, - ACTIONS(103), 1, + ACTIONS(1730), 2, + sym__newline, + anon_sym_SEMI, + [117506] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7510), 1, - anon_sym_LPAREN, - ACTIONS(7514), 1, - sym_unescaped_interpolated_content, - ACTIONS(7574), 1, - anon_sym_SQUOTE2, - STATE(3900), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(1730), 1, + sym__unquoted_pattern, + ACTIONS(7348), 1, + aux_sym__immediate_decimal_token5, STATE(3949), 1, sym_comment, - STATE(4494), 1, - sym_expr_interpolated, - [116684] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6963), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3950), 1, - sym_comment, - STATE(4509), 1, - sym_cell_path, - [116706] = 6, + ACTIONS(1728), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [117524] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7576), 1, + ACTIONS(7624), 1, anon_sym_DQUOTE, - STATE(3951), 1, + STATE(3950), 1, sym_comment, - STATE(4185), 1, + STATE(4319), 1, aux_sym_string_content_repeat1, - STATE(5204), 1, + STATE(4885), 1, sym_string_content, - ACTIONS(7520), 2, + ACTIONS(7596), 2, sym__escaped_str_content, sym_escape_sequence, - [116726] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7510), 1, - anon_sym_LPAREN, - ACTIONS(7514), 1, - sym_unescaped_interpolated_content, - ACTIONS(7578), 1, - anon_sym_SQUOTE2, - STATE(3952), 1, - sym_comment, - STATE(3957), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4494), 1, - sym_expr_interpolated, - [116748] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5600), 1, - sym__entry_separator, - ACTIONS(7069), 1, - anon_sym_DOT2, - STATE(339), 1, - sym_path, - STATE(3778), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3953), 1, - sym_comment, - STATE(4169), 1, - sym_cell_path, - [116770] = 5, + [117544] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3809), 1, anon_sym_LBRACE, - STATE(3954), 1, + STATE(3951), 1, sym_comment, - STATE(4559), 1, + STATE(4433), 1, sym_block, - ACTIONS(7309), 3, + ACTIONS(7394), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [116788] = 5, + [117562] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7432), 1, - aux_sym__immediate_decimal_token5, - STATE(3955), 1, + STATE(3952), 1, sym_comment, - ACTIONS(1736), 2, + ACTIONS(2325), 2, + sym__space, anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1738), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [116806] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3956), 1, - sym_comment, - STATE(4565), 1, - sym_block, - ACTIONS(7309), 3, - ts_builtin_sym_end, + ACTIONS(2327), 3, sym__newline, anon_sym_SEMI, - [116824] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7510), 1, - anon_sym_LPAREN, - ACTIONS(7514), 1, - sym_unescaped_interpolated_content, - ACTIONS(7580), 1, - anon_sym_SQUOTE2, - STATE(3900), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3957), 1, - sym_comment, - STATE(4494), 1, - sym_expr_interpolated, - [116846] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7582), 1, - anon_sym_LT, - STATE(3958), 1, - sym_comment, - ACTIONS(5920), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(5924), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [116864] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7584), 1, - anon_sym_DQUOTE, - STATE(3959), 1, - sym_comment, - STATE(4185), 1, - aux_sym_string_content_repeat1, - STATE(4814), 1, - sym_string_content, - ACTIONS(7520), 2, - sym__escaped_str_content, - sym_escape_sequence, - [116884] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7510), 1, - anon_sym_LPAREN, - ACTIONS(7514), 1, - sym_unescaped_interpolated_content, - ACTIONS(7586), 1, - anon_sym_SQUOTE2, - STATE(3960), 1, - sym_comment, - STATE(3964), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4494), 1, - sym_expr_interpolated, - [116906] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7588), 1, - anon_sym_LT, - STATE(3961), 1, - sym_comment, - ACTIONS(5920), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(5924), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [116924] = 4, + sym__unquoted_pattern, + [117578] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(3962), 1, - sym_comment, - ACTIONS(2567), 4, - anon_sym_if, + ACTIONS(2834), 1, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116940] = 4, + ACTIONS(7626), 1, + anon_sym_EQ, + ACTIONS(7628), 1, + anon_sym_COLON, + STATE(3953), 1, + sym_comment, + STATE(4401), 1, + aux_sym__repeat_newline, + STATE(5096), 1, + sym_param_type, + [117600] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2503), 1, + ACTIONS(1808), 1, sym__unquoted_pattern, - STATE(3963), 1, + ACTIONS(7630), 1, + aux_sym__immediate_decimal_token5, + STATE(3954), 1, sym_comment, - ACTIONS(2501), 4, - anon_sym_if, + ACTIONS(1806), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [116956] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7510), 1, - anon_sym_LPAREN, - ACTIONS(7514), 1, - sym_unescaped_interpolated_content, - ACTIONS(7590), 1, - anon_sym_SQUOTE2, - STATE(3900), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3964), 1, - sym_comment, - STATE(4494), 1, - sym_expr_interpolated, - [116978] = 4, + [117618] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2641), 1, + ACTIONS(2556), 1, sym__unquoted_pattern, - STATE(3965), 1, + STATE(3955), 1, sym_comment, - ACTIONS(2635), 4, + ACTIONS(7222), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [116994] = 6, + [117634] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7592), 1, + ACTIONS(7632), 1, anon_sym_DQUOTE, - STATE(3966), 1, + STATE(3956), 1, sym_comment, - STATE(4185), 1, + STATE(4319), 1, aux_sym_string_content_repeat1, - STATE(4831), 1, + STATE(4897), 1, sym_string_content, - ACTIONS(7520), 2, + ACTIONS(7596), 2, sym__escaped_str_content, sym_escape_sequence, - [117014] = 5, - ACTIONS(103), 1, + [117654] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7594), 1, - aux_sym__immediate_decimal_token5, - STATE(3967), 1, + ACTIONS(3809), 1, + anon_sym_LBRACE, + STATE(3957), 1, sym_comment, - ACTIONS(1802), 2, + STATE(4446), 1, + sym_block, + ACTIONS(7507), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [117672] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2562), 1, + sym__space, + ACTIONS(2566), 1, anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1804), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [117032] = 6, + ACTIONS(2568), 1, + sym__unquoted_pattern, + STATE(3958), 1, + sym_comment, + ACTIONS(2564), 2, + sym__newline, + anon_sym_SEMI, + [117692] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2878), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(5292), 1, + anon_sym_DOLLAR, + ACTIONS(7134), 1, + sym_identifier, + STATE(3959), 1, + sym_comment, + STATE(4191), 1, + sym_val_variable, + STATE(4852), 1, + sym__variable_name, + [117714] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3960), 1, + sym_comment, + ACTIONS(5040), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [117728] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7596), 1, + ACTIONS(7634), 1, anon_sym_DQUOTE, - STATE(3968), 1, + STATE(3961), 1, sym_comment, - STATE(4185), 1, + STATE(4319), 1, aux_sym_string_content_repeat1, - STATE(4845), 1, + STATE(4907), 1, sym_string_content, - ACTIONS(7520), 2, + ACTIONS(7596), 2, sym__escaped_str_content, sym_escape_sequence, - [117052] = 5, + [117748] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7636), 1, + anon_sym_LPAREN, + ACTIONS(7639), 1, + anon_sym_SQUOTE2, + ACTIONS(7641), 1, + sym_unescaped_interpolated_content, + STATE(4615), 1, + sym_expr_interpolated, + STATE(3962), 2, + sym_comment, + aux_sym__inter_single_quotes_repeat1, + [117768] = 5, ACTIONS(3), 1, anon_sym_POUND, STATE(1356), 1, aux_sym__block_body_repeat1, - STATE(3969), 1, + STATE(3963), 1, sym_comment, ACTIONS(153), 2, sym__newline, @@ -235124,19807 +236080,20619 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(459), 2, anon_sym_RPAREN, anon_sym_RBRACE, - [117070] = 6, + [117786] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3809), 1, + anon_sym_LBRACE, + STATE(3964), 1, + sym_comment, + STATE(4438), 1, + sym_block, + ACTIONS(7394), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [117804] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7598), 1, + ACTIONS(7644), 1, anon_sym_DQUOTE, - STATE(3970), 1, + STATE(3965), 1, sym_comment, - STATE(4185), 1, + STATE(4319), 1, aux_sym_string_content_repeat1, - STATE(4857), 1, + STATE(4903), 1, sym_string_content, - ACTIONS(7520), 2, + ACTIONS(7596), 2, sym__escaped_str_content, sym_escape_sequence, - [117090] = 6, + [117824] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7600), 1, + ACTIONS(7646), 1, anon_sym_DQUOTE, - STATE(3971), 1, + STATE(3966), 1, sym_comment, - STATE(4185), 1, + STATE(4319), 1, aux_sym_string_content_repeat1, - STATE(4866), 1, + STATE(4916), 1, sym_string_content, - ACTIONS(7520), 2, + ACTIONS(7596), 2, sym__escaped_str_content, sym_escape_sequence, - [117110] = 4, - ACTIONS(3), 1, + [117844] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7598), 1, + anon_sym_LPAREN, + ACTIONS(7602), 1, + sym_unescaped_interpolated_content, + ACTIONS(7648), 1, + anon_sym_SQUOTE2, + STATE(3967), 1, + sym_comment, + STATE(3990), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4615), 1, + sym_expr_interpolated, + [117866] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6506), 2, + STATE(3968), 1, + sym_comment, + ACTIONS(1738), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1740), 3, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7602), 2, - sym__newline, - anon_sym_COMMA, - STATE(3972), 2, - sym_comment, - aux_sym_parameter_repeat2, - [117126] = 3, + sym__unquoted_pattern_in_list, + [117882] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3973), 1, + STATE(3969), 1, sym_comment, - ACTIONS(6093), 5, + ACTIONS(5032), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT2, anon_sym_LBRACE, - [117140] = 6, + [117896] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(7628), 1, + anon_sym_COLON, + ACTIONS(7650), 1, + anon_sym_EQ, + STATE(3970), 1, + sym_comment, + STATE(4401), 1, + aux_sym__repeat_newline, + STATE(4922), 1, + sym_param_type, + [117918] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7652), 1, + anon_sym_DQUOTE, + STATE(3971), 1, + sym_comment, + STATE(4319), 1, + aux_sym_string_content_repeat1, + STATE(4923), 1, + sym_string_content, + ACTIONS(7596), 2, + sym__escaped_str_content, + sym_escape_sequence, + [117938] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2531), 1, + sym__unquoted_pattern, + STATE(3972), 1, + sym_comment, + ACTIONS(2525), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [117954] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3973), 1, + sym_comment, + ACTIONS(1806), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1808), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [117970] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7605), 1, + ACTIONS(7654), 1, anon_sym_DQUOTE, STATE(3974), 1, sym_comment, - STATE(4185), 1, + STATE(4319), 1, aux_sym_string_content_repeat1, - STATE(4882), 1, + STATE(4930), 1, sym_string_content, - ACTIONS(7520), 2, + ACTIONS(7596), 2, sym__escaped_str_content, sym_escape_sequence, - [117160] = 6, + [117990] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1706), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(1942), 1, sym__space, - ACTIONS(2595), 1, + ACTIONS(1946), 1, anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern, STATE(3975), 1, sym_comment, - ACTIONS(1619), 2, + ACTIONS(1944), 2, sym__newline, anon_sym_SEMI, - [117180] = 6, - ACTIONS(103), 1, + [118010] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1964), 1, - sym__entry_separator, - ACTIONS(1966), 1, - anon_sym_RBRACE, - ACTIONS(7607), 1, - anon_sym_DOT_DOT2, + ACTIONS(2572), 1, + sym__unquoted_pattern, STATE(3976), 1, sym_comment, - ACTIONS(7609), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [117200] = 6, + ACTIONS(994), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [118026] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7611), 1, + ACTIONS(7656), 1, anon_sym_DQUOTE, STATE(3977), 1, sym_comment, - STATE(4185), 1, + STATE(4319), 1, aux_sym_string_content_repeat1, - STATE(4889), 1, + STATE(4937), 1, sym_string_content, - ACTIONS(7520), 2, + ACTIONS(7596), 2, sym__escaped_str_content, sym_escape_sequence, - [117220] = 6, + [118046] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2572), 1, + sym__unquoted_pattern, + STATE(3978), 1, + sym_comment, + ACTIONS(1012), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [118062] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3979), 1, + sym_comment, + STATE(5019), 1, + sym__immediate_decimal, + ACTIONS(7477), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7491), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [118080] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7613), 1, + ACTIONS(7658), 1, anon_sym_DQUOTE, - STATE(3978), 1, + STATE(3980), 1, sym_comment, - STATE(4185), 1, + STATE(4319), 1, aux_sym_string_content_repeat1, - STATE(4896), 1, + STATE(4944), 1, sym_string_content, - ACTIONS(7520), 2, + ACTIONS(7596), 2, sym__escaped_str_content, sym_escape_sequence, - [117240] = 6, + [118100] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3981), 1, + sym_comment, + ACTIONS(1844), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1846), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [118116] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1962), 1, + sym__unquoted_pattern, + STATE(3982), 1, + sym_comment, + ACTIONS(2574), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [118132] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7615), 1, + ACTIONS(7660), 1, anon_sym_DQUOTE, - STATE(3979), 1, + STATE(3983), 1, sym_comment, - STATE(4185), 1, + STATE(4319), 1, aux_sym_string_content_repeat1, STATE(4951), 1, sym_string_content, - ACTIONS(7520), 2, + ACTIONS(7596), 2, sym__escaped_str_content, sym_escape_sequence, - [117260] = 6, + [118152] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern, + STATE(3984), 1, + sym_comment, + ACTIONS(1942), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [118168] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7617), 1, + ACTIONS(7662), 1, anon_sym_DQUOTE, - STATE(3980), 1, + STATE(3985), 1, sym_comment, - STATE(4185), 1, + STATE(4319), 1, aux_sym_string_content_repeat1, - STATE(4903), 1, + STATE(4957), 1, sym_string_content, - ACTIONS(7520), 2, + ACTIONS(7596), 2, sym__escaped_str_content, sym_escape_sequence, - [117280] = 6, + [118188] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3986), 1, + sym_comment, + ACTIONS(1740), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1738), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [118204] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7619), 1, + ACTIONS(7664), 1, anon_sym_DQUOTE, - STATE(3981), 1, + STATE(3987), 1, sym_comment, - STATE(4185), 1, + STATE(4319), 1, aux_sym_string_content_repeat1, - STATE(4910), 1, + STATE(4962), 1, sym_string_content, - ACTIONS(7520), 2, + ACTIONS(7596), 2, sym__escaped_str_content, sym_escape_sequence, - [117300] = 6, + [118224] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, - ACTIONS(7621), 1, - anon_sym_RBRACE, - ACTIONS(7623), 1, - sym__entry_separator, - STATE(3982), 1, - sym_comment, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [117320] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7625), 1, + ACTIONS(7666), 1, anon_sym_DQUOTE, - STATE(3983), 1, + STATE(3988), 1, sym_comment, - STATE(4185), 1, + STATE(4319), 1, aux_sym_string_content_repeat1, - STATE(4915), 1, + STATE(4967), 1, sym_string_content, - ACTIONS(7520), 2, + ACTIONS(7596), 2, sym__escaped_str_content, sym_escape_sequence, - [117340] = 3, + [118244] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3984), 1, + STATE(3989), 1, sym_comment, - ACTIONS(6107), 5, + ACTIONS(5054), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT2, anon_sym_LBRACE, - [117354] = 7, + [118258] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7510), 1, + ACTIONS(7598), 1, anon_sym_LPAREN, - ACTIONS(7514), 1, + ACTIONS(7602), 1, sym_unescaped_interpolated_content, - ACTIONS(7627), 1, + ACTIONS(7668), 1, anon_sym_SQUOTE2, - STATE(3985), 1, - sym_comment, - STATE(3991), 1, + STATE(3962), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4494), 1, - sym_expr_interpolated, - [117376] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(5164), 1, - anon_sym_DOLLAR, - ACTIONS(7044), 1, - sym_identifier, - STATE(3986), 1, + STATE(3990), 1, sym_comment, - STATE(4180), 1, - sym_val_variable, - STATE(5167), 1, - sym__variable_name, - [117398] = 7, + STATE(4615), 1, + sym_expr_interpolated, + [118280] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7526), 1, - anon_sym_COLON, - ACTIONS(7629), 1, - anon_sym_EQ, - STATE(3987), 1, + STATE(3991), 1, sym_comment, - STATE(4539), 1, - aux_sym__repeat_newline, - STATE(4979), 1, - sym_param_type, - [117420] = 7, + ACTIONS(5044), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [118294] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7526), 1, - anon_sym_COLON, - ACTIONS(7631), 1, - anon_sym_EQ, - STATE(3988), 1, + STATE(1347), 1, + aux_sym__block_body_repeat1, + STATE(3992), 1, sym_comment, - STATE(4539), 1, - aux_sym__repeat_newline, - STATE(4963), 1, - sym_param_type, - [117442] = 5, + ACTIONS(153), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3073), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [118312] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3989), 1, + ACTIONS(7670), 1, + sym_identifier, + ACTIONS(7672), 1, + anon_sym_DOLLAR, + STATE(3953), 1, + sym__variable_name, + STATE(3993), 1, sym_comment, - STATE(5065), 1, - sym__immediate_decimal, - ACTIONS(6478), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6480), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [117460] = 4, + STATE(4191), 1, + sym_val_variable, + STATE(4437), 1, + sym__assignment_pattern_parenthesized, + [118334] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3990), 1, - sym_comment, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1726), 3, + ACTIONS(1952), 1, anon_sym_LBRACE, + ACTIONS(1962), 1, + sym__unquoted_pattern, + ACTIONS(7674), 1, + anon_sym_DOT_DOT2, + STATE(3994), 1, + sym_comment, + ACTIONS(7676), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [117476] = 7, + [118354] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7510), 1, - anon_sym_LPAREN, - ACTIONS(7514), 1, - sym_unescaped_interpolated_content, - ACTIONS(7633), 1, - anon_sym_SQUOTE2, - STATE(3900), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3991), 1, - sym_comment, - STATE(4494), 1, - sym_expr_interpolated, - [117498] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3992), 1, - sym_comment, - ACTIONS(1726), 2, + ACTIONS(1956), 1, anon_sym_LPAREN2, + ACTIONS(1962), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2574), 1, sym__entry_separator, - ACTIONS(1728), 3, + STATE(3995), 1, + sym_comment, + ACTIONS(2576), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [117514] = 6, + [118374] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7635), 1, - anon_sym_DQUOTE, - STATE(3993), 1, + ACTIONS(7509), 1, + anon_sym_DOT_DOT2, + ACTIONS(7678), 1, + anon_sym_RBRACE, + ACTIONS(7680), 1, + sym__entry_separator, + STATE(3996), 1, sym_comment, - STATE(4185), 1, - aux_sym_string_content_repeat1, - STATE(5176), 1, - sym_string_content, - ACTIONS(7520), 2, - sym__escaped_str_content, - sym_escape_sequence, - [117534] = 4, + ACTIONS(7511), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [118394] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3994), 1, - sym_comment, - ACTIONS(1802), 2, - anon_sym_LPAREN2, + ACTIONS(1952), 1, sym__entry_separator, - ACTIONS(1804), 3, + ACTIONS(1956), 1, + anon_sym_LPAREN2, + ACTIONS(1962), 1, + sym__unquoted_pattern_in_list, + STATE(3997), 1, + sym_comment, + ACTIONS(1954), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [117550] = 4, - ACTIONS(103), 1, + [118414] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3995), 1, + ACTIONS(3932), 1, + sym__newline, + ACTIONS(7128), 1, + anon_sym_LBRACK, + STATE(1943), 1, + aux_sym__types_body_repeat1, + STATE(3998), 1, sym_comment, - ACTIONS(1870), 2, + STATE(4406), 1, + sym_val_list, + STATE(4407), 1, + aux_sym__table_body_repeat1, + [118436] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(994), 1, + sym__space, + ACTIONS(2570), 1, anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1872), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [117566] = 5, + ACTIONS(2572), 1, + sym__unquoted_pattern, + STATE(3999), 1, + sym_comment, + ACTIONS(996), 2, + sym__newline, + anon_sym_SEMI, + [118456] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3972), 1, - aux_sym_parameter_repeat2, - STATE(3996), 1, + ACTIONS(1808), 1, + sym__unquoted_pattern, + STATE(4000), 1, sym_comment, - ACTIONS(1388), 2, + ACTIONS(1806), 4, + anon_sym_if, sym__newline, - anon_sym_COMMA, - ACTIONS(7637), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [118472] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2509), 1, + sym__entry_separator, + ACTIONS(2513), 1, + anon_sym_LPAREN2, + STATE(4001), 1, + sym_comment, + ACTIONS(2511), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [117584] = 6, + [118492] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1964), 1, + ACTIONS(1012), 1, sym__space, - ACTIONS(1968), 1, + ACTIONS(2570), 1, anon_sym_LPAREN2, - STATE(3997), 1, + ACTIONS(2572), 1, + sym__unquoted_pattern, + STATE(4002), 1, sym_comment, - ACTIONS(1966), 2, + ACTIONS(1004), 2, sym__newline, anon_sym_SEMI, - [117604] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3998), 1, - sym_comment, - STATE(4829), 1, - sym__immediate_decimal, - ACTIONS(7299), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7301), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [117622] = 4, + [118512] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, + ACTIONS(1962), 1, sym__unquoted_pattern, - STATE(3999), 1, + STATE(4003), 1, sym_comment, - ACTIONS(994), 4, + ACTIONS(1952), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [117638] = 7, + [118528] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7510), 1, - anon_sym_LPAREN, - ACTIONS(7514), 1, - sym_unescaped_interpolated_content, - ACTIONS(7639), 1, - anon_sym_SQUOTE2, - STATE(4000), 1, + ACTIONS(7682), 1, + anon_sym_DQUOTE, + STATE(4004), 1, sym_comment, - STATE(4005), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4494), 1, - sym_expr_interpolated, - [117660] = 4, + STATE(4319), 1, + aux_sym_string_content_repeat1, + STATE(5049), 1, + sym_string_content, + ACTIONS(7596), 2, + sym__escaped_str_content, + sym_escape_sequence, + [118548] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, + ACTIONS(1846), 1, sym__unquoted_pattern, - STATE(4001), 1, + STATE(4005), 1, sym_comment, - ACTIONS(1018), 4, + ACTIONS(1844), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [117676] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7510), 1, - anon_sym_LPAREN, - ACTIONS(7514), 1, - sym_unescaped_interpolated_content, - ACTIONS(7641), 1, - anon_sym_SQUOTE2, - STATE(3902), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4002), 1, - sym_comment, - STATE(4494), 1, - sym_expr_interpolated, - [117698] = 7, + [118564] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - ACTIONS(3934), 1, + ACTIONS(2834), 1, sym__newline, - STATE(1934), 1, - aux_sym__types_body_repeat1, - STATE(4003), 1, + ACTIONS(7628), 1, + anon_sym_COLON, + ACTIONS(7684), 1, + anon_sym_EQ, + STATE(4006), 1, sym_comment, - STATE(4574), 1, - sym_val_list, - STATE(4589), 1, - aux_sym__table_body_repeat1, - [117720] = 7, + STATE(4401), 1, + aux_sym__repeat_newline, + STATE(5015), 1, + sym_param_type, + [118586] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2595), 1, + ACTIONS(2525), 1, + sym__entry_separator, + ACTIONS(2529), 1, anon_sym_LPAREN2, - ACTIONS(2597), 1, + ACTIONS(2531), 1, sym__unquoted_pattern_in_list, - ACTIONS(7278), 1, - anon_sym_DOT_DOT, - ACTIONS(7442), 1, - anon_sym_RBRACK, - ACTIONS(7445), 1, - sym__entry_separator, - STATE(4004), 1, + STATE(4007), 1, sym_comment, - [117742] = 7, + ACTIONS(2527), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [118606] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7510), 1, + ACTIONS(7598), 1, anon_sym_LPAREN, - ACTIONS(7514), 1, + ACTIONS(7602), 1, sym_unescaped_interpolated_content, - ACTIONS(7643), 1, + ACTIONS(7686), 1, anon_sym_SQUOTE2, - STATE(3900), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4005), 1, + STATE(4008), 1, sym_comment, - STATE(4494), 1, + STATE(4018), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4615), 1, sym_expr_interpolated, - [117764] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4006), 1, - sym_comment, - ACTIONS(2501), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2503), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [117780] = 7, - ACTIONS(103), 1, + [118628] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(2966), 1, - sym_block, - STATE(4007), 1, + STATE(4009), 1, sym_comment, - STATE(4319), 1, - aux_sym__repeat_newline, - [117802] = 4, + STATE(5076), 1, + sym__immediate_decimal, + ACTIONS(6542), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6544), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [118646] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7516), 1, + ACTIONS(7688), 1, anon_sym_QMARK2, - STATE(4008), 1, + STATE(4010), 1, sym_comment, - ACTIONS(1438), 4, + ACTIONS(1446), 4, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, anon_sym_DOT2, - [117818] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7637), 1, - anon_sym_DOT_DOT, - ACTIONS(7645), 1, - anon_sym_RBRACK, - STATE(3972), 1, - aux_sym_parameter_repeat2, - STATE(4009), 1, - sym_comment, - ACTIONS(1388), 2, - sym__newline, - anon_sym_COMMA, - [117838] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4010), 1, - sym_comment, - STATE(4497), 1, - sym_block, - ACTIONS(7270), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [117856] = 4, - ACTIONS(3), 1, + [118662] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7509), 1, + anon_sym_DOT_DOT2, + ACTIONS(7690), 1, + anon_sym_RBRACE, + ACTIONS(7692), 1, + sym__entry_separator, STATE(4011), 1, sym_comment, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1802), 3, - anon_sym_LBRACE, + ACTIONS(7511), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [117872] = 7, - ACTIONS(3), 1, + [118682] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7498), 1, - sym_identifier, - ACTIONS(7500), 1, - anon_sym_DOLLAR, + ACTIONS(7688), 1, + anon_sym_BANG, STATE(4012), 1, sym_comment, - STATE(4024), 1, - sym__variable_name, - STATE(4180), 1, - sym_val_variable, - STATE(4337), 1, - sym__assignment_pattern, - [117894] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1434), 1, - anon_sym_COLON2, - ACTIONS(4928), 1, + ACTIONS(1446), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, anon_sym_DOT2, - STATE(441), 1, - sym_path, - STATE(492), 1, - sym_cell_path, - STATE(2290), 1, - aux_sym__where_predicate_lhs_repeat1, + [118698] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1448), 1, + sym__entry_separator, + ACTIONS(7694), 1, + anon_sym_QMARK2, STATE(4013), 1, sym_comment, - [117916] = 6, + ACTIONS(1446), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [118716] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1964), 1, + ACTIONS(7509), 1, + anon_sym_DOT_DOT2, + ACTIONS(7696), 1, + anon_sym_RBRACE, + ACTIONS(7698), 1, sym__entry_separator, - ACTIONS(1968), 1, - anon_sym_LPAREN2, STATE(4014), 1, sym_comment, - ACTIONS(1966), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [117936] = 6, + ACTIONS(7511), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [118736] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1978), 1, + ACTIONS(1956), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(1962), 1, sym__unquoted_pattern, - ACTIONS(2575), 1, + ACTIONS(2574), 1, sym__space, STATE(4015), 1, sym_comment, - ACTIONS(2577), 2, + ACTIONS(2576), 2, sym__newline, anon_sym_SEMI, - [117956] = 4, + [118756] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern, + ACTIONS(7475), 1, + anon_sym_EQ2, STATE(4016), 1, sym_comment, - ACTIONS(1726), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [117972] = 6, + STATE(4592), 1, + sym__flag_equals_value, + ACTIONS(4470), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [118774] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, + ACTIONS(1952), 1, sym__space, - ACTIONS(1978), 1, + ACTIONS(1956), 1, anon_sym_LPAREN2, - ACTIONS(1984), 1, + ACTIONS(1962), 1, sym__unquoted_pattern, STATE(4017), 1, sym_comment, - ACTIONS(1976), 2, + ACTIONS(1954), 2, sym__newline, anon_sym_SEMI, - [117992] = 5, - ACTIONS(3), 1, + [118794] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7244), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(7598), 1, + anon_sym_LPAREN, + ACTIONS(7602), 1, + sym_unescaped_interpolated_content, + ACTIONS(7700), 1, + anon_sym_SQUOTE2, + STATE(3962), 1, + aux_sym__inter_single_quotes_repeat1, STATE(4018), 1, sym_comment, - ACTIONS(1736), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [118010] = 7, + STATE(4615), 1, + sym_expr_interpolated, + [118816] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7498), 1, - sym_identifier, - ACTIONS(7500), 1, - anon_sym_DOLLAR, - STATE(3987), 1, - sym__variable_name, + ACTIONS(7702), 1, + anon_sym_QMARK2, + ACTIONS(7704), 1, + anon_sym_BANG, STATE(4019), 1, sym_comment, - STATE(4180), 1, - sym_val_variable, - STATE(4337), 1, - sym__assignment_pattern, - [118032] = 5, + STATE(4778), 1, + sym__path_suffix, + ACTIONS(1440), 2, + sym__table_head_separator, + anon_sym_DOT2, + [118836] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1350), 1, - aux_sym__block_body_repeat1, + ACTIONS(7338), 1, + aux_sym__immediate_decimal_token5, STATE(4020), 1, sym_comment, - ACTIONS(153), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3073), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118050] = 4, + ACTIONS(1728), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1730), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [118854] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4021), 1, + sym_comment, + ACTIONS(2325), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2327), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [118870] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, + ACTIONS(2327), 1, sym__unquoted_pattern, - STATE(4021), 1, + STATE(4022), 1, sym_comment, - ACTIONS(7210), 4, + ACTIONS(2325), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [118066] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7648), 1, - aux_sym__immediate_decimal_token5, - STATE(4022), 1, - sym_comment, - ACTIONS(1802), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [118084] = 6, + [118886] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - ACTIONS(2523), 1, - sym__space, - ACTIONS(2629), 1, - anon_sym_LPAREN2, + ACTIONS(7048), 1, + sym__entry_separator, + ACTIONS(7113), 1, + anon_sym_DOT2, + STATE(367), 1, + sym_path, + STATE(3771), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(4023), 1, sym_comment, - ACTIONS(2525), 2, - sym__newline, - anon_sym_SEMI, - [118104] = 7, - ACTIONS(3), 1, + STATE(4485), 1, + sym_cell_path, + [118908] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7526), 1, - anon_sym_COLON, - ACTIONS(7650), 1, - anon_sym_EQ, + ACTIONS(7111), 1, + sym__entry_separator, + ACTIONS(7113), 1, + anon_sym_DOT2, + STATE(367), 1, + sym_path, + STATE(3771), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(4024), 1, sym_comment, - STATE(4539), 1, - aux_sym__repeat_newline, - STATE(4840), 1, - sym_param_type, - [118126] = 6, - ACTIONS(103), 1, + STATE(4571), 1, + sym_cell_path, + [118930] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, - ACTIONS(7652), 1, - anon_sym_RBRACE, - ACTIONS(7654), 1, - sym__entry_separator, + ACTIONS(2568), 1, + sym__unquoted_pattern, STATE(4025), 1, sym_comment, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [118146] = 6, + ACTIONS(2562), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [118946] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2575), 1, - sym__entry_separator, + ACTIONS(7706), 1, + anon_sym_DQUOTE, STATE(4026), 1, sym_comment, - ACTIONS(2577), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [118166] = 6, + STATE(4319), 1, + aux_sym_string_content_repeat1, + STATE(5104), 1, + sym_string_content, + ACTIONS(7596), 2, + sym__escaped_str_content, + sym_escape_sequence, + [118966] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__entry_separator, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_list, + ACTIONS(7598), 1, + anon_sym_LPAREN, + ACTIONS(7602), 1, + sym_unescaped_interpolated_content, + ACTIONS(7708), 1, + anon_sym_SQUOTE2, STATE(4027), 1, sym_comment, - ACTIONS(1976), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [118186] = 5, - ACTIONS(3), 1, + STATE(4041), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4615), 1, + sym_expr_interpolated, + [118988] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7420), 1, - anon_sym_EQ2, + ACTIONS(2114), 1, + sym__entry_separator, + ACTIONS(7710), 1, + anon_sym_LBRACK2, STATE(4028), 1, sym_comment, - STATE(4376), 1, - sym__flag_equals_value, - ACTIONS(4367), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [118204] = 6, + ACTIONS(2116), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [119006] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2567), 1, + ACTIONS(1689), 1, sym__space, - ACTIONS(2631), 1, + ACTIONS(2554), 1, anon_sym_LPAREN2, - ACTIONS(2633), 1, + ACTIONS(2556), 1, sym__unquoted_pattern, STATE(4029), 1, sym_comment, - ACTIONS(2569), 2, + ACTIONS(1615), 2, sym__newline, anon_sym_SEMI, - [118224] = 5, - ACTIONS(3), 1, + [119026] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7656), 1, - anon_sym_DASH_DASH, - STATE(4506), 1, - sym_long_flag, - ACTIONS(4453), 2, - anon_sym_LBRACK, - anon_sym_LPAREN, - STATE(4030), 2, + ACTIONS(2533), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(2989), 1, + sym_block, + STATE(4030), 1, sym_comment, - aux_sym_decl_def_repeat1, - [118242] = 6, + STATE(4199), 1, + aux_sym__repeat_newline, + [119048] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7712), 1, + aux_sym__immediate_decimal_token5, + STATE(4031), 1, + sym_comment, + ACTIONS(1806), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1808), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [119066] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7424), 1, + ACTIONS(7509), 1, anon_sym_DOT_DOT2, - ACTIONS(7659), 1, + ACTIONS(7714), 1, anon_sym_RBRACE, - ACTIONS(7661), 1, + ACTIONS(7716), 1, sym__entry_separator, - STATE(4031), 1, + STATE(4032), 1, sym_comment, - ACTIONS(7426), 2, + ACTIONS(7511), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [118262] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern, - STATE(4032), 1, - sym_comment, - ACTIONS(1802), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118278] = 6, + [119086] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2523), 1, - sym__entry_separator, - ACTIONS(2629), 1, - anon_sym_LPAREN2, + ACTIONS(2533), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(5292), 1, + anon_sym_DOLLAR, + ACTIONS(7134), 1, + sym_identifier, STATE(4033), 1, sym_comment, - ACTIONS(2525), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [118298] = 4, - ACTIONS(3), 1, + STATE(4191), 1, + sym_val_variable, + STATE(5225), 1, + sym__variable_name, + [119108] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1872), 1, - sym__unquoted_pattern, + ACTIONS(4470), 1, + sym__space, + ACTIONS(7378), 1, + anon_sym_EQ2, + STATE(3067), 1, + sym__flag_equals_value, STATE(4034), 1, sym_comment, - ACTIONS(1870), 4, - anon_sym_if, + ACTIONS(4468), 2, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118314] = 7, + anon_sym_SEMI, + [119128] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7498), 1, - sym_identifier, - ACTIONS(7500), 1, - anon_sym_DOLLAR, - STATE(3915), 1, - sym__variable_name, + ACTIONS(7718), 1, + aux_sym__immediate_decimal_token5, STATE(4035), 1, sym_comment, - STATE(4180), 1, - sym_val_variable, - STATE(4337), 1, - sym__assignment_pattern, - [118336] = 6, - ACTIONS(103), 1, + ACTIONS(1806), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1808), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [119146] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, - sym__entry_separator, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern_in_list, + ACTIONS(1434), 1, + anon_sym_COLON2, + ACTIONS(5052), 1, + anon_sym_DOT2, + STATE(435), 1, + sym_path, + STATE(493), 1, + sym_cell_path, + STATE(2283), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(4036), 1, sym_comment, - ACTIONS(2569), 2, + [119168] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3947), 1, + aux_sym_parameter_repeat2, + STATE(4037), 1, + sym_comment, + ACTIONS(1388), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(7617), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [118356] = 6, + [119186] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1736), 1, - sym__space, - ACTIONS(6776), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7663), 1, - anon_sym_DOT, - STATE(4037), 1, + ACTIONS(7598), 1, + anon_sym_LPAREN, + ACTIONS(7602), 1, + sym_unescaped_interpolated_content, + ACTIONS(7720), 1, + anon_sym_SQUOTE2, + STATE(3962), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4038), 1, sym_comment, - ACTIONS(1738), 2, - sym__newline, - anon_sym_SEMI, - [118376] = 5, + STATE(4615), 1, + sym_expr_interpolated, + [119208] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, + STATE(4039), 1, + sym_comment, + ACTIONS(1808), 2, + anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(7252), 1, - aux_sym__immediate_decimal_token5, - STATE(4038), 1, + ACTIONS(1806), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119224] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(1942), 1, + anon_sym_LBRACE, + ACTIONS(7722), 1, + anon_sym_DOT_DOT2, + STATE(4040), 1, sym_comment, - ACTIONS(1736), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118394] = 7, + ACTIONS(7724), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119244] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7598), 1, + anon_sym_LPAREN, + ACTIONS(7602), 1, + sym_unescaped_interpolated_content, + ACTIONS(7726), 1, + anon_sym_SQUOTE2, + STATE(3962), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4041), 1, + sym_comment, + STATE(4615), 1, + sym_expr_interpolated, + [119266] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2834), 1, sym__newline, - ACTIONS(7526), 1, + ACTIONS(7628), 1, anon_sym_COLON, - ACTIONS(7665), 1, + ACTIONS(7728), 1, anon_sym_EQ, - STATE(4039), 1, + STATE(4042), 1, sym_comment, - STATE(4539), 1, + STATE(4401), 1, aux_sym__repeat_newline, - STATE(4974), 1, + STATE(5191), 1, sym_param_type, - [118416] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7667), 1, - anon_sym_QMARK2, - ACTIONS(7669), 1, - anon_sym_BANG, - STATE(4040), 1, - sym_comment, - STATE(4682), 1, - sym__path_suffix, - ACTIONS(1448), 2, - sym__table_head_separator, - anon_sym_DOT2, - [118436] = 5, + [119288] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7297), 1, - aux_sym__immediate_decimal_token5, - STATE(4041), 1, + STATE(4043), 1, sym_comment, - ACTIONS(1736), 2, + ACTIONS(2325), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1738), 2, + ACTIONS(2327), 3, anon_sym_RBRACK, + anon_sym_RBRACE, sym__unquoted_pattern_in_list, - [118454] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - STATE(4042), 1, - sym_comment, - ACTIONS(1964), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118470] = 6, + [119304] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5622), 1, - sym__space, - ACTIONS(7234), 1, - anon_sym_EQ2, - STATE(2955), 1, - sym__flag_equals_value, - STATE(4043), 1, + ACTIONS(2562), 1, + sym__entry_separator, + ACTIONS(2566), 1, + anon_sym_LPAREN2, + ACTIONS(2568), 1, + sym__unquoted_pattern_in_list, + STATE(4044), 1, sym_comment, - ACTIONS(5620), 2, - sym__newline, - anon_sym_SEMI, - [118490] = 5, + ACTIONS(2564), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [119324] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3809), 1, anon_sym_LBRACE, - STATE(4044), 1, + STATE(4045), 1, sym_comment, - STATE(4515), 1, + STATE(4643), 1, sym_block, - ACTIONS(7270), 3, + ACTIONS(7388), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [118508] = 5, + [119342] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7730), 1, + anon_sym_DQUOTE, + STATE(4046), 1, + sym_comment, + STATE(4319), 1, + aux_sym_string_content_repeat1, + STATE(4900), 1, + sym_string_content, + ACTIONS(7596), 2, + sym__escaped_str_content, + sym_escape_sequence, + [119362] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern, - ACTIONS(7671), 1, - aux_sym__immediate_decimal_token5, - STATE(4045), 1, + STATE(4047), 1, sym_comment, - ACTIONS(1802), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118526] = 7, + ACTIONS(4972), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [119376] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7498), 1, + ACTIONS(7670), 1, sym_identifier, - ACTIONS(7500), 1, + ACTIONS(7672), 1, anon_sym_DOLLAR, - STATE(3988), 1, - sym__variable_name, - STATE(4046), 1, + STATE(4048), 1, sym_comment, - STATE(4180), 1, + STATE(4062), 1, + sym__variable_name, + STATE(4094), 1, + sym__assignment_pattern, + STATE(4191), 1, sym_val_variable, - STATE(4615), 1, - sym__assignment_pattern_parenthesized, - [118548] = 6, + [119398] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7673), 1, + ACTIONS(7732), 1, anon_sym_DQUOTE, - STATE(4047), 1, + STATE(4049), 1, sym_comment, - STATE(4185), 1, + STATE(4319), 1, aux_sym_string_content_repeat1, - STATE(4875), 1, + STATE(4954), 1, sym_string_content, - ACTIONS(7520), 2, + ACTIONS(7596), 2, sym__escaped_str_content, sym_escape_sequence, - [118568] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - STATE(2235), 1, - aux_sym__types_body_repeat2, - STATE(4048), 1, - sym_comment, - ACTIONS(7675), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [118585] = 3, + [119418] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4049), 1, + ACTIONS(1766), 1, + sym__unquoted_pattern, + STATE(4050), 1, sym_comment, - ACTIONS(7677), 4, + ACTIONS(890), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [118598] = 4, + [119434] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7679), 1, + ACTIONS(7598), 1, anon_sym_LPAREN, - STATE(4050), 1, - sym_comment, - ACTIONS(7681), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [118613] = 3, - ACTIONS(3), 1, - anon_sym_POUND, + ACTIONS(7602), 1, + sym_unescaped_interpolated_content, + ACTIONS(7734), 1, + anon_sym_SQUOTE2, + STATE(3937), 1, + aux_sym__inter_single_quotes_repeat1, STATE(4051), 1, sym_comment, - ACTIONS(7204), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118626] = 3, - ACTIONS(3), 1, + STATE(4615), 1, + sym_expr_interpolated, + [119456] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1448), 1, + sym__entry_separator, + ACTIONS(7694), 1, + anon_sym_BANG, STATE(4052), 1, sym_comment, - ACTIONS(7683), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118639] = 3, - ACTIONS(3), 1, + ACTIONS(1446), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [119474] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1942), 1, + sym__entry_separator, + ACTIONS(1946), 1, + anon_sym_LPAREN2, STATE(4053), 1, sym_comment, - ACTIONS(7210), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118652] = 3, - ACTIONS(3), 1, + ACTIONS(1944), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [119494] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7736), 1, + anon_sym_DQUOTE, STATE(4054), 1, sym_comment, - ACTIONS(7685), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118665] = 3, - ACTIONS(3), 1, + STATE(4319), 1, + aux_sym_string_content_repeat1, + STATE(5223), 1, + sym_string_content, + ACTIONS(7596), 2, + sym__escaped_str_content, + sym_escape_sequence, + [119514] = 7, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7598), 1, + anon_sym_LPAREN, + ACTIONS(7602), 1, + sym_unescaped_interpolated_content, + ACTIONS(7738), 1, + anon_sym_SQUOTE2, STATE(4055), 1, sym_comment, - ACTIONS(7687), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118678] = 3, - ACTIONS(3), 1, + STATE(4065), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4615), 1, + sym_expr_interpolated, + [119536] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(994), 1, + sym__entry_separator, + ACTIONS(2570), 1, + anon_sym_LPAREN2, + ACTIONS(2572), 1, + sym__unquoted_pattern_in_list, STATE(4056), 1, sym_comment, - ACTIONS(7687), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118691] = 3, - ACTIONS(3), 1, + ACTIONS(996), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [119556] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1012), 1, + sym__entry_separator, + ACTIONS(2570), 1, + anon_sym_LPAREN2, + ACTIONS(2572), 1, + sym__unquoted_pattern_in_list, STATE(4057), 1, sym_comment, - ACTIONS(7689), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118704] = 3, - ACTIONS(3), 1, + ACTIONS(1004), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [119576] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7411), 1, + anon_sym_RBRACK, + ACTIONS(7419), 1, + sym__entry_separator, + ACTIONS(7509), 1, + anon_sym_DOT_DOT2, STATE(4058), 1, sym_comment, - ACTIONS(7689), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118717] = 3, - ACTIONS(3), 1, + ACTIONS(7511), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119596] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7740), 1, + anon_sym_DQUOTE, STATE(4059), 1, sym_comment, - ACTIONS(7691), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118730] = 3, - ACTIONS(3), 1, + STATE(4319), 1, + aux_sym_string_content_repeat1, + STATE(5123), 1, + sym_string_content, + ACTIONS(7596), 2, + sym__escaped_str_content, + sym_escape_sequence, + [119616] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(4060), 1, sym_comment, - ACTIONS(4078), 4, - ts_builtin_sym_end, + ACTIONS(1738), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1740), 3, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [118743] = 3, - ACTIONS(3), 1, + sym__unquoted_pattern, + [119632] = 7, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7598), 1, + anon_sym_LPAREN, + ACTIONS(7602), 1, + sym_unescaped_interpolated_content, + ACTIONS(7742), 1, + anon_sym_SQUOTE2, + STATE(3941), 1, + aux_sym__inter_single_quotes_repeat1, STATE(4061), 1, sym_comment, - ACTIONS(4080), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [118756] = 3, + STATE(4615), 1, + sym_expr_interpolated, + [119654] = 7, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(7628), 1, + anon_sym_COLON, + ACTIONS(7744), 1, + anon_sym_EQ, STATE(4062), 1, sym_comment, - ACTIONS(7693), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118769] = 3, - ACTIONS(3), 1, + STATE(4401), 1, + aux_sym__repeat_newline, + STATE(4980), 1, + sym_param_type, + [119676] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2509), 1, + sym__space, + ACTIONS(2513), 1, + anon_sym_LPAREN2, STATE(4063), 1, sym_comment, - ACTIONS(7693), 4, + ACTIONS(2511), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118782] = 3, - ACTIONS(3), 1, + [119696] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1942), 1, + sym__entry_separator, + ACTIONS(1944), 1, + anon_sym_RBRACE, + ACTIONS(7746), 1, + anon_sym_DOT_DOT2, STATE(4064), 1, sym_comment, - ACTIONS(7695), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118795] = 3, - ACTIONS(3), 1, + ACTIONS(7748), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119716] = 7, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7598), 1, + anon_sym_LPAREN, + ACTIONS(7602), 1, + sym_unescaped_interpolated_content, + ACTIONS(7750), 1, + anon_sym_SQUOTE2, + STATE(3962), 1, + aux_sym__inter_single_quotes_repeat1, STATE(4065), 1, sym_comment, - ACTIONS(7695), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118808] = 3, + STATE(4615), 1, + sym_expr_interpolated, + [119738] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3809), 1, + anon_sym_LBRACE, STATE(4066), 1, sym_comment, - ACTIONS(7687), 4, + STATE(4620), 1, + sym_block, + ACTIONS(7543), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118821] = 3, - ACTIONS(3), 1, + [119756] = 7, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7598), 1, + anon_sym_LPAREN, + ACTIONS(7602), 1, + sym_unescaped_interpolated_content, + ACTIONS(7752), 1, + anon_sym_SQUOTE2, + STATE(4038), 1, + aux_sym__inter_single_quotes_repeat1, STATE(4067), 1, sym_comment, - ACTIONS(7687), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118834] = 3, + STATE(4615), 1, + sym_expr_interpolated, + [119778] = 7, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7670), 1, + sym_identifier, + ACTIONS(7672), 1, + anon_sym_DOLLAR, STATE(4068), 1, sym_comment, - ACTIONS(7697), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118847] = 3, - ACTIONS(3), 1, + STATE(4070), 1, + sym__variable_name, + STATE(4094), 1, + sym__assignment_pattern, + STATE(4191), 1, + sym_val_variable, + [119800] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(4069), 1, sym_comment, - ACTIONS(7699), 4, + ACTIONS(1806), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1808), 3, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118860] = 3, + sym__unquoted_pattern, + [119816] = 7, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(7628), 1, + anon_sym_COLON, + ACTIONS(7754), 1, + anon_sym_EQ, STATE(4070), 1, sym_comment, - ACTIONS(7701), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118873] = 4, + STATE(4401), 1, + aux_sym__repeat_newline, + STATE(5259), 1, + sym_param_type, + [119838] = 6, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(5754), 1, + sym__space, + ACTIONS(7378), 1, + anon_sym_EQ2, + STATE(3124), 1, + sym__flag_equals_value, STATE(4071), 1, sym_comment, - ACTIONS(1726), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1728), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [118888] = 6, + ACTIONS(5752), 2, + sym__newline, + anon_sym_SEMI, + [119858] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2523), 1, - sym__entry_separator, - ACTIONS(2525), 1, - anon_sym_RBRACK, - ACTIONS(2629), 1, - anon_sym_LPAREN2, + ACTIONS(7756), 1, + anon_sym_DQUOTE, STATE(4072), 1, sym_comment, - [118907] = 3, + STATE(4319), 1, + aux_sym_string_content_repeat1, + STATE(4831), 1, + sym_string_content, + ACTIONS(7596), 2, + sym__escaped_str_content, + sym_escape_sequence, + [119878] = 7, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7670), 1, + sym_identifier, + ACTIONS(7672), 1, + anon_sym_DOLLAR, + STATE(3970), 1, + sym__variable_name, STATE(4073), 1, sym_comment, - ACTIONS(7703), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118920] = 3, - ACTIONS(3), 1, + STATE(4094), 1, + sym__assignment_pattern, + STATE(4191), 1, + sym_val_variable, + [119900] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(4074), 1, sym_comment, - ACTIONS(7703), 4, + ACTIONS(1844), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1846), 3, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118933] = 3, + sym__unquoted_pattern, + [119916] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3809), 1, + anon_sym_LBRACE, STATE(4075), 1, sym_comment, - ACTIONS(7705), 4, + STATE(4633), 1, + sym_block, + ACTIONS(7543), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118946] = 3, - ACTIONS(3), 1, + [119934] = 7, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7598), 1, + anon_sym_LPAREN, + ACTIONS(7602), 1, + sym_unescaped_interpolated_content, + ACTIONS(7758), 1, + anon_sym_SQUOTE2, STATE(4076), 1, sym_comment, - ACTIONS(7705), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118959] = 3, + STATE(4085), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4615), 1, + sym_expr_interpolated, + [119956] = 7, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7670), 1, + sym_identifier, + ACTIONS(7672), 1, + anon_sym_DOLLAR, + STATE(4042), 1, + sym__variable_name, STATE(4077), 1, sym_comment, - ACTIONS(7707), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118972] = 3, + STATE(4191), 1, + sym_val_variable, + STATE(4646), 1, + sym__assignment_pattern, + [119978] = 7, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1854), 1, + sym__table_head_separator, + ACTIONS(7604), 1, + anon_sym_DOT2, STATE(4078), 1, sym_comment, - ACTIONS(7707), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118985] = 4, + STATE(4367), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4827), 1, + sym_path, + STATE(5035), 1, + sym_cell_path, + [120000] = 6, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1728), 1, + sym__entry_separator, + ACTIONS(6679), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7760), 1, + anon_sym_DOT, STATE(4079), 1, sym_comment, - ACTIONS(6093), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6095), 2, + ACTIONS(1730), 2, anon_sym_RBRACK, - anon_sym_GT2, - [119000] = 4, - ACTIONS(103), 1, + anon_sym_RBRACE, + [120020] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7670), 1, + sym_identifier, + ACTIONS(7672), 1, + anon_sym_DOLLAR, + STATE(4006), 1, + sym__variable_name, STATE(4080), 1, sym_comment, - ACTIONS(6107), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6109), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [119015] = 3, + STATE(4191), 1, + sym_val_variable, + STATE(4437), 1, + sym__assignment_pattern_parenthesized, + [120042] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4081), 1, + ACTIONS(7762), 1, + anon_sym_DASH_DASH, + STATE(4586), 1, + sym_long_flag, + ACTIONS(4463), 2, + anon_sym_LBRACK, + anon_sym_LPAREN, + STATE(4081), 2, sym_comment, - ACTIONS(4060), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [119028] = 3, - ACTIONS(3), 1, + aux_sym_decl_def_repeat1, + [120060] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7360), 1, + aux_sym__immediate_decimal_token5, STATE(4082), 1, sym_comment, - ACTIONS(4062), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [119041] = 3, + ACTIONS(1728), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1730), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [120078] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4083), 1, sym_comment, - ACTIONS(7709), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119054] = 3, + ACTIONS(5012), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [120092] = 5, ACTIONS(3), 1, anon_sym_POUND, + STATE(1351), 1, + aux_sym__block_body_repeat1, STATE(4084), 1, sym_comment, - ACTIONS(7709), 4, + ACTIONS(153), 2, sym__newline, anon_sym_SEMI, + ACTIONS(3078), 2, anon_sym_RPAREN, anon_sym_RBRACE, - [119067] = 3, - ACTIONS(3), 1, + [120110] = 7, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7598), 1, + anon_sym_LPAREN, + ACTIONS(7602), 1, + sym_unescaped_interpolated_content, + ACTIONS(7765), 1, + anon_sym_SQUOTE2, + STATE(3962), 1, + aux_sym__inter_single_quotes_repeat1, STATE(4085), 1, sym_comment, - ACTIONS(7703), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119080] = 3, - ACTIONS(3), 1, + STATE(4615), 1, + sym_expr_interpolated, + [120132] = 7, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2554), 1, + anon_sym_LPAREN2, + ACTIONS(2556), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7429), 1, + anon_sym_RBRACK, + ACTIONS(7432), 1, + anon_sym_DOT_DOT, + ACTIONS(7434), 1, + sym__entry_separator, STATE(4086), 1, sym_comment, - ACTIONS(7703), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119093] = 3, + [120154] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1740), 1, + sym__unquoted_pattern, STATE(4087), 1, sym_comment, - ACTIONS(7705), 4, + ACTIONS(1738), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_EQ_GT, + [120170] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7509), 1, + anon_sym_DOT_DOT2, + ACTIONS(7767), 1, anon_sym_RBRACE, - [119106] = 3, + ACTIONS(7769), 1, + sym__entry_separator, + STATE(4088), 1, + sym_comment, + ACTIONS(7511), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [120190] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4088), 1, + STATE(4089), 1, sym_comment, - ACTIONS(7705), 4, + ACTIONS(7771), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119119] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2567), 1, - sym__entry_separator, - ACTIONS(2569), 1, - anon_sym_RBRACK, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern_in_list, - STATE(4089), 1, - sym_comment, - [119138] = 3, + [120203] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4090), 1, sym_comment, - ACTIONS(7707), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119151] = 3, + ACTIONS(7773), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [120216] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4091), 1, sym_comment, - ACTIONS(7707), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119164] = 3, - ACTIONS(3), 1, + ACTIONS(1507), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [120229] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2662), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2664), 1, + anon_sym_COLON2, + ACTIONS(3803), 1, + anon_sym_LBRACE, STATE(4092), 1, sym_comment, - ACTIONS(7711), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119177] = 3, + STATE(4351), 1, + sym_block, + [120248] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1728), 1, + anon_sym_LBRACE, + ACTIONS(1730), 1, + sym__unquoted_pattern, + ACTIONS(7775), 1, + anon_sym_DOT, + ACTIONS(7777), 1, + aux_sym__immediate_decimal_token5, STATE(4093), 1, sym_comment, - ACTIONS(7711), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119190] = 3, + [120267] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4094), 1, sym_comment, - ACTIONS(7713), 4, + ACTIONS(7779), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119203] = 3, - ACTIONS(3), 1, + [120280] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(4095), 1, sym_comment, - ACTIONS(7713), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119216] = 3, + ACTIONS(1738), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1740), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [120295] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4096), 1, sym_comment, - ACTIONS(7715), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119229] = 3, - ACTIONS(3), 1, + ACTIONS(7493), 4, + anon_sym_export, + anon_sym_def, + anon_sym_extern, + anon_sym_AT, + [120308] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1527), 1, + sym__entry_separator, STATE(4097), 1, sym_comment, - ACTIONS(7715), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119242] = 3, + ACTIONS(1525), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [120323] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7781), 1, + anon_sym_DOT_DOT2, STATE(4098), 1, sym_comment, - ACTIONS(7717), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119255] = 3, + ACTIONS(7783), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [120340] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4099), 1, sym_comment, - ACTIONS(7717), 4, + ACTIONS(7785), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119268] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4100), 1, - sym_comment, - ACTIONS(6121), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6123), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [119283] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4101), 1, - sym_comment, - ACTIONS(6125), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6127), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [119298] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4102), 1, - sym_comment, - ACTIONS(6129), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6131), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [119313] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4103), 1, - sym_comment, - ACTIONS(6133), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6135), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [119328] = 3, + [120353] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4104), 1, + STATE(4100), 1, sym_comment, - ACTIONS(7713), 4, + ACTIONS(7787), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119341] = 3, + [120366] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4105), 1, + STATE(4101), 1, sym_comment, - ACTIONS(7713), 4, + ACTIONS(7789), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119354] = 3, + [120379] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4106), 1, + STATE(4102), 1, sym_comment, - ACTIONS(7715), 4, + ACTIONS(7791), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119367] = 3, + [120392] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4107), 1, + STATE(4103), 1, sym_comment, - ACTIONS(7715), 4, + ACTIONS(7793), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119380] = 3, + [120405] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4108), 1, + STATE(4104), 1, sym_comment, - ACTIONS(7717), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119393] = 3, + ACTIONS(1511), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [120418] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4109), 1, + STATE(4105), 1, sym_comment, - ACTIONS(7717), 4, + ACTIONS(7795), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119406] = 3, + [120431] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4110), 1, + STATE(4106), 1, sym_comment, - ACTIONS(7719), 4, + ACTIONS(7797), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [119419] = 3, + [120444] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1942), 1, + sym__entry_separator, + ACTIONS(1944), 1, + anon_sym_RBRACK, + ACTIONS(1946), 1, + anon_sym_LPAREN2, + STATE(4107), 1, + sym_comment, + [120463] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4108), 1, + sym_comment, + ACTIONS(1806), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1808), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [120478] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(994), 1, + sym__entry_separator, + ACTIONS(996), 1, + anon_sym_RBRACK, + ACTIONS(2570), 1, + anon_sym_LPAREN2, + ACTIONS(2572), 1, + sym__unquoted_pattern_in_list, + STATE(4109), 1, + sym_comment, + [120497] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1004), 1, + anon_sym_RBRACK, + ACTIONS(1012), 1, + sym__entry_separator, + ACTIONS(2570), 1, + anon_sym_LPAREN2, + ACTIONS(2572), 1, + sym__unquoted_pattern_in_list, + STATE(4110), 1, + sym_comment, + [120516] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4111), 1, sym_comment, - ACTIONS(7719), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119432] = 3, + ACTIONS(1460), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [120529] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(4112), 1, sym_comment, - ACTIONS(7721), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119445] = 3, + ACTIONS(1738), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1740), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [120544] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7571), 1, + anon_sym_RPAREN, STATE(4113), 1, sym_comment, - ACTIONS(7721), 4, + STATE(4292), 1, + aux_sym__block_body_repeat1, + ACTIONS(7799), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119458] = 4, + [120561] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4114), 1, sym_comment, - ACTIONS(2501), 2, + ACTIONS(1844), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(2503), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [119473] = 4, - ACTIONS(103), 1, + ACTIONS(1846), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [120576] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(4115), 1, sym_comment, - ACTIONS(6137), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(6139), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [119488] = 5, + ACTIONS(1806), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1808), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [120591] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2152), 1, - anon_sym_LBRACE, - ACTIONS(7723), 1, - anon_sym_DOT_DOT2, STATE(4116), 1, sym_comment, - ACTIONS(7725), 2, + ACTIONS(1844), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [119505] = 3, + ACTIONS(1846), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [120606] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2568), 1, + sym__unquoted_pattern, STATE(4117), 1, sym_comment, - ACTIONS(7721), 4, + ACTIONS(2562), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119518] = 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + [120621] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1619), 1, - anon_sym_RBRACE, - ACTIONS(1706), 1, - sym__entry_separator, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern_in_record, STATE(4118), 1, sym_comment, - [119537] = 3, - ACTIONS(3), 1, + ACTIONS(7801), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7803), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [120636] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(4119), 1, sym_comment, - ACTIONS(7721), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1738), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1740), 2, anon_sym_RBRACE, - [119550] = 3, - ACTIONS(3), 1, + sym__unquoted_pattern_in_record, + [120651] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(890), 1, + sym__space, + ACTIONS(5150), 1, + sym__unquoted_pattern, STATE(4120), 1, sym_comment, - ACTIONS(7727), 4, + ACTIONS(793), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119563] = 3, + [120668] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1962), 1, + sym__unquoted_pattern, + ACTIONS(7805), 1, + anon_sym_DOT_DOT2, STATE(4121), 1, sym_comment, - ACTIONS(7727), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119576] = 3, + ACTIONS(7807), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [120685] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4122), 1, - sym_comment, - ACTIONS(7729), 4, + ACTIONS(2834), 1, sym__newline, + ACTIONS(3131), 1, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119589] = 3, + STATE(1365), 1, + aux_sym__parenthesized_body_repeat1, + STATE(4122), 1, + sym_comment, + STATE(4466), 1, + aux_sym__repeat_newline, + [120704] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(7809), 1, + anon_sym_LBRACK, + STATE(517), 1, + aux_sym__repeat_newline, STATE(4123), 1, sym_comment, - ACTIONS(7729), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119602] = 3, - ACTIONS(3), 1, + STATE(5069), 1, + sym_val_list, + [120723] = 3, + ACTIONS(103), 1, anon_sym_POUND, STATE(4124), 1, sym_comment, - ACTIONS(7731), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119615] = 3, + ACTIONS(1552), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [120736] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4125), 1, sym_comment, - ACTIONS(7731), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [119628] = 3, + ACTIONS(1515), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [120749] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4126), 1, sym_comment, - ACTIONS(5287), 4, - ts_builtin_sym_end, + ACTIONS(7811), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [119641] = 6, - ACTIONS(103), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [120762] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1964), 1, - sym__entry_separator, - ACTIONS(1966), 1, - anon_sym_RBRACE, - ACTIONS(1968), 1, - anon_sym_LPAREN2, STATE(4127), 1, sym_comment, - [119660] = 3, + ACTIONS(1519), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [120775] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2098), 1, + anon_sym_LBRACE, + ACTIONS(7813), 1, + anon_sym_DOT_DOT2, STATE(4128), 1, sym_comment, - ACTIONS(7733), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [119673] = 4, - ACTIONS(103), 1, + ACTIONS(7815), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [120792] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__entry_separator, STATE(4129), 1, sym_comment, - ACTIONS(868), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119688] = 4, - ACTIONS(103), 1, + ACTIONS(7817), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [120805] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2112), 1, - sym__entry_separator, STATE(4130), 1, sym_comment, - ACTIONS(2114), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119703] = 6, + ACTIONS(1523), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [120818] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(7735), 1, - anon_sym_RBRACK, - ACTIONS(7737), 1, - sym__entry_separator, STATE(4131), 1, sym_comment, - STATE(4992), 1, - sym__expr_parenthesized_immediate, - [119722] = 3, - ACTIONS(3), 1, + ACTIONS(1806), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1808), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [120833] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4813), 1, + sym__entry_separator, + STATE(2237), 1, + aux_sym__types_body_repeat2, STATE(4132), 1, sym_comment, - ACTIONS(5253), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [119735] = 6, + ACTIONS(7400), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [120850] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2575), 1, - sym__entry_separator, - ACTIONS(2577), 1, - anon_sym_RBRACE, + ACTIONS(2662), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2664), 1, + anon_sym_COLON2, + ACTIONS(3803), 1, + anon_sym_LBRACE, STATE(4133), 1, sym_comment, - [119754] = 5, - ACTIONS(3), 1, + STATE(4352), 1, + sym_block, + [120869] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2100), 1, - anon_sym_LBRACE, - ACTIONS(7739), 1, - anon_sym_DOT_DOT2, + ACTIONS(4813), 1, + sym__entry_separator, + STATE(2246), 1, + aux_sym__types_body_repeat2, STATE(4134), 1, sym_comment, - ACTIONS(7741), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119771] = 5, - ACTIONS(3), 1, + ACTIONS(7819), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [120886] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2076), 1, - anon_sym_LBRACE, - ACTIONS(7743), 1, - anon_sym_DOT_DOT2, + ACTIONS(4813), 1, + sym__entry_separator, + STATE(2236), 1, + aux_sym__types_body_repeat2, STATE(4135), 1, sym_comment, - ACTIONS(7745), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119788] = 5, - ACTIONS(3), 1, + ACTIONS(7819), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [120903] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2120), 1, - anon_sym_LBRACE, - ACTIONS(7747), 1, - anon_sym_DOT_DOT2, - STATE(4136), 1, + ACTIONS(7821), 1, + sym__space, + ACTIONS(5849), 2, + sym__newline, + anon_sym_SEMI, + STATE(4136), 2, sym_comment, - ACTIONS(7749), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119805] = 6, + aux_sym_attribute_repeat1, + [120918] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, + STATE(4137), 1, + sym_comment, + ACTIONS(1844), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1976), 1, + ACTIONS(1846), 2, anon_sym_RBRACE, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, sym__unquoted_pattern_in_record, - STATE(4137), 1, - sym_comment, - [119824] = 5, - ACTIONS(103), 1, + [120933] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7204), 1, - sym__entry_separator, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, STATE(4138), 1, sym_comment, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119841] = 5, + ACTIONS(7824), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [120946] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7210), 1, + ACTIONS(2311), 1, sym__entry_separator, - ACTIONS(7424), 1, - anon_sym_DOT_DOT2, STATE(4139), 1, sym_comment, - ACTIONS(7426), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119858] = 3, - ACTIONS(3), 1, + ACTIONS(2313), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [120961] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1617), 1, + anon_sym_RBRACE, + ACTIONS(1623), 1, + sym__entry_separator, + ACTIONS(1625), 1, + anon_sym_COLON2, + STATE(1460), 1, + aux_sym__types_body_repeat2, STATE(4140), 1, sym_comment, - ACTIONS(7751), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [119871] = 3, - ACTIONS(3), 1, + [120980] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1623), 1, + sym__entry_separator, + ACTIONS(1625), 1, + anon_sym_COLON2, + ACTIONS(7826), 1, + anon_sym_RBRACE, + STATE(1479), 1, + aux_sym__types_body_repeat2, STATE(4141), 1, sym_comment, - ACTIONS(7751), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [119884] = 6, - ACTIONS(3), 1, + [120999] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7753), 1, - anon_sym_LBRACK, - ACTIONS(7755), 1, - anon_sym_LPAREN, - STATE(3954), 1, - sym_parameter_parens, - STATE(3956), 1, - sym_parameter_bracks, + ACTIONS(2341), 1, + sym__entry_separator, STATE(4142), 1, sym_comment, - [119903] = 3, - ACTIONS(3), 1, + ACTIONS(2343), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [121014] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2345), 1, + sym__entry_separator, STATE(4143), 1, sym_comment, - ACTIONS(7337), 4, - anon_sym_export, - anon_sym_def, - anon_sym_extern, - anon_sym_AT, - [119916] = 6, + ACTIONS(2347), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [121029] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2523), 1, + ACTIONS(1623), 1, sym__entry_separator, - ACTIONS(2525), 1, + ACTIONS(1625), 1, + anon_sym_COLON2, + ACTIONS(7828), 1, anon_sym_RBRACE, - ACTIONS(2629), 1, - anon_sym_LPAREN2, + STATE(1480), 1, + aux_sym__types_body_repeat2, STATE(4144), 1, sym_comment, - [119935] = 5, + [121048] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(2349), 1, sym__entry_separator, - STATE(2238), 1, - aux_sym__types_body_repeat2, STATE(4145), 1, sym_comment, - ACTIONS(7757), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [119952] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2505), 1, - sym__entry_separator, - STATE(4146), 1, - sym_comment, - ACTIONS(2507), 3, + ACTIONS(2351), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [119967] = 6, + [121063] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - STATE(3878), 1, - sym_parameter_parens, - STATE(3879), 1, - sym_parameter_bracks, + ACTIONS(2136), 1, + anon_sym_LBRACE, + ACTIONS(7830), 1, + anon_sym_DOT_DOT2, + STATE(4146), 1, + sym_comment, + ACTIONS(7832), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121080] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2144), 1, + anon_sym_LBRACE, + ACTIONS(7834), 1, + anon_sym_DOT_DOT2, STATE(4147), 1, sym_comment, - [119986] = 6, - ACTIONS(103), 1, + ACTIONS(7836), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121097] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, - sym__entry_separator, - ACTIONS(2569), 1, - anon_sym_RBRACE, - ACTIONS(2631), 1, - anon_sym_LPAREN2, - ACTIONS(2633), 1, - sym__unquoted_pattern_in_record, + ACTIONS(2152), 1, + anon_sym_LBRACE, + ACTIONS(7838), 1, + anon_sym_DOT_DOT2, STATE(4148), 1, sym_comment, - [120005] = 5, + ACTIONS(7840), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121114] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(7214), 1, sym__entry_separator, - STATE(2231), 1, - aux_sym__types_body_repeat2, + ACTIONS(7509), 1, + anon_sym_DOT_DOT2, STATE(4149), 1, sym_comment, - ACTIONS(7757), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [120022] = 6, + ACTIONS(7511), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121131] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(7222), 1, sym__entry_separator, - ACTIONS(7759), 1, - anon_sym_LBRACK, - ACTIONS(7761), 1, - anon_sym_RBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, + ACTIONS(7509), 1, + anon_sym_DOT_DOT2, STATE(4150), 1, sym_comment, - [120041] = 5, + ACTIONS(7511), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121148] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1706), 1, - anon_sym_LBRACE, - ACTIONS(7763), 1, - anon_sym_DOT_DOT2, + ACTIONS(1740), 1, + sym__unquoted_pattern, STATE(4151), 1, sym_comment, - ACTIONS(7765), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120058] = 4, + ACTIONS(1738), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121163] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2503), 1, + ACTIONS(1808), 1, sym__unquoted_pattern, STATE(4152), 1, sym_comment, - ACTIONS(2501), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [120073] = 6, + ACTIONS(1806), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121178] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2635), 1, - sym__entry_separator, - ACTIONS(2637), 1, - anon_sym_RBRACE, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern_in_record, STATE(4153), 1, sym_comment, - [120092] = 4, + ACTIONS(1525), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [121191] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6902), 1, + ACTIONS(1846), 1, sym__unquoted_pattern, STATE(4154), 1, sym_comment, - ACTIONS(968), 3, + ACTIONS(1844), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121206] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7842), 1, + sym__newline, + ACTIONS(7845), 1, + anon_sym_PIPE, + ACTIONS(7848), 1, + anon_sym_EQ_GT, + STATE(4155), 2, + sym_comment, + aux_sym_match_pattern_repeat1, + [121223] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5237), 1, + anon_sym_LPAREN2, + ACTIONS(7678), 1, + anon_sym_RBRACE, + ACTIONS(7680), 1, + sym__entry_separator, + STATE(4156), 1, + sym_comment, + STATE(4663), 1, + sym__expr_parenthesized_immediate, + [121242] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4157), 1, + sym_comment, + ACTIONS(1529), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [121255] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(7850), 1, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [120107] = 4, + ACTIONS(7852), 1, + anon_sym_RBRACK, + STATE(1859), 1, + aux_sym__types_body_repeat2, + STATE(4158), 1, + sym_comment, + [121274] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2152), 1, + ACTIONS(2353), 1, sym__entry_separator, - STATE(4155), 1, + STATE(4159), 1, sym_comment, - ACTIONS(2154), 3, + ACTIONS(2355), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [120122] = 3, + [121289] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4156), 1, + STATE(4160), 1, sym_comment, - ACTIONS(7767), 4, + ACTIONS(7854), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [120135] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(1629), 1, - anon_sym_COLON2, - ACTIONS(7769), 1, - anon_sym_RBRACE, - STATE(1468), 1, - aux_sym__types_body_repeat2, - STATE(4157), 1, - sym_comment, - [120154] = 3, + [121302] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4158), 1, + STATE(4161), 1, sym_comment, - ACTIONS(7034), 4, + ACTIONS(7036), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [120167] = 6, - ACTIONS(103), 1, + [121315] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(994), 1, - sym__entry_separator, - ACTIONS(996), 1, - anon_sym_RBRACE, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_record, - STATE(4159), 1, + STATE(4162), 1, + sym_comment, + ACTIONS(7214), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121328] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4163), 1, sym_comment, - [120186] = 6, + ACTIONS(7856), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121341] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_RBRACE, - ACTIONS(1018), 1, - sym__entry_separator, - ACTIONS(2583), 1, + ACTIONS(5237), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_record, - STATE(4160), 1, + ACTIONS(6088), 1, + sym__entry_separator, + ACTIONS(6090), 1, + anon_sym_RBRACE, + STATE(4164), 1, sym_comment, - [120205] = 6, + STATE(5230), 1, + sym__expr_parenthesized_immediate, + [121360] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6466), 1, + ACTIONS(5237), 1, anon_sym_LPAREN2, - ACTIONS(7771), 1, - anon_sym_RBRACK, - ACTIONS(7773), 1, + ACTIONS(6092), 1, sym__entry_separator, - STATE(4161), 1, + ACTIONS(6094), 1, + anon_sym_RBRACE, + STATE(4165), 1, sym_comment, - STATE(4992), 1, + STATE(5230), 1, sym__expr_parenthesized_immediate, - [120224] = 6, + [121379] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7858), 1, + anon_sym_DQUOTE, + ACTIONS(7860), 2, + sym__escaped_str_content, + sym_escape_sequence, + STATE(4166), 2, + sym_comment, + aux_sym_string_content_repeat1, + [121394] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3069), 1, - sym_block, - STATE(4162), 1, + STATE(4167), 1, sym_comment, - STATE(4338), 1, - aux_sym__repeat_newline, - [120243] = 6, + ACTIONS(7222), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121407] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(5794), 1, sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(540), 1, + ACTIONS(7863), 1, + anon_sym_EQ, + ACTIONS(7865), 1, + anon_sym_COLON, + STATE(3328), 1, aux_sym__repeat_newline, - STATE(3071), 1, - sym_block, - STATE(4163), 1, + STATE(4168), 1, sym_comment, - [120262] = 3, + [121426] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4164), 1, + STATE(4169), 1, sym_comment, - ACTIONS(5241), 4, - ts_builtin_sym_end, + ACTIONS(7867), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [120275] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3077), 1, anon_sym_RPAREN, - ACTIONS(7775), 2, - sym__newline, - anon_sym_SEMI, - STATE(4165), 2, - sym_comment, - aux_sym__block_body_repeat1, - [120290] = 4, + anon_sym_RBRACE, + [121439] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(4166), 1, - sym_comment, - ACTIONS(1706), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [120305] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5328), 1, - anon_sym_COLON2, - STATE(4167), 1, + STATE(4170), 1, sym_comment, - STATE(4171), 1, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(5322), 2, + ACTIONS(7869), 4, + anon_sym_if, sym__newline, - sym__space, - [120322] = 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121452] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1558), 1, - sym__entry_separator, - STATE(4168), 1, - sym_comment, - ACTIONS(1556), 3, + ACTIONS(6601), 1, + anon_sym_LPAREN2, + ACTIONS(7411), 1, anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_DOT_DOT, - [120337] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(7419), 1, sym__entry_separator, - STATE(4169), 1, + STATE(4171), 1, sym_comment, - ACTIONS(1868), 3, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - [120352] = 3, + STATE(4746), 1, + sym__expr_parenthesized_immediate, + [121471] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4170), 1, + STATE(4172), 1, sym_comment, - ACTIONS(7778), 4, + ACTIONS(7871), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [120365] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7780), 1, - anon_sym_COLON2, - STATE(4171), 1, - sym_comment, - STATE(4295), 1, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(5322), 2, - sym__newline, - sym__space, - [120382] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4172), 1, - sym_comment, - ACTIONS(1802), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1804), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [120397] = 6, + [121484] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1726), 1, - anon_sym_LBRACE, - ACTIONS(1728), 1, - sym__unquoted_pattern, - ACTIONS(7782), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7784), 1, - aux_sym__immediate_decimal_token5, STATE(4173), 1, sym_comment, - [120416] = 3, + ACTIONS(7873), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [121497] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4174), 1, sym_comment, - ACTIONS(7786), 4, - anon_sym_EQ, - anon_sym_in, + ACTIONS(7875), 4, sym__newline, - anon_sym_COLON, - [120429] = 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [121510] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4175), 1, sym_comment, - ACTIONS(7788), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [120442] = 4, + ACTIONS(7877), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [121523] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2641), 1, + ACTIONS(2572), 1, sym__unquoted_pattern, STATE(4176), 1, sym_comment, - ACTIONS(2635), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [120457] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, - STATE(4177), 1, - sym_comment, - ACTIONS(968), 3, + ACTIONS(994), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [120472] = 6, + [121538] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4972), 1, + sym__entry_separator, + ACTIONS(7879), 1, + anon_sym_LT, + STATE(4177), 1, + sym_comment, + ACTIONS(4976), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [121555] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1460), 1, - sym__table_head_separator, - ACTIONS(7534), 1, - anon_sym_DOT2, + ACTIONS(2572), 1, + sym__unquoted_pattern, STATE(4178), 1, sym_comment, - STATE(4183), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4650), 1, - sym_path, - [120491] = 4, + ACTIONS(1012), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121570] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2194), 1, + ACTIONS(4972), 1, sym__entry_separator, + ACTIONS(7881), 1, + anon_sym_LT, STATE(4179), 1, sym_comment, - ACTIONS(2196), 3, + ACTIONS(4976), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [120506] = 3, + anon_sym_GT2, + [121587] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4180), 1, sym_comment, - ACTIONS(7790), 4, - anon_sym_EQ, - anon_sym_in, + ACTIONS(4105), 4, + ts_builtin_sym_end, sym__newline, - anon_sym_COLON, - [120519] = 4, + anon_sym_SEMI, + anon_sym_LBRACE, + [121600] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern, STATE(4181), 1, sym_comment, - ACTIONS(994), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [120534] = 4, + ACTIONS(4107), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [121613] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern, STATE(4182), 1, sym_comment, - ACTIONS(1018), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [120549] = 5, + ACTIONS(7883), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [121626] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1526), 1, - sym__table_head_separator, - ACTIONS(7792), 1, - anon_sym_DOT2, - STATE(4650), 1, - sym_path, - STATE(4183), 2, + STATE(4183), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - [120566] = 5, + ACTIONS(7883), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [121639] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3073), 1, - ts_builtin_sym_end, - STATE(1371), 1, - aux_sym__block_body_repeat1, STATE(4184), 1, sym_comment, - ACTIONS(55), 2, + ACTIONS(7885), 4, sym__newline, anon_sym_SEMI, - [120583] = 5, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [121652] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7795), 1, - anon_sym_DQUOTE, + ACTIONS(1962), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7887), 1, + anon_sym_DOT_DOT2, STATE(4185), 1, sym_comment, - STATE(4198), 1, - aux_sym_string_content_repeat1, - ACTIONS(7520), 2, - sym__escaped_str_content, - sym_escape_sequence, - [120600] = 4, - ACTIONS(103), 1, + ACTIONS(7889), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121669] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2198), 1, - sym__entry_separator, STATE(4186), 1, sym_comment, - ACTIONS(2200), 3, - anon_sym_RBRACK, + ACTIONS(7891), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [120615] = 4, - ACTIONS(103), 1, + [121682] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2100), 1, - sym__entry_separator, STATE(4187), 1, sym_comment, - ACTIONS(2102), 3, - anon_sym_RBRACK, + ACTIONS(7891), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [120630] = 4, + [121695] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2076), 1, + ACTIONS(5237), 1, + anon_sym_LPAREN2, + ACTIONS(7767), 1, + anon_sym_RBRACE, + ACTIONS(7769), 1, sym__entry_separator, STATE(4188), 1, sym_comment, - ACTIONS(2078), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [120645] = 3, + STATE(4663), 1, + sym__expr_parenthesized_immediate, + [121714] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7893), 1, + anon_sym_RBRACK, + STATE(3419), 1, + aux_sym_parameter_repeat2, STATE(4189), 1, sym_comment, - ACTIONS(5221), 4, - ts_builtin_sym_end, + ACTIONS(1474), 2, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [120658] = 6, - ACTIONS(3), 1, + anon_sym_COMMA, + [121731] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - STATE(3753), 1, - sym_parameter_parens, - STATE(3754), 1, - sym_parameter_bracks, + ACTIONS(2556), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7222), 1, + sym__entry_separator, STATE(4190), 1, sym_comment, - [120677] = 4, + ACTIONS(7432), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [121748] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4191), 1, + sym_comment, + ACTIONS(7895), 4, + anon_sym_EQ, + anon_sym_in, + sym__newline, + anon_sym_COLON, + [121761] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2120), 1, + ACTIONS(1956), 1, + anon_sym_LPAREN2, + ACTIONS(1962), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2574), 1, sym__entry_separator, - STATE(4191), 1, + ACTIONS(2576), 1, + anon_sym_RBRACK, + STATE(4192), 1, sym_comment, - ACTIONS(2122), 3, + [121780] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1952), 1, + sym__entry_separator, + ACTIONS(1954), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [120692] = 3, + ACTIONS(1956), 1, + anon_sym_LPAREN2, + ACTIONS(1962), 1, + sym__unquoted_pattern_in_list, + STATE(4193), 1, + sym_comment, + [121799] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4192), 1, + STATE(4194), 1, sym_comment, - ACTIONS(5237), 4, + ACTIONS(5104), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACE, - [120705] = 3, - ACTIONS(3), 1, + [121812] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4193), 1, - sym_comment, - ACTIONS(7797), 4, + ACTIONS(3454), 1, + anon_sym_COLON2, + ACTIONS(7897), 2, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [120718] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7753), 1, - anon_sym_LBRACK, - ACTIONS(7755), 1, - anon_sym_LPAREN, - STATE(4010), 1, - sym_parameter_parens, - STATE(4044), 1, - sym_parameter_bracks, - STATE(4194), 1, + sym__space, + STATE(4195), 2, sym_comment, - [120737] = 4, + aux_sym_pipe_element_parenthesized_repeat1, + [121827] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern, - STATE(4195), 1, + ACTIONS(3078), 1, + ts_builtin_sym_end, + STATE(1359), 1, + aux_sym__block_body_repeat1, + STATE(4196), 1, sym_comment, - ACTIONS(7210), 3, + ACTIONS(55), 2, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [120752] = 6, + anon_sym_SEMI, + [121844] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + anon_sym_LPAREN2, + ACTIONS(7900), 1, + anon_sym_RBRACK, + ACTIONS(7902), 1, + sym__entry_separator, + STATE(4197), 1, + sym_comment, + STATE(5020), 1, + sym__expr_parenthesized_immediate, + [121863] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(2834), 1, sym__newline, - ACTIONS(3778), 1, + ACTIONS(3803), 1, anon_sym_LBRACE, - STATE(3040), 1, + STATE(3118), 1, sym_block, - STATE(4163), 1, - aux_sym__repeat_newline, - STATE(4196), 1, + STATE(4198), 1, sym_comment, - [120771] = 5, + STATE(4241), 1, + aux_sym__repeat_newline, + [121882] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7230), 1, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(3803), 1, anon_sym_LBRACE, - STATE(3114), 1, - sym__blosure, - STATE(4197), 1, - sym_comment, - STATE(3113), 2, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(3050), 1, sym_block, - sym_val_closure, - [120788] = 4, - ACTIONS(103), 1, + STATE(4199), 1, + sym_comment, + [121901] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7799), 1, - anon_sym_DQUOTE, - ACTIONS(7801), 2, - sym__escaped_str_content, - sym_escape_sequence, - STATE(4198), 2, + ACTIONS(7904), 1, + anon_sym_LBRACK, + ACTIONS(7906), 1, + anon_sym_LPAREN, + STATE(3951), 1, + sym_parameter_parens, + STATE(3964), 1, + sym_parameter_bracks, + STATE(4200), 1, sym_comment, - aux_sym_string_content_repeat1, - [120803] = 4, + [121920] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(4199), 1, - sym_comment, - ACTIONS(1870), 2, - anon_sym_LPAREN2, + ACTIONS(4278), 1, sym__entry_separator, - ACTIONS(1872), 2, + ACTIONS(7850), 1, + anon_sym_LBRACK, + ACTIONS(7908), 1, anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [120818] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4200), 1, + STATE(1859), 1, + aux_sym__types_body_repeat2, + STATE(4201), 1, sym_comment, - ACTIONS(7804), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [120831] = 6, + [121939] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7753), 1, + ACTIONS(7904), 1, anon_sym_LBRACK, - ACTIONS(7755), 1, + ACTIONS(7906), 1, anon_sym_LPAREN, - STATE(3922), 1, + STATE(4066), 1, sym_parameter_parens, - STATE(3928), 1, + STATE(4075), 1, sym_parameter_bracks, - STATE(4201), 1, - sym_comment, - [120850] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2202), 1, - sym__entry_separator, STATE(4202), 1, sym_comment, - ACTIONS(2204), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [120865] = 3, + [121958] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(7910), 1, + anon_sym_DOT_DOT2, STATE(4203), 1, sym_comment, - ACTIONS(7806), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [120878] = 3, - ACTIONS(3), 1, + ACTIONS(7912), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121975] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7914), 1, + anon_sym_LPAREN, STATE(4204), 1, sym_comment, - ACTIONS(7808), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [120891] = 4, + ACTIONS(7916), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [121990] = 6, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(6601), 1, + anon_sym_LPAREN2, + ACTIONS(7918), 1, + anon_sym_RBRACK, + ACTIONS(7920), 1, + sym__entry_separator, STATE(4205), 1, sym_comment, - ACTIONS(5920), 2, - anon_sym_AT2, - sym__entry_separator, - ACTIONS(5924), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [120906] = 4, - ACTIONS(103), 1, + STATE(5020), 1, + sym__expr_parenthesized_immediate, + [122009] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2519), 1, - sym__entry_separator, STATE(4206), 1, sym_comment, - ACTIONS(2521), 3, - anon_sym_RBRACK, - anon_sym_GT2, + ACTIONS(7922), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - [120921] = 6, - ACTIONS(103), 1, + [122022] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5822), 1, - sym__entry_separator, - ACTIONS(5824), 1, - anon_sym_RBRACE, STATE(4207), 1, sym_comment, - STATE(4927), 1, - sym__expr_parenthesized_immediate, - [120940] = 4, - ACTIONS(103), 1, + ACTIONS(7924), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122035] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2206), 1, - sym__entry_separator, STATE(4208), 1, sym_comment, - ACTIONS(2208), 3, - anon_sym_RBRACK, + ACTIONS(7924), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [120955] = 4, - ACTIONS(103), 1, + [122048] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2210), 1, - sym__entry_separator, STATE(4209), 1, sym_comment, - ACTIONS(2212), 3, - anon_sym_RBRACK, + ACTIONS(7926), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [120970] = 4, - ACTIONS(103), 1, + [122061] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2214), 1, - sym__entry_separator, STATE(4210), 1, sym_comment, - ACTIONS(2216), 3, - anon_sym_RBRACK, + ACTIONS(7926), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [120985] = 6, - ACTIONS(103), 1, + [122074] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5833), 1, - sym__entry_separator, - ACTIONS(5835), 1, - anon_sym_RBRACE, STATE(4211), 1, sym_comment, - STATE(4927), 1, - sym__expr_parenthesized_immediate, - [121004] = 4, + ACTIONS(7928), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122087] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2218), 1, - sym__entry_separator, STATE(4212), 1, sym_comment, - ACTIONS(2220), 3, - anon_sym_RBRACK, + ACTIONS(2325), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2327), 2, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [121019] = 4, + sym__unquoted_pattern_in_record, + [122102] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, STATE(4213), 1, sym_comment, - ACTIONS(1964), 3, + ACTIONS(4101), 4, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [121034] = 3, + anon_sym_SEMI, + anon_sym_LBRACE, + [122115] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4214), 1, sym_comment, - ACTIONS(5257), 4, + ACTIONS(4103), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACE, - [121047] = 4, + [122128] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2222), 1, + ACTIONS(1615), 1, + anon_sym_RBRACE, + ACTIONS(1689), 1, sym__entry_separator, + ACTIONS(2554), 1, + anon_sym_LPAREN2, + ACTIONS(2556), 1, + sym__unquoted_pattern_in_record, STATE(4215), 1, sym_comment, - ACTIONS(2224), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [121062] = 4, + [122147] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2226), 1, - sym__entry_separator, + ACTIONS(2662), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2664), 1, + anon_sym_COLON2, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(3031), 1, + sym_block, STATE(4216), 1, sym_comment, - ACTIONS(2228), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [121077] = 4, + [122166] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, STATE(4217), 1, sym_comment, - ACTIONS(2575), 3, + ACTIONS(7930), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [121092] = 4, - ACTIONS(103), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122179] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2230), 1, - sym__entry_separator, STATE(4218), 1, sym_comment, - ACTIONS(2232), 3, - anon_sym_RBRACK, + ACTIONS(7930), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [121107] = 4, + [122192] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, STATE(4219), 1, sym_comment, - ACTIONS(1974), 3, + ACTIONS(7932), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [121122] = 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122205] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7307), 1, - anon_sym_RPAREN, - STATE(4165), 1, - aux_sym__block_body_repeat1, STATE(4220), 1, sym_comment, - ACTIONS(7810), 2, + ACTIONS(7932), 4, sym__newline, anon_sym_SEMI, - [121139] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122218] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2238), 1, - sym__entry_separator, STATE(4221), 1, sym_comment, - ACTIONS(2240), 3, - anon_sym_RBRACK, + ACTIONS(7924), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [121154] = 4, - ACTIONS(103), 1, + [122231] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2242), 1, - sym__entry_separator, STATE(4222), 1, sym_comment, - ACTIONS(2244), 3, - anon_sym_RBRACK, + ACTIONS(7924), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [121169] = 4, + [122244] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, STATE(4223), 1, sym_comment, - ACTIONS(2523), 3, + ACTIONS(7934), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [121184] = 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122257] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2246), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_record, + ACTIONS(1942), 1, sym__entry_separator, + ACTIONS(1944), 1, + anon_sym_RBRACE, + ACTIONS(1946), 1, + anon_sym_LPAREN2, STATE(4224), 1, sym_comment, - ACTIONS(2248), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [121199] = 4, + [122276] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2250), 1, + ACTIONS(6601), 1, + anon_sym_LPAREN2, + ACTIONS(7936), 1, + anon_sym_RBRACK, + ACTIONS(7938), 1, sym__entry_separator, STATE(4225), 1, sym_comment, - ACTIONS(2252), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [121214] = 4, - ACTIONS(3), 1, + STATE(5020), 1, + sym__expr_parenthesized_immediate, + [122295] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2633), 1, - sym__unquoted_pattern, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2509), 1, + sym__entry_separator, + ACTIONS(2511), 1, + anon_sym_RBRACK, + ACTIONS(2513), 1, + anon_sym_LPAREN2, STATE(4226), 1, sym_comment, - ACTIONS(2567), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [121229] = 4, - ACTIONS(3), 1, + [122314] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2503), 1, - sym__unquoted_pattern, + ACTIONS(2447), 1, + sym__entry_separator, STATE(4227), 1, sym_comment, - ACTIONS(2501), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [121244] = 6, + ACTIONS(2449), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [122329] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(3778), 1, - anon_sym_LBRACE, + ACTIONS(1956), 1, + anon_sym_LPAREN2, + ACTIONS(1962), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2574), 1, + sym__entry_separator, + ACTIONS(2576), 1, + anon_sym_RBRACE, STATE(4228), 1, sym_comment, - STATE(4304), 1, - sym_block, - [121263] = 6, + [122348] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7812), 1, - anon_sym_GT2, - ACTIONS(7814), 1, - anon_sym_AT2, - ACTIONS(7816), 1, + ACTIONS(1952), 1, sym__entry_separator, + ACTIONS(1954), 1, + anon_sym_RBRACE, + ACTIONS(1956), 1, + anon_sym_LPAREN2, + ACTIONS(1962), 1, + sym__unquoted_pattern_in_record, STATE(4229), 1, sym_comment, - STATE(4660), 1, - sym_param_completer, - [121282] = 6, - ACTIONS(103), 1, + [122367] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(3778), 1, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(3803), 1, anon_sym_LBRACE, + STATE(3077), 1, + sym_block, STATE(4230), 1, sym_comment, - STATE(4305), 1, - sym_block, - [121301] = 6, + STATE(4311), 1, + aux_sym__repeat_newline, + [122386] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(2986), 1, - sym_block, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2509), 1, + sym__entry_separator, + ACTIONS(2511), 1, + anon_sym_RBRACE, + ACTIONS(2513), 1, + anon_sym_LPAREN2, STATE(4231), 1, sym_comment, - [121320] = 5, - ACTIONS(3), 1, + [122405] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(7818), 1, - anon_sym_DOT_DOT2, + ACTIONS(2525), 1, + sym__entry_separator, + ACTIONS(2527), 1, + anon_sym_RBRACE, + ACTIONS(2529), 1, + anon_sym_LPAREN2, + ACTIONS(2531), 1, + sym__unquoted_pattern_in_record, STATE(4232), 1, sym_comment, - ACTIONS(7820), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [121337] = 3, - ACTIONS(3), 1, + [122424] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(7850), 1, + anon_sym_LBRACK, + ACTIONS(7940), 1, + anon_sym_RBRACK, + STATE(1859), 1, + aux_sym__types_body_repeat2, STATE(4233), 1, sym_comment, - ACTIONS(7822), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [121350] = 3, + [122443] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2327), 1, + sym__unquoted_pattern, STATE(4234), 1, sym_comment, - ACTIONS(7824), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [121363] = 5, + ACTIONS(2325), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [122458] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4722), 1, + ACTIONS(2562), 1, sym__entry_separator, - STATE(2232), 1, - aux_sym__types_body_repeat2, + ACTIONS(2564), 1, + anon_sym_RBRACE, + ACTIONS(2566), 1, + anon_sym_LPAREN2, + ACTIONS(2568), 1, + sym__unquoted_pattern_in_record, STATE(4235), 1, sym_comment, - ACTIONS(7448), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [121380] = 3, + [122477] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6954), 1, + sym__unquoted_pattern, STATE(4236), 1, sym_comment, - ACTIONS(1480), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [121393] = 4, + ACTIONS(890), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [122492] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2641), 1, - sym__unquoted_pattern, STATE(4237), 1, sym_comment, - ACTIONS(2635), 3, + ACTIONS(7942), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [121408] = 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122505] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4238), 1, sym_comment, - ACTIONS(4102), 4, - ts_builtin_sym_end, + ACTIONS(7942), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [121421] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122518] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7372), 1, - anon_sym_RPAREN, - STATE(4165), 1, - aux_sym__block_body_repeat1, STATE(4239), 1, sym_comment, - ACTIONS(7810), 2, + ACTIONS(7944), 4, sym__newline, anon_sym_SEMI, - [121438] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122531] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4240), 1, sym_comment, - ACTIONS(4104), 4, - ts_builtin_sym_end, + ACTIONS(7944), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [121451] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122544] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(3079), 1, + sym_block, STATE(4241), 1, sym_comment, - ACTIONS(7826), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121464] = 6, + [122563] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1736), 1, - anon_sym_LBRACE, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(7828), 1, - anon_sym_DOT, - ACTIONS(7830), 1, - aux_sym__immediate_decimal_token5, STATE(4242), 1, sym_comment, - [121483] = 3, + ACTIONS(7946), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122576] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4243), 1, sym_comment, - ACTIONS(1545), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [121496] = 3, + ACTIONS(7946), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122589] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4244), 1, sym_comment, - ACTIONS(1468), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [121509] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, + ACTIONS(4085), 4, + ts_builtin_sym_end, sym__newline, - ACTIONS(3196), 1, anon_sym_SEMI, - STATE(1364), 1, - aux_sym__parenthesized_body_repeat1, + anon_sym_LBRACE, + [122602] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(994), 1, + sym__entry_separator, + ACTIONS(996), 1, + anon_sym_RBRACE, + ACTIONS(2570), 1, + anon_sym_LPAREN2, + ACTIONS(2572), 1, + sym__unquoted_pattern_in_record, STATE(4245), 1, sym_comment, - STATE(4576), 1, - aux_sym__repeat_newline, - [121528] = 4, - ACTIONS(3), 1, + [122621] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern, + ACTIONS(1004), 1, + anon_sym_RBRACE, + ACTIONS(1012), 1, + sym__entry_separator, + ACTIONS(2570), 1, + anon_sym_LPAREN2, + ACTIONS(2572), 1, + sym__unquoted_pattern_in_record, STATE(4246), 1, sym_comment, - ACTIONS(994), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [121543] = 4, + [122640] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern, STATE(4247), 1, sym_comment, - ACTIONS(1018), 3, + ACTIONS(4087), 4, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [121558] = 5, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_LBRACE, + [122653] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7832), 1, - anon_sym_RPAREN, - STATE(4165), 1, - aux_sym__block_body_repeat1, + ACTIONS(2451), 1, + sym__entry_separator, STATE(4248), 1, sym_comment, - ACTIONS(7810), 2, - sym__newline, - anon_sym_SEMI, - [121575] = 3, - ACTIONS(3), 1, + ACTIONS(2453), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [122668] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2455), 1, + sym__entry_separator, STATE(4249), 1, sym_comment, - ACTIONS(1472), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [121588] = 3, + ACTIONS(2457), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [122683] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7451), 1, + anon_sym_RPAREN, STATE(4250), 1, sym_comment, - ACTIONS(1476), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [121601] = 3, + STATE(4292), 1, + aux_sym__block_body_repeat1, + ACTIONS(7799), 2, + sym__newline, + anon_sym_SEMI, + [122700] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4251), 1, sym_comment, - ACTIONS(1516), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [121614] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4252), 1, - sym_comment, - ACTIONS(7826), 4, + ACTIONS(7948), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121627] = 3, + [122713] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4253), 1, + STATE(4252), 1, sym_comment, - ACTIONS(6928), 4, + ACTIONS(7950), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [121640] = 5, + [122726] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__space, - ACTIONS(4969), 1, - sym__unquoted_pattern, - STATE(4254), 1, - sym_comment, - ACTIONS(868), 2, - sym__newline, - anon_sym_SEMI, - [121657] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4255), 1, + ACTIONS(2459), 1, + sym__entry_separator, + STATE(4253), 1, sym_comment, - ACTIONS(7834), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2461), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [121670] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + [122741] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7836), 1, - anon_sym_DOT_DOT2, - STATE(4256), 1, + ACTIONS(2463), 1, + sym__entry_separator, + STATE(4254), 1, sym_comment, - ACTIONS(7838), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [121687] = 6, + ACTIONS(2465), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [122756] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(7544), 1, - anon_sym_RBRACE, - ACTIONS(7546), 1, + ACTIONS(2467), 1, sym__entry_separator, - STATE(4257), 1, + STATE(4255), 1, sym_comment, - STATE(4638), 1, - sym__expr_parenthesized_immediate, - [121706] = 4, + ACTIONS(2469), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [122771] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1858), 1, + ACTIONS(2471), 1, sym__entry_separator, - STATE(4258), 1, + STATE(4256), 1, sym_comment, - ACTIONS(1860), 3, + ACTIONS(2473), 3, anon_sym_RBRACK, - anon_sym_GT2, anon_sym_RBRACE, - [121721] = 3, + anon_sym_DOT_DOT, + [122786] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4259), 1, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(3231), 1, + sym_block, + STATE(4257), 1, + sym_comment, + [122805] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4258), 1, sym_comment, - ACTIONS(7840), 4, + ACTIONS(7948), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121734] = 3, + [122818] = 6, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(7850), 1, + anon_sym_LBRACK, + ACTIONS(7952), 1, + anon_sym_RBRACK, + STATE(1859), 1, + aux_sym__types_body_repeat2, + STATE(4259), 1, + sym_comment, + [122837] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4260), 1, sym_comment, - ACTIONS(1462), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [121747] = 3, + ACTIONS(7942), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122850] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4261), 1, sym_comment, - ACTIONS(6942), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [121760] = 3, + ACTIONS(7942), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122863] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4262), 1, sym_comment, - ACTIONS(7840), 4, + ACTIONS(7944), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121773] = 6, - ACTIONS(103), 1, + [122876] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(7560), 1, - anon_sym_RBRACE, - ACTIONS(7562), 1, - sym__entry_separator, STATE(4263), 1, sym_comment, - STATE(4638), 1, - sym__expr_parenthesized_immediate, - [121792] = 5, + ACTIONS(7944), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122889] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7842), 1, - anon_sym_LBRACE, - STATE(3282), 1, - sym__blosure, STATE(4264), 1, sym_comment, - STATE(3281), 2, - sym_block, - sym_val_closure, - [121809] = 5, + ACTIONS(7954), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [122902] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7210), 1, + ACTIONS(2525), 1, sym__entry_separator, + ACTIONS(2527), 1, + anon_sym_RBRACK, + ACTIONS(2529), 1, + anon_sym_LPAREN2, + ACTIONS(2531), 1, + sym__unquoted_pattern_in_list, STATE(4265), 1, sym_comment, - ACTIONS(7278), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [121826] = 3, - ACTIONS(3), 1, + [122921] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(6601), 1, + anon_sym_LPAREN2, + ACTIONS(7956), 1, + anon_sym_RBRACK, + ACTIONS(7958), 1, + sym__entry_separator, STATE(4266), 1, sym_comment, - ACTIONS(6955), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [121839] = 6, + STATE(5020), 1, + sym__expr_parenthesized_immediate, + [122940] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5690), 1, - sym__newline, - ACTIONS(7844), 1, - anon_sym_EQ, - ACTIONS(7846), 1, - anon_sym_COLON, - STATE(3306), 1, - aux_sym__repeat_newline, + ACTIONS(7156), 1, + anon_sym_LBRACK, + ACTIONS(7158), 1, + anon_sym_LPAREN, + STATE(3876), 1, + sym_parameter_parens, + STATE(3878), 1, + sym_parameter_bracks, STATE(4267), 1, sym_comment, - [121858] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7848), 1, - sym__space, - ACTIONS(5708), 2, - sym__newline, - anon_sym_SEMI, - STATE(4268), 2, - sym_comment, - aux_sym_attribute_repeat1, - [121873] = 3, + [122959] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4269), 1, + STATE(4268), 1, sym_comment, - ACTIONS(7851), 4, + ACTIONS(7060), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [121886] = 6, - ACTIONS(103), 1, + [122972] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1689), 1, + anon_sym_LBRACE, + ACTIONS(7960), 1, + anon_sym_DOT_DOT2, + STATE(4269), 1, + sym_comment, + ACTIONS(7962), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [122989] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2575), 1, - sym__entry_separator, - ACTIONS(2577), 1, - anon_sym_RBRACK, STATE(4270), 1, sym_comment, - [121905] = 5, - ACTIONS(103), 1, + ACTIONS(7946), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123002] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7855), 1, - sym__space, - STATE(4268), 1, - aux_sym_attribute_repeat1, STATE(4271), 1, sym_comment, - ACTIONS(7853), 2, + ACTIONS(7946), 4, sym__newline, anon_sym_SEMI, - [121922] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123015] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1974), 1, - sym__entry_separator, - ACTIONS(1976), 1, - anon_sym_RBRACK, - ACTIONS(1978), 1, - anon_sym_LPAREN2, - ACTIONS(1984), 1, - sym__unquoted_pattern_in_list, STATE(4272), 1, sym_comment, - [121941] = 4, - ACTIONS(103), 1, + ACTIONS(7964), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123028] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2556), 1, + sym__unquoted_pattern, STATE(4273), 1, sym_comment, - ACTIONS(7857), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7859), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [121956] = 3, + ACTIONS(1689), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [123043] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4274), 1, sym_comment, - ACTIONS(7026), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [121969] = 4, - ACTIONS(103), 1, + ACTIONS(7964), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123056] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4275), 1, sym_comment, - ACTIONS(1726), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1728), 2, + ACTIONS(7966), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [121984] = 3, + [123069] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4276), 1, sym_comment, - ACTIONS(6115), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_AT2, - anon_sym_LBRACE, - [121997] = 4, - ACTIONS(103), 1, + ACTIONS(7122), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [123082] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4277), 1, sym_comment, - ACTIONS(7861), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7863), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [122012] = 3, + ACTIONS(7966), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123095] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4278), 1, sym_comment, - ACTIONS(7032), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [122025] = 4, - ACTIONS(103), 1, + ACTIONS(7968), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123108] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4279), 1, sym_comment, - ACTIONS(1802), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1804), 2, + ACTIONS(7968), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [122040] = 4, + [123121] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2591), 1, + ACTIONS(2333), 1, sym__entry_separator, STATE(4280), 1, sym_comment, - ACTIONS(2593), 3, + ACTIONS(2335), 3, anon_sym_RBRACK, - anon_sym_GT2, anon_sym_RBRACE, - [122055] = 4, + anon_sym_DOT_DOT, + [123136] = 4, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1531), 1, + sym__entry_separator, STATE(4281), 1, sym_comment, - ACTIONS(1870), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1872), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [122070] = 3, - ACTIONS(3), 1, + ACTIONS(1529), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [123151] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2136), 1, + sym__entry_separator, STATE(4282), 1, sym_comment, - ACTIONS(7865), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [122083] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1621), 1, + ACTIONS(2138), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(1629), 1, - anon_sym_COLON2, - STATE(1475), 1, - aux_sym__types_body_repeat2, + anon_sym_DOT_DOT, + [123166] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4283), 1, sym_comment, - [122102] = 3, + ACTIONS(7970), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123179] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4284), 1, sym_comment, - ACTIONS(6959), 4, + ACTIONS(7093), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [122115] = 3, - ACTIONS(3), 1, + [123192] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2144), 1, + sym__entry_separator, STATE(4285), 1, sym_comment, - ACTIONS(7867), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2146), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - [122128] = 3, + anon_sym_DOT_DOT, + [123207] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4286), 1, sym_comment, - ACTIONS(7869), 4, + ACTIONS(5088), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122141] = 3, + anon_sym_LBRACE, + [123220] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4287), 1, sym_comment, - ACTIONS(7871), 4, + ACTIONS(7970), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122154] = 6, + [123233] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(7873), 1, - anon_sym_LBRACK, - STATE(540), 1, - aux_sym__repeat_newline, STATE(4288), 1, sym_comment, - STATE(4973), 1, - sym_val_list, - [122173] = 3, + ACTIONS(5074), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [123246] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1641), 1, + sym__unquoted_pattern, STATE(4289), 1, sym_comment, - ACTIONS(7875), 4, + ACTIONS(2509), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122186] = 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123261] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7156), 1, + anon_sym_LBRACK, + ACTIONS(7158), 1, + anon_sym_LPAREN, + STATE(3824), 1, + sym_parameter_parens, + STATE(3826), 1, + sym_parameter_bracks, STATE(4290), 1, sym_comment, - ACTIONS(7877), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122199] = 5, + [123280] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7763), 1, - anon_sym_DOT_DOT2, - ACTIONS(7879), 1, - anon_sym_LBRACE, STATE(4291), 1, sym_comment, - ACTIONS(7765), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [122216] = 5, + ACTIONS(7972), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [123293] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(459), 1, - ts_builtin_sym_end, - STATE(1368), 1, - aux_sym__block_body_repeat1, - STATE(4292), 1, - sym_comment, - ACTIONS(55), 2, + ACTIONS(3068), 1, + anon_sym_RPAREN, + ACTIONS(7974), 2, sym__newline, anon_sym_SEMI, - [122233] = 5, + STATE(4292), 2, + sym_comment, + aux_sym__block_body_repeat1, + [123308] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, + ACTIONS(1962), 1, sym__unquoted_pattern, - ACTIONS(7881), 1, - anon_sym_DOT_DOT2, STATE(4293), 1, sym_comment, - ACTIONS(7883), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [122250] = 6, + ACTIONS(2574), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123323] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7885), 1, - anon_sym_COLON, - ACTIONS(7887), 1, - anon_sym_GT2, - ACTIONS(7889), 1, + ACTIONS(2152), 1, sym__entry_separator, STATE(4294), 1, sym_comment, - STATE(4785), 1, - sym__collection_annotation, - [122269] = 4, - ACTIONS(103), 1, + ACTIONS(2154), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [123338] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3440), 1, - anon_sym_COLON2, - ACTIONS(7891), 2, - sym__newline, - sym__space, - STATE(4295), 2, + ACTIONS(7334), 1, + anon_sym_LBRACE, + STATE(3126), 1, + sym__blosure, + STATE(4295), 1, sym_comment, - aux_sym_pipe_element_parenthesized_repeat1, - [122284] = 6, - ACTIONS(103), 1, + STATE(3205), 2, + sym_block, + sym_val_closure, + [123355] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7885), 1, - anon_sym_COLON, - ACTIONS(7894), 1, - anon_sym_GT2, - ACTIONS(7896), 1, - sym__entry_separator, + ACTIONS(7904), 1, + anon_sym_LBRACK, + ACTIONS(7906), 1, + anon_sym_LPAREN, + STATE(3940), 1, + sym_parameter_parens, + STATE(3942), 1, + sym_parameter_bracks, STATE(4296), 1, sym_comment, - STATE(4787), 1, - sym__collection_annotation, - [122303] = 3, + [123374] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4297), 1, sym_comment, - ACTIONS(6894), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [122316] = 3, + ACTIONS(7101), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [123387] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2531), 1, + sym__unquoted_pattern, STATE(4298), 1, sym_comment, - ACTIONS(6922), 4, - ts_builtin_sym_end, + ACTIONS(2525), 3, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [122329] = 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123402] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4299), 1, sym_comment, - ACTIONS(7002), 4, + ACTIONS(7091), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [122342] = 3, + [123415] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4300), 1, sym_comment, - ACTIONS(7898), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122355] = 3, - ACTIONS(3), 1, + ACTIONS(7977), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [123428] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(4301), 1, sym_comment, - ACTIONS(7900), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122368] = 3, + ACTIONS(7979), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7981), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [123443] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4302), 1, sym_comment, - ACTIONS(7902), 4, + ACTIONS(7966), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122381] = 5, + [123456] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7763), 1, - anon_sym_DOT_DOT2, - ACTIONS(7904), 1, - anon_sym_LBRACE, STATE(4303), 1, sym_comment, - ACTIONS(7765), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [122398] = 3, + ACTIONS(7020), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [123469] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4304), 1, sym_comment, - ACTIONS(7906), 4, + ACTIONS(7983), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122411] = 3, + [123482] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4305), 1, sym_comment, - ACTIONS(7908), 4, + ACTIONS(7985), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122424] = 6, + [123495] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7289), 1, - sym__newline, - ACTIONS(7291), 1, - anon_sym_PIPE, - ACTIONS(7910), 1, - anon_sym_EQ_GT, STATE(4306), 1, sym_comment, - STATE(4358), 1, - aux_sym_match_pattern_repeat1, - [122443] = 6, - ACTIONS(103), 1, + ACTIONS(7987), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [123508] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(7621), 1, - anon_sym_RBRACE, - ACTIONS(7623), 1, - sym__entry_separator, STATE(4307), 1, sym_comment, - STATE(4638), 1, - sym__expr_parenthesized_immediate, - [122462] = 6, - ACTIONS(103), 1, + ACTIONS(7989), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123521] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2635), 1, - sym__entry_separator, - ACTIONS(2637), 1, - anon_sym_RBRACK, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2641), 1, - sym__unquoted_pattern_in_list, STATE(4308), 1, sym_comment, - [122481] = 6, - ACTIONS(103), 1, + ACTIONS(7991), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123534] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1619), 1, - anon_sym_RBRACK, - ACTIONS(1706), 1, - sym__entry_separator, - ACTIONS(2595), 1, - anon_sym_LPAREN2, - ACTIONS(2597), 1, - sym__unquoted_pattern_in_list, STATE(4309), 1, sym_comment, - [122500] = 4, - ACTIONS(103), 1, + ACTIONS(5064), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [123547] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7912), 1, - anon_sym_LPAREN, STATE(4310), 1, sym_comment, - ACTIONS(7914), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [122515] = 5, - ACTIONS(103), 1, + ACTIONS(7993), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123560] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(3001), 1, + sym_block, STATE(4311), 1, sym_comment, - ACTIONS(868), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [122532] = 6, - ACTIONS(103), 1, + [123579] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(7438), 1, - anon_sym_RBRACK, - ACTIONS(7440), 1, - sym__entry_separator, STATE(4312), 1, sym_comment, - STATE(4745), 1, - sym__expr_parenthesized_immediate, - [122551] = 3, + ACTIONS(7995), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123592] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7960), 1, + anon_sym_DOT_DOT2, + ACTIONS(7997), 1, + anon_sym_LBRACE, STATE(4313), 1, sym_comment, - ACTIONS(4376), 4, - sym__newline, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT, - [122564] = 4, - ACTIONS(103), 1, + ACTIONS(7962), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [123609] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7916), 1, - anon_sym_LPAREN, STATE(4314), 1, sym_comment, - ACTIONS(7918), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [122579] = 6, - ACTIONS(103), 1, + ACTIONS(7995), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123622] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(7920), 1, - anon_sym_RBRACK, - ACTIONS(7922), 1, - sym__entry_separator, + ACTIONS(7999), 1, + anon_sym_RPAREN, + STATE(4292), 1, + aux_sym__block_body_repeat1, STATE(4315), 1, sym_comment, - STATE(4992), 1, - sym__expr_parenthesized_immediate, - [122598] = 5, - ACTIONS(103), 1, + ACTIONS(7799), 2, + sym__newline, + anon_sym_SEMI, + [123639] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7855), 1, - sym__space, - STATE(4271), 1, - aux_sym_attribute_repeat1, STATE(4316), 1, sym_comment, - ACTIONS(7924), 2, - sym__newline, - anon_sym_SEMI, - [122615] = 5, + ACTIONS(6252), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_AT2, + anon_sym_LBRACE, + [123652] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3046), 1, - ts_builtin_sym_end, - STATE(1367), 1, - aux_sym__block_body_repeat1, STATE(4317), 1, sym_comment, - ACTIONS(55), 2, + ACTIONS(7966), 4, sym__newline, anon_sym_SEMI, - [122632] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123665] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(7759), 1, - anon_sym_LBRACK, - ACTIONS(7926), 1, - anon_sym_RBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, STATE(4318), 1, sym_comment, - [122651] = 6, - ACTIONS(3), 1, + ACTIONS(7081), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [123678] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3041), 1, - sym_block, + ACTIONS(8001), 1, + anon_sym_DQUOTE, + STATE(4166), 1, + aux_sym_string_content_repeat1, STATE(4319), 1, sym_comment, - [122670] = 6, - ACTIONS(103), 1, + ACTIONS(7596), 2, + sym__escaped_str_content, + sym_escape_sequence, + [123695] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(7759), 1, - anon_sym_LBRACK, - ACTIONS(7928), 1, - anon_sym_RBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, + ACTIONS(7960), 1, + anon_sym_DOT_DOT2, + ACTIONS(8003), 1, + anon_sym_LBRACE, STATE(4320), 1, sym_comment, - [122689] = 6, + ACTIONS(7962), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [123712] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - ACTIONS(7930), 1, - anon_sym_RBRACK, - ACTIONS(7932), 1, + ACTIONS(4813), 1, sym__entry_separator, + STATE(2241), 1, + aux_sym__types_body_repeat2, STATE(4321), 1, sym_comment, - STATE(4992), 1, - sym__expr_parenthesized_immediate, - [122708] = 3, + ACTIONS(8005), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [123729] = 5, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4813), 1, + sym__entry_separator, + STATE(2248), 1, + aux_sym__types_body_repeat2, STATE(4322), 1, sym_comment, - ACTIONS(1520), 4, + ACTIONS(8005), 2, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [122721] = 3, + anon_sym_DOT_DOT, + [123746] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4323), 1, sym_comment, - ACTIONS(7934), 4, - anon_sym_if, + ACTIONS(7006), 4, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [122734] = 3, + anon_sym_SEMI, + anon_sym_LBRACE, + [123759] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4324), 1, sym_comment, - ACTIONS(7936), 4, - anon_sym_if, + ACTIONS(6974), 4, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [122747] = 5, - ACTIONS(103), 1, + anon_sym_SEMI, + anon_sym_LBRACE, + [123772] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - STATE(2234), 1, - aux_sym__types_body_repeat2, STATE(4325), 1, sym_comment, - ACTIONS(7315), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [122764] = 5, - ACTIONS(103), 1, + ACTIONS(8007), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123785] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - STATE(2236), 1, - aux_sym__types_body_repeat2, STATE(4326), 1, sym_comment, - ACTIONS(7675), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [122781] = 3, + ACTIONS(7968), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123798] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4327), 1, sym_comment, - ACTIONS(7938), 4, - anon_sym_if, + ACTIONS(8009), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [122794] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(1629), 1, - anon_sym_COLON2, - ACTIONS(7940), 1, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - STATE(1480), 1, - aux_sym__types_body_repeat2, + [123811] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4328), 1, sym_comment, - [122813] = 5, + ACTIONS(7968), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123824] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7942), 1, - anon_sym_RBRACK, - STATE(3371), 1, - aux_sym_parameter_repeat2, STATE(4329), 1, sym_comment, - ACTIONS(1494), 2, + ACTIONS(8011), 4, sym__newline, - anon_sym_COMMA, - [122830] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(1629), 1, - anon_sym_COLON2, - ACTIONS(7944), 1, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - STATE(1484), 1, - aux_sym__types_body_repeat2, + [123837] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4330), 1, sym_comment, - [122849] = 6, + ACTIONS(7970), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123850] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7055), 1, - anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_LPAREN, - STATE(3768), 1, - sym_parameter_parens, - STATE(3769), 1, - sym_parameter_bracks, + ACTIONS(2568), 1, + sym__unquoted_pattern, STATE(4331), 1, sym_comment, - [122868] = 4, + ACTIONS(2562), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [123865] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1766), 1, + sym__unquoted_pattern, STATE(4332), 1, sym_comment, - ACTIONS(1726), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1728), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [122883] = 3, + ACTIONS(890), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123880] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4333), 1, sym_comment, - ACTIONS(7946), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [122896] = 3, + ACTIONS(7970), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123893] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4334), 1, sym_comment, - ACTIONS(7948), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [122909] = 4, + ACTIONS(8013), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123906] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4335), 1, sym_comment, - ACTIONS(1802), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1804), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [122924] = 4, + ACTIONS(8013), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123919] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4336), 1, sym_comment, - ACTIONS(1870), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1872), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [122939] = 3, + ACTIONS(8015), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123932] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4337), 1, sym_comment, - ACTIONS(7950), 4, + ACTIONS(8015), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122952] = 6, + [123945] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3028), 1, - sym_block, + ACTIONS(2556), 1, + sym__unquoted_pattern, STATE(4338), 1, sym_comment, - [122971] = 3, - ACTIONS(103), 1, + ACTIONS(7222), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123960] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4339), 1, sym_comment, - ACTIONS(1535), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [122984] = 5, + ACTIONS(8015), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123973] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7952), 1, - anon_sym_DOT_DOT2, STATE(4340), 1, sym_comment, - ACTIONS(7954), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [123001] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4341), 1, - sym_comment, - ACTIONS(7956), 4, + ACTIONS(8015), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123014] = 3, + [123986] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5520), 1, + anon_sym_COLON2, + STATE(4341), 1, + sym_comment, + STATE(4375), 1, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(5514), 2, + sym__newline, + sym__space, + [124003] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4342), 1, sym_comment, - ACTIONS(7958), 4, + ACTIONS(8017), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123027] = 3, + [124016] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4343), 1, sym_comment, - ACTIONS(7960), 4, + ACTIONS(8017), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123040] = 3, + [124029] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4344), 1, sym_comment, - ACTIONS(7962), 4, + ACTIONS(8019), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123053] = 6, - ACTIONS(103), 1, + [124042] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5804), 1, - sym__entry_separator, - ACTIONS(5806), 1, - anon_sym_RBRACE, STATE(4345), 1, sym_comment, - STATE(4927), 1, - sym__expr_parenthesized_immediate, - [123072] = 3, + ACTIONS(8019), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124055] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4346), 1, sym_comment, - ACTIONS(7964), 4, + ACTIONS(8021), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123085] = 3, + [124068] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2572), 1, + sym__unquoted_pattern, STATE(4347), 1, sym_comment, - ACTIONS(6936), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [123098] = 4, + ACTIONS(994), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [124083] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(2572), 1, sym__unquoted_pattern, STATE(4348), 1, sym_comment, - ACTIONS(1726), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [123113] = 6, - ACTIONS(103), 1, + ACTIONS(1012), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [124098] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(5808), 1, - sym__entry_separator, - ACTIONS(5810), 1, - anon_sym_RBRACE, STATE(4349), 1, sym_comment, - STATE(4927), 1, - sym__expr_parenthesized_immediate, - [123132] = 3, + ACTIONS(8021), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124111] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4350), 1, sym_comment, - ACTIONS(7966), 4, + ACTIONS(5138), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123145] = 3, + anon_sym_LBRACE, + [124124] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4351), 1, sym_comment, - ACTIONS(7968), 4, + ACTIONS(8023), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123158] = 6, + [124137] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3214), 1, - sym_block, STATE(4352), 1, sym_comment, - STATE(4356), 1, - aux_sym__repeat_newline, - [123177] = 4, - ACTIONS(3), 1, + ACTIONS(8025), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124150] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern, + ACTIONS(890), 1, + sym__entry_separator, STATE(4353), 1, sym_comment, - ACTIONS(1802), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [123192] = 4, + ACTIONS(793), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [124165] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1872), 1, + ACTIONS(2327), 1, sym__unquoted_pattern, STATE(4354), 1, sym_comment, - ACTIONS(1870), 3, + ACTIONS(2325), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [123207] = 6, + [124180] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, + ACTIONS(8027), 1, anon_sym_LBRACE, - STATE(3317), 1, - sym_block, + STATE(3319), 1, + sym__blosure, STATE(4355), 1, sym_comment, - STATE(4357), 1, - aux_sym__repeat_newline, - [123226] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3318), 1, + STATE(3283), 2, sym_block, - STATE(4356), 1, - sym_comment, - [123245] = 6, - ACTIONS(3), 1, + sym_val_closure, + [124197] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3320), 1, - sym_block, - STATE(4357), 1, + ACTIONS(2562), 1, + sym__entry_separator, + ACTIONS(2564), 1, + anon_sym_RBRACK, + ACTIONS(2566), 1, + anon_sym_LPAREN2, + ACTIONS(2568), 1, + sym__unquoted_pattern_in_list, + STATE(4356), 1, sym_comment, - [123264] = 5, + [124216] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7970), 1, + ACTIONS(7555), 1, sym__newline, - ACTIONS(7973), 1, + ACTIONS(7557), 1, anon_sym_PIPE, - ACTIONS(7976), 1, + ACTIONS(8029), 1, anon_sym_EQ_GT, - STATE(4358), 2, - sym_comment, + STATE(4155), 1, aux_sym_match_pattern_repeat1, - [123281] = 6, + STATE(4357), 1, + sym_comment, + [124235] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1615), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1964), 1, - sym__entry_separator, - ACTIONS(1966), 1, anon_sym_RBRACK, - ACTIONS(1968), 1, + ACTIONS(1689), 1, + sym__entry_separator, + ACTIONS(2554), 1, anon_sym_LPAREN2, - STATE(4359), 1, + ACTIONS(2556), 1, + sym__unquoted_pattern_in_list, + STATE(4358), 1, sym_comment, - [123300] = 6, + [124254] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + STATE(4359), 1, + sym_comment, + ACTIONS(8031), 4, + anon_sym_if, sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3183), 1, - sym_block, + anon_sym_PIPE, + anon_sym_EQ_GT, + [124267] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(890), 1, + sym__entry_separator, + ACTIONS(6335), 1, + sym__unquoted_pattern_in_list, STATE(4360), 1, sym_comment, - STATE(4362), 1, - aux_sym__repeat_newline, - [123319] = 6, - ACTIONS(3), 1, + ACTIONS(793), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [124284] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3184), 1, - sym_block, + ACTIONS(2086), 1, + sym__entry_separator, STATE(4361), 1, sym_comment, - STATE(4363), 1, - aux_sym__repeat_newline, - [123338] = 6, + ACTIONS(2088), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [124299] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3185), 1, - sym_block, STATE(4362), 1, sym_comment, - [123357] = 6, + ACTIONS(4453), 4, + sym__newline, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_DOT_DOT, + [124312] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(540), 1, - aux_sym__repeat_newline, - STATE(3187), 1, - sym_block, STATE(4363), 1, sym_comment, - [123376] = 6, + ACTIONS(5128), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [124325] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(994), 1, + ACTIONS(1623), 1, sym__entry_separator, - ACTIONS(996), 1, - anon_sym_RBRACK, - ACTIONS(2583), 1, - anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_list, + ACTIONS(1625), 1, + anon_sym_COLON2, + ACTIONS(8033), 1, + anon_sym_RBRACE, + STATE(1473), 1, + aux_sym__types_body_repeat2, STATE(4364), 1, sym_comment, - [123395] = 6, + [124344] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_RBRACK, - ACTIONS(1018), 1, - sym__entry_separator, - ACTIONS(2583), 1, + ACTIONS(5237), 1, anon_sym_LPAREN2, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_list, + ACTIONS(7714), 1, + anon_sym_RBRACE, + ACTIONS(7716), 1, + sym__entry_separator, STATE(4365), 1, sym_comment, - [123414] = 6, - ACTIONS(103), 1, + STATE(4663), 1, + sym__expr_parenthesized_immediate, + [124363] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(7759), 1, - anon_sym_LBRACK, - ACTIONS(7978), 1, - anon_sym_RBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, + ACTIONS(459), 1, + ts_builtin_sym_end, + STATE(1363), 1, + aux_sym__block_body_repeat1, STATE(4366), 1, sym_comment, - [123433] = 4, - ACTIONS(103), 1, + ACTIONS(55), 2, + sym__newline, + anon_sym_SEMI, + [124380] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2234), 1, - sym__entry_separator, + ACTIONS(1492), 1, + sym__table_head_separator, + ACTIONS(7604), 1, + anon_sym_DOT2, STATE(4367), 1, sym_comment, - ACTIONS(2236), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [123448] = 3, + STATE(4374), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4827), 1, + sym_path, + [124399] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1962), 1, + sym__unquoted_pattern, STATE(4368), 1, sym_comment, - ACTIONS(7956), 3, - ts_builtin_sym_end, + ACTIONS(1952), 3, sym__newline, - anon_sym_SEMI, - [123460] = 4, - ACTIONS(103), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [124414] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2254), 1, - sym__entry_separator, STATE(4369), 1, sym_comment, - ACTIONS(2256), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [123474] = 5, - ACTIONS(103), 1, + ACTIONS(8035), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [124427] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(7980), 1, - anon_sym_GT2, - STATE(1930), 1, - aux_sym__types_body_repeat2, STATE(4370), 1, sym_comment, - [123490] = 5, - ACTIONS(103), 1, + ACTIONS(8037), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [124440] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4304), 1, - sym_block, + ACTIONS(7156), 1, + anon_sym_LBRACK, + ACTIONS(7158), 1, + anon_sym_LPAREN, + STATE(3901), 1, + sym_parameter_parens, + STATE(3904), 1, + sym_parameter_bracks, STATE(4371), 1, sym_comment, - [123506] = 3, - ACTIONS(3), 1, + [124459] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2329), 1, + sym__entry_separator, STATE(4372), 1, sym_comment, - ACTIONS(7958), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123518] = 3, + ACTIONS(2331), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [124474] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1738), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + sym__unquoted_pattern, + ACTIONS(8039), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8041), 1, + aux_sym__immediate_decimal_token5, STATE(4373), 1, sym_comment, - ACTIONS(7960), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123530] = 4, - ACTIONS(103), 1, + [124493] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5251), 1, - sym__entry_separator, - STATE(4374), 1, + ACTIONS(1496), 1, + sym__table_head_separator, + ACTIONS(8043), 1, + anon_sym_DOT2, + STATE(4827), 1, + sym_path, + STATE(4374), 2, sym_comment, - ACTIONS(5249), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [123544] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4417), 1, - sym__entry_separator, - ACTIONS(7982), 1, - anon_sym_RBRACK, - STATE(2087), 1, - aux_sym__types_body_repeat2, + aux_sym__where_predicate_lhs_repeat1, + [124510] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8046), 1, + anon_sym_COLON2, + STATE(4195), 1, + aux_sym_pipe_element_parenthesized_repeat1, STATE(4375), 1, sym_comment, - [123560] = 3, - ACTIONS(3), 1, + ACTIONS(5514), 2, + sym__newline, + sym__space, + [124527] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(8048), 1, + anon_sym_LPAREN, STATE(4376), 1, sym_comment, - ACTIONS(4625), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [123572] = 3, - ACTIONS(3), 1, + ACTIONS(8050), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [124542] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2098), 1, + sym__entry_separator, STATE(4377), 1, sym_comment, - ACTIONS(7962), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123584] = 3, + ACTIONS(2100), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [124557] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4378), 1, sym_comment, - ACTIONS(7964), 3, - ts_builtin_sym_end, + ACTIONS(8052), 4, + anon_sym_EQ, + anon_sym_in, sym__newline, - anon_sym_SEMI, - [123596] = 4, + anon_sym_COLON, + [124570] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1886), 1, + ACTIONS(5237), 1, + anon_sym_LPAREN2, + ACTIONS(6062), 1, sym__entry_separator, + ACTIONS(6064), 1, + anon_sym_RBRACE, STATE(4379), 1, sym_comment, - ACTIONS(1888), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [123610] = 3, - ACTIONS(3), 1, + STATE(5230), 1, + sym__expr_parenthesized_immediate, + [124589] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(5237), 1, + anon_sym_LPAREN2, + ACTIONS(6084), 1, + sym__entry_separator, + ACTIONS(6086), 1, + anon_sym_RBRACE, STATE(4380), 1, sym_comment, - ACTIONS(4629), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [123622] = 3, + STATE(5230), 1, + sym__expr_parenthesized_immediate, + [124608] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4381), 1, sym_comment, - ACTIONS(7875), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123634] = 3, - ACTIONS(3), 1, + ACTIONS(7124), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [124621] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(8056), 1, + sym__space, + STATE(4136), 1, + aux_sym_attribute_repeat1, STATE(4382), 1, sym_comment, - ACTIONS(4633), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [123646] = 3, - ACTIONS(3), 1, + ACTIONS(8054), 2, + sym__newline, + anon_sym_SEMI, + [124638] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(8058), 1, + anon_sym_LPAREN, STATE(4383), 1, sym_comment, - ACTIONS(7804), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123658] = 3, - ACTIONS(3), 1, + ACTIONS(8060), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [124653] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1554), 1, + sym__entry_separator, STATE(4384), 1, sym_comment, - ACTIONS(7984), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [123670] = 5, + ACTIONS(1552), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [124668] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7986), 1, - anon_sym_RBRACK, - ACTIONS(7988), 1, - sym_hex_digit, STATE(4385), 1, sym_comment, - STATE(4585), 1, - aux_sym_val_binary_repeat1, - [123686] = 5, + ACTIONS(8062), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [124681] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(1762), 1, - sym__unquoted_pattern, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(3290), 1, + sym_block, STATE(4386), 1, sym_comment, - STATE(4633), 1, - sym__expr_parenthesized_immediate, - [123702] = 5, + STATE(4391), 1, + aux_sym__repeat_newline, + [124700] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3073), 1, + ts_builtin_sym_end, + STATE(1372), 1, + aux_sym__block_body_repeat1, + STATE(4387), 1, + sym_comment, + ACTIONS(55), 2, + sym__newline, + anon_sym_SEMI, + [124717] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4813), 1, sym__entry_separator, - ACTIONS(7990), 1, - anon_sym_GT2, - STATE(1931), 1, + STATE(2240), 1, aux_sym__types_body_repeat2, - STATE(4387), 1, + STATE(4388), 1, sym_comment, - [123718] = 3, - ACTIONS(3), 1, + ACTIONS(7439), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [124734] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4388), 1, + ACTIONS(8056), 1, + sym__space, + STATE(4382), 1, + aux_sym_attribute_repeat1, + STATE(4389), 1, sym_comment, - ACTIONS(7687), 3, - ts_builtin_sym_end, + ACTIONS(8064), 2, sym__newline, anon_sym_SEMI, - [123730] = 5, + [124751] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7988), 1, - sym_hex_digit, - ACTIONS(7992), 1, - anon_sym_RBRACK, - STATE(4389), 1, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(3296), 1, + sym_block, + STATE(4390), 1, sym_comment, - STATE(4395), 1, - aux_sym_val_binary_repeat1, - [123746] = 3, + STATE(4392), 1, + aux_sym__repeat_newline, + [124770] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4390), 1, - sym_comment, - ACTIONS(7806), 3, - ts_builtin_sym_end, + ACTIONS(2834), 1, sym__newline, - anon_sym_SEMI, - [123758] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5253), 1, - sym__entry_separator, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(3297), 1, + sym_block, STATE(4391), 1, sym_comment, - ACTIONS(5255), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [123772] = 3, + [124789] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(3299), 1, + sym_block, STATE(4392), 1, sym_comment, - ACTIONS(7713), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123784] = 5, + [124808] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(3100), 1, - sym_block, + ACTIONS(2337), 1, + sym__entry_separator, STATE(4393), 1, sym_comment, - [123800] = 5, - ACTIONS(103), 1, + ACTIONS(2339), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [124823] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7994), 1, - anon_sym_POUND_BANG, - ACTIONS(7996), 1, - sym__newline, + ACTIONS(1598), 1, + sym__unquoted_pattern, STATE(4394), 1, sym_comment, - STATE(4469), 1, - aux_sym__repeat_newline, - [123816] = 5, + ACTIONS(1942), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [124838] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7988), 1, - sym_hex_digit, - ACTIONS(7998), 1, - anon_sym_RBRACK, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(3226), 1, + sym_block, STATE(4395), 1, sym_comment, - STATE(4585), 1, - aux_sym_val_binary_repeat1, - [123832] = 5, + STATE(4397), 1, + aux_sym__repeat_newline, + [124857] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(4969), 1, - sym__unquoted_pattern, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(3228), 1, + sym_block, + STATE(4257), 1, + aux_sym__repeat_newline, STATE(4396), 1, sym_comment, - STATE(4626), 1, - sym__expr_parenthesized_immediate, - [123848] = 3, - ACTIONS(103), 1, + [124876] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(3229), 1, + sym_block, STATE(4397), 1, sym_comment, - ACTIONS(1860), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [123860] = 3, - ACTIONS(3), 1, + [124895] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2475), 1, + sym__entry_separator, STATE(4398), 1, sym_comment, - ACTIONS(8000), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [123872] = 3, + ACTIONS(2477), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [124910] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7128), 1, + anon_sym_LBRACK, STATE(4399), 1, sym_comment, - ACTIONS(7697), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [123884] = 5, - ACTIONS(103), 1, + STATE(4408), 1, + sym_val_list, + STATE(4410), 1, + aux_sym__table_body_repeat1, + [124926] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_RBRACE, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(6616), 1, + ACTIONS(1740), 1, sym__unquoted_pattern_in_record, + ACTIONS(8066), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8068), 1, + aux_sym__immediate_decimal_token5, STATE(4400), 1, sym_comment, - [123900] = 5, - ACTIONS(103), 1, + [124942] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4348), 1, - sym__entry_separator, - ACTIONS(8002), 1, - anon_sym_RBRACK, - STATE(2108), 1, - aux_sym__types_body_repeat2, + ACTIONS(2834), 1, + sym__newline, + ACTIONS(8070), 1, + anon_sym_COLON, + STATE(517), 1, + aux_sym__repeat_newline, STATE(4401), 1, sym_comment, - [123916] = 4, - ACTIONS(103), 1, + [124958] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2258), 1, - sym__entry_separator, + ACTIONS(1730), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8072), 1, + anon_sym_DOT, + ACTIONS(8074), 1, + aux_sym__immediate_decimal_token5, STATE(4402), 1, sym_comment, - ACTIONS(2260), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [123930] = 4, - ACTIONS(103), 1, + [124974] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2262), 1, - sym__entry_separator, + ACTIONS(3998), 1, + anon_sym_AT2, + ACTIONS(8076), 1, + anon_sym_GT2, STATE(4403), 1, sym_comment, - ACTIONS(2264), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [123944] = 5, + STATE(5003), 1, + sym_param_completer, + [124990] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8004), 1, - anon_sym_DOT, - ACTIONS(8006), 1, - aux_sym__immediate_decimal_token5, - STATE(4404), 1, + ACTIONS(8078), 1, + anon_sym_RBRACK, + ACTIONS(8080), 1, + sym_hex_digit, + STATE(4404), 2, sym_comment, - [123960] = 3, - ACTIONS(3), 1, + aux_sym_val_binary_repeat1, + [125004] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7914), 1, + anon_sym_LPAREN, STATE(4405), 1, sym_comment, - ACTIONS(8008), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [123972] = 5, - ACTIONS(3), 1, + ACTIONS(7916), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [125018] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7988), 1, - sym_hex_digit, - ACTIONS(8010), 1, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(8083), 1, anon_sym_RBRACK, + STATE(4233), 1, + aux_sym__types_body_repeat2, STATE(4406), 1, sym_comment, - STATE(4416), 1, - aux_sym_val_binary_repeat1, - [123988] = 3, + [125034] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7128), 1, + anon_sym_LBRACK, STATE(4407), 1, sym_comment, - ACTIONS(8012), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [124000] = 4, + STATE(4410), 1, + aux_sym__table_body_repeat1, + STATE(4471), 1, + sym_val_list, + [125050] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5940), 1, + ACTIONS(4278), 1, sym__entry_separator, + ACTIONS(8085), 1, + anon_sym_RBRACK, + STATE(4259), 1, + aux_sym__types_body_repeat2, STATE(4408), 1, sym_comment, - ACTIONS(5938), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [124014] = 3, - ACTIONS(3), 1, + [125066] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(3428), 1, + sym__newline, + ACTIONS(3430), 1, + sym__space, + STATE(1393), 1, + aux_sym_pipe_element_parenthesized_repeat1, STATE(4409), 1, sym_comment, - ACTIONS(7687), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124026] = 5, - ACTIONS(103), 1, + [125082] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(8014), 1, - anon_sym_RBRACK, - STATE(1935), 1, - aux_sym__types_body_repeat2, - STATE(4410), 1, + ACTIONS(8087), 1, + anon_sym_LBRACK, + STATE(4751), 1, + sym_val_list, + STATE(4410), 2, sym_comment, - [124042] = 3, + aux_sym__table_body_repeat1, + [125096] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4411), 1, sym_comment, - ACTIONS(7966), 3, + ACTIONS(7891), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124054] = 3, + [125108] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4412), 1, sym_comment, - ACTIONS(8016), 3, + ACTIONS(7891), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [124066] = 4, + [125120] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8018), 1, - anon_sym_BANG, STATE(4413), 1, sym_comment, - ACTIONS(1440), 2, - sym__table_head_separator, - anon_sym_DOT2, - [124080] = 5, + ACTIONS(7785), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125132] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8020), 1, - anon_sym_export, - ACTIONS(8022), 1, - anon_sym_def, - ACTIONS(8024), 1, - anon_sym_extern, STATE(4414), 1, sym_comment, - [124096] = 5, + ACTIONS(7787), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125144] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, - ACTIONS(6616), 1, - sym__unquoted_pattern_in_record, STATE(4415), 1, sym_comment, - STATE(4637), 1, - sym__expr_parenthesized_immediate, - [124112] = 5, + ACTIONS(7922), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125156] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7988), 1, - sym_hex_digit, - ACTIONS(8026), 1, - anon_sym_RBRACK, STATE(4416), 1, sym_comment, - STATE(4585), 1, - aux_sym_val_binary_repeat1, - [124128] = 3, + ACTIONS(7924), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125168] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4417), 1, sym_comment, - ACTIONS(8028), 3, + ACTIONS(7924), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [124140] = 5, - ACTIONS(3), 1, + [125180] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7988), 1, - sym_hex_digit, - ACTIONS(8030), 1, + ACTIONS(7411), 1, anon_sym_RBRACK, + ACTIONS(7413), 1, + anon_sym_DOT_DOT, + ACTIONS(7419), 1, + sym__entry_separator, STATE(4418), 1, sym_comment, - STATE(4421), 1, - aux_sym_val_binary_repeat1, - [124156] = 5, - ACTIONS(3), 1, + [125196] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, - ACTIONS(1820), 1, - sym__unquoted_pattern, + ACTIONS(7429), 1, + anon_sym_RBRACK, + ACTIONS(7432), 1, + anon_sym_DOT_DOT, + ACTIONS(7434), 1, + sym__entry_separator, STATE(4419), 1, sym_comment, - STATE(4753), 1, - sym__expr_parenthesized_immediate, - [124172] = 3, + [125212] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4420), 1, sym_comment, - ACTIONS(7968), 3, + ACTIONS(7789), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124184] = 5, - ACTIONS(3), 1, + [125224] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7988), 1, - sym_hex_digit, - ACTIONS(8032), 1, - anon_sym_RBRACK, + ACTIONS(793), 1, + anon_sym_RBRACE, + ACTIONS(890), 1, + sym__entry_separator, + ACTIONS(6627), 1, + sym__unquoted_pattern_in_record, STATE(4421), 1, sym_comment, - STATE(4585), 1, - aux_sym_val_binary_repeat1, - [124200] = 3, - ACTIONS(3), 1, + [125240] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1862), 1, + sym__entry_separator, STATE(4422), 1, sym_comment, - ACTIONS(7721), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124212] = 5, + ACTIONS(1864), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [125254] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4348), 1, + ACTIONS(2614), 1, sym__entry_separator, - ACTIONS(8034), 1, - anon_sym_RBRACK, - STATE(2110), 1, - aux_sym__types_body_repeat2, STATE(4423), 1, sym_comment, - [124228] = 3, + ACTIONS(2616), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [125268] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4424), 1, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7791), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124240] = 3, + [125280] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4425), 1, sym_comment, - ACTIONS(7727), 3, + ACTIONS(7944), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124252] = 3, - ACTIONS(3), 1, + [125292] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4476), 1, + sym__entry_separator, + ACTIONS(8090), 1, + anon_sym_RBRACK, + STATE(2099), 1, + aux_sym__types_body_repeat2, STATE(4426), 1, sym_comment, - ACTIONS(7727), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124264] = 5, - ACTIONS(3), 1, + [125308] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8036), 1, + ACTIONS(4476), 1, + sym__entry_separator, + ACTIONS(8092), 1, anon_sym_RBRACK, - ACTIONS(8038), 1, - anon_sym_DOT_DOT, + STATE(2092), 1, + aux_sym__types_body_repeat2, STATE(4427), 1, sym_comment, - STATE(5024), 1, - sym__match_pattern_rest, - [124280] = 3, + [125324] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4428), 1, sym_comment, - ACTIONS(3082), 3, + ACTIONS(7966), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [124292] = 3, + [125336] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4429), 1, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7793), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124304] = 3, + [125348] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4430), 1, sym_comment, - ACTIONS(7729), 3, + ACTIONS(8011), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124316] = 4, - ACTIONS(103), 1, + [125360] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2563), 1, - sym__entry_separator, + ACTIONS(3998), 1, + anon_sym_AT2, + ACTIONS(8094), 1, + anon_sym_GT2, STATE(4431), 1, sym_comment, - ACTIONS(2565), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [124330] = 3, - ACTIONS(3), 1, + STATE(5018), 1, + sym_param_completer, + [125376] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(8096), 1, + anon_sym_RBRACK, + STATE(4201), 1, + aux_sym__types_body_repeat2, STATE(4432), 1, sym_comment, - ACTIONS(7687), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124342] = 3, + [125392] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4433), 1, sym_comment, - ACTIONS(7826), 3, + ACTIONS(7926), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124354] = 3, - ACTIONS(3), 1, + [125404] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1623), 1, + sym__entry_separator, + ACTIONS(1625), 1, + anon_sym_COLON2, + STATE(1487), 1, + aux_sym__types_body_repeat2, STATE(4434), 1, sym_comment, - ACTIONS(7729), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124366] = 5, - ACTIONS(3), 1, + [125420] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7988), 1, - sym_hex_digit, - ACTIONS(8040), 1, - anon_sym_RBRACK, + ACTIONS(8062), 1, + sym__entry_separator, STATE(4435), 1, sym_comment, - STATE(4436), 1, - aux_sym_val_binary_repeat1, - [124382] = 5, + ACTIONS(7073), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [125434] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7988), 1, - sym_hex_digit, - ACTIONS(8042), 1, - anon_sym_RBRACK, STATE(4436), 1, sym_comment, - STATE(4585), 1, - aux_sym_val_binary_repeat1, - [124398] = 3, + ACTIONS(7946), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125446] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4437), 1, sym_comment, - ACTIONS(7808), 3, - ts_builtin_sym_end, + ACTIONS(8098), 3, sym__newline, anon_sym_SEMI, - [124410] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2571), 1, - sym__entry_separator, - STATE(4438), 1, - sym_comment, - ACTIONS(2573), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [124424] = 3, + anon_sym_RPAREN, + [125458] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4439), 1, + STATE(4438), 1, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7926), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124436] = 4, + [125470] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7204), 1, + ACTIONS(2515), 1, sym__entry_separator, - STATE(4440), 1, + STATE(4439), 1, sym_comment, - ACTIONS(7272), 2, + ACTIONS(2517), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124450] = 4, - ACTIONS(103), 1, + anon_sym_RBRACE, + [125484] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7683), 1, - sym__entry_separator, - STATE(4441), 1, + ACTIONS(3998), 1, + anon_sym_AT2, + ACTIONS(6009), 1, + anon_sym_EQ, + STATE(3294), 1, + sym_param_completer, + STATE(4440), 1, sym_comment, - ACTIONS(8044), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124464] = 5, + [125500] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(8046), 1, - anon_sym_GT2, - STATE(4442), 1, + STATE(4441), 1, sym_comment, - STATE(5011), 1, - sym_param_completer, - [124480] = 3, + ACTIONS(7985), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125512] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4443), 1, + STATE(4442), 1, sym_comment, - ACTIONS(7699), 3, + ACTIONS(7877), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124492] = 4, + [125524] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3998), 1, + anon_sym_AT2, + ACTIONS(6009), 1, + anon_sym_EQ, + STATE(3314), 1, + sym_param_completer, + STATE(4443), 1, + sym_comment, + [125540] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2268), 1, - sym__entry_separator, + ACTIONS(2533), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(4351), 1, + sym_block, STATE(4444), 1, sym_comment, - ACTIONS(2270), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [124506] = 4, - ACTIONS(103), 1, + [125556] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2272), 1, - sym__entry_separator, STATE(4445), 1, sym_comment, - ACTIONS(2274), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [124520] = 5, + ACTIONS(7928), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125568] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7988), 1, - sym_hex_digit, - ACTIONS(8048), 1, - anon_sym_RBRACK, STATE(4446), 1, sym_comment, - STATE(4448), 1, - aux_sym_val_binary_repeat1, - [124536] = 4, + ACTIONS(7795), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125580] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7210), 1, - sym__entry_separator, + ACTIONS(2878), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3809), 1, + anon_sym_LBRACE, STATE(4447), 1, sym_comment, - ACTIONS(7278), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124550] = 5, - ACTIONS(3), 1, + STATE(4537), 1, + sym_block, + [125596] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7988), 1, - sym_hex_digit, - ACTIONS(8050), 1, - anon_sym_RBRACK, + ACTIONS(4988), 1, + anon_sym_RBRACE, STATE(4448), 1, sym_comment, - STATE(4585), 1, - aux_sym_val_binary_repeat1, - [124566] = 3, + ACTIONS(4986), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [125610] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4449), 1, sym_comment, - ACTIONS(7731), 3, + ACTIONS(7797), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124578] = 3, - ACTIONS(3), 1, + [125622] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2487), 1, + sym__entry_separator, STATE(4450), 1, sym_comment, - ACTIONS(7731), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124590] = 4, - ACTIONS(3), 1, + ACTIONS(2489), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [125636] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1382), 1, - aux_sym__block_body_repeat1, + ACTIONS(2533), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(4352), 1, + sym_block, STATE(4451), 1, sym_comment, - ACTIONS(153), 2, - sym__newline, - anon_sym_SEMI, - [124604] = 4, + [125652] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1706), 1, + ACTIONS(4278), 1, sym__entry_separator, + ACTIONS(8100), 1, + anon_sym_RBRACK, + STATE(1937), 1, + aux_sym__types_body_repeat2, STATE(4452), 1, sym_comment, - ACTIONS(1619), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [124618] = 3, + [125668] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4453), 1, sym_comment, - ACTIONS(7713), 3, + ACTIONS(7942), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124630] = 4, - ACTIONS(103), 1, + [125680] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5241), 1, - sym__entry_separator, + ACTIONS(1806), 1, + anon_sym_LBRACE, + ACTIONS(1808), 1, + sym__unquoted_pattern, + ACTIONS(8102), 1, + aux_sym__immediate_decimal_token5, STATE(4454), 1, sym_comment, - ACTIONS(5243), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [124644] = 3, - ACTIONS(3), 1, + [125696] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4476), 1, + sym__entry_separator, + ACTIONS(8104), 1, + anon_sym_RBRACK, + STATE(2097), 1, + aux_sym__types_body_repeat2, STATE(4455), 1, sym_comment, - ACTIONS(7834), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124656] = 3, + [125712] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4456), 1, sym_comment, - ACTIONS(7717), 3, + ACTIONS(7966), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124668] = 3, - ACTIONS(3), 1, + [125724] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1623), 1, + sym__entry_separator, + ACTIONS(7826), 1, + anon_sym_RBRACE, + STATE(1479), 1, + aux_sym__types_body_repeat2, STATE(4457), 1, sym_comment, - ACTIONS(7713), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124680] = 3, + [125740] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4458), 1, sym_comment, - ACTIONS(7898), 3, - ts_builtin_sym_end, + ACTIONS(8106), 3, sym__newline, - anon_sym_SEMI, - [124692] = 5, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [125752] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(6009), 1, - anon_sym_EQ, - STATE(3300), 1, - sym_param_completer, + ACTIONS(5008), 1, + sym__entry_separator, STATE(4459), 1, sym_comment, - [124708] = 3, - ACTIONS(3), 1, + ACTIONS(5010), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [125766] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(5012), 1, + sym__entry_separator, STATE(4460), 1, sym_comment, - ACTIONS(8052), 3, - sym__newline, - anon_sym_LBRACK, + ACTIONS(5014), 2, anon_sym_RBRACK, - [124720] = 5, + anon_sym_GT2, + [125780] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4348), 1, + ACTIONS(1623), 1, sym__entry_separator, - ACTIONS(8054), 1, - anon_sym_RBRACK, - STATE(1968), 1, + ACTIONS(7828), 1, + anon_sym_RBRACE, + STATE(1481), 1, aux_sym__types_body_repeat2, STATE(4461), 1, sym_comment, - [124736] = 3, + [125796] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5237), 1, + anon_sym_LPAREN2, + ACTIONS(6627), 1, + sym__unquoted_pattern_in_record, STATE(4462), 1, sym_comment, - ACTIONS(7717), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124748] = 5, - ACTIONS(103), 1, + STATE(4662), 1, + sym__expr_parenthesized_immediate, + [125812] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(8056), 1, - anon_sym_RBRACE, - STATE(1464), 1, - aux_sym__types_body_repeat2, STATE(4463), 1, sym_comment, - [124764] = 5, + ACTIONS(7944), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125824] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(8058), 1, - anon_sym_RBRACK, - STATE(1926), 1, - aux_sym__types_body_repeat2, + ACTIONS(2533), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(3031), 1, + sym_block, STATE(4464), 1, sym_comment, - [124780] = 3, + [125840] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4465), 1, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7989), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124792] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(8060), 1, - anon_sym_RBRACE, - STATE(1467), 1, - aux_sym__types_body_repeat2, - STATE(4466), 1, - sym_comment, - [124808] = 3, + [125852] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4467), 1, - sym_comment, - ACTIONS(7900), 3, - ts_builtin_sym_end, + ACTIONS(2834), 1, sym__newline, + ACTIONS(3346), 1, anon_sym_SEMI, - [124820] = 3, + STATE(517), 1, + aux_sym__repeat_newline, + STATE(4466), 1, + sym_comment, + [125868] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4468), 1, + ACTIONS(3998), 1, + anon_sym_AT2, + ACTIONS(8108), 1, + anon_sym_GT2, + STATE(4467), 1, sym_comment, - ACTIONS(7902), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124832] = 4, + STATE(5103), 1, + sym_param_completer, + [125884] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1955), 1, - anon_sym_POUND_BANG, - ACTIONS(8062), 1, - sym__newline, - STATE(4469), 2, - aux_sym__repeat_newline, + ACTIONS(1870), 1, + sym__entry_separator, + STATE(4468), 1, sym_comment, - [124846] = 4, + ACTIONS(1872), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [125898] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3082), 1, - anon_sym_RPAREN, - STATE(4470), 1, + STATE(4469), 1, sym_comment, - ACTIONS(2932), 2, + ACTIONS(8110), 3, sym__newline, anon_sym_SEMI, - [124860] = 3, + anon_sym_RPAREN, + [125910] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4471), 1, + STATE(4470), 1, sym_comment, - ACTIONS(7703), 3, + ACTIONS(7968), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124872] = 5, + [125922] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(4278), 1, sym__entry_separator, - ACTIONS(8065), 1, - anon_sym_RBRACE, - STATE(1466), 1, + ACTIONS(8112), 1, + anon_sym_RBRACK, + STATE(4158), 1, aux_sym__types_body_repeat2, - STATE(4472), 1, + STATE(4471), 1, sym_comment, - [124888] = 3, + [125938] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4473), 1, + STATE(4472), 1, sym_comment, - ACTIONS(7705), 3, + ACTIONS(7885), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124900] = 3, + [125950] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8114), 1, + anon_sym_RBRACK, + ACTIONS(8116), 1, + sym_hex_digit, + STATE(4473), 1, + sym_comment, + STATE(4476), 1, + aux_sym_val_binary_repeat1, + [125966] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(8118), 1, + anon_sym_GT2, + STATE(1928), 1, + aux_sym__types_body_repeat2, STATE(4474), 1, sym_comment, - ACTIONS(7705), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124912] = 3, + [125982] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7553), 1, + anon_sym_if, + ACTIONS(8120), 1, + anon_sym_EQ_GT, STATE(4475), 1, sym_comment, - ACTIONS(7707), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124924] = 5, - ACTIONS(103), 1, + STATE(5039), 1, + sym_match_guard, + [125998] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3454), 1, - sym__newline, - ACTIONS(3456), 1, - sym__space, - STATE(1398), 1, - aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(8116), 1, + sym_hex_digit, + ACTIONS(8122), 1, + anon_sym_RBRACK, + STATE(4404), 1, + aux_sym_val_binary_repeat1, STATE(4476), 1, sym_comment, - [124940] = 3, + [126014] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1756), 1, + anon_sym_LPAREN2, + ACTIONS(5150), 1, + sym__unquoted_pattern, STATE(4477), 1, sym_comment, - ACTIONS(7826), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [124952] = 5, - ACTIONS(103), 1, + STATE(4723), 1, + sym__expr_parenthesized_immediate, + [126030] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4957), 1, - sym__entry_separator, - ACTIONS(8068), 1, - anon_sym_GT2, - STATE(2376), 1, - aux_sym__types_body_repeat2, STATE(4478), 1, sym_comment, - [124968] = 3, + ACTIONS(8015), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126042] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4479), 1, sym_comment, - ACTIONS(7877), 3, + ACTIONS(7930), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [124980] = 5, - ACTIONS(103), 1, + [126054] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3755), 1, - anon_sym_LBRACE, + ACTIONS(3998), 1, + anon_sym_AT2, + ACTIONS(8124), 1, + anon_sym_GT2, STATE(4480), 1, sym_comment, - STATE(4518), 1, - sym_block, - [124996] = 4, + STATE(5001), 1, + sym_param_completer, + [126070] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8018), 1, - anon_sym_QMARK2, STATE(4481), 1, sym_comment, - ACTIONS(1440), 2, - sym__table_head_separator, - anon_sym_DOT2, - [125010] = 5, + ACTIONS(8015), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126082] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4957), 1, + ACTIONS(7811), 1, sym__entry_separator, - ACTIONS(8070), 1, - anon_sym_GT2, - STATE(2372), 1, - aux_sym__types_body_repeat2, STATE(4482), 1, sym_comment, - [125026] = 3, - ACTIONS(3), 1, + ACTIONS(8126), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [126096] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7817), 1, + sym__entry_separator, STATE(4483), 1, sym_comment, - ACTIONS(7707), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125038] = 5, + ACTIONS(8128), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [126110] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3992), 1, + ACTIONS(3998), 1, anon_sym_AT2, - ACTIONS(5779), 1, + ACTIONS(6118), 1, anon_sym_EQ, - STATE(3241), 1, + STATE(3379), 1, sym_param_completer, STATE(4484), 1, sym_comment, - [125054] = 4, + [126126] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7679), 1, - anon_sym_LPAREN, + ACTIONS(7824), 1, + sym__entry_separator, STATE(4485), 1, sym_comment, - ACTIONS(7681), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [125068] = 5, + ACTIONS(8130), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [126140] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1621), 1, - anon_sym_RBRACE, - ACTIONS(1627), 1, + ACTIONS(1866), 1, sym__entry_separator, - STATE(1475), 1, - aux_sym__types_body_repeat2, STATE(4486), 1, sym_comment, - [125084] = 5, - ACTIONS(103), 1, + ACTIONS(1868), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [126154] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4305), 1, - sym_block, STATE(4487), 1, sym_comment, - [125100] = 4, - ACTIONS(103), 1, + ACTIONS(8017), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126166] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8072), 1, - anon_sym_LPAREN, STATE(4488), 1, sym_comment, - ACTIONS(8074), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [125114] = 5, + ACTIONS(7848), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [126178] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4957), 1, + ACTIONS(4434), 1, sym__entry_separator, - ACTIONS(8076), 1, - anon_sym_GT2, - STATE(2373), 1, + ACTIONS(8132), 1, + anon_sym_RBRACK, + STATE(2082), 1, aux_sym__types_body_repeat2, STATE(4489), 1, sym_comment, - [125130] = 4, - ACTIONS(103), 1, + [126194] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8078), 1, - anon_sym_DQUOTE, STATE(4490), 1, sym_comment, - ACTIONS(8080), 2, - sym__escaped_str_content, - sym_escape_sequence, - [125144] = 3, + ACTIONS(7867), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126206] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4491), 1, sym_comment, - ACTIONS(7707), 3, + ACTIONS(7930), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125156] = 5, + [126218] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(2986), 1, - sym_block, + ACTIONS(1617), 1, + anon_sym_RBRACE, + ACTIONS(1623), 1, + sym__entry_separator, + STATE(1460), 1, + aux_sym__types_body_repeat2, STATE(4492), 1, sym_comment, - [125172] = 5, - ACTIONS(3), 1, + [126234] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(8082), 1, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(8134), 1, anon_sym_GT2, + STATE(1953), 1, + aux_sym__types_body_repeat2, STATE(4493), 1, sym_comment, - STATE(4946), 1, - sym_param_completer, - [125188] = 4, - ACTIONS(103), 1, + [126250] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8084), 1, - anon_sym_LPAREN, STATE(4494), 1, sym_comment, - ACTIONS(8086), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [125202] = 3, + ACTIONS(7966), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126262] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4495), 1, sym_comment, - ACTIONS(7840), 3, + ACTIONS(7966), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125214] = 3, + [126274] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4496), 1, sym_comment, - ACTIONS(7840), 3, + ACTIONS(7932), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125226] = 3, + [126286] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4497), 1, sym_comment, - ACTIONS(7689), 3, + ACTIONS(7883), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125238] = 5, + [126298] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(8088), 1, - anon_sym_GT2, STATE(4498), 1, sym_comment, - STATE(4909), 1, - sym_param_completer, - [125254] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4499), 1, - sym_comment, - ACTIONS(7691), 3, + ACTIONS(8017), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125266] = 3, + [126310] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4500), 1, + ACTIONS(8116), 1, + sym_hex_digit, + ACTIONS(8136), 1, + anon_sym_RBRACK, + STATE(4499), 1, sym_comment, - ACTIONS(2092), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [125278] = 3, + STATE(4502), 1, + aux_sym_val_binary_repeat1, + [126326] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4501), 1, + STATE(4500), 1, sym_comment, - ACTIONS(7950), 3, + ACTIONS(7970), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125290] = 3, + [126338] = 5, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4784), 1, + sym__entry_separator, + ACTIONS(4788), 1, + anon_sym_RBRACE, + STATE(2226), 1, + aux_sym__types_body_repeat2, + STATE(4501), 1, + sym_comment, + [126354] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8116), 1, + sym_hex_digit, + ACTIONS(8138), 1, + anon_sym_RBRACK, + STATE(4404), 1, + aux_sym_val_binary_repeat1, STATE(4502), 1, sym_comment, - ACTIONS(858), 3, - sym__newline, - sym__space, - anon_sym_COLON2, - [125302] = 3, + [126370] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4503), 1, sym_comment, - ACTIONS(8090), 3, + ACTIONS(8019), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [125314] = 4, - ACTIONS(103), 1, + [126382] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2254), 1, - sym__entry_separator, STATE(4504), 1, sym_comment, - ACTIONS(2256), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [125328] = 4, - ACTIONS(103), 1, + ACTIONS(8019), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126394] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7751), 1, - sym__entry_separator, STATE(4505), 1, sym_comment, - ACTIONS(8092), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125342] = 3, + ACTIONS(7946), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126406] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4506), 1, sym_comment, - ACTIONS(4569), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [125354] = 5, + ACTIONS(8140), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [126418] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4278), 1, sym__entry_separator, - ACTIONS(8094), 1, - anon_sym_GT2, - STATE(1921), 1, + ACTIONS(7850), 1, + anon_sym_LBRACK, + STATE(1859), 1, aux_sym__types_body_repeat2, STATE(4507), 1, sym_comment, - [125370] = 4, - ACTIONS(103), 1, + [126434] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7751), 1, - sym__entry_separator, STATE(4508), 1, sym_comment, - ACTIONS(8092), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125384] = 4, + ACTIONS(7991), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126446] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7767), 1, + ACTIONS(1623), 1, sym__entry_separator, + ACTIONS(8142), 1, + anon_sym_RBRACE, + STATE(1472), 1, + aux_sym__types_body_repeat2, STATE(4509), 1, sym_comment, - ACTIONS(8096), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125398] = 4, + [126462] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8100), 1, - anon_sym_COMMA, STATE(4510), 1, sym_comment, - ACTIONS(8098), 2, - anon_sym_RBRACK, + ACTIONS(8145), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [126474] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4511), 1, + sym_comment, + ACTIONS(8147), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [126486] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8116), 1, sym_hex_digit, - [125412] = 5, + ACTIONS(8149), 1, + anon_sym_RBRACK, + STATE(4512), 1, + sym_comment, + STATE(4514), 1, + aux_sym_val_binary_repeat1, + [126502] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7988), 1, + ACTIONS(8116), 1, sym_hex_digit, - ACTIONS(8102), 1, + ACTIONS(8151), 1, anon_sym_RBRACK, - STATE(4511), 1, + STATE(4513), 1, sym_comment, - STATE(4585), 1, + STATE(4555), 1, + aux_sym_val_binary_repeat1, + [126518] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8116), 1, + sym_hex_digit, + ACTIONS(8153), 1, + anon_sym_RBRACK, + STATE(4404), 1, aux_sym_val_binary_repeat1, - [125428] = 5, + STATE(4514), 1, + sym_comment, + [126534] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4707), 1, + ACTIONS(4784), 1, sym__entry_separator, - ACTIONS(4716), 1, + ACTIONS(8155), 1, anon_sym_RBRACE, - STATE(2225), 1, + STATE(2229), 1, aux_sym__types_body_repeat2, - STATE(4512), 1, - sym_comment, - [125444] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4513), 1, - sym_comment, - ACTIONS(7869), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125456] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4514), 1, + STATE(4515), 1, sym_comment, - ACTIONS(7693), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125468] = 3, + [126550] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4515), 1, + STATE(4516), 1, sym_comment, - ACTIONS(7689), 3, + ACTIONS(7970), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125480] = 4, + [126562] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8104), 1, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(8157), 1, anon_sym_GT2, - STATE(4516), 1, + STATE(1929), 1, + aux_sym__types_body_repeat2, + STATE(4517), 1, sym_comment, - ACTIONS(8106), 2, - anon_sym_AT2, - sym__entry_separator, - [125494] = 5, + [126578] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(4278), 1, sym__entry_separator, - ACTIONS(8108), 1, - anon_sym_RBRACE, - STATE(1478), 1, + ACTIONS(8159), 1, + anon_sym_RBRACK, + STATE(1916), 1, aux_sym__types_body_repeat2, - STATE(4517), 1, - sym_comment, - [125510] = 3, - ACTIONS(3), 1, - anon_sym_POUND, STATE(4518), 1, sym_comment, - ACTIONS(7906), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125522] = 3, - ACTIONS(3), 1, + [126594] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4519), 1, - sym_comment, - ACTIONS(7707), 3, - ts_builtin_sym_end, + ACTIONS(1935), 1, + anon_sym_POUND_BANG, + ACTIONS(8161), 1, sym__newline, - anon_sym_SEMI, - [125534] = 5, - ACTIONS(3), 1, + STATE(4519), 2, + aux_sym__repeat_newline, + sym_comment, + [126608] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(5944), 1, - anon_sym_EQ, - STATE(3284), 1, - sym_param_completer, + ACTIONS(1623), 1, + sym__entry_separator, + ACTIONS(8164), 1, + anon_sym_RBRACE, + STATE(1478), 1, + aux_sym__types_body_repeat2, STATE(4520), 1, sym_comment, - [125550] = 3, - ACTIONS(3), 1, + [126624] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(8166), 1, + anon_sym_RBRACK, + STATE(1938), 1, + aux_sym__types_body_repeat2, STATE(4521), 1, sym_comment, - ACTIONS(8110), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [125562] = 3, + [126640] = 4, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(5032), 1, + sym__entry_separator, STATE(4522), 1, sym_comment, - ACTIONS(2593), 3, + ACTIONS(5034), 2, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [125574] = 5, - ACTIONS(3), 1, + anon_sym_GT2, + [126654] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6466), 1, - anon_sym_LPAREN2, + ACTIONS(5036), 1, + sym__entry_separator, STATE(4523), 1, sym_comment, - STATE(4723), 1, - sym__expr_parenthesized_immediate, - [125590] = 3, + ACTIONS(5038), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [126668] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8116), 1, + sym_hex_digit, + ACTIONS(8168), 1, + anon_sym_RBRACK, STATE(4524), 1, sym_comment, - ACTIONS(8112), 3, - sym__newline, - anon_sym_LBRACK, - anon_sym_RBRACK, - [125602] = 5, + STATE(4527), 1, + aux_sym_val_binary_repeat1, + [126684] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(1574), 1, sym__entry_separator, - ACTIONS(8114), 1, - anon_sym_RBRACK, - STATE(1922), 1, - aux_sym__types_body_repeat2, STATE(4525), 1, sym_comment, - [125618] = 5, + ACTIONS(1572), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [126698] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(5040), 1, sym__entry_separator, - ACTIONS(8116), 1, - anon_sym_RBRACE, - STATE(1474), 1, - aux_sym__types_body_repeat2, STATE(4526), 1, sym_comment, - [125634] = 5, - ACTIONS(103), 1, + ACTIONS(5042), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [126712] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(8118), 1, + ACTIONS(8116), 1, + sym_hex_digit, + ACTIONS(8170), 1, anon_sym_RBRACK, - STATE(1923), 1, - aux_sym__types_body_repeat2, + STATE(4404), 1, + aux_sym_val_binary_repeat1, STATE(4527), 1, sym_comment, - [125650] = 4, + [126728] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5961), 1, + ACTIONS(5044), 1, sym__entry_separator, STATE(4528), 1, sym_comment, - ACTIONS(5959), 2, + ACTIONS(5046), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [125664] = 3, - ACTIONS(3), 1, + anon_sym_GT2, + [126742] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2602), 1, + sym__entry_separator, STATE(4529), 1, sym_comment, - ACTIONS(7709), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125676] = 5, + ACTIONS(2604), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [126756] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7816), 1, + ACTIONS(2491), 1, sym__entry_separator, - ACTIONS(8120), 1, - anon_sym_AT2, STATE(4530), 1, sym_comment, - STATE(4660), 1, - sym_param_completer, - [125692] = 3, - ACTIONS(3), 1, + ACTIONS(2493), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [126770] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(8172), 1, + anon_sym_POUND_BANG, + ACTIONS(8174), 1, + sym__newline, + STATE(4519), 1, + aux_sym__repeat_newline, STATE(4531), 1, sym_comment, - ACTIONS(7709), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125704] = 3, + [126786] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8178), 1, + anon_sym_COMMA, STATE(4532), 1, sym_comment, - ACTIONS(7703), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125716] = 3, - ACTIONS(3), 1, + ACTIONS(8176), 2, + anon_sym_RBRACK, + sym_hex_digit, + [126800] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2495), 1, + sym__entry_separator, STATE(4533), 1, sym_comment, - ACTIONS(7703), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125728] = 3, + ACTIONS(2497), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [126814] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4534), 1, sym_comment, - ACTIONS(7705), 3, + ACTIONS(8021), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125740] = 3, + [126826] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4535), 1, sym_comment, - ACTIONS(7705), 3, + ACTIONS(8021), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125752] = 5, + [126838] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1736), 1, - anon_sym_LBRACE, - ACTIONS(7042), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8122), 1, - anon_sym_DOT, + ACTIONS(8180), 1, + anon_sym_export, + ACTIONS(8182), 1, + anon_sym_def, + ACTIONS(8184), 1, + anon_sym_extern, STATE(4536), 1, sym_comment, - [125768] = 5, - ACTIONS(103), 1, + [126854] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4348), 1, - sym__entry_separator, - ACTIONS(8124), 1, - anon_sym_RBRACK, - STATE(1990), 1, - aux_sym__types_body_repeat2, STATE(4537), 1, sym_comment, - [125784] = 5, + ACTIONS(8023), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126866] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_AT2, - ACTIONS(5779), 1, - anon_sym_EQ, - STATE(3239), 1, - sym_param_completer, + ACTIONS(8116), 1, + sym_hex_digit, + ACTIONS(8186), 1, + anon_sym_RBRACK, + STATE(4404), 1, + aux_sym_val_binary_repeat1, STATE(4538), 1, sym_comment, - [125800] = 5, + [126882] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, - sym__newline, - ACTIONS(8126), 1, - anon_sym_COLON, - STATE(540), 1, - aux_sym__repeat_newline, STATE(4539), 1, sym_comment, - [125816] = 5, - ACTIONS(103), 1, + ACTIONS(7875), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126894] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(8128), 1, - anon_sym_RBRACK, - STATE(4150), 1, - aux_sym__types_body_repeat2, STATE(4540), 1, sym_comment, - [125832] = 4, - ACTIONS(103), 1, + ACTIONS(8188), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [126906] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5221), 1, - sym__entry_separator, STATE(4541), 1, sym_comment, - ACTIONS(5223), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [125846] = 4, - ACTIONS(103), 1, + ACTIONS(7948), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126918] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5237), 1, - sym__entry_separator, + ACTIONS(8190), 1, + anon_sym_BANG, STATE(4542), 1, sym_comment, - ACTIONS(5239), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [125860] = 4, - ACTIONS(103), 1, + ACTIONS(1448), 2, + sym__table_head_separator, + anon_sym_DOT2, + [126932] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2607), 1, - sym__entry_separator, STATE(4543), 1, sym_comment, - ACTIONS(2609), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [125874] = 5, - ACTIONS(103), 1, + ACTIONS(8192), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [126944] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7272), 1, - anon_sym_DOT_DOT, - ACTIONS(7438), 1, - anon_sym_RBRACK, - ACTIONS(7440), 1, - sym__entry_separator, + ACTIONS(6335), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6601), 1, + anon_sym_LPAREN2, STATE(4544), 1, sym_comment, - [125890] = 5, - ACTIONS(103), 1, + STATE(4734), 1, + sym__expr_parenthesized_immediate, + [126960] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7278), 1, - anon_sym_DOT_DOT, - ACTIONS(7442), 1, - anon_sym_RBRACK, - ACTIONS(7445), 1, - sym__entry_separator, STATE(4545), 1, sym_comment, - [125906] = 4, - ACTIONS(103), 1, + ACTIONS(7948), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126972] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2615), 1, - sym__entry_separator, STATE(4546), 1, sym_comment, - ACTIONS(2617), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [125920] = 3, + ACTIONS(7993), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126984] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4547), 1, sym_comment, - ACTIONS(2084), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [125932] = 5, - ACTIONS(103), 1, + ACTIONS(8194), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [126996] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(8130), 1, - anon_sym_RBRACK, - STATE(4366), 1, - aux_sym__types_body_repeat2, + ACTIONS(3083), 1, + anon_sym_RPAREN, STATE(4548), 1, sym_comment, - [125948] = 5, + ACTIONS(2888), 2, + sym__newline, + anon_sym_SEMI, + [127010] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, + ACTIONS(8116), 1, + sym_hex_digit, + ACTIONS(8196), 1, + anon_sym_RBRACK, STATE(4549), 1, sym_comment, - STATE(4590), 1, - sym_val_list, - STATE(4597), 1, - aux_sym__table_body_repeat1, - [125964] = 4, - ACTIONS(103), 1, + STATE(4566), 1, + aux_sym_val_binary_repeat1, + [127026] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7822), 1, - sym__entry_separator, + ACTIONS(8116), 1, + sym_hex_digit, + ACTIONS(8198), 1, + anon_sym_RBRACK, + STATE(4538), 1, + aux_sym_val_binary_repeat1, STATE(4550), 1, sym_comment, - ACTIONS(6947), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125978] = 4, - ACTIONS(103), 1, + [127042] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2511), 1, - sym__entry_separator, STATE(4551), 1, sym_comment, - ACTIONS(2513), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [125992] = 3, + ACTIONS(7968), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127054] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4552), 1, sym_comment, - ACTIONS(7867), 3, + ACTIONS(7968), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126004] = 4, - ACTIONS(103), 1, + [127066] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2515), 1, - sym__entry_separator, STATE(4553), 1, sym_comment, - ACTIONS(2517), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [126018] = 4, - ACTIONS(103), 1, + ACTIONS(7968), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127078] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8132), 1, - sym__table_head_separator, STATE(4554), 1, sym_comment, - ACTIONS(1619), 2, - anon_sym_RBRACK, - sym__entry_separator, - [126032] = 3, + ACTIONS(2094), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [127090] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8116), 1, + sym_hex_digit, + ACTIONS(8200), 1, + anon_sym_RBRACK, + STATE(4404), 1, + aux_sym_val_binary_repeat1, STATE(4555), 1, sym_comment, - ACTIONS(7871), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [126044] = 5, + [127106] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1802), 1, - anon_sym_LBRACE, - ACTIONS(1804), 1, + ACTIONS(1756), 1, + anon_sym_LPAREN2, + ACTIONS(1830), 1, sym__unquoted_pattern, - ACTIONS(8134), 1, - aux_sym__immediate_decimal_token5, STATE(4556), 1, sym_comment, - [126060] = 5, - ACTIONS(103), 1, + STATE(4757), 1, + sym__expr_parenthesized_immediate, + [127122] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4417), 1, - sym__entry_separator, - ACTIONS(8136), 1, - anon_sym_RBRACK, - STATE(2104), 1, - aux_sym__types_body_repeat2, STATE(4557), 1, sym_comment, - [126076] = 3, - ACTIONS(3), 1, + ACTIONS(7871), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127134] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(8202), 1, + sym__table_head_separator, STATE(4558), 1, sym_comment, - ACTIONS(8138), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [126088] = 3, + ACTIONS(1615), 2, + anon_sym_RBRACK, + sym__entry_separator, + [127148] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4559), 1, sym_comment, - ACTIONS(7711), 3, + ACTIONS(7970), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126100] = 5, - ACTIONS(103), 1, + [127160] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(868), 1, - anon_sym_RBRACK, - ACTIONS(968), 1, - sym__entry_separator, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, STATE(4560), 1, sym_comment, - [126116] = 5, + ACTIONS(7942), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127172] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1736), 1, - anon_sym_LBRACE, - ACTIONS(1738), 1, - sym__unquoted_pattern, - ACTIONS(7830), 1, - aux_sym__immediate_decimal_token5, STATE(4561), 1, sym_comment, - [126132] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4562), 1, - sym_comment, - ACTIONS(7778), 3, + ACTIONS(7970), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126144] = 3, + [127184] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4563), 1, + ACTIONS(3998), 1, + anon_sym_AT2, + ACTIONS(6103), 1, + anon_sym_EQ, + STATE(3385), 1, + sym_param_completer, + STATE(4562), 1, sym_comment, - ACTIONS(7695), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [126156] = 5, + [127200] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(7940), 1, - anon_sym_RBRACE, - STATE(1480), 1, - aux_sym__types_body_repeat2, - STATE(4564), 1, + ACTIONS(8204), 1, + anon_sym_DQUOTE, + STATE(4563), 1, sym_comment, - [126172] = 3, + ACTIONS(8206), 2, + sym__escaped_str_content, + sym_escape_sequence, + [127214] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4565), 1, + STATE(4564), 1, sym_comment, - ACTIONS(7711), 3, + ACTIONS(8013), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126184] = 3, + [127226] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5030), 1, + anon_sym_RBRACE, + STATE(4565), 1, + sym_comment, + ACTIONS(5028), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [127240] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8116), 1, + sym_hex_digit, + ACTIONS(8208), 1, + anon_sym_RBRACK, + STATE(4404), 1, + aux_sym_val_binary_repeat1, STATE(4566), 1, sym_comment, - ACTIONS(8140), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [126196] = 5, + [127256] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, + ACTIONS(1756), 1, anon_sym_LPAREN2, - ACTIONS(5116), 1, - sym__unquoted_pattern_in_record, + ACTIONS(1766), 1, + sym__unquoted_pattern, STATE(4567), 1, sym_comment, - STATE(4792), 1, + STATE(4726), 1, sym__expr_parenthesized_immediate, - [126212] = 4, + [127272] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7934), 1, + ACTIONS(7995), 1, sym__entry_separator, STATE(4568), 1, sym_comment, - ACTIONS(8142), 2, + ACTIONS(8210), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [126226] = 5, + [127286] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - ACTIONS(7944), 1, - anon_sym_RBRACE, - STATE(1485), 1, - aux_sym__types_body_repeat2, STATE(4569), 1, sym_comment, - [126242] = 3, - ACTIONS(3), 1, + ACTIONS(1864), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [127298] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7995), 1, + sym__entry_separator, STATE(4570), 1, sym_comment, - ACTIONS(7685), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [126254] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4571), 1, - sym_comment, - ACTIONS(7695), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [126266] = 5, + ACTIONS(8210), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [127312] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4417), 1, + ACTIONS(8031), 1, sym__entry_separator, - ACTIONS(8144), 1, - anon_sym_RBRACK, - STATE(2105), 1, - aux_sym__types_body_repeat2, - STATE(4572), 1, + STATE(4571), 1, sym_comment, - [126282] = 3, + ACTIONS(8212), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [127326] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4573), 1, + STATE(4572), 1, sym_comment, - ACTIONS(7715), 3, + ACTIONS(7932), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126294] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(8146), 1, - anon_sym_RBRACK, - STATE(4318), 1, - aux_sym__types_body_repeat2, - STATE(4574), 1, - sym_comment, - [126310] = 3, + [127338] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4575), 1, + STATE(4573), 1, sym_comment, - ACTIONS(7715), 3, + ACTIONS(8013), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126322] = 5, + [127350] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2912), 1, + STATE(1384), 1, + aux_sym__block_body_repeat1, + STATE(4574), 1, + sym_comment, + ACTIONS(153), 2, sym__newline, - ACTIONS(3362), 1, anon_sym_SEMI, - STATE(540), 1, - aux_sym__repeat_newline, + [127364] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1848), 1, + sym__entry_separator, + STATE(4575), 1, + sym_comment, + ACTIONS(1850), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [127378] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4476), 1, + sym__entry_separator, + ACTIONS(8214), 1, + anon_sym_RBRACK, + STATE(2078), 1, + aux_sym__types_body_repeat2, STATE(4576), 1, sym_comment, - [126338] = 3, + [127394] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4577), 1, sym_comment, - ACTIONS(7717), 3, - ts_builtin_sym_end, + ACTIONS(8216), 3, sym__newline, anon_sym_SEMI, - [126350] = 3, + anon_sym_RPAREN, + [127406] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4578), 1, sym_comment, - ACTIONS(8148), 3, + ACTIONS(8015), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [126362] = 4, + [127418] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7936), 1, - sym__entry_separator, STATE(4579), 1, sym_comment, - ACTIONS(8150), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [126376] = 5, + ACTIONS(864), 3, + sym__newline, + sym__space, + anon_sym_COLON2, + [127430] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7287), 1, - anon_sym_if, - ACTIONS(8152), 1, - anon_sym_EQ_GT, STATE(4580), 1, sym_comment, - STATE(4895), 1, - sym_match_guard, - [126392] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8154), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8156), 1, - aux_sym__immediate_decimal_token5, - STATE(4581), 1, - sym_comment, - [126408] = 4, + ACTIONS(7942), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127442] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2537), 1, + ACTIONS(2578), 1, sym__entry_separator, - STATE(4582), 1, + STATE(4581), 1, sym_comment, - ACTIONS(2539), 2, + ACTIONS(2580), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [126422] = 3, + [127456] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4583), 1, + STATE(4582), 1, sym_comment, - ACTIONS(7717), 3, + ACTIONS(8015), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126434] = 3, + [127468] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4584), 1, + STATE(4583), 1, sym_comment, - ACTIONS(4651), 3, + ACTIONS(2120), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [126446] = 4, + [127480] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8158), 1, - anon_sym_RBRACK, - ACTIONS(8160), 1, - sym_hex_digit, - STATE(4585), 2, + STATE(4584), 1, sym_comment, - aux_sym_val_binary_repeat1, - [126460] = 5, + ACTIONS(7942), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127492] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4707), 1, + ACTIONS(4972), 1, sym__entry_separator, - ACTIONS(8163), 1, - anon_sym_RBRACE, - STATE(2227), 1, - aux_sym__types_body_repeat2, + STATE(4585), 1, + sym_comment, + ACTIONS(4976), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [127506] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4586), 1, sym_comment, - [126476] = 4, - ACTIONS(103), 1, + ACTIONS(4674), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [127518] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7938), 1, - sym__entry_separator, STATE(4587), 1, sym_comment, - ACTIONS(8165), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [126490] = 5, + ACTIONS(8218), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [127530] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(5054), 1, sym__entry_separator, - ACTIONS(7769), 1, - anon_sym_RBRACE, - STATE(1469), 1, - aux_sym__types_body_repeat2, STATE(4588), 1, sym_comment, - [126506] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK, - STATE(4548), 1, - sym_val_list, - STATE(4589), 1, - sym_comment, - STATE(4597), 1, - aux_sym__table_body_repeat1, - [126522] = 5, + ACTIONS(5056), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [127544] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(2606), 1, sym__entry_separator, - ACTIONS(8167), 1, + STATE(4589), 1, + sym_comment, + ACTIONS(2608), 2, anon_sym_RBRACK, - STATE(4320), 1, - aux_sym__types_body_repeat2, + anon_sym_RBRACE, + [127558] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4590), 1, sym_comment, - [126538] = 5, + ACTIONS(7944), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127570] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(4278), 1, sym__entry_separator, - ACTIONS(1629), 1, - anon_sym_COLON2, - STATE(1491), 1, + ACTIONS(8220), 1, + anon_sym_GT2, + STATE(1965), 1, aux_sym__types_body_repeat2, STATE(4591), 1, sym_comment, - [126554] = 3, + [127586] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4592), 1, sym_comment, - ACTIONS(7713), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [126566] = 3, + ACTIONS(4654), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [127598] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4593), 1, sym_comment, - ACTIONS(7797), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [126578] = 4, - ACTIONS(103), 1, + ACTIONS(4660), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [127610] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5257), 1, - sym__entry_separator, STATE(4594), 1, sym_comment, - ACTIONS(5259), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [126592] = 5, - ACTIONS(3), 1, + ACTIONS(4664), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [127622] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8169), 1, - anon_sym_export, - ACTIONS(8171), 1, - anon_sym_def, - ACTIONS(8173), 1, - anon_sym_extern, + ACTIONS(2479), 1, + sym__entry_separator, STATE(4595), 1, sym_comment, - [126608] = 3, - ACTIONS(3), 1, + ACTIONS(2481), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [127636] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2479), 1, + sym__entry_separator, STATE(4596), 1, sym_comment, - ACTIONS(8175), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [126620] = 4, + ACTIONS(2481), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [127650] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8177), 1, - anon_sym_LBRACK, - STATE(4742), 1, - sym_val_list, - STATE(4597), 2, + STATE(4597), 1, sym_comment, - aux_sym__table_body_repeat1, - [126634] = 4, - ACTIONS(103), 1, + ACTIONS(7924), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127662] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1874), 1, - sym__entry_separator, STATE(4598), 1, sym_comment, - ACTIONS(1876), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [126648] = 5, + ACTIONS(7924), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127674] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8180), 1, - anon_sym_RBRACK, - ACTIONS(8182), 1, - anon_sym_DOT_DOT, STATE(4599), 1, sym_comment, - STATE(5002), 1, - sym__match_pattern_rest, - [126664] = 3, - ACTIONS(3), 1, + ACTIONS(3083), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [127686] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2618), 1, + sym__entry_separator, STATE(4600), 1, sym_comment, - ACTIONS(7693), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [126676] = 3, + ACTIONS(2620), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [127700] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4601), 1, sym_comment, - ACTIONS(7719), 3, + ACTIONS(7944), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126688] = 5, - ACTIONS(3), 1, + [127712] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7988), 1, - sym_hex_digit, - ACTIONS(8184), 1, - anon_sym_RBRACK, - STATE(4385), 1, - aux_sym_val_binary_repeat1, + ACTIONS(2626), 1, + sym__entry_separator, STATE(4602), 1, sym_comment, - [126704] = 3, - ACTIONS(3), 1, + ACTIONS(2628), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [127726] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4434), 1, + sym__entry_separator, + ACTIONS(8222), 1, + anon_sym_RBRACK, + STATE(2065), 1, + aux_sym__types_body_repeat2, STATE(4603), 1, sym_comment, - ACTIONS(7719), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [126716] = 3, - ACTIONS(3), 1, + [127742] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1689), 1, + sym__entry_separator, STATE(4604), 1, sym_comment, - ACTIONS(7687), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [126728] = 3, + ACTIONS(1615), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [127756] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4605), 1, sym_comment, - ACTIONS(7721), 3, + ACTIONS(8007), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126740] = 3, + [127768] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4606), 1, sym_comment, - ACTIONS(7721), 3, + ACTIONS(7883), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126752] = 3, + [127780] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4607), 1, sym_comment, - ACTIONS(7976), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [126764] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4417), 1, - sym__entry_separator, - ACTIONS(8186), 1, - anon_sym_RBRACK, - STATE(1995), 1, - aux_sym__types_body_repeat2, - STATE(4608), 1, - sym_comment, - [126780] = 3, + ACTIONS(4668), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [127792] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4609), 1, + STATE(4608), 1, sym_comment, - ACTIONS(7908), 3, + ACTIONS(7946), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126792] = 5, + [127804] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4957), 1, + ACTIONS(4784), 1, sym__entry_separator, - ACTIONS(8188), 1, - anon_sym_GT2, - STATE(2362), 1, + ACTIONS(4798), 1, + anon_sym_RBRACE, + STATE(2227), 1, aux_sym__types_body_repeat2, - STATE(4610), 1, + STATE(4609), 1, sym_comment, - [126808] = 5, - ACTIONS(103), 1, + [127820] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4707), 1, - sym__entry_separator, - ACTIONS(4711), 1, - anon_sym_RBRACE, - STATE(2223), 1, - aux_sym__types_body_repeat2, - STATE(4611), 1, + STATE(4610), 1, sym_comment, - [126824] = 5, + ACTIONS(7771), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127832] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1752), 1, + ACTIONS(1756), 1, anon_sym_LPAREN2, - ACTIONS(5048), 1, + ACTIONS(5191), 1, sym__unquoted_pattern, - STATE(4612), 1, + STATE(4611), 1, sym_comment, - STATE(4631), 1, + STATE(4760), 1, sym__expr_parenthesized_immediate, - [126840] = 4, + [127848] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5287), 1, + ACTIONS(2483), 1, sym__entry_separator, - STATE(4613), 1, + STATE(4612), 1, sym_comment, - ACTIONS(5289), 2, + ACTIONS(2485), 2, anon_sym_RBRACK, - anon_sym_GT2, - [126854] = 5, + anon_sym_RBRACE, + [127862] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4434), 1, sym__entry_separator, - ACTIONS(8190), 1, - anon_sym_GT2, - STATE(1938), 1, + ACTIONS(8224), 1, + anon_sym_RBRACK, + STATE(2006), 1, aux_sym__types_body_repeat2, - STATE(4614), 1, + STATE(4613), 1, sym_comment, - [126870] = 3, - ACTIONS(3), 1, + [127878] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4615), 1, + ACTIONS(8226), 1, + anon_sym_LPAREN, + STATE(4614), 1, sym_comment, - ACTIONS(8192), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [126882] = 5, + ACTIONS(8228), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [127892] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8165), 1, - anon_sym_DOT_DOT, - ACTIONS(8194), 1, - anon_sym_RBRACK, - ACTIONS(8197), 1, - sym__entry_separator, - STATE(4616), 1, + ACTIONS(8230), 1, + anon_sym_LPAREN, + STATE(4615), 1, sym_comment, - [126898] = 5, + ACTIONS(8232), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [127906] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(4434), 1, sym__entry_separator, - ACTIONS(8200), 1, - anon_sym_RBRACE, - STATE(1483), 1, + ACTIONS(8234), 1, + anon_sym_RBRACK, + STATE(2008), 1, aux_sym__types_body_repeat2, - STATE(4617), 1, + STATE(4616), 1, sym_comment, - [126914] = 5, + [127922] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7988), 1, - sym_hex_digit, - ACTIONS(8203), 1, + STATE(4617), 1, + sym_comment, + ACTIONS(8236), 3, + sym__newline, + anon_sym_LBRACK, anon_sym_RBRACK, - STATE(4511), 1, - aux_sym_val_binary_repeat1, + [127934] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7214), 1, + sym__entry_separator, STATE(4618), 1, sym_comment, - [126930] = 5, + ACTIONS(7413), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [127948] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7889), 1, + ACTIONS(7856), 1, sym__entry_separator, - ACTIONS(8205), 1, - anon_sym_COLON, STATE(4619), 1, sym_comment, - STATE(4785), 1, - sym__collection_annotation, - [126946] = 5, - ACTIONS(103), 1, + ACTIONS(8238), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [127962] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7896), 1, - sym__entry_separator, - ACTIONS(8205), 1, - anon_sym_COLON, STATE(4620), 1, sym_comment, - STATE(4787), 1, - sym__collection_annotation, - [126962] = 5, - ACTIONS(103), 1, + ACTIONS(7964), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127974] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - ACTIONS(7759), 1, - anon_sym_LBRACK, - STATE(1876), 1, - aux_sym__types_body_repeat2, + ACTIONS(5237), 1, + anon_sym_LPAREN2, + ACTIONS(5247), 1, + sym__unquoted_pattern_in_record, STATE(4621), 1, sym_comment, - [126978] = 3, - ACTIONS(3), 1, + STATE(4761), 1, + sym__expr_parenthesized_immediate, + [127990] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7222), 1, + sym__entry_separator, STATE(4622), 1, sym_comment, - ACTIONS(8207), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [126990] = 5, - ACTIONS(103), 1, + ACTIONS(7432), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [128004] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4609), 1, - sym_block, STATE(4623), 1, sym_comment, - [127006] = 4, + ACTIONS(7934), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [128016] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8209), 1, - anon_sym_RBRACE, - ACTIONS(8211), 1, + ACTIONS(8130), 1, + anon_sym_DOT_DOT, + ACTIONS(8240), 1, + anon_sym_RBRACK, + ACTIONS(8243), 1, sym__entry_separator, STATE(4624), 1, sym_comment, - [127019] = 4, + [128032] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8213), 1, - anon_sym_LPAREN2, - ACTIONS(8215), 1, - aux_sym__record_key_token1, + ACTIONS(2558), 1, + sym__entry_separator, STATE(4625), 1, sym_comment, - [127032] = 4, + ACTIONS(2560), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [128046] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8217), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(1623), 1, + sym__entry_separator, + ACTIONS(8246), 1, + anon_sym_RBRACE, + STATE(1477), 1, + aux_sym__types_body_repeat2, STATE(4626), 1, sym_comment, - STATE(4628), 1, - aux_sym__unquoted_with_expr_repeat1, - [127045] = 4, - ACTIONS(103), 1, + [128062] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8219), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(8190), 1, + anon_sym_QMARK2, STATE(4627), 1, sym_comment, - STATE(4629), 1, - aux_sym__unquoted_with_expr_repeat1, - [127058] = 4, - ACTIONS(103), 1, + ACTIONS(1448), 2, + sym__table_head_separator, + anon_sym_DOT2, + [128076] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8221), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(1728), 1, + anon_sym_LBRACE, + ACTIONS(1730), 1, + sym__unquoted_pattern, + ACTIONS(7777), 1, + aux_sym__immediate_decimal_token5, STATE(4628), 1, sym_comment, - STATE(4678), 1, - aux_sym__unquoted_with_expr_repeat1, - [127071] = 4, + [128092] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8223), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(1623), 1, + sym__entry_separator, + ACTIONS(8248), 1, + anon_sym_RBRACE, + STATE(1475), 1, + aux_sym__types_body_repeat2, STATE(4629), 1, sym_comment, - STATE(4678), 1, - aux_sym__unquoted_with_expr_repeat1, - [127084] = 4, - ACTIONS(3), 1, + [128108] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8225), 1, - anon_sym_def, - ACTIONS(8227), 1, - anon_sym_extern, + ACTIONS(5377), 1, + sym__entry_separator, STATE(4630), 1, sym_comment, - [127097] = 4, + ACTIONS(5375), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [128122] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8229), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(1623), 1, + sym__entry_separator, + ACTIONS(8033), 1, + anon_sym_RBRACE, + STATE(1474), 1, + aux_sym__types_body_repeat2, STATE(4631), 1, sym_comment, - STATE(4672), 1, - aux_sym__unquoted_with_expr_repeat1, - [127110] = 4, - ACTIONS(103), 1, + [128138] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8231), 1, - aux_sym__unquoted_in_record_with_expr_token1, STATE(4632), 1, sym_comment, - STATE(4710), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [127123] = 4, - ACTIONS(103), 1, + ACTIONS(7983), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [128150] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8233), 1, - aux_sym__unquoted_with_expr_token1, STATE(4633), 1, sym_comment, - STATE(4693), 1, - aux_sym__unquoted_with_expr_repeat1, - [127136] = 4, + ACTIONS(7964), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [128162] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8235), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(5963), 1, + sym__entry_separator, STATE(4634), 1, sym_comment, - STATE(4694), 1, - aux_sym__unquoted_with_expr_repeat1, - [127149] = 4, + ACTIONS(5961), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [128176] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8237), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(2878), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3809), 1, + anon_sym_LBRACE, STATE(4635), 1, sym_comment, - STATE(4678), 1, - aux_sym__unquoted_with_expr_repeat1, - [127162] = 4, + STATE(4656), 1, + sym_block, + [128192] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4117), 1, - sym_block, + ACTIONS(8251), 1, + anon_sym_export, + ACTIONS(8253), 1, + anon_sym_def, + ACTIONS(8255), 1, + anon_sym_extern, STATE(4636), 1, sym_comment, - [127175] = 4, + [128208] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8239), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(5972), 1, + sym__entry_separator, STATE(4637), 1, sym_comment, - STATE(4778), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [127188] = 4, + ACTIONS(5970), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [128222] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8241), 1, - aux_sym__unquoted_in_record_with_expr_token1, STATE(4638), 1, sym_comment, - STATE(4781), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [127201] = 4, + ACTIONS(2580), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [128234] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4119), 1, - sym_block, STATE(4639), 1, sym_comment, - [127214] = 4, + ACTIONS(8257), 3, + sym__newline, + anon_sym_LBRACK, + anon_sym_RBRACK, + [128246] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4471), 1, - sym_block, + ACTIONS(8259), 1, + anon_sym_RBRACK, + ACTIONS(8261), 1, + anon_sym_DOT_DOT, STATE(4640), 1, sym_comment, - [127227] = 4, - ACTIONS(3), 1, + STATE(5009), 1, + sym__match_pattern_rest, + [128262] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(2878), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3809), 1, anon_sym_LBRACE, - STATE(4120), 1, + STATE(3176), 1, sym_block, STATE(4641), 1, sym_comment, - [127240] = 4, - ACTIONS(3), 1, + [128278] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4121), 1, - sym_block, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(8263), 1, + anon_sym_RBRACK, + STATE(1931), 1, + aux_sym__types_body_repeat2, STATE(4642), 1, sym_comment, - [127253] = 4, - ACTIONS(103), 1, + [128294] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7544), 1, - anon_sym_RBRACE, - ACTIONS(7546), 1, - sym__entry_separator, STATE(4643), 1, sym_comment, - [127266] = 4, - ACTIONS(103), 1, + ACTIONS(7873), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [128306] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8243), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(1728), 1, + anon_sym_LBRACE, + ACTIONS(7306), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8265), 1, + anon_sym_DOT, STATE(4644), 1, sym_comment, - STATE(4678), 1, - aux_sym__unquoted_with_expr_repeat1, - [127279] = 4, + [128322] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1726), 1, - anon_sym_LBRACE, - ACTIONS(1728), 1, - sym__unquoted_pattern, STATE(4645), 1, sym_comment, - [127292] = 4, + ACTIONS(8267), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [128334] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4575), 1, - sym_block, STATE(4646), 1, sym_comment, - [127305] = 4, - ACTIONS(3), 1, + ACTIONS(7779), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [128346] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4573), 1, - sym_block, + ACTIONS(1623), 1, + sym__entry_separator, + ACTIONS(8269), 1, + anon_sym_RBRACE, + STATE(1462), 1, + aux_sym__types_body_repeat2, STATE(4647), 1, sym_comment, - [127318] = 4, + [128362] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_LPAREN2, STATE(4648), 1, sym_comment, - STATE(4927), 1, - sym__expr_parenthesized_immediate, - [127331] = 4, + ACTIONS(8271), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [128374] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4094), 1, - sym_block, STATE(4649), 1, sym_comment, - [127344] = 3, - ACTIONS(3), 1, + ACTIONS(8273), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [128386] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2610), 1, + sym__entry_separator, STATE(4650), 1, sym_comment, - ACTIONS(1464), 2, - sym__table_head_separator, - anon_sym_DOT2, - [127355] = 4, + ACTIONS(2612), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [128400] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4514), 1, - sym_block, STATE(4651), 1, sym_comment, - [127368] = 4, + ACTIONS(8009), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [128412] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4095), 1, - sym_block, + ACTIONS(8275), 1, + anon_sym_RBRACK, + ACTIONS(8277), 1, + anon_sym_DOT_DOT, STATE(4652), 1, sym_comment, - [127381] = 4, - ACTIONS(3), 1, + STATE(4862), 1, + sym__match_pattern_rest, + [128428] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4449), 1, - sym_block, + ACTIONS(1623), 1, + sym__entry_separator, + ACTIONS(8279), 1, + anon_sym_RBRACE, + STATE(1463), 1, + aux_sym__types_body_repeat2, STATE(4653), 1, sym_comment, - [127394] = 4, + [128444] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4096), 1, - sym_block, STATE(4654), 1, sym_comment, - [127407] = 4, - ACTIONS(3), 1, + ACTIONS(7946), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [128456] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4351), 1, - sym_block, + ACTIONS(793), 1, + anon_sym_RBRACK, + ACTIONS(890), 1, + sym__entry_separator, + ACTIONS(6335), 1, + sym__unquoted_pattern_in_list, STATE(4655), 1, sym_comment, - [127420] = 4, + [128472] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4097), 1, - sym_block, STATE(4656), 1, sym_comment, - [127433] = 4, + ACTIONS(8025), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [128484] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3809), 1, anon_sym_LBRACE, - STATE(4124), 1, + STATE(4481), 1, sym_block, STATE(4657), 1, sym_comment, - [127446] = 4, + [128497] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3803), 1, anon_sym_LBRACE, - STATE(4450), 1, + STATE(4326), 1, sym_block, STATE(4658), 1, sym_comment, - [127459] = 4, - ACTIONS(3), 1, + [128510] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4125), 1, - sym_block, + ACTIONS(4784), 1, + sym__entry_separator, + STATE(2244), 1, + aux_sym__types_body_repeat2, STATE(4659), 1, sym_comment, - [127472] = 4, + [128523] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8245), 1, - anon_sym_GT2, - ACTIONS(8247), 1, + ACTIONS(5074), 1, sym__entry_separator, + ACTIONS(5076), 1, + anon_sym_RBRACK, STATE(4660), 1, sym_comment, - [127485] = 4, + [128536] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2635), 1, + ACTIONS(3809), 1, anon_sym_LBRACE, - ACTIONS(2641), 1, - sym__unquoted_pattern, + STATE(4498), 1, + sym_block, STATE(4661), 1, sym_comment, - [127498] = 4, + [128549] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8249), 1, - anon_sym_RBRACE, - ACTIONS(8251), 1, - sym__entry_separator, + ACTIONS(8281), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(4662), 1, sym_comment, - [127511] = 4, + STATE(4791), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [128562] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6061), 1, - sym__entry_separator, - ACTIONS(6063), 1, - anon_sym_GT2, + ACTIONS(8283), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(4663), 1, sym_comment, - [127524] = 3, + STATE(4796), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [128575] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(4217), 1, + sym_block, STATE(4664), 1, sym_comment, - ACTIONS(8253), 2, - anon_sym_RBRACK, - sym_hex_digit, - [127535] = 4, - ACTIONS(103), 1, + [128588] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7560), 1, - anon_sym_RBRACE, - ACTIONS(7562), 1, - sym__entry_separator, + ACTIONS(3809), 1, + anon_sym_LBRACE, + STATE(4582), 1, + sym_block, STATE(4665), 1, sym_comment, - [127548] = 3, - ACTIONS(103), 1, + [128601] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(4218), 1, + sym_block, STATE(4666), 1, sym_comment, - ACTIONS(2096), 2, - anon_sym_POUND_BANG, - sym__newline, - [127559] = 4, - ACTIONS(103), 1, + [128614] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8255), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(2525), 1, + anon_sym_LBRACE, + ACTIONS(2531), 1, + sym__unquoted_pattern, STATE(4667), 1, sym_comment, - STATE(4674), 1, - aux_sym__unquoted_with_expr_repeat1, - [127572] = 4, + [128627] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - ACTIONS(1964), 1, - anon_sym_LBRACE, + ACTIONS(8285), 1, + anon_sym_DASH2, STATE(4668), 1, sym_comment, - [127585] = 4, - ACTIONS(3), 1, + STATE(5047), 1, + sym_param_short_flag, + [128640] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3076), 1, - sym_block, + ACTIONS(7690), 1, + anon_sym_RBRACE, + ACTIONS(7692), 1, + sym__entry_separator, STATE(4669), 1, sym_comment, - [127598] = 4, - ACTIONS(103), 1, + [128653] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4722), 1, - sym__entry_separator, - STATE(2252), 1, - aux_sym__types_body_repeat2, + ACTIONS(6601), 1, + anon_sym_LPAREN2, STATE(4670), 1, sym_comment, - [127611] = 4, + STATE(5020), 1, + sym__expr_parenthesized_immediate, + [128666] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(968), 1, + ACTIONS(3809), 1, anon_sym_LBRACE, - ACTIONS(1762), 1, - sym__unquoted_pattern, + STATE(4535), 1, + sym_block, STATE(4671), 1, sym_comment, - [127624] = 4, - ACTIONS(103), 1, + [128679] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8257), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(1844), 1, + anon_sym_LBRACE, + ACTIONS(1846), 1, + sym__unquoted_pattern, STATE(4672), 1, sym_comment, - STATE(4678), 1, - aux_sym__unquoted_with_expr_repeat1, - [127637] = 4, - ACTIONS(103), 1, + [128692] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6065), 1, - sym__entry_separator, - ACTIONS(6067), 1, - anon_sym_GT2, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(4223), 1, + sym_block, STATE(4673), 1, sym_comment, - [127650] = 4, + [128705] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8259), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(8287), 1, + anon_sym_RBRACE, + ACTIONS(8289), 1, + sym__entry_separator, STATE(4674), 1, sym_comment, - STATE(4678), 1, - aux_sym__unquoted_with_expr_repeat1, - [127663] = 4, - ACTIONS(3), 1, + [128718] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4529), 1, - sym_block, + ACTIONS(5088), 1, + sym__entry_separator, + ACTIONS(5090), 1, + anon_sym_RBRACK, STATE(4675), 1, sym_comment, - [127676] = 4, - ACTIONS(3), 1, + [128731] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2501), 1, - anon_sym_LBRACE, - ACTIONS(2503), 1, - sym__unquoted_pattern, + ACTIONS(8291), 1, + anon_sym_RBRACK, + ACTIONS(8293), 1, + sym__entry_separator, STATE(4676), 1, sym_comment, - [127689] = 4, - ACTIONS(3), 1, + [128744] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(994), 1, - anon_sym_LBRACE, - ACTIONS(2585), 1, - sym__unquoted_pattern, STATE(4677), 1, sym_comment, - [127702] = 3, + ACTIONS(2110), 2, + anon_sym_POUND_BANG, + sym__newline, + [128755] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8261), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4678), 2, + ACTIONS(2556), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7222), 1, + sym__entry_separator, + STATE(4678), 1, sym_comment, - aux_sym__unquoted_with_expr_repeat1, - [127713] = 4, + [128768] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1018), 1, + ACTIONS(3809), 1, anon_sym_LBRACE, - ACTIONS(2585), 1, - sym__unquoted_pattern, + STATE(4580), 1, + sym_block, STATE(4679), 1, sym_comment, - [127726] = 4, + [128781] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8264), 1, - anon_sym_DASH2, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(4277), 1, + sym_block, STATE(4680), 1, sym_comment, - STATE(5198), 1, - sym_param_short_flag, - [127739] = 4, + [128794] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8266), 1, - anon_sym_RBRACK, - ACTIONS(8268), 1, + ACTIONS(7390), 1, + anon_sym_RBRACE, + ACTIONS(7392), 1, sym__entry_separator, STATE(4681), 1, sym_comment, - [127752] = 3, + [128807] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(4328), 1, + sym_block, STATE(4682), 1, sym_comment, - ACTIONS(1522), 2, - sym__table_head_separator, - anon_sym_DOT2, - [127763] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4683), 1, - sym_comment, - ACTIONS(1537), 2, - sym__table_head_separator, - anon_sym_DOT2, - [127774] = 4, + [128820] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1706), 1, + ACTIONS(2325), 1, anon_sym_LBRACE, - ACTIONS(2597), 1, + ACTIONS(2327), 1, sym__unquoted_pattern, - STATE(4684), 1, + STATE(4683), 1, sym_comment, - [127787] = 4, + [128833] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1964), 1, + ACTIONS(994), 1, sym__entry_separator, - ACTIONS(1966), 1, + ACTIONS(996), 1, anon_sym_RBRACE, - STATE(4685), 1, + STATE(4684), 1, sym_comment, - [127800] = 4, + [128846] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3803), 1, anon_sym_LBRACE, - STATE(4062), 1, + STATE(4278), 1, sym_block, + STATE(4685), 1, + sym_comment, + [128859] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5064), 1, + sym__entry_separator, + ACTIONS(5066), 1, + anon_sym_RBRACK, STATE(4686), 1, sym_comment, - [127813] = 4, + [128872] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3488), 1, + sym__space, + STATE(1406), 1, + aux_sym_pipe_element_repeat1, + STATE(4687), 1, + sym_comment, + [128885] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3803), 1, anon_sym_LBRACE, - STATE(4531), 1, + STATE(4302), 1, sym_block, - STATE(4687), 1, + STATE(4688), 1, sym_comment, - [127826] = 4, + [128898] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8270), 1, + ACTIONS(1004), 1, anon_sym_RBRACE, - ACTIONS(8272), 1, + ACTIONS(1012), 1, sym__entry_separator, - STATE(4688), 1, + STATE(4689), 1, sym_comment, - [127839] = 4, + [128911] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7398), 1, - anon_sym_RBRACE, - ACTIONS(7400), 1, + ACTIONS(2525), 1, sym__entry_separator, - STATE(4689), 1, + ACTIONS(2527), 1, + anon_sym_RBRACE, + STATE(4690), 1, sym_comment, - [127852] = 4, + [128924] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3809), 1, anon_sym_LBRACE, - STATE(4063), 1, + STATE(4494), 1, sym_block, - STATE(4690), 1, - sym_comment, - [127865] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2575), 1, - sym__entry_separator, - ACTIONS(2577), 1, - anon_sym_RBRACE, STATE(4691), 1, sym_comment, - [127878] = 4, - ACTIONS(103), 1, + [128937] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8274), 1, - anon_sym_RBRACK, - ACTIONS(8276), 1, - sym__entry_separator, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(4336), 1, + sym_block, STATE(4692), 1, sym_comment, - [127891] = 4, + [128950] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8278), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4678), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(8295), 1, + anon_sym_RBRACE, + ACTIONS(8297), 1, + sym__entry_separator, STATE(4693), 1, sym_comment, - [127904] = 4, - ACTIONS(103), 1, + [128963] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8280), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4678), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(4279), 1, + sym_block, STATE(4694), 1, sym_comment, - [127917] = 4, + [128976] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7210), 1, + ACTIONS(8299), 1, + anon_sym_RBRACE, + ACTIONS(8301), 1, sym__entry_separator, STATE(4695), 1, sym_comment, - [127930] = 4, + [128989] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3803), 1, anon_sym_LBRACE, - STATE(4532), 1, + STATE(4317), 1, sym_block, STATE(4696), 1, sym_comment, - [127943] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8282), 1, - anon_sym_RBRACE, - ACTIONS(8284), 1, - sym__entry_separator, - STATE(4697), 1, - sym_comment, - [127956] = 4, + [129002] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3803), 1, anon_sym_LBRACE, - STATE(4069), 1, + STATE(4337), 1, sym_block, + STATE(4697), 1, + sym_comment, + [129015] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5974), 1, + anon_sym_RBRACK, + ACTIONS(5976), 1, + sym__entry_separator, STATE(4698), 1, sym_comment, - [127969] = 4, + [129028] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1974), 1, + ACTIONS(5138), 1, sym__entry_separator, - ACTIONS(1976), 1, - anon_sym_RBRACE, + ACTIONS(5140), 1, + anon_sym_RBRACK, STATE(4699), 1, sym_comment, - [127982] = 4, - ACTIONS(3), 1, + [129041] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4592), 1, - sym_block, + ACTIONS(8303), 1, + anon_sym_RBRACK, + ACTIONS(8305), 1, + sym__entry_separator, STATE(4700), 1, sym_comment, - [127995] = 4, + [129054] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, + ACTIONS(1962), 1, sym__unquoted_pattern, - ACTIONS(2523), 1, + ACTIONS(2574), 1, anon_sym_LBRACE, STATE(4701), 1, sym_comment, - [128008] = 4, - ACTIONS(3), 1, + [129067] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4392), 1, - sym_block, + ACTIONS(6252), 1, + sym__entry_separator, + ACTIONS(6254), 1, + anon_sym_RBRACK, STATE(4702), 1, sym_comment, - [128021] = 4, - ACTIONS(3), 1, + [129080] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4429), 1, - sym_block, + ACTIONS(5104), 1, + sym__entry_separator, + ACTIONS(5106), 1, + anon_sym_RBRACK, STATE(4703), 1, sym_comment, - [128034] = 4, + [129093] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4605), 1, - sym_block, STATE(4704), 1, sym_comment, - [128047] = 4, + ACTIONS(5016), 2, + anon_sym_GT2, + anon_sym_AT2, + [129104] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4439), 1, - sym_block, + ACTIONS(5237), 1, + anon_sym_LPAREN2, STATE(4705), 1, sym_comment, - [128060] = 4, + STATE(5230), 1, + sym__expr_parenthesized_immediate, + [129117] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3809), 1, anon_sym_LBRACE, - STATE(4104), 1, + STATE(4578), 1, sym_block, STATE(4706), 1, sym_comment, - [128073] = 4, - ACTIONS(103), 1, + [129130] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - STATE(1491), 1, - aux_sym__types_body_repeat2, + ACTIONS(3809), 1, + anon_sym_LBRACE, + STATE(4491), 1, + sym_block, STATE(4707), 1, sym_comment, - [128086] = 3, - ACTIONS(3), 1, + [129143] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4278), 1, + sym__entry_separator, + STATE(2064), 1, + aux_sym__types_body_repeat2, STATE(4708), 1, sym_comment, - ACTIONS(8106), 2, - anon_sym_GT2, - anon_sym_AT2, - [128097] = 4, + [129156] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8286), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(7696), 1, + anon_sym_RBRACE, + ACTIONS(7698), 1, + sym__entry_separator, STATE(4709), 1, sym_comment, - STATE(4720), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [128110] = 4, - ACTIONS(103), 1, + [129169] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8288), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(3809), 1, + anon_sym_LBRACE, + STATE(4456), 1, + sym_block, STATE(4710), 1, sym_comment, - STATE(4720), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [128123] = 4, + [129182] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4106), 1, - sym_block, + ACTIONS(6333), 1, + anon_sym_DOLLAR2, + ACTIONS(8307), 1, + anon_sym_RBRACK, STATE(4711), 1, sym_comment, - [128136] = 4, + [129195] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3809), 1, anon_sym_LBRACE, - STATE(4107), 1, + STATE(4584), 1, sym_block, STATE(4712), 1, sym_comment, - [128149] = 4, + [129208] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8290), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(890), 1, + anon_sym_COLON2, + ACTIONS(2662), 1, + aux_sym_cmd_identifier_token2, STATE(4713), 1, sym_comment, - STATE(4734), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [128162] = 4, + [129221] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7621), 1, - anon_sym_RBRACE, - ACTIONS(7623), 1, + ACTIONS(2574), 1, sym__entry_separator, + ACTIONS(2576), 1, + anon_sym_RBRACE, STATE(4714), 1, sym_comment, - [128175] = 4, - ACTIONS(3), 1, + [129234] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4443), 1, - sym_block, + ACTIONS(2509), 1, + sym__entry_separator, + ACTIONS(2511), 1, + anon_sym_RBRACE, STATE(4715), 1, sym_comment, - [128188] = 3, + [129247] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3809), 1, + anon_sym_LBRACE, + STATE(4495), 1, + sym_block, STATE(4716), 1, sym_comment, - ACTIONS(8292), 2, - sym__newline, - anon_sym_SEMI, - [128199] = 4, + [129260] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1802), 1, + ACTIONS(3809), 1, anon_sym_LBRACE, - ACTIONS(1804), 1, - sym__unquoted_pattern, + STATE(4453), 1, + sym_block, STATE(4717), 1, sym_comment, - [128212] = 4, + [129273] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3809), 1, anon_sym_LBRACE, - STATE(4105), 1, + STATE(4428), 1, sym_block, STATE(4718), 1, sym_comment, - [128225] = 4, + [129286] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2523), 1, + ACTIONS(2562), 1, sym__entry_separator, - ACTIONS(2525), 1, + ACTIONS(2564), 1, anon_sym_RBRACE, STATE(4719), 1, sym_comment, - [128238] = 3, - ACTIONS(103), 1, + [129299] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8294), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4720), 2, + ACTIONS(8309), 1, + anon_sym_def, + ACTIONS(8311), 1, + anon_sym_extern, + STATE(4720), 1, sym_comment, - aux_sym__unquoted_in_record_with_expr_repeat1, - [128249] = 4, - ACTIONS(103), 1, + [129312] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8297), 1, - anon_sym_RBRACK, - ACTIONS(8299), 1, - sym__entry_separator, + ACTIONS(3809), 1, + anon_sym_LBRACE, + STATE(4551), 1, + sym_block, STATE(4721), 1, sym_comment, - [128262] = 4, - ACTIONS(103), 1, + [129325] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1627), 1, - sym__entry_separator, - STATE(1496), 1, - aux_sym__types_body_repeat2, + ACTIONS(6333), 1, + anon_sym_DOLLAR2, + ACTIONS(8313), 1, + anon_sym_RBRACK, STATE(4722), 1, sym_comment, - [128275] = 4, + [129338] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8301), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(8315), 1, + aux_sym__unquoted_with_expr_token1, STATE(4723), 1, sym_comment, - STATE(4782), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [128288] = 4, - ACTIONS(3), 1, + STATE(4735), 1, + aux_sym__unquoted_with_expr_repeat1, + [129351] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4533), 1, - sym_block, - STATE(4724), 1, + ACTIONS(8317), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4724), 2, sym_comment, - [128301] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [129362] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1752), 1, - anon_sym_LPAREN2, + ACTIONS(8320), 1, + aux_sym__unquoted_with_expr_token1, STATE(4725), 1, sym_comment, - STATE(5091), 1, - sym__expr_parenthesized_immediate, - [128314] = 4, - ACTIONS(3), 1, + STATE(4741), 1, + aux_sym__unquoted_with_expr_repeat1, + [129375] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6220), 1, - anon_sym_DOLLAR2, - ACTIONS(8303), 1, - anon_sym_RBRACK, + ACTIONS(8322), 1, + aux_sym__unquoted_with_expr_token1, STATE(4726), 1, sym_comment, - [128327] = 4, + STATE(4755), 1, + aux_sym__unquoted_with_expr_repeat1, + [129388] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5963), 1, - anon_sym_RBRACK, - ACTIONS(5965), 1, + ACTIONS(4813), 1, sym__entry_separator, + STATE(2251), 1, + aux_sym__types_body_repeat2, STATE(4727), 1, sym_comment, - [128340] = 4, - ACTIONS(3), 1, + [129401] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4422), 1, - sym_block, + ACTIONS(8324), 1, + aux_sym__unquoted_with_expr_token1, STATE(4728), 1, sym_comment, - [128353] = 4, + STATE(4820), 1, + aux_sym__unquoted_with_expr_repeat1, + [129414] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(1952), 1, anon_sym_LBRACE, - STATE(4424), 1, - sym_block, + ACTIONS(1962), 1, + sym__unquoted_pattern, STATE(4729), 1, sym_comment, - [128366] = 4, - ACTIONS(3), 1, + [129427] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4453), 1, - sym_block, + ACTIONS(7411), 1, + anon_sym_RBRACK, + ACTIONS(7419), 1, + sym__entry_separator, STATE(4730), 1, sym_comment, - [128379] = 4, + [129440] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8326), 1, + anon_sym_RBRACE, + ACTIONS(8328), 1, + sym__entry_separator, + STATE(4731), 1, + sym_comment, + [129453] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3809), 1, anon_sym_LBRACE, - STATE(4457), 1, + STATE(4479), 1, sym_block, - STATE(4731), 1, + STATE(4732), 1, sym_comment, - [128392] = 4, + [129466] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4417), 1, + ACTIONS(7767), 1, + anon_sym_RBRACE, + ACTIONS(7769), 1, sym__entry_separator, - STATE(2118), 1, - aux_sym__types_body_repeat2, - STATE(4732), 1, - sym_comment, - [128405] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1870), 1, - anon_sym_LBRACE, - ACTIONS(1872), 1, - sym__unquoted_pattern, STATE(4733), 1, sym_comment, - [128418] = 3, + [129479] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8305), 1, + ACTIONS(8330), 1, aux_sym__unquoted_in_list_with_expr_token1, - STATE(4734), 2, + STATE(4734), 1, sym_comment, + STATE(4813), 1, aux_sym__unquoted_in_list_with_expr_repeat1, - [128429] = 4, - ACTIONS(3), 1, + [129492] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4425), 1, - sym_block, + ACTIONS(8332), 1, + aux_sym__unquoted_with_expr_token1, STATE(4735), 1, sym_comment, - [128442] = 4, - ACTIONS(103), 1, + STATE(4822), 1, + aux_sym__unquoted_with_expr_repeat1, + [129505] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4348), 1, - sym__entry_separator, - STATE(2120), 1, - aux_sym__types_body_repeat2, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(1942), 1, + anon_sym_LBRACE, STATE(4736), 1, sym_comment, - [128455] = 4, + [129518] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5245), 1, - anon_sym_RBRACK, - ACTIONS(5247), 1, + ACTIONS(7714), 1, + anon_sym_RBRACE, + ACTIONS(7716), 1, sym__entry_separator, STATE(4737), 1, sym_comment, - [128468] = 4, + [129531] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(968), 1, - anon_sym_COLON2, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(5128), 1, + sym__entry_separator, + ACTIONS(5130), 1, + anon_sym_RBRACK, STATE(4738), 1, sym_comment, - [128481] = 4, - ACTIONS(3), 1, + [129544] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4112), 1, - sym_block, + ACTIONS(7006), 1, + sym__entry_separator, + ACTIONS(8334), 1, + anon_sym_RBRACK, STATE(4739), 1, sym_comment, - [128494] = 4, - ACTIONS(3), 1, + [129557] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4113), 1, - sym_block, + ACTIONS(6974), 1, + sym__entry_separator, + ACTIONS(8336), 1, + anon_sym_RBRACK, STATE(4740), 1, sym_comment, - [128507] = 4, + [129570] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2567), 1, - sym__entry_separator, - ACTIONS(2569), 1, - anon_sym_RBRACE, + ACTIONS(8338), 1, + aux_sym__unquoted_with_expr_token1, STATE(4741), 1, sym_comment, - [128520] = 4, - ACTIONS(103), 1, + STATE(4822), 1, + aux_sym__unquoted_with_expr_repeat1, + [129583] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - STATE(4621), 1, - aux_sym__types_body_repeat2, STATE(4742), 1, sym_comment, - [128533] = 4, + ACTIONS(8340), 2, + anon_sym_RBRACK, + sym_hex_digit, + [129594] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3809), 1, anon_sym_LBRACE, - STATE(4426), 1, + STATE(4560), 1, sym_block, STATE(4743), 1, sym_comment, - [128546] = 4, - ACTIONS(3), 1, + [129607] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8308), 1, - sym_identifier, - ACTIONS(8310), 1, - anon_sym_DOLLAR, + ACTIONS(2662), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2664), 1, + anon_sym_COLON2, STATE(4744), 1, sym_comment, - [128559] = 4, - ACTIONS(103), 1, + [129620] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8312), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4713), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(4346), 1, + sym_block, STATE(4745), 1, sym_comment, - [128572] = 4, + [129633] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3757), 1, - sym__entry_separator, - ACTIONS(8314), 1, - anon_sym_RBRACE, + ACTIONS(8342), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(4746), 1, sym_comment, - [128585] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6220), 1, - anon_sym_DOLLAR2, - ACTIONS(8317), 1, - anon_sym_RBRACK, - STATE(4747), 1, - sym_comment, - [128598] = 4, + STATE(4819), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [129646] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4264), 1, + ACTIONS(4434), 1, sym__entry_separator, - STATE(1975), 1, + STATE(2133), 1, aux_sym__types_body_repeat2, + STATE(4747), 1, + sym_comment, + [129659] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(4349), 1, + sym_block, STATE(4748), 1, sym_comment, - [128611] = 4, + [129672] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3803), 1, anon_sym_LBRACE, - STATE(4606), 1, + STATE(4275), 1, sym_block, STATE(4749), 1, sym_comment, - [128624] = 4, + [129685] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3490), 1, - sym__space, - STATE(1407), 1, - aux_sym_pipe_element_repeat1, + ACTIONS(4476), 1, + sym__entry_separator, + STATE(2129), 1, + aux_sym__types_body_repeat2, STATE(4750), 1, sym_comment, - [128637] = 4, + [129698] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4957), 1, + ACTIONS(4278), 1, sym__entry_separator, - STATE(2402), 1, + STATE(4507), 1, aux_sym__types_body_repeat2, STATE(4751), 1, sym_comment, - [128650] = 4, + [129711] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3803), 1, anon_sym_LBRACE, - STATE(4465), 1, + STATE(3204), 1, sym_block, STATE(4752), 1, sym_comment, - [128663] = 4, + [129724] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8319), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4635), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(1952), 1, + sym__entry_separator, + ACTIONS(1954), 1, + anon_sym_RBRACE, STATE(4753), 1, sym_comment, - [128676] = 4, - ACTIONS(103), 1, + [129737] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8321), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4644), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(1806), 1, + anon_sym_LBRACE, + ACTIONS(1808), 1, + sym__unquoted_pattern, STATE(4754), 1, sym_comment, - [128689] = 4, - ACTIONS(3), 1, + [129750] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3159), 1, - sym_block, + ACTIONS(8344), 1, + aux_sym__unquoted_with_expr_token1, STATE(4755), 1, sym_comment, - [128702] = 4, - ACTIONS(103), 1, + STATE(4822), 1, + aux_sym__unquoted_with_expr_repeat1, + [129763] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4264), 1, - sym__entry_separator, - STATE(1979), 1, - aux_sym__types_body_repeat2, STATE(4756), 1, sym_comment, - [128715] = 4, - ACTIONS(3), 1, + ACTIONS(8346), 2, + sym__newline, + anon_sym_SEMI, + [129774] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4420), 1, - sym_block, + ACTIONS(8348), 1, + aux_sym__unquoted_with_expr_token1, STATE(4757), 1, sym_comment, - [128728] = 4, + STATE(4815), 1, + aux_sym__unquoted_with_expr_repeat1, + [129787] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(4600), 1, - sym_block, + ACTIONS(1730), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8074), 1, + aux_sym__immediate_decimal_token5, STATE(4758), 1, sym_comment, - [128741] = 4, + [129800] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2666), 1, - anon_sym_COLON2, + ACTIONS(8350), 1, + aux_sym__unquoted_with_expr_token1, STATE(4759), 1, sym_comment, - [128754] = 4, - ACTIONS(3), 1, + STATE(4816), 1, + aux_sym__unquoted_with_expr_repeat1, + [129813] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4073), 1, - sym_block, + ACTIONS(8352), 1, + aux_sym__unquoted_with_expr_token1, STATE(4760), 1, sym_comment, - [128767] = 4, - ACTIONS(3), 1, + STATE(4771), 1, + aux_sym__unquoted_with_expr_repeat1, + [129826] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4074), 1, - sym_block, + ACTIONS(8354), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(4761), 1, sym_comment, - [128780] = 4, + STATE(4790), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [129839] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, - ACTIONS(2575), 1, + ACTIONS(3809), 1, anon_sym_LBRACE, + STATE(4449), 1, + sym_block, STATE(4762), 1, sym_comment, - [128793] = 4, - ACTIONS(3), 1, + [129852] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1738), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8006), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(7678), 1, + anon_sym_RBRACE, + ACTIONS(7680), 1, + sym__entry_separator, STATE(4763), 1, sym_comment, - [128806] = 4, - ACTIONS(103), 1, + [129865] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6115), 1, - sym__entry_separator, - ACTIONS(6117), 1, - anon_sym_RBRACK, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(4237), 1, + sym_block, STATE(4764), 1, sym_comment, - [128819] = 4, - ACTIONS(103), 1, + [129878] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8323), 1, - sym__newline, - ACTIONS(8325), 1, - sym__space, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(4238), 1, + sym_block, STATE(4765), 1, sym_comment, - [128832] = 4, - ACTIONS(103), 1, + [129891] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7652), 1, - anon_sym_RBRACE, - ACTIONS(7654), 1, - sym__entry_separator, + ACTIONS(994), 1, + anon_sym_LBRACE, + ACTIONS(2572), 1, + sym__unquoted_pattern, STATE(4766), 1, sym_comment, - [128845] = 4, - ACTIONS(3), 1, + [129904] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8327), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(8356), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(4767), 1, sym_comment, - [128858] = 4, + STATE(4802), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [129917] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8329), 1, - anon_sym_RBRACE, - ACTIONS(8331), 1, + ACTIONS(3891), 1, sym__entry_separator, + ACTIONS(8358), 1, + anon_sym_RBRACE, STATE(4768), 1, sym_comment, - [128871] = 4, - ACTIONS(3), 1, + [129930] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4083), 1, - sym_block, + ACTIONS(1623), 1, + sym__entry_separator, + STATE(1507), 1, + aux_sym__types_body_repeat2, STATE(4769), 1, sym_comment, - [128884] = 4, + [129943] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3809), 1, anon_sym_LBRACE, - STATE(4084), 1, + STATE(3127), 1, sym_block, STATE(4770), 1, sym_comment, - [128897] = 4, - ACTIONS(3), 1, + [129956] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3395), 1, - sym_block, + ACTIONS(8361), 1, + aux_sym__unquoted_with_expr_token1, STATE(4771), 1, sym_comment, - [128910] = 4, + STATE(4822), 1, + aux_sym__unquoted_with_expr_repeat1, + [129969] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7659), 1, - anon_sym_RBRACE, - ACTIONS(7661), 1, + ACTIONS(4278), 1, sym__entry_separator, + STATE(2060), 1, + aux_sym__types_body_repeat2, STATE(4772), 1, sym_comment, - [128923] = 4, + [129982] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3778), 1, + ACTIONS(3809), 1, anon_sym_LBRACE, - STATE(4085), 1, + STATE(4545), 1, sym_block, STATE(4773), 1, sym_comment, - [128936] = 4, - ACTIONS(3), 1, + [129995] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(4086), 1, - sym_block, + ACTIONS(8363), 1, + aux_sym__unquoted_with_expr_token1, STATE(4774), 1, sym_comment, - [128949] = 4, - ACTIONS(3), 1, + STATE(4822), 1, + aux_sym__unquoted_with_expr_repeat1, + [130008] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3778), 1, - anon_sym_LBRACE, - STATE(3346), 1, - sym_block, + ACTIONS(1623), 1, + sym__entry_separator, + STATE(1487), 1, + aux_sym__types_body_repeat2, STATE(4775), 1, sym_comment, - [128962] = 4, - ACTIONS(103), 1, + [130021] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7438), 1, - anon_sym_RBRACK, - ACTIONS(7440), 1, - sym__entry_separator, + ACTIONS(2562), 1, + anon_sym_LBRACE, + ACTIONS(2568), 1, + sym__unquoted_pattern, STATE(4776), 1, sym_comment, - [128975] = 4, + [130034] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6894), 1, + ACTIONS(1942), 1, sym__entry_separator, - ACTIONS(8333), 1, - anon_sym_RBRACK, + ACTIONS(1944), 1, + anon_sym_RBRACE, STATE(4777), 1, sym_comment, - [128988] = 4, - ACTIONS(103), 1, + [130047] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8335), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4720), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, STATE(4778), 1, sym_comment, - [129001] = 4, - ACTIONS(103), 1, + ACTIONS(1527), 2, + sym__table_head_separator, + anon_sym_DOT2, + [130058] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6922), 1, - sym__entry_separator, - ACTIONS(8337), 1, - anon_sym_RBRACK, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(4251), 1, + sym_block, STATE(4779), 1, sym_comment, - [129014] = 4, + [130071] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3755), 1, + ACTIONS(3803), 1, anon_sym_LBRACE, - STATE(3106), 1, + STATE(4258), 1, sym_block, STATE(4780), 1, sym_comment, - [129027] = 4, - ACTIONS(103), 1, + [130084] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8339), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4720), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, STATE(4781), 1, sym_comment, - [129040] = 4, - ACTIONS(103), 1, + ACTIONS(1531), 2, + sym__table_head_separator, + anon_sym_DOT2, + [130095] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8341), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4734), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(4260), 1, + sym_block, STATE(4782), 1, sym_comment, - [129053] = 4, + [130108] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8343), 1, - anon_sym_def, - ACTIONS(8345), 1, - anon_sym_extern, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(4261), 1, + sym_block, STATE(4783), 1, sym_comment, - [129066] = 4, - ACTIONS(103), 1, + [130121] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(994), 1, - sym__entry_separator, - ACTIONS(996), 1, - anon_sym_RBRACE, + ACTIONS(1738), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + sym__unquoted_pattern, STATE(4784), 1, sym_comment, - [129079] = 4, - ACTIONS(103), 1, + [130134] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8347), 1, - anon_sym_GT2, - ACTIONS(8349), 1, - sym__entry_separator, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(4339), 1, + sym_block, STATE(4785), 1, sym_comment, - [129092] = 4, - ACTIONS(103), 1, + [130147] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_RBRACE, - ACTIONS(1018), 1, - sym__entry_separator, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(3441), 1, + sym_block, STATE(4786), 1, sym_comment, - [129105] = 4, - ACTIONS(103), 1, + [130160] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8351), 1, - anon_sym_GT2, - ACTIONS(8353), 1, - sym__entry_separator, + ACTIONS(1012), 1, + anon_sym_LBRACE, + ACTIONS(2572), 1, + sym__unquoted_pattern, STATE(4787), 1, sym_comment, - [129118] = 4, + [130173] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1974), 1, + ACTIONS(890), 1, anon_sym_LBRACE, - ACTIONS(1984), 1, + ACTIONS(1766), 1, sym__unquoted_pattern, STATE(4788), 1, sym_comment, - [129131] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4707), 1, - sym__entry_separator, - STATE(2240), 1, - aux_sym__types_body_repeat2, - STATE(4789), 1, - sym_comment, - [129144] = 4, + [130186] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2567), 1, + ACTIONS(3809), 1, anon_sym_LBRACE, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(4790), 1, + STATE(4623), 1, + sym_block, + STATE(4789), 1, sym_comment, - [129157] = 4, - ACTIONS(3), 1, + [130199] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_LPAREN2, - STATE(4791), 1, + ACTIONS(8365), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4724), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(4790), 1, sym_comment, - STATE(4992), 1, - sym__expr_parenthesized_immediate, - [129170] = 4, + [130212] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8355), 1, + ACTIONS(8367), 1, aux_sym__unquoted_in_record_with_expr_token1, - STATE(4709), 1, + STATE(4724), 1, aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(4791), 1, + sym_comment, + [130225] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(3378), 1, + sym_block, STATE(4792), 1, sym_comment, - [129183] = 4, - ACTIONS(103), 1, + [130238] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2635), 1, - sym__entry_separator, - ACTIONS(2637), 1, - anon_sym_RBRACE, + ACTIONS(1689), 1, + anon_sym_LBRACE, + ACTIONS(2556), 1, + sym__unquoted_pattern, STATE(4793), 1, sym_comment, - [129196] = 3, - ACTIONS(3), 1, + [130251] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8357), 1, + ACTIONS(5438), 1, anon_sym_RBRACK, + ACTIONS(5440), 1, + sym__entry_separator, STATE(4794), 1, sym_comment, - [129206] = 3, - ACTIONS(3), 1, + [130264] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8359), 1, - anon_sym_SQUOTE2, + ACTIONS(8369), 1, + anon_sym_RBRACK, + ACTIONS(8371), 1, + sym__entry_separator, STATE(4795), 1, sym_comment, - [129216] = 3, - ACTIONS(3), 1, + [130277] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8361), 1, - anon_sym_BQUOTE2, + ACTIONS(8373), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4724), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(4796), 1, sym_comment, - [129226] = 3, - ACTIONS(3), 1, + [130290] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8363), 1, - anon_sym_GT2, + ACTIONS(8375), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4774), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(4797), 1, sym_comment, - [129236] = 3, + [130303] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8365), 1, - anon_sym_RBRACE, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2509), 1, + anon_sym_LBRACE, STATE(4798), 1, sym_comment, - [129246] = 3, - ACTIONS(3), 1, + [130316] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8367), 1, - anon_sym_RBRACK, + ACTIONS(8377), 1, + sym__newline, + ACTIONS(8379), 1, + sym__space, STATE(4799), 1, sym_comment, - [129256] = 3, + [130329] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8369), 1, - anon_sym_RPAREN, + ACTIONS(3809), 1, + anon_sym_LBRACE, + STATE(4541), 1, + sym_block, STATE(4800), 1, sym_comment, - [129266] = 3, + [130342] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8371), 1, - anon_sym_RBRACE, + ACTIONS(1756), 1, + anon_sym_LPAREN2, STATE(4801), 1, sym_comment, - [129276] = 3, - ACTIONS(3), 1, + STATE(5243), 1, + sym__expr_parenthesized_immediate, + [130355] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8373), 1, - anon_sym_RBRACE, + ACTIONS(8381), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4724), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(4802), 1, sym_comment, - [129286] = 3, + [130368] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8375), 1, - anon_sym_RPAREN, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(4340), 1, + sym_block, STATE(4803), 1, sym_comment, - [129296] = 3, + [130381] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8377), 1, - anon_sym_DASH_GT, + ACTIONS(8383), 1, + anon_sym_def, + ACTIONS(8385), 1, + anon_sym_extern, STATE(4804), 1, sym_comment, - [129306] = 3, + [130394] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8379), 1, - anon_sym_RBRACE, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(4342), 1, + sym_block, STATE(4805), 1, sym_comment, - [129316] = 3, - ACTIONS(103), 1, + [130407] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8381), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(4106), 1, + sym_block, STATE(4806), 1, sym_comment, - [129326] = 3, + [130420] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8383), 1, - sym_raw_string_end, + ACTIONS(3809), 1, + anon_sym_LBRACE, + STATE(4470), 1, + sym_block, STATE(4807), 1, sym_comment, - [129336] = 3, - ACTIONS(103), 1, + [130433] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2664), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(4343), 1, + sym_block, STATE(4808), 1, sym_comment, - [129346] = 3, + [130446] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8385), 1, - anon_sym_RBRACE, + ACTIONS(3803), 1, + anon_sym_LBRACE, + STATE(3202), 1, + sym_block, STATE(4809), 1, sym_comment, - [129356] = 3, + [130459] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8387), 1, - anon_sym_RBRACE, + ACTIONS(3809), 1, + anon_sym_LBRACE, + STATE(4478), 1, + sym_block, STATE(4810), 1, sym_comment, - [129366] = 3, + [130472] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8387), 1, + sym_identifier, ACTIONS(8389), 1, - anon_sym_RBRACK, + anon_sym_DOLLAR, STATE(4811), 1, sym_comment, - [129376] = 3, + [130485] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1808), 1, + sym__unquoted_pattern_in_record, ACTIONS(8391), 1, - anon_sym_RBRACK, + aux_sym__immediate_decimal_token5, STATE(4812), 1, sym_comment, - [129386] = 3, + [130498] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(8393), 1, - aux_sym_cmd_identifier_token2, + aux_sym__unquoted_in_list_with_expr_token1, STATE(4813), 1, sym_comment, - [129396] = 3, - ACTIONS(3), 1, + STATE(4823), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [130511] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8395), 1, - anon_sym_DQUOTE, + ACTIONS(5016), 1, + sym__entry_separator, + ACTIONS(5018), 1, + anon_sym_GT2, STATE(4814), 1, sym_comment, - [129406] = 3, - ACTIONS(3), 1, + [130524] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8397), 1, - anon_sym_SQUOTE2, + ACTIONS(8395), 1, + aux_sym__unquoted_with_expr_token1, STATE(4815), 1, sym_comment, - [129416] = 3, - ACTIONS(3), 1, + STATE(4822), 1, + aux_sym__unquoted_with_expr_repeat1, + [130537] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8399), 1, - anon_sym_BQUOTE2, + ACTIONS(8397), 1, + aux_sym__unquoted_with_expr_token1, STATE(4816), 1, sym_comment, - [129426] = 3, - ACTIONS(3), 1, + STATE(4822), 1, + aux_sym__unquoted_with_expr_repeat1, + [130550] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(8399), 1, + anon_sym_LPAREN2, ACTIONS(8401), 1, - anon_sym_GT2, + aux_sym__record_key_token1, STATE(4817), 1, sym_comment, - [129436] = 3, + [130563] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2591), 1, - sym__table_head_separator, + ACTIONS(3809), 1, + anon_sym_LBRACE, + STATE(4553), 1, + sym_block, STATE(4818), 1, sym_comment, - [129446] = 3, - ACTIONS(3), 1, + [130576] = 4, + ACTIONS(103), 1, anon_sym_POUND, ACTIONS(8403), 1, - anon_sym_RPAREN, + aux_sym__unquoted_in_list_with_expr_token1, STATE(4819), 1, sym_comment, - [129456] = 3, + STATE(4823), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [130589] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1888), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(8405), 1, + aux_sym__unquoted_with_expr_token1, STATE(4820), 1, sym_comment, - [129466] = 3, - ACTIONS(3), 1, + STATE(4822), 1, + aux_sym__unquoted_with_expr_repeat1, + [130602] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8405), 1, - anon_sym_RPAREN, + ACTIONS(8407), 1, + anon_sym_RBRACE, + ACTIONS(8409), 1, + sym__entry_separator, STATE(4821), 1, sym_comment, - [129476] = 3, - ACTIONS(3), 1, + [130615] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8407), 1, - anon_sym_GT2, - STATE(4822), 1, + ACTIONS(8411), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4822), 2, sym_comment, - [129486] = 3, - ACTIONS(3), 1, + aux_sym__unquoted_with_expr_repeat1, + [130626] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8409), 1, - anon_sym_RBRACK, - STATE(4823), 1, + ACTIONS(8414), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(4823), 2, sym_comment, - [129496] = 3, + aux_sym__unquoted_in_list_with_expr_repeat1, + [130637] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8411), 1, - sym_raw_string_end, + ACTIONS(3809), 1, + anon_sym_LBRACE, + STATE(4552), 1, + sym_block, STATE(4824), 1, sym_comment, - [129506] = 3, + [130650] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8413), 1, - anon_sym_GT2, + ACTIONS(3809), 1, + anon_sym_LBRACE, + STATE(4487), 1, + sym_block, STATE(4825), 1, sym_comment, - [129516] = 3, + [130663] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8415), 1, - anon_sym_RBRACK, + ACTIONS(3809), 1, + anon_sym_LBRACE, + STATE(4534), 1, + sym_block, STATE(4826), 1, sym_comment, - [129526] = 3, + [130676] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5253), 1, - anon_sym_EQ2, STATE(4827), 1, sym_comment, - [129536] = 3, + ACTIONS(1554), 2, + sym__table_head_separator, + anon_sym_DOT2, + [130687] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8417), 1, - anon_sym_RBRACK, + sym_raw_string_content, STATE(4828), 1, sym_comment, - [129546] = 3, + [130697] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern_in_record, + ACTIONS(8419), 1, + anon_sym_RBRACE, STATE(4829), 1, sym_comment, - [129556] = 3, + [130707] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8419), 1, - anon_sym_RBRACE, + ACTIONS(8421), 1, + anon_sym_GT2, STATE(4830), 1, sym_comment, - [129566] = 3, + [130717] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8421), 1, + ACTIONS(8423), 1, anon_sym_DQUOTE, STATE(4831), 1, sym_comment, - [129576] = 3, + [130727] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8423), 1, + ACTIONS(8425), 1, anon_sym_SQUOTE2, STATE(4832), 1, sym_comment, - [129586] = 3, + [130737] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8425), 1, + ACTIONS(8427), 1, anon_sym_BQUOTE2, STATE(4833), 1, sym_comment, - [129596] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8427), 1, - anon_sym_RPAREN, - STATE(4834), 1, - sym_comment, - [129606] = 3, - ACTIONS(3), 1, + [130747] = 3, + ACTIONS(103), 1, anon_sym_POUND, ACTIONS(8429), 1, - sym_raw_string_end, - STATE(4835), 1, + aux_sym_cmd_identifier_token2, + STATE(4834), 1, sym_comment, - [129616] = 3, + [130757] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8431), 1, - anon_sym_RBRACE, - STATE(4836), 1, + sym_identifier, + STATE(4835), 1, sym_comment, - [129626] = 3, + [130767] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(8433), 1, aux_sym_cmd_identifier_token6, - STATE(4837), 1, + STATE(4836), 1, sym_comment, - [129636] = 3, + [130777] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8435), 1, - anon_sym_RBRACE, - STATE(4838), 1, + anon_sym_RPAREN, + STATE(4837), 1, sym_comment, - [129646] = 3, + [130787] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8437), 1, - sym_raw_string_end, - STATE(4839), 1, + anon_sym_RBRACK, + STATE(4838), 1, sym_comment, - [129656] = 3, + [130797] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8439), 1, - anon_sym_EQ, - STATE(4840), 1, + anon_sym_RPAREN, + STATE(4839), 1, sym_comment, - [129666] = 3, - ACTIONS(3), 1, + [130807] = 3, + ACTIONS(103), 1, anon_sym_POUND, ACTIONS(8441), 1, - anon_sym_RBRACE, + aux_sym_cmd_identifier_token6, + STATE(4840), 1, + sym_comment, + [130817] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8443), 1, + aux_sym__str_back_ticks_token1, STATE(4841), 1, sym_comment, - [129676] = 3, + [130827] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8443), 1, + ACTIONS(8445), 1, anon_sym_RBRACE, STATE(4842), 1, sym_comment, - [129686] = 3, + [130837] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5257), 1, - anon_sym_EQ2, + ACTIONS(7409), 1, + sym__unquoted_pattern_in_record, STATE(4843), 1, sym_comment, - [129696] = 3, + [130847] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8445), 1, - sym_raw_string_end, + ACTIONS(8447), 1, + anon_sym_RBRACK, STATE(4844), 1, sym_comment, - [129706] = 3, + [130857] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8447), 1, - anon_sym_DQUOTE, + ACTIONS(8449), 1, + anon_sym_GT2, STATE(4845), 1, sym_comment, - [129716] = 3, + [130867] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8449), 1, - anon_sym_SQUOTE2, + ACTIONS(8451), 1, + anon_sym_RPAREN, STATE(4846), 1, sym_comment, - [129726] = 3, + [130877] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8451), 1, - anon_sym_BQUOTE2, + ACTIONS(8453), 1, + sym_raw_string_end, STATE(4847), 1, sym_comment, - [129736] = 3, + [130887] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8453), 1, + ACTIONS(8455), 1, anon_sym_RPAREN, STATE(4848), 1, sym_comment, - [129746] = 3, + [130897] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8455), 1, - anon_sym_EQ, + ACTIONS(8457), 1, + anon_sym_RBRACK, STATE(4849), 1, sym_comment, - [129756] = 3, + [130907] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8457), 1, - anon_sym_EQ, + ACTIONS(8459), 1, + sym_identifier, STATE(4850), 1, sym_comment, - [129766] = 3, - ACTIONS(103), 1, + [130917] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8459), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(8461), 1, + anon_sym_RBRACK, STATE(4851), 1, sym_comment, - [129776] = 3, + [130927] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8461), 1, - sym_raw_string_end, + ACTIONS(8463), 1, + anon_sym_in, STATE(4852), 1, sym_comment, - [129786] = 3, + [130937] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8463), 1, - anon_sym_GT2, + ACTIONS(8465), 1, + sym_raw_string_end, STATE(4853), 1, sym_comment, - [129796] = 3, - ACTIONS(103), 1, + [130947] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1888), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(8467), 1, + anon_sym_DQUOTE, STATE(4854), 1, sym_comment, - [129806] = 3, + [130957] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern, + ACTIONS(8469), 1, + anon_sym_SQUOTE2, STATE(4855), 1, sym_comment, - [129816] = 3, + [130967] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8465), 1, - anon_sym_GT2, + ACTIONS(8471), 1, + anon_sym_BQUOTE2, STATE(4856), 1, sym_comment, - [129826] = 3, + [130977] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8467), 1, - anon_sym_DQUOTE, + ACTIONS(8473), 1, + anon_sym_EQ, STATE(4857), 1, sym_comment, - [129836] = 3, + [130987] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8469), 1, - anon_sym_SQUOTE2, + ACTIONS(8475), 1, + anon_sym_RBRACK, STATE(4858), 1, sym_comment, - [129846] = 3, + [130997] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8471), 1, - anon_sym_BQUOTE2, + ACTIONS(8477), 1, + anon_sym_RPAREN, STATE(4859), 1, sym_comment, - [129856] = 3, + [131007] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8473), 1, - sym_identifier, + ACTIONS(8479), 1, + anon_sym_RBRACE, STATE(4860), 1, sym_comment, - [129866] = 3, - ACTIONS(3), 1, + [131017] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7264), 1, - sym__unquoted_pattern, + ACTIONS(8481), 1, + aux_sym_cmd_identifier_token6, STATE(4861), 1, sym_comment, - [129876] = 3, + [131027] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8475), 1, - sym_raw_string_end, + ACTIONS(8483), 1, + anon_sym_RBRACK, STATE(4862), 1, sym_comment, - [129886] = 3, + [131037] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8477), 1, - anon_sym_RPAREN, + ACTIONS(8485), 1, + sym_attribute_identifier, STATE(4863), 1, sym_comment, - [129896] = 3, + [131047] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8479), 1, - anon_sym_RPAREN, + ACTIONS(8487), 1, + sym_raw_string_end, STATE(4864), 1, sym_comment, - [129906] = 3, + [131057] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5221), 1, - anon_sym_EQ2, + ACTIONS(4143), 1, + sym__unquoted_pattern, STATE(4865), 1, sym_comment, - [129916] = 3, + [131067] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8481), 1, - anon_sym_DQUOTE, + ACTIONS(2531), 1, + sym__unquoted_pattern, STATE(4866), 1, sym_comment, - [129926] = 3, + [131077] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8483), 1, - anon_sym_SQUOTE2, + ACTIONS(1598), 1, + sym__unquoted_pattern, STATE(4867), 1, sym_comment, - [129936] = 3, + [131087] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8485), 1, - anon_sym_BQUOTE2, + ACTIONS(8489), 1, + anon_sym_RBRACK, STATE(4868), 1, sym_comment, - [129946] = 3, + [131097] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8487), 1, - anon_sym_RBRACK, + ACTIONS(311), 1, + anon_sym_RBRACE, STATE(4869), 1, sym_comment, - [129956] = 3, + [131107] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8489), 1, - anon_sym_RBRACE, + ACTIONS(8491), 1, + anon_sym_GT2, STATE(4870), 1, sym_comment, - [129966] = 3, + [131117] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8491), 1, - sym_raw_string_end, + ACTIONS(8493), 1, + anon_sym_DQUOTE, STATE(4871), 1, sym_comment, - [129976] = 3, - ACTIONS(103), 1, + [131127] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8493), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(8495), 1, + anon_sym_SQUOTE2, STATE(4872), 1, sym_comment, - [129986] = 3, + [131137] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8495), 1, - anon_sym_RBRACE, + ACTIONS(8497), 1, + anon_sym_BQUOTE2, STATE(4873), 1, sym_comment, - [129996] = 3, + [131147] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6616), 1, - sym__unquoted_pattern_in_record, + ACTIONS(8499), 1, + anon_sym_RPAREN, STATE(4874), 1, sym_comment, - [130006] = 3, + [131157] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8497), 1, - anon_sym_DQUOTE, + ACTIONS(8501), 1, + anon_sym_GT2, STATE(4875), 1, sym_comment, - [130016] = 3, + [131167] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8499), 1, - anon_sym_SQUOTE2, + ACTIONS(8503), 1, + anon_sym_RBRACK, STATE(4876), 1, sym_comment, - [130026] = 3, + [131177] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8501), 1, - anon_sym_BQUOTE2, + ACTIONS(8505), 1, + anon_sym_RBRACE, STATE(4877), 1, sym_comment, - [130036] = 3, + [131187] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8503), 1, - anon_sym_RBRACE, + ACTIONS(8507), 1, + anon_sym_LT, STATE(4878), 1, sym_comment, - [130046] = 3, + [131197] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8505), 1, - anon_sym_LT, + ACTIONS(8509), 1, + sym_raw_string_end, STATE(4879), 1, sym_comment, - [130056] = 3, + [131207] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8507), 1, - sym_raw_string_end, + ACTIONS(8511), 1, + anon_sym_RPAREN, STATE(4880), 1, sym_comment, - [130066] = 3, + [131217] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8509), 1, - anon_sym_RBRACE, + ACTIONS(8513), 1, + anon_sym_RPAREN, STATE(4881), 1, sym_comment, - [130076] = 3, + [131227] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8511), 1, - anon_sym_DQUOTE, + ACTIONS(8515), 1, + anon_sym_GT2, STATE(4882), 1, sym_comment, - [130086] = 3, + [131237] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8513), 1, - anon_sym_SQUOTE2, + ACTIONS(307), 1, + anon_sym_RBRACE, STATE(4883), 1, sym_comment, - [130096] = 3, - ACTIONS(3), 1, + [131247] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8515), 1, - anon_sym_BQUOTE2, + ACTIONS(8401), 1, + aux_sym__record_key_token1, STATE(4884), 1, sym_comment, - [130106] = 3, + [131257] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5048), 1, - sym__unquoted_pattern, + ACTIONS(8517), 1, + anon_sym_DQUOTE, STATE(4885), 1, sym_comment, - [130116] = 3, + [131267] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, - sym__unquoted_pattern, + ACTIONS(8519), 1, + anon_sym_SQUOTE2, STATE(4886), 1, sym_comment, - [130126] = 3, + [131277] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8517), 1, - sym_raw_string_end, + ACTIONS(8521), 1, + anon_sym_BQUOTE2, STATE(4887), 1, sym_comment, - [130136] = 3, + [131287] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2633), 1, - sym__unquoted_pattern_in_record, + ACTIONS(8523), 1, + anon_sym_RPAREN, STATE(4888), 1, sym_comment, - [130146] = 3, + [131297] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8519), 1, - anon_sym_DQUOTE, + ACTIONS(8525), 1, + sym_raw_string_end, STATE(4889), 1, sym_comment, - [130156] = 3, + [131307] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8521), 1, - anon_sym_SQUOTE2, + ACTIONS(8527), 1, + sym__table_head_separator, STATE(4890), 1, sym_comment, - [130166] = 3, + [131317] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8523), 1, - anon_sym_BQUOTE2, + ACTIONS(8529), 1, + anon_sym_RPAREN, STATE(4891), 1, sym_comment, - [130176] = 3, + [131327] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8525), 1, - anon_sym_GT2, + ACTIONS(8531), 1, + sym_raw_string_end, STATE(4892), 1, sym_comment, - [130186] = 3, + [131337] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8527), 1, - sym_attribute_identifier, + ACTIONS(8533), 1, + anon_sym_RBRACE, STATE(4893), 1, sym_comment, - [130196] = 3, + [131347] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8529), 1, - sym_raw_string_end, + ACTIONS(8535), 1, + anon_sym_RBRACE, STATE(4894), 1, sym_comment, - [130206] = 3, + [131357] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7910), 1, - anon_sym_EQ_GT, + ACTIONS(8537), 1, + anon_sym_LPAREN2, STATE(4895), 1, sym_comment, - [130216] = 3, + [131367] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8531), 1, - anon_sym_DQUOTE, + ACTIONS(8539), 1, + anon_sym_RBRACE, STATE(4896), 1, sym_comment, - [130226] = 3, + [131377] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8533), 1, - anon_sym_SQUOTE2, + ACTIONS(8541), 1, + anon_sym_DQUOTE, STATE(4897), 1, sym_comment, - [130236] = 3, + [131387] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8535), 1, - anon_sym_BQUOTE2, + ACTIONS(8543), 1, + anon_sym_SQUOTE2, STATE(4898), 1, sym_comment, - [130246] = 3, + [131397] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8537), 1, - sym_identifier, + ACTIONS(8545), 1, + anon_sym_BQUOTE2, STATE(4899), 1, sym_comment, - [130256] = 3, + [131407] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8539), 1, - anon_sym_RBRACK, + ACTIONS(8547), 1, + anon_sym_DQUOTE, STATE(4900), 1, sym_comment, - [130266] = 3, + [131417] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8541), 1, - sym_raw_string_end, + ACTIONS(8549), 1, + anon_sym_RPAREN, STATE(4901), 1, sym_comment, - [130276] = 3, + [131427] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8543), 1, - anon_sym_RBRACK, + ACTIONS(8551), 1, + sym_raw_string_end, STATE(4902), 1, sym_comment, - [130286] = 3, + [131437] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8545), 1, + ACTIONS(8553), 1, anon_sym_DQUOTE, STATE(4903), 1, sym_comment, - [130296] = 3, + [131447] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8547), 1, + ACTIONS(8555), 1, anon_sym_SQUOTE2, STATE(4904), 1, sym_comment, - [130306] = 3, + [131457] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8549), 1, + ACTIONS(8557), 1, anon_sym_BQUOTE2, STATE(4905), 1, sym_comment, - [130316] = 3, + [131467] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7879), 1, - anon_sym_LBRACE, + ACTIONS(8559), 1, + anon_sym_RBRACE, STATE(4906), 1, sym_comment, - [130326] = 3, + [131477] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8551), 1, - anon_sym_RPAREN, + ACTIONS(8561), 1, + anon_sym_DQUOTE, STATE(4907), 1, sym_comment, - [130336] = 3, + [131487] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8553), 1, - sym_raw_string_end, + ACTIONS(8563), 1, + anon_sym_SQUOTE2, STATE(4908), 1, sym_comment, - [130346] = 3, + [131497] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8555), 1, - anon_sym_GT2, + ACTIONS(8565), 1, + anon_sym_BQUOTE2, STATE(4909), 1, sym_comment, - [130356] = 3, + [131507] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8557), 1, - anon_sym_DQUOTE, + ACTIONS(8567), 1, + anon_sym_SQUOTE2, STATE(4910), 1, sym_comment, - [130366] = 3, + [131517] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8559), 1, - anon_sym_SQUOTE2, + ACTIONS(8569), 1, + sym_identifier, STATE(4911), 1, sym_comment, - [130376] = 3, + [131527] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8561), 1, - anon_sym_BQUOTE2, + ACTIONS(8571), 1, + sym_raw_string_end, STATE(4912), 1, sym_comment, - [130386] = 3, + [131537] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8563), 1, - anon_sym_RPAREN, + ACTIONS(1962), 1, + sym__unquoted_pattern_in_record, STATE(4913), 1, sym_comment, - [130396] = 3, - ACTIONS(3), 1, + [131547] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8565), 1, - sym_raw_string_end, + ACTIONS(8573), 1, + aux_sym_cmd_identifier_token6, STATE(4914), 1, sym_comment, - [130406] = 3, + [131557] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8567), 1, - anon_sym_DQUOTE, + ACTIONS(8575), 1, + anon_sym_RPAREN, STATE(4915), 1, sym_comment, - [130416] = 3, + [131567] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8569), 1, - anon_sym_SQUOTE2, + ACTIONS(8577), 1, + anon_sym_DQUOTE, STATE(4916), 1, sym_comment, - [130426] = 3, + [131577] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8571), 1, - anon_sym_BQUOTE2, + ACTIONS(8579), 1, + anon_sym_SQUOTE2, STATE(4917), 1, sym_comment, - [130436] = 3, + [131587] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8573), 1, - sym_raw_string_content, + ACTIONS(8581), 1, + anon_sym_BQUOTE2, STATE(4918), 1, sym_comment, - [130446] = 3, + [131597] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8575), 1, - sym_raw_string_end, + ACTIONS(8583), 1, + anon_sym_EQ, STATE(4919), 1, sym_comment, - [130456] = 3, + [131607] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8577), 1, - anon_sym_RPAREN, + ACTIONS(8585), 1, + anon_sym_BQUOTE2, STATE(4920), 1, sym_comment, - [130466] = 3, + [131617] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8579), 1, - anon_sym_RPAREN, + ACTIONS(8587), 1, + sym_raw_string_end, STATE(4921), 1, sym_comment, - [130476] = 3, + [131627] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2132), 1, - anon_sym_LBRACK2, + ACTIONS(8589), 1, + anon_sym_EQ, STATE(4922), 1, sym_comment, - [130486] = 3, - ACTIONS(103), 1, + [131637] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8581), 1, - aux_sym__str_single_quotes_token1, + ACTIONS(8591), 1, + anon_sym_DQUOTE, STATE(4923), 1, sym_comment, - [130496] = 3, - ACTIONS(103), 1, + [131647] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8583), 1, - aux_sym__str_back_ticks_token1, + ACTIONS(8593), 1, + anon_sym_SQUOTE2, STATE(4924), 1, sym_comment, - [130506] = 3, + [131657] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8585), 1, - anon_sym_GT2, + ACTIONS(8595), 1, + anon_sym_BQUOTE2, STATE(4925), 1, sym_comment, - [130516] = 3, + [131667] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8587), 1, - anon_sym_RPAREN, + ACTIONS(8597), 1, + anon_sym_RBRACE, STATE(4926), 1, sym_comment, - [130526] = 3, - ACTIONS(103), 1, + [131677] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8589), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(8599), 1, + anon_sym_LBRACE, STATE(4927), 1, sym_comment, - [130536] = 3, + [131687] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8591), 1, - anon_sym_RPAREN, + ACTIONS(8601), 1, + sym_raw_string_end, STATE(4928), 1, sym_comment, - [130546] = 3, + [131697] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8593), 1, + ACTIONS(8603), 1, anon_sym_RBRACK, STATE(4929), 1, sym_comment, - [130556] = 3, + [131707] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(313), 1, - anon_sym_RBRACE, + ACTIONS(8605), 1, + anon_sym_DQUOTE, STATE(4930), 1, sym_comment, - [130566] = 3, + [131717] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8595), 1, - anon_sym_RBRACE, + ACTIONS(8607), 1, + anon_sym_SQUOTE2, STATE(4931), 1, sym_comment, - [130576] = 3, + [131727] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8597), 1, - anon_sym_RBRACK, + ACTIONS(8609), 1, + anon_sym_BQUOTE2, STATE(4932), 1, sym_comment, - [130586] = 3, + [131737] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7904), 1, - anon_sym_LBRACE, + ACTIONS(8611), 1, + anon_sym_RBRACK, STATE(4933), 1, sym_comment, - [130596] = 3, + [131747] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8599), 1, - anon_sym_LBRACE, + ACTIONS(8613), 1, + sym_long_flag_identifier, STATE(4934), 1, sym_comment, - [130606] = 3, + [131757] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8601), 1, - anon_sym_PIPE, + ACTIONS(8615), 1, + sym_raw_string_end, STATE(4935), 1, sym_comment, - [130616] = 3, + [131767] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8603), 1, - anon_sym_RBRACK, + ACTIONS(8617), 1, + sym_param_short_flag_identifier, STATE(4936), 1, sym_comment, - [130626] = 3, + [131777] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8605), 1, - anon_sym_RBRACE, + ACTIONS(8619), 1, + anon_sym_DQUOTE, STATE(4937), 1, sym_comment, - [130636] = 3, - ACTIONS(103), 1, + [131787] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8215), 1, - aux_sym__record_key_token1, + ACTIONS(8621), 1, + anon_sym_SQUOTE2, STATE(4938), 1, sym_comment, - [130646] = 3, + [131797] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2641), 1, - sym__unquoted_pattern_in_record, + ACTIONS(8623), 1, + anon_sym_BQUOTE2, STATE(4939), 1, sym_comment, - [130656] = 3, + [131807] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8607), 1, - anon_sym_RPAREN, + ACTIONS(8625), 1, + anon_sym_RBRACE, STATE(4940), 1, sym_comment, - [130666] = 3, + [131817] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2597), 1, - sym__unquoted_pattern_in_record, + ACTIONS(5522), 1, + anon_sym_EQ2, STATE(4941), 1, sym_comment, - [130676] = 3, + [131827] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8609), 1, - anon_sym_GT2, + ACTIONS(8627), 1, + sym_raw_string_end, STATE(4942), 1, sym_comment, - [130686] = 3, + [131837] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8611), 1, - anon_sym_RBRACE, + ACTIONS(8629), 1, + anon_sym_PIPE, STATE(4943), 1, sym_comment, - [130696] = 3, + [131847] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8613), 1, - anon_sym_RPAREN, + ACTIONS(8631), 1, + anon_sym_DQUOTE, STATE(4944), 1, sym_comment, - [130706] = 3, - ACTIONS(103), 1, + [131857] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8615), 1, - sym__space, + ACTIONS(8633), 1, + anon_sym_SQUOTE2, STATE(4945), 1, sym_comment, - [130716] = 3, + [131867] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8617), 1, - anon_sym_GT2, + ACTIONS(8635), 1, + anon_sym_BQUOTE2, STATE(4946), 1, sym_comment, - [130726] = 3, + [131877] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6902), 1, - sym__unquoted_pattern, + ACTIONS(8637), 1, + anon_sym_RBRACE, STATE(4947), 1, sym_comment, - [130736] = 3, + [131887] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8619), 1, - sym_raw_string_end, + ACTIONS(8639), 1, + anon_sym_RPAREN, STATE(4948), 1, sym_comment, - [130746] = 3, + [131897] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(309), 1, - anon_sym_RBRACE, + ACTIONS(8641), 1, + sym_raw_string_end, STATE(4949), 1, sym_comment, - [130756] = 3, - ACTIONS(3), 1, + [131907] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8621), 1, - anon_sym_RBRACK, + ACTIONS(8643), 1, + aux_sym_cmd_identifier_token6, STATE(4950), 1, sym_comment, - [130766] = 3, + [131917] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8623), 1, + ACTIONS(8645), 1, anon_sym_DQUOTE, STATE(4951), 1, sym_comment, - [130776] = 3, + [131927] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8625), 1, - anon_sym_BQUOTE2, + ACTIONS(8647), 1, + anon_sym_SQUOTE2, STATE(4952), 1, sym_comment, - [130786] = 3, + [131937] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8627), 1, - anon_sym_EQ, + ACTIONS(8649), 1, + anon_sym_BQUOTE2, STATE(4953), 1, sym_comment, - [130796] = 3, + [131947] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8629), 1, - anon_sym_SQUOTE2, + ACTIONS(8651), 1, + anon_sym_DQUOTE, STATE(4954), 1, sym_comment, - [130806] = 3, - ACTIONS(103), 1, + [131957] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1876), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(8653), 1, + sym_raw_string_end, STATE(4955), 1, sym_comment, - [130816] = 3, - ACTIONS(3), 1, + [131967] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8631), 1, - sym_identifier, + ACTIONS(8655), 1, + aux_sym_cmd_identifier_token6, STATE(4956), 1, sym_comment, - [130826] = 3, + [131977] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8633), 1, - anon_sym_RBRACK, + ACTIONS(8657), 1, + anon_sym_DQUOTE, STATE(4957), 1, sym_comment, - [130836] = 3, + [131987] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8635), 1, - anon_sym_BQUOTE2, + ACTIONS(8659), 1, + anon_sym_SQUOTE2, STATE(4958), 1, sym_comment, - [130846] = 3, + [131997] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2503), 1, - sym__unquoted_pattern_in_record, + ACTIONS(8661), 1, + anon_sym_BQUOTE2, STATE(4959), 1, sym_comment, - [130856] = 3, + [132007] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5287), 1, - anon_sym_EQ2, + ACTIONS(367), 1, + anon_sym_RPAREN2, STATE(4960), 1, sym_comment, - [130866] = 3, + [132017] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8637), 1, - anon_sym_RPAREN, + ACTIONS(8663), 1, + sym_raw_string_end, STATE(4961), 1, sym_comment, - [130876] = 3, + [132027] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8639), 1, - anon_sym_EQ, + ACTIONS(8665), 1, + anon_sym_DQUOTE, STATE(4962), 1, sym_comment, - [130886] = 3, + [132037] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8641), 1, - anon_sym_EQ, + ACTIONS(8667), 1, + anon_sym_SQUOTE2, STATE(4963), 1, sym_comment, - [130896] = 3, + [132047] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8643), 1, - anon_sym_RBRACE, + ACTIONS(8669), 1, + anon_sym_BQUOTE2, STATE(4964), 1, sym_comment, - [130906] = 3, + [132057] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8645), 1, - anon_sym_RBRACK, + ACTIONS(8671), 1, + anon_sym_EQ, STATE(4965), 1, sym_comment, - [130916] = 3, + [132067] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8647), 1, - anon_sym_RBRACE, + ACTIONS(8673), 1, + sym_raw_string_end, STATE(4966), 1, sym_comment, - [130926] = 3, - ACTIONS(103), 1, + [132077] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8649), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(8675), 1, + anon_sym_DQUOTE, STATE(4967), 1, sym_comment, - [130936] = 3, + [132087] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8651), 1, - anon_sym_EQ, + ACTIONS(8677), 1, + anon_sym_SQUOTE2, STATE(4968), 1, sym_comment, - [130946] = 3, + [132097] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8653), 1, - anon_sym_RPAREN2, + ACTIONS(8679), 1, + anon_sym_BQUOTE2, STATE(4969), 1, sym_comment, - [130956] = 3, + [132107] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5241), 1, - anon_sym_EQ2, + ACTIONS(8681), 1, + sym_raw_string_content, STATE(4970), 1, sym_comment, - [130966] = 3, + [132117] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8655), 1, - anon_sym_RBRACE, + ACTIONS(2531), 1, + sym__unquoted_pattern_in_record, STATE(4971), 1, sym_comment, - [130976] = 3, - ACTIONS(3), 1, + [132127] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8657), 1, - anon_sym_DQUOTE, + ACTIONS(8683), 1, + aux_sym_cmd_identifier_token6, STATE(4972), 1, sym_comment, - [130986] = 3, + [132137] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8659), 1, - sym__table_head_separator, + ACTIONS(363), 1, + anon_sym_RPAREN2, STATE(4973), 1, sym_comment, - [130996] = 3, + [132147] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8661), 1, - anon_sym_EQ, + ACTIONS(2118), 1, + anon_sym_LBRACK2, STATE(4974), 1, sym_comment, - [131006] = 3, - ACTIONS(3), 1, + [132157] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8663), 1, - anon_sym_SQUOTE2, + ACTIONS(8685), 1, + aux_sym__str_single_quotes_token1, STATE(4975), 1, sym_comment, - [131016] = 3, - ACTIONS(3), 1, + [132167] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8665), 1, - anon_sym_BQUOTE2, + ACTIONS(8687), 1, + aux_sym__str_back_ticks_token1, STATE(4976), 1, sym_comment, - [131026] = 3, + [132177] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8667), 1, - anon_sym_LBRACE, + ACTIONS(5074), 1, + anon_sym_EQ2, STATE(4977), 1, sym_comment, - [131036] = 3, + [132187] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6222), 1, - sym__unquoted_pattern_in_list, + ACTIONS(8689), 1, + anon_sym_RBRACE, STATE(4978), 1, sym_comment, - [131046] = 3, + [132197] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8669), 1, - anon_sym_EQ, + ACTIONS(8691), 1, + anon_sym_DASH_GT, STATE(4979), 1, sym_comment, - [131056] = 3, + [132207] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8671), 1, + ACTIONS(8693), 1, anon_sym_EQ, STATE(4980), 1, sym_comment, - [131066] = 3, + [132217] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8673), 1, - anon_sym_RPAREN, + ACTIONS(8695), 1, + anon_sym_RBRACE, STATE(4981), 1, sym_comment, - [131076] = 3, + [132227] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2666), 1, - anon_sym_COLON2, + ACTIONS(8697), 1, + anon_sym_EQ, STATE(4982), 1, sym_comment, - [131086] = 3, - ACTIONS(103), 1, + [132237] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8675), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(8699), 1, + anon_sym_SQUOTE2, STATE(4983), 1, sym_comment, - [131096] = 3, - ACTIONS(3), 1, + [132247] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8276), 1, - anon_sym_LBRACE, + ACTIONS(8701), 1, + aux_sym_shebang_token1, STATE(4984), 1, sym_comment, - [131106] = 3, + [132257] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8677), 1, - anon_sym_RBRACK, + ACTIONS(8003), 1, + anon_sym_LBRACE, STATE(4985), 1, sym_comment, - [131116] = 3, - ACTIONS(103), 1, + [132267] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8679), 1, - aux_sym_shebang_token1, + ACTIONS(8703), 1, + anon_sym_LBRACE, STATE(4986), 1, sym_comment, - [131126] = 3, + [132277] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8681), 1, - anon_sym_RPAREN, + ACTIONS(8705), 1, + anon_sym_BQUOTE2, STATE(4987), 1, sym_comment, - [131136] = 3, + [132287] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8683), 1, + ACTIONS(8707), 1, anon_sym_RBRACK, STATE(4988), 1, sym_comment, - [131146] = 3, + [132297] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8685), 1, - anon_sym_RBRACK, + ACTIONS(7997), 1, + anon_sym_LBRACE, STATE(4989), 1, sym_comment, - [131156] = 3, + [132307] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8687), 1, + ACTIONS(8709), 1, anon_sym_RBRACE, STATE(4990), 1, sym_comment, - [131166] = 3, + [132317] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8689), 1, - anon_sym_BQUOTE2, + ACTIONS(8711), 1, + anon_sym_RPAREN, STATE(4991), 1, sym_comment, - [131176] = 3, + [132327] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8713), 1, + anon_sym_RPAREN, + STATE(4992), 1, + sym_comment, + [132337] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8715), 1, + anon_sym_RBRACK, + STATE(4993), 1, + sym_comment, + [132347] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8717), 1, + anon_sym_GT2, + STATE(4994), 1, + sym_comment, + [132357] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8719), 1, + anon_sym_RBRACE, + STATE(4995), 1, + sym_comment, + [132367] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8721), 1, + anon_sym_RBRACK, + STATE(4996), 1, + sym_comment, + [132377] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8691), 1, + ACTIONS(8723), 1, + sym__space, + STATE(4997), 1, + sym_comment, + [132387] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8725), 1, + anon_sym_GT2, + STATE(4998), 1, + sym_comment, + [132397] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8727), 1, + anon_sym_GT2, + STATE(4999), 1, + sym_comment, + [132407] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8729), 1, + anon_sym_COLON2, + STATE(5000), 1, + sym_comment, + [132417] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8731), 1, + anon_sym_GT2, + STATE(5001), 1, + sym_comment, + [132427] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8733), 1, + anon_sym_RPAREN, + STATE(5002), 1, + sym_comment, + [132437] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8735), 1, + anon_sym_GT2, + STATE(5003), 1, + sym_comment, + [132447] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8737), 1, + anon_sym_RBRACK, + STATE(5004), 1, + sym_comment, + [132457] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8739), 1, + anon_sym_EQ, + STATE(5005), 1, + sym_comment, + [132467] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8741), 1, + anon_sym_RBRACE, + STATE(5006), 1, + sym_comment, + [132477] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8743), 1, + anon_sym_RBRACE, + STATE(5007), 1, + sym_comment, + [132487] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8745), 1, + anon_sym_RBRACK, + STATE(5008), 1, + sym_comment, + [132497] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8747), 1, + anon_sym_RBRACK, + STATE(5009), 1, + sym_comment, + [132507] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_record, + STATE(5010), 1, + sym_comment, + [132517] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1868), 1, aux_sym__unquoted_in_list_with_expr_token1, - STATE(4992), 1, + STATE(5011), 1, + sym_comment, + [132527] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1740), 1, + sym__unquoted_pattern_in_record, + STATE(5012), 1, + sym_comment, + [132537] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1766), 1, + sym__unquoted_pattern, + STATE(5013), 1, + sym_comment, + [132547] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8749), 1, + anon_sym_EQ, + STATE(5014), 1, + sym_comment, + [132557] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8751), 1, + anon_sym_EQ, + STATE(5015), 1, + sym_comment, + [132567] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2662), 1, + aux_sym_cmd_identifier_token2, + STATE(5016), 1, + sym_comment, + [132577] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8753), 1, + sym__space, + STATE(5017), 1, + sym_comment, + [132587] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8755), 1, + anon_sym_GT2, + STATE(5018), 1, + sym_comment, + [132597] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_record, + STATE(5019), 1, sym_comment, - [131186] = 3, + [132607] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1876), 1, + ACTIONS(8757), 1, aux_sym__unquoted_in_list_with_expr_token1, - STATE(4993), 1, + STATE(5020), 1, sym_comment, - [131196] = 3, + [132617] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8693), 1, - anon_sym_RBRACE, - STATE(4994), 1, + ACTIONS(8759), 1, + anon_sym_RBRACK, + STATE(5021), 1, sym_comment, - [131206] = 3, + [132627] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8695), 1, + ACTIONS(8761), 1, anon_sym_RPAREN, - STATE(4995), 1, + STATE(5022), 1, + sym_comment, + [132637] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8763), 1, + anon_sym_RPAREN, + STATE(5023), 1, + sym_comment, + [132647] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1872), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5024), 1, + sym_comment, + [132657] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8765), 1, + anon_sym_RBRACE, + STATE(5025), 1, + sym_comment, + [132667] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8767), 1, + sym_raw_string_end, + STATE(5026), 1, + sym_comment, + [132677] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1868), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5027), 1, + sym_comment, + [132687] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5088), 1, + anon_sym_EQ2, + STATE(5028), 1, sym_comment, - [131216] = 3, + [132697] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1984), 1, + ACTIONS(8769), 1, + anon_sym_RPAREN2, + STATE(5029), 1, + sym_comment, + [132707] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6954), 1, + sym__unquoted_pattern, + STATE(5030), 1, + sym_comment, + [132717] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8599), 1, + anon_sym_LBRACE, + STATE(5031), 1, + sym_comment, + [132727] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1808), 1, sym__unquoted_pattern_in_record, - STATE(4996), 1, + STATE(5032), 1, sym_comment, - [131226] = 3, + [132737] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8697), 1, + ACTIONS(2572), 1, + sym__unquoted_pattern_in_record, + STATE(5033), 1, + sym_comment, + [132747] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8771), 1, + aux_sym_cmd_identifier_token2, + STATE(5034), 1, + sym_comment, + [132757] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1862), 1, + sym__table_head_separator, + STATE(5035), 1, + sym_comment, + [132767] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8773), 1, + anon_sym_RBRACK, + STATE(5036), 1, + sym_comment, + [132777] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8775), 1, anon_sym_EQ, - STATE(4997), 1, + STATE(5037), 1, + sym_comment, + [132787] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8777), 1, + anon_sym_RPAREN, + STATE(5038), 1, + sym_comment, + [132797] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8029), 1, + anon_sym_EQ_GT, + STATE(5039), 1, + sym_comment, + [132807] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(313), 1, + anon_sym_RBRACE, + STATE(5040), 1, + sym_comment, + [132817] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8779), 1, + anon_sym_RBRACE, + STATE(5041), 1, + sym_comment, + [132827] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2568), 1, + sym__unquoted_pattern_in_record, + STATE(5042), 1, + sym_comment, + [132837] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2556), 1, + sym__unquoted_pattern_in_record, + STATE(5043), 1, + sym_comment, + [132847] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8781), 1, + sym_identifier, + STATE(5044), 1, + sym_comment, + [132857] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8783), 1, + anon_sym_RBRACE, + STATE(5045), 1, + sym_comment, + [132867] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8785), 1, + anon_sym_RBRACE, + STATE(5046), 1, sym_comment, - [131236] = 3, + [132877] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8699), 1, - anon_sym_LBRACE, - STATE(4998), 1, + ACTIONS(8787), 1, + anon_sym_RPAREN, + STATE(5047), 1, sym_comment, - [131246] = 3, + [132887] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8701), 1, - aux_sym_cmd_identifier_token6, - STATE(4999), 1, + ACTIONS(1872), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(5048), 1, sym_comment, - [131256] = 3, + [132897] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8703), 1, - anon_sym_EQ, - STATE(5000), 1, + ACTIONS(8789), 1, + anon_sym_DQUOTE, + STATE(5049), 1, sym_comment, - [131266] = 3, + [132907] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2633), 1, - sym__unquoted_pattern, - STATE(5001), 1, + ACTIONS(8791), 1, + anon_sym_SQUOTE2, + STATE(5050), 1, sym_comment, - [131276] = 3, + [132917] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8705), 1, - anon_sym_RBRACK, - STATE(5002), 1, + ACTIONS(8793), 1, + anon_sym_BQUOTE2, + STATE(5051), 1, sym_comment, - [131286] = 3, + [132927] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5237), 1, - anon_sym_EQ2, - STATE(5003), 1, + ACTIONS(8795), 1, + anon_sym_RPAREN, + STATE(5052), 1, sym_comment, - [131296] = 3, + [132937] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8707), 1, - anon_sym_RBRACK, - STATE(5004), 1, + ACTIONS(8797), 1, + sym_identifier, + STATE(5053), 1, sym_comment, - [131306] = 3, + [132947] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8709), 1, - sym__space, - STATE(5005), 1, + ACTIONS(8799), 1, + aux_sym_cmd_identifier_token6, + STATE(5054), 1, sym_comment, - [131316] = 3, + [132957] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8711), 1, - anon_sym_EQ, - STATE(5006), 1, + ACTIONS(8801), 1, + anon_sym_LBRACE, + STATE(5055), 1, sym_comment, - [131326] = 3, + [132967] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8713), 1, - anon_sym_RBRACE, - STATE(5007), 1, + ACTIONS(2572), 1, + sym__unquoted_pattern, + STATE(5056), 1, sym_comment, - [131336] = 3, + [132977] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(297), 1, + ACTIONS(8803), 1, + anon_sym_RBRACK, + STATE(5057), 1, + sym_comment, + [132987] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8805), 1, anon_sym_RBRACE, - STATE(5008), 1, + STATE(5058), 1, sym_comment, - [131346] = 3, + [132997] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8715), 1, + ACTIONS(2878), 1, aux_sym_cmd_identifier_token2, - STATE(5009), 1, + STATE(5059), 1, sym_comment, - [131356] = 3, + [133007] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8717), 1, - anon_sym_RBRACK, - STATE(5010), 1, + ACTIONS(8807), 1, + anon_sym_RBRACE, + STATE(5060), 1, sym_comment, - [131366] = 3, + [133017] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8719), 1, - anon_sym_GT2, - STATE(5011), 1, + ACTIONS(8809), 1, + anon_sym_RPAREN, + STATE(5061), 1, sym_comment, - [131376] = 3, + [133027] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8721), 1, - sym_identifier, - STATE(5012), 1, + ACTIONS(1691), 1, + anon_sym_COLON2, + STATE(5062), 1, sym_comment, - [131386] = 3, + [133037] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8723), 1, + ACTIONS(8811), 1, anon_sym_RBRACE, - STATE(5013), 1, + STATE(5063), 1, sym_comment, - [131396] = 3, - ACTIONS(3), 1, + [133047] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8725), 1, - sym__table_head_separator, - STATE(5014), 1, + ACTIONS(8813), 1, + aux_sym_cmd_identifier_token6, + STATE(5064), 1, sym_comment, - [131406] = 3, + [133057] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8727), 1, - anon_sym_DASH_GT, - STATE(5015), 1, + ACTIONS(8815), 1, + anon_sym_RBRACK, + STATE(5065), 1, sym_comment, - [131416] = 3, + [133067] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8729), 1, + ACTIONS(8817), 1, anon_sym_RBRACE, - STATE(5016), 1, + STATE(5066), 1, sym_comment, - [131426] = 3, + [133077] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8731), 1, - anon_sym_RPAREN, - STATE(5017), 1, + ACTIONS(8819), 1, + anon_sym_RBRACE, + STATE(5067), 1, sym_comment, - [131436] = 3, - ACTIONS(103), 1, + [133087] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8733), 1, - aux_sym_shebang_token1, - STATE(5018), 1, + ACTIONS(8821), 1, + sym_raw_string_end, + STATE(5068), 1, sym_comment, - [131446] = 3, + [133097] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8735), 1, - anon_sym_RBRACE, - STATE(5019), 1, + ACTIONS(8823), 1, + sym__table_head_separator, + STATE(5069), 1, sym_comment, - [131456] = 3, + [133107] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8737), 1, - sym_identifier, - STATE(5020), 1, + ACTIONS(8825), 1, + sym_raw_string_content, + STATE(5070), 1, sym_comment, - [131466] = 3, - ACTIONS(103), 1, + [133117] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8739), 1, - aux_sym_cmd_identifier_token2, - STATE(5021), 1, + ACTIONS(8827), 1, + anon_sym_RPAREN, + STATE(5071), 1, sym_comment, - [131476] = 3, + [133127] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8741), 1, - anon_sym_RBRACK, - STATE(5022), 1, + ACTIONS(1846), 1, + sym__unquoted_pattern_in_record, + STATE(5072), 1, sym_comment, - [131486] = 3, + [133137] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8743), 1, - aux_sym_cmd_identifier_token6, - STATE(5023), 1, + ACTIONS(8829), 1, + aux_sym_shebang_token1, + STATE(5073), 1, sym_comment, - [131496] = 3, + [133147] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8745), 1, - anon_sym_RBRACK, - STATE(5024), 1, + ACTIONS(5138), 1, + anon_sym_EQ2, + STATE(5074), 1, sym_comment, - [131506] = 3, - ACTIONS(3), 1, + [133157] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8747), 1, - anon_sym_RPAREN, - STATE(5025), 1, + ACTIONS(8831), 1, + aux_sym_cmd_identifier_token6, + STATE(5075), 1, sym_comment, - [131516] = 3, + [133167] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8749), 1, - anon_sym_in, - STATE(5026), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + STATE(5076), 1, sym_comment, - [131526] = 3, + [133177] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4969), 1, - sym__unquoted_pattern, - STATE(5027), 1, + ACTIONS(359), 1, + anon_sym_RPAREN2, + STATE(5077), 1, sym_comment, - [131536] = 3, + [133187] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(303), 1, - anon_sym_RBRACE, - STATE(5028), 1, + ACTIONS(6335), 1, + sym__unquoted_pattern_in_list, + STATE(5078), 1, sym_comment, - [131546] = 3, + [133197] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8751), 1, - anon_sym_LBRACE, - STATE(5029), 1, + ACTIONS(8833), 1, + sym_raw_string_end, + STATE(5079), 1, sym_comment, - [131556] = 3, + [133207] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8753), 1, - aux_sym_cmd_identifier_token6, - STATE(5030), 1, + ACTIONS(1872), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(5080), 1, sym_comment, - [131566] = 3, + [133217] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(335), 1, - anon_sym_RPAREN2, - STATE(5031), 1, + ACTIONS(8835), 1, + anon_sym_EQ, + STATE(5081), 1, sym_comment, - [131576] = 3, - ACTIONS(103), 1, + [133227] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8755), 1, - aux_sym__str_single_quotes_token1, - STATE(5032), 1, + ACTIONS(5191), 1, + sym__unquoted_pattern, + STATE(5082), 1, sym_comment, - [131586] = 3, + [133237] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8757), 1, - sym_long_flag_identifier, - STATE(5033), 1, + ACTIONS(2578), 1, + sym__table_head_separator, + STATE(5083), 1, sym_comment, - [131596] = 3, + [133247] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8759), 1, + ACTIONS(8837), 1, anon_sym_RBRACK, - STATE(5034), 1, + STATE(5084), 1, sym_comment, - [131606] = 3, - ACTIONS(3), 1, + [133257] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8761), 1, - ts_builtin_sym_end, - STATE(5035), 1, + ACTIONS(1868), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(5085), 1, sym_comment, - [131616] = 3, + [133267] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8763), 1, + ACTIONS(299), 1, anon_sym_RBRACE, - STATE(5036), 1, + STATE(5086), 1, sym_comment, - [131626] = 3, + [133277] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1858), 1, - sym__table_head_separator, - STATE(5037), 1, + ACTIONS(8839), 1, + anon_sym_RBRACE, + STATE(5087), 1, sym_comment, - [131636] = 3, + [133287] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8765), 1, - sym_raw_string_end, - STATE(5038), 1, + ACTIONS(297), 1, + anon_sym_RBRACE, + STATE(5088), 1, sym_comment, - [131646] = 3, + [133297] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8767), 1, - sym_param_short_flag_identifier, - STATE(5039), 1, + ACTIONS(8841), 1, + anon_sym_RBRACK, + STATE(5089), 1, sym_comment, - [131656] = 3, + [133307] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8769), 1, - anon_sym_RBRACE, - STATE(5040), 1, + ACTIONS(5064), 1, + anon_sym_EQ2, + STATE(5090), 1, sym_comment, - [131666] = 3, + [133317] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8771), 1, + ACTIONS(8843), 1, anon_sym_RPAREN, - STATE(5041), 1, + STATE(5091), 1, sym_comment, - [131676] = 3, + [133327] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(351), 1, - anon_sym_RPAREN2, - STATE(5042), 1, + ACTIONS(8845), 1, + anon_sym_RBRACE, + STATE(5092), 1, sym_comment, - [131686] = 3, + [133337] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(289), 1, + ACTIONS(309), 1, anon_sym_RBRACE, - STATE(5043), 1, + STATE(5093), 1, sym_comment, - [131696] = 3, + [133347] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8773), 1, + ACTIONS(2568), 1, + sym__unquoted_pattern, + STATE(5094), 1, + sym_comment, + [133357] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8847), 1, anon_sym_RBRACK, - STATE(5044), 1, + STATE(5095), 1, sym_comment, - [131706] = 3, + [133367] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8775), 1, - anon_sym_RBRACE, - STATE(5045), 1, + ACTIONS(8849), 1, + anon_sym_EQ, + STATE(5096), 1, sym_comment, - [131716] = 3, + [133377] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8777), 1, + ACTIONS(8851), 1, anon_sym_RBRACE, - STATE(5046), 1, + STATE(5097), 1, sym_comment, - [131726] = 3, + [133387] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8779), 1, + ACTIONS(8853), 1, anon_sym_RBRACK, - STATE(5047), 1, + STATE(5098), 1, sym_comment, - [131736] = 3, - ACTIONS(103), 1, + [133397] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8781), 1, - aux_sym_comment_token1, - STATE(5048), 1, + ACTIONS(8855), 1, + anon_sym_RBRACE, + STATE(5099), 1, sym_comment, - [131746] = 3, + [133407] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8783), 1, + ACTIONS(8857), 1, anon_sym_RPAREN, - STATE(5049), 1, + STATE(5100), 1, sym_comment, - [131756] = 3, + [133417] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8785), 1, - anon_sym_DQUOTE, - STATE(5050), 1, + ACTIONS(8859), 1, + anon_sym_EQ_GT, + STATE(5101), 1, sym_comment, - [131766] = 3, + [133427] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8787), 1, + ACTIONS(8861), 1, anon_sym_RBRACE, - STATE(5051), 1, + STATE(5102), 1, sym_comment, - [131776] = 3, + [133437] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5330), 1, - anon_sym_EQ2, - STATE(5052), 1, + ACTIONS(8863), 1, + anon_sym_GT2, + STATE(5103), 1, sym_comment, - [131786] = 3, + [133447] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8789), 1, - anon_sym_EQ_GT, - STATE(5053), 1, + ACTIONS(8865), 1, + anon_sym_DQUOTE, + STATE(5104), 1, sym_comment, - [131796] = 3, + [133457] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(301), 1, - anon_sym_RBRACE, - STATE(5054), 1, + ACTIONS(8867), 1, + anon_sym_SQUOTE2, + STATE(5105), 1, sym_comment, - [131806] = 3, + [133467] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8791), 1, - anon_sym_RBRACE, - STATE(5055), 1, + ACTIONS(8869), 1, + anon_sym_BQUOTE2, + STATE(5106), 1, sym_comment, - [131816] = 3, + [133477] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8793), 1, + ACTIONS(8871), 1, anon_sym_RBRACE, - STATE(5056), 1, + STATE(5107), 1, sym_comment, - [131826] = 3, + [133487] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8795), 1, + ACTIONS(8873), 1, anon_sym_RBRACK, - STATE(5057), 1, + STATE(5108), 1, sym_comment, - [131836] = 3, + [133497] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8797), 1, - anon_sym_LBRACE, - STATE(5058), 1, + ACTIONS(7437), 1, + sym__unquoted_pattern, + STATE(5109), 1, sym_comment, - [131846] = 3, + [133507] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8799), 1, + ACTIONS(8875), 1, anon_sym_RBRACK, - STATE(5059), 1, + STATE(5110), 1, sym_comment, - [131856] = 3, + [133517] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8801), 1, + ACTIONS(8877), 1, sym_raw_string_content, - STATE(5060), 1, + STATE(5111), 1, sym_comment, - [131866] = 3, + [133527] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7558), 1, + ACTIONS(7710), 1, anon_sym_LBRACK2, - STATE(5061), 1, + STATE(5112), 1, sym_comment, - [131876] = 3, + [133537] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8803), 1, + ACTIONS(8879), 1, aux_sym__str_single_quotes_token1, - STATE(5062), 1, + STATE(5113), 1, sym_comment, - [131886] = 3, + [133547] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8805), 1, + ACTIONS(8881), 1, aux_sym__str_back_ticks_token1, - STATE(5063), 1, + STATE(5114), 1, sym_comment, - [131896] = 3, + [133557] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2920), 1, - anon_sym_LBRACK2, - STATE(5064), 1, + ACTIONS(419), 1, + ts_builtin_sym_end, + STATE(5115), 1, sym_comment, - [131906] = 3, + [133567] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1639), 1, - sym__unquoted_pattern, - STATE(5065), 1, + ACTIONS(8883), 1, + anon_sym_EQ, + STATE(5116), 1, sym_comment, - [131916] = 3, - ACTIONS(3), 1, + [133577] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8807), 1, - anon_sym_DQUOTE, - STATE(5066), 1, + ACTIONS(8885), 1, + aux_sym_cmd_identifier_token6, + STATE(5117), 1, sym_comment, - [131926] = 3, + [133587] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8809), 1, + ACTIONS(8887), 1, sym__space, - STATE(5067), 1, + STATE(5118), 1, + sym_comment, + [133597] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8889), 1, + aux_sym_cmd_identifier_token6, + STATE(5119), 1, sym_comment, - [131936] = 3, + [133607] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(441), 1, - ts_builtin_sym_end, - STATE(5068), 1, + ACTIONS(8891), 1, + anon_sym_EQ_GT, + STATE(5120), 1, sym_comment, - [131946] = 3, + [133617] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8811), 1, - anon_sym_SQUOTE2, - STATE(5069), 1, + ACTIONS(8893), 1, + anon_sym_RBRACK, + STATE(5121), 1, sym_comment, - [131956] = 3, + [133627] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8813), 1, - anon_sym_BQUOTE2, - STATE(5070), 1, + ACTIONS(8895), 1, + anon_sym_RBRACE, + STATE(5122), 1, sym_comment, - [131966] = 3, - ACTIONS(103), 1, + [133637] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1888), 1, - aux_sym__unquoted_with_expr_token1, - STATE(5071), 1, + ACTIONS(8897), 1, + anon_sym_DQUOTE, + STATE(5123), 1, sym_comment, - [131976] = 3, - ACTIONS(103), 1, + [133647] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2549), 1, - aux_sym_cmd_identifier_token2, - STATE(5072), 1, + ACTIONS(8899), 1, + anon_sym_RBRACE, + STATE(5124), 1, sym_comment, - [131986] = 3, + [133657] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2641), 1, - sym__unquoted_pattern, - STATE(5073), 1, + ACTIONS(8901), 1, + anon_sym_RPAREN, + STATE(5125), 1, sym_comment, - [131996] = 3, + [133667] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__unquoted_pattern_in_record, - STATE(5074), 1, + ACTIONS(5104), 1, + anon_sym_EQ2, + STATE(5126), 1, sym_comment, - [132006] = 3, - ACTIONS(103), 1, + [133677] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8815), 1, - aux_sym_cmd_identifier_token6, - STATE(5075), 1, + ACTIONS(5128), 1, + anon_sym_EQ2, + STATE(5127), 1, sym_comment, - [132016] = 3, - ACTIONS(103), 1, + [133687] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8817), 1, - aux_sym_cmd_identifier_token6, - STATE(5076), 1, + ACTIONS(8903), 1, + anon_sym_RBRACE, + STATE(5128), 1, sym_comment, - [132026] = 3, + [133697] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8819), 1, - aux_sym__str_back_ticks_token1, - STATE(5077), 1, + ACTIONS(8905), 1, + aux_sym_cmd_identifier_token6, + STATE(5129), 1, sym_comment, - [132036] = 3, + [133707] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1804), 1, - sym__unquoted_pattern_in_record, - STATE(5078), 1, + ACTIONS(8907), 1, + anon_sym_SQUOTE2, + STATE(5130), 1, sym_comment, - [132046] = 3, + [133717] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8821), 1, - anon_sym_RBRACK, - STATE(5079), 1, + ACTIONS(8909), 1, + anon_sym_RBRACE, + STATE(5131), 1, sym_comment, - [132056] = 3, + [133727] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1872), 1, - sym__unquoted_pattern_in_record, - STATE(5080), 1, + ACTIONS(8911), 1, + anon_sym_BQUOTE2, + STATE(5132), 1, sym_comment, - [132066] = 3, - ACTIONS(3), 1, + [133737] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern, - STATE(5081), 1, + ACTIONS(8913), 1, + aux_sym_cmd_identifier_token2, + STATE(5133), 1, sym_comment, - [132076] = 3, + [133747] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8823), 1, - sym_raw_string_content, - STATE(5082), 1, - sym_comment, - [132086] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1876), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(5083), 1, + ACTIONS(8915), 1, + ts_builtin_sym_end, + STATE(5134), 1, sym_comment, - [132096] = 3, + [133757] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8825), 1, - anon_sym_RBRACE, - STATE(5084), 1, + ACTIONS(8917), 1, + anon_sym_RBRACK, + STATE(5135), 1, sym_comment, - [132106] = 3, + [133767] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8751), 1, + ACTIONS(8919), 1, anon_sym_LBRACE, - STATE(5085), 1, + STATE(5136), 1, sym_comment, - [132116] = 3, + [133777] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8827), 1, - anon_sym_EQ, - STATE(5086), 1, + ACTIONS(8921), 1, + anon_sym_LBRACE, + STATE(5137), 1, sym_comment, - [132126] = 3, + [133787] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, - sym__unquoted_pattern_in_record, - STATE(5087), 1, + ACTIONS(8923), 1, + anon_sym_RBRACE, + STATE(5138), 1, sym_comment, - [132136] = 3, + [133797] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8829), 1, + ACTIONS(8919), 1, anon_sym_LBRACE, - STATE(5088), 1, + STATE(5139), 1, sym_comment, - [132146] = 3, + [133807] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8831), 1, - anon_sym_RBRACE, - STATE(5089), 1, + ACTIONS(8925), 1, + anon_sym_LBRACE, + STATE(5140), 1, sym_comment, - [132156] = 3, + [133817] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8797), 1, - anon_sym_LBRACE, - STATE(5090), 1, + ACTIONS(8927), 1, + sym_raw_string_end, + STATE(5141), 1, sym_comment, - [132166] = 3, - ACTIONS(103), 1, + [133827] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8833), 1, - aux_sym__unquoted_with_expr_token1, - STATE(5091), 1, + ACTIONS(8929), 1, + sym_raw_string_end, + STATE(5142), 1, sym_comment, - [132176] = 3, + [133837] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8835), 1, - anon_sym_EQ_GT, - STATE(5092), 1, + ACTIONS(8931), 1, + anon_sym_EQ, + STATE(5143), 1, sym_comment, - [132186] = 3, + [133847] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8837), 1, - sym_raw_string_end, - STATE(5093), 1, + ACTIONS(1962), 1, + sym__unquoted_pattern, + STATE(5144), 1, sym_comment, - [132196] = 3, + [133857] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8839), 1, - anon_sym_RBRACE, - STATE(5094), 1, + ACTIONS(5150), 1, + sym__unquoted_pattern, + STATE(5145), 1, sym_comment, - [132206] = 3, + [133867] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8841), 1, - anon_sym_DQUOTE, - STATE(5095), 1, + ACTIONS(2898), 1, + anon_sym_LBRACK2, + STATE(5146), 1, sym_comment, - [132216] = 3, + [133877] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8843), 1, + ACTIONS(8933), 1, anon_sym_RBRACE, - STATE(5096), 1, + STATE(5147), 1, sym_comment, - [132226] = 3, + [133887] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8845), 1, + ACTIONS(8935), 1, sym_raw_string_content, - STATE(5097), 1, + STATE(5148), 1, sym_comment, - [132236] = 3, + [133897] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6016), 1, + ACTIONS(5984), 1, anon_sym_LBRACK2, - STATE(5098), 1, + STATE(5149), 1, sym_comment, - [132246] = 3, + [133907] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8847), 1, + ACTIONS(8937), 1, aux_sym__str_single_quotes_token1, - STATE(5099), 1, + STATE(5150), 1, sym_comment, - [132256] = 3, + [133917] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8849), 1, + ACTIONS(8939), 1, aux_sym__str_back_ticks_token1, - STATE(5100), 1, + STATE(5151), 1, sym_comment, - [132266] = 3, + [133927] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8851), 1, - anon_sym_EQ, - STATE(5101), 1, + ACTIONS(8941), 1, + anon_sym_RBRACK, + STATE(5152), 1, sym_comment, - [132276] = 3, + [133937] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8853), 1, + ACTIONS(8943), 1, sym__space, - STATE(5102), 1, + STATE(5153), 1, sym_comment, - [132286] = 3, + [133947] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8855), 1, - anon_sym_RPAREN, - STATE(5103), 1, + ACTIONS(8945), 1, + anon_sym_DASH_GT, + STATE(5154), 1, sym_comment, - [132296] = 3, + [133957] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7354), 1, - sym__unquoted_pattern, - STATE(5104), 1, + ACTIONS(8947), 1, + anon_sym_RBRACE, + STATE(5155), 1, sym_comment, - [132306] = 3, + [133967] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern_in_record, - STATE(5105), 1, + ACTIONS(8949), 1, + anon_sym_RPAREN, + STATE(5156), 1, sym_comment, - [132316] = 3, - ACTIONS(103), 1, + [133977] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2916), 1, - aux_sym_cmd_identifier_token2, - STATE(5106), 1, + ACTIONS(8951), 1, + anon_sym_EQ, + STATE(5157), 1, sym_comment, - [132326] = 3, - ACTIONS(103), 1, + [133987] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8857), 1, - aux_sym_cmd_identifier_token6, - STATE(5107), 1, + ACTIONS(315), 1, + anon_sym_RBRACE, + STATE(5158), 1, sym_comment, - [132336] = 3, + [133997] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8859), 1, - anon_sym_SQUOTE2, - STATE(5108), 1, + ACTIONS(8953), 1, + anon_sym_RBRACE, + STATE(5159), 1, sym_comment, - [132346] = 3, + [134007] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8861), 1, + ACTIONS(8955), 1, + anon_sym_RBRACK, + STATE(5160), 1, + sym_comment, + [134017] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8957), 1, sym_raw_string_content, - STATE(5109), 1, + STATE(5161), 1, sym_comment, - [132356] = 3, + [134027] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4527), 1, + ACTIONS(4561), 1, anon_sym_LBRACK2, - STATE(5110), 1, + STATE(5162), 1, sym_comment, - [132366] = 3, + [134037] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8863), 1, + ACTIONS(8959), 1, aux_sym__str_single_quotes_token1, - STATE(5111), 1, + STATE(5163), 1, sym_comment, - [132376] = 3, + [134047] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8865), 1, + ACTIONS(8961), 1, aux_sym__str_back_ticks_token1, - STATE(5112), 1, + STATE(5164), 1, sym_comment, - [132386] = 3, + [134057] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8867), 1, + ACTIONS(8963), 1, sym_raw_string_content, - STATE(5113), 1, + STATE(5165), 1, sym_comment, - [132396] = 3, + [134067] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5727), 1, + ACTIONS(5862), 1, anon_sym_LBRACK2, - STATE(5114), 1, + STATE(5166), 1, sym_comment, - [132406] = 3, + [134077] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8869), 1, + ACTIONS(8965), 1, aux_sym__str_single_quotes_token1, - STATE(5115), 1, + STATE(5167), 1, sym_comment, - [132416] = 3, + [134087] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8871), 1, + ACTIONS(8967), 1, aux_sym__str_back_ticks_token1, - STATE(5116), 1, + STATE(5168), 1, sym_comment, - [132426] = 3, + [134097] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8873), 1, + ACTIONS(8969), 1, sym_raw_string_content, - STATE(5117), 1, + STATE(5169), 1, sym_comment, - [132436] = 3, + [134107] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5751), 1, + ACTIONS(5763), 1, anon_sym_LBRACK2, - STATE(5118), 1, + STATE(5170), 1, sym_comment, - [132446] = 3, + [134117] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8875), 1, + ACTIONS(8971), 1, aux_sym__str_single_quotes_token1, - STATE(5119), 1, + STATE(5171), 1, sym_comment, - [132456] = 3, + [134127] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8877), 1, + ACTIONS(8973), 1, aux_sym__str_back_ticks_token1, - STATE(5120), 1, + STATE(5172), 1, sym_comment, - [132466] = 3, + [134137] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8879), 1, + ACTIONS(8975), 1, sym_raw_string_content, - STATE(5121), 1, + STATE(5173), 1, sym_comment, - [132476] = 3, + [134147] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8881), 1, + ACTIONS(8977), 1, aux_sym__str_single_quotes_token1, - STATE(5122), 1, + STATE(5174), 1, sym_comment, - [132486] = 3, + [134157] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8883), 1, + ACTIONS(8979), 1, aux_sym__str_back_ticks_token1, - STATE(5123), 1, + STATE(5175), 1, sym_comment, - [132496] = 3, + [134167] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8885), 1, + ACTIONS(8981), 1, sym_raw_string_content, - STATE(5124), 1, + STATE(5176), 1, sym_comment, - [132506] = 3, + [134177] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8887), 1, + ACTIONS(8983), 1, aux_sym__str_single_quotes_token1, - STATE(5125), 1, + STATE(5177), 1, sym_comment, - [132516] = 3, + [134187] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8889), 1, + ACTIONS(8985), 1, aux_sym__str_back_ticks_token1, - STATE(5126), 1, + STATE(5178), 1, sym_comment, - [132526] = 3, + [134197] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8891), 1, + ACTIONS(8987), 1, sym_raw_string_content, - STATE(5127), 1, + STATE(5179), 1, sym_comment, - [132536] = 3, + [134207] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8893), 1, + ACTIONS(8989), 1, aux_sym__str_single_quotes_token1, - STATE(5128), 1, + STATE(5180), 1, sym_comment, - [132546] = 3, + [134217] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8895), 1, + ACTIONS(8991), 1, aux_sym__str_back_ticks_token1, - STATE(5129), 1, + STATE(5181), 1, sym_comment, - [132556] = 3, + [134227] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8897), 1, + ACTIONS(8993), 1, sym_raw_string_content, - STATE(5130), 1, + STATE(5182), 1, sym_comment, - [132566] = 3, + [134237] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8899), 1, + ACTIONS(8995), 1, aux_sym__str_single_quotes_token1, - STATE(5131), 1, + STATE(5183), 1, sym_comment, - [132576] = 3, + [134247] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8901), 1, + ACTIONS(8997), 1, aux_sym__str_back_ticks_token1, - STATE(5132), 1, + STATE(5184), 1, sym_comment, - [132586] = 3, + [134257] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8903), 1, + ACTIONS(8999), 1, sym_raw_string_content, - STATE(5133), 1, + STATE(5185), 1, sym_comment, - [132596] = 3, + [134267] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8905), 1, + ACTIONS(9001), 1, aux_sym__str_single_quotes_token1, - STATE(5134), 1, + STATE(5186), 1, sym_comment, - [132606] = 3, + [134277] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8907), 1, + ACTIONS(9003), 1, aux_sym__str_back_ticks_token1, - STATE(5135), 1, + STATE(5187), 1, sym_comment, - [132616] = 3, + [134287] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8909), 1, + ACTIONS(9005), 1, sym_raw_string_content, - STATE(5136), 1, + STATE(5188), 1, sym_comment, - [132626] = 3, + [134297] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8911), 1, + ACTIONS(9007), 1, aux_sym__str_single_quotes_token1, - STATE(5137), 1, + STATE(5189), 1, sym_comment, - [132636] = 3, + [134307] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8913), 1, + ACTIONS(9009), 1, aux_sym__str_back_ticks_token1, - STATE(5138), 1, + STATE(5190), 1, sym_comment, - [132646] = 3, + [134317] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8915), 1, - sym_raw_string_content, - STATE(5139), 1, + ACTIONS(9011), 1, + anon_sym_EQ, + STATE(5191), 1, sym_comment, - [132656] = 3, + [134327] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8917), 1, + ACTIONS(9013), 1, aux_sym__str_single_quotes_token1, - STATE(5140), 1, + STATE(5192), 1, sym_comment, - [132666] = 3, + [134337] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8919), 1, + ACTIONS(9015), 1, aux_sym__str_back_ticks_token1, - STATE(5141), 1, + STATE(5193), 1, sym_comment, - [132676] = 3, + [134347] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8921), 1, + ACTIONS(9017), 1, sym_raw_string_content, - STATE(5142), 1, + STATE(5194), 1, sym_comment, - [132686] = 3, + [134357] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8923), 1, + ACTIONS(9019), 1, aux_sym__str_single_quotes_token1, - STATE(5143), 1, + STATE(5195), 1, sym_comment, - [132696] = 3, + [134367] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8925), 1, + ACTIONS(9021), 1, aux_sym__str_back_ticks_token1, - STATE(5144), 1, + STATE(5196), 1, sym_comment, - [132706] = 3, + [134377] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8927), 1, + ACTIONS(9023), 1, sym_raw_string_content, - STATE(5145), 1, + STATE(5197), 1, sym_comment, - [132716] = 3, + [134387] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8929), 1, + ACTIONS(9025), 1, aux_sym__str_single_quotes_token1, - STATE(5146), 1, + STATE(5198), 1, sym_comment, - [132726] = 3, + [134397] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8931), 1, + ACTIONS(9027), 1, aux_sym__str_back_ticks_token1, - STATE(5147), 1, + STATE(5199), 1, sym_comment, - [132736] = 3, + [134407] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8933), 1, + ACTIONS(9029), 1, sym_raw_string_content, - STATE(5148), 1, + STATE(5200), 1, sym_comment, - [132746] = 3, + [134417] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8935), 1, + ACTIONS(9031), 1, aux_sym__str_single_quotes_token1, - STATE(5149), 1, + STATE(5201), 1, sym_comment, - [132756] = 3, + [134427] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8937), 1, + ACTIONS(9033), 1, aux_sym__str_back_ticks_token1, - STATE(5150), 1, + STATE(5202), 1, sym_comment, - [132766] = 3, + [134437] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8939), 1, + ACTIONS(9035), 1, sym_raw_string_content, - STATE(5151), 1, + STATE(5203), 1, sym_comment, - [132776] = 3, + [134447] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8941), 1, + ACTIONS(9037), 1, aux_sym__str_single_quotes_token1, - STATE(5152), 1, + STATE(5204), 1, sym_comment, - [132786] = 3, + [134457] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8943), 1, + ACTIONS(9039), 1, aux_sym__str_back_ticks_token1, - STATE(5153), 1, + STATE(5205), 1, sym_comment, - [132796] = 3, + [134467] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8945), 1, + ACTIONS(9041), 1, sym_raw_string_content, - STATE(5154), 1, + STATE(5206), 1, sym_comment, - [132806] = 3, + [134477] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8947), 1, + ACTIONS(9043), 1, aux_sym__str_single_quotes_token1, - STATE(5155), 1, + STATE(5207), 1, sym_comment, - [132816] = 3, + [134487] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8949), 1, + ACTIONS(9045), 1, aux_sym__str_back_ticks_token1, - STATE(5156), 1, + STATE(5208), 1, sym_comment, - [132826] = 3, + [134497] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8951), 1, + ACTIONS(9047), 1, sym_raw_string_content, - STATE(5157), 1, + STATE(5209), 1, sym_comment, - [132836] = 3, + [134507] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8953), 1, + ACTIONS(9049), 1, aux_sym__str_single_quotes_token1, - STATE(5158), 1, + STATE(5210), 1, sym_comment, - [132846] = 3, + [134517] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8955), 1, + ACTIONS(9051), 1, aux_sym__str_back_ticks_token1, - STATE(5159), 1, + STATE(5211), 1, sym_comment, - [132856] = 3, + [134527] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8957), 1, - sym_identifier, - STATE(5160), 1, + ACTIONS(9053), 1, + sym_raw_string_content, + STATE(5212), 1, sym_comment, - [132866] = 3, - ACTIONS(3), 1, + [134537] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8959), 1, - anon_sym_RBRACE, - STATE(5161), 1, + ACTIONS(9055), 1, + aux_sym__str_single_quotes_token1, + STATE(5213), 1, sym_comment, - [132876] = 3, - ACTIONS(3), 1, + [134547] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8213), 1, - anon_sym_LPAREN2, - STATE(5162), 1, + ACTIONS(9057), 1, + aux_sym__str_back_ticks_token1, + STATE(5214), 1, sym_comment, - [132886] = 3, + [134557] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8961), 1, - anon_sym_SQUOTE2, - STATE(5163), 1, + ACTIONS(9059), 1, + sym_raw_string_content, + STATE(5215), 1, sym_comment, - [132896] = 3, - ACTIONS(3), 1, + [134567] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8963), 1, - anon_sym_BQUOTE2, - STATE(5164), 1, + ACTIONS(9061), 1, + aux_sym__str_single_quotes_token1, + STATE(5216), 1, sym_comment, - [132906] = 3, - ACTIONS(3), 1, + [134577] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8965), 1, - anon_sym_RPAREN, - STATE(5165), 1, + ACTIONS(9063), 1, + aux_sym__str_back_ticks_token1, + STATE(5217), 1, sym_comment, - [132916] = 3, + [134587] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8967), 1, + ACTIONS(9065), 1, anon_sym_RBRACE, - STATE(5166), 1, - sym_comment, - [132926] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8969), 1, - anon_sym_in, - STATE(5167), 1, + STATE(5218), 1, sym_comment, - [132936] = 3, + [134597] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4147), 1, - sym__unquoted_pattern, - STATE(5168), 1, + ACTIONS(2327), 1, + sym__unquoted_pattern_in_record, + STATE(5219), 1, sym_comment, - [132946] = 3, + [134607] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8971), 1, - anon_sym_RBRACE, - STATE(5169), 1, + ACTIONS(8399), 1, + anon_sym_LPAREN2, + STATE(5220), 1, sym_comment, - [132956] = 3, + [134617] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(347), 1, - anon_sym_RPAREN2, - STATE(5170), 1, + ACTIONS(7382), 1, + sym__unquoted_pattern, + STATE(5221), 1, sym_comment, - [132966] = 3, + [134627] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8973), 1, - anon_sym_COLON2, - STATE(5171), 1, + ACTIONS(9067), 1, + sym_identifier, + STATE(5222), 1, sym_comment, - [132976] = 3, + [134637] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8975), 1, - sym_raw_string_end, - STATE(5172), 1, + ACTIONS(9069), 1, + anon_sym_DQUOTE, + STATE(5223), 1, sym_comment, - [132986] = 3, + [134647] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1762), 1, - sym__unquoted_pattern, - STATE(5173), 1, + ACTIONS(9071), 1, + anon_sym_SQUOTE2, + STATE(5224), 1, sym_comment, - [132996] = 3, + [134657] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8977), 1, - anon_sym_RBRACK, - STATE(5174), 1, + ACTIONS(9073), 1, + anon_sym_in, + STATE(5225), 1, sym_comment, - [133006] = 3, + [134667] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8979), 1, - anon_sym_RBRACE, - STATE(5175), 1, + ACTIONS(9075), 1, + anon_sym_BQUOTE2, + STATE(5226), 1, sym_comment, - [133016] = 3, - ACTIONS(3), 1, + [134677] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8981), 1, - anon_sym_DQUOTE, - STATE(5176), 1, + ACTIONS(9077), 1, + aux_sym__str_single_quotes_token1, + STATE(5227), 1, sym_comment, - [133026] = 3, + [134687] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8983), 1, - anon_sym_RBRACK, - STATE(5177), 1, + ACTIONS(2664), 1, + anon_sym_COLON2, + STATE(5228), 1, sym_comment, - [133036] = 3, + [134697] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8985), 1, + ACTIONS(9079), 1, aux_sym_cmd_identifier_token6, - STATE(5178), 1, + STATE(5229), 1, sym_comment, - [133046] = 3, + [134707] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8987), 1, - aux_sym_cmd_identifier_token6, - STATE(5179), 1, + ACTIONS(9081), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(5230), 1, sym_comment, - [133056] = 3, + [134717] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8989), 1, - anon_sym_EQ, - STATE(5180), 1, + ACTIONS(9083), 1, + anon_sym_RBRACK, + STATE(5231), 1, sym_comment, - [133066] = 3, + [134727] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8991), 1, - anon_sym_LT, - STATE(5181), 1, + ACTIONS(9085), 1, + anon_sym_RBRACK, + STATE(5232), 1, sym_comment, - [133076] = 3, + [134737] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8993), 1, - anon_sym_RPAREN, - STATE(5182), 1, + ACTIONS(9087), 1, + anon_sym_RBRACE, + STATE(5233), 1, sym_comment, - [133086] = 3, + [134747] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8995), 1, + ACTIONS(9089), 1, + anon_sym_RBRACE, + STATE(5234), 1, + sym_comment, + [134757] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9091), 1, anon_sym_RBRACK, - STATE(5183), 1, + STATE(5235), 1, sym_comment, - [133096] = 3, + [134767] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, + ACTIONS(9093), 1, anon_sym_RBRACE, - STATE(5184), 1, + STATE(5236), 1, sym_comment, - [133106] = 3, + [134777] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2585), 1, - sym__unquoted_pattern, - STATE(5185), 1, + ACTIONS(9095), 1, + anon_sym_RPAREN, + STATE(5237), 1, sym_comment, - [133116] = 3, + [134787] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1708), 1, - anon_sym_COLON2, - STATE(5186), 1, + ACTIONS(9097), 1, + anon_sym_GT2, + STATE(5238), 1, sym_comment, - [133126] = 3, - ACTIONS(3), 1, + [134797] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8997), 1, - anon_sym_RBRACE, - STATE(5187), 1, + ACTIONS(9099), 1, + aux_sym_cmd_identifier_token6, + STATE(5239), 1, sym_comment, - [133136] = 3, + [134807] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8999), 1, - ts_builtin_sym_end, - STATE(5188), 1, + ACTIONS(9101), 1, + anon_sym_LT, + STATE(5240), 1, sym_comment, - [133146] = 3, + [134817] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9001), 1, - anon_sym_LPAREN2, - STATE(5189), 1, + ACTIONS(2556), 1, + sym__unquoted_pattern, + STATE(5241), 1, sym_comment, - [133156] = 3, + [134827] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9003), 1, + ACTIONS(9103), 1, anon_sym_RBRACE, - STATE(5190), 1, + STATE(5242), 1, + sym_comment, + [134837] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9105), 1, + aux_sym__unquoted_with_expr_token1, + STATE(5243), 1, sym_comment, - [133166] = 3, + [134847] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9005), 1, - anon_sym_LT, - STATE(5191), 1, + ACTIONS(8293), 1, + anon_sym_LBRACE, + STATE(5244), 1, + sym_comment, + [134857] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9107), 1, + aux_sym_cmd_identifier_token2, + STATE(5245), 1, sym_comment, - [133176] = 3, + [134867] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9007), 1, - anon_sym_DQUOTE, - STATE(5192), 1, + ACTIONS(9109), 1, + anon_sym_GT2, + STATE(5246), 1, sym_comment, - [133186] = 3, + [134877] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9009), 1, - anon_sym_SQUOTE2, - STATE(5193), 1, + ACTIONS(9111), 1, + anon_sym_GT2, + STATE(5247), 1, + sym_comment, + [134887] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9113), 1, + aux_sym_cmd_identifier_token6, + STATE(5248), 1, sym_comment, - [133196] = 3, + [134897] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9011), 1, - anon_sym_BQUOTE2, - STATE(5194), 1, + ACTIONS(9115), 1, + anon_sym_LT, + STATE(5249), 1, sym_comment, - [133206] = 3, + [134907] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9013), 1, - anon_sym_SQUOTE2, - STATE(5195), 1, + ACTIONS(9117), 1, + anon_sym_EQ, + STATE(5250), 1, + sym_comment, + [134917] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9119), 1, + aux_sym_comment_token1, + STATE(5251), 1, sym_comment, - [133216] = 3, + [134927] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9015), 1, - anon_sym_RBRACK, - STATE(5196), 1, + ACTIONS(9121), 1, + sym_raw_string_end, + STATE(5252), 1, sym_comment, - [133226] = 3, + [134937] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9017), 1, - anon_sym_RPAREN, - STATE(5197), 1, + ACTIONS(9123), 1, + ts_builtin_sym_end, + STATE(5253), 1, sym_comment, - [133236] = 3, + [134947] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9019), 1, - anon_sym_RPAREN, - STATE(5198), 1, + ACTIONS(9125), 1, + anon_sym_LT, + STATE(5254), 1, sym_comment, - [133246] = 3, + [134957] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9021), 1, - anon_sym_RBRACE, - STATE(5199), 1, + ACTIONS(9127), 1, + anon_sym_GT2, + STATE(5255), 1, sym_comment, - [133256] = 3, + [134967] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9023), 1, - aux_sym_cmd_identifier_token6, - STATE(5200), 1, + ACTIONS(2533), 1, + aux_sym_cmd_identifier_token2, + STATE(5256), 1, sym_comment, - [133266] = 3, + [134977] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9025), 1, - anon_sym_EQ, - STATE(5201), 1, + ACTIONS(9129), 1, + anon_sym_RBRACK, + STATE(5257), 1, sym_comment, - [133276] = 3, + [134987] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9027), 1, + ACTIONS(9131), 1, anon_sym_RBRACK, - STATE(5202), 1, + STATE(5258), 1, sym_comment, - [133286] = 3, + [134997] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9029), 1, + ACTIONS(9133), 1, anon_sym_EQ, - STATE(5203), 1, + STATE(5259), 1, sym_comment, - [133296] = 3, + [135007] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9031), 1, - anon_sym_DQUOTE, - STATE(5204), 1, + ACTIONS(9135), 1, + anon_sym_RPAREN, + STATE(5260), 1, sym_comment, - [133306] = 3, - ACTIONS(3), 1, + [135017] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9033), 1, - sym_raw_string_end, - STATE(5205), 1, + ACTIONS(9137), 1, + aux_sym_cmd_identifier_token2, + STATE(5261), 1, sym_comment, - [133316] = 1, - ACTIONS(9035), 1, + [135027] = 1, + ACTIONS(9139), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1263)] = 0, - [SMALL_STATE(1264)] = 73, - [SMALL_STATE(1265)] = 146, - [SMALL_STATE(1266)] = 219, - [SMALL_STATE(1267)] = 292, - [SMALL_STATE(1268)] = 391, - [SMALL_STATE(1269)] = 468, - [SMALL_STATE(1270)] = 541, - [SMALL_STATE(1271)] = 614, - [SMALL_STATE(1272)] = 687, - [SMALL_STATE(1273)] = 760, - [SMALL_STATE(1274)] = 833, - [SMALL_STATE(1275)] = 906, - [SMALL_STATE(1276)] = 1045, - [SMALL_STATE(1277)] = 1128, - [SMALL_STATE(1278)] = 1201, - [SMALL_STATE(1279)] = 1302, - [SMALL_STATE(1280)] = 1375, - [SMALL_STATE(1281)] = 1448, - [SMALL_STATE(1282)] = 1521, - [SMALL_STATE(1283)] = 1594, - [SMALL_STATE(1284)] = 1685, - [SMALL_STATE(1285)] = 1758, - [SMALL_STATE(1286)] = 1831, - [SMALL_STATE(1287)] = 1926, - [SMALL_STATE(1288)] = 2069, - [SMALL_STATE(1289)] = 2144, - [SMALL_STATE(1290)] = 2217, - [SMALL_STATE(1291)] = 2290, - [SMALL_STATE(1292)] = 2433, - [SMALL_STATE(1293)] = 2506, - [SMALL_STATE(1294)] = 2579, - [SMALL_STATE(1295)] = 2652, - [SMALL_STATE(1296)] = 2725, - [SMALL_STATE(1297)] = 2798, - [SMALL_STATE(1298)] = 2871, - [SMALL_STATE(1299)] = 2944, - [SMALL_STATE(1300)] = 3017, - [SMALL_STATE(1301)] = 3090, - [SMALL_STATE(1302)] = 3163, - [SMALL_STATE(1303)] = 3236, - [SMALL_STATE(1304)] = 3309, - [SMALL_STATE(1305)] = 3382, - [SMALL_STATE(1306)] = 3455, - [SMALL_STATE(1307)] = 3528, - [SMALL_STATE(1308)] = 3601, - [SMALL_STATE(1309)] = 3704, - [SMALL_STATE(1310)] = 3777, - [SMALL_STATE(1311)] = 3850, - [SMALL_STATE(1312)] = 3923, - [SMALL_STATE(1313)] = 3996, - [SMALL_STATE(1314)] = 4069, - [SMALL_STATE(1315)] = 4166, - [SMALL_STATE(1316)] = 4259, - [SMALL_STATE(1317)] = 4332, - [SMALL_STATE(1318)] = 4405, - [SMALL_STATE(1319)] = 4478, - [SMALL_STATE(1320)] = 4551, - [SMALL_STATE(1321)] = 4624, - [SMALL_STATE(1322)] = 4697, - [SMALL_STATE(1323)] = 4770, - [SMALL_STATE(1324)] = 4859, - [SMALL_STATE(1325)] = 4932, - [SMALL_STATE(1326)] = 5005, - [SMALL_STATE(1327)] = 5078, - [SMALL_STATE(1328)] = 5151, - [SMALL_STATE(1329)] = 5290, - [SMALL_STATE(1330)] = 5433, - [SMALL_STATE(1331)] = 5518, - [SMALL_STATE(1332)] = 5661, - [SMALL_STATE(1333)] = 5734, - [SMALL_STATE(1334)] = 5807, - [SMALL_STATE(1335)] = 5880, - [SMALL_STATE(1336)] = 5959, - [SMALL_STATE(1337)] = 6032, - [SMALL_STATE(1338)] = 6105, - [SMALL_STATE(1339)] = 6244, - [SMALL_STATE(1340)] = 6317, - [SMALL_STATE(1341)] = 6390, - [SMALL_STATE(1342)] = 6463, - [SMALL_STATE(1343)] = 6536, - [SMALL_STATE(1344)] = 6609, - [SMALL_STATE(1345)] = 6682, - [SMALL_STATE(1346)] = 6755, - [SMALL_STATE(1347)] = 6895, - [SMALL_STATE(1348)] = 7043, - [SMALL_STATE(1349)] = 7180, - [SMALL_STATE(1350)] = 7317, - [SMALL_STATE(1351)] = 7394, - [SMALL_STATE(1352)] = 7531, - [SMALL_STATE(1353)] = 7668, - [SMALL_STATE(1354)] = 7805, - [SMALL_STATE(1355)] = 7882, - [SMALL_STATE(1356)] = 7955, - [SMALL_STATE(1357)] = 8032, - [SMALL_STATE(1358)] = 8105, - [SMALL_STATE(1359)] = 8179, - [SMALL_STATE(1360)] = 8249, - [SMALL_STATE(1361)] = 8391, + [SMALL_STATE(1262)] = 0, + [SMALL_STATE(1263)] = 73, + [SMALL_STATE(1264)] = 146, + [SMALL_STATE(1265)] = 285, + [SMALL_STATE(1266)] = 358, + [SMALL_STATE(1267)] = 431, + [SMALL_STATE(1268)] = 504, + [SMALL_STATE(1269)] = 577, + [SMALL_STATE(1270)] = 650, + [SMALL_STATE(1271)] = 723, + [SMALL_STATE(1272)] = 796, + [SMALL_STATE(1273)] = 869, + [SMALL_STATE(1274)] = 1008, + [SMALL_STATE(1275)] = 1081, + [SMALL_STATE(1276)] = 1154, + [SMALL_STATE(1277)] = 1231, + [SMALL_STATE(1278)] = 1304, + [SMALL_STATE(1279)] = 1377, + [SMALL_STATE(1280)] = 1450, + [SMALL_STATE(1281)] = 1523, + [SMALL_STATE(1282)] = 1596, + [SMALL_STATE(1283)] = 1669, + [SMALL_STATE(1284)] = 1758, + [SMALL_STATE(1285)] = 1831, + [SMALL_STATE(1286)] = 1916, + [SMALL_STATE(1287)] = 1989, + [SMALL_STATE(1288)] = 2068, + [SMALL_STATE(1289)] = 2141, + [SMALL_STATE(1290)] = 2214, + [SMALL_STATE(1291)] = 2289, + [SMALL_STATE(1292)] = 2362, + [SMALL_STATE(1293)] = 2435, + [SMALL_STATE(1294)] = 2534, + [SMALL_STATE(1295)] = 2607, + [SMALL_STATE(1296)] = 2680, + [SMALL_STATE(1297)] = 2781, + [SMALL_STATE(1298)] = 2854, + [SMALL_STATE(1299)] = 2927, + [SMALL_STATE(1300)] = 3030, + [SMALL_STATE(1301)] = 3173, + [SMALL_STATE(1302)] = 3246, + [SMALL_STATE(1303)] = 3319, + [SMALL_STATE(1304)] = 3410, + [SMALL_STATE(1305)] = 3483, + [SMALL_STATE(1306)] = 3556, + [SMALL_STATE(1307)] = 3629, + [SMALL_STATE(1308)] = 3702, + [SMALL_STATE(1309)] = 3775, + [SMALL_STATE(1310)] = 3858, + [SMALL_STATE(1311)] = 3931, + [SMALL_STATE(1312)] = 4024, + [SMALL_STATE(1313)] = 4097, + [SMALL_STATE(1314)] = 4192, + [SMALL_STATE(1315)] = 4265, + [SMALL_STATE(1316)] = 4362, + [SMALL_STATE(1317)] = 4435, + [SMALL_STATE(1318)] = 4578, + [SMALL_STATE(1319)] = 4651, + [SMALL_STATE(1320)] = 4724, + [SMALL_STATE(1321)] = 4797, + [SMALL_STATE(1322)] = 4870, + [SMALL_STATE(1323)] = 4943, + [SMALL_STATE(1324)] = 5016, + [SMALL_STATE(1325)] = 5089, + [SMALL_STATE(1326)] = 5162, + [SMALL_STATE(1327)] = 5235, + [SMALL_STATE(1328)] = 5308, + [SMALL_STATE(1329)] = 5381, + [SMALL_STATE(1330)] = 5454, + [SMALL_STATE(1331)] = 5527, + [SMALL_STATE(1332)] = 5600, + [SMALL_STATE(1333)] = 5743, + [SMALL_STATE(1334)] = 5886, + [SMALL_STATE(1335)] = 5959, + [SMALL_STATE(1336)] = 6032, + [SMALL_STATE(1337)] = 6105, + [SMALL_STATE(1338)] = 6178, + [SMALL_STATE(1339)] = 6251, + [SMALL_STATE(1340)] = 6324, + [SMALL_STATE(1341)] = 6397, + [SMALL_STATE(1342)] = 6470, + [SMALL_STATE(1343)] = 6543, + [SMALL_STATE(1344)] = 6682, + [SMALL_STATE(1345)] = 6755, + [SMALL_STATE(1346)] = 6895, + [SMALL_STATE(1347)] = 7043, + [SMALL_STATE(1348)] = 7120, + [SMALL_STATE(1349)] = 7257, + [SMALL_STATE(1350)] = 7394, + [SMALL_STATE(1351)] = 7467, + [SMALL_STATE(1352)] = 7544, + [SMALL_STATE(1353)] = 7681, + [SMALL_STATE(1354)] = 7754, + [SMALL_STATE(1355)] = 7891, + [SMALL_STATE(1356)] = 8028, + [SMALL_STATE(1357)] = 8105, + [SMALL_STATE(1358)] = 8177, + [SMALL_STATE(1359)] = 8251, + [SMALL_STATE(1360)] = 8327, + [SMALL_STATE(1361)] = 8461, [SMALL_STATE(1362)] = 8531, - [SMALL_STATE(1363)] = 8665, - [SMALL_STATE(1364)] = 8741, - [SMALL_STATE(1365)] = 8819, - [SMALL_STATE(1366)] = 8953, - [SMALL_STATE(1367)] = 9023, - [SMALL_STATE(1368)] = 9099, - [SMALL_STATE(1369)] = 9175, - [SMALL_STATE(1370)] = 9247, - [SMALL_STATE(1371)] = 9319, - [SMALL_STATE(1372)] = 9395, - [SMALL_STATE(1373)] = 9537, - [SMALL_STATE(1374)] = 9671, - [SMALL_STATE(1375)] = 9805, - [SMALL_STATE(1376)] = 9939, - [SMALL_STATE(1377)] = 10008, - [SMALL_STATE(1378)] = 10077, - [SMALL_STATE(1379)] = 10146, - [SMALL_STATE(1380)] = 10231, - [SMALL_STATE(1381)] = 10300, - [SMALL_STATE(1382)] = 10373, - [SMALL_STATE(1383)] = 10446, - [SMALL_STATE(1384)] = 10521, - [SMALL_STATE(1385)] = 10590, - [SMALL_STATE(1386)] = 10659, - [SMALL_STATE(1387)] = 10743, - [SMALL_STATE(1388)] = 10825, - [SMALL_STATE(1389)] = 10907, - [SMALL_STATE(1390)] = 10975, - [SMALL_STATE(1391)] = 11061, - [SMALL_STATE(1392)] = 11129, - [SMALL_STATE(1393)] = 11215, - [SMALL_STATE(1394)] = 11340, - [SMALL_STATE(1395)] = 11473, - [SMALL_STATE(1396)] = 11544, - [SMALL_STATE(1397)] = 11625, - [SMALL_STATE(1398)] = 11706, - [SMALL_STATE(1399)] = 11779, - [SMALL_STATE(1400)] = 11904, - [SMALL_STATE(1401)] = 11975, - [SMALL_STATE(1402)] = 12046, - [SMALL_STATE(1403)] = 12116, - [SMALL_STATE(1404)] = 12184, - [SMALL_STATE(1405)] = 12252, - [SMALL_STATE(1406)] = 12320, - [SMALL_STATE(1407)] = 12400, - [SMALL_STATE(1408)] = 12470, - [SMALL_STATE(1409)] = 12540, - [SMALL_STATE(1410)] = 12606, - [SMALL_STATE(1411)] = 12674, - [SMALL_STATE(1412)] = 12739, - [SMALL_STATE(1413)] = 12864, - [SMALL_STATE(1414)] = 12931, - [SMALL_STATE(1415)] = 13000, - [SMALL_STATE(1416)] = 13079, - [SMALL_STATE(1417)] = 13144, - [SMALL_STATE(1418)] = 13273, - [SMALL_STATE(1419)] = 13402, - [SMALL_STATE(1420)] = 13471, - [SMALL_STATE(1421)] = 13600, - [SMALL_STATE(1422)] = 13665, - [SMALL_STATE(1423)] = 13732, - [SMALL_STATE(1424)] = 13797, - [SMALL_STATE(1425)] = 13926, - [SMALL_STATE(1426)] = 13991, - [SMALL_STATE(1427)] = 14059, - [SMALL_STATE(1428)] = 14127, - [SMALL_STATE(1429)] = 14191, - [SMALL_STATE(1430)] = 14257, - [SMALL_STATE(1431)] = 14321, - [SMALL_STATE(1432)] = 14387, - [SMALL_STATE(1433)] = 14451, - [SMALL_STATE(1434)] = 14514, - [SMALL_STATE(1435)] = 14585, - [SMALL_STATE(1436)] = 14648, - [SMALL_STATE(1437)] = 14719, - [SMALL_STATE(1438)] = 14782, - [SMALL_STATE(1439)] = 14847, - [SMALL_STATE(1440)] = 14912, - [SMALL_STATE(1441)] = 14978, - [SMALL_STATE(1442)] = 15048, - [SMALL_STATE(1443)] = 15114, - [SMALL_STATE(1444)] = 15184, - [SMALL_STATE(1445)] = 15246, - [SMALL_STATE(1446)] = 15344, - [SMALL_STATE(1447)] = 15416, - [SMALL_STATE(1448)] = 15514, - [SMALL_STATE(1449)] = 15576, - [SMALL_STATE(1450)] = 15638, - [SMALL_STATE(1451)] = 15709, - [SMALL_STATE(1452)] = 15772, - [SMALL_STATE(1453)] = 15835, - [SMALL_STATE(1454)] = 15928, - [SMALL_STATE(1455)] = 16021, - [SMALL_STATE(1456)] = 16118, - [SMALL_STATE(1457)] = 16183, - [SMALL_STATE(1458)] = 16276, - [SMALL_STATE(1459)] = 16373, - [SMALL_STATE(1460)] = 16438, - [SMALL_STATE(1461)] = 16502, - [SMALL_STATE(1462)] = 16562, - [SMALL_STATE(1463)] = 16626, - [SMALL_STATE(1464)] = 16686, - [SMALL_STATE(1465)] = 16752, - [SMALL_STATE(1466)] = 16816, - [SMALL_STATE(1467)] = 16882, - [SMALL_STATE(1468)] = 16948, - [SMALL_STATE(1469)] = 17014, - [SMALL_STATE(1470)] = 17080, - [SMALL_STATE(1471)] = 17144, - [SMALL_STATE(1472)] = 17208, - [SMALL_STATE(1473)] = 17268, - [SMALL_STATE(1474)] = 17330, - [SMALL_STATE(1475)] = 17396, - [SMALL_STATE(1476)] = 17462, - [SMALL_STATE(1477)] = 17524, - [SMALL_STATE(1478)] = 17584, - [SMALL_STATE(1479)] = 17650, - [SMALL_STATE(1480)] = 17714, - [SMALL_STATE(1481)] = 17780, - [SMALL_STATE(1482)] = 17842, - [SMALL_STATE(1483)] = 17906, - [SMALL_STATE(1484)] = 17972, - [SMALL_STATE(1485)] = 18038, - [SMALL_STATE(1486)] = 18104, - [SMALL_STATE(1487)] = 18168, - [SMALL_STATE(1488)] = 18232, - [SMALL_STATE(1489)] = 18293, - [SMALL_STATE(1490)] = 18352, - [SMALL_STATE(1491)] = 18415, - [SMALL_STATE(1492)] = 18478, - [SMALL_STATE(1493)] = 18537, - [SMALL_STATE(1494)] = 18598, - [SMALL_STATE(1495)] = 18661, - [SMALL_STATE(1496)] = 18724, - [SMALL_STATE(1497)] = 18787, - [SMALL_STATE(1498)] = 18850, - [SMALL_STATE(1499)] = 18911, - [SMALL_STATE(1500)] = 18970, - [SMALL_STATE(1501)] = 19029, - [SMALL_STATE(1502)] = 19092, - [SMALL_STATE(1503)] = 19155, - [SMALL_STATE(1504)] = 19216, - [SMALL_STATE(1505)] = 19279, - [SMALL_STATE(1506)] = 19342, - [SMALL_STATE(1507)] = 19405, - [SMALL_STATE(1508)] = 19464, - [SMALL_STATE(1509)] = 19525, - [SMALL_STATE(1510)] = 19605, - [SMALL_STATE(1511)] = 19665, - [SMALL_STATE(1512)] = 19725, - [SMALL_STATE(1513)] = 19785, - [SMALL_STATE(1514)] = 19865, - [SMALL_STATE(1515)] = 19945, - [SMALL_STATE(1516)] = 20003, - [SMALL_STATE(1517)] = 20083, - [SMALL_STATE(1518)] = 20163, - [SMALL_STATE(1519)] = 20223, - [SMALL_STATE(1520)] = 20297, - [SMALL_STATE(1521)] = 20357, - [SMALL_STATE(1522)] = 20437, - [SMALL_STATE(1523)] = 20517, - [SMALL_STATE(1524)] = 20597, - [SMALL_STATE(1525)] = 20677, - [SMALL_STATE(1526)] = 20767, - [SMALL_STATE(1527)] = 20847, - [SMALL_STATE(1528)] = 20927, - [SMALL_STATE(1529)] = 21007, - [SMALL_STATE(1530)] = 21087, - [SMALL_STATE(1531)] = 21173, - [SMALL_STATE(1532)] = 21253, - [SMALL_STATE(1533)] = 21333, - [SMALL_STATE(1534)] = 21413, - [SMALL_STATE(1535)] = 21493, - [SMALL_STATE(1536)] = 21573, - [SMALL_STATE(1537)] = 21653, - [SMALL_STATE(1538)] = 21745, - [SMALL_STATE(1539)] = 21825, - [SMALL_STATE(1540)] = 21905, - [SMALL_STATE(1541)] = 21985, - [SMALL_STATE(1542)] = 22065, - [SMALL_STATE(1543)] = 22145, - [SMALL_STATE(1544)] = 22225, - [SMALL_STATE(1545)] = 22305, - [SMALL_STATE(1546)] = 22385, - [SMALL_STATE(1547)] = 22465, - [SMALL_STATE(1548)] = 22545, - [SMALL_STATE(1549)] = 22625, - [SMALL_STATE(1550)] = 22705, - [SMALL_STATE(1551)] = 22791, - [SMALL_STATE(1552)] = 22871, - [SMALL_STATE(1553)] = 22951, - [SMALL_STATE(1554)] = 23031, - [SMALL_STATE(1555)] = 23111, - [SMALL_STATE(1556)] = 23191, - [SMALL_STATE(1557)] = 23271, - [SMALL_STATE(1558)] = 23351, - [SMALL_STATE(1559)] = 23431, - [SMALL_STATE(1560)] = 23511, - [SMALL_STATE(1561)] = 23591, - [SMALL_STATE(1562)] = 23671, - [SMALL_STATE(1563)] = 23751, + [SMALL_STATE(1363)] = 8607, + [SMALL_STATE(1364)] = 8683, + [SMALL_STATE(1365)] = 8825, + [SMALL_STATE(1366)] = 8903, + [SMALL_STATE(1367)] = 8973, + [SMALL_STATE(1368)] = 9107, + [SMALL_STATE(1369)] = 9247, + [SMALL_STATE(1370)] = 9389, + [SMALL_STATE(1371)] = 9523, + [SMALL_STATE(1372)] = 9657, + [SMALL_STATE(1373)] = 9733, + [SMALL_STATE(1374)] = 9867, + [SMALL_STATE(1375)] = 9939, + [SMALL_STATE(1376)] = 10012, + [SMALL_STATE(1377)] = 10081, + [SMALL_STATE(1378)] = 10156, + [SMALL_STATE(1379)] = 10225, + [SMALL_STATE(1380)] = 10294, + [SMALL_STATE(1381)] = 10363, + [SMALL_STATE(1382)] = 10432, + [SMALL_STATE(1383)] = 10517, + [SMALL_STATE(1384)] = 10586, + [SMALL_STATE(1385)] = 10659, + [SMALL_STATE(1386)] = 10727, + [SMALL_STATE(1387)] = 10811, + [SMALL_STATE(1388)] = 10897, + [SMALL_STATE(1389)] = 10983, + [SMALL_STATE(1390)] = 11051, + [SMALL_STATE(1391)] = 11133, + [SMALL_STATE(1392)] = 11215, + [SMALL_STATE(1393)] = 11296, + [SMALL_STATE(1394)] = 11369, + [SMALL_STATE(1395)] = 11494, + [SMALL_STATE(1396)] = 11627, + [SMALL_STATE(1397)] = 11708, + [SMALL_STATE(1398)] = 11779, + [SMALL_STATE(1399)] = 11850, + [SMALL_STATE(1400)] = 11921, + [SMALL_STATE(1401)] = 12046, + [SMALL_STATE(1402)] = 12116, + [SMALL_STATE(1403)] = 12196, + [SMALL_STATE(1404)] = 12264, + [SMALL_STATE(1405)] = 12332, + [SMALL_STATE(1406)] = 12398, + [SMALL_STATE(1407)] = 12468, + [SMALL_STATE(1408)] = 12536, + [SMALL_STATE(1409)] = 12606, + [SMALL_STATE(1410)] = 12674, + [SMALL_STATE(1411)] = 12739, + [SMALL_STATE(1412)] = 12808, + [SMALL_STATE(1413)] = 12873, + [SMALL_STATE(1414)] = 12938, + [SMALL_STATE(1415)] = 13003, + [SMALL_STATE(1416)] = 13070, + [SMALL_STATE(1417)] = 13199, + [SMALL_STATE(1418)] = 13264, + [SMALL_STATE(1419)] = 13389, + [SMALL_STATE(1420)] = 13518, + [SMALL_STATE(1421)] = 13597, + [SMALL_STATE(1422)] = 13666, + [SMALL_STATE(1423)] = 13795, + [SMALL_STATE(1424)] = 13924, + [SMALL_STATE(1425)] = 13991, + [SMALL_STATE(1426)] = 14057, + [SMALL_STATE(1427)] = 14121, + [SMALL_STATE(1428)] = 14185, + [SMALL_STATE(1429)] = 14253, + [SMALL_STATE(1430)] = 14317, + [SMALL_STATE(1431)] = 14385, + [SMALL_STATE(1432)] = 14451, + [SMALL_STATE(1433)] = 14522, + [SMALL_STATE(1434)] = 14587, + [SMALL_STATE(1435)] = 14650, + [SMALL_STATE(1436)] = 14713, + [SMALL_STATE(1437)] = 14776, + [SMALL_STATE(1438)] = 14841, + [SMALL_STATE(1439)] = 14912, + [SMALL_STATE(1440)] = 14982, + [SMALL_STATE(1441)] = 15044, + [SMALL_STATE(1442)] = 15110, + [SMALL_STATE(1443)] = 15208, + [SMALL_STATE(1444)] = 15270, + [SMALL_STATE(1445)] = 15368, + [SMALL_STATE(1446)] = 15438, + [SMALL_STATE(1447)] = 15504, + [SMALL_STATE(1448)] = 15576, + [SMALL_STATE(1449)] = 15638, + [SMALL_STATE(1450)] = 15731, + [SMALL_STATE(1451)] = 15828, + [SMALL_STATE(1452)] = 15921, + [SMALL_STATE(1453)] = 15986, + [SMALL_STATE(1454)] = 16051, + [SMALL_STATE(1455)] = 16148, + [SMALL_STATE(1456)] = 16219, + [SMALL_STATE(1457)] = 16282, + [SMALL_STATE(1458)] = 16345, + [SMALL_STATE(1459)] = 16438, + [SMALL_STATE(1460)] = 16498, + [SMALL_STATE(1461)] = 16564, + [SMALL_STATE(1462)] = 16628, + [SMALL_STATE(1463)] = 16694, + [SMALL_STATE(1464)] = 16760, + [SMALL_STATE(1465)] = 16824, + [SMALL_STATE(1466)] = 16888, + [SMALL_STATE(1467)] = 16952, + [SMALL_STATE(1468)] = 17016, + [SMALL_STATE(1469)] = 17080, + [SMALL_STATE(1470)] = 17144, + [SMALL_STATE(1471)] = 17208, + [SMALL_STATE(1472)] = 17272, + [SMALL_STATE(1473)] = 17338, + [SMALL_STATE(1474)] = 17404, + [SMALL_STATE(1475)] = 17470, + [SMALL_STATE(1476)] = 17536, + [SMALL_STATE(1477)] = 17598, + [SMALL_STATE(1478)] = 17664, + [SMALL_STATE(1479)] = 17730, + [SMALL_STATE(1480)] = 17796, + [SMALL_STATE(1481)] = 17862, + [SMALL_STATE(1482)] = 17928, + [SMALL_STATE(1483)] = 17990, + [SMALL_STATE(1484)] = 18052, + [SMALL_STATE(1485)] = 18112, + [SMALL_STATE(1486)] = 18172, + [SMALL_STATE(1487)] = 18232, + [SMALL_STATE(1488)] = 18295, + [SMALL_STATE(1489)] = 18358, + [SMALL_STATE(1490)] = 18419, + [SMALL_STATE(1491)] = 18478, + [SMALL_STATE(1492)] = 18541, + [SMALL_STATE(1493)] = 18600, + [SMALL_STATE(1494)] = 18661, + [SMALL_STATE(1495)] = 18722, + [SMALL_STATE(1496)] = 18785, + [SMALL_STATE(1497)] = 18844, + [SMALL_STATE(1498)] = 18907, + [SMALL_STATE(1499)] = 18966, + [SMALL_STATE(1500)] = 19025, + [SMALL_STATE(1501)] = 19086, + [SMALL_STATE(1502)] = 19149, + [SMALL_STATE(1503)] = 19212, + [SMALL_STATE(1504)] = 19275, + [SMALL_STATE(1505)] = 19338, + [SMALL_STATE(1506)] = 19399, + [SMALL_STATE(1507)] = 19462, + [SMALL_STATE(1508)] = 19525, + [SMALL_STATE(1509)] = 19585, + [SMALL_STATE(1510)] = 19657, + [SMALL_STATE(1511)] = 19727, + [SMALL_STATE(1512)] = 19807, + [SMALL_STATE(1513)] = 19885, + [SMALL_STATE(1514)] = 19967, + [SMALL_STATE(1515)] = 20047, + [SMALL_STATE(1516)] = 20131, + [SMALL_STATE(1517)] = 20213, + [SMALL_STATE(1518)] = 20295, + [SMALL_STATE(1519)] = 20371, + [SMALL_STATE(1520)] = 20445, + [SMALL_STATE(1521)] = 20531, + [SMALL_STATE(1522)] = 20599, + [SMALL_STATE(1523)] = 20683, + [SMALL_STATE(1524)] = 20747, + [SMALL_STATE(1525)] = 20827, + [SMALL_STATE(1526)] = 20913, + [SMALL_STATE(1527)] = 20993, + [SMALL_STATE(1528)] = 21081, + [SMALL_STATE(1529)] = 21161, + [SMALL_STATE(1530)] = 21251, + [SMALL_STATE(1531)] = 21329, + [SMALL_STATE(1532)] = 21393, + [SMALL_STATE(1533)] = 21473, + [SMALL_STATE(1534)] = 21545, + [SMALL_STATE(1535)] = 21625, + [SMALL_STATE(1536)] = 21705, + [SMALL_STATE(1537)] = 21785, + [SMALL_STATE(1538)] = 21867, + [SMALL_STATE(1539)] = 21955, + [SMALL_STATE(1540)] = 22039, + [SMALL_STATE(1541)] = 22119, + [SMALL_STATE(1542)] = 22199, + [SMALL_STATE(1543)] = 22289, + [SMALL_STATE(1544)] = 22369, + [SMALL_STATE(1545)] = 22443, + [SMALL_STATE(1546)] = 22515, + [SMALL_STATE(1547)] = 22581, + [SMALL_STATE(1548)] = 22643, + [SMALL_STATE(1549)] = 22727, + [SMALL_STATE(1550)] = 22813, + [SMALL_STATE(1551)] = 22901, + [SMALL_STATE(1552)] = 22977, + [SMALL_STATE(1553)] = 23047, + [SMALL_STATE(1554)] = 23125, + [SMALL_STATE(1555)] = 23205, + [SMALL_STATE(1556)] = 23287, + [SMALL_STATE(1557)] = 23363, + [SMALL_STATE(1558)] = 23437, + [SMALL_STATE(1559)] = 23511, + [SMALL_STATE(1560)] = 23583, + [SMALL_STATE(1561)] = 23651, + [SMALL_STATE(1562)] = 23717, + [SMALL_STATE(1563)] = 23781, [SMALL_STATE(1564)] = 23843, - [SMALL_STATE(1565)] = 23919, - [SMALL_STATE(1566)] = 23993, - [SMALL_STATE(1567)] = 24061, - [SMALL_STATE(1568)] = 24125, - [SMALL_STATE(1569)] = 24211, - [SMALL_STATE(1570)] = 24299, - [SMALL_STATE(1571)] = 24389, - [SMALL_STATE(1572)] = 24467, - [SMALL_STATE(1573)] = 24539, - [SMALL_STATE(1574)] = 24619, - [SMALL_STATE(1575)] = 24701, - [SMALL_STATE(1576)] = 24785, - [SMALL_STATE(1577)] = 24865, - [SMALL_STATE(1578)] = 24951, - [SMALL_STATE(1579)] = 25027, - [SMALL_STATE(1580)] = 25101, - [SMALL_STATE(1581)] = 25175, - [SMALL_STATE(1582)] = 25247, - [SMALL_STATE(1583)] = 25315, - [SMALL_STATE(1584)] = 25381, - [SMALL_STATE(1585)] = 25445, - [SMALL_STATE(1586)] = 25507, - [SMALL_STATE(1587)] = 25593, - [SMALL_STATE(1588)] = 25677, - [SMALL_STATE(1589)] = 25765, - [SMALL_STATE(1590)] = 25855, - [SMALL_STATE(1591)] = 25943, - [SMALL_STATE(1592)] = 26021, - [SMALL_STATE(1593)] = 26097, - [SMALL_STATE(1594)] = 26169, - [SMALL_STATE(1595)] = 26239, - [SMALL_STATE(1596)] = 26319, - [SMALL_STATE(1597)] = 26397, - [SMALL_STATE(1598)] = 26479, - [SMALL_STATE(1599)] = 26559, - [SMALL_STATE(1600)] = 26643, - [SMALL_STATE(1601)] = 26725, - [SMALL_STATE(1602)] = 26801, - [SMALL_STATE(1603)] = 26875, - [SMALL_STATE(1604)] = 26943, - [SMALL_STATE(1605)] = 27023, - [SMALL_STATE(1606)] = 27087, - [SMALL_STATE(1607)] = 27173, - [SMALL_STATE(1608)] = 27261, - [SMALL_STATE(1609)] = 27351, - [SMALL_STATE(1610)] = 27429, - [SMALL_STATE(1611)] = 27501, - [SMALL_STATE(1612)] = 27581, - [SMALL_STATE(1613)] = 27663, - [SMALL_STATE(1614)] = 27747, - [SMALL_STATE(1615)] = 27821, - [SMALL_STATE(1616)] = 27893, - [SMALL_STATE(1617)] = 27959, - [SMALL_STATE(1618)] = 28021, - [SMALL_STATE(1619)] = 28105, - [SMALL_STATE(1620)] = 28191, - [SMALL_STATE(1621)] = 28279, - [SMALL_STATE(1622)] = 28355, - [SMALL_STATE(1623)] = 28425, - [SMALL_STATE(1624)] = 28503, - [SMALL_STATE(1625)] = 28583, - [SMALL_STATE(1626)] = 28665, - [SMALL_STATE(1627)] = 28741, - [SMALL_STATE(1628)] = 28815, - [SMALL_STATE(1629)] = 28889, - [SMALL_STATE(1630)] = 28961, - [SMALL_STATE(1631)] = 29029, - [SMALL_STATE(1632)] = 29095, - [SMALL_STATE(1633)] = 29159, - [SMALL_STATE(1634)] = 29221, - [SMALL_STATE(1635)] = 29307, - [SMALL_STATE(1636)] = 29391, - [SMALL_STATE(1637)] = 29479, - [SMALL_STATE(1638)] = 29565, - [SMALL_STATE(1639)] = 29655, - [SMALL_STATE(1640)] = 29743, - [SMALL_STATE(1641)] = 29821, - [SMALL_STATE(1642)] = 29897, - [SMALL_STATE(1643)] = 29969, - [SMALL_STATE(1644)] = 30039, - [SMALL_STATE(1645)] = 30119, - [SMALL_STATE(1646)] = 30197, - [SMALL_STATE(1647)] = 30279, - [SMALL_STATE(1648)] = 30359, - [SMALL_STATE(1649)] = 30443, - [SMALL_STATE(1650)] = 30525, - [SMALL_STATE(1651)] = 30599, - [SMALL_STATE(1652)] = 30671, - [SMALL_STATE(1653)] = 30737, - [SMALL_STATE(1654)] = 30799, - [SMALL_STATE(1655)] = 30883, - [SMALL_STATE(1656)] = 30969, - [SMALL_STATE(1657)] = 31057, - [SMALL_STATE(1658)] = 31133, - [SMALL_STATE(1659)] = 31203, - [SMALL_STATE(1660)] = 31281, - [SMALL_STATE(1661)] = 31361, - [SMALL_STATE(1662)] = 31443, - [SMALL_STATE(1663)] = 31523, - [SMALL_STATE(1664)] = 31603, - [SMALL_STATE(1665)] = 31683, - [SMALL_STATE(1666)] = 31755, - [SMALL_STATE(1667)] = 31825, - [SMALL_STATE(1668)] = 31889, - [SMALL_STATE(1669)] = 31949, - [SMALL_STATE(1670)] = 32031, - [SMALL_STATE(1671)] = 32115, - [SMALL_STATE(1672)] = 32201, - [SMALL_STATE(1673)] = 32275, - [SMALL_STATE(1674)] = 32343, - [SMALL_STATE(1675)] = 32419, - [SMALL_STATE(1676)] = 32497, - [SMALL_STATE(1677)] = 32577, - [SMALL_STATE(1678)] = 32663, - [SMALL_STATE(1679)] = 32749, - [SMALL_STATE(1680)] = 32820, - [SMALL_STATE(1681)] = 32907, - [SMALL_STATE(1682)] = 32978, - [SMALL_STATE(1683)] = 33047, - [SMALL_STATE(1684)] = 33110, - [SMALL_STATE(1685)] = 33169, - [SMALL_STATE(1686)] = 33250, - [SMALL_STATE(1687)] = 33333, - [SMALL_STATE(1688)] = 33418, - [SMALL_STATE(1689)] = 33495, - [SMALL_STATE(1690)] = 33568, - [SMALL_STATE(1691)] = 33635, - [SMALL_STATE(1692)] = 33710, - [SMALL_STATE(1693)] = 33787, - [SMALL_STATE(1694)] = 33866, - [SMALL_STATE(1695)] = 33953, - [SMALL_STATE(1696)] = 34026, - [SMALL_STATE(1697)] = 34085, - [SMALL_STATE(1698)] = 34156, - [SMALL_STATE(1699)] = 34242, - [SMALL_STATE(1700)] = 34328, - [SMALL_STATE(1701)] = 34414, - [SMALL_STATE(1702)] = 34500, - [SMALL_STATE(1703)] = 34586, - [SMALL_STATE(1704)] = 34672, - [SMALL_STATE(1705)] = 34732, - [SMALL_STATE(1706)] = 34802, - [SMALL_STATE(1707)] = 34862, - [SMALL_STATE(1708)] = 34932, - [SMALL_STATE(1709)] = 35002, - [SMALL_STATE(1710)] = 35088, - [SMALL_STATE(1711)] = 35174, - [SMALL_STATE(1712)] = 35244, - [SMALL_STATE(1713)] = 35330, - [SMALL_STATE(1714)] = 35416, - [SMALL_STATE(1715)] = 35502, - [SMALL_STATE(1716)] = 35569, - [SMALL_STATE(1717)] = 35650, - [SMALL_STATE(1718)] = 35717, - [SMALL_STATE(1719)] = 35786, - [SMALL_STATE(1720)] = 35857, - [SMALL_STATE(1721)] = 35916, - [SMALL_STATE(1722)] = 35997, - [SMALL_STATE(1723)] = 36054, - [SMALL_STATE(1724)] = 36121, - [SMALL_STATE(1725)] = 36202, - [SMALL_STATE(1726)] = 36259, + [SMALL_STATE(1565)] = 23929, + [SMALL_STATE(1566)] = 24013, + [SMALL_STATE(1567)] = 24101, + [SMALL_STATE(1568)] = 24187, + [SMALL_STATE(1569)] = 24277, + [SMALL_STATE(1570)] = 24365, + [SMALL_STATE(1571)] = 24443, + [SMALL_STATE(1572)] = 24519, + [SMALL_STATE(1573)] = 24591, + [SMALL_STATE(1574)] = 24661, + [SMALL_STATE(1575)] = 24741, + [SMALL_STATE(1576)] = 24819, + [SMALL_STATE(1577)] = 24901, + [SMALL_STATE(1578)] = 24981, + [SMALL_STATE(1579)] = 25065, + [SMALL_STATE(1580)] = 25147, + [SMALL_STATE(1581)] = 25227, + [SMALL_STATE(1582)] = 25307, + [SMALL_STATE(1583)] = 25381, + [SMALL_STATE(1584)] = 25439, + [SMALL_STATE(1585)] = 25513, + [SMALL_STATE(1586)] = 25585, + [SMALL_STATE(1587)] = 25651, + [SMALL_STATE(1588)] = 25713, + [SMALL_STATE(1589)] = 25797, + [SMALL_STATE(1590)] = 25883, + [SMALL_STATE(1591)] = 25971, + [SMALL_STATE(1592)] = 26047, + [SMALL_STATE(1593)] = 26117, + [SMALL_STATE(1594)] = 26195, + [SMALL_STATE(1595)] = 26275, + [SMALL_STATE(1596)] = 26357, + [SMALL_STATE(1597)] = 26435, + [SMALL_STATE(1598)] = 26515, + [SMALL_STATE(1599)] = 26587, + [SMALL_STATE(1600)] = 26667, + [SMALL_STATE(1601)] = 26741, + [SMALL_STATE(1602)] = 26821, + [SMALL_STATE(1603)] = 26901, + [SMALL_STATE(1604)] = 26981, + [SMALL_STATE(1605)] = 27061, + [SMALL_STATE(1606)] = 27141, + [SMALL_STATE(1607)] = 27221, + [SMALL_STATE(1608)] = 27301, + [SMALL_STATE(1609)] = 27381, + [SMALL_STATE(1610)] = 27461, + [SMALL_STATE(1611)] = 27541, + [SMALL_STATE(1612)] = 27621, + [SMALL_STATE(1613)] = 27707, + [SMALL_STATE(1614)] = 27787, + [SMALL_STATE(1615)] = 27855, + [SMALL_STATE(1616)] = 27941, + [SMALL_STATE(1617)] = 28021, + [SMALL_STATE(1618)] = 28093, + [SMALL_STATE(1619)] = 28163, + [SMALL_STATE(1620)] = 28227, + [SMALL_STATE(1621)] = 28287, + [SMALL_STATE(1622)] = 28369, + [SMALL_STATE(1623)] = 28453, + [SMALL_STATE(1624)] = 28539, + [SMALL_STATE(1625)] = 28613, + [SMALL_STATE(1626)] = 28681, + [SMALL_STATE(1627)] = 28757, + [SMALL_STATE(1628)] = 28835, + [SMALL_STATE(1629)] = 28915, + [SMALL_STATE(1630)] = 28991, + [SMALL_STATE(1631)] = 29065, + [SMALL_STATE(1632)] = 29125, + [SMALL_STATE(1633)] = 29205, + [SMALL_STATE(1634)] = 29285, + [SMALL_STATE(1635)] = 29365, + [SMALL_STATE(1636)] = 29457, + [SMALL_STATE(1637)] = 29537, + [SMALL_STATE(1638)] = 29611, + [SMALL_STATE(1639)] = 29683, + [SMALL_STATE(1640)] = 29751, + [SMALL_STATE(1641)] = 29817, + [SMALL_STATE(1642)] = 29881, + [SMALL_STATE(1643)] = 29961, + [SMALL_STATE(1644)] = 30041, + [SMALL_STATE(1645)] = 30121, + [SMALL_STATE(1646)] = 30201, + [SMALL_STATE(1647)] = 30281, + [SMALL_STATE(1648)] = 30361, + [SMALL_STATE(1649)] = 30453, + [SMALL_STATE(1650)] = 30533, + [SMALL_STATE(1651)] = 30595, + [SMALL_STATE(1652)] = 30655, + [SMALL_STATE(1653)] = 30741, + [SMALL_STATE(1654)] = 30825, + [SMALL_STATE(1655)] = 30915, + [SMALL_STATE(1656)] = 30975, + [SMALL_STATE(1657)] = 31035, + [SMALL_STATE(1658)] = 31115, + [SMALL_STATE(1659)] = 31195, + [SMALL_STATE(1660)] = 31275, + [SMALL_STATE(1661)] = 31363, + [SMALL_STATE(1662)] = 31449, + [SMALL_STATE(1663)] = 31539, + [SMALL_STATE(1664)] = 31619, + [SMALL_STATE(1665)] = 31707, + [SMALL_STATE(1666)] = 31787, + [SMALL_STATE(1667)] = 31867, + [SMALL_STATE(1668)] = 31945, + [SMALL_STATE(1669)] = 32025, + [SMALL_STATE(1670)] = 32105, + [SMALL_STATE(1671)] = 32185, + [SMALL_STATE(1672)] = 32271, + [SMALL_STATE(1673)] = 32347, + [SMALL_STATE(1674)] = 32427, + [SMALL_STATE(1675)] = 32507, + [SMALL_STATE(1676)] = 32583, + [SMALL_STATE(1677)] = 32663, + [SMALL_STATE(1678)] = 32726, + [SMALL_STATE(1679)] = 32799, + [SMALL_STATE(1680)] = 32870, + [SMALL_STATE(1681)] = 32941, + [SMALL_STATE(1682)] = 33018, + [SMALL_STATE(1683)] = 33087, + [SMALL_STATE(1684)] = 33146, + [SMALL_STATE(1685)] = 33227, + [SMALL_STATE(1686)] = 33298, + [SMALL_STATE(1687)] = 33381, + [SMALL_STATE(1688)] = 33468, + [SMALL_STATE(1689)] = 33535, + [SMALL_STATE(1690)] = 33610, + [SMALL_STATE(1691)] = 33697, + [SMALL_STATE(1692)] = 33774, + [SMALL_STATE(1693)] = 33833, + [SMALL_STATE(1694)] = 33918, + [SMALL_STATE(1695)] = 33997, + [SMALL_STATE(1696)] = 34070, + [SMALL_STATE(1697)] = 34140, + [SMALL_STATE(1698)] = 34226, + [SMALL_STATE(1699)] = 34296, + [SMALL_STATE(1700)] = 34356, + [SMALL_STATE(1701)] = 34442, + [SMALL_STATE(1702)] = 34512, + [SMALL_STATE(1703)] = 34598, + [SMALL_STATE(1704)] = 34684, + [SMALL_STATE(1705)] = 34770, + [SMALL_STATE(1706)] = 34856, + [SMALL_STATE(1707)] = 34942, + [SMALL_STATE(1708)] = 35028, + [SMALL_STATE(1709)] = 35114, + [SMALL_STATE(1710)] = 35200, + [SMALL_STATE(1711)] = 35270, + [SMALL_STATE(1712)] = 35356, + [SMALL_STATE(1713)] = 35416, + [SMALL_STATE(1714)] = 35479, + [SMALL_STATE(1715)] = 35548, + [SMALL_STATE(1716)] = 35607, + [SMALL_STATE(1717)] = 35678, + [SMALL_STATE(1718)] = 35745, + [SMALL_STATE(1719)] = 35812, + [SMALL_STATE(1720)] = 35879, + [SMALL_STATE(1721)] = 35942, + [SMALL_STATE(1722)] = 36013, + [SMALL_STATE(1723)] = 36070, + [SMALL_STATE(1724)] = 36141, + [SMALL_STATE(1725)] = 36198, + [SMALL_STATE(1726)] = 36269, [SMALL_STATE(1727)] = 36330, - [SMALL_STATE(1728)] = 36393, - [SMALL_STATE(1729)] = 36460, - [SMALL_STATE(1730)] = 36527, - [SMALL_STATE(1731)] = 36594, - [SMALL_STATE(1732)] = 36665, - [SMALL_STATE(1733)] = 36736, - [SMALL_STATE(1734)] = 36797, - [SMALL_STATE(1735)] = 36860, - [SMALL_STATE(1736)] = 36923, - [SMALL_STATE(1737)] = 36982, - [SMALL_STATE(1738)] = 37050, - [SMALL_STATE(1739)] = 37112, - [SMALL_STATE(1740)] = 37180, - [SMALL_STATE(1741)] = 37258, - [SMALL_STATE(1742)] = 37320, - [SMALL_STATE(1743)] = 37380, - [SMALL_STATE(1744)] = 37438, - [SMALL_STATE(1745)] = 37496, - [SMALL_STATE(1746)] = 37564, - [SMALL_STATE(1747)] = 37632, - [SMALL_STATE(1748)] = 37690, - [SMALL_STATE(1749)] = 37748, - [SMALL_STATE(1750)] = 37802, - [SMALL_STATE(1751)] = 37856, - [SMALL_STATE(1752)] = 37910, - [SMALL_STATE(1753)] = 37964, - [SMALL_STATE(1754)] = 38042, - [SMALL_STATE(1755)] = 38096, - [SMALL_STATE(1756)] = 38174, - [SMALL_STATE(1757)] = 38252, - [SMALL_STATE(1758)] = 38306, - [SMALL_STATE(1759)] = 38374, - [SMALL_STATE(1760)] = 38428, - [SMALL_STATE(1761)] = 38482, - [SMALL_STATE(1762)] = 38538, - [SMALL_STATE(1763)] = 38594, - [SMALL_STATE(1764)] = 38674, - [SMALL_STATE(1765)] = 38752, - [SMALL_STATE(1766)] = 38810, - [SMALL_STATE(1767)] = 38888, - [SMALL_STATE(1768)] = 38966, - [SMALL_STATE(1769)] = 39044, - [SMALL_STATE(1770)] = 39112, - [SMALL_STATE(1771)] = 39192, - [SMALL_STATE(1772)] = 39270, - [SMALL_STATE(1773)] = 39330, - [SMALL_STATE(1774)] = 39408, - [SMALL_STATE(1775)] = 39470, - [SMALL_STATE(1776)] = 39548, - [SMALL_STATE(1777)] = 39602, - [SMALL_STATE(1778)] = 39655, - [SMALL_STATE(1779)] = 39732, - [SMALL_STATE(1780)] = 39809, - [SMALL_STATE(1781)] = 39862, - [SMALL_STATE(1782)] = 39913, - [SMALL_STATE(1783)] = 39964, - [SMALL_STATE(1784)] = 40029, - [SMALL_STATE(1785)] = 40092, - [SMALL_STATE(1786)] = 40169, - [SMALL_STATE(1787)] = 40222, - [SMALL_STATE(1788)] = 40275, - [SMALL_STATE(1789)] = 40340, - [SMALL_STATE(1790)] = 40405, - [SMALL_STATE(1791)] = 40482, - [SMALL_STATE(1792)] = 40547, - [SMALL_STATE(1793)] = 40598, - [SMALL_STATE(1794)] = 40649, - [SMALL_STATE(1795)] = 40714, - [SMALL_STATE(1796)] = 40769, - [SMALL_STATE(1797)] = 40822, - [SMALL_STATE(1798)] = 40887, - [SMALL_STATE(1799)] = 40940, - [SMALL_STATE(1800)] = 41017, - [SMALL_STATE(1801)] = 41070, - [SMALL_STATE(1802)] = 41125, - [SMALL_STATE(1803)] = 41178, - [SMALL_STATE(1804)] = 41233, - [SMALL_STATE(1805)] = 41290, - [SMALL_STATE(1806)] = 41347, - [SMALL_STATE(1807)] = 41400, - [SMALL_STATE(1808)] = 41451, - [SMALL_STATE(1809)] = 41502, - [SMALL_STATE(1810)] = 41579, - [SMALL_STATE(1811)] = 41644, - [SMALL_STATE(1812)] = 41709, - [SMALL_STATE(1813)] = 41768, - [SMALL_STATE(1814)] = 41825, - [SMALL_STATE(1815)] = 41890, - [SMALL_STATE(1816)] = 41955, - [SMALL_STATE(1817)] = 42010, - [SMALL_STATE(1818)] = 42087, - [SMALL_STATE(1819)] = 42164, - [SMALL_STATE(1820)] = 42241, - [SMALL_STATE(1821)] = 42318, - [SMALL_STATE(1822)] = 42395, - [SMALL_STATE(1823)] = 42472, - [SMALL_STATE(1824)] = 42527, - [SMALL_STATE(1825)] = 42582, - [SMALL_STATE(1826)] = 42634, - [SMALL_STATE(1827)] = 42694, - [SMALL_STATE(1828)] = 42754, - [SMALL_STATE(1829)] = 42816, - [SMALL_STATE(1830)] = 42868, - [SMALL_STATE(1831)] = 42928, - [SMALL_STATE(1832)] = 42990, - [SMALL_STATE(1833)] = 43044, - [SMALL_STATE(1834)] = 43096, - [SMALL_STATE(1835)] = 43148, - [SMALL_STATE(1836)] = 43200, - [SMALL_STATE(1837)] = 43254, - [SMALL_STATE(1838)] = 43308, - [SMALL_STATE(1839)] = 43368, - [SMALL_STATE(1840)] = 43422, - [SMALL_STATE(1841)] = 43474, - [SMALL_STATE(1842)] = 43536, - [SMALL_STATE(1843)] = 43588, - [SMALL_STATE(1844)] = 43640, - [SMALL_STATE(1845)] = 43692, - [SMALL_STATE(1846)] = 43743, - [SMALL_STATE(1847)] = 43802, - [SMALL_STATE(1848)] = 43853, - [SMALL_STATE(1849)] = 43904, - [SMALL_STATE(1850)] = 43955, - [SMALL_STATE(1851)] = 44014, - [SMALL_STATE(1852)] = 44073, - [SMALL_STATE(1853)] = 44124, - [SMALL_STATE(1854)] = 44223, - [SMALL_STATE(1855)] = 44274, - [SMALL_STATE(1856)] = 44333, - [SMALL_STATE(1857)] = 44384, - [SMALL_STATE(1858)] = 44435, - [SMALL_STATE(1859)] = 44486, - [SMALL_STATE(1860)] = 44541, - [SMALL_STATE(1861)] = 44592, - [SMALL_STATE(1862)] = 44643, - [SMALL_STATE(1863)] = 44694, - [SMALL_STATE(1864)] = 44753, - [SMALL_STATE(1865)] = 44808, - [SMALL_STATE(1866)] = 44859, - [SMALL_STATE(1867)] = 44910, - [SMALL_STATE(1868)] = 44961, - [SMALL_STATE(1869)] = 45012, - [SMALL_STATE(1870)] = 45063, - [SMALL_STATE(1871)] = 45114, - [SMALL_STATE(1872)] = 45165, - [SMALL_STATE(1873)] = 45216, - [SMALL_STATE(1874)] = 45267, - [SMALL_STATE(1875)] = 45318, - [SMALL_STATE(1876)] = 45377, - [SMALL_STATE(1877)] = 45428, - [SMALL_STATE(1878)] = 45487, - [SMALL_STATE(1879)] = 45542, - [SMALL_STATE(1880)] = 45597, - [SMALL_STATE(1881)] = 45648, - [SMALL_STATE(1882)] = 45698, - [SMALL_STATE(1883)] = 45754, - [SMALL_STATE(1884)] = 45812, - [SMALL_STATE(1885)] = 45862, - [SMALL_STATE(1886)] = 45912, - [SMALL_STATE(1887)] = 45962, - [SMALL_STATE(1888)] = 46012, - [SMALL_STATE(1889)] = 46070, - [SMALL_STATE(1890)] = 46120, - [SMALL_STATE(1891)] = 46170, - [SMALL_STATE(1892)] = 46220, - [SMALL_STATE(1893)] = 46274, - [SMALL_STATE(1894)] = 46328, - [SMALL_STATE(1895)] = 46386, - [SMALL_STATE(1896)] = 46440, - [SMALL_STATE(1897)] = 46490, - [SMALL_STATE(1898)] = 46586, - [SMALL_STATE(1899)] = 46636, - [SMALL_STATE(1900)] = 46688, - [SMALL_STATE(1901)] = 46784, - [SMALL_STATE(1902)] = 46842, - [SMALL_STATE(1903)] = 46896, - [SMALL_STATE(1904)] = 46946, - [SMALL_STATE(1905)] = 46998, - [SMALL_STATE(1906)] = 47050, - [SMALL_STATE(1907)] = 47100, - [SMALL_STATE(1908)] = 47150, - [SMALL_STATE(1909)] = 47200, - [SMALL_STATE(1910)] = 47258, - [SMALL_STATE(1911)] = 47308, - [SMALL_STATE(1912)] = 47366, - [SMALL_STATE(1913)] = 47418, - [SMALL_STATE(1914)] = 47468, - [SMALL_STATE(1915)] = 47518, - [SMALL_STATE(1916)] = 47568, - [SMALL_STATE(1917)] = 47626, - [SMALL_STATE(1918)] = 47677, - [SMALL_STATE(1919)] = 47730, - [SMALL_STATE(1920)] = 47783, - [SMALL_STATE(1921)] = 47832, - [SMALL_STATE(1922)] = 47885, - [SMALL_STATE(1923)] = 47938, - [SMALL_STATE(1924)] = 47991, - [SMALL_STATE(1925)] = 48044, - [SMALL_STATE(1926)] = 48097, - [SMALL_STATE(1927)] = 48150, - [SMALL_STATE(1928)] = 48203, - [SMALL_STATE(1929)] = 48256, - [SMALL_STATE(1930)] = 48307, - [SMALL_STATE(1931)] = 48360, - [SMALL_STATE(1932)] = 48413, - [SMALL_STATE(1933)] = 48466, - [SMALL_STATE(1934)] = 48519, - [SMALL_STATE(1935)] = 48568, - [SMALL_STATE(1936)] = 48621, - [SMALL_STATE(1937)] = 48716, - [SMALL_STATE(1938)] = 48773, - [SMALL_STATE(1939)] = 48826, - [SMALL_STATE(1940)] = 48877, - [SMALL_STATE(1941)] = 48932, - [SMALL_STATE(1942)] = 48981, - [SMALL_STATE(1943)] = 49032, - [SMALL_STATE(1944)] = 49127, - [SMALL_STATE(1945)] = 49176, - [SMALL_STATE(1946)] = 49225, - [SMALL_STATE(1947)] = 49274, - [SMALL_STATE(1948)] = 49329, - [SMALL_STATE(1949)] = 49382, - [SMALL_STATE(1950)] = 49431, - [SMALL_STATE(1951)] = 49480, - [SMALL_STATE(1952)] = 49529, - [SMALL_STATE(1953)] = 49582, - [SMALL_STATE(1954)] = 49631, - [SMALL_STATE(1955)] = 49680, - [SMALL_STATE(1956)] = 49735, - [SMALL_STATE(1957)] = 49788, - [SMALL_STATE(1958)] = 49841, - [SMALL_STATE(1959)] = 49890, - [SMALL_STATE(1960)] = 49943, - [SMALL_STATE(1961)] = 49996, - [SMALL_STATE(1962)] = 50049, - [SMALL_STATE(1963)] = 50102, - [SMALL_STATE(1964)] = 50155, - [SMALL_STATE(1965)] = 50204, - [SMALL_STATE(1966)] = 50253, - [SMALL_STATE(1967)] = 50306, - [SMALL_STATE(1968)] = 50358, - [SMALL_STATE(1969)] = 50412, - [SMALL_STATE(1970)] = 50464, - [SMALL_STATE(1971)] = 50512, - [SMALL_STATE(1972)] = 50560, - [SMALL_STATE(1973)] = 50608, - [SMALL_STATE(1974)] = 50656, - [SMALL_STATE(1975)] = 50708, - [SMALL_STATE(1976)] = 50758, - [SMALL_STATE(1977)] = 50812, - [SMALL_STATE(1978)] = 50868, - [SMALL_STATE(1979)] = 50920, - [SMALL_STATE(1980)] = 50970, - [SMALL_STATE(1981)] = 51022, - [SMALL_STATE(1982)] = 51078, - [SMALL_STATE(1983)] = 51144, - [SMALL_STATE(1984)] = 51208, - [SMALL_STATE(1985)] = 51266, - [SMALL_STATE(1986)] = 51320, - [SMALL_STATE(1987)] = 51396, - [SMALL_STATE(1988)] = 51474, - [SMALL_STATE(1989)] = 51554, - [SMALL_STATE(1990)] = 51622, - [SMALL_STATE(1991)] = 51676, - [SMALL_STATE(1992)] = 51738, - [SMALL_STATE(1993)] = 51808, - [SMALL_STATE(1994)] = 51880, - [SMALL_STATE(1995)] = 51954, - [SMALL_STATE(1996)] = 52008, - [SMALL_STATE(1997)] = 52074, - [SMALL_STATE(1998)] = 52138, - [SMALL_STATE(1999)] = 52202, - [SMALL_STATE(2000)] = 52264, - [SMALL_STATE(2001)] = 52322, - [SMALL_STATE(2002)] = 52378, - [SMALL_STATE(2003)] = 52432, - [SMALL_STATE(2004)] = 52484, - [SMALL_STATE(2005)] = 52560, - [SMALL_STATE(2006)] = 52634, - [SMALL_STATE(2007)] = 52712, - [SMALL_STATE(2008)] = 52788, - [SMALL_STATE(2009)] = 52868, - [SMALL_STATE(2010)] = 52946, - [SMALL_STATE(2011)] = 53014, - [SMALL_STATE(2012)] = 53080, - [SMALL_STATE(2013)] = 53142, - [SMALL_STATE(2014)] = 53202, - [SMALL_STATE(2015)] = 53272, - [SMALL_STATE(2016)] = 53340, - [SMALL_STATE(2017)] = 53412, - [SMALL_STATE(2018)] = 53482, - [SMALL_STATE(2019)] = 53556, - [SMALL_STATE(2020)] = 53628, - [SMALL_STATE(2021)] = 53694, - [SMALL_STATE(2022)] = 53758, - [SMALL_STATE(2023)] = 53816, - [SMALL_STATE(2024)] = 53870, - [SMALL_STATE(2025)] = 53946, - [SMALL_STATE(2026)] = 54024, - [SMALL_STATE(2027)] = 54104, - [SMALL_STATE(2028)] = 54172, - [SMALL_STATE(2029)] = 54234, - [SMALL_STATE(2030)] = 54304, - [SMALL_STATE(2031)] = 54376, - [SMALL_STATE(2032)] = 54450, - [SMALL_STATE(2033)] = 54514, - [SMALL_STATE(2034)] = 54576, - [SMALL_STATE(2035)] = 54632, - [SMALL_STATE(2036)] = 54684, - [SMALL_STATE(2037)] = 54758, - [SMALL_STATE(2038)] = 54834, - [SMALL_STATE(2039)] = 54912, - [SMALL_STATE(2040)] = 54978, - [SMALL_STATE(2041)] = 55038, - [SMALL_STATE(2042)] = 55106, - [SMALL_STATE(2043)] = 55176, - [SMALL_STATE(2044)] = 55248, - [SMALL_STATE(2045)] = 55314, - [SMALL_STATE(2046)] = 55378, - [SMALL_STATE(2047)] = 55442, - [SMALL_STATE(2048)] = 55504, - [SMALL_STATE(2049)] = 55562, - [SMALL_STATE(2050)] = 55618, - [SMALL_STATE(2051)] = 55672, - [SMALL_STATE(2052)] = 55724, - [SMALL_STATE(2053)] = 55800, - [SMALL_STATE(2054)] = 55874, - [SMALL_STATE(2055)] = 55952, - [SMALL_STATE(2056)] = 56028, - [SMALL_STATE(2057)] = 56108, - [SMALL_STATE(2058)] = 56186, - [SMALL_STATE(2059)] = 56254, - [SMALL_STATE(2060)] = 56320, - [SMALL_STATE(2061)] = 56382, - [SMALL_STATE(2062)] = 56442, - [SMALL_STATE(2063)] = 56512, - [SMALL_STATE(2064)] = 56580, - [SMALL_STATE(2065)] = 56652, - [SMALL_STATE(2066)] = 56722, - [SMALL_STATE(2067)] = 56796, - [SMALL_STATE(2068)] = 56868, - [SMALL_STATE(2069)] = 56932, - [SMALL_STATE(2070)] = 56994, - [SMALL_STATE(2071)] = 57050, - [SMALL_STATE(2072)] = 57102, - [SMALL_STATE(2073)] = 57176, - [SMALL_STATE(2074)] = 57252, - [SMALL_STATE(2075)] = 57330, - [SMALL_STATE(2076)] = 57396, - [SMALL_STATE(2077)] = 57456, - [SMALL_STATE(2078)] = 57524, - [SMALL_STATE(2079)] = 57594, - [SMALL_STATE(2080)] = 57666, - [SMALL_STATE(2081)] = 57714, - [SMALL_STATE(2082)] = 57766, - [SMALL_STATE(2083)] = 57814, - [SMALL_STATE(2084)] = 57862, - [SMALL_STATE(2085)] = 57914, - [SMALL_STATE(2086)] = 57968, - [SMALL_STATE(2087)] = 58020, - [SMALL_STATE(2088)] = 58074, - [SMALL_STATE(2089)] = 58120, - [SMALL_STATE(2090)] = 58168, - [SMALL_STATE(2091)] = 58216, - [SMALL_STATE(2092)] = 58266, - [SMALL_STATE(2093)] = 58318, - [SMALL_STATE(2094)] = 58366, - [SMALL_STATE(2095)] = 58416, - [SMALL_STATE(2096)] = 58466, - [SMALL_STATE(2097)] = 58518, - [SMALL_STATE(2098)] = 58570, - [SMALL_STATE(2099)] = 58620, - [SMALL_STATE(2100)] = 58674, - [SMALL_STATE(2101)] = 58726, - [SMALL_STATE(2102)] = 58780, - [SMALL_STATE(2103)] = 58830, - [SMALL_STATE(2104)] = 58884, - [SMALL_STATE(2105)] = 58938, - [SMALL_STATE(2106)] = 58992, - [SMALL_STATE(2107)] = 59046, - [SMALL_STATE(2108)] = 59100, - [SMALL_STATE(2109)] = 59154, - [SMALL_STATE(2110)] = 59202, - [SMALL_STATE(2111)] = 59256, - [SMALL_STATE(2112)] = 59303, - [SMALL_STATE(2113)] = 59350, - [SMALL_STATE(2114)] = 59397, - [SMALL_STATE(2115)] = 59446, - [SMALL_STATE(2116)] = 59495, - [SMALL_STATE(2117)] = 59544, - [SMALL_STATE(2118)] = 59593, - [SMALL_STATE(2119)] = 59644, - [SMALL_STATE(2120)] = 59693, - [SMALL_STATE(2121)] = 59744, - [SMALL_STATE(2122)] = 59793, - [SMALL_STATE(2123)] = 59842, - [SMALL_STATE(2124)] = 59921, - [SMALL_STATE(2125)] = 60000, - [SMALL_STATE(2126)] = 60049, - [SMALL_STATE(2127)] = 60098, - [SMALL_STATE(2128)] = 60145, - [SMALL_STATE(2129)] = 60224, - [SMALL_STATE(2130)] = 60303, - [SMALL_STATE(2131)] = 60382, - [SMALL_STATE(2132)] = 60461, - [SMALL_STATE(2133)] = 60508, - [SMALL_STATE(2134)] = 60555, - [SMALL_STATE(2135)] = 60600, - [SMALL_STATE(2136)] = 60646, - [SMALL_STATE(2137)] = 60692, - [SMALL_STATE(2138)] = 60750, - [SMALL_STATE(2139)] = 60802, - [SMALL_STATE(2140)] = 60850, - [SMALL_STATE(2141)] = 60920, - [SMALL_STATE(2142)] = 60992, - [SMALL_STATE(2143)] = 61066, - [SMALL_STATE(2144)] = 61128, - [SMALL_STATE(2145)] = 61184, - [SMALL_STATE(2146)] = 61248, - [SMALL_STATE(2147)] = 61314, - [SMALL_STATE(2148)] = 61382, - [SMALL_STATE(2149)] = 61428, - [SMALL_STATE(2150)] = 61476, - [SMALL_STATE(2151)] = 61522, - [SMALL_STATE(2152)] = 61570, - [SMALL_STATE(2153)] = 61616, - [SMALL_STATE(2154)] = 61662, - [SMALL_STATE(2155)] = 61708, - [SMALL_STATE(2156)] = 61754, - [SMALL_STATE(2157)] = 61800, - [SMALL_STATE(2158)] = 61894, - [SMALL_STATE(2159)] = 61940, - [SMALL_STATE(2160)] = 62034, - [SMALL_STATE(2161)] = 62080, - [SMALL_STATE(2162)] = 62128, - [SMALL_STATE(2163)] = 62174, - [SMALL_STATE(2164)] = 62220, - [SMALL_STATE(2165)] = 62266, - [SMALL_STATE(2166)] = 62312, - [SMALL_STATE(2167)] = 62358, - [SMALL_STATE(2168)] = 62404, - [SMALL_STATE(2169)] = 62450, - [SMALL_STATE(2170)] = 62510, - [SMALL_STATE(2171)] = 62568, - [SMALL_STATE(2172)] = 62614, - [SMALL_STATE(2173)] = 62666, - [SMALL_STATE(2174)] = 62712, - [SMALL_STATE(2175)] = 62758, - [SMALL_STATE(2176)] = 62806, - [SMALL_STATE(2177)] = 62852, - [SMALL_STATE(2178)] = 62922, - [SMALL_STATE(2179)] = 62968, - [SMALL_STATE(2180)] = 63014, - [SMALL_STATE(2181)] = 63060, - [SMALL_STATE(2182)] = 63106, - [SMALL_STATE(2183)] = 63152, - [SMALL_STATE(2184)] = 63198, - [SMALL_STATE(2185)] = 63270, - [SMALL_STATE(2186)] = 63344, - [SMALL_STATE(2187)] = 63406, - [SMALL_STATE(2188)] = 63462, - [SMALL_STATE(2189)] = 63526, - [SMALL_STATE(2190)] = 63592, - [SMALL_STATE(2191)] = 63660, - [SMALL_STATE(2192)] = 63706, - [SMALL_STATE(2193)] = 63754, - [SMALL_STATE(2194)] = 63800, - [SMALL_STATE(2195)] = 63846, - [SMALL_STATE(2196)] = 63894, - [SMALL_STATE(2197)] = 63940, - [SMALL_STATE(2198)] = 63986, - [SMALL_STATE(2199)] = 64032, - [SMALL_STATE(2200)] = 64080, - [SMALL_STATE(2201)] = 64128, - [SMALL_STATE(2202)] = 64176, - [SMALL_STATE(2203)] = 64270, - [SMALL_STATE(2204)] = 64316, - [SMALL_STATE(2205)] = 64362, - [SMALL_STATE(2206)] = 64408, - [SMALL_STATE(2207)] = 64454, - [SMALL_STATE(2208)] = 64500, - [SMALL_STATE(2209)] = 64546, - [SMALL_STATE(2210)] = 64592, - [SMALL_STATE(2211)] = 64638, - [SMALL_STATE(2212)] = 64684, - [SMALL_STATE(2213)] = 64744, - [SMALL_STATE(2214)] = 64817, - [SMALL_STATE(2215)] = 64890, - [SMALL_STATE(2216)] = 64963, - [SMALL_STATE(2217)] = 65036, - [SMALL_STATE(2218)] = 65087, - [SMALL_STATE(2219)] = 65160, - [SMALL_STATE(2220)] = 65205, - [SMALL_STATE(2221)] = 65278, - [SMALL_STATE(2222)] = 65328, - [SMALL_STATE(2223)] = 65374, - [SMALL_STATE(2224)] = 65424, - [SMALL_STATE(2225)] = 65512, - [SMALL_STATE(2226)] = 65562, - [SMALL_STATE(2227)] = 65608, - [SMALL_STATE(2228)] = 65658, - [SMALL_STATE(2229)] = 65701, - [SMALL_STATE(2230)] = 65744, - [SMALL_STATE(2231)] = 65787, - [SMALL_STATE(2232)] = 65836, - [SMALL_STATE(2233)] = 65885, - [SMALL_STATE(2234)] = 65928, - [SMALL_STATE(2235)] = 65977, - [SMALL_STATE(2236)] = 66026, - [SMALL_STATE(2237)] = 66075, - [SMALL_STATE(2238)] = 66126, - [SMALL_STATE(2239)] = 66175, - [SMALL_STATE(2240)] = 66218, - [SMALL_STATE(2241)] = 66265, - [SMALL_STATE(2242)] = 66310, - [SMALL_STATE(2243)] = 66353, - [SMALL_STATE(2244)] = 66396, - [SMALL_STATE(2245)] = 66439, - [SMALL_STATE(2246)] = 66484, - [SMALL_STATE(2247)] = 66566, - [SMALL_STATE(2248)] = 66610, - [SMALL_STATE(2249)] = 66652, - [SMALL_STATE(2250)] = 66732, - [SMALL_STATE(2251)] = 66814, - [SMALL_STATE(2252)] = 66856, - [SMALL_STATE(2253)] = 66902, - [SMALL_STATE(2254)] = 66943, - [SMALL_STATE(2255)] = 66988, - [SMALL_STATE(2256)] = 67033, - [SMALL_STATE(2257)] = 67077, - [SMALL_STATE(2258)] = 67159, - [SMALL_STATE(2259)] = 67199, - [SMALL_STATE(2260)] = 67281, - [SMALL_STATE(2261)] = 67325, - [SMALL_STATE(2262)] = 67369, - [SMALL_STATE(2263)] = 67413, - [SMALL_STATE(2264)] = 67458, - [SMALL_STATE(2265)] = 67534, - [SMALL_STATE(2266)] = 67610, - [SMALL_STATE(2267)] = 67686, - [SMALL_STATE(2268)] = 67762, - [SMALL_STATE(2269)] = 67838, - [SMALL_STATE(2270)] = 67914, - [SMALL_STATE(2271)] = 67990, - [SMALL_STATE(2272)] = 68066, - [SMALL_STATE(2273)] = 68142, - [SMALL_STATE(2274)] = 68188, - [SMALL_STATE(2275)] = 68264, - [SMALL_STATE(2276)] = 68340, - [SMALL_STATE(2277)] = 68416, - [SMALL_STATE(2278)] = 68492, - [SMALL_STATE(2279)] = 68568, - [SMALL_STATE(2280)] = 68644, - [SMALL_STATE(2281)] = 68720, - [SMALL_STATE(2282)] = 68796, - [SMALL_STATE(2283)] = 68872, - [SMALL_STATE(2284)] = 68924, - [SMALL_STATE(2285)] = 69000, - [SMALL_STATE(2286)] = 69076, - [SMALL_STATE(2287)] = 69152, - [SMALL_STATE(2288)] = 69228, - [SMALL_STATE(2289)] = 69304, - [SMALL_STATE(2290)] = 69380, - [SMALL_STATE(2291)] = 69424, - [SMALL_STATE(2292)] = 69466, - [SMALL_STATE(2293)] = 69512, - [SMALL_STATE(2294)] = 69558, - [SMALL_STATE(2295)] = 69634, - [SMALL_STATE(2296)] = 69710, - [SMALL_STATE(2297)] = 69749, - [SMALL_STATE(2298)] = 69798, - [SMALL_STATE(2299)] = 69849, - [SMALL_STATE(2300)] = 69898, - [SMALL_STATE(2301)] = 69947, - [SMALL_STATE(2302)] = 69995, - [SMALL_STATE(2303)] = 70065, - [SMALL_STATE(2304)] = 70135, - [SMALL_STATE(2305)] = 70183, - [SMALL_STATE(2306)] = 70253, - [SMALL_STATE(2307)] = 70299, - [SMALL_STATE(2308)] = 70345, - [SMALL_STATE(2309)] = 70391, - [SMALL_STATE(2310)] = 70437, - [SMALL_STATE(2311)] = 70507, - [SMALL_STATE(2312)] = 70577, - [SMALL_STATE(2313)] = 70647, - [SMALL_STATE(2314)] = 70701, - [SMALL_STATE(2315)] = 70749, - [SMALL_STATE(2316)] = 70819, - [SMALL_STATE(2317)] = 70889, - [SMALL_STATE(2318)] = 70959, - [SMALL_STATE(2319)] = 71029, - [SMALL_STATE(2320)] = 71099, - [SMALL_STATE(2321)] = 71169, - [SMALL_STATE(2322)] = 71209, - [SMALL_STATE(2323)] = 71249, - [SMALL_STATE(2324)] = 71294, - [SMALL_STATE(2325)] = 71331, - [SMALL_STATE(2326)] = 71382, - [SMALL_STATE(2327)] = 71435, - [SMALL_STATE(2328)] = 71474, - [SMALL_STATE(2329)] = 71513, - [SMALL_STATE(2330)] = 71564, - [SMALL_STATE(2331)] = 71615, - [SMALL_STATE(2332)] = 71662, - [SMALL_STATE(2333)] = 71707, - [SMALL_STATE(2334)] = 71752, - [SMALL_STATE(2335)] = 71797, - [SMALL_STATE(2336)] = 71834, - [SMALL_STATE(2337)] = 71868, - [SMALL_STATE(2338)] = 71906, - [SMALL_STATE(2339)] = 71952, - [SMALL_STATE(2340)] = 71986, - [SMALL_STATE(2341)] = 72036, - [SMALL_STATE(2342)] = 72084, - [SMALL_STATE(2343)] = 72118, - [SMALL_STATE(2344)] = 72166, - [SMALL_STATE(2345)] = 72214, - [SMALL_STATE(2346)] = 72262, - [SMALL_STATE(2347)] = 72312, - [SMALL_STATE(2348)] = 72348, - [SMALL_STATE(2349)] = 72386, - [SMALL_STATE(2350)] = 72426, - [SMALL_STATE(2351)] = 72464, - [SMALL_STATE(2352)] = 72504, - [SMALL_STATE(2353)] = 72542, - [SMALL_STATE(2354)] = 72592, - [SMALL_STATE(2355)] = 72628, - [SMALL_STATE(2356)] = 72661, - [SMALL_STATE(2357)] = 72708, - [SMALL_STATE(2358)] = 72745, - [SMALL_STATE(2359)] = 72792, - [SMALL_STATE(2360)] = 72831, - [SMALL_STATE(2361)] = 72866, - [SMALL_STATE(2362)] = 72901, - [SMALL_STATE(2363)] = 72940, - [SMALL_STATE(2364)] = 72987, - [SMALL_STATE(2365)] = 73028, - [SMALL_STATE(2366)] = 73065, - [SMALL_STATE(2367)] = 73100, - [SMALL_STATE(2368)] = 73141, - [SMALL_STATE(2369)] = 73178, - [SMALL_STATE(2370)] = 73215, - [SMALL_STATE(2371)] = 73254, - [SMALL_STATE(2372)] = 73289, - [SMALL_STATE(2373)] = 73328, - [SMALL_STATE(2374)] = 73367, - [SMALL_STATE(2375)] = 73406, - [SMALL_STATE(2376)] = 73439, - [SMALL_STATE(2377)] = 73478, - [SMALL_STATE(2378)] = 73525, - [SMALL_STATE(2379)] = 73576, - [SMALL_STATE(2380)] = 73609, - [SMALL_STATE(2381)] = 73644, - [SMALL_STATE(2382)] = 73691, - [SMALL_STATE(2383)] = 73732, - [SMALL_STATE(2384)] = 73780, - [SMALL_STATE(2385)] = 73816, - [SMALL_STATE(2386)] = 73848, - [SMALL_STATE(2387)] = 73882, - [SMALL_STATE(2388)] = 73920, - [SMALL_STATE(2389)] = 73960, - [SMALL_STATE(2390)] = 73998, - [SMALL_STATE(2391)] = 74030, - [SMALL_STATE(2392)] = 74062, - [SMALL_STATE(2393)] = 74110, - [SMALL_STATE(2394)] = 74144, - [SMALL_STATE(2395)] = 74184, - [SMALL_STATE(2396)] = 74220, - [SMALL_STATE(2397)] = 74256, - [SMALL_STATE(2398)] = 74302, - [SMALL_STATE(2399)] = 74334, - [SMALL_STATE(2400)] = 74368, - [SMALL_STATE(2401)] = 74400, - [SMALL_STATE(2402)] = 74432, - [SMALL_STATE(2403)] = 74468, - [SMALL_STATE(2404)] = 74500, - [SMALL_STATE(2405)] = 74538, - [SMALL_STATE(2406)] = 74572, - [SMALL_STATE(2407)] = 74610, - [SMALL_STATE(2408)] = 74646, - [SMALL_STATE(2409)] = 74678, - [SMALL_STATE(2410)] = 74716, - [SMALL_STATE(2411)] = 74748, - [SMALL_STATE(2412)] = 74780, - [SMALL_STATE(2413)] = 74820, - [SMALL_STATE(2414)] = 74858, - [SMALL_STATE(2415)] = 74896, - [SMALL_STATE(2416)] = 74934, - [SMALL_STATE(2417)] = 74972, - [SMALL_STATE(2418)] = 75010, - [SMALL_STATE(2419)] = 75058, - [SMALL_STATE(2420)] = 75092, - [SMALL_STATE(2421)] = 75124, - [SMALL_STATE(2422)] = 75156, - [SMALL_STATE(2423)] = 75188, - [SMALL_STATE(2424)] = 75224, - [SMALL_STATE(2425)] = 75255, - [SMALL_STATE(2426)] = 75294, - [SMALL_STATE(2427)] = 75325, - [SMALL_STATE(2428)] = 75370, - [SMALL_STATE(2429)] = 75415, - [SMALL_STATE(2430)] = 75460, - [SMALL_STATE(2431)] = 75497, - [SMALL_STATE(2432)] = 75532, - [SMALL_STATE(2433)] = 75571, - [SMALL_STATE(2434)] = 75608, - [SMALL_STATE(2435)] = 75643, - [SMALL_STATE(2436)] = 75678, - [SMALL_STATE(2437)] = 75715, - [SMALL_STATE(2438)] = 75760, - [SMALL_STATE(2439)] = 75791, - [SMALL_STATE(2440)] = 75822, - [SMALL_STATE(2441)] = 75853, - [SMALL_STATE(2442)] = 75884, - [SMALL_STATE(2443)] = 75917, - [SMALL_STATE(2444)] = 75952, - [SMALL_STATE(2445)] = 75997, - [SMALL_STATE(2446)] = 76030, - [SMALL_STATE(2447)] = 76061, - [SMALL_STATE(2448)] = 76096, - [SMALL_STATE(2449)] = 76137, - [SMALL_STATE(2450)] = 76170, - [SMALL_STATE(2451)] = 76201, - [SMALL_STATE(2452)] = 76232, - [SMALL_STATE(2453)] = 76265, - [SMALL_STATE(2454)] = 76296, - [SMALL_STATE(2455)] = 76327, - [SMALL_STATE(2456)] = 76364, - [SMALL_STATE(2457)] = 76403, - [SMALL_STATE(2458)] = 76434, - [SMALL_STATE(2459)] = 76465, - [SMALL_STATE(2460)] = 76498, - [SMALL_STATE(2461)] = 76531, - [SMALL_STATE(2462)] = 76564, - [SMALL_STATE(2463)] = 76594, - [SMALL_STATE(2464)] = 76624, - [SMALL_STATE(2465)] = 76676, - [SMALL_STATE(2466)] = 76706, - [SMALL_STATE(2467)] = 76742, - [SMALL_STATE(2468)] = 76792, - [SMALL_STATE(2469)] = 76822, - [SMALL_STATE(2470)] = 76862, - [SMALL_STATE(2471)] = 76898, - [SMALL_STATE(2472)] = 76930, - [SMALL_STATE(2473)] = 76960, - [SMALL_STATE(2474)] = 76990, - [SMALL_STATE(2475)] = 77026, - [SMALL_STATE(2476)] = 77058, - [SMALL_STATE(2477)] = 77088, - [SMALL_STATE(2478)] = 77124, - [SMALL_STATE(2479)] = 77156, - [SMALL_STATE(2480)] = 77192, - [SMALL_STATE(2481)] = 77226, - [SMALL_STATE(2482)] = 77258, - [SMALL_STATE(2483)] = 77292, - [SMALL_STATE(2484)] = 77322, - [SMALL_STATE(2485)] = 77374, - [SMALL_STATE(2486)] = 77426, - [SMALL_STATE(2487)] = 77456, - [SMALL_STATE(2488)] = 77486, - [SMALL_STATE(2489)] = 77520, - [SMALL_STATE(2490)] = 77556, - [SMALL_STATE(2491)] = 77586, - [SMALL_STATE(2492)] = 77624, - [SMALL_STATE(2493)] = 77658, - [SMALL_STATE(2494)] = 77690, - [SMALL_STATE(2495)] = 77728, - [SMALL_STATE(2496)] = 77780, - [SMALL_STATE(2497)] = 77810, - [SMALL_STATE(2498)] = 77842, - [SMALL_STATE(2499)] = 77880, - [SMALL_STATE(2500)] = 77912, - [SMALL_STATE(2501)] = 77944, - [SMALL_STATE(2502)] = 77976, - [SMALL_STATE(2503)] = 78008, - [SMALL_STATE(2504)] = 78040, - [SMALL_STATE(2505)] = 78074, - [SMALL_STATE(2506)] = 78112, - [SMALL_STATE(2507)] = 78144, - [SMALL_STATE(2508)] = 78174, - [SMALL_STATE(2509)] = 78204, - [SMALL_STATE(2510)] = 78242, - [SMALL_STATE(2511)] = 78274, - [SMALL_STATE(2512)] = 78304, - [SMALL_STATE(2513)] = 78336, - [SMALL_STATE(2514)] = 78372, - [SMALL_STATE(2515)] = 78402, - [SMALL_STATE(2516)] = 78433, - [SMALL_STATE(2517)] = 78470, - [SMALL_STATE(2518)] = 78499, - [SMALL_STATE(2519)] = 78530, - [SMALL_STATE(2520)] = 78567, - [SMALL_STATE(2521)] = 78598, - [SMALL_STATE(2522)] = 78635, - [SMALL_STATE(2523)] = 78664, - [SMALL_STATE(2524)] = 78695, - [SMALL_STATE(2525)] = 78726, - [SMALL_STATE(2526)] = 78757, - [SMALL_STATE(2527)] = 78786, - [SMALL_STATE(2528)] = 78817, - [SMALL_STATE(2529)] = 78848, - [SMALL_STATE(2530)] = 78877, - [SMALL_STATE(2531)] = 78906, - [SMALL_STATE(2532)] = 78935, - [SMALL_STATE(2533)] = 78964, - [SMALL_STATE(2534)] = 78995, - [SMALL_STATE(2535)] = 79026, - [SMALL_STATE(2536)] = 79057, - [SMALL_STATE(2537)] = 79086, - [SMALL_STATE(2538)] = 79119, - [SMALL_STATE(2539)] = 79156, - [SMALL_STATE(2540)] = 79193, - [SMALL_STATE(2541)] = 79222, - [SMALL_STATE(2542)] = 79251, - [SMALL_STATE(2543)] = 79280, - [SMALL_STATE(2544)] = 79313, - [SMALL_STATE(2545)] = 79342, - [SMALL_STATE(2546)] = 79379, - [SMALL_STATE(2547)] = 79410, - [SMALL_STATE(2548)] = 79441, - [SMALL_STATE(2549)] = 79470, - [SMALL_STATE(2550)] = 79507, - [SMALL_STATE(2551)] = 79540, - [SMALL_STATE(2552)] = 79571, - [SMALL_STATE(2553)] = 79600, - [SMALL_STATE(2554)] = 79637, - [SMALL_STATE(2555)] = 79674, - [SMALL_STATE(2556)] = 79705, - [SMALL_STATE(2557)] = 79740, - [SMALL_STATE(2558)] = 79777, - [SMALL_STATE(2559)] = 79806, - [SMALL_STATE(2560)] = 79835, - [SMALL_STATE(2561)] = 79872, - [SMALL_STATE(2562)] = 79901, - [SMALL_STATE(2563)] = 79932, - [SMALL_STATE(2564)] = 79965, - [SMALL_STATE(2565)] = 79996, - [SMALL_STATE(2566)] = 80033, - [SMALL_STATE(2567)] = 80062, - [SMALL_STATE(2568)] = 80093, - [SMALL_STATE(2569)] = 80122, - [SMALL_STATE(2570)] = 80151, - [SMALL_STATE(2571)] = 80180, - [SMALL_STATE(2572)] = 80209, - [SMALL_STATE(2573)] = 80240, - [SMALL_STATE(2574)] = 80277, - [SMALL_STATE(2575)] = 80308, - [SMALL_STATE(2576)] = 80341, - [SMALL_STATE(2577)] = 80372, - [SMALL_STATE(2578)] = 80403, - [SMALL_STATE(2579)] = 80434, - [SMALL_STATE(2580)] = 80465, - [SMALL_STATE(2581)] = 80496, - [SMALL_STATE(2582)] = 80527, - [SMALL_STATE(2583)] = 80559, - [SMALL_STATE(2584)] = 80587, - [SMALL_STATE(2585)] = 80631, - [SMALL_STATE(2586)] = 80667, - [SMALL_STATE(2587)] = 80697, - [SMALL_STATE(2588)] = 80727, - [SMALL_STATE(2589)] = 80755, - [SMALL_STATE(2590)] = 80783, - [SMALL_STATE(2591)] = 80821, - [SMALL_STATE(2592)] = 80849, - [SMALL_STATE(2593)] = 80893, - [SMALL_STATE(2594)] = 80923, - [SMALL_STATE(2595)] = 80959, - [SMALL_STATE(2596)] = 80987, - [SMALL_STATE(2597)] = 81015, - [SMALL_STATE(2598)] = 81049, - [SMALL_STATE(2599)] = 81081, - [SMALL_STATE(2600)] = 81117, - [SMALL_STATE(2601)] = 81147, - [SMALL_STATE(2602)] = 81175, - [SMALL_STATE(2603)] = 81211, - [SMALL_STATE(2604)] = 81241, - [SMALL_STATE(2605)] = 81273, - [SMALL_STATE(2606)] = 81305, - [SMALL_STATE(2607)] = 81337, - [SMALL_STATE(2608)] = 81369, - [SMALL_STATE(2609)] = 81401, - [SMALL_STATE(2610)] = 81429, - [SMALL_STATE(2611)] = 81457, - [SMALL_STATE(2612)] = 81485, - [SMALL_STATE(2613)] = 81521, - [SMALL_STATE(2614)] = 81551, - [SMALL_STATE(2615)] = 81581, - [SMALL_STATE(2616)] = 81609, - [SMALL_STATE(2617)] = 81637, - [SMALL_STATE(2618)] = 81673, - [SMALL_STATE(2619)] = 81703, - [SMALL_STATE(2620)] = 81733, - [SMALL_STATE(2621)] = 81761, - [SMALL_STATE(2622)] = 81805, - [SMALL_STATE(2623)] = 81833, - [SMALL_STATE(2624)] = 81877, - [SMALL_STATE(2625)] = 81905, - [SMALL_STATE(2626)] = 81941, - [SMALL_STATE(2627)] = 81971, - [SMALL_STATE(2628)] = 81999, - [SMALL_STATE(2629)] = 82035, - [SMALL_STATE(2630)] = 82067, - [SMALL_STATE(2631)] = 82103, - [SMALL_STATE(2632)] = 82147, - [SMALL_STATE(2633)] = 82177, - [SMALL_STATE(2634)] = 82213, - [SMALL_STATE(2635)] = 82247, - [SMALL_STATE(2636)] = 82283, - [SMALL_STATE(2637)] = 82319, - [SMALL_STATE(2638)] = 82355, - [SMALL_STATE(2639)] = 82385, - [SMALL_STATE(2640)] = 82415, - [SMALL_STATE(2641)] = 82443, - [SMALL_STATE(2642)] = 82473, - [SMALL_STATE(2643)] = 82501, - [SMALL_STATE(2644)] = 82528, - [SMALL_STATE(2645)] = 82555, - [SMALL_STATE(2646)] = 82586, - [SMALL_STATE(2647)] = 82619, - [SMALL_STATE(2648)] = 82650, - [SMALL_STATE(2649)] = 82681, - [SMALL_STATE(2650)] = 82708, - [SMALL_STATE(2651)] = 82735, - [SMALL_STATE(2652)] = 82766, - [SMALL_STATE(2653)] = 82793, - [SMALL_STATE(2654)] = 82820, - [SMALL_STATE(2655)] = 82851, - [SMALL_STATE(2656)] = 82882, - [SMALL_STATE(2657)] = 82911, - [SMALL_STATE(2658)] = 82940, - [SMALL_STATE(2659)] = 82973, - [SMALL_STATE(2660)] = 83006, - [SMALL_STATE(2661)] = 83037, - [SMALL_STATE(2662)] = 83068, - [SMALL_STATE(2663)] = 83095, - [SMALL_STATE(2664)] = 83122, - [SMALL_STATE(2665)] = 83151, - [SMALL_STATE(2666)] = 83180, - [SMALL_STATE(2667)] = 83211, - [SMALL_STATE(2668)] = 83242, - [SMALL_STATE(2669)] = 83269, - [SMALL_STATE(2670)] = 83296, - [SMALL_STATE(2671)] = 83323, - [SMALL_STATE(2672)] = 83350, - [SMALL_STATE(2673)] = 83381, - [SMALL_STATE(2674)] = 83412, - [SMALL_STATE(2675)] = 83441, - [SMALL_STATE(2676)] = 83470, - [SMALL_STATE(2677)] = 83503, - [SMALL_STATE(2678)] = 83536, - [SMALL_STATE(2679)] = 83567, - [SMALL_STATE(2680)] = 83598, - [SMALL_STATE(2681)] = 83631, - [SMALL_STATE(2682)] = 83662, - [SMALL_STATE(2683)] = 83693, - [SMALL_STATE(2684)] = 83724, - [SMALL_STATE(2685)] = 83751, - [SMALL_STATE(2686)] = 83780, - [SMALL_STATE(2687)] = 83809, - [SMALL_STATE(2688)] = 83840, - [SMALL_STATE(2689)] = 83871, - [SMALL_STATE(2690)] = 83898, - [SMALL_STATE(2691)] = 83925, - [SMALL_STATE(2692)] = 83954, - [SMALL_STATE(2693)] = 83983, - [SMALL_STATE(2694)] = 84014, - [SMALL_STATE(2695)] = 84045, - [SMALL_STATE(2696)] = 84076, - [SMALL_STATE(2697)] = 84105, - [SMALL_STATE(2698)] = 84132, - [SMALL_STATE(2699)] = 84159, - [SMALL_STATE(2700)] = 84190, - [SMALL_STATE(2701)] = 84217, - [SMALL_STATE(2702)] = 84244, - [SMALL_STATE(2703)] = 84271, - [SMALL_STATE(2704)] = 84302, - [SMALL_STATE(2705)] = 84333, - [SMALL_STATE(2706)] = 84364, - [SMALL_STATE(2707)] = 84395, - [SMALL_STATE(2708)] = 84426, - [SMALL_STATE(2709)] = 84457, - [SMALL_STATE(2710)] = 84486, - [SMALL_STATE(2711)] = 84517, - [SMALL_STATE(2712)] = 84548, - [SMALL_STATE(2713)] = 84579, - [SMALL_STATE(2714)] = 84610, - [SMALL_STATE(2715)] = 84639, - [SMALL_STATE(2716)] = 84668, - [SMALL_STATE(2717)] = 84695, - [SMALL_STATE(2718)] = 84726, - [SMALL_STATE(2719)] = 84759, - [SMALL_STATE(2720)] = 84792, - [SMALL_STATE(2721)] = 84823, - [SMALL_STATE(2722)] = 84856, - [SMALL_STATE(2723)] = 84887, - [SMALL_STATE(2724)] = 84918, - [SMALL_STATE(2725)] = 84949, - [SMALL_STATE(2726)] = 84982, - [SMALL_STATE(2727)] = 85015, - [SMALL_STATE(2728)] = 85042, - [SMALL_STATE(2729)] = 85073, - [SMALL_STATE(2730)] = 85100, - [SMALL_STATE(2731)] = 85127, - [SMALL_STATE(2732)] = 85154, - [SMALL_STATE(2733)] = 85185, - [SMALL_STATE(2734)] = 85216, - [SMALL_STATE(2735)] = 85247, - [SMALL_STATE(2736)] = 85280, - [SMALL_STATE(2737)] = 85311, - [SMALL_STATE(2738)] = 85342, - [SMALL_STATE(2739)] = 85373, - [SMALL_STATE(2740)] = 85404, - [SMALL_STATE(2741)] = 85435, - [SMALL_STATE(2742)] = 85468, - [SMALL_STATE(2743)] = 85501, - [SMALL_STATE(2744)] = 85532, - [SMALL_STATE(2745)] = 85563, - [SMALL_STATE(2746)] = 85588, - [SMALL_STATE(2747)] = 85621, - [SMALL_STATE(2748)] = 85648, - [SMALL_STATE(2749)] = 85675, - [SMALL_STATE(2750)] = 85706, - [SMALL_STATE(2751)] = 85737, - [SMALL_STATE(2752)] = 85770, - [SMALL_STATE(2753)] = 85803, - [SMALL_STATE(2754)] = 85836, - [SMALL_STATE(2755)] = 85863, - [SMALL_STATE(2756)] = 85890, - [SMALL_STATE(2757)] = 85917, - [SMALL_STATE(2758)] = 85944, - [SMALL_STATE(2759)] = 85971, - [SMALL_STATE(2760)] = 86002, - [SMALL_STATE(2761)] = 86035, - [SMALL_STATE(2762)] = 86062, - [SMALL_STATE(2763)] = 86093, - [SMALL_STATE(2764)] = 86128, - [SMALL_STATE(2765)] = 86155, - [SMALL_STATE(2766)] = 86186, - [SMALL_STATE(2767)] = 86215, - [SMALL_STATE(2768)] = 86244, - [SMALL_STATE(2769)] = 86271, - [SMALL_STATE(2770)] = 86298, - [SMALL_STATE(2771)] = 86333, - [SMALL_STATE(2772)] = 86366, - [SMALL_STATE(2773)] = 86399, - [SMALL_STATE(2774)] = 86430, - [SMALL_STATE(2775)] = 86461, - [SMALL_STATE(2776)] = 86488, - [SMALL_STATE(2777)] = 86523, - [SMALL_STATE(2778)] = 86558, - [SMALL_STATE(2779)] = 86591, - [SMALL_STATE(2780)] = 86616, - [SMALL_STATE(2781)] = 86641, - [SMALL_STATE(2782)] = 86668, - [SMALL_STATE(2783)] = 86693, - [SMALL_STATE(2784)] = 86718, - [SMALL_STATE(2785)] = 86745, - [SMALL_STATE(2786)] = 86780, - [SMALL_STATE(2787)] = 86805, - [SMALL_STATE(2788)] = 86842, - [SMALL_STATE(2789)] = 86873, - [SMALL_STATE(2790)] = 86904, - [SMALL_STATE(2791)] = 86935, - [SMALL_STATE(2792)] = 86970, - [SMALL_STATE(2793)] = 87005, - [SMALL_STATE(2794)] = 87040, - [SMALL_STATE(2795)] = 87075, - [SMALL_STATE(2796)] = 87110, - [SMALL_STATE(2797)] = 87145, - [SMALL_STATE(2798)] = 87170, - [SMALL_STATE(2799)] = 87195, - [SMALL_STATE(2800)] = 87220, - [SMALL_STATE(2801)] = 87247, - [SMALL_STATE(2802)] = 87274, - [SMALL_STATE(2803)] = 87303, - [SMALL_STATE(2804)] = 87332, - [SMALL_STATE(2805)] = 87363, - [SMALL_STATE(2806)] = 87388, - [SMALL_STATE(2807)] = 87415, - [SMALL_STATE(2808)] = 87442, - [SMALL_STATE(2809)] = 87467, - [SMALL_STATE(2810)] = 87494, - [SMALL_STATE(2811)] = 87521, - [SMALL_STATE(2812)] = 87550, - [SMALL_STATE(2813)] = 87579, - [SMALL_STATE(2814)] = 87608, - [SMALL_STATE(2815)] = 87637, - [SMALL_STATE(2816)] = 87664, - [SMALL_STATE(2817)] = 87694, - [SMALL_STATE(2818)] = 87720, - [SMALL_STATE(2819)] = 87752, - [SMALL_STATE(2820)] = 87778, - [SMALL_STATE(2821)] = 87804, - [SMALL_STATE(2822)] = 87834, - [SMALL_STATE(2823)] = 87860, - [SMALL_STATE(2824)] = 87890, - [SMALL_STATE(2825)] = 87920, - [SMALL_STATE(2826)] = 87948, - [SMALL_STATE(2827)] = 87974, - [SMALL_STATE(2828)] = 88004, - [SMALL_STATE(2829)] = 88050, - [SMALL_STATE(2830)] = 88076, - [SMALL_STATE(2831)] = 88106, - [SMALL_STATE(2832)] = 88130, - [SMALL_STATE(2833)] = 88160, - [SMALL_STATE(2834)] = 88186, - [SMALL_STATE(2835)] = 88216, - [SMALL_STATE(2836)] = 88242, - [SMALL_STATE(2837)] = 88268, - [SMALL_STATE(2838)] = 88298, - [SMALL_STATE(2839)] = 88328, - [SMALL_STATE(2840)] = 88356, - [SMALL_STATE(2841)] = 88384, - [SMALL_STATE(2842)] = 88408, - [SMALL_STATE(2843)] = 88434, - [SMALL_STATE(2844)] = 88460, - [SMALL_STATE(2845)] = 88484, - [SMALL_STATE(2846)] = 88508, - [SMALL_STATE(2847)] = 88540, - [SMALL_STATE(2848)] = 88592, - [SMALL_STATE(2849)] = 88636, - [SMALL_STATE(2850)] = 88660, - [SMALL_STATE(2851)] = 88684, - [SMALL_STATE(2852)] = 88708, - [SMALL_STATE(2853)] = 88760, - [SMALL_STATE(2854)] = 88784, - [SMALL_STATE(2855)] = 88808, - [SMALL_STATE(2856)] = 88832, - [SMALL_STATE(2857)] = 88858, - [SMALL_STATE(2858)] = 88884, - [SMALL_STATE(2859)] = 88910, - [SMALL_STATE(2860)] = 88938, - [SMALL_STATE(2861)] = 88966, - [SMALL_STATE(2862)] = 88990, - [SMALL_STATE(2863)] = 89014, - [SMALL_STATE(2864)] = 89040, - [SMALL_STATE(2865)] = 89066, - [SMALL_STATE(2866)] = 89092, - [SMALL_STATE(2867)] = 89122, - [SMALL_STATE(2868)] = 89150, - [SMALL_STATE(2869)] = 89176, - [SMALL_STATE(2870)] = 89202, - [SMALL_STATE(2871)] = 89228, - [SMALL_STATE(2872)] = 89258, - [SMALL_STATE(2873)] = 89288, - [SMALL_STATE(2874)] = 89318, - [SMALL_STATE(2875)] = 89344, - [SMALL_STATE(2876)] = 89374, - [SMALL_STATE(2877)] = 89404, - [SMALL_STATE(2878)] = 89434, - [SMALL_STATE(2879)] = 89464, - [SMALL_STATE(2880)] = 89516, - [SMALL_STATE(2881)] = 89568, - [SMALL_STATE(2882)] = 89596, - [SMALL_STATE(2883)] = 89626, - [SMALL_STATE(2884)] = 89654, - [SMALL_STATE(2885)] = 89684, - [SMALL_STATE(2886)] = 89710, - [SMALL_STATE(2887)] = 89740, - [SMALL_STATE(2888)] = 89792, - [SMALL_STATE(2889)] = 89822, - [SMALL_STATE(2890)] = 89874, - [SMALL_STATE(2891)] = 89902, - [SMALL_STATE(2892)] = 89926, - [SMALL_STATE(2893)] = 89966, - [SMALL_STATE(2894)] = 89996, - [SMALL_STATE(2895)] = 90026, - [SMALL_STATE(2896)] = 90058, - [SMALL_STATE(2897)] = 90086, - [SMALL_STATE(2898)] = 90112, - [SMALL_STATE(2899)] = 90140, - [SMALL_STATE(2900)] = 90166, - [SMALL_STATE(2901)] = 90192, - [SMALL_STATE(2902)] = 90244, - [SMALL_STATE(2903)] = 90296, - [SMALL_STATE(2904)] = 90322, - [SMALL_STATE(2905)] = 90348, - [SMALL_STATE(2906)] = 90376, - [SMALL_STATE(2907)] = 90406, - [SMALL_STATE(2908)] = 90432, - [SMALL_STATE(2909)] = 90458, - [SMALL_STATE(2910)] = 90488, - [SMALL_STATE(2911)] = 90540, - [SMALL_STATE(2912)] = 90572, - [SMALL_STATE(2913)] = 90624, - [SMALL_STATE(2914)] = 90654, - [SMALL_STATE(2915)] = 90680, - [SMALL_STATE(2916)] = 90708, - [SMALL_STATE(2917)] = 90737, - [SMALL_STATE(2918)] = 90766, - [SMALL_STATE(2919)] = 90797, - [SMALL_STATE(2920)] = 90826, - [SMALL_STATE(2921)] = 90851, - [SMALL_STATE(2922)] = 90876, - [SMALL_STATE(2923)] = 90901, - [SMALL_STATE(2924)] = 90930, - [SMALL_STATE(2925)] = 90955, - [SMALL_STATE(2926)] = 90980, - [SMALL_STATE(2927)] = 91007, - [SMALL_STATE(2928)] = 91036, - [SMALL_STATE(2929)] = 91065, - [SMALL_STATE(2930)] = 91094, - [SMALL_STATE(2931)] = 91119, - [SMALL_STATE(2932)] = 91144, - [SMALL_STATE(2933)] = 91169, - [SMALL_STATE(2934)] = 91194, - [SMALL_STATE(2935)] = 91219, - [SMALL_STATE(2936)] = 91244, - [SMALL_STATE(2937)] = 91269, - [SMALL_STATE(2938)] = 91298, - [SMALL_STATE(2939)] = 91329, - [SMALL_STATE(2940)] = 91352, - [SMALL_STATE(2941)] = 91377, - [SMALL_STATE(2942)] = 91414, - [SMALL_STATE(2943)] = 91439, - [SMALL_STATE(2944)] = 91464, - [SMALL_STATE(2945)] = 91493, - [SMALL_STATE(2946)] = 91522, - [SMALL_STATE(2947)] = 91551, - [SMALL_STATE(2948)] = 91576, - [SMALL_STATE(2949)] = 91605, - [SMALL_STATE(2950)] = 91648, - [SMALL_STATE(2951)] = 91677, - [SMALL_STATE(2952)] = 91702, - [SMALL_STATE(2953)] = 91727, - [SMALL_STATE(2954)] = 91758, - [SMALL_STATE(2955)] = 91783, - [SMALL_STATE(2956)] = 91808, - [SMALL_STATE(2957)] = 91833, - [SMALL_STATE(2958)] = 91862, - [SMALL_STATE(2959)] = 91887, - [SMALL_STATE(2960)] = 91912, - [SMALL_STATE(2961)] = 91955, - [SMALL_STATE(2962)] = 91984, - [SMALL_STATE(2963)] = 92013, - [SMALL_STATE(2964)] = 92042, - [SMALL_STATE(2965)] = 92071, - [SMALL_STATE(2966)] = 92096, - [SMALL_STATE(2967)] = 92125, - [SMALL_STATE(2968)] = 92150, - [SMALL_STATE(2969)] = 92175, - [SMALL_STATE(2970)] = 92204, - [SMALL_STATE(2971)] = 92229, - [SMALL_STATE(2972)] = 92254, - [SMALL_STATE(2973)] = 92279, - [SMALL_STATE(2974)] = 92304, - [SMALL_STATE(2975)] = 92329, - [SMALL_STATE(2976)] = 92354, - [SMALL_STATE(2977)] = 92385, - [SMALL_STATE(2978)] = 92410, - [SMALL_STATE(2979)] = 92435, - [SMALL_STATE(2980)] = 92460, - [SMALL_STATE(2981)] = 92489, - [SMALL_STATE(2982)] = 92514, - [SMALL_STATE(2983)] = 92539, - [SMALL_STATE(2984)] = 92568, - [SMALL_STATE(2985)] = 92593, - [SMALL_STATE(2986)] = 92618, - [SMALL_STATE(2987)] = 92643, - [SMALL_STATE(2988)] = 92668, - [SMALL_STATE(2989)] = 92693, - [SMALL_STATE(2990)] = 92722, - [SMALL_STATE(2991)] = 92749, - [SMALL_STATE(2992)] = 92778, - [SMALL_STATE(2993)] = 92805, - [SMALL_STATE(2994)] = 92834, - [SMALL_STATE(2995)] = 92863, - [SMALL_STATE(2996)] = 92888, - [SMALL_STATE(2997)] = 92913, - [SMALL_STATE(2998)] = 92938, - [SMALL_STATE(2999)] = 92963, - [SMALL_STATE(3000)] = 93002, - [SMALL_STATE(3001)] = 93027, - [SMALL_STATE(3002)] = 93054, - [SMALL_STATE(3003)] = 93079, - [SMALL_STATE(3004)] = 93104, - [SMALL_STATE(3005)] = 93141, - [SMALL_STATE(3006)] = 93166, - [SMALL_STATE(3007)] = 93191, - [SMALL_STATE(3008)] = 93220, - [SMALL_STATE(3009)] = 93245, - [SMALL_STATE(3010)] = 93274, - [SMALL_STATE(3011)] = 93299, - [SMALL_STATE(3012)] = 93324, - [SMALL_STATE(3013)] = 93349, - [SMALL_STATE(3014)] = 93374, - [SMALL_STATE(3015)] = 93403, - [SMALL_STATE(3016)] = 93432, - [SMALL_STATE(3017)] = 93457, - [SMALL_STATE(3018)] = 93482, - [SMALL_STATE(3019)] = 93507, - [SMALL_STATE(3020)] = 93532, - [SMALL_STATE(3021)] = 93557, - [SMALL_STATE(3022)] = 93582, - [SMALL_STATE(3023)] = 93607, - [SMALL_STATE(3024)] = 93632, - [SMALL_STATE(3025)] = 93661, - [SMALL_STATE(3026)] = 93686, - [SMALL_STATE(3027)] = 93715, - [SMALL_STATE(3028)] = 93740, - [SMALL_STATE(3029)] = 93769, - [SMALL_STATE(3030)] = 93792, - [SMALL_STATE(3031)] = 93817, - [SMALL_STATE(3032)] = 93846, - [SMALL_STATE(3033)] = 93871, - [SMALL_STATE(3034)] = 93900, - [SMALL_STATE(3035)] = 93925, - [SMALL_STATE(3036)] = 93950, - [SMALL_STATE(3037)] = 93975, - [SMALL_STATE(3038)] = 94000, - [SMALL_STATE(3039)] = 94025, - [SMALL_STATE(3040)] = 94062, - [SMALL_STATE(3041)] = 94091, - [SMALL_STATE(3042)] = 94120, - [SMALL_STATE(3043)] = 94149, - [SMALL_STATE(3044)] = 94176, - [SMALL_STATE(3045)] = 94205, - [SMALL_STATE(3046)] = 94230, - [SMALL_STATE(3047)] = 94255, - [SMALL_STATE(3048)] = 94284, - [SMALL_STATE(3049)] = 94313, - [SMALL_STATE(3050)] = 94338, - [SMALL_STATE(3051)] = 94363, - [SMALL_STATE(3052)] = 94388, - [SMALL_STATE(3053)] = 94413, - [SMALL_STATE(3054)] = 94442, - [SMALL_STATE(3055)] = 94471, - [SMALL_STATE(3056)] = 94496, - [SMALL_STATE(3057)] = 94521, - [SMALL_STATE(3058)] = 94550, - [SMALL_STATE(3059)] = 94575, - [SMALL_STATE(3060)] = 94600, - [SMALL_STATE(3061)] = 94625, - [SMALL_STATE(3062)] = 94650, - [SMALL_STATE(3063)] = 94675, - [SMALL_STATE(3064)] = 94700, - [SMALL_STATE(3065)] = 94727, - [SMALL_STATE(3066)] = 94754, - [SMALL_STATE(3067)] = 94779, - [SMALL_STATE(3068)] = 94804, - [SMALL_STATE(3069)] = 94829, - [SMALL_STATE(3070)] = 94858, - [SMALL_STATE(3071)] = 94883, - [SMALL_STATE(3072)] = 94912, - [SMALL_STATE(3073)] = 94937, - [SMALL_STATE(3074)] = 94962, - [SMALL_STATE(3075)] = 94987, - [SMALL_STATE(3076)] = 95021, - [SMALL_STATE(3077)] = 95045, - [SMALL_STATE(3078)] = 95091, - [SMALL_STATE(3079)] = 95115, - [SMALL_STATE(3080)] = 95137, - [SMALL_STATE(3081)] = 95179, - [SMALL_STATE(3082)] = 95203, - [SMALL_STATE(3083)] = 95237, - [SMALL_STATE(3084)] = 95283, - [SMALL_STATE(3085)] = 95307, - [SMALL_STATE(3086)] = 95331, - [SMALL_STATE(3087)] = 95355, - [SMALL_STATE(3088)] = 95377, - [SMALL_STATE(3089)] = 95423, - [SMALL_STATE(3090)] = 95447, - [SMALL_STATE(3091)] = 95487, - [SMALL_STATE(3092)] = 95511, - [SMALL_STATE(3093)] = 95535, - [SMALL_STATE(3094)] = 95559, - [SMALL_STATE(3095)] = 95583, - [SMALL_STATE(3096)] = 95607, - [SMALL_STATE(3097)] = 95631, - [SMALL_STATE(3098)] = 95655, - [SMALL_STATE(3099)] = 95679, - [SMALL_STATE(3100)] = 95719, - [SMALL_STATE(3101)] = 95743, - [SMALL_STATE(3102)] = 95767, - [SMALL_STATE(3103)] = 95789, - [SMALL_STATE(3104)] = 95813, - [SMALL_STATE(3105)] = 95837, - [SMALL_STATE(3106)] = 95861, - [SMALL_STATE(3107)] = 95885, - [SMALL_STATE(3108)] = 95909, - [SMALL_STATE(3109)] = 95949, - [SMALL_STATE(3110)] = 95971, - [SMALL_STATE(3111)] = 95995, - [SMALL_STATE(3112)] = 96019, - [SMALL_STATE(3113)] = 96043, - [SMALL_STATE(3114)] = 96065, - [SMALL_STATE(3115)] = 96087, - [SMALL_STATE(3116)] = 96109, - [SMALL_STATE(3117)] = 96133, - [SMALL_STATE(3118)] = 96159, - [SMALL_STATE(3119)] = 96181, - [SMALL_STATE(3120)] = 96221, - [SMALL_STATE(3121)] = 96245, - [SMALL_STATE(3122)] = 96269, - [SMALL_STATE(3123)] = 96293, - [SMALL_STATE(3124)] = 96317, - [SMALL_STATE(3125)] = 96341, - [SMALL_STATE(3126)] = 96365, - [SMALL_STATE(3127)] = 96389, - [SMALL_STATE(3128)] = 96429, - [SMALL_STATE(3129)] = 96455, - [SMALL_STATE(3130)] = 96479, - [SMALL_STATE(3131)] = 96503, - [SMALL_STATE(3132)] = 96527, - [SMALL_STATE(3133)] = 96551, - [SMALL_STATE(3134)] = 96575, - [SMALL_STATE(3135)] = 96599, - [SMALL_STATE(3136)] = 96623, - [SMALL_STATE(3137)] = 96645, - [SMALL_STATE(3138)] = 96669, - [SMALL_STATE(3139)] = 96693, - [SMALL_STATE(3140)] = 96717, - [SMALL_STATE(3141)] = 96741, - [SMALL_STATE(3142)] = 96765, - [SMALL_STATE(3143)] = 96789, - [SMALL_STATE(3144)] = 96813, - [SMALL_STATE(3145)] = 96837, - [SMALL_STATE(3146)] = 96859, - [SMALL_STATE(3147)] = 96881, - [SMALL_STATE(3148)] = 96905, - [SMALL_STATE(3149)] = 96929, - [SMALL_STATE(3150)] = 96965, - [SMALL_STATE(3151)] = 96989, - [SMALL_STATE(3152)] = 97035, - [SMALL_STATE(3153)] = 97059, - [SMALL_STATE(3154)] = 97083, - [SMALL_STATE(3155)] = 97117, - [SMALL_STATE(3156)] = 97141, - [SMALL_STATE(3157)] = 97165, - [SMALL_STATE(3158)] = 97189, - [SMALL_STATE(3159)] = 97213, - [SMALL_STATE(3160)] = 97237, - [SMALL_STATE(3161)] = 97271, - [SMALL_STATE(3162)] = 97293, - [SMALL_STATE(3163)] = 97317, - [SMALL_STATE(3164)] = 97341, - [SMALL_STATE(3165)] = 97377, - [SMALL_STATE(3166)] = 97401, - [SMALL_STATE(3167)] = 97425, - [SMALL_STATE(3168)] = 97447, - [SMALL_STATE(3169)] = 97471, - [SMALL_STATE(3170)] = 97493, - [SMALL_STATE(3171)] = 97517, - [SMALL_STATE(3172)] = 97563, - [SMALL_STATE(3173)] = 97609, - [SMALL_STATE(3174)] = 97633, - [SMALL_STATE(3175)] = 97679, - [SMALL_STATE(3176)] = 97719, - [SMALL_STATE(3177)] = 97743, - [SMALL_STATE(3178)] = 97767, - [SMALL_STATE(3179)] = 97809, - [SMALL_STATE(3180)] = 97855, - [SMALL_STATE(3181)] = 97879, - [SMALL_STATE(3182)] = 97903, - [SMALL_STATE(3183)] = 97927, - [SMALL_STATE(3184)] = 97955, - [SMALL_STATE(3185)] = 97983, - [SMALL_STATE(3186)] = 98011, - [SMALL_STATE(3187)] = 98039, - [SMALL_STATE(3188)] = 98067, - [SMALL_STATE(3189)] = 98095, - [SMALL_STATE(3190)] = 98123, - [SMALL_STATE(3191)] = 98151, - [SMALL_STATE(3192)] = 98179, - [SMALL_STATE(3193)] = 98207, - [SMALL_STATE(3194)] = 98235, - [SMALL_STATE(3195)] = 98263, - [SMALL_STATE(3196)] = 98287, - [SMALL_STATE(3197)] = 98311, - [SMALL_STATE(3198)] = 98335, - [SMALL_STATE(3199)] = 98381, - [SMALL_STATE(3200)] = 98405, - [SMALL_STATE(3201)] = 98445, - [SMALL_STATE(3202)] = 98469, - [SMALL_STATE(3203)] = 98515, - [SMALL_STATE(3204)] = 98539, - [SMALL_STATE(3205)] = 98563, - [SMALL_STATE(3206)] = 98587, - [SMALL_STATE(3207)] = 98611, - [SMALL_STATE(3208)] = 98633, - [SMALL_STATE(3209)] = 98657, - [SMALL_STATE(3210)] = 98679, - [SMALL_STATE(3211)] = 98703, - [SMALL_STATE(3212)] = 98727, - [SMALL_STATE(3213)] = 98751, - [SMALL_STATE(3214)] = 98775, - [SMALL_STATE(3215)] = 98802, - [SMALL_STATE(3216)] = 98823, - [SMALL_STATE(3217)] = 98862, - [SMALL_STATE(3218)] = 98883, - [SMALL_STATE(3219)] = 98904, - [SMALL_STATE(3220)] = 98927, - [SMALL_STATE(3221)] = 98950, - [SMALL_STATE(3222)] = 98973, - [SMALL_STATE(3223)] = 98994, - [SMALL_STATE(3224)] = 99015, - [SMALL_STATE(3225)] = 99036, - [SMALL_STATE(3226)] = 99057, - [SMALL_STATE(3227)] = 99080, - [SMALL_STATE(3228)] = 99107, - [SMALL_STATE(3229)] = 99134, - [SMALL_STATE(3230)] = 99155, - [SMALL_STATE(3231)] = 99176, - [SMALL_STATE(3232)] = 99199, - [SMALL_STATE(3233)] = 99220, - [SMALL_STATE(3234)] = 99243, - [SMALL_STATE(3235)] = 99266, - [SMALL_STATE(3236)] = 99303, - [SMALL_STATE(3237)] = 99340, - [SMALL_STATE(3238)] = 99377, - [SMALL_STATE(3239)] = 99414, - [SMALL_STATE(3240)] = 99437, - [SMALL_STATE(3241)] = 99474, - [SMALL_STATE(3242)] = 99497, - [SMALL_STATE(3243)] = 99520, - [SMALL_STATE(3244)] = 99543, - [SMALL_STATE(3245)] = 99566, - [SMALL_STATE(3246)] = 99587, - [SMALL_STATE(3247)] = 99608, - [SMALL_STATE(3248)] = 99629, - [SMALL_STATE(3249)] = 99656, - [SMALL_STATE(3250)] = 99677, - [SMALL_STATE(3251)] = 99698, - [SMALL_STATE(3252)] = 99721, - [SMALL_STATE(3253)] = 99742, - [SMALL_STATE(3254)] = 99769, - [SMALL_STATE(3255)] = 99796, - [SMALL_STATE(3256)] = 99817, - [SMALL_STATE(3257)] = 99840, - [SMALL_STATE(3258)] = 99861, - [SMALL_STATE(3259)] = 99882, - [SMALL_STATE(3260)] = 99903, - [SMALL_STATE(3261)] = 99926, - [SMALL_STATE(3262)] = 99947, - [SMALL_STATE(3263)] = 99968, - [SMALL_STATE(3264)] = 99989, - [SMALL_STATE(3265)] = 100026, - [SMALL_STATE(3266)] = 100047, - [SMALL_STATE(3267)] = 100068, - [SMALL_STATE(3268)] = 100095, - [SMALL_STATE(3269)] = 100124, - [SMALL_STATE(3270)] = 100147, - [SMALL_STATE(3271)] = 100174, - [SMALL_STATE(3272)] = 100197, - [SMALL_STATE(3273)] = 100218, - [SMALL_STATE(3274)] = 100257, - [SMALL_STATE(3275)] = 100280, - [SMALL_STATE(3276)] = 100303, - [SMALL_STATE(3277)] = 100330, - [SMALL_STATE(3278)] = 100367, - [SMALL_STATE(3279)] = 100388, - [SMALL_STATE(3280)] = 100411, - [SMALL_STATE(3281)] = 100432, - [SMALL_STATE(3282)] = 100453, - [SMALL_STATE(3283)] = 100474, - [SMALL_STATE(3284)] = 100495, - [SMALL_STATE(3285)] = 100518, - [SMALL_STATE(3286)] = 100541, - [SMALL_STATE(3287)] = 100580, - [SMALL_STATE(3288)] = 100601, - [SMALL_STATE(3289)] = 100622, - [SMALL_STATE(3290)] = 100643, - [SMALL_STATE(3291)] = 100666, - [SMALL_STATE(3292)] = 100687, - [SMALL_STATE(3293)] = 100724, - [SMALL_STATE(3294)] = 100755, - [SMALL_STATE(3295)] = 100776, - [SMALL_STATE(3296)] = 100797, - [SMALL_STATE(3297)] = 100818, - [SMALL_STATE(3298)] = 100839, - [SMALL_STATE(3299)] = 100866, - [SMALL_STATE(3300)] = 100887, - [SMALL_STATE(3301)] = 100910, - [SMALL_STATE(3302)] = 100931, - [SMALL_STATE(3303)] = 100952, - [SMALL_STATE(3304)] = 100973, - [SMALL_STATE(3305)] = 100996, - [SMALL_STATE(3306)] = 101019, - [SMALL_STATE(3307)] = 101044, - [SMALL_STATE(3308)] = 101065, - [SMALL_STATE(3309)] = 101086, - [SMALL_STATE(3310)] = 101107, - [SMALL_STATE(3311)] = 101128, - [SMALL_STATE(3312)] = 101149, - [SMALL_STATE(3313)] = 101170, - [SMALL_STATE(3314)] = 101191, - [SMALL_STATE(3315)] = 101214, - [SMALL_STATE(3316)] = 101235, - [SMALL_STATE(3317)] = 101256, - [SMALL_STATE(3318)] = 101283, - [SMALL_STATE(3319)] = 101310, - [SMALL_STATE(3320)] = 101337, - [SMALL_STATE(3321)] = 101364, - [SMALL_STATE(3322)] = 101391, - [SMALL_STATE(3323)] = 101418, - [SMALL_STATE(3324)] = 101445, - [SMALL_STATE(3325)] = 101472, - [SMALL_STATE(3326)] = 101499, - [SMALL_STATE(3327)] = 101526, - [SMALL_STATE(3328)] = 101553, - [SMALL_STATE(3329)] = 101576, - [SMALL_STATE(3330)] = 101597, - [SMALL_STATE(3331)] = 101618, - [SMALL_STATE(3332)] = 101655, - [SMALL_STATE(3333)] = 101676, - [SMALL_STATE(3334)] = 101697, - [SMALL_STATE(3335)] = 101718, - [SMALL_STATE(3336)] = 101755, - [SMALL_STATE(3337)] = 101792, - [SMALL_STATE(3338)] = 101829, - [SMALL_STATE(3339)] = 101866, - [SMALL_STATE(3340)] = 101905, - [SMALL_STATE(3341)] = 101926, - [SMALL_STATE(3342)] = 101947, - [SMALL_STATE(3343)] = 101986, - [SMALL_STATE(3344)] = 102009, - [SMALL_STATE(3345)] = 102048, - [SMALL_STATE(3346)] = 102071, - [SMALL_STATE(3347)] = 102094, - [SMALL_STATE(3348)] = 102117, - [SMALL_STATE(3349)] = 102144, - [SMALL_STATE(3350)] = 102165, - [SMALL_STATE(3351)] = 102192, - [SMALL_STATE(3352)] = 102215, - [SMALL_STATE(3353)] = 102236, - [SMALL_STATE(3354)] = 102275, - [SMALL_STATE(3355)] = 102296, - [SMALL_STATE(3356)] = 102328, - [SMALL_STATE(3357)] = 102350, - [SMALL_STATE(3358)] = 102386, - [SMALL_STATE(3359)] = 102410, - [SMALL_STATE(3360)] = 102442, - [SMALL_STATE(3361)] = 102466, - [SMALL_STATE(3362)] = 102500, - [SMALL_STATE(3363)] = 102526, - [SMALL_STATE(3364)] = 102552, - [SMALL_STATE(3365)] = 102578, - [SMALL_STATE(3366)] = 102602, - [SMALL_STATE(3367)] = 102638, - [SMALL_STATE(3368)] = 102664, - [SMALL_STATE(3369)] = 102688, - [SMALL_STATE(3370)] = 102718, - [SMALL_STATE(3371)] = 102742, - [SMALL_STATE(3372)] = 102766, - [SMALL_STATE(3373)] = 102788, - [SMALL_STATE(3374)] = 102812, - [SMALL_STATE(3375)] = 102838, - [SMALL_STATE(3376)] = 102872, - [SMALL_STATE(3377)] = 102894, - [SMALL_STATE(3378)] = 102916, - [SMALL_STATE(3379)] = 102944, - [SMALL_STATE(3380)] = 102966, - [SMALL_STATE(3381)] = 102992, - [SMALL_STATE(3382)] = 103024, - [SMALL_STATE(3383)] = 103046, - [SMALL_STATE(3384)] = 103068, - [SMALL_STATE(3385)] = 103094, - [SMALL_STATE(3386)] = 103128, - [SMALL_STATE(3387)] = 103158, - [SMALL_STATE(3388)] = 103194, - [SMALL_STATE(3389)] = 103218, - [SMALL_STATE(3390)] = 103254, - [SMALL_STATE(3391)] = 103280, - [SMALL_STATE(3392)] = 103306, - [SMALL_STATE(3393)] = 103332, - [SMALL_STATE(3394)] = 103364, - [SMALL_STATE(3395)] = 103390, - [SMALL_STATE(3396)] = 103412, - [SMALL_STATE(3397)] = 103444, - [SMALL_STATE(3398)] = 103470, - [SMALL_STATE(3399)] = 103494, - [SMALL_STATE(3400)] = 103518, - [SMALL_STATE(3401)] = 103544, - [SMALL_STATE(3402)] = 103577, - [SMALL_STATE(3403)] = 103608, - [SMALL_STATE(3404)] = 103639, - [SMALL_STATE(3405)] = 103670, - [SMALL_STATE(3406)] = 103703, - [SMALL_STATE(3407)] = 103736, - [SMALL_STATE(3408)] = 103757, - [SMALL_STATE(3409)] = 103788, - [SMALL_STATE(3410)] = 103821, - [SMALL_STATE(3411)] = 103854, - [SMALL_STATE(3412)] = 103887, - [SMALL_STATE(3413)] = 103910, - [SMALL_STATE(3414)] = 103935, - [SMALL_STATE(3415)] = 103956, - [SMALL_STATE(3416)] = 103987, - [SMALL_STATE(3417)] = 104012, - [SMALL_STATE(3418)] = 104033, - [SMALL_STATE(3419)] = 104068, - [SMALL_STATE(3420)] = 104091, - [SMALL_STATE(3421)] = 104124, - [SMALL_STATE(3422)] = 104157, - [SMALL_STATE(3423)] = 104188, - [SMALL_STATE(3424)] = 104213, - [SMALL_STATE(3425)] = 104234, - [SMALL_STATE(3426)] = 104255, - [SMALL_STATE(3427)] = 104280, - [SMALL_STATE(3428)] = 104311, - [SMALL_STATE(3429)] = 104342, - [SMALL_STATE(3430)] = 104363, - [SMALL_STATE(3431)] = 104396, - [SMALL_STATE(3432)] = 104429, - [SMALL_STATE(3433)] = 104460, - [SMALL_STATE(3434)] = 104491, - [SMALL_STATE(3435)] = 104522, - [SMALL_STATE(3436)] = 104545, - [SMALL_STATE(3437)] = 104578, - [SMALL_STATE(3438)] = 104611, - [SMALL_STATE(3439)] = 104642, - [SMALL_STATE(3440)] = 104667, - [SMALL_STATE(3441)] = 104690, - [SMALL_STATE(3442)] = 104721, - [SMALL_STATE(3443)] = 104754, - [SMALL_STATE(3444)] = 104787, - [SMALL_STATE(3445)] = 104818, - [SMALL_STATE(3446)] = 104841, - [SMALL_STATE(3447)] = 104874, - [SMALL_STATE(3448)] = 104907, - [SMALL_STATE(3449)] = 104928, - [SMALL_STATE(3450)] = 104961, - [SMALL_STATE(3451)] = 104984, - [SMALL_STATE(3452)] = 105017, - [SMALL_STATE(3453)] = 105038, - [SMALL_STATE(3454)] = 105071, - [SMALL_STATE(3455)] = 105102, - [SMALL_STATE(3456)] = 105135, - [SMALL_STATE(3457)] = 105170, - [SMALL_STATE(3458)] = 105203, - [SMALL_STATE(3459)] = 105236, - [SMALL_STATE(3460)] = 105267, - [SMALL_STATE(3461)] = 105290, - [SMALL_STATE(3462)] = 105323, - [SMALL_STATE(3463)] = 105356, - [SMALL_STATE(3464)] = 105389, - [SMALL_STATE(3465)] = 105422, - [SMALL_STATE(3466)] = 105455, - [SMALL_STATE(3467)] = 105488, - [SMALL_STATE(3468)] = 105519, - [SMALL_STATE(3469)] = 105552, - [SMALL_STATE(3470)] = 105585, - [SMALL_STATE(3471)] = 105610, - [SMALL_STATE(3472)] = 105643, - [SMALL_STATE(3473)] = 105676, - [SMALL_STATE(3474)] = 105709, - [SMALL_STATE(3475)] = 105742, - [SMALL_STATE(3476)] = 105775, - [SMALL_STATE(3477)] = 105806, - [SMALL_STATE(3478)] = 105837, - [SMALL_STATE(3479)] = 105870, - [SMALL_STATE(3480)] = 105901, - [SMALL_STATE(3481)] = 105926, - [SMALL_STATE(3482)] = 105947, - [SMALL_STATE(3483)] = 105972, - [SMALL_STATE(3484)] = 106003, - [SMALL_STATE(3485)] = 106024, - [SMALL_STATE(3486)] = 106045, - [SMALL_STATE(3487)] = 106076, - [SMALL_STATE(3488)] = 106105, - [SMALL_STATE(3489)] = 106126, - [SMALL_STATE(3490)] = 106147, - [SMALL_STATE(3491)] = 106178, - [SMALL_STATE(3492)] = 106198, - [SMALL_STATE(3493)] = 106218, - [SMALL_STATE(3494)] = 106244, - [SMALL_STATE(3495)] = 106272, - [SMALL_STATE(3496)] = 106300, - [SMALL_STATE(3497)] = 106326, - [SMALL_STATE(3498)] = 106346, - [SMALL_STATE(3499)] = 106374, - [SMALL_STATE(3500)] = 106402, - [SMALL_STATE(3501)] = 106424, - [SMALL_STATE(3502)] = 106452, - [SMALL_STATE(3503)] = 106480, - [SMALL_STATE(3504)] = 106508, - [SMALL_STATE(3505)] = 106536, - [SMALL_STATE(3506)] = 106556, - [SMALL_STATE(3507)] = 106584, - [SMALL_STATE(3508)] = 106612, - [SMALL_STATE(3509)] = 106632, - [SMALL_STATE(3510)] = 106660, - [SMALL_STATE(3511)] = 106688, - [SMALL_STATE(3512)] = 106708, - [SMALL_STATE(3513)] = 106736, - [SMALL_STATE(3514)] = 106764, - [SMALL_STATE(3515)] = 106788, - [SMALL_STATE(3516)] = 106816, - [SMALL_STATE(3517)] = 106844, - [SMALL_STATE(3518)] = 106872, - [SMALL_STATE(3519)] = 106896, - [SMALL_STATE(3520)] = 106924, - [SMALL_STATE(3521)] = 106952, - [SMALL_STATE(3522)] = 106980, - [SMALL_STATE(3523)] = 107008, - [SMALL_STATE(3524)] = 107036, - [SMALL_STATE(3525)] = 107064, - [SMALL_STATE(3526)] = 107092, - [SMALL_STATE(3527)] = 107122, - [SMALL_STATE(3528)] = 107150, - [SMALL_STATE(3529)] = 107170, - [SMALL_STATE(3530)] = 107198, - [SMALL_STATE(3531)] = 107226, - [SMALL_STATE(3532)] = 107254, - [SMALL_STATE(3533)] = 107272, - [SMALL_STATE(3534)] = 107300, - [SMALL_STATE(3535)] = 107322, - [SMALL_STATE(3536)] = 107350, - [SMALL_STATE(3537)] = 107372, - [SMALL_STATE(3538)] = 107400, - [SMALL_STATE(3539)] = 107420, - [SMALL_STATE(3540)] = 107448, - [SMALL_STATE(3541)] = 107476, - [SMALL_STATE(3542)] = 107496, - [SMALL_STATE(3543)] = 107516, - [SMALL_STATE(3544)] = 107544, - [SMALL_STATE(3545)] = 107572, - [SMALL_STATE(3546)] = 107600, - [SMALL_STATE(3547)] = 107620, - [SMALL_STATE(3548)] = 107648, - [SMALL_STATE(3549)] = 107670, - [SMALL_STATE(3550)] = 107690, - [SMALL_STATE(3551)] = 107718, - [SMALL_STATE(3552)] = 107746, - [SMALL_STATE(3553)] = 107774, - [SMALL_STATE(3554)] = 107796, - [SMALL_STATE(3555)] = 107820, - [SMALL_STATE(3556)] = 107850, - [SMALL_STATE(3557)] = 107878, - [SMALL_STATE(3558)] = 107906, - [SMALL_STATE(3559)] = 107934, - [SMALL_STATE(3560)] = 107958, - [SMALL_STATE(3561)] = 107978, - [SMALL_STATE(3562)] = 107998, - [SMALL_STATE(3563)] = 108024, - [SMALL_STATE(3564)] = 108046, - [SMALL_STATE(3565)] = 108070, - [SMALL_STATE(3566)] = 108092, - [SMALL_STATE(3567)] = 108120, - [SMALL_STATE(3568)] = 108148, - [SMALL_STATE(3569)] = 108168, - [SMALL_STATE(3570)] = 108190, - [SMALL_STATE(3571)] = 108208, - [SMALL_STATE(3572)] = 108232, - [SMALL_STATE(3573)] = 108258, - [SMALL_STATE(3574)] = 108283, - [SMALL_STATE(3575)] = 108308, - [SMALL_STATE(3576)] = 108329, - [SMALL_STATE(3577)] = 108354, - [SMALL_STATE(3578)] = 108377, - [SMALL_STATE(3579)] = 108396, - [SMALL_STATE(3580)] = 108415, - [SMALL_STATE(3581)] = 108440, - [SMALL_STATE(3582)] = 108469, - [SMALL_STATE(3583)] = 108488, - [SMALL_STATE(3584)] = 108507, - [SMALL_STATE(3585)] = 108526, - [SMALL_STATE(3586)] = 108545, - [SMALL_STATE(3587)] = 108570, - [SMALL_STATE(3588)] = 108595, - [SMALL_STATE(3589)] = 108614, - [SMALL_STATE(3590)] = 108635, - [SMALL_STATE(3591)] = 108656, - [SMALL_STATE(3592)] = 108681, - [SMALL_STATE(3593)] = 108704, - [SMALL_STATE(3594)] = 108725, - [SMALL_STATE(3595)] = 108750, - [SMALL_STATE(3596)] = 108771, - [SMALL_STATE(3597)] = 108790, - [SMALL_STATE(3598)] = 108809, - [SMALL_STATE(3599)] = 108836, - [SMALL_STATE(3600)] = 108867, - [SMALL_STATE(3601)] = 108890, - [SMALL_STATE(3602)] = 108911, - [SMALL_STATE(3603)] = 108936, - [SMALL_STATE(3604)] = 108963, - [SMALL_STATE(3605)] = 108984, - [SMALL_STATE(3606)] = 109009, - [SMALL_STATE(3607)] = 109036, - [SMALL_STATE(3608)] = 109061, - [SMALL_STATE(3609)] = 109088, - [SMALL_STATE(3610)] = 109111, - [SMALL_STATE(3611)] = 109136, - [SMALL_STATE(3612)] = 109159, - [SMALL_STATE(3613)] = 109184, - [SMALL_STATE(3614)] = 109209, - [SMALL_STATE(3615)] = 109228, - [SMALL_STATE(3616)] = 109253, - [SMALL_STATE(3617)] = 109272, - [SMALL_STATE(3618)] = 109291, - [SMALL_STATE(3619)] = 109310, - [SMALL_STATE(3620)] = 109335, - [SMALL_STATE(3621)] = 109362, - [SMALL_STATE(3622)] = 109389, - [SMALL_STATE(3623)] = 109411, - [SMALL_STATE(3624)] = 109439, - [SMALL_STATE(3625)] = 109461, - [SMALL_STATE(3626)] = 109481, - [SMALL_STATE(3627)] = 109499, - [SMALL_STATE(3628)] = 109527, - [SMALL_STATE(3629)] = 109555, - [SMALL_STATE(3630)] = 109583, - [SMALL_STATE(3631)] = 109605, - [SMALL_STATE(3632)] = 109627, - [SMALL_STATE(3633)] = 109653, - [SMALL_STATE(3634)] = 109681, - [SMALL_STATE(3635)] = 109701, - [SMALL_STATE(3636)] = 109721, - [SMALL_STATE(3637)] = 109741, - [SMALL_STATE(3638)] = 109763, - [SMALL_STATE(3639)] = 109781, - [SMALL_STATE(3640)] = 109807, - [SMALL_STATE(3641)] = 109831, - [SMALL_STATE(3642)] = 109859, - [SMALL_STATE(3643)] = 109887, - [SMALL_STATE(3644)] = 109911, - [SMALL_STATE(3645)] = 109931, - [SMALL_STATE(3646)] = 109949, - [SMALL_STATE(3647)] = 109977, - [SMALL_STATE(3648)] = 110003, - [SMALL_STATE(3649)] = 110031, - [SMALL_STATE(3650)] = 110049, - [SMALL_STATE(3651)] = 110077, - [SMALL_STATE(3652)] = 110105, - [SMALL_STATE(3653)] = 110123, - [SMALL_STATE(3654)] = 110147, - [SMALL_STATE(3655)] = 110175, - [SMALL_STATE(3656)] = 110201, - [SMALL_STATE(3657)] = 110229, - [SMALL_STATE(3658)] = 110257, - [SMALL_STATE(3659)] = 110285, - [SMALL_STATE(3660)] = 110313, - [SMALL_STATE(3661)] = 110337, - [SMALL_STATE(3662)] = 110355, - [SMALL_STATE(3663)] = 110383, - [SMALL_STATE(3664)] = 110401, - [SMALL_STATE(3665)] = 110427, - [SMALL_STATE(3666)] = 110455, - [SMALL_STATE(3667)] = 110483, - [SMALL_STATE(3668)] = 110509, - [SMALL_STATE(3669)] = 110535, - [SMALL_STATE(3670)] = 110561, - [SMALL_STATE(3671)] = 110589, - [SMALL_STATE(3672)] = 110617, - [SMALL_STATE(3673)] = 110643, - [SMALL_STATE(3674)] = 110669, - [SMALL_STATE(3675)] = 110697, - [SMALL_STATE(3676)] = 110725, - [SMALL_STATE(3677)] = 110751, - [SMALL_STATE(3678)] = 110773, - [SMALL_STATE(3679)] = 110795, - [SMALL_STATE(3680)] = 110817, - [SMALL_STATE(3681)] = 110839, - [SMALL_STATE(3682)] = 110861, - [SMALL_STATE(3683)] = 110887, - [SMALL_STATE(3684)] = 110905, - [SMALL_STATE(3685)] = 110931, - [SMALL_STATE(3686)] = 110959, - [SMALL_STATE(3687)] = 110987, - [SMALL_STATE(3688)] = 111009, - [SMALL_STATE(3689)] = 111037, - [SMALL_STATE(3690)] = 111065, - [SMALL_STATE(3691)] = 111089, - [SMALL_STATE(3692)] = 111117, - [SMALL_STATE(3693)] = 111143, - [SMALL_STATE(3694)] = 111169, - [SMALL_STATE(3695)] = 111187, - [SMALL_STATE(3696)] = 111215, - [SMALL_STATE(3697)] = 111241, - [SMALL_STATE(3698)] = 111269, - [SMALL_STATE(3699)] = 111293, - [SMALL_STATE(3700)] = 111317, - [SMALL_STATE(3701)] = 111339, - [SMALL_STATE(3702)] = 111367, - [SMALL_STATE(3703)] = 111395, - [SMALL_STATE(3704)] = 111419, - [SMALL_STATE(3705)] = 111443, - [SMALL_STATE(3706)] = 111461, - [SMALL_STATE(3707)] = 111489, - [SMALL_STATE(3708)] = 111517, - [SMALL_STATE(3709)] = 111545, - [SMALL_STATE(3710)] = 111573, - [SMALL_STATE(3711)] = 111599, - [SMALL_STATE(3712)] = 111625, - [SMALL_STATE(3713)] = 111651, - [SMALL_STATE(3714)] = 111679, - [SMALL_STATE(3715)] = 111699, - [SMALL_STATE(3716)] = 111719, - [SMALL_STATE(3717)] = 111747, - [SMALL_STATE(3718)] = 111765, - [SMALL_STATE(3719)] = 111791, - [SMALL_STATE(3720)] = 111817, - [SMALL_STATE(3721)] = 111845, - [SMALL_STATE(3722)] = 111873, - [SMALL_STATE(3723)] = 111901, - [SMALL_STATE(3724)] = 111921, - [SMALL_STATE(3725)] = 111949, - [SMALL_STATE(3726)] = 111977, - [SMALL_STATE(3727)] = 111995, - [SMALL_STATE(3728)] = 112023, - [SMALL_STATE(3729)] = 112051, - [SMALL_STATE(3730)] = 112079, - [SMALL_STATE(3731)] = 112097, - [SMALL_STATE(3732)] = 112122, - [SMALL_STATE(3733)] = 112145, - [SMALL_STATE(3734)] = 112166, - [SMALL_STATE(3735)] = 112189, - [SMALL_STATE(3736)] = 112212, - [SMALL_STATE(3737)] = 112235, - [SMALL_STATE(3738)] = 112258, - [SMALL_STATE(3739)] = 112279, - [SMALL_STATE(3740)] = 112300, - [SMALL_STATE(3741)] = 112317, - [SMALL_STATE(3742)] = 112334, - [SMALL_STATE(3743)] = 112355, - [SMALL_STATE(3744)] = 112380, - [SMALL_STATE(3745)] = 112405, - [SMALL_STATE(3746)] = 112430, - [SMALL_STATE(3747)] = 112451, - [SMALL_STATE(3748)] = 112474, - [SMALL_STATE(3749)] = 112497, - [SMALL_STATE(3750)] = 112520, - [SMALL_STATE(3751)] = 112541, - [SMALL_STATE(3752)] = 112564, - [SMALL_STATE(3753)] = 112585, - [SMALL_STATE(3754)] = 112604, - [SMALL_STATE(3755)] = 112623, - [SMALL_STATE(3756)] = 112644, - [SMALL_STATE(3757)] = 112665, - [SMALL_STATE(3758)] = 112686, - [SMALL_STATE(3759)] = 112705, - [SMALL_STATE(3760)] = 112724, - [SMALL_STATE(3761)] = 112747, - [SMALL_STATE(3762)] = 112770, - [SMALL_STATE(3763)] = 112795, - [SMALL_STATE(3764)] = 112818, - [SMALL_STATE(3765)] = 112841, - [SMALL_STATE(3766)] = 112862, - [SMALL_STATE(3767)] = 112883, - [SMALL_STATE(3768)] = 112908, - [SMALL_STATE(3769)] = 112927, - [SMALL_STATE(3770)] = 112946, - [SMALL_STATE(3771)] = 112971, - [SMALL_STATE(3772)] = 112996, - [SMALL_STATE(3773)] = 113019, - [SMALL_STATE(3774)] = 113044, - [SMALL_STATE(3775)] = 113067, - [SMALL_STATE(3776)] = 113092, - [SMALL_STATE(3777)] = 113117, - [SMALL_STATE(3778)] = 113142, - [SMALL_STATE(3779)] = 113165, - [SMALL_STATE(3780)] = 113190, - [SMALL_STATE(3781)] = 113211, - [SMALL_STATE(3782)] = 113234, - [SMALL_STATE(3783)] = 113257, - [SMALL_STATE(3784)] = 113280, - [SMALL_STATE(3785)] = 113303, - [SMALL_STATE(3786)] = 113328, - [SMALL_STATE(3787)] = 113353, - [SMALL_STATE(3788)] = 113376, - [SMALL_STATE(3789)] = 113399, - [SMALL_STATE(3790)] = 113422, - [SMALL_STATE(3791)] = 113445, - [SMALL_STATE(3792)] = 113460, - [SMALL_STATE(3793)] = 113479, - [SMALL_STATE(3794)] = 113504, - [SMALL_STATE(3795)] = 113519, - [SMALL_STATE(3796)] = 113534, - [SMALL_STATE(3797)] = 113559, - [SMALL_STATE(3798)] = 113580, - [SMALL_STATE(3799)] = 113595, - [SMALL_STATE(3800)] = 113610, - [SMALL_STATE(3801)] = 113625, - [SMALL_STATE(3802)] = 113644, - [SMALL_STATE(3803)] = 113669, - [SMALL_STATE(3804)] = 113688, - [SMALL_STATE(3805)] = 113713, - [SMALL_STATE(3806)] = 113734, - [SMALL_STATE(3807)] = 113755, - [SMALL_STATE(3808)] = 113776, - [SMALL_STATE(3809)] = 113799, - [SMALL_STATE(3810)] = 113822, - [SMALL_STATE(3811)] = 113841, - [SMALL_STATE(3812)] = 113862, - [SMALL_STATE(3813)] = 113881, - [SMALL_STATE(3814)] = 113900, - [SMALL_STATE(3815)] = 113921, - [SMALL_STATE(3816)] = 113946, - [SMALL_STATE(3817)] = 113971, - [SMALL_STATE(3818)] = 113994, - [SMALL_STATE(3819)] = 114017, - [SMALL_STATE(3820)] = 114040, - [SMALL_STATE(3821)] = 114063, - [SMALL_STATE(3822)] = 114084, - [SMALL_STATE(3823)] = 114109, - [SMALL_STATE(3824)] = 114132, - [SMALL_STATE(3825)] = 114155, - [SMALL_STATE(3826)] = 114178, - [SMALL_STATE(3827)] = 114201, - [SMALL_STATE(3828)] = 114224, - [SMALL_STATE(3829)] = 114247, - [SMALL_STATE(3830)] = 114270, - [SMALL_STATE(3831)] = 114293, - [SMALL_STATE(3832)] = 114316, - [SMALL_STATE(3833)] = 114339, - [SMALL_STATE(3834)] = 114362, - [SMALL_STATE(3835)] = 114385, - [SMALL_STATE(3836)] = 114408, - [SMALL_STATE(3837)] = 114431, - [SMALL_STATE(3838)] = 114454, - [SMALL_STATE(3839)] = 114475, - [SMALL_STATE(3840)] = 114500, - [SMALL_STATE(3841)] = 114523, - [SMALL_STATE(3842)] = 114546, - [SMALL_STATE(3843)] = 114569, - [SMALL_STATE(3844)] = 114590, - [SMALL_STATE(3845)] = 114611, - [SMALL_STATE(3846)] = 114630, - [SMALL_STATE(3847)] = 114651, - [SMALL_STATE(3848)] = 114676, - [SMALL_STATE(3849)] = 114695, - [SMALL_STATE(3850)] = 114716, - [SMALL_STATE(3851)] = 114735, - [SMALL_STATE(3852)] = 114756, - [SMALL_STATE(3853)] = 114777, - [SMALL_STATE(3854)] = 114796, - [SMALL_STATE(3855)] = 114813, - [SMALL_STATE(3856)] = 114830, - [SMALL_STATE(3857)] = 114847, - [SMALL_STATE(3858)] = 114870, - [SMALL_STATE(3859)] = 114893, - [SMALL_STATE(3860)] = 114916, - [SMALL_STATE(3861)] = 114937, - [SMALL_STATE(3862)] = 114958, - [SMALL_STATE(3863)] = 114979, - [SMALL_STATE(3864)] = 115000, - [SMALL_STATE(3865)] = 115025, - [SMALL_STATE(3866)] = 115050, - [SMALL_STATE(3867)] = 115075, - [SMALL_STATE(3868)] = 115098, - [SMALL_STATE(3869)] = 115119, - [SMALL_STATE(3870)] = 115140, - [SMALL_STATE(3871)] = 115161, - [SMALL_STATE(3872)] = 115180, - [SMALL_STATE(3873)] = 115201, - [SMALL_STATE(3874)] = 115220, - [SMALL_STATE(3875)] = 115245, - [SMALL_STATE(3876)] = 115270, - [SMALL_STATE(3877)] = 115295, - [SMALL_STATE(3878)] = 115316, - [SMALL_STATE(3879)] = 115335, - [SMALL_STATE(3880)] = 115354, - [SMALL_STATE(3881)] = 115375, - [SMALL_STATE(3882)] = 115400, - [SMALL_STATE(3883)] = 115425, - [SMALL_STATE(3884)] = 115444, - [SMALL_STATE(3885)] = 115460, - [SMALL_STATE(3886)] = 115476, - [SMALL_STATE(3887)] = 115496, - [SMALL_STATE(3888)] = 115516, - [SMALL_STATE(3889)] = 115536, - [SMALL_STATE(3890)] = 115552, - [SMALL_STATE(3891)] = 115572, - [SMALL_STATE(3892)] = 115588, - [SMALL_STATE(3893)] = 115608, - [SMALL_STATE(3894)] = 115630, - [SMALL_STATE(3895)] = 115648, - [SMALL_STATE(3896)] = 115668, - [SMALL_STATE(3897)] = 115688, - [SMALL_STATE(3898)] = 115704, - [SMALL_STATE(3899)] = 115720, - [SMALL_STATE(3900)] = 115742, - [SMALL_STATE(3901)] = 115762, - [SMALL_STATE(3902)] = 115778, - [SMALL_STATE(3903)] = 115800, - [SMALL_STATE(3904)] = 115822, - [SMALL_STATE(3905)] = 115838, - [SMALL_STATE(3906)] = 115854, - [SMALL_STATE(3907)] = 115870, - [SMALL_STATE(3908)] = 115888, - [SMALL_STATE(3909)] = 115904, - [SMALL_STATE(3910)] = 115918, - [SMALL_STATE(3911)] = 115932, - [SMALL_STATE(3912)] = 115952, - [SMALL_STATE(3913)] = 115972, - [SMALL_STATE(3914)] = 115994, - [SMALL_STATE(3915)] = 116016, - [SMALL_STATE(3916)] = 116038, - [SMALL_STATE(3917)] = 116058, - [SMALL_STATE(3918)] = 116072, - [SMALL_STATE(3919)] = 116094, - [SMALL_STATE(3920)] = 116112, - [SMALL_STATE(3921)] = 116134, - [SMALL_STATE(3922)] = 116148, - [SMALL_STATE(3923)] = 116166, - [SMALL_STATE(3924)] = 116180, - [SMALL_STATE(3925)] = 116196, - [SMALL_STATE(3926)] = 116216, - [SMALL_STATE(3927)] = 116238, - [SMALL_STATE(3928)] = 116260, - [SMALL_STATE(3929)] = 116278, - [SMALL_STATE(3930)] = 116296, - [SMALL_STATE(3931)] = 116312, - [SMALL_STATE(3932)] = 116328, - [SMALL_STATE(3933)] = 116348, - [SMALL_STATE(3934)] = 116368, - [SMALL_STATE(3935)] = 116388, - [SMALL_STATE(3936)] = 116410, - [SMALL_STATE(3937)] = 116430, - [SMALL_STATE(3938)] = 116450, - [SMALL_STATE(3939)] = 116472, - [SMALL_STATE(3940)] = 116488, - [SMALL_STATE(3941)] = 116506, - [SMALL_STATE(3942)] = 116522, - [SMALL_STATE(3943)] = 116542, - [SMALL_STATE(3944)] = 116564, - [SMALL_STATE(3945)] = 116578, - [SMALL_STATE(3946)] = 116598, - [SMALL_STATE(3947)] = 116618, - [SMALL_STATE(3948)] = 116640, - [SMALL_STATE(3949)] = 116662, - [SMALL_STATE(3950)] = 116684, - [SMALL_STATE(3951)] = 116706, - [SMALL_STATE(3952)] = 116726, - [SMALL_STATE(3953)] = 116748, - [SMALL_STATE(3954)] = 116770, - [SMALL_STATE(3955)] = 116788, - [SMALL_STATE(3956)] = 116806, - [SMALL_STATE(3957)] = 116824, - [SMALL_STATE(3958)] = 116846, - [SMALL_STATE(3959)] = 116864, - [SMALL_STATE(3960)] = 116884, - [SMALL_STATE(3961)] = 116906, - [SMALL_STATE(3962)] = 116924, - [SMALL_STATE(3963)] = 116940, - [SMALL_STATE(3964)] = 116956, - [SMALL_STATE(3965)] = 116978, - [SMALL_STATE(3966)] = 116994, - [SMALL_STATE(3967)] = 117014, - [SMALL_STATE(3968)] = 117032, - [SMALL_STATE(3969)] = 117052, - [SMALL_STATE(3970)] = 117070, - [SMALL_STATE(3971)] = 117090, - [SMALL_STATE(3972)] = 117110, - [SMALL_STATE(3973)] = 117126, - [SMALL_STATE(3974)] = 117140, - [SMALL_STATE(3975)] = 117160, - [SMALL_STATE(3976)] = 117180, - [SMALL_STATE(3977)] = 117200, - [SMALL_STATE(3978)] = 117220, - [SMALL_STATE(3979)] = 117240, - [SMALL_STATE(3980)] = 117260, - [SMALL_STATE(3981)] = 117280, - [SMALL_STATE(3982)] = 117300, - [SMALL_STATE(3983)] = 117320, - [SMALL_STATE(3984)] = 117340, - [SMALL_STATE(3985)] = 117354, - [SMALL_STATE(3986)] = 117376, - [SMALL_STATE(3987)] = 117398, - [SMALL_STATE(3988)] = 117420, - [SMALL_STATE(3989)] = 117442, - [SMALL_STATE(3990)] = 117460, - [SMALL_STATE(3991)] = 117476, - [SMALL_STATE(3992)] = 117498, - [SMALL_STATE(3993)] = 117514, - [SMALL_STATE(3994)] = 117534, - [SMALL_STATE(3995)] = 117550, - [SMALL_STATE(3996)] = 117566, - [SMALL_STATE(3997)] = 117584, - [SMALL_STATE(3998)] = 117604, - [SMALL_STATE(3999)] = 117622, - [SMALL_STATE(4000)] = 117638, - [SMALL_STATE(4001)] = 117660, - [SMALL_STATE(4002)] = 117676, - [SMALL_STATE(4003)] = 117698, - [SMALL_STATE(4004)] = 117720, - [SMALL_STATE(4005)] = 117742, - [SMALL_STATE(4006)] = 117764, - [SMALL_STATE(4007)] = 117780, - [SMALL_STATE(4008)] = 117802, - [SMALL_STATE(4009)] = 117818, - [SMALL_STATE(4010)] = 117838, - [SMALL_STATE(4011)] = 117856, - [SMALL_STATE(4012)] = 117872, - [SMALL_STATE(4013)] = 117894, - [SMALL_STATE(4014)] = 117916, - [SMALL_STATE(4015)] = 117936, - [SMALL_STATE(4016)] = 117956, - [SMALL_STATE(4017)] = 117972, - [SMALL_STATE(4018)] = 117992, - [SMALL_STATE(4019)] = 118010, - [SMALL_STATE(4020)] = 118032, - [SMALL_STATE(4021)] = 118050, - [SMALL_STATE(4022)] = 118066, - [SMALL_STATE(4023)] = 118084, - [SMALL_STATE(4024)] = 118104, - [SMALL_STATE(4025)] = 118126, - [SMALL_STATE(4026)] = 118146, - [SMALL_STATE(4027)] = 118166, - [SMALL_STATE(4028)] = 118186, - [SMALL_STATE(4029)] = 118204, - [SMALL_STATE(4030)] = 118224, - [SMALL_STATE(4031)] = 118242, - [SMALL_STATE(4032)] = 118262, - [SMALL_STATE(4033)] = 118278, - [SMALL_STATE(4034)] = 118298, - [SMALL_STATE(4035)] = 118314, - [SMALL_STATE(4036)] = 118336, - [SMALL_STATE(4037)] = 118356, - [SMALL_STATE(4038)] = 118376, - [SMALL_STATE(4039)] = 118394, - [SMALL_STATE(4040)] = 118416, - [SMALL_STATE(4041)] = 118436, - [SMALL_STATE(4042)] = 118454, - [SMALL_STATE(4043)] = 118470, - [SMALL_STATE(4044)] = 118490, - [SMALL_STATE(4045)] = 118508, - [SMALL_STATE(4046)] = 118526, - [SMALL_STATE(4047)] = 118548, - [SMALL_STATE(4048)] = 118568, - [SMALL_STATE(4049)] = 118585, - [SMALL_STATE(4050)] = 118598, - [SMALL_STATE(4051)] = 118613, - [SMALL_STATE(4052)] = 118626, - [SMALL_STATE(4053)] = 118639, - [SMALL_STATE(4054)] = 118652, - [SMALL_STATE(4055)] = 118665, - [SMALL_STATE(4056)] = 118678, - [SMALL_STATE(4057)] = 118691, - [SMALL_STATE(4058)] = 118704, - [SMALL_STATE(4059)] = 118717, - [SMALL_STATE(4060)] = 118730, - [SMALL_STATE(4061)] = 118743, - [SMALL_STATE(4062)] = 118756, - [SMALL_STATE(4063)] = 118769, - [SMALL_STATE(4064)] = 118782, - [SMALL_STATE(4065)] = 118795, - [SMALL_STATE(4066)] = 118808, - [SMALL_STATE(4067)] = 118821, - [SMALL_STATE(4068)] = 118834, - [SMALL_STATE(4069)] = 118847, - [SMALL_STATE(4070)] = 118860, - [SMALL_STATE(4071)] = 118873, - [SMALL_STATE(4072)] = 118888, - [SMALL_STATE(4073)] = 118907, - [SMALL_STATE(4074)] = 118920, - [SMALL_STATE(4075)] = 118933, - [SMALL_STATE(4076)] = 118946, - [SMALL_STATE(4077)] = 118959, - [SMALL_STATE(4078)] = 118972, - [SMALL_STATE(4079)] = 118985, - [SMALL_STATE(4080)] = 119000, - [SMALL_STATE(4081)] = 119015, - [SMALL_STATE(4082)] = 119028, - [SMALL_STATE(4083)] = 119041, - [SMALL_STATE(4084)] = 119054, - [SMALL_STATE(4085)] = 119067, - [SMALL_STATE(4086)] = 119080, - [SMALL_STATE(4087)] = 119093, - [SMALL_STATE(4088)] = 119106, - [SMALL_STATE(4089)] = 119119, - [SMALL_STATE(4090)] = 119138, - [SMALL_STATE(4091)] = 119151, - [SMALL_STATE(4092)] = 119164, - [SMALL_STATE(4093)] = 119177, - [SMALL_STATE(4094)] = 119190, - [SMALL_STATE(4095)] = 119203, - [SMALL_STATE(4096)] = 119216, - [SMALL_STATE(4097)] = 119229, - [SMALL_STATE(4098)] = 119242, - [SMALL_STATE(4099)] = 119255, - [SMALL_STATE(4100)] = 119268, - [SMALL_STATE(4101)] = 119283, - [SMALL_STATE(4102)] = 119298, - [SMALL_STATE(4103)] = 119313, - [SMALL_STATE(4104)] = 119328, - [SMALL_STATE(4105)] = 119341, - [SMALL_STATE(4106)] = 119354, - [SMALL_STATE(4107)] = 119367, - [SMALL_STATE(4108)] = 119380, - [SMALL_STATE(4109)] = 119393, - [SMALL_STATE(4110)] = 119406, - [SMALL_STATE(4111)] = 119419, - [SMALL_STATE(4112)] = 119432, - [SMALL_STATE(4113)] = 119445, - [SMALL_STATE(4114)] = 119458, - [SMALL_STATE(4115)] = 119473, - [SMALL_STATE(4116)] = 119488, - [SMALL_STATE(4117)] = 119505, - [SMALL_STATE(4118)] = 119518, - [SMALL_STATE(4119)] = 119537, - [SMALL_STATE(4120)] = 119550, - [SMALL_STATE(4121)] = 119563, - [SMALL_STATE(4122)] = 119576, - [SMALL_STATE(4123)] = 119589, - [SMALL_STATE(4124)] = 119602, - [SMALL_STATE(4125)] = 119615, - [SMALL_STATE(4126)] = 119628, - [SMALL_STATE(4127)] = 119641, - [SMALL_STATE(4128)] = 119660, - [SMALL_STATE(4129)] = 119673, - [SMALL_STATE(4130)] = 119688, - [SMALL_STATE(4131)] = 119703, - [SMALL_STATE(4132)] = 119722, - [SMALL_STATE(4133)] = 119735, - [SMALL_STATE(4134)] = 119754, - [SMALL_STATE(4135)] = 119771, - [SMALL_STATE(4136)] = 119788, - [SMALL_STATE(4137)] = 119805, - [SMALL_STATE(4138)] = 119824, - [SMALL_STATE(4139)] = 119841, - [SMALL_STATE(4140)] = 119858, - [SMALL_STATE(4141)] = 119871, - [SMALL_STATE(4142)] = 119884, - [SMALL_STATE(4143)] = 119903, - [SMALL_STATE(4144)] = 119916, - [SMALL_STATE(4145)] = 119935, - [SMALL_STATE(4146)] = 119952, - [SMALL_STATE(4147)] = 119967, - [SMALL_STATE(4148)] = 119986, - [SMALL_STATE(4149)] = 120005, - [SMALL_STATE(4150)] = 120022, - [SMALL_STATE(4151)] = 120041, - [SMALL_STATE(4152)] = 120058, - [SMALL_STATE(4153)] = 120073, - [SMALL_STATE(4154)] = 120092, - [SMALL_STATE(4155)] = 120107, - [SMALL_STATE(4156)] = 120122, - [SMALL_STATE(4157)] = 120135, - [SMALL_STATE(4158)] = 120154, - [SMALL_STATE(4159)] = 120167, - [SMALL_STATE(4160)] = 120186, - [SMALL_STATE(4161)] = 120205, - [SMALL_STATE(4162)] = 120224, - [SMALL_STATE(4163)] = 120243, - [SMALL_STATE(4164)] = 120262, - [SMALL_STATE(4165)] = 120275, - [SMALL_STATE(4166)] = 120290, - [SMALL_STATE(4167)] = 120305, - [SMALL_STATE(4168)] = 120322, - [SMALL_STATE(4169)] = 120337, - [SMALL_STATE(4170)] = 120352, - [SMALL_STATE(4171)] = 120365, - [SMALL_STATE(4172)] = 120382, - [SMALL_STATE(4173)] = 120397, - [SMALL_STATE(4174)] = 120416, - [SMALL_STATE(4175)] = 120429, - [SMALL_STATE(4176)] = 120442, - [SMALL_STATE(4177)] = 120457, - [SMALL_STATE(4178)] = 120472, - [SMALL_STATE(4179)] = 120491, - [SMALL_STATE(4180)] = 120506, - [SMALL_STATE(4181)] = 120519, - [SMALL_STATE(4182)] = 120534, - [SMALL_STATE(4183)] = 120549, - [SMALL_STATE(4184)] = 120566, - [SMALL_STATE(4185)] = 120583, - [SMALL_STATE(4186)] = 120600, - [SMALL_STATE(4187)] = 120615, - [SMALL_STATE(4188)] = 120630, - [SMALL_STATE(4189)] = 120645, - [SMALL_STATE(4190)] = 120658, - [SMALL_STATE(4191)] = 120677, - [SMALL_STATE(4192)] = 120692, - [SMALL_STATE(4193)] = 120705, - [SMALL_STATE(4194)] = 120718, - [SMALL_STATE(4195)] = 120737, - [SMALL_STATE(4196)] = 120752, - [SMALL_STATE(4197)] = 120771, - [SMALL_STATE(4198)] = 120788, - [SMALL_STATE(4199)] = 120803, - [SMALL_STATE(4200)] = 120818, - [SMALL_STATE(4201)] = 120831, - [SMALL_STATE(4202)] = 120850, - [SMALL_STATE(4203)] = 120865, - [SMALL_STATE(4204)] = 120878, - [SMALL_STATE(4205)] = 120891, - [SMALL_STATE(4206)] = 120906, - [SMALL_STATE(4207)] = 120921, - [SMALL_STATE(4208)] = 120940, - [SMALL_STATE(4209)] = 120955, - [SMALL_STATE(4210)] = 120970, - [SMALL_STATE(4211)] = 120985, - [SMALL_STATE(4212)] = 121004, - [SMALL_STATE(4213)] = 121019, - [SMALL_STATE(4214)] = 121034, - [SMALL_STATE(4215)] = 121047, - [SMALL_STATE(4216)] = 121062, - [SMALL_STATE(4217)] = 121077, - [SMALL_STATE(4218)] = 121092, - [SMALL_STATE(4219)] = 121107, - [SMALL_STATE(4220)] = 121122, - [SMALL_STATE(4221)] = 121139, - [SMALL_STATE(4222)] = 121154, - [SMALL_STATE(4223)] = 121169, - [SMALL_STATE(4224)] = 121184, - [SMALL_STATE(4225)] = 121199, - [SMALL_STATE(4226)] = 121214, - [SMALL_STATE(4227)] = 121229, - [SMALL_STATE(4228)] = 121244, - [SMALL_STATE(4229)] = 121263, - [SMALL_STATE(4230)] = 121282, - [SMALL_STATE(4231)] = 121301, - [SMALL_STATE(4232)] = 121320, - [SMALL_STATE(4233)] = 121337, - [SMALL_STATE(4234)] = 121350, - [SMALL_STATE(4235)] = 121363, - [SMALL_STATE(4236)] = 121380, - [SMALL_STATE(4237)] = 121393, - [SMALL_STATE(4238)] = 121408, - [SMALL_STATE(4239)] = 121421, - [SMALL_STATE(4240)] = 121438, - [SMALL_STATE(4241)] = 121451, - [SMALL_STATE(4242)] = 121464, - [SMALL_STATE(4243)] = 121483, - [SMALL_STATE(4244)] = 121496, - [SMALL_STATE(4245)] = 121509, - [SMALL_STATE(4246)] = 121528, - [SMALL_STATE(4247)] = 121543, - [SMALL_STATE(4248)] = 121558, - [SMALL_STATE(4249)] = 121575, - [SMALL_STATE(4250)] = 121588, - [SMALL_STATE(4251)] = 121601, - [SMALL_STATE(4252)] = 121614, - [SMALL_STATE(4253)] = 121627, - [SMALL_STATE(4254)] = 121640, - [SMALL_STATE(4255)] = 121657, - [SMALL_STATE(4256)] = 121670, - [SMALL_STATE(4257)] = 121687, - [SMALL_STATE(4258)] = 121706, - [SMALL_STATE(4259)] = 121721, - [SMALL_STATE(4260)] = 121734, - [SMALL_STATE(4261)] = 121747, - [SMALL_STATE(4262)] = 121760, - [SMALL_STATE(4263)] = 121773, - [SMALL_STATE(4264)] = 121792, - [SMALL_STATE(4265)] = 121809, - [SMALL_STATE(4266)] = 121826, - [SMALL_STATE(4267)] = 121839, - [SMALL_STATE(4268)] = 121858, - [SMALL_STATE(4269)] = 121873, - [SMALL_STATE(4270)] = 121886, - [SMALL_STATE(4271)] = 121905, - [SMALL_STATE(4272)] = 121922, - [SMALL_STATE(4273)] = 121941, - [SMALL_STATE(4274)] = 121956, - [SMALL_STATE(4275)] = 121969, - [SMALL_STATE(4276)] = 121984, - [SMALL_STATE(4277)] = 121997, - [SMALL_STATE(4278)] = 122012, - [SMALL_STATE(4279)] = 122025, - [SMALL_STATE(4280)] = 122040, - [SMALL_STATE(4281)] = 122055, - [SMALL_STATE(4282)] = 122070, - [SMALL_STATE(4283)] = 122083, - [SMALL_STATE(4284)] = 122102, - [SMALL_STATE(4285)] = 122115, - [SMALL_STATE(4286)] = 122128, - [SMALL_STATE(4287)] = 122141, - [SMALL_STATE(4288)] = 122154, - [SMALL_STATE(4289)] = 122173, - [SMALL_STATE(4290)] = 122186, - [SMALL_STATE(4291)] = 122199, - [SMALL_STATE(4292)] = 122216, - [SMALL_STATE(4293)] = 122233, - [SMALL_STATE(4294)] = 122250, - [SMALL_STATE(4295)] = 122269, - [SMALL_STATE(4296)] = 122284, - [SMALL_STATE(4297)] = 122303, - [SMALL_STATE(4298)] = 122316, - [SMALL_STATE(4299)] = 122329, - [SMALL_STATE(4300)] = 122342, - [SMALL_STATE(4301)] = 122355, - [SMALL_STATE(4302)] = 122368, - [SMALL_STATE(4303)] = 122381, - [SMALL_STATE(4304)] = 122398, - [SMALL_STATE(4305)] = 122411, - [SMALL_STATE(4306)] = 122424, - [SMALL_STATE(4307)] = 122443, - [SMALL_STATE(4308)] = 122462, - [SMALL_STATE(4309)] = 122481, - [SMALL_STATE(4310)] = 122500, - [SMALL_STATE(4311)] = 122515, - [SMALL_STATE(4312)] = 122532, - [SMALL_STATE(4313)] = 122551, - [SMALL_STATE(4314)] = 122564, - [SMALL_STATE(4315)] = 122579, - [SMALL_STATE(4316)] = 122598, - [SMALL_STATE(4317)] = 122615, - [SMALL_STATE(4318)] = 122632, - [SMALL_STATE(4319)] = 122651, - [SMALL_STATE(4320)] = 122670, - [SMALL_STATE(4321)] = 122689, - [SMALL_STATE(4322)] = 122708, - [SMALL_STATE(4323)] = 122721, - [SMALL_STATE(4324)] = 122734, - [SMALL_STATE(4325)] = 122747, - [SMALL_STATE(4326)] = 122764, - [SMALL_STATE(4327)] = 122781, - [SMALL_STATE(4328)] = 122794, - [SMALL_STATE(4329)] = 122813, - [SMALL_STATE(4330)] = 122830, - [SMALL_STATE(4331)] = 122849, - [SMALL_STATE(4332)] = 122868, - [SMALL_STATE(4333)] = 122883, - [SMALL_STATE(4334)] = 122896, - [SMALL_STATE(4335)] = 122909, - [SMALL_STATE(4336)] = 122924, - [SMALL_STATE(4337)] = 122939, - [SMALL_STATE(4338)] = 122952, - [SMALL_STATE(4339)] = 122971, - [SMALL_STATE(4340)] = 122984, - [SMALL_STATE(4341)] = 123001, - [SMALL_STATE(4342)] = 123014, - [SMALL_STATE(4343)] = 123027, - [SMALL_STATE(4344)] = 123040, - [SMALL_STATE(4345)] = 123053, - [SMALL_STATE(4346)] = 123072, - [SMALL_STATE(4347)] = 123085, - [SMALL_STATE(4348)] = 123098, - [SMALL_STATE(4349)] = 123113, - [SMALL_STATE(4350)] = 123132, - [SMALL_STATE(4351)] = 123145, - [SMALL_STATE(4352)] = 123158, - [SMALL_STATE(4353)] = 123177, - [SMALL_STATE(4354)] = 123192, - [SMALL_STATE(4355)] = 123207, - [SMALL_STATE(4356)] = 123226, - [SMALL_STATE(4357)] = 123245, - [SMALL_STATE(4358)] = 123264, - [SMALL_STATE(4359)] = 123281, - [SMALL_STATE(4360)] = 123300, - [SMALL_STATE(4361)] = 123319, - [SMALL_STATE(4362)] = 123338, - [SMALL_STATE(4363)] = 123357, - [SMALL_STATE(4364)] = 123376, - [SMALL_STATE(4365)] = 123395, - [SMALL_STATE(4366)] = 123414, - [SMALL_STATE(4367)] = 123433, - [SMALL_STATE(4368)] = 123448, - [SMALL_STATE(4369)] = 123460, - [SMALL_STATE(4370)] = 123474, - [SMALL_STATE(4371)] = 123490, - [SMALL_STATE(4372)] = 123506, - [SMALL_STATE(4373)] = 123518, - [SMALL_STATE(4374)] = 123530, - [SMALL_STATE(4375)] = 123544, - [SMALL_STATE(4376)] = 123560, - [SMALL_STATE(4377)] = 123572, - [SMALL_STATE(4378)] = 123584, - [SMALL_STATE(4379)] = 123596, - [SMALL_STATE(4380)] = 123610, - [SMALL_STATE(4381)] = 123622, - [SMALL_STATE(4382)] = 123634, - [SMALL_STATE(4383)] = 123646, - [SMALL_STATE(4384)] = 123658, - [SMALL_STATE(4385)] = 123670, - [SMALL_STATE(4386)] = 123686, - [SMALL_STATE(4387)] = 123702, - [SMALL_STATE(4388)] = 123718, - [SMALL_STATE(4389)] = 123730, - [SMALL_STATE(4390)] = 123746, - [SMALL_STATE(4391)] = 123758, - [SMALL_STATE(4392)] = 123772, - [SMALL_STATE(4393)] = 123784, - [SMALL_STATE(4394)] = 123800, - [SMALL_STATE(4395)] = 123816, - [SMALL_STATE(4396)] = 123832, - [SMALL_STATE(4397)] = 123848, - [SMALL_STATE(4398)] = 123860, - [SMALL_STATE(4399)] = 123872, - [SMALL_STATE(4400)] = 123884, - [SMALL_STATE(4401)] = 123900, - [SMALL_STATE(4402)] = 123916, - [SMALL_STATE(4403)] = 123930, - [SMALL_STATE(4404)] = 123944, - [SMALL_STATE(4405)] = 123960, - [SMALL_STATE(4406)] = 123972, - [SMALL_STATE(4407)] = 123988, - [SMALL_STATE(4408)] = 124000, - [SMALL_STATE(4409)] = 124014, - [SMALL_STATE(4410)] = 124026, - [SMALL_STATE(4411)] = 124042, - [SMALL_STATE(4412)] = 124054, - [SMALL_STATE(4413)] = 124066, - [SMALL_STATE(4414)] = 124080, - [SMALL_STATE(4415)] = 124096, - [SMALL_STATE(4416)] = 124112, - [SMALL_STATE(4417)] = 124128, - [SMALL_STATE(4418)] = 124140, - [SMALL_STATE(4419)] = 124156, - [SMALL_STATE(4420)] = 124172, - [SMALL_STATE(4421)] = 124184, - [SMALL_STATE(4422)] = 124200, - [SMALL_STATE(4423)] = 124212, - [SMALL_STATE(4424)] = 124228, - [SMALL_STATE(4425)] = 124240, - [SMALL_STATE(4426)] = 124252, - [SMALL_STATE(4427)] = 124264, - [SMALL_STATE(4428)] = 124280, - [SMALL_STATE(4429)] = 124292, - [SMALL_STATE(4430)] = 124304, - [SMALL_STATE(4431)] = 124316, - [SMALL_STATE(4432)] = 124330, - [SMALL_STATE(4433)] = 124342, - [SMALL_STATE(4434)] = 124354, - [SMALL_STATE(4435)] = 124366, - [SMALL_STATE(4436)] = 124382, - [SMALL_STATE(4437)] = 124398, - [SMALL_STATE(4438)] = 124410, - [SMALL_STATE(4439)] = 124424, - [SMALL_STATE(4440)] = 124436, - [SMALL_STATE(4441)] = 124450, - [SMALL_STATE(4442)] = 124464, - [SMALL_STATE(4443)] = 124480, - [SMALL_STATE(4444)] = 124492, - [SMALL_STATE(4445)] = 124506, - [SMALL_STATE(4446)] = 124520, - [SMALL_STATE(4447)] = 124536, - [SMALL_STATE(4448)] = 124550, - [SMALL_STATE(4449)] = 124566, - [SMALL_STATE(4450)] = 124578, - [SMALL_STATE(4451)] = 124590, - [SMALL_STATE(4452)] = 124604, - [SMALL_STATE(4453)] = 124618, - [SMALL_STATE(4454)] = 124630, - [SMALL_STATE(4455)] = 124644, - [SMALL_STATE(4456)] = 124656, - [SMALL_STATE(4457)] = 124668, - [SMALL_STATE(4458)] = 124680, - [SMALL_STATE(4459)] = 124692, - [SMALL_STATE(4460)] = 124708, - [SMALL_STATE(4461)] = 124720, - [SMALL_STATE(4462)] = 124736, - [SMALL_STATE(4463)] = 124748, - [SMALL_STATE(4464)] = 124764, - [SMALL_STATE(4465)] = 124780, - [SMALL_STATE(4466)] = 124792, - [SMALL_STATE(4467)] = 124808, - [SMALL_STATE(4468)] = 124820, - [SMALL_STATE(4469)] = 124832, - [SMALL_STATE(4470)] = 124846, - [SMALL_STATE(4471)] = 124860, - [SMALL_STATE(4472)] = 124872, - [SMALL_STATE(4473)] = 124888, - [SMALL_STATE(4474)] = 124900, - [SMALL_STATE(4475)] = 124912, - [SMALL_STATE(4476)] = 124924, - [SMALL_STATE(4477)] = 124940, - [SMALL_STATE(4478)] = 124952, - [SMALL_STATE(4479)] = 124968, - [SMALL_STATE(4480)] = 124980, - [SMALL_STATE(4481)] = 124996, - [SMALL_STATE(4482)] = 125010, - [SMALL_STATE(4483)] = 125026, - [SMALL_STATE(4484)] = 125038, - [SMALL_STATE(4485)] = 125054, - [SMALL_STATE(4486)] = 125068, - [SMALL_STATE(4487)] = 125084, - [SMALL_STATE(4488)] = 125100, - [SMALL_STATE(4489)] = 125114, - [SMALL_STATE(4490)] = 125130, - [SMALL_STATE(4491)] = 125144, - [SMALL_STATE(4492)] = 125156, - [SMALL_STATE(4493)] = 125172, - [SMALL_STATE(4494)] = 125188, - [SMALL_STATE(4495)] = 125202, - [SMALL_STATE(4496)] = 125214, - [SMALL_STATE(4497)] = 125226, - [SMALL_STATE(4498)] = 125238, - [SMALL_STATE(4499)] = 125254, - [SMALL_STATE(4500)] = 125266, - [SMALL_STATE(4501)] = 125278, - [SMALL_STATE(4502)] = 125290, - [SMALL_STATE(4503)] = 125302, - [SMALL_STATE(4504)] = 125314, - [SMALL_STATE(4505)] = 125328, - [SMALL_STATE(4506)] = 125342, - [SMALL_STATE(4507)] = 125354, - [SMALL_STATE(4508)] = 125370, - [SMALL_STATE(4509)] = 125384, - [SMALL_STATE(4510)] = 125398, - [SMALL_STATE(4511)] = 125412, - [SMALL_STATE(4512)] = 125428, - [SMALL_STATE(4513)] = 125444, - [SMALL_STATE(4514)] = 125456, - [SMALL_STATE(4515)] = 125468, - [SMALL_STATE(4516)] = 125480, - [SMALL_STATE(4517)] = 125494, - [SMALL_STATE(4518)] = 125510, - [SMALL_STATE(4519)] = 125522, - [SMALL_STATE(4520)] = 125534, - [SMALL_STATE(4521)] = 125550, - [SMALL_STATE(4522)] = 125562, - [SMALL_STATE(4523)] = 125574, - [SMALL_STATE(4524)] = 125590, - [SMALL_STATE(4525)] = 125602, - [SMALL_STATE(4526)] = 125618, - [SMALL_STATE(4527)] = 125634, - [SMALL_STATE(4528)] = 125650, - [SMALL_STATE(4529)] = 125664, - [SMALL_STATE(4530)] = 125676, - [SMALL_STATE(4531)] = 125692, - [SMALL_STATE(4532)] = 125704, - [SMALL_STATE(4533)] = 125716, - [SMALL_STATE(4534)] = 125728, - [SMALL_STATE(4535)] = 125740, - [SMALL_STATE(4536)] = 125752, - [SMALL_STATE(4537)] = 125768, - [SMALL_STATE(4538)] = 125784, - [SMALL_STATE(4539)] = 125800, - [SMALL_STATE(4540)] = 125816, - [SMALL_STATE(4541)] = 125832, - [SMALL_STATE(4542)] = 125846, - [SMALL_STATE(4543)] = 125860, - [SMALL_STATE(4544)] = 125874, - [SMALL_STATE(4545)] = 125890, - [SMALL_STATE(4546)] = 125906, - [SMALL_STATE(4547)] = 125920, - [SMALL_STATE(4548)] = 125932, - [SMALL_STATE(4549)] = 125948, - [SMALL_STATE(4550)] = 125964, - [SMALL_STATE(4551)] = 125978, - [SMALL_STATE(4552)] = 125992, - [SMALL_STATE(4553)] = 126004, - [SMALL_STATE(4554)] = 126018, - [SMALL_STATE(4555)] = 126032, - [SMALL_STATE(4556)] = 126044, - [SMALL_STATE(4557)] = 126060, - [SMALL_STATE(4558)] = 126076, - [SMALL_STATE(4559)] = 126088, - [SMALL_STATE(4560)] = 126100, - [SMALL_STATE(4561)] = 126116, - [SMALL_STATE(4562)] = 126132, - [SMALL_STATE(4563)] = 126144, - [SMALL_STATE(4564)] = 126156, - [SMALL_STATE(4565)] = 126172, - [SMALL_STATE(4566)] = 126184, - [SMALL_STATE(4567)] = 126196, - [SMALL_STATE(4568)] = 126212, - [SMALL_STATE(4569)] = 126226, - [SMALL_STATE(4570)] = 126242, - [SMALL_STATE(4571)] = 126254, - [SMALL_STATE(4572)] = 126266, - [SMALL_STATE(4573)] = 126282, - [SMALL_STATE(4574)] = 126294, - [SMALL_STATE(4575)] = 126310, - [SMALL_STATE(4576)] = 126322, - [SMALL_STATE(4577)] = 126338, - [SMALL_STATE(4578)] = 126350, - [SMALL_STATE(4579)] = 126362, - [SMALL_STATE(4580)] = 126376, - [SMALL_STATE(4581)] = 126392, - [SMALL_STATE(4582)] = 126408, - [SMALL_STATE(4583)] = 126422, - [SMALL_STATE(4584)] = 126434, - [SMALL_STATE(4585)] = 126446, - [SMALL_STATE(4586)] = 126460, - [SMALL_STATE(4587)] = 126476, - [SMALL_STATE(4588)] = 126490, - [SMALL_STATE(4589)] = 126506, - [SMALL_STATE(4590)] = 126522, - [SMALL_STATE(4591)] = 126538, - [SMALL_STATE(4592)] = 126554, - [SMALL_STATE(4593)] = 126566, - [SMALL_STATE(4594)] = 126578, - [SMALL_STATE(4595)] = 126592, - [SMALL_STATE(4596)] = 126608, - [SMALL_STATE(4597)] = 126620, - [SMALL_STATE(4598)] = 126634, - [SMALL_STATE(4599)] = 126648, - [SMALL_STATE(4600)] = 126664, - [SMALL_STATE(4601)] = 126676, - [SMALL_STATE(4602)] = 126688, - [SMALL_STATE(4603)] = 126704, - [SMALL_STATE(4604)] = 126716, - [SMALL_STATE(4605)] = 126728, - [SMALL_STATE(4606)] = 126740, - [SMALL_STATE(4607)] = 126752, - [SMALL_STATE(4608)] = 126764, - [SMALL_STATE(4609)] = 126780, - [SMALL_STATE(4610)] = 126792, - [SMALL_STATE(4611)] = 126808, - [SMALL_STATE(4612)] = 126824, - [SMALL_STATE(4613)] = 126840, - [SMALL_STATE(4614)] = 126854, - [SMALL_STATE(4615)] = 126870, - [SMALL_STATE(4616)] = 126882, - [SMALL_STATE(4617)] = 126898, - [SMALL_STATE(4618)] = 126914, - [SMALL_STATE(4619)] = 126930, - [SMALL_STATE(4620)] = 126946, - [SMALL_STATE(4621)] = 126962, - [SMALL_STATE(4622)] = 126978, - [SMALL_STATE(4623)] = 126990, - [SMALL_STATE(4624)] = 127006, - [SMALL_STATE(4625)] = 127019, - [SMALL_STATE(4626)] = 127032, - [SMALL_STATE(4627)] = 127045, - [SMALL_STATE(4628)] = 127058, - [SMALL_STATE(4629)] = 127071, - [SMALL_STATE(4630)] = 127084, - [SMALL_STATE(4631)] = 127097, - [SMALL_STATE(4632)] = 127110, - [SMALL_STATE(4633)] = 127123, - [SMALL_STATE(4634)] = 127136, - [SMALL_STATE(4635)] = 127149, - [SMALL_STATE(4636)] = 127162, - [SMALL_STATE(4637)] = 127175, - [SMALL_STATE(4638)] = 127188, - [SMALL_STATE(4639)] = 127201, - [SMALL_STATE(4640)] = 127214, - [SMALL_STATE(4641)] = 127227, - [SMALL_STATE(4642)] = 127240, - [SMALL_STATE(4643)] = 127253, - [SMALL_STATE(4644)] = 127266, - [SMALL_STATE(4645)] = 127279, - [SMALL_STATE(4646)] = 127292, - [SMALL_STATE(4647)] = 127305, - [SMALL_STATE(4648)] = 127318, - [SMALL_STATE(4649)] = 127331, - [SMALL_STATE(4650)] = 127344, - [SMALL_STATE(4651)] = 127355, - [SMALL_STATE(4652)] = 127368, - [SMALL_STATE(4653)] = 127381, - [SMALL_STATE(4654)] = 127394, - [SMALL_STATE(4655)] = 127407, - [SMALL_STATE(4656)] = 127420, - [SMALL_STATE(4657)] = 127433, - [SMALL_STATE(4658)] = 127446, - [SMALL_STATE(4659)] = 127459, - [SMALL_STATE(4660)] = 127472, - [SMALL_STATE(4661)] = 127485, - [SMALL_STATE(4662)] = 127498, - [SMALL_STATE(4663)] = 127511, - [SMALL_STATE(4664)] = 127524, - [SMALL_STATE(4665)] = 127535, - [SMALL_STATE(4666)] = 127548, - [SMALL_STATE(4667)] = 127559, - [SMALL_STATE(4668)] = 127572, - [SMALL_STATE(4669)] = 127585, - [SMALL_STATE(4670)] = 127598, - [SMALL_STATE(4671)] = 127611, - [SMALL_STATE(4672)] = 127624, - [SMALL_STATE(4673)] = 127637, - [SMALL_STATE(4674)] = 127650, - [SMALL_STATE(4675)] = 127663, - [SMALL_STATE(4676)] = 127676, - [SMALL_STATE(4677)] = 127689, - [SMALL_STATE(4678)] = 127702, - [SMALL_STATE(4679)] = 127713, - [SMALL_STATE(4680)] = 127726, - [SMALL_STATE(4681)] = 127739, - [SMALL_STATE(4682)] = 127752, - [SMALL_STATE(4683)] = 127763, - [SMALL_STATE(4684)] = 127774, - [SMALL_STATE(4685)] = 127787, - [SMALL_STATE(4686)] = 127800, - [SMALL_STATE(4687)] = 127813, - [SMALL_STATE(4688)] = 127826, - [SMALL_STATE(4689)] = 127839, - [SMALL_STATE(4690)] = 127852, - [SMALL_STATE(4691)] = 127865, - [SMALL_STATE(4692)] = 127878, - [SMALL_STATE(4693)] = 127891, - [SMALL_STATE(4694)] = 127904, - [SMALL_STATE(4695)] = 127917, - [SMALL_STATE(4696)] = 127930, - [SMALL_STATE(4697)] = 127943, - [SMALL_STATE(4698)] = 127956, - [SMALL_STATE(4699)] = 127969, - [SMALL_STATE(4700)] = 127982, - [SMALL_STATE(4701)] = 127995, - [SMALL_STATE(4702)] = 128008, - [SMALL_STATE(4703)] = 128021, - [SMALL_STATE(4704)] = 128034, - [SMALL_STATE(4705)] = 128047, - [SMALL_STATE(4706)] = 128060, - [SMALL_STATE(4707)] = 128073, - [SMALL_STATE(4708)] = 128086, - [SMALL_STATE(4709)] = 128097, - [SMALL_STATE(4710)] = 128110, - [SMALL_STATE(4711)] = 128123, - [SMALL_STATE(4712)] = 128136, - [SMALL_STATE(4713)] = 128149, - [SMALL_STATE(4714)] = 128162, - [SMALL_STATE(4715)] = 128175, - [SMALL_STATE(4716)] = 128188, - [SMALL_STATE(4717)] = 128199, - [SMALL_STATE(4718)] = 128212, - [SMALL_STATE(4719)] = 128225, - [SMALL_STATE(4720)] = 128238, - [SMALL_STATE(4721)] = 128249, - [SMALL_STATE(4722)] = 128262, - [SMALL_STATE(4723)] = 128275, - [SMALL_STATE(4724)] = 128288, - [SMALL_STATE(4725)] = 128301, - [SMALL_STATE(4726)] = 128314, - [SMALL_STATE(4727)] = 128327, - [SMALL_STATE(4728)] = 128340, - [SMALL_STATE(4729)] = 128353, - [SMALL_STATE(4730)] = 128366, - [SMALL_STATE(4731)] = 128379, - [SMALL_STATE(4732)] = 128392, - [SMALL_STATE(4733)] = 128405, - [SMALL_STATE(4734)] = 128418, - [SMALL_STATE(4735)] = 128429, - [SMALL_STATE(4736)] = 128442, - [SMALL_STATE(4737)] = 128455, - [SMALL_STATE(4738)] = 128468, - [SMALL_STATE(4739)] = 128481, - [SMALL_STATE(4740)] = 128494, - [SMALL_STATE(4741)] = 128507, - [SMALL_STATE(4742)] = 128520, - [SMALL_STATE(4743)] = 128533, - [SMALL_STATE(4744)] = 128546, - [SMALL_STATE(4745)] = 128559, - [SMALL_STATE(4746)] = 128572, - [SMALL_STATE(4747)] = 128585, - [SMALL_STATE(4748)] = 128598, - [SMALL_STATE(4749)] = 128611, - [SMALL_STATE(4750)] = 128624, - [SMALL_STATE(4751)] = 128637, - [SMALL_STATE(4752)] = 128650, - [SMALL_STATE(4753)] = 128663, - [SMALL_STATE(4754)] = 128676, - [SMALL_STATE(4755)] = 128689, - [SMALL_STATE(4756)] = 128702, - [SMALL_STATE(4757)] = 128715, - [SMALL_STATE(4758)] = 128728, - [SMALL_STATE(4759)] = 128741, - [SMALL_STATE(4760)] = 128754, - [SMALL_STATE(4761)] = 128767, - [SMALL_STATE(4762)] = 128780, - [SMALL_STATE(4763)] = 128793, - [SMALL_STATE(4764)] = 128806, - [SMALL_STATE(4765)] = 128819, - [SMALL_STATE(4766)] = 128832, - [SMALL_STATE(4767)] = 128845, - [SMALL_STATE(4768)] = 128858, - [SMALL_STATE(4769)] = 128871, - [SMALL_STATE(4770)] = 128884, - [SMALL_STATE(4771)] = 128897, - [SMALL_STATE(4772)] = 128910, - [SMALL_STATE(4773)] = 128923, - [SMALL_STATE(4774)] = 128936, - [SMALL_STATE(4775)] = 128949, - [SMALL_STATE(4776)] = 128962, - [SMALL_STATE(4777)] = 128975, - [SMALL_STATE(4778)] = 128988, - [SMALL_STATE(4779)] = 129001, - [SMALL_STATE(4780)] = 129014, - [SMALL_STATE(4781)] = 129027, - [SMALL_STATE(4782)] = 129040, - [SMALL_STATE(4783)] = 129053, - [SMALL_STATE(4784)] = 129066, - [SMALL_STATE(4785)] = 129079, - [SMALL_STATE(4786)] = 129092, - [SMALL_STATE(4787)] = 129105, - [SMALL_STATE(4788)] = 129118, - [SMALL_STATE(4789)] = 129131, - [SMALL_STATE(4790)] = 129144, - [SMALL_STATE(4791)] = 129157, - [SMALL_STATE(4792)] = 129170, - [SMALL_STATE(4793)] = 129183, - [SMALL_STATE(4794)] = 129196, - [SMALL_STATE(4795)] = 129206, - [SMALL_STATE(4796)] = 129216, - [SMALL_STATE(4797)] = 129226, - [SMALL_STATE(4798)] = 129236, - [SMALL_STATE(4799)] = 129246, - [SMALL_STATE(4800)] = 129256, - [SMALL_STATE(4801)] = 129266, - [SMALL_STATE(4802)] = 129276, - [SMALL_STATE(4803)] = 129286, - [SMALL_STATE(4804)] = 129296, - [SMALL_STATE(4805)] = 129306, - [SMALL_STATE(4806)] = 129316, - [SMALL_STATE(4807)] = 129326, - [SMALL_STATE(4808)] = 129336, - [SMALL_STATE(4809)] = 129346, - [SMALL_STATE(4810)] = 129356, - [SMALL_STATE(4811)] = 129366, - [SMALL_STATE(4812)] = 129376, - [SMALL_STATE(4813)] = 129386, - [SMALL_STATE(4814)] = 129396, - [SMALL_STATE(4815)] = 129406, - [SMALL_STATE(4816)] = 129416, - [SMALL_STATE(4817)] = 129426, - [SMALL_STATE(4818)] = 129436, - [SMALL_STATE(4819)] = 129446, - [SMALL_STATE(4820)] = 129456, - [SMALL_STATE(4821)] = 129466, - [SMALL_STATE(4822)] = 129476, - [SMALL_STATE(4823)] = 129486, - [SMALL_STATE(4824)] = 129496, - [SMALL_STATE(4825)] = 129506, - [SMALL_STATE(4826)] = 129516, - [SMALL_STATE(4827)] = 129526, - [SMALL_STATE(4828)] = 129536, - [SMALL_STATE(4829)] = 129546, - [SMALL_STATE(4830)] = 129556, - [SMALL_STATE(4831)] = 129566, - [SMALL_STATE(4832)] = 129576, - [SMALL_STATE(4833)] = 129586, - [SMALL_STATE(4834)] = 129596, - [SMALL_STATE(4835)] = 129606, - [SMALL_STATE(4836)] = 129616, - [SMALL_STATE(4837)] = 129626, - [SMALL_STATE(4838)] = 129636, - [SMALL_STATE(4839)] = 129646, - [SMALL_STATE(4840)] = 129656, - [SMALL_STATE(4841)] = 129666, - [SMALL_STATE(4842)] = 129676, - [SMALL_STATE(4843)] = 129686, - [SMALL_STATE(4844)] = 129696, - [SMALL_STATE(4845)] = 129706, - [SMALL_STATE(4846)] = 129716, - [SMALL_STATE(4847)] = 129726, - [SMALL_STATE(4848)] = 129736, - [SMALL_STATE(4849)] = 129746, - [SMALL_STATE(4850)] = 129756, - [SMALL_STATE(4851)] = 129766, - [SMALL_STATE(4852)] = 129776, - [SMALL_STATE(4853)] = 129786, - [SMALL_STATE(4854)] = 129796, - [SMALL_STATE(4855)] = 129806, - [SMALL_STATE(4856)] = 129816, - [SMALL_STATE(4857)] = 129826, - [SMALL_STATE(4858)] = 129836, - [SMALL_STATE(4859)] = 129846, - [SMALL_STATE(4860)] = 129856, - [SMALL_STATE(4861)] = 129866, - [SMALL_STATE(4862)] = 129876, - [SMALL_STATE(4863)] = 129886, - [SMALL_STATE(4864)] = 129896, - [SMALL_STATE(4865)] = 129906, - [SMALL_STATE(4866)] = 129916, - [SMALL_STATE(4867)] = 129926, - [SMALL_STATE(4868)] = 129936, - [SMALL_STATE(4869)] = 129946, - [SMALL_STATE(4870)] = 129956, - [SMALL_STATE(4871)] = 129966, - [SMALL_STATE(4872)] = 129976, - [SMALL_STATE(4873)] = 129986, - [SMALL_STATE(4874)] = 129996, - [SMALL_STATE(4875)] = 130006, - [SMALL_STATE(4876)] = 130016, - [SMALL_STATE(4877)] = 130026, - [SMALL_STATE(4878)] = 130036, - [SMALL_STATE(4879)] = 130046, - [SMALL_STATE(4880)] = 130056, - [SMALL_STATE(4881)] = 130066, - [SMALL_STATE(4882)] = 130076, - [SMALL_STATE(4883)] = 130086, - [SMALL_STATE(4884)] = 130096, - [SMALL_STATE(4885)] = 130106, - [SMALL_STATE(4886)] = 130116, - [SMALL_STATE(4887)] = 130126, - [SMALL_STATE(4888)] = 130136, - [SMALL_STATE(4889)] = 130146, - [SMALL_STATE(4890)] = 130156, - [SMALL_STATE(4891)] = 130166, - [SMALL_STATE(4892)] = 130176, - [SMALL_STATE(4893)] = 130186, - [SMALL_STATE(4894)] = 130196, - [SMALL_STATE(4895)] = 130206, - [SMALL_STATE(4896)] = 130216, - [SMALL_STATE(4897)] = 130226, - [SMALL_STATE(4898)] = 130236, - [SMALL_STATE(4899)] = 130246, - [SMALL_STATE(4900)] = 130256, - [SMALL_STATE(4901)] = 130266, - [SMALL_STATE(4902)] = 130276, - [SMALL_STATE(4903)] = 130286, - [SMALL_STATE(4904)] = 130296, - [SMALL_STATE(4905)] = 130306, - [SMALL_STATE(4906)] = 130316, - [SMALL_STATE(4907)] = 130326, - [SMALL_STATE(4908)] = 130336, - [SMALL_STATE(4909)] = 130346, - [SMALL_STATE(4910)] = 130356, - [SMALL_STATE(4911)] = 130366, - [SMALL_STATE(4912)] = 130376, - [SMALL_STATE(4913)] = 130386, - [SMALL_STATE(4914)] = 130396, - [SMALL_STATE(4915)] = 130406, - [SMALL_STATE(4916)] = 130416, - [SMALL_STATE(4917)] = 130426, - [SMALL_STATE(4918)] = 130436, - [SMALL_STATE(4919)] = 130446, - [SMALL_STATE(4920)] = 130456, - [SMALL_STATE(4921)] = 130466, - [SMALL_STATE(4922)] = 130476, - [SMALL_STATE(4923)] = 130486, - [SMALL_STATE(4924)] = 130496, - [SMALL_STATE(4925)] = 130506, - [SMALL_STATE(4926)] = 130516, - [SMALL_STATE(4927)] = 130526, - [SMALL_STATE(4928)] = 130536, - [SMALL_STATE(4929)] = 130546, - [SMALL_STATE(4930)] = 130556, - [SMALL_STATE(4931)] = 130566, - [SMALL_STATE(4932)] = 130576, - [SMALL_STATE(4933)] = 130586, - [SMALL_STATE(4934)] = 130596, - [SMALL_STATE(4935)] = 130606, - [SMALL_STATE(4936)] = 130616, - [SMALL_STATE(4937)] = 130626, - [SMALL_STATE(4938)] = 130636, - [SMALL_STATE(4939)] = 130646, - [SMALL_STATE(4940)] = 130656, - [SMALL_STATE(4941)] = 130666, - [SMALL_STATE(4942)] = 130676, - [SMALL_STATE(4943)] = 130686, - [SMALL_STATE(4944)] = 130696, - [SMALL_STATE(4945)] = 130706, - [SMALL_STATE(4946)] = 130716, - [SMALL_STATE(4947)] = 130726, - [SMALL_STATE(4948)] = 130736, - [SMALL_STATE(4949)] = 130746, - [SMALL_STATE(4950)] = 130756, - [SMALL_STATE(4951)] = 130766, - [SMALL_STATE(4952)] = 130776, - [SMALL_STATE(4953)] = 130786, - [SMALL_STATE(4954)] = 130796, - [SMALL_STATE(4955)] = 130806, - [SMALL_STATE(4956)] = 130816, - [SMALL_STATE(4957)] = 130826, - [SMALL_STATE(4958)] = 130836, - [SMALL_STATE(4959)] = 130846, - [SMALL_STATE(4960)] = 130856, - [SMALL_STATE(4961)] = 130866, - [SMALL_STATE(4962)] = 130876, - [SMALL_STATE(4963)] = 130886, - [SMALL_STATE(4964)] = 130896, - [SMALL_STATE(4965)] = 130906, - [SMALL_STATE(4966)] = 130916, - [SMALL_STATE(4967)] = 130926, - [SMALL_STATE(4968)] = 130936, - [SMALL_STATE(4969)] = 130946, - [SMALL_STATE(4970)] = 130956, - [SMALL_STATE(4971)] = 130966, - [SMALL_STATE(4972)] = 130976, - [SMALL_STATE(4973)] = 130986, - [SMALL_STATE(4974)] = 130996, - [SMALL_STATE(4975)] = 131006, - [SMALL_STATE(4976)] = 131016, - [SMALL_STATE(4977)] = 131026, - [SMALL_STATE(4978)] = 131036, - [SMALL_STATE(4979)] = 131046, - [SMALL_STATE(4980)] = 131056, - [SMALL_STATE(4981)] = 131066, - [SMALL_STATE(4982)] = 131076, - [SMALL_STATE(4983)] = 131086, - [SMALL_STATE(4984)] = 131096, - [SMALL_STATE(4985)] = 131106, - [SMALL_STATE(4986)] = 131116, - [SMALL_STATE(4987)] = 131126, - [SMALL_STATE(4988)] = 131136, - [SMALL_STATE(4989)] = 131146, - [SMALL_STATE(4990)] = 131156, - [SMALL_STATE(4991)] = 131166, - [SMALL_STATE(4992)] = 131176, - [SMALL_STATE(4993)] = 131186, - [SMALL_STATE(4994)] = 131196, - [SMALL_STATE(4995)] = 131206, - [SMALL_STATE(4996)] = 131216, - [SMALL_STATE(4997)] = 131226, - [SMALL_STATE(4998)] = 131236, - [SMALL_STATE(4999)] = 131246, - [SMALL_STATE(5000)] = 131256, - [SMALL_STATE(5001)] = 131266, - [SMALL_STATE(5002)] = 131276, - [SMALL_STATE(5003)] = 131286, - [SMALL_STATE(5004)] = 131296, - [SMALL_STATE(5005)] = 131306, - [SMALL_STATE(5006)] = 131316, - [SMALL_STATE(5007)] = 131326, - [SMALL_STATE(5008)] = 131336, - [SMALL_STATE(5009)] = 131346, - [SMALL_STATE(5010)] = 131356, - [SMALL_STATE(5011)] = 131366, - [SMALL_STATE(5012)] = 131376, - [SMALL_STATE(5013)] = 131386, - [SMALL_STATE(5014)] = 131396, - [SMALL_STATE(5015)] = 131406, - [SMALL_STATE(5016)] = 131416, - [SMALL_STATE(5017)] = 131426, - [SMALL_STATE(5018)] = 131436, - [SMALL_STATE(5019)] = 131446, - [SMALL_STATE(5020)] = 131456, - [SMALL_STATE(5021)] = 131466, - [SMALL_STATE(5022)] = 131476, - [SMALL_STATE(5023)] = 131486, - [SMALL_STATE(5024)] = 131496, - [SMALL_STATE(5025)] = 131506, - [SMALL_STATE(5026)] = 131516, - [SMALL_STATE(5027)] = 131526, - [SMALL_STATE(5028)] = 131536, - [SMALL_STATE(5029)] = 131546, - [SMALL_STATE(5030)] = 131556, - [SMALL_STATE(5031)] = 131566, - [SMALL_STATE(5032)] = 131576, - [SMALL_STATE(5033)] = 131586, - [SMALL_STATE(5034)] = 131596, - [SMALL_STATE(5035)] = 131606, - [SMALL_STATE(5036)] = 131616, - [SMALL_STATE(5037)] = 131626, - [SMALL_STATE(5038)] = 131636, - [SMALL_STATE(5039)] = 131646, - [SMALL_STATE(5040)] = 131656, - [SMALL_STATE(5041)] = 131666, - [SMALL_STATE(5042)] = 131676, - [SMALL_STATE(5043)] = 131686, - [SMALL_STATE(5044)] = 131696, - [SMALL_STATE(5045)] = 131706, - [SMALL_STATE(5046)] = 131716, - [SMALL_STATE(5047)] = 131726, - [SMALL_STATE(5048)] = 131736, - [SMALL_STATE(5049)] = 131746, - [SMALL_STATE(5050)] = 131756, - [SMALL_STATE(5051)] = 131766, - [SMALL_STATE(5052)] = 131776, - [SMALL_STATE(5053)] = 131786, - [SMALL_STATE(5054)] = 131796, - [SMALL_STATE(5055)] = 131806, - [SMALL_STATE(5056)] = 131816, - [SMALL_STATE(5057)] = 131826, - [SMALL_STATE(5058)] = 131836, - [SMALL_STATE(5059)] = 131846, - [SMALL_STATE(5060)] = 131856, - [SMALL_STATE(5061)] = 131866, - [SMALL_STATE(5062)] = 131876, - [SMALL_STATE(5063)] = 131886, - [SMALL_STATE(5064)] = 131896, - [SMALL_STATE(5065)] = 131906, - [SMALL_STATE(5066)] = 131916, - [SMALL_STATE(5067)] = 131926, - [SMALL_STATE(5068)] = 131936, - [SMALL_STATE(5069)] = 131946, - [SMALL_STATE(5070)] = 131956, - [SMALL_STATE(5071)] = 131966, - [SMALL_STATE(5072)] = 131976, - [SMALL_STATE(5073)] = 131986, - [SMALL_STATE(5074)] = 131996, - [SMALL_STATE(5075)] = 132006, - [SMALL_STATE(5076)] = 132016, - [SMALL_STATE(5077)] = 132026, - [SMALL_STATE(5078)] = 132036, - [SMALL_STATE(5079)] = 132046, - [SMALL_STATE(5080)] = 132056, - [SMALL_STATE(5081)] = 132066, - [SMALL_STATE(5082)] = 132076, - [SMALL_STATE(5083)] = 132086, - [SMALL_STATE(5084)] = 132096, - [SMALL_STATE(5085)] = 132106, - [SMALL_STATE(5086)] = 132116, - [SMALL_STATE(5087)] = 132126, - [SMALL_STATE(5088)] = 132136, - [SMALL_STATE(5089)] = 132146, - [SMALL_STATE(5090)] = 132156, - [SMALL_STATE(5091)] = 132166, - [SMALL_STATE(5092)] = 132176, - [SMALL_STATE(5093)] = 132186, - [SMALL_STATE(5094)] = 132196, - [SMALL_STATE(5095)] = 132206, - [SMALL_STATE(5096)] = 132216, - [SMALL_STATE(5097)] = 132226, - [SMALL_STATE(5098)] = 132236, - [SMALL_STATE(5099)] = 132246, - [SMALL_STATE(5100)] = 132256, - [SMALL_STATE(5101)] = 132266, - [SMALL_STATE(5102)] = 132276, - [SMALL_STATE(5103)] = 132286, - [SMALL_STATE(5104)] = 132296, - [SMALL_STATE(5105)] = 132306, - [SMALL_STATE(5106)] = 132316, - [SMALL_STATE(5107)] = 132326, - [SMALL_STATE(5108)] = 132336, - [SMALL_STATE(5109)] = 132346, - [SMALL_STATE(5110)] = 132356, - [SMALL_STATE(5111)] = 132366, - [SMALL_STATE(5112)] = 132376, - [SMALL_STATE(5113)] = 132386, - [SMALL_STATE(5114)] = 132396, - [SMALL_STATE(5115)] = 132406, - [SMALL_STATE(5116)] = 132416, - [SMALL_STATE(5117)] = 132426, - [SMALL_STATE(5118)] = 132436, - [SMALL_STATE(5119)] = 132446, - [SMALL_STATE(5120)] = 132456, - [SMALL_STATE(5121)] = 132466, - [SMALL_STATE(5122)] = 132476, - [SMALL_STATE(5123)] = 132486, - [SMALL_STATE(5124)] = 132496, - [SMALL_STATE(5125)] = 132506, - [SMALL_STATE(5126)] = 132516, - [SMALL_STATE(5127)] = 132526, - [SMALL_STATE(5128)] = 132536, - [SMALL_STATE(5129)] = 132546, - [SMALL_STATE(5130)] = 132556, - [SMALL_STATE(5131)] = 132566, - [SMALL_STATE(5132)] = 132576, - [SMALL_STATE(5133)] = 132586, - [SMALL_STATE(5134)] = 132596, - [SMALL_STATE(5135)] = 132606, - [SMALL_STATE(5136)] = 132616, - [SMALL_STATE(5137)] = 132626, - [SMALL_STATE(5138)] = 132636, - [SMALL_STATE(5139)] = 132646, - [SMALL_STATE(5140)] = 132656, - [SMALL_STATE(5141)] = 132666, - [SMALL_STATE(5142)] = 132676, - [SMALL_STATE(5143)] = 132686, - [SMALL_STATE(5144)] = 132696, - [SMALL_STATE(5145)] = 132706, - [SMALL_STATE(5146)] = 132716, - [SMALL_STATE(5147)] = 132726, - [SMALL_STATE(5148)] = 132736, - [SMALL_STATE(5149)] = 132746, - [SMALL_STATE(5150)] = 132756, - [SMALL_STATE(5151)] = 132766, - [SMALL_STATE(5152)] = 132776, - [SMALL_STATE(5153)] = 132786, - [SMALL_STATE(5154)] = 132796, - [SMALL_STATE(5155)] = 132806, - [SMALL_STATE(5156)] = 132816, - [SMALL_STATE(5157)] = 132826, - [SMALL_STATE(5158)] = 132836, - [SMALL_STATE(5159)] = 132846, - [SMALL_STATE(5160)] = 132856, - [SMALL_STATE(5161)] = 132866, - [SMALL_STATE(5162)] = 132876, - [SMALL_STATE(5163)] = 132886, - [SMALL_STATE(5164)] = 132896, - [SMALL_STATE(5165)] = 132906, - [SMALL_STATE(5166)] = 132916, - [SMALL_STATE(5167)] = 132926, - [SMALL_STATE(5168)] = 132936, - [SMALL_STATE(5169)] = 132946, - [SMALL_STATE(5170)] = 132956, - [SMALL_STATE(5171)] = 132966, - [SMALL_STATE(5172)] = 132976, - [SMALL_STATE(5173)] = 132986, - [SMALL_STATE(5174)] = 132996, - [SMALL_STATE(5175)] = 133006, - [SMALL_STATE(5176)] = 133016, - [SMALL_STATE(5177)] = 133026, - [SMALL_STATE(5178)] = 133036, - [SMALL_STATE(5179)] = 133046, - [SMALL_STATE(5180)] = 133056, - [SMALL_STATE(5181)] = 133066, - [SMALL_STATE(5182)] = 133076, - [SMALL_STATE(5183)] = 133086, - [SMALL_STATE(5184)] = 133096, - [SMALL_STATE(5185)] = 133106, - [SMALL_STATE(5186)] = 133116, - [SMALL_STATE(5187)] = 133126, - [SMALL_STATE(5188)] = 133136, - [SMALL_STATE(5189)] = 133146, - [SMALL_STATE(5190)] = 133156, - [SMALL_STATE(5191)] = 133166, - [SMALL_STATE(5192)] = 133176, - [SMALL_STATE(5193)] = 133186, - [SMALL_STATE(5194)] = 133196, - [SMALL_STATE(5195)] = 133206, - [SMALL_STATE(5196)] = 133216, - [SMALL_STATE(5197)] = 133226, - [SMALL_STATE(5198)] = 133236, - [SMALL_STATE(5199)] = 133246, - [SMALL_STATE(5200)] = 133256, - [SMALL_STATE(5201)] = 133266, - [SMALL_STATE(5202)] = 133276, - [SMALL_STATE(5203)] = 133286, - [SMALL_STATE(5204)] = 133296, - [SMALL_STATE(5205)] = 133306, - [SMALL_STATE(5206)] = 133316, + [SMALL_STATE(1728)] = 36411, + [SMALL_STATE(1729)] = 36492, + [SMALL_STATE(1730)] = 36551, + [SMALL_STATE(1731)] = 36618, + [SMALL_STATE(1732)] = 36689, + [SMALL_STATE(1733)] = 36756, + [SMALL_STATE(1734)] = 36819, + [SMALL_STATE(1735)] = 36886, + [SMALL_STATE(1736)] = 36967, + [SMALL_STATE(1737)] = 37035, + [SMALL_STATE(1738)] = 37113, + [SMALL_STATE(1739)] = 37173, + [SMALL_STATE(1740)] = 37241, + [SMALL_STATE(1741)] = 37301, + [SMALL_STATE(1742)] = 37359, + [SMALL_STATE(1743)] = 37417, + [SMALL_STATE(1744)] = 37475, + [SMALL_STATE(1745)] = 37533, + [SMALL_STATE(1746)] = 37587, + [SMALL_STATE(1747)] = 37641, + [SMALL_STATE(1748)] = 37695, + [SMALL_STATE(1749)] = 37749, + [SMALL_STATE(1750)] = 37803, + [SMALL_STATE(1751)] = 37857, + [SMALL_STATE(1752)] = 37913, + [SMALL_STATE(1753)] = 37975, + [SMALL_STATE(1754)] = 38031, + [SMALL_STATE(1755)] = 38089, + [SMALL_STATE(1756)] = 38167, + [SMALL_STATE(1757)] = 38245, + [SMALL_STATE(1758)] = 38323, + [SMALL_STATE(1759)] = 38401, + [SMALL_STATE(1760)] = 38479, + [SMALL_STATE(1761)] = 38557, + [SMALL_STATE(1762)] = 38619, + [SMALL_STATE(1763)] = 38697, + [SMALL_STATE(1764)] = 38765, + [SMALL_STATE(1765)] = 38833, + [SMALL_STATE(1766)] = 38895, + [SMALL_STATE(1767)] = 38963, + [SMALL_STATE(1768)] = 39031, + [SMALL_STATE(1769)] = 39111, + [SMALL_STATE(1770)] = 39189, + [SMALL_STATE(1771)] = 39243, + [SMALL_STATE(1772)] = 39311, + [SMALL_STATE(1773)] = 39365, + [SMALL_STATE(1774)] = 39445, + [SMALL_STATE(1775)] = 39499, + [SMALL_STATE(1776)] = 39577, + [SMALL_STATE(1777)] = 39655, + [SMALL_STATE(1778)] = 39732, + [SMALL_STATE(1779)] = 39787, + [SMALL_STATE(1780)] = 39852, + [SMALL_STATE(1781)] = 39929, + [SMALL_STATE(1782)] = 39982, + [SMALL_STATE(1783)] = 40035, + [SMALL_STATE(1784)] = 40112, + [SMALL_STATE(1785)] = 40165, + [SMALL_STATE(1786)] = 40230, + [SMALL_STATE(1787)] = 40287, + [SMALL_STATE(1788)] = 40340, + [SMALL_STATE(1789)] = 40417, + [SMALL_STATE(1790)] = 40494, + [SMALL_STATE(1791)] = 40549, + [SMALL_STATE(1792)] = 40602, + [SMALL_STATE(1793)] = 40653, + [SMALL_STATE(1794)] = 40704, + [SMALL_STATE(1795)] = 40769, + [SMALL_STATE(1796)] = 40832, + [SMALL_STATE(1797)] = 40897, + [SMALL_STATE(1798)] = 40952, + [SMALL_STATE(1799)] = 41017, + [SMALL_STATE(1800)] = 41070, + [SMALL_STATE(1801)] = 41129, + [SMALL_STATE(1802)] = 41194, + [SMALL_STATE(1803)] = 41259, + [SMALL_STATE(1804)] = 41314, + [SMALL_STATE(1805)] = 41379, + [SMALL_STATE(1806)] = 41430, + [SMALL_STATE(1807)] = 41481, + [SMALL_STATE(1808)] = 41546, + [SMALL_STATE(1809)] = 41597, + [SMALL_STATE(1810)] = 41650, + [SMALL_STATE(1811)] = 41703, + [SMALL_STATE(1812)] = 41758, + [SMALL_STATE(1813)] = 41809, + [SMALL_STATE(1814)] = 41862, + [SMALL_STATE(1815)] = 41917, + [SMALL_STATE(1816)] = 41994, + [SMALL_STATE(1817)] = 42051, + [SMALL_STATE(1818)] = 42128, + [SMALL_STATE(1819)] = 42205, + [SMALL_STATE(1820)] = 42282, + [SMALL_STATE(1821)] = 42339, + [SMALL_STATE(1822)] = 42416, + [SMALL_STATE(1823)] = 42493, + [SMALL_STATE(1824)] = 42570, + [SMALL_STATE(1825)] = 42635, + [SMALL_STATE(1826)] = 42687, + [SMALL_STATE(1827)] = 42747, + [SMALL_STATE(1828)] = 42799, + [SMALL_STATE(1829)] = 42851, + [SMALL_STATE(1830)] = 42905, + [SMALL_STATE(1831)] = 42959, + [SMALL_STATE(1832)] = 43019, + [SMALL_STATE(1833)] = 43079, + [SMALL_STATE(1834)] = 43131, + [SMALL_STATE(1835)] = 43183, + [SMALL_STATE(1836)] = 43245, + [SMALL_STATE(1837)] = 43297, + [SMALL_STATE(1838)] = 43351, + [SMALL_STATE(1839)] = 43403, + [SMALL_STATE(1840)] = 43455, + [SMALL_STATE(1841)] = 43507, + [SMALL_STATE(1842)] = 43569, + [SMALL_STATE(1843)] = 43631, + [SMALL_STATE(1844)] = 43691, + [SMALL_STATE(1845)] = 43745, + [SMALL_STATE(1846)] = 43804, + [SMALL_STATE(1847)] = 43855, + [SMALL_STATE(1848)] = 43910, + [SMALL_STATE(1849)] = 43961, + [SMALL_STATE(1850)] = 44016, + [SMALL_STATE(1851)] = 44115, + [SMALL_STATE(1852)] = 44166, + [SMALL_STATE(1853)] = 44217, + [SMALL_STATE(1854)] = 44268, + [SMALL_STATE(1855)] = 44327, + [SMALL_STATE(1856)] = 44378, + [SMALL_STATE(1857)] = 44429, + [SMALL_STATE(1858)] = 44480, + [SMALL_STATE(1859)] = 44531, + [SMALL_STATE(1860)] = 44582, + [SMALL_STATE(1861)] = 44633, + [SMALL_STATE(1862)] = 44688, + [SMALL_STATE(1863)] = 44739, + [SMALL_STATE(1864)] = 44790, + [SMALL_STATE(1865)] = 44841, + [SMALL_STATE(1866)] = 44892, + [SMALL_STATE(1867)] = 44943, + [SMALL_STATE(1868)] = 44994, + [SMALL_STATE(1869)] = 45053, + [SMALL_STATE(1870)] = 45104, + [SMALL_STATE(1871)] = 45163, + [SMALL_STATE(1872)] = 45222, + [SMALL_STATE(1873)] = 45273, + [SMALL_STATE(1874)] = 45324, + [SMALL_STATE(1875)] = 45383, + [SMALL_STATE(1876)] = 45434, + [SMALL_STATE(1877)] = 45485, + [SMALL_STATE(1878)] = 45536, + [SMALL_STATE(1879)] = 45587, + [SMALL_STATE(1880)] = 45642, + [SMALL_STATE(1881)] = 45700, + [SMALL_STATE(1882)] = 45750, + [SMALL_STATE(1883)] = 45800, + [SMALL_STATE(1884)] = 45850, + [SMALL_STATE(1885)] = 45900, + [SMALL_STATE(1886)] = 45950, + [SMALL_STATE(1887)] = 46000, + [SMALL_STATE(1888)] = 46050, + [SMALL_STATE(1889)] = 46102, + [SMALL_STATE(1890)] = 46198, + [SMALL_STATE(1891)] = 46256, + [SMALL_STATE(1892)] = 46314, + [SMALL_STATE(1893)] = 46372, + [SMALL_STATE(1894)] = 46422, + [SMALL_STATE(1895)] = 46518, + [SMALL_STATE(1896)] = 46576, + [SMALL_STATE(1897)] = 46630, + [SMALL_STATE(1898)] = 46686, + [SMALL_STATE(1899)] = 46744, + [SMALL_STATE(1900)] = 46794, + [SMALL_STATE(1901)] = 46844, + [SMALL_STATE(1902)] = 46894, + [SMALL_STATE(1903)] = 46948, + [SMALL_STATE(1904)] = 46998, + [SMALL_STATE(1905)] = 47048, + [SMALL_STATE(1906)] = 47100, + [SMALL_STATE(1907)] = 47158, + [SMALL_STATE(1908)] = 47212, + [SMALL_STATE(1909)] = 47262, + [SMALL_STATE(1910)] = 47312, + [SMALL_STATE(1911)] = 47364, + [SMALL_STATE(1912)] = 47414, + [SMALL_STATE(1913)] = 47466, + [SMALL_STATE(1914)] = 47516, + [SMALL_STATE(1915)] = 47570, + [SMALL_STATE(1916)] = 47620, + [SMALL_STATE(1917)] = 47673, + [SMALL_STATE(1918)] = 47728, + [SMALL_STATE(1919)] = 47781, + [SMALL_STATE(1920)] = 47830, + [SMALL_STATE(1921)] = 47883, + [SMALL_STATE(1922)] = 47932, + [SMALL_STATE(1923)] = 47981, + [SMALL_STATE(1924)] = 48030, + [SMALL_STATE(1925)] = 48079, + [SMALL_STATE(1926)] = 48128, + [SMALL_STATE(1927)] = 48223, + [SMALL_STATE(1928)] = 48272, + [SMALL_STATE(1929)] = 48325, + [SMALL_STATE(1930)] = 48378, + [SMALL_STATE(1931)] = 48473, + [SMALL_STATE(1932)] = 48526, + [SMALL_STATE(1933)] = 48577, + [SMALL_STATE(1934)] = 48630, + [SMALL_STATE(1935)] = 48679, + [SMALL_STATE(1936)] = 48728, + [SMALL_STATE(1937)] = 48777, + [SMALL_STATE(1938)] = 48830, + [SMALL_STATE(1939)] = 48883, + [SMALL_STATE(1940)] = 48936, + [SMALL_STATE(1941)] = 48985, + [SMALL_STATE(1942)] = 49036, + [SMALL_STATE(1943)] = 49089, + [SMALL_STATE(1944)] = 49138, + [SMALL_STATE(1945)] = 49191, + [SMALL_STATE(1946)] = 49244, + [SMALL_STATE(1947)] = 49297, + [SMALL_STATE(1948)] = 49350, + [SMALL_STATE(1949)] = 49405, + [SMALL_STATE(1950)] = 49456, + [SMALL_STATE(1951)] = 49509, + [SMALL_STATE(1952)] = 49560, + [SMALL_STATE(1953)] = 49617, + [SMALL_STATE(1954)] = 49670, + [SMALL_STATE(1955)] = 49719, + [SMALL_STATE(1956)] = 49774, + [SMALL_STATE(1957)] = 49827, + [SMALL_STATE(1958)] = 49880, + [SMALL_STATE(1959)] = 49933, + [SMALL_STATE(1960)] = 49986, + [SMALL_STATE(1961)] = 50035, + [SMALL_STATE(1962)] = 50088, + [SMALL_STATE(1963)] = 50141, + [SMALL_STATE(1964)] = 50194, + [SMALL_STATE(1965)] = 50247, + [SMALL_STATE(1966)] = 50300, + [SMALL_STATE(1967)] = 50380, + [SMALL_STATE(1968)] = 50446, + [SMALL_STATE(1969)] = 50510, + [SMALL_STATE(1970)] = 50574, + [SMALL_STATE(1971)] = 50636, + [SMALL_STATE(1972)] = 50694, + [SMALL_STATE(1973)] = 50750, + [SMALL_STATE(1974)] = 50804, + [SMALL_STATE(1975)] = 50856, + [SMALL_STATE(1976)] = 50932, + [SMALL_STATE(1977)] = 51006, + [SMALL_STATE(1978)] = 51084, + [SMALL_STATE(1979)] = 51160, + [SMALL_STATE(1980)] = 51240, + [SMALL_STATE(1981)] = 51318, + [SMALL_STATE(1982)] = 51386, + [SMALL_STATE(1983)] = 51452, + [SMALL_STATE(1984)] = 51514, + [SMALL_STATE(1985)] = 51574, + [SMALL_STATE(1986)] = 51644, + [SMALL_STATE(1987)] = 51712, + [SMALL_STATE(1988)] = 51784, + [SMALL_STATE(1989)] = 51854, + [SMALL_STATE(1990)] = 51928, + [SMALL_STATE(1991)] = 52000, + [SMALL_STATE(1992)] = 52066, + [SMALL_STATE(1993)] = 52130, + [SMALL_STATE(1994)] = 52188, + [SMALL_STATE(1995)] = 52242, + [SMALL_STATE(1996)] = 52318, + [SMALL_STATE(1997)] = 52370, + [SMALL_STATE(1998)] = 52448, + [SMALL_STATE(1999)] = 52500, + [SMALL_STATE(2000)] = 52580, + [SMALL_STATE(2001)] = 52634, + [SMALL_STATE(2002)] = 52702, + [SMALL_STATE(2003)] = 52754, + [SMALL_STATE(2004)] = 52802, + [SMALL_STATE(2005)] = 52864, + [SMALL_STATE(2006)] = 52934, + [SMALL_STATE(2007)] = 52988, + [SMALL_STATE(2008)] = 53060, + [SMALL_STATE(2009)] = 53114, + [SMALL_STATE(2010)] = 53188, + [SMALL_STATE(2011)] = 53240, + [SMALL_STATE(2012)] = 53292, + [SMALL_STATE(2013)] = 53356, + [SMALL_STATE(2014)] = 53418, + [SMALL_STATE(2015)] = 53474, + [SMALL_STATE(2016)] = 53526, + [SMALL_STATE(2017)] = 53600, + [SMALL_STATE(2018)] = 53676, + [SMALL_STATE(2019)] = 53754, + [SMALL_STATE(2020)] = 53820, + [SMALL_STATE(2021)] = 53880, + [SMALL_STATE(2022)] = 53948, + [SMALL_STATE(2023)] = 54018, + [SMALL_STATE(2024)] = 54090, + [SMALL_STATE(2025)] = 54156, + [SMALL_STATE(2026)] = 54220, + [SMALL_STATE(2027)] = 54284, + [SMALL_STATE(2028)] = 54346, + [SMALL_STATE(2029)] = 54404, + [SMALL_STATE(2030)] = 54460, + [SMALL_STATE(2031)] = 54514, + [SMALL_STATE(2032)] = 54566, + [SMALL_STATE(2033)] = 54642, + [SMALL_STATE(2034)] = 54716, + [SMALL_STATE(2035)] = 54794, + [SMALL_STATE(2036)] = 54870, + [SMALL_STATE(2037)] = 54920, + [SMALL_STATE(2038)] = 54998, + [SMALL_STATE(2039)] = 55066, + [SMALL_STATE(2040)] = 55132, + [SMALL_STATE(2041)] = 55194, + [SMALL_STATE(2042)] = 55254, + [SMALL_STATE(2043)] = 55324, + [SMALL_STATE(2044)] = 55392, + [SMALL_STATE(2045)] = 55464, + [SMALL_STATE(2046)] = 55534, + [SMALL_STATE(2047)] = 55608, + [SMALL_STATE(2048)] = 55680, + [SMALL_STATE(2049)] = 55744, + [SMALL_STATE(2050)] = 55806, + [SMALL_STATE(2051)] = 55862, + [SMALL_STATE(2052)] = 55914, + [SMALL_STATE(2053)] = 55988, + [SMALL_STATE(2054)] = 56064, + [SMALL_STATE(2055)] = 56142, + [SMALL_STATE(2056)] = 56208, + [SMALL_STATE(2057)] = 56268, + [SMALL_STATE(2058)] = 56336, + [SMALL_STATE(2059)] = 56408, + [SMALL_STATE(2060)] = 56460, + [SMALL_STATE(2061)] = 56510, + [SMALL_STATE(2062)] = 56558, + [SMALL_STATE(2063)] = 56612, + [SMALL_STATE(2064)] = 56664, + [SMALL_STATE(2065)] = 56714, + [SMALL_STATE(2066)] = 56768, + [SMALL_STATE(2067)] = 56824, + [SMALL_STATE(2068)] = 56872, + [SMALL_STATE(2069)] = 56920, + [SMALL_STATE(2070)] = 56968, + [SMALL_STATE(2071)] = 57022, + [SMALL_STATE(2072)] = 57070, + [SMALL_STATE(2073)] = 57126, + [SMALL_STATE(2074)] = 57178, + [SMALL_STATE(2075)] = 57230, + [SMALL_STATE(2076)] = 57282, + [SMALL_STATE(2077)] = 57348, + [SMALL_STATE(2078)] = 57412, + [SMALL_STATE(2079)] = 57466, + [SMALL_STATE(2080)] = 57524, + [SMALL_STATE(2081)] = 57578, + [SMALL_STATE(2082)] = 57626, + [SMALL_STATE(2083)] = 57680, + [SMALL_STATE(2084)] = 57756, + [SMALL_STATE(2085)] = 57804, + [SMALL_STATE(2086)] = 57852, + [SMALL_STATE(2087)] = 57898, + [SMALL_STATE(2088)] = 57952, + [SMALL_STATE(2089)] = 58030, + [SMALL_STATE(2090)] = 58110, + [SMALL_STATE(2091)] = 58158, + [SMALL_STATE(2092)] = 58212, + [SMALL_STATE(2093)] = 58266, + [SMALL_STATE(2094)] = 58316, + [SMALL_STATE(2095)] = 58370, + [SMALL_STATE(2096)] = 58424, + [SMALL_STATE(2097)] = 58474, + [SMALL_STATE(2098)] = 58528, + [SMALL_STATE(2099)] = 58596, + [SMALL_STATE(2100)] = 58650, + [SMALL_STATE(2101)] = 58712, + [SMALL_STATE(2102)] = 58782, + [SMALL_STATE(2103)] = 58854, + [SMALL_STATE(2104)] = 58928, + [SMALL_STATE(2105)] = 58978, + [SMALL_STATE(2106)] = 59028, + [SMALL_STATE(2107)] = 59082, + [SMALL_STATE(2108)] = 59134, + [SMALL_STATE(2109)] = 59186, + [SMALL_STATE(2110)] = 59234, + [SMALL_STATE(2111)] = 59304, + [SMALL_STATE(2112)] = 59351, + [SMALL_STATE(2113)] = 59400, + [SMALL_STATE(2114)] = 59449, + [SMALL_STATE(2115)] = 59496, + [SMALL_STATE(2116)] = 59575, + [SMALL_STATE(2117)] = 59654, + [SMALL_STATE(2118)] = 59703, + [SMALL_STATE(2119)] = 59752, + [SMALL_STATE(2120)] = 59831, + [SMALL_STATE(2121)] = 59880, + [SMALL_STATE(2122)] = 59929, + [SMALL_STATE(2123)] = 59976, + [SMALL_STATE(2124)] = 60023, + [SMALL_STATE(2125)] = 60102, + [SMALL_STATE(2126)] = 60181, + [SMALL_STATE(2127)] = 60230, + [SMALL_STATE(2128)] = 60309, + [SMALL_STATE(2129)] = 60358, + [SMALL_STATE(2130)] = 60409, + [SMALL_STATE(2131)] = 60456, + [SMALL_STATE(2132)] = 60501, + [SMALL_STATE(2133)] = 60548, + [SMALL_STATE(2134)] = 60599, + [SMALL_STATE(2135)] = 60648, + [SMALL_STATE(2136)] = 60694, + [SMALL_STATE(2137)] = 60740, + [SMALL_STATE(2138)] = 60786, + [SMALL_STATE(2139)] = 60832, + [SMALL_STATE(2140)] = 60892, + [SMALL_STATE(2141)] = 60938, + [SMALL_STATE(2142)] = 60990, + [SMALL_STATE(2143)] = 61036, + [SMALL_STATE(2144)] = 61084, + [SMALL_STATE(2145)] = 61154, + [SMALL_STATE(2146)] = 61226, + [SMALL_STATE(2147)] = 61300, + [SMALL_STATE(2148)] = 61362, + [SMALL_STATE(2149)] = 61454, + [SMALL_STATE(2150)] = 61510, + [SMALL_STATE(2151)] = 61574, + [SMALL_STATE(2152)] = 61620, + [SMALL_STATE(2153)] = 61686, + [SMALL_STATE(2154)] = 61732, + [SMALL_STATE(2155)] = 61778, + [SMALL_STATE(2156)] = 61824, + [SMALL_STATE(2157)] = 61872, + [SMALL_STATE(2158)] = 61918, + [SMALL_STATE(2159)] = 61964, + [SMALL_STATE(2160)] = 62032, + [SMALL_STATE(2161)] = 62078, + [SMALL_STATE(2162)] = 62124, + [SMALL_STATE(2163)] = 62170, + [SMALL_STATE(2164)] = 62216, + [SMALL_STATE(2165)] = 62262, + [SMALL_STATE(2166)] = 62308, + [SMALL_STATE(2167)] = 62354, + [SMALL_STATE(2168)] = 62400, + [SMALL_STATE(2169)] = 62446, + [SMALL_STATE(2170)] = 62492, + [SMALL_STATE(2171)] = 62552, + [SMALL_STATE(2172)] = 62610, + [SMALL_STATE(2173)] = 62662, + [SMALL_STATE(2174)] = 62710, + [SMALL_STATE(2175)] = 62780, + [SMALL_STATE(2176)] = 62852, + [SMALL_STATE(2177)] = 62926, + [SMALL_STATE(2178)] = 62988, + [SMALL_STATE(2179)] = 63044, + [SMALL_STATE(2180)] = 63108, + [SMALL_STATE(2181)] = 63174, + [SMALL_STATE(2182)] = 63242, + [SMALL_STATE(2183)] = 63290, + [SMALL_STATE(2184)] = 63336, + [SMALL_STATE(2185)] = 63382, + [SMALL_STATE(2186)] = 63474, + [SMALL_STATE(2187)] = 63520, + [SMALL_STATE(2188)] = 63566, + [SMALL_STATE(2189)] = 63612, + [SMALL_STATE(2190)] = 63658, + [SMALL_STATE(2191)] = 63704, + [SMALL_STATE(2192)] = 63750, + [SMALL_STATE(2193)] = 63796, + [SMALL_STATE(2194)] = 63888, + [SMALL_STATE(2195)] = 63934, + [SMALL_STATE(2196)] = 63980, + [SMALL_STATE(2197)] = 64026, + [SMALL_STATE(2198)] = 64072, + [SMALL_STATE(2199)] = 64118, + [SMALL_STATE(2200)] = 64164, + [SMALL_STATE(2201)] = 64210, + [SMALL_STATE(2202)] = 64256, + [SMALL_STATE(2203)] = 64304, + [SMALL_STATE(2204)] = 64350, + [SMALL_STATE(2205)] = 64442, + [SMALL_STATE(2206)] = 64488, + [SMALL_STATE(2207)] = 64536, + [SMALL_STATE(2208)] = 64584, + [SMALL_STATE(2209)] = 64632, + [SMALL_STATE(2210)] = 64680, + [SMALL_STATE(2211)] = 64728, + [SMALL_STATE(2212)] = 64776, + [SMALL_STATE(2213)] = 64822, + [SMALL_STATE(2214)] = 64868, + [SMALL_STATE(2215)] = 64926, + [SMALL_STATE(2216)] = 65013, + [SMALL_STATE(2217)] = 65086, + [SMALL_STATE(2218)] = 65175, + [SMALL_STATE(2219)] = 65248, + [SMALL_STATE(2220)] = 65293, + [SMALL_STATE(2221)] = 65366, + [SMALL_STATE(2222)] = 65439, + [SMALL_STATE(2223)] = 65512, + [SMALL_STATE(2224)] = 65563, + [SMALL_STATE(2225)] = 65636, + [SMALL_STATE(2226)] = 65682, + [SMALL_STATE(2227)] = 65732, + [SMALL_STATE(2228)] = 65782, + [SMALL_STATE(2229)] = 65832, + [SMALL_STATE(2230)] = 65882, + [SMALL_STATE(2231)] = 65928, + [SMALL_STATE(2232)] = 65971, + [SMALL_STATE(2233)] = 66014, + [SMALL_STATE(2234)] = 66059, + [SMALL_STATE(2235)] = 66102, + [SMALL_STATE(2236)] = 66147, + [SMALL_STATE(2237)] = 66196, + [SMALL_STATE(2238)] = 66245, + [SMALL_STATE(2239)] = 66288, + [SMALL_STATE(2240)] = 66331, + [SMALL_STATE(2241)] = 66380, + [SMALL_STATE(2242)] = 66429, + [SMALL_STATE(2243)] = 66472, + [SMALL_STATE(2244)] = 66515, + [SMALL_STATE(2245)] = 66562, + [SMALL_STATE(2246)] = 66605, + [SMALL_STATE(2247)] = 66654, + [SMALL_STATE(2248)] = 66705, + [SMALL_STATE(2249)] = 66754, + [SMALL_STATE(2250)] = 66796, + [SMALL_STATE(2251)] = 66840, + [SMALL_STATE(2252)] = 66886, + [SMALL_STATE(2253)] = 66928, + [SMALL_STATE(2254)] = 66973, + [SMALL_STATE(2255)] = 67014, + [SMALL_STATE(2256)] = 67059, + [SMALL_STATE(2257)] = 67103, + [SMALL_STATE(2258)] = 67185, + [SMALL_STATE(2259)] = 67229, + [SMALL_STATE(2260)] = 67311, + [SMALL_STATE(2261)] = 67355, + [SMALL_STATE(2262)] = 67399, + [SMALL_STATE(2263)] = 67439, + [SMALL_STATE(2264)] = 67484, + [SMALL_STATE(2265)] = 67560, + [SMALL_STATE(2266)] = 67636, + [SMALL_STATE(2267)] = 67712, + [SMALL_STATE(2268)] = 67758, + [SMALL_STATE(2269)] = 67834, + [SMALL_STATE(2270)] = 67910, + [SMALL_STATE(2271)] = 67986, + [SMALL_STATE(2272)] = 68062, + [SMALL_STATE(2273)] = 68138, + [SMALL_STATE(2274)] = 68214, + [SMALL_STATE(2275)] = 68290, + [SMALL_STATE(2276)] = 68366, + [SMALL_STATE(2277)] = 68442, + [SMALL_STATE(2278)] = 68518, + [SMALL_STATE(2279)] = 68594, + [SMALL_STATE(2280)] = 68670, + [SMALL_STATE(2281)] = 68746, + [SMALL_STATE(2282)] = 68822, + [SMALL_STATE(2283)] = 68874, + [SMALL_STATE(2284)] = 68918, + [SMALL_STATE(2285)] = 68960, + [SMALL_STATE(2286)] = 69006, + [SMALL_STATE(2287)] = 69052, + [SMALL_STATE(2288)] = 69128, + [SMALL_STATE(2289)] = 69204, + [SMALL_STATE(2290)] = 69280, + [SMALL_STATE(2291)] = 69356, + [SMALL_STATE(2292)] = 69432, + [SMALL_STATE(2293)] = 69508, + [SMALL_STATE(2294)] = 69584, + [SMALL_STATE(2295)] = 69660, + [SMALL_STATE(2296)] = 69736, + [SMALL_STATE(2297)] = 69781, + [SMALL_STATE(2298)] = 69826, + [SMALL_STATE(2299)] = 69875, + [SMALL_STATE(2300)] = 69924, + [SMALL_STATE(2301)] = 69969, + [SMALL_STATE(2302)] = 70014, + [SMALL_STATE(2303)] = 70059, + [SMALL_STATE(2304)] = 70098, + [SMALL_STATE(2305)] = 70147, + [SMALL_STATE(2306)] = 70198, + [SMALL_STATE(2307)] = 70241, + [SMALL_STATE(2308)] = 70281, + [SMALL_STATE(2309)] = 70351, + [SMALL_STATE(2310)] = 70405, + [SMALL_STATE(2311)] = 70441, + [SMALL_STATE(2312)] = 70477, + [SMALL_STATE(2313)] = 70513, + [SMALL_STATE(2314)] = 70561, + [SMALL_STATE(2315)] = 70597, + [SMALL_STATE(2316)] = 70633, + [SMALL_STATE(2317)] = 70669, + [SMALL_STATE(2318)] = 70717, + [SMALL_STATE(2319)] = 70763, + [SMALL_STATE(2320)] = 70809, + [SMALL_STATE(2321)] = 70855, + [SMALL_STATE(2322)] = 70901, + [SMALL_STATE(2323)] = 70971, + [SMALL_STATE(2324)] = 71041, + [SMALL_STATE(2325)] = 71111, + [SMALL_STATE(2326)] = 71181, + [SMALL_STATE(2327)] = 71251, + [SMALL_STATE(2328)] = 71291, + [SMALL_STATE(2329)] = 71331, + [SMALL_STATE(2330)] = 71373, + [SMALL_STATE(2331)] = 71421, + [SMALL_STATE(2332)] = 71491, + [SMALL_STATE(2333)] = 71561, + [SMALL_STATE(2334)] = 71631, + [SMALL_STATE(2335)] = 71701, + [SMALL_STATE(2336)] = 71771, + [SMALL_STATE(2337)] = 71841, + [SMALL_STATE(2338)] = 71880, + [SMALL_STATE(2339)] = 71931, + [SMALL_STATE(2340)] = 71970, + [SMALL_STATE(2341)] = 72009, + [SMALL_STATE(2342)] = 72048, + [SMALL_STATE(2343)] = 72085, + [SMALL_STATE(2344)] = 72138, + [SMALL_STATE(2345)] = 72185, + [SMALL_STATE(2346)] = 72222, + [SMALL_STATE(2347)] = 72259, + [SMALL_STATE(2348)] = 72310, + [SMALL_STATE(2349)] = 72349, + [SMALL_STATE(2350)] = 72394, + [SMALL_STATE(2351)] = 72439, + [SMALL_STATE(2352)] = 72484, + [SMALL_STATE(2353)] = 72529, + [SMALL_STATE(2354)] = 72580, + [SMALL_STATE(2355)] = 72617, + [SMALL_STATE(2356)] = 72654, + [SMALL_STATE(2357)] = 72691, + [SMALL_STATE(2358)] = 72725, + [SMALL_STATE(2359)] = 72775, + [SMALL_STATE(2360)] = 72809, + [SMALL_STATE(2361)] = 72843, + [SMALL_STATE(2362)] = 72879, + [SMALL_STATE(2363)] = 72917, + [SMALL_STATE(2364)] = 72951, + [SMALL_STATE(2365)] = 72989, + [SMALL_STATE(2366)] = 73023, + [SMALL_STATE(2367)] = 73069, + [SMALL_STATE(2368)] = 73103, + [SMALL_STATE(2369)] = 73137, + [SMALL_STATE(2370)] = 73187, + [SMALL_STATE(2371)] = 73221, + [SMALL_STATE(2372)] = 73255, + [SMALL_STATE(2373)] = 73289, + [SMALL_STATE(2374)] = 73323, + [SMALL_STATE(2375)] = 73357, + [SMALL_STATE(2376)] = 73391, + [SMALL_STATE(2377)] = 73425, + [SMALL_STATE(2378)] = 73463, + [SMALL_STATE(2379)] = 73501, + [SMALL_STATE(2380)] = 73535, + [SMALL_STATE(2381)] = 73569, + [SMALL_STATE(2382)] = 73603, + [SMALL_STATE(2383)] = 73637, + [SMALL_STATE(2384)] = 73671, + [SMALL_STATE(2385)] = 73705, + [SMALL_STATE(2386)] = 73753, + [SMALL_STATE(2387)] = 73793, + [SMALL_STATE(2388)] = 73841, + [SMALL_STATE(2389)] = 73889, + [SMALL_STATE(2390)] = 73929, + [SMALL_STATE(2391)] = 73977, + [SMALL_STATE(2392)] = 74011, + [SMALL_STATE(2393)] = 74045, + [SMALL_STATE(2394)] = 74081, + [SMALL_STATE(2395)] = 74131, + [SMALL_STATE(2396)] = 74165, + [SMALL_STATE(2397)] = 74198, + [SMALL_STATE(2398)] = 74231, + [SMALL_STATE(2399)] = 74266, + [SMALL_STATE(2400)] = 74303, + [SMALL_STATE(2401)] = 74336, + [SMALL_STATE(2402)] = 74369, + [SMALL_STATE(2403)] = 74410, + [SMALL_STATE(2404)] = 74447, + [SMALL_STATE(2405)] = 74494, + [SMALL_STATE(2406)] = 74527, + [SMALL_STATE(2407)] = 74566, + [SMALL_STATE(2408)] = 74605, + [SMALL_STATE(2409)] = 74638, + [SMALL_STATE(2410)] = 74685, + [SMALL_STATE(2411)] = 74718, + [SMALL_STATE(2412)] = 74751, + [SMALL_STATE(2413)] = 74784, + [SMALL_STATE(2414)] = 74817, + [SMALL_STATE(2415)] = 74854, + [SMALL_STATE(2416)] = 74889, + [SMALL_STATE(2417)] = 74940, + [SMALL_STATE(2418)] = 74979, + [SMALL_STATE(2419)] = 75012, + [SMALL_STATE(2420)] = 75045, + [SMALL_STATE(2421)] = 75078, + [SMALL_STATE(2422)] = 75111, + [SMALL_STATE(2423)] = 75152, + [SMALL_STATE(2424)] = 75185, + [SMALL_STATE(2425)] = 75232, + [SMALL_STATE(2426)] = 75273, + [SMALL_STATE(2427)] = 75308, + [SMALL_STATE(2428)] = 75341, + [SMALL_STATE(2429)] = 75388, + [SMALL_STATE(2430)] = 75423, + [SMALL_STATE(2431)] = 75456, + [SMALL_STATE(2432)] = 75503, + [SMALL_STATE(2433)] = 75536, + [SMALL_STATE(2434)] = 75569, + [SMALL_STATE(2435)] = 75606, + [SMALL_STATE(2436)] = 75639, + [SMALL_STATE(2437)] = 75672, + [SMALL_STATE(2438)] = 75708, + [SMALL_STATE(2439)] = 75742, + [SMALL_STATE(2440)] = 75776, + [SMALL_STATE(2441)] = 75824, + [SMALL_STATE(2442)] = 75860, + [SMALL_STATE(2443)] = 75896, + [SMALL_STATE(2444)] = 75928, + [SMALL_STATE(2445)] = 75960, + [SMALL_STATE(2446)] = 75992, + [SMALL_STATE(2447)] = 76038, + [SMALL_STATE(2448)] = 76076, + [SMALL_STATE(2449)] = 76110, + [SMALL_STATE(2450)] = 76150, + [SMALL_STATE(2451)] = 76184, + [SMALL_STATE(2452)] = 76222, + [SMALL_STATE(2453)] = 76260, + [SMALL_STATE(2454)] = 76298, + [SMALL_STATE(2455)] = 76338, + [SMALL_STATE(2456)] = 76386, + [SMALL_STATE(2457)] = 76434, + [SMALL_STATE(2458)] = 76470, + [SMALL_STATE(2459)] = 76510, + [SMALL_STATE(2460)] = 76542, + [SMALL_STATE(2461)] = 76574, + [SMALL_STATE(2462)] = 76606, + [SMALL_STATE(2463)] = 76638, + [SMALL_STATE(2464)] = 76676, + [SMALL_STATE(2465)] = 76708, + [SMALL_STATE(2466)] = 76740, + [SMALL_STATE(2467)] = 76772, + [SMALL_STATE(2468)] = 76804, + [SMALL_STATE(2469)] = 76836, + [SMALL_STATE(2470)] = 76874, + [SMALL_STATE(2471)] = 76912, + [SMALL_STATE(2472)] = 76950, + [SMALL_STATE(2473)] = 76988, + [SMALL_STATE(2474)] = 77024, + [SMALL_STATE(2475)] = 77062, + [SMALL_STATE(2476)] = 77093, + [SMALL_STATE(2477)] = 77128, + [SMALL_STATE(2478)] = 77167, + [SMALL_STATE(2479)] = 77200, + [SMALL_STATE(2480)] = 77245, + [SMALL_STATE(2481)] = 77276, + [SMALL_STATE(2482)] = 77311, + [SMALL_STATE(2483)] = 77344, + [SMALL_STATE(2484)] = 77375, + [SMALL_STATE(2485)] = 77420, + [SMALL_STATE(2486)] = 77453, + [SMALL_STATE(2487)] = 77484, + [SMALL_STATE(2488)] = 77517, + [SMALL_STATE(2489)] = 77558, + [SMALL_STATE(2490)] = 77593, + [SMALL_STATE(2491)] = 77624, + [SMALL_STATE(2492)] = 77663, + [SMALL_STATE(2493)] = 77694, + [SMALL_STATE(2494)] = 77727, + [SMALL_STATE(2495)] = 77758, + [SMALL_STATE(2496)] = 77795, + [SMALL_STATE(2497)] = 77826, + [SMALL_STATE(2498)] = 77857, + [SMALL_STATE(2499)] = 77896, + [SMALL_STATE(2500)] = 77927, + [SMALL_STATE(2501)] = 77972, + [SMALL_STATE(2502)] = 78017, + [SMALL_STATE(2503)] = 78062, + [SMALL_STATE(2504)] = 78095, + [SMALL_STATE(2505)] = 78132, + [SMALL_STATE(2506)] = 78167, + [SMALL_STATE(2507)] = 78204, + [SMALL_STATE(2508)] = 78239, + [SMALL_STATE(2509)] = 78270, + [SMALL_STATE(2510)] = 78307, + [SMALL_STATE(2511)] = 78338, + [SMALL_STATE(2512)] = 78371, + [SMALL_STATE(2513)] = 78403, + [SMALL_STATE(2514)] = 78441, + [SMALL_STATE(2515)] = 78477, + [SMALL_STATE(2516)] = 78513, + [SMALL_STATE(2517)] = 78549, + [SMALL_STATE(2518)] = 78601, + [SMALL_STATE(2519)] = 78637, + [SMALL_STATE(2520)] = 78667, + [SMALL_STATE(2521)] = 78697, + [SMALL_STATE(2522)] = 78727, + [SMALL_STATE(2523)] = 78757, + [SMALL_STATE(2524)] = 78787, + [SMALL_STATE(2525)] = 78819, + [SMALL_STATE(2526)] = 78849, + [SMALL_STATE(2527)] = 78881, + [SMALL_STATE(2528)] = 78913, + [SMALL_STATE(2529)] = 78945, + [SMALL_STATE(2530)] = 78979, + [SMALL_STATE(2531)] = 79013, + [SMALL_STATE(2532)] = 79045, + [SMALL_STATE(2533)] = 79077, + [SMALL_STATE(2534)] = 79109, + [SMALL_STATE(2535)] = 79147, + [SMALL_STATE(2536)] = 79179, + [SMALL_STATE(2537)] = 79217, + [SMALL_STATE(2538)] = 79269, + [SMALL_STATE(2539)] = 79299, + [SMALL_STATE(2540)] = 79329, + [SMALL_STATE(2541)] = 79359, + [SMALL_STATE(2542)] = 79399, + [SMALL_STATE(2543)] = 79449, + [SMALL_STATE(2544)] = 79479, + [SMALL_STATE(2545)] = 79517, + [SMALL_STATE(2546)] = 79547, + [SMALL_STATE(2547)] = 79577, + [SMALL_STATE(2548)] = 79615, + [SMALL_STATE(2549)] = 79667, + [SMALL_STATE(2550)] = 79701, + [SMALL_STATE(2551)] = 79735, + [SMALL_STATE(2552)] = 79787, + [SMALL_STATE(2553)] = 79817, + [SMALL_STATE(2554)] = 79847, + [SMALL_STATE(2555)] = 79883, + [SMALL_STATE(2556)] = 79915, + [SMALL_STATE(2557)] = 79951, + [SMALL_STATE(2558)] = 79981, + [SMALL_STATE(2559)] = 80011, + [SMALL_STATE(2560)] = 80047, + [SMALL_STATE(2561)] = 80079, + [SMALL_STATE(2562)] = 80111, + [SMALL_STATE(2563)] = 80143, + [SMALL_STATE(2564)] = 80175, + [SMALL_STATE(2565)] = 80209, + [SMALL_STATE(2566)] = 80246, + [SMALL_STATE(2567)] = 80275, + [SMALL_STATE(2568)] = 80304, + [SMALL_STATE(2569)] = 80335, + [SMALL_STATE(2570)] = 80366, + [SMALL_STATE(2571)] = 80397, + [SMALL_STATE(2572)] = 80428, + [SMALL_STATE(2573)] = 80459, + [SMALL_STATE(2574)] = 80490, + [SMALL_STATE(2575)] = 80521, + [SMALL_STATE(2576)] = 80552, + [SMALL_STATE(2577)] = 80583, + [SMALL_STATE(2578)] = 80614, + [SMALL_STATE(2579)] = 80645, + [SMALL_STATE(2580)] = 80676, + [SMALL_STATE(2581)] = 80707, + [SMALL_STATE(2582)] = 80744, + [SMALL_STATE(2583)] = 80781, + [SMALL_STATE(2584)] = 80810, + [SMALL_STATE(2585)] = 80841, + [SMALL_STATE(2586)] = 80870, + [SMALL_STATE(2587)] = 80901, + [SMALL_STATE(2588)] = 80932, + [SMALL_STATE(2589)] = 80961, + [SMALL_STATE(2590)] = 80992, + [SMALL_STATE(2591)] = 81029, + [SMALL_STATE(2592)] = 81060, + [SMALL_STATE(2593)] = 81097, + [SMALL_STATE(2594)] = 81134, + [SMALL_STATE(2595)] = 81171, + [SMALL_STATE(2596)] = 81200, + [SMALL_STATE(2597)] = 81237, + [SMALL_STATE(2598)] = 81266, + [SMALL_STATE(2599)] = 81303, + [SMALL_STATE(2600)] = 81340, + [SMALL_STATE(2601)] = 81373, + [SMALL_STATE(2602)] = 81402, + [SMALL_STATE(2603)] = 81435, + [SMALL_STATE(2604)] = 81466, + [SMALL_STATE(2605)] = 81495, + [SMALL_STATE(2606)] = 81528, + [SMALL_STATE(2607)] = 81557, + [SMALL_STATE(2608)] = 81586, + [SMALL_STATE(2609)] = 81615, + [SMALL_STATE(2610)] = 81646, + [SMALL_STATE(2611)] = 81675, + [SMALL_STATE(2612)] = 81712, + [SMALL_STATE(2613)] = 81741, + [SMALL_STATE(2614)] = 81776, + [SMALL_STATE(2615)] = 81805, + [SMALL_STATE(2616)] = 81834, + [SMALL_STATE(2617)] = 81867, + [SMALL_STATE(2618)] = 81896, + [SMALL_STATE(2619)] = 81933, + [SMALL_STATE(2620)] = 81962, + [SMALL_STATE(2621)] = 81993, + [SMALL_STATE(2622)] = 82022, + [SMALL_STATE(2623)] = 82051, + [SMALL_STATE(2624)] = 82082, + [SMALL_STATE(2625)] = 82111, + [SMALL_STATE(2626)] = 82142, + [SMALL_STATE(2627)] = 82175, + [SMALL_STATE(2628)] = 82206, + [SMALL_STATE(2629)] = 82237, + [SMALL_STATE(2630)] = 82268, + [SMALL_STATE(2631)] = 82297, + [SMALL_STATE(2632)] = 82334, + [SMALL_STATE(2633)] = 82364, + [SMALL_STATE(2634)] = 82392, + [SMALL_STATE(2635)] = 82424, + [SMALL_STATE(2636)] = 82460, + [SMALL_STATE(2637)] = 82504, + [SMALL_STATE(2638)] = 82538, + [SMALL_STATE(2639)] = 82568, + [SMALL_STATE(2640)] = 82604, + [SMALL_STATE(2641)] = 82632, + [SMALL_STATE(2642)] = 82660, + [SMALL_STATE(2643)] = 82688, + [SMALL_STATE(2644)] = 82720, + [SMALL_STATE(2645)] = 82756, + [SMALL_STATE(2646)] = 82786, + [SMALL_STATE(2647)] = 82814, + [SMALL_STATE(2648)] = 82850, + [SMALL_STATE(2649)] = 82880, + [SMALL_STATE(2650)] = 82908, + [SMALL_STATE(2651)] = 82936, + [SMALL_STATE(2652)] = 82966, + [SMALL_STATE(2653)] = 82994, + [SMALL_STATE(2654)] = 83024, + [SMALL_STATE(2655)] = 83054, + [SMALL_STATE(2656)] = 83098, + [SMALL_STATE(2657)] = 83134, + [SMALL_STATE(2658)] = 83164, + [SMALL_STATE(2659)] = 83200, + [SMALL_STATE(2660)] = 83228, + [SMALL_STATE(2661)] = 83256, + [SMALL_STATE(2662)] = 83292, + [SMALL_STATE(2663)] = 83322, + [SMALL_STATE(2664)] = 83358, + [SMALL_STATE(2665)] = 83402, + [SMALL_STATE(2666)] = 83430, + [SMALL_STATE(2667)] = 83460, + [SMALL_STATE(2668)] = 83488, + [SMALL_STATE(2669)] = 83524, + [SMALL_STATE(2670)] = 83558, + [SMALL_STATE(2671)] = 83590, + [SMALL_STATE(2672)] = 83618, + [SMALL_STATE(2673)] = 83650, + [SMALL_STATE(2674)] = 83682, + [SMALL_STATE(2675)] = 83714, + [SMALL_STATE(2676)] = 83746, + [SMALL_STATE(2677)] = 83778, + [SMALL_STATE(2678)] = 83814, + [SMALL_STATE(2679)] = 83844, + [SMALL_STATE(2680)] = 83888, + [SMALL_STATE(2681)] = 83918, + [SMALL_STATE(2682)] = 83948, + [SMALL_STATE(2683)] = 83992, + [SMALL_STATE(2684)] = 84020, + [SMALL_STATE(2685)] = 84048, + [SMALL_STATE(2686)] = 84084, + [SMALL_STATE(2687)] = 84112, + [SMALL_STATE(2688)] = 84140, + [SMALL_STATE(2689)] = 84176, + [SMALL_STATE(2690)] = 84212, + [SMALL_STATE(2691)] = 84250, + [SMALL_STATE(2692)] = 84280, + [SMALL_STATE(2693)] = 84308, + [SMALL_STATE(2694)] = 84343, + [SMALL_STATE(2695)] = 84370, + [SMALL_STATE(2696)] = 84401, + [SMALL_STATE(2697)] = 84432, + [SMALL_STATE(2698)] = 84469, + [SMALL_STATE(2699)] = 84498, + [SMALL_STATE(2700)] = 84527, + [SMALL_STATE(2701)] = 84558, + [SMALL_STATE(2702)] = 84585, + [SMALL_STATE(2703)] = 84618, + [SMALL_STATE(2704)] = 84651, + [SMALL_STATE(2705)] = 84682, + [SMALL_STATE(2706)] = 84709, + [SMALL_STATE(2707)] = 84740, + [SMALL_STATE(2708)] = 84771, + [SMALL_STATE(2709)] = 84798, + [SMALL_STATE(2710)] = 84825, + [SMALL_STATE(2711)] = 84854, + [SMALL_STATE(2712)] = 84881, + [SMALL_STATE(2713)] = 84912, + [SMALL_STATE(2714)] = 84941, + [SMALL_STATE(2715)] = 84972, + [SMALL_STATE(2716)] = 85003, + [SMALL_STATE(2717)] = 85030, + [SMALL_STATE(2718)] = 85057, + [SMALL_STATE(2719)] = 85084, + [SMALL_STATE(2720)] = 85111, + [SMALL_STATE(2721)] = 85142, + [SMALL_STATE(2722)] = 85173, + [SMALL_STATE(2723)] = 85200, + [SMALL_STATE(2724)] = 85233, + [SMALL_STATE(2725)] = 85264, + [SMALL_STATE(2726)] = 85295, + [SMALL_STATE(2727)] = 85324, + [SMALL_STATE(2728)] = 85353, + [SMALL_STATE(2729)] = 85384, + [SMALL_STATE(2730)] = 85417, + [SMALL_STATE(2731)] = 85450, + [SMALL_STATE(2732)] = 85481, + [SMALL_STATE(2733)] = 85514, + [SMALL_STATE(2734)] = 85545, + [SMALL_STATE(2735)] = 85572, + [SMALL_STATE(2736)] = 85603, + [SMALL_STATE(2737)] = 85634, + [SMALL_STATE(2738)] = 85669, + [SMALL_STATE(2739)] = 85704, + [SMALL_STATE(2740)] = 85735, + [SMALL_STATE(2741)] = 85766, + [SMALL_STATE(2742)] = 85797, + [SMALL_STATE(2743)] = 85830, + [SMALL_STATE(2744)] = 85855, + [SMALL_STATE(2745)] = 85884, + [SMALL_STATE(2746)] = 85917, + [SMALL_STATE(2747)] = 85942, + [SMALL_STATE(2748)] = 85973, + [SMALL_STATE(2749)] = 85998, + [SMALL_STATE(2750)] = 86023, + [SMALL_STATE(2751)] = 86054, + [SMALL_STATE(2752)] = 86079, + [SMALL_STATE(2753)] = 86104, + [SMALL_STATE(2754)] = 86135, + [SMALL_STATE(2755)] = 86160, + [SMALL_STATE(2756)] = 86185, + [SMALL_STATE(2757)] = 86210, + [SMALL_STATE(2758)] = 86237, + [SMALL_STATE(2759)] = 86264, + [SMALL_STATE(2760)] = 86293, + [SMALL_STATE(2761)] = 86322, + [SMALL_STATE(2762)] = 86347, + [SMALL_STATE(2763)] = 86376, + [SMALL_STATE(2764)] = 86407, + [SMALL_STATE(2765)] = 86432, + [SMALL_STATE(2766)] = 86459, + [SMALL_STATE(2767)] = 86486, + [SMALL_STATE(2768)] = 86515, + [SMALL_STATE(2769)] = 86544, + [SMALL_STATE(2770)] = 86571, + [SMALL_STATE(2771)] = 86598, + [SMALL_STATE(2772)] = 86625, + [SMALL_STATE(2773)] = 86652, + [SMALL_STATE(2774)] = 86683, + [SMALL_STATE(2775)] = 86710, + [SMALL_STATE(2776)] = 86737, + [SMALL_STATE(2777)] = 86768, + [SMALL_STATE(2778)] = 86799, + [SMALL_STATE(2779)] = 86828, + [SMALL_STATE(2780)] = 86857, + [SMALL_STATE(2781)] = 86890, + [SMALL_STATE(2782)] = 86923, + [SMALL_STATE(2783)] = 86954, + [SMALL_STATE(2784)] = 86985, + [SMALL_STATE(2785)] = 87012, + [SMALL_STATE(2786)] = 87041, + [SMALL_STATE(2787)] = 87072, + [SMALL_STATE(2788)] = 87103, + [SMALL_STATE(2789)] = 87136, + [SMALL_STATE(2790)] = 87169, + [SMALL_STATE(2791)] = 87196, + [SMALL_STATE(2792)] = 87223, + [SMALL_STATE(2793)] = 87250, + [SMALL_STATE(2794)] = 87277, + [SMALL_STATE(2795)] = 87310, + [SMALL_STATE(2796)] = 87341, + [SMALL_STATE(2797)] = 87372, + [SMALL_STATE(2798)] = 87399, + [SMALL_STATE(2799)] = 87428, + [SMALL_STATE(2800)] = 87461, + [SMALL_STATE(2801)] = 87490, + [SMALL_STATE(2802)] = 87523, + [SMALL_STATE(2803)] = 87556, + [SMALL_STATE(2804)] = 87587, + [SMALL_STATE(2805)] = 87618, + [SMALL_STATE(2806)] = 87645, + [SMALL_STATE(2807)] = 87672, + [SMALL_STATE(2808)] = 87703, + [SMALL_STATE(2809)] = 87734, + [SMALL_STATE(2810)] = 87767, + [SMALL_STATE(2811)] = 87800, + [SMALL_STATE(2812)] = 87831, + [SMALL_STATE(2813)] = 87864, + [SMALL_STATE(2814)] = 87899, + [SMALL_STATE(2815)] = 87934, + [SMALL_STATE(2816)] = 87961, + [SMALL_STATE(2817)] = 87988, + [SMALL_STATE(2818)] = 88015, + [SMALL_STATE(2819)] = 88042, + [SMALL_STATE(2820)] = 88075, + [SMALL_STATE(2821)] = 88104, + [SMALL_STATE(2822)] = 88133, + [SMALL_STATE(2823)] = 88164, + [SMALL_STATE(2824)] = 88191, + [SMALL_STATE(2825)] = 88222, + [SMALL_STATE(2826)] = 88249, + [SMALL_STATE(2827)] = 88276, + [SMALL_STATE(2828)] = 88307, + [SMALL_STATE(2829)] = 88338, + [SMALL_STATE(2830)] = 88371, + [SMALL_STATE(2831)] = 88402, + [SMALL_STATE(2832)] = 88433, + [SMALL_STATE(2833)] = 88464, + [SMALL_STATE(2834)] = 88495, + [SMALL_STATE(2835)] = 88526, + [SMALL_STATE(2836)] = 88557, + [SMALL_STATE(2837)] = 88584, + [SMALL_STATE(2838)] = 88615, + [SMALL_STATE(2839)] = 88642, + [SMALL_STATE(2840)] = 88669, + [SMALL_STATE(2841)] = 88704, + [SMALL_STATE(2842)] = 88731, + [SMALL_STATE(2843)] = 88760, + [SMALL_STATE(2844)] = 88789, + [SMALL_STATE(2845)] = 88820, + [SMALL_STATE(2846)] = 88851, + [SMALL_STATE(2847)] = 88878, + [SMALL_STATE(2848)] = 88909, + [SMALL_STATE(2849)] = 88940, + [SMALL_STATE(2850)] = 88971, + [SMALL_STATE(2851)] = 89006, + [SMALL_STATE(2852)] = 89041, + [SMALL_STATE(2853)] = 89076, + [SMALL_STATE(2854)] = 89111, + [SMALL_STATE(2855)] = 89146, + [SMALL_STATE(2856)] = 89173, + [SMALL_STATE(2857)] = 89204, + [SMALL_STATE(2858)] = 89235, + [SMALL_STATE(2859)] = 89262, + [SMALL_STATE(2860)] = 89293, + [SMALL_STATE(2861)] = 89324, + [SMALL_STATE(2862)] = 89355, + [SMALL_STATE(2863)] = 89384, + [SMALL_STATE(2864)] = 89411, + [SMALL_STATE(2865)] = 89444, + [SMALL_STATE(2866)] = 89471, + [SMALL_STATE(2867)] = 89501, + [SMALL_STATE(2868)] = 89527, + [SMALL_STATE(2869)] = 89551, + [SMALL_STATE(2870)] = 89577, + [SMALL_STATE(2871)] = 89605, + [SMALL_STATE(2872)] = 89635, + [SMALL_STATE(2873)] = 89665, + [SMALL_STATE(2874)] = 89689, + [SMALL_STATE(2875)] = 89713, + [SMALL_STATE(2876)] = 89739, + [SMALL_STATE(2877)] = 89763, + [SMALL_STATE(2878)] = 89787, + [SMALL_STATE(2879)] = 89831, + [SMALL_STATE(2880)] = 89861, + [SMALL_STATE(2881)] = 89907, + [SMALL_STATE(2882)] = 89933, + [SMALL_STATE(2883)] = 89985, + [SMALL_STATE(2884)] = 90037, + [SMALL_STATE(2885)] = 90063, + [SMALL_STATE(2886)] = 90091, + [SMALL_STATE(2887)] = 90123, + [SMALL_STATE(2888)] = 90149, + [SMALL_STATE(2889)] = 90175, + [SMALL_STATE(2890)] = 90203, + [SMALL_STATE(2891)] = 90243, + [SMALL_STATE(2892)] = 90273, + [SMALL_STATE(2893)] = 90303, + [SMALL_STATE(2894)] = 90329, + [SMALL_STATE(2895)] = 90357, + [SMALL_STATE(2896)] = 90383, + [SMALL_STATE(2897)] = 90413, + [SMALL_STATE(2898)] = 90443, + [SMALL_STATE(2899)] = 90473, + [SMALL_STATE(2900)] = 90503, + [SMALL_STATE(2901)] = 90529, + [SMALL_STATE(2902)] = 90555, + [SMALL_STATE(2903)] = 90579, + [SMALL_STATE(2904)] = 90603, + [SMALL_STATE(2905)] = 90627, + [SMALL_STATE(2906)] = 90653, + [SMALL_STATE(2907)] = 90679, + [SMALL_STATE(2908)] = 90707, + [SMALL_STATE(2909)] = 90735, + [SMALL_STATE(2910)] = 90765, + [SMALL_STATE(2911)] = 90793, + [SMALL_STATE(2912)] = 90823, + [SMALL_STATE(2913)] = 90853, + [SMALL_STATE(2914)] = 90883, + [SMALL_STATE(2915)] = 90907, + [SMALL_STATE(2916)] = 90931, + [SMALL_STATE(2917)] = 90957, + [SMALL_STATE(2918)] = 90983, + [SMALL_STATE(2919)] = 91009, + [SMALL_STATE(2920)] = 91037, + [SMALL_STATE(2921)] = 91063, + [SMALL_STATE(2922)] = 91093, + [SMALL_STATE(2923)] = 91123, + [SMALL_STATE(2924)] = 91175, + [SMALL_STATE(2925)] = 91205, + [SMALL_STATE(2926)] = 91235, + [SMALL_STATE(2927)] = 91265, + [SMALL_STATE(2928)] = 91295, + [SMALL_STATE(2929)] = 91325, + [SMALL_STATE(2930)] = 91353, + [SMALL_STATE(2931)] = 91379, + [SMALL_STATE(2932)] = 91409, + [SMALL_STATE(2933)] = 91435, + [SMALL_STATE(2934)] = 91461, + [SMALL_STATE(2935)] = 91491, + [SMALL_STATE(2936)] = 91543, + [SMALL_STATE(2937)] = 91569, + [SMALL_STATE(2938)] = 91621, + [SMALL_STATE(2939)] = 91651, + [SMALL_STATE(2940)] = 91679, + [SMALL_STATE(2941)] = 91709, + [SMALL_STATE(2942)] = 91761, + [SMALL_STATE(2943)] = 91785, + [SMALL_STATE(2944)] = 91815, + [SMALL_STATE(2945)] = 91841, + [SMALL_STATE(2946)] = 91867, + [SMALL_STATE(2947)] = 91893, + [SMALL_STATE(2948)] = 91925, + [SMALL_STATE(2949)] = 91951, + [SMALL_STATE(2950)] = 91979, + [SMALL_STATE(2951)] = 92011, + [SMALL_STATE(2952)] = 92043, + [SMALL_STATE(2953)] = 92069, + [SMALL_STATE(2954)] = 92093, + [SMALL_STATE(2955)] = 92117, + [SMALL_STATE(2956)] = 92143, + [SMALL_STATE(2957)] = 92195, + [SMALL_STATE(2958)] = 92247, + [SMALL_STATE(2959)] = 92299, + [SMALL_STATE(2960)] = 92329, + [SMALL_STATE(2961)] = 92355, + [SMALL_STATE(2962)] = 92381, + [SMALL_STATE(2963)] = 92433, + [SMALL_STATE(2964)] = 92461, + [SMALL_STATE(2965)] = 92487, + [SMALL_STATE(2966)] = 92515, + [SMALL_STATE(2967)] = 92540, + [SMALL_STATE(2968)] = 92565, + [SMALL_STATE(2969)] = 92596, + [SMALL_STATE(2970)] = 92621, + [SMALL_STATE(2971)] = 92660, + [SMALL_STATE(2972)] = 92685, + [SMALL_STATE(2973)] = 92714, + [SMALL_STATE(2974)] = 92739, + [SMALL_STATE(2975)] = 92776, + [SMALL_STATE(2976)] = 92807, + [SMALL_STATE(2977)] = 92832, + [SMALL_STATE(2978)] = 92861, + [SMALL_STATE(2979)] = 92890, + [SMALL_STATE(2980)] = 92915, + [SMALL_STATE(2981)] = 92944, + [SMALL_STATE(2982)] = 92987, + [SMALL_STATE(2983)] = 93016, + [SMALL_STATE(2984)] = 93041, + [SMALL_STATE(2985)] = 93070, + [SMALL_STATE(2986)] = 93095, + [SMALL_STATE(2987)] = 93120, + [SMALL_STATE(2988)] = 93145, + [SMALL_STATE(2989)] = 93170, + [SMALL_STATE(2990)] = 93199, + [SMALL_STATE(2991)] = 93224, + [SMALL_STATE(2992)] = 93253, + [SMALL_STATE(2993)] = 93284, + [SMALL_STATE(2994)] = 93309, + [SMALL_STATE(2995)] = 93334, + [SMALL_STATE(2996)] = 93359, + [SMALL_STATE(2997)] = 93384, + [SMALL_STATE(2998)] = 93409, + [SMALL_STATE(2999)] = 93434, + [SMALL_STATE(3000)] = 93459, + [SMALL_STATE(3001)] = 93484, + [SMALL_STATE(3002)] = 93513, + [SMALL_STATE(3003)] = 93538, + [SMALL_STATE(3004)] = 93563, + [SMALL_STATE(3005)] = 93588, + [SMALL_STATE(3006)] = 93613, + [SMALL_STATE(3007)] = 93638, + [SMALL_STATE(3008)] = 93663, + [SMALL_STATE(3009)] = 93692, + [SMALL_STATE(3010)] = 93721, + [SMALL_STATE(3011)] = 93746, + [SMALL_STATE(3012)] = 93775, + [SMALL_STATE(3013)] = 93800, + [SMALL_STATE(3014)] = 93825, + [SMALL_STATE(3015)] = 93850, + [SMALL_STATE(3016)] = 93875, + [SMALL_STATE(3017)] = 93900, + [SMALL_STATE(3018)] = 93925, + [SMALL_STATE(3019)] = 93954, + [SMALL_STATE(3020)] = 93979, + [SMALL_STATE(3021)] = 94008, + [SMALL_STATE(3022)] = 94033, + [SMALL_STATE(3023)] = 94058, + [SMALL_STATE(3024)] = 94083, + [SMALL_STATE(3025)] = 94108, + [SMALL_STATE(3026)] = 94137, + [SMALL_STATE(3027)] = 94162, + [SMALL_STATE(3028)] = 94187, + [SMALL_STATE(3029)] = 94212, + [SMALL_STATE(3030)] = 94239, + [SMALL_STATE(3031)] = 94264, + [SMALL_STATE(3032)] = 94289, + [SMALL_STATE(3033)] = 94314, + [SMALL_STATE(3034)] = 94341, + [SMALL_STATE(3035)] = 94370, + [SMALL_STATE(3036)] = 94395, + [SMALL_STATE(3037)] = 94420, + [SMALL_STATE(3038)] = 94449, + [SMALL_STATE(3039)] = 94474, + [SMALL_STATE(3040)] = 94503, + [SMALL_STATE(3041)] = 94528, + [SMALL_STATE(3042)] = 94555, + [SMALL_STATE(3043)] = 94584, + [SMALL_STATE(3044)] = 94611, + [SMALL_STATE(3045)] = 94640, + [SMALL_STATE(3046)] = 94665, + [SMALL_STATE(3047)] = 94690, + [SMALL_STATE(3048)] = 94719, + [SMALL_STATE(3049)] = 94744, + [SMALL_STATE(3050)] = 94769, + [SMALL_STATE(3051)] = 94798, + [SMALL_STATE(3052)] = 94823, + [SMALL_STATE(3053)] = 94848, + [SMALL_STATE(3054)] = 94873, + [SMALL_STATE(3055)] = 94902, + [SMALL_STATE(3056)] = 94931, + [SMALL_STATE(3057)] = 94956, + [SMALL_STATE(3058)] = 94981, + [SMALL_STATE(3059)] = 95006, + [SMALL_STATE(3060)] = 95031, + [SMALL_STATE(3061)] = 95056, + [SMALL_STATE(3062)] = 95085, + [SMALL_STATE(3063)] = 95114, + [SMALL_STATE(3064)] = 95143, + [SMALL_STATE(3065)] = 95170, + [SMALL_STATE(3066)] = 95195, + [SMALL_STATE(3067)] = 95222, + [SMALL_STATE(3068)] = 95247, + [SMALL_STATE(3069)] = 95272, + [SMALL_STATE(3070)] = 95297, + [SMALL_STATE(3071)] = 95334, + [SMALL_STATE(3072)] = 95357, + [SMALL_STATE(3073)] = 95382, + [SMALL_STATE(3074)] = 95409, + [SMALL_STATE(3075)] = 95438, + [SMALL_STATE(3076)] = 95463, + [SMALL_STATE(3077)] = 95488, + [SMALL_STATE(3078)] = 95517, + [SMALL_STATE(3079)] = 95542, + [SMALL_STATE(3080)] = 95571, + [SMALL_STATE(3081)] = 95596, + [SMALL_STATE(3082)] = 95621, + [SMALL_STATE(3083)] = 95650, + [SMALL_STATE(3084)] = 95679, + [SMALL_STATE(3085)] = 95708, + [SMALL_STATE(3086)] = 95737, + [SMALL_STATE(3087)] = 95760, + [SMALL_STATE(3088)] = 95789, + [SMALL_STATE(3089)] = 95814, + [SMALL_STATE(3090)] = 95843, + [SMALL_STATE(3091)] = 95872, + [SMALL_STATE(3092)] = 95897, + [SMALL_STATE(3093)] = 95922, + [SMALL_STATE(3094)] = 95951, + [SMALL_STATE(3095)] = 95980, + [SMALL_STATE(3096)] = 96005, + [SMALL_STATE(3097)] = 96034, + [SMALL_STATE(3098)] = 96059, + [SMALL_STATE(3099)] = 96090, + [SMALL_STATE(3100)] = 96119, + [SMALL_STATE(3101)] = 96144, + [SMALL_STATE(3102)] = 96169, + [SMALL_STATE(3103)] = 96212, + [SMALL_STATE(3104)] = 96237, + [SMALL_STATE(3105)] = 96262, + [SMALL_STATE(3106)] = 96287, + [SMALL_STATE(3107)] = 96312, + [SMALL_STATE(3108)] = 96337, + [SMALL_STATE(3109)] = 96362, + [SMALL_STATE(3110)] = 96391, + [SMALL_STATE(3111)] = 96428, + [SMALL_STATE(3112)] = 96453, + [SMALL_STATE(3113)] = 96478, + [SMALL_STATE(3114)] = 96503, + [SMALL_STATE(3115)] = 96528, + [SMALL_STATE(3116)] = 96553, + [SMALL_STATE(3117)] = 96578, + [SMALL_STATE(3118)] = 96603, + [SMALL_STATE(3119)] = 96632, + [SMALL_STATE(3120)] = 96661, + [SMALL_STATE(3121)] = 96686, + [SMALL_STATE(3122)] = 96715, + [SMALL_STATE(3123)] = 96740, + [SMALL_STATE(3124)] = 96769, + [SMALL_STATE(3125)] = 96794, + [SMALL_STATE(3126)] = 96818, + [SMALL_STATE(3127)] = 96840, + [SMALL_STATE(3128)] = 96864, + [SMALL_STATE(3129)] = 96888, + [SMALL_STATE(3130)] = 96912, + [SMALL_STATE(3131)] = 96954, + [SMALL_STATE(3132)] = 96994, + [SMALL_STATE(3133)] = 97040, + [SMALL_STATE(3134)] = 97064, + [SMALL_STATE(3135)] = 97086, + [SMALL_STATE(3136)] = 97108, + [SMALL_STATE(3137)] = 97132, + [SMALL_STATE(3138)] = 97158, + [SMALL_STATE(3139)] = 97182, + [SMALL_STATE(3140)] = 97206, + [SMALL_STATE(3141)] = 97230, + [SMALL_STATE(3142)] = 97276, + [SMALL_STATE(3143)] = 97300, + [SMALL_STATE(3144)] = 97324, + [SMALL_STATE(3145)] = 97348, + [SMALL_STATE(3146)] = 97394, + [SMALL_STATE(3147)] = 97418, + [SMALL_STATE(3148)] = 97442, + [SMALL_STATE(3149)] = 97466, + [SMALL_STATE(3150)] = 97490, + [SMALL_STATE(3151)] = 97512, + [SMALL_STATE(3152)] = 97536, + [SMALL_STATE(3153)] = 97582, + [SMALL_STATE(3154)] = 97604, + [SMALL_STATE(3155)] = 97628, + [SMALL_STATE(3156)] = 97662, + [SMALL_STATE(3157)] = 97702, + [SMALL_STATE(3158)] = 97736, + [SMALL_STATE(3159)] = 97782, + [SMALL_STATE(3160)] = 97816, + [SMALL_STATE(3161)] = 97840, + [SMALL_STATE(3162)] = 97886, + [SMALL_STATE(3163)] = 97910, + [SMALL_STATE(3164)] = 97934, + [SMALL_STATE(3165)] = 97958, + [SMALL_STATE(3166)] = 97982, + [SMALL_STATE(3167)] = 98006, + [SMALL_STATE(3168)] = 98030, + [SMALL_STATE(3169)] = 98054, + [SMALL_STATE(3170)] = 98078, + [SMALL_STATE(3171)] = 98102, + [SMALL_STATE(3172)] = 98126, + [SMALL_STATE(3173)] = 98150, + [SMALL_STATE(3174)] = 98190, + [SMALL_STATE(3175)] = 98226, + [SMALL_STATE(3176)] = 98250, + [SMALL_STATE(3177)] = 98274, + [SMALL_STATE(3178)] = 98298, + [SMALL_STATE(3179)] = 98320, + [SMALL_STATE(3180)] = 98344, + [SMALL_STATE(3181)] = 98368, + [SMALL_STATE(3182)] = 98392, + [SMALL_STATE(3183)] = 98416, + [SMALL_STATE(3184)] = 98440, + [SMALL_STATE(3185)] = 98464, + [SMALL_STATE(3186)] = 98488, + [SMALL_STATE(3187)] = 98512, + [SMALL_STATE(3188)] = 98536, + [SMALL_STATE(3189)] = 98560, + [SMALL_STATE(3190)] = 98584, + [SMALL_STATE(3191)] = 98606, + [SMALL_STATE(3192)] = 98628, + [SMALL_STATE(3193)] = 98668, + [SMALL_STATE(3194)] = 98708, + [SMALL_STATE(3195)] = 98732, + [SMALL_STATE(3196)] = 98756, + [SMALL_STATE(3197)] = 98780, + [SMALL_STATE(3198)] = 98816, + [SMALL_STATE(3199)] = 98840, + [SMALL_STATE(3200)] = 98864, + [SMALL_STATE(3201)] = 98888, + [SMALL_STATE(3202)] = 98910, + [SMALL_STATE(3203)] = 98934, + [SMALL_STATE(3204)] = 98960, + [SMALL_STATE(3205)] = 98984, + [SMALL_STATE(3206)] = 99006, + [SMALL_STATE(3207)] = 99028, + [SMALL_STATE(3208)] = 99050, + [SMALL_STATE(3209)] = 99074, + [SMALL_STATE(3210)] = 99116, + [SMALL_STATE(3211)] = 99138, + [SMALL_STATE(3212)] = 99178, + [SMALL_STATE(3213)] = 99200, + [SMALL_STATE(3214)] = 99224, + [SMALL_STATE(3215)] = 99246, + [SMALL_STATE(3216)] = 99270, + [SMALL_STATE(3217)] = 99294, + [SMALL_STATE(3218)] = 99318, + [SMALL_STATE(3219)] = 99342, + [SMALL_STATE(3220)] = 99366, + [SMALL_STATE(3221)] = 99390, + [SMALL_STATE(3222)] = 99414, + [SMALL_STATE(3223)] = 99438, + [SMALL_STATE(3224)] = 99462, + [SMALL_STATE(3225)] = 99486, + [SMALL_STATE(3226)] = 99510, + [SMALL_STATE(3227)] = 99538, + [SMALL_STATE(3228)] = 99562, + [SMALL_STATE(3229)] = 99590, + [SMALL_STATE(3230)] = 99618, + [SMALL_STATE(3231)] = 99646, + [SMALL_STATE(3232)] = 99674, + [SMALL_STATE(3233)] = 99702, + [SMALL_STATE(3234)] = 99730, + [SMALL_STATE(3235)] = 99758, + [SMALL_STATE(3236)] = 99786, + [SMALL_STATE(3237)] = 99814, + [SMALL_STATE(3238)] = 99842, + [SMALL_STATE(3239)] = 99870, + [SMALL_STATE(3240)] = 99894, + [SMALL_STATE(3241)] = 99918, + [SMALL_STATE(3242)] = 99942, + [SMALL_STATE(3243)] = 99982, + [SMALL_STATE(3244)] = 100006, + [SMALL_STATE(3245)] = 100030, + [SMALL_STATE(3246)] = 100054, + [SMALL_STATE(3247)] = 100078, + [SMALL_STATE(3248)] = 100102, + [SMALL_STATE(3249)] = 100126, + [SMALL_STATE(3250)] = 100150, + [SMALL_STATE(3251)] = 100174, + [SMALL_STATE(3252)] = 100220, + [SMALL_STATE(3253)] = 100244, + [SMALL_STATE(3254)] = 100268, + [SMALL_STATE(3255)] = 100292, + [SMALL_STATE(3256)] = 100338, + [SMALL_STATE(3257)] = 100384, + [SMALL_STATE(3258)] = 100418, + [SMALL_STATE(3259)] = 100464, + [SMALL_STATE(3260)] = 100486, + [SMALL_STATE(3261)] = 100510, + [SMALL_STATE(3262)] = 100534, + [SMALL_STATE(3263)] = 100558, + [SMALL_STATE(3264)] = 100582, + [SMALL_STATE(3265)] = 100619, + [SMALL_STATE(3266)] = 100640, + [SMALL_STATE(3267)] = 100663, + [SMALL_STATE(3268)] = 100684, + [SMALL_STATE(3269)] = 100711, + [SMALL_STATE(3270)] = 100732, + [SMALL_STATE(3271)] = 100753, + [SMALL_STATE(3272)] = 100790, + [SMALL_STATE(3273)] = 100827, + [SMALL_STATE(3274)] = 100848, + [SMALL_STATE(3275)] = 100869, + [SMALL_STATE(3276)] = 100890, + [SMALL_STATE(3277)] = 100917, + [SMALL_STATE(3278)] = 100940, + [SMALL_STATE(3279)] = 100961, + [SMALL_STATE(3280)] = 100982, + [SMALL_STATE(3281)] = 101003, + [SMALL_STATE(3282)] = 101040, + [SMALL_STATE(3283)] = 101063, + [SMALL_STATE(3284)] = 101084, + [SMALL_STATE(3285)] = 101105, + [SMALL_STATE(3286)] = 101126, + [SMALL_STATE(3287)] = 101153, + [SMALL_STATE(3288)] = 101174, + [SMALL_STATE(3289)] = 101195, + [SMALL_STATE(3290)] = 101234, + [SMALL_STATE(3291)] = 101261, + [SMALL_STATE(3292)] = 101284, + [SMALL_STATE(3293)] = 101305, + [SMALL_STATE(3294)] = 101344, + [SMALL_STATE(3295)] = 101367, + [SMALL_STATE(3296)] = 101388, + [SMALL_STATE(3297)] = 101415, + [SMALL_STATE(3298)] = 101442, + [SMALL_STATE(3299)] = 101469, + [SMALL_STATE(3300)] = 101496, + [SMALL_STATE(3301)] = 101523, + [SMALL_STATE(3302)] = 101550, + [SMALL_STATE(3303)] = 101577, + [SMALL_STATE(3304)] = 101598, + [SMALL_STATE(3305)] = 101625, + [SMALL_STATE(3306)] = 101652, + [SMALL_STATE(3307)] = 101679, + [SMALL_STATE(3308)] = 101706, + [SMALL_STATE(3309)] = 101733, + [SMALL_STATE(3310)] = 101756, + [SMALL_STATE(3311)] = 101779, + [SMALL_STATE(3312)] = 101800, + [SMALL_STATE(3313)] = 101827, + [SMALL_STATE(3314)] = 101850, + [SMALL_STATE(3315)] = 101873, + [SMALL_STATE(3316)] = 101902, + [SMALL_STATE(3317)] = 101923, + [SMALL_STATE(3318)] = 101944, + [SMALL_STATE(3319)] = 101983, + [SMALL_STATE(3320)] = 102004, + [SMALL_STATE(3321)] = 102043, + [SMALL_STATE(3322)] = 102064, + [SMALL_STATE(3323)] = 102085, + [SMALL_STATE(3324)] = 102112, + [SMALL_STATE(3325)] = 102133, + [SMALL_STATE(3326)] = 102154, + [SMALL_STATE(3327)] = 102175, + [SMALL_STATE(3328)] = 102196, + [SMALL_STATE(3329)] = 102221, + [SMALL_STATE(3330)] = 102242, + [SMALL_STATE(3331)] = 102281, + [SMALL_STATE(3332)] = 102302, + [SMALL_STATE(3333)] = 102323, + [SMALL_STATE(3334)] = 102344, + [SMALL_STATE(3335)] = 102365, + [SMALL_STATE(3336)] = 102402, + [SMALL_STATE(3337)] = 102439, + [SMALL_STATE(3338)] = 102462, + [SMALL_STATE(3339)] = 102485, + [SMALL_STATE(3340)] = 102508, + [SMALL_STATE(3341)] = 102529, + [SMALL_STATE(3342)] = 102556, + [SMALL_STATE(3343)] = 102577, + [SMALL_STATE(3344)] = 102600, + [SMALL_STATE(3345)] = 102621, + [SMALL_STATE(3346)] = 102642, + [SMALL_STATE(3347)] = 102663, + [SMALL_STATE(3348)] = 102700, + [SMALL_STATE(3349)] = 102723, + [SMALL_STATE(3350)] = 102760, + [SMALL_STATE(3351)] = 102783, + [SMALL_STATE(3352)] = 102810, + [SMALL_STATE(3353)] = 102831, + [SMALL_STATE(3354)] = 102852, + [SMALL_STATE(3355)] = 102873, + [SMALL_STATE(3356)] = 102894, + [SMALL_STATE(3357)] = 102917, + [SMALL_STATE(3358)] = 102954, + [SMALL_STATE(3359)] = 102975, + [SMALL_STATE(3360)] = 102998, + [SMALL_STATE(3361)] = 103035, + [SMALL_STATE(3362)] = 103056, + [SMALL_STATE(3363)] = 103079, + [SMALL_STATE(3364)] = 103100, + [SMALL_STATE(3365)] = 103127, + [SMALL_STATE(3366)] = 103148, + [SMALL_STATE(3367)] = 103169, + [SMALL_STATE(3368)] = 103192, + [SMALL_STATE(3369)] = 103231, + [SMALL_STATE(3370)] = 103254, + [SMALL_STATE(3371)] = 103277, + [SMALL_STATE(3372)] = 103314, + [SMALL_STATE(3373)] = 103335, + [SMALL_STATE(3374)] = 103358, + [SMALL_STATE(3375)] = 103381, + [SMALL_STATE(3376)] = 103404, + [SMALL_STATE(3377)] = 103427, + [SMALL_STATE(3378)] = 103448, + [SMALL_STATE(3379)] = 103471, + [SMALL_STATE(3380)] = 103494, + [SMALL_STATE(3381)] = 103521, + [SMALL_STATE(3382)] = 103542, + [SMALL_STATE(3383)] = 103579, + [SMALL_STATE(3384)] = 103602, + [SMALL_STATE(3385)] = 103625, + [SMALL_STATE(3386)] = 103648, + [SMALL_STATE(3387)] = 103669, + [SMALL_STATE(3388)] = 103690, + [SMALL_STATE(3389)] = 103711, + [SMALL_STATE(3390)] = 103734, + [SMALL_STATE(3391)] = 103755, + [SMALL_STATE(3392)] = 103776, + [SMALL_STATE(3393)] = 103799, + [SMALL_STATE(3394)] = 103820, + [SMALL_STATE(3395)] = 103841, + [SMALL_STATE(3396)] = 103868, + [SMALL_STATE(3397)] = 103907, + [SMALL_STATE(3398)] = 103928, + [SMALL_STATE(3399)] = 103949, + [SMALL_STATE(3400)] = 103970, + [SMALL_STATE(3401)] = 103993, + [SMALL_STATE(3402)] = 104014, + [SMALL_STATE(3403)] = 104051, + [SMALL_STATE(3404)] = 104072, + [SMALL_STATE(3405)] = 104106, + [SMALL_STATE(3406)] = 104142, + [SMALL_STATE(3407)] = 104166, + [SMALL_STATE(3408)] = 104190, + [SMALL_STATE(3409)] = 104216, + [SMALL_STATE(3410)] = 104242, + [SMALL_STATE(3411)] = 104268, + [SMALL_STATE(3412)] = 104294, + [SMALL_STATE(3413)] = 104328, + [SMALL_STATE(3414)] = 104364, + [SMALL_STATE(3415)] = 104388, + [SMALL_STATE(3416)] = 104412, + [SMALL_STATE(3417)] = 104438, + [SMALL_STATE(3418)] = 104464, + [SMALL_STATE(3419)] = 104494, + [SMALL_STATE(3420)] = 104518, + [SMALL_STATE(3421)] = 104542, + [SMALL_STATE(3422)] = 104578, + [SMALL_STATE(3423)] = 104602, + [SMALL_STATE(3424)] = 104634, + [SMALL_STATE(3425)] = 104664, + [SMALL_STATE(3426)] = 104686, + [SMALL_STATE(3427)] = 104710, + [SMALL_STATE(3428)] = 104736, + [SMALL_STATE(3429)] = 104762, + [SMALL_STATE(3430)] = 104788, + [SMALL_STATE(3431)] = 104824, + [SMALL_STATE(3432)] = 104848, + [SMALL_STATE(3433)] = 104872, + [SMALL_STATE(3434)] = 104904, + [SMALL_STATE(3435)] = 104930, + [SMALL_STATE(3436)] = 104956, + [SMALL_STATE(3437)] = 104988, + [SMALL_STATE(3438)] = 105022, + [SMALL_STATE(3439)] = 105054, + [SMALL_STATE(3440)] = 105086, + [SMALL_STATE(3441)] = 105112, + [SMALL_STATE(3442)] = 105134, + [SMALL_STATE(3443)] = 105164, + [SMALL_STATE(3444)] = 105199, + [SMALL_STATE(3445)] = 105222, + [SMALL_STATE(3446)] = 105247, + [SMALL_STATE(3447)] = 105270, + [SMALL_STATE(3448)] = 105291, + [SMALL_STATE(3449)] = 105314, + [SMALL_STATE(3450)] = 105335, + [SMALL_STATE(3451)] = 105366, + [SMALL_STATE(3452)] = 105389, + [SMALL_STATE(3453)] = 105422, + [SMALL_STATE(3454)] = 105455, + [SMALL_STATE(3455)] = 105488, + [SMALL_STATE(3456)] = 105521, + [SMALL_STATE(3457)] = 105552, + [SMALL_STATE(3458)] = 105583, + [SMALL_STATE(3459)] = 105604, + [SMALL_STATE(3460)] = 105635, + [SMALL_STATE(3461)] = 105668, + [SMALL_STATE(3462)] = 105701, + [SMALL_STATE(3463)] = 105726, + [SMALL_STATE(3464)] = 105751, + [SMALL_STATE(3465)] = 105772, + [SMALL_STATE(3466)] = 105795, + [SMALL_STATE(3467)] = 105816, + [SMALL_STATE(3468)] = 105837, + [SMALL_STATE(3469)] = 105866, + [SMALL_STATE(3470)] = 105887, + [SMALL_STATE(3471)] = 105908, + [SMALL_STATE(3472)] = 105941, + [SMALL_STATE(3473)] = 105974, + [SMALL_STATE(3474)] = 105995, + [SMALL_STATE(3475)] = 106028, + [SMALL_STATE(3476)] = 106049, + [SMALL_STATE(3477)] = 106082, + [SMALL_STATE(3478)] = 106107, + [SMALL_STATE(3479)] = 106140, + [SMALL_STATE(3480)] = 106173, + [SMALL_STATE(3481)] = 106198, + [SMALL_STATE(3482)] = 106223, + [SMALL_STATE(3483)] = 106256, + [SMALL_STATE(3484)] = 106289, + [SMALL_STATE(3485)] = 106320, + [SMALL_STATE(3486)] = 106355, + [SMALL_STATE(3487)] = 106376, + [SMALL_STATE(3488)] = 106397, + [SMALL_STATE(3489)] = 106428, + [SMALL_STATE(3490)] = 106449, + [SMALL_STATE(3491)] = 106470, + [SMALL_STATE(3492)] = 106501, + [SMALL_STATE(3493)] = 106522, + [SMALL_STATE(3494)] = 106555, + [SMALL_STATE(3495)] = 106588, + [SMALL_STATE(3496)] = 106609, + [SMALL_STATE(3497)] = 106634, + [SMALL_STATE(3498)] = 106667, + [SMALL_STATE(3499)] = 106700, + [SMALL_STATE(3500)] = 106731, + [SMALL_STATE(3501)] = 106764, + [SMALL_STATE(3502)] = 106797, + [SMALL_STATE(3503)] = 106828, + [SMALL_STATE(3504)] = 106861, + [SMALL_STATE(3505)] = 106894, + [SMALL_STATE(3506)] = 106925, + [SMALL_STATE(3507)] = 106958, + [SMALL_STATE(3508)] = 106991, + [SMALL_STATE(3509)] = 107022, + [SMALL_STATE(3510)] = 107055, + [SMALL_STATE(3511)] = 107088, + [SMALL_STATE(3512)] = 107119, + [SMALL_STATE(3513)] = 107152, + [SMALL_STATE(3514)] = 107185, + [SMALL_STATE(3515)] = 107216, + [SMALL_STATE(3516)] = 107249, + [SMALL_STATE(3517)] = 107282, + [SMALL_STATE(3518)] = 107313, + [SMALL_STATE(3519)] = 107346, + [SMALL_STATE(3520)] = 107379, + [SMALL_STATE(3521)] = 107410, + [SMALL_STATE(3522)] = 107443, + [SMALL_STATE(3523)] = 107476, + [SMALL_STATE(3524)] = 107507, + [SMALL_STATE(3525)] = 107540, + [SMALL_STATE(3526)] = 107573, + [SMALL_STATE(3527)] = 107604, + [SMALL_STATE(3528)] = 107635, + [SMALL_STATE(3529)] = 107666, + [SMALL_STATE(3530)] = 107697, + [SMALL_STATE(3531)] = 107728, + [SMALL_STATE(3532)] = 107759, + [SMALL_STATE(3533)] = 107790, + [SMALL_STATE(3534)] = 107811, + [SMALL_STATE(3535)] = 107834, + [SMALL_STATE(3536)] = 107859, + [SMALL_STATE(3537)] = 107886, + [SMALL_STATE(3538)] = 107911, + [SMALL_STATE(3539)] = 107934, + [SMALL_STATE(3540)] = 107955, + [SMALL_STATE(3541)] = 107976, + [SMALL_STATE(3542)] = 108007, + [SMALL_STATE(3543)] = 108029, + [SMALL_STATE(3544)] = 108057, + [SMALL_STATE(3545)] = 108081, + [SMALL_STATE(3546)] = 108109, + [SMALL_STATE(3547)] = 108137, + [SMALL_STATE(3548)] = 108163, + [SMALL_STATE(3549)] = 108191, + [SMALL_STATE(3550)] = 108219, + [SMALL_STATE(3551)] = 108239, + [SMALL_STATE(3552)] = 108265, + [SMALL_STATE(3553)] = 108293, + [SMALL_STATE(3554)] = 108321, + [SMALL_STATE(3555)] = 108341, + [SMALL_STATE(3556)] = 108369, + [SMALL_STATE(3557)] = 108393, + [SMALL_STATE(3558)] = 108421, + [SMALL_STATE(3559)] = 108449, + [SMALL_STATE(3560)] = 108471, + [SMALL_STATE(3561)] = 108493, + [SMALL_STATE(3562)] = 108521, + [SMALL_STATE(3563)] = 108549, + [SMALL_STATE(3564)] = 108571, + [SMALL_STATE(3565)] = 108599, + [SMALL_STATE(3566)] = 108627, + [SMALL_STATE(3567)] = 108649, + [SMALL_STATE(3568)] = 108673, + [SMALL_STATE(3569)] = 108691, + [SMALL_STATE(3570)] = 108719, + [SMALL_STATE(3571)] = 108747, + [SMALL_STATE(3572)] = 108775, + [SMALL_STATE(3573)] = 108803, + [SMALL_STATE(3574)] = 108823, + [SMALL_STATE(3575)] = 108843, + [SMALL_STATE(3576)] = 108871, + [SMALL_STATE(3577)] = 108899, + [SMALL_STATE(3578)] = 108927, + [SMALL_STATE(3579)] = 108955, + [SMALL_STATE(3580)] = 108983, + [SMALL_STATE(3581)] = 109005, + [SMALL_STATE(3582)] = 109033, + [SMALL_STATE(3583)] = 109063, + [SMALL_STATE(3584)] = 109083, + [SMALL_STATE(3585)] = 109111, + [SMALL_STATE(3586)] = 109139, + [SMALL_STATE(3587)] = 109159, + [SMALL_STATE(3588)] = 109181, + [SMALL_STATE(3589)] = 109201, + [SMALL_STATE(3590)] = 109229, + [SMALL_STATE(3591)] = 109249, + [SMALL_STATE(3592)] = 109279, + [SMALL_STATE(3593)] = 109307, + [SMALL_STATE(3594)] = 109335, + [SMALL_STATE(3595)] = 109363, + [SMALL_STATE(3596)] = 109391, + [SMALL_STATE(3597)] = 109415, + [SMALL_STATE(3598)] = 109443, + [SMALL_STATE(3599)] = 109471, + [SMALL_STATE(3600)] = 109499, + [SMALL_STATE(3601)] = 109527, + [SMALL_STATE(3602)] = 109555, + [SMALL_STATE(3603)] = 109583, + [SMALL_STATE(3604)] = 109611, + [SMALL_STATE(3605)] = 109639, + [SMALL_STATE(3606)] = 109667, + [SMALL_STATE(3607)] = 109695, + [SMALL_STATE(3608)] = 109715, + [SMALL_STATE(3609)] = 109741, + [SMALL_STATE(3610)] = 109765, + [SMALL_STATE(3611)] = 109787, + [SMALL_STATE(3612)] = 109805, + [SMALL_STATE(3613)] = 109833, + [SMALL_STATE(3614)] = 109859, + [SMALL_STATE(3615)] = 109883, + [SMALL_STATE(3616)] = 109911, + [SMALL_STATE(3617)] = 109939, + [SMALL_STATE(3618)] = 109967, + [SMALL_STATE(3619)] = 109990, + [SMALL_STATE(3620)] = 110015, + [SMALL_STATE(3621)] = 110046, + [SMALL_STATE(3622)] = 110071, + [SMALL_STATE(3623)] = 110094, + [SMALL_STATE(3624)] = 110117, + [SMALL_STATE(3625)] = 110142, + [SMALL_STATE(3626)] = 110161, + [SMALL_STATE(3627)] = 110186, + [SMALL_STATE(3628)] = 110207, + [SMALL_STATE(3629)] = 110226, + [SMALL_STATE(3630)] = 110249, + [SMALL_STATE(3631)] = 110274, + [SMALL_STATE(3632)] = 110295, + [SMALL_STATE(3633)] = 110322, + [SMALL_STATE(3634)] = 110347, + [SMALL_STATE(3635)] = 110366, + [SMALL_STATE(3636)] = 110385, + [SMALL_STATE(3637)] = 110404, + [SMALL_STATE(3638)] = 110427, + [SMALL_STATE(3639)] = 110446, + [SMALL_STATE(3640)] = 110467, + [SMALL_STATE(3641)] = 110496, + [SMALL_STATE(3642)] = 110521, + [SMALL_STATE(3643)] = 110546, + [SMALL_STATE(3644)] = 110565, + [SMALL_STATE(3645)] = 110584, + [SMALL_STATE(3646)] = 110605, + [SMALL_STATE(3647)] = 110632, + [SMALL_STATE(3648)] = 110657, + [SMALL_STATE(3649)] = 110682, + [SMALL_STATE(3650)] = 110709, + [SMALL_STATE(3651)] = 110734, + [SMALL_STATE(3652)] = 110753, + [SMALL_STATE(3653)] = 110778, + [SMALL_STATE(3654)] = 110805, + [SMALL_STATE(3655)] = 110824, + [SMALL_STATE(3656)] = 110843, + [SMALL_STATE(3657)] = 110864, + [SMALL_STATE(3658)] = 110883, + [SMALL_STATE(3659)] = 110902, + [SMALL_STATE(3660)] = 110927, + [SMALL_STATE(3661)] = 110946, + [SMALL_STATE(3662)] = 110973, + [SMALL_STATE(3663)] = 111000, + [SMALL_STATE(3664)] = 111021, + [SMALL_STATE(3665)] = 111040, + [SMALL_STATE(3666)] = 111065, + [SMALL_STATE(3667)] = 111090, + [SMALL_STATE(3668)] = 111111, + [SMALL_STATE(3669)] = 111130, + [SMALL_STATE(3670)] = 111149, + [SMALL_STATE(3671)] = 111168, + [SMALL_STATE(3672)] = 111187, + [SMALL_STATE(3673)] = 111215, + [SMALL_STATE(3674)] = 111235, + [SMALL_STATE(3675)] = 111263, + [SMALL_STATE(3676)] = 111287, + [SMALL_STATE(3677)] = 111315, + [SMALL_STATE(3678)] = 111341, + [SMALL_STATE(3679)] = 111363, + [SMALL_STATE(3680)] = 111389, + [SMALL_STATE(3681)] = 111413, + [SMALL_STATE(3682)] = 111431, + [SMALL_STATE(3683)] = 111449, + [SMALL_STATE(3684)] = 111471, + [SMALL_STATE(3685)] = 111495, + [SMALL_STATE(3686)] = 111523, + [SMALL_STATE(3687)] = 111547, + [SMALL_STATE(3688)] = 111573, + [SMALL_STATE(3689)] = 111599, + [SMALL_STATE(3690)] = 111621, + [SMALL_STATE(3691)] = 111639, + [SMALL_STATE(3692)] = 111667, + [SMALL_STATE(3693)] = 111693, + [SMALL_STATE(3694)] = 111719, + [SMALL_STATE(3695)] = 111745, + [SMALL_STATE(3696)] = 111763, + [SMALL_STATE(3697)] = 111791, + [SMALL_STATE(3698)] = 111809, + [SMALL_STATE(3699)] = 111831, + [SMALL_STATE(3700)] = 111849, + [SMALL_STATE(3701)] = 111875, + [SMALL_STATE(3702)] = 111903, + [SMALL_STATE(3703)] = 111921, + [SMALL_STATE(3704)] = 111949, + [SMALL_STATE(3705)] = 111977, + [SMALL_STATE(3706)] = 112005, + [SMALL_STATE(3707)] = 112033, + [SMALL_STATE(3708)] = 112061, + [SMALL_STATE(3709)] = 112089, + [SMALL_STATE(3710)] = 112117, + [SMALL_STATE(3711)] = 112143, + [SMALL_STATE(3712)] = 112167, + [SMALL_STATE(3713)] = 112195, + [SMALL_STATE(3714)] = 112221, + [SMALL_STATE(3715)] = 112247, + [SMALL_STATE(3716)] = 112273, + [SMALL_STATE(3717)] = 112293, + [SMALL_STATE(3718)] = 112321, + [SMALL_STATE(3719)] = 112341, + [SMALL_STATE(3720)] = 112369, + [SMALL_STATE(3721)] = 112387, + [SMALL_STATE(3722)] = 112413, + [SMALL_STATE(3723)] = 112439, + [SMALL_STATE(3724)] = 112467, + [SMALL_STATE(3725)] = 112495, + [SMALL_STATE(3726)] = 112521, + [SMALL_STATE(3727)] = 112549, + [SMALL_STATE(3728)] = 112577, + [SMALL_STATE(3729)] = 112599, + [SMALL_STATE(3730)] = 112627, + [SMALL_STATE(3731)] = 112655, + [SMALL_STATE(3732)] = 112677, + [SMALL_STATE(3733)] = 112699, + [SMALL_STATE(3734)] = 112721, + [SMALL_STATE(3735)] = 112749, + [SMALL_STATE(3736)] = 112773, + [SMALL_STATE(3737)] = 112791, + [SMALL_STATE(3738)] = 112817, + [SMALL_STATE(3739)] = 112835, + [SMALL_STATE(3740)] = 112859, + [SMALL_STATE(3741)] = 112877, + [SMALL_STATE(3742)] = 112899, + [SMALL_STATE(3743)] = 112925, + [SMALL_STATE(3744)] = 112951, + [SMALL_STATE(3745)] = 112979, + [SMALL_STATE(3746)] = 113007, + [SMALL_STATE(3747)] = 113035, + [SMALL_STATE(3748)] = 113063, + [SMALL_STATE(3749)] = 113091, + [SMALL_STATE(3750)] = 113109, + [SMALL_STATE(3751)] = 113137, + [SMALL_STATE(3752)] = 113165, + [SMALL_STATE(3753)] = 113193, + [SMALL_STATE(3754)] = 113221, + [SMALL_STATE(3755)] = 113249, + [SMALL_STATE(3756)] = 113277, + [SMALL_STATE(3757)] = 113305, + [SMALL_STATE(3758)] = 113333, + [SMALL_STATE(3759)] = 113353, + [SMALL_STATE(3760)] = 113379, + [SMALL_STATE(3761)] = 113399, + [SMALL_STATE(3762)] = 113419, + [SMALL_STATE(3763)] = 113439, + [SMALL_STATE(3764)] = 113465, + [SMALL_STATE(3765)] = 113489, + [SMALL_STATE(3766)] = 113509, + [SMALL_STATE(3767)] = 113537, + [SMALL_STATE(3768)] = 113565, + [SMALL_STATE(3769)] = 113593, + [SMALL_STATE(3770)] = 113621, + [SMALL_STATE(3771)] = 113645, + [SMALL_STATE(3772)] = 113669, + [SMALL_STATE(3773)] = 113691, + [SMALL_STATE(3774)] = 113717, + [SMALL_STATE(3775)] = 113739, + [SMALL_STATE(3776)] = 113767, + [SMALL_STATE(3777)] = 113785, + [SMALL_STATE(3778)] = 113807, + [SMALL_STATE(3779)] = 113835, + [SMALL_STATE(3780)] = 113863, + [SMALL_STATE(3781)] = 113891, + [SMALL_STATE(3782)] = 113919, + [SMALL_STATE(3783)] = 113942, + [SMALL_STATE(3784)] = 113967, + [SMALL_STATE(3785)] = 113990, + [SMALL_STATE(3786)] = 114015, + [SMALL_STATE(3787)] = 114036, + [SMALL_STATE(3788)] = 114059, + [SMALL_STATE(3789)] = 114080, + [SMALL_STATE(3790)] = 114103, + [SMALL_STATE(3791)] = 114124, + [SMALL_STATE(3792)] = 114147, + [SMALL_STATE(3793)] = 114170, + [SMALL_STATE(3794)] = 114193, + [SMALL_STATE(3795)] = 114214, + [SMALL_STATE(3796)] = 114237, + [SMALL_STATE(3797)] = 114262, + [SMALL_STATE(3798)] = 114277, + [SMALL_STATE(3799)] = 114300, + [SMALL_STATE(3800)] = 114325, + [SMALL_STATE(3801)] = 114350, + [SMALL_STATE(3802)] = 114373, + [SMALL_STATE(3803)] = 114398, + [SMALL_STATE(3804)] = 114421, + [SMALL_STATE(3805)] = 114444, + [SMALL_STATE(3806)] = 114467, + [SMALL_STATE(3807)] = 114490, + [SMALL_STATE(3808)] = 114511, + [SMALL_STATE(3809)] = 114530, + [SMALL_STATE(3810)] = 114553, + [SMALL_STATE(3811)] = 114568, + [SMALL_STATE(3812)] = 114583, + [SMALL_STATE(3813)] = 114604, + [SMALL_STATE(3814)] = 114621, + [SMALL_STATE(3815)] = 114644, + [SMALL_STATE(3816)] = 114665, + [SMALL_STATE(3817)] = 114688, + [SMALL_STATE(3818)] = 114711, + [SMALL_STATE(3819)] = 114734, + [SMALL_STATE(3820)] = 114757, + [SMALL_STATE(3821)] = 114780, + [SMALL_STATE(3822)] = 114801, + [SMALL_STATE(3823)] = 114820, + [SMALL_STATE(3824)] = 114845, + [SMALL_STATE(3825)] = 114864, + [SMALL_STATE(3826)] = 114887, + [SMALL_STATE(3827)] = 114906, + [SMALL_STATE(3828)] = 114929, + [SMALL_STATE(3829)] = 114952, + [SMALL_STATE(3830)] = 114975, + [SMALL_STATE(3831)] = 114998, + [SMALL_STATE(3832)] = 115021, + [SMALL_STATE(3833)] = 115042, + [SMALL_STATE(3834)] = 115065, + [SMALL_STATE(3835)] = 115088, + [SMALL_STATE(3836)] = 115111, + [SMALL_STATE(3837)] = 115134, + [SMALL_STATE(3838)] = 115157, + [SMALL_STATE(3839)] = 115178, + [SMALL_STATE(3840)] = 115199, + [SMALL_STATE(3841)] = 115224, + [SMALL_STATE(3842)] = 115245, + [SMALL_STATE(3843)] = 115266, + [SMALL_STATE(3844)] = 115289, + [SMALL_STATE(3845)] = 115314, + [SMALL_STATE(3846)] = 115331, + [SMALL_STATE(3847)] = 115350, + [SMALL_STATE(3848)] = 115375, + [SMALL_STATE(3849)] = 115398, + [SMALL_STATE(3850)] = 115421, + [SMALL_STATE(3851)] = 115440, + [SMALL_STATE(3852)] = 115461, + [SMALL_STATE(3853)] = 115482, + [SMALL_STATE(3854)] = 115503, + [SMALL_STATE(3855)] = 115524, + [SMALL_STATE(3856)] = 115549, + [SMALL_STATE(3857)] = 115570, + [SMALL_STATE(3858)] = 115593, + [SMALL_STATE(3859)] = 115616, + [SMALL_STATE(3860)] = 115631, + [SMALL_STATE(3861)] = 115646, + [SMALL_STATE(3862)] = 115661, + [SMALL_STATE(3863)] = 115680, + [SMALL_STATE(3864)] = 115701, + [SMALL_STATE(3865)] = 115726, + [SMALL_STATE(3866)] = 115745, + [SMALL_STATE(3867)] = 115770, + [SMALL_STATE(3868)] = 115791, + [SMALL_STATE(3869)] = 115810, + [SMALL_STATE(3870)] = 115835, + [SMALL_STATE(3871)] = 115854, + [SMALL_STATE(3872)] = 115871, + [SMALL_STATE(3873)] = 115890, + [SMALL_STATE(3874)] = 115911, + [SMALL_STATE(3875)] = 115928, + [SMALL_STATE(3876)] = 115951, + [SMALL_STATE(3877)] = 115970, + [SMALL_STATE(3878)] = 115989, + [SMALL_STATE(3879)] = 116008, + [SMALL_STATE(3880)] = 116029, + [SMALL_STATE(3881)] = 116050, + [SMALL_STATE(3882)] = 116071, + [SMALL_STATE(3883)] = 116094, + [SMALL_STATE(3884)] = 116119, + [SMALL_STATE(3885)] = 116140, + [SMALL_STATE(3886)] = 116163, + [SMALL_STATE(3887)] = 116186, + [SMALL_STATE(3888)] = 116209, + [SMALL_STATE(3889)] = 116232, + [SMALL_STATE(3890)] = 116253, + [SMALL_STATE(3891)] = 116276, + [SMALL_STATE(3892)] = 116297, + [SMALL_STATE(3893)] = 116318, + [SMALL_STATE(3894)] = 116339, + [SMALL_STATE(3895)] = 116360, + [SMALL_STATE(3896)] = 116383, + [SMALL_STATE(3897)] = 116408, + [SMALL_STATE(3898)] = 116427, + [SMALL_STATE(3899)] = 116452, + [SMALL_STATE(3900)] = 116477, + [SMALL_STATE(3901)] = 116502, + [SMALL_STATE(3902)] = 116521, + [SMALL_STATE(3903)] = 116540, + [SMALL_STATE(3904)] = 116561, + [SMALL_STATE(3905)] = 116580, + [SMALL_STATE(3906)] = 116601, + [SMALL_STATE(3907)] = 116622, + [SMALL_STATE(3908)] = 116647, + [SMALL_STATE(3909)] = 116670, + [SMALL_STATE(3910)] = 116693, + [SMALL_STATE(3911)] = 116716, + [SMALL_STATE(3912)] = 116737, + [SMALL_STATE(3913)] = 116758, + [SMALL_STATE(3914)] = 116783, + [SMALL_STATE(3915)] = 116802, + [SMALL_STATE(3916)] = 116827, + [SMALL_STATE(3917)] = 116852, + [SMALL_STATE(3918)] = 116877, + [SMALL_STATE(3919)] = 116902, + [SMALL_STATE(3920)] = 116927, + [SMALL_STATE(3921)] = 116952, + [SMALL_STATE(3922)] = 116975, + [SMALL_STATE(3923)] = 116998, + [SMALL_STATE(3924)] = 117015, + [SMALL_STATE(3925)] = 117036, + [SMALL_STATE(3926)] = 117059, + [SMALL_STATE(3927)] = 117082, + [SMALL_STATE(3928)] = 117103, + [SMALL_STATE(3929)] = 117128, + [SMALL_STATE(3930)] = 117148, + [SMALL_STATE(3931)] = 117162, + [SMALL_STATE(3932)] = 117180, + [SMALL_STATE(3933)] = 117200, + [SMALL_STATE(3934)] = 117222, + [SMALL_STATE(3935)] = 117244, + [SMALL_STATE(3936)] = 117262, + [SMALL_STATE(3937)] = 117282, + [SMALL_STATE(3938)] = 117304, + [SMALL_STATE(3939)] = 117326, + [SMALL_STATE(3940)] = 117340, + [SMALL_STATE(3941)] = 117358, + [SMALL_STATE(3942)] = 117380, + [SMALL_STATE(3943)] = 117398, + [SMALL_STATE(3944)] = 117418, + [SMALL_STATE(3945)] = 117434, + [SMALL_STATE(3946)] = 117454, + [SMALL_STATE(3947)] = 117470, + [SMALL_STATE(3948)] = 117486, + [SMALL_STATE(3949)] = 117506, + [SMALL_STATE(3950)] = 117524, + [SMALL_STATE(3951)] = 117544, + [SMALL_STATE(3952)] = 117562, + [SMALL_STATE(3953)] = 117578, + [SMALL_STATE(3954)] = 117600, + [SMALL_STATE(3955)] = 117618, + [SMALL_STATE(3956)] = 117634, + [SMALL_STATE(3957)] = 117654, + [SMALL_STATE(3958)] = 117672, + [SMALL_STATE(3959)] = 117692, + [SMALL_STATE(3960)] = 117714, + [SMALL_STATE(3961)] = 117728, + [SMALL_STATE(3962)] = 117748, + [SMALL_STATE(3963)] = 117768, + [SMALL_STATE(3964)] = 117786, + [SMALL_STATE(3965)] = 117804, + [SMALL_STATE(3966)] = 117824, + [SMALL_STATE(3967)] = 117844, + [SMALL_STATE(3968)] = 117866, + [SMALL_STATE(3969)] = 117882, + [SMALL_STATE(3970)] = 117896, + [SMALL_STATE(3971)] = 117918, + [SMALL_STATE(3972)] = 117938, + [SMALL_STATE(3973)] = 117954, + [SMALL_STATE(3974)] = 117970, + [SMALL_STATE(3975)] = 117990, + [SMALL_STATE(3976)] = 118010, + [SMALL_STATE(3977)] = 118026, + [SMALL_STATE(3978)] = 118046, + [SMALL_STATE(3979)] = 118062, + [SMALL_STATE(3980)] = 118080, + [SMALL_STATE(3981)] = 118100, + [SMALL_STATE(3982)] = 118116, + [SMALL_STATE(3983)] = 118132, + [SMALL_STATE(3984)] = 118152, + [SMALL_STATE(3985)] = 118168, + [SMALL_STATE(3986)] = 118188, + [SMALL_STATE(3987)] = 118204, + [SMALL_STATE(3988)] = 118224, + [SMALL_STATE(3989)] = 118244, + [SMALL_STATE(3990)] = 118258, + [SMALL_STATE(3991)] = 118280, + [SMALL_STATE(3992)] = 118294, + [SMALL_STATE(3993)] = 118312, + [SMALL_STATE(3994)] = 118334, + [SMALL_STATE(3995)] = 118354, + [SMALL_STATE(3996)] = 118374, + [SMALL_STATE(3997)] = 118394, + [SMALL_STATE(3998)] = 118414, + [SMALL_STATE(3999)] = 118436, + [SMALL_STATE(4000)] = 118456, + [SMALL_STATE(4001)] = 118472, + [SMALL_STATE(4002)] = 118492, + [SMALL_STATE(4003)] = 118512, + [SMALL_STATE(4004)] = 118528, + [SMALL_STATE(4005)] = 118548, + [SMALL_STATE(4006)] = 118564, + [SMALL_STATE(4007)] = 118586, + [SMALL_STATE(4008)] = 118606, + [SMALL_STATE(4009)] = 118628, + [SMALL_STATE(4010)] = 118646, + [SMALL_STATE(4011)] = 118662, + [SMALL_STATE(4012)] = 118682, + [SMALL_STATE(4013)] = 118698, + [SMALL_STATE(4014)] = 118716, + [SMALL_STATE(4015)] = 118736, + [SMALL_STATE(4016)] = 118756, + [SMALL_STATE(4017)] = 118774, + [SMALL_STATE(4018)] = 118794, + [SMALL_STATE(4019)] = 118816, + [SMALL_STATE(4020)] = 118836, + [SMALL_STATE(4021)] = 118854, + [SMALL_STATE(4022)] = 118870, + [SMALL_STATE(4023)] = 118886, + [SMALL_STATE(4024)] = 118908, + [SMALL_STATE(4025)] = 118930, + [SMALL_STATE(4026)] = 118946, + [SMALL_STATE(4027)] = 118966, + [SMALL_STATE(4028)] = 118988, + [SMALL_STATE(4029)] = 119006, + [SMALL_STATE(4030)] = 119026, + [SMALL_STATE(4031)] = 119048, + [SMALL_STATE(4032)] = 119066, + [SMALL_STATE(4033)] = 119086, + [SMALL_STATE(4034)] = 119108, + [SMALL_STATE(4035)] = 119128, + [SMALL_STATE(4036)] = 119146, + [SMALL_STATE(4037)] = 119168, + [SMALL_STATE(4038)] = 119186, + [SMALL_STATE(4039)] = 119208, + [SMALL_STATE(4040)] = 119224, + [SMALL_STATE(4041)] = 119244, + [SMALL_STATE(4042)] = 119266, + [SMALL_STATE(4043)] = 119288, + [SMALL_STATE(4044)] = 119304, + [SMALL_STATE(4045)] = 119324, + [SMALL_STATE(4046)] = 119342, + [SMALL_STATE(4047)] = 119362, + [SMALL_STATE(4048)] = 119376, + [SMALL_STATE(4049)] = 119398, + [SMALL_STATE(4050)] = 119418, + [SMALL_STATE(4051)] = 119434, + [SMALL_STATE(4052)] = 119456, + [SMALL_STATE(4053)] = 119474, + [SMALL_STATE(4054)] = 119494, + [SMALL_STATE(4055)] = 119514, + [SMALL_STATE(4056)] = 119536, + [SMALL_STATE(4057)] = 119556, + [SMALL_STATE(4058)] = 119576, + [SMALL_STATE(4059)] = 119596, + [SMALL_STATE(4060)] = 119616, + [SMALL_STATE(4061)] = 119632, + [SMALL_STATE(4062)] = 119654, + [SMALL_STATE(4063)] = 119676, + [SMALL_STATE(4064)] = 119696, + [SMALL_STATE(4065)] = 119716, + [SMALL_STATE(4066)] = 119738, + [SMALL_STATE(4067)] = 119756, + [SMALL_STATE(4068)] = 119778, + [SMALL_STATE(4069)] = 119800, + [SMALL_STATE(4070)] = 119816, + [SMALL_STATE(4071)] = 119838, + [SMALL_STATE(4072)] = 119858, + [SMALL_STATE(4073)] = 119878, + [SMALL_STATE(4074)] = 119900, + [SMALL_STATE(4075)] = 119916, + [SMALL_STATE(4076)] = 119934, + [SMALL_STATE(4077)] = 119956, + [SMALL_STATE(4078)] = 119978, + [SMALL_STATE(4079)] = 120000, + [SMALL_STATE(4080)] = 120020, + [SMALL_STATE(4081)] = 120042, + [SMALL_STATE(4082)] = 120060, + [SMALL_STATE(4083)] = 120078, + [SMALL_STATE(4084)] = 120092, + [SMALL_STATE(4085)] = 120110, + [SMALL_STATE(4086)] = 120132, + [SMALL_STATE(4087)] = 120154, + [SMALL_STATE(4088)] = 120170, + [SMALL_STATE(4089)] = 120190, + [SMALL_STATE(4090)] = 120203, + [SMALL_STATE(4091)] = 120216, + [SMALL_STATE(4092)] = 120229, + [SMALL_STATE(4093)] = 120248, + [SMALL_STATE(4094)] = 120267, + [SMALL_STATE(4095)] = 120280, + [SMALL_STATE(4096)] = 120295, + [SMALL_STATE(4097)] = 120308, + [SMALL_STATE(4098)] = 120323, + [SMALL_STATE(4099)] = 120340, + [SMALL_STATE(4100)] = 120353, + [SMALL_STATE(4101)] = 120366, + [SMALL_STATE(4102)] = 120379, + [SMALL_STATE(4103)] = 120392, + [SMALL_STATE(4104)] = 120405, + [SMALL_STATE(4105)] = 120418, + [SMALL_STATE(4106)] = 120431, + [SMALL_STATE(4107)] = 120444, + [SMALL_STATE(4108)] = 120463, + [SMALL_STATE(4109)] = 120478, + [SMALL_STATE(4110)] = 120497, + [SMALL_STATE(4111)] = 120516, + [SMALL_STATE(4112)] = 120529, + [SMALL_STATE(4113)] = 120544, + [SMALL_STATE(4114)] = 120561, + [SMALL_STATE(4115)] = 120576, + [SMALL_STATE(4116)] = 120591, + [SMALL_STATE(4117)] = 120606, + [SMALL_STATE(4118)] = 120621, + [SMALL_STATE(4119)] = 120636, + [SMALL_STATE(4120)] = 120651, + [SMALL_STATE(4121)] = 120668, + [SMALL_STATE(4122)] = 120685, + [SMALL_STATE(4123)] = 120704, + [SMALL_STATE(4124)] = 120723, + [SMALL_STATE(4125)] = 120736, + [SMALL_STATE(4126)] = 120749, + [SMALL_STATE(4127)] = 120762, + [SMALL_STATE(4128)] = 120775, + [SMALL_STATE(4129)] = 120792, + [SMALL_STATE(4130)] = 120805, + [SMALL_STATE(4131)] = 120818, + [SMALL_STATE(4132)] = 120833, + [SMALL_STATE(4133)] = 120850, + [SMALL_STATE(4134)] = 120869, + [SMALL_STATE(4135)] = 120886, + [SMALL_STATE(4136)] = 120903, + [SMALL_STATE(4137)] = 120918, + [SMALL_STATE(4138)] = 120933, + [SMALL_STATE(4139)] = 120946, + [SMALL_STATE(4140)] = 120961, + [SMALL_STATE(4141)] = 120980, + [SMALL_STATE(4142)] = 120999, + [SMALL_STATE(4143)] = 121014, + [SMALL_STATE(4144)] = 121029, + [SMALL_STATE(4145)] = 121048, + [SMALL_STATE(4146)] = 121063, + [SMALL_STATE(4147)] = 121080, + [SMALL_STATE(4148)] = 121097, + [SMALL_STATE(4149)] = 121114, + [SMALL_STATE(4150)] = 121131, + [SMALL_STATE(4151)] = 121148, + [SMALL_STATE(4152)] = 121163, + [SMALL_STATE(4153)] = 121178, + [SMALL_STATE(4154)] = 121191, + [SMALL_STATE(4155)] = 121206, + [SMALL_STATE(4156)] = 121223, + [SMALL_STATE(4157)] = 121242, + [SMALL_STATE(4158)] = 121255, + [SMALL_STATE(4159)] = 121274, + [SMALL_STATE(4160)] = 121289, + [SMALL_STATE(4161)] = 121302, + [SMALL_STATE(4162)] = 121315, + [SMALL_STATE(4163)] = 121328, + [SMALL_STATE(4164)] = 121341, + [SMALL_STATE(4165)] = 121360, + [SMALL_STATE(4166)] = 121379, + [SMALL_STATE(4167)] = 121394, + [SMALL_STATE(4168)] = 121407, + [SMALL_STATE(4169)] = 121426, + [SMALL_STATE(4170)] = 121439, + [SMALL_STATE(4171)] = 121452, + [SMALL_STATE(4172)] = 121471, + [SMALL_STATE(4173)] = 121484, + [SMALL_STATE(4174)] = 121497, + [SMALL_STATE(4175)] = 121510, + [SMALL_STATE(4176)] = 121523, + [SMALL_STATE(4177)] = 121538, + [SMALL_STATE(4178)] = 121555, + [SMALL_STATE(4179)] = 121570, + [SMALL_STATE(4180)] = 121587, + [SMALL_STATE(4181)] = 121600, + [SMALL_STATE(4182)] = 121613, + [SMALL_STATE(4183)] = 121626, + [SMALL_STATE(4184)] = 121639, + [SMALL_STATE(4185)] = 121652, + [SMALL_STATE(4186)] = 121669, + [SMALL_STATE(4187)] = 121682, + [SMALL_STATE(4188)] = 121695, + [SMALL_STATE(4189)] = 121714, + [SMALL_STATE(4190)] = 121731, + [SMALL_STATE(4191)] = 121748, + [SMALL_STATE(4192)] = 121761, + [SMALL_STATE(4193)] = 121780, + [SMALL_STATE(4194)] = 121799, + [SMALL_STATE(4195)] = 121812, + [SMALL_STATE(4196)] = 121827, + [SMALL_STATE(4197)] = 121844, + [SMALL_STATE(4198)] = 121863, + [SMALL_STATE(4199)] = 121882, + [SMALL_STATE(4200)] = 121901, + [SMALL_STATE(4201)] = 121920, + [SMALL_STATE(4202)] = 121939, + [SMALL_STATE(4203)] = 121958, + [SMALL_STATE(4204)] = 121975, + [SMALL_STATE(4205)] = 121990, + [SMALL_STATE(4206)] = 122009, + [SMALL_STATE(4207)] = 122022, + [SMALL_STATE(4208)] = 122035, + [SMALL_STATE(4209)] = 122048, + [SMALL_STATE(4210)] = 122061, + [SMALL_STATE(4211)] = 122074, + [SMALL_STATE(4212)] = 122087, + [SMALL_STATE(4213)] = 122102, + [SMALL_STATE(4214)] = 122115, + [SMALL_STATE(4215)] = 122128, + [SMALL_STATE(4216)] = 122147, + [SMALL_STATE(4217)] = 122166, + [SMALL_STATE(4218)] = 122179, + [SMALL_STATE(4219)] = 122192, + [SMALL_STATE(4220)] = 122205, + [SMALL_STATE(4221)] = 122218, + [SMALL_STATE(4222)] = 122231, + [SMALL_STATE(4223)] = 122244, + [SMALL_STATE(4224)] = 122257, + [SMALL_STATE(4225)] = 122276, + [SMALL_STATE(4226)] = 122295, + [SMALL_STATE(4227)] = 122314, + [SMALL_STATE(4228)] = 122329, + [SMALL_STATE(4229)] = 122348, + [SMALL_STATE(4230)] = 122367, + [SMALL_STATE(4231)] = 122386, + [SMALL_STATE(4232)] = 122405, + [SMALL_STATE(4233)] = 122424, + [SMALL_STATE(4234)] = 122443, + [SMALL_STATE(4235)] = 122458, + [SMALL_STATE(4236)] = 122477, + [SMALL_STATE(4237)] = 122492, + [SMALL_STATE(4238)] = 122505, + [SMALL_STATE(4239)] = 122518, + [SMALL_STATE(4240)] = 122531, + [SMALL_STATE(4241)] = 122544, + [SMALL_STATE(4242)] = 122563, + [SMALL_STATE(4243)] = 122576, + [SMALL_STATE(4244)] = 122589, + [SMALL_STATE(4245)] = 122602, + [SMALL_STATE(4246)] = 122621, + [SMALL_STATE(4247)] = 122640, + [SMALL_STATE(4248)] = 122653, + [SMALL_STATE(4249)] = 122668, + [SMALL_STATE(4250)] = 122683, + [SMALL_STATE(4251)] = 122700, + [SMALL_STATE(4252)] = 122713, + [SMALL_STATE(4253)] = 122726, + [SMALL_STATE(4254)] = 122741, + [SMALL_STATE(4255)] = 122756, + [SMALL_STATE(4256)] = 122771, + [SMALL_STATE(4257)] = 122786, + [SMALL_STATE(4258)] = 122805, + [SMALL_STATE(4259)] = 122818, + [SMALL_STATE(4260)] = 122837, + [SMALL_STATE(4261)] = 122850, + [SMALL_STATE(4262)] = 122863, + [SMALL_STATE(4263)] = 122876, + [SMALL_STATE(4264)] = 122889, + [SMALL_STATE(4265)] = 122902, + [SMALL_STATE(4266)] = 122921, + [SMALL_STATE(4267)] = 122940, + [SMALL_STATE(4268)] = 122959, + [SMALL_STATE(4269)] = 122972, + [SMALL_STATE(4270)] = 122989, + [SMALL_STATE(4271)] = 123002, + [SMALL_STATE(4272)] = 123015, + [SMALL_STATE(4273)] = 123028, + [SMALL_STATE(4274)] = 123043, + [SMALL_STATE(4275)] = 123056, + [SMALL_STATE(4276)] = 123069, + [SMALL_STATE(4277)] = 123082, + [SMALL_STATE(4278)] = 123095, + [SMALL_STATE(4279)] = 123108, + [SMALL_STATE(4280)] = 123121, + [SMALL_STATE(4281)] = 123136, + [SMALL_STATE(4282)] = 123151, + [SMALL_STATE(4283)] = 123166, + [SMALL_STATE(4284)] = 123179, + [SMALL_STATE(4285)] = 123192, + [SMALL_STATE(4286)] = 123207, + [SMALL_STATE(4287)] = 123220, + [SMALL_STATE(4288)] = 123233, + [SMALL_STATE(4289)] = 123246, + [SMALL_STATE(4290)] = 123261, + [SMALL_STATE(4291)] = 123280, + [SMALL_STATE(4292)] = 123293, + [SMALL_STATE(4293)] = 123308, + [SMALL_STATE(4294)] = 123323, + [SMALL_STATE(4295)] = 123338, + [SMALL_STATE(4296)] = 123355, + [SMALL_STATE(4297)] = 123374, + [SMALL_STATE(4298)] = 123387, + [SMALL_STATE(4299)] = 123402, + [SMALL_STATE(4300)] = 123415, + [SMALL_STATE(4301)] = 123428, + [SMALL_STATE(4302)] = 123443, + [SMALL_STATE(4303)] = 123456, + [SMALL_STATE(4304)] = 123469, + [SMALL_STATE(4305)] = 123482, + [SMALL_STATE(4306)] = 123495, + [SMALL_STATE(4307)] = 123508, + [SMALL_STATE(4308)] = 123521, + [SMALL_STATE(4309)] = 123534, + [SMALL_STATE(4310)] = 123547, + [SMALL_STATE(4311)] = 123560, + [SMALL_STATE(4312)] = 123579, + [SMALL_STATE(4313)] = 123592, + [SMALL_STATE(4314)] = 123609, + [SMALL_STATE(4315)] = 123622, + [SMALL_STATE(4316)] = 123639, + [SMALL_STATE(4317)] = 123652, + [SMALL_STATE(4318)] = 123665, + [SMALL_STATE(4319)] = 123678, + [SMALL_STATE(4320)] = 123695, + [SMALL_STATE(4321)] = 123712, + [SMALL_STATE(4322)] = 123729, + [SMALL_STATE(4323)] = 123746, + [SMALL_STATE(4324)] = 123759, + [SMALL_STATE(4325)] = 123772, + [SMALL_STATE(4326)] = 123785, + [SMALL_STATE(4327)] = 123798, + [SMALL_STATE(4328)] = 123811, + [SMALL_STATE(4329)] = 123824, + [SMALL_STATE(4330)] = 123837, + [SMALL_STATE(4331)] = 123850, + [SMALL_STATE(4332)] = 123865, + [SMALL_STATE(4333)] = 123880, + [SMALL_STATE(4334)] = 123893, + [SMALL_STATE(4335)] = 123906, + [SMALL_STATE(4336)] = 123919, + [SMALL_STATE(4337)] = 123932, + [SMALL_STATE(4338)] = 123945, + [SMALL_STATE(4339)] = 123960, + [SMALL_STATE(4340)] = 123973, + [SMALL_STATE(4341)] = 123986, + [SMALL_STATE(4342)] = 124003, + [SMALL_STATE(4343)] = 124016, + [SMALL_STATE(4344)] = 124029, + [SMALL_STATE(4345)] = 124042, + [SMALL_STATE(4346)] = 124055, + [SMALL_STATE(4347)] = 124068, + [SMALL_STATE(4348)] = 124083, + [SMALL_STATE(4349)] = 124098, + [SMALL_STATE(4350)] = 124111, + [SMALL_STATE(4351)] = 124124, + [SMALL_STATE(4352)] = 124137, + [SMALL_STATE(4353)] = 124150, + [SMALL_STATE(4354)] = 124165, + [SMALL_STATE(4355)] = 124180, + [SMALL_STATE(4356)] = 124197, + [SMALL_STATE(4357)] = 124216, + [SMALL_STATE(4358)] = 124235, + [SMALL_STATE(4359)] = 124254, + [SMALL_STATE(4360)] = 124267, + [SMALL_STATE(4361)] = 124284, + [SMALL_STATE(4362)] = 124299, + [SMALL_STATE(4363)] = 124312, + [SMALL_STATE(4364)] = 124325, + [SMALL_STATE(4365)] = 124344, + [SMALL_STATE(4366)] = 124363, + [SMALL_STATE(4367)] = 124380, + [SMALL_STATE(4368)] = 124399, + [SMALL_STATE(4369)] = 124414, + [SMALL_STATE(4370)] = 124427, + [SMALL_STATE(4371)] = 124440, + [SMALL_STATE(4372)] = 124459, + [SMALL_STATE(4373)] = 124474, + [SMALL_STATE(4374)] = 124493, + [SMALL_STATE(4375)] = 124510, + [SMALL_STATE(4376)] = 124527, + [SMALL_STATE(4377)] = 124542, + [SMALL_STATE(4378)] = 124557, + [SMALL_STATE(4379)] = 124570, + [SMALL_STATE(4380)] = 124589, + [SMALL_STATE(4381)] = 124608, + [SMALL_STATE(4382)] = 124621, + [SMALL_STATE(4383)] = 124638, + [SMALL_STATE(4384)] = 124653, + [SMALL_STATE(4385)] = 124668, + [SMALL_STATE(4386)] = 124681, + [SMALL_STATE(4387)] = 124700, + [SMALL_STATE(4388)] = 124717, + [SMALL_STATE(4389)] = 124734, + [SMALL_STATE(4390)] = 124751, + [SMALL_STATE(4391)] = 124770, + [SMALL_STATE(4392)] = 124789, + [SMALL_STATE(4393)] = 124808, + [SMALL_STATE(4394)] = 124823, + [SMALL_STATE(4395)] = 124838, + [SMALL_STATE(4396)] = 124857, + [SMALL_STATE(4397)] = 124876, + [SMALL_STATE(4398)] = 124895, + [SMALL_STATE(4399)] = 124910, + [SMALL_STATE(4400)] = 124926, + [SMALL_STATE(4401)] = 124942, + [SMALL_STATE(4402)] = 124958, + [SMALL_STATE(4403)] = 124974, + [SMALL_STATE(4404)] = 124990, + [SMALL_STATE(4405)] = 125004, + [SMALL_STATE(4406)] = 125018, + [SMALL_STATE(4407)] = 125034, + [SMALL_STATE(4408)] = 125050, + [SMALL_STATE(4409)] = 125066, + [SMALL_STATE(4410)] = 125082, + [SMALL_STATE(4411)] = 125096, + [SMALL_STATE(4412)] = 125108, + [SMALL_STATE(4413)] = 125120, + [SMALL_STATE(4414)] = 125132, + [SMALL_STATE(4415)] = 125144, + [SMALL_STATE(4416)] = 125156, + [SMALL_STATE(4417)] = 125168, + [SMALL_STATE(4418)] = 125180, + [SMALL_STATE(4419)] = 125196, + [SMALL_STATE(4420)] = 125212, + [SMALL_STATE(4421)] = 125224, + [SMALL_STATE(4422)] = 125240, + [SMALL_STATE(4423)] = 125254, + [SMALL_STATE(4424)] = 125268, + [SMALL_STATE(4425)] = 125280, + [SMALL_STATE(4426)] = 125292, + [SMALL_STATE(4427)] = 125308, + [SMALL_STATE(4428)] = 125324, + [SMALL_STATE(4429)] = 125336, + [SMALL_STATE(4430)] = 125348, + [SMALL_STATE(4431)] = 125360, + [SMALL_STATE(4432)] = 125376, + [SMALL_STATE(4433)] = 125392, + [SMALL_STATE(4434)] = 125404, + [SMALL_STATE(4435)] = 125420, + [SMALL_STATE(4436)] = 125434, + [SMALL_STATE(4437)] = 125446, + [SMALL_STATE(4438)] = 125458, + [SMALL_STATE(4439)] = 125470, + [SMALL_STATE(4440)] = 125484, + [SMALL_STATE(4441)] = 125500, + [SMALL_STATE(4442)] = 125512, + [SMALL_STATE(4443)] = 125524, + [SMALL_STATE(4444)] = 125540, + [SMALL_STATE(4445)] = 125556, + [SMALL_STATE(4446)] = 125568, + [SMALL_STATE(4447)] = 125580, + [SMALL_STATE(4448)] = 125596, + [SMALL_STATE(4449)] = 125610, + [SMALL_STATE(4450)] = 125622, + [SMALL_STATE(4451)] = 125636, + [SMALL_STATE(4452)] = 125652, + [SMALL_STATE(4453)] = 125668, + [SMALL_STATE(4454)] = 125680, + [SMALL_STATE(4455)] = 125696, + [SMALL_STATE(4456)] = 125712, + [SMALL_STATE(4457)] = 125724, + [SMALL_STATE(4458)] = 125740, + [SMALL_STATE(4459)] = 125752, + [SMALL_STATE(4460)] = 125766, + [SMALL_STATE(4461)] = 125780, + [SMALL_STATE(4462)] = 125796, + [SMALL_STATE(4463)] = 125812, + [SMALL_STATE(4464)] = 125824, + [SMALL_STATE(4465)] = 125840, + [SMALL_STATE(4466)] = 125852, + [SMALL_STATE(4467)] = 125868, + [SMALL_STATE(4468)] = 125884, + [SMALL_STATE(4469)] = 125898, + [SMALL_STATE(4470)] = 125910, + [SMALL_STATE(4471)] = 125922, + [SMALL_STATE(4472)] = 125938, + [SMALL_STATE(4473)] = 125950, + [SMALL_STATE(4474)] = 125966, + [SMALL_STATE(4475)] = 125982, + [SMALL_STATE(4476)] = 125998, + [SMALL_STATE(4477)] = 126014, + [SMALL_STATE(4478)] = 126030, + [SMALL_STATE(4479)] = 126042, + [SMALL_STATE(4480)] = 126054, + [SMALL_STATE(4481)] = 126070, + [SMALL_STATE(4482)] = 126082, + [SMALL_STATE(4483)] = 126096, + [SMALL_STATE(4484)] = 126110, + [SMALL_STATE(4485)] = 126126, + [SMALL_STATE(4486)] = 126140, + [SMALL_STATE(4487)] = 126154, + [SMALL_STATE(4488)] = 126166, + [SMALL_STATE(4489)] = 126178, + [SMALL_STATE(4490)] = 126194, + [SMALL_STATE(4491)] = 126206, + [SMALL_STATE(4492)] = 126218, + [SMALL_STATE(4493)] = 126234, + [SMALL_STATE(4494)] = 126250, + [SMALL_STATE(4495)] = 126262, + [SMALL_STATE(4496)] = 126274, + [SMALL_STATE(4497)] = 126286, + [SMALL_STATE(4498)] = 126298, + [SMALL_STATE(4499)] = 126310, + [SMALL_STATE(4500)] = 126326, + [SMALL_STATE(4501)] = 126338, + [SMALL_STATE(4502)] = 126354, + [SMALL_STATE(4503)] = 126370, + [SMALL_STATE(4504)] = 126382, + [SMALL_STATE(4505)] = 126394, + [SMALL_STATE(4506)] = 126406, + [SMALL_STATE(4507)] = 126418, + [SMALL_STATE(4508)] = 126434, + [SMALL_STATE(4509)] = 126446, + [SMALL_STATE(4510)] = 126462, + [SMALL_STATE(4511)] = 126474, + [SMALL_STATE(4512)] = 126486, + [SMALL_STATE(4513)] = 126502, + [SMALL_STATE(4514)] = 126518, + [SMALL_STATE(4515)] = 126534, + [SMALL_STATE(4516)] = 126550, + [SMALL_STATE(4517)] = 126562, + [SMALL_STATE(4518)] = 126578, + [SMALL_STATE(4519)] = 126594, + [SMALL_STATE(4520)] = 126608, + [SMALL_STATE(4521)] = 126624, + [SMALL_STATE(4522)] = 126640, + [SMALL_STATE(4523)] = 126654, + [SMALL_STATE(4524)] = 126668, + [SMALL_STATE(4525)] = 126684, + [SMALL_STATE(4526)] = 126698, + [SMALL_STATE(4527)] = 126712, + [SMALL_STATE(4528)] = 126728, + [SMALL_STATE(4529)] = 126742, + [SMALL_STATE(4530)] = 126756, + [SMALL_STATE(4531)] = 126770, + [SMALL_STATE(4532)] = 126786, + [SMALL_STATE(4533)] = 126800, + [SMALL_STATE(4534)] = 126814, + [SMALL_STATE(4535)] = 126826, + [SMALL_STATE(4536)] = 126838, + [SMALL_STATE(4537)] = 126854, + [SMALL_STATE(4538)] = 126866, + [SMALL_STATE(4539)] = 126882, + [SMALL_STATE(4540)] = 126894, + [SMALL_STATE(4541)] = 126906, + [SMALL_STATE(4542)] = 126918, + [SMALL_STATE(4543)] = 126932, + [SMALL_STATE(4544)] = 126944, + [SMALL_STATE(4545)] = 126960, + [SMALL_STATE(4546)] = 126972, + [SMALL_STATE(4547)] = 126984, + [SMALL_STATE(4548)] = 126996, + [SMALL_STATE(4549)] = 127010, + [SMALL_STATE(4550)] = 127026, + [SMALL_STATE(4551)] = 127042, + [SMALL_STATE(4552)] = 127054, + [SMALL_STATE(4553)] = 127066, + [SMALL_STATE(4554)] = 127078, + [SMALL_STATE(4555)] = 127090, + [SMALL_STATE(4556)] = 127106, + [SMALL_STATE(4557)] = 127122, + [SMALL_STATE(4558)] = 127134, + [SMALL_STATE(4559)] = 127148, + [SMALL_STATE(4560)] = 127160, + [SMALL_STATE(4561)] = 127172, + [SMALL_STATE(4562)] = 127184, + [SMALL_STATE(4563)] = 127200, + [SMALL_STATE(4564)] = 127214, + [SMALL_STATE(4565)] = 127226, + [SMALL_STATE(4566)] = 127240, + [SMALL_STATE(4567)] = 127256, + [SMALL_STATE(4568)] = 127272, + [SMALL_STATE(4569)] = 127286, + [SMALL_STATE(4570)] = 127298, + [SMALL_STATE(4571)] = 127312, + [SMALL_STATE(4572)] = 127326, + [SMALL_STATE(4573)] = 127338, + [SMALL_STATE(4574)] = 127350, + [SMALL_STATE(4575)] = 127364, + [SMALL_STATE(4576)] = 127378, + [SMALL_STATE(4577)] = 127394, + [SMALL_STATE(4578)] = 127406, + [SMALL_STATE(4579)] = 127418, + [SMALL_STATE(4580)] = 127430, + [SMALL_STATE(4581)] = 127442, + [SMALL_STATE(4582)] = 127456, + [SMALL_STATE(4583)] = 127468, + [SMALL_STATE(4584)] = 127480, + [SMALL_STATE(4585)] = 127492, + [SMALL_STATE(4586)] = 127506, + [SMALL_STATE(4587)] = 127518, + [SMALL_STATE(4588)] = 127530, + [SMALL_STATE(4589)] = 127544, + [SMALL_STATE(4590)] = 127558, + [SMALL_STATE(4591)] = 127570, + [SMALL_STATE(4592)] = 127586, + [SMALL_STATE(4593)] = 127598, + [SMALL_STATE(4594)] = 127610, + [SMALL_STATE(4595)] = 127622, + [SMALL_STATE(4596)] = 127636, + [SMALL_STATE(4597)] = 127650, + [SMALL_STATE(4598)] = 127662, + [SMALL_STATE(4599)] = 127674, + [SMALL_STATE(4600)] = 127686, + [SMALL_STATE(4601)] = 127700, + [SMALL_STATE(4602)] = 127712, + [SMALL_STATE(4603)] = 127726, + [SMALL_STATE(4604)] = 127742, + [SMALL_STATE(4605)] = 127756, + [SMALL_STATE(4606)] = 127768, + [SMALL_STATE(4607)] = 127780, + [SMALL_STATE(4608)] = 127792, + [SMALL_STATE(4609)] = 127804, + [SMALL_STATE(4610)] = 127820, + [SMALL_STATE(4611)] = 127832, + [SMALL_STATE(4612)] = 127848, + [SMALL_STATE(4613)] = 127862, + [SMALL_STATE(4614)] = 127878, + [SMALL_STATE(4615)] = 127892, + [SMALL_STATE(4616)] = 127906, + [SMALL_STATE(4617)] = 127922, + [SMALL_STATE(4618)] = 127934, + [SMALL_STATE(4619)] = 127948, + [SMALL_STATE(4620)] = 127962, + [SMALL_STATE(4621)] = 127974, + [SMALL_STATE(4622)] = 127990, + [SMALL_STATE(4623)] = 128004, + [SMALL_STATE(4624)] = 128016, + [SMALL_STATE(4625)] = 128032, + [SMALL_STATE(4626)] = 128046, + [SMALL_STATE(4627)] = 128062, + [SMALL_STATE(4628)] = 128076, + [SMALL_STATE(4629)] = 128092, + [SMALL_STATE(4630)] = 128108, + [SMALL_STATE(4631)] = 128122, + [SMALL_STATE(4632)] = 128138, + [SMALL_STATE(4633)] = 128150, + [SMALL_STATE(4634)] = 128162, + [SMALL_STATE(4635)] = 128176, + [SMALL_STATE(4636)] = 128192, + [SMALL_STATE(4637)] = 128208, + [SMALL_STATE(4638)] = 128222, + [SMALL_STATE(4639)] = 128234, + [SMALL_STATE(4640)] = 128246, + [SMALL_STATE(4641)] = 128262, + [SMALL_STATE(4642)] = 128278, + [SMALL_STATE(4643)] = 128294, + [SMALL_STATE(4644)] = 128306, + [SMALL_STATE(4645)] = 128322, + [SMALL_STATE(4646)] = 128334, + [SMALL_STATE(4647)] = 128346, + [SMALL_STATE(4648)] = 128362, + [SMALL_STATE(4649)] = 128374, + [SMALL_STATE(4650)] = 128386, + [SMALL_STATE(4651)] = 128400, + [SMALL_STATE(4652)] = 128412, + [SMALL_STATE(4653)] = 128428, + [SMALL_STATE(4654)] = 128444, + [SMALL_STATE(4655)] = 128456, + [SMALL_STATE(4656)] = 128472, + [SMALL_STATE(4657)] = 128484, + [SMALL_STATE(4658)] = 128497, + [SMALL_STATE(4659)] = 128510, + [SMALL_STATE(4660)] = 128523, + [SMALL_STATE(4661)] = 128536, + [SMALL_STATE(4662)] = 128549, + [SMALL_STATE(4663)] = 128562, + [SMALL_STATE(4664)] = 128575, + [SMALL_STATE(4665)] = 128588, + [SMALL_STATE(4666)] = 128601, + [SMALL_STATE(4667)] = 128614, + [SMALL_STATE(4668)] = 128627, + [SMALL_STATE(4669)] = 128640, + [SMALL_STATE(4670)] = 128653, + [SMALL_STATE(4671)] = 128666, + [SMALL_STATE(4672)] = 128679, + [SMALL_STATE(4673)] = 128692, + [SMALL_STATE(4674)] = 128705, + [SMALL_STATE(4675)] = 128718, + [SMALL_STATE(4676)] = 128731, + [SMALL_STATE(4677)] = 128744, + [SMALL_STATE(4678)] = 128755, + [SMALL_STATE(4679)] = 128768, + [SMALL_STATE(4680)] = 128781, + [SMALL_STATE(4681)] = 128794, + [SMALL_STATE(4682)] = 128807, + [SMALL_STATE(4683)] = 128820, + [SMALL_STATE(4684)] = 128833, + [SMALL_STATE(4685)] = 128846, + [SMALL_STATE(4686)] = 128859, + [SMALL_STATE(4687)] = 128872, + [SMALL_STATE(4688)] = 128885, + [SMALL_STATE(4689)] = 128898, + [SMALL_STATE(4690)] = 128911, + [SMALL_STATE(4691)] = 128924, + [SMALL_STATE(4692)] = 128937, + [SMALL_STATE(4693)] = 128950, + [SMALL_STATE(4694)] = 128963, + [SMALL_STATE(4695)] = 128976, + [SMALL_STATE(4696)] = 128989, + [SMALL_STATE(4697)] = 129002, + [SMALL_STATE(4698)] = 129015, + [SMALL_STATE(4699)] = 129028, + [SMALL_STATE(4700)] = 129041, + [SMALL_STATE(4701)] = 129054, + [SMALL_STATE(4702)] = 129067, + [SMALL_STATE(4703)] = 129080, + [SMALL_STATE(4704)] = 129093, + [SMALL_STATE(4705)] = 129104, + [SMALL_STATE(4706)] = 129117, + [SMALL_STATE(4707)] = 129130, + [SMALL_STATE(4708)] = 129143, + [SMALL_STATE(4709)] = 129156, + [SMALL_STATE(4710)] = 129169, + [SMALL_STATE(4711)] = 129182, + [SMALL_STATE(4712)] = 129195, + [SMALL_STATE(4713)] = 129208, + [SMALL_STATE(4714)] = 129221, + [SMALL_STATE(4715)] = 129234, + [SMALL_STATE(4716)] = 129247, + [SMALL_STATE(4717)] = 129260, + [SMALL_STATE(4718)] = 129273, + [SMALL_STATE(4719)] = 129286, + [SMALL_STATE(4720)] = 129299, + [SMALL_STATE(4721)] = 129312, + [SMALL_STATE(4722)] = 129325, + [SMALL_STATE(4723)] = 129338, + [SMALL_STATE(4724)] = 129351, + [SMALL_STATE(4725)] = 129362, + [SMALL_STATE(4726)] = 129375, + [SMALL_STATE(4727)] = 129388, + [SMALL_STATE(4728)] = 129401, + [SMALL_STATE(4729)] = 129414, + [SMALL_STATE(4730)] = 129427, + [SMALL_STATE(4731)] = 129440, + [SMALL_STATE(4732)] = 129453, + [SMALL_STATE(4733)] = 129466, + [SMALL_STATE(4734)] = 129479, + [SMALL_STATE(4735)] = 129492, + [SMALL_STATE(4736)] = 129505, + [SMALL_STATE(4737)] = 129518, + [SMALL_STATE(4738)] = 129531, + [SMALL_STATE(4739)] = 129544, + [SMALL_STATE(4740)] = 129557, + [SMALL_STATE(4741)] = 129570, + [SMALL_STATE(4742)] = 129583, + [SMALL_STATE(4743)] = 129594, + [SMALL_STATE(4744)] = 129607, + [SMALL_STATE(4745)] = 129620, + [SMALL_STATE(4746)] = 129633, + [SMALL_STATE(4747)] = 129646, + [SMALL_STATE(4748)] = 129659, + [SMALL_STATE(4749)] = 129672, + [SMALL_STATE(4750)] = 129685, + [SMALL_STATE(4751)] = 129698, + [SMALL_STATE(4752)] = 129711, + [SMALL_STATE(4753)] = 129724, + [SMALL_STATE(4754)] = 129737, + [SMALL_STATE(4755)] = 129750, + [SMALL_STATE(4756)] = 129763, + [SMALL_STATE(4757)] = 129774, + [SMALL_STATE(4758)] = 129787, + [SMALL_STATE(4759)] = 129800, + [SMALL_STATE(4760)] = 129813, + [SMALL_STATE(4761)] = 129826, + [SMALL_STATE(4762)] = 129839, + [SMALL_STATE(4763)] = 129852, + [SMALL_STATE(4764)] = 129865, + [SMALL_STATE(4765)] = 129878, + [SMALL_STATE(4766)] = 129891, + [SMALL_STATE(4767)] = 129904, + [SMALL_STATE(4768)] = 129917, + [SMALL_STATE(4769)] = 129930, + [SMALL_STATE(4770)] = 129943, + [SMALL_STATE(4771)] = 129956, + [SMALL_STATE(4772)] = 129969, + [SMALL_STATE(4773)] = 129982, + [SMALL_STATE(4774)] = 129995, + [SMALL_STATE(4775)] = 130008, + [SMALL_STATE(4776)] = 130021, + [SMALL_STATE(4777)] = 130034, + [SMALL_STATE(4778)] = 130047, + [SMALL_STATE(4779)] = 130058, + [SMALL_STATE(4780)] = 130071, + [SMALL_STATE(4781)] = 130084, + [SMALL_STATE(4782)] = 130095, + [SMALL_STATE(4783)] = 130108, + [SMALL_STATE(4784)] = 130121, + [SMALL_STATE(4785)] = 130134, + [SMALL_STATE(4786)] = 130147, + [SMALL_STATE(4787)] = 130160, + [SMALL_STATE(4788)] = 130173, + [SMALL_STATE(4789)] = 130186, + [SMALL_STATE(4790)] = 130199, + [SMALL_STATE(4791)] = 130212, + [SMALL_STATE(4792)] = 130225, + [SMALL_STATE(4793)] = 130238, + [SMALL_STATE(4794)] = 130251, + [SMALL_STATE(4795)] = 130264, + [SMALL_STATE(4796)] = 130277, + [SMALL_STATE(4797)] = 130290, + [SMALL_STATE(4798)] = 130303, + [SMALL_STATE(4799)] = 130316, + [SMALL_STATE(4800)] = 130329, + [SMALL_STATE(4801)] = 130342, + [SMALL_STATE(4802)] = 130355, + [SMALL_STATE(4803)] = 130368, + [SMALL_STATE(4804)] = 130381, + [SMALL_STATE(4805)] = 130394, + [SMALL_STATE(4806)] = 130407, + [SMALL_STATE(4807)] = 130420, + [SMALL_STATE(4808)] = 130433, + [SMALL_STATE(4809)] = 130446, + [SMALL_STATE(4810)] = 130459, + [SMALL_STATE(4811)] = 130472, + [SMALL_STATE(4812)] = 130485, + [SMALL_STATE(4813)] = 130498, + [SMALL_STATE(4814)] = 130511, + [SMALL_STATE(4815)] = 130524, + [SMALL_STATE(4816)] = 130537, + [SMALL_STATE(4817)] = 130550, + [SMALL_STATE(4818)] = 130563, + [SMALL_STATE(4819)] = 130576, + [SMALL_STATE(4820)] = 130589, + [SMALL_STATE(4821)] = 130602, + [SMALL_STATE(4822)] = 130615, + [SMALL_STATE(4823)] = 130626, + [SMALL_STATE(4824)] = 130637, + [SMALL_STATE(4825)] = 130650, + [SMALL_STATE(4826)] = 130663, + [SMALL_STATE(4827)] = 130676, + [SMALL_STATE(4828)] = 130687, + [SMALL_STATE(4829)] = 130697, + [SMALL_STATE(4830)] = 130707, + [SMALL_STATE(4831)] = 130717, + [SMALL_STATE(4832)] = 130727, + [SMALL_STATE(4833)] = 130737, + [SMALL_STATE(4834)] = 130747, + [SMALL_STATE(4835)] = 130757, + [SMALL_STATE(4836)] = 130767, + [SMALL_STATE(4837)] = 130777, + [SMALL_STATE(4838)] = 130787, + [SMALL_STATE(4839)] = 130797, + [SMALL_STATE(4840)] = 130807, + [SMALL_STATE(4841)] = 130817, + [SMALL_STATE(4842)] = 130827, + [SMALL_STATE(4843)] = 130837, + [SMALL_STATE(4844)] = 130847, + [SMALL_STATE(4845)] = 130857, + [SMALL_STATE(4846)] = 130867, + [SMALL_STATE(4847)] = 130877, + [SMALL_STATE(4848)] = 130887, + [SMALL_STATE(4849)] = 130897, + [SMALL_STATE(4850)] = 130907, + [SMALL_STATE(4851)] = 130917, + [SMALL_STATE(4852)] = 130927, + [SMALL_STATE(4853)] = 130937, + [SMALL_STATE(4854)] = 130947, + [SMALL_STATE(4855)] = 130957, + [SMALL_STATE(4856)] = 130967, + [SMALL_STATE(4857)] = 130977, + [SMALL_STATE(4858)] = 130987, + [SMALL_STATE(4859)] = 130997, + [SMALL_STATE(4860)] = 131007, + [SMALL_STATE(4861)] = 131017, + [SMALL_STATE(4862)] = 131027, + [SMALL_STATE(4863)] = 131037, + [SMALL_STATE(4864)] = 131047, + [SMALL_STATE(4865)] = 131057, + [SMALL_STATE(4866)] = 131067, + [SMALL_STATE(4867)] = 131077, + [SMALL_STATE(4868)] = 131087, + [SMALL_STATE(4869)] = 131097, + [SMALL_STATE(4870)] = 131107, + [SMALL_STATE(4871)] = 131117, + [SMALL_STATE(4872)] = 131127, + [SMALL_STATE(4873)] = 131137, + [SMALL_STATE(4874)] = 131147, + [SMALL_STATE(4875)] = 131157, + [SMALL_STATE(4876)] = 131167, + [SMALL_STATE(4877)] = 131177, + [SMALL_STATE(4878)] = 131187, + [SMALL_STATE(4879)] = 131197, + [SMALL_STATE(4880)] = 131207, + [SMALL_STATE(4881)] = 131217, + [SMALL_STATE(4882)] = 131227, + [SMALL_STATE(4883)] = 131237, + [SMALL_STATE(4884)] = 131247, + [SMALL_STATE(4885)] = 131257, + [SMALL_STATE(4886)] = 131267, + [SMALL_STATE(4887)] = 131277, + [SMALL_STATE(4888)] = 131287, + [SMALL_STATE(4889)] = 131297, + [SMALL_STATE(4890)] = 131307, + [SMALL_STATE(4891)] = 131317, + [SMALL_STATE(4892)] = 131327, + [SMALL_STATE(4893)] = 131337, + [SMALL_STATE(4894)] = 131347, + [SMALL_STATE(4895)] = 131357, + [SMALL_STATE(4896)] = 131367, + [SMALL_STATE(4897)] = 131377, + [SMALL_STATE(4898)] = 131387, + [SMALL_STATE(4899)] = 131397, + [SMALL_STATE(4900)] = 131407, + [SMALL_STATE(4901)] = 131417, + [SMALL_STATE(4902)] = 131427, + [SMALL_STATE(4903)] = 131437, + [SMALL_STATE(4904)] = 131447, + [SMALL_STATE(4905)] = 131457, + [SMALL_STATE(4906)] = 131467, + [SMALL_STATE(4907)] = 131477, + [SMALL_STATE(4908)] = 131487, + [SMALL_STATE(4909)] = 131497, + [SMALL_STATE(4910)] = 131507, + [SMALL_STATE(4911)] = 131517, + [SMALL_STATE(4912)] = 131527, + [SMALL_STATE(4913)] = 131537, + [SMALL_STATE(4914)] = 131547, + [SMALL_STATE(4915)] = 131557, + [SMALL_STATE(4916)] = 131567, + [SMALL_STATE(4917)] = 131577, + [SMALL_STATE(4918)] = 131587, + [SMALL_STATE(4919)] = 131597, + [SMALL_STATE(4920)] = 131607, + [SMALL_STATE(4921)] = 131617, + [SMALL_STATE(4922)] = 131627, + [SMALL_STATE(4923)] = 131637, + [SMALL_STATE(4924)] = 131647, + [SMALL_STATE(4925)] = 131657, + [SMALL_STATE(4926)] = 131667, + [SMALL_STATE(4927)] = 131677, + [SMALL_STATE(4928)] = 131687, + [SMALL_STATE(4929)] = 131697, + [SMALL_STATE(4930)] = 131707, + [SMALL_STATE(4931)] = 131717, + [SMALL_STATE(4932)] = 131727, + [SMALL_STATE(4933)] = 131737, + [SMALL_STATE(4934)] = 131747, + [SMALL_STATE(4935)] = 131757, + [SMALL_STATE(4936)] = 131767, + [SMALL_STATE(4937)] = 131777, + [SMALL_STATE(4938)] = 131787, + [SMALL_STATE(4939)] = 131797, + [SMALL_STATE(4940)] = 131807, + [SMALL_STATE(4941)] = 131817, + [SMALL_STATE(4942)] = 131827, + [SMALL_STATE(4943)] = 131837, + [SMALL_STATE(4944)] = 131847, + [SMALL_STATE(4945)] = 131857, + [SMALL_STATE(4946)] = 131867, + [SMALL_STATE(4947)] = 131877, + [SMALL_STATE(4948)] = 131887, + [SMALL_STATE(4949)] = 131897, + [SMALL_STATE(4950)] = 131907, + [SMALL_STATE(4951)] = 131917, + [SMALL_STATE(4952)] = 131927, + [SMALL_STATE(4953)] = 131937, + [SMALL_STATE(4954)] = 131947, + [SMALL_STATE(4955)] = 131957, + [SMALL_STATE(4956)] = 131967, + [SMALL_STATE(4957)] = 131977, + [SMALL_STATE(4958)] = 131987, + [SMALL_STATE(4959)] = 131997, + [SMALL_STATE(4960)] = 132007, + [SMALL_STATE(4961)] = 132017, + [SMALL_STATE(4962)] = 132027, + [SMALL_STATE(4963)] = 132037, + [SMALL_STATE(4964)] = 132047, + [SMALL_STATE(4965)] = 132057, + [SMALL_STATE(4966)] = 132067, + [SMALL_STATE(4967)] = 132077, + [SMALL_STATE(4968)] = 132087, + [SMALL_STATE(4969)] = 132097, + [SMALL_STATE(4970)] = 132107, + [SMALL_STATE(4971)] = 132117, + [SMALL_STATE(4972)] = 132127, + [SMALL_STATE(4973)] = 132137, + [SMALL_STATE(4974)] = 132147, + [SMALL_STATE(4975)] = 132157, + [SMALL_STATE(4976)] = 132167, + [SMALL_STATE(4977)] = 132177, + [SMALL_STATE(4978)] = 132187, + [SMALL_STATE(4979)] = 132197, + [SMALL_STATE(4980)] = 132207, + [SMALL_STATE(4981)] = 132217, + [SMALL_STATE(4982)] = 132227, + [SMALL_STATE(4983)] = 132237, + [SMALL_STATE(4984)] = 132247, + [SMALL_STATE(4985)] = 132257, + [SMALL_STATE(4986)] = 132267, + [SMALL_STATE(4987)] = 132277, + [SMALL_STATE(4988)] = 132287, + [SMALL_STATE(4989)] = 132297, + [SMALL_STATE(4990)] = 132307, + [SMALL_STATE(4991)] = 132317, + [SMALL_STATE(4992)] = 132327, + [SMALL_STATE(4993)] = 132337, + [SMALL_STATE(4994)] = 132347, + [SMALL_STATE(4995)] = 132357, + [SMALL_STATE(4996)] = 132367, + [SMALL_STATE(4997)] = 132377, + [SMALL_STATE(4998)] = 132387, + [SMALL_STATE(4999)] = 132397, + [SMALL_STATE(5000)] = 132407, + [SMALL_STATE(5001)] = 132417, + [SMALL_STATE(5002)] = 132427, + [SMALL_STATE(5003)] = 132437, + [SMALL_STATE(5004)] = 132447, + [SMALL_STATE(5005)] = 132457, + [SMALL_STATE(5006)] = 132467, + [SMALL_STATE(5007)] = 132477, + [SMALL_STATE(5008)] = 132487, + [SMALL_STATE(5009)] = 132497, + [SMALL_STATE(5010)] = 132507, + [SMALL_STATE(5011)] = 132517, + [SMALL_STATE(5012)] = 132527, + [SMALL_STATE(5013)] = 132537, + [SMALL_STATE(5014)] = 132547, + [SMALL_STATE(5015)] = 132557, + [SMALL_STATE(5016)] = 132567, + [SMALL_STATE(5017)] = 132577, + [SMALL_STATE(5018)] = 132587, + [SMALL_STATE(5019)] = 132597, + [SMALL_STATE(5020)] = 132607, + [SMALL_STATE(5021)] = 132617, + [SMALL_STATE(5022)] = 132627, + [SMALL_STATE(5023)] = 132637, + [SMALL_STATE(5024)] = 132647, + [SMALL_STATE(5025)] = 132657, + [SMALL_STATE(5026)] = 132667, + [SMALL_STATE(5027)] = 132677, + [SMALL_STATE(5028)] = 132687, + [SMALL_STATE(5029)] = 132697, + [SMALL_STATE(5030)] = 132707, + [SMALL_STATE(5031)] = 132717, + [SMALL_STATE(5032)] = 132727, + [SMALL_STATE(5033)] = 132737, + [SMALL_STATE(5034)] = 132747, + [SMALL_STATE(5035)] = 132757, + [SMALL_STATE(5036)] = 132767, + [SMALL_STATE(5037)] = 132777, + [SMALL_STATE(5038)] = 132787, + [SMALL_STATE(5039)] = 132797, + [SMALL_STATE(5040)] = 132807, + [SMALL_STATE(5041)] = 132817, + [SMALL_STATE(5042)] = 132827, + [SMALL_STATE(5043)] = 132837, + [SMALL_STATE(5044)] = 132847, + [SMALL_STATE(5045)] = 132857, + [SMALL_STATE(5046)] = 132867, + [SMALL_STATE(5047)] = 132877, + [SMALL_STATE(5048)] = 132887, + [SMALL_STATE(5049)] = 132897, + [SMALL_STATE(5050)] = 132907, + [SMALL_STATE(5051)] = 132917, + [SMALL_STATE(5052)] = 132927, + [SMALL_STATE(5053)] = 132937, + [SMALL_STATE(5054)] = 132947, + [SMALL_STATE(5055)] = 132957, + [SMALL_STATE(5056)] = 132967, + [SMALL_STATE(5057)] = 132977, + [SMALL_STATE(5058)] = 132987, + [SMALL_STATE(5059)] = 132997, + [SMALL_STATE(5060)] = 133007, + [SMALL_STATE(5061)] = 133017, + [SMALL_STATE(5062)] = 133027, + [SMALL_STATE(5063)] = 133037, + [SMALL_STATE(5064)] = 133047, + [SMALL_STATE(5065)] = 133057, + [SMALL_STATE(5066)] = 133067, + [SMALL_STATE(5067)] = 133077, + [SMALL_STATE(5068)] = 133087, + [SMALL_STATE(5069)] = 133097, + [SMALL_STATE(5070)] = 133107, + [SMALL_STATE(5071)] = 133117, + [SMALL_STATE(5072)] = 133127, + [SMALL_STATE(5073)] = 133137, + [SMALL_STATE(5074)] = 133147, + [SMALL_STATE(5075)] = 133157, + [SMALL_STATE(5076)] = 133167, + [SMALL_STATE(5077)] = 133177, + [SMALL_STATE(5078)] = 133187, + [SMALL_STATE(5079)] = 133197, + [SMALL_STATE(5080)] = 133207, + [SMALL_STATE(5081)] = 133217, + [SMALL_STATE(5082)] = 133227, + [SMALL_STATE(5083)] = 133237, + [SMALL_STATE(5084)] = 133247, + [SMALL_STATE(5085)] = 133257, + [SMALL_STATE(5086)] = 133267, + [SMALL_STATE(5087)] = 133277, + [SMALL_STATE(5088)] = 133287, + [SMALL_STATE(5089)] = 133297, + [SMALL_STATE(5090)] = 133307, + [SMALL_STATE(5091)] = 133317, + [SMALL_STATE(5092)] = 133327, + [SMALL_STATE(5093)] = 133337, + [SMALL_STATE(5094)] = 133347, + [SMALL_STATE(5095)] = 133357, + [SMALL_STATE(5096)] = 133367, + [SMALL_STATE(5097)] = 133377, + [SMALL_STATE(5098)] = 133387, + [SMALL_STATE(5099)] = 133397, + [SMALL_STATE(5100)] = 133407, + [SMALL_STATE(5101)] = 133417, + [SMALL_STATE(5102)] = 133427, + [SMALL_STATE(5103)] = 133437, + [SMALL_STATE(5104)] = 133447, + [SMALL_STATE(5105)] = 133457, + [SMALL_STATE(5106)] = 133467, + [SMALL_STATE(5107)] = 133477, + [SMALL_STATE(5108)] = 133487, + [SMALL_STATE(5109)] = 133497, + [SMALL_STATE(5110)] = 133507, + [SMALL_STATE(5111)] = 133517, + [SMALL_STATE(5112)] = 133527, + [SMALL_STATE(5113)] = 133537, + [SMALL_STATE(5114)] = 133547, + [SMALL_STATE(5115)] = 133557, + [SMALL_STATE(5116)] = 133567, + [SMALL_STATE(5117)] = 133577, + [SMALL_STATE(5118)] = 133587, + [SMALL_STATE(5119)] = 133597, + [SMALL_STATE(5120)] = 133607, + [SMALL_STATE(5121)] = 133617, + [SMALL_STATE(5122)] = 133627, + [SMALL_STATE(5123)] = 133637, + [SMALL_STATE(5124)] = 133647, + [SMALL_STATE(5125)] = 133657, + [SMALL_STATE(5126)] = 133667, + [SMALL_STATE(5127)] = 133677, + [SMALL_STATE(5128)] = 133687, + [SMALL_STATE(5129)] = 133697, + [SMALL_STATE(5130)] = 133707, + [SMALL_STATE(5131)] = 133717, + [SMALL_STATE(5132)] = 133727, + [SMALL_STATE(5133)] = 133737, + [SMALL_STATE(5134)] = 133747, + [SMALL_STATE(5135)] = 133757, + [SMALL_STATE(5136)] = 133767, + [SMALL_STATE(5137)] = 133777, + [SMALL_STATE(5138)] = 133787, + [SMALL_STATE(5139)] = 133797, + [SMALL_STATE(5140)] = 133807, + [SMALL_STATE(5141)] = 133817, + [SMALL_STATE(5142)] = 133827, + [SMALL_STATE(5143)] = 133837, + [SMALL_STATE(5144)] = 133847, + [SMALL_STATE(5145)] = 133857, + [SMALL_STATE(5146)] = 133867, + [SMALL_STATE(5147)] = 133877, + [SMALL_STATE(5148)] = 133887, + [SMALL_STATE(5149)] = 133897, + [SMALL_STATE(5150)] = 133907, + [SMALL_STATE(5151)] = 133917, + [SMALL_STATE(5152)] = 133927, + [SMALL_STATE(5153)] = 133937, + [SMALL_STATE(5154)] = 133947, + [SMALL_STATE(5155)] = 133957, + [SMALL_STATE(5156)] = 133967, + [SMALL_STATE(5157)] = 133977, + [SMALL_STATE(5158)] = 133987, + [SMALL_STATE(5159)] = 133997, + [SMALL_STATE(5160)] = 134007, + [SMALL_STATE(5161)] = 134017, + [SMALL_STATE(5162)] = 134027, + [SMALL_STATE(5163)] = 134037, + [SMALL_STATE(5164)] = 134047, + [SMALL_STATE(5165)] = 134057, + [SMALL_STATE(5166)] = 134067, + [SMALL_STATE(5167)] = 134077, + [SMALL_STATE(5168)] = 134087, + [SMALL_STATE(5169)] = 134097, + [SMALL_STATE(5170)] = 134107, + [SMALL_STATE(5171)] = 134117, + [SMALL_STATE(5172)] = 134127, + [SMALL_STATE(5173)] = 134137, + [SMALL_STATE(5174)] = 134147, + [SMALL_STATE(5175)] = 134157, + [SMALL_STATE(5176)] = 134167, + [SMALL_STATE(5177)] = 134177, + [SMALL_STATE(5178)] = 134187, + [SMALL_STATE(5179)] = 134197, + [SMALL_STATE(5180)] = 134207, + [SMALL_STATE(5181)] = 134217, + [SMALL_STATE(5182)] = 134227, + [SMALL_STATE(5183)] = 134237, + [SMALL_STATE(5184)] = 134247, + [SMALL_STATE(5185)] = 134257, + [SMALL_STATE(5186)] = 134267, + [SMALL_STATE(5187)] = 134277, + [SMALL_STATE(5188)] = 134287, + [SMALL_STATE(5189)] = 134297, + [SMALL_STATE(5190)] = 134307, + [SMALL_STATE(5191)] = 134317, + [SMALL_STATE(5192)] = 134327, + [SMALL_STATE(5193)] = 134337, + [SMALL_STATE(5194)] = 134347, + [SMALL_STATE(5195)] = 134357, + [SMALL_STATE(5196)] = 134367, + [SMALL_STATE(5197)] = 134377, + [SMALL_STATE(5198)] = 134387, + [SMALL_STATE(5199)] = 134397, + [SMALL_STATE(5200)] = 134407, + [SMALL_STATE(5201)] = 134417, + [SMALL_STATE(5202)] = 134427, + [SMALL_STATE(5203)] = 134437, + [SMALL_STATE(5204)] = 134447, + [SMALL_STATE(5205)] = 134457, + [SMALL_STATE(5206)] = 134467, + [SMALL_STATE(5207)] = 134477, + [SMALL_STATE(5208)] = 134487, + [SMALL_STATE(5209)] = 134497, + [SMALL_STATE(5210)] = 134507, + [SMALL_STATE(5211)] = 134517, + [SMALL_STATE(5212)] = 134527, + [SMALL_STATE(5213)] = 134537, + [SMALL_STATE(5214)] = 134547, + [SMALL_STATE(5215)] = 134557, + [SMALL_STATE(5216)] = 134567, + [SMALL_STATE(5217)] = 134577, + [SMALL_STATE(5218)] = 134587, + [SMALL_STATE(5219)] = 134597, + [SMALL_STATE(5220)] = 134607, + [SMALL_STATE(5221)] = 134617, + [SMALL_STATE(5222)] = 134627, + [SMALL_STATE(5223)] = 134637, + [SMALL_STATE(5224)] = 134647, + [SMALL_STATE(5225)] = 134657, + [SMALL_STATE(5226)] = 134667, + [SMALL_STATE(5227)] = 134677, + [SMALL_STATE(5228)] = 134687, + [SMALL_STATE(5229)] = 134697, + [SMALL_STATE(5230)] = 134707, + [SMALL_STATE(5231)] = 134717, + [SMALL_STATE(5232)] = 134727, + [SMALL_STATE(5233)] = 134737, + [SMALL_STATE(5234)] = 134747, + [SMALL_STATE(5235)] = 134757, + [SMALL_STATE(5236)] = 134767, + [SMALL_STATE(5237)] = 134777, + [SMALL_STATE(5238)] = 134787, + [SMALL_STATE(5239)] = 134797, + [SMALL_STATE(5240)] = 134807, + [SMALL_STATE(5241)] = 134817, + [SMALL_STATE(5242)] = 134827, + [SMALL_STATE(5243)] = 134837, + [SMALL_STATE(5244)] = 134847, + [SMALL_STATE(5245)] = 134857, + [SMALL_STATE(5246)] = 134867, + [SMALL_STATE(5247)] = 134877, + [SMALL_STATE(5248)] = 134887, + [SMALL_STATE(5249)] = 134897, + [SMALL_STATE(5250)] = 134907, + [SMALL_STATE(5251)] = 134917, + [SMALL_STATE(5252)] = 134927, + [SMALL_STATE(5253)] = 134937, + [SMALL_STATE(5254)] = 134947, + [SMALL_STATE(5255)] = 134957, + [SMALL_STATE(5256)] = 134967, + [SMALL_STATE(5257)] = 134977, + [SMALL_STATE(5258)] = 134987, + [SMALL_STATE(5259)] = 134997, + [SMALL_STATE(5260)] = 135007, + [SMALL_STATE(5261)] = 135017, + [SMALL_STATE(5262)] = 135027, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5106), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5059), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4895), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4744), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4938), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4884), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4922), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5072), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3722), - [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1775), - [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3874), - [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3875), - [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3876), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2897), - [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1680), - [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1897), - [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4371), - [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1767), - [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1768), - [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3986), - [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4487), - [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1230), - [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1259), - [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5072), - [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4492), - [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1349), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5072), - [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1112), - [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1113), - [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1114), - [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4893), - [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(367), - [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(33), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3607), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5162), - [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3537), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2268), - [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3381), - [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3547), - [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(110), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(110), - [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(119), - [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(695), - [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(699), - [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4922), - [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(943), - [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3912), - [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5099), - [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5100), - [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3985), - [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3781), - [595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1454), - [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5097), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3725), - [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1753), - [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3881), - [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3882), - [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3815), - [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2897), - [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1680), - [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1897), - [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4371), - [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1767), - [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1768), - [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3986), - [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4487), - [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1230), - [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(963), - [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5072), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4007), - [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1349), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5072), - [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1112), - [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1113), - [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1114), - [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4893), - [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(367), - [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(33), - [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3607), - [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5162), - [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5), - [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3537), - [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2259), - [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3381), - [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3547), - [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(110), - [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(110), - [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(119), - [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(695), - [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(699), - [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4922), - [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(943), - [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3912), - [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5099), - [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5100), - [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3985), - [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3781), - [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1453), - [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5097), + [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3780), + [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1760), + [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3918), + [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3919), + [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3920), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2932), + [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1687), + [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1889), + [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4444), + [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1756), + [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1757), + [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4033), + [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4451), + [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1157), + [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(905), + [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5256), + [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4030), + [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1355), + [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5256), + [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1002), + [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(980), + [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(988), + [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4863), + [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(363), + [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(29), + [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3652), + [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5220), + [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6), + [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3546), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2259), + [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3423), + [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3548), + [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(115), + [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(115), + [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(117), + [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(680), + [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(684), + [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4974), + [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(922), + [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3965), + [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5150), + [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5151), + [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4051), + [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3885), + [595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1449), + [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5148), + [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3779), + [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1737), + [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3915), + [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3916), + [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3917), + [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2932), + [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1687), + [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1889), + [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4444), + [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1756), + [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1757), + [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4033), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4451), + [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1157), + [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1258), + [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5256), + [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4464), + [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1355), + [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5256), + [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1002), + [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(980), + [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(988), + [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4863), + [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(363), + [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(29), + [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3652), + [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5220), + [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6), + [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3546), + [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2280), + [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3423), + [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3548), + [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(115), + [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(115), + [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(117), + [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(680), + [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(684), + [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4974), + [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(922), + [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3965), + [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5150), + [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5151), + [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4051), + [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3885), + [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1451), + [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5148), [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), [741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), [747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), [771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), - [793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4899), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5122), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5123), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5102), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), - [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4860), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5116), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5067), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4837), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5054), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), + [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), + [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), + [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4861), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4914), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5053), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5167), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5118), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 30), [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 30), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4851), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5023), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 30), - [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 30), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5072), - [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5072), - [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2897), - [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1258), - [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4492), - [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1349), - [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1112), - [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1113), - [1058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1114), - [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(367), - [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3580), - [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5162), - [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5), - [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3537), - [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2268), - [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3381), - [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3547), - [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(130), - [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(130), - [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(139), - [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(695), - [1100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(699), - [1103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4922), - [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(943), - [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3912), - [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5099), - [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5100), - [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3985), - [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3781), - [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1454), - [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5097), - [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5072), - [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5072), - [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2897), - [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(962), - [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4007), - [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1349), - [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1112), - [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1113), - [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1114), - [1157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(367), - [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [1163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3580), - [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5162), - [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5), - [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3537), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), + [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), + [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 30), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), + [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 30), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4972), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5256), + [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5256), + [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2932), + [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1257), + [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4464), + [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1355), + [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1002), + [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(980), + [1058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(988), + [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(363), + [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(29), + [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3665), + [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5220), + [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6), + [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3546), + [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2280), + [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3423), + [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3548), + [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(116), + [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(116), + [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(134), + [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(680), + [1100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(684), + [1103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4974), + [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(922), + [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3965), + [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5150), + [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5151), + [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4051), + [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3885), + [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1451), + [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5148), + [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5256), + [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5256), + [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2932), + [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(910), + [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4030), + [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1355), + [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1002), + [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(980), + [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(988), + [1157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(363), + [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(29), + [1163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3665), + [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5220), + [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6), + [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3546), [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2259), - [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3381), - [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3547), - [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(130), - [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(130), - [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(139), - [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(695), - [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(699), - [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4922), - [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(943), - [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3912), - [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5099), - [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5100), - [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3985), - [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3781), - [1220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1453), - [1223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5097), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), - [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), + [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3423), + [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3548), + [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(116), + [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(116), + [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(134), + [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(680), + [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(684), + [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4974), + [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(922), + [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3965), + [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5150), + [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5151), + [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4051), + [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3885), + [1220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1449), + [1223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5148), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), + [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 20), [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 20), - [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 1, 0, 0), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 1, 0, 0), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 0), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 0), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), - [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_str, 3, 0, 0), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_str, 3, 0, 0), - [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_single_quotes, 3, 0, 0), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_single_quotes, 3, 0, 0), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_back_ticks, 3, 0, 0), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_back_ticks, 3, 0, 0), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 0), - [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 0), - [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), - [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), - [1528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3490), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 2, 0, 0), - [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 2, 0, 0), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3404), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 20), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 20), - [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 28), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 28), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 29), - [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 29), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [1604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3408), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), - [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 18), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 0), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 0), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 1, 0, 0), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 1, 0, 0), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_str, 3, 0, 0), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_str, 3, 0, 0), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), + [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), + [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), + [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), + [1498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3514), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), + [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_single_quotes, 3, 0, 0), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_single_quotes, 3, 0, 0), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_back_ticks, 3, 0, 0), + [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_back_ticks, 3, 0, 0), + [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 0), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 0), + [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 2, 0, 0), + [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 2, 0, 0), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3531), + [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), + [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 20), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 20), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 29), + [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 29), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), + [1600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3499), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 28), + [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 28), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), + [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 18), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 127), [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 127), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), - [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 124), - [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 124), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 125), - [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 125), - [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 126), - [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 126), - [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [1689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3415), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), - [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [1853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 3, 0, 45), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 3, 0, 45), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 98), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 98), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [1934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3438), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), - [1957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(691), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 22), - [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 22), - [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 2, 0, 0), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 76), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 76), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 3, 0, 0), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), - [1986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3941), - [1989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4308), - [1992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4560), - [1995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(347), - [1998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(30), - [2001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3586), - [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(7), - [2007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3409), - [2010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(38), - [2013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3410), - [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5160), - [2019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3276), - [2022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3276), - [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3360), - [2028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4129), - [2031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3940), - [2034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5061), - [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4309), - [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3925), - [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5111), - [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5112), - [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3913), - [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3818), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(376), - [2058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4277), - [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5109), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 102), - [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 102), - [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 74), - [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 74), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), - [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), - [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 72), - [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 72), - [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), - [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), - [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), - [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), - [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 73), - [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 73), - [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), - [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 75), - [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 75), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 102), - [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 102), - [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 21), - [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 21), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), - [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 28), - [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 28), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 45), - [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 45), - [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 113), - [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 113), - [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 114), - [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 114), - [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 115), - [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 115), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 121), - [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 121), - [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 98), - [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 98), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 154), - [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 154), - [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 155), - [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 155), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 156), - [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 156), - [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 157), - [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 157), - [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 158), - [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 158), - [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 159), - [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 159), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 160), - [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 160), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 3), - [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 3), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 59), - [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 59), - [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 59), - [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 59), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 72), - [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 72), - [2284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 147), - [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 147), - [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), - [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [2335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4759), - [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4759), - [2341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(2829), - [2344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4808), - [2347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4738), - [2350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(51), - [2353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4266), - [2356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4938), - [2359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(38), - [2362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5160), - [2365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1878), - [2368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1878), - [2371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1912), - [2374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(695), - [2377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3993), - [2380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4923), - [2383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4924), - [2386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3985), - [2389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3781), - [2392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(456), - [2395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4918), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 190), - [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 190), - [2422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4759), - [2425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4759), - [2428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(2829), - [2431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4808), - [2434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4738), - [2437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(51), - [2440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4333), - [2443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4938), - [2446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(38), - [2449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5160), - [2452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1878), - [2455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1878), - [2458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1912), - [2461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(695), - [2464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3993), - [2467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4923), - [2470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4924), - [2473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3985), - [2476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3781), - [2479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(456), - [2482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4918), - [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(691), - [2498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(965), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), - [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 111), - [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 111), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 57), - [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 57), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), - [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 116), - [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 116), - [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 71), - [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 71), - [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 111), - [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 111), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), - [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), - [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), - [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 161), - [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 161), - [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 57), - [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 57), - [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 29), - [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 29), - [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 39), - [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 39), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), - [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), - [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 4), - [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 4), - [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), - [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), - [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), - [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_cellpath, 2, 0, 0), - [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_cellpath, 2, 0, 0), - [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), - [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), - [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 4, 0, 0), - [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 5, 0, 0), - [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), - [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(966), - [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), + [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 124), + [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 124), + [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 125), + [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 125), + [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 126), + [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 126), + [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [1699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3456), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), + [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 98), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 98), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), + [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), + [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 3, 0, 45), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 3, 0, 45), + [1886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [1889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [1932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3491), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), + [1937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(683), + [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 22), + [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 22), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 2, 0, 0), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 76), + [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 76), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 3, 0, 0), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [1984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4043), + [1987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4356), + [1990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4655), + [1993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(354), + [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(31), + [1999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3648), + [2002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(12), + [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3474), + [2008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(44), + [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3476), + [2014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5044), + [2017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3395), + [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3395), + [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3422), + [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4353), + [2029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4028), + [2032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5112), + [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4358), + [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4004), + [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5163), + [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5164), + [2047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3967), + [2050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3908), + [2053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(397), + [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4118), + [2059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5161), + [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 72), + [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 72), + [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 102), + [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 102), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), + [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), + [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), + [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), + [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 21), + [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 21), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), + [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), + [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 102), + [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 102), + [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 73), + [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 73), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 74), + [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 74), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 75), + [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 75), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 72), + [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 72), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4744), + [2207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4744), + [2210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(2964), + [2213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5016), + [2216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4713), + [2219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(36), + [2222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4369), + [2225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4884), + [2228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(44), + [2231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5044), + [2234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1849), + [2237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1849), + [2240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1905), + [2243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(680), + [2246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4059), + [2249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4975), + [2252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4976), + [2255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4051), + [2258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3885), + [2261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(457), + [2264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4970), + [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 147), + [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 147), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), + [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), + [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), + [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(683), + [2322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(1060), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), + [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), + [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 28), + [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 28), + [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 45), + [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 45), + [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 113), + [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 113), + [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 114), + [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 114), + [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 115), + [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 115), + [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 121), + [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 121), + [2357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4744), + [2360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4744), + [2363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(2964), + [2366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5016), + [2369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4713), + [2372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(36), + [2375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4370), + [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4884), + [2381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(44), + [2384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5044), + [2387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1849), + [2390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1849), + [2393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1905), + [2396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(680), + [2399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4059), + [2402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4975), + [2405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4976), + [2408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4051), + [2411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3885), + [2414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(457), + [2417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4970), + [2420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 98), + [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 98), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 154), + [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 154), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 155), + [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 155), + [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 156), + [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 156), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 157), + [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 157), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 158), + [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 158), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 159), + [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 159), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 160), + [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 160), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 3), + [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 3), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 59), + [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 59), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 59), + [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 59), + [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 190), + [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 190), + [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 116), + [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 116), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 4, 0, 0), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 111), + [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 111), + [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 161), + [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 161), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 5, 0, 0), + [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), + [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), + [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 71), + [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 71), + [2551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1047), + [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 4), + [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 4), + [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_cellpath, 2, 0, 0), + [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_cellpath, 2, 0, 0), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 39), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 39), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 29), + [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 29), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), + [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), + [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 111), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 111), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 57), + [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 57), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), + [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), + [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), + [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), + [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 57), + [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 57), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), + [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 190), + [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 190), + [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 71), + [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 71), [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 72), [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 72), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 146), - [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 146), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 71), - [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 71), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), - [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), - [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 147), - [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 147), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 146), - [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 146), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 149), - [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 149), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 148), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 148), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 190), - [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 190), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 189), - [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 189), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 71), - [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 71), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), SHIFT(691), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 71), SHIFT(691), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4580), - [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [2900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), SHIFT(691), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 146), SHIFT(691), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [2924] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [2928] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [2932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [2935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), - [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5118), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4676), - [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), - [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), - [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), - [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), - [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), - [3070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1359), - [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), - [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [3079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1366), - [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [3086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3963), - [3089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3965), - [3092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3939), - [3095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(971), - [3098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(32), - [3101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4299), - [3104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(457), - [3107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4580), - [3110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3405), - [3113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3406), - [3116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3248), - [3119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3248), - [3122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3373), - [3125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(695), - [3128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(699), - [3131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4922), - [3134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4021), - [3137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3993), - [3140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4923), - [3143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4924), - [3146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(685), - [3149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4918), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), - [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), - [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), - [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [3186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(691), - [3189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1391), - [3192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [3234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1380), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5031), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4969), - [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), - [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), - [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), - [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), - [3341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [3355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [3364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [3382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(4813), - [3385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(4813), - [3388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(4960), - [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), - [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), - [3395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1893), - [3398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1893), - [3401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1939), - [3404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(4813), - [3407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(4813), - [3410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(4960), - [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1893), - [3420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1893), - [3423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1939), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [3440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), - [3445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), - [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [3472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1411), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1416), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), - [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3941), - [3505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4308), - [3508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4560), - [3511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1125), - [3514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(30), - [3517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4266), - [3520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(458), - [3523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3409), - [3526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3410), - [3529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3276), - [3532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3276), - [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3360), - [3538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4129), - [3541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3940), - [3544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5061), - [3547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4695), - [3550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3925), - [3553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5111), - [3556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5112), - [3559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4277), - [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5109), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4872), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), - [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), + [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), + [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 147), + [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 147), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 146), + [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 146), + [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 146), + [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 146), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 71), + [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 71), + [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 149), + [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 149), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), + [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 148), + [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 148), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 189), + [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 189), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), SHIFT(683), + [2867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), SHIFT(683), + [2870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 146), SHIFT(683), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 71), SHIFT(683), + [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [2880] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [2884] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [2888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [2891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), + [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4683), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4776), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), + [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), + [3066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [3070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1366), + [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), + [3075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1361), + [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), + [3080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1380), + [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [3085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4960), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), + [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [3121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(683), + [3124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1385), + [3127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5029), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [3181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4022), + [3184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4025), + [3187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4050), + [3190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1069), + [3193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(28), + [3196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4318), + [3199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(465), + [3202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4475), + [3205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), + [3208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3498), + [3211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3380), + [3214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3380), + [3217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3420), + [3220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(680), + [3223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(684), + [3226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4974), + [3229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3955), + [3232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4059), + [3235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4975), + [3238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4976), + [3241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(679), + [3244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4970), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4973), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), + [3350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), + [3352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [3356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), + [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), + [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [3376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5261), + [3379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5261), + [3382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5074), + [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), + [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), + [3389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1902), + [3392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1902), + [3395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1941), + [3398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5261), + [3401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5261), + [3404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5074), + [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1902), + [3414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1902), + [3417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1941), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [3454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1405), + [3459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1405), + [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [3476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1414), + [3479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1417), + [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4043), + [3527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4356), + [3530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4655), + [3533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(964), + [3536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(31), + [3539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4284), + [3542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(468), + [3545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3474), + [3548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3476), + [3551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3395), + [3554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3395), + [3557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3422), + [3560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4353), + [3563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4028), + [3566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5112), + [3569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4678), + [3572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4004), + [3575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5163), + [3578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5164), + [3581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4118), + [3584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5161), + [3587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4834), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 32), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 10), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), [3653] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 32), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5021), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), - [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), - [3689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 47), - [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), - [3693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), - [3696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 18), REDUCE(sym_record_body, 2, 0, 18), - [3699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), - [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 48), - [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), - [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 4, 0, 103), - [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), - [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), - [3712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1489), - [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), - [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 18), - [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 18), - [3721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 103), - [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 47), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [3727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 47), REDUCE(sym_record_body, 3, 0, 47), - [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 48), - [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), - [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), - [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), - [3740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1515), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [3757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5009), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), - [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), - [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [4004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3483), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [4025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5009), - [4028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5009), - [4031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(4613), - [4034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(1893), - [4037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(1939), - [4040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(3925), - [4043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5111), - [4046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5112), - [4049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5109), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), - [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), - [4064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 172), SHIFT_REPEAT(3944), - [4067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 172), SHIFT_REPEAT(3740), - [4070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 172), SHIFT_REPEAT(3741), - [4073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 172), SHIFT_REPEAT(4879), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), - [4080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), - [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), - [4106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3433), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [4125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 172), SHIFT_REPEAT(4205), - [4128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 172), SHIFT_REPEAT(3958), - [4131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 172), SHIFT_REPEAT(3961), - [4134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 172), SHIFT_REPEAT(5191), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5073), - [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4861), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), - [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4855), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), - [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [4197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1903), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5104), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), - [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 88), - [4262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 88), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [4266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 83), - [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 88), - [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 172), - [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 88), - [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 83), - [4276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 172), - [4278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2088), - [4281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 4, 0, 204), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [4299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 4, 0, 204), - [4301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), - [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), - [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), - [4313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3459), - [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [4344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 90), - [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 90), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 90), - [4352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2134), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), - [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4967), - [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), - [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [4365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 20), - [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 20), - [4369] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 4, 0, 175), - [4413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 18), - [4415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 103), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 18), - [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [4451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [4455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(1940), - [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [4462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 18), - [4467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2113), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), - [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), - [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [4486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2112), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), - [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4983), - [4493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4970), - [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [4499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 47), - [4501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 48), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), - [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), - [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), - [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [4513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 137), - [4515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 138), - [4517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2153), - [4520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2136), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), - [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5030), - [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), - [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5075), - [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 85), - [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 85), - [4627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 86), - [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 86), - [4631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 87), - [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 87), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [4649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 34), - [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 34), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), - [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5003), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), - [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5107), - [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), - [4665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2219), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [4680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 1, 0, 0), - [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [4700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2239), - [4703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), - [4705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 4, 0, 0), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [4709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), - [4711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 3, 0, 0), - [4713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2244), - [4716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 2, 0, 0), - [4718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 18), - [4720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 4, 0, 103), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 18), - [4726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 18), - [4728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 47), - [4730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 48), - [4732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2251), - [4735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2248), - [4738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2253), - [4741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(4959), - [4744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(4939), - [4747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(4874), - [4750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(3841), - [4753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(3842), - [4756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(3611), - [4759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(3611), - [4762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(3723), - [4765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(4941), - [4768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(3925), - [4771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(5111), - [4774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(5112), - [4777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(3931), - [4780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 200), SHIFT_REPEAT(5109), - [4783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), - [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4945), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), - [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), - [4791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [4803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), - [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [4829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3477), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), - [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), - [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [4950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2385), - [4953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 165), - [4955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 4, 0, 220), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [4959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 165), - [4961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [4969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), - [4989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), - [4991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 200), - [4993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 165), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [4999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 199), - [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [5021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2439), - [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), - [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [5028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), - [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [5060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3486), - [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [5067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [5069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [5073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [5077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [5091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3467), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), - [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), - [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [5136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 55), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), - [5146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 55), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [5150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 71), - [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), - [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), - [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), - [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [5180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3454), - [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), - [5185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), - [5187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), - [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [5221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [5231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [5233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [5237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 39), - [5239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 39), - [5241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), - [5247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), - [5249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [5251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 4), - [5255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 4), - [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 39), - [5259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 39), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [5265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), - [5267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), - [5269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 72), - [5271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 20), - [5273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 20), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [5287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [5293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3422), - [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [5316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 110), - [5318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 110), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4502), - [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [5326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 2), - [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [5332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 52), - [5334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 52), - [5336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), - [5338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [5344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 62), - [5346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 62), - [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [5372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 110), - [5374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 110), - [5376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 55), - [5378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 55), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [5384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 52), - [5386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 52), - [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), - [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [5394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 214), - [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [5400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 188), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [5406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 183), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [5412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 184), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [5418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 214), - [5420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 215), - [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), - [5426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 185), - [5428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 186), - [5430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 214), SHIFT(691), - [5433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 215), SHIFT(691), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [5440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 187), - [5442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 146), - [5444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 216), - [5446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 189), - [5448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 188), - [5450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 148), - [5452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 216), SHIFT(691), - [5455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 189), SHIFT(691), - [5458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 148), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [5470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 215), - [5472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 216), - [5474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 189), - [5476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 183), - [5478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 184), - [5480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 117), - [5482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 118), - [5484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 183), SHIFT(691), - [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [5503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 184), SHIFT(691), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [5510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 105), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [5514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 106), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [5518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), - [5520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), - [5522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 117), - [5524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 118), - [5526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 117), SHIFT(691), - [5529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 24), - [5531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), SHIFT(691), - [5534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), SHIFT(691), - [5537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 118), SHIFT(691), - [5540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 23), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [5548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 24), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [5556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 119), - [5558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 71), - [5560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 119), SHIFT(691), - [5563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 71), SHIFT(691), - [5566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), - [5568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 146), - [5570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 119), - [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 71), - [5574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), SHIFT(691), - [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [5579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 68), - [5581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 68), - [5583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 23), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [5587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 146), SHIFT(691), - [5590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 24), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [5594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 105), - [5596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 106), - [5598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 23), - [5600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), - [5602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), - [5604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [5606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1287), - [5609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3356), - [5612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1810), - [5615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [5617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 188), SHIFT(691), - [5620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 20), - [5622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 20), - [5624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 117), - [5626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 118), - [5628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 148), SHIFT(691), - [5631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 119), - [5633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 71), - [5635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(691), - [5638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), - [5640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 217), - [5642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 217), - [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [5662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(3117), - [5665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), - [5667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5012), - [5670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4744), - [5673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5033), - [5676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(5039), - [5679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 26), - [5681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 27), - [5683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(691), - [5686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), - [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), - [5704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [5708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), - [5710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), SHIFT_REPEAT(103), - [5713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 191), - [5715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 191), - [5717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 61), - [5719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 151), - [5721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 151), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), - [5739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [5747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 2), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [5771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 2), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [5779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 131), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [5783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 131), - [5785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 61), - [5787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(691), - [5790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [5794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 144), SHIFT(691), - [5797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 144), - [5799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), - [5801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), SHIFT_REPEAT(128), - [5804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [5806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [5808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 102), - [5810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 102), - [5812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(201), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [5817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 43), SHIFT(691), - [5820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 43), - [5822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [5824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [5828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 104), SHIFT(691), - [5831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 104), - [5833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 102), - [5835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 102), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [5843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [5849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), SHIFT(691), - [5852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), - [5854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 85), - [5856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 85), - [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 61), - [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [5868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 26), - [5870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(265), - [5873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3736), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [5878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 13), SHIFT(691), - [5881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 13), - [5883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 123), - [5885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 123), - [5887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 63), - [5889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 63), - [5891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 64), - [5893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 64), - [5895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 65), - [5897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 65), - [5899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 66), - [5901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 66), - [5903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 67), - [5905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 67), - [5907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(691), - [5910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), - [5912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), - [5914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [5918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 13), - [5920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 82), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [5924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 82), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [5938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 20), - [5940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 20), - [5942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 27), - [5944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 171), - [5946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 171), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [5950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 180), SHIFT(691), - [5953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 180), - [5955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 26), - [5957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 27), - [5959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [5961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [5963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), - [5965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [5969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 43), SHIFT(691), - [5972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 43), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [5976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 104), SHIFT(691), - [5979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 104), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [5983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 13), SHIFT(691), - [5986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 13), - [5988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 70), SHIFT_REPEAT(120), - [5991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 70), SHIFT_REPEAT(120), - [5994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 70), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [5998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 180), SHIFT(691), - [6001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 180), - [6003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(205), - [6006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3789), - [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 83), - [6011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 83), - [6013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(198), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), - [6018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3104), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [6023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 144), SHIFT(691), - [6026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 144), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [6030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 145), SHIFT(691), - [6033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 145), - [6035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 34), - [6037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 34), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [6043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 43), - [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), - [6061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 169), - [6063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 169), - [6065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 170), - [6067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 170), - [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), - [6081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [6085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), - [6087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), - [6089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 92), - [6091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 93), - [6093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), - [6095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), - [6097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 51), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [6101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 51), - [6103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 96), - [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), - [6107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), - [6109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), - [6111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [6113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [6115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 84), - [6117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 84), - [6119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 142), - [6121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 196), - [6123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 196), - [6125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 201), - [6127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 201), - [6129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 202), - [6131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 202), - [6133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_composite_type, 4, 0, 131), - [6135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_composite_type, 4, 0, 131), - [6137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 221), - [6139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 221), - [6141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 96), - [6143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 2, 0, 0), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [6151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [6153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [6155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [6157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [6161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 141), - [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 93), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [6189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(242), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [6194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(246), - [6197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(248), - [6200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(251), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [6207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [6210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 65), - [6212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 65), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [6216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), - [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), - [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), - [6224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 142), - [6226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 92), - [6228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 150), - [6230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 150), - [6232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 228), - [6234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 229), - [6236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 230), - [6238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 231), - [6240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), - [6242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 50), - [6244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 108), - [6246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 108), - [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), - [6258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 168), - [6260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 168), - [6262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 109), - [6264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 109), - [6266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 20), - [6268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 20), - [6270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 20), - [6272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 20), - [6274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 234), - [6276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 235), - [6278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 181), - [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [6284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 236), - [6286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 237), - [6288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [6290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [6296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [6299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [6301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 238), - [6303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [6305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [6307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 239), - [6309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 240), - [6311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 241), - [6313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 19), - [6315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 242), - [6317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 244), - [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [6323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [6325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 56), - [6327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 56), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [6333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 182), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [6337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [6339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), - [6341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [6345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 245), - [6347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 203), - [6349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 203), - [6351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 246), - [6353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 247), - [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), - [6357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 248), - [6359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 249), - [6361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 250), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [6367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 251), - [6369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 132), - [6371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 132), - [6373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3356), - [6376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 222), - [6378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 206), - [6380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 207), - [6382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 223), - [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 224), - [6386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 53), - [6388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 53), - [6390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 208), - [6392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 209), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [6406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(217), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [6411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(221), - [6414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(223), - [6417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(226), - [6420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 54), - [6422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 54), - [6424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 225), - [6426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 210), - [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [6434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 211), - [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), - [6438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 212), - [6440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 213), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), - [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [6448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [6452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [6456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 226), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [6462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 227), - [6464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 141), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), - [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [6498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 55), - [6500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 55), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [6506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [6508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(3417), - [6511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [6513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3444), - [6516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 52), - [6518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 52), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [6528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 110), - [6530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 110), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), - [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4923), - [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4924), - [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), - [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), - [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), - [6558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), - [6562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), - [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), - [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), - [6570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), - [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), - [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), - [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), - [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), - [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129), - [6584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), - [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), - [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [6596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), - [6598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), - [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5100), - [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [6608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), - [6618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), - [6620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5131), - [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5132), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), - [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), - [6638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5135), - [6640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), - [6644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), - [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [6648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), - [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5032), - [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), - [6660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [6668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), - [6670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), - [6672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5138), - [6674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), - [6678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), - [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [6686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), - [6688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), - [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), - [6692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [6698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [6702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [6704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [6708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [6710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), - [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [6718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), - [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [6724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), - [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), - [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), - [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5147), - [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), - [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), - [6748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), - [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), - [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [6768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), - [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), - [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), - [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), - [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), - [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), - [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), - [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), - [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5155), - [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), - [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [6834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), - [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), - [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), - [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [6894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 5), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), - [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [6922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 6), - [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [6928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [6944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [6947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [6951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [6953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [6963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 177), - [6965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3402), - [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), - [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [6984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), - [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), - [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [7030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), - [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), - [7048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3403), - [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), - [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4886), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), - [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), - [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), - [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), - [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [7165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [7179] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [7183] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [7189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [7194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [7202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 177), - [7204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [7206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [7210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [7216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [7218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), - [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [7222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), - [7224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [7232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1, 0, 0), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [7238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [7242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [7264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [7270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 78), - [7272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [7278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [7280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3441), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [7293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [7307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), - [7309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 153), - [7311] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [7315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 47), - [7317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 15), SHIFT(2248), - [7320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [7328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), - [7330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), - [7332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3479), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [7337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), - [7339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4893), - [7342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [7346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [7350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [7354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [7356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [7360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(81), - [7363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(4310), - [7366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 60), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), - [7372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), - [7398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), - [7400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [7404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), - [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), - [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), - [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), - [7412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [7422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 12), - [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [7434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [7438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 15), - [7440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 15), - [7442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [7445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [7448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 1, 0, 18), - [7450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [7454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [7472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [7480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 33), - [7482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [7488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 40), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), - [7494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [7502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(80), - [7505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 60), - [7507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(4488), - [7510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [7516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4339), - [7518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [7530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [7540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [7544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 107), - [7546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 107), - [7548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [7554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [7560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, 0, 152), - [7562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, 0, 152), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [7566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), - [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [7570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [7576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [7584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [7592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [7596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [7598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [7600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), - [7602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(4313), - [7605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [7611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [7613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), - [7615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [7617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [7619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [7621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 112), - [7623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 112), - [7625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [7635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [7637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [7645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), REDUCE(sym_list_body, 1, 0, 0), - [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), - [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [7652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 178), - [7654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 178), - [7656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(3844), - [7659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 179), - [7661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 179), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), - [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), - [7675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 48), - [7677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), - [7679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [7681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [7683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 94), - [7685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 128), - [7687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 129), - [7689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 130), - [7691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 133), - [7693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 134), - [7695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 135), - [7697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 136), - [7699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 140), - [7701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 95), - [7703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 162), - [7705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 163), - [7707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 164), - [7709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 174), - [7711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 6, 0, 192), - [7713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 193), - [7715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 194), - [7717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 195), - [7719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 218), - [7721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 219), - [7723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [7727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 232), - [7729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 233), - [7731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 9, 0, 243), - [7733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [7735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [7737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [7739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [7743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [7747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [7751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 205), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [7757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 103), - [7759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 46), - [7761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 46), - [7763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [7767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 177), - [7769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 103), - [7771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 102), - [7773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 102), - [7775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4428), - [7778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 71), - [7780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), - [7786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 7), - [7788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), - [7790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), - [7792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3476), - [7795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1, 0, 0), - [7797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 77), - [7799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), - [7801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(4490), - [7804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 79), - [7806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 80), - [7808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 81), - [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [7812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 2, 0, 83), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [7816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 2, 0, 83), - [7818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), - [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [7822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [7824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [7826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 89), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), - [7832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), - [7834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), - [7836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [7840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 91), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [7848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), SHIFT_REPEAT(194), - [7851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [7853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 44), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [7857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [7859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [7861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [7863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [7865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), - [7867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), - [7869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), - [7871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [7875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 1), - [7877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), - [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [7881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), - [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [7885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [7887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 1, 0, 166), - [7889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 1, 0, 166), - [7891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4502), - [7894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 1, 0, 167), - [7896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 1, 0, 167), - [7898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 8), - [7900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 8), - [7902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 8), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [7906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 11), - [7908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 11), - [7910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), - [7912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [7914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [7916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 25), - [7918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 25), - [7920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [7922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [7924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, 0, 14), - [7926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 99), - [7928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 100), - [7930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 102), - [7932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 102), - [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 176), - [7936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 177), - [7938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [7940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 47), - [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), - [7944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 48), - [7946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), - [7948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), - [7950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 31), - [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), - [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [7956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), - [7958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 35), - [7960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 36), - [7962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 37), - [7964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 38), - [7966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 41), - [7968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 42), - [7970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(4935), - [7973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1420), - [7976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), - [7978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 4, 0, 143), - [7980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 83), - [7982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 18), - [7984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 71), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [7990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 172), - [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [8000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), - [8002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 137), - [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), - [8008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), - [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [8012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), - [8014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 204), - [8016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 1), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [8028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 8), - [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [8034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 138), - [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), - [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [8044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 94), - [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [8052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 3, 0, 97), - [8054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 1, 0, 90), - [8056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 47), - [8058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 1, 0, 88), - [8060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 48), - [8062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(4666), - [8065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 18), REDUCE(sym_record_body, 1, 0, 18), - [8068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 199), - [8070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 2, 0, 200), - [8072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [8074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [8076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 1, 0, 165), - [8078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), - [8080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [8084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 25), - [8086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 25), - [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [8090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 8), - [8092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 205), - [8094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 1, 0, 88), - [8096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 177), - [8098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 58), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [8104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__all_type, 1, 0, 84), - [8106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 84), - [8108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 103), - [8110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 8), - [8112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 2, 0, 2), - [8114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 83), - [8116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 18), - [8118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 172), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [8124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 175), - [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [8128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 1, 0, 46), - [8130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 143), - [8132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), - [8136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 47), - [8138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 133), - [8140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 80), - [8142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 176), - [8144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 48), - [8146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 99), - [8148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 81), - [8150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 177), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), - [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), - [8158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 122), - [8160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 122), SHIFT_REPEAT(4510), - [8163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 1, 0, 0), - [8165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [8167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 100), - [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), - [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [8175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 3, 0, 0), - [8177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 101), SHIFT_REPEAT(380), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), - [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [8186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 103), - [8188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_body, 3, 0, 220), - [8190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 204), - [8192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 31), - [8194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [8197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [8200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 47), REDUCE(sym_record_body, 2, 0, 47), - [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [8205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [8207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 128), - [8209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 178), - [8211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 178), - [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [8215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), - [8217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [8219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [8221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [8223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [8229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [8231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [8233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [8235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [8237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [8239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), - [8241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4349), - [8243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [8245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 3, 0, 132), - [8247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 3, 0, 132), - [8249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), - [8251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), - [8253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 120), - [8255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [8257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [8259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [8261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4725), - [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), - [8266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), - [8268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), - [8270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 16), - [8272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 16), - [8274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 173), - [8276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 173), - [8278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [8280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [8282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 17), - [8284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 17), - [8286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), - [8288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), - [8290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), - [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), - [8294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4648), - [8297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), - [8299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), - [8301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), - [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [8305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4791), - [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), - [8312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), - [8314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), - [8319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [8321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [8323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 3, 0, 69), - [8325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 3, 0, 69), - [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), - [8329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 179), - [8331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 179), - [8333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 5), - [8335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), - [8337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 6), - [8339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), - [8341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), - [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [8347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 2, 0, 197), - [8349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 2, 0, 197), - [8351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 2, 0, 198), - [8353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 2, 0, 198), - [8355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [8381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [8393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4827), - [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [8415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), - [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [8433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), - [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), - [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), - [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [8459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), - [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [8493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), - [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), - [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [8589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), - [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [8649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), - [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [8667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 83), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [8675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [8679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [8691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [8701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [8715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4391), - [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [8733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), - [8739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [8743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [8751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 83), - [8753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4214), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), - [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [8761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), - [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [8767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [8781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), - [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [8789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), - [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [8797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 88), - [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), - [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [8815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [8817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), - [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), - [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), - [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [8829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), - [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [8833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), - [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), - [8857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), - [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), - [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), - [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), - [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), - [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), - [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), - [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), - [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), - [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), - [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), - [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), - [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), - [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), - [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), - [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), - [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), - [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), - [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), - [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), - [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), - [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), - [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), - [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), - [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), - [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), - [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [8973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), - [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [8985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [8987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [8999] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [9023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [9035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), + [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), + [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), + [3685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), + [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 18), + [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), + [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), + [3693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 47), + [3695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), + [3697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 48), + [3699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), + [3702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 18), REDUCE(sym_record_body, 2, 0, 18), + [3705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), + [3708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 4, 0, 103), + [3710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 47), REDUCE(sym_record_body, 3, 0, 47), + [3713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), + [3715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1492), + [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), + [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 103), + [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 18), + [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 47), + [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 48), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), + [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), + [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), + [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), + [3738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1583), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), + [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), + [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [3891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [4012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3527), + [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [4041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5133), + [4044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5133), + [4047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(4699), + [4050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(1902), + [4053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(1941), + [4056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(4004), + [4059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5163), + [4062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5164), + [4065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5161), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [4080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3505), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), + [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), + [4089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 172), SHIFT_REPEAT(4047), + [4092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 172), SHIFT_REPEAT(3813), + [4095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 172), SHIFT_REPEAT(3845), + [4098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 172), SHIFT_REPEAT(4878), + [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), + [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), + [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), + [4107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [4145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 172), SHIFT_REPEAT(4585), + [4148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 172), SHIFT_REPEAT(4177), + [4151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 172), SHIFT_REPEAT(4179), + [4154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 172), SHIFT_REPEAT(5249), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5094), + [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), + [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), + [4201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1882), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), + [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 83), + [4276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 88), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [4280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3520), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [4295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 88), + [4297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 83), + [4299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 172), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), + [4303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 4, 0, 203), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [4307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 88), + [4309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 172), + [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [4315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2086), + [4318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), + [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), + [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [4332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 88), + [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [4358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 4, 0, 203), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), + [4422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4956), + [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), + [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [4430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 90), + [4432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 137), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 90), + [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 138), + [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [4444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 4, 0, 175), + [4446] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [4463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [4465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(1948), + [4468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 20), + [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 20), + [4472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 18), + [4474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 18), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 18), + [4480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 90), + [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), + [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5117), + [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4977), + [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [4496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 103), + [4498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2114), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), + [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), + [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), + [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), + [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), + [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [4521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2111), + [4524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 47), + [4526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 48), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), + [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), + [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), + [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [4540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2131), + [4543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2212), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [4550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2201), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [4617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2219), + [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [4652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 85), + [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 85), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [4658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 86), + [4660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 86), + [4662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 87), + [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 87), + [4666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 34), + [4668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 34), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [4672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [4674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), + [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4950), + [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), + [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), + [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), + [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), + [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5075), + [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), + [4706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(5219), + [4709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(5042), + [4712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(4843), + [4715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(2410), + [4718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), + [4720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(3829), + [4723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(3858), + [4726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(3622), + [4729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(3622), + [4732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(3765), + [4735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(5043), + [4738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(3974), + [4741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(5198), + [4744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(5199), + [4747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(2359), + [4750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(5197), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [4755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_body, 1, 0, 165), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [4767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 1, 0, 0), + [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [4777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2238), + [4780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), + [4782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 4, 0, 0), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [4786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), + [4788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 3, 0, 0), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [4798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 2, 0, 0), + [4800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2242), + [4803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2252), + [4806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2249), + [4809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 18), + [4811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 48), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [4815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 18), + [4817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 47), + [4819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 18), + [4821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 4, 0, 103), + [4823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2254), + [4826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), + [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4997), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), + [4832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), + [4834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5017), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), + [4850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [4872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3484), + [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [4877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), + [4879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [4897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3532), + [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 2, 0, 83), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [4924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 2, 0, 83), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [4932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 1, 0, 167), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [4936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 1, 0, 167), + [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [4968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 1, 0, 166), + [4970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 1, 0, 166), + [4972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 82), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [4976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 82), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [4986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [4988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [5008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), + [5010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), + [5012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), + [5014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), + [5016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 84), + [5018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__all_type, 1, 0, 84), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [5028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [5030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [5032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 196), + [5034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 196), + [5036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 200), + [5038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 200), + [5040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 201), + [5042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 201), + [5044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_composite_type, 4, 0, 131), + [5046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_composite_type, 4, 0, 131), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [5054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 219), + [5056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 219), + [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [5060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 1, 0, 165), + [5062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 1, 0, 165), + [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 39), + [5066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 39), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [5074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), + [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [5088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [5100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 1, 0, 0), + [5102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 1, 0, 0), + [5104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 39), + [5106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 39), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [5120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), + [5122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), + [5124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 170), + [5126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 170), + [5128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 4), + [5130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 4), + [5132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 2, 0, 198), + [5134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 2, 0, 198), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [5138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [5152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 2, 0, 197), + [5154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 2, 0, 197), + [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [5160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 169), + [5162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 169), + [5164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 3, 0, 132), + [5166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 3, 0, 132), + [5168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3528), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [5175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [5177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [5181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [5197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [5199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [5219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [5221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [5239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [5245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [5247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [5267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [5279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3523), + [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), + [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [5308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 71), + [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [5316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 55), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [5326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 55), + [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [5332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), + [5334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), + [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), + [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [5372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3517), + [5375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [5377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [5385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 72), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [5395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [5397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [5399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 20), + [5401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 20), + [5403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), + [5405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), + [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [5419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3502), + [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [5438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), + [5440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [5450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 52), + [5452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 52), + [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [5464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 55), + [5466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 55), + [5468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 110), + [5470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 110), + [5472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), + [5474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), + [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [5478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 62), + [5480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 62), + [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 52), + [5504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 52), + [5506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 110), + [5508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 110), + [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), + [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [5518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 2), + [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [5524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 186), + [5526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 213), SHIFT(683), + [5529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 213), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [5533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 214), SHIFT(683), + [5536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 214), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [5540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [5542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1317), + [5545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3425), + [5548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1785), + [5551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [5553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 185), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [5565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 68), + [5567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 68), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [5571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 187), + [5573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 146), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [5577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 215), + [5579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 189), + [5581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 188), + [5583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 148), + [5585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 215), SHIFT(683), + [5588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 215), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [5598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 189), SHIFT(683), + [5601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 118), SHIFT(683), + [5604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 118), + [5606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 119), + [5608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 105), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [5612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 106), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [5618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 23), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [5626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 24), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [5634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 23), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [5640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 71), + [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), + [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [5646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 117), + [5648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 118), + [5650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 119), + [5652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 117), SHIFT(683), + [5655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 117), + [5657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 71), + [5659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 183), + [5661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 184), + [5663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 117), + [5665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 118), + [5667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 183), SHIFT(683), + [5670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 184), SHIFT(683), + [5673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), + [5675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 189), + [5677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), SHIFT(683), + [5680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), SHIFT(683), + [5683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), + [5685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), + [5687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 146), + [5689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 119), + [5691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 71), + [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [5695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), SHIFT(683), + [5698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 146), SHIFT(683), + [5701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 24), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [5705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 188), + [5707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 148), + [5709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 188), SHIFT(683), + [5712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 148), SHIFT(683), + [5715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 106), + [5717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 23), + [5719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 24), + [5721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 183), + [5723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 184), + [5725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), + [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [5733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [5745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 119), SHIFT(683), + [5748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 213), + [5750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 214), + [5752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 20), + [5754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 20), + [5756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 71), SHIFT(683), + [5759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 105), + [5761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [5765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 216), + [5767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 216), + [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [5775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(3203), + [5778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), + [5780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4911), + [5783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4811), + [5786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4934), + [5789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4936), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), + [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4936), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [5808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 61), + [5810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(683), + [5813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), + [5815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [5825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [5829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 26), + [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [5847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 27), + [5849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), + [5851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), SHIFT_REPEAT(108), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 191), + [5860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 191), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [5864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 151), + [5866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 151), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [5878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(683), + [5881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), + [5883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [5885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [5889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 2), + [5891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 2), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [5895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [5905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(683), + [5908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), + [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [5916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(683), + [5919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [5923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 13), SHIFT(683), + [5926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 13), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [5930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 180), SHIFT(683), + [5933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 180), + [5935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [5939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [5945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 13), SHIFT(683), + [5948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 13), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [5952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 180), SHIFT(683), + [5955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 180), + [5957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 63), + [5959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 63), + [5961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 20), + [5963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 20), + [5965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 26), + [5967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3849), + [5970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [5972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [5974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), + [5976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), + [5978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 34), + [5980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 34), + [5982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 61), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [5988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 13), + [5990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 61), + [5992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 64), + [5994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 64), + [5996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(260), + [5999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 27), + [6001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), + [6003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), SHIFT_REPEAT(130), + [6006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3154), + [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 131), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [6013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 131), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [6017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 104), SHIFT(683), + [6020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 104), + [6022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 65), + [6024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 65), + [6026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 66), + [6028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 66), + [6030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(231), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [6035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 144), SHIFT(683), + [6038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 144), + [6040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 67), + [6042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 67), + [6044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 26), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [6054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 70), SHIFT_REPEAT(133), + [6057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 70), SHIFT_REPEAT(133), + [6060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 70), + [6062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [6064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [6068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 144), SHIFT(683), + [6071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 144), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [6075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 145), SHIFT(683), + [6078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 145), + [6080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 123), + [6082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 123), + [6084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 102), + [6086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 102), + [6088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [6090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [6092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 102), + [6094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 102), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [6098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 43), SHIFT(683), + [6101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 43), + [6103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 83), + [6105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 83), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [6109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), SHIFT(683), + [6112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), + [6114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), + [6116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), + [6118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 171), + [6120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 171), + [6122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(265), + [6125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(256), + [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [6132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [6142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 104), SHIFT(683), + [6145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 104), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [6149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 43), SHIFT(683), + [6152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 43), + [6154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 27), + [6156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3801), + [6159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 85), + [6161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 85), + [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 92), + [6165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 43), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [6175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), + [6179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 93), + [6181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 96), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [6187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), + [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [6203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 65), + [6205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 65), + [6207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 2, 0, 0), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), + [6215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [6219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 51), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [6223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 51), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [6227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), + [6229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 141), + [6231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 142), + [6233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), + [6235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), + [6248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 93), + [6250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 96), + [6252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 84), + [6254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 84), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [6270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(219), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [6275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(223), + [6278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(225), + [6281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(228), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [6286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [6288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), + [6298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 211), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [6306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), + [6308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 232), + [6310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 19), + [6312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), + [6314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 226), + [6316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 227), + [6318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 212), + [6320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 228), + [6322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [6325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [6327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 229), + [6329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 220), + [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [6335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [6341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), + [6343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), + [6345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 168), + [6347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 168), + [6349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 249), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [6363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(234), + [6366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 210), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [6370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(238), + [6373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(240), + [6376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(252), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [6383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 56), + [6385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 56), + [6387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 239), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [6393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [6395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 142), + [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4482), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [6401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), + [6403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [6405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 247), + [6407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 240), + [6409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 221), + [6411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3425), + [6414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 244), + [6416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 245), + [6418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 246), + [6420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 206), + [6422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 53), + [6424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 53), + [6426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 54), + [6428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 54), + [6430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 234), + [6432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [6436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 242), + [6438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 222), + [6440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 223), + [6442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 248), + [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [6448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 237), + [6450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 50), + [6452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 208), + [6454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 181), + [6456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 233), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [6462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 243), + [6464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 108), + [6466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 108), + [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), + [6470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 109), + [6472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 109), + [6474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 20), + [6476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 20), + [6478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 92), + [6480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [6482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [6486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 202), + [6488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 202), + [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [6494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 141), + [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [6502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [6504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [6506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 132), + [6508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 132), + [6510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 207), + [6512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 205), + [6514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 20), + [6516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 20), + [6518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 209), + [6520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 236), + [6522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 150), + [6524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 150), + [6526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 235), + [6528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 238), + [6530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [6534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), + [6536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 224), + [6538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 225), + [6540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 182), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [6576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [6578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(3473), + [6581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [6593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 52), + [6595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 52), + [6597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 55), + [6599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 55), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [6603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [6613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 110), + [6615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 110), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [6641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), + [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), + [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), + [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), + [6651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), + [6653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), + [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [6689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), + [6691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [6699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), + [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4975), + [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4976), + [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), + [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), + [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), + [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [6723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), + [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [6739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), + [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [6747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), + [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), + [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), + [6757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), + [6759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), + [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [6763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), + [6765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [6767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), + [6769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), + [6773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [6775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [6777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), + [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), + [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), + [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [6791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [6793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), + [6801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), + [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), + [6805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), + [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), + [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), + [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), + [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), + [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [6839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), + [6847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), + [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), + [6851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [6861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [6867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [6869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [6873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), + [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), + [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), + [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [6885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), + [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), + [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), + [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), + [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), + [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), + [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), + [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), + [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), + [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), + [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), + [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), + [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5217), + [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [6935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3511), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [6974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 6), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [7006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 5), + [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), + [7028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [7048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [7054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [7070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [7073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [7083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [7085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [7111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 177), + [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [7119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3529), + [7122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [7124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [7134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), + [7136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [7138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4913), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [7144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [7162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), + [7164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [7174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [7178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [7180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), + [7182] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [7186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [7188] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [7194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), + [7196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [7202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [7204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [7208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), + [7210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [7214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [7216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [7222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [7224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [7227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 177), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [7249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3541), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [7254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), + [7256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [7262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [7272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [7288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [7292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [7304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [7308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [7312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [7314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), + [7316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [7318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), + [7320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), + [7324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [7330] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [7336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [7340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [7368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(81), + [7371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(4376), + [7374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 60), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [7382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), + [7388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 33), + [7390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), + [7392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), + [7394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 78), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [7400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 47), + [7402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 15), SHIFT(2249), + [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), + [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [7411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 15), + [7413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [7415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [7419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 15), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [7423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [7429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [7432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [7434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [7437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [7439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 1, 0, 18), + [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [7451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [7457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [7465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [7469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), + [7471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), + [7481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), + [7493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), + [7495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4863), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [7500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3508), + [7503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1, 0, 0), + [7505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 40), + [7507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 12), + [7509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [7537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [7543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 153), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [7559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [7563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [7567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [7571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [7585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3530), + [7588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [7594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [7598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [7612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [7614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), REDUCE(sym_list_body, 1, 0, 0), + [7617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), + [7619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(4362), + [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [7624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [7632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [7634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), + [7636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(76), + [7639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 60), + [7641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(4614), + [7644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [7646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [7652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [7654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [7656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [7658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), + [7660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [7662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [7664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [7666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [7674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [7678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 107), + [7680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 107), + [7682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [7688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), + [7690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 178), + [7692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 178), + [7694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), + [7696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 179), + [7698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 179), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), + [7706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [7714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, 0, 152), + [7716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, 0, 152), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [7722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [7730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [7732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [7736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [7740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [7746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [7756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [7762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(3856), + [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [7767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 112), + [7769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 112), + [7771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 136), + [7773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [7779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 31), + [7781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [7785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), + [7787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 35), + [7789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 36), + [7791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 37), + [7793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 38), + [7795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 41), + [7797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 42), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [7801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [7803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [7805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [7811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 176), + [7813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [7817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 177), + [7819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 48), + [7821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), SHIFT_REPEAT(194), + [7824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [7826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 47), + [7828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 48), + [7830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [7834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [7838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [7842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(4943), + [7845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1416), + [7848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), + [7850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 46), + [7852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 4, 0, 143), + [7854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), + [7856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 94), + [7858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [7860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(4563), + [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [7867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 71), + [7869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 95), + [7871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 77), + [7873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 79), + [7875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 80), + [7877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 81), + [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [7883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 89), + [7885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), + [7887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), + [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [7891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 91), + [7893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), + [7895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), + [7897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4579), + [7900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [7902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [7908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 46), + [7910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [7914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [7916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [7918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 102), + [7920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 102), + [7922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 128), + [7924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 129), + [7926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 130), + [7928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 133), + [7930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 134), + [7932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 135), + [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 140), + [7936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [7938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [7940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 99), + [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 162), + [7944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 163), + [7946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 164), + [7948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 174), + [7950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [7952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 100), + [7954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [7956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 102), + [7958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 102), + [7960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [7964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 6, 0, 192), + [7966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 193), + [7968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 194), + [7970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 195), + [7972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [7974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4599), + [7977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), + [7979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [7981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [7983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), + [7985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), + [7987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [7989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [7991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 1), + [7993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), + [7995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 204), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [7999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), + [8001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1, 0, 0), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [8005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 103), + [8007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 8), + [8009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 8), + [8011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 8), + [8013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 217), + [8015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 218), + [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 230), + [8019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 231), + [8021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 9, 0, 241), + [8023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 11), + [8025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 11), + [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [8029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), + [8031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 177), + [8033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 103), + [8035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [8037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), + [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), + [8043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3526), + [8046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [8048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [8050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [8052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 7), + [8054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 44), + [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [8058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 25), + [8060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 25), + [8062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [8064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, 0, 14), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [8078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 122), + [8080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 122), SHIFT_REPEAT(4532), + [8083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 99), + [8085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 100), + [8087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 101), SHIFT_REPEAT(385), + [8090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 48), + [8092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 103), + [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [8096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 1, 0, 46), + [8098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 31), + [8100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 1, 0, 88), + [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [8104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 47), + [8106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 3, 0, 0), + [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [8110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 8), + [8112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 143), + [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [8118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 83), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [8126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 176), + [8128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 177), + [8130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [8132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 1, 0, 90), + [8134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 1, 0, 88), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [8140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 71), + [8142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 18), REDUCE(sym_record_body, 1, 0, 18), + [8145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 128), + [8147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 133), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [8155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 1, 0, 0), + [8157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 172), + [8159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 83), + [8161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(4677), + [8164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 18), + [8166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 172), + [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), + [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [8176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 58), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [8188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 80), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), + [8192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 1), + [8194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 81), + [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [8202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), + [8204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), + [8206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), + [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [8210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 204), + [8212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 177), + [8214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 18), + [8216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 8), + [8218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 8), + [8220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 203), + [8222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 175), + [8224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 137), + [8226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [8228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [8230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 25), + [8232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 25), + [8234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 138), + [8236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 2, 0, 2), + [8238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 94), + [8240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [8243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [8246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 103), + [8248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 47), REDUCE(sym_record_body, 2, 0, 47), + [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), + [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [8257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 3, 0, 97), + [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [8263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 203), + [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [8267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), + [8269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 47), + [8271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), + [8273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), + [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [8279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 48), + [8281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4379), + [8283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), + [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), + [8287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 179), + [8289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 179), + [8291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 173), + [8293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 173), + [8295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 16), + [8297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 16), + [8299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 17), + [8301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 17), + [8303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), + [8305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), + [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [8315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [8317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4705), + [8320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [8322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [8324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [8326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), + [8328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), + [8330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), + [8332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [8334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 5), + [8336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 6), + [8338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [8340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 120), + [8342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), + [8344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [8348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [8350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [8352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), + [8354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [8356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [8358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [8361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [8363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [8365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [8367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), + [8369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), + [8371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), + [8373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), + [8375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), + [8377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 3, 0, 69), + [8379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 3, 0, 69), + [8381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), + [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), + [8393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), + [8395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [8397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [8401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5000), + [8403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), + [8405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [8407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 178), + [8409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 178), + [8411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4801), + [8414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4670), + [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [8429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [8433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [8441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [8481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), + [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), + [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [8573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [8599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 88), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [8603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [8617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [8643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [8655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), + [8683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [8701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [8729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [8757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [8771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [8799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), + [8801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 83), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [8813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [8829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [8831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), + [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [8885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5028), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [8889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [8891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [8905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [8913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), + [8915] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [8919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 83), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [8925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), + [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), + [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), + [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), + [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), + [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), + [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), + [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), + [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), + [9079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), + [9081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [9099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4703), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [9105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), + [9107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [9113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [9119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5262), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [9123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [9137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5127), + [9139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), }; enum ts_external_scanner_symbol_identifiers { @@ -254949,10 +256717,10 @@ static const bool ts_external_scanner_states[5][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_raw_string_begin] = true, }, [3] = { - [ts_external_token_raw_string_end] = true, + [ts_external_token_raw_string_content] = true, }, [4] = { - [ts_external_token_raw_string_content] = true, + [ts_external_token_raw_string_end] = true, }, }; diff --git a/test/highlight/comma_after_param_completer.nu b/test/highlight/comma_after_param_completer.nu deleted file mode 100644 index 72e8c57b..00000000 --- a/test/highlight/comma_after_param_completer.nu +++ /dev/null @@ -1,2 +0,0 @@ -def foo [bar: string@baz,] { } -# ^ punctuation.delimiter diff --git a/test/highlight/punctuation.nu b/test/highlight/punctuation.nu new file mode 100644 index 00000000..3dd3dd2a --- /dev/null +++ b/test/highlight/punctuation.nu @@ -0,0 +1,5 @@ +def foo [bar: string@baz,]: nothing -> nothing { } +# ^ punctuation.delimiter +# ^ punctuation.delimiter +# ^ punctuation.delimiter +# ^ punctuation.delimiter diff --git a/test/highlight/verbose_type_signature.nu b/test/highlight/verbose_type_signature.nu index 3a3876e2..17f446ac 100644 --- a/test/highlight/verbose_type_signature.nu +++ b/test/highlight/verbose_type_signature.nu @@ -1,8 +1,9 @@ def foo []: nothing -> list>, description: record, links: list, is_locked: bool, original_language?: string, last_volume?: string, last_chapter?: string, publication_demographic?: string, status?: string, year?: int, content_rating?: string, tags: list>, state?: string, chapter_numbers_reset_on_new_volume: bool, created_at?: datetime, updated_at?: datetime, version?: int, available_translated_languages: list, last_uploaded_chapter?: string, rels: list>>> { # ^ type.enum # ^ variable.parameter - # ^ punctuation.special + # ^ punctuation.delimiter # ^ type + # ^ punctuation.delimiter # ^ type # ^ variable.parameter # ^ type From 02256452e566cc02649a86673dae121d3a0f7a14 Mon Sep 17 00:00:00 2001 From: Mikhail Katychev Date: Wed, 26 Nov 2025 12:55:20 -0600 Subject: [PATCH 3/4] formatting --- grammar.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/grammar.js b/grammar.js index 2a18bf37..c28bb011 100644 --- a/grammar.js +++ b/grammar.js @@ -313,8 +313,7 @@ module.exports = grammar({ ), optional($._collection_annotation), ), - _collection_body: ($) => - seq(repeat1(choice( ',', $._collection_entry, '\n'))), + _collection_body: ($) => seq(repeat1(choice( ',', $._collection_entry, '\n'))), collection_type: ($) => seq( From 32cd5db1b3092636249b2df4a9369201c8b13174 Mon Sep 17 00:00:00 2001 From: Mikhail Katychev Date: Wed, 26 Nov 2025 13:15:13 -0600 Subject: [PATCH 4/4] remove seq --- grammar.js | 2 +- src/grammar.json | 39 +- src/parser.c | 313298 ++++++++++++++++++++++---------------------- 3 files changed, 156760 insertions(+), 156579 deletions(-) diff --git a/grammar.js b/grammar.js index c28bb011..fea12427 100644 --- a/grammar.js +++ b/grammar.js @@ -313,7 +313,7 @@ module.exports = grammar({ ), optional($._collection_annotation), ), - _collection_body: ($) => seq(repeat1(choice( ',', $._collection_entry, '\n'))), + _collection_body: ($) => repeat1(choice( ',', $._collection_entry, '\n')), collection_type: ($) => seq( diff --git a/src/grammar.json b/src/grammar.json index 8a5bb73b..5ba947a1 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -3002,29 +3002,24 @@ ] }, "_collection_body": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_collection_entry" - }, - { - "type": "STRING", - "value": "\n" - } - ] + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_collection_entry" + }, + { + "type": "STRING", + "value": "\n" } - } - ] + ] + } }, "collection_type": { "type": "SEQ", diff --git a/src/parser.c b/src/parser.c index 5dc6f540..1181e16d 100644 --- a/src/parser.c +++ b/src/parser.c @@ -15,9 +15,9 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 5263 +#define STATE_COUNT 5262 #define LARGE_STATE_COUNT 1262 -#define SYMBOL_COUNT 484 +#define SYMBOL_COUNT 483 #define ALIAS_COUNT 3 #define TOKEN_COUNT 273 #define EXTERNAL_TOKEN_COUNT 3 @@ -353,7 +353,7 @@ enum ts_symbol_identifiers { sym_flat_type = 323, sym__collection_annotation = 324, sym__collection_entry = 325, - sym__collection_body = 326, + aux_sym__collection_body = 326, sym_collection_type = 327, sym_list_type = 328, sym__composite_argument_body = 329, @@ -486,34 +486,33 @@ enum ts_symbol_identifiers { aux_sym_parameter_parens_repeat1 = 456, aux_sym_parameter_repeat1 = 457, aux_sym_parameter_repeat2 = 458, - aux_sym__collection_body_repeat1 = 459, - aux_sym__composite_argument_body_repeat1 = 460, - aux_sym__ctrl_match_body_repeat1 = 461, - aux_sym_match_pattern_repeat1 = 462, - aux_sym__match_pattern_list_body_repeat1 = 463, - aux_sym__match_pattern_record_body_repeat1 = 464, - aux_sym_pipe_element_repeat1 = 465, - aux_sym_pipe_element_repeat2 = 466, - aux_sym_pipe_element_parenthesized_repeat1 = 467, - aux_sym_pipe_element_parenthesized_repeat2 = 468, - aux_sym__command_list_body_repeat1 = 469, - aux_sym__where_predicate_lhs_repeat1 = 470, - aux_sym__parenthesized_body_repeat1 = 471, - aux_sym__parenthesized_body_repeat2 = 472, - aux_sym_val_binary_repeat1 = 473, - aux_sym_string_content_repeat1 = 474, - aux_sym__inter_single_quotes_repeat1 = 475, - aux_sym__inter_double_quotes_repeat1 = 476, - aux_sym_list_body_repeat1 = 477, - aux_sym_record_body_repeat1 = 478, - aux_sym__table_body_repeat1 = 479, - aux_sym__command_parenthesized_repeat1 = 480, - aux_sym__unquoted_with_expr_repeat1 = 481, - aux_sym__unquoted_in_list_with_expr_repeat1 = 482, - aux_sym__unquoted_in_record_with_expr_repeat1 = 483, - anon_alias_sym__head = 484, - anon_alias_sym__prefix = 485, - anon_alias_sym__unit = 486, + aux_sym__composite_argument_body_repeat1 = 459, + aux_sym__ctrl_match_body_repeat1 = 460, + aux_sym_match_pattern_repeat1 = 461, + aux_sym__match_pattern_list_body_repeat1 = 462, + aux_sym__match_pattern_record_body_repeat1 = 463, + aux_sym_pipe_element_repeat1 = 464, + aux_sym_pipe_element_repeat2 = 465, + aux_sym_pipe_element_parenthesized_repeat1 = 466, + aux_sym_pipe_element_parenthesized_repeat2 = 467, + aux_sym__command_list_body_repeat1 = 468, + aux_sym__where_predicate_lhs_repeat1 = 469, + aux_sym__parenthesized_body_repeat1 = 470, + aux_sym__parenthesized_body_repeat2 = 471, + aux_sym_val_binary_repeat1 = 472, + aux_sym_string_content_repeat1 = 473, + aux_sym__inter_single_quotes_repeat1 = 474, + aux_sym__inter_double_quotes_repeat1 = 475, + aux_sym_list_body_repeat1 = 476, + aux_sym_record_body_repeat1 = 477, + aux_sym__table_body_repeat1 = 478, + aux_sym__command_parenthesized_repeat1 = 479, + aux_sym__unquoted_with_expr_repeat1 = 480, + aux_sym__unquoted_in_list_with_expr_repeat1 = 481, + aux_sym__unquoted_in_record_with_expr_repeat1 = 482, + anon_alias_sym__head = 483, + anon_alias_sym__prefix = 484, + anon_alias_sym__unit = 485, }; static const char * const ts_symbol_names[] = { @@ -843,7 +842,7 @@ static const char * const ts_symbol_names[] = { [sym_flat_type] = "flat_type", [sym__collection_annotation] = "_collection_annotation", [sym__collection_entry] = "_collection_entry", - [sym__collection_body] = "_collection_body", + [aux_sym__collection_body] = "_collection_body", [sym_collection_type] = "collection_type", [sym_list_type] = "list_type", [sym__composite_argument_body] = "_composite_argument_body", @@ -976,7 +975,6 @@ static const char * const ts_symbol_names[] = { [aux_sym_parameter_parens_repeat1] = "parameter_parens_repeat1", [aux_sym_parameter_repeat1] = "parameter_repeat1", [aux_sym_parameter_repeat2] = "parameter_repeat2", - [aux_sym__collection_body_repeat1] = "_collection_body_repeat1", [aux_sym__composite_argument_body_repeat1] = "_composite_argument_body_repeat1", [aux_sym__ctrl_match_body_repeat1] = "_ctrl_match_body_repeat1", [aux_sym_match_pattern_repeat1] = "match_pattern_repeat1", @@ -1333,7 +1331,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_flat_type] = sym_flat_type, [sym__collection_annotation] = sym__collection_annotation, [sym__collection_entry] = sym__collection_entry, - [sym__collection_body] = sym__collection_body, + [aux_sym__collection_body] = aux_sym__collection_body, [sym_collection_type] = sym_collection_type, [sym_list_type] = sym_list_type, [sym__composite_argument_body] = sym__composite_argument_body, @@ -1466,7 +1464,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_parameter_parens_repeat1] = aux_sym_parameter_parens_repeat1, [aux_sym_parameter_repeat1] = aux_sym_parameter_repeat1, [aux_sym_parameter_repeat2] = aux_sym_parameter_repeat2, - [aux_sym__collection_body_repeat1] = aux_sym__collection_body_repeat1, [aux_sym__composite_argument_body_repeat1] = aux_sym__composite_argument_body_repeat1, [aux_sym__ctrl_match_body_repeat1] = aux_sym__ctrl_match_body_repeat1, [aux_sym_match_pattern_repeat1] = aux_sym_match_pattern_repeat1, @@ -2801,9 +2798,9 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym__collection_body] = { + [aux_sym__collection_body] = { .visible = false, - .named = true, + .named = false, }, [sym_collection_type] = { .visible = true, @@ -3333,10 +3330,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym__collection_body_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym__composite_argument_body_repeat1] = { .visible = false, .named = false, @@ -3775,9 +3768,9 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [194] = {.index = 420, .length = 5}, [195] = {.index = 425, .length = 4}, [196] = {.index = 429, .length = 3}, - [197] = {.index = 432, .length = 3}, - [198] = {.index = 432, .length = 3}, - [199] = {.index = 435, .length = 6}, + [197] = {.index = 432, .length = 6}, + [198] = {.index = 438, .length = 3}, + [199] = {.index = 438, .length = 3}, [200] = {.index = 441, .length = 2}, [201] = {.index = 443, .length = 1}, [202] = {.index = 444, .length = 2}, @@ -4430,16 +4423,16 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_key, 2, .inherited = true}, {field_type, 2, .inherited = true}, [432] = - {field_completion, 1, .inherited = true}, - {field_key, 0}, - {field_type, 1, .inherited = true}, - [435] = {field_completion, 0, .inherited = true}, {field_completion, 1, .inherited = true}, {field_key, 0, .inherited = true}, {field_key, 1, .inherited = true}, {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, + [438] = + {field_completion, 1, .inherited = true}, + {field_key, 0}, + {field_type, 1, .inherited = true}, [441] = {field_inner, 2}, {field_type, 2, .inherited = true}, @@ -4767,7 +4760,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [190] = { [4] = sym_val_string, }, - [198] = { + [199] = { [0] = sym_identifier, }, }; @@ -4811,28 +4804,28 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2] = 2, [3] = 3, [4] = 4, - [5] = 3, - [6] = 3, - [7] = 4, - [8] = 3, - [9] = 4, - [10] = 3, - [11] = 3, - [12] = 3, - [13] = 3, - [14] = 3, - [15] = 3, + [5] = 4, + [6] = 4, + [7] = 3, + [8] = 4, + [9] = 3, + [10] = 4, + [11] = 4, + [12] = 4, + [13] = 4, + [14] = 4, + [15] = 4, [16] = 16, [17] = 17, - [18] = 17, - [19] = 19, - [20] = 19, - [21] = 16, - [22] = 17, - [23] = 17, - [24] = 17, - [25] = 17, - [26] = 17, + [18] = 18, + [19] = 18, + [20] = 16, + [21] = 17, + [22] = 18, + [23] = 18, + [24] = 18, + [25] = 18, + [26] = 18, [27] = 27, [28] = 27, [29] = 27, @@ -4842,170 +4835,170 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [33] = 27, [34] = 27, [35] = 35, - [36] = 36, - [37] = 35, - [38] = 36, + [36] = 35, + [37] = 37, + [38] = 35, [39] = 39, [40] = 40, - [41] = 41, - [42] = 36, - [43] = 39, - [44] = 44, - [45] = 36, - [46] = 44, - [47] = 40, - [48] = 41, - [49] = 35, - [50] = 36, - [51] = 40, - [52] = 41, - [53] = 35, - [54] = 40, - [55] = 36, - [56] = 41, - [57] = 40, - [58] = 41, - [59] = 35, - [60] = 60, - [61] = 36, - [62] = 40, - [63] = 41, - [64] = 35, - [65] = 40, - [66] = 41, - [67] = 35, - [68] = 41, - [69] = 41, - [70] = 41, - [71] = 41, - [72] = 36, - [73] = 44, + [41] = 35, + [42] = 42, + [43] = 43, + [44] = 39, + [45] = 45, + [46] = 40, + [47] = 35, + [48] = 40, + [49] = 42, + [50] = 43, + [51] = 45, + [52] = 42, + [53] = 43, + [54] = 45, + [55] = 45, + [56] = 42, + [57] = 35, + [58] = 43, + [59] = 42, + [60] = 43, + [61] = 45, + [62] = 35, + [63] = 42, + [64] = 43, + [65] = 45, + [66] = 42, + [67] = 43, + [68] = 45, + [69] = 43, + [70] = 43, + [71] = 43, + [72] = 43, + [73] = 35, [74] = 74, [75] = 75, - [76] = 76, + [76] = 75, [77] = 77, - [78] = 77, - [79] = 74, - [80] = 74, - [81] = 76, + [78] = 78, + [79] = 77, + [80] = 78, + [81] = 75, [82] = 82, [83] = 83, - [84] = 83, - [85] = 85, + [84] = 84, + [85] = 83, [86] = 86, - [87] = 82, - [88] = 83, - [89] = 82, - [90] = 90, - [91] = 91, + [87] = 87, + [88] = 88, + [89] = 86, + [90] = 83, + [91] = 86, [92] = 92, [93] = 93, - [94] = 92, - [95] = 93, + [94] = 94, + [95] = 95, [96] = 92, - [97] = 97, + [97] = 93, [98] = 93, - [99] = 99, + [99] = 92, [100] = 92, [101] = 93, - [102] = 93, - [103] = 97, - [104] = 99, - [105] = 99, + [102] = 94, + [103] = 95, + [104] = 94, + [105] = 105, [106] = 106, [107] = 107, - [108] = 108, - [109] = 109, - [110] = 97, - [111] = 97, + [108] = 95, + [109] = 94, + [110] = 92, + [111] = 93, [112] = 112, - [113] = 113, - [114] = 99, - [115] = 92, - [116] = 92, - [117] = 97, - [118] = 112, - [119] = 99, - [120] = 106, - [121] = 106, - [122] = 113, - [123] = 112, - [124] = 109, - [125] = 109, - [126] = 113, - [127] = 106, - [128] = 112, - [129] = 109, - [130] = 108, - [131] = 93, - [132] = 113, - [133] = 133, - [134] = 97, - [135] = 113, - [136] = 112, - [137] = 109, - [138] = 99, - [139] = 106, - [140] = 112, - [141] = 109, - [142] = 106, - [143] = 113, + [113] = 95, + [114] = 114, + [115] = 115, + [116] = 107, + [117] = 117, + [118] = 106, + [119] = 107, + [120] = 92, + [121] = 95, + [122] = 93, + [123] = 106, + [124] = 105, + [125] = 94, + [126] = 105, + [127] = 114, + [128] = 107, + [129] = 114, + [130] = 106, + [131] = 105, + [132] = 115, + [133] = 114, + [134] = 94, + [135] = 95, + [136] = 105, + [137] = 107, + [138] = 106, + [139] = 114, + [140] = 107, + [141] = 106, + [142] = 114, + [143] = 105, [144] = 144, [145] = 145, - [146] = 145, + [146] = 144, [147] = 145, - [148] = 145, - [149] = 144, + [148] = 144, + [149] = 145, [150] = 144, - [151] = 144, + [151] = 145, [152] = 152, [153] = 153, [154] = 154, - [155] = 152, - [156] = 144, + [155] = 145, + [156] = 156, [157] = 157, [158] = 158, [159] = 159, [160] = 160, - [161] = 161, - [162] = 145, - [163] = 154, - [164] = 164, - [165] = 165, - [166] = 154, - [167] = 153, - [168] = 153, - [169] = 157, - [170] = 158, - [171] = 154, - [172] = 164, - [173] = 165, - [174] = 159, - [175] = 153, - [176] = 164, + [161] = 159, + [162] = 156, + [163] = 157, + [164] = 158, + [165] = 159, + [166] = 160, + [167] = 157, + [168] = 152, + [169] = 156, + [170] = 170, + [171] = 144, + [172] = 160, + [173] = 158, + [174] = 157, + [175] = 158, + [176] = 159, [177] = 160, - [178] = 165, - [179] = 161, - [180] = 164, - [181] = 165, - [182] = 159, - [183] = 159, + [178] = 153, + [179] = 154, + [180] = 180, + [181] = 180, + [182] = 156, + [183] = 170, [184] = 184, [185] = 185, [186] = 186, - [187] = 186, + [187] = 185, [188] = 186, - [189] = 144, + [189] = 185, [190] = 190, - [191] = 186, - [192] = 190, - [193] = 145, - [194] = 108, + [191] = 145, + [192] = 144, + [193] = 185, + [194] = 115, [195] = 195, [196] = 196, [197] = 197, - [198] = 198, - [199] = 199, + [198] = 196, + [199] = 197, [200] = 200, [201] = 201, [202] = 202, @@ -5014,156 +5007,156 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [205] = 205, [206] = 206, [207] = 207, - [208] = 196, - [209] = 197, - [210] = 198, - [211] = 199, - [212] = 200, - [213] = 204, - [214] = 205, - [215] = 206, - [216] = 207, - [217] = 195, + [208] = 208, + [209] = 209, + [210] = 210, + [211] = 211, + [212] = 212, + [213] = 213, + [214] = 214, + [215] = 215, + [216] = 216, + [217] = 217, [218] = 218, [219] = 219, [220] = 220, - [221] = 221, - [222] = 222, - [223] = 223, - [224] = 224, - [225] = 225, - [226] = 226, - [227] = 203, - [228] = 228, - [229] = 229, - [230] = 201, - [231] = 228, - [232] = 195, - [233] = 218, - [234] = 219, - [235] = 220, - [236] = 221, - [237] = 222, - [238] = 223, - [239] = 224, - [240] = 225, - [241] = 226, - [242] = 203, - [243] = 196, - [244] = 197, - [245] = 198, - [246] = 199, - [247] = 200, - [248] = 204, - [249] = 205, - [250] = 206, - [251] = 207, - [252] = 228, - [253] = 229, - [254] = 201, - [255] = 218, - [256] = 219, - [257] = 220, - [258] = 221, - [259] = 222, - [260] = 223, - [261] = 202, - [262] = 229, - [263] = 226, - [264] = 224, - [265] = 225, - [266] = 202, - [267] = 92, + [221] = 200, + [222] = 201, + [223] = 202, + [224] = 203, + [225] = 204, + [226] = 205, + [227] = 206, + [228] = 207, + [229] = 208, + [230] = 209, + [231] = 210, + [232] = 196, + [233] = 200, + [234] = 201, + [235] = 202, + [236] = 203, + [237] = 204, + [238] = 205, + [239] = 206, + [240] = 207, + [241] = 208, + [242] = 209, + [243] = 210, + [244] = 211, + [245] = 195, + [246] = 212, + [247] = 213, + [248] = 214, + [249] = 215, + [250] = 216, + [251] = 217, + [252] = 218, + [253] = 219, + [254] = 220, + [255] = 211, + [256] = 195, + [257] = 212, + [258] = 213, + [259] = 214, + [260] = 215, + [261] = 216, + [262] = 217, + [263] = 218, + [264] = 219, + [265] = 220, + [266] = 197, + [267] = 93, [268] = 93, [269] = 92, - [270] = 92, - [271] = 93, - [272] = 93, - [273] = 99, - [274] = 97, - [275] = 275, - [276] = 99, - [277] = 92, - [278] = 278, - [279] = 93, - [280] = 275, - [281] = 278, - [282] = 278, - [283] = 275, - [284] = 278, - [285] = 278, - [286] = 286, - [287] = 99, - [288] = 275, - [289] = 286, - [290] = 275, - [291] = 286, - [292] = 97, - [293] = 97, + [270] = 93, + [271] = 92, + [272] = 92, + [273] = 95, + [274] = 274, + [275] = 95, + [276] = 276, + [277] = 277, + [278] = 274, + [279] = 274, + [280] = 95, + [281] = 277, + [282] = 277, + [283] = 276, + [284] = 277, + [285] = 94, + [286] = 276, + [287] = 94, + [288] = 276, + [289] = 94, + [290] = 277, + [291] = 92, + [292] = 93, + [293] = 276, [294] = 106, - [295] = 113, - [296] = 92, - [297] = 93, - [298] = 106, - [299] = 112, - [300] = 109, - [301] = 112, - [302] = 97, - [303] = 112, - [304] = 113, - [305] = 106, - [306] = 109, - [307] = 99, - [308] = 113, - [309] = 109, - [310] = 99, - [311] = 97, + [295] = 107, + [296] = 106, + [297] = 114, + [298] = 94, + [299] = 107, + [300] = 105, + [301] = 114, + [302] = 106, + [303] = 107, + [304] = 92, + [305] = 93, + [306] = 114, + [307] = 105, + [308] = 95, + [309] = 105, + [310] = 95, + [311] = 107, [312] = 106, - [313] = 112, - [314] = 113, - [315] = 109, - [316] = 106, - [317] = 112, - [318] = 109, - [319] = 113, + [313] = 105, + [314] = 114, + [315] = 94, + [316] = 114, + [317] = 106, + [318] = 107, + [319] = 105, [320] = 320, [321] = 320, [322] = 320, - [323] = 144, + [323] = 145, [324] = 145, [325] = 145, - [326] = 145, + [326] = 144, [327] = 144, [328] = 144, [329] = 144, [330] = 145, - [331] = 145, - [332] = 144, + [331] = 144, + [332] = 145, [333] = 333, - [334] = 334, + [334] = 333, [335] = 335, - [336] = 334, - [337] = 333, + [336] = 336, + [337] = 335, [338] = 338, [339] = 339, - [340] = 340, + [340] = 339, [341] = 341, - [342] = 339, + [342] = 342, [343] = 339, [344] = 344, [345] = 345, [346] = 346, [347] = 347, [348] = 348, - [349] = 344, - [350] = 345, - [351] = 338, + [349] = 349, + [350] = 338, + [351] = 345, [352] = 352, [353] = 353, [354] = 339, - [355] = 346, - [356] = 347, - [357] = 348, + [355] = 347, + [356] = 348, + [357] = 349, [358] = 339, [359] = 339, [360] = 339, @@ -5171,158 +5164,158 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [362] = 339, [363] = 339, [364] = 339, - [365] = 340, - [366] = 341, - [367] = 367, - [368] = 368, + [365] = 341, + [366] = 342, + [367] = 344, + [368] = 335, [369] = 369, [370] = 333, - [371] = 368, - [372] = 334, - [373] = 335, + [371] = 371, + [372] = 336, + [373] = 369, [374] = 374, - [375] = 353, + [375] = 375, [376] = 376, - [377] = 377, - [378] = 352, - [379] = 379, - [380] = 344, + [377] = 352, + [378] = 378, + [379] = 344, + [380] = 338, [381] = 345, - [382] = 338, - [383] = 346, - [384] = 347, - [385] = 385, - [386] = 340, - [387] = 341, - [388] = 376, - [389] = 348, - [390] = 385, - [391] = 391, - [392] = 385, - [393] = 393, - [394] = 367, - [395] = 385, - [396] = 385, + [382] = 347, + [383] = 348, + [384] = 349, + [385] = 376, + [386] = 375, + [387] = 387, + [388] = 375, + [389] = 353, + [390] = 390, + [391] = 375, + [392] = 341, + [393] = 342, + [394] = 375, + [395] = 395, + [396] = 346, [397] = 376, [398] = 398, [399] = 399, - [400] = 400, - [401] = 401, + [400] = 374, + [401] = 333, [402] = 402, [403] = 403, [404] = 404, - [405] = 405, + [405] = 378, [406] = 406, - [407] = 374, - [408] = 334, - [409] = 368, - [410] = 379, + [407] = 336, + [408] = 408, + [409] = 409, + [410] = 410, [411] = 411, - [412] = 335, - [413] = 348, - [414] = 377, - [415] = 391, - [416] = 340, - [417] = 345, - [418] = 418, - [419] = 338, - [420] = 335, - [421] = 411, - [422] = 344, - [423] = 341, - [424] = 333, - [425] = 346, - [426] = 347, - [427] = 93, - [428] = 352, - [429] = 367, - [430] = 353, - [431] = 399, - [432] = 92, - [433] = 400, + [412] = 369, + [413] = 345, + [414] = 344, + [415] = 403, + [416] = 335, + [417] = 390, + [418] = 347, + [419] = 348, + [420] = 349, + [421] = 341, + [422] = 352, + [423] = 353, + [424] = 399, + [425] = 92, + [426] = 93, + [427] = 346, + [428] = 336, + [429] = 338, + [430] = 395, + [431] = 342, + [432] = 432, + [433] = 369, [434] = 374, - [435] = 367, - [436] = 353, - [437] = 404, - [438] = 406, + [435] = 404, + [436] = 436, + [437] = 93, + [438] = 410, [439] = 439, - [440] = 440, - [441] = 352, - [442] = 93, - [443] = 443, - [444] = 368, - [445] = 97, - [446] = 446, - [447] = 440, - [448] = 92, - [449] = 99, - [450] = 450, - [451] = 440, - [452] = 401, - [453] = 402, - [454] = 398, + [440] = 406, + [441] = 408, + [442] = 409, + [443] = 398, + [444] = 439, + [445] = 352, + [446] = 346, + [447] = 447, + [448] = 448, + [449] = 449, + [450] = 95, + [451] = 92, + [452] = 439, + [453] = 94, + [454] = 353, [455] = 455, [456] = 456, [457] = 457, [458] = 458, - [459] = 459, + [459] = 436, [460] = 460, - [461] = 97, + [461] = 456, [462] = 462, - [463] = 99, - [464] = 464, - [465] = 456, - [466] = 439, - [467] = 112, - [468] = 456, - [469] = 109, - [470] = 113, - [471] = 459, - [472] = 450, - [473] = 440, - [474] = 459, + [463] = 463, + [464] = 458, + [465] = 448, + [466] = 94, + [467] = 458, + [468] = 105, + [469] = 106, + [470] = 107, + [471] = 456, + [472] = 95, + [473] = 439, + [474] = 474, [475] = 475, [476] = 476, - [477] = 109, + [477] = 345, [478] = 478, [479] = 479, - [480] = 346, - [481] = 403, - [482] = 347, - [483] = 483, - [484] = 345, + [480] = 480, + [481] = 347, + [482] = 105, + [483] = 348, + [484] = 338, [485] = 485, - [486] = 338, - [487] = 334, + [486] = 411, + [487] = 106, [488] = 488, - [489] = 113, - [490] = 344, - [491] = 491, - [492] = 112, - [493] = 374, + [489] = 402, + [490] = 333, + [491] = 107, + [492] = 492, + [493] = 493, [494] = 494, - [495] = 348, - [496] = 443, - [497] = 446, - [498] = 498, - [499] = 499, - [500] = 405, - [501] = 501, - [502] = 333, + [495] = 335, + [496] = 496, + [497] = 497, + [498] = 449, + [499] = 374, + [500] = 349, + [501] = 344, + [502] = 447, [503] = 503, [504] = 504, [505] = 505, [506] = 506, [507] = 507, [508] = 508, - [509] = 509, + [509] = 463, [510] = 510, [511] = 511, [512] = 512, - [513] = 503, + [513] = 513, [514] = 514, - [515] = 455, - [516] = 341, + [515] = 515, + [516] = 516, [517] = 517, [518] = 518, [519] = 519, @@ -5331,9 +5324,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [522] = 522, [523] = 523, [524] = 524, - [525] = 525, + [525] = 341, [526] = 526, - [527] = 527, + [527] = 474, [528] = 528, [529] = 529, [530] = 530, @@ -5351,189 +5344,189 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [542] = 542, [543] = 543, [544] = 544, - [545] = 545, - [546] = 464, - [547] = 340, - [548] = 548, - [549] = 549, - [550] = 550, - [551] = 551, - [552] = 552, - [553] = 553, - [554] = 554, - [555] = 555, - [556] = 556, - [557] = 557, - [558] = 558, - [559] = 504, - [560] = 505, - [561] = 506, - [562] = 507, - [563] = 508, - [564] = 509, - [565] = 510, - [566] = 511, - [567] = 512, - [568] = 503, - [569] = 514, + [545] = 342, + [546] = 546, + [547] = 531, + [548] = 532, + [549] = 533, + [550] = 534, + [551] = 535, + [552] = 536, + [553] = 537, + [554] = 538, + [555] = 503, + [556] = 539, + [557] = 540, + [558] = 541, + [559] = 542, + [560] = 560, + [561] = 561, + [562] = 562, + [563] = 563, + [564] = 564, + [565] = 565, + [566] = 566, + [567] = 567, + [568] = 568, + [569] = 569, [570] = 570, - [571] = 518, - [572] = 519, - [573] = 520, - [574] = 521, - [575] = 522, - [576] = 523, - [577] = 524, - [578] = 525, - [579] = 558, - [580] = 527, - [581] = 528, - [582] = 529, - [583] = 530, - [584] = 531, - [585] = 532, - [586] = 533, - [587] = 534, - [588] = 535, - [589] = 536, - [590] = 537, - [591] = 538, - [592] = 539, - [593] = 540, - [594] = 541, - [595] = 542, - [596] = 543, - [597] = 597, - [598] = 550, - [599] = 551, - [600] = 552, - [601] = 553, - [602] = 554, - [603] = 555, - [604] = 556, - [605] = 570, - [606] = 597, - [607] = 607, - [608] = 608, - [609] = 609, - [610] = 610, - [611] = 607, - [612] = 608, - [613] = 609, - [614] = 610, - [615] = 615, - [616] = 557, - [617] = 558, - [618] = 504, - [619] = 505, - [620] = 506, - [621] = 507, - [622] = 508, - [623] = 509, - [624] = 510, - [625] = 511, - [626] = 512, - [627] = 514, - [628] = 518, - [629] = 519, - [630] = 520, - [631] = 521, - [632] = 522, - [633] = 523, - [634] = 524, - [635] = 525, - [636] = 526, - [637] = 527, - [638] = 528, - [639] = 529, - [640] = 530, - [641] = 531, - [642] = 532, - [643] = 533, - [644] = 534, - [645] = 535, - [646] = 536, - [647] = 537, - [648] = 538, - [649] = 539, - [650] = 540, - [651] = 541, - [652] = 542, - [653] = 543, - [654] = 550, - [655] = 551, - [656] = 552, - [657] = 553, - [658] = 554, - [659] = 555, - [660] = 556, + [571] = 571, + [572] = 572, + [573] = 573, + [574] = 574, + [575] = 575, + [576] = 576, + [577] = 577, + [578] = 578, + [579] = 579, + [580] = 578, + [581] = 504, + [582] = 505, + [583] = 506, + [584] = 507, + [585] = 508, + [586] = 512, + [587] = 513, + [588] = 514, + [589] = 515, + [590] = 516, + [591] = 517, + [592] = 518, + [593] = 519, + [594] = 520, + [595] = 521, + [596] = 522, + [597] = 523, + [598] = 524, + [599] = 531, + [600] = 532, + [601] = 533, + [602] = 534, + [603] = 535, + [604] = 536, + [605] = 537, + [606] = 538, + [607] = 503, + [608] = 539, + [609] = 540, + [610] = 541, + [611] = 542, + [612] = 560, + [613] = 561, + [614] = 562, + [615] = 563, + [616] = 564, + [617] = 565, + [618] = 566, + [619] = 567, + [620] = 568, + [621] = 569, + [622] = 570, + [623] = 571, + [624] = 572, + [625] = 573, + [626] = 574, + [627] = 575, + [628] = 576, + [629] = 577, + [630] = 511, + [631] = 579, + [632] = 578, + [633] = 504, + [634] = 505, + [635] = 506, + [636] = 507, + [637] = 508, + [638] = 512, + [639] = 513, + [640] = 514, + [641] = 515, + [642] = 516, + [643] = 517, + [644] = 518, + [645] = 519, + [646] = 520, + [647] = 521, + [648] = 522, + [649] = 523, + [650] = 524, + [651] = 560, + [652] = 561, + [653] = 562, + [654] = 563, + [655] = 564, + [656] = 565, + [657] = 566, + [658] = 567, + [659] = 568, + [660] = 569, [661] = 570, - [662] = 597, - [663] = 607, - [664] = 608, - [665] = 609, - [666] = 610, - [667] = 667, - [668] = 668, - [669] = 557, - [670] = 526, + [662] = 579, + [663] = 571, + [664] = 572, + [665] = 573, + [666] = 574, + [667] = 575, + [668] = 576, + [669] = 577, + [670] = 511, [671] = 671, [672] = 672, [673] = 673, [674] = 674, - [675] = 544, + [675] = 675, [676] = 676, [677] = 677, - [678] = 545, + [678] = 678, [679] = 679, [680] = 680, [681] = 681, [682] = 682, [683] = 683, [684] = 684, - [685] = 485, + [685] = 685, [686] = 686, - [687] = 368, - [688] = 335, - [689] = 689, - [690] = 443, + [687] = 543, + [688] = 544, + [689] = 475, + [690] = 690, [691] = 691, [692] = 692, [693] = 693, [694] = 694, [695] = 695, - [696] = 478, + [696] = 696, [697] = 697, - [698] = 698, + [698] = 480, [699] = 699, - [700] = 700, - [701] = 701, + [700] = 369, + [701] = 336, [702] = 702, [703] = 703, [704] = 704, [705] = 705, - [706] = 475, - [707] = 707, - [708] = 708, + [706] = 706, + [707] = 488, + [708] = 447, [709] = 709, - [710] = 446, + [710] = 449, [711] = 711, - [712] = 367, + [712] = 712, [713] = 713, [714] = 714, [715] = 715, [716] = 716, [717] = 717, - [718] = 476, + [718] = 718, [719] = 719, [720] = 720, [721] = 721, [722] = 722, [723] = 723, [724] = 724, - [725] = 725, - [726] = 726, - [727] = 727, + [725] = 494, + [726] = 449, + [727] = 496, [728] = 728, [729] = 729, [730] = 730, @@ -5541,135 +5534,135 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [732] = 732, [733] = 733, [734] = 734, - [735] = 443, + [735] = 735, [736] = 736, [737] = 737, - [738] = 738, + [738] = 479, [739] = 739, - [740] = 713, + [740] = 740, [741] = 741, - [742] = 714, + [742] = 447, [743] = 743, - [744] = 716, - [745] = 745, - [746] = 717, - [747] = 747, - [748] = 719, - [749] = 720, - [750] = 750, - [751] = 751, - [752] = 726, - [753] = 727, - [754] = 352, - [755] = 446, - [756] = 729, - [757] = 731, - [758] = 733, - [759] = 736, - [760] = 499, + [744] = 352, + [745] = 476, + [746] = 478, + [747] = 449, + [748] = 748, + [749] = 749, + [750] = 474, + [751] = 463, + [752] = 752, + [753] = 753, + [754] = 754, + [755] = 755, + [756] = 756, + [757] = 757, + [758] = 758, + [759] = 759, + [760] = 760, [761] = 761, [762] = 762, - [763] = 763, - [764] = 764, - [765] = 765, - [766] = 443, + [763] = 713, + [764] = 714, + [765] = 715, + [766] = 716, [767] = 767, [768] = 768, - [769] = 455, + [769] = 769, [770] = 770, - [771] = 464, + [771] = 771, [772] = 772, [773] = 773, [774] = 774, - [775] = 775, - [776] = 776, - [777] = 777, - [778] = 778, - [779] = 779, - [780] = 780, - [781] = 781, - [782] = 782, - [783] = 783, - [784] = 784, - [785] = 726, - [786] = 727, - [787] = 729, - [788] = 731, - [789] = 733, - [790] = 736, - [791] = 738, - [792] = 713, - [793] = 714, - [794] = 716, - [795] = 717, - [796] = 719, - [797] = 720, - [798] = 798, + [775] = 754, + [776] = 755, + [777] = 756, + [778] = 757, + [779] = 758, + [780] = 759, + [781] = 760, + [782] = 761, + [783] = 762, + [784] = 713, + [785] = 714, + [786] = 715, + [787] = 716, + [788] = 788, + [789] = 789, + [790] = 754, + [791] = 791, + [792] = 792, + [793] = 793, + [794] = 755, + [795] = 795, + [796] = 796, + [797] = 797, + [798] = 762, [799] = 799, [800] = 800, [801] = 801, - [802] = 483, - [803] = 803, - [804] = 804, - [805] = 805, - [806] = 806, - [807] = 807, - [808] = 738, - [809] = 809, - [810] = 810, - [811] = 811, - [812] = 812, - [813] = 813, - [814] = 814, - [815] = 815, + [802] = 802, + [803] = 754, + [804] = 755, + [805] = 756, + [806] = 757, + [807] = 758, + [808] = 759, + [809] = 760, + [810] = 761, + [811] = 762, + [812] = 713, + [813] = 714, + [814] = 715, + [815] = 716, [816] = 816, [817] = 817, - [818] = 353, + [818] = 818, [819] = 819, [820] = 820, [821] = 821, [822] = 822, [823] = 823, [824] = 824, - [825] = 488, - [826] = 726, - [827] = 727, - [828] = 729, - [829] = 731, - [830] = 733, - [831] = 736, - [832] = 738, - [833] = 713, - [834] = 714, - [835] = 716, - [836] = 717, - [837] = 719, - [838] = 720, + [825] = 825, + [826] = 826, + [827] = 346, + [828] = 828, + [829] = 829, + [830] = 756, + [831] = 757, + [832] = 758, + [833] = 833, + [834] = 759, + [835] = 760, + [836] = 761, + [837] = 837, + [838] = 838, [839] = 839, - [840] = 840, + [840] = 353, [841] = 841, - [842] = 842, - [843] = 843, - [844] = 844, - [845] = 845, + [842] = 762, + [843] = 713, + [844] = 714, + [845] = 715, [846] = 846, [847] = 847, [848] = 848, [849] = 849, - [850] = 850, - [851] = 726, - [852] = 727, - [853] = 729, - [854] = 731, - [855] = 733, - [856] = 736, - [857] = 738, - [858] = 713, - [859] = 714, - [860] = 716, - [861] = 717, - [862] = 719, - [863] = 720, + [850] = 492, + [851] = 754, + [852] = 755, + [853] = 756, + [854] = 757, + [855] = 758, + [856] = 759, + [857] = 760, + [858] = 761, + [859] = 762, + [860] = 713, + [861] = 714, + [862] = 715, + [863] = 716, [864] = 864, [865] = 865, [866] = 866, @@ -5677,153 +5670,153 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [868] = 868, [869] = 869, [870] = 870, - [871] = 726, - [872] = 727, - [873] = 729, - [874] = 731, - [875] = 733, - [876] = 736, - [877] = 738, - [878] = 713, - [879] = 714, - [880] = 716, - [881] = 717, - [882] = 719, - [883] = 720, - [884] = 884, - [885] = 885, + [871] = 871, + [872] = 872, + [873] = 873, + [874] = 716, + [875] = 875, + [876] = 876, + [877] = 877, + [878] = 878, + [879] = 879, + [880] = 880, + [881] = 881, + [882] = 882, + [883] = 883, + [884] = 754, + [885] = 755, [886] = 886, - [887] = 887, + [887] = 756, [888] = 888, - [889] = 889, - [890] = 890, - [891] = 891, - [892] = 498, - [893] = 893, - [894] = 479, + [889] = 757, + [890] = 758, + [891] = 759, + [892] = 760, + [893] = 761, + [894] = 894, [895] = 895, [896] = 896, [897] = 897, [898] = 898, [899] = 899, - [900] = 900, + [900] = 497, [901] = 901, [902] = 902, - [903] = 903, + [903] = 488, [904] = 904, [905] = 905, [906] = 906, [907] = 907, - [908] = 517, - [909] = 909, - [910] = 905, - [911] = 911, - [912] = 677, + [908] = 679, + [909] = 680, + [910] = 910, + [911] = 681, + [912] = 682, [913] = 913, - [914] = 914, - [915] = 915, + [914] = 475, + [915] = 480, [916] = 916, [917] = 917, - [918] = 918, - [919] = 674, - [920] = 920, - [921] = 921, + [918] = 696, + [919] = 919, + [920] = 702, + [921] = 463, [922] = 922, [923] = 923, [924] = 924, - [925] = 689, + [925] = 528, [926] = 926, [927] = 927, - [928] = 704, - [929] = 705, - [930] = 707, - [931] = 682, - [932] = 455, - [933] = 933, + [928] = 928, + [929] = 929, + [930] = 930, + [931] = 931, + [932] = 932, + [933] = 374, [934] = 934, - [935] = 935, + [935] = 455, [936] = 936, [937] = 937, [938] = 938, - [939] = 905, + [939] = 939, [940] = 940, [941] = 941, [942] = 942, [943] = 943, [944] = 944, - [945] = 462, - [946] = 374, - [947] = 491, + [945] = 474, + [946] = 705, + [947] = 695, [948] = 948, [949] = 949, - [950] = 494, - [951] = 951, + [950] = 692, + [951] = 485, [952] = 952, - [953] = 485, - [954] = 464, - [955] = 475, - [956] = 478, + [953] = 953, + [954] = 954, + [955] = 457, + [956] = 956, [957] = 957, [958] = 958, [959] = 959, - [960] = 681, - [961] = 460, - [962] = 962, - [963] = 708, + [960] = 960, + [961] = 917, + [962] = 917, + [963] = 963, [964] = 964, - [965] = 965, - [966] = 475, + [965] = 683, + [966] = 684, [967] = 967, - [968] = 914, - [969] = 478, - [970] = 920, - [971] = 923, + [968] = 968, + [969] = 969, + [970] = 685, + [971] = 686, [972] = 972, [973] = 973, [974] = 974, [975] = 975, [976] = 976, [977] = 977, - [978] = 964, + [978] = 978, [979] = 979, [980] = 980, [981] = 981, [982] = 982, [983] = 983, [984] = 984, - [985] = 985, - [986] = 986, - [987] = 987, + [985] = 768, + [986] = 924, + [987] = 940, [988] = 988, - [989] = 989, - [990] = 443, - [991] = 991, - [992] = 992, - [993] = 993, - [994] = 994, - [995] = 995, - [996] = 671, - [997] = 965, + [989] = 949, + [990] = 927, + [991] = 963, + [992] = 907, + [993] = 919, + [994] = 922, + [995] = 923, + [996] = 996, + [997] = 997, [998] = 998, - [999] = 711, - [1000] = 692, + [999] = 999, + [1000] = 1000, [1001] = 1001, [1002] = 1002, [1003] = 1003, - [1004] = 693, - [1005] = 1005, - [1006] = 949, + [1004] = 1004, + [1005] = 697, + [1006] = 1006, [1007] = 1007, [1008] = 1008, [1009] = 1009, [1010] = 1010, [1011] = 1011, - [1012] = 1012, + [1012] = 488, [1013] = 1013, - [1014] = 694, - [1015] = 951, - [1016] = 1016, - [1017] = 988, + [1014] = 1014, + [1015] = 475, + [1016] = 480, + [1017] = 1017, [1018] = 1018, [1019] = 1019, [1020] = 1020, @@ -5842,30 +5835,30 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1033] = 1033, [1034] = 1034, [1035] = 1035, - [1036] = 1036, - [1037] = 1037, - [1038] = 695, - [1039] = 697, - [1040] = 698, - [1041] = 1041, - [1042] = 709, - [1043] = 691, - [1044] = 1044, + [1036] = 703, + [1037] = 704, + [1038] = 706, + [1039] = 709, + [1040] = 690, + [1041] = 691, + [1042] = 672, + [1043] = 673, + [1044] = 674, [1045] = 1045, [1046] = 1046, - [1047] = 683, + [1047] = 1047, [1048] = 1048, [1049] = 1049, [1050] = 1050, - [1051] = 672, - [1052] = 673, - [1053] = 699, - [1054] = 899, + [1051] = 1051, + [1052] = 999, + [1053] = 1053, + [1054] = 1054, [1055] = 1055, - [1056] = 700, - [1057] = 701, - [1058] = 1058, - [1059] = 702, + [1056] = 675, + [1057] = 1057, + [1058] = 676, + [1059] = 1059, [1060] = 1060, [1061] = 1061, [1062] = 1062, @@ -5874,9 +5867,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1065] = 1065, [1066] = 1066, [1067] = 1067, - [1068] = 703, - [1069] = 964, - [1070] = 1070, + [1068] = 1068, + [1069] = 677, + [1070] = 678, [1071] = 1071, [1072] = 1072, [1073] = 1073, @@ -5885,24 +5878,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1076] = 1076, [1077] = 1077, [1078] = 1078, - [1079] = 1079, + [1079] = 1073, [1080] = 1080, - [1081] = 1081, + [1081] = 449, [1082] = 1082, - [1083] = 1070, + [1083] = 1083, [1084] = 1084, [1085] = 1085, - [1086] = 1086, + [1086] = 1057, [1087] = 1087, - [1088] = 1072, - [1089] = 903, + [1088] = 1088, + [1089] = 1089, [1090] = 1090, - [1091] = 1073, + [1091] = 1091, [1092] = 1092, [1093] = 1093, - [1094] = 1094, - [1095] = 1095, - [1096] = 1096, + [1094] = 1026, + [1095] = 1027, + [1096] = 1028, [1097] = 1097, [1098] = 1098, [1099] = 1099, @@ -5913,28 +5906,28 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1104] = 1104, [1105] = 1105, [1106] = 1106, - [1107] = 803, + [1107] = 1107, [1108] = 1108, [1109] = 1109, - [1110] = 485, + [1110] = 1110, [1111] = 1111, [1112] = 1112, [1113] = 1113, [1114] = 1114, [1115] = 1115, - [1116] = 944, - [1117] = 965, - [1118] = 918, + [1116] = 1116, + [1117] = 1117, + [1118] = 1118, [1119] = 1119, [1120] = 1120, [1121] = 1121, [1122] = 1122, [1123] = 1123, [1124] = 1124, - [1125] = 1125, + [1125] = 1057, [1126] = 1126, [1127] = 1127, - [1128] = 1128, + [1128] = 999, [1129] = 1129, [1130] = 1130, [1131] = 1131, @@ -5946,13 +5939,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1137] = 1137, [1138] = 1138, [1139] = 1139, - [1140] = 1140, + [1140] = 1008, [1141] = 1141, [1142] = 1142, - [1143] = 1143, + [1143] = 1072, [1144] = 1144, [1145] = 1145, - [1146] = 1146, + [1146] = 1073, [1147] = 1147, [1148] = 1148, [1149] = 1149, @@ -5962,21 +5955,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1153] = 1153, [1154] = 1154, [1155] = 1155, - [1156] = 1156, + [1156] = 694, [1157] = 1157, - [1158] = 1158, + [1158] = 1150, [1159] = 1159, - [1160] = 1160, + [1160] = 699, [1161] = 1161, - [1162] = 1162, + [1162] = 1151, [1163] = 1163, [1164] = 1164, [1165] = 1165, [1166] = 1166, - [1167] = 1002, + [1167] = 1167, [1168] = 1168, [1169] = 1169, - [1170] = 1157, + [1170] = 1170, [1171] = 1171, [1172] = 1172, [1173] = 1173, @@ -5994,31 +5987,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1185] = 1185, [1186] = 1186, [1187] = 1187, - [1188] = 679, + [1188] = 1188, [1189] = 1189, [1190] = 1190, [1191] = 1191, [1192] = 1192, - [1193] = 1193, - [1194] = 1194, - [1195] = 684, + [1193] = 1071, + [1194] = 1072, + [1195] = 1195, [1196] = 1196, [1197] = 1197, [1198] = 1198, [1199] = 1199, [1200] = 1200, [1201] = 1201, - [1202] = 1202, + [1202] = 1142, [1203] = 1203, [1204] = 1204, - [1205] = 686, + [1205] = 1205, [1206] = 1206, - [1207] = 1207, - [1208] = 1208, + [1207] = 1142, + [1208] = 1071, [1209] = 1209, [1210] = 1210, [1211] = 1211, - [1212] = 1212, + [1212] = 711, [1213] = 1213, [1214] = 1214, [1215] = 1215, @@ -6031,23 +6024,23 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1222] = 1222, [1223] = 1223, [1224] = 1224, - [1225] = 1162, + [1225] = 1225, [1226] = 1226, [1227] = 1227, - [1228] = 980, - [1229] = 1201, + [1228] = 1228, + [1229] = 1229, [1230] = 1230, - [1231] = 1231, - [1232] = 1002, + [1231] = 1141, + [1232] = 1232, [1233] = 1233, - [1234] = 988, + [1234] = 1234, [1235] = 1235, [1236] = 1236, [1237] = 1237, [1238] = 1238, - [1239] = 1086, + [1239] = 1239, [1240] = 1240, - [1241] = 980, + [1241] = 1241, [1242] = 1242, [1243] = 1243, [1244] = 1244, @@ -6062,95 +6055,95 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1253] = 1253, [1254] = 1254, [1255] = 1255, - [1256] = 1162, - [1257] = 1162, - [1258] = 1162, - [1259] = 1221, - [1260] = 1260, + [1256] = 1256, + [1257] = 1257, + [1258] = 1258, + [1259] = 1142, + [1260] = 1142, [1261] = 1261, - [1262] = 959, - [1263] = 809, - [1264] = 1264, - [1265] = 924, - [1266] = 849, - [1267] = 927, - [1268] = 811, - [1269] = 938, - [1270] = 940, - [1271] = 850, - [1272] = 952, - [1273] = 1273, - [1274] = 848, - [1275] = 942, - [1276] = 926, - [1277] = 804, - [1278] = 798, - [1279] = 958, - [1280] = 864, - [1281] = 865, - [1282] = 957, - [1283] = 1148, - [1284] = 680, - [1285] = 1149, - [1286] = 962, - [1287] = 1150, - [1288] = 916, - [1289] = 896, - [1290] = 1151, - [1291] = 676, - [1292] = 897, - [1293] = 1230, - [1294] = 922, - [1295] = 898, - [1296] = 1231, - [1297] = 847, - [1298] = 902, - [1299] = 1236, - [1300] = 1300, - [1301] = 948, - [1302] = 904, - [1303] = 1237, - [1304] = 715, - [1305] = 906, - [1306] = 907, - [1307] = 941, - [1308] = 895, - [1309] = 1255, - [1310] = 911, - [1311] = 1207, - [1312] = 913, - [1313] = 1137, - [1314] = 915, - [1315] = 1130, - [1316] = 933, - [1317] = 1317, - [1318] = 934, - [1319] = 935, - [1320] = 936, - [1321] = 937, - [1322] = 917, - [1323] = 805, - [1324] = 812, - [1325] = 813, - [1326] = 815, + [1262] = 1262, + [1263] = 938, + [1264] = 932, + [1265] = 1236, + [1266] = 937, + [1267] = 934, + [1268] = 1245, + [1269] = 936, + [1270] = 793, + [1271] = 717, + [1272] = 718, + [1273] = 958, + [1274] = 916, + [1275] = 1247, + [1276] = 939, + [1277] = 1252, + [1278] = 953, + [1279] = 1211, + [1280] = 957, + [1281] = 960, + [1282] = 1215, + [1283] = 959, + [1284] = 1217, + [1285] = 941, + [1286] = 822, + [1287] = 825, + [1288] = 826, + [1289] = 948, + [1290] = 899, + [1291] = 829, + [1292] = 952, + [1293] = 770, + [1294] = 1221, + [1295] = 837, + [1296] = 905, + [1297] = 838, + [1298] = 901, + [1299] = 772, + [1300] = 839, + [1301] = 1223, + [1302] = 902, + [1303] = 841, + [1304] = 913, + [1305] = 693, + [1306] = 881, + [1307] = 883, + [1308] = 876, + [1309] = 1309, + [1310] = 956, + [1311] = 954, + [1312] = 833, + [1313] = 930, + [1314] = 1314, + [1315] = 846, + [1316] = 898, + [1317] = 878, + [1318] = 904, + [1319] = 1228, + [1320] = 897, + [1321] = 906, + [1322] = 1233, + [1323] = 931, + [1324] = 942, + [1325] = 926, + [1326] = 1235, [1327] = 943, - [1328] = 806, - [1329] = 820, - [1330] = 807, - [1331] = 921, + [1328] = 929, + [1329] = 895, + [1330] = 944, + [1331] = 1331, [1332] = 1332, [1333] = 1333, - [1334] = 900, - [1335] = 840, - [1336] = 841, - [1337] = 842, - [1338] = 843, - [1339] = 844, - [1340] = 845, - [1341] = 846, - [1342] = 909, - [1343] = 1273, - [1344] = 839, + [1334] = 910, + [1335] = 896, + [1336] = 847, + [1337] = 848, + [1338] = 849, + [1339] = 864, + [1340] = 867, + [1341] = 869, + [1342] = 1333, + [1343] = 871, + [1344] = 671, [1345] = 1345, [1346] = 1346, [1347] = 1347, @@ -6158,925 +6151,925 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1349] = 1349, [1350] = 1350, [1351] = 1351, - [1352] = 1352, - [1353] = 517, + [1352] = 1348, + [1353] = 1353, [1354] = 1354, - [1355] = 1354, - [1356] = 1356, - [1357] = 1350, + [1355] = 1355, + [1356] = 528, + [1357] = 1357, [1358] = 1358, - [1359] = 1351, - [1360] = 1360, - [1361] = 683, + [1359] = 1359, + [1360] = 1349, + [1361] = 1361, [1362] = 1362, - [1363] = 1356, - [1364] = 1364, + [1363] = 1363, + [1364] = 1362, [1365] = 1365, [1366] = 1366, - [1367] = 1360, - [1368] = 1368, - [1369] = 1369, - [1370] = 1360, - [1371] = 1360, + [1367] = 1354, + [1368] = 1362, + [1369] = 1350, + [1370] = 1357, + [1371] = 1362, [1372] = 1347, - [1373] = 1360, - [1374] = 1358, + [1373] = 697, + [1374] = 1362, [1375] = 1375, - [1376] = 1376, + [1376] = 1366, [1377] = 1377, [1378] = 1378, [1379] = 1379, - [1380] = 1366, + [1380] = 1380, [1381] = 1381, - [1382] = 379, + [1382] = 378, [1383] = 1383, [1384] = 1384, - [1385] = 1385, - [1386] = 379, - [1387] = 1387, + [1385] = 403, + [1386] = 1386, + [1387] = 378, [1388] = 1388, - [1389] = 1389, - [1390] = 411, - [1391] = 399, - [1392] = 399, + [1389] = 399, + [1390] = 1390, + [1391] = 1391, + [1392] = 1392, [1393] = 1393, - [1394] = 1394, - [1395] = 1395, - [1396] = 411, - [1397] = 92, - [1398] = 93, + [1394] = 93, + [1395] = 92, + [1396] = 1396, + [1397] = 1397, + [1398] = 399, [1399] = 1399, - [1400] = 1400, - [1401] = 92, - [1402] = 450, - [1403] = 517, - [1404] = 1404, - [1405] = 1405, - [1406] = 1406, - [1407] = 97, - [1408] = 93, - [1409] = 99, - [1410] = 112, - [1411] = 446, - [1412] = 113, - [1413] = 109, - [1414] = 683, - [1415] = 99, - [1416] = 1416, + [1400] = 403, + [1401] = 1401, + [1402] = 93, + [1403] = 1403, + [1404] = 528, + [1405] = 436, + [1406] = 95, + [1407] = 1407, + [1408] = 94, + [1409] = 92, + [1410] = 1410, + [1411] = 447, + [1412] = 1412, + [1413] = 697, + [1414] = 449, + [1415] = 1415, + [1416] = 94, [1417] = 1417, - [1418] = 1418, - [1419] = 1419, - [1420] = 450, - [1421] = 443, + [1418] = 105, + [1419] = 436, + [1420] = 106, + [1421] = 1421, [1422] = 1422, - [1423] = 1423, - [1424] = 97, - [1425] = 455, - [1426] = 109, - [1427] = 113, - [1428] = 446, - [1429] = 112, - [1430] = 443, - [1431] = 464, - [1432] = 544, - [1433] = 464, - [1434] = 485, - [1435] = 478, - [1436] = 475, - [1437] = 455, - [1438] = 545, - [1439] = 545, - [1440] = 478, - [1441] = 443, - [1442] = 1442, - [1443] = 485, + [1423] = 95, + [1424] = 107, + [1425] = 474, + [1426] = 449, + [1427] = 106, + [1428] = 463, + [1429] = 105, + [1430] = 447, + [1431] = 107, + [1432] = 463, + [1433] = 543, + [1434] = 474, + [1435] = 544, + [1436] = 488, + [1437] = 480, + [1438] = 475, + [1439] = 449, + [1440] = 1440, + [1441] = 544, + [1442] = 475, + [1443] = 480, [1444] = 1444, - [1445] = 544, - [1446] = 446, - [1447] = 1447, - [1448] = 475, - [1449] = 1449, - [1450] = 1444, + [1445] = 1445, + [1446] = 488, + [1447] = 447, + [1448] = 543, + [1449] = 1444, + [1450] = 1445, [1451] = 1451, - [1452] = 443, - [1453] = 446, - [1454] = 1442, - [1455] = 1447, - [1456] = 455, - [1457] = 464, - [1458] = 1451, - [1459] = 803, - [1460] = 1460, - [1461] = 914, + [1452] = 447, + [1453] = 463, + [1454] = 449, + [1455] = 1440, + [1456] = 1451, + [1457] = 474, + [1458] = 1458, + [1459] = 1459, + [1460] = 922, + [1461] = 1461, [1462] = 1462, [1463] = 1463, - [1464] = 944, - [1465] = 949, - [1466] = 951, - [1467] = 899, - [1468] = 903, - [1469] = 918, - [1470] = 920, - [1471] = 923, + [1464] = 949, + [1465] = 768, + [1466] = 480, + [1467] = 1467, + [1468] = 963, + [1469] = 1469, + [1470] = 924, + [1471] = 1471, [1472] = 1472, [1473] = 1473, - [1474] = 1474, - [1475] = 1475, + [1474] = 923, + [1475] = 927, [1476] = 1476, - [1477] = 1477, - [1478] = 1478, - [1479] = 1479, - [1480] = 1480, - [1481] = 1481, - [1482] = 455, - [1483] = 464, - [1484] = 485, - [1485] = 475, - [1486] = 478, - [1487] = 1487, - [1488] = 899, - [1489] = 988, - [1490] = 803, - [1491] = 918, - [1492] = 1492, - [1493] = 1002, - [1494] = 980, - [1495] = 903, - [1496] = 485, - [1497] = 949, - [1498] = 475, - [1499] = 478, - [1500] = 1500, - [1501] = 920, - [1502] = 923, - [1503] = 951, - [1504] = 914, - [1505] = 1086, - [1506] = 944, - [1507] = 1507, - [1508] = 1086, - [1509] = 1211, - [1510] = 1220, - [1511] = 1223, - [1512] = 1235, - [1513] = 1246, - [1514] = 1254, - [1515] = 1260, - [1516] = 1132, - [1517] = 1204, - [1518] = 1135, - [1519] = 1143, - [1520] = 1186, - [1521] = 1147, - [1522] = 1226, - [1523] = 1177, - [1524] = 1524, - [1525] = 1181, - [1526] = 1526, - [1527] = 1185, + [1477] = 475, + [1478] = 907, + [1479] = 488, + [1480] = 463, + [1481] = 940, + [1482] = 1482, + [1483] = 474, + [1484] = 1484, + [1485] = 919, + [1486] = 1486, + [1487] = 927, + [1488] = 1073, + [1489] = 963, + [1490] = 1490, + [1491] = 940, + [1492] = 922, + [1493] = 768, + [1494] = 1494, + [1495] = 1008, + [1496] = 923, + [1497] = 924, + [1498] = 480, + [1499] = 919, + [1500] = 475, + [1501] = 1071, + [1502] = 907, + [1503] = 1072, + [1504] = 1504, + [1505] = 1505, + [1506] = 488, + [1507] = 949, + [1508] = 1196, + [1509] = 1509, + [1510] = 1510, + [1511] = 1073, + [1512] = 1512, + [1513] = 1513, + [1514] = 1514, + [1515] = 378, + [1516] = 1516, + [1517] = 1517, + [1518] = 1518, + [1519] = 1519, + [1520] = 1520, + [1521] = 1521, + [1522] = 1008, + [1523] = 1523, + [1524] = 1512, + [1525] = 1513, + [1526] = 1514, + [1527] = 1527, [1528] = 1528, - [1529] = 1158, - [1530] = 1244, - [1531] = 1144, + [1529] = 1529, + [1530] = 1530, + [1531] = 1531, [1532] = 1532, - [1533] = 1178, - [1534] = 1526, - [1535] = 1187, - [1536] = 1528, - [1537] = 1196, - [1538] = 1210, - [1539] = 1206, - [1540] = 1540, - [1541] = 1541, - [1542] = 1233, + [1533] = 1533, + [1534] = 1534, + [1535] = 1535, + [1536] = 1536, + [1537] = 1537, + [1538] = 1533, + [1539] = 1534, + [1540] = 1535, + [1541] = 1536, + [1542] = 1542, [1543] = 1543, - [1544] = 1250, - [1545] = 1155, - [1546] = 1160, - [1547] = 1165, - [1548] = 1168, - [1549] = 1172, - [1550] = 1175, - [1551] = 1179, - [1552] = 1184, - [1553] = 1189, - [1554] = 1216, - [1555] = 1136, - [1556] = 1138, - [1557] = 1154, - [1558] = 1156, - [1559] = 1159, - [1560] = 1161, - [1561] = 1164, - [1562] = 1166, - [1563] = 1169, - [1564] = 1171, - [1565] = 1174, - [1566] = 1176, - [1567] = 1192, - [1568] = 1194, - [1569] = 1197, - [1570] = 1199, - [1571] = 1261, - [1572] = 1209, - [1573] = 1212, - [1574] = 1214, - [1575] = 1217, - [1576] = 1219, - [1577] = 1222, - [1578] = 1224, - [1579] = 1227, - [1580] = 1580, - [1581] = 1581, - [1582] = 379, - [1583] = 1583, - [1584] = 1238, - [1585] = 1240, - [1586] = 1242, - [1587] = 1245, - [1588] = 1247, - [1589] = 1249, - [1590] = 1251, - [1591] = 1253, - [1592] = 1243, - [1593] = 1248, - [1594] = 1202, - [1595] = 1213, - [1596] = 1145, - [1597] = 1597, - [1598] = 1203, - [1599] = 1599, - [1600] = 1183, - [1601] = 1601, - [1602] = 1602, - [1603] = 1603, - [1604] = 1540, - [1605] = 1597, - [1606] = 1606, - [1607] = 1607, - [1608] = 1599, - [1609] = 1524, - [1610] = 1610, - [1611] = 1611, - [1612] = 1612, - [1613] = 1141, - [1614] = 1218, - [1615] = 1612, - [1616] = 1616, - [1617] = 1148, - [1618] = 1149, - [1619] = 1150, - [1620] = 1151, - [1621] = 1230, - [1622] = 1231, - [1623] = 1236, - [1624] = 1237, - [1625] = 1255, - [1626] = 1207, - [1627] = 1137, - [1628] = 1130, - [1629] = 1139, - [1630] = 1153, - [1631] = 988, - [1632] = 1632, - [1633] = 1580, - [1634] = 1634, - [1635] = 1635, - [1636] = 1636, - [1637] = 1180, - [1638] = 1193, - [1639] = 1208, - [1640] = 1133, - [1641] = 1152, - [1642] = 1642, - [1643] = 1541, - [1644] = 1532, - [1645] = 1543, - [1646] = 1581, - [1647] = 1647, - [1648] = 1635, - [1649] = 1647, - [1650] = 1163, - [1651] = 1651, - [1652] = 1173, - [1653] = 1191, - [1654] = 1654, - [1655] = 1002, - [1656] = 980, - [1657] = 1606, - [1658] = 1607, - [1659] = 1634, - [1660] = 1198, - [1661] = 1131, - [1662] = 1134, - [1663] = 1636, - [1664] = 1140, - [1665] = 1602, - [1666] = 1642, - [1667] = 1142, - [1668] = 1603, - [1669] = 1610, - [1670] = 1611, - [1671] = 1612, - [1672] = 1146, - [1673] = 1616, - [1674] = 1632, - [1675] = 1200, - [1676] = 1601, - [1677] = 1150, - [1678] = 379, - [1679] = 411, - [1680] = 1148, - [1681] = 1681, - [1682] = 1149, - [1683] = 1151, - [1684] = 1230, - [1685] = 399, - [1686] = 1231, - [1687] = 1687, - [1688] = 1255, - [1689] = 1207, - [1690] = 1687, - [1691] = 1137, - [1692] = 1651, - [1693] = 1236, - [1694] = 1130, - [1695] = 1237, - [1696] = 411, - [1697] = 1697, - [1698] = 399, - [1699] = 92, + [1544] = 1542, + [1545] = 1516, + [1546] = 1517, + [1547] = 1518, + [1548] = 1519, + [1549] = 1543, + [1550] = 1550, + [1551] = 1551, + [1552] = 1552, + [1553] = 1509, + [1554] = 1520, + [1555] = 1521, + [1556] = 1527, + [1557] = 1528, + [1558] = 1529, + [1559] = 1530, + [1560] = 1531, + [1561] = 1532, + [1562] = 1230, + [1563] = 1234, + [1564] = 1238, + [1565] = 1240, + [1566] = 1241, + [1567] = 1244, + [1568] = 1246, + [1569] = 1248, + [1570] = 1254, + [1571] = 1255, + [1572] = 1256, + [1573] = 1258, + [1574] = 1536, + [1575] = 1237, + [1576] = 1243, + [1577] = 1249, + [1578] = 1183, + [1579] = 1137, + [1580] = 1171, + [1581] = 1189, + [1582] = 1219, + [1583] = 1251, + [1584] = 1145, + [1585] = 1175, + [1586] = 1178, + [1587] = 1182, + [1588] = 1187, + [1589] = 1188, + [1590] = 1190, + [1591] = 1198, + [1592] = 1199, + [1593] = 1201, + [1594] = 1261, + [1595] = 1203, + [1596] = 1205, + [1597] = 1209, + [1598] = 1210, + [1599] = 1213, + [1600] = 1218, + [1601] = 1220, + [1602] = 1222, + [1603] = 1224, + [1604] = 1226, + [1605] = 1227, + [1606] = 1232, + [1607] = 1239, + [1608] = 1242, + [1609] = 1130, + [1610] = 1153, + [1611] = 1169, + [1612] = 1179, + [1613] = 1133, + [1614] = 1139, + [1615] = 1144, + [1616] = 1164, + [1617] = 1167, + [1618] = 1181, + [1619] = 1185, + [1620] = 1191, + [1621] = 1206, + [1622] = 1257, + [1623] = 1135, + [1624] = 1148, + [1625] = 1165, + [1626] = 1168, + [1627] = 1177, + [1628] = 1180, + [1629] = 1184, + [1630] = 1186, + [1631] = 1192, + [1632] = 1195, + [1633] = 1197, + [1634] = 1200, + [1635] = 1214, + [1636] = 1216, + [1637] = 1225, + [1638] = 1250, + [1639] = 1253, + [1640] = 1131, + [1641] = 1132, + [1642] = 1134, + [1643] = 1136, + [1644] = 1138, + [1645] = 1147, + [1646] = 1152, + [1647] = 1154, + [1648] = 1155, + [1649] = 1157, + [1650] = 1159, + [1651] = 1161, + [1652] = 1163, + [1653] = 1166, + [1654] = 1170, + [1655] = 1172, + [1656] = 1173, + [1657] = 1174, + [1658] = 1211, + [1659] = 1215, + [1660] = 1217, + [1661] = 1221, + [1662] = 1223, + [1663] = 1228, + [1664] = 1233, + [1665] = 1235, + [1666] = 1236, + [1667] = 1245, + [1668] = 1247, + [1669] = 1252, + [1670] = 1670, + [1671] = 1071, + [1672] = 1072, + [1673] = 1550, + [1674] = 1551, + [1675] = 1552, + [1676] = 1537, + [1677] = 1677, + [1678] = 1211, + [1679] = 1215, + [1680] = 1217, + [1681] = 1221, + [1682] = 1223, + [1683] = 1228, + [1684] = 1233, + [1685] = 1235, + [1686] = 1236, + [1687] = 1245, + [1688] = 1247, + [1689] = 1252, + [1690] = 403, + [1691] = 399, + [1692] = 1692, + [1693] = 1677, + [1694] = 378, + [1695] = 1670, + [1696] = 1696, + [1697] = 93, + [1698] = 390, + [1699] = 1699, [1700] = 1700, - [1701] = 391, + [1701] = 1701, [1702] = 1702, - [1703] = 1700, - [1704] = 1697, - [1705] = 1705, - [1706] = 1702, + [1703] = 1702, + [1704] = 92, + [1705] = 403, + [1706] = 399, [1707] = 1707, - [1708] = 1707, - [1709] = 1709, - [1710] = 377, - [1711] = 1705, - [1712] = 93, - [1713] = 405, - [1714] = 450, - [1715] = 92, - [1716] = 1716, - [1717] = 400, - [1718] = 401, - [1719] = 402, - [1720] = 333, - [1721] = 1716, - [1722] = 97, - [1723] = 1716, - [1724] = 99, - [1725] = 1716, - [1726] = 334, - [1727] = 1727, - [1728] = 1728, - [1729] = 93, - [1730] = 406, + [1708] = 1696, + [1709] = 395, + [1710] = 1707, + [1711] = 1701, + [1712] = 1699, + [1713] = 333, + [1714] = 1714, + [1715] = 398, + [1716] = 335, + [1717] = 436, + [1718] = 402, + [1719] = 1719, + [1720] = 95, + [1721] = 92, + [1722] = 1722, + [1723] = 93, + [1724] = 94, + [1725] = 410, + [1726] = 404, + [1727] = 406, + [1728] = 408, + [1729] = 1714, + [1730] = 1714, [1731] = 1731, - [1732] = 398, - [1733] = 403, - [1734] = 404, + [1732] = 1714, + [1733] = 409, + [1734] = 411, [1735] = 1735, - [1736] = 1736, - [1737] = 1737, - [1738] = 334, - [1739] = 450, - [1740] = 340, - [1741] = 341, - [1742] = 92, - [1743] = 443, - [1744] = 93, - [1745] = 344, - [1746] = 345, - [1747] = 338, - [1748] = 346, - [1749] = 347, - [1750] = 348, - [1751] = 97, - [1752] = 403, - [1753] = 99, - [1754] = 446, - [1755] = 1737, + [1736] = 92, + [1737] = 338, + [1738] = 345, + [1739] = 347, + [1740] = 348, + [1741] = 349, + [1742] = 1742, + [1743] = 1743, + [1744] = 1744, + [1745] = 1745, + [1746] = 1746, + [1747] = 1744, + [1748] = 333, + [1749] = 106, + [1750] = 1742, + [1751] = 1751, + [1752] = 95, + [1753] = 402, + [1754] = 1754, + [1755] = 94, [1756] = 1756, - [1757] = 1757, - [1758] = 1756, + [1757] = 447, + [1758] = 1742, [1759] = 1759, - [1760] = 1759, - [1761] = 405, - [1762] = 1737, - [1763] = 1736, - [1764] = 1764, - [1765] = 333, - [1766] = 1736, - [1767] = 1736, - [1768] = 1768, - [1769] = 1769, - [1770] = 112, - [1771] = 1771, - [1772] = 109, - [1773] = 1773, - [1774] = 113, - [1775] = 1737, - [1776] = 1757, - [1777] = 1777, - [1778] = 99, + [1760] = 1742, + [1761] = 1756, + [1762] = 436, + [1763] = 341, + [1764] = 342, + [1765] = 1756, + [1766] = 335, + [1767] = 1743, + [1768] = 105, + [1769] = 1756, + [1770] = 107, + [1771] = 449, + [1772] = 93, + [1773] = 1746, + [1774] = 1774, + [1775] = 344, + [1776] = 411, + [1777] = 449, + [1778] = 1778, [1779] = 1779, [1780] = 1780, - [1781] = 346, - [1782] = 347, - [1783] = 1783, - [1784] = 348, - [1785] = 1779, - [1786] = 341, - [1787] = 344, - [1788] = 1788, - [1789] = 1780, - [1790] = 368, - [1791] = 345, + [1781] = 1781, + [1782] = 1782, + [1783] = 344, + [1784] = 338, + [1785] = 345, + [1786] = 336, + [1787] = 347, + [1788] = 348, + [1789] = 349, + [1790] = 1790, + [1791] = 1791, [1792] = 1792, [1793] = 1793, - [1794] = 1794, + [1794] = 369, [1795] = 1795, - [1796] = 1796, - [1797] = 335, - [1798] = 1798, - [1799] = 112, - [1800] = 340, - [1801] = 1796, + [1796] = 95, + [1797] = 1797, + [1798] = 94, + [1799] = 341, + [1800] = 1800, + [1801] = 1801, [1802] = 1802, - [1803] = 97, - [1804] = 1798, + [1803] = 1803, + [1804] = 1804, [1805] = 1805, - [1806] = 1806, - [1807] = 1807, - [1808] = 1808, - [1809] = 109, - [1810] = 113, - [1811] = 455, - [1812] = 1812, - [1813] = 338, - [1814] = 464, - [1815] = 1815, - [1816] = 446, - [1817] = 1783, - [1818] = 1788, - [1819] = 1777, - [1820] = 443, - [1821] = 1783, - [1822] = 1815, - [1823] = 1783, - [1824] = 1802, - [1825] = 478, - [1826] = 1826, - [1827] = 485, - [1828] = 475, - [1829] = 455, - [1830] = 464, - [1831] = 545, - [1832] = 544, - [1833] = 353, - [1834] = 367, - [1835] = 1835, - [1836] = 352, - [1837] = 335, - [1838] = 112, - [1839] = 109, - [1840] = 113, - [1841] = 1841, + [1806] = 105, + [1807] = 106, + [1808] = 107, + [1809] = 342, + [1810] = 474, + [1811] = 463, + [1812] = 447, + [1813] = 1780, + [1814] = 1778, + [1815] = 1779, + [1816] = 1800, + [1817] = 1801, + [1818] = 1818, + [1819] = 1797, + [1820] = 1802, + [1821] = 1818, + [1822] = 1818, + [1823] = 1818, + [1824] = 1804, + [1825] = 1825, + [1826] = 346, + [1827] = 1827, + [1828] = 1828, + [1829] = 352, + [1830] = 544, + [1831] = 1831, + [1832] = 336, + [1833] = 488, + [1834] = 475, + [1835] = 480, + [1836] = 474, + [1837] = 105, + [1838] = 353, + [1839] = 106, + [1840] = 107, + [1841] = 463, [1842] = 1842, - [1843] = 1843, - [1844] = 368, + [1843] = 543, + [1844] = 369, [1845] = 1845, - [1846] = 460, - [1847] = 446, - [1848] = 485, - [1849] = 92, - [1850] = 1850, - [1851] = 864, - [1852] = 865, - [1853] = 847, - [1854] = 1854, - [1855] = 679, - [1856] = 462, - [1857] = 848, - [1858] = 686, - [1859] = 1476, - [1860] = 367, - [1861] = 93, - [1862] = 352, - [1863] = 374, - [1864] = 353, - [1865] = 849, - [1866] = 850, + [1846] = 488, + [1847] = 699, + [1848] = 349, + [1849] = 1849, + [1850] = 717, + [1851] = 92, + [1852] = 93, + [1853] = 449, + [1854] = 876, + [1855] = 475, + [1856] = 480, + [1857] = 1459, + [1858] = 346, + [1859] = 1831, + [1860] = 447, + [1861] = 457, + [1862] = 694, + [1863] = 455, + [1864] = 352, + [1865] = 881, + [1866] = 353, [1867] = 344, - [1868] = 1854, - [1869] = 345, - [1870] = 544, - [1871] = 545, - [1872] = 338, - [1873] = 475, - [1874] = 1826, - [1875] = 346, - [1876] = 347, - [1877] = 348, - [1878] = 478, - [1879] = 443, - [1880] = 479, - [1881] = 864, - [1882] = 1492, - [1883] = 374, - [1884] = 346, - [1885] = 347, - [1886] = 348, - [1887] = 865, - [1888] = 464, - [1889] = 1889, - [1890] = 488, - [1891] = 476, - [1892] = 333, - [1893] = 849, - [1894] = 1889, - [1895] = 498, - [1896] = 93, - [1897] = 334, - [1898] = 483, - [1899] = 462, - [1900] = 686, - [1901] = 679, - [1902] = 92, - [1903] = 847, - [1904] = 848, - [1905] = 97, - [1906] = 499, - [1907] = 443, - [1908] = 344, - [1909] = 460, - [1910] = 455, - [1911] = 345, - [1912] = 99, - [1913] = 338, - [1914] = 446, - [1915] = 850, + [1868] = 338, + [1869] = 543, + [1870] = 345, + [1871] = 374, + [1872] = 1845, + [1873] = 883, + [1874] = 347, + [1875] = 544, + [1876] = 348, + [1877] = 1877, + [1878] = 878, + [1879] = 718, + [1880] = 374, + [1881] = 479, + [1882] = 1882, + [1883] = 348, + [1884] = 876, + [1885] = 878, + [1886] = 335, + [1887] = 347, + [1888] = 883, + [1889] = 717, + [1890] = 344, + [1891] = 694, + [1892] = 718, + [1893] = 1504, + [1894] = 1882, + [1895] = 333, + [1896] = 463, + [1897] = 447, + [1898] = 349, + [1899] = 93, + [1900] = 345, + [1901] = 496, + [1902] = 492, + [1903] = 494, + [1904] = 449, + [1905] = 881, + [1906] = 474, + [1907] = 95, + [1908] = 699, + [1909] = 94, + [1910] = 478, + [1911] = 92, + [1912] = 455, + [1913] = 457, + [1914] = 476, + [1915] = 338, [1916] = 1916, - [1917] = 340, - [1918] = 899, - [1919] = 344, - [1920] = 341, - [1921] = 345, - [1922] = 338, - [1923] = 346, - [1924] = 347, - [1925] = 348, - [1926] = 1926, - [1927] = 485, - [1928] = 1928, - [1929] = 1929, - [1930] = 1926, - [1931] = 1931, - [1932] = 99, - [1933] = 920, - [1934] = 803, - [1935] = 475, - [1936] = 478, - [1937] = 1937, + [1917] = 1917, + [1918] = 344, + [1919] = 338, + [1920] = 345, + [1921] = 347, + [1922] = 348, + [1923] = 349, + [1924] = 907, + [1925] = 919, + [1926] = 768, + [1927] = 1927, + [1928] = 95, + [1929] = 922, + [1930] = 923, + [1931] = 474, + [1932] = 924, + [1933] = 463, + [1934] = 1934, + [1935] = 940, + [1936] = 927, + [1937] = 963, [1938] = 1938, - [1939] = 689, - [1940] = 113, - [1941] = 97, - [1942] = 923, - [1943] = 1500, - [1944] = 903, - [1945] = 944, - [1946] = 918, - [1947] = 914, + [1939] = 1505, + [1940] = 1940, + [1941] = 94, + [1942] = 702, + [1943] = 105, + [1944] = 106, + [1945] = 107, + [1946] = 341, + [1947] = 1947, [1948] = 1948, - [1949] = 455, - [1950] = 949, - [1951] = 464, - [1952] = 1952, - [1953] = 1953, - [1954] = 112, - [1955] = 674, - [1956] = 682, - [1957] = 708, - [1958] = 951, - [1959] = 677, - [1960] = 109, - [1961] = 681, - [1962] = 704, - [1963] = 705, - [1964] = 707, - [1965] = 1965, - [1966] = 1194, - [1967] = 1139, - [1968] = 1153, - [1969] = 1180, - [1970] = 1193, - [1971] = 1208, - [1972] = 1133, - [1973] = 1152, - [1974] = 1163, - [1975] = 1173, - [1976] = 1191, - [1977] = 1198, - [1978] = 1131, - [1979] = 1134, - [1980] = 1140, - [1981] = 1142, - [1982] = 1146, - [1983] = 1211, - [1984] = 1220, - [1985] = 1223, - [1986] = 1235, - [1987] = 1246, - [1988] = 1254, - [1989] = 1260, - [1990] = 1132, - [1991] = 1135, - [1992] = 1143, - [1993] = 1147, - [1994] = 1177, - [1995] = 1181, - [1996] = 951, - [1997] = 1185, - [1998] = 899, - [1999] = 1158, - [2000] = 2000, - [2001] = 1244, - [2002] = 903, - [2003] = 803, - [2004] = 1178, - [2005] = 1187, - [2006] = 2006, - [2007] = 1196, - [2008] = 2008, - [2009] = 1206, - [2010] = 914, - [2011] = 918, - [2012] = 1250, - [2013] = 1155, - [2014] = 1160, - [2015] = 1165, - [2016] = 1168, - [2017] = 1172, - [2018] = 1175, - [2019] = 1179, - [2020] = 1184, - [2021] = 1189, - [2022] = 1216, - [2023] = 1136, - [2024] = 1138, - [2025] = 1154, - [2026] = 1156, - [2027] = 1159, - [2028] = 1161, - [2029] = 1164, - [2030] = 1166, - [2031] = 1169, - [2032] = 1171, - [2033] = 1174, - [2034] = 1176, - [2035] = 1192, - [2036] = 1086, - [2037] = 1197, - [2038] = 1199, - [2039] = 1261, - [2040] = 1209, - [2041] = 1212, - [2042] = 1214, - [2043] = 1217, - [2044] = 1219, - [2045] = 1222, - [2046] = 1224, - [2047] = 1227, - [2048] = 1238, - [2049] = 1240, - [2050] = 1242, - [2051] = 1245, - [2052] = 1247, - [2053] = 1249, - [2054] = 1251, - [2055] = 1253, - [2056] = 1243, - [2057] = 1248, - [2058] = 1213, - [2059] = 920, - [2060] = 2060, - [2061] = 113, - [2062] = 2000, - [2063] = 923, - [2064] = 2064, - [2065] = 2065, - [2066] = 2066, - [2067] = 2067, - [2068] = 2068, - [2069] = 2069, - [2070] = 2066, - [2071] = 109, - [2072] = 333, - [2073] = 2073, - [2074] = 2074, - [2075] = 2075, - [2076] = 1200, - [2077] = 1183, - [2078] = 2078, - [2079] = 1218, - [2080] = 1144, - [2081] = 485, - [2082] = 2082, - [2083] = 1186, - [2084] = 475, - [2085] = 478, - [2086] = 1583, - [2087] = 2000, - [2088] = 1210, - [2089] = 1233, - [2090] = 112, - [2091] = 2000, + [1949] = 1949, + [1950] = 342, + [1951] = 488, + [1952] = 475, + [1953] = 480, + [1954] = 949, + [1955] = 1955, + [1956] = 692, + [1957] = 696, + [1958] = 682, + [1959] = 1959, + [1960] = 705, + [1961] = 695, + [1962] = 679, + [1963] = 680, + [1964] = 681, + [1965] = 1938, + [1966] = 1179, + [1967] = 1967, + [1968] = 1968, + [1969] = 940, + [1970] = 488, + [1971] = 1971, + [1972] = 475, + [1973] = 480, + [1974] = 1974, + [1975] = 1510, + [1976] = 105, + [1977] = 528, + [1978] = 949, + [1979] = 1979, + [1980] = 335, + [1981] = 907, + [1982] = 1230, + [1983] = 1234, + [1984] = 1238, + [1985] = 1240, + [1986] = 1241, + [1987] = 1244, + [1988] = 1246, + [1989] = 1248, + [1990] = 1254, + [1991] = 1255, + [1992] = 1256, + [1993] = 919, + [1994] = 1258, + [1995] = 106, + [1996] = 1979, + [1997] = 1237, + [1998] = 1243, + [1999] = 1249, + [2000] = 1183, + [2001] = 1137, + [2002] = 1171, + [2003] = 1189, + [2004] = 1219, + [2005] = 1251, + [2006] = 1145, + [2007] = 1175, + [2008] = 1178, + [2009] = 1182, + [2010] = 1187, + [2011] = 1188, + [2012] = 1190, + [2013] = 1196, + [2014] = 1198, + [2015] = 1199, + [2016] = 1201, + [2017] = 1261, + [2018] = 1203, + [2019] = 1205, + [2020] = 1209, + [2021] = 1210, + [2022] = 1213, + [2023] = 1218, + [2024] = 1220, + [2025] = 1222, + [2026] = 1224, + [2027] = 1226, + [2028] = 1227, + [2029] = 1232, + [2030] = 1239, + [2031] = 1242, + [2032] = 1130, + [2033] = 2033, + [2034] = 1153, + [2035] = 1169, + [2036] = 1133, + [2037] = 1139, + [2038] = 1144, + [2039] = 1164, + [2040] = 1167, + [2041] = 1181, + [2042] = 1185, + [2043] = 1191, + [2044] = 1206, + [2045] = 1257, + [2046] = 1135, + [2047] = 1148, + [2048] = 1165, + [2049] = 1168, + [2050] = 1177, + [2051] = 1180, + [2052] = 2052, + [2053] = 1186, + [2054] = 1192, + [2055] = 1195, + [2056] = 1197, + [2057] = 1200, + [2058] = 1214, + [2059] = 1216, + [2060] = 1225, + [2061] = 1250, + [2062] = 1253, + [2063] = 1131, + [2064] = 1132, + [2065] = 1134, + [2066] = 1136, + [2067] = 1138, + [2068] = 1147, + [2069] = 1152, + [2070] = 1154, + [2071] = 1155, + [2072] = 1157, + [2073] = 1159, + [2074] = 1161, + [2075] = 1163, + [2076] = 1166, + [2077] = 1170, + [2078] = 1172, + [2079] = 1173, + [2080] = 1174, + [2081] = 2081, + [2082] = 922, + [2083] = 1979, + [2084] = 2084, + [2085] = 1459, + [2086] = 336, + [2087] = 2087, + [2088] = 923, + [2089] = 768, + [2090] = 2090, + [2091] = 1459, [2092] = 2092, - [2093] = 1476, - [2094] = 2000, - [2095] = 2000, - [2096] = 1476, - [2097] = 2097, - [2098] = 1145, - [2099] = 2099, - [2100] = 1203, - [2101] = 1141, - [2102] = 1204, - [2103] = 1226, - [2104] = 335, - [2105] = 368, - [2106] = 2000, - [2107] = 944, - [2108] = 949, - [2109] = 517, - [2110] = 1202, - [2111] = 1492, - [2112] = 920, - [2113] = 1500, - [2114] = 1492, - [2115] = 2115, - [2116] = 2116, - [2117] = 1500, - [2118] = 914, - [2119] = 2116, - [2120] = 918, - [2121] = 1086, - [2122] = 803, - [2123] = 352, - [2124] = 2115, - [2125] = 2116, - [2126] = 923, - [2127] = 2115, - [2128] = 1086, - [2129] = 2129, - [2130] = 367, - [2131] = 683, - [2132] = 353, - [2133] = 2133, - [2134] = 684, - [2135] = 676, - [2136] = 922, - [2137] = 940, - [2138] = 952, - [2139] = 1148, - [2140] = 916, - [2141] = 1150, - [2142] = 494, - [2143] = 1151, - [2144] = 1230, - [2145] = 1231, - [2146] = 1236, - [2147] = 1237, - [2148] = 2148, - [2149] = 1255, - [2150] = 1207, - [2151] = 847, - [2152] = 1137, - [2153] = 848, - [2154] = 849, - [2155] = 850, - [2156] = 517, - [2157] = 864, - [2158] = 865, - [2159] = 1130, - [2160] = 798, - [2161] = 344, - [2162] = 345, - [2163] = 338, - [2164] = 804, - [2165] = 686, - [2166] = 346, - [2167] = 347, - [2168] = 348, - [2169] = 942, - [2170] = 1148, - [2171] = 1149, - [2172] = 1150, - [2173] = 1151, - [2174] = 1230, - [2175] = 1231, - [2176] = 1236, - [2177] = 1237, - [2178] = 1255, - [2179] = 1207, - [2180] = 1137, - [2181] = 1130, - [2182] = 2182, - [2183] = 811, - [2184] = 934, - [2185] = 2148, - [2186] = 935, - [2187] = 936, - [2188] = 937, - [2189] = 491, - [2190] = 374, - [2191] = 927, - [2192] = 2192, - [2193] = 2148, - [2194] = 820, - [2195] = 2195, - [2196] = 2196, - [2197] = 839, - [2198] = 900, - [2199] = 2199, - [2200] = 679, - [2201] = 1583, - [2202] = 2182, - [2203] = 938, - [2204] = 2148, - [2205] = 2205, - [2206] = 2182, - [2207] = 2182, - [2208] = 2182, - [2209] = 2182, - [2210] = 2182, - [2211] = 2182, - [2212] = 1583, - [2213] = 680, - [2214] = 1149, - [2215] = 2215, + [2093] = 2093, + [2094] = 2094, + [2095] = 2095, + [2096] = 2096, + [2097] = 924, + [2098] = 369, + [2099] = 927, + [2100] = 963, + [2101] = 2101, + [2102] = 1008, + [2103] = 107, + [2104] = 1979, + [2105] = 1979, + [2106] = 2106, + [2107] = 1979, + [2108] = 1979, + [2109] = 1967, + [2110] = 1184, + [2111] = 768, + [2112] = 1008, + [2113] = 352, + [2114] = 924, + [2115] = 353, + [2116] = 1504, + [2117] = 1505, + [2118] = 2118, + [2119] = 940, + [2120] = 2120, + [2121] = 2121, + [2122] = 346, + [2123] = 711, + [2124] = 2124, + [2125] = 1504, + [2126] = 2120, + [2127] = 2121, + [2128] = 1505, + [2129] = 697, + [2130] = 2120, + [2131] = 2121, + [2132] = 927, + [2133] = 963, + [2134] = 1008, + [2135] = 770, + [2136] = 1510, + [2137] = 528, + [2138] = 2138, + [2139] = 1236, + [2140] = 2140, + [2141] = 2141, + [2142] = 1245, + [2143] = 1247, + [2144] = 1252, + [2145] = 1211, + [2146] = 1215, + [2147] = 1217, + [2148] = 1221, + [2149] = 1223, + [2150] = 1228, + [2151] = 1233, + [2152] = 1235, + [2153] = 1236, + [2154] = 1245, + [2155] = 1247, + [2156] = 1252, + [2157] = 717, + [2158] = 718, + [2159] = 2159, + [2160] = 930, + [2161] = 956, + [2162] = 2162, + [2163] = 344, + [2164] = 931, + [2165] = 338, + [2166] = 345, + [2167] = 2167, + [2168] = 793, + [2169] = 347, + [2170] = 348, + [2171] = 349, + [2172] = 699, + [2173] = 943, + [2174] = 833, + [2175] = 1223, + [2176] = 671, + [2177] = 944, + [2178] = 954, + [2179] = 896, + [2180] = 694, + [2181] = 693, + [2182] = 1211, + [2183] = 2159, + [2184] = 1215, + [2185] = 2159, + [2186] = 1217, + [2187] = 374, + [2188] = 898, + [2189] = 2159, + [2190] = 881, + [2191] = 2159, + [2192] = 883, + [2193] = 1233, + [2194] = 2159, + [2195] = 1235, + [2196] = 2159, + [2197] = 2159, + [2198] = 897, + [2199] = 497, + [2200] = 1221, + [2201] = 485, + [2202] = 841, + [2203] = 1510, + [2204] = 876, + [2205] = 1228, + [2206] = 878, + [2207] = 942, + [2208] = 846, + [2209] = 910, + [2210] = 937, + [2211] = 2211, + [2212] = 2212, + [2213] = 2213, + [2214] = 2214, + [2215] = 2214, [2216] = 2216, - [2217] = 2217, - [2218] = 2216, - [2219] = 683, + [2217] = 2216, + [2218] = 2211, + [2219] = 2214, [2220] = 2216, - [2221] = 2216, - [2222] = 2216, - [2223] = 2223, + [2221] = 2211, + [2222] = 2214, + [2223] = 697, [2224] = 2216, - [2225] = 1476, - [2226] = 2226, - [2227] = 2227, - [2228] = 2223, - [2229] = 2229, - [2230] = 517, - [2231] = 338, - [2232] = 345, - [2233] = 1500, - [2234] = 348, - [2235] = 1476, - [2236] = 2236, + [2225] = 2214, + [2226] = 2214, + [2227] = 2211, + [2228] = 2228, + [2229] = 2213, + [2230] = 528, + [2231] = 1459, + [2232] = 2232, + [2233] = 2233, + [2234] = 345, + [2235] = 1967, + [2236] = 1459, [2237] = 2237, - [2238] = 1492, - [2239] = 346, + [2238] = 2238, + [2239] = 1505, [2240] = 2240, - [2241] = 2241, - [2242] = 683, - [2243] = 344, + [2241] = 697, + [2242] = 347, + [2243] = 348, [2244] = 2244, - [2245] = 347, + [2245] = 2245, [2246] = 2246, - [2247] = 2066, - [2248] = 2248, - [2249] = 1492, - [2250] = 1500, - [2251] = 2251, - [2252] = 1583, - [2253] = 2253, - [2254] = 1583, - [2255] = 2255, + [2247] = 344, + [2248] = 349, + [2249] = 2249, + [2250] = 338, + [2251] = 1504, + [2252] = 1504, + [2253] = 1505, + [2254] = 2254, + [2255] = 1510, [2256] = 2256, - [2257] = 2257, - [2258] = 2255, - [2259] = 2259, - [2260] = 2253, + [2257] = 1510, + [2258] = 2258, + [2259] = 2258, + [2260] = 2260, [2261] = 2261, - [2262] = 374, - [2263] = 334, - [2264] = 2264, - [2265] = 2265, - [2266] = 2266, - [2267] = 333, + [2262] = 2262, + [2263] = 2263, + [2264] = 2256, + [2265] = 374, + [2266] = 333, + [2267] = 2267, [2268] = 2268, - [2269] = 2269, - [2270] = 2270, + [2269] = 335, + [2270] = 2268, [2271] = 2271, [2272] = 2272, [2273] = 2273, @@ -7087,12 +7080,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2278] = 2278, [2279] = 2279, [2280] = 2280, - [2281] = 2280, - [2282] = 379, - [2283] = 340, - [2284] = 341, - [2285] = 403, - [2286] = 405, + [2281] = 2281, + [2282] = 2282, + [2283] = 2283, + [2284] = 2284, + [2285] = 2285, + [2286] = 2286, [2287] = 2287, [2288] = 2288, [2289] = 2289, @@ -7100,466 +7093,466 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2291] = 2291, [2292] = 2292, [2293] = 2293, - [2294] = 2294, - [2295] = 2295, - [2296] = 488, - [2297] = 2297, - [2298] = 399, - [2299] = 391, - [2300] = 479, + [2294] = 341, + [2295] = 342, + [2296] = 411, + [2297] = 402, + [2298] = 378, + [2299] = 378, + [2300] = 478, [2301] = 333, - [2302] = 483, - [2303] = 368, - [2304] = 411, - [2305] = 379, - [2306] = 334, - [2307] = 341, - [2308] = 2308, - [2309] = 379, - [2310] = 344, - [2311] = 345, - [2312] = 338, - [2313] = 411, - [2314] = 346, - [2315] = 347, - [2316] = 348, - [2317] = 399, - [2318] = 404, - [2319] = 400, - [2320] = 401, - [2321] = 402, - [2322] = 2322, - [2323] = 2323, - [2324] = 2324, - [2325] = 2325, - [2326] = 2326, - [2327] = 92, - [2328] = 93, - [2329] = 340, - [2330] = 391, - [2331] = 2308, - [2332] = 2322, - [2333] = 2323, - [2334] = 2324, - [2335] = 2325, - [2336] = 2326, - [2337] = 2337, - [2338] = 399, - [2339] = 2339, - [2340] = 92, - [2341] = 93, - [2342] = 335, - [2343] = 379, - [2344] = 450, - [2345] = 97, - [2346] = 99, - [2347] = 391, + [2302] = 403, + [2303] = 2303, + [2304] = 476, + [2305] = 395, + [2306] = 494, + [2307] = 369, + [2308] = 335, + [2309] = 399, + [2310] = 2310, + [2311] = 342, + [2312] = 2310, + [2313] = 2313, + [2314] = 2314, + [2315] = 2315, + [2316] = 2316, + [2317] = 2317, + [2318] = 2313, + [2319] = 344, + [2320] = 338, + [2321] = 345, + [2322] = 92, + [2323] = 347, + [2324] = 348, + [2325] = 410, + [2326] = 403, + [2327] = 349, + [2328] = 404, + [2329] = 406, + [2330] = 408, + [2331] = 399, + [2332] = 395, + [2333] = 378, + [2334] = 93, + [2335] = 2315, + [2336] = 2316, + [2337] = 341, + [2338] = 2317, + [2339] = 2314, + [2340] = 403, + [2341] = 2341, + [2342] = 2342, + [2343] = 369, + [2344] = 2344, + [2345] = 94, + [2346] = 395, + [2347] = 378, [2348] = 2348, - [2349] = 404, - [2350] = 400, - [2351] = 401, - [2352] = 402, - [2353] = 411, - [2354] = 368, - [2355] = 2355, - [2356] = 2356, - [2357] = 345, - [2358] = 399, - [2359] = 2359, - [2360] = 348, - [2361] = 99, - [2362] = 92, - [2363] = 338, - [2364] = 443, - [2365] = 346, - [2366] = 450, - [2367] = 2367, - [2368] = 353, - [2369] = 411, - [2370] = 2370, - [2371] = 2371, - [2372] = 112, - [2373] = 367, - [2374] = 347, - [2375] = 109, - [2376] = 113, - [2377] = 93, - [2378] = 446, - [2379] = 2379, - [2380] = 2380, - [2381] = 2381, - [2382] = 2382, + [2349] = 436, + [2350] = 2350, + [2351] = 92, + [2352] = 93, + [2353] = 399, + [2354] = 410, + [2355] = 404, + [2356] = 406, + [2357] = 408, + [2358] = 336, + [2359] = 95, + [2360] = 92, + [2361] = 347, + [2362] = 410, + [2363] = 349, + [2364] = 348, + [2365] = 404, + [2366] = 406, + [2367] = 403, + [2368] = 352, + [2369] = 449, + [2370] = 408, + [2371] = 436, + [2372] = 344, + [2373] = 2373, + [2374] = 2374, + [2375] = 2375, + [2376] = 2376, + [2377] = 106, + [2378] = 338, + [2379] = 345, + [2380] = 107, + [2381] = 399, + [2382] = 395, [2383] = 2383, - [2384] = 352, - [2385] = 404, - [2386] = 498, - [2387] = 400, - [2388] = 401, - [2389] = 476, - [2390] = 402, - [2391] = 2391, + [2384] = 2384, + [2385] = 2385, + [2386] = 2386, + [2387] = 94, + [2388] = 2388, + [2389] = 105, + [2390] = 93, + [2391] = 496, [2392] = 2392, - [2393] = 97, - [2394] = 391, - [2395] = 344, + [2393] = 492, + [2394] = 447, + [2395] = 353, [2396] = 2396, - [2397] = 2397, - [2398] = 464, - [2399] = 93, + [2397] = 346, + [2398] = 95, + [2399] = 333, [2400] = 2400, - [2401] = 374, - [2402] = 403, - [2403] = 443, - [2404] = 400, - [2405] = 2405, - [2406] = 334, - [2407] = 334, - [2408] = 109, - [2409] = 404, - [2410] = 2410, - [2411] = 113, - [2412] = 2412, - [2413] = 942, - [2414] = 446, - [2415] = 455, - [2416] = 379, - [2417] = 2417, - [2418] = 112, + [2401] = 410, + [2402] = 408, + [2403] = 406, + [2404] = 93, + [2405] = 335, + [2406] = 378, + [2407] = 2407, + [2408] = 106, + [2409] = 2409, + [2410] = 107, + [2411] = 2411, + [2412] = 411, + [2413] = 402, + [2414] = 2414, + [2415] = 956, + [2416] = 94, + [2417] = 404, + [2418] = 92, [2419] = 2419, - [2420] = 2420, + [2420] = 95, [2421] = 2421, - [2422] = 333, - [2423] = 937, - [2424] = 401, - [2425] = 405, - [2426] = 99, + [2422] = 474, + [2423] = 2423, + [2424] = 937, + [2425] = 447, + [2426] = 897, [2427] = 2427, - [2428] = 402, - [2429] = 97, - [2430] = 927, - [2431] = 450, - [2432] = 938, - [2433] = 2433, - [2434] = 92, - [2435] = 2435, - [2436] = 2436, - [2437] = 341, - [2438] = 455, - [2439] = 464, - [2440] = 391, - [2441] = 92, - [2442] = 93, - [2443] = 485, - [2444] = 475, - [2445] = 478, - [2446] = 450, - [2447] = 340, - [2448] = 97, - [2449] = 333, - [2450] = 99, - [2451] = 2451, - [2452] = 334, - [2453] = 545, - [2454] = 403, - [2455] = 411, - [2456] = 399, - [2457] = 446, - [2458] = 405, - [2459] = 344, - [2460] = 112, - [2461] = 345, - [2462] = 338, - [2463] = 2463, - [2464] = 109, - [2465] = 346, - [2466] = 347, - [2467] = 348, - [2468] = 113, - [2469] = 483, - [2470] = 499, - [2471] = 488, - [2472] = 479, - [2473] = 443, - [2474] = 544, - [2475] = 345, - [2476] = 446, - [2477] = 333, - [2478] = 97, - [2479] = 2479, - [2480] = 346, - [2481] = 443, - [2482] = 368, - [2483] = 347, - [2484] = 404, - [2485] = 455, - [2486] = 348, - [2487] = 464, - [2488] = 1841, - [2489] = 446, - [2490] = 485, - [2491] = 403, - [2492] = 475, - [2493] = 99, - [2494] = 112, - [2495] = 334, - [2496] = 338, - [2497] = 109, - [2498] = 405, - [2499] = 113, - [2500] = 400, - [2501] = 401, - [2502] = 402, - [2503] = 335, - [2504] = 340, - [2505] = 443, - [2506] = 544, - [2507] = 341, - [2508] = 344, - [2509] = 545, - [2510] = 478, - [2511] = 368, - [2512] = 464, - [2513] = 403, - [2514] = 488, - [2515] = 498, - [2516] = 479, - [2517] = 2517, - [2518] = 476, - [2519] = 109, - [2520] = 353, - [2521] = 346, - [2522] = 347, - [2523] = 348, - [2524] = 335, - [2525] = 113, - [2526] = 455, - [2527] = 464, - [2528] = 368, - [2529] = 443, - [2530] = 446, - [2531] = 2531, - [2532] = 2532, - [2533] = 2533, - [2534] = 333, - [2535] = 455, - [2536] = 405, - [2537] = 2517, - [2538] = 485, - [2539] = 475, - [2540] = 478, - [2541] = 1841, - [2542] = 2542, - [2543] = 344, - [2544] = 544, - [2545] = 2545, - [2546] = 345, - [2547] = 545, - [2548] = 2517, - [2549] = 446, - [2550] = 443, - [2551] = 2517, - [2552] = 367, - [2553] = 338, - [2554] = 340, - [2555] = 677, - [2556] = 483, - [2557] = 352, - [2558] = 112, - [2559] = 499, - [2560] = 681, - [2561] = 704, - [2562] = 705, - [2563] = 707, - [2564] = 341, - [2565] = 2565, - [2566] = 346, - [2567] = 803, - [2568] = 914, - [2569] = 464, - [2570] = 944, - [2571] = 2531, - [2572] = 949, - [2573] = 951, - [2574] = 899, - [2575] = 2532, - [2576] = 903, - [2577] = 2533, - [2578] = 2578, - [2579] = 2579, - [2580] = 2580, - [2581] = 483, - [2582] = 499, - [2583] = 2427, - [2584] = 464, - [2585] = 2412, - [2586] = 335, - [2587] = 918, - [2588] = 347, - [2589] = 920, - [2590] = 544, - [2591] = 923, - [2592] = 2592, - [2593] = 2593, + [2428] = 2428, + [2429] = 463, + [2430] = 2430, + [2431] = 105, + [2432] = 2432, + [2433] = 333, + [2434] = 942, + [2435] = 374, + [2436] = 449, + [2437] = 2437, + [2438] = 2438, + [2439] = 436, + [2440] = 488, + [2441] = 2441, + [2442] = 107, + [2443] = 342, + [2444] = 2444, + [2445] = 95, + [2446] = 475, + [2447] = 335, + [2448] = 480, + [2449] = 344, + [2450] = 395, + [2451] = 94, + [2452] = 399, + [2453] = 411, + [2454] = 105, + [2455] = 338, + [2456] = 93, + [2457] = 92, + [2458] = 403, + [2459] = 106, + [2460] = 347, + [2461] = 348, + [2462] = 436, + [2463] = 449, + [2464] = 402, + [2465] = 474, + [2466] = 349, + [2467] = 333, + [2468] = 476, + [2469] = 479, + [2470] = 494, + [2471] = 544, + [2472] = 478, + [2473] = 341, + [2474] = 463, + [2475] = 447, + [2476] = 543, + [2477] = 345, + [2478] = 342, + [2479] = 463, + [2480] = 369, + [2481] = 338, + [2482] = 408, + [2483] = 544, + [2484] = 410, + [2485] = 105, + [2486] = 449, + [2487] = 336, + [2488] = 347, + [2489] = 333, + [2490] = 1828, + [2491] = 404, + [2492] = 106, + [2493] = 348, + [2494] = 2494, + [2495] = 406, + [2496] = 447, + [2497] = 107, + [2498] = 345, + [2499] = 344, + [2500] = 94, + [2501] = 341, + [2502] = 449, + [2503] = 95, + [2504] = 411, + [2505] = 488, + [2506] = 543, + [2507] = 475, + [2508] = 480, + [2509] = 402, + [2510] = 447, + [2511] = 335, + [2512] = 369, + [2513] = 474, + [2514] = 349, + [2515] = 463, + [2516] = 345, + [2517] = 449, + [2518] = 2518, + [2519] = 352, + [2520] = 2520, + [2521] = 447, + [2522] = 341, + [2523] = 475, + [2524] = 336, + [2525] = 2525, + [2526] = 2526, + [2527] = 480, + [2528] = 1828, + [2529] = 492, + [2530] = 705, + [2531] = 476, + [2532] = 342, + [2533] = 353, + [2534] = 2520, + [2535] = 449, + [2536] = 344, + [2537] = 494, + [2538] = 106, + [2539] = 349, + [2540] = 107, + [2541] = 338, + [2542] = 543, + [2543] = 474, + [2544] = 496, + [2545] = 105, + [2546] = 347, + [2547] = 479, + [2548] = 2520, + [2549] = 335, + [2550] = 695, + [2551] = 679, + [2552] = 680, + [2553] = 681, + [2554] = 2554, + [2555] = 447, + [2556] = 474, + [2557] = 348, + [2558] = 369, + [2559] = 2559, + [2560] = 2520, + [2561] = 463, + [2562] = 346, + [2563] = 544, + [2564] = 488, + [2565] = 402, + [2566] = 478, + [2567] = 411, + [2568] = 940, + [2569] = 2411, + [2570] = 341, + [2571] = 924, + [2572] = 480, + [2573] = 480, + [2574] = 2400, + [2575] = 2575, + [2576] = 922, + [2577] = 2577, + [2578] = 474, + [2579] = 352, + [2580] = 492, + [2581] = 463, + [2582] = 2582, + [2583] = 2583, + [2584] = 543, + [2585] = 923, + [2586] = 2526, + [2587] = 336, + [2588] = 907, + [2589] = 494, + [2590] = 344, + [2591] = 2591, + [2592] = 476, + [2593] = 2430, [2594] = 2594, - [2595] = 2420, - [2596] = 488, - [2597] = 348, + [2595] = 544, + [2596] = 353, + [2597] = 927, [2598] = 479, - [2599] = 545, - [2600] = 2600, - [2601] = 2397, - [2602] = 443, - [2603] = 455, - [2604] = 485, - [2605] = 446, - [2606] = 353, - [2607] = 367, - [2608] = 485, - [2609] = 368, - [2610] = 475, - [2611] = 476, - [2612] = 338, - [2613] = 340, - [2614] = 475, - [2615] = 478, - [2616] = 341, - [2617] = 478, - [2618] = 498, - [2619] = 352, - [2620] = 677, - [2621] = 2400, - [2622] = 2405, - [2623] = 455, - [2624] = 344, - [2625] = 681, - [2626] = 2600, - [2627] = 704, - [2628] = 705, - [2629] = 707, - [2630] = 345, - [2631] = 2631, - [2632] = 914, - [2633] = 494, - [2634] = 443, - [2635] = 545, - [2636] = 2636, - [2637] = 1948, - [2638] = 464, - [2639] = 499, - [2640] = 352, - [2641] = 478, - [2642] = 494, - [2643] = 446, - [2644] = 498, - [2645] = 2579, - [2646] = 462, - [2647] = 479, - [2648] = 920, - [2649] = 491, - [2650] = 478, - [2651] = 944, - [2652] = 353, - [2653] = 923, - [2654] = 2580, - [2655] = 2655, - [2656] = 476, - [2657] = 2578, - [2658] = 2592, - [2659] = 367, - [2660] = 475, - [2661] = 2565, - [2662] = 949, - [2663] = 2593, - [2664] = 2664, - [2665] = 491, - [2666] = 951, - [2667] = 485, - [2668] = 488, + [2599] = 447, + [2600] = 496, + [2601] = 963, + [2602] = 488, + [2603] = 346, + [2604] = 2604, + [2605] = 338, + [2606] = 705, + [2607] = 2421, + [2608] = 2608, + [2609] = 345, + [2610] = 463, + [2611] = 347, + [2612] = 348, + [2613] = 349, + [2614] = 919, + [2615] = 475, + [2616] = 2525, + [2617] = 488, + [2618] = 768, + [2619] = 2423, + [2620] = 478, + [2621] = 369, + [2622] = 2622, + [2623] = 2428, + [2624] = 2518, + [2625] = 695, + [2626] = 949, + [2627] = 475, + [2628] = 679, + [2629] = 680, + [2630] = 681, + [2631] = 449, + [2632] = 2622, + [2633] = 474, + [2634] = 342, + [2635] = 485, + [2636] = 2575, + [2637] = 2604, + [2638] = 455, + [2639] = 447, + [2640] = 480, + [2641] = 2641, + [2642] = 2642, + [2643] = 907, + [2644] = 2644, + [2645] = 2582, + [2646] = 476, + [2647] = 924, + [2648] = 705, + [2649] = 695, + [2650] = 679, + [2651] = 680, + [2652] = 681, + [2653] = 480, + [2654] = 2654, + [2655] = 492, + [2656] = 2583, + [2657] = 949, + [2658] = 496, + [2659] = 922, + [2660] = 1008, + [2661] = 352, + [2662] = 485, + [2663] = 346, + [2664] = 768, + [2665] = 1917, + [2666] = 449, + [2667] = 488, + [2668] = 457, [2669] = 2669, - [2670] = 2670, - [2671] = 475, - [2672] = 677, - [2673] = 681, - [2674] = 704, - [2675] = 705, - [2676] = 707, - [2677] = 2594, - [2678] = 899, - [2679] = 2679, - [2680] = 903, - [2681] = 918, - [2682] = 2682, - [2683] = 460, - [2684] = 803, - [2685] = 483, - [2686] = 1086, - [2687] = 374, - [2688] = 544, - [2689] = 2631, + [2670] = 923, + [2671] = 2591, + [2672] = 2672, + [2673] = 2594, + [2674] = 479, + [2675] = 474, + [2676] = 374, + [2677] = 919, + [2678] = 494, + [2679] = 2577, + [2680] = 497, + [2681] = 927, + [2682] = 544, + [2683] = 475, + [2684] = 488, + [2685] = 543, + [2686] = 963, + [2687] = 497, + [2688] = 475, + [2689] = 353, [2690] = 2690, - [2691] = 455, - [2692] = 485, - [2693] = 483, + [2691] = 2608, + [2692] = 940, + [2693] = 478, [2694] = 2694, - [2695] = 2695, + [2695] = 463, [2696] = 2696, - [2697] = 2697, + [2697] = 681, [2698] = 2698, [2699] = 2699, - [2700] = 944, - [2701] = 494, + [2700] = 2700, + [2701] = 2701, [2702] = 2702, [2703] = 2703, [2704] = 2704, - [2705] = 374, + [2705] = 2705, [2706] = 2706, - [2707] = 2707, + [2707] = 485, [2708] = 2708, [2709] = 2709, [2710] = 2710, - [2711] = 1086, + [2711] = 2711, [2712] = 2712, - [2713] = 2713, + [2713] = 497, [2714] = 2714, [2715] = 2715, - [2716] = 2716, - [2717] = 2717, + [2716] = 683, + [2717] = 684, [2718] = 2718, [2719] = 2719, [2720] = 2720, [2721] = 2721, - [2722] = 460, - [2723] = 2669, - [2724] = 2670, + [2722] = 2722, + [2723] = 2723, + [2724] = 488, [2725] = 2725, [2726] = 2726, [2727] = 2727, - [2728] = 2728, - [2729] = 2729, + [2728] = 685, + [2729] = 475, [2730] = 2730, [2731] = 2731, - [2732] = 2732, + [2732] = 480, [2733] = 2733, - [2734] = 491, - [2735] = 949, - [2736] = 951, + [2734] = 686, + [2735] = 2735, + [2736] = 2736, [2737] = 2737, [2738] = 2738, - [2739] = 443, + [2739] = 2739, [2740] = 2740, [2741] = 2741, [2742] = 2742, [2743] = 2743, - [2744] = 464, - [2745] = 2745, + [2744] = 2744, + [2745] = 940, [2746] = 2746, - [2747] = 899, - [2748] = 2748, - [2749] = 2749, - [2750] = 443, + [2747] = 2747, + [2748] = 474, + [2749] = 949, + [2750] = 374, [2751] = 2751, [2752] = 2752, - [2753] = 903, + [2753] = 2753, [2754] = 2754, [2755] = 2755, [2756] = 2756, @@ -7567,40 +7560,40 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2758] = 2758, [2759] = 2759, [2760] = 2760, - [2761] = 2761, - [2762] = 455, - [2763] = 2763, + [2761] = 705, + [2762] = 2762, + [2763] = 907, [2764] = 2764, - [2765] = 2765, - [2766] = 2766, + [2765] = 919, + [2766] = 463, [2767] = 2767, - [2768] = 2768, - [2769] = 803, - [2770] = 2770, + [2768] = 922, + [2769] = 2769, + [2770] = 923, [2771] = 2771, - [2772] = 2772, - [2773] = 918, + [2772] = 457, + [2773] = 2773, [2774] = 2774, [2775] = 2775, [2776] = 2776, - [2777] = 2777, - [2778] = 2778, - [2779] = 2779, + [2777] = 768, + [2778] = 924, + [2779] = 695, [2780] = 2780, [2781] = 2781, - [2782] = 2782, - [2783] = 2783, - [2784] = 2784, + [2782] = 2641, + [2783] = 2642, + [2784] = 447, [2785] = 2785, [2786] = 2786, [2787] = 2787, [2788] = 2788, [2789] = 2789, - [2790] = 2790, + [2790] = 963, [2791] = 2791, [2792] = 2792, [2793] = 2793, - [2794] = 1948, + [2794] = 2794, [2795] = 2795, [2796] = 2796, [2797] = 2797, @@ -7613,1396 +7606,1396 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2804] = 2804, [2805] = 2805, [2806] = 2806, - [2807] = 2807, + [2807] = 455, [2808] = 2808, [2809] = 2809, [2810] = 2810, - [2811] = 2811, + [2811] = 449, [2812] = 2812, [2813] = 2813, [2814] = 2814, - [2815] = 462, + [2815] = 2815, [2816] = 2816, [2817] = 2817, - [2818] = 485, + [2818] = 2818, [2819] = 2819, [2820] = 2820, - [2821] = 2821, + [2821] = 449, [2822] = 2822, - [2823] = 475, - [2824] = 677, - [2825] = 478, + [2823] = 2823, + [2824] = 2824, + [2825] = 2825, [2826] = 2826, - [2827] = 681, - [2828] = 920, + [2827] = 1008, + [2828] = 1917, [2829] = 2829, - [2830] = 923, - [2831] = 446, + [2830] = 2830, + [2831] = 2831, [2832] = 2832, - [2833] = 704, - [2834] = 705, - [2835] = 707, + [2833] = 2303, + [2834] = 2834, + [2835] = 2835, [2836] = 2836, [2837] = 2837, [2838] = 2838, [2839] = 2839, - [2840] = 2297, + [2840] = 2840, [2841] = 2841, [2842] = 2842, - [2843] = 2843, + [2843] = 2081, [2844] = 2844, [2845] = 2845, [2846] = 2846, - [2847] = 2847, - [2848] = 2848, - [2849] = 2075, - [2850] = 499, - [2851] = 498, - [2852] = 479, - [2853] = 476, - [2854] = 488, + [2847] = 479, + [2848] = 496, + [2849] = 478, + [2850] = 492, + [2851] = 476, + [2852] = 494, + [2853] = 2853, + [2854] = 2854, [2855] = 2855, - [2856] = 709, - [2857] = 691, + [2856] = 2856, + [2857] = 2857, [2858] = 2858, - [2859] = 672, - [2860] = 673, - [2861] = 914, + [2859] = 2859, + [2860] = 2860, + [2861] = 2861, [2862] = 2862, - [2863] = 2863, + [2863] = 679, [2864] = 2864, - [2865] = 2865, - [2866] = 672, - [2867] = 927, - [2868] = 2868, - [2869] = 462, - [2870] = 684, - [2871] = 709, - [2872] = 2872, - [2873] = 2748, - [2874] = 2749, - [2875] = 475, - [2876] = 2751, - [2877] = 2752, - [2878] = 2878, - [2879] = 691, - [2880] = 2880, - [2881] = 478, + [2865] = 680, + [2866] = 2866, + [2867] = 2867, + [2868] = 927, + [2869] = 711, + [2870] = 2767, + [2871] = 942, + [2872] = 2769, + [2873] = 2795, + [2874] = 2819, + [2875] = 2875, + [2876] = 923, + [2877] = 956, + [2878] = 455, + [2879] = 2803, + [2880] = 2798, + [2881] = 2881, [2882] = 2882, - [2883] = 2883, - [2884] = 679, - [2885] = 2885, - [2886] = 2886, - [2887] = 374, - [2888] = 2400, - [2889] = 2889, - [2890] = 379, - [2891] = 704, - [2892] = 705, - [2893] = 460, - [2894] = 2894, - [2895] = 485, - [2896] = 918, - [2897] = 914, - [2898] = 681, - [2899] = 707, - [2900] = 686, - [2901] = 2412, - [2902] = 2754, - [2903] = 2755, - [2904] = 2756, - [2905] = 2757, - [2906] = 2758, - [2907] = 2759, - [2908] = 2760, - [2909] = 2075, - [2910] = 2910, - [2911] = 944, - [2912] = 920, - [2913] = 923, - [2914] = 2761, - [2915] = 2764, - [2916] = 2765, - [2917] = 2766, - [2918] = 803, - [2919] = 2768, + [2883] = 475, + [2884] = 2884, + [2885] = 927, + [2886] = 907, + [2887] = 480, + [2888] = 2797, + [2889] = 374, + [2890] = 2428, + [2891] = 2430, + [2892] = 949, + [2893] = 2893, + [2894] = 2775, + [2895] = 2776, + [2896] = 2780, + [2897] = 2400, + [2898] = 922, + [2899] = 2781, + [2900] = 768, + [2901] = 1008, + [2902] = 711, + [2903] = 2423, + [2904] = 2793, + [2905] = 2794, + [2906] = 2906, + [2907] = 2907, + [2908] = 2908, + [2909] = 378, + [2910] = 2081, + [2911] = 694, + [2912] = 2840, + [2913] = 2913, + [2914] = 2914, + [2915] = 683, + [2916] = 684, + [2917] = 919, + [2918] = 2771, + [2919] = 963, [2920] = 2920, - [2921] = 2847, - [2922] = 2740, - [2923] = 2923, - [2924] = 949, - [2925] = 2706, - [2926] = 951, - [2927] = 2927, - [2928] = 899, - [2929] = 684, - [2930] = 938, - [2931] = 903, - [2932] = 2427, - [2933] = 2420, - [2934] = 2934, - [2935] = 2882, - [2936] = 2400, - [2937] = 2883, - [2938] = 443, - [2939] = 455, - [2940] = 2741, - [2941] = 2941, - [2942] = 2743, - [2943] = 673, - [2944] = 2405, - [2945] = 2397, - [2946] = 937, - [2947] = 2947, - [2948] = 942, - [2949] = 464, - [2950] = 2950, - [2951] = 2712, - [2952] = 2412, - [2953] = 2746, - [2954] = 2954, - [2955] = 2405, - [2956] = 2956, - [2957] = 2957, - [2958] = 2956, - [2959] = 677, - [2960] = 2397, - [2961] = 2420, - [2962] = 2957, - [2963] = 1086, - [2964] = 2427, - [2965] = 2767, - [2966] = 680, - [2967] = 798, - [2968] = 2968, - [2969] = 811, - [2970] = 379, - [2971] = 813, + [2921] = 2796, + [2922] = 474, + [2923] = 2786, + [2924] = 2924, + [2925] = 2925, + [2926] = 463, + [2927] = 2710, + [2928] = 2928, + [2929] = 2800, + [2930] = 2930, + [2931] = 2931, + [2932] = 2421, + [2933] = 937, + [2934] = 457, + [2935] = 679, + [2936] = 2423, + [2937] = 680, + [2938] = 2411, + [2939] = 924, + [2940] = 940, + [2941] = 2818, + [2942] = 2696, + [2943] = 681, + [2944] = 2875, + [2945] = 2430, + [2946] = 2428, + [2947] = 699, + [2948] = 685, + [2949] = 2949, + [2950] = 2400, + [2951] = 2951, + [2952] = 686, + [2953] = 2925, + [2954] = 2951, + [2955] = 705, + [2956] = 2799, + [2957] = 488, + [2958] = 2411, + [2959] = 2801, + [2960] = 2884, + [2961] = 897, + [2962] = 2962, + [2963] = 2802, + [2964] = 695, + [2965] = 2965, + [2966] = 2966, + [2967] = 2421, + [2968] = 449, + [2969] = 898, + [2970] = 2970, + [2971] = 2928, [2972] = 2972, - [2973] = 680, - [2974] = 391, + [2973] = 2973, + [2974] = 2974, [2975] = 2975, - [2976] = 922, - [2977] = 2977, + [2976] = 2976, + [2977] = 711, [2978] = 2978, - [2979] = 803, + [2979] = 2979, [2980] = 2980, - [2981] = 379, - [2982] = 914, - [2983] = 847, - [2984] = 443, - [2985] = 804, - [2986] = 843, - [2987] = 916, - [2988] = 942, - [2989] = 2989, - [2990] = 847, - [2991] = 944, - [2992] = 2947, - [2993] = 815, - [2994] = 2397, - [2995] = 2405, - [2996] = 844, - [2997] = 848, - [2998] = 2412, - [2999] = 849, - [3000] = 850, - [3001] = 3001, - [3002] = 845, - [3003] = 3003, - [3004] = 3004, - [3005] = 846, - [3006] = 3006, - [3007] = 3007, - [3008] = 918, - [3009] = 3009, - [3010] = 952, + [2981] = 2981, + [2982] = 772, + [2983] = 833, + [2984] = 2140, + [2985] = 2985, + [2986] = 2430, + [2987] = 930, + [2988] = 931, + [2989] = 896, + [2990] = 897, + [2991] = 2991, + [2992] = 841, + [2993] = 694, + [2994] = 2930, + [2995] = 399, + [2996] = 846, + [2997] = 768, + [2998] = 910, + [2999] = 940, + [3000] = 2428, + [3001] = 949, + [3002] = 2411, + [3003] = 876, + [3004] = 671, + [3005] = 878, + [3006] = 954, + [3007] = 2141, + [3008] = 693, + [3009] = 876, + [3010] = 907, [3011] = 3011, - [3012] = 3012, - [3013] = 3013, - [3014] = 3014, - [3015] = 849, - [3016] = 940, - [3017] = 952, - [3018] = 920, - [3019] = 850, - [3020] = 923, - [3021] = 934, - [3022] = 922, - [3023] = 935, - [3024] = 676, - [3025] = 2885, - [3026] = 798, - [3027] = 936, - [3028] = 937, - [3029] = 684, + [3012] = 878, + [3013] = 919, + [3014] = 922, + [3015] = 488, + [3016] = 923, + [3017] = 3017, + [3018] = 475, + [3019] = 480, + [3020] = 2924, + [3021] = 2400, + [3022] = 881, + [3023] = 883, + [3024] = 528, + [3025] = 3025, + [3026] = 3026, + [3027] = 770, + [3028] = 3028, + [3029] = 3029, [3030] = 3030, - [3031] = 3031, - [3032] = 679, - [3033] = 1086, + [3031] = 898, + [3032] = 3032, + [3033] = 822, [3034] = 3034, - [3035] = 2427, - [3036] = 3036, + [3035] = 825, + [3036] = 826, [3037] = 3037, - [3038] = 864, - [3039] = 3039, - [3040] = 865, - [3041] = 2920, - [3042] = 2889, - [3043] = 517, - [3044] = 3044, - [3045] = 2199, - [3046] = 686, - [3047] = 949, - [3048] = 927, - [3049] = 841, - [3050] = 3050, + [3038] = 829, + [3039] = 378, + [3040] = 881, + [3041] = 883, + [3042] = 3042, + [3043] = 3043, + [3044] = 403, + [3045] = 942, + [3046] = 378, + [3047] = 3047, + [3048] = 3048, + [3049] = 3049, + [3050] = 924, [3051] = 3051, - [3052] = 811, - [3053] = 3053, - [3054] = 3054, + [3052] = 937, + [3053] = 2162, + [3054] = 699, [3055] = 3055, - [3056] = 934, - [3057] = 935, - [3058] = 715, - [3059] = 485, + [3056] = 3056, + [3057] = 1008, + [3058] = 3058, + [3059] = 717, [3060] = 3060, - [3061] = 951, - [3062] = 2894, - [3063] = 899, - [3064] = 2355, - [3065] = 936, - [3066] = 2356, - [3067] = 2192, - [3068] = 2195, - [3069] = 2196, - [3070] = 411, - [3071] = 2868, - [3072] = 676, - [3073] = 3073, - [3074] = 3074, - [3075] = 2420, - [3076] = 916, + [3061] = 718, + [3062] = 927, + [3063] = 963, + [3064] = 943, + [3065] = 944, + [3066] = 837, + [3067] = 838, + [3068] = 943, + [3069] = 944, + [3070] = 839, + [3071] = 2421, + [3072] = 3072, + [3073] = 2881, + [3074] = 2344, + [3075] = 2949, + [3076] = 378, [3077] = 3077, - [3078] = 807, - [3079] = 3079, - [3080] = 820, + [3078] = 2350, + [3079] = 2962, + [3080] = 3080, [3081] = 3081, - [3082] = 3082, - [3083] = 903, + [3082] = 793, + [3083] = 3083, [3084] = 3084, [3085] = 3085, - [3086] = 2954, - [3087] = 3087, - [3088] = 839, - [3089] = 3089, - [3090] = 3090, - [3091] = 900, - [3092] = 3092, - [3093] = 3093, - [3094] = 3094, - [3095] = 842, - [3096] = 3096, - [3097] = 809, - [3098] = 2886, - [3099] = 3099, - [3100] = 820, - [3101] = 848, - [3102] = 379, - [3103] = 840, - [3104] = 804, - [3105] = 475, - [3106] = 478, - [3107] = 3107, - [3108] = 805, - [3109] = 3109, - [3110] = 399, - [3111] = 839, - [3112] = 900, - [3113] = 2400, - [3114] = 806, - [3115] = 812, - [3116] = 938, - [3117] = 940, + [3086] = 3086, + [3087] = 847, + [3088] = 449, + [3089] = 848, + [3090] = 849, + [3091] = 864, + [3092] = 793, + [3093] = 867, + [3094] = 2423, + [3095] = 869, + [3096] = 871, + [3097] = 3097, + [3098] = 3098, + [3099] = 717, + [3100] = 3100, + [3101] = 671, + [3102] = 718, + [3103] = 956, + [3104] = 833, + [3105] = 954, + [3106] = 693, + [3107] = 2931, + [3108] = 930, + [3109] = 931, + [3110] = 896, + [3111] = 3111, + [3112] = 2138, + [3113] = 841, + [3114] = 3114, + [3115] = 3115, + [3116] = 395, + [3117] = 3117, [3118] = 3118, - [3119] = 2910, - [3120] = 864, - [3121] = 3121, - [3122] = 865, - [3123] = 3123, - [3124] = 3124, - [3125] = 804, - [3126] = 3126, + [3119] = 3119, + [3120] = 3120, + [3121] = 846, + [3122] = 910, + [3123] = 2906, + [3124] = 770, + [3125] = 3125, + [3126] = 2913, [3127] = 3127, - [3128] = 3030, - [3129] = 3081, - [3130] = 379, - [3131] = 391, - [3132] = 3132, - [3133] = 2419, + [3128] = 3128, + [3129] = 3129, + [3130] = 697, + [3131] = 847, + [3132] = 3011, + [3133] = 3128, [3134] = 3134, - [3135] = 3135, - [3136] = 3004, - [3137] = 3137, - [3138] = 3138, - [3139] = 3036, - [3140] = 2359, - [3141] = 3141, - [3142] = 680, - [3143] = 3006, - [3144] = 922, - [3145] = 3145, - [3146] = 676, - [3147] = 3107, - [3148] = 3007, - [3149] = 916, - [3150] = 3150, - [3151] = 715, - [3152] = 3152, + [3135] = 395, + [3136] = 717, + [3137] = 718, + [3138] = 3049, + [3139] = 3072, + [3140] = 3051, + [3141] = 881, + [3142] = 3142, + [3143] = 3143, + [3144] = 3144, + [3145] = 846, + [3146] = 883, + [3147] = 848, + [3148] = 3148, + [3149] = 3149, + [3150] = 849, + [3151] = 3151, + [3152] = 403, [3153] = 3153, - [3154] = 683, - [3155] = 400, - [3156] = 391, - [3157] = 401, - [3158] = 3132, - [3159] = 402, - [3160] = 3051, - [3161] = 3161, - [3162] = 938, - [3163] = 940, - [3164] = 952, - [3165] = 3053, - [3166] = 798, - [3167] = 3060, - [3168] = 805, - [3169] = 806, - [3170] = 807, - [3171] = 809, - [3172] = 2392, - [3173] = 391, - [3174] = 411, - [3175] = 2199, - [3176] = 3031, - [3177] = 3177, - [3178] = 3081, - [3179] = 811, - [3180] = 3092, - [3181] = 934, - [3182] = 935, - [3183] = 936, - [3184] = 937, - [3185] = 812, - [3186] = 813, - [3187] = 815, - [3188] = 820, - [3189] = 927, - [3190] = 3190, - [3191] = 3191, - [3192] = 399, - [3193] = 411, - [3194] = 3003, - [3195] = 3195, - [3196] = 2435, - [3197] = 399, - [3198] = 839, - [3199] = 900, - [3200] = 849, - [3201] = 3201, - [3202] = 3127, - [3203] = 3203, - [3204] = 3127, - [3205] = 3205, - [3206] = 3206, - [3207] = 3207, - [3208] = 3014, - [3209] = 379, + [3154] = 864, + [3155] = 3155, + [3156] = 2376, + [3157] = 2388, + [3158] = 395, + [3159] = 867, + [3160] = 869, + [3161] = 399, + [3162] = 403, + [3163] = 930, + [3164] = 3086, + [3165] = 3165, + [3166] = 3166, + [3167] = 956, + [3168] = 910, + [3169] = 871, + [3170] = 2374, + [3171] = 2375, + [3172] = 3172, + [3173] = 3173, + [3174] = 3174, + [3175] = 3175, + [3176] = 3176, + [3177] = 837, + [3178] = 3100, + [3179] = 3111, + [3180] = 2373, + [3181] = 2407, + [3182] = 3182, + [3183] = 2409, + [3184] = 838, + [3185] = 403, + [3186] = 3186, + [3187] = 3086, + [3188] = 839, + [3189] = 2138, + [3190] = 937, + [3191] = 942, + [3192] = 770, + [3193] = 3193, + [3194] = 2384, + [3195] = 833, + [3196] = 3196, + [3197] = 2385, + [3198] = 898, + [3199] = 943, + [3200] = 841, + [3201] = 2141, + [3202] = 944, + [3203] = 2974, + [3204] = 2979, + [3205] = 671, + [3206] = 931, + [3207] = 2386, + [3208] = 2392, + [3209] = 2396, [3210] = 3210, - [3211] = 411, - [3212] = 3212, - [3213] = 3213, + [3211] = 3211, + [3212] = 378, + [3213] = 896, [3214] = 3214, - [3215] = 3012, - [3216] = 840, - [3217] = 841, - [3218] = 842, - [3219] = 843, - [3220] = 844, - [3221] = 845, + [3215] = 954, + [3216] = 772, + [3217] = 897, + [3218] = 399, + [3219] = 2140, + [3220] = 3048, + [3221] = 2162, [3222] = 3222, - [3223] = 2192, - [3224] = 864, - [3225] = 865, - [3226] = 3118, - [3227] = 846, - [3228] = 3077, - [3229] = 3079, - [3230] = 3087, - [3231] = 3001, - [3232] = 3055, - [3233] = 3090, - [3234] = 3099, - [3235] = 2978, - [3236] = 3037, - [3237] = 3096, - [3238] = 3054, - [3239] = 2367, - [3240] = 850, - [3241] = 2370, - [3242] = 399, - [3243] = 2195, - [3244] = 942, - [3245] = 2196, - [3246] = 3013, - [3247] = 2380, - [3248] = 2381, - [3249] = 2382, - [3250] = 2383, - [3251] = 3141, - [3252] = 3252, - [3253] = 2391, - [3254] = 2379, - [3255] = 3145, - [3256] = 3256, - [3257] = 404, - [3258] = 3152, - [3259] = 3259, + [3223] = 829, + [3224] = 3224, + [3225] = 3114, + [3226] = 410, + [3227] = 3117, + [3228] = 793, + [3229] = 3222, + [3230] = 3028, + [3231] = 693, + [3232] = 2975, + [3233] = 2976, + [3234] = 2978, + [3235] = 3025, + [3236] = 3032, + [3237] = 3034, + [3238] = 3055, + [3239] = 2981, + [3240] = 3120, + [3241] = 3043, + [3242] = 3125, + [3243] = 3118, + [3244] = 399, + [3245] = 3245, + [3246] = 3214, + [3247] = 3056, + [3248] = 395, + [3249] = 3249, + [3250] = 876, + [3251] = 3251, + [3252] = 822, + [3253] = 878, + [3254] = 3119, + [3255] = 3251, + [3256] = 3214, + [3257] = 378, + [3258] = 3127, + [3259] = 404, [3260] = 3260, - [3261] = 847, - [3262] = 848, - [3263] = 3124, - [3264] = 402, - [3265] = 3206, - [3266] = 3266, - [3267] = 3267, - [3268] = 93, - [3269] = 3207, - [3270] = 3210, - [3271] = 400, - [3272] = 401, - [3273] = 3273, + [3261] = 406, + [3262] = 825, + [3263] = 408, + [3264] = 826, + [3265] = 2972, + [3266] = 3196, + [3267] = 403, + [3268] = 839, + [3269] = 829, + [3270] = 528, + [3271] = 3271, + [3272] = 3129, + [3273] = 3245, [3274] = 3274, [3275] = 3275, - [3276] = 3276, - [3277] = 842, - [3278] = 3278, - [3279] = 3279, - [3280] = 3280, - [3281] = 402, + [3276] = 93, + [3277] = 849, + [3278] = 864, + [3279] = 867, + [3280] = 869, + [3281] = 871, [3282] = 3282, - [3283] = 3205, - [3284] = 3284, + [3283] = 3283, + [3284] = 93, [3285] = 3285, - [3286] = 3286, - [3287] = 3287, + [3286] = 3173, + [3287] = 3211, [3288] = 3288, [3289] = 3289, - [3290] = 3118, - [3291] = 809, - [3292] = 3191, - [3293] = 411, + [3290] = 3174, + [3291] = 3210, + [3292] = 3292, + [3293] = 3028, [3294] = 3294, [3295] = 3295, - [3296] = 3077, - [3297] = 3079, - [3298] = 3087, - [3299] = 3001, - [3300] = 3055, - [3301] = 3090, - [3302] = 3099, - [3303] = 3303, - [3304] = 2978, - [3305] = 3037, - [3306] = 3096, - [3307] = 3054, - [3308] = 93, - [3309] = 3309, - [3310] = 813, - [3311] = 3311, - [3312] = 93, - [3313] = 805, - [3314] = 3314, - [3315] = 334, - [3316] = 3316, - [3317] = 3134, - [3318] = 3289, - [3319] = 3126, - [3320] = 411, + [3296] = 3296, + [3297] = 3297, + [3298] = 3298, + [3299] = 2975, + [3300] = 2976, + [3301] = 2978, + [3302] = 3025, + [3303] = 3032, + [3304] = 3034, + [3305] = 3055, + [3306] = 3306, + [3307] = 2981, + [3308] = 3120, + [3309] = 3043, + [3310] = 3125, + [3311] = 3086, + [3312] = 3312, + [3313] = 3313, + [3314] = 403, + [3315] = 3315, + [3316] = 378, + [3317] = 3176, + [3318] = 3318, + [3319] = 3319, + [3320] = 404, [3321] = 3321, - [3322] = 3081, - [3323] = 3323, - [3324] = 3324, + [3322] = 3322, + [3323] = 3143, + [3324] = 406, [3325] = 3325, [3326] = 3326, - [3327] = 3201, - [3328] = 517, + [3327] = 3193, + [3328] = 3249, [3329] = 3329, - [3330] = 399, + [3330] = 3330, [3331] = 3331, [3332] = 3332, - [3333] = 3150, + [3333] = 3333, [3334] = 3334, - [3335] = 400, - [3336] = 401, - [3337] = 3337, + [3335] = 92, + [3336] = 3336, + [3337] = 3175, [3338] = 3338, [3339] = 3339, - [3340] = 3340, - [3341] = 92, + [3340] = 822, + [3341] = 408, [3342] = 3342, - [3343] = 846, + [3343] = 3343, [3344] = 3344, - [3345] = 3345, + [3345] = 410, [3346] = 3346, - [3347] = 404, - [3348] = 843, - [3349] = 400, - [3350] = 806, - [3351] = 92, - [3352] = 3214, - [3353] = 3135, - [3354] = 3354, + [3347] = 399, + [3348] = 3348, + [3349] = 772, + [3350] = 3350, + [3351] = 3351, + [3352] = 3352, + [3353] = 3353, + [3354] = 3312, [3355] = 3355, - [3356] = 815, - [3357] = 401, - [3358] = 3358, - [3359] = 844, - [3360] = 402, + [3356] = 404, + [3357] = 410, + [3358] = 410, + [3359] = 92, + [3360] = 3360, [3361] = 3361, - [3362] = 845, - [3363] = 3363, - [3364] = 93, - [3365] = 3153, + [3362] = 93, + [3363] = 406, + [3364] = 3364, + [3365] = 3365, [3366] = 3366, - [3367] = 3367, - [3368] = 377, - [3369] = 3369, - [3370] = 3370, - [3371] = 404, - [3372] = 3372, - [3373] = 715, + [3367] = 92, + [3368] = 3182, + [3369] = 3144, + [3370] = 390, + [3371] = 408, + [3372] = 3172, + [3373] = 3373, [3374] = 3374, - [3375] = 807, - [3376] = 840, - [3377] = 3190, - [3378] = 3127, - [3379] = 3379, - [3380] = 92, - [3381] = 3381, - [3382] = 379, - [3383] = 812, + [3375] = 404, + [3376] = 406, + [3377] = 3377, + [3378] = 3378, + [3379] = 408, + [3380] = 3380, + [3381] = 3214, + [3382] = 825, + [3383] = 92, [3384] = 3384, [3385] = 3385, [3386] = 3386, [3387] = 3387, - [3388] = 3259, - [3389] = 3389, - [3390] = 3390, + [3388] = 3388, + [3389] = 3224, + [3390] = 826, [3391] = 3391, - [3392] = 3392, + [3392] = 333, [3393] = 3393, [3394] = 3394, - [3395] = 92, - [3396] = 399, - [3397] = 3397, - [3398] = 3398, + [3395] = 399, + [3396] = 93, + [3397] = 837, + [3398] = 838, [3399] = 3399, - [3400] = 841, - [3401] = 3401, - [3402] = 404, - [3403] = 3212, - [3404] = 411, - [3405] = 406, - [3406] = 97, - [3407] = 99, - [3408] = 92, - [3409] = 93, + [3400] = 847, + [3401] = 848, + [3402] = 3402, + [3403] = 3403, + [3404] = 3404, + [3405] = 3405, + [3406] = 3406, + [3407] = 403, + [3408] = 95, + [3409] = 94, [3410] = 92, [3411] = 93, [3412] = 399, - [3413] = 398, - [3414] = 97, - [3415] = 99, - [3416] = 92, - [3417] = 93, - [3418] = 403, - [3419] = 3419, - [3420] = 97, - [3421] = 450, - [3422] = 97, - [3423] = 3423, - [3424] = 333, - [3425] = 683, - [3426] = 99, - [3427] = 3427, - [3428] = 3428, + [3413] = 92, + [3414] = 93, + [3415] = 409, + [3416] = 95, + [3417] = 94, + [3418] = 92, + [3419] = 411, + [3420] = 93, + [3421] = 3421, + [3422] = 402, + [3423] = 395, + [3424] = 95, + [3425] = 3425, + [3426] = 335, + [3427] = 697, + [3428] = 94, [3429] = 3429, [3430] = 3430, [3431] = 3431, - [3432] = 99, - [3433] = 3423, - [3434] = 3434, + [3432] = 3432, + [3433] = 3433, + [3434] = 3425, [3435] = 3435, - [3436] = 3423, - [3437] = 391, - [3438] = 3423, - [3439] = 3423, - [3440] = 3440, - [3441] = 3127, - [3442] = 405, - [3443] = 2479, - [3444] = 99, - [3445] = 443, - [3446] = 97, - [3447] = 109, - [3448] = 368, - [3449] = 113, - [3450] = 400, - [3451] = 99, - [3452] = 3452, + [3436] = 3436, + [3437] = 3425, + [3438] = 3425, + [3439] = 3425, + [3440] = 94, + [3441] = 398, + [3442] = 3214, + [3443] = 95, + [3444] = 3444, + [3445] = 436, + [3446] = 447, + [3447] = 95, + [3448] = 105, + [3449] = 369, + [3450] = 404, + [3451] = 406, + [3452] = 94, [3453] = 3453, [3454] = 3454, [3455] = 3455, [3456] = 3456, - [3457] = 401, - [3458] = 112, - [3459] = 402, - [3460] = 3452, + [3457] = 3457, + [3458] = 408, + [3459] = 105, + [3460] = 95, [3461] = 3453, - [3462] = 446, - [3463] = 443, - [3464] = 109, - [3465] = 97, - [3466] = 113, - [3467] = 344, - [3468] = 3468, - [3469] = 112, - [3470] = 345, - [3471] = 3471, + [3462] = 3454, + [3463] = 447, + [3464] = 449, + [3465] = 106, + [3466] = 344, + [3467] = 107, + [3468] = 105, + [3469] = 3469, + [3470] = 338, + [3471] = 345, [3472] = 3472, [3473] = 3473, - [3474] = 3454, - [3475] = 338, - [3476] = 3455, - [3477] = 443, - [3478] = 3471, + [3474] = 3474, + [3475] = 3455, + [3476] = 447, + [3477] = 3456, + [3478] = 449, [3479] = 3472, - [3480] = 446, - [3481] = 443, - [3482] = 3452, + [3480] = 3473, + [3481] = 2494, + [3482] = 449, [3483] = 3453, - [3484] = 3456, - [3485] = 3430, - [3486] = 109, - [3487] = 346, - [3488] = 404, - [3489] = 347, - [3490] = 348, - [3491] = 3456, - [3492] = 113, - [3493] = 3452, - [3494] = 3453, - [3495] = 109, - [3496] = 446, - [3497] = 3452, - [3498] = 3453, - [3499] = 3456, - [3500] = 3452, - [3501] = 3453, - [3502] = 3456, - [3503] = 3452, - [3504] = 3453, - [3505] = 3456, - [3506] = 3452, - [3507] = 3453, - [3508] = 3456, - [3509] = 3452, - [3510] = 3453, - [3511] = 3456, - [3512] = 3452, - [3513] = 3453, - [3514] = 3456, - [3515] = 3452, - [3516] = 3453, - [3517] = 3456, - [3518] = 3452, - [3519] = 3453, - [3520] = 3456, - [3521] = 3452, - [3522] = 3453, - [3523] = 3456, - [3524] = 3452, - [3525] = 3453, - [3526] = 3456, - [3527] = 3456, - [3528] = 3456, - [3529] = 3456, - [3530] = 3456, - [3531] = 3456, - [3532] = 3456, - [3533] = 112, - [3534] = 97, - [3535] = 446, - [3536] = 340, - [3537] = 341, - [3538] = 99, - [3539] = 113, - [3540] = 112, - [3541] = 3456, - [3542] = 455, - [3543] = 3543, - [3544] = 443, - [3545] = 3545, - [3546] = 3543, - [3547] = 483, - [3548] = 3545, + [3484] = 3454, + [3485] = 3457, + [3486] = 3432, + [3487] = 106, + [3488] = 347, + [3489] = 348, + [3490] = 3457, + [3491] = 349, + [3492] = 447, + [3493] = 3453, + [3494] = 3454, + [3495] = 3457, + [3496] = 3453, + [3497] = 3454, + [3498] = 107, + [3499] = 3453, + [3500] = 3454, + [3501] = 3457, + [3502] = 3453, + [3503] = 3454, + [3504] = 3457, + [3505] = 3453, + [3506] = 3454, + [3507] = 3457, + [3508] = 3453, + [3509] = 3454, + [3510] = 3457, + [3511] = 3453, + [3512] = 3454, + [3513] = 3457, + [3514] = 3453, + [3515] = 3454, + [3516] = 3457, + [3517] = 3453, + [3518] = 3454, + [3519] = 3457, + [3520] = 3453, + [3521] = 3454, + [3522] = 3457, + [3523] = 3453, + [3524] = 3454, + [3525] = 3457, + [3526] = 3457, + [3527] = 3457, + [3528] = 3457, + [3529] = 3457, + [3530] = 3457, + [3531] = 3457, + [3532] = 107, + [3533] = 94, + [3534] = 410, + [3535] = 341, + [3536] = 342, + [3537] = 95, + [3538] = 106, + [3539] = 107, + [3540] = 94, + [3541] = 106, + [3542] = 105, + [3543] = 449, + [3544] = 3457, + [3545] = 93, + [3546] = 3546, + [3547] = 463, + [3548] = 474, [3549] = 3549, - [3550] = 112, - [3551] = 488, - [3552] = 3543, - [3553] = 1841, - [3554] = 109, - [3555] = 3545, - [3556] = 446, - [3557] = 3557, - [3558] = 3558, - [3559] = 455, - [3560] = 464, - [3561] = 3543, - [3562] = 3545, - [3563] = 455, - [3564] = 3549, - [3565] = 3557, - [3566] = 464, - [3567] = 443, - [3568] = 3568, + [3550] = 3550, + [3551] = 105, + [3552] = 447, + [3553] = 463, + [3554] = 3549, + [3555] = 3550, + [3556] = 478, + [3557] = 3549, + [3558] = 3550, + [3559] = 449, + [3560] = 3560, + [3561] = 3561, + [3562] = 3562, + [3563] = 476, + [3564] = 3546, + [3565] = 3560, + [3566] = 494, + [3567] = 1828, + [3568] = 3561, [3569] = 3549, - [3570] = 3557, - [3571] = 3549, - [3572] = 3557, - [3573] = 109, - [3574] = 113, - [3575] = 3549, - [3576] = 3557, - [3577] = 3549, - [3578] = 3557, - [3579] = 3549, - [3580] = 464, - [3581] = 3549, - [3582] = 1841, - [3583] = 112, - [3584] = 3549, - [3585] = 3557, - [3586] = 113, - [3587] = 455, - [3588] = 109, - [3589] = 3549, - [3590] = 113, - [3591] = 3591, - [3592] = 3549, - [3593] = 3549, - [3594] = 3557, - [3595] = 3558, - [3596] = 446, - [3597] = 3549, - [3598] = 3549, - [3599] = 3549, - [3600] = 3557, - [3601] = 3549, - [3602] = 3557, - [3603] = 3549, - [3604] = 3558, - [3605] = 3549, - [3606] = 3557, - [3607] = 112, - [3608] = 333, - [3609] = 92, - [3610] = 464, - [3611] = 3611, - [3612] = 3468, - [3613] = 479, - [3614] = 93, - [3615] = 3557, - [3616] = 3558, - [3617] = 3557, - [3618] = 340, - [3619] = 3619, - [3620] = 3620, - [3621] = 3619, - [3622] = 92, - [3623] = 93, - [3624] = 3619, - [3625] = 485, + [3570] = 3550, + [3571] = 474, + [3572] = 3560, + [3573] = 3561, + [3574] = 3574, + [3575] = 106, + [3576] = 3546, + [3577] = 463, + [3578] = 3549, + [3579] = 105, + [3580] = 107, + [3581] = 3546, + [3582] = 3549, + [3583] = 106, + [3584] = 107, + [3585] = 107, + [3586] = 3549, + [3587] = 3546, + [3588] = 3549, + [3589] = 447, + [3590] = 3546, + [3591] = 3549, + [3592] = 3546, + [3593] = 3546, + [3594] = 3549, + [3595] = 3546, + [3596] = 3549, + [3597] = 3546, + [3598] = 1828, + [3599] = 3546, + [3600] = 449, + [3601] = 3546, + [3602] = 3546, + [3603] = 3546, + [3604] = 3560, + [3605] = 3546, + [3606] = 3546, + [3607] = 3561, + [3608] = 3546, + [3609] = 105, + [3610] = 3549, + [3611] = 474, + [3612] = 3549, + [3613] = 335, + [3614] = 92, + [3615] = 463, + [3616] = 3616, + [3617] = 3469, + [3618] = 474, + [3619] = 106, + [3620] = 3546, + [3621] = 338, + [3622] = 474, + [3623] = 3623, + [3624] = 475, + [3625] = 543, [3626] = 3626, - [3627] = 455, - [3628] = 478, - [3629] = 544, - [3630] = 3619, - [3631] = 455, - [3632] = 544, - [3633] = 3619, - [3634] = 345, - [3635] = 485, - [3636] = 346, - [3637] = 545, - [3638] = 344, - [3639] = 464, - [3640] = 3640, - [3641] = 3619, - [3642] = 3619, - [3643] = 348, - [3644] = 3644, - [3645] = 99, - [3646] = 3640, - [3647] = 3619, - [3648] = 3619, - [3649] = 545, - [3650] = 3619, - [3651] = 475, - [3652] = 3619, - [3653] = 544, - [3654] = 485, + [3627] = 480, + [3628] = 3626, + [3629] = 3629, + [3630] = 3626, + [3631] = 463, + [3632] = 3632, + [3633] = 474, + [3634] = 3626, + [3635] = 488, + [3636] = 3626, + [3637] = 3626, + [3638] = 463, + [3639] = 3623, + [3640] = 543, + [3641] = 3626, + [3642] = 544, + [3643] = 475, + [3644] = 3626, + [3645] = 488, + [3646] = 3626, + [3647] = 3647, + [3648] = 347, + [3649] = 344, + [3650] = 3626, + [3651] = 348, + [3652] = 544, + [3653] = 92, + [3654] = 3626, [3655] = 475, - [3656] = 97, - [3657] = 485, - [3658] = 478, - [3659] = 3659, - [3660] = 475, - [3661] = 333, - [3662] = 545, - [3663] = 341, - [3664] = 478, - [3665] = 3619, - [3666] = 3619, - [3667] = 464, - [3668] = 338, - [3669] = 478, - [3670] = 475, - [3671] = 347, - [3672] = 3672, - [3673] = 99, - [3674] = 3674, + [3656] = 488, + [3657] = 93, + [3658] = 543, + [3659] = 95, + [3660] = 544, + [3661] = 475, + [3662] = 94, + [3663] = 480, + [3664] = 335, + [3665] = 341, + [3666] = 342, + [3667] = 349, + [3668] = 3626, + [3669] = 480, + [3670] = 488, + [3671] = 3626, + [3672] = 345, + [3673] = 3673, + [3674] = 480, [3675] = 3675, - [3676] = 3676, - [3677] = 544, - [3678] = 446, - [3679] = 483, - [3680] = 499, - [3681] = 491, - [3682] = 109, - [3683] = 443, - [3684] = 498, + [3676] = 447, + [3677] = 3677, + [3678] = 3678, + [3679] = 496, + [3680] = 494, + [3681] = 3681, + [3682] = 544, + [3683] = 3683, + [3684] = 3684, [3685] = 3685, - [3686] = 476, - [3687] = 498, - [3688] = 476, - [3689] = 443, - [3690] = 113, - [3691] = 3672, - [3692] = 488, - [3693] = 498, - [3694] = 2592, - [3695] = 485, - [3696] = 3696, - [3697] = 475, - [3698] = 334, - [3699] = 460, - [3700] = 545, - [3701] = 3701, - [3702] = 478, - [3703] = 3703, + [3686] = 3686, + [3687] = 488, + [3688] = 3688, + [3689] = 457, + [3690] = 3690, + [3691] = 543, + [3692] = 3574, + [3693] = 3632, + [3694] = 475, + [3695] = 449, + [3696] = 544, + [3697] = 3697, + [3698] = 333, + [3699] = 480, + [3700] = 342, + [3701] = 497, + [3702] = 496, + [3703] = 94, [3704] = 3704, [3705] = 3705, - [3706] = 3706, - [3707] = 3707, - [3708] = 3708, - [3709] = 3709, - [3710] = 544, - [3711] = 3675, - [3712] = 3712, - [3713] = 3591, - [3714] = 3626, - [3715] = 545, - [3716] = 3716, - [3717] = 3672, - [3718] = 3718, - [3719] = 3640, - [3720] = 462, - [3721] = 2565, - [3722] = 3659, - [3723] = 3705, - [3724] = 3672, - [3725] = 333, - [3726] = 3726, - [3727] = 3672, - [3728] = 443, - [3729] = 3672, - [3730] = 3672, - [3731] = 545, - [3732] = 446, - [3733] = 341, - [3734] = 3672, - [3735] = 488, - [3736] = 485, - [3737] = 479, - [3738] = 494, - [3739] = 334, - [3740] = 475, - [3741] = 446, - [3742] = 3468, - [3743] = 2593, - [3744] = 3726, - [3745] = 3672, - [3746] = 3704, - [3747] = 3707, - [3748] = 3708, - [3749] = 478, - [3750] = 3696, - [3751] = 3709, - [3752] = 3685, - [3753] = 3706, - [3754] = 3712, - [3755] = 3755, - [3756] = 3756, - [3757] = 3757, - [3758] = 681, - [3759] = 1826, - [3760] = 704, - [3761] = 705, - [3762] = 707, - [3763] = 476, - [3764] = 333, - [3765] = 97, - [3766] = 3766, - [3767] = 3672, - [3768] = 3755, - [3769] = 3672, - [3770] = 483, - [3771] = 340, - [3772] = 446, - [3773] = 499, - [3774] = 443, - [3775] = 3756, - [3776] = 112, - [3777] = 544, - [3778] = 3705, - [3779] = 3705, - [3780] = 3701, - [3781] = 3757, - [3782] = 3782, - [3783] = 1447, - [3784] = 3784, - [3785] = 2631, - [3786] = 443, - [3787] = 3787, - [3788] = 707, - [3789] = 3782, - [3790] = 443, - [3791] = 3791, + [3706] = 3469, + [3707] = 3688, + [3708] = 455, + [3709] = 2608, + [3710] = 3710, + [3711] = 335, + [3712] = 3683, + [3713] = 3713, + [3714] = 492, + [3715] = 496, + [3716] = 478, + [3717] = 492, + [3718] = 476, + [3719] = 3675, + [3720] = 494, + [3721] = 543, + [3722] = 2591, + [3723] = 447, + [3724] = 3629, + [3725] = 485, + [3726] = 447, + [3727] = 2575, + [3728] = 3728, + [3729] = 3713, + [3730] = 3675, + [3731] = 3623, + [3732] = 3685, + [3733] = 3686, + [3734] = 3675, + [3735] = 3697, + [3736] = 3736, + [3737] = 3737, + [3738] = 3684, + [3739] = 3690, + [3740] = 3740, + [3741] = 3741, + [3742] = 3742, + [3743] = 3743, + [3744] = 107, + [3745] = 475, + [3746] = 3741, + [3747] = 3675, + [3748] = 695, + [3749] = 3742, + [3750] = 335, + [3751] = 679, + [3752] = 680, + [3753] = 681, + [3754] = 95, + [3755] = 479, + [3756] = 3675, + [3757] = 1831, + [3758] = 3675, + [3759] = 488, + [3760] = 3675, + [3761] = 3737, + [3762] = 3736, + [3763] = 333, + [3764] = 3675, + [3765] = 476, + [3766] = 3675, + [3767] = 341, + [3768] = 479, + [3769] = 447, + [3770] = 449, + [3771] = 106, + [3772] = 105, + [3773] = 3743, + [3774] = 544, + [3775] = 480, + [3776] = 449, + [3777] = 492, + [3778] = 543, + [3779] = 3683, + [3780] = 3683, + [3781] = 3675, + [3782] = 3677, + [3783] = 449, + [3784] = 3681, + [3785] = 3785, + [3786] = 3786, + [3787] = 474, + [3788] = 695, + [3789] = 3789, + [3790] = 3704, + [3791] = 3705, [3792] = 3792, [3793] = 3793, - [3794] = 446, + [3794] = 3794, [3795] = 3795, [3796] = 3796, - [3797] = 344, + [3797] = 3785, [3798] = 3798, [3799] = 3799, - [3800] = 3800, - [3801] = 3801, + [3800] = 463, + [3801] = 447, [3802] = 3802, - [3803] = 3782, - [3804] = 3791, - [3805] = 3792, - [3806] = 3806, - [3807] = 443, - [3808] = 455, - [3809] = 3798, - [3810] = 345, - [3811] = 338, - [3812] = 340, - [3813] = 2355, - [3814] = 3782, - [3815] = 3815, - [3816] = 1948, - [3817] = 3798, - [3818] = 3791, - [3819] = 3782, - [3820] = 3792, + [3803] = 3803, + [3804] = 3804, + [3805] = 3805, + [3806] = 447, + [3807] = 3807, + [3808] = 3808, + [3809] = 3809, + [3810] = 3810, + [3811] = 3811, + [3812] = 449, + [3813] = 3813, + [3814] = 679, + [3815] = 680, + [3816] = 681, + [3817] = 463, + [3818] = 3808, + [3819] = 3819, + [3820] = 3820, [3821] = 3821, - [3822] = 3822, + [3822] = 1917, [3823] = 3823, - [3824] = 3824, - [3825] = 3798, - [3826] = 3826, - [3827] = 3782, - [3828] = 3828, + [3824] = 1440, + [3825] = 449, + [3826] = 2350, + [3827] = 3827, + [3828] = 705, [3829] = 3829, - [3830] = 3830, - [3831] = 3798, - [3832] = 677, - [3833] = 3798, - [3834] = 3834, - [3835] = 3791, - [3836] = 3792, - [3837] = 3837, - [3838] = 681, - [3839] = 3716, - [3840] = 3796, - [3841] = 3718, - [3842] = 3821, - [3843] = 2669, + [3830] = 2583, + [3831] = 3808, + [3832] = 344, + [3833] = 3820, + [3834] = 3821, + [3835] = 447, + [3836] = 3823, + [3837] = 474, + [3838] = 474, + [3839] = 3839, + [3840] = 3808, + [3841] = 338, + [3842] = 3820, + [3843] = 3821, [3844] = 3844, - [3845] = 2356, - [3846] = 455, - [3847] = 3800, - [3848] = 3848, - [3849] = 3849, - [3850] = 464, - [3851] = 704, - [3852] = 705, - [3853] = 707, - [3854] = 2670, - [3855] = 3855, - [3856] = 1948, + [3845] = 3845, + [3846] = 345, + [3847] = 3823, + [3848] = 3823, + [3849] = 3808, + [3850] = 679, + [3851] = 680, + [3852] = 3852, + [3853] = 3823, + [3854] = 3854, + [3855] = 1917, + [3856] = 3808, [3857] = 3857, - [3858] = 3858, - [3859] = 346, - [3860] = 347, - [3861] = 348, - [3862] = 443, - [3863] = 443, - [3864] = 3864, - [3865] = 464, - [3866] = 3866, - [3867] = 3867, + [3858] = 447, + [3859] = 3823, + [3860] = 3860, + [3861] = 3808, + [3862] = 681, + [3863] = 2582, + [3864] = 347, + [3865] = 3823, + [3866] = 3807, + [3867] = 449, [3868] = 3868, [3869] = 3869, - [3870] = 464, - [3871] = 113, - [3872] = 341, + [3870] = 348, + [3871] = 105, + [3872] = 449, [3873] = 3873, - [3874] = 112, - [3875] = 2297, + [3874] = 349, + [3875] = 3875, [3876] = 3876, - [3877] = 3877, + [3877] = 3789, [3878] = 3878, - [3879] = 677, - [3880] = 3880, - [3881] = 3881, + [3879] = 341, + [3880] = 3873, + [3881] = 3792, [3882] = 3882, - [3883] = 2594, - [3884] = 446, - [3885] = 3782, - [3886] = 3791, - [3887] = 3887, - [3888] = 3888, - [3889] = 681, - [3890] = 3792, - [3891] = 704, - [3892] = 705, - [3893] = 707, - [3894] = 3867, - [3895] = 3782, - [3896] = 3799, - [3897] = 455, - [3898] = 3796, - [3899] = 3799, - [3900] = 3800, - [3901] = 3901, - [3902] = 455, - [3903] = 3880, - [3904] = 3904, - [3905] = 446, - [3906] = 704, - [3907] = 3907, - [3908] = 3782, - [3909] = 3791, - [3910] = 3792, - [3911] = 681, - [3912] = 705, - [3913] = 3913, - [3914] = 464, - [3915] = 3796, - [3916] = 3799, - [3917] = 3800, - [3918] = 3918, - [3919] = 3864, - [3920] = 3866, - [3921] = 340, - [3922] = 3798, - [3923] = 109, - [3924] = 446, - [3925] = 3798, - [3926] = 3798, - [3927] = 341, - [3928] = 3918, - [3929] = 708, - [3930] = 2381, - [3931] = 464, + [3883] = 3883, + [3884] = 2641, + [3885] = 2642, + [3886] = 3886, + [3887] = 106, + [3888] = 2303, + [3889] = 463, + [3890] = 107, + [3891] = 342, + [3892] = 3808, + [3893] = 3820, + [3894] = 3821, + [3895] = 3794, + [3896] = 3808, + [3897] = 695, + [3898] = 3820, + [3899] = 679, + [3900] = 680, + [3901] = 681, + [3902] = 3821, + [3903] = 3804, + [3904] = 3789, + [3905] = 3873, + [3906] = 3792, + [3907] = 474, + [3908] = 3908, + [3909] = 2344, + [3910] = 3910, + [3911] = 3823, + [3912] = 3912, + [3913] = 695, + [3914] = 3914, + [3915] = 3915, + [3916] = 463, + [3917] = 3789, + [3918] = 3873, + [3919] = 3792, + [3920] = 705, + [3921] = 341, + [3922] = 3795, + [3923] = 3923, + [3924] = 449, + [3925] = 3925, + [3926] = 3823, + [3927] = 3927, + [3928] = 3820, + [3929] = 342, + [3930] = 3821, + [3931] = 3923, [3932] = 3932, - [3933] = 3933, - [3934] = 488, - [3935] = 455, - [3936] = 903, + [3933] = 2087, + [3934] = 369, + [3935] = 963, + [3936] = 3827, [3937] = 3937, - [3938] = 3937, - [3939] = 2367, - [3940] = 3876, - [3941] = 3937, - [3942] = 3878, - [3943] = 3932, - [3944] = 478, + [3938] = 3938, + [3939] = 449, + [3940] = 907, + [3941] = 474, + [3942] = 3942, + [3943] = 919, + [3944] = 3942, [3945] = 3945, - [3946] = 899, - [3947] = 3419, - [3948] = 443, - [3949] = 455, - [3950] = 3932, - [3951] = 3824, - [3952] = 803, - [3953] = 3953, - [3954] = 464, - [3955] = 3955, - [3956] = 3932, - [3957] = 3877, - [3958] = 918, - [3959] = 3959, - [3960] = 2382, - [3961] = 3932, - [3962] = 3962, - [3963] = 3963, - [3964] = 3826, - [3965] = 3932, - [3966] = 3932, - [3967] = 3933, - [3968] = 485, - [3969] = 2380, + [3946] = 3868, + [3947] = 3869, + [3948] = 768, + [3949] = 463, + [3950] = 3942, + [3951] = 480, + [3952] = 922, + [3953] = 3421, + [3954] = 488, + [3955] = 923, + [3956] = 3956, + [3957] = 3942, + [3958] = 475, + [3959] = 488, + [3960] = 682, + [3961] = 3786, + [3962] = 3942, + [3963] = 768, + [3964] = 924, + [3965] = 940, + [3966] = 3966, + [3967] = 3942, + [3968] = 3968, + [3969] = 3969, [3970] = 3970, - [3971] = 3932, - [3972] = 903, - [3973] = 475, - [3974] = 3932, - [3975] = 944, - [3976] = 920, - [3977] = 3932, - [3978] = 923, + [3971] = 3937, + [3972] = 3942, + [3973] = 3860, + [3974] = 3937, + [3975] = 3942, + [3976] = 3976, + [3977] = 463, + [3978] = 3942, [3979] = 3979, - [3980] = 3932, - [3981] = 478, - [3982] = 949, - [3983] = 3932, - [3984] = 944, - [3985] = 3932, - [3986] = 485, - [3987] = 3932, - [3988] = 3932, - [3989] = 2391, - [3990] = 3937, - [3991] = 2383, - [3992] = 3992, - [3993] = 3993, - [3994] = 545, - [3995] = 949, - [3996] = 3996, - [3997] = 951, - [3998] = 3998, - [3999] = 920, - [4000] = 475, - [4001] = 899, - [4002] = 923, - [4003] = 951, - [4004] = 3932, - [4005] = 478, - [4006] = 3953, - [4007] = 903, - [4008] = 3933, - [4009] = 3979, - [4010] = 335, - [4011] = 4011, - [4012] = 368, - [4013] = 335, - [4014] = 4014, - [4015] = 949, - [4016] = 2075, - [4017] = 951, - [4018] = 3937, - [4019] = 334, - [4020] = 455, - [4021] = 803, - [4022] = 803, - [4023] = 3626, - [4024] = 3659, - [4025] = 918, - [4026] = 3932, - [4027] = 3933, - [4028] = 684, - [4029] = 914, - [4030] = 4030, - [4031] = 464, - [4032] = 4032, - [4033] = 3959, - [4034] = 2075, - [4035] = 464, - [4036] = 333, - [4037] = 4037, - [4038] = 3937, - [4039] = 475, - [4040] = 544, - [4041] = 3937, - [4042] = 3970, - [4043] = 803, - [4044] = 918, - [4045] = 3822, - [4046] = 3932, - [4047] = 2392, - [4048] = 4048, + [3980] = 3942, + [3981] = 3942, + [3982] = 927, + [3983] = 3983, + [3984] = 3942, + [3985] = 3942, + [3986] = 3942, + [3987] = 949, + [3988] = 3942, + [3989] = 3942, + [3990] = 3945, + [3991] = 907, + [3992] = 927, + [3993] = 963, + [3994] = 919, + [3995] = 3995, + [3996] = 474, + [3997] = 475, + [3998] = 3983, + [3999] = 922, + [4000] = 480, + [4001] = 923, + [4002] = 2081, + [4003] = 4003, + [4004] = 2386, + [4005] = 3956, + [4006] = 2385, + [4007] = 3942, + [4008] = 336, + [4009] = 4009, + [4010] = 4010, + [4011] = 3945, + [4012] = 907, + [4013] = 1008, + [4014] = 919, + [4015] = 4015, + [4016] = 494, + [4017] = 333, + [4018] = 3629, + [4019] = 3945, + [4020] = 4020, + [4021] = 3945, + [4022] = 3942, + [4023] = 3809, + [4024] = 711, + [4025] = 543, + [4026] = 2384, + [4027] = 3942, + [4028] = 3945, + [4029] = 3945, + [4030] = 922, + [4031] = 3932, + [4032] = 3810, + [4033] = 949, + [4034] = 3937, + [4035] = 4015, + [4036] = 3976, + [4037] = 335, + [4038] = 474, + [4039] = 2392, + [4040] = 474, + [4041] = 2388, + [4042] = 768, + [4043] = 924, + [4044] = 923, + [4045] = 463, + [4046] = 3942, + [4047] = 3945, + [4048] = 2840, [4049] = 3932, - [4050] = 1086, - [4051] = 3933, - [4052] = 368, - [4053] = 944, - [4054] = 3932, - [4055] = 3933, - [4056] = 920, - [4057] = 923, - [4058] = 4058, - [4059] = 3932, - [4060] = 485, - [4061] = 3933, - [4062] = 3970, - [4063] = 899, - [4064] = 682, - [4065] = 3937, - [4066] = 3901, - [4067] = 3933, - [4068] = 4048, - [4069] = 475, - [4070] = 3970, - [4071] = 2847, - [4072] = 3932, - [4073] = 4048, - [4074] = 478, - [4075] = 3904, - [4076] = 3933, - [4077] = 4048, - [4078] = 483, - [4079] = 443, - [4080] = 3993, - [4081] = 2074, - [4082] = 455, - [4083] = 2370, - [4084] = 4084, - [4085] = 3937, - [4086] = 4086, - [4087] = 485, - [4088] = 4088, - [4089] = 4089, - [4090] = 4090, - [4091] = 344, - [4092] = 4092, - [4093] = 443, - [4094] = 4094, - [4095] = 485, - [4096] = 4096, - [4097] = 352, + [4050] = 949, + [4051] = 4015, + [4052] = 476, + [4053] = 2374, + [4054] = 3937, + [4055] = 927, + [4056] = 963, + [4057] = 449, + [4058] = 3937, + [4059] = 4059, + [4060] = 488, + [4061] = 768, + [4062] = 475, + [4063] = 696, + [4064] = 924, + [4065] = 488, + [4066] = 4066, + [4067] = 2396, + [4068] = 475, + [4069] = 480, + [4070] = 3796, + [4071] = 3942, + [4072] = 3945, + [4073] = 4015, + [4074] = 480, + [4075] = 3937, + [4076] = 3937, + [4077] = 2375, + [4078] = 4078, + [4079] = 3932, + [4080] = 3937, + [4081] = 3995, + [4082] = 4082, + [4083] = 4083, + [4084] = 463, + [4085] = 544, + [4086] = 2081, + [4087] = 4087, + [4088] = 3942, + [4089] = 369, + [4090] = 336, + [4091] = 3632, + [4092] = 2430, + [4093] = 344, + [4094] = 449, + [4095] = 4095, + [4096] = 488, + [4097] = 4097, [4098] = 4098, [4099] = 4099, [4100] = 4100, [4101] = 4101, [4102] = 4102, [4103] = 4103, - [4104] = 345, - [4105] = 4105, + [4104] = 924, + [4105] = 338, [4106] = 4106, - [4107] = 944, - [4108] = 475, - [4109] = 920, - [4110] = 923, - [4111] = 338, - [4112] = 485, - [4113] = 4113, - [4114] = 478, - [4115] = 475, - [4116] = 478, - [4117] = 918, + [4107] = 4107, + [4108] = 949, + [4109] = 345, + [4110] = 475, + [4111] = 927, + [4112] = 963, + [4113] = 488, + [4114] = 4114, + [4115] = 480, + [4116] = 793, + [4117] = 475, [4118] = 4118, - [4119] = 485, - [4120] = 1086, - [4121] = 4121, + [4119] = 480, + [4120] = 4120, + [4121] = 488, [4122] = 4122, - [4123] = 4123, - [4124] = 367, + [4123] = 1008, + [4124] = 4124, [4125] = 346, [4126] = 4126, [4127] = 347, - [4128] = 681, - [4129] = 4129, - [4130] = 348, - [4131] = 475, - [4132] = 4132, + [4128] = 348, + [4129] = 349, + [4130] = 4130, + [4131] = 4131, + [4132] = 695, [4133] = 4133, - [4134] = 4134, - [4135] = 4135, - [4136] = 2920, - [4137] = 478, - [4138] = 4138, - [4139] = 798, - [4140] = 4140, + [4134] = 475, + [4135] = 480, + [4136] = 4136, + [4137] = 4137, + [4138] = 2924, + [4139] = 4139, + [4140] = 837, [4141] = 4141, - [4142] = 812, - [4143] = 813, - [4144] = 4144, - [4145] = 815, - [4146] = 704, - [4147] = 705, - [4148] = 707, - [4149] = 3716, - [4150] = 3718, - [4151] = 485, - [4152] = 475, + [4142] = 838, + [4143] = 4143, + [4144] = 839, + [4145] = 679, + [4146] = 680, + [4147] = 681, + [4148] = 488, + [4149] = 3704, + [4150] = 3705, + [4151] = 4151, + [4152] = 4152, [4153] = 352, - [4154] = 478, - [4155] = 4155, + [4154] = 475, + [4155] = 480, [4156] = 4156, [4157] = 353, - [4158] = 4158, - [4159] = 820, + [4158] = 841, + [4159] = 4159, [4160] = 4160, - [4161] = 4090, + [4161] = 4161, [4162] = 4162, - [4163] = 4163, + [4163] = 3083, [4164] = 3084, - [4165] = 3085, + [4165] = 4165, [4166] = 4166, [4167] = 4167, [4168] = 4168, - [4169] = 4169, + [4169] = 927, [4170] = 4170, [4171] = 4171, [4172] = 4172, - [4173] = 4173, + [4173] = 963, [4174] = 4174, [4175] = 4175, - [4176] = 920, - [4177] = 2355, - [4178] = 923, - [4179] = 2356, - [4180] = 1808, - [4181] = 1812, - [4182] = 4182, + [4176] = 4176, + [4177] = 2344, + [4178] = 2350, + [4179] = 2400, + [4180] = 4180, + [4181] = 1803, + [4182] = 1805, [4183] = 4183, [4184] = 4184, - [4185] = 4121, - [4186] = 4186, + [4185] = 4185, + [4186] = 4120, [4187] = 4187, [4188] = 4188, [4189] = 4189, - [4190] = 3955, - [4191] = 4191, - [4192] = 949, - [4193] = 951, - [4194] = 2412, - [4195] = 1399, - [4196] = 4084, + [4190] = 4190, + [4191] = 3970, + [4192] = 907, + [4193] = 919, + [4194] = 4194, + [4195] = 4078, + [4196] = 1393, [4197] = 4197, [4198] = 4198, [4199] = 4199, @@ -9018,11 +9011,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4209] = 4209, [4210] = 4210, [4211] = 4211, - [4212] = 803, - [4213] = 1805, - [4214] = 1806, - [4215] = 914, - [4216] = 4216, + [4212] = 1781, + [4213] = 768, + [4214] = 1782, + [4215] = 4215, + [4216] = 940, [4217] = 4217, [4218] = 4218, [4219] = 4219, @@ -9030,612 +9023,612 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4221] = 4221, [4222] = 4222, [4223] = 4223, - [4224] = 944, - [4225] = 4225, - [4226] = 899, - [4227] = 839, - [4228] = 949, - [4229] = 951, + [4224] = 4224, + [4225] = 846, + [4226] = 949, + [4227] = 922, + [4228] = 4228, + [4229] = 907, [4230] = 4230, - [4231] = 899, - [4232] = 903, - [4233] = 4233, - [4234] = 803, - [4235] = 918, - [4236] = 1086, - [4237] = 4237, - [4238] = 4238, + [4231] = 919, + [4232] = 4232, + [4233] = 922, + [4234] = 923, + [4235] = 768, + [4236] = 924, + [4237] = 847, + [4238] = 1008, [4239] = 4239, [4240] = 4240, [4241] = 4241, [4242] = 4242, [4243] = 4243, - [4244] = 1792, - [4245] = 920, - [4246] = 923, - [4247] = 1793, - [4248] = 840, - [4249] = 841, + [4244] = 4244, + [4245] = 1790, + [4246] = 1792, + [4247] = 927, + [4248] = 963, + [4249] = 4249, [4250] = 4250, - [4251] = 4251, - [4252] = 4090, - [4253] = 842, - [4254] = 843, - [4255] = 844, - [4256] = 845, + [4251] = 848, + [4252] = 4252, + [4253] = 849, + [4254] = 864, + [4255] = 867, + [4256] = 4162, [4257] = 4257, - [4258] = 4258, - [4259] = 4259, - [4260] = 4260, + [4258] = 869, + [4259] = 871, + [4260] = 2411, [4261] = 4261, [4262] = 4262, [4263] = 4263, - [4264] = 4090, - [4265] = 903, - [4266] = 4266, + [4264] = 4264, + [4265] = 4162, + [4266] = 923, [4267] = 4267, - [4268] = 4090, - [4269] = 677, - [4270] = 4270, - [4271] = 4271, - [4272] = 4272, - [4273] = 914, + [4268] = 4268, + [4269] = 4269, + [4270] = 4162, + [4271] = 705, + [4272] = 1349, + [4273] = 353, [4274] = 4274, [4275] = 4275, - [4276] = 4090, + [4276] = 940, [4277] = 4277, [4278] = 4278, [4279] = 4279, - [4280] = 805, - [4281] = 353, - [4282] = 806, - [4283] = 4283, - [4284] = 4090, - [4285] = 807, - [4286] = 2405, - [4287] = 4287, - [4288] = 2400, - [4289] = 899, - [4290] = 4200, - [4291] = 4090, - [4292] = 1350, - [4293] = 949, - [4294] = 809, - [4295] = 4295, - [4296] = 4267, - [4297] = 4090, - [4298] = 903, - [4299] = 4090, - [4300] = 4090, - [4301] = 4301, - [4302] = 4302, - [4303] = 4090, - [4304] = 4304, + [4280] = 4280, + [4281] = 822, + [4282] = 4282, + [4283] = 4162, + [4284] = 907, + [4285] = 4285, + [4286] = 922, + [4287] = 825, + [4288] = 826, + [4289] = 2421, + [4290] = 4162, + [4291] = 4291, + [4292] = 923, + [4293] = 829, + [4294] = 4294, + [4295] = 4200, + [4296] = 4162, + [4297] = 4297, + [4298] = 4269, + [4299] = 4299, + [4300] = 2423, + [4301] = 4162, + [4302] = 4162, + [4303] = 919, + [4304] = 4162, [4305] = 4305, - [4306] = 4090, + [4306] = 4306, [4307] = 4307, - [4308] = 4308, - [4309] = 2397, + [4308] = 4162, + [4309] = 4309, [4310] = 4310, - [4311] = 4257, + [4311] = 4162, [4312] = 4312, [4313] = 4313, [4314] = 4314, [4315] = 4315, - [4316] = 3222, - [4317] = 4317, - [4318] = 4090, + [4316] = 4316, + [4317] = 3186, + [4318] = 4318, [4319] = 4319, - [4320] = 4313, + [4320] = 3970, [4321] = 4321, - [4322] = 4322, - [4323] = 3611, - [4324] = 3568, + [4322] = 4162, + [4323] = 4316, + [4324] = 4324, [4325] = 4325, [4326] = 4326, - [4327] = 4327, - [4328] = 4328, + [4327] = 3616, + [4328] = 3562, [4329] = 4329, [4330] = 4330, - [4331] = 918, - [4332] = 1086, + [4331] = 924, + [4332] = 4332, [4333] = 4333, - [4334] = 4334, + [4334] = 1008, [4335] = 4335, [4336] = 4336, [4337] = 4337, - [4338] = 3955, + [4338] = 4338, [4339] = 4339, [4340] = 4340, [4341] = 4341, [4342] = 4342, [4343] = 4343, - [4344] = 4344, + [4344] = 768, [4345] = 4345, [4346] = 4346, - [4347] = 920, - [4348] = 923, + [4347] = 4347, + [4348] = 4348, [4349] = 4349, - [4350] = 2427, - [4351] = 4351, + [4350] = 927, + [4351] = 963, [4352] = 4352, - [4353] = 680, - [4354] = 803, - [4355] = 4295, - [4356] = 918, - [4357] = 4357, - [4358] = 914, - [4359] = 4359, + [4353] = 4299, + [4354] = 4354, + [4355] = 671, + [4356] = 4356, + [4357] = 924, + [4358] = 693, + [4359] = 940, [4360] = 4360, - [4361] = 676, - [4362] = 3473, - [4363] = 2420, - [4364] = 4364, + [4361] = 4361, + [4362] = 3474, + [4363] = 2428, + [4364] = 447, [4365] = 4365, - [4366] = 3963, - [4367] = 340, - [4368] = 951, - [4369] = 4090, - [4370] = 4090, - [4371] = 4202, - [4372] = 804, - [4373] = 446, - [4374] = 341, - [4375] = 4375, + [4366] = 4082, + [4367] = 341, + [4368] = 4368, + [4369] = 4369, + [4370] = 4162, + [4371] = 770, + [4372] = 4162, + [4373] = 4162, + [4374] = 4201, + [4375] = 342, [4376] = 4376, - [4377] = 715, - [4378] = 4378, - [4379] = 3074, - [4380] = 3082, - [4381] = 4090, - [4382] = 4382, + [4377] = 772, + [4378] = 352, + [4379] = 3080, + [4380] = 833, + [4381] = 4381, + [4382] = 3081, [4383] = 4383, - [4384] = 367, - [4385] = 4385, - [4386] = 4198, - [4387] = 3992, - [4388] = 4388, + [4384] = 4384, + [4385] = 4087, + [4386] = 346, + [4387] = 4387, + [4388] = 4162, [4389] = 4389, - [4390] = 4230, - [4391] = 4241, - [4392] = 4257, - [4393] = 811, - [4394] = 944, - [4395] = 4198, - [4396] = 4230, - [4397] = 4241, - [4398] = 846, - [4399] = 4399, - [4400] = 446, + [4390] = 4390, + [4391] = 4197, + [4392] = 4392, + [4393] = 949, + [4394] = 4230, + [4395] = 4232, + [4396] = 4310, + [4397] = 4197, + [4398] = 4230, + [4399] = 4232, + [4400] = 4310, [4401] = 4401, - [4402] = 443, - [4403] = 4403, - [4404] = 4404, - [4405] = 4204, + [4402] = 4402, + [4403] = 4241, + [4404] = 4205, + [4405] = 4405, [4406] = 4406, [4407] = 4407, - [4408] = 4408, + [4408] = 4244, [4409] = 4409, [4410] = 4410, - [4411] = 4186, - [4412] = 4187, - [4413] = 4099, - [4414] = 4100, - [4415] = 4206, - [4416] = 4207, - [4417] = 4208, - [4418] = 4418, - [4419] = 4419, - [4420] = 4101, - [4421] = 3137, - [4422] = 942, - [4423] = 937, - [4424] = 4102, - [4425] = 4239, - [4426] = 4426, - [4427] = 4427, - [4428] = 4277, - [4429] = 4103, - [4430] = 4329, - [4431] = 4403, - [4432] = 4432, - [4433] = 4209, - [4434] = 4434, - [4435] = 4385, - [4436] = 4271, - [4437] = 4437, - [4438] = 4210, - [4439] = 900, - [4440] = 3093, - [4441] = 4305, - [4442] = 4175, - [4443] = 3044, - [4444] = 4444, - [4445] = 4211, - [4446] = 4105, - [4447] = 4444, - [4448] = 2359, - [4449] = 4106, - [4450] = 850, + [4411] = 4411, + [4412] = 4412, + [4413] = 4413, + [4414] = 4099, + [4415] = 4100, + [4416] = 4206, + [4417] = 4207, + [4418] = 4208, + [4419] = 4101, + [4420] = 937, + [4421] = 3153, + [4422] = 4102, + [4423] = 4335, + [4424] = 4103, + [4425] = 4183, + [4426] = 4405, + [4427] = 4405, + [4428] = 4428, + [4429] = 463, + [4430] = 4280, + [4431] = 4431, + [4432] = 4209, + [4433] = 4210, + [4434] = 2376, + [4435] = 4384, + [4436] = 4436, + [4437] = 4306, + [4438] = 4176, + [4439] = 910, + [4440] = 3098, + [4441] = 4441, + [4442] = 2970, + [4443] = 4211, + [4444] = 4106, + [4445] = 4445, + [4446] = 4446, + [4447] = 4446, + [4448] = 4185, + [4449] = 4107, + [4450] = 4450, [4451] = 4451, [4452] = 4452, - [4453] = 4237, - [4454] = 464, + [4453] = 930, + [4454] = 4454, [4455] = 4455, - [4456] = 4275, + [4456] = 4456, [4457] = 4457, [4458] = 4458, - [4459] = 2367, - [4460] = 2370, - [4461] = 4461, - [4462] = 4462, - [4463] = 4240, + [4459] = 2374, + [4460] = 2375, + [4461] = 4307, + [4462] = 4215, + [4463] = 4463, [4464] = 4464, - [4465] = 4307, - [4466] = 4466, - [4467] = 4403, - [4468] = 494, - [4469] = 4469, - [4470] = 4278, + [4465] = 528, + [4466] = 485, + [4467] = 4467, + [4468] = 3017, + [4469] = 4175, + [4470] = 4470, [4471] = 4471, - [4472] = 4184, - [4473] = 4473, - [4474] = 4474, - [4475] = 4475, - [4476] = 4476, + [4472] = 4332, + [4473] = 4184, + [4474] = 4341, + [4475] = 937, + [4476] = 4279, [4477] = 4477, - [4478] = 4339, - [4479] = 4217, - [4480] = 4403, - [4481] = 4340, - [4482] = 4126, - [4483] = 4129, - [4484] = 3094, - [4485] = 4138, - [4486] = 491, - [4487] = 4342, - [4488] = 4488, - [4489] = 4489, - [4490] = 4169, - [4491] = 4218, - [4492] = 4492, - [4493] = 4493, - [4494] = 4302, - [4495] = 4317, - [4496] = 4219, - [4497] = 4182, - [4498] = 4343, - [4499] = 4473, - [4500] = 4283, - [4501] = 4501, - [4502] = 4476, - [4503] = 4344, - [4504] = 4345, - [4505] = 4242, - [4506] = 4506, - [4507] = 4507, - [4508] = 4308, - [4509] = 4509, - [4510] = 4510, - [4511] = 4511, - [4512] = 4473, - [4513] = 4473, - [4514] = 4476, - [4515] = 4515, - [4516] = 4287, - [4517] = 4517, - [4518] = 4518, - [4519] = 517, - [4520] = 4520, - [4521] = 4521, - [4522] = 2380, - [4523] = 2381, - [4524] = 4473, - [4525] = 374, - [4526] = 2382, - [4527] = 4476, - [4528] = 2383, - [4529] = 934, - [4530] = 864, + [4478] = 4478, + [4479] = 4342, + [4480] = 4168, + [4481] = 4343, + [4482] = 4482, + [4483] = 4483, + [4484] = 4126, + [4485] = 4130, + [4486] = 4139, + [4487] = 4345, + [4488] = 4405, + [4489] = 497, + [4490] = 4294, + [4491] = 4491, + [4492] = 4217, + [4493] = 4218, + [4494] = 4297, + [4495] = 4495, + [4496] = 4285, + [4497] = 4497, + [4498] = 4498, + [4499] = 4499, + [4500] = 4500, + [4501] = 4346, + [4502] = 4502, + [4503] = 4477, + [4504] = 4504, + [4505] = 4505, + [4506] = 4482, + [4507] = 4172, + [4508] = 4508, + [4509] = 4347, + [4510] = 3100, + [4511] = 4309, + [4512] = 4512, + [4513] = 931, + [4514] = 4249, + [4515] = 896, + [4516] = 4477, + [4517] = 4477, + [4518] = 881, + [4519] = 2384, + [4520] = 4482, + [4521] = 4482, + [4522] = 2385, + [4523] = 2386, + [4524] = 4250, + [4525] = 717, + [4526] = 374, + [4527] = 718, + [4528] = 4528, + [4529] = 2392, + [4530] = 4220, [4531] = 4531, - [4532] = 4532, - [4533] = 865, - [4534] = 4346, - [4535] = 4349, - [4536] = 4536, - [4537] = 4351, - [4538] = 4476, - [4539] = 4174, + [4532] = 4477, + [4533] = 4533, + [4534] = 4257, + [4535] = 369, + [4536] = 4482, + [4537] = 4282, + [4538] = 4538, + [4539] = 1403, [4540] = 4540, - [4541] = 4251, - [4542] = 368, - [4543] = 4543, + [4541] = 4348, + [4542] = 4349, + [4543] = 4243, [4544] = 4544, - [4545] = 4258, - [4546] = 4310, - [4547] = 4547, - [4548] = 1358, - [4549] = 4473, - [4550] = 4473, - [4551] = 4279, - [4552] = 4326, - [4553] = 4328, - [4554] = 679, - [4555] = 4476, + [4545] = 4352, + [4546] = 4313, + [4547] = 4477, + [4548] = 4324, + [4549] = 4325, + [4550] = 4354, + [4551] = 4268, + [4552] = 4312, + [4553] = 4261, + [4554] = 1357, + [4555] = 4555, [4556] = 4477, - [4557] = 4172, - [4558] = 4558, - [4559] = 4330, - [4560] = 4238, - [4561] = 4333, - [4562] = 3089, - [4563] = 4563, - [4564] = 4334, - [4565] = 2379, - [4566] = 4476, - [4567] = 4477, - [4568] = 4312, - [4569] = 942, - [4570] = 4314, - [4571] = 4359, - [4572] = 4220, - [4573] = 4335, - [4574] = 4574, - [4575] = 938, - [4576] = 4576, - [4577] = 4577, - [4578] = 4336, - [4579] = 1405, - [4580] = 4260, - [4581] = 927, - [4582] = 4337, - [4583] = 686, - [4584] = 4261, - [4585] = 2392, - [4586] = 2205, - [4587] = 4587, - [4588] = 2391, - [4589] = 935, - [4590] = 4262, - [4591] = 4591, - [4592] = 2192, - [4593] = 2195, - [4594] = 2196, - [4595] = 847, - [4596] = 848, - [4597] = 4221, - [4598] = 4222, + [4557] = 4274, + [4558] = 4329, + [4559] = 694, + [4560] = 4330, + [4561] = 4336, + [4562] = 4337, + [4563] = 4482, + [4564] = 4483, + [4565] = 3097, + [4566] = 4566, + [4567] = 4482, + [4568] = 942, + [4569] = 4483, + [4570] = 2373, + [4571] = 4571, + [4572] = 4572, + [4573] = 4314, + [4574] = 943, + [4575] = 4338, + [4576] = 4356, + [4577] = 944, + [4578] = 4221, + [4579] = 4339, + [4580] = 956, + [4581] = 4581, + [4582] = 4262, + [4583] = 699, + [4584] = 2162, + [4585] = 2388, + [4586] = 4586, + [4587] = 4263, + [4588] = 2167, + [4589] = 2396, + [4590] = 2138, + [4591] = 2140, + [4592] = 876, + [4593] = 883, + [4594] = 2141, + [4595] = 4595, + [4596] = 878, + [4597] = 4222, + [4598] = 4275, [4599] = 1366, - [4600] = 940, - [4601] = 4263, - [4602] = 952, - [4603] = 4603, - [4604] = 922, - [4605] = 4325, - [4606] = 4183, - [4607] = 2199, - [4608] = 4243, - [4609] = 4609, - [4610] = 4089, - [4611] = 4477, - [4612] = 849, + [4600] = 897, + [4601] = 954, + [4602] = 4602, + [4603] = 4483, + [4604] = 4604, + [4605] = 4223, + [4606] = 4606, + [4607] = 4607, + [4608] = 4277, + [4609] = 4160, + [4610] = 4161, + [4611] = 4166, + [4612] = 4612, [4613] = 4613, [4614] = 4614, [4615] = 4615, [4616] = 4616, - [4617] = 4617, - [4618] = 4162, - [4619] = 4163, - [4620] = 4272, - [4621] = 4462, - [4622] = 4167, - [4623] = 4223, - [4624] = 4624, - [4625] = 916, + [4617] = 4187, + [4618] = 4618, + [4619] = 4619, + [4620] = 4278, + [4621] = 4224, + [4622] = 3011, + [4623] = 4457, + [4624] = 3049, + [4625] = 898, [4626] = 4626, - [4627] = 335, - [4628] = 455, - [4629] = 4629, - [4630] = 3004, - [4631] = 4631, - [4632] = 4304, - [4633] = 4274, - [4634] = 3006, - [4635] = 4451, - [4636] = 4536, - [4637] = 3012, - [4638] = 927, - [4639] = 4639, - [4640] = 4640, - [4641] = 4464, + [4627] = 4188, + [4628] = 336, + [4629] = 474, + [4630] = 4174, + [4631] = 956, + [4632] = 4305, + [4633] = 447, + [4634] = 4634, + [4635] = 4402, + [4636] = 4636, + [4637] = 449, + [4638] = 4095, + [4639] = 4544, + [4640] = 4333, + [4641] = 4641, [4642] = 4642, - [4643] = 4173, - [4644] = 443, + [4643] = 4643, + [4644] = 4642, [4645] = 4645, - [4646] = 4094, + [4646] = 4646, [4647] = 4647, - [4648] = 4648, + [4648] = 4267, [4649] = 4649, - [4650] = 936, - [4651] = 4327, - [4652] = 4640, - [4653] = 4653, - [4654] = 4270, - [4655] = 4360, - [4656] = 4352, - [4657] = 4657, + [4650] = 4650, + [4651] = 449, + [4652] = 4652, + [4653] = 4361, + [4654] = 4458, + [4655] = 4242, + [4656] = 4239, + [4657] = 4240, [4658] = 4658, [4659] = 4659, - [4660] = 2400, + [4660] = 4660, [4661] = 4661, - [4662] = 4662, + [4662] = 4660, [4663] = 4663, [4664] = 4664, - [4665] = 4665, + [4665] = 475, [4666] = 4666, - [4667] = 903, + [4667] = 4667, [4668] = 4668, [4669] = 4669, [4670] = 4670, [4671] = 4671, - [4672] = 478, + [4672] = 938, [4673] = 4673, - [4674] = 4674, - [4675] = 2405, + [4674] = 768, + [4675] = 4675, [4676] = 4676, - [4677] = 683, - [4678] = 3955, + [4677] = 4677, + [4678] = 4678, [4679] = 4679, - [4680] = 4680, + [4680] = 907, [4681] = 4681, [4682] = 4682, - [4683] = 803, - [4684] = 2067, + [4683] = 4683, + [4684] = 2430, [4685] = 4685, - [4686] = 2397, + [4686] = 4686, [4687] = 4687, [4688] = 4688, - [4689] = 2068, - [4690] = 909, - [4691] = 4688, - [4692] = 4692, + [4689] = 4681, + [4690] = 4690, + [4691] = 4691, + [4692] = 3186, [4693] = 4693, - [4694] = 4694, + [4694] = 919, [4695] = 4695, [4696] = 4696, - [4697] = 4665, - [4698] = 3013, - [4699] = 2427, + [4697] = 4697, + [4698] = 948, + [4699] = 4664, [4700] = 4700, - [4701] = 949, - [4702] = 3222, - [4703] = 2412, - [4704] = 2371, + [4701] = 4701, + [4702] = 4663, + [4703] = 4703, + [4704] = 4661, [4705] = 4705, - [4706] = 4692, - [4707] = 4666, - [4708] = 4708, - [4709] = 4709, + [4706] = 4706, + [4707] = 4707, + [4708] = 2411, + [4709] = 1073, [4710] = 4710, [4711] = 4711, - [4712] = 4712, - [4713] = 988, - [4714] = 921, - [4715] = 943, - [4716] = 4696, + [4712] = 4669, + [4713] = 2428, + [4714] = 2093, + [4715] = 4685, + [4716] = 4716, [4717] = 4717, - [4718] = 4680, - [4719] = 2069, + [4718] = 4710, + [4719] = 4669, [4720] = 4720, - [4721] = 4694, - [4722] = 4711, + [4721] = 4721, + [4722] = 4721, [4723] = 4723, - [4724] = 4724, - [4725] = 4725, - [4726] = 4723, - [4727] = 4727, - [4728] = 4725, - [4729] = 951, - [4730] = 4730, + [4724] = 949, + [4725] = 474, + [4726] = 902, + [4727] = 697, + [4728] = 4728, + [4729] = 4729, + [4730] = 4723, [4731] = 4731, - [4732] = 4664, - [4733] = 4733, + [4732] = 4732, + [4733] = 952, [4734] = 4734, - [4735] = 4735, - [4736] = 944, + [4735] = 4688, + [4736] = 3616, [4737] = 4737, - [4738] = 2420, - [4739] = 3611, - [4740] = 3568, + [4738] = 3562, + [4739] = 4723, + [4740] = 2383, [4741] = 4741, - [4742] = 4742, - [4743] = 4743, - [4744] = 4744, - [4745] = 4745, + [4742] = 480, + [4743] = 1670, + [4744] = 488, + [4745] = 346, [4746] = 4746, [4747] = 4747, - [4748] = 4671, - [4749] = 4710, - [4750] = 4750, - [4751] = 4751, - [4752] = 4752, - [4753] = 924, - [4754] = 475, - [4755] = 4735, + [4748] = 4748, + [4749] = 4749, + [4750] = 4737, + [4751] = 4721, + [4752] = 4703, + [4753] = 4753, + [4754] = 4710, + [4755] = 4669, [4756] = 4756, - [4757] = 4723, - [4758] = 455, - [4759] = 4725, - [4760] = 4723, - [4761] = 4662, - [4762] = 4762, - [4763] = 4763, - [4764] = 4717, - [4765] = 4743, - [4766] = 920, - [4767] = 4663, - [4768] = 1651, + [4757] = 3111, + [4758] = 927, + [4759] = 923, + [4760] = 3051, + [4761] = 4761, + [4762] = 963, + [4763] = 4695, + [4764] = 4748, + [4765] = 4765, + [4766] = 4721, + [4767] = 4753, + [4768] = 4723, [4769] = 4769, - [4770] = 4752, - [4771] = 4735, + [4770] = 4761, + [4771] = 924, [4772] = 4772, - [4773] = 4773, - [4774] = 4741, + [4773] = 913, + [4774] = 1008, [4775] = 4775, - [4776] = 918, - [4777] = 941, - [4778] = 352, - [4779] = 4779, - [4780] = 4773, - [4781] = 353, - [4782] = 4679, - [4783] = 4712, - [4784] = 485, - [4785] = 4785, - [4786] = 4752, - [4787] = 923, - [4788] = 1086, - [4789] = 4673, + [4776] = 352, + [4777] = 4777, + [4778] = 4741, + [4779] = 4746, + [4780] = 353, + [4781] = 940, + [4782] = 4782, + [4783] = 4671, + [4784] = 4706, + [4785] = 4710, + [4786] = 4775, + [4787] = 4753, + [4788] = 4753, + [4789] = 4789, [4790] = 4790, - [4791] = 4790, - [4792] = 4752, - [4793] = 914, - [4794] = 3007, + [4791] = 922, + [4792] = 4792, + [4793] = 4793, + [4794] = 4753, [4795] = 4795, - [4796] = 4796, - [4797] = 4725, - [4798] = 899, - [4799] = 4799, - [4800] = 4779, - [4801] = 4801, - [4802] = 4796, - [4803] = 4657, - [4804] = 4720, + [4796] = 4792, + [4797] = 2421, + [4798] = 4798, + [4799] = 2423, + [4800] = 4800, + [4801] = 4798, + [4802] = 4802, + [4803] = 4670, + [4804] = 4800, [4805] = 4805, - [4806] = 4762, - [4807] = 4685, - [4808] = 4661, - [4809] = 4752, - [4810] = 4785, + [4806] = 4806, + [4807] = 4807, + [4808] = 4673, + [4809] = 4809, + [4810] = 4683, [4811] = 4811, - [4812] = 464, + [4812] = 4676, [4813] = 4813, - [4814] = 2371, - [4815] = 4735, - [4816] = 4741, - [4817] = 4817, - [4818] = 4682, - [4819] = 4819, - [4820] = 4741, - [4821] = 4821, - [4822] = 4822, - [4823] = 4823, - [4824] = 4658, - [4825] = 4805, - [4826] = 4745, - [4827] = 367, - [4828] = 4828, - [4829] = 4829, + [4814] = 4686, + [4815] = 4815, + [4816] = 4678, + [4817] = 4782, + [4818] = 4705, + [4819] = 4790, + [4820] = 4820, + [4821] = 3970, + [4822] = 4668, + [4823] = 463, + [4824] = 2400, + [4825] = 2090, + [4826] = 4690, + [4827] = 2095, + [4828] = 2383, + [4829] = 4700, [4830] = 4830, [4831] = 4831, [4832] = 4832, @@ -9647,428 +9640,427 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4838] = 4838, [4839] = 4839, [4840] = 4840, - [4841] = 4841, + [4841] = 4831, [4842] = 4842, - [4843] = 4843, + [4843] = 2421, [4844] = 4844, [4845] = 4845, - [4846] = 4846, + [4846] = 4844, [4847] = 4847, - [4848] = 4837, + [4848] = 4848, [4849] = 4849, [4850] = 4850, - [4851] = 4844, + [4851] = 4851, [4852] = 4852, - [4853] = 4847, - [4854] = 4831, + [4853] = 4853, + [4854] = 4854, [4855] = 4832, - [4856] = 4833, - [4857] = 4857, + [4856] = 4856, + [4857] = 4837, [4858] = 4838, - [4859] = 4839, + [4859] = 4859, [4860] = 4860, - [4861] = 4836, + [4861] = 497, [4862] = 4862, - [4863] = 4863, - [4864] = 4847, + [4863] = 4844, + [4864] = 4864, [4865] = 4865, [4866] = 4866, - [4867] = 4867, - [4868] = 4844, - [4869] = 4869, - [4870] = 4870, - [4871] = 4831, + [4867] = 4850, + [4868] = 488, + [4869] = 4850, + [4870] = 4853, + [4871] = 4854, [4872] = 4832, - [4873] = 4833, - [4874] = 4839, - [4875] = 4870, - [4876] = 4844, - [4877] = 4829, - [4878] = 4878, - [4879] = 4847, - [4880] = 4837, - [4881] = 4881, - [4882] = 4830, - [4883] = 4869, - [4884] = 4884, - [4885] = 4831, + [4873] = 4838, + [4874] = 4874, + [4875] = 4875, + [4876] = 4876, + [4877] = 4834, + [4878] = 4844, + [4879] = 4879, + [4880] = 4856, + [4881] = 4853, + [4882] = 4854, + [4883] = 4866, + [4884] = 4853, + [4885] = 4854, [4886] = 4832, - [4887] = 4833, - [4888] = 4839, - [4889] = 4847, - [4890] = 4890, - [4891] = 4881, - [4892] = 4847, - [4893] = 4829, - [4894] = 4894, - [4895] = 4895, - [4896] = 4896, - [4897] = 4831, + [4887] = 4838, + [4888] = 4875, + [4889] = 4889, + [4890] = 4832, + [4891] = 4844, + [4892] = 4892, + [4893] = 4893, + [4894] = 4853, + [4895] = 4838, + [4896] = 4853, + [4897] = 4854, [4898] = 4832, - [4899] = 4833, - [4900] = 4831, - [4901] = 4839, - [4902] = 4847, - [4903] = 4831, - [4904] = 4832, - [4905] = 4833, - [4906] = 4906, - [4907] = 4831, + [4899] = 4899, + [4900] = 4854, + [4901] = 4844, + [4902] = 4832, + [4903] = 4903, + [4904] = 4844, + [4905] = 4905, + [4906] = 4853, + [4907] = 4854, [4908] = 4832, - [4909] = 4833, - [4910] = 4832, - [4911] = 4911, - [4912] = 4847, + [4909] = 4835, + [4910] = 4910, + [4911] = 4844, + [4912] = 4864, [4913] = 4913, - [4914] = 4836, - [4915] = 4915, - [4916] = 4831, + [4914] = 4914, + [4915] = 4853, + [4916] = 4854, [4917] = 4832, - [4918] = 4833, + [4918] = 4918, [4919] = 4919, - [4920] = 4833, - [4921] = 4847, - [4922] = 4922, - [4923] = 4831, + [4920] = 4844, + [4921] = 2423, + [4922] = 4853, + [4923] = 4854, [4924] = 4832, - [4925] = 4833, - [4926] = 4860, - [4927] = 4927, - [4928] = 4847, - [4929] = 4929, - [4930] = 4831, + [4925] = 4835, + [4926] = 4926, + [4927] = 4844, + [4928] = 4837, + [4929] = 4853, + [4930] = 4854, [4931] = 4832, - [4932] = 4833, - [4933] = 4838, - [4934] = 4934, - [4935] = 4847, - [4936] = 4936, - [4937] = 4831, + [4932] = 4889, + [4933] = 4910, + [4934] = 4844, + [4935] = 4893, + [4936] = 4853, + [4937] = 4854, [4938] = 4832, - [4939] = 4833, - [4940] = 4894, - [4941] = 4941, - [4942] = 4847, - [4943] = 4943, - [4944] = 4831, + [4939] = 4838, + [4940] = 4853, + [4941] = 4844, + [4942] = 4876, + [4943] = 4853, + [4944] = 4854, [4945] = 4832, - [4946] = 4833, - [4947] = 4896, - [4948] = 4839, - [4949] = 4847, - [4950] = 4840, - [4951] = 4831, + [4946] = 4839, + [4947] = 4914, + [4948] = 4844, + [4949] = 4949, + [4950] = 4853, + [4951] = 4854, [4952] = 4832, - [4953] = 4833, - [4954] = 4831, - [4955] = 4847, - [4956] = 4836, - [4957] = 4831, + [4953] = 4953, + [4954] = 4844, + [4955] = 4839, + [4956] = 4853, + [4957] = 4854, [4958] = 4832, - [4959] = 4833, - [4960] = 4960, - [4961] = 4847, - [4962] = 4831, + [4959] = 4953, + [4960] = 4844, + [4961] = 4853, + [4962] = 4854, [4963] = 4832, - [4964] = 4833, - [4965] = 4919, - [4966] = 4847, - [4967] = 4831, + [4964] = 4847, + [4965] = 4844, + [4966] = 4853, + [4967] = 4854, [4968] = 4832, - [4969] = 4833, - [4970] = 4828, - [4971] = 4866, - [4972] = 4840, - [4973] = 4960, + [4969] = 4969, + [4970] = 4854, + [4971] = 4892, + [4972] = 4972, + [4973] = 4973, [4974] = 4974, [4975] = 4975, - [4976] = 4841, - [4977] = 2400, - [4978] = 4860, - [4979] = 4979, - [4980] = 4922, + [4976] = 475, + [4977] = 4832, + [4978] = 4865, + [4979] = 4848, + [4980] = 4980, [4981] = 4981, - [4982] = 4857, - [4983] = 4832, - [4984] = 4984, + [4982] = 4849, + [4983] = 4983, + [4984] = 4980, [4985] = 4985, - [4986] = 4986, - [4987] = 4833, - [4988] = 4844, - [4989] = 4985, - [4990] = 4906, - [4991] = 4846, - [4992] = 4837, + [4986] = 4837, + [4987] = 4850, + [4988] = 4876, + [4989] = 4989, + [4990] = 4990, + [4991] = 4834, + [4992] = 4992, [4993] = 4993, - [4994] = 4830, - [4995] = 4829, - [4996] = 4849, - [4997] = 4997, - [4998] = 4845, - [4999] = 4870, + [4994] = 4866, + [4995] = 4849, + [4996] = 4996, + [4997] = 4876, + [4998] = 4837, + [4999] = 4840, [5000] = 5000, - [5001] = 5001, - [5002] = 4915, - [5003] = 5001, - [5004] = 4838, - [5005] = 5005, - [5006] = 5006, - [5007] = 5007, - [5008] = 4838, - [5009] = 4862, - [5010] = 4867, - [5011] = 491, - [5012] = 485, - [5013] = 4865, + [5001] = 4859, + [5002] = 485, + [5003] = 4837, + [5004] = 5004, + [5005] = 4862, + [5006] = 497, + [5007] = 4989, + [5008] = 2400, + [5009] = 4874, + [5010] = 5010, + [5011] = 480, + [5012] = 5012, + [5013] = 5012, [5014] = 5014, - [5015] = 5015, - [5016] = 4834, - [5017] = 4997, - [5018] = 5001, - [5019] = 5019, + [5015] = 5004, + [5016] = 4953, + [5017] = 5017, + [5018] = 5018, + [5019] = 4838, [5020] = 5020, - [5021] = 4849, - [5022] = 4839, - [5023] = 4846, - [5024] = 494, - [5025] = 5007, - [5026] = 4847, - [5027] = 491, - [5028] = 2405, - [5029] = 4960, - [5030] = 4865, - [5031] = 5031, - [5032] = 475, + [5021] = 4850, + [5022] = 4844, + [5023] = 937, + [5024] = 5010, + [5025] = 4859, + [5026] = 4795, + [5027] = 4889, + [5028] = 5010, + [5029] = 485, + [5030] = 4851, + [5031] = 4850, + [5032] = 5032, [5033] = 5033, [5034] = 4834, - [5035] = 942, - [5036] = 4844, - [5037] = 5014, - [5038] = 4837, + [5035] = 4969, + [5036] = 5036, + [5037] = 4856, + [5038] = 4842, [5039] = 5039, - [5040] = 4869, - [5041] = 4894, - [5042] = 5042, + [5040] = 5040, + [5041] = 4893, + [5042] = 4866, [5043] = 5043, - [5044] = 4835, - [5045] = 4829, - [5046] = 4896, - [5047] = 5047, - [5048] = 494, - [5049] = 4831, - [5050] = 4832, - [5051] = 4833, - [5052] = 4839, - [5053] = 4835, - [5054] = 4836, - [5055] = 5055, - [5056] = 5033, - [5057] = 4838, - [5058] = 4894, - [5059] = 4834, - [5060] = 4896, + [5044] = 4838, + [5045] = 4853, + [5046] = 4854, + [5047] = 4832, + [5048] = 5014, + [5049] = 4879, + [5050] = 4835, + [5051] = 485, + [5052] = 4910, + [5053] = 5053, + [5054] = 4837, + [5055] = 4889, + [5056] = 2411, + [5057] = 4893, + [5058] = 4838, + [5059] = 5000, + [5060] = 5060, [5061] = 4839, - [5062] = 5062, - [5063] = 5006, - [5064] = 4840, - [5065] = 4844, - [5066] = 4860, - [5067] = 4842, - [5068] = 4847, - [5069] = 5069, - [5070] = 4828, - [5071] = 4837, - [5072] = 478, + [5062] = 4850, + [5063] = 4892, + [5064] = 4839, + [5065] = 5010, + [5066] = 956, + [5067] = 4854, + [5068] = 4953, + [5069] = 497, + [5070] = 2430, + [5071] = 5071, + [5072] = 4856, [5073] = 5073, - [5074] = 2427, - [5075] = 4840, - [5076] = 5019, - [5077] = 4960, - [5078] = 5078, - [5079] = 4847, - [5080] = 494, - [5081] = 4919, - [5082] = 4865, - [5083] = 927, - [5084] = 4844, - [5085] = 491, - [5086] = 4869, + [5074] = 4844, + [5075] = 4913, + [5076] = 5076, + [5077] = 4859, + [5078] = 4992, + [5079] = 5079, + [5080] = 5080, + [5081] = 4856, + [5082] = 5032, + [5083] = 4859, + [5084] = 4850, + [5085] = 4866, + [5086] = 4834, [5087] = 5087, - [5088] = 4869, - [5089] = 4844, - [5090] = 2397, - [5091] = 4837, - [5092] = 4829, - [5093] = 4869, - [5094] = 5042, - [5095] = 4844, - [5096] = 5015, - [5097] = 4829, - [5098] = 4838, - [5099] = 4829, - [5100] = 4837, - [5101] = 5101, - [5102] = 4860, - [5103] = 5001, - [5104] = 4831, - [5105] = 4832, - [5106] = 4833, - [5107] = 4829, - [5108] = 4838, - [5109] = 4865, - [5110] = 4844, - [5111] = 4828, + [5088] = 4856, + [5089] = 5089, + [5090] = 4993, + [5091] = 4892, + [5092] = 4847, + [5093] = 4866, + [5094] = 4850, + [5095] = 5095, + [5096] = 4866, + [5097] = 4837, + [5098] = 5098, + [5099] = 4834, + [5100] = 4839, + [5101] = 4853, + [5102] = 4854, + [5103] = 4832, + [5104] = 4853, + [5105] = 4854, + [5106] = 4866, + [5107] = 4837, + [5108] = 4835, + [5109] = 4850, + [5110] = 4969, + [5111] = 4973, [5112] = 4974, [5113] = 4975, - [5114] = 4841, - [5115] = 5115, - [5116] = 4857, - [5117] = 4836, - [5118] = 4997, - [5119] = 4840, + [5114] = 5114, + [5115] = 4837, + [5116] = 4889, + [5117] = 4996, + [5118] = 4889, + [5119] = 2428, [5120] = 5120, - [5121] = 4838, - [5122] = 4894, - [5123] = 4831, - [5124] = 4896, - [5125] = 4839, - [5126] = 2412, - [5127] = 2420, - [5128] = 4894, - [5129] = 4840, - [5130] = 4832, - [5131] = 4860, - [5132] = 4833, - [5133] = 4834, + [5121] = 4893, + [5122] = 4838, + [5123] = 4844, + [5124] = 4839, + [5125] = 4832, + [5126] = 4985, + [5127] = 4892, + [5128] = 4973, + [5129] = 5010, + [5130] = 4893, + [5131] = 4847, + [5132] = 5132, + [5133] = 4914, [5134] = 5134, - [5135] = 4993, - [5136] = 5136, - [5137] = 4986, - [5138] = 4896, - [5139] = 5139, - [5140] = 5140, - [5141] = 4847, - [5142] = 4847, - [5143] = 4857, - [5144] = 4913, - [5145] = 4865, - [5146] = 4974, - [5147] = 4829, - [5148] = 4828, - [5149] = 4974, - [5150] = 4975, - [5151] = 4841, - [5152] = 4844, - [5153] = 4997, - [5154] = 4979, - [5155] = 4981, - [5156] = 4837, - [5157] = 5005, - [5158] = 4869, - [5159] = 4981, - [5160] = 5160, - [5161] = 4828, - [5162] = 4974, - [5163] = 4975, - [5164] = 4841, - [5165] = 4828, - [5166] = 4974, - [5167] = 4975, - [5168] = 4841, - [5169] = 4828, - [5170] = 4974, - [5171] = 4975, - [5172] = 4841, - [5173] = 4828, - [5174] = 4975, - [5175] = 4841, - [5176] = 4828, - [5177] = 4975, - [5178] = 4841, - [5179] = 4828, - [5180] = 4975, - [5181] = 4841, - [5182] = 4828, - [5183] = 4975, - [5184] = 4841, - [5185] = 4828, - [5186] = 4975, - [5187] = 4841, - [5188] = 4828, - [5189] = 4975, - [5190] = 4841, - [5191] = 4922, - [5192] = 4975, - [5193] = 4841, - [5194] = 4828, - [5195] = 4975, - [5196] = 4841, - [5197] = 4828, - [5198] = 4975, - [5199] = 4841, - [5200] = 4828, - [5201] = 4975, - [5202] = 4841, - [5203] = 4828, - [5204] = 4975, - [5205] = 4841, - [5206] = 4828, - [5207] = 4975, - [5208] = 4841, - [5209] = 4828, - [5210] = 4975, - [5211] = 4841, - [5212] = 4828, - [5213] = 4975, - [5214] = 4841, - [5215] = 4828, - [5216] = 4975, - [5217] = 4841, - [5218] = 4829, - [5219] = 803, - [5220] = 4895, - [5221] = 4865, - [5222] = 5222, - [5223] = 4831, - [5224] = 4832, - [5225] = 4852, - [5226] = 4833, - [5227] = 4975, + [5135] = 4833, + [5136] = 4974, + [5137] = 4844, + [5138] = 4949, + [5139] = 4859, + [5140] = 4859, + [5141] = 4866, + [5142] = 4844, + [5143] = 4850, + [5144] = 5144, + [5145] = 4834, + [5146] = 4969, + [5147] = 4973, + [5148] = 4974, + [5149] = 4975, + [5150] = 5150, + [5151] = 4996, + [5152] = 4856, + [5153] = 4949, + [5154] = 4992, + [5155] = 768, + [5156] = 5156, + [5157] = 4866, + [5158] = 4990, + [5159] = 4969, + [5160] = 4973, + [5161] = 4974, + [5162] = 4975, + [5163] = 4969, + [5164] = 4973, + [5165] = 4974, + [5166] = 4975, + [5167] = 4969, + [5168] = 4973, + [5169] = 4974, + [5170] = 4975, + [5171] = 4969, + [5172] = 4974, + [5173] = 4975, + [5174] = 4969, + [5175] = 4974, + [5176] = 4975, + [5177] = 4969, + [5178] = 4974, + [5179] = 4975, + [5180] = 4969, + [5181] = 4974, + [5182] = 4975, + [5183] = 4969, + [5184] = 4974, + [5185] = 4975, + [5186] = 4969, + [5187] = 4974, + [5188] = 4975, + [5189] = 4969, + [5190] = 4974, + [5191] = 4975, + [5192] = 4969, + [5193] = 4974, + [5194] = 4975, + [5195] = 4969, + [5196] = 4974, + [5197] = 4975, + [5198] = 4969, + [5199] = 4974, + [5200] = 4975, + [5201] = 4969, + [5202] = 4974, + [5203] = 4975, + [5204] = 4969, + [5205] = 4974, + [5206] = 4975, + [5207] = 4969, + [5208] = 4974, + [5209] = 4975, + [5210] = 4969, + [5211] = 4974, + [5212] = 4975, + [5213] = 4969, + [5214] = 4974, + [5215] = 4975, + [5216] = 5216, + [5217] = 4853, + [5218] = 4852, + [5219] = 4854, + [5220] = 4832, + [5221] = 5036, + [5222] = 4848, + [5223] = 4845, + [5224] = 4835, + [5225] = 4992, + [5226] = 5226, + [5227] = 4865, [5228] = 5228, - [5229] = 4836, - [5230] = 5230, - [5231] = 4838, + [5229] = 4837, + [5230] = 4889, + [5231] = 4993, [5232] = 5232, - [5233] = 4894, - [5234] = 4906, - [5235] = 4838, - [5236] = 4896, - [5237] = 4839, - [5238] = 4830, - [5239] = 4840, - [5240] = 4878, - [5241] = 5043, - [5242] = 4860, - [5243] = 5243, - [5244] = 4676, - [5245] = 4834, - [5246] = 4845, - [5247] = 4870, - [5248] = 4836, - [5249] = 4878, - [5250] = 4919, - [5251] = 5251, - [5252] = 4847, - [5253] = 5253, - [5254] = 4878, - [5255] = 4845, - [5256] = 4834, - [5257] = 5232, - [5258] = 4844, - [5259] = 4922, - [5260] = 4837, - [5261] = 4834, - [5262] = 5262, + [5233] = 4893, + [5234] = 4838, + [5235] = 4834, + [5236] = 4839, + [5237] = 5226, + [5238] = 4831, + [5239] = 4975, + [5240] = 4892, + [5241] = 4996, + [5242] = 5010, + [5243] = 4993, + [5244] = 4835, + [5245] = 4910, + [5246] = 5010, + [5247] = 4831, + [5248] = 4879, + [5249] = 4844, + [5250] = 4892, + [5251] = 4972, + [5252] = 4914, + [5253] = 4850, + [5254] = 4835, + [5255] = 4834, + [5256] = 5010, + [5257] = 4866, + [5258] = 4850, + [5259] = 4853, + [5260] = 4834, + [5261] = 5261, }; static const TSCharacterRange aux_sym_cmd_identifier_token1_character_set_1[] = { @@ -10731,280 +10723,280 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1482, + '\n', 1483, '\r', 9, - '!', 1721, - '"', 1688, - '#', 2192, - '$', 1513, - '&', 827, - '\'', 1691, - '(', 1564, - ')', 1619, - '*', 1115, - '+', 1120, - ',', 1472, - '-', 1121, - '.', 1724, - '/', 1117, - ':', 1716, - ';', 1454, - '<', 1144, - '=', 676, - '>', 1147, - '?', 1720, - '@', 1485, - '[', 1668, - ']', 1469, - '^', 1735, - '_', 1506, - '`', 1695, - '{', 1502, - '|', 1455, - '}', 1503, + '!', 1722, + '"', 1689, + '#', 2193, + '$', 1514, + '&', 828, + '\'', 1692, + '(', 1565, + ')', 1620, + '*', 1116, + '+', 1121, + ',', 1473, + '-', 1122, + '.', 1725, + '/', 1118, + ':', 1717, + ';', 1455, + '<', 1145, + '=', 677, + '>', 1148, + '?', 1721, + '@', 1486, + '[', 1669, + ']', 1470, + '^', 1736, + '_', 1507, + '`', 1696, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(572); + lookahead == ' ') SKIP(573); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1376); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1377); END_STATE(); case 1: ADVANCE_MAP( - '\n', 1482, - '!', 1721, - '"', 1688, - '#', 2192, - '\'', 1691, - '+', 2143, - ',', 1472, - '-', 2142, - '.', 1725, - '>', 1483, - '?', 1720, - 'N', 2158, - '_', 2145, - '`', 1695, - 'f', 2148, - 'n', 2157, - 't', 2154, + '\n', 1483, + '!', 1722, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 2144, + ',', 1473, + '-', 2143, + '.', 1726, + '>', 1484, + '?', 1721, + 'N', 2159, + '_', 2146, + '`', 1696, + 'f', 2149, + 'n', 2158, + 't', 2155, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2164); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2178); + lookahead == 'i') ADVANCE(2165); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2179); END_STATE(); case 2: ADVANCE_MAP( - '\n', 1482, - '!', 1721, - '"', 1688, - '#', 2192, - '\'', 1691, - '+', 2143, - ',', 1472, - '-', 2142, - '.', 1725, - '>', 1483, - 'N', 2158, - '_', 2145, - '`', 1695, - 'f', 2148, - 'n', 2157, - 't', 2154, + '\n', 1483, + '!', 1722, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 2144, + ',', 1473, + '-', 2143, + '.', 1726, + '>', 1484, + 'N', 2159, + '_', 2146, + '`', 1696, + 'f', 2149, + 'n', 2158, + 't', 2155, ); if (lookahead == '\t' || lookahead == ' ') SKIP(2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2164); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2178); + lookahead == 'i') ADVANCE(2165); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2179); END_STATE(); case 3: ADVANCE_MAP( - '\n', 1482, - '"', 1688, - '#', 2192, - '\'', 1691, - '+', 2143, - ',', 1472, - '-', 2142, - '.', 1725, - '>', 1483, - '?', 1720, - 'N', 2158, - '_', 2145, - '`', 1695, - 'f', 2148, - 'n', 2157, - 't', 2154, + '\n', 1483, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 2144, + ',', 1473, + '-', 2143, + '.', 1726, + '>', 1484, + '?', 1721, + 'N', 2159, + '_', 2146, + '`', 1696, + 'f', 2149, + 'n', 2158, + 't', 2155, ); if (lookahead == '\t' || lookahead == ' ') SKIP(3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2164); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2178); + lookahead == 'i') ADVANCE(2165); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2179); END_STATE(); case 4: ADVANCE_MAP( - '\n', 1482, - '"', 1688, - '#', 2192, - '\'', 1691, - '+', 2143, - ',', 1472, - '-', 2142, - '.', 1725, - '>', 1483, - 'N', 2158, - '_', 2145, - '`', 1695, - 'f', 2148, - 'n', 2157, - 't', 2154, + '\n', 1483, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 2144, + ',', 1473, + '-', 2143, + '.', 1726, + '>', 1484, + 'N', 2159, + '_', 2146, + '`', 1696, + 'f', 2149, + 'n', 2158, + 't', 2155, ); if (lookahead == '\t' || lookahead == ' ') SKIP(4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2164); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2178); + lookahead == 'i') ADVANCE(2165); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2179); END_STATE(); case 5: ADVANCE_MAP( - '\n', 1482, - '"', 1688, - '#', 2192, - '\'', 1691, - '+', 2143, - ',', 1472, - '-', 2142, - '.', 2141, - ':', 1466, - '>', 1483, - 'N', 2158, - '_', 2145, - '`', 1695, - 'f', 2148, - 'n', 2157, - 't', 2154, + '\n', 1483, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 2144, + ',', 1473, + '-', 2143, + '.', 2142, + ':', 1467, + '>', 1484, + 'N', 2159, + '_', 2146, + '`', 1696, + 'f', 2149, + 'n', 2158, + 't', 2155, ); if (lookahead == '\t' || lookahead == ' ') SKIP(5); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2164); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2178); + lookahead == 'i') ADVANCE(2165); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2179); END_STATE(); case 6: ADVANCE_MAP( - '\n', 1482, - '"', 1688, - '#', 2192, - '\'', 1691, - '+', 2143, - ',', 1472, - '-', 2142, - '.', 2141, - '<', 1144, - '>', 1483, - '@', 1485, - 'N', 2158, - '_', 2145, - '`', 1695, - 'f', 2148, - 'n', 2157, - 't', 2154, + '\n', 1483, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 2144, + ',', 1473, + '-', 2143, + '.', 2142, + '<', 1145, + '>', 1484, + '@', 1486, + 'N', 2159, + '_', 2146, + '`', 1696, + 'f', 2149, + 'n', 2158, + 't', 2155, ); if (lookahead == '\t' || lookahead == ' ') SKIP(8); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2164); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2178); + lookahead == 'i') ADVANCE(2165); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2179); END_STATE(); case 7: ADVANCE_MAP( - '\n', 1482, - '"', 1688, - '#', 2192, - '\'', 1691, - '+', 2143, - ',', 1472, - '-', 2142, - '.', 2141, - '>', 1483, - '@', 1485, - 'N', 2158, - '_', 2145, - '`', 1695, - 'f', 2148, - 'n', 2157, - 't', 2154, + '\n', 1483, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 2144, + ',', 1473, + '-', 2143, + '.', 2142, + '>', 1484, + '@', 1486, + 'N', 2159, + '_', 2146, + '`', 1696, + 'f', 2149, + 'n', 2158, + 't', 2155, ); if (lookahead == '\t' || lookahead == ' ') SKIP(8); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2164); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2178); + lookahead == 'i') ADVANCE(2165); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2179); END_STATE(); case 8: ADVANCE_MAP( - '\n', 1482, - '"', 1688, - '#', 2192, - '\'', 1691, - '+', 2143, - ',', 1472, - '-', 2142, - '.', 2141, - '>', 1483, - 'N', 2158, - '_', 2145, - '`', 1695, - 'f', 2148, - 'n', 2157, - 't', 2154, + '\n', 1483, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 2144, + ',', 1473, + '-', 2143, + '.', 2142, + '>', 1484, + 'N', 2159, + '_', 2146, + '`', 1696, + 'f', 2149, + 'n', 2158, + 't', 2155, ); if (lookahead == '\t' || lookahead == ' ') SKIP(8); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2164); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2178); + lookahead == 'i') ADVANCE(2165); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2179); END_STATE(); case 9: - if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\n') ADVANCE(1452); END_STATE(); case 10: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1721, - '#', 2192, - '$', 1473, - '(', 1470, - ')', 1471, - ',', 1472, - '-', 1491, - '.', 1728, - ':', 1466, - ';', 1454, - '<', 1144, - '=', 676, - '>', 1483, - '?', 1720, - '@', 1485, - '[', 1468, - ']', 1469, - '{', 1502, - '|', 1455, - '}', 1503, + '!', 1722, + '#', 2193, + '$', 1474, + '(', 1471, + ')', 1472, + ',', 1473, + '-', 1492, + '.', 1729, + ':', 1467, + ';', 1455, + '<', 1145, + '=', 677, + '>', 1484, + '?', 1721, + '@', 1486, + '[', 1469, + ']', 1470, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(11); @@ -11014,30 +11006,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '&' || '.' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '`') ADVANCE(1376); + lookahead != '`') ADVANCE(1377); END_STATE(); case 11: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1721, - '#', 2192, - '$', 1473, - '(', 1470, - ')', 1471, - ',', 1472, - '-', 1491, - '.', 1729, - ':', 1466, - ';', 1454, - '=', 676, - '>', 1483, - '?', 1720, - '[', 1468, - ']', 1469, - '{', 1502, - '|', 1455, - '}', 1503, + '!', 1722, + '#', 2193, + '$', 1474, + '(', 1471, + ')', 1472, + ',', 1473, + '-', 1492, + '.', 1730, + ':', 1467, + ';', 1455, + '=', 677, + '>', 1484, + '?', 1721, + '[', 1469, + ']', 1470, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(11); @@ -11048,1572 +11040,1572 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ':' || '@' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '`') ADVANCE(1376); + lookahead != '`') ADVANCE(1377); END_STATE(); case 12: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1721, - '#', 2192, - ')', 1471, - '.', 1723, - ':', 1716, - ';', 1454, - '=', 327, - '?', 1720, - 'a', 423, - 'e', 292, - 'i', 389, - 'o', 293, - 'x', 433, - '{', 1502, - '|', 1455, - '}', 1503, + '!', 1722, + '#', 2193, + ')', 1472, + '.', 1724, + ':', 1717, + ';', 1455, + '=', 328, + '?', 1721, + 'a', 424, + 'e', 293, + 'i', 390, + 'o', 294, + 'x', 434, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(12); END_STATE(); case 13: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1721, - '#', 2192, - ')', 1471, - '.', 1726, - ':', 1716, - ';', 1454, - '=', 327, - '?', 1720, - 'a', 423, - 'e', 292, - 'i', 389, - 'o', 293, - 'x', 433, - '{', 1502, - '|', 1455, - '}', 1503, + '!', 1722, + '#', 2193, + ')', 1472, + '.', 1727, + ':', 1717, + ';', 1455, + '=', 328, + '?', 1721, + 'a', 424, + 'e', 293, + 'i', 390, + 'o', 294, + 'x', 434, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(12); END_STATE(); case 14: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '$', 1473, - '(', 1564, - '*', 1515, - '+', 1579, - '-', 1497, - '.', 1607, - '/', 1570, - '<', 1553, - '=', 1799, - '>', 1484, - '_', 1817, - 'a', 1869, - 'b', 1856, - 'e', 1870, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1883, - 's', 1903, - 'x', 1875, - '{', 1502, + '!', 1798, + '#', 2193, + '$', 1474, + '(', 1565, + '*', 1516, + '+', 1580, + '-', 1498, + '.', 1608, + '/', 1571, + '<', 1554, + '=', 1800, + '>', 1485, + '_', 1818, + 'a', 1870, + 'b', 1857, + 'e', 1871, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, + '{', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); case 15: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '$', 1473, - '(', 1564, - '*', 1515, - '+', 1579, - '-', 1497, - '.', 1819, - '/', 1570, - '<', 1553, - '=', 1799, - '>', 1484, - '_', 1817, - 'a', 1869, - 'b', 1856, - 'e', 1870, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1883, - 's', 1903, - 'x', 1875, - '{', 1502, + '!', 1798, + '#', 2193, + '$', 1474, + '(', 1565, + '*', 1516, + '+', 1580, + '-', 1498, + '.', 1820, + '/', 1571, + '<', 1554, + '=', 1800, + '>', 1485, + '_', 1818, + 'a', 1870, + 'b', 1857, + 'e', 1871, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, + '{', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); case 16: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1598, - '/', 1570, - '<', 1553, - '=', 1799, - '>', 1484, - 'B', 1656, - 'E', 1811, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - 'a', 1869, - 'b', 1659, - 'd', 1828, - 'e', 1809, - 'g', 1813, - 'h', 1826, - 'i', 1867, - 'k', 1813, - 'l', 1855, - 'm', 1815, - 'n', 1876, - 'o', 1883, - 'p', 1813, - 's', 1842, - 't', 1813, - 'u', 1895, - 'w', 1862, - 'x', 1875, - '{', 1502, - 0xb5, 1895, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1599, + '/', 1571, + '<', 1554, + '=', 1800, + '>', 1485, + 'B', 1657, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'a', 1870, + 'b', 1660, + 'd', 1829, + 'e', 1810, + 'g', 1814, + 'h', 1827, + 'i', 1868, + 'k', 1814, + 'l', 1856, + 'm', 1816, + 'n', 1877, + 'o', 1884, + 'p', 1814, + 's', 1843, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + '{', 1503, + 0xb5, 1896, ); if (lookahead == '\t' || lookahead == ' ') SKIP(36); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 17: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1598, - '/', 1570, - '<', 1553, - '=', 1799, - '>', 1484, - 'E', 1823, - 'a', 1869, - 'b', 1856, - 'e', 1820, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1883, - 's', 1903, - 'x', 1875, - '{', 1502, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1599, + '/', 1571, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + 'a', 1870, + 'b', 1857, + 'e', 1821, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, + '{', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(36); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 18: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1794, - '/', 1570, - '<', 1553, - '=', 1799, - '>', 1484, - 'B', 1656, - 'E', 1811, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - '_', 1817, - 'a', 1869, - 'b', 1659, - 'd', 1828, - 'e', 1809, - 'g', 1813, - 'h', 1826, - 'i', 1867, - 'k', 1813, - 'l', 1855, - 'm', 1815, - 'n', 1876, - 'o', 1883, - 'p', 1813, - 's', 1842, - 't', 1813, - 'u', 1895, - 'w', 1862, - 'x', 1875, - '{', 1502, - 0xb5, 1895, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + '<', 1554, + '=', 1800, + '>', 1485, + 'B', 1657, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + '_', 1818, + 'a', 1870, + 'b', 1660, + 'd', 1829, + 'e', 1810, + 'g', 1814, + 'h', 1827, + 'i', 1868, + 'k', 1814, + 'l', 1856, + 'm', 1816, + 'n', 1877, + 'o', 1884, + 'p', 1814, + 's', 1843, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + '{', 1503, + 0xb5, 1896, ); if (lookahead == '\t' || lookahead == ' ') SKIP(36); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 19: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1794, - '/', 1570, - '<', 1553, - '=', 1799, - '>', 1484, - 'B', 1656, - 'E', 1811, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - 'a', 1869, - 'b', 1659, - 'd', 1828, - 'e', 1809, - 'g', 1813, - 'h', 1826, - 'i', 1867, - 'k', 1813, - 'l', 1855, - 'm', 1815, - 'n', 1876, - 'o', 1883, - 'p', 1813, - 's', 1842, - 't', 1813, - 'u', 1895, - 'w', 1862, - 'x', 1875, - '{', 1502, - 0xb5, 1895, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + '<', 1554, + '=', 1800, + '>', 1485, + 'B', 1657, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'a', 1870, + 'b', 1660, + 'd', 1829, + 'e', 1810, + 'g', 1814, + 'h', 1827, + 'i', 1868, + 'k', 1814, + 'l', 1856, + 'm', 1816, + 'n', 1877, + 'o', 1884, + 'p', 1814, + 's', 1843, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + '{', 1503, + 0xb5, 1896, ); if (lookahead == '\t' || lookahead == ' ') SKIP(36); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 20: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1794, - '/', 1570, - '<', 1553, - '=', 1799, - '>', 1484, - 'B', 1656, - 'E', 1814, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - 'a', 1869, - 'b', 1659, - 'd', 1828, - 'e', 1812, - 'g', 1813, - 'h', 1826, - 'i', 1867, - 'k', 1813, - 'l', 1855, - 'm', 1815, - 'n', 1876, - 'o', 1883, - 'p', 1813, - 's', 1842, - 't', 1813, - 'u', 1895, - 'w', 1862, - 'x', 1875, - '{', 1502, - 0xb5, 1895, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + '<', 1554, + '=', 1800, + '>', 1485, + 'B', 1657, + 'E', 1815, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'a', 1870, + 'b', 1660, + 'd', 1829, + 'e', 1813, + 'g', 1814, + 'h', 1827, + 'i', 1868, + 'k', 1814, + 'l', 1856, + 'm', 1816, + 'n', 1877, + 'o', 1884, + 'p', 1814, + 's', 1843, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + '{', 1503, + 0xb5, 1896, ); if (lookahead == '\t' || lookahead == ' ') SKIP(36); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 21: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1794, - '/', 1570, - '<', 1553, - '=', 1799, - '>', 1484, - 'E', 1823, - '_', 1817, - 'a', 1869, - 'b', 1856, - 'e', 1820, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1883, - 's', 1903, - 'x', 1875, - '{', 1502, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + '_', 1818, + 'a', 1870, + 'b', 1857, + 'e', 1821, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, + '{', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(36); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 22: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1794, - '/', 1570, - '<', 1553, - '=', 1799, - '>', 1484, - 'E', 1823, - 'a', 1869, - 'b', 1856, - 'e', 1820, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1883, - 's', 1903, - 'x', 1875, - '{', 1502, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + 'a', 1870, + 'b', 1857, + 'e', 1821, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, + '{', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(36); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 23: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1794, - '/', 1570, - '<', 1553, - '=', 1799, - '>', 1484, - 'a', 1869, - 'b', 1856, - 'e', 1870, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1883, - 's', 1903, - 'x', 1875, - '{', 1502, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + '<', 1554, + '=', 1800, + '>', 1485, + 'a', 1870, + 'b', 1857, + 'e', 1871, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, + '{', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(36); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 24: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1597, - '/', 1570, - '<', 1553, - '=', 1799, - '>', 1484, - 'E', 1823, - 'a', 1869, - 'b', 1856, - 'e', 1820, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1883, - 's', 1903, - 'x', 1875, - '{', 1502, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1598, + '/', 1571, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + 'a', 1870, + 'b', 1857, + 'e', 1821, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, + '{', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(36); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 25: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - '*', 1515, - '+', 1578, - '-', 1490, - '/', 1570, - '<', 1553, - '=', 1799, - '>', 1484, - 'E', 1823, - '_', 1817, - 'a', 1869, - 'b', 1856, - 'e', 1820, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1883, - 's', 1903, - 'x', 1875, - '{', 1502, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + '_', 1818, + 'a', 1870, + 'b', 1857, + 'e', 1821, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, + '{', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(36); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 26: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - '*', 1515, - '+', 1578, - '-', 1490, - '/', 1570, - '<', 1553, - '=', 1799, - '>', 1484, - 'E', 1823, - 'a', 1869, - 'b', 1856, - 'e', 1820, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1883, - 's', 1903, - 'x', 1875, - '{', 1502, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + 'a', 1870, + 'b', 1857, + 'e', 1821, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, + '{', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(36); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 27: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - '*', 1515, - '+', 1578, - '-', 1490, - '/', 1570, - '<', 1553, - '=', 1799, - '>', 1484, - 'a', 1869, - 'b', 1856, - 'e', 1870, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1883, - 's', 1903, - 'x', 1875, - '{', 1502, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + '<', 1554, + '=', 1800, + '>', 1485, + 'a', 1870, + 'b', 1857, + 'e', 1871, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, + '{', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(36); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 28: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 324, - '#', 2192, - '$', 1473, - '*', 1515, - '+', 1580, - '-', 1498, - '.', 340, - '/', 1570, - '<', 1553, - '=', 326, - '>', 1484, - 'a', 423, - 'b', 402, - 'e', 427, - 'h', 347, - 'i', 424, - 'l', 401, - 'm', 438, - 'n', 436, - 'o', 453, - 's', 487, - 'x', 433, - '{', 1502, + '!', 325, + '#', 2193, + '$', 1474, + '*', 1516, + '+', 1581, + '-', 1499, + '.', 341, + '/', 1571, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 428, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 454, + 's', 488, + 'x', 434, + '{', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); END_STATE(); case 29: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 324, - '#', 2192, - ')', 1471, - '*', 1515, - '+', 1578, - '-', 1490, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 326, - '>', 1484, - 'a', 423, - 'b', 402, - 'e', 289, - 'h', 347, - 'i', 424, - 'l', 401, - 'm', 438, - 'n', 436, - 'o', 283, - 's', 487, - 'x', 433, - '|', 1455, + '!', 325, + '#', 2193, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 290, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 284, + 's', 488, + 'x', 434, + '|', 1456, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); END_STATE(); case 30: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 324, - '#', 2192, - ')', 1471, - '*', 1515, - '+', 1578, - '-', 1490, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 326, - '>', 1484, - 'a', 423, - 'b', 402, - 'e', 291, - 'h', 347, - 'i', 424, - 'l', 401, - 'm', 438, - 'n', 436, - 'o', 293, - 's', 487, - 'x', 433, - '|', 1455, + '!', 325, + '#', 2193, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 292, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 294, + 's', 488, + 'x', 434, + '|', 1456, ); if (lookahead == '\t' || lookahead == ' ') SKIP(30); END_STATE(); case 31: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 324, - '#', 2192, - '*', 1515, - '+', 1578, - '-', 1490, - '/', 1570, - ':', 1716, - ';', 1454, - '<', 1553, - '=', 326, - '>', 1484, - 'a', 423, - 'b', 402, - 'e', 289, - 'h', 347, - 'i', 424, - 'l', 401, - 'm', 438, - 'n', 436, - 'o', 283, - 's', 487, - 'x', 433, - '|', 1455, - '}', 1503, + '!', 325, + '#', 2193, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + ':', 1717, + ';', 1455, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 290, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 284, + 's', 488, + 'x', 434, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(31); END_STATE(); case 32: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 324, - '#', 2192, - '*', 1515, - '+', 1578, - '-', 1490, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 326, - '>', 1484, - 'a', 423, - 'b', 402, - 'e', 289, - 'h', 347, - 'i', 424, - 'l', 401, - 'm', 438, - 'n', 436, - 'o', 283, - 's', 487, - 'x', 433, - '|', 1455, - '}', 1503, + '!', 325, + '#', 2193, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 290, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 284, + 's', 488, + 'x', 434, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(32); END_STATE(); case 33: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 324, - '#', 2192, - '*', 1515, - '+', 1578, - '-', 1490, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 326, - '>', 1484, - 'a', 423, - 'b', 402, - 'e', 291, - 'h', 347, - 'i', 424, - 'l', 401, - 'm', 438, - 'n', 436, - 'o', 293, - 's', 487, - 'x', 433, - '|', 1455, - '}', 1503, + '!', 325, + '#', 2193, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 292, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 294, + 's', 488, + 'x', 434, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(33); END_STATE(); case 34: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 324, - '#', 2192, - '*', 1515, - '+', 1578, - '-', 1490, - '/', 1570, - '<', 1553, - '=', 326, - '>', 1484, - 'a', 423, - 'b', 402, - 'e', 289, - 'h', 347, - 'i', 424, - 'l', 401, - 'm', 438, - 'n', 436, - 'o', 283, - 's', 487, - 'x', 433, - '|', 1455, + '!', 325, + '#', 2193, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 290, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 284, + 's', 488, + 'x', 434, + '|', 1456, ); if (lookahead == '\t' || lookahead == ' ') SKIP(34); END_STATE(); case 35: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 324, - '#', 2192, - '*', 1515, - '+', 1578, - '-', 1490, - '/', 1570, - '<', 1553, - '=', 326, - '>', 1484, - 'a', 423, - 'b', 402, - 'e', 291, - 'h', 347, - 'i', 424, - 'l', 401, - 'm', 438, - 'n', 436, - 'o', 293, - 's', 487, - 'x', 433, - '|', 1455, + '!', 325, + '#', 2193, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 292, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 294, + 's', 488, + 'x', 434, + '|', 1456, ); if (lookahead == '\t' || lookahead == ' ') SKIP(35); END_STATE(); case 36: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 324, - '#', 2192, - '*', 1515, - '+', 1578, - '-', 1490, - '/', 1570, - '<', 1553, - '=', 326, - '>', 1484, - 'a', 423, - 'b', 402, - 'e', 427, - 'h', 347, - 'i', 424, - 'l', 401, - 'm', 438, - 'n', 436, - 'o', 453, - 's', 487, - 'x', 433, - '{', 1502, + '!', 325, + '#', 2193, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 428, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 454, + 's', 488, + 'x', 434, + '{', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(36); END_STATE(); case 37: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '"', 1688, - '#', 2192, - '$', 1473, - '\'', 1691, - '(', 1470, - '+', 2004, - '-', 302, - '.', 2002, - '0', 1627, - 'N', 2051, - '[', 1468, - '_', 1505, - '`', 1695, - 'f', 2019, - 'n', 2047, - 't', 2034, - '{', 1502, - '}', 1503, + '"', 1689, + '#', 2193, + '$', 1474, + '\'', 1692, + '(', 1471, + '+', 2005, + '-', 303, + '.', 2003, + '0', 1628, + 'N', 2052, + '[', 1469, + '_', 1506, + '`', 1696, + 'f', 2020, + 'n', 2048, + 't', 2035, + '{', 1503, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(37); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2055); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); + lookahead == 'i') ADVANCE(2056); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2074); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2075); END_STATE(); case 38: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '"', 1688, - '#', 2192, - '$', 1473, - '\'', 1691, - '(', 1470, - '+', 2086, - ',', 1472, - '-', 2085, - '.', 2084, - '0', 1628, - 'N', 2104, - '[', 1468, - ']', 1469, - '_', 2091, - '`', 1695, - 'f', 2094, - 'n', 2103, - 't', 2100, - '{', 1502, + '"', 1689, + '#', 2193, + '$', 1474, + '\'', 1692, + '(', 1471, + '+', 2087, + ',', 1473, + '-', 2086, + '.', 2085, + '0', 1629, + 'N', 2105, + '[', 1469, + ']', 1470, + '_', 2092, + '`', 1696, + 'f', 2095, + 'n', 2104, + 't', 2101, + '{', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(38); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2110); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == 'i') ADVANCE(2111); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1645); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2132); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2133); END_STATE(); case 39: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '"', 1688, - '#', 2192, - '$', 1473, - '\'', 1691, - '(', 1470, - '-', 1490, - '`', 1695, - 'f', 1518, - 'n', 1522, - 't', 1523, - '{', 1502, + '"', 1689, + '#', 2193, + '$', 1474, + '\'', 1692, + '(', 1471, + '-', 1491, + '`', 1696, + 'f', 1519, + 'n', 1523, + 't', 1524, + '{', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(39); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1528); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1529); END_STATE(); case 40: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '"', 1688, - '#', 2192, - '$', 1474, - '\'', 1691, - '(', 1470, - ')', 1471, - '+', 705, - '-', 1495, - '.', 700, - '0', 1626, - ':', 1716, - ';', 1454, - '=', 1733, - '@', 1465, - 'I', 812, - 'N', 808, - '[', 1468, - '^', 1735, - '_', 719, - '`', 1695, - 'a', 757, - 'c', 724, - 'd', 734, - 'e', 762, - 'f', 726, - 'i', 718, - 'l', 742, - 'm', 728, - 'n', 772, - 't', 775, - 'u', 788, - 'w', 750, - '{', 1502, - '}', 1503, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + ')', 1472, + '+', 706, + '-', 1496, + '.', 701, + '0', 1627, + ':', 1717, + ';', 1455, + '=', 1734, + '@', 1466, + 'I', 813, + 'N', 809, + '[', 1469, + '^', 1736, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 773, + 't', 776, + 'u', 789, + 'w', 751, + '{', 1503, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(41); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(827); + (lookahead < '{' || '}' < lookahead)) ADVANCE(828); END_STATE(); case 41: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '"', 1688, - '#', 2192, - '$', 1474, - '\'', 1691, - '(', 1470, - ')', 1471, - '+', 705, - '-', 1495, - '.', 700, - '0', 1626, - ':', 1716, - ';', 1454, - '@', 1465, - 'I', 812, - 'N', 808, - '[', 1468, - '^', 1735, - '_', 719, - '`', 1695, - 'a', 757, - 'c', 724, - 'd', 734, - 'e', 762, - 'f', 726, - 'i', 718, - 'l', 742, - 'm', 728, - 'n', 772, - 't', 775, - 'u', 788, - 'w', 750, - '{', 1502, - '}', 1503, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + ')', 1472, + '+', 706, + '-', 1496, + '.', 701, + '0', 1627, + ':', 1717, + ';', 1455, + '@', 1466, + 'I', 813, + 'N', 809, + '[', 1469, + '^', 1736, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 773, + 't', 776, + 'u', 789, + 'w', 751, + '{', 1503, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(41); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(827); + (lookahead < '{' || '}' < lookahead)) ADVANCE(828); END_STATE(); case 42: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '"', 1688, - '#', 2192, - '$', 1474, - '\'', 1691, - '(', 1470, - '+', 705, - '-', 1495, - '.', 700, - '0', 1626, - ';', 1454, - '=', 1733, - 'I', 812, - 'N', 808, - '[', 1468, - '^', 1735, - '_', 719, - '`', 1695, - 'a', 757, - 'c', 724, - 'd', 734, - 'e', 762, - 'f', 726, - 'i', 718, - 'l', 742, - 'm', 728, - 'n', 772, - 't', 775, - 'u', 788, - 'w', 754, - '{', 1502, - '\t', 1453, - ' ', 1453, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 706, + '-', 1496, + '.', 701, + '0', 1627, + ';', 1455, + '=', 1734, + 'I', 813, + 'N', 809, + '[', 1469, + '^', 1736, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 773, + 't', 776, + 'u', 789, + 'w', 755, + '{', 1503, + '\t', 1454, + ' ', 1454, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); END_STATE(); case 43: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '"', 1688, - '#', 2192, - '$', 1474, - '\'', 1691, - '(', 1470, - '+', 705, - '-', 1495, - '.', 700, - '0', 1626, - '=', 676, - '>', 1483, - '@', 1485, - 'I', 812, - 'N', 808, - '[', 1468, - '^', 1735, - '_', 719, - '`', 1695, - 'a', 757, - 'c', 724, - 'd', 734, - 'e', 762, - 'f', 726, - 'i', 718, - 'l', 742, - 'm', 728, - 'n', 772, - 't', 775, - 'u', 788, - 'w', 754, - '{', 1502, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 706, + '-', 1496, + '.', 701, + '0', 1627, + '=', 677, + '>', 1484, + '@', 1486, + 'I', 813, + 'N', 809, + '[', 1469, + '^', 1736, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 773, + 't', 776, + 'u', 789, + 'w', 755, + '{', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(44); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(827); + (lookahead < '{' || '}' < lookahead)) ADVANCE(828); END_STATE(); case 44: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '"', 1688, - '#', 2192, - '$', 1474, - '\'', 1691, - '(', 1470, - '+', 705, - '-', 1495, - '.', 700, - '0', 1626, - '=', 676, - '>', 1483, - 'I', 812, - 'N', 808, - '[', 1468, - '^', 1735, - '_', 719, - '`', 1695, - 'a', 757, - 'c', 724, - 'd', 734, - 'e', 762, - 'f', 726, - 'i', 718, - 'l', 742, - 'm', 728, - 'n', 772, - 't', 775, - 'u', 788, - 'w', 754, - '{', 1502, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 706, + '-', 1496, + '.', 701, + '0', 1627, + '=', 677, + '>', 1484, + 'I', 813, + 'N', 809, + '[', 1469, + '^', 1736, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 773, + 't', 776, + 'u', 789, + 'w', 755, + '{', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(44); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); END_STATE(); case 45: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '"', 1688, - '#', 2192, - '$', 1474, - '\'', 1691, - '(', 1470, - '+', 705, - '-', 1495, - '.', 700, - '0', 1626, - 'I', 812, - 'N', 808, - '[', 1468, - '^', 1735, - '_', 719, - '`', 1695, - 'a', 757, - 'c', 724, - 'd', 734, - 'e', 694, - 'f', 726, - 'i', 718, - 'l', 742, - 'm', 728, - 'n', 772, - 'o', 696, - 't', 775, - 'u', 788, - 'w', 750, - '{', 1502, - '|', 1455, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 706, + '-', 1496, + '.', 701, + '0', 1627, + 'I', 813, + 'N', 809, + '[', 1469, + '^', 1736, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 695, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 773, + 'o', 697, + 't', 776, + 'u', 789, + 'w', 751, + '{', 1503, + '|', 1456, ); if (lookahead == '\t' || lookahead == ' ') SKIP(45); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); END_STATE(); case 46: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '"', 1688, - '#', 2192, - '$', 1474, - '\'', 1691, - '(', 1470, - '+', 705, - '-', 303, - '.', 721, - '=', 1733, - 'I', 812, - 'N', 808, - '[', 1468, - ']', 1469, - '_', 719, - '`', 1695, - 'a', 757, - 'c', 724, - 'd', 734, - 'e', 762, - 'f', 726, - 'i', 718, - 'l', 742, - 'm', 728, - 'n', 801, - 't', 775, - 'u', 788, - 'w', 754, - '{', 1502, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 706, + '-', 304, + '.', 722, + '=', 1734, + 'I', 813, + 'N', 809, + '[', 1469, + ']', 1470, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, + '{', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(47); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); END_STATE(); case 47: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '"', 1688, - '#', 2192, - '$', 1474, - '\'', 1691, - '(', 1470, - '+', 705, - '-', 303, - '.', 721, - 'I', 812, - 'N', 808, - '[', 1468, - ']', 1469, - '_', 719, - '`', 1695, - 'a', 757, - 'c', 724, - 'd', 734, - 'e', 762, - 'f', 726, - 'i', 718, - 'l', 742, - 'm', 728, - 'n', 801, - 't', 775, - 'u', 788, - 'w', 754, - '{', 1502, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 706, + '-', 304, + '.', 722, + 'I', 813, + 'N', 809, + '[', 1469, + ']', 1470, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, + '{', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(47); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); END_STATE(); case 48: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '"', 1688, - '#', 2192, - '$', 1474, - '\'', 1691, - '(', 1470, - '+', 312, - '-', 1495, - '.', 313, - '0', 1629, - ':', 1716, - 'N', 534, - '[', 1468, - '_', 345, - '`', 1695, - 'f', 350, - 'n', 444, - 't', 458, - '{', 1502, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 313, + '-', 1496, + '.', 314, + '0', 1630, + ':', 1717, + 'N', 535, + '[', 1469, + '_', 346, + '`', 1696, + 'f', 351, + 'n', 445, + 't', 459, + '{', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(48); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(543); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1645); + lookahead == 'i') ADVANCE(544); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1646); END_STATE(); case 49: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '"', 1688, - '#', 2192, - '$', 1474, - '\'', 1691, - '(', 1470, - '+', 1583, - '-', 1495, - '.', 704, - '0', 1631, - 'I', 812, - 'N', 808, - '_', 719, - '`', 1695, - 'a', 757, - 'c', 724, - 'd', 734, - 'e', 762, - 'f', 726, - 'i', 718, - 'l', 742, - 'm', 728, - 'n', 801, - 't', 775, - 'u', 788, - 'w', 754, - '}', 1503, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 1584, + '-', 1496, + '.', 705, + '0', 1632, + 'I', 813, + 'N', 809, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(49); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); END_STATE(); case 50: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '"', 1688, - '#', 2192, - '$', 1474, - '\'', 1691, - '(', 1470, - '+', 2004, - '-', 1495, - '.', 2002, - '0', 1627, - 'N', 2051, - '[', 1468, - '_', 2016, - '`', 1695, - 'f', 2019, - 'n', 2031, - 't', 2034, - '{', 1502, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 2005, + '-', 1496, + '.', 2003, + '0', 1628, + 'N', 2052, + '[', 1469, + '_', 2017, + '`', 1696, + 'f', 2020, + 'n', 2032, + 't', 2035, + '{', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(50); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2055); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); + lookahead == 'i') ADVANCE(2056); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2074); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2075); END_STATE(); case 51: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '"', 1688, - '#', 2192, - '$', 1474, - '\'', 1691, - '(', 1470, - '+', 2004, - '-', 1492, - '.', 2003, - '0', 1627, - ':', 1716, - ';', 1454, - 'N', 2051, - '[', 1468, - '_', 2016, - '`', 1695, - 'e', 1993, - 'f', 2019, - 'n', 2047, - 'o', 1994, - 't', 2034, - '{', 1502, - '|', 1455, - '}', 1503, - '\t', 1452, - ' ', 1452, - 'I', 2055, - 'i', 2055, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 2005, + '-', 1493, + '.', 2004, + '0', 1628, + ':', 1717, + ';', 1455, + 'N', 2052, + '[', 1469, + '_', 2017, + '`', 1696, + 'e', 1994, + 'f', 2020, + 'n', 2048, + 'o', 1995, + 't', 2035, + '{', 1503, + '|', 1456, + '}', 1504, + '\t', 1453, + ' ', 1453, + 'I', 2056, + 'i', 2056, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ']') ADVANCE(2074); + lookahead != ']') ADVANCE(2075); END_STATE(); case 52: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '"', 1688, - '#', 2192, - '$', 1474, - '\'', 1691, - '(', 1470, - '+', 2004, - '-', 1492, - '.', 2003, - '0', 1627, - ';', 1454, - 'N', 2051, - '[', 1468, - '_', 2016, - '`', 1695, - 'e', 1997, - 'f', 2019, - 'n', 2047, - 'o', 1998, - 't', 2034, - '{', 1502, - '\t', 1453, - ' ', 1453, - 'I', 2055, - 'i', 2055, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 2005, + '-', 1493, + '.', 2004, + '0', 1628, + ';', 1455, + 'N', 2052, + '[', 1469, + '_', 2017, + '`', 1696, + 'e', 1998, + 'f', 2020, + 'n', 2048, + 'o', 1999, + 't', 2035, + '{', 1503, + '\t', 1454, + ' ', 1454, + 'I', 2056, + 'i', 2056, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2074); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2075); END_STATE(); case 53: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '"', 1688, - '#', 2192, - '$', 1474, - '\'', 1691, - '(', 1470, - '+', 2086, - ',', 1472, - '-', 2085, - '.', 2087, - '0', 1628, - 'N', 2104, - '[', 1468, - ']', 1469, - '_', 2091, - '`', 1695, - 'f', 2094, - 'n', 2103, - 't', 2100, - '{', 1502, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 2087, + ',', 1473, + '-', 2086, + '.', 2088, + '0', 1629, + 'N', 2105, + '[', 1469, + ']', 1470, + '_', 2092, + '`', 1696, + 'f', 2095, + 'n', 2104, + 't', 2101, + '{', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(53); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2110); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == 'i') ADVANCE(2111); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1645); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2132); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2133); END_STATE(); case 54: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '"', 1688, - '#', 2192, - '$', 1474, - '\'', 1691, - '(', 1470, - '+', 2143, - '-', 2142, - '.', 2141, - '0', 1630, - 'N', 2158, - '[', 1468, - '_', 2145, - '`', 1695, - 'f', 2148, - 'n', 2157, - 't', 2154, - '{', 1502, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 2144, + '-', 2143, + '.', 2142, + '0', 1631, + 'N', 2159, + '[', 1469, + '_', 2146, + '`', 1696, + 'f', 2149, + 'n', 2158, + 't', 2155, + '{', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(54); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2164); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1646); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2178); + lookahead == 'i') ADVANCE(2165); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2179); END_STATE(); case 55: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '"', 1688, - '#', 2195, - '$', 1475, - '\'', 1691, - '(', 1470, - '+', 851, - '-', 1496, - '.', 852, - '0', 867, - ':', 1716, - 'N', 1023, - '[', 1468, - '_', 869, - '`', 1695, - 'f', 877, - 'n', 947, - 't', 962, - '{', 1502, + '"', 1689, + '#', 2196, + '$', 1476, + '\'', 1692, + '(', 1471, + '+', 852, + '-', 1497, + '.', 853, + '0', 868, + ':', 1717, + 'N', 1024, + '[', 1469, + '_', 870, + '`', 1696, + 'f', 878, + 'n', 948, + 't', 963, + '{', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(48); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1028); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(872); + lookahead == 'i') ADVANCE(1029); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(873); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1049); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1050); END_STATE(); case 56: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '$', 1473, - '(', 1564, - ')', 1471, - '+', 1967, - ',', 1472, - '-', 1493, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + '+', 1966, + ',', 1473, + '-', 1494, '.', 1604, - ':', 1466, - '=', 676, - ']', 1469, - '_', 1348, - '|', 1455, + ':', 1467, + '=', 677, + ']', 1470, + '_', 1349, + '|', 1456, ); if (lookahead == '\t' || lookahead == ' ') SKIP(78); @@ -12623,27 +12615,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1990); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1376); + lookahead == '^') ADVANCE(1991); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1377); END_STATE(); case 57: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '$', 1473, - '(', 1564, - ')', 1471, - '+', 1967, - ',', 1472, - '-', 1493, - '.', 1968, - ':', 1466, - '=', 676, - ']', 1469, - '_', 1348, - '|', 1455, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + '+', 1966, + ',', 1473, + '-', 1494, + '.', 1967, + ':', 1467, + '=', 677, + ']', 1470, + '_', 1349, + '|', 1456, ); if (lookahead == '\t' || lookahead == ' ') SKIP(78); @@ -12653,49 +12645,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1990); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1376); + lookahead == '^') ADVANCE(1991); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1377); END_STATE(); case 58: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '$', 1473, - '(', 1564, - ')', 1471, - ',', 1472, - '-', 1491, - '.', 1602, - ':', 1466, - '=', 676, - 'E', 1338, - 'G', 1346, - 'K', 1346, - 'M', 1346, - 'P', 1346, - 'T', 1346, - ']', 1469, - 'd', 1351, - 'e', 1337, - 'g', 1345, - 'h', 1369, - 'k', 1345, - 'm', 1347, - 'n', 1371, - 'p', 1345, - 's', 1356, - 't', 1345, - 'u', 1371, - 'w', 1357, - '|', 1455, - 0xb5, 1371, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + ',', 1473, + '-', 1492, + '.', 1605, + ':', 1467, + '=', 677, + 'E', 1339, + 'G', 1347, + 'K', 1347, + 'M', 1347, + 'P', 1347, + 'T', 1347, + ']', 1470, + 'd', 1352, + 'e', 1338, + 'g', 1346, + 'h', 1370, + 'k', 1346, + 'm', 1348, + 'n', 1372, + 'p', 1346, + 's', 1357, + 't', 1346, + 'u', 1372, + 'w', 1358, + '|', 1456, + 0xb5, 1372, ); if (lookahead == '\t' || lookahead == ' ') SKIP(80); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1660); + lookahead == 'b') ADVANCE(1661); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12703,29 +12695,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1990); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1376); + lookahead == '^') ADVANCE(1991); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1377); END_STATE(); case 59: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '$', 1473, - '(', 1564, - ')', 1471, - ',', 1472, - '-', 1491, - '.', 1602, - ':', 1466, - '=', 676, - ']', 1469, - '|', 1455, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + ',', 1473, + '-', 1492, + '.', 1605, + ':', 1467, + '=', 677, + ']', 1470, + '|', 1456, ); if (lookahead == '\t' || lookahead == ' ') SKIP(80); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1339); + lookahead == 'e') ADVANCE(1340); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12733,49 +12725,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1990); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1376); + lookahead == '^') ADVANCE(1991); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1377); END_STATE(); case 60: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '$', 1473, - '(', 1564, - ')', 1471, - ',', 1472, - '-', 1491, - '.', 1965, - ':', 1466, - '=', 676, - 'E', 1338, - 'G', 1346, - 'K', 1346, - 'M', 1346, - 'P', 1346, - 'T', 1346, - ']', 1469, - '_', 1348, - 'd', 1351, - 'e', 1337, - 'g', 1345, - 'h', 1369, - 'k', 1345, - 'm', 1347, - 'n', 1371, - 'p', 1345, - 's', 1356, - 't', 1345, - 'u', 1371, - 'w', 1357, - '|', 1455, - 0xb5, 1371, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + ',', 1473, + '-', 1492, + '.', 1970, + ':', 1467, + '=', 677, + 'E', 1339, + 'G', 1347, + 'K', 1347, + 'M', 1347, + 'P', 1347, + 'T', 1347, + ']', 1470, + '_', 1349, + 'd', 1352, + 'e', 1338, + 'g', 1346, + 'h', 1370, + 'k', 1346, + 'm', 1348, + 'n', 1372, + 'p', 1346, + 's', 1357, + 't', 1346, + 'u', 1372, + 'w', 1358, + '|', 1456, + 0xb5, 1372, ); if (lookahead == '\t' || lookahead == ' ') SKIP(80); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1660); + lookahead == 'b') ADVANCE(1661); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12783,49 +12775,49 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1990); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1376); + lookahead == '^') ADVANCE(1991); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1377); END_STATE(); case 61: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '$', 1473, - '(', 1564, - ')', 1471, - ',', 1472, - '-', 1491, - '.', 1965, - ':', 1466, - '=', 676, - 'E', 1338, - 'G', 1346, - 'K', 1346, - 'M', 1346, - 'P', 1346, - 'T', 1346, - ']', 1469, - 'd', 1351, - 'e', 1337, - 'g', 1345, - 'h', 1369, - 'k', 1345, - 'm', 1347, - 'n', 1371, - 'p', 1345, - 's', 1356, - 't', 1345, - 'u', 1371, - 'w', 1357, - '|', 1455, - 0xb5, 1371, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + ',', 1473, + '-', 1492, + '.', 1970, + ':', 1467, + '=', 677, + 'E', 1339, + 'G', 1347, + 'K', 1347, + 'M', 1347, + 'P', 1347, + 'T', 1347, + ']', 1470, + 'd', 1352, + 'e', 1338, + 'g', 1346, + 'h', 1370, + 'k', 1346, + 'm', 1348, + 'n', 1372, + 'p', 1346, + 's', 1357, + 't', 1346, + 'u', 1372, + 'w', 1358, + '|', 1456, + 0xb5, 1372, ); if (lookahead == '\t' || lookahead == ' ') SKIP(80); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1660); + lookahead == 'b') ADVANCE(1661); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12833,48 +12825,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1990); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1376); + lookahead == '^') ADVANCE(1991); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1377); END_STATE(); case 62: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '$', 1473, - '(', 1564, - ')', 1471, - ',', 1472, - '-', 1491, - '.', 1965, - ':', 1466, - '=', 676, - 'E', 1346, - 'G', 1346, - 'K', 1346, - 'M', 1346, - 'P', 1346, - 'T', 1346, - ']', 1469, - 'd', 1351, - 'e', 1345, - 'g', 1345, - 'h', 1369, - 'k', 1345, - 'm', 1347, - 'n', 1371, - 'p', 1345, - 's', 1356, - 't', 1345, - 'u', 1371, - 'w', 1357, - '|', 1455, - 0xb5, 1371, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + ',', 1473, + '-', 1492, + '.', 1970, + ':', 1467, + '=', 677, + 'E', 1347, + 'G', 1347, + 'K', 1347, + 'M', 1347, + 'P', 1347, + 'T', 1347, + ']', 1470, + 'd', 1352, + 'e', 1346, + 'g', 1346, + 'h', 1370, + 'k', 1346, + 'm', 1348, + 'n', 1372, + 'p', 1346, + 's', 1357, + 't', 1346, + 'u', 1372, + 'w', 1358, + '|', 1456, + 0xb5, 1372, ); if (lookahead == '\t' || lookahead == ' ') SKIP(80); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1660); + lookahead == 'b') ADVANCE(1661); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12882,30 +12874,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1990); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1376); + lookahead == '^') ADVANCE(1991); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1377); END_STATE(); case 63: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '$', 1473, - '(', 1564, - ')', 1471, - ',', 1472, - '-', 1491, - '.', 1965, - ':', 1466, - '=', 676, - ']', 1469, - '_', 1348, - '|', 1455, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + ',', 1473, + '-', 1492, + '.', 1970, + ':', 1467, + '=', 677, + ']', 1470, + '_', 1349, + '|', 1456, ); if (lookahead == '\t' || lookahead == ' ') SKIP(80); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1339); + lookahead == 'e') ADVANCE(1340); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12913,30 +12905,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1990); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1376); + lookahead == '^') ADVANCE(1991); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1377); END_STATE(); case 64: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '$', 1473, - '(', 1564, - ')', 1471, - ',', 1472, - '-', 1491, - '.', 1965, - ':', 1466, - '=', 676, - ']', 1469, - '|', 1455, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + ',', 1473, + '-', 1492, + '.', 1970, + ':', 1467, + '=', 677, + ']', 1470, + '|', 1456, ); if (lookahead == '\t' || lookahead == ' ') SKIP(80); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1339); + lookahead == 'e') ADVANCE(1340); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -12944,24 +12936,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1990); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1376); + lookahead == '^') ADVANCE(1991); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1377); END_STATE(); case 65: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '$', 1473, - '(', 1564, - ')', 1471, - ',', 1472, - '-', 1491, - '.', 1965, - ':', 1466, - '=', 676, - ']', 1469, - '|', 1455, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + ',', 1473, + '-', 1492, + '.', 1970, + ':', 1467, + '=', 677, + ']', 1470, + '|', 1456, ); if (lookahead == '\t' || lookahead == ' ') SKIP(80); @@ -12972,29 +12964,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1990); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1376); + lookahead == '^') ADVANCE(1991); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1377); END_STATE(); case 66: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '$', 1473, - '(', 1564, - ')', 1471, - ',', 1472, - '-', 1491, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + ',', 1473, + '-', 1492, '.', 1603, - ':', 1466, - '=', 676, - ']', 1469, - '|', 1455, + ':', 1467, + '=', 677, + ']', 1470, + '|', 1456, ); if (lookahead == '\t' || lookahead == ' ') SKIP(80); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1339); + lookahead == 'e') ADVANCE(1340); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13002,30 +12994,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1990); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1376); + lookahead == '^') ADVANCE(1991); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1377); END_STATE(); case 67: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '$', 1473, - '(', 1564, - ')', 1471, - ',', 1472, - '-', 1491, - '.', 1969, - ':', 1466, - '=', 676, - ']', 1469, - '_', 1348, - '|', 1455, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + ',', 1473, + '-', 1492, + '.', 1968, + ':', 1467, + '=', 677, + ']', 1470, + '_', 1349, + '|', 1456, ); if (lookahead == '\t' || lookahead == ' ') SKIP(80); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1339); + lookahead == 'e') ADVANCE(1340); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13033,30 +13025,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1990); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1376); + lookahead == '^') ADVANCE(1991); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1377); END_STATE(); case 68: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '$', 1473, - '(', 1564, - ')', 1471, - ',', 1472, - '-', 1491, - '.', 1969, - ':', 1466, - '=', 676, - ']', 1469, - '|', 1455, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + ',', 1473, + '-', 1492, + '.', 1968, + ':', 1467, + '=', 677, + ']', 1470, + '|', 1456, ); if (lookahead == '\t' || lookahead == ' ') SKIP(80); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1339); + lookahead == 'e') ADVANCE(1340); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || @@ -13064,24 +13056,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1990); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1376); + lookahead == '^') ADVANCE(1991); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1377); END_STATE(); case 69: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '$', 1473, - '(', 1564, - ')', 1471, - ',', 1472, - '-', 1491, - '.', 1969, - ':', 1466, - '=', 676, - ']', 1469, - '|', 1455, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + ',', 1473, + '-', 1492, + '.', 1968, + ':', 1467, + '=', 677, + ']', 1470, + '|', 1456, ); if (lookahead == '\t' || lookahead == ' ') SKIP(80); @@ -13092,160 +13084,160 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1990); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1376); + lookahead == '^') ADVANCE(1991); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1377); END_STATE(); case 70: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '$', 1473, - '(', 1564, - '.', 1607, - ';', 1454, - '_', 1817, - '\t', 1453, - ' ', 1453, - '+', 1795, - '-', 1795, + '#', 2193, + '$', 1474, + '(', 1565, + '.', 1608, + ';', 1455, + '_', 1818, + '\t', 1454, + ' ', 1454, + '+', 1796, + '-', 1796, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); case 71: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '$', 1473, - '(', 1564, - '.', 1607, - '=', 1800, - '_', 1817, - 'i', 1849, - '|', 1455, + '#', 2193, + '$', 1474, + '(', 1565, + '.', 1608, + '=', 1801, + '_', 1818, + 'i', 1850, + '|', 1456, ); if (lookahead == '\t' || lookahead == ' ') SKIP(81); if (lookahead == '+' || - lookahead == '-') ADVANCE(1795); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); + lookahead == '-') ADVANCE(1796); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); case 72: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '$', 1473, - '(', 1564, - '.', 1607, - '=', 1800, - '_', 1817, - '|', 1455, + '#', 2193, + '$', 1474, + '(', 1565, + '.', 1608, + '=', 1801, + '_', 1818, + '|', 1456, ); if (lookahead == '\t' || lookahead == ' ') SKIP(82); if (lookahead == '+' || - lookahead == '-') ADVANCE(1795); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); + lookahead == '-') ADVANCE(1796); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); case 73: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '$', 1473, - '(', 1564, - '.', 1819, - ';', 1454, - '_', 1817, - '\t', 1453, - ' ', 1453, - '+', 1795, - '-', 1795, + '#', 2193, + '$', 1474, + '(', 1565, + '.', 1820, + ';', 1455, + '_', 1818, + '\t', 1454, + ' ', 1454, + '+', 1796, + '-', 1796, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); case 74: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '$', 1473, - '(', 1564, - '.', 1819, - '=', 1800, - '_', 1817, - 'i', 1849, - '|', 1455, + '#', 2193, + '$', 1474, + '(', 1565, + '.', 1820, + '=', 1801, + '_', 1818, + 'i', 1850, + '|', 1456, ); if (lookahead == '\t' || lookahead == ' ') SKIP(81); if (lookahead == '+' || - lookahead == '-') ADVANCE(1795); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); + lookahead == '-') ADVANCE(1796); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); case 75: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '$', 1473, - '(', 1564, - '.', 1819, - '=', 1800, - '_', 1817, - '|', 1455, + '#', 2193, + '$', 1474, + '(', 1565, + '.', 1820, + '=', 1801, + '_', 1818, + '|', 1456, ); if (lookahead == '\t' || lookahead == ' ') SKIP(82); if (lookahead == '+' || - lookahead == '-') ADVANCE(1795); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); + lookahead == '-') ADVANCE(1796); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); case 76: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '$', 1473, - '(', 1470, - ')', 1471, - ',', 1472, - '-', 1491, - '.', 316, - ':', 1466, - '=', 676, - '[', 1468, - ']', 1469, - '|', 1455, + '#', 2193, + '$', 1474, + '(', 1471, + ')', 1472, + ',', 1473, + '-', 1492, + '.', 317, + ':', 1467, + '=', 677, + '[', 1469, + ']', 1470, + '|', 1456, ); if (lookahead == '\t' || lookahead == ' ') SKIP(76); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1376); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1377); END_STATE(); case 77: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '$', 1473, - '(', 1470, - ')', 1471, - ',', 1472, - '-', 1491, - '.', 1969, - ':', 1466, - '=', 676, - '[', 1668, - ']', 1469, - '|', 1455, + '#', 2193, + '$', 1474, + '(', 1471, + ')', 1472, + ',', 1473, + '-', 1492, + '.', 1968, + ':', 1467, + '=', 677, + '[', 1669, + ']', 1470, + '|', 1456, ); if (lookahead == '\t' || lookahead == ' ') SKIP(76); @@ -13256,2439 +13248,2439 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1990); + lookahead == '^') ADVANCE(1991); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < ':' || '@' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1376); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1377); END_STATE(); case 78: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '$', 1473, - ')', 1471, - '+', 318, - ',', 1472, - '-', 1494, - '.', 317, - ':', 1466, - '=', 676, - ']', 1469, - '|', 1455, + '#', 2193, + '$', 1474, + ')', 1472, + '+', 319, + ',', 1473, + '-', 1495, + '.', 318, + ':', 1467, + '=', 677, + ']', 1470, + '|', 1456, ); if (lookahead == '\t' || lookahead == ' ') SKIP(78); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1376); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1377); END_STATE(); case 79: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '$', 1473, - ')', 1471, - ',', 1472, - '-', 1491, - '.', 316, - ':', 1466, - '=', 676, - '?', 1487, - ']', 1469, - '|', 1455, + '#', 2193, + '$', 1474, + ')', 1472, + ',', 1473, + '-', 1492, + '.', 317, + ':', 1467, + '=', 677, + '?', 1488, + ']', 1470, + '|', 1456, ); if (lookahead == '\t' || lookahead == ' ') SKIP(80); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1376); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1377); END_STATE(); case 80: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '$', 1473, - ')', 1471, - ',', 1472, - '-', 1491, - '.', 316, - ':', 1466, - '=', 676, - ']', 1469, - '|', 1455, + '#', 2193, + '$', 1474, + ')', 1472, + ',', 1473, + '-', 1492, + '.', 317, + ':', 1467, + '=', 677, + ']', 1470, + '|', 1456, ); if (lookahead == '\t' || lookahead == ' ') SKIP(80); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1376); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1377); END_STATE(); case 81: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '$', 1473, - '.', 340, - '=', 327, - 'i', 388, - '|', 1455, + '#', 2193, + '$', 1474, + '.', 341, + '=', 328, + 'i', 389, + '|', 1456, ); if (lookahead == '\t' || lookahead == ' ') SKIP(81); if (lookahead == '+' || - lookahead == '-') ADVANCE(318); + lookahead == '-') ADVANCE(319); END_STATE(); case 82: - if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\n') ADVANCE(1452); if (lookahead == '\r') ADVANCE(9); - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '$') ADVANCE(1473); - if (lookahead == '.') ADVANCE(340); - if (lookahead == '=') ADVANCE(327); - if (lookahead == '|') ADVANCE(1455); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '$') ADVANCE(1474); + if (lookahead == '.') ADVANCE(341); + if (lookahead == '=') ADVANCE(328); + if (lookahead == '|') ADVANCE(1456); if (lookahead == '\t' || lookahead == ' ') SKIP(82); if (lookahead == '+' || - lookahead == '-') ADVANCE(318); + lookahead == '-') ADVANCE(319); END_STATE(); case 83: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1564, - '.', 1598, - ';', 1454, - 'E', 1811, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - 'd', 1828, - 'e', 1810, - 'g', 1813, - 'h', 1882, - 'k', 1813, - 'm', 1816, - 'n', 1895, - 'p', 1813, - 's', 1843, - 't', 1813, - 'u', 1895, - 'w', 1862, - 0xb5, 1895, - '\t', 1453, - ' ', 1453, - 'B', 1656, - 'b', 1656, + '#', 2193, + '(', 1565, + '.', 1599, + ';', 1455, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'd', 1829, + 'e', 1811, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + 0xb5, 1896, + '\t', 1454, + ' ', 1454, + 'B', 1657, + 'b', 1657, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 84: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1564, - '.', 1598, - ';', 1454, - '\t', 1453, - ' ', 1453, - 'E', 1823, - 'e', 1823, + '#', 2193, + '(', 1565, + '.', 1599, + ';', 1455, + '\t', 1454, + ' ', 1454, + 'E', 1824, + 'e', 1824, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 85: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1564, - '.', 1794, - ';', 1454, - 'E', 1811, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - '_', 1817, - 'd', 1828, - 'e', 1810, - 'g', 1813, - 'h', 1882, - 'k', 1813, - 'm', 1816, - 'n', 1895, - 'p', 1813, - 's', 1843, - 't', 1813, - 'u', 1895, - 'w', 1862, - 0xb5, 1895, - '\t', 1453, - ' ', 1453, - 'B', 1656, - 'b', 1656, + '#', 2193, + '(', 1565, + '.', 1795, + ';', 1455, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + '_', 1818, + 'd', 1829, + 'e', 1811, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + 0xb5, 1896, + '\t', 1454, + ' ', 1454, + 'B', 1657, + 'b', 1657, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 86: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1564, - '.', 1794, - ';', 1454, - 'E', 1811, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - 'd', 1828, - 'e', 1810, - 'g', 1813, - 'h', 1882, - 'k', 1813, - 'm', 1816, - 'n', 1895, - 'p', 1813, - 's', 1843, - 't', 1813, - 'u', 1895, - 'w', 1862, - 0xb5, 1895, - '\t', 1453, - ' ', 1453, - 'B', 1656, - 'b', 1656, + '#', 2193, + '(', 1565, + '.', 1795, + ';', 1455, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'd', 1829, + 'e', 1811, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + 0xb5, 1896, + '\t', 1454, + ' ', 1454, + 'B', 1657, + 'b', 1657, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 87: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1564, - '.', 1794, - ';', 1454, - 'E', 1814, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - 'd', 1828, - 'e', 1813, - 'g', 1813, - 'h', 1882, - 'k', 1813, - 'm', 1816, - 'n', 1895, - 'p', 1813, - 's', 1843, - 't', 1813, - 'u', 1895, - 'w', 1862, - 0xb5, 1895, - '\t', 1453, - ' ', 1453, - 'B', 1656, - 'b', 1656, + '#', 2193, + '(', 1565, + '.', 1795, + ';', 1455, + 'E', 1815, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'd', 1829, + 'e', 1814, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + 0xb5, 1896, + '\t', 1454, + ' ', 1454, + 'B', 1657, + 'b', 1657, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 88: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1564, - '.', 1794, - ';', 1454, - '_', 1817, - '\t', 1453, - ' ', 1453, - 'E', 1823, - 'e', 1823, + '#', 2193, + '(', 1565, + '.', 1795, + ';', 1455, + '_', 1818, + '\t', 1454, + ' ', 1454, + 'E', 1824, + 'e', 1824, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 89: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1564, - '.', 1794, - ';', 1454, - '\t', 1453, - ' ', 1453, - 'E', 1823, - 'e', 1823, + '#', 2193, + '(', 1565, + '.', 1795, + ';', 1455, + '\t', 1454, + ' ', 1454, + 'E', 1824, + 'e', 1824, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 90: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1564, - '.', 1794, - ';', 1454, - '\t', 1453, - ' ', 1453, + '#', 2193, + '(', 1565, + '.', 1795, + ';', 1455, + '\t', 1454, + ' ', 1454, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 91: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1564, - '.', 1597, - ';', 1454, - '\t', 1453, - ' ', 1453, - 'E', 1823, - 'e', 1823, + '#', 2193, + '(', 1565, + '.', 1598, + ';', 1455, + '\t', 1454, + ' ', 1454, + 'E', 1824, + 'e', 1824, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 92: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1564, - ';', 1454, - '_', 1817, - '\t', 1453, - ' ', 1453, - 'E', 1823, - 'e', 1823, + '#', 2193, + '(', 1565, + ';', 1455, + '_', 1818, + '\t', 1454, + ' ', 1454, + 'E', 1824, + 'e', 1824, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 93: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1564, - ';', 1454, - '\t', 1453, - ' ', 1453, - 'E', 1823, - 'e', 1823, + '#', 2193, + '(', 1565, + ';', 1455, + '\t', 1454, + ' ', 1454, + 'E', 1824, + 'e', 1824, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 94: - if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\n') ADVANCE(1452); if (lookahead == '\r') ADVANCE(9); - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '(') ADVANCE(1564); - if (lookahead == ';') ADVANCE(1454); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '(') ADVANCE(1565); + if (lookahead == ';') ADVANCE(1455); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1453); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == ' ') ADVANCE(1454); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 95: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1470, - ')', 1471, - ',', 1472, - '-', 301, - '.', 1727, - ':', 1466, - ';', 1454, - '=', 676, - '>', 1483, - '@', 1485, - '[', 1468, - ']', 1469, - 'c', 1354, - 'f', 1373, - 'i', 1362, - 'o', 1365, - 'v', 1350, - '{', 1502, - '}', 1503, + '#', 2193, + '(', 1471, + ')', 1472, + ',', 1473, + '-', 302, + '.', 1728, + ':', 1467, + ';', 1455, + '=', 677, + '>', 1484, + '@', 1486, + '[', 1469, + ']', 1470, + 'c', 1355, + 'f', 1374, + 'i', 1363, + 'o', 1366, + 'v', 1351, + '{', 1503, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(96); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1376); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1377); END_STATE(); case 96: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1470, - ')', 1471, - ',', 1472, - '-', 301, - '.', 1727, - ':', 1466, - ';', 1454, - '=', 676, - '>', 1483, - '[', 1468, - ']', 1469, - 'c', 1354, - 'f', 1373, - 'i', 1362, - 'o', 1365, - 'v', 1350, - '{', 1502, - '}', 1503, + '#', 2193, + '(', 1471, + ')', 1472, + ',', 1473, + '-', 302, + '.', 1728, + ':', 1467, + ';', 1455, + '=', 677, + '>', 1484, + '[', 1469, + ']', 1470, + 'c', 1355, + 'f', 1374, + 'i', 1363, + 'o', 1366, + 'v', 1351, + '{', 1503, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(96); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1376); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1377); END_STATE(); case 97: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1470, - ')', 1471, - '-', 301, - '.', 314, - ':', 1466, - ';', 1454, - '=', 678, - '>', 1483, - '[', 1468, - 'a', 423, - 'e', 292, - 'i', 389, - 'o', 293, - 'x', 433, - '{', 1502, - '|', 1455, - '}', 1503, + '#', 2193, + '(', 1471, + ')', 1472, + '-', 302, + '.', 315, + ':', 1467, + ';', 1455, + '=', 679, + '>', 1484, + '[', 1469, + 'a', 424, + 'e', 293, + 'i', 390, + 'o', 294, + 'x', 434, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(98); END_STATE(); case 98: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1470, - ')', 1471, - '-', 301, - ':', 1466, - ';', 1454, - '=', 678, - '>', 1483, - '[', 1468, - 'a', 423, - 'e', 292, - 'i', 389, - 'o', 293, - 'x', 433, - '{', 1502, - '|', 1455, - '}', 1503, + '#', 2193, + '(', 1471, + ')', 1472, + '-', 302, + ':', 1467, + ';', 1455, + '=', 679, + '>', 1484, + '[', 1469, + 'a', 424, + 'e', 293, + 'i', 390, + 'o', 294, + 'x', 434, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(98); END_STATE(); case 99: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - ',', 1472, - ':', 1466, - '=', 676, - ']', 1469, - 'i', 424, + '#', 2193, + ',', 1473, + ':', 1467, + '=', 677, + ']', 1470, + 'i', 425, ); if (lookahead == '\t' || lookahead == ' ') SKIP(99); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1669); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1670); END_STATE(); case 100: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '.', 1598, - '=', 1800, - 'E', 1811, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - 'd', 1828, - 'e', 1810, - 'g', 1813, - 'h', 1882, - 'i', 1849, - 'k', 1813, - 'm', 1816, - 'n', 1895, - 'p', 1813, - 's', 1843, - 't', 1813, - 'u', 1895, - 'w', 1862, - '|', 1455, - 0xb5, 1895, + '#', 2193, + '.', 1599, + '=', 1801, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'd', 1829, + 'e', 1811, + 'g', 1814, + 'h', 1883, + 'i', 1850, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + '|', 1456, + 0xb5, 1896, ); if (lookahead == '\t' || lookahead == ' ') SKIP(121); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 101: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '.', 1598, - '=', 1800, - 'E', 1811, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - 'd', 1828, - 'e', 1810, - 'g', 1813, - 'h', 1882, - 'k', 1813, - 'm', 1816, - 'n', 1895, - 'p', 1813, - 's', 1843, - 't', 1813, - 'u', 1895, - 'w', 1862, - '|', 1455, - 0xb5, 1895, + '#', 2193, + '.', 1599, + '=', 1801, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'd', 1829, + 'e', 1811, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + '|', 1456, + 0xb5, 1896, ); if (lookahead == '\t' || lookahead == ' ') SKIP(122); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 102: - if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\n') ADVANCE(1452); if (lookahead == '\r') ADVANCE(9); - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '.') ADVANCE(1598); - if (lookahead == '=') ADVANCE(1800); - if (lookahead == 'i') ADVANCE(1849); - if (lookahead == '|') ADVANCE(1455); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1599); + if (lookahead == '=') ADVANCE(1801); + if (lookahead == 'i') ADVANCE(1850); + if (lookahead == '|') ADVANCE(1456); if (lookahead == '\t' || lookahead == ' ') SKIP(121); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1823); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == 'e') ADVANCE(1824); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 103: - if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\n') ADVANCE(1452); if (lookahead == '\r') ADVANCE(9); - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '.') ADVANCE(1598); - if (lookahead == '=') ADVANCE(1800); - if (lookahead == '|') ADVANCE(1455); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1599); + if (lookahead == '=') ADVANCE(1801); + if (lookahead == '|') ADVANCE(1456); if (lookahead == '\t' || lookahead == ' ') SKIP(122); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1823); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == 'e') ADVANCE(1824); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 104: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '.', 1794, - '=', 1800, - 'E', 1811, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - '_', 1817, - 'd', 1828, - 'e', 1810, - 'g', 1813, - 'h', 1882, - 'i', 1849, - 'k', 1813, - 'm', 1816, - 'n', 1895, - 'p', 1813, - 's', 1843, - 't', 1813, - 'u', 1895, - 'w', 1862, - '|', 1455, - 0xb5, 1895, + '#', 2193, + '.', 1795, + '=', 1801, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + '_', 1818, + 'd', 1829, + 'e', 1811, + 'g', 1814, + 'h', 1883, + 'i', 1850, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + '|', 1456, + 0xb5, 1896, ); if (lookahead == '\t' || lookahead == ' ') SKIP(121); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == 'b') ADVANCE(1657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 105: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '.', 1794, - '=', 1800, - 'E', 1811, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - '_', 1817, - 'd', 1828, - 'e', 1810, - 'g', 1813, - 'h', 1882, - 'k', 1813, - 'm', 1816, - 'n', 1895, - 'p', 1813, - 's', 1843, - 't', 1813, - 'u', 1895, - 'w', 1862, - '|', 1455, - 0xb5, 1895, + '#', 2193, + '.', 1795, + '=', 1801, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + '_', 1818, + 'd', 1829, + 'e', 1811, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + '|', 1456, + 0xb5, 1896, ); if (lookahead == '\t' || lookahead == ' ') SKIP(122); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == 'b') ADVANCE(1657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 106: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '.', 1794, - '=', 1800, - 'E', 1811, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - 'd', 1828, - 'e', 1810, - 'g', 1813, - 'h', 1882, - 'i', 1849, - 'k', 1813, - 'm', 1816, - 'n', 1895, - 'p', 1813, - 's', 1843, - 't', 1813, - 'u', 1895, - 'w', 1862, - '|', 1455, - 0xb5, 1895, + '#', 2193, + '.', 1795, + '=', 1801, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'd', 1829, + 'e', 1811, + 'g', 1814, + 'h', 1883, + 'i', 1850, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + '|', 1456, + 0xb5, 1896, ); if (lookahead == '\t' || lookahead == ' ') SKIP(121); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 107: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '.', 1794, - '=', 1800, - 'E', 1811, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - 'd', 1828, - 'e', 1810, - 'g', 1813, - 'h', 1882, - 'k', 1813, - 'm', 1816, - 'n', 1895, - 'p', 1813, - 's', 1843, - 't', 1813, - 'u', 1895, - 'w', 1862, - '|', 1455, - 0xb5, 1895, + '#', 2193, + '.', 1795, + '=', 1801, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'd', 1829, + 'e', 1811, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + '|', 1456, + 0xb5, 1896, ); if (lookahead == '\t' || lookahead == ' ') SKIP(122); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 108: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '.', 1794, - '=', 1800, - 'E', 1814, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - 'd', 1828, - 'e', 1813, - 'g', 1813, - 'h', 1882, - 'i', 1849, - 'k', 1813, - 'm', 1816, - 'n', 1895, - 'p', 1813, - 's', 1843, - 't', 1813, - 'u', 1895, - 'w', 1862, - '|', 1455, - 0xb5, 1895, + '#', 2193, + '.', 1795, + '=', 1801, + 'E', 1815, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'd', 1829, + 'e', 1814, + 'g', 1814, + 'h', 1883, + 'i', 1850, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + '|', 1456, + 0xb5, 1896, ); if (lookahead == '\t' || lookahead == ' ') SKIP(121); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 109: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '.', 1794, - '=', 1800, - 'E', 1814, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - 'd', 1828, - 'e', 1813, - 'g', 1813, - 'h', 1882, - 'k', 1813, - 'm', 1816, - 'n', 1895, - 'p', 1813, - 's', 1843, - 't', 1813, - 'u', 1895, - 'w', 1862, - '|', 1455, - 0xb5, 1895, + '#', 2193, + '.', 1795, + '=', 1801, + 'E', 1815, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'd', 1829, + 'e', 1814, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + '|', 1456, + 0xb5, 1896, ); if (lookahead == '\t' || lookahead == ' ') SKIP(122); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 110: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '.', 1794, - '=', 1800, - '_', 1817, - 'i', 1849, - '|', 1455, + '#', 2193, + '.', 1795, + '=', 1801, + '_', 1818, + 'i', 1850, + '|', 1456, ); if (lookahead == '\t' || lookahead == ' ') SKIP(121); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1823); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == 'e') ADVANCE(1824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 111: - if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\n') ADVANCE(1452); if (lookahead == '\r') ADVANCE(9); - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '.') ADVANCE(1794); - if (lookahead == '=') ADVANCE(1800); - if (lookahead == '_') ADVANCE(1817); - if (lookahead == '|') ADVANCE(1455); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1795); + if (lookahead == '=') ADVANCE(1801); + if (lookahead == '_') ADVANCE(1818); + if (lookahead == '|') ADVANCE(1456); if (lookahead == '\t' || lookahead == ' ') SKIP(122); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1823); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == 'e') ADVANCE(1824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 112: - if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\n') ADVANCE(1452); if (lookahead == '\r') ADVANCE(9); - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '.') ADVANCE(1794); - if (lookahead == '=') ADVANCE(1800); - if (lookahead == 'i') ADVANCE(1849); - if (lookahead == '|') ADVANCE(1455); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1795); + if (lookahead == '=') ADVANCE(1801); + if (lookahead == 'i') ADVANCE(1850); + if (lookahead == '|') ADVANCE(1456); if (lookahead == '\t' || lookahead == ' ') SKIP(121); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1823); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == 'e') ADVANCE(1824); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 113: - if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\n') ADVANCE(1452); if (lookahead == '\r') ADVANCE(9); - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '.') ADVANCE(1794); - if (lookahead == '=') ADVANCE(1800); - if (lookahead == 'i') ADVANCE(1849); - if (lookahead == '|') ADVANCE(1455); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1795); + if (lookahead == '=') ADVANCE(1801); + if (lookahead == 'i') ADVANCE(1850); + if (lookahead == '|') ADVANCE(1456); if (lookahead == '\t' || lookahead == ' ') SKIP(121); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 114: - if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\n') ADVANCE(1452); if (lookahead == '\r') ADVANCE(9); - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '.') ADVANCE(1794); - if (lookahead == '=') ADVANCE(1800); - if (lookahead == '|') ADVANCE(1455); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1795); + if (lookahead == '=') ADVANCE(1801); + if (lookahead == '|') ADVANCE(1456); if (lookahead == '\t' || lookahead == ' ') SKIP(122); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1823); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == 'e') ADVANCE(1824); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 115: - if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\n') ADVANCE(1452); if (lookahead == '\r') ADVANCE(9); - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '.') ADVANCE(1794); - if (lookahead == '=') ADVANCE(1800); - if (lookahead == '|') ADVANCE(1455); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1795); + if (lookahead == '=') ADVANCE(1801); + if (lookahead == '|') ADVANCE(1456); if (lookahead == '\t' || lookahead == ' ') SKIP(122); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 116: - if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\n') ADVANCE(1452); if (lookahead == '\r') ADVANCE(9); - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '.') ADVANCE(1597); - if (lookahead == '=') ADVANCE(1800); - if (lookahead == 'i') ADVANCE(1849); - if (lookahead == '|') ADVANCE(1455); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1598); + if (lookahead == '=') ADVANCE(1801); + if (lookahead == 'i') ADVANCE(1850); + if (lookahead == '|') ADVANCE(1456); if (lookahead == '\t' || lookahead == ' ') SKIP(121); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1823); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == 'e') ADVANCE(1824); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 117: - if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\n') ADVANCE(1452); if (lookahead == '\r') ADVANCE(9); - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '.') ADVANCE(1597); - if (lookahead == '=') ADVANCE(1800); - if (lookahead == '|') ADVANCE(1455); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1598); + if (lookahead == '=') ADVANCE(1801); + if (lookahead == '|') ADVANCE(1456); if (lookahead == '\t' || lookahead == ' ') SKIP(122); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1823); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == 'e') ADVANCE(1824); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 118: ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - ':', 1716, - ';', 1454, - '=', 1733, - 'e', 292, - 'o', 294, - '|', 1455, - '}', 1503, - '\t', 1452, - ' ', 1452, + '#', 2193, + ':', 1717, + ';', 1455, + '=', 1734, + 'e', 293, + 'o', 295, + '|', 1456, + '}', 1504, + '\t', 1453, + ' ', 1453, ); END_STATE(); case 119: - if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\n') ADVANCE(1452); if (lookahead == '\r') ADVANCE(9); - if (lookahead == '#') ADVANCE(2192); - if (lookahead == ':') ADVANCE(1716); - if (lookahead == '{') ADVANCE(1502); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == ':') ADVANCE(1717); + if (lookahead == '{') ADVANCE(1503); if (lookahead == '\t' || lookahead == ' ') SKIP(119); END_STATE(); case 120: - if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\n') ADVANCE(1452); if (lookahead == '\r') ADVANCE(9); - if (lookahead == '#') ADVANCE(2192); - if (lookahead == ';') ADVANCE(1454); - if (lookahead == '=') ADVANCE(1733); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == ';') ADVANCE(1455); + if (lookahead == '=') ADVANCE(1734); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1453); - if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1450); + lookahead == ' ') ADVANCE(1454); + if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1451); END_STATE(); case 121: - if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\n') ADVANCE(1452); if (lookahead == '\r') ADVANCE(9); - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '=') ADVANCE(327); - if (lookahead == 'i') ADVANCE(388); - if (lookahead == '|') ADVANCE(1455); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '=') ADVANCE(328); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == '|') ADVANCE(1456); if (lookahead == '\t' || lookahead == ' ') SKIP(121); END_STATE(); case 122: - if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\n') ADVANCE(1452); if (lookahead == '\r') ADVANCE(9); - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '=') ADVANCE(327); - if (lookahead == '|') ADVANCE(1455); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '=') ADVANCE(328); + if (lookahead == '|') ADVANCE(1456); if (lookahead == '\t' || lookahead == ' ') SKIP(122); END_STATE(); case 123: - if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\n') ADVANCE(1452); if (lookahead == '\r') ADVANCE(9); - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '=') ADVANCE(1800); - if (lookahead == '_') ADVANCE(1817); - if (lookahead == 'i') ADVANCE(1849); - if (lookahead == '|') ADVANCE(1455); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '=') ADVANCE(1801); + if (lookahead == '_') ADVANCE(1818); + if (lookahead == 'i') ADVANCE(1850); + if (lookahead == '|') ADVANCE(1456); if (lookahead == '\t' || lookahead == ' ') SKIP(121); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1823); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == 'e') ADVANCE(1824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 124: - if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\n') ADVANCE(1452); if (lookahead == '\r') ADVANCE(9); - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '=') ADVANCE(1800); - if (lookahead == '_') ADVANCE(1817); - if (lookahead == '|') ADVANCE(1455); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '=') ADVANCE(1801); + if (lookahead == '_') ADVANCE(1818); + if (lookahead == '|') ADVANCE(1456); if (lookahead == '\t' || lookahead == ' ') SKIP(122); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1823); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == 'e') ADVANCE(1824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 125: - if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\n') ADVANCE(1452); if (lookahead == '\r') ADVANCE(9); - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '=') ADVANCE(1800); - if (lookahead == 'i') ADVANCE(1849); - if (lookahead == '|') ADVANCE(1455); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '=') ADVANCE(1801); + if (lookahead == 'i') ADVANCE(1850); + if (lookahead == '|') ADVANCE(1456); if (lookahead == '\t' || lookahead == ' ') SKIP(121); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1823); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == 'e') ADVANCE(1824); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 126: - if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\n') ADVANCE(1452); if (lookahead == '\r') ADVANCE(9); - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '=') ADVANCE(1800); - if (lookahead == 'i') ADVANCE(1849); - if (lookahead == '|') ADVANCE(1455); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '=') ADVANCE(1801); + if (lookahead == 'i') ADVANCE(1850); + if (lookahead == '|') ADVANCE(1456); if (lookahead == '\t' || lookahead == ' ') SKIP(121); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 127: - if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\n') ADVANCE(1452); if (lookahead == '\r') ADVANCE(9); - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '=') ADVANCE(1800); - if (lookahead == '|') ADVANCE(1455); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '=') ADVANCE(1801); + if (lookahead == '|') ADVANCE(1456); if (lookahead == '\t' || lookahead == ' ') SKIP(122); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1823); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == 'e') ADVANCE(1824); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 128: - if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\n') ADVANCE(1452); if (lookahead == '\r') ADVANCE(9); - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '=') ADVANCE(1800); - if (lookahead == '|') ADVANCE(1455); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '=') ADVANCE(1801); + if (lookahead == '|') ADVANCE(1456); if (lookahead == '\t' || lookahead == ' ') SKIP(122); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 129: - if (lookahead == '\n') ADVANCE(1451); + if (lookahead == '\n') ADVANCE(1452); if (lookahead == '\r') ADVANCE(9); - if (lookahead == '#') ADVANCE(2195); - if (lookahead == ':') ADVANCE(1716); - if (lookahead == '{') ADVANCE(1502); + if (lookahead == '#') ADVANCE(2196); + if (lookahead == ':') ADVANCE(1717); + if (lookahead == '{') ADVANCE(1503); if (lookahead == '\t' || lookahead == ' ') SKIP(119); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 130: ADVANCE_MAP( - '\n', 1710, - '\r', 1710, - '!', 1722, - '#', 2192, - '(', 1564, - '*', 1516, - '+', 1581, - '-', 1499, - '.', 1726, - '/', 1571, - ':', 1716, - ';', 1454, - '<', 1553, - '=', 677, - '>', 1484, - '?', 1720, - '[', 1468, - ']', 1469, - 'a', 423, - 'b', 402, - 'e', 289, - 'h', 347, - 'i', 424, - 'l', 401, - 'm', 438, - 'n', 436, - 'o', 283, - 's', 487, - 'x', 433, - '|', 1455, - '}', 1503, - '\t', 1711, - ' ', 1711, - 0x0b, 1710, - '\f', 1710, - ',', 1710, + '\n', 1711, + '\r', 1711, + '!', 1723, + '#', 2193, + '(', 1565, + '*', 1517, + '+', 1582, + '-', 1500, + '.', 1727, + '/', 1572, + ':', 1717, + ';', 1455, + '<', 1554, + '=', 678, + '>', 1485, + '?', 1721, + '[', 1469, + ']', 1470, + 'a', 424, + 'b', 403, + 'e', 290, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 284, + 's', 488, + 'x', 434, + '|', 1456, + '}', 1504, + '\t', 1712, + ' ', 1712, + 0x0b, 1711, + '\f', 1711, + ',', 1711, ); END_STATE(); case 131: ADVANCE_MAP( - '!', 1721, - '"', 1688, - '#', 2192, + '!', 1722, + '"', 1689, + '#', 2193, '$', 186, - '\'', 1691, - '.', 1723, - ';', 1719, - '?', 1720, - '`', 1695, + '\'', 1692, + '.', 1724, + ';', 1720, + '?', 1721, + '`', 1696, '\t', 131, ' ', 131, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(322); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(323); END_STATE(); case 132: ADVANCE_MAP( - '!', 1721, - '"', 1688, - '#', 2192, + '!', 1722, + '"', 1689, + '#', 2193, '$', 186, - '\'', 1691, - '.', 1723, - ';', 1719, - '?', 1720, - '`', 1695, + '\'', 1692, + '.', 1724, + ';', 1720, + '?', 1721, + '`', 1696, '\t', 131, ' ', 131, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(322); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(323); if (lookahead != 0 && (lookahead < '&' || '.' < lookahead) && (lookahead < ':' || '@' < lookahead) && lookahead != '[' && lookahead != ']' && lookahead != '^' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1734); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1735); END_STATE(); case 133: ADVANCE_MAP( - '!', 1721, - '"', 1688, - '#', 2192, - '\'', 1691, - '+', 705, - '-', 303, - '.', 1730, - '?', 1720, - 'I', 812, - 'N', 808, - '_', 719, - '`', 1695, - 'a', 757, - 'c', 724, - 'd', 734, - 'e', 762, - 'f', 726, - 'i', 718, - 'l', 742, - 'm', 728, - 'n', 801, - 't', 775, - 'u', 788, - 'w', 754, + '!', 1722, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 706, + '-', 304, + '.', 1731, + '?', 1721, + 'I', 813, + 'N', 809, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, ); if (lookahead == '\t' || lookahead == ' ') SKIP(133); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); END_STATE(); case 134: ADVANCE_MAP( - '!', 1721, - '"', 1688, - '#', 2192, - '\'', 1691, - '+', 705, - '-', 303, - '.', 1730, - 'I', 812, - 'N', 808, - '_', 719, - '`', 1695, - 'a', 757, - 'c', 724, - 'd', 734, - 'e', 762, - 'f', 726, - 'i', 718, - 'l', 742, - 'm', 728, - 'n', 801, - 't', 775, - 'u', 788, - 'w', 754, + '!', 1722, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 706, + '-', 304, + '.', 1731, + 'I', 813, + 'N', 809, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, ); if (lookahead == '\t' || lookahead == ' ') SKIP(134); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); END_STATE(); case 135: ADVANCE_MAP( - '!', 1721, - '#', 2192, - ',', 1710, - '.', 1727, - ';', 1719, - '?', 1720, - ']', 1469, - '\t', 1713, - ' ', 1713, + '!', 1722, + '#', 2193, + ',', 1711, + '.', 1728, + ';', 1720, + '?', 1721, + ']', 1470, + '\t', 1714, + ' ', 1714, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1714); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1715); END_STATE(); case 136: ADVANCE_MAP( - '!', 1721, - '#', 2192, - '.', 1726, - ':', 1716, - '?', 1720, - ']', 1469, - '}', 1503, - '\t', 1715, - ' ', 1715, + '!', 1722, + '#', 2193, + '.', 1727, + ':', 1717, + '?', 1721, + ']', 1470, + '}', 1504, + '\t', 1716, + ' ', 1716, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); + lookahead == ',') ADVANCE(1711); END_STATE(); case 137: ADVANCE_MAP( - '!', 1721, - '#', 2192, - '.', 1727, - ':', 1716, - '?', 1720, - ']', 1469, - '}', 1503, - '\t', 1715, - ' ', 1715, + '!', 1722, + '#', 2193, + '.', 1728, + ':', 1717, + '?', 1721, + ']', 1470, + '}', 1504, + '\t', 1716, + ' ', 1716, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); + lookahead == ',') ADVANCE(1711); END_STATE(); case 138: ADVANCE_MAP( - '!', 1797, - '#', 2192, - '$', 1473, - '(', 1564, - '*', 1515, - '+', 1579, - '-', 1497, - '.', 1607, - '/', 1570, - '<', 1553, - '=', 1798, - '>', 1484, - '_', 1817, - 'a', 1869, - 'b', 1856, - 'e', 1870, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1883, - 's', 1903, - 'x', 1875, + '!', 1798, + '#', 2193, + '$', 1474, + '(', 1565, + '*', 1516, + '+', 1580, + '-', 1498, + '.', 1608, + '/', 1571, + '<', 1554, + '=', 1799, + '>', 1485, + '_', 1818, + 'a', 1870, + 'b', 1857, + 'e', 1871, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, ); if (lookahead == '\t' || lookahead == ' ') SKIP(152); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); case 139: ADVANCE_MAP( - '!', 1797, - '#', 2192, - '$', 1473, - '(', 1564, - '*', 1515, - '+', 1579, - '-', 1497, - '.', 1819, - '/', 1570, - '<', 1553, - '=', 1798, - '>', 1484, - '_', 1817, - 'a', 1869, - 'b', 1856, - 'e', 1870, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1883, - 's', 1903, - 'x', 1875, + '!', 1798, + '#', 2193, + '$', 1474, + '(', 1565, + '*', 1516, + '+', 1580, + '-', 1498, + '.', 1820, + '/', 1571, + '<', 1554, + '=', 1799, + '>', 1485, + '_', 1818, + 'a', 1870, + 'b', 1857, + 'e', 1871, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, ); if (lookahead == '\t' || lookahead == ' ') SKIP(152); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); case 140: ADVANCE_MAP( - '!', 1797, - '#', 2192, - '(', 1564, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1598, - '/', 1570, - '<', 1553, - '=', 1798, - '>', 1484, - 'B', 1656, - 'E', 1811, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - 'a', 1869, - 'b', 1659, - 'd', 1828, - 'e', 1809, - 'g', 1813, - 'h', 1826, - 'i', 1867, - 'k', 1813, - 'l', 1855, - 'm', 1815, - 'n', 1876, - 'o', 1883, - 'p', 1813, - 's', 1842, - 't', 1813, - 'u', 1895, - 'w', 1862, - 'x', 1875, - 0xb5, 1895, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1599, + '/', 1571, + '<', 1554, + '=', 1799, + '>', 1485, + 'B', 1657, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'a', 1870, + 'b', 1660, + 'd', 1829, + 'e', 1810, + 'g', 1814, + 'h', 1827, + 'i', 1868, + 'k', 1814, + 'l', 1856, + 'm', 1816, + 'n', 1877, + 'o', 1884, + 'p', 1814, + 's', 1843, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + 0xb5, 1896, ); if (lookahead == '\t' || lookahead == ' ') SKIP(153); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 141: ADVANCE_MAP( - '!', 1797, - '#', 2192, - '(', 1564, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1598, - '/', 1570, - '<', 1553, - '=', 1798, - '>', 1484, - 'E', 1823, - 'a', 1869, - 'b', 1856, - 'e', 1820, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1883, - 's', 1903, - 'x', 1875, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1599, + '/', 1571, + '<', 1554, + '=', 1799, + '>', 1485, + 'E', 1824, + 'a', 1870, + 'b', 1857, + 'e', 1821, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, ); if (lookahead == '\t' || lookahead == ' ') SKIP(153); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 142: ADVANCE_MAP( - '!', 1797, - '#', 2192, - '(', 1564, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1794, - '/', 1570, - '<', 1553, - '=', 1798, - '>', 1484, - 'B', 1656, - 'E', 1811, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - '_', 1817, - 'a', 1869, - 'b', 1659, - 'd', 1828, - 'e', 1809, - 'g', 1813, - 'h', 1826, - 'i', 1867, - 'k', 1813, - 'l', 1855, - 'm', 1815, - 'n', 1876, - 'o', 1883, - 'p', 1813, - 's', 1842, - 't', 1813, - 'u', 1895, - 'w', 1862, - 'x', 1875, - 0xb5, 1895, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + '<', 1554, + '=', 1799, + '>', 1485, + 'B', 1657, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + '_', 1818, + 'a', 1870, + 'b', 1660, + 'd', 1829, + 'e', 1810, + 'g', 1814, + 'h', 1827, + 'i', 1868, + 'k', 1814, + 'l', 1856, + 'm', 1816, + 'n', 1877, + 'o', 1884, + 'p', 1814, + 's', 1843, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + 0xb5, 1896, ); if (lookahead == '\t' || lookahead == ' ') SKIP(153); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 143: ADVANCE_MAP( - '!', 1797, - '#', 2192, - '(', 1564, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1794, - '/', 1570, - '<', 1553, - '=', 1798, - '>', 1484, - 'B', 1656, - 'E', 1811, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - 'a', 1869, - 'b', 1659, - 'd', 1828, - 'e', 1809, - 'g', 1813, - 'h', 1826, - 'i', 1867, - 'k', 1813, - 'l', 1855, - 'm', 1815, - 'n', 1876, - 'o', 1883, - 'p', 1813, - 's', 1842, - 't', 1813, - 'u', 1895, - 'w', 1862, - 'x', 1875, - 0xb5, 1895, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + '<', 1554, + '=', 1799, + '>', 1485, + 'B', 1657, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'a', 1870, + 'b', 1660, + 'd', 1829, + 'e', 1810, + 'g', 1814, + 'h', 1827, + 'i', 1868, + 'k', 1814, + 'l', 1856, + 'm', 1816, + 'n', 1877, + 'o', 1884, + 'p', 1814, + 's', 1843, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + 0xb5, 1896, ); if (lookahead == '\t' || lookahead == ' ') SKIP(153); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 144: ADVANCE_MAP( - '!', 1797, - '#', 2192, - '(', 1564, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1794, - '/', 1570, - '<', 1553, - '=', 1798, - '>', 1484, - 'B', 1656, - 'E', 1814, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - 'a', 1869, - 'b', 1659, - 'd', 1828, - 'e', 1812, - 'g', 1813, - 'h', 1826, - 'i', 1867, - 'k', 1813, - 'l', 1855, - 'm', 1815, - 'n', 1876, - 'o', 1883, - 'p', 1813, - 's', 1842, - 't', 1813, - 'u', 1895, - 'w', 1862, - 'x', 1875, - 0xb5, 1895, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + '<', 1554, + '=', 1799, + '>', 1485, + 'B', 1657, + 'E', 1815, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'a', 1870, + 'b', 1660, + 'd', 1829, + 'e', 1813, + 'g', 1814, + 'h', 1827, + 'i', 1868, + 'k', 1814, + 'l', 1856, + 'm', 1816, + 'n', 1877, + 'o', 1884, + 'p', 1814, + 's', 1843, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + 0xb5, 1896, ); if (lookahead == '\t' || lookahead == ' ') SKIP(153); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 145: ADVANCE_MAP( - '!', 1797, - '#', 2192, - '(', 1564, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1794, - '/', 1570, - '<', 1553, - '=', 1798, - '>', 1484, - 'E', 1823, - '_', 1817, - 'a', 1869, - 'b', 1856, - 'e', 1820, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1883, - 's', 1903, - 'x', 1875, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + '<', 1554, + '=', 1799, + '>', 1485, + 'E', 1824, + '_', 1818, + 'a', 1870, + 'b', 1857, + 'e', 1821, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, ); if (lookahead == '\t' || lookahead == ' ') SKIP(153); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 146: ADVANCE_MAP( - '!', 1797, - '#', 2192, - '(', 1564, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1794, - '/', 1570, - '<', 1553, - '=', 1798, - '>', 1484, - 'E', 1823, - 'a', 1869, - 'b', 1856, - 'e', 1820, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1883, - 's', 1903, - 'x', 1875, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + '<', 1554, + '=', 1799, + '>', 1485, + 'E', 1824, + 'a', 1870, + 'b', 1857, + 'e', 1821, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, ); if (lookahead == '\t' || lookahead == ' ') SKIP(153); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 147: ADVANCE_MAP( - '!', 1797, - '#', 2192, - '(', 1564, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1794, - '/', 1570, - '<', 1553, - '=', 1798, - '>', 1484, - 'a', 1869, - 'b', 1856, - 'e', 1870, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1883, - 's', 1903, - 'x', 1875, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + '<', 1554, + '=', 1799, + '>', 1485, + 'a', 1870, + 'b', 1857, + 'e', 1871, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, ); if (lookahead == '\t' || lookahead == ' ') SKIP(153); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 148: ADVANCE_MAP( - '!', 1797, - '#', 2192, - '(', 1564, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1597, - '/', 1570, - '<', 1553, - '=', 1798, - '>', 1484, - 'E', 1823, - 'a', 1869, - 'b', 1856, - 'e', 1820, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1883, - 's', 1903, - 'x', 1875, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1598, + '/', 1571, + '<', 1554, + '=', 1799, + '>', 1485, + 'E', 1824, + 'a', 1870, + 'b', 1857, + 'e', 1821, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, ); if (lookahead == '\t' || lookahead == ' ') SKIP(153); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 149: ADVANCE_MAP( - '!', 1797, - '#', 2192, - '(', 1564, - '*', 1515, - '+', 1578, - '-', 1490, - '/', 1570, - '<', 1553, - '=', 1798, - '>', 1484, - 'E', 1823, - '_', 1817, - 'a', 1869, - 'b', 1856, - 'e', 1820, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1883, - 's', 1903, - 'x', 1875, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + '<', 1554, + '=', 1799, + '>', 1485, + 'E', 1824, + '_', 1818, + 'a', 1870, + 'b', 1857, + 'e', 1821, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, ); if (lookahead == '\t' || lookahead == ' ') SKIP(153); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 150: ADVANCE_MAP( - '!', 1797, - '#', 2192, - '(', 1564, - '*', 1515, - '+', 1578, - '-', 1490, - '/', 1570, - '<', 1553, - '=', 1798, - '>', 1484, - 'E', 1823, - 'a', 1869, - 'b', 1856, - 'e', 1820, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1883, - 's', 1903, - 'x', 1875, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + '<', 1554, + '=', 1799, + '>', 1485, + 'E', 1824, + 'a', 1870, + 'b', 1857, + 'e', 1821, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, ); if (lookahead == '\t' || lookahead == ' ') SKIP(153); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 151: ADVANCE_MAP( - '!', 1797, - '#', 2192, - '(', 1564, - '*', 1515, - '+', 1578, - '-', 1490, - '/', 1570, - '<', 1553, - '=', 1798, - '>', 1484, - 'a', 1869, - 'b', 1856, - 'e', 1870, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1883, - 's', 1903, - 'x', 1875, + '!', 1798, + '#', 2193, + '(', 1565, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + '<', 1554, + '=', 1799, + '>', 1485, + 'a', 1870, + 'b', 1857, + 'e', 1871, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1884, + 's', 1904, + 'x', 1876, ); if (lookahead == '\t' || lookahead == ' ') SKIP(153); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 152: ADVANCE_MAP( - '!', 324, - '#', 2192, - '$', 1473, - '*', 1515, - '+', 1580, - '-', 1498, - '.', 340, - '/', 1570, - '<', 1553, - '=', 325, - '>', 1484, - 'a', 423, - 'b', 402, - 'e', 427, - 'h', 347, - 'i', 424, - 'l', 401, - 'm', 438, - 'n', 436, - 'o', 453, - 's', 487, - 'x', 433, + '!', 325, + '#', 2193, + '$', 1474, + '*', 1516, + '+', 1581, + '-', 1499, + '.', 341, + '/', 1571, + '<', 1554, + '=', 326, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 428, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 454, + 's', 488, + 'x', 434, ); if (lookahead == '\t' || lookahead == ' ') SKIP(152); END_STATE(); case 153: ADVANCE_MAP( - '!', 324, - '#', 2192, - '*', 1515, - '+', 1578, - '-', 1490, - '/', 1570, - '<', 1553, - '=', 325, - '>', 1484, - 'a', 423, - 'b', 402, - 'e', 427, - 'h', 347, - 'i', 424, - 'l', 401, - 'm', 438, - 'n', 436, - 'o', 453, - 's', 487, - 'x', 433, + '!', 325, + '#', 2193, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + '<', 1554, + '=', 326, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 428, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 454, + 's', 488, + 'x', 434, ); if (lookahead == '\t' || lookahead == ' ') SKIP(153); END_STATE(); case 154: ADVANCE_MAP( - '"', 1688, - '#', 2192, - '$', 1473, - '\'', 1691, - '(', 1470, - '+', 2004, - ',', 1710, - '-', 311, - '.', 2002, - '0', 1627, - 'N', 2051, - '[', 1468, - '_', 1505, - '`', 1695, - 'f', 2019, - 'n', 2047, - 't', 2034, - '{', 1502, - '}', 1503, - '\t', 1712, - ' ', 1712, - 'I', 2055, - 'i', 2055, + '"', 1689, + '#', 2193, + '$', 1474, + '\'', 1692, + '(', 1471, + '+', 2005, + ',', 1711, + '-', 312, + '.', 2003, + '0', 1628, + 'N', 2052, + '[', 1469, + '_', 1506, + '`', 1696, + 'f', 2020, + 'n', 2048, + 't', 2035, + '{', 1503, + '}', 1504, + '\t', 1713, + ' ', 1713, + 'I', 2056, + 'i', 2056, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1710); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1711); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2074); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2075); END_STATE(); case 155: ADVANCE_MAP( - '"', 1688, - '#', 2192, - '$', 1473, - '\'', 1691, - '(', 1470, - '+', 2004, - '-', 311, - '.', 2002, - '0', 1627, - 'N', 2051, - '[', 1468, - '_', 2016, - '`', 1695, - 'f', 2019, - 'n', 2047, - 't', 2034, - '{', 1502, + '"', 1689, + '#', 2193, + '$', 1474, + '\'', 1692, + '(', 1471, + '+', 2005, + '-', 312, + '.', 2003, + '0', 1628, + 'N', 2052, + '[', 1469, + '_', 2017, + '`', 1696, + 'f', 2020, + 'n', 2048, + 't', 2035, + '{', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(155); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2055); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); + lookahead == 'i') ADVANCE(2056); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2074); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2075); END_STATE(); case 156: ADVANCE_MAP( - '"', 1688, - '#', 2192, - '$', 1473, - '\'', 1691, - '(', 1470, - '+', 2086, - '-', 2085, - '.', 2084, - '0', 1628, - 'N', 2104, - '[', 1468, - ']', 1469, - '_', 2091, - '`', 1695, - 'f', 2094, - 'n', 2103, - 't', 2100, - '{', 1502, - '\t', 1715, - ' ', 1715, - 'I', 2110, - 'i', 2110, + '"', 1689, + '#', 2193, + '$', 1474, + '\'', 1692, + '(', 1471, + '+', 2087, + '-', 2086, + '.', 2085, + '0', 1629, + 'N', 2105, + '[', 1469, + ']', 1470, + '_', 2092, + '`', 1696, + 'f', 2095, + 'n', 2104, + 't', 2101, + '{', 1503, + '\t', 1716, + ' ', 1716, + 'I', 2111, + 'i', 2111, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == ',') ADVANCE(1711); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1645); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2132); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2133); END_STATE(); case 157: ADVANCE_MAP( - '"', 1688, - '#', 2192, - '$', 1474, - '\'', 1691, - '(', 1564, - '+', 2004, - '-', 311, - '.', 2002, - '0', 1627, - ';', 1719, - 'N', 2051, - '[', 1468, - '_', 2016, - '`', 1695, - 'f', 2019, - 'n', 2047, - 't', 2034, - '{', 1502, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1565, + '+', 2005, + '-', 312, + '.', 2003, + '0', 1628, + ';', 1720, + 'N', 2052, + '[', 1469, + '_', 2017, + '`', 1696, + 'f', 2020, + 'n', 2048, + 't', 2035, + '{', 1503, '\t', 160, ' ', 160, - 'I', 2055, - 'i', 2055, + 'I', 2056, + 'i', 2056, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(322); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(323); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2074); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2075); END_STATE(); case 158: ADVANCE_MAP( - '"', 1688, - '#', 2192, - '$', 1474, - '\'', 1691, - '(', 1470, - '+', 1583, - '-', 1495, - '.', 704, - '0', 1631, - '<', 1144, - '>', 1483, - 'I', 812, - 'N', 808, - ']', 1469, - '_', 719, - '`', 1695, - 'a', 757, - 'c', 724, - 'd', 734, - 'e', 762, - 'f', 726, - 'i', 718, - 'l', 742, - 'm', 728, - 'n', 801, - 't', 775, - 'u', 788, - 'w', 754, - '}', 1503, - '\t', 1715, - ' ', 1715, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 1584, + '-', 1496, + '.', 705, + '0', 1632, + '<', 1145, + '>', 1484, + 'I', 813, + 'N', 809, + ']', 1470, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, + '}', 1504, + '\t', 1716, + ' ', 1716, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1647); + lookahead == ',') ADVANCE(1711); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1648); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '@' && lookahead != '[' && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(827); + (lookahead < '{' || '}' < lookahead)) ADVANCE(828); END_STATE(); case 159: ADVANCE_MAP( - '"', 1688, - '#', 2192, - '$', 1474, - '\'', 1691, - '(', 1470, - '+', 2004, - '-', 311, - '.', 2002, - '0', 1627, - ':', 1716, - 'N', 2051, - '[', 1468, - '_', 2016, - '`', 1695, - 'f', 2019, - 'n', 2047, - 't', 2034, - '{', 1502, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 2005, + '-', 312, + '.', 2003, + '0', 1628, + ':', 1717, + 'N', 2052, + '[', 1469, + '_', 2017, + '`', 1696, + 'f', 2020, + 'n', 2048, + 't', 2035, + '{', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(159); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2055); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); + lookahead == 'i') ADVANCE(2056); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2074); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2075); END_STATE(); case 160: ADVANCE_MAP( - '"', 1688, - '#', 2192, - '$', 1474, - '\'', 1691, - '(', 1470, - '+', 2004, - '-', 311, - '.', 2002, - '0', 1627, - ';', 1719, - 'N', 2051, - '[', 1468, - '_', 2016, - '`', 1695, - 'f', 2019, - 'n', 2047, - 't', 2034, - '{', 1502, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 2005, + '-', 312, + '.', 2003, + '0', 1628, + ';', 1720, + 'N', 2052, + '[', 1469, + '_', 2017, + '`', 1696, + 'f', 2020, + 'n', 2048, + 't', 2035, + '{', 1503, '\t', 160, ' ', 160, - 'I', 2055, - 'i', 2055, + 'I', 2056, + 'i', 2056, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(322); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(323); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2074); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2075); END_STATE(); case 161: ADVANCE_MAP( - '"', 1688, - '#', 2192, - '$', 1474, - '\'', 1691, - '(', 1470, - '+', 2004, - '-', 311, - '.', 2002, - '0', 1627, - 'N', 2051, - '[', 1468, - '_', 2016, - '`', 1695, - 'f', 2019, - 'n', 2047, - 't', 2034, - '{', 1502, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 2005, + '-', 312, + '.', 2003, + '0', 1628, + 'N', 2052, + '[', 1469, + '_', 2017, + '`', 1696, + 'f', 2020, + 'n', 2048, + 't', 2035, + '{', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(161); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2055); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); + lookahead == 'i') ADVANCE(2056); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2074); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2075); END_STATE(); case 162: ADVANCE_MAP( - '"', 1688, - '#', 2192, - '$', 1474, - '\'', 1691, - '(', 1470, - '+', 2004, - '-', 311, - '.', 2002, - ':', 1716, - 'N', 2051, - '_', 2016, - '`', 1695, - 'f', 2019, - 'n', 2047, - 't', 2034, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 2005, + '-', 312, + '.', 2003, + ':', 1717, + 'N', 2052, + '_', 2017, + '`', 1696, + 'f', 2020, + 'n', 2048, + 't', 2035, ); if (lookahead == '\t' || lookahead == ' ') SKIP(162); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2055); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + lookahead == 'i') ADVANCE(2056); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2074); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2075); END_STATE(); case 163: ADVANCE_MAP( - '"', 1688, - '#', 2192, - '$', 1474, - '\'', 1691, - '(', 1470, - '+', 2004, - '-', 311, - '.', 2002, - 'N', 2051, - '_', 2016, - '`', 1695, - 'f', 2019, - 'n', 2047, - 't', 2034, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 2005, + '-', 312, + '.', 2003, + 'N', 2052, + '_', 2017, + '`', 1696, + 'f', 2020, + 'n', 2048, + 't', 2035, ); if (lookahead == '\t' || lookahead == ' ') SKIP(163); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2055); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1643); + lookahead == 'i') ADVANCE(2056); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1644); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2074); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2075); END_STATE(); case 164: ADVANCE_MAP( - '"', 1688, - '#', 2192, - '$', 1474, - '\'', 1691, - '(', 1470, - '+', 2086, - '-', 2085, - '.', 2087, - '0', 1628, - 'N', 2104, - '[', 1468, - ']', 1469, - '_', 2091, - '`', 1695, - 'f', 2094, - 'n', 2103, - 't', 2100, - '{', 1502, - '\t', 1715, - ' ', 1715, - 'I', 2110, - 'i', 2110, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 2087, + '-', 2086, + '.', 2088, + '0', 1629, + 'N', 2105, + '[', 1469, + ']', 1470, + '_', 2092, + '`', 1696, + 'f', 2095, + 'n', 2104, + 't', 2101, + '{', 1503, + '\t', 1716, + ' ', 1716, + 'I', 2111, + 'i', 2111, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); + lookahead == ',') ADVANCE(1711); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1645); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2132); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2133); END_STATE(); case 165: - if (lookahead == '"') ADVANCE(1688); - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '$') ADVANCE(1474); - if (lookahead == '\'') ADVANCE(1691); - if (lookahead == '(') ADVANCE(1470); - if (lookahead == '`') ADVANCE(1695); + if (lookahead == '"') ADVANCE(1689); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '$') ADVANCE(1475); + if (lookahead == '\'') ADVANCE(1692); + if (lookahead == '(') ADVANCE(1471); + if (lookahead == '`') ADVANCE(1696); if (lookahead == '\t' || lookahead == ' ') SKIP(165); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1991); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1992); END_STATE(); case 166: ADVANCE_MAP( - '"', 1688, - '#', 2192, - '\'', 1691, - '+', 705, - '-', 311, - '.', 721, - ':', 1716, - 'I', 812, - 'N', 808, - '_', 719, - '`', 1695, - 'a', 757, - 'c', 724, - 'd', 734, - 'e', 762, - 'f', 726, - 'i', 718, - 'l', 742, - 'm', 728, - 'n', 801, - 't', 775, - 'u', 788, - 'w', 754, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 706, + '-', 312, + '.', 722, + ':', 1717, + 'I', 813, + 'N', 809, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, ); if (lookahead == '\t' || lookahead == ' ') SKIP(166); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); END_STATE(); case 167: ADVANCE_MAP( - '"', 1688, - '#', 2192, - '\'', 1691, - '+', 705, - '-', 311, - '.', 721, - 'I', 812, - 'N', 808, - ']', 1469, - '_', 719, - '`', 1695, - 'a', 757, - 'c', 724, - 'd', 734, - 'e', 762, - 'f', 726, - 'i', 718, - 'l', 742, - 'm', 728, - 'n', 801, - 't', 775, - 'u', 788, - 'w', 754, - '\t', 1715, - ' ', 1715, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 706, + '-', 312, + '.', 722, + 'I', 813, + 'N', 809, + ']', 1470, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, + '\t', 1716, + ' ', 1716, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); + lookahead == ',') ADVANCE(1711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); END_STATE(); case 168: ADVANCE_MAP( - '"', 1688, - '#', 2192, - '\'', 1691, - '+', 705, - '-', 303, - '.', 1730, - '?', 1720, - 'I', 812, - 'N', 808, - '_', 719, - '`', 1695, - 'a', 757, - 'c', 724, - 'd', 734, - 'e', 762, - 'f', 726, - 'i', 718, - 'l', 742, - 'm', 728, - 'n', 801, - 't', 775, - 'u', 788, - 'w', 754, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 706, + '-', 304, + '.', 1731, + '?', 1721, + 'I', 813, + 'N', 809, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, ); if (lookahead == '\t' || lookahead == ' ') SKIP(168); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); END_STATE(); case 169: ADVANCE_MAP( - '"', 1688, - '#', 2192, - '\'', 1691, - '+', 705, - '-', 303, - '.', 1730, - 'I', 812, - 'N', 808, - '_', 719, - '`', 1695, - 'a', 757, - 'c', 724, - 'd', 734, - 'e', 762, - 'f', 726, - 'i', 718, - 'l', 742, - 'm', 728, - 'n', 801, - 't', 775, - 'u', 788, - 'w', 754, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 706, + '-', 304, + '.', 1731, + 'I', 813, + 'N', 809, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, ); if (lookahead == '\t' || lookahead == ' ') SKIP(169); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); END_STATE(); case 170: ADVANCE_MAP( - '"', 1688, - '#', 2192, - '\'', 1691, - '+', 705, - '-', 303, - '.', 721, - ':', 1716, - 'I', 812, - 'N', 808, - '_', 719, - '`', 1695, - 'a', 757, - 'c', 724, - 'd', 734, - 'e', 762, - 'f', 726, - 'i', 718, - 'l', 742, - 'm', 728, - 'n', 801, - 't', 775, - 'u', 788, - 'w', 754, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 706, + '-', 304, + '.', 722, + ':', 1717, + 'I', 813, + 'N', 809, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, ); if (lookahead == '\t' || lookahead == ' ') SKIP(170); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); END_STATE(); case 171: ADVANCE_MAP( - '"', 1688, - '#', 2192, - '\'', 1691, - '+', 705, - '-', 303, - '.', 721, - '=', 1733, - 'I', 1446, - 'N', 1441, - '_', 1382, - '`', 1695, - 'a', 1406, - 'c', 1383, - 'd', 1390, - 'e', 1411, - 'f', 1384, - 'i', 1381, - 'l', 1397, - 'm', 1386, - 'n', 1437, - 't', 1420, - 'u', 1426, - 'w', 1403, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 706, + '-', 304, + '.', 722, + '=', 1734, + 'I', 1447, + 'N', 1442, + '_', 1383, + '`', 1696, + 'a', 1407, + 'c', 1384, + 'd', 1391, + 'e', 1412, + 'f', 1385, + 'i', 1382, + 'l', 1398, + 'm', 1387, + 'n', 1438, + 't', 1421, + 'u', 1427, + 'w', 1404, ); if (lookahead == '\t' || lookahead == ' ') SKIP(172); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1382); - if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1450); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1383); + if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1451); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); END_STATE(); case 172: ADVANCE_MAP( - '"', 1688, - '#', 2192, - '\'', 1691, - '+', 705, - '-', 303, - '.', 721, - 'I', 812, - 'N', 808, - '_', 719, - '`', 1695, - 'a', 757, - 'c', 724, - 'd', 734, - 'e', 762, - 'f', 726, - 'i', 718, - 'l', 742, - 'm', 728, - 'n', 801, - 't', 775, - 'u', 788, - 'w', 754, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 706, + '-', 304, + '.', 722, + 'I', 813, + 'N', 809, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, ); if (lookahead == '\t' || lookahead == ' ') SKIP(172); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); END_STATE(); case 173: ADVANCE_MAP( - '"', 1688, - '#', 2192, - '\'', 1691, - '+', 705, - '-', 1786, - '.', 1599, - 'E', 712, - 'G', 717, - 'I', 812, - 'K', 717, - 'M', 717, - 'N', 808, - 'P', 717, - 'T', 717, - '_', 719, - '`', 1695, - 'a', 757, - 'c', 724, - 'd', 725, - 'e', 711, - 'f', 726, - 'g', 716, - 'h', 777, - 'i', 718, - 'k', 716, - 'l', 742, - 'm', 713, - 'n', 785, - 'p', 716, - 's', 743, - 't', 715, - 'u', 787, - 'w', 753, - 0xb5, 786, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 706, + '-', 1787, + '.', 1600, + 'E', 713, + 'G', 718, + 'I', 813, + 'K', 718, + 'M', 718, + 'N', 809, + 'P', 718, + 'T', 718, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 726, + 'e', 712, + 'f', 727, + 'g', 717, + 'h', 778, + 'i', 719, + 'k', 717, + 'l', 743, + 'm', 714, + 'n', 786, + 'p', 717, + 's', 744, + 't', 716, + 'u', 788, + 'w', 754, + 0xb5, 787, ); if (lookahead == '\t' || lookahead == ' ') SKIP(172); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); + lookahead == 'b') ADVANCE(1657); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1938); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + lookahead == '^') ADVANCE(1939); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(827); + (lookahead < '{' || '}' < lookahead)) ADVANCE(828); END_STATE(); case 174: ADVANCE_MAP( - '"', 1688, - '#', 2192, - '\'', 1691, - '+', 705, - '-', 1786, - '.', 721, - 'I', 812, - 'N', 808, - '[', 1668, - '_', 719, - '`', 1695, - 'a', 757, - 'c', 724, - 'd', 734, - 'e', 762, - 'f', 726, - 'i', 718, - 'l', 742, - 'm', 728, - 'n', 801, - 't', 775, - 'u', 788, - 'w', 754, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 706, + '-', 1787, + '.', 722, + 'I', 813, + 'N', 809, + '[', 1669, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, ); if (lookahead == '\t' || lookahead == ' ') SKIP(172); @@ -15697,483 +15689,483 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1938); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + lookahead == '^') ADVANCE(1939); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(827); + (lookahead < '{' || '}' < lookahead)) ADVANCE(828); END_STATE(); case 175: ADVANCE_MAP( - '"', 1688, - '#', 2192, - '\'', 1691, - '+', 705, - '-', 1786, - '.', 703, - 'E', 712, - 'G', 717, - 'I', 812, - 'K', 717, - 'M', 717, - 'N', 808, - 'P', 717, - 'T', 717, - '_', 719, - '`', 1695, - 'a', 757, - 'c', 724, - 'd', 725, - 'e', 711, - 'f', 726, - 'g', 716, - 'h', 777, - 'i', 718, - 'k', 716, - 'l', 742, - 'm', 713, - 'n', 785, - 'p', 716, - 's', 743, - 't', 715, - 'u', 787, - 'w', 753, - 0xb5, 786, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 706, + '-', 1787, + '.', 704, + 'E', 713, + 'G', 718, + 'I', 813, + 'K', 718, + 'M', 718, + 'N', 809, + 'P', 718, + 'T', 718, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 726, + 'e', 712, + 'f', 727, + 'g', 717, + 'h', 778, + 'i', 719, + 'k', 717, + 'l', 743, + 'm', 714, + 'n', 786, + 'p', 717, + 's', 744, + 't', 716, + 'u', 788, + 'w', 754, + 0xb5, 787, ); if (lookahead == '\t' || lookahead == ' ') SKIP(172); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); + lookahead == 'b') ADVANCE(1657); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1938); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + lookahead == '^') ADVANCE(1939); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(827); + (lookahead < '{' || '}' < lookahead)) ADVANCE(828); END_STATE(); case 176: ADVANCE_MAP( - '"', 1688, - '#', 2192, - '\'', 1691, - '+', 705, - '-', 1786, - '.', 703, - 'E', 712, - 'G', 717, - 'I', 812, - 'K', 717, - 'M', 717, - 'N', 808, - 'P', 717, - 'T', 717, - '_', 723, - '`', 1695, - 'a', 757, - 'c', 724, - 'd', 725, - 'e', 711, - 'f', 726, - 'g', 716, - 'h', 777, - 'i', 718, - 'k', 716, - 'l', 742, - 'm', 713, - 'n', 785, - 'p', 716, - 's', 743, - 't', 715, - 'u', 787, - 'w', 753, - 0xb5, 786, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 706, + '-', 1787, + '.', 704, + 'E', 713, + 'G', 718, + 'I', 813, + 'K', 718, + 'M', 718, + 'N', 809, + 'P', 718, + 'T', 718, + '_', 724, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 726, + 'e', 712, + 'f', 727, + 'g', 717, + 'h', 778, + 'i', 719, + 'k', 717, + 'l', 743, + 'm', 714, + 'n', 786, + 'p', 717, + 's', 744, + 't', 716, + 'u', 788, + 'w', 754, + 0xb5, 787, ); if (lookahead == '\t' || lookahead == ' ') SKIP(172); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); + lookahead == 'b') ADVANCE(1657); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1938); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + lookahead == '^') ADVANCE(1939); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(827); + (lookahead < '{' || '}' < lookahead)) ADVANCE(828); END_STATE(); case 177: ADVANCE_MAP( - '"', 1688, - '#', 2192, - '\'', 1691, - '+', 705, - '-', 1786, - '.', 703, - 'E', 717, - 'G', 717, - 'I', 812, - 'K', 717, - 'M', 717, - 'N', 808, - 'P', 717, - 'T', 717, - '_', 719, - '`', 1695, - 'a', 757, - 'c', 724, - 'd', 725, - 'e', 714, - 'f', 726, - 'g', 716, - 'h', 777, - 'i', 718, - 'k', 716, - 'l', 742, - 'm', 713, - 'n', 785, - 'p', 716, - 's', 743, - 't', 715, - 'u', 787, - 'w', 753, - 0xb5, 786, + '"', 1689, + '#', 2193, + '\'', 1692, + '+', 706, + '-', 1787, + '.', 704, + 'E', 718, + 'G', 718, + 'I', 813, + 'K', 718, + 'M', 718, + 'N', 809, + 'P', 718, + 'T', 718, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 726, + 'e', 715, + 'f', 727, + 'g', 717, + 'h', 778, + 'i', 719, + 'k', 717, + 'l', 743, + 'm', 714, + 'n', 786, + 'p', 717, + 's', 744, + 't', 716, + 'u', 788, + 'w', 754, + 0xb5, 787, ); if (lookahead == '\t' || lookahead == ' ') SKIP(172); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); + lookahead == 'b') ADVANCE(1657); if (lookahead == '$' || lookahead == ',' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || lookahead == '@' || - lookahead == '^') ADVANCE(1938); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + lookahead == '^') ADVANCE(1939); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(827); + (lookahead < '{' || '}' < lookahead)) ADVANCE(828); END_STATE(); case 178: - if (lookahead == '"') ADVANCE(1688); - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '\'') ADVANCE(1691); - if (lookahead == '`') ADVANCE(1695); + if (lookahead == '"') ADVANCE(1689); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '\'') ADVANCE(1692); + if (lookahead == '`') ADVANCE(1696); if (lookahead == '\t' || lookahead == ' ') SKIP(178); END_STATE(); case 179: ADVANCE_MAP( - '"', 1688, - '#', 2195, - '$', 1475, - '\'', 1691, - '(', 1470, - '+', 851, - '-', 850, - '.', 852, - '0', 868, - ':', 1716, - 'N', 1023, - '[', 1468, - '_', 869, - '`', 1695, - 'f', 877, - 'n', 1013, - 't', 962, - '{', 1502, + '"', 1689, + '#', 2196, + '$', 1476, + '\'', 1692, + '(', 1471, + '+', 852, + '-', 851, + '.', 853, + '0', 869, + ':', 1717, + 'N', 1024, + '[', 1469, + '_', 870, + '`', 1696, + 'f', 878, + 'n', 1014, + 't', 963, + '{', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(159); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1028); + lookahead == 'i') ADVANCE(1029); if (lookahead == ',' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2074); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(875); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2075); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(876); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1049); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1050); END_STATE(); case 180: ADVANCE_MAP( - '"', 1688, - '#', 2195, - '$', 1475, - '\'', 1691, - '(', 1470, - '+', 851, - '-', 850, - '.', 852, - '0', 868, - 'N', 1023, - '[', 1468, - '_', 869, - '`', 1695, - 'f', 877, - 'n', 1013, - 't', 962, - '{', 1502, + '"', 1689, + '#', 2196, + '$', 1476, + '\'', 1692, + '(', 1471, + '+', 852, + '-', 851, + '.', 853, + '0', 869, + 'N', 1024, + '[', 1469, + '_', 870, + '`', 1696, + 'f', 878, + 'n', 1014, + 't', 963, + '{', 1503, ); if (lookahead == '\t' || lookahead == ' ') SKIP(161); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1028); + lookahead == 'i') ADVANCE(1029); if (lookahead == ',' || lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2074); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(875); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2075); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(876); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1049); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1050); END_STATE(); case 181: ADVANCE_MAP( - '"', 1688, - '#', 2195, - '$', 1475, - '\'', 1691, - '(', 1470, - '+', 851, - '-', 850, - '.', 852, - ':', 1716, - 'N', 1023, - '_', 869, - '`', 1695, - 'f', 877, - 'n', 1013, - 't', 962, + '"', 1689, + '#', 2196, + '$', 1476, + '\'', 1692, + '(', 1471, + '+', 852, + '-', 851, + '.', 853, + ':', 1717, + 'N', 1024, + '_', 870, + '`', 1696, + 'f', 878, + 'n', 1014, + 't', 963, ); if (lookahead == '\t' || lookahead == ' ') SKIP(162); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1028); + lookahead == 'i') ADVANCE(1029); if (lookahead == ',' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2074); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(875); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2075); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(876); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1049); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1050); END_STATE(); case 182: ADVANCE_MAP( - '"', 1688, - '#', 2195, - '$', 1475, - '\'', 1691, - '(', 1470, - '+', 851, - '-', 850, - '.', 852, - 'N', 1023, - '_', 869, - '`', 1695, - 'f', 877, - 'n', 1013, - 't', 962, + '"', 1689, + '#', 2196, + '$', 1476, + '\'', 1692, + '(', 1471, + '+', 852, + '-', 851, + '.', 853, + 'N', 1024, + '_', 870, + '`', 1696, + 'f', 878, + 'n', 1014, + 't', 963, ); if (lookahead == '\t' || lookahead == ' ') SKIP(163); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1028); + lookahead == 'i') ADVANCE(1029); if (lookahead == ',' || lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(2074); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(875); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(2075); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(876); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1049); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1050); END_STATE(); case 183: ADVANCE_MAP( - '"', 1688, - '#', 2195, - '\'', 1691, - '+', 851, - '-', 850, - '.', 869, - ':', 1716, - 'I', 1028, - 'N', 1023, - '_', 869, - '`', 1695, - 'a', 935, - 'c', 882, - 'd', 898, - 'e', 938, - 'f', 876, - 'i', 864, - 'l', 908, - 'm', 884, - 'n', 1013, - 't', 967, - 'u', 983, - 'w', 919, + '"', 1689, + '#', 2196, + '\'', 1692, + '+', 852, + '-', 851, + '.', 870, + ':', 1717, + 'I', 1029, + 'N', 1024, + '_', 870, + '`', 1696, + 'a', 936, + 'c', 883, + 'd', 899, + 'e', 939, + 'f', 877, + 'i', 865, + 'l', 909, + 'm', 885, + 'n', 1014, + 't', 968, + 'u', 984, + 'w', 920, ); if (lookahead == '\t' || lookahead == ' ') SKIP(166); if (lookahead == '$' || lookahead == '@' || - lookahead == '^') ADVANCE(1049); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(869); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + lookahead == '^') ADVANCE(1050); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(870); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 184: ADVANCE_MAP( - '"', 1688, - '#', 2195, - '\'', 1691, - '+', 851, - '-', 843, - '.', 869, - ':', 1716, - 'I', 1028, - 'N', 1023, - '_', 869, - '`', 1695, - 'a', 935, - 'c', 882, - 'd', 898, - 'e', 938, - 'f', 876, - 'i', 864, - 'l', 908, - 'm', 884, - 'n', 1013, - 't', 967, - 'u', 983, - 'w', 919, + '"', 1689, + '#', 2196, + '\'', 1692, + '+', 852, + '-', 844, + '.', 870, + ':', 1717, + 'I', 1029, + 'N', 1024, + '_', 870, + '`', 1696, + 'a', 936, + 'c', 883, + 'd', 899, + 'e', 939, + 'f', 877, + 'i', 865, + 'l', 909, + 'm', 885, + 'n', 1014, + 't', 968, + 'u', 984, + 'w', 920, ); if (lookahead == '\t' || lookahead == ' ') SKIP(170); if (lookahead == '$' || lookahead == '@' || - lookahead == '^') ADVANCE(1049); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(869); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + lookahead == '^') ADVANCE(1050); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(870); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 185: - if (lookahead == '"') ADVANCE(1688); - if (lookahead == '#') ADVANCE(1690); - if (lookahead == '\\') ADVANCE(513); + if (lookahead == '"') ADVANCE(1689); + if (lookahead == '#') ADVANCE(1691); + if (lookahead == '\\') ADVANCE(514); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1689); - if (lookahead != 0) ADVANCE(1690); + lookahead == ' ') ADVANCE(1690); + if (lookahead != 0) ADVANCE(1691); END_STATE(); case 186: - if (lookahead == '"') ADVANCE(1705); - if (lookahead == '\'') ADVANCE(1704); + if (lookahead == '"') ADVANCE(1706); + if (lookahead == '\'') ADVANCE(1705); END_STATE(); case 187: - if (lookahead == '"') ADVANCE(1706); - if (lookahead == '#') ADVANCE(1701); - if (lookahead == '(') ADVANCE(1470); - if (lookahead == '\\') ADVANCE(508); + if (lookahead == '"') ADVANCE(1707); + if (lookahead == '#') ADVANCE(1702); + if (lookahead == '(') ADVANCE(1471); + if (lookahead == '\\') ADVANCE(509); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1700); - if (lookahead != 0) ADVANCE(1701); + lookahead == ' ') ADVANCE(1701); + if (lookahead != 0) ADVANCE(1702); END_STATE(); case 188: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '$') ADVANCE(1473); - if (lookahead == '(') ADVANCE(1564); - if (lookahead == '.') ADVANCE(1607); - if (lookahead == '_') ADVANCE(1817); - if (lookahead == '{') ADVANCE(1502); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '$') ADVANCE(1474); + if (lookahead == '(') ADVANCE(1565); + if (lookahead == '.') ADVANCE(1608); + if (lookahead == '_') ADVANCE(1818); + if (lookahead == '{') ADVANCE(1503); if (lookahead == '\t' || lookahead == ' ') SKIP(197); if (lookahead == '+' || - lookahead == '-') ADVANCE(1795); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); + lookahead == '-') ADVANCE(1796); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); case 189: ADVANCE_MAP( - '#', 2192, - '$', 1473, - '(', 1564, - '.', 1605, - ']', 1469, - '_', 1979, - '}', 1503, - '\t', 1715, - ' ', 1715, - '+', 1967, - '-', 1967, + '#', 2193, + '$', 1474, + '(', 1565, + '.', 1606, + ']', 1470, + '_', 1980, + '}', 1504, + '\t', 1716, + ' ', 1716, + '+', 1966, + '-', 1966, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1990); + lookahead == ',') ADVANCE(1711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1991); END_STATE(); case 190: ADVANCE_MAP( - '#', 2192, - '$', 1473, - '(', 1564, - '.', 1976, - '_', 1979, - '}', 1503, - '\t', 1715, - ' ', 1715, - '+', 1967, - '-', 1967, + '#', 2193, + '$', 1474, + '(', 1565, + '.', 1977, + '_', 1980, + '}', 1504, + '\t', 1716, + ' ', 1716, + '+', 1966, + '-', 1966, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1990); + lookahead == ',') ADVANCE(1711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(1991); END_STATE(); case 191: ADVANCE_MAP( - '#', 2192, - '$', 1473, - '(', 1564, - '.', 1949, - ']', 1469, - '_', 1948, - '\t', 1715, - ' ', 1715, - '+', 1942, - '-', 1942, + '#', 2193, + '$', 1474, + '(', 1565, + '.', 1950, + ']', 1470, + '_', 1949, + '\t', 1716, + ' ', 1716, + '+', 1943, + '-', 1943, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + lookahead == ',') ADVANCE(1711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -16181,24 +16173,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); case 192: ADVANCE_MAP( - '#', 2192, - '$', 1473, - '(', 1564, - '.', 1940, - ']', 1469, - '_', 1948, - '\t', 1715, - ' ', 1715, - '+', 1942, - '-', 1942, + '#', 2193, + '$', 1474, + '(', 1565, + '.', 1941, + ']', 1470, + '_', 1949, + '\t', 1716, + ' ', 1716, + '+', 1943, + '-', 1943, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + lookahead == ',') ADVANCE(1711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -16206,24 +16198,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); case 193: ADVANCE_MAP( - '#', 2192, - '$', 1473, - '(', 1564, - '.', 1606, - ']', 1469, - '_', 1948, - '\t', 1715, - ' ', 1715, - '+', 1942, - '-', 1942, + '#', 2193, + '$', 1474, + '(', 1565, + '.', 1607, + ']', 1470, + '_', 1949, + '\t', 1716, + ' ', 1716, + '+', 1943, + '-', 1943, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + lookahead == ',') ADVANCE(1711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -16231,118 +16223,118 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); case 194: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '$') ADVANCE(1473); - if (lookahead == '(') ADVANCE(1564); - if (lookahead == '.') ADVANCE(1819); - if (lookahead == '_') ADVANCE(1817); - if (lookahead == '{') ADVANCE(1502); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '$') ADVANCE(1474); + if (lookahead == '(') ADVANCE(1565); + if (lookahead == '.') ADVANCE(1820); + if (lookahead == '_') ADVANCE(1818); + if (lookahead == '{') ADVANCE(1503); if (lookahead == '\t' || lookahead == ' ') SKIP(197); if (lookahead == '+' || - lookahead == '-') ADVANCE(1795); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); + lookahead == '-') ADVANCE(1796); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); case 195: ADVANCE_MAP( - '#', 2192, - '$', 1473, - '(', 1564, - '.', 1601, - '[', 1668, - ']', 1469, - '_', 1948, - '}', 1503, - '\t', 1715, - ' ', 1715, - '+', 1942, - '-', 1942, + '#', 2193, + '$', 1474, + '(', 1565, + '.', 1602, + '[', 1669, + ']', 1470, + '_', 1949, + '}', 1504, + '\t', 1716, + ' ', 1716, + '+', 1943, + '-', 1943, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + lookahead == ',') ADVANCE(1711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); case 196: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '$') ADVANCE(1473); - if (lookahead == '.') ADVANCE(340); - if (lookahead == ']') ADVANCE(1469); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '$') ADVANCE(1474); + if (lookahead == '.') ADVANCE(341); + if (lookahead == ']') ADVANCE(1470); if (lookahead == '\t' || lookahead == ' ') SKIP(196); if (lookahead == '+' || - lookahead == '-') ADVANCE(318); + lookahead == '-') ADVANCE(319); END_STATE(); case 197: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '$') ADVANCE(1473); - if (lookahead == '.') ADVANCE(340); - if (lookahead == '{') ADVANCE(1502); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '$') ADVANCE(1474); + if (lookahead == '.') ADVANCE(341); + if (lookahead == '{') ADVANCE(1503); if (lookahead == '\t' || lookahead == ' ') SKIP(197); if (lookahead == '+' || - lookahead == '-') ADVANCE(318); + lookahead == '-') ADVANCE(319); END_STATE(); case 198: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '$') ADVANCE(1473); - if (lookahead == '.') ADVANCE(340); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '$') ADVANCE(1474); + if (lookahead == '.') ADVANCE(341); if (lookahead == '\t' || lookahead == ' ') SKIP(198); if (lookahead == '+' || - lookahead == '-') ADVANCE(318); + lookahead == '-') ADVANCE(319); END_STATE(); case 199: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '$') ADVANCE(1473); - if (lookahead == ':') ADVANCE(1716); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '$') ADVANCE(1474); + if (lookahead == ':') ADVANCE(1717); if (lookahead == '\t' || lookahead == ' ') SKIP(199); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1376); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1377); END_STATE(); case 200: ADVANCE_MAP( - '#', 2192, - '(', 1564, - '.', 1598, - 'E', 1944, - 'G', 1946, - 'K', 1946, - 'M', 1946, - 'P', 1946, - 'T', 1946, - ']', 1469, - 'd', 1953, - 'e', 1943, - 'g', 1945, - 'h', 1959, - 'k', 1945, - 'm', 1947, - 'n', 1960, - 'p', 1945, - 's', 1956, - 't', 1945, - 'u', 1960, - 'w', 1957, - '}', 1503, - 0xb5, 1960, - '\t', 1715, - ' ', 1715, - 'B', 1656, - 'b', 1656, + '#', 2193, + '(', 1565, + '.', 1599, + 'E', 1945, + 'G', 1947, + 'K', 1947, + 'M', 1947, + 'P', 1947, + 'T', 1947, + ']', 1470, + 'd', 1954, + 'e', 1944, + 'g', 1946, + 'h', 1960, + 'k', 1946, + 'm', 1948, + 'n', 1961, + 'p', 1946, + 's', 1957, + 't', 1946, + 'u', 1961, + 'w', 1958, + '}', 1504, + 0xb5, 1961, + '\t', 1716, + ' ', 1716, + 'B', 1657, + 'b', 1657, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16350,40 +16342,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); case 201: ADVANCE_MAP( - '#', 2192, - '(', 1564, - '.', 1598, - 'E', 1944, - 'G', 1946, - 'K', 1946, - 'M', 1946, - 'P', 1946, - 'T', 1946, - ']', 1469, - 'd', 1953, - 'e', 1943, - 'g', 1945, - 'h', 1959, - 'k', 1945, - 'm', 1947, - 'n', 1960, - 'p', 1945, - 's', 1956, - 't', 1945, - 'u', 1960, - 'w', 1957, - 0xb5, 1960, - '\t', 1715, - ' ', 1715, - 'B', 1656, - 'b', 1656, + '#', 2193, + '(', 1565, + '.', 1599, + 'E', 1945, + 'G', 1947, + 'K', 1947, + 'M', 1947, + 'P', 1947, + 'T', 1947, + ']', 1470, + 'd', 1954, + 'e', 1944, + 'g', 1946, + 'h', 1960, + 'k', 1946, + 'm', 1948, + 'n', 1961, + 'p', 1946, + 's', 1957, + 't', 1946, + 'u', 1961, + 'w', 1958, + 0xb5, 1961, + '\t', 1716, + ' ', 1716, + 'B', 1657, + 'b', 1657, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16391,56 +16383,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); case 202: ADVANCE_MAP( - '#', 2192, - '(', 1564, - '.', 1598, - 'E', 1971, - 'G', 1973, - 'K', 1973, - 'M', 1973, - 'P', 1973, - 'T', 1973, - 'd', 1980, - 'e', 1970, - 'g', 1972, - 'h', 1986, - 'k', 1972, - 'm', 1974, - 'n', 1987, - 'p', 1972, - 's', 1983, - 't', 1972, - 'u', 1987, - 'w', 1984, - '}', 1503, - 0xb5, 1987, - '\t', 1715, - ' ', 1715, - 'B', 1656, - 'b', 1656, + '#', 2193, + '(', 1565, + '.', 1599, + 'E', 1972, + 'G', 1974, + 'K', 1974, + 'M', 1974, + 'P', 1974, + 'T', 1974, + 'd', 1981, + 'e', 1971, + 'g', 1973, + 'h', 1987, + 'k', 1973, + 'm', 1975, + 'n', 1988, + 'p', 1973, + 's', 1984, + 't', 1973, + 'u', 1988, + 'w', 1985, + '}', 1504, + 0xb5, 1988, + '\t', 1716, + ' ', 1716, + 'B', 1657, + 'b', 1657, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + lookahead == ',') ADVANCE(1711); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 203: ADVANCE_MAP( - '#', 2192, - '(', 1564, - '.', 1598, - ']', 1469, - '}', 1503, - '\t', 1715, - ' ', 1715, - 'E', 1951, - 'e', 1951, + '#', 2193, + '(', 1565, + '.', 1599, + ']', 1470, + '}', 1504, + '\t', 1716, + ' ', 1716, + 'E', 1952, + 'e', 1952, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16448,21 +16440,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); case 204: ADVANCE_MAP( - '#', 2192, - '(', 1564, - '.', 1598, - ']', 1469, - '\t', 1715, - ' ', 1715, - 'E', 1951, - 'e', 1951, + '#', 2193, + '(', 1565, + '.', 1599, + ']', 1470, + '\t', 1716, + ' ', 1716, + 'E', 1952, + 'e', 1952, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16470,37 +16462,52 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); case 205: ADVANCE_MAP( - '#', 2192, - '(', 1564, - '.', 1598, - '}', 1503, - '\t', 1715, - ' ', 1715, - 'E', 1977, - 'e', 1977, + '#', 2193, + '(', 1565, + '.', 1599, + '}', 1504, + '\t', 1716, + ' ', 1716, + 'E', 1978, + 'e', 1978, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + lookahead == ',') ADVANCE(1711); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 206: ADVANCE_MAP( - '#', 2192, - '(', 1564, - '.', 1597, - ']', 1469, - '}', 1503, - '\t', 1715, - ' ', 1715, - 'E', 1951, - 'e', 1951, + '#', 2193, + '(', 1565, + '.', 1598, + ']', 1470, + '}', 1504, + '\t', 1716, + ' ', 1716, + 'E', 1978, + 'e', 1978, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(1711); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); + END_STATE(); + case 207: + ADVANCE_MAP( + '#', 2193, + '(', 1565, + '.', 1598, + ']', 1470, + '\t', 1716, + ' ', 1716, + 'E', 1952, + 'e', 1952, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16508,58 +16515,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); - END_STATE(); - case 207: - ADVANCE_MAP( - '#', 2192, - '(', 1564, - '.', 1597, - '}', 1503, - '\t', 1715, - ' ', 1715, - 'E', 1977, - 'e', 1977, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); case 208: ADVANCE_MAP( - '#', 2192, - '(', 1564, - '.', 1939, - 'E', 1944, - 'G', 1946, - 'K', 1946, - 'M', 1946, - 'P', 1946, - 'T', 1946, - ']', 1469, - '_', 1948, - 'd', 1953, - 'e', 1943, - 'g', 1945, - 'h', 1959, - 'k', 1945, - 'm', 1947, - 'n', 1960, - 'p', 1945, - 's', 1956, - 't', 1945, - 'u', 1960, - 'w', 1957, - '}', 1503, - 0xb5, 1960, - '\t', 1715, - ' ', 1715, - 'B', 1656, - 'b', 1656, + '#', 2193, + '(', 1565, + '.', 1940, + 'E', 1945, + 'G', 1947, + 'K', 1947, + 'M', 1947, + 'P', 1947, + 'T', 1947, + ']', 1470, + '_', 1949, + 'd', 1954, + 'e', 1944, + 'g', 1946, + 'h', 1960, + 'k', 1946, + 'm', 1948, + 'n', 1961, + 'p', 1946, + 's', 1957, + 't', 1946, + 'u', 1961, + 'w', 1958, + '}', 1504, + 0xb5, 1961, + '\t', 1716, + ' ', 1716, + 'B', 1657, + 'b', 1657, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + lookahead == ',') ADVANCE(1711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16568,82 +16560,85 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); case 209: ADVANCE_MAP( - '#', 2192, - '(', 1564, - '.', 1939, - 'E', 1944, - 'G', 1946, - 'K', 1946, - 'M', 1946, - 'P', 1946, - 'T', 1946, - ']', 1469, - 'd', 1953, - 'e', 1943, - 'g', 1945, - 'h', 1959, - 'k', 1945, - 'm', 1947, - 'n', 1960, - 'p', 1945, - 's', 1956, - 't', 1945, - 'u', 1960, - 'w', 1957, - '}', 1503, - 0xb5, 1960, - '\t', 1715, - ' ', 1715, - 'B', 1656, - 'b', 1656, + '#', 2193, + '(', 1565, + '.', 1940, + 'E', 1945, + 'G', 1947, + 'K', 1947, + 'M', 1947, + 'P', 1947, + 'T', 1947, + ']', 1470, + '_', 1949, + 'd', 1954, + 'e', 1944, + 'g', 1946, + 'h', 1960, + 'k', 1946, + 'm', 1948, + 'n', 1961, + 'p', 1946, + 's', 1957, + 't', 1946, + 'u', 1961, + 'w', 1958, + 0xb5, 1961, + '\t', 1716, + ' ', 1716, + 'B', 1657, + 'b', 1657, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); + lookahead == ',') ADVANCE(1711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && + lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); case 210: ADVANCE_MAP( - '#', 2192, - '(', 1564, - '.', 1939, - 'E', 1944, - 'G', 1946, - 'K', 1946, - 'M', 1946, - 'P', 1946, - 'T', 1946, - ']', 1469, - 'd', 1953, - 'e', 1943, - 'g', 1945, - 'h', 1959, - 'k', 1945, - 'm', 1947, - 'n', 1960, - 'p', 1945, - 's', 1956, - 't', 1945, - 'u', 1960, - 'w', 1957, - 0xb5, 1960, - '\t', 1715, - ' ', 1715, - 'B', 1656, - 'b', 1656, + '#', 2193, + '(', 1565, + '.', 1940, + 'E', 1945, + 'G', 1947, + 'K', 1947, + 'M', 1947, + 'P', 1947, + 'T', 1947, + ']', 1470, + 'd', 1954, + 'e', 1944, + 'g', 1946, + 'h', 1960, + 'k', 1946, + 'm', 1948, + 'n', 1961, + 'p', 1946, + 's', 1957, + 't', 1946, + 'u', 1961, + 'w', 1958, + '}', 1504, + 0xb5, 1961, + '\t', 1716, + ' ', 1716, + 'B', 1657, + 'b', 1657, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16651,41 +16646,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); case 211: ADVANCE_MAP( - '#', 2192, - '(', 1564, - '.', 1939, - 'E', 1946, - 'G', 1946, - 'K', 1946, - 'M', 1946, - 'P', 1946, - 'T', 1946, - ']', 1469, - 'd', 1953, - 'e', 1945, - 'g', 1945, - 'h', 1959, - 'k', 1945, - 'm', 1947, - 'n', 1960, - 'p', 1945, - 's', 1956, - 't', 1945, - 'u', 1960, - 'w', 1957, - '}', 1503, - 0xb5, 1960, - '\t', 1715, - ' ', 1715, - 'B', 1656, - 'b', 1656, + '#', 2193, + '(', 1565, + '.', 1940, + 'E', 1945, + 'G', 1947, + 'K', 1947, + 'M', 1947, + 'P', 1947, + 'T', 1947, + ']', 1470, + 'd', 1954, + 'e', 1944, + 'g', 1946, + 'h', 1960, + 'k', 1946, + 'm', 1948, + 'n', 1961, + 'p', 1946, + 's', 1957, + 't', 1946, + 'u', 1961, + 'w', 1958, + 0xb5, 1961, + '\t', 1716, + ' ', 1716, + 'B', 1657, + 'b', 1657, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16693,40 +16687,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); case 212: ADVANCE_MAP( - '#', 2192, - '(', 1564, - '.', 1939, - 'E', 1946, - 'G', 1946, - 'K', 1946, - 'M', 1946, - 'P', 1946, - 'T', 1946, - ']', 1469, - 'd', 1953, - 'e', 1945, - 'g', 1945, - 'h', 1959, - 'k', 1945, - 'm', 1947, - 'n', 1960, - 'p', 1945, - 's', 1956, - 't', 1945, - 'u', 1960, - 'w', 1957, - 0xb5, 1960, - '\t', 1715, - ' ', 1715, - 'B', 1656, - 'b', 1656, + '#', 2193, + '(', 1565, + '.', 1940, + 'E', 1947, + 'G', 1947, + 'K', 1947, + 'M', 1947, + 'P', 1947, + 'T', 1947, + ']', 1470, + 'd', 1954, + 'e', 1946, + 'g', 1946, + 'h', 1960, + 'k', 1946, + 'm', 1948, + 'n', 1961, + 'p', 1946, + 's', 1957, + 't', 1946, + 'u', 1961, + 'w', 1958, + '}', 1504, + 0xb5, 1961, + '\t', 1716, + ' ', 1716, + 'B', 1657, + 'b', 1657, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16734,49 +16729,65 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); case 213: ADVANCE_MAP( - '#', 2192, - '(', 1564, - '.', 1939, - ']', 1469, - '_', 1948, - '}', 1503, - '\t', 1715, - ' ', 1715, - 'E', 1951, - 'e', 1951, + '#', 2193, + '(', 1565, + '.', 1940, + 'E', 1947, + 'G', 1947, + 'K', 1947, + 'M', 1947, + 'P', 1947, + 'T', 1947, + ']', 1470, + 'd', 1954, + 'e', 1946, + 'g', 1946, + 'h', 1960, + 'k', 1946, + 'm', 1948, + 'n', 1961, + 'p', 1946, + 's', 1957, + 't', 1946, + 'u', 1961, + 'w', 1958, + 0xb5, 1961, + '\t', 1716, + ' ', 1716, + 'B', 1657, + 'b', 1657, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && - lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); case 214: ADVANCE_MAP( - '#', 2192, - '(', 1564, - '.', 1939, - ']', 1469, - '_', 1948, - '\t', 1715, - ' ', 1715, - 'E', 1951, - 'e', 1951, + '#', 2193, + '(', 1565, + '.', 1940, + ']', 1470, + '_', 1949, + '}', 1504, + '\t', 1716, + ' ', 1716, + 'E', 1952, + 'e', 1952, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + lookahead == ',') ADVANCE(1711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16785,41 +16796,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); case 215: ADVANCE_MAP( - '#', 2192, - '(', 1564, - '.', 1939, - ']', 1469, - '}', 1503, - '\t', 1715, - ' ', 1715, - 'E', 1951, - 'e', 1951, + '#', 2193, + '(', 1565, + '.', 1940, + ']', 1470, + '_', 1949, + '\t', 1716, + ' ', 1716, + 'E', 1952, + 'e', 1952, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); + lookahead == ',') ADVANCE(1711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && + lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); case 216: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '(') ADVANCE(1564); - if (lookahead == '.') ADVANCE(1939); - if (lookahead == ']') ADVANCE(1469); - if (lookahead == '}') ADVANCE(1503); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1715); + ADVANCE_MAP( + '#', 2193, + '(', 1565, + '.', 1940, + ']', 1470, + '}', 1504, + '\t', 1716, + ' ', 1716, + 'E', 1952, + 'e', 1952, + ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16827,21 +16844,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); case 217: - ADVANCE_MAP( - '#', 2192, - '(', 1564, - '.', 1939, - ']', 1469, - '\t', 1715, - ' ', 1715, - 'E', 1951, - 'e', 1951, - ); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '(') ADVANCE(1565); + if (lookahead == '.') ADVANCE(1940); + if (lookahead == ']') ADVANCE(1470); + if (lookahead == '}') ADVANCE(1504); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1716); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16849,17 +16863,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); case 218: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '(') ADVANCE(1564); - if (lookahead == '.') ADVANCE(1939); - if (lookahead == ']') ADVANCE(1469); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1715); + ADVANCE_MAP( + '#', 2193, + '(', 1565, + '.', 1940, + ']', 1470, + '\t', 1716, + ' ', 1716, + 'E', 1952, + 'e', 1952, + ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16867,64 +16885,64 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); case 219: - ADVANCE_MAP( - '#', 2192, - '(', 1564, - '.', 1941, - ']', 1469, - '_', 1948, - '\t', 1715, - ' ', 1715, - 'E', 1951, - 'e', 1951, - ); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '(') ADVANCE(1565); + if (lookahead == '.') ADVANCE(1940); + if (lookahead == ']') ADVANCE(1470); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1716); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && - lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); case 220: ADVANCE_MAP( - '#', 2192, - '(', 1564, - '.', 1941, - ']', 1469, - '\t', 1715, - ' ', 1715, - 'E', 1951, - 'e', 1951, + '#', 2193, + '(', 1565, + '.', 1942, + ']', 1470, + '_', 1949, + '\t', 1716, + ' ', 1716, + 'E', 1952, + 'e', 1952, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); + lookahead == ',') ADVANCE(1711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && + lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); case 221: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '(') ADVANCE(1564); - if (lookahead == '.') ADVANCE(1941); - if (lookahead == ']') ADVANCE(1469); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1715); + ADVANCE_MAP( + '#', 2193, + '(', 1565, + '.', 1942, + ']', 1470, + '\t', 1716, + ' ', 1716, + 'E', 1952, + 'e', 1952, + ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16932,21 +16950,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); case 222: - ADVANCE_MAP( - '#', 2192, - '(', 1564, - '.', 1600, - ']', 1469, - '\t', 1715, - ' ', 1715, - 'E', 1951, - 'e', 1951, - ); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '(') ADVANCE(1565); + if (lookahead == '.') ADVANCE(1942); + if (lookahead == ']') ADVANCE(1470); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1716); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -16954,169 +16968,191 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); case 223: ADVANCE_MAP( - '#', 2192, - '(', 1564, - '.', 1964, - 'E', 1971, - 'G', 1973, - 'K', 1973, - 'M', 1973, - 'P', 1973, - 'T', 1973, - '_', 1979, - 'd', 1980, - 'e', 1970, - 'g', 1972, - 'h', 1986, - 'k', 1972, - 'm', 1974, - 'n', 1987, - 'p', 1972, - 's', 1983, - 't', 1972, - 'u', 1987, - 'w', 1984, - '}', 1503, - 0xb5, 1987, - '\t', 1715, - ' ', 1715, - 'B', 1656, - 'b', 1656, + '#', 2193, + '(', 1565, + '.', 1601, + ']', 1470, + '\t', 1716, + ' ', 1716, + 'E', 1952, + 'e', 1952, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + lookahead == ',') ADVANCE(1711); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); case 224: ADVANCE_MAP( - '#', 2192, - '(', 1564, - '.', 1964, - 'E', 1971, - 'G', 1973, - 'K', 1973, - 'M', 1973, - 'P', 1973, - 'T', 1973, - 'd', 1980, - 'e', 1970, - 'g', 1972, - 'h', 1986, - 'k', 1972, - 'm', 1974, - 'n', 1987, - 'p', 1972, - 's', 1983, - 't', 1972, - 'u', 1987, - 'w', 1984, - '}', 1503, - 0xb5, 1987, - '\t', 1715, - ' ', 1715, - 'B', 1656, - 'b', 1656, + '#', 2193, + '(', 1565, + '.', 1965, + 'E', 1972, + 'G', 1974, + 'K', 1974, + 'M', 1974, + 'P', 1974, + 'T', 1974, + '_', 1980, + 'd', 1981, + 'e', 1971, + 'g', 1973, + 'h', 1987, + 'k', 1973, + 'm', 1975, + 'n', 1988, + 'p', 1973, + 's', 1984, + 't', 1973, + 'u', 1988, + 'w', 1985, + '}', 1504, + 0xb5, 1988, + '\t', 1716, + ' ', 1716, + 'B', 1657, + 'b', 1657, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + lookahead == ',') ADVANCE(1711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 225: ADVANCE_MAP( - '#', 2192, - '(', 1564, - '.', 1964, - 'E', 1973, - 'G', 1973, - 'K', 1973, - 'M', 1973, - 'P', 1973, - 'T', 1973, - 'd', 1980, - 'e', 1972, - 'g', 1972, - 'h', 1986, - 'k', 1972, - 'm', 1974, - 'n', 1987, - 'p', 1972, - 's', 1983, - 't', 1972, - 'u', 1987, - 'w', 1984, - '}', 1503, - 0xb5, 1987, - '\t', 1715, - ' ', 1715, - 'B', 1656, - 'b', 1656, + '#', 2193, + '(', 1565, + '.', 1965, + 'E', 1972, + 'G', 1974, + 'K', 1974, + 'M', 1974, + 'P', 1974, + 'T', 1974, + 'd', 1981, + 'e', 1971, + 'g', 1973, + 'h', 1987, + 'k', 1973, + 'm', 1975, + 'n', 1988, + 'p', 1973, + 's', 1984, + 't', 1973, + 'u', 1988, + 'w', 1985, + '}', 1504, + 0xb5, 1988, + '\t', 1716, + ' ', 1716, + 'B', 1657, + 'b', 1657, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + lookahead == ',') ADVANCE(1711); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 226: ADVANCE_MAP( - '#', 2192, - '(', 1564, - '.', 1964, - '_', 1979, - '}', 1503, - '\t', 1715, - ' ', 1715, - 'E', 1977, - 'e', 1977, + '#', 2193, + '(', 1565, + '.', 1965, + 'E', 1974, + 'G', 1974, + 'K', 1974, + 'M', 1974, + 'P', 1974, + 'T', 1974, + 'd', 1981, + 'e', 1973, + 'g', 1973, + 'h', 1987, + 'k', 1973, + 'm', 1975, + 'n', 1988, + 'p', 1973, + 's', 1984, + 't', 1973, + 'u', 1988, + 'w', 1985, + '}', 1504, + 0xb5, 1988, + '\t', 1716, + ' ', 1716, + 'B', 1657, + 'b', 1657, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + lookahead == ',') ADVANCE(1711); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 227: ADVANCE_MAP( - '#', 2192, - '(', 1564, - '.', 1964, - '}', 1503, - '\t', 1715, - ' ', 1715, - 'E', 1977, - 'e', 1977, + '#', 2193, + '(', 1565, + '.', 1965, + '_', 1980, + '}', 1504, + '\t', 1716, + ' ', 1716, + 'E', 1978, + 'e', 1978, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + lookahead == ',') ADVANCE(1711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 228: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '(') ADVANCE(1564); - if (lookahead == '.') ADVANCE(1964); - if (lookahead == '}') ADVANCE(1503); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1715); + ADVANCE_MAP( + '#', 2193, + '(', 1565, + '.', 1965, + '}', 1504, + '\t', 1716, + ' ', 1716, + 'E', 1978, + 'e', 1978, + ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + lookahead == ',') ADVANCE(1711); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 229: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '(') ADVANCE(1565); + if (lookahead == '.') ADVANCE(1965); + if (lookahead == '}') ADVANCE(1504); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1716); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(1711); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); + END_STATE(); + case 230: ADVANCE_MAP( - '#', 2192, - '(', 1564, - ']', 1469, - '_', 1948, - '\t', 1715, - ' ', 1715, - 'E', 1951, - 'e', 1951, + '#', 2193, + '(', 1565, + ']', 1470, + '_', 1949, + '\t', 1716, + ' ', 1716, + 'E', 1952, + 'e', 1952, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + lookahead == ',') ADVANCE(1711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17125,17 +17161,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); - case 230: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '(') ADVANCE(1564); - if (lookahead == ']') ADVANCE(1469); - if (lookahead == '}') ADVANCE(1503); + case 231: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '(') ADVANCE(1565); + if (lookahead == ']') ADVANCE(1470); + if (lookahead == '}') ADVANCE(1504); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1715); + lookahead == ' ') ADVANCE(1716); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17143,18 +17179,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); - case 231: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '(') ADVANCE(1564); - if (lookahead == ']') ADVANCE(1469); + case 232: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '(') ADVANCE(1565); + if (lookahead == ']') ADVANCE(1470); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1715); + lookahead == ' ') ADVANCE(1716); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1951); + lookahead == 'e') ADVANCE(1952); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -17162,668 +17198,668 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1963); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1964); END_STATE(); - case 232: + case 233: ADVANCE_MAP( - '#', 2192, - '(', 1564, - '_', 1979, - '}', 1503, - '\t', 1715, - ' ', 1715, - 'E', 1977, - 'e', 1977, + '#', 2193, + '(', 1565, + '_', 1980, + '}', 1504, + '\t', 1716, + ' ', 1716, + 'E', 1978, + 'e', 1978, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); - END_STATE(); - case 233: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '(') ADVANCE(1564); - if (lookahead == '{') ADVANCE(1502); - if (lookahead == '\t' || - lookahead == ' ') SKIP(274); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == ',') ADVANCE(1711); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 234: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '(') ADVANCE(1564); - if (lookahead == '}') ADVANCE(1503); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '(') ADVANCE(1565); + if (lookahead == '{') ADVANCE(1503); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1715); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1977); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + lookahead == ' ') SKIP(275); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 235: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '(') ADVANCE(1564); - if (lookahead == '}') ADVANCE(1503); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '(') ADVANCE(1565); + if (lookahead == '}') ADVANCE(1504); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1715); + lookahead == ' ') ADVANCE(1716); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1978); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + lookahead == ',') ADVANCE(1711); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 236: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '(') ADVANCE(1564); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '(') ADVANCE(1565); + if (lookahead == '}') ADVANCE(1504); if (lookahead == '\t' || - lookahead == ' ') SKIP(276); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + lookahead == ' ') ADVANCE(1716); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(1711); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 237: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '(') ADVANCE(1564); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '(') ADVANCE(1565); if (lookahead == '\t' || - lookahead == ' ') SKIP(276); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); + lookahead == ' ') SKIP(277); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 238: - ADVANCE_MAP( - '#', 2192, - '(', 1470, - '-', 1787, - '.', 1598, - 'E', 1811, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - '[', 1468, - 'd', 1828, - 'e', 1810, - 'g', 1813, - 'h', 1882, - 'k', 1813, - 'm', 1816, - 'n', 1895, - 'p', 1813, - 's', 1843, - 't', 1813, - 'u', 1895, - 'w', 1862, - 0xb5, 1895, - ); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '(') ADVANCE(1565); if (lookahead == '\t' || - lookahead == ' ') SKIP(244); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == ' ') SKIP(277); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 239: ADVANCE_MAP( - '#', 2192, - '(', 1470, - '-', 1787, - '.', 1794, - 'E', 1811, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - '[', 1468, - '_', 1817, - 'd', 1828, - 'e', 1810, - 'g', 1813, - 'h', 1882, - 'k', 1813, - 'm', 1816, - 'n', 1895, - 'p', 1813, - 's', 1843, - 't', 1813, - 'u', 1895, - 'w', 1862, - 0xb5, 1895, + '#', 2193, + '(', 1471, + '-', 1788, + '.', 1599, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + '[', 1469, + 'd', 1829, + 'e', 1811, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(244); + lookahead == ' ') SKIP(245); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 240: ADVANCE_MAP( - '#', 2192, - '(', 1470, - '-', 1787, - '.', 1794, - 'E', 1811, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - '[', 1468, - 'd', 1828, - 'e', 1810, - 'g', 1813, - 'h', 1882, - 'k', 1813, - 'm', 1816, - 'n', 1895, - 'p', 1813, - 's', 1843, - 't', 1813, - 'u', 1895, - 'w', 1862, - 0xb5, 1895, + '#', 2193, + '(', 1471, + '-', 1788, + '.', 1795, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + '[', 1469, + '_', 1818, + 'd', 1829, + 'e', 1811, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(244); + lookahead == ' ') SKIP(245); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == 'b') ADVANCE(1657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 241: ADVANCE_MAP( - '#', 2192, - '(', 1470, - '-', 1787, - '.', 1794, - 'E', 1814, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - '[', 1468, - 'd', 1828, - 'e', 1813, - 'g', 1813, - 'h', 1882, - 'k', 1813, - 'm', 1816, - 'n', 1895, - 'p', 1813, - 's', 1843, - 't', 1813, - 'u', 1895, - 'w', 1862, - 0xb5, 1895, + '#', 2193, + '(', 1471, + '-', 1788, + '.', 1795, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + '[', 1469, + 'd', 1829, + 'e', 1811, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(244); + lookahead == ' ') SKIP(245); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 242: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '(') ADVANCE(1470); - if (lookahead == '-') ADVANCE(1787); - if (lookahead == '[') ADVANCE(1468); + ADVANCE_MAP( + '#', 2193, + '(', 1471, + '-', 1788, + '.', 1795, + 'E', 1815, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + '[', 1469, + 'd', 1829, + 'e', 1814, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + 0xb5, 1896, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(244); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == ' ') SKIP(245); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 243: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '(') ADVANCE(1470); - if (lookahead == '-') ADVANCE(301); - if (lookahead == '=') ADVANCE(1733); - if (lookahead == '[') ADVANCE(1468); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '(') ADVANCE(1471); + if (lookahead == '-') ADVANCE(1788); + if (lookahead == '[') ADVANCE(1469); if (lookahead == '\t' || - lookahead == ' ') SKIP(244); - if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1450); + lookahead == ' ') SKIP(245); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 244: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '(') ADVANCE(1470); - if (lookahead == '-') ADVANCE(301); - if (lookahead == '[') ADVANCE(1468); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '(') ADVANCE(1471); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '=') ADVANCE(1734); + if (lookahead == '[') ADVANCE(1469); if (lookahead == '\t' || - lookahead == ' ') SKIP(244); + lookahead == ' ') SKIP(245); + if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1451); END_STATE(); case 245: - ADVANCE_MAP( - '#', 2192, - '.', 1598, - 'E', 1811, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - 'd', 1828, - 'e', 1810, - 'g', 1813, - 'h', 1882, - 'k', 1813, - 'm', 1816, - 'n', 1895, - 'p', 1813, - 's', 1843, - 't', 1813, - 'u', 1895, - 'w', 1862, - '{', 1502, - 0xb5, 1895, - ); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '(') ADVANCE(1471); + if (lookahead == '-') ADVANCE(302); + if (lookahead == '[') ADVANCE(1469); if (lookahead == '\t' || - lookahead == ' ') SKIP(274); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == ' ') SKIP(245); END_STATE(); case 246: ADVANCE_MAP( - '#', 2192, - '.', 1598, - 'E', 1971, - 'G', 1973, - 'K', 1973, - 'M', 1973, - 'P', 1973, - 'T', 1973, - 'd', 1980, - 'e', 1970, - 'g', 1972, - 'h', 1986, - 'k', 1972, - 'm', 1974, - 'n', 1987, - 'p', 1972, - 's', 1983, - 't', 1972, - 'u', 1987, - 'w', 1984, - 0xb5, 1987, + '#', 2193, + '.', 1599, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'd', 1829, + 'e', 1811, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + '{', 1503, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(276); + lookahead == ' ') SKIP(275); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 247: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '.') ADVANCE(1598); - if (lookahead == '{') ADVANCE(1502); + ADVANCE_MAP( + '#', 2193, + '.', 1599, + 'E', 1972, + 'G', 1974, + 'K', 1974, + 'M', 1974, + 'P', 1974, + 'T', 1974, + 'd', 1981, + 'e', 1971, + 'g', 1973, + 'h', 1987, + 'k', 1973, + 'm', 1975, + 'n', 1988, + 'p', 1973, + 's', 1984, + 't', 1973, + 'u', 1988, + 'w', 1985, + 0xb5, 1988, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(274); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1823); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == ' ') SKIP(277); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 248: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '.') ADVANCE(1598); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1599); + if (lookahead == '{') ADVANCE(1503); if (lookahead == '\t' || - lookahead == ' ') SKIP(276); + lookahead == ' ') SKIP(275); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1977); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + lookahead == 'e') ADVANCE(1824); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 249: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '.') ADVANCE(1723); - if (lookahead == 'i') ADVANCE(1364); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1599); if (lookahead == '\t' || - lookahead == ' ') SKIP(249); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1376); + lookahead == ' ') SKIP(277); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1978); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 250: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '.') ADVANCE(1607); - if (lookahead == '_') ADVANCE(1817); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1724); + if (lookahead == 'i') ADVANCE(1365); if (lookahead == '\t' || - lookahead == ' ') SKIP(259); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1795); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == ' ') SKIP(250); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(1377); END_STATE(); case 251: - ADVANCE_MAP( - '#', 2192, - '.', 1794, - 'E', 1811, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - '_', 1817, - 'd', 1828, - 'e', 1810, - 'g', 1813, - 'h', 1882, - 'k', 1813, - 'm', 1816, - 'n', 1895, - 'p', 1813, - 's', 1843, - 't', 1813, - 'u', 1895, - 'w', 1862, - '{', 1502, - 0xb5, 1895, - ); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1608); + if (lookahead == '_') ADVANCE(1818); if (lookahead == '\t' || - lookahead == ' ') SKIP(274); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == ' ') SKIP(260); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1796); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 252: ADVANCE_MAP( - '#', 2192, - '.', 1794, - 'E', 1811, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - 'd', 1828, - 'e', 1810, - 'g', 1813, - 'h', 1882, - 'k', 1813, - 'm', 1816, - 'n', 1895, - 'p', 1813, - 's', 1843, - 't', 1813, - 'u', 1895, - 'w', 1862, - '{', 1502, - 0xb5, 1895, + '#', 2193, + '.', 1795, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + '_', 1818, + 'd', 1829, + 'e', 1811, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + '{', 1503, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(274); + lookahead == ' ') SKIP(275); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == 'b') ADVANCE(1657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 253: ADVANCE_MAP( - '#', 2192, - '.', 1794, - 'E', 1814, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - 'd', 1828, - 'e', 1813, - 'g', 1813, - 'h', 1882, - 'k', 1813, - 'm', 1816, - 'n', 1895, - 'p', 1813, - 's', 1843, - 't', 1813, - 'u', 1895, - 'w', 1862, - '{', 1502, - 0xb5, 1895, + '#', 2193, + '.', 1795, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'd', 1829, + 'e', 1811, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + '{', 1503, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(274); + lookahead == ' ') SKIP(275); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 254: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '.') ADVANCE(1794); - if (lookahead == '_') ADVANCE(1817); - if (lookahead == '{') ADVANCE(1502); + ADVANCE_MAP( + '#', 2193, + '.', 1795, + 'E', 1815, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'd', 1829, + 'e', 1814, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + '{', 1503, + 0xb5, 1896, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(274); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1823); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == ' ') SKIP(275); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 255: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '.') ADVANCE(1794); - if (lookahead == '{') ADVANCE(1502); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1795); + if (lookahead == '_') ADVANCE(1818); + if (lookahead == '{') ADVANCE(1503); if (lookahead == '\t' || - lookahead == ' ') SKIP(274); + lookahead == ' ') SKIP(275); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1823); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == 'e') ADVANCE(1824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 256: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '.') ADVANCE(1794); - if (lookahead == '{') ADVANCE(1502); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1795); + if (lookahead == '{') ADVANCE(1503); if (lookahead == '\t' || - lookahead == ' ') SKIP(274); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == ' ') SKIP(275); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1824); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 257: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '.') ADVANCE(1597); - if (lookahead == '{') ADVANCE(1502); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1795); + if (lookahead == '{') ADVANCE(1503); if (lookahead == '\t' || - lookahead == ' ') SKIP(274); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1823); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == ' ') SKIP(275); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 258: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '.') ADVANCE(1597); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1598); + if (lookahead == '{') ADVANCE(1503); if (lookahead == '\t' || - lookahead == ' ') SKIP(276); + lookahead == ' ') SKIP(275); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1977); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + lookahead == 'e') ADVANCE(1824); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 259: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '.') ADVANCE(340); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1598); if (lookahead == '\t' || - lookahead == ' ') SKIP(259); - if (lookahead == '+' || - lookahead == '-') ADVANCE(318); + lookahead == ' ') SKIP(277); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1978); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 260: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '.') ADVANCE(1605); - if (lookahead == '_') ADVANCE(1979); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(341); if (lookahead == '\t' || - lookahead == ' ') SKIP(259); + lookahead == ' ') SKIP(260); if (lookahead == '+' || - lookahead == '-') ADVANCE(1967); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + lookahead == '-') ADVANCE(319); END_STATE(); case 261: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '.') ADVANCE(1976); - if (lookahead == '_') ADVANCE(1979); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1606); + if (lookahead == '_') ADVANCE(1980); if (lookahead == '\t' || - lookahead == ' ') SKIP(259); + lookahead == ' ') SKIP(260); if (lookahead == '+' || - lookahead == '-') ADVANCE(1967); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + lookahead == '-') ADVANCE(1966); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 262: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '.') ADVANCE(1819); - if (lookahead == '_') ADVANCE(1817); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1977); + if (lookahead == '_') ADVANCE(1980); if (lookahead == '\t' || - lookahead == ' ') SKIP(259); + lookahead == ' ') SKIP(260); if (lookahead == '+' || - lookahead == '-') ADVANCE(1795); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == '-') ADVANCE(1966); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 263: - ADVANCE_MAP( - '#', 2192, - '.', 1964, - 'E', 1971, - 'G', 1973, - 'K', 1973, - 'M', 1973, - 'P', 1973, - 'T', 1973, - '_', 1979, - 'd', 1980, - 'e', 1970, - 'g', 1972, - 'h', 1986, - 'k', 1972, - 'm', 1974, - 'n', 1987, - 'p', 1972, - 's', 1983, - 't', 1972, - 'u', 1987, - 'w', 1984, - 0xb5, 1987, - ); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1820); + if (lookahead == '_') ADVANCE(1818); if (lookahead == '\t' || - lookahead == ' ') SKIP(276); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + lookahead == ' ') SKIP(260); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1796); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 264: ADVANCE_MAP( - '#', 2192, - '.', 1964, - 'E', 1971, - 'G', 1973, - 'K', 1973, - 'M', 1973, - 'P', 1973, - 'T', 1973, - 'd', 1980, - 'e', 1970, - 'g', 1972, - 'h', 1986, - 'k', 1972, - 'm', 1974, - 'n', 1987, - 'p', 1972, - 's', 1983, - 't', 1972, - 'u', 1987, - 'w', 1984, - 0xb5, 1987, + '#', 2193, + '.', 1965, + 'E', 1972, + 'G', 1974, + 'K', 1974, + 'M', 1974, + 'P', 1974, + 'T', 1974, + '_', 1980, + 'd', 1981, + 'e', 1971, + 'g', 1973, + 'h', 1987, + 'k', 1973, + 'm', 1975, + 'n', 1988, + 'p', 1973, + 's', 1984, + 't', 1973, + 'u', 1988, + 'w', 1985, + 0xb5, 1988, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(276); + lookahead == ' ') SKIP(277); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + lookahead == 'b') ADVANCE(1657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 265: ADVANCE_MAP( - '#', 2192, - '.', 1964, - 'E', 1973, - 'G', 1973, - 'K', 1973, - 'M', 1973, - 'P', 1973, - 'T', 1973, - 'd', 1980, - 'e', 1972, - 'g', 1972, - 'h', 1986, - 'k', 1972, - 'm', 1974, - 'n', 1987, - 'p', 1972, - 's', 1983, - 't', 1972, - 'u', 1987, - 'w', 1984, - 0xb5, 1987, + '#', 2193, + '.', 1965, + 'E', 1972, + 'G', 1974, + 'K', 1974, + 'M', 1974, + 'P', 1974, + 'T', 1974, + 'd', 1981, + 'e', 1971, + 'g', 1973, + 'h', 1987, + 'k', 1973, + 'm', 1975, + 'n', 1988, + 'p', 1973, + 's', 1984, + 't', 1973, + 'u', 1988, + 'w', 1985, + 0xb5, 1988, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(276); + lookahead == ' ') SKIP(277); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 266: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '.') ADVANCE(1964); - if (lookahead == '_') ADVANCE(1979); + ADVANCE_MAP( + '#', 2193, + '.', 1965, + 'E', 1974, + 'G', 1974, + 'K', 1974, + 'M', 1974, + 'P', 1974, + 'T', 1974, + 'd', 1981, + 'e', 1973, + 'g', 1973, + 'h', 1987, + 'k', 1973, + 'm', 1975, + 'n', 1988, + 'p', 1973, + 's', 1984, + 't', 1973, + 'u', 1988, + 'w', 1985, + 0xb5, 1988, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(276); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1977); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + lookahead == ' ') SKIP(277); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 267: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '.') ADVANCE(1964); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1965); + if (lookahead == '_') ADVANCE(1980); if (lookahead == '\t' || - lookahead == ' ') SKIP(276); + lookahead == ' ') SKIP(277); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1977); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + lookahead == 'e') ADVANCE(1978); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 268: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '.') ADVANCE(1964); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1965); if (lookahead == '\t' || - lookahead == ' ') SKIP(276); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + lookahead == ' ') SKIP(277); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1978); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 269: - ADVANCE_MAP( - '#', 2192, - ':', 1716, - 'a', 415, - 'c', 441, - 'd', 377, - 'e', 519, - 'm', 439, - 'u', 476, - ); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(1965); if (lookahead == '\t' || - lookahead == ' ') SKIP(269); + lookahead == ' ') SKIP(277); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 270: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == ':') ADVANCE(1716); + ADVANCE_MAP( + '#', 2193, + ':', 1717, + 'a', 416, + 'c', 442, + 'd', 378, + 'e', 520, + 'm', 440, + 'u', 477, + ); if (lookahead == '\t' || lookahead == ' ') SKIP(270); END_STATE(); case 271: + if (lookahead == '#') ADVANCE(2193); + if (lookahead == ':') ADVANCE(1717); + if (lookahead == '\t' || + lookahead == ' ') SKIP(271); + END_STATE(); + case 272: ADVANCE_MAP( - '#', 2192, - '>', 1483, - '[', 1468, - ']', 1469, - 'c', 1354, - 'f', 1373, - 'i', 1362, - 'o', 1365, - 'v', 1350, - '\t', 1715, - ' ', 1715, + '#', 2193, + '>', 1484, + '[', 1469, + ']', 1470, + 'c', 1355, + 'f', 1374, + 'i', 1363, + 'o', 1366, + 'v', 1351, + '\t', 1716, + ' ', 1716, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); + lookahead == ',') ADVANCE(1711); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && @@ -17831,73 +17867,73 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '^' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1376); - END_STATE(); - case 272: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '_') ADVANCE(1817); - if (lookahead == '{') ADVANCE(1502); - if (lookahead == '\t' || - lookahead == ' ') SKIP(274); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1823); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1377); END_STATE(); case 273: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '_') ADVANCE(1979); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '_') ADVANCE(1818); + if (lookahead == '{') ADVANCE(1503); if (lookahead == '\t' || - lookahead == ' ') SKIP(276); + lookahead == ' ') SKIP(275); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1977); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + lookahead == 'e') ADVANCE(1824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 274: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '{') ADVANCE(1502); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '_') ADVANCE(1980); if (lookahead == '\t' || - lookahead == ' ') SKIP(274); + lookahead == ' ') SKIP(277); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1978); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 275: - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '{') ADVANCE(1502); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '{') ADVANCE(1503); if (lookahead == '\t' || - lookahead == ' ') SKIP(274); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1823); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == ' ') SKIP(275); END_STATE(); case 276: - if (lookahead == '#') ADVANCE(2192); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '{') ADVANCE(1503); if (lookahead == '\t' || - lookahead == ' ') SKIP(276); + lookahead == ' ') SKIP(275); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1824); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 277: - if (lookahead == '#') ADVANCE(2192); + if (lookahead == '#') ADVANCE(2193); if (lookahead == '\t' || - lookahead == ' ') SKIP(276); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1977); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + lookahead == ' ') SKIP(277); END_STATE(); case 278: - if (lookahead == '#') ADVANCE(2192); + if (lookahead == '#') ADVANCE(2193); if (lookahead == '\t' || - lookahead == ' ') SKIP(276); - if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1464); + lookahead == ' ') SKIP(277); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1978); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 279: - if (lookahead == '#') ADVANCE(2192); + if (lookahead == '#') ADVANCE(2193); if (lookahead == '\t' || - lookahead == ' ') SKIP(276); - if (set_contains(sym_param_short_flag_identifier_character_set_1, 770, lookahead)) ADVANCE(1501); + lookahead == ' ') SKIP(277); + if (set_contains(sym_attribute_identifier_character_set_1, 685, lookahead)) ADVANCE(1465); END_STATE(); case 280: - if (lookahead == '#') ADVANCE(2195); - if (lookahead == '$') ADVANCE(1476); - if (lookahead == ':') ADVANCE(1716); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '\t' || + lookahead == ' ') SKIP(277); + if (set_contains(sym_param_short_flag_identifier_character_set_1, 770, lookahead)) ADVANCE(1502); + END_STATE(); + case 281: + if (lookahead == '#') ADVANCE(2196); + if (lookahead == '$') ADVANCE(1477); + if (lookahead == ':') ADVANCE(1717); if (lookahead == '\t' || lookahead == ' ') SKIP(199); if (lookahead == '!' || @@ -17908,511 +17944,508 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '.' || lookahead == '?' || lookahead == '@' || - lookahead == '^') ADVANCE(1049); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1033); + lookahead == '^') ADVANCE(1050); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1034); END_STATE(); - case 281: + case 282: ADVANCE_MAP( - '#', 2195, - ':', 1716, - 'a', 935, - 'c', 954, - 'd', 898, - 'e', 1022, - 'm', 955, - 'u', 983, + '#', 2196, + ':', 1717, + 'a', 936, + 'c', 955, + 'd', 899, + 'e', 1023, + 'm', 956, + 'u', 984, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(269); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); - END_STATE(); - case 282: - if (lookahead == '#') ADVANCE(1703); - if (lookahead == '\'') ADVANCE(1694); - if (lookahead == '(') ADVANCE(1470); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1702); - if (lookahead != 0) ADVANCE(1703); + lookahead == ' ') SKIP(270); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 283: - if (lookahead == '+') ADVANCE(380); - if (lookahead == '>') ADVANCE(1743); - if (lookahead == 'r') ADVANCE(1534); - if (lookahead == 'u') ADVANCE(489); + if (lookahead == '#') ADVANCE(1704); + if (lookahead == '\'') ADVANCE(1695); + if (lookahead == '(') ADVANCE(1471); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1703); + if (lookahead != 0) ADVANCE(1704); END_STATE(); case 284: - if (lookahead == '+') ADVANCE(342); - if (lookahead == '-') ADVANCE(344); - if (lookahead == '>') ADVANCE(1741); - if (lookahead == '_') ADVANCE(344); - if (lookahead == 'l') ADVANCE(474); - if (lookahead == 'n') ADVANCE(367); - if (lookahead == 'r') ADVANCE(454); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if (lookahead == '+') ADVANCE(381); + if (lookahead == '>') ADVANCE(1744); + if (lookahead == 'r') ADVANCE(1535); + if (lookahead == 'u') ADVANCE(490); END_STATE(); case 285: - if (lookahead == '+') ADVANCE(381); - if (lookahead == '>') ADVANCE(1739); + if (lookahead == '+') ADVANCE(343); + if (lookahead == '-') ADVANCE(345); + if (lookahead == '>') ADVANCE(1742); + if (lookahead == '_') ADVANCE(345); + if (lookahead == 'l') ADVANCE(475); + if (lookahead == 'n') ADVANCE(368); + if (lookahead == 'r') ADVANCE(455); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); END_STATE(); case 286: - ADVANCE_MAP( - '+', 432, - '>', 1741, - 'I', 535, - 'i', 535, - 'n', 367, - 'r', 454, - 'B', 1656, - 'b', 1656, - ); + if (lookahead == '+') ADVANCE(382); + if (lookahead == '>') ADVANCE(1740); END_STATE(); case 287: - if (lookahead == '+') ADVANCE(432); - if (lookahead == '>') ADVANCE(1741); - if (lookahead == 'l') ADVANCE(474); - if (lookahead == 'n') ADVANCE(367); - if (lookahead == 'r') ADVANCE(454); + ADVANCE_MAP( + '+', 433, + '>', 1742, + 'I', 536, + 'i', 536, + 'n', 368, + 'r', 455, + 'B', 1657, + 'b', 1657, + ); END_STATE(); case 288: - if (lookahead == '+') ADVANCE(432); - if (lookahead == '>') ADVANCE(1741); - if (lookahead == 'l') ADVANCE(474); - if (lookahead == 'n') ADVANCE(367); - if (lookahead == 'r') ADVANCE(454); - if (lookahead == 'x') ADVANCE(447); + if (lookahead == '+') ADVANCE(433); + if (lookahead == '>') ADVANCE(1742); + if (lookahead == 'l') ADVANCE(475); + if (lookahead == 'n') ADVANCE(368); + if (lookahead == 'r') ADVANCE(455); END_STATE(); case 289: - if (lookahead == '+') ADVANCE(432); - if (lookahead == '>') ADVANCE(1741); - if (lookahead == 'n') ADVANCE(367); - if (lookahead == 'r') ADVANCE(454); + if (lookahead == '+') ADVANCE(433); + if (lookahead == '>') ADVANCE(1742); + if (lookahead == 'l') ADVANCE(475); + if (lookahead == 'n') ADVANCE(368); + if (lookahead == 'r') ADVANCE(455); + if (lookahead == 'x') ADVANCE(448); END_STATE(); case 290: - if (lookahead == '+') ADVANCE(431); - if (lookahead == '>') ADVANCE(1737); + if (lookahead == '+') ADVANCE(433); + if (lookahead == '>') ADVANCE(1742); + if (lookahead == 'n') ADVANCE(368); + if (lookahead == 'r') ADVANCE(455); END_STATE(); case 291: - if (lookahead == '+') ADVANCE(440); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'n') ADVANCE(367); - if (lookahead == 'r') ADVANCE(459); + if (lookahead == '+') ADVANCE(432); + if (lookahead == '>') ADVANCE(1738); END_STATE(); case 292: - if (lookahead == '+') ADVANCE(440); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'r') ADVANCE(459); + if (lookahead == '+') ADVANCE(441); + if (lookahead == '>') ADVANCE(525); + if (lookahead == 'n') ADVANCE(368); + if (lookahead == 'r') ADVANCE(460); END_STATE(); case 293: - if (lookahead == '+') ADVANCE(382); + if (lookahead == '+') ADVANCE(441); if (lookahead == '>') ADVANCE(525); - if (lookahead == 'r') ADVANCE(1534); - if (lookahead == 'u') ADVANCE(494); + if (lookahead == 'r') ADVANCE(460); END_STATE(); case 294: - if (lookahead == '+') ADVANCE(382); - if (lookahead == '>') ADVANCE(525); - if (lookahead == 'u') ADVANCE(494); + if (lookahead == '+') ADVANCE(383); + if (lookahead == '>') ADVANCE(526); + if (lookahead == 'r') ADVANCE(1535); + if (lookahead == 'u') ADVANCE(495); END_STATE(); case 295: - if (lookahead == '+') ADVANCE(445); - if (lookahead == '>') ADVANCE(527); + if (lookahead == '+') ADVANCE(383); + if (lookahead == '>') ADVANCE(526); + if (lookahead == 'u') ADVANCE(495); END_STATE(); case 296: - if (lookahead == '+') ADVANCE(386); - if (lookahead == '>') ADVANCE(529); + if (lookahead == '+') ADVANCE(446); + if (lookahead == '>') ADVANCE(528); END_STATE(); case 297: - if (lookahead == '-') ADVANCE(358); + if (lookahead == '+') ADVANCE(387); + if (lookahead == '>') ADVANCE(530); END_STATE(); case 298: - if (lookahead == '-') ADVANCE(387); + if (lookahead == '-') ADVANCE(359); END_STATE(); case 299: - if (lookahead == '-') ADVANCE(387); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1563); + if (lookahead == '-') ADVANCE(388); END_STATE(); case 300: - if (lookahead == '-') ADVANCE(514); + if (lookahead == '-') ADVANCE(388); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1564); END_STATE(); case 301: - if (lookahead == '-') ADVANCE(1488); + if (lookahead == '-') ADVANCE(515); END_STATE(); case 302: - if (lookahead == '-') ADVANCE(1488); - if (lookahead == '.') ADVANCE(339); - if (lookahead == '>') ADVANCE(1467); - if (lookahead == '_') ADVANCE(312); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(540); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if (lookahead == '-') ADVANCE(1489); END_STATE(); case 303: - if (lookahead == '-') ADVANCE(1488); - if (lookahead == '.') ADVANCE(339); - if (lookahead == '_') ADVANCE(312); + if (lookahead == '-') ADVANCE(1489); + if (lookahead == '.') ADVANCE(340); + if (lookahead == '>') ADVANCE(1468); + if (lookahead == '_') ADVANCE(313); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(540); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + lookahead == 'i') ADVANCE(541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); END_STATE(); case 304: - if (lookahead == '-') ADVANCE(435); + if (lookahead == '-') ADVANCE(1489); + if (lookahead == '.') ADVANCE(340); + if (lookahead == '_') ADVANCE(313); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); END_STATE(); case 305: - if (lookahead == '-') ADVANCE(491); + if (lookahead == '-') ADVANCE(436); END_STATE(); case 306: - if (lookahead == '-') ADVANCE(561); + if (lookahead == '-') ADVANCE(492); END_STATE(); case 307: - if (lookahead == '-') ADVANCE(515); + if (lookahead == '-') ADVANCE(562); END_STATE(); case 308: if (lookahead == '-') ADVANCE(516); END_STATE(); case 309: - if (lookahead == '-') ADVANCE(452); + if (lookahead == '-') ADVANCE(517); END_STATE(); case 310: - if (lookahead == '-') ADVANCE(517); + if (lookahead == '-') ADVANCE(453); END_STATE(); case 311: - if (lookahead == '.') ADVANCE(339); - if (lookahead == '_') ADVANCE(312); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(540); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if (lookahead == '-') ADVANCE(518); END_STATE(); case 312: - if (lookahead == '.') ADVANCE(339); - if (lookahead == '_') ADVANCE(312); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if (lookahead == '.') ADVANCE(340); + if (lookahead == '_') ADVANCE(313); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); END_STATE(); case 313: - if (lookahead == '.') ADVANCE(1511); - if (lookahead == '_') ADVANCE(346); + if (lookahead == '.') ADVANCE(340); + if (lookahead == '_') ADVANCE(313); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); END_STATE(); case 314: - if (lookahead == '.') ADVANCE(1596); + if (lookahead == '.') ADVANCE(1512); + if (lookahead == '_') ADVANCE(347); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); END_STATE(); case 315: - if (lookahead == '.') ADVANCE(1486); + if (lookahead == '.') ADVANCE(1597); END_STATE(); case 316: - if (lookahead == '.') ADVANCE(315); + if (lookahead == '.') ADVANCE(1487); END_STATE(); case 317: - if (lookahead == '.') ADVANCE(315); - if (lookahead == '_') ADVANCE(340); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); + if (lookahead == '.') ADVANCE(316); END_STATE(); case 318: - if (lookahead == '.') ADVANCE(341); - if (lookahead == '_') ADVANCE(318); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if (lookahead == '.') ADVANCE(316); + if (lookahead == '_') ADVANCE(341); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); END_STATE(); case 319: - if (lookahead == '2') ADVANCE(549); - if (lookahead == '0' || - lookahead == '1') ADVANCE(555); + if (lookahead == '.') ADVANCE(342); + if (lookahead == '_') ADVANCE(319); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); END_STATE(); case 320: - if (lookahead == ':') ADVANCE(556); + if (lookahead == '2') ADVANCE(550); + if (lookahead == '0' || + lookahead == '1') ADVANCE(556); END_STATE(); case 321: if (lookahead == ':') ADVANCE(557); END_STATE(); case 322: - if (lookahead == ';') ADVANCE(1719); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(322); + if (lookahead == ':') ADVANCE(558); END_STATE(); case 323: - if (lookahead == '=') ADVANCE(1142); - if (lookahead == '~') ADVANCE(1124); + if (lookahead == ';') ADVANCE(1720); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(323); END_STATE(); case 324: - if (lookahead == '=') ADVANCE(1551); - if (lookahead == '~') ADVANCE(1557); + if (lookahead == '=') ADVANCE(1143); + if (lookahead == '~') ADVANCE(1125); END_STATE(); case 325: - if (lookahead == '=') ADVANCE(1550); - if (lookahead == '>') ADVANCE(1504); - if (lookahead == '~') ADVANCE(1556); + if (lookahead == '=') ADVANCE(1552); + if (lookahead == '~') ADVANCE(1558); END_STATE(); case 326: - if (lookahead == '=') ADVANCE(1550); - if (lookahead == '~') ADVANCE(1556); + if (lookahead == '=') ADVANCE(1551); + if (lookahead == '>') ADVANCE(1505); + if (lookahead == '~') ADVANCE(1557); END_STATE(); case 327: - if (lookahead == '>') ADVANCE(1504); + if (lookahead == '=') ADVANCE(1551); + if (lookahead == '~') ADVANCE(1557); END_STATE(); case 328: - if (lookahead == '>') ADVANCE(1751); + if (lookahead == '>') ADVANCE(1505); END_STATE(); case 329: - if (lookahead == '>') ADVANCE(1749); + if (lookahead == '>') ADVANCE(1752); END_STATE(); case 330: - if (lookahead == '>') ADVANCE(1745); + if (lookahead == '>') ADVANCE(1750); END_STATE(); case 331: - if (lookahead == '>') ADVANCE(1747); + if (lookahead == '>') ADVANCE(1746); END_STATE(); case 332: - if (lookahead == '>') ADVANCE(526); + if (lookahead == '>') ADVANCE(1748); END_STATE(); case 333: - if (lookahead == '>') ADVANCE(528); + if (lookahead == '>') ADVANCE(527); END_STATE(); case 334: - if (lookahead == '>') ADVANCE(530); + if (lookahead == '>') ADVANCE(529); END_STATE(); case 335: if (lookahead == '>') ADVANCE(531); END_STATE(); case 336: - if (lookahead == 'I') ADVANCE(535); - if (lookahead == 'i') ADVANCE(535); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); + if (lookahead == '>') ADVANCE(532); END_STATE(); case 337: - if (lookahead == 'I') ADVANCE(535); - if (lookahead == 'i') ADVANCE(360); + if (lookahead == 'I') ADVANCE(536); + if (lookahead == 'i') ADVANCE(536); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); + lookahead == 'b') ADVANCE(1657); END_STATE(); case 338: - if (lookahead == 'I') ADVANCE(535); - if (lookahead == 'i') ADVANCE(422); - if (lookahead == 'o') ADVANCE(365); - if (lookahead == 's') ADVANCE(1661); + if (lookahead == 'I') ADVANCE(536); + if (lookahead == 'i') ADVANCE(361); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); + lookahead == 'b') ADVANCE(1657); END_STATE(); case 339: - if (lookahead == '_') ADVANCE(339); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); + if (lookahead == 'I') ADVANCE(536); + if (lookahead == 'i') ADVANCE(423); + if (lookahead == 'o') ADVANCE(366); + if (lookahead == 's') ADVANCE(1662); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); END_STATE(); case 340: if (lookahead == '_') ADVANCE(340); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1651); END_STATE(); case 341: if (lookahead == '_') ADVANCE(341); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); END_STATE(); case 342: - if (lookahead == '_') ADVANCE(344); - if (lookahead == 'o') ADVANCE(328); + if (lookahead == '_') ADVANCE(342); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); END_STATE(); case 343: - if (lookahead == '_') ADVANCE(344); - if (lookahead == '+' || - lookahead == '-') ADVANCE(344); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if (lookahead == '_') ADVANCE(345); + if (lookahead == 'o') ADVANCE(329); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); END_STATE(); case 344: - if (lookahead == '_') ADVANCE(344); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if (lookahead == '_') ADVANCE(345); + if (lookahead == '+' || + lookahead == '-') ADVANCE(345); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); END_STATE(); case 345: if (lookahead == '_') ADVANCE(345); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); END_STATE(); case 346: if (lookahead == '_') ADVANCE(346); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); END_STATE(); case 347: - if (lookahead == 'a') ADVANCE(471); + if (lookahead == '_') ADVANCE(347); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); END_STATE(); case 348: - if (lookahead == 'a') ADVANCE(471); - if (lookahead == 'r') ADVANCE(1661); + if (lookahead == 'a') ADVANCE(472); END_STATE(); case 349: - if (lookahead == 'a') ADVANCE(520); + if (lookahead == 'a') ADVANCE(472); + if (lookahead == 'r') ADVANCE(1662); END_STATE(); case 350: - if (lookahead == 'a') ADVANCE(420); + if (lookahead == 'a') ADVANCE(521); END_STATE(); case 351: - if (lookahead == 'a') ADVANCE(463); + if (lookahead == 'a') ADVANCE(421); END_STATE(); case 352: - if (lookahead == 'a') ADVANCE(472); + if (lookahead == 'a') ADVANCE(464); END_STATE(); case 353: - if (lookahead == 'a') ADVANCE(469); + if (lookahead == 'a') ADVANCE(473); END_STATE(); case 354: - if (lookahead == 'a') ADVANCE(483); + if (lookahead == 'a') ADVANCE(470); END_STATE(); case 355: - if (lookahead == 'a') ADVANCE(500); + if (lookahead == 'a') ADVANCE(484); END_STATE(); case 356: - if (lookahead == 'a') ADVANCE(502); + if (lookahead == 'a') ADVANCE(501); END_STATE(); case 357: - if (lookahead == 'a') ADVANCE(501); + if (lookahead == 'a') ADVANCE(503); END_STATE(); case 358: - if (lookahead == 'a') ADVANCE(428); - if (lookahead == 'o') ADVANCE(456); - if (lookahead == 's') ADVANCE(393); - if (lookahead == 'x') ADVANCE(442); + if (lookahead == 'a') ADVANCE(502); END_STATE(); case 359: - if (lookahead == 'a') ADVANCE(468); + if (lookahead == 'a') ADVANCE(429); + if (lookahead == 'o') ADVANCE(457); + if (lookahead == 's') ADVANCE(394); + if (lookahead == 'x') ADVANCE(443); END_STATE(); case 360: - if (lookahead == 'b') ADVANCE(1656); + if (lookahead == 'a') ADVANCE(469); END_STATE(); case 361: - if (lookahead == 'c') ADVANCE(1661); + if (lookahead == 'b') ADVANCE(1657); END_STATE(); case 362: - if (lookahead == 'c') ADVANCE(392); + if (lookahead == 'c') ADVANCE(1662); END_STATE(); case 363: - if (lookahead == 'c') ADVANCE(385); + if (lookahead == 'c') ADVANCE(393); END_STATE(); case 364: - if (lookahead == 'd') ADVANCE(1530); + if (lookahead == 'c') ADVANCE(386); END_STATE(); case 365: - if (lookahead == 'd') ADVANCE(1574); + if (lookahead == 'd') ADVANCE(1531); END_STATE(); case 366: - if (lookahead == 'd') ADVANCE(1588); + if (lookahead == 'd') ADVANCE(1575); END_STATE(); case 367: - if (lookahead == 'd') ADVANCE(473); + if (lookahead == 'd') ADVANCE(1589); END_STATE(); case 368: - if (lookahead == 'd') ADVANCE(510); + if (lookahead == 'd') ADVANCE(474); END_STATE(); case 369: - if (lookahead == 'd') ADVANCE(479); + if (lookahead == 'd') ADVANCE(511); END_STATE(); case 370: - if (lookahead == 'e') ADVANCE(1050); + if (lookahead == 'd') ADVANCE(480); END_STATE(); case 371: - if (lookahead == 'e') ADVANCE(1074); + if (lookahead == 'e') ADVANCE(1051); END_STATE(); case 372: - if (lookahead == 'e') ADVANCE(1092); + if (lookahead == 'e') ADVANCE(1075); END_STATE(); case 373: - if (lookahead == 'e') ADVANCE(1095); + if (lookahead == 'e') ADVANCE(1093); END_STATE(); case 374: - if (lookahead == 'e') ADVANCE(1059); + if (lookahead == 'e') ADVANCE(1096); END_STATE(); case 375: - if (lookahead == 'e') ADVANCE(1559); + if (lookahead == 'e') ADVANCE(1060); END_STATE(); case 376: - if (lookahead == 'e') ADVANCE(1561); + if (lookahead == 'e') ADVANCE(1560); END_STATE(); case 377: - if (lookahead == 'e') ADVANCE(390); + if (lookahead == 'e') ADVANCE(1562); END_STATE(); case 378: - if (lookahead == 'e') ADVANCE(1481); + if (lookahead == 'e') ADVANCE(391); END_STATE(); case 379: - if (lookahead == 'e') ADVANCE(361); - if (lookahead == 't') ADVANCE(351); + if (lookahead == 'e') ADVANCE(1482); END_STATE(); case 380: - if (lookahead == 'e') ADVANCE(329); + if (lookahead == 'e') ADVANCE(362); + if (lookahead == 't') ADVANCE(352); END_STATE(); case 381: - if (lookahead == 'e') ADVANCE(464); + if (lookahead == 'e') ADVANCE(330); END_STATE(); case 382: - if (lookahead == 'e') ADVANCE(333); + if (lookahead == 'e') ADVANCE(465); END_STATE(); case 383: - if (lookahead == 'e') ADVANCE(460); + if (lookahead == 'e') ADVANCE(334); END_STATE(); case 384: - if (lookahead == 'e') ADVANCE(462); + if (lookahead == 'e') ADVANCE(461); END_STATE(); case 385: - if (lookahead == 'e') ADVANCE(417); + if (lookahead == 'e') ADVANCE(463); END_STATE(); case 386: - if (lookahead == 'e') ADVANCE(465); + if (lookahead == 'e') ADVANCE(418); END_STATE(); case 387: - if (lookahead == 'e') ADVANCE(430); - if (lookahead == 'h') ADVANCE(352); - if (lookahead == 'i') ADVANCE(425); - if (lookahead == 'l') ADVANCE(408); - if (lookahead == 's') ADVANCE(507); + if (lookahead == 'e') ADVANCE(466); END_STATE(); case 388: - if (lookahead == 'f') ADVANCE(1071); + if (lookahead == 'e') ADVANCE(431); + if (lookahead == 'h') ADVANCE(353); + if (lookahead == 'i') ADVANCE(426); + if (lookahead == 'l') ADVANCE(409); + if (lookahead == 's') ADVANCE(508); END_STATE(); case 389: - if (lookahead == 'f') ADVANCE(1071); - if (lookahead == 'n') ADVANCE(1086); + if (lookahead == 'f') ADVANCE(1072); END_STATE(); case 390: - if (lookahead == 'f') ADVANCE(828); + if (lookahead == 'f') ADVANCE(1072); + if (lookahead == 'n') ADVANCE(1087); END_STATE(); case 391: - if (lookahead == 'f') ADVANCE(1480); + if (lookahead == 'f') ADVANCE(829); END_STATE(); case 392: - if (lookahead == 'h') ADVANCE(1080); + if (lookahead == 'f') ADVANCE(1481); END_STATE(); case 393: - if (lookahead == 'h') ADVANCE(414); + if (lookahead == 'h') ADVANCE(1081); END_STATE(); case 394: - if (lookahead == 'h') ADVANCE(1546); + if (lookahead == 'h') ADVANCE(415); END_STATE(); case 395: - if (lookahead == 'h') ADVANCE(1542); + if (lookahead == 'h') ADVANCE(1547); END_STATE(); case 396: - if (lookahead == 'h') ADVANCE(1548); + if (lookahead == 'h') ADVANCE(1543); END_STATE(); case 397: - if (lookahead == 'h') ADVANCE(1544); + if (lookahead == 'h') ADVANCE(1549); END_STATE(); case 398: - if (lookahead == 'h') ADVANCE(1477); + if (lookahead == 'h') ADVANCE(1545); END_STATE(); case 399: if (lookahead == 'h') ADVANCE(1478); END_STATE(); case 400: - if (lookahead == 'h') ADVANCE(304); + if (lookahead == 'h') ADVANCE(1479); END_STATE(); case 401: - if (lookahead == 'i') ADVANCE(411); + if (lookahead == 'h') ADVANCE(305); END_STATE(); case 402: - if (lookahead == 'i') ADVANCE(482); + if (lookahead == 'i') ADVANCE(412); END_STATE(); case 403: - if (lookahead == 'i') ADVANCE(490); + if (lookahead == 'i') ADVANCE(483); END_STATE(); case 404: - if (lookahead == 'i') ADVANCE(492); + if (lookahead == 'i') ADVANCE(491); END_STATE(); case 405: - if (lookahead == 'i') ADVANCE(495); + if (lookahead == 'i') ADVANCE(493); END_STATE(); case 406: if (lookahead == 'i') ADVANCE(496); @@ -18421,141 +18454,141 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(497); END_STATE(); case 408: - if (lookahead == 'i') ADVANCE(412); + if (lookahead == 'i') ADVANCE(498); END_STATE(); case 409: - if (lookahead == 'i') ADVANCE(353); + if (lookahead == 'i') ADVANCE(413); END_STATE(); case 410: - if (lookahead == 'k') ADVANCE(1661); + if (lookahead == 'i') ADVANCE(354); END_STATE(); case 411: - if (lookahead == 'k') ADVANCE(375); + if (lookahead == 'k') ADVANCE(1662); END_STATE(); case 412: if (lookahead == 'k') ADVANCE(376); END_STATE(); case 413: - if (lookahead == 'l') ADVANCE(1098); + if (lookahead == 'k') ADVANCE(377); END_STATE(); case 414: - if (lookahead == 'l') ADVANCE(1584); - if (lookahead == 'r') ADVANCE(1586); + if (lookahead == 'l') ADVANCE(1099); END_STATE(); case 415: - if (lookahead == 'l') ADVANCE(409); + if (lookahead == 'l') ADVANCE(1585); + if (lookahead == 'r') ADVANCE(1587); END_STATE(); case 416: - if (lookahead == 'l') ADVANCE(413); + if (lookahead == 'l') ADVANCE(410); END_STATE(); case 417: - if (lookahead == 'l') ADVANCE(418); + if (lookahead == 'l') ADVANCE(414); END_STATE(); case 418: - if (lookahead == 'l') ADVANCE(309); + if (lookahead == 'l') ADVANCE(419); END_STATE(); case 419: - if (lookahead == 'l') ADVANCE(374); + if (lookahead == 'l') ADVANCE(310); END_STATE(); case 420: - if (lookahead == 'l') ADVANCE(475); + if (lookahead == 'l') ADVANCE(375); END_STATE(); case 421: - if (lookahead == 'n') ADVANCE(1056); + if (lookahead == 'l') ADVANCE(476); END_STATE(); case 422: - if (lookahead == 'n') ADVANCE(1661); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); + if (lookahead == 'n') ADVANCE(1057); END_STATE(); case 423: - if (lookahead == 'n') ADVANCE(364); + if (lookahead == 'n') ADVANCE(1662); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); END_STATE(); case 424: - if (lookahead == 'n') ADVANCE(1086); + if (lookahead == 'n') ADVANCE(365); END_STATE(); case 425: - if (lookahead == 'n') ADVANCE(1536); + if (lookahead == 'n') ADVANCE(1087); END_STATE(); case 426: - if (lookahead == 'n') ADVANCE(1479); + if (lookahead == 'n') ADVANCE(1537); END_STATE(); case 427: - if (lookahead == 'n') ADVANCE(367); + if (lookahead == 'n') ADVANCE(1480); END_STATE(); case 428: - if (lookahead == 'n') ADVANCE(366); + if (lookahead == 'n') ADVANCE(368); END_STATE(); case 429: - if (lookahead == 'n') ADVANCE(477); + if (lookahead == 'n') ADVANCE(367); END_STATE(); case 430: - if (lookahead == 'n') ADVANCE(369); + if (lookahead == 'n') ADVANCE(478); END_STATE(); case 431: - if (lookahead == 'o') ADVANCE(509); + if (lookahead == 'n') ADVANCE(370); END_STATE(); case 432: - if (lookahead == 'o') ADVANCE(328); + if (lookahead == 'o') ADVANCE(510); END_STATE(); case 433: - if (lookahead == 'o') ADVANCE(455); + if (lookahead == 'o') ADVANCE(329); END_STATE(); case 434: - if (lookahead == 'o') ADVANCE(391); + if (lookahead == 'o') ADVANCE(456); END_STATE(); case 435: - if (lookahead == 'o') ADVANCE(449); + if (lookahead == 'o') ADVANCE(392); END_STATE(); case 436: - if (lookahead == 'o') ADVANCE(488); + if (lookahead == 'o') ADVANCE(450); END_STATE(); case 437: - if (lookahead == 'o') ADVANCE(488); - if (lookahead == 's') ADVANCE(1661); + if (lookahead == 'o') ADVANCE(489); END_STATE(); case 438: - if (lookahead == 'o') ADVANCE(365); + if (lookahead == 'o') ADVANCE(489); + if (lookahead == 's') ADVANCE(1662); END_STATE(); case 439: - if (lookahead == 'o') ADVANCE(368); + if (lookahead == 'o') ADVANCE(366); END_STATE(); case 440: - if (lookahead == 'o') ADVANCE(332); + if (lookahead == 'o') ADVANCE(369); END_STATE(); case 441: - if (lookahead == 'o') ADVANCE(429); + if (lookahead == 'o') ADVANCE(333); END_STATE(); case 442: - if (lookahead == 'o') ADVANCE(457); + if (lookahead == 'o') ADVANCE(430); END_STATE(); case 443: - if (lookahead == 'o') ADVANCE(485); + if (lookahead == 'o') ADVANCE(458); END_STATE(); case 444: if (lookahead == 'o') ADVANCE(486); - if (lookahead == 'u') ADVANCE(416); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(541); END_STATE(); case 445: - if (lookahead == 'o') ADVANCE(512); + if (lookahead == 'o') ADVANCE(487); + if (lookahead == 'u') ADVANCE(417); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(542); END_STATE(); case 446: - if (lookahead == 'o') ADVANCE(467); + if (lookahead == 'o') ADVANCE(513); END_STATE(); case 447: - if (lookahead == 'p') ADVANCE(446); - if (lookahead == 't') ADVANCE(383); + if (lookahead == 'o') ADVANCE(468); END_STATE(); case 448: - if (lookahead == 'p') ADVANCE(378); + if (lookahead == 'p') ADVANCE(447); + if (lookahead == 't') ADVANCE(384); END_STATE(); case 449: - if (lookahead == 'p') ADVANCE(499); + if (lookahead == 'p') ADVANCE(379); END_STATE(); case 450: - if (lookahead == 'p') ADVANCE(355); + if (lookahead == 'p') ADVANCE(500); END_STATE(); case 451: if (lookahead == 'p') ADVANCE(356); @@ -18564,194 +18597,194 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'p') ADVANCE(357); END_STATE(); case 453: - if (lookahead == 'r') ADVANCE(1534); + if (lookahead == 'p') ADVANCE(358); END_STATE(); case 454: - if (lookahead == 'r') ADVANCE(290); + if (lookahead == 'r') ADVANCE(1535); END_STATE(); case 455: - if (lookahead == 'r') ADVANCE(1532); + if (lookahead == 'r') ADVANCE(291); END_STATE(); case 456: - if (lookahead == 'r') ADVANCE(1592); + if (lookahead == 'r') ADVANCE(1533); END_STATE(); case 457: - if (lookahead == 'r') ADVANCE(1590); + if (lookahead == 'r') ADVANCE(1593); END_STATE(); case 458: - if (lookahead == 'r') ADVANCE(511); + if (lookahead == 'r') ADVANCE(1591); END_STATE(); case 459: - if (lookahead == 'r') ADVANCE(295); + if (lookahead == 'r') ADVANCE(512); END_STATE(); case 460: - if (lookahead == 'r') ADVANCE(421); + if (lookahead == 'r') ADVANCE(296); END_STATE(); case 461: - if (lookahead == 'r') ADVANCE(331); + if (lookahead == 'r') ADVANCE(422); END_STATE(); case 462: - if (lookahead == 'r') ADVANCE(426); + if (lookahead == 'r') ADVANCE(332); END_STATE(); case 463: - if (lookahead == 'r') ADVANCE(505); + if (lookahead == 'r') ADVANCE(427); END_STATE(); case 464: - if (lookahead == 'r') ADVANCE(461); + if (lookahead == 'r') ADVANCE(506); END_STATE(); case 465: - if (lookahead == 'r') ADVANCE(466); + if (lookahead == 'r') ADVANCE(462); END_STATE(); case 466: - if (lookahead == 'r') ADVANCE(335); + if (lookahead == 'r') ADVANCE(467); END_STATE(); case 467: - if (lookahead == 'r') ADVANCE(484); + if (lookahead == 'r') ADVANCE(336); END_STATE(); case 468: - if (lookahead == 'r') ADVANCE(506); + if (lookahead == 'r') ADVANCE(485); END_STATE(); case 469: - if (lookahead == 's') ADVANCE(673); + if (lookahead == 'r') ADVANCE(507); END_STATE(); case 470: - if (lookahead == 's') ADVANCE(1661); + if (lookahead == 's') ADVANCE(674); END_STATE(); case 471: - if (lookahead == 's') ADVANCE(1538); + if (lookahead == 's') ADVANCE(1662); END_STATE(); case 472: - if (lookahead == 's') ADVANCE(1540); + if (lookahead == 's') ADVANCE(1539); END_STATE(); case 473: - if (lookahead == 's') ADVANCE(300); + if (lookahead == 's') ADVANCE(1541); END_STATE(); case 474: - if (lookahead == 's') ADVANCE(371); + if (lookahead == 's') ADVANCE(301); END_STATE(); case 475: - if (lookahead == 's') ADVANCE(373); + if (lookahead == 's') ADVANCE(372); END_STATE(); case 476: - if (lookahead == 's') ADVANCE(370); + if (lookahead == 's') ADVANCE(374); END_STATE(); case 477: - if (lookahead == 's') ADVANCE(481); + if (lookahead == 's') ADVANCE(371); END_STATE(); case 478: - if (lookahead == 's') ADVANCE(307); + if (lookahead == 's') ADVANCE(482); END_STATE(); case 479: if (lookahead == 's') ADVANCE(308); END_STATE(); case 480: - if (lookahead == 's') ADVANCE(310); + if (lookahead == 's') ADVANCE(309); END_STATE(); case 481: - if (lookahead == 't') ADVANCE(685); + if (lookahead == 's') ADVANCE(311); END_STATE(); case 482: - if (lookahead == 't') ADVANCE(297); + if (lookahead == 't') ADVANCE(686); END_STATE(); case 483: - if (lookahead == 't') ADVANCE(362); + if (lookahead == 't') ADVANCE(298); END_STATE(); case 484: - if (lookahead == 't') ADVANCE(669); + if (lookahead == 't') ADVANCE(363); END_STATE(); case 485: - if (lookahead == 't') ADVANCE(299); + if (lookahead == 't') ADVANCE(670); END_STATE(); case 486: - if (lookahead == 't') ADVANCE(550); + if (lookahead == 't') ADVANCE(300); END_STATE(); case 487: - if (lookahead == 't') ADVANCE(351); + if (lookahead == 't') ADVANCE(551); END_STATE(); case 488: - if (lookahead == 't') ADVANCE(298); + if (lookahead == 't') ADVANCE(352); END_STATE(); case 489: - if (lookahead == 't') ADVANCE(285); + if (lookahead == 't') ADVANCE(299); END_STATE(); case 490: - if (lookahead == 't') ADVANCE(394); + if (lookahead == 't') ADVANCE(286); END_STATE(); case 491: - if (lookahead == 't') ADVANCE(521); + if (lookahead == 't') ADVANCE(395); END_STATE(); case 492: - if (lookahead == 't') ADVANCE(395); + if (lookahead == 't') ADVANCE(522); END_STATE(); case 493: - if (lookahead == 't') ADVANCE(330); + if (lookahead == 't') ADVANCE(396); END_STATE(); case 494: - if (lookahead == 't') ADVANCE(296); + if (lookahead == 't') ADVANCE(331); END_STATE(); case 495: - if (lookahead == 't') ADVANCE(396); + if (lookahead == 't') ADVANCE(297); END_STATE(); case 496: if (lookahead == 't') ADVANCE(397); END_STATE(); case 497: - if (lookahead == 't') ADVANCE(400); + if (lookahead == 't') ADVANCE(398); END_STATE(); case 498: - if (lookahead == 't') ADVANCE(334); + if (lookahead == 't') ADVANCE(401); END_STATE(); case 499: - if (lookahead == 't') ADVANCE(305); + if (lookahead == 't') ADVANCE(335); END_STATE(); case 500: - if (lookahead == 't') ADVANCE(398); + if (lookahead == 't') ADVANCE(306); END_STATE(); case 501: if (lookahead == 't') ADVANCE(399); END_STATE(); case 502: - if (lookahead == 't') ADVANCE(504); + if (lookahead == 't') ADVANCE(400); END_STATE(); case 503: - if (lookahead == 't') ADVANCE(383); + if (lookahead == 't') ADVANCE(505); END_STATE(); case 504: if (lookahead == 't') ADVANCE(384); END_STATE(); case 505: - if (lookahead == 't') ADVANCE(478); + if (lookahead == 't') ADVANCE(385); END_STATE(); case 506: - if (lookahead == 't') ADVANCE(480); + if (lookahead == 't') ADVANCE(479); END_STATE(); case 507: - if (lookahead == 't') ADVANCE(359); + if (lookahead == 't') ADVANCE(481); END_STATE(); case 508: - if (lookahead == 'u') ADVANCE(522); - if (lookahead == 'x') ADVANCE(569); - if (lookahead != 0) ADVANCE(1707); + if (lookahead == 't') ADVANCE(360); END_STATE(); case 509: - if (lookahead == 'u') ADVANCE(493); + if (lookahead == 'u') ADVANCE(523); + if (lookahead == 'x') ADVANCE(570); + if (lookahead != 0) ADVANCE(1708); END_STATE(); case 510: - if (lookahead == 'u') ADVANCE(419); + if (lookahead == 'u') ADVANCE(494); END_STATE(); case 511: - if (lookahead == 'u') ADVANCE(372); + if (lookahead == 'u') ADVANCE(420); END_STATE(); case 512: - if (lookahead == 'u') ADVANCE(498); + if (lookahead == 'u') ADVANCE(373); END_STATE(); case 513: - if (lookahead == 'u') ADVANCE(523); - if (lookahead == 'x') ADVANCE(570); - if (lookahead != 0) ADVANCE(1699); + if (lookahead == 'u') ADVANCE(499); END_STATE(); case 514: - if (lookahead == 'w') ADVANCE(403); + if (lookahead == 'u') ADVANCE(524); + if (lookahead == 'x') ADVANCE(571); + if (lookahead != 0) ADVANCE(1700); END_STATE(); case 515: if (lookahead == 'w') ADVANCE(404); @@ -18766,2729 +18799,2732 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'w') ADVANCE(407); END_STATE(); case 519: - if (lookahead == 'x') ADVANCE(503); + if (lookahead == 'w') ADVANCE(408); END_STATE(); case 520: - if (lookahead == 'y') ADVANCE(1661); + if (lookahead == 'x') ADVANCE(504); END_STATE(); case 521: - if (lookahead == 'y') ADVANCE(448); + if (lookahead == 'y') ADVANCE(1662); END_STATE(); case 522: - if (lookahead == '{') ADVANCE(566); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(564); + if (lookahead == 'y') ADVANCE(449); END_STATE(); case 523: - if (lookahead == '{') ADVANCE(568); + if (lookahead == '{') ADVANCE(567); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(571); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(565); END_STATE(); case 524: - if (lookahead == '|') ADVANCE(1458); + if (lookahead == '{') ADVANCE(569); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(572); END_STATE(); case 525: if (lookahead == '|') ADVANCE(1459); END_STATE(); case 526: - if (lookahead == '|') ADVANCE(1463); + if (lookahead == '|') ADVANCE(1460); END_STATE(); case 527: - if (lookahead == '|') ADVANCE(1456); + if (lookahead == '|') ADVANCE(1464); END_STATE(); case 528: - if (lookahead == '|') ADVANCE(1462); + if (lookahead == '|') ADVANCE(1457); END_STATE(); case 529: - if (lookahead == '|') ADVANCE(1457); + if (lookahead == '|') ADVANCE(1463); END_STATE(); case 530: - if (lookahead == '|') ADVANCE(1460); + if (lookahead == '|') ADVANCE(1458); END_STATE(); case 531: if (lookahead == '|') ADVANCE(1461); END_STATE(); case 532: - if (lookahead == '}') ADVANCE(1707); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(532); + if (lookahead == '|') ADVANCE(1462); END_STATE(); case 533: - if (lookahead == '}') ADVANCE(1699); + if (lookahead == '}') ADVANCE(1708); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(533); END_STATE(); case 534: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(541); + if (lookahead == '}') ADVANCE(1700); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(534); END_STATE(); case 535: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(542); END_STATE(); case 536: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1108); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); END_STATE(); case 537: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1106); + lookahead == 'f') ADVANCE(1109); END_STATE(); case 538: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(545); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1107); END_STATE(); case 539: if (lookahead == 'I' || lookahead == 'i') ADVANCE(546); END_STATE(); case 540: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(536); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(547); END_STATE(); case 541: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1112); + lookahead == 'n') ADVANCE(537); END_STATE(); case 542: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(538); + lookahead == 'n') ADVANCE(1113); END_STATE(); case 543: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(537); + lookahead == 'n') ADVANCE(539); END_STATE(); case 544: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(539); + lookahead == 'n') ADVANCE(538); END_STATE(); case 545: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(548); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(540); END_STATE(); case 546: if (lookahead == 'T' || - lookahead == 't') ADVANCE(547); + lookahead == 't') ADVANCE(549); END_STATE(); case 547: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1101); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(548); END_STATE(); case 548: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1107); + lookahead == 'y') ADVANCE(1102); END_STATE(); case 549: - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1674); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1108); END_STATE(); case 550: - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1563); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1675); END_STATE(); case 551: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(321); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1564); END_STATE(); case 552: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(322); END_STATE(); case 553: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1670); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); END_STATE(); case 554: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1682); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); END_STATE(); case 555: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1683); END_STATE(); case 556: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(551); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1675); END_STATE(); case 557: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(552); END_STATE(); case 558: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1681); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(553); END_STATE(); case 559: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1682); END_STATE(); case 560: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(559); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(307); END_STATE(); case 561: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(558); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(560); END_STATE(); case 562: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(320); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(559); END_STATE(); case 563: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(562); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(321); END_STATE(); case 564: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(569); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(563); END_STATE(); case 565: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1707); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(570); END_STATE(); case 566: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(532); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1708); END_STATE(); case 567: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1699); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(533); END_STATE(); case 568: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(533); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1700); END_STATE(); case 569: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(565); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(534); END_STATE(); case 570: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(567); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(566); END_STATE(); case 571: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(570); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(568); END_STATE(); case 572: - if (eof) ADVANCE(664); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(571); + END_STATE(); + case 573: + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1482, + '\n', 1483, '\r', 9, - '!', 1721, - '"', 1688, - '#', 2192, - '$', 1473, - '&', 827, - '\'', 1691, - '(', 1470, - ')', 1471, - '*', 1515, - '+', 1578, - ',', 1472, - '-', 1490, - '.', 1724, - '/', 1573, - ':', 1716, - ';', 1454, - '<', 1552, - '=', 676, - '>', 1484, - '?', 1720, - '@', 1465, - '[', 1468, - ']', 1469, - '^', 1735, - '_', 1506, - '`', 1695, - '{', 1502, - '|', 1455, - '}', 1503, + '!', 1722, + '"', 1689, + '#', 2193, + '$', 1474, + '&', 828, + '\'', 1692, + '(', 1471, + ')', 1472, + '*', 1516, + '+', 1579, + ',', 1473, + '-', 1491, + '.', 1725, + '/', 1574, + ':', 1717, + ';', 1455, + '<', 1553, + '=', 677, + '>', 1485, + '?', 1721, + '@', 1466, + '[', 1469, + ']', 1470, + '^', 1736, + '_', 1507, + '`', 1696, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(572); + lookahead == ' ') SKIP(573); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1376); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(1377); END_STATE(); - case 573: - if (eof) ADVANCE(664); + case 574: + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1721, - '"', 1688, - '#', 2192, - '\'', 1691, - ')', 1471, - '*', 1514, - '+', 705, - '-', 311, - '.', 1730, - ';', 1454, - '?', 1720, - 'I', 812, - 'N', 808, - '[', 1468, - '_', 719, - '`', 1695, - 'a', 757, - 'c', 724, - 'd', 734, - 'e', 762, - 'f', 726, - 'i', 718, - 'l', 742, - 'm', 728, - 'n', 801, - 't', 775, - 'u', 788, - 'w', 754, - '}', 1503, + '!', 1722, + '"', 1689, + '#', 2193, + '\'', 1692, + ')', 1472, + '*', 1515, + '+', 706, + '-', 312, + '.', 1731, + ';', 1455, + '?', 1721, + 'I', 813, + 'N', 809, + '[', 1469, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(573); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + lookahead == ' ') SKIP(574); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(827); - END_STATE(); - case 574: - if (eof) ADVANCE(664); - ADVANCE_MAP( - '\n', 1451, - '\r', 9, - '!', 1721, - '"', 1688, - '#', 2192, - '\'', 1691, - ')', 1471, - '*', 1514, - '+', 705, - '-', 311, - '.', 1730, - ';', 1454, - 'I', 812, - 'N', 808, - '[', 1468, - '_', 719, - '`', 1695, - 'a', 757, - 'c', 724, - 'd', 734, - 'e', 762, - 'f', 726, - 'i', 718, - 'l', 742, - 'm', 728, - 'n', 801, - 't', 775, - 'u', 788, - 'w', 754, - '}', 1503, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(574); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); + (lookahead < '{' || '}' < lookahead)) ADVANCE(828); END_STATE(); case 575: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1721, - '#', 2192, - '(', 1470, - ')', 1471, - '-', 301, - '.', 1723, - ':', 1716, - ';', 1454, - '=', 678, - '>', 1483, - '?', 1720, - '[', 1468, - 'a', 423, - 'e', 292, - 'i', 389, - 'o', 293, - 'x', 433, - '{', 1502, - '|', 1455, - '}', 1503, + '!', 1722, + '"', 1689, + '#', 2193, + '\'', 1692, + ')', 1472, + '*', 1515, + '+', 706, + '-', 312, + '.', 1731, + ';', 1455, + 'I', 813, + 'N', 809, + '[', 1469, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(575); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); END_STATE(); case 576: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1721, - '#', 2192, - '(', 1470, - ')', 1471, - '-', 301, - '.', 1726, - ':', 1716, - ';', 1454, - '=', 678, - '>', 1483, - '?', 1720, - '[', 1468, - 'a', 423, - 'e', 292, - 'i', 389, - 'o', 293, - 'x', 433, - '{', 1502, - '|', 1455, - '}', 1503, + '!', 1722, + '#', 2193, + '(', 1471, + ')', 1472, + '-', 302, + '.', 1724, + ':', 1717, + ';', 1455, + '=', 679, + '>', 1484, + '?', 1721, + '[', 1469, + 'a', 424, + 'e', 293, + 'i', 390, + 'o', 294, + 'x', 434, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(575); + lookahead == ' ') SKIP(576); END_STATE(); case 577: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1721, - '#', 2192, - ')', 1471, - '.', 1726, - ';', 1454, - '=', 1733, - '?', 1720, - 'e', 1377, - 'o', 1378, - '|', 1455, - '}', 1503, - '\t', 1453, - ' ', 1453, + '!', 1722, + '#', 2193, + '(', 1471, + ')', 1472, + '-', 302, + '.', 1727, + ':', 1717, + ';', 1455, + '=', 679, + '>', 1484, + '?', 1721, + '[', 1469, + 'a', 424, + 'e', 293, + 'i', 390, + 'o', 294, + 'x', 434, + '{', 1503, + '|', 1456, + '}', 1504, ); - if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1450); + if (lookahead == '\t' || + lookahead == ' ') SKIP(576); END_STATE(); case 578: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, '!', 1722, - '#', 2192, - '$', 1513, - '\'', 1694, - '(', 1564, - ')', 1471, - '*', 1516, - '+', 1581, - '-', 1499, - '.', 1726, - '/', 1571, - ':', 1716, - ';', 1454, - '<', 1553, - '=', 677, - '>', 1484, - '?', 1720, - '@', 1465, - ']', 1469, - '`', 1698, - 'a', 423, - 'b', 402, - 'c', 354, - 'd', 377, - 'e', 288, - 'h', 347, - 'i', 424, - 'l', 401, - 'm', 438, - 'n', 436, - 'o', 283, - 's', 487, - 'x', 433, - '{', 1502, - '|', 1455, - '}', 1503, + '#', 2193, + ')', 1472, + '.', 1727, + ';', 1455, + '=', 1734, + '?', 1721, + 'e', 1378, + 'o', 1379, + '|', 1456, + '}', 1504, + '\t', 1454, + ' ', 1454, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(581); + if (set_contains(sym_long_flag_identifier_character_set_1, 686, lookahead)) ADVANCE(1451); END_STATE(); case 579: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1722, - '#', 2192, - '(', 1564, - ')', 1471, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1726, - '/', 1570, - ':', 1716, - ';', 1454, - '<', 1553, - '=', 325, - '>', 1484, - '?', 1720, - 'B', 1656, - 'E', 337, - 'G', 337, - 'K', 337, - 'M', 337, - 'P', 337, - 'T', 337, - '[', 1668, - 'a', 423, - 'b', 1658, - 'd', 349, - 'e', 286, - 'g', 336, + '!', 1723, + '#', 2193, + '$', 1514, + '\'', 1695, + '(', 1565, + ')', 1472, + '*', 1517, + '+', 1582, + '-', 1500, + '.', 1727, + '/', 1572, + ':', 1717, + ';', 1455, + '<', 1554, + '=', 678, + '>', 1485, + '?', 1721, + '@', 1466, + ']', 1470, + '`', 1699, + 'a', 424, + 'b', 403, + 'c', 355, + 'd', 378, + 'e', 289, 'h', 348, - 'i', 389, - 'k', 336, - 'l', 401, - 'm', 338, + 'i', 425, + 'l', 402, + 'm', 439, 'n', 437, - 'o', 283, - 'p', 336, - 's', 379, - 't', 336, - 'u', 470, - 'w', 410, - 'x', 433, - '{', 1502, - '|', 1455, - '}', 1503, - 0xb5, 470, + 'o', 284, + 's', 488, + 'x', 434, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(580); + lookahead == ' ') SKIP(582); END_STATE(); case 580: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1722, - '#', 2192, - ')', 1471, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1723, - '/', 1570, - ':', 1716, - ';', 1454, - '<', 1553, - '=', 325, - '>', 1484, - '?', 1720, - 'a', 423, - 'b', 402, - 'e', 289, - 'h', 347, - 'i', 389, - 'l', 401, - 'm', 438, - 'n', 436, - 'o', 283, - 's', 487, - 'x', 433, - '{', 1502, - '|', 1455, - '}', 1503, + '!', 1723, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1727, + '/', 1571, + ':', 1717, + ';', 1455, + '<', 1554, + '=', 326, + '>', 1485, + '?', 1721, + 'B', 1657, + 'E', 338, + 'G', 338, + 'K', 338, + 'M', 338, + 'P', 338, + 'T', 338, + '[', 1669, + 'a', 424, + 'b', 1659, + 'd', 350, + 'e', 287, + 'g', 337, + 'h', 349, + 'i', 390, + 'k', 337, + 'l', 402, + 'm', 339, + 'n', 438, + 'o', 284, + 'p', 337, + 's', 380, + 't', 337, + 'u', 471, + 'w', 411, + 'x', 434, + '{', 1503, + '|', 1456, + '}', 1504, + 0xb5, 471, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(580); + lookahead == ' ') SKIP(581); END_STATE(); case 581: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1722, - '#', 2192, - ')', 1471, + '!', 1723, + '#', 2193, + ')', 1472, '*', 1516, - '+', 1581, - '-', 1499, - '.', 1723, + '+', 1579, + '-', 1491, + '.', 1724, '/', 1571, - ':', 1716, - ';', 1454, - '<', 1553, - '=', 677, - '>', 1484, - '?', 1720, - '@', 1465, - ']', 1469, - 'a', 423, - 'b', 402, - 'c', 354, - 'd', 377, - 'e', 288, - 'h', 347, - 'i', 424, - 'l', 401, - 'm', 438, - 'n', 436, - 'o', 283, - 's', 487, - 'x', 433, - '{', 1502, - '|', 1455, - '}', 1503, + ':', 1717, + ';', 1455, + '<', 1554, + '=', 326, + '>', 1485, + '?', 1721, + 'a', 424, + 'b', 403, + 'e', 290, + 'h', 348, + 'i', 390, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 284, + 's', 488, + 'x', 434, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(581); END_STATE(); case 582: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '$', 1473, - '(', 1564, - ')', 1471, - '*', 1515, - '+', 1579, - '-', 1497, - '.', 1607, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 1799, - '>', 1484, - '_', 1817, - 'a', 1869, - 'b', 1856, - 'e', 1776, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1767, - 's', 1903, - 'x', 1875, - '{', 1502, - '|', 1455, - '}', 1503, + '!', 1723, + '#', 2193, + ')', 1472, + '*', 1517, + '+', 1582, + '-', 1500, + '.', 1724, + '/', 1572, + ':', 1717, + ';', 1455, + '<', 1554, + '=', 678, + '>', 1485, + '?', 1721, + '@', 1466, + ']', 1470, + 'a', 424, + 'b', 403, + 'c', 355, + 'd', 378, + 'e', 289, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 284, + 's', 488, + 'x', 434, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(614); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(1938); + lookahead == ' ') SKIP(582); END_STATE(); case 583: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '$', 1473, - '(', 1564, - ')', 1471, - '*', 1515, - '+', 1579, - '-', 1497, - '.', 1607, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 1799, - '>', 1484, - '_', 1817, - 'a', 1869, - 'b', 1856, - 'e', 1780, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1782, - 's', 1903, - 'x', 1875, - '|', 1455, - '}', 1503, + '!', 1798, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1580, + '-', 1498, + '.', 1608, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + '_', 1818, + 'a', 1870, + 'b', 1857, + 'e', 1777, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1768, + 's', 1904, + 'x', 1876, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(616); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); + lookahead == ' ') SKIP(615); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '_' || 'b' < lookahead)) ADVANCE(1939); END_STATE(); case 584: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '$', 1473, - '(', 1564, - ')', 1471, - '*', 1515, - '+', 1579, - '-', 1497, - '.', 1819, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 1799, - '>', 1484, - '_', 1817, - 'a', 1869, - 'b', 1856, - 'e', 1776, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1767, - 's', 1903, - 'x', 1875, - '|', 1455, - '}', 1503, + '!', 1798, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1580, + '-', 1498, + '.', 1608, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + '_', 1818, + 'a', 1870, + 'b', 1857, + 'e', 1781, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1783, + 's', 1904, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(615); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); + lookahead == ' ') SKIP(617); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); case 585: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '$', 1473, - '(', 1564, - ')', 1471, - '*', 1515, - '+', 1579, - '-', 1497, - '.', 1819, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 1799, - '>', 1484, - '_', 1817, - 'a', 1869, - 'b', 1856, - 'e', 1780, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1782, - 's', 1903, - 'x', 1875, - '|', 1455, - '}', 1503, + '!', 1798, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1580, + '-', 1498, + '.', 1820, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + '_', 1818, + 'a', 1870, + 'b', 1857, + 'e', 1777, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1768, + 's', 1904, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(616); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); case 586: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - ')', 1471, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1598, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 1799, - '>', 1484, - 'B', 1656, - 'E', 1811, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - 'a', 1869, - 'b', 1659, - 'd', 1828, - 'e', 1768, - 'g', 1813, - 'h', 1826, - 'i', 1867, - 'k', 1813, - 'l', 1855, - 'm', 1815, - 'n', 1876, - 'o', 1767, - 'p', 1813, - 's', 1842, - 't', 1813, - 'u', 1895, - 'w', 1862, - 'x', 1875, - '|', 1455, - '}', 1503, - 0xb5, 1895, + '!', 1798, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1580, + '-', 1498, + '.', 1820, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + '_', 1818, + 'a', 1870, + 'b', 1857, + 'e', 1781, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1783, + 's', 1904, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == ' ') SKIP(617); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); case 587: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - ')', 1471, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1598, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 1799, - '>', 1484, - 'B', 1656, - 'E', 1811, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - 'a', 1869, - 'b', 1659, - 'd', 1828, - 'e', 1770, - 'g', 1813, - 'h', 1826, - 'i', 1867, - 'k', 1813, - 'l', 1855, - 'm', 1815, - 'n', 1876, - 'o', 1782, - 'p', 1813, - 's', 1842, - 't', 1813, - 'u', 1895, - 'w', 1862, - 'x', 1875, - '|', 1455, - '}', 1503, - 0xb5, 1895, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1599, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'B', 1657, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'a', 1870, + 'b', 1660, + 'd', 1829, + 'e', 1769, + 'g', 1814, + 'h', 1827, + 'i', 1868, + 'k', 1814, + 'l', 1856, + 'm', 1816, + 'n', 1877, + 'o', 1768, + 'p', 1814, + 's', 1843, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + '|', 1456, + '}', 1504, + 0xb5, 1896, ); if (lookahead == '\t' || lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 588: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - ')', 1471, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1598, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 1799, - '>', 1484, - 'E', 1823, - 'a', 1869, - 'b', 1856, - 'e', 1769, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1599, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'B', 1657, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'a', 1870, + 'b', 1660, + 'd', 1829, + 'e', 1771, + 'g', 1814, 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, + 'i', 1868, + 'k', 1814, + 'l', 1856, + 'm', 1816, 'n', 1877, - 'o', 1767, - 's', 1903, - 'x', 1875, - '{', 1502, - '|', 1455, - '}', 1503, + 'o', 1783, + 'p', 1814, + 's', 1843, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + '|', 1456, + '}', 1504, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1938); + lookahead == ' ') SKIP(621); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 589: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - ')', 1471, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1598, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 1799, - '>', 1484, - 'E', 1823, - 'a', 1869, - 'b', 1856, - 'e', 1772, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1782, - 's', 1903, - 'x', 1875, - '|', 1455, - '}', 1503, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1599, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + 'a', 1870, + 'b', 1857, + 'e', 1770, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1768, + 's', 1904, + 'x', 1876, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == ' ') SKIP(619); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1939); END_STATE(); case 590: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - ')', 1471, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1794, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 1799, - '>', 1484, - 'B', 1656, - 'E', 1811, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - '_', 1817, - 'a', 1869, - 'b', 1659, - 'd', 1828, - 'e', 1768, - 'g', 1813, - 'h', 1826, - 'i', 1867, - 'k', 1813, - 'l', 1855, - 'm', 1815, - 'n', 1876, - 'o', 1767, - 'p', 1813, - 's', 1842, - 't', 1813, - 'u', 1895, - 'w', 1862, - 'x', 1875, - '|', 1455, - '}', 1503, - 0xb5, 1895, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1599, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + 'a', 1870, + 'b', 1857, + 'e', 1773, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1783, + 's', 1904, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == ' ') SKIP(621); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 591: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - ')', 1471, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1794, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 1799, - '>', 1484, - 'B', 1656, - 'E', 1811, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - '_', 1817, - 'a', 1869, - 'b', 1659, - 'd', 1828, - 'e', 1770, - 'g', 1813, - 'h', 1826, - 'i', 1867, - 'k', 1813, - 'l', 1855, - 'm', 1815, - 'n', 1876, - 'o', 1782, - 'p', 1813, - 's', 1842, - 't', 1813, - 'u', 1895, - 'w', 1862, - 'x', 1875, - '|', 1455, - '}', 1503, - 0xb5, 1895, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'B', 1657, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + '_', 1818, + 'a', 1870, + 'b', 1660, + 'd', 1829, + 'e', 1769, + 'g', 1814, + 'h', 1827, + 'i', 1868, + 'k', 1814, + 'l', 1856, + 'm', 1816, + 'n', 1877, + 'o', 1768, + 'p', 1814, + 's', 1843, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + '|', 1456, + '}', 1504, + 0xb5, 1896, ); if (lookahead == '\t' || lookahead == ' ') SKIP(620); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 592: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - ')', 1471, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1794, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 1799, - '>', 1484, - 'B', 1656, - 'E', 1811, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - 'a', 1869, - 'b', 1659, - 'd', 1828, - 'e', 1768, - 'g', 1813, - 'h', 1826, - 'i', 1867, - 'k', 1813, - 'l', 1855, - 'm', 1815, - 'n', 1876, - 'o', 1767, - 'p', 1813, - 's', 1842, - 't', 1813, - 'u', 1895, - 'w', 1862, - 'x', 1875, - '|', 1455, - '}', 1503, - 0xb5, 1895, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'B', 1657, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + '_', 1818, + 'a', 1870, + 'b', 1660, + 'd', 1829, + 'e', 1771, + 'g', 1814, + 'h', 1827, + 'i', 1868, + 'k', 1814, + 'l', 1856, + 'm', 1816, + 'n', 1877, + 'o', 1783, + 'p', 1814, + 's', 1843, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + '|', 1456, + '}', 1504, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == ' ') SKIP(621); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 593: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - ')', 1471, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1794, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 1799, - '>', 1484, - 'B', 1656, - 'E', 1811, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - 'a', 1869, - 'b', 1659, - 'd', 1828, - 'e', 1770, - 'g', 1813, - 'h', 1826, - 'i', 1867, - 'k', 1813, - 'l', 1855, - 'm', 1815, - 'n', 1876, - 'o', 1782, - 'p', 1813, - 's', 1842, - 't', 1813, - 'u', 1895, - 'w', 1862, - 'x', 1875, - '|', 1455, - '}', 1503, - 0xb5, 1895, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'B', 1657, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'a', 1870, + 'b', 1660, + 'd', 1829, + 'e', 1769, + 'g', 1814, + 'h', 1827, + 'i', 1868, + 'k', 1814, + 'l', 1856, + 'm', 1816, + 'n', 1877, + 'o', 1768, + 'p', 1814, + 's', 1843, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + '|', 1456, + '}', 1504, + 0xb5, 1896, ); if (lookahead == '\t' || lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 594: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - ')', 1471, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1794, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 1799, - '>', 1484, - 'B', 1656, - 'E', 1814, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - 'a', 1869, - 'b', 1659, - 'd', 1828, - 'e', 1775, - 'g', 1813, - 'h', 1826, - 'i', 1867, - 'k', 1813, - 'l', 1855, - 'm', 1815, - 'n', 1876, - 'o', 1767, - 'p', 1813, - 's', 1842, - 't', 1813, - 'u', 1895, - 'w', 1862, - 'x', 1875, - '|', 1455, - '}', 1503, - 0xb5, 1895, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'B', 1657, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'a', 1870, + 'b', 1660, + 'd', 1829, + 'e', 1771, + 'g', 1814, + 'h', 1827, + 'i', 1868, + 'k', 1814, + 'l', 1856, + 'm', 1816, + 'n', 1877, + 'o', 1783, + 'p', 1814, + 's', 1843, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + '|', 1456, + '}', 1504, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == ' ') SKIP(621); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 595: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - ')', 1471, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1794, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 1799, - '>', 1484, - 'B', 1656, - 'E', 1814, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - 'a', 1869, - 'b', 1659, - 'd', 1828, - 'e', 1778, - 'g', 1813, - 'h', 1826, - 'i', 1867, - 'k', 1813, - 'l', 1855, - 'm', 1815, - 'n', 1876, - 'o', 1782, - 'p', 1813, - 's', 1842, - 't', 1813, - 'u', 1895, - 'w', 1862, - 'x', 1875, - '|', 1455, - '}', 1503, - 0xb5, 1895, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'B', 1657, + 'E', 1815, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'a', 1870, + 'b', 1660, + 'd', 1829, + 'e', 1776, + 'g', 1814, + 'h', 1827, + 'i', 1868, + 'k', 1814, + 'l', 1856, + 'm', 1816, + 'n', 1877, + 'o', 1768, + 'p', 1814, + 's', 1843, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + '|', 1456, + '}', 1504, + 0xb5, 1896, ); if (lookahead == '\t' || lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 596: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - ')', 1471, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1794, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 1799, - '>', 1484, - 'E', 1823, - '_', 1817, - 'a', 1869, - 'b', 1856, - 'e', 1769, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'B', 1657, + 'E', 1815, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'a', 1870, + 'b', 1660, + 'd', 1829, + 'e', 1779, + 'g', 1814, 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, + 'i', 1868, + 'k', 1814, + 'l', 1856, + 'm', 1816, 'n', 1877, - 'o', 1767, - 's', 1903, - 'x', 1875, - '{', 1502, - '|', 1455, - '}', 1503, + 'o', 1783, + 'p', 1814, + 's', 1843, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + '|', 1456, + '}', 1504, + 0xb5, 1896, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + lookahead == ' ') SKIP(621); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); + END_STATE(); + case 597: + if (eof) ADVANCE(665); + ADVANCE_MAP( + '\n', 1452, + '\r', 9, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + '_', 1818, + 'a', 1870, + 'b', 1857, + 'e', 1770, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1768, + 's', 1904, + 'x', 1876, + '{', 1503, + '|', 1456, + '}', 1504, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(619); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(1938); + (lookahead < '_' || 'b' < lookahead)) ADVANCE(1939); END_STATE(); - case 597: - if (eof) ADVANCE(664); + case 598: + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - ')', 1471, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1794, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 1799, - '>', 1484, - 'E', 1823, - '_', 1817, - 'a', 1869, - 'b', 1856, - 'e', 1772, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1782, - 's', 1903, - 'x', 1875, - '|', 1455, - '}', 1503, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + '_', 1818, + 'a', 1870, + 'b', 1857, + 'e', 1773, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1783, + 's', 1904, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == ' ') SKIP(621); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); - case 598: - if (eof) ADVANCE(664); + case 599: + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - ')', 1471, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1794, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 1799, - '>', 1484, - 'E', 1823, - 'a', 1869, - 'b', 1856, - 'e', 1769, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1767, - 's', 1903, - 'x', 1875, - '{', 1502, - '|', 1455, - '}', 1503, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + 'a', 1870, + 'b', 1857, + 'e', 1770, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1768, + 's', 1904, + 'x', 1876, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); + lookahead == ' ') SKIP(619); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1938); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1939); END_STATE(); - case 599: - if (eof) ADVANCE(664); + case 600: + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - ')', 1471, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1794, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 1799, - '>', 1484, - 'E', 1823, - 'a', 1869, - 'b', 1856, - 'e', 1772, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1782, - 's', 1903, - 'x', 1875, - '|', 1455, - '}', 1503, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + 'a', 1870, + 'b', 1857, + 'e', 1773, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1783, + 's', 1904, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == ' ') SKIP(621); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); - case 600: - if (eof) ADVANCE(664); + case 601: + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - ')', 1471, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1794, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 1799, - '>', 1484, - 'a', 1869, - 'b', 1856, - 'e', 1776, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1767, - 's', 1903, - 'x', 1875, - '{', 1502, - '|', 1455, - '}', 1503, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'a', 1870, + 'b', 1857, + 'e', 1777, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1768, + 's', 1904, + 'x', 1876, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); + lookahead == ' ') SKIP(619); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1938); - END_STATE(); - case 601: - if (eof) ADVANCE(664); - ADVANCE_MAP( - '\n', 1451, - '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - ')', 1471, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1794, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 1799, - '>', 1484, - 'a', 1869, - 'b', 1856, - 'e', 1780, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1782, - 's', 1903, - 'x', 1875, - '|', 1455, - '}', 1503, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1939); END_STATE(); case 602: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - ')', 1471, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1597, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 1799, - '>', 1484, - 'E', 1823, - 'a', 1869, - 'b', 1856, - 'e', 1769, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1767, - 's', 1903, - 'x', 1875, - '|', 1455, - '}', 1503, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1795, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'a', 1870, + 'b', 1857, + 'e', 1781, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1783, + 's', 1904, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == ' ') SKIP(621); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 603: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - ')', 1471, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1597, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 1799, - '>', 1484, - 'E', 1823, - 'a', 1869, - 'b', 1856, - 'e', 1772, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1782, - 's', 1903, - 'x', 1875, - '|', 1455, - '}', 1503, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1598, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + 'a', 1870, + 'b', 1857, + 'e', 1770, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1768, + 's', 1904, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 604: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - ')', 1471, - '*', 1515, - '+', 1578, - '-', 1490, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 1799, - '>', 1484, - 'E', 1823, - '_', 1817, - 'a', 1869, - 'b', 1856, - 'e', 1769, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1767, - 's', 1903, - 'x', 1875, - '|', 1455, - '}', 1503, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1598, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + 'a', 1870, + 'b', 1857, + 'e', 1773, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1783, + 's', 1904, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == ' ') SKIP(621); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 605: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - ')', 1471, - '*', 1515, - '+', 1578, - '-', 1490, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 1799, - '>', 1484, - 'E', 1823, - '_', 1817, - 'a', 1869, - 'b', 1856, - 'e', 1772, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1782, - 's', 1903, - 'x', 1875, - '|', 1455, - '}', 1503, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + '_', 1818, + 'a', 1870, + 'b', 1857, + 'e', 1770, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1768, + 's', 1904, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(620); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 606: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - ')', 1471, - '*', 1515, - '+', 1578, - '-', 1490, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 1799, - '>', 1484, - 'E', 1823, - 'a', 1869, - 'b', 1856, - 'e', 1769, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1767, - 's', 1903, - 'x', 1875, - '|', 1455, - '}', 1503, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + '_', 1818, + 'a', 1870, + 'b', 1857, + 'e', 1773, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1783, + 's', 1904, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(619); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == ' ') SKIP(621); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 607: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - ')', 1471, - '*', 1515, - '+', 1578, - '-', 1490, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 1799, - '>', 1484, - 'E', 1823, - 'a', 1869, - 'b', 1856, - 'e', 1772, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1782, - 's', 1903, - 'x', 1875, - '|', 1455, - '}', 1503, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + 'a', 1870, + 'b', 1857, + 'e', 1770, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1768, + 's', 1904, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 608: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - ')', 1471, - '*', 1515, - '+', 1578, - '-', 1490, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 1799, - '>', 1484, - 'a', 1869, - 'b', 1856, - 'e', 1776, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1767, - 's', 1903, - 'x', 1875, - '{', 1502, - '|', 1455, - '}', 1503, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'E', 1824, + 'a', 1870, + 'b', 1857, + 'e', 1773, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1783, + 's', 1904, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(618); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '#' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - lookahead != '[' && - lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(1938); + lookahead == ' ') SKIP(621); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 609: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1797, - '#', 2192, - '(', 1564, - ')', 1471, - '*', 1515, - '+', 1578, - '-', 1490, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 1799, - '>', 1484, - 'a', 1869, - 'b', 1856, - 'e', 1780, - 'h', 1827, - 'i', 1867, - 'l', 1855, - 'm', 1878, - 'n', 1877, - 'o', 1782, - 's', 1903, - 'x', 1875, - '|', 1455, - '}', 1503, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'a', 1870, + 'b', 1857, + 'e', 1777, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1768, + 's', 1904, + 'x', 1876, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == ' ') SKIP(619); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '#' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + lookahead != '[' && + lookahead != ']' && + (lookahead < '`' || 'b' < lookahead)) ADVANCE(1939); END_STATE(); case 610: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 855, - '#', 2195, - ')', 1471, - '*', 1517, - '+', 1582, - '-', 1500, - '/', 1572, - ':', 1716, - ';', 1454, - '<', 1553, - '=', 326, - '>', 1484, - 'a', 939, - 'b', 921, - 'e', 832, - 'h', 878, - 'i', 940, - 'l', 920, - 'm', 952, - 'n', 953, - 'o', 831, - 's', 998, - 'x', 951, - '|', 1455, - '}', 1503, + '!', 1798, + '#', 2193, + '(', 1565, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 1800, + '>', 1485, + 'a', 1870, + 'b', 1857, + 'e', 1781, + 'h', 1828, + 'i', 1868, + 'l', 1856, + 'm', 1879, + 'n', 1878, + 'o', 1783, + 's', 1904, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(617); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1049); + lookahead == ' ') SKIP(621); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 611: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 855, - '#', 2195, - ')', 1471, - '*', 1517, - '+', 1582, - '-', 1500, - '/', 1572, - ';', 1454, - '<', 1553, - '=', 326, - '>', 1484, - 'a', 939, - 'b', 921, - 'e', 836, - 'h', 878, - 'i', 940, - 'l', 920, - 'm', 952, - 'n', 953, - 'o', 835, - 's', 998, - 'x', 951, - '|', 1455, - '}', 1503, + '!', 856, + '#', 2196, + ')', 1472, + '*', 1518, + '+', 1583, + '-', 1501, + '/', 1573, + ':', 1717, + ';', 1455, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 940, + 'b', 922, + 'e', 833, + 'h', 879, + 'i', 941, + 'l', 921, + 'm', 953, + 'n', 954, + 'o', 832, + 's', 999, + 'x', 952, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(620); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1049); + lookahead == ' ') SKIP(618); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1050); END_STATE(); case 612: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 324, - '#', 2192, - '$', 1473, - '(', 1470, - ')', 1471, - '*', 1515, - '+', 1578, - '-', 1490, - '.', 1597, - '/', 1570, - ':', 1466, - ';', 1454, - '<', 1553, - '=', 325, - '>', 1484, - 'E', 343, - '[', 1468, - 'a', 423, - 'b', 402, - 'c', 354, - 'e', 284, - 'f', 350, - 'h', 347, - 'i', 389, - 'l', 401, - 'm', 438, - 'n', 443, - 'o', 283, - 's', 487, - 't', 458, - 'x', 433, - '{', 1502, - '|', 1455, - '}', 1503, + '!', 856, + '#', 2196, + ')', 1472, + '*', 1518, + '+', 1583, + '-', 1501, + '/', 1573, + ';', 1455, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 940, + 'b', 922, + 'e', 837, + 'h', 879, + 'i', 941, + 'l', 921, + 'm', 953, + 'n', 954, + 'o', 836, + 's', 999, + 'x', 952, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(613); + lookahead == ' ') SKIP(621); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1050); END_STATE(); case 613: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 324, - '#', 2192, - '$', 1473, - '(', 1470, - ')', 1471, - '*', 1515, - '+', 1578, - '-', 1490, - '/', 1570, - ':', 1466, - ';', 1454, - '<', 1553, - '=', 325, - '>', 1484, - '[', 1468, - 'a', 423, - 'b', 402, - 'c', 354, - 'e', 287, - 'f', 350, - 'h', 347, - 'i', 389, - 'l', 401, - 'm', 438, - 'n', 443, - 'o', 283, - 's', 487, - 't', 458, - 'x', 433, - '{', 1502, - '|', 1455, - '}', 1503, + '!', 325, + '#', 2193, + '$', 1474, + '(', 1471, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '.', 1598, + '/', 1571, + ':', 1467, + ';', 1455, + '<', 1554, + '=', 326, + '>', 1485, + 'E', 344, + '[', 1469, + 'a', 424, + 'b', 403, + 'c', 355, + 'e', 285, + 'f', 351, + 'h', 348, + 'i', 390, + 'l', 402, + 'm', 439, + 'n', 444, + 'o', 284, + 's', 488, + 't', 459, + 'x', 434, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(613); + lookahead == ' ') SKIP(614); END_STATE(); case 614: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 324, - '#', 2192, - '$', 1473, - ')', 1471, - '*', 1515, - '+', 1580, - '-', 1498, - '.', 340, - '/', 1570, - ';', 1454, - '<', 1553, + '!', 325, + '#', 2193, + '$', 1474, + '(', 1471, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + ':', 1467, + ';', 1455, + '<', 1554, '=', 326, - '>', 1484, - 'a', 423, - 'b', 402, - 'e', 289, - 'h', 347, - 'i', 424, - 'l', 401, - 'm', 438, - 'n', 436, - 'o', 283, - 's', 487, - 'x', 433, - '{', 1502, - '|', 1455, - '}', 1503, + '>', 1485, + '[', 1469, + 'a', 424, + 'b', 403, + 'c', 355, + 'e', 288, + 'f', 351, + 'h', 348, + 'i', 390, + 'l', 402, + 'm', 439, + 'n', 444, + 'o', 284, + 's', 488, + 't', 459, + 'x', 434, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(614); END_STATE(); case 615: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 324, - '#', 2192, - '$', 1473, - ')', 1471, - '*', 1515, - '+', 1580, - '-', 1498, - '.', 340, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 326, - '>', 1484, - 'a', 423, - 'b', 402, - 'e', 289, - 'h', 347, - 'i', 424, - 'l', 401, - 'm', 438, - 'n', 436, - 'o', 283, - 's', 487, - 'x', 433, - '|', 1455, - '}', 1503, + '!', 325, + '#', 2193, + '$', 1474, + ')', 1472, + '*', 1516, + '+', 1581, + '-', 1499, + '.', 341, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 290, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 284, + 's', 488, + 'x', 434, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(615); END_STATE(); case 616: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 324, - '#', 2192, - '$', 1473, - ')', 1471, - '*', 1515, - '+', 1580, - '-', 1498, - '.', 340, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 326, - '>', 1484, - 'a', 423, - 'b', 402, - 'e', 291, - 'h', 347, - 'i', 424, - 'l', 401, - 'm', 438, - 'n', 436, - 'o', 293, - 's', 487, - 'x', 433, - '|', 1455, - '}', 1503, + '!', 325, + '#', 2193, + '$', 1474, + ')', 1472, + '*', 1516, + '+', 1581, + '-', 1499, + '.', 341, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 290, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 284, + 's', 488, + 'x', 434, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(616); END_STATE(); case 617: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 324, - '#', 2192, - ')', 1471, - '*', 1515, - '+', 1578, - '-', 1490, - '/', 1570, - ':', 1716, - ';', 1454, - '<', 1553, - '=', 326, - '>', 1484, - 'a', 423, - 'b', 402, - 'e', 289, - 'h', 347, - 'i', 424, - 'l', 401, - 'm', 438, - 'n', 436, - 'o', 283, - 's', 487, - 'x', 433, - '|', 1455, - '}', 1503, + '!', 325, + '#', 2193, + '$', 1474, + ')', 1472, + '*', 1516, + '+', 1581, + '-', 1499, + '.', 341, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 292, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 294, + 's', 488, + 'x', 434, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(617); END_STATE(); case 618: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 324, - '#', 2192, - ')', 1471, - '*', 1515, - '+', 1578, - '-', 1490, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 326, - '>', 1484, - 'a', 423, - 'b', 402, - 'e', 289, - 'h', 347, - 'i', 424, - 'l', 401, - 'm', 438, - 'n', 436, - 'o', 283, - 's', 487, - 'x', 433, - '{', 1502, - '|', 1455, - '}', 1503, + '!', 325, + '#', 2193, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + ':', 1717, + ';', 1455, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 290, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 284, + 's', 488, + 'x', 434, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(618); END_STATE(); case 619: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 324, - '#', 2192, - ')', 1471, - '*', 1515, - '+', 1578, - '-', 1490, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 326, - '>', 1484, - 'a', 423, - 'b', 402, - 'e', 289, - 'h', 347, - 'i', 424, - 'l', 401, - 'm', 438, - 'n', 436, - 'o', 283, - 's', 487, - 'x', 433, - '|', 1455, - '}', 1503, + '!', 325, + '#', 2193, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 290, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 284, + 's', 488, + 'x', 434, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(619); END_STATE(); case 620: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 324, - '#', 2192, - ')', 1471, - '*', 1515, - '+', 1578, - '-', 1490, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 326, - '>', 1484, - 'a', 423, - 'b', 402, - 'e', 291, - 'h', 347, - 'i', 424, - 'l', 401, - 'm', 438, - 'n', 436, - 'o', 293, - 's', 487, - 'x', 433, - '|', 1455, - '}', 1503, + '!', 325, + '#', 2193, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 290, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 284, + 's', 488, + 'x', 434, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(620); END_STATE(); case 621: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 324, - '#', 2192, - '*', 1515, - '+', 1578, - '-', 1490, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 326, - '>', 1484, - 'a', 423, - 'b', 402, - 'e', 289, - 'h', 347, - 'i', 424, - 'l', 401, - 'm', 438, - 'n', 436, - 'o', 283, - 's', 487, - 'x', 433, - '|', 1455, + '!', 325, + '#', 2193, + ')', 1472, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 292, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 294, + 's', 488, + 'x', 434, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || lookahead == ' ') SKIP(621); END_STATE(); case 622: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 324, - '#', 2192, - '*', 1515, - '+', 1578, - '-', 1490, - '/', 1570, - ';', 1454, - '<', 1553, - '=', 326, - '>', 1484, - 'a', 423, - 'b', 402, - 'e', 291, - 'h', 347, - 'i', 424, - 'l', 401, - 'm', 438, - 'n', 436, - 'o', 293, - 's', 487, - 'x', 433, - '|', 1455, + '!', 325, + '#', 2193, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 290, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 284, + 's', 488, + 'x', 434, + '|', 1456, ); if (lookahead == '\t' || lookahead == ' ') SKIP(622); END_STATE(); case 623: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '"', 1688, - '#', 2192, - '$', 1474, - '\'', 1691, - '(', 1470, - ')', 1619, - '+', 705, - '-', 1495, - '.', 700, - '0', 1626, - ':', 1466, - ';', 1454, - '=', 676, - '@', 1465, - 'I', 812, - 'N', 808, - '[', 1468, - '^', 1735, - '_', 719, - '`', 1695, - 'a', 757, - 'c', 724, - 'd', 734, - 'e', 762, - 'f', 726, - 'i', 718, - 'l', 742, - 'm', 728, - 'n', 772, - 't', 775, - 'u', 788, - 'w', 750, - '{', 1502, - '|', 1455, - '}', 1503, + '!', 325, + '#', 2193, + '*', 1516, + '+', 1579, + '-', 1491, + '/', 1571, + ';', 1455, + '<', 1554, + '=', 327, + '>', 1485, + 'a', 424, + 'b', 403, + 'e', 292, + 'h', 348, + 'i', 425, + 'l', 402, + 'm', 439, + 'n', 437, + 'o', 294, + 's', 488, + 'x', 434, + '|', 1456, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(624); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead)) ADVANCE(827); + lookahead == ' ') SKIP(623); END_STATE(); case 624: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '"', 1688, - '#', 2192, - '$', 1474, - '\'', 1691, - '(', 1470, - ')', 1471, - '+', 705, - '-', 1495, - '.', 700, - '0', 1626, - ':', 1466, - ';', 1454, - '=', 676, - '@', 1465, - 'I', 812, - 'N', 808, - '[', 1468, - '^', 1735, - '_', 719, - '`', 1695, - 'a', 757, - 'c', 724, - 'd', 734, - 'e', 762, - 'f', 726, - 'i', 718, - 'l', 742, - 'm', 728, - 'n', 772, - 't', 775, - 'u', 788, - 'w', 750, - '{', 1502, - '|', 1455, - '}', 1503, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + ')', 1620, + '+', 706, + '-', 1496, + '.', 701, + '0', 1627, + ':', 1467, + ';', 1455, + '=', 677, + '@', 1466, + 'I', 813, + 'N', 809, + '[', 1469, + '^', 1736, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 773, + 't', 776, + 'u', 789, + 'w', 751, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(624); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); + lookahead == ' ') SKIP(625); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'a' < lookahead)) ADVANCE(827); + (lookahead < ']' || 'a' < lookahead)) ADVANCE(828); END_STATE(); case 625: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '"', 1688, - '#', 2192, - '$', 1474, - '\'', 1691, - '(', 1470, - ')', 1471, - '+', 1583, - ',', 1472, - '-', 1495, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + ')', 1472, + '+', 706, + '-', 1496, '.', 701, - '0', 1626, - ':', 1466, - ';', 1454, - '<', 1144, - '=', 327, - '>', 1483, - '@', 1465, - 'I', 812, - 'N', 808, - '[', 1468, - ']', 1469, - '^', 1735, - '_', 719, - '`', 1695, - 'a', 757, - 'c', 724, - 'd', 734, - 'e', 762, - 'f', 726, - 'i', 718, - 'l', 742, - 'm', 728, - 'n', 772, - 't', 775, - 'u', 788, - 'w', 750, - '{', 1502, - '|', 1455, - '}', 1503, + '0', 1627, + ':', 1467, + ';', 1455, + '=', 677, + '@', 1466, + 'I', 813, + 'N', 809, + '[', 1469, + '^', 1736, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 773, + 't', 776, + 'u', 789, + 'w', 751, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(626); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); + lookahead == ' ') SKIP(625); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(827); + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'a' < lookahead)) ADVANCE(828); END_STATE(); case 626: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '"', 1688, - '#', 2192, - '$', 1474, - '\'', 1691, - '(', 1470, - ')', 1471, - '+', 1583, - ',', 1472, - '-', 1495, - '.', 701, - '0', 1626, - ':', 1466, - ';', 1454, - '=', 327, - '>', 1483, - '@', 1465, - 'I', 812, - 'N', 808, - '[', 1468, - ']', 1469, - '^', 1735, - '_', 719, - '`', 1695, - 'a', 757, - 'c', 724, - 'd', 734, - 'e', 762, - 'f', 726, - 'i', 718, - 'l', 742, - 'm', 728, - 'n', 772, - 't', 775, - 'u', 788, - 'w', 750, - '{', 1502, - '|', 1455, - '}', 1503, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + ')', 1472, + '+', 1584, + ',', 1473, + '-', 1496, + '.', 702, + '0', 1627, + ':', 1467, + ';', 1455, + '<', 1145, + '=', 328, + '>', 1484, + '@', 1466, + 'I', 813, + 'N', 809, + '[', 1469, + ']', 1470, + '^', 1736, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 773, + 't', 776, + 'u', 789, + 'w', 751, + '{', 1503, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(626); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); + lookahead == ' ') SKIP(627); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '0' || '>' < lookahead)) ADVANCE(827); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(828); END_STATE(); case 627: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '"', 1688, - '#', 2192, - '$', 1474, - '\'', 1691, - '(', 1470, - ')', 1471, - '+', 2004, - '-', 1492, - '.', 2003, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + ')', 1472, + '+', 1584, + ',', 1473, + '-', 1496, + '.', 702, '0', 1627, - ';', 1454, - 'N', 2051, - '[', 1468, - '_', 2016, - '`', 1695, - 'e', 1993, - 'f', 2019, - 'n', 2047, - 'o', 1994, - 't', 2034, - '{', 1502, - '|', 1455, - '}', 1503, - '\t', 1453, - ' ', 1453, - 'I', 2055, - 'i', 2055, + ':', 1467, + ';', 1455, + '=', 328, + '>', 1484, + '@', 1466, + 'I', 813, + 'N', 809, + '[', 1469, + ']', 1470, + '^', 1736, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 773, + 't', 776, + 'u', 789, + 'w', 751, + '{', 1503, + '|', 1456, + '}', 1504, ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(627); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(2074); + (lookahead < '0' || '>' < lookahead)) ADVANCE(828); END_STATE(); case 628: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '"', 1688, - '#', 2192, - '\'', 1691, - '(', 1470, - ')', 1471, - '*', 1514, - '+', 705, - '-', 302, - '.', 721, - ';', 1454, - '<', 1144, - '=', 676, - '>', 1483, - '@', 1485, - 'I', 812, - 'N', 808, - '[', 1468, - '_', 719, - '`', 1695, - 'a', 757, - 'c', 724, - 'd', 734, - 'e', 762, - 'f', 726, - 'i', 718, - 'l', 742, - 'm', 728, - 'n', 801, - 't', 775, - 'u', 788, - 'w', 754, - '{', 1502, - '}', 1503, + '"', 1689, + '#', 2193, + '$', 1475, + '\'', 1692, + '(', 1471, + ')', 1472, + '+', 2005, + '-', 1493, + '.', 2004, + '0', 1628, + ';', 1455, + 'N', 2052, + '[', 1469, + '_', 2017, + '`', 1696, + 'e', 1994, + 'f', 2020, + 'n', 2048, + 'o', 1995, + 't', 2035, + '{', 1503, + '|', 1456, + '}', 1504, + '\t', 1454, + ' ', 1454, + 'I', 2056, + 'i', 2056, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1644); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ']') ADVANCE(2075); + END_STATE(); + case 629: + if (eof) ADVANCE(665); + ADVANCE_MAP( + '\n', 1452, + '\r', 9, + '"', 1689, + '#', 2193, + '\'', 1692, + '(', 1471, + ')', 1472, + '*', 1515, + '+', 706, + '-', 303, + '.', 722, + ';', 1455, + '<', 1145, + '=', 677, + '>', 1484, + '@', 1486, + 'I', 813, + 'N', 809, + '[', 1469, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, + '{', 1503, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(629); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + lookahead == ' ') SKIP(630); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(827); + (lookahead < '{' || '}' < lookahead)) ADVANCE(828); END_STATE(); - case 629: - if (eof) ADVANCE(664); + case 630: + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '"', 1688, - '#', 2192, - '\'', 1691, - '(', 1470, - ')', 1471, - '*', 1514, - '+', 705, - '-', 302, - '.', 721, - ';', 1454, - '=', 676, - '>', 1483, - 'I', 812, - 'N', 808, - '[', 1468, - '_', 719, - '`', 1695, - 'a', 757, - 'c', 724, - 'd', 734, - 'e', 762, - 'f', 726, - 'i', 718, - 'l', 742, - 'm', 728, - 'n', 801, - 't', 775, - 'u', 788, - 'w', 754, - '{', 1502, - '}', 1503, + '"', 1689, + '#', 2193, + '\'', 1692, + '(', 1471, + ')', 1472, + '*', 1515, + '+', 706, + '-', 303, + '.', 722, + ';', 1455, + '=', 677, + '>', 1484, + 'I', 813, + 'N', 809, + '[', 1469, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, + '{', 1503, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(629); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); + lookahead == ' ') SKIP(630); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); END_STATE(); - case 630: - if (eof) ADVANCE(664); + case 631: + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '"', 1688, - '#', 2192, - '\'', 1691, - ')', 1471, - '*', 1514, - '+', 705, - '-', 311, - '.', 1730, - ';', 1454, - '?', 1720, - 'I', 812, - 'N', 808, - '[', 1468, - '_', 719, - '`', 1695, - 'a', 757, - 'c', 724, - 'd', 734, - 'e', 762, - 'f', 726, - 'i', 718, - 'l', 742, - 'm', 728, - 'n', 801, - 't', 775, - 'u', 788, - 'w', 754, - '}', 1503, + '"', 1689, + '#', 2193, + '\'', 1692, + ')', 1472, + '*', 1515, + '+', 706, + '-', 312, + '.', 1731, + ';', 1455, + '?', 1721, + 'I', 813, + 'N', 809, + '[', 1469, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(630); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + lookahead == ' ') SKIP(631); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(827); + (lookahead < '{' || '}' < lookahead)) ADVANCE(828); END_STATE(); - case 631: - if (eof) ADVANCE(664); + case 632: + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '"', 1688, - '#', 2192, - '\'', 1691, - ')', 1471, - '*', 1514, - '+', 705, - '-', 311, - '.', 1730, - ';', 1454, - 'I', 812, - 'N', 808, - '[', 1468, - '_', 719, - '`', 1695, - 'a', 757, - 'c', 724, - 'd', 734, - 'e', 762, - 'f', 726, - 'i', 718, - 'l', 742, - 'm', 728, - 'n', 801, - 't', 775, - 'u', 788, - 'w', 754, - '}', 1503, + '"', 1689, + '#', 2193, + '\'', 1692, + ')', 1472, + '*', 1515, + '+', 706, + '-', 312, + '.', 1731, + ';', 1455, + 'I', 813, + 'N', 809, + '[', 1469, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 802, + 't', 776, + 'u', 789, + 'w', 755, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(631); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(827); + lookahead == ' ') SKIP(632); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 12, lookahead))) ADVANCE(828); END_STATE(); - case 632: - if (eof) ADVANCE(664); + case 633: + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '"', 1688, - '#', 2194, - '$', 1474, - '\'', 1691, - '(', 1470, - '+', 705, - '-', 1495, - '.', 700, - '0', 1626, - ';', 1454, - '@', 1465, - 'I', 812, - 'N', 808, - '[', 1468, - '^', 1735, - '_', 719, - '`', 1695, - 'a', 757, - 'c', 724, - 'd', 734, - 'e', 762, - 'f', 726, - 'i', 718, - 'l', 742, - 'm', 728, - 'n', 772, - 't', 775, - 'u', 788, - 'w', 750, - '{', 1502, + '"', 1689, + '#', 2195, + '$', 1475, + '\'', 1692, + '(', 1471, + '+', 706, + '-', 1496, + '.', 701, + '0', 1627, + ';', 1455, + '@', 1466, + 'I', 813, + 'N', 809, + '[', 1469, + '^', 1736, + '_', 720, + '`', 1696, + 'a', 758, + 'c', 725, + 'd', 735, + 'e', 763, + 'f', 727, + 'i', 719, + 'l', 743, + 'm', 729, + 'n', 773, + 't', 776, + 'u', 789, + 'w', 751, + '{', 1503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(632); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1642); + lookahead == ' ') SKIP(633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1643); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(827); + (lookahead < '{' || '}' < lookahead)) ADVANCE(828); END_STATE(); - case 633: - if (eof) ADVANCE(664); + case 634: + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '$', 1473, - '(', 1564, - ')', 1471, - '.', 1607, - ';', 1454, - '[', 1668, - '_', 1817, - 'e', 1781, - 'o', 1783, - '|', 1455, - '}', 1503, - '\t', 1453, - ' ', 1453, - '+', 1795, - '-', 1795, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + '.', 1608, + ';', 1455, + '[', 1669, + '_', 1818, + 'e', 1782, + 'o', 1784, + '|', 1456, + '}', 1504, + '\t', 1454, + ' ', 1454, + '+', 1796, + '-', 1796, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && @@ -21496,7749 +21532,7744 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1938); - END_STATE(); - case 634: - if (eof) ADVANCE(664); - ADVANCE_MAP( - '\n', 1451, - '\r', 9, - '#', 2192, - '$', 1473, - '(', 1564, - ')', 1471, - '.', 1607, - ';', 1454, - '_', 1817, - 'a', 1869, - 'e', 1781, - 'o', 1782, - 'x', 1875, - '|', 1455, - '}', 1503, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(637); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1795); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1939); END_STATE(); case 635: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '$', 1473, - '(', 1564, - ')', 1471, - '.', 1819, - ';', 1454, - '_', 1817, - 'a', 1869, - 'e', 1781, - 'o', 1782, - 'x', 1875, - '|', 1455, - '}', 1503, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + '.', 1608, + ';', 1455, + '_', 1818, + 'a', 1870, + 'e', 1782, + 'o', 1783, + 'x', 1876, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(637); + lookahead == ' ') SKIP(638); if (lookahead == '+' || - lookahead == '-') ADVANCE(1795); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); + lookahead == '-') ADVANCE(1796); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); case 636: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '$', 1473, - '(', 1564, - ')', 1471, - '.', 1819, - ';', 1454, - '_', 1817, - 'e', 1781, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + '.', 1820, + ';', 1455, + '_', 1818, + 'a', 1870, + 'e', 1782, 'o', 1783, - '|', 1455, - '}', 1503, - '\t', 1453, - ' ', 1453, - '+', 1795, - '-', 1795, + 'x', 1876, + '|', 1456, + '}', 1504, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1938); + if (lookahead == '\t' || + lookahead == ' ') SKIP(638); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1796); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); case 637: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '$', 1473, - ')', 1471, - '.', 340, - ';', 1454, - 'a', 423, - 'e', 292, - 'o', 293, - 'x', 433, - '|', 1455, - '}', 1503, + '#', 2193, + '$', 1474, + '(', 1565, + ')', 1472, + '.', 1820, + ';', 1455, + '_', 1818, + 'e', 1782, + 'o', 1784, + '|', 1456, + '}', 1504, + '\t', 1454, + ' ', 1454, + '+', 1796, + '-', 1796, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(637); - if (lookahead == '+' || - lookahead == '-') ADVANCE(318); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(1939); END_STATE(); case 638: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1564, - ')', 1471, - '.', 1598, - ';', 1454, - 'E', 1811, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - 'a', 1869, - 'd', 1828, - 'e', 1771, - 'g', 1813, - 'h', 1882, - 'k', 1813, - 'm', 1816, - 'n', 1895, - 'o', 1782, - 'p', 1813, - 's', 1843, - 't', 1813, - 'u', 1895, - 'w', 1862, - 'x', 1875, - '|', 1455, - '}', 1503, - 0xb5, 1895, + '#', 2193, + '$', 1474, + ')', 1472, + '.', 341, + ';', 1455, + 'a', 424, + 'e', 293, + 'o', 294, + 'x', 434, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(663); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == ' ') SKIP(638); + if (lookahead == '+' || + lookahead == '-') ADVANCE(319); END_STATE(); case 639: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1564, - ')', 1471, - '.', 1598, - ';', 1454, - 'E', 1811, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - 'd', 1828, - 'e', 1771, - 'g', 1813, - 'h', 1882, - 'k', 1813, - 'm', 1816, - 'n', 1895, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1599, + ';', 1455, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'a', 1870, + 'd', 1829, + 'e', 1772, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, 'o', 1783, - 'p', 1813, - 's', 1843, - 't', 1813, - 'u', 1895, - 'w', 1862, - '|', 1455, - '}', 1503, - 0xb5, 1895, - '\t', 1453, - ' ', 1453, - 'B', 1656, - 'b', 1656, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + '|', 1456, + '}', 1504, + 0xb5, 1896, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '\t' || + lookahead == ' ') SKIP(664); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 640: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1564, - ')', 1471, - '.', 1598, - ';', 1454, - 'E', 1823, - 'a', 1869, - 'e', 1773, - 'o', 1782, - 'x', 1875, - '|', 1455, - '}', 1503, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1599, + ';', 1455, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'd', 1829, + 'e', 1772, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'o', 1784, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + '|', 1456, + '}', 1504, + 0xb5, 1896, + '\t', 1454, + ' ', 1454, + 'B', 1657, + 'b', 1657, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(663); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 641: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1564, - ')', 1471, - '.', 1598, - ';', 1454, - 'E', 1823, - 'e', 1773, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1599, + ';', 1455, + 'E', 1824, + 'a', 1870, + 'e', 1774, 'o', 1783, - '|', 1455, - '}', 1503, - '\t', 1453, - ' ', 1453, + 'x', 1876, + '|', 1456, + '}', 1504, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '\t' || + lookahead == ' ') SKIP(664); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 642: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1564, - ')', 1471, - '.', 1794, - ';', 1454, - 'E', 1811, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - '_', 1817, - 'a', 1869, - 'd', 1828, - 'e', 1771, - 'g', 1813, - 'h', 1882, - 'k', 1813, - 'm', 1816, - 'n', 1895, - 'o', 1782, - 'p', 1813, - 's', 1843, - 't', 1813, - 'u', 1895, - 'w', 1862, - 'x', 1875, - '|', 1455, - '}', 1503, - 0xb5, 1895, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1599, + ';', 1455, + 'E', 1824, + 'e', 1774, + 'o', 1784, + '|', 1456, + '}', 1504, + '\t', 1454, + ' ', 1454, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(663); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 643: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1564, - ')', 1471, - '.', 1794, - ';', 1454, - 'E', 1811, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - '_', 1817, - 'd', 1828, - 'e', 1771, - 'g', 1813, - 'h', 1882, - 'k', 1813, - 'm', 1816, - 'n', 1895, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1795, + ';', 1455, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + '_', 1818, + 'a', 1870, + 'd', 1829, + 'e', 1772, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, 'o', 1783, - 'p', 1813, - 's', 1843, - 't', 1813, - 'u', 1895, - 'w', 1862, - '|', 1455, - '}', 1503, - 0xb5, 1895, - '\t', 1453, - ' ', 1453, - 'B', 1656, - 'b', 1656, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + '|', 1456, + '}', 1504, + 0xb5, 1896, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '\t' || + lookahead == ' ') SKIP(664); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 644: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1564, - ')', 1471, - '.', 1794, - ';', 1454, - 'E', 1811, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - 'a', 1869, - 'd', 1828, - 'e', 1771, - 'g', 1813, - 'h', 1882, - 'k', 1813, - 'm', 1816, - 'n', 1895, - 'o', 1782, - 'p', 1813, - 's', 1843, - 't', 1813, - 'u', 1895, - 'w', 1862, - 'x', 1875, - '|', 1455, - '}', 1503, - 0xb5, 1895, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1795, + ';', 1455, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + '_', 1818, + 'd', 1829, + 'e', 1772, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'o', 1784, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + '|', 1456, + '}', 1504, + 0xb5, 1896, + '\t', 1454, + ' ', 1454, + 'B', 1657, + 'b', 1657, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(663); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 645: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1564, - ')', 1471, - '.', 1794, - ';', 1454, - 'E', 1811, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - 'd', 1828, - 'e', 1771, - 'g', 1813, - 'h', 1882, - 'k', 1813, - 'm', 1816, - 'n', 1895, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1795, + ';', 1455, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'a', 1870, + 'd', 1829, + 'e', 1772, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, 'o', 1783, - 'p', 1813, - 's', 1843, - 't', 1813, - 'u', 1895, - 'w', 1862, - '|', 1455, - '}', 1503, - 0xb5, 1895, - '\t', 1453, - ' ', 1453, - 'B', 1656, - 'b', 1656, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + '|', 1456, + '}', 1504, + 0xb5, 1896, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '\t' || + lookahead == ' ') SKIP(664); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 646: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1564, - ')', 1471, - '.', 1794, - ';', 1454, - 'E', 1814, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - 'a', 1869, - 'd', 1828, - 'e', 1779, - 'g', 1813, - 'h', 1882, - 'k', 1813, - 'm', 1816, - 'n', 1895, - 'o', 1782, - 'p', 1813, - 's', 1843, - 't', 1813, - 'u', 1895, - 'w', 1862, - 'x', 1875, - '|', 1455, - '}', 1503, - 0xb5, 1895, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1795, + ';', 1455, + 'E', 1812, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'd', 1829, + 'e', 1772, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'o', 1784, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + '|', 1456, + '}', 1504, + 0xb5, 1896, + '\t', 1454, + ' ', 1454, + 'B', 1657, + 'b', 1657, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(663); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 647: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1564, - ')', 1471, - '.', 1794, - ';', 1454, - 'E', 1814, - 'G', 1814, - 'K', 1814, - 'M', 1814, - 'P', 1814, - 'T', 1814, - 'd', 1828, - 'e', 1779, - 'g', 1813, - 'h', 1882, - 'k', 1813, - 'm', 1816, - 'n', 1895, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1795, + ';', 1455, + 'E', 1815, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'a', 1870, + 'd', 1829, + 'e', 1780, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, 'o', 1783, - 'p', 1813, - 's', 1843, - 't', 1813, - 'u', 1895, - 'w', 1862, - '|', 1455, - '}', 1503, - 0xb5, 1895, - '\t', 1453, - ' ', 1453, - 'B', 1656, - 'b', 1656, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + 'x', 1876, + '|', 1456, + '}', 1504, + 0xb5, 1896, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '\t' || + lookahead == ' ') SKIP(664); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 648: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1564, - ')', 1471, - '.', 1794, - ';', 1454, - 'E', 1823, - '_', 1817, - 'a', 1869, - 'e', 1773, - 'o', 1782, - 'x', 1875, - '|', 1455, - '}', 1503, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1795, + ';', 1455, + 'E', 1815, + 'G', 1815, + 'K', 1815, + 'M', 1815, + 'P', 1815, + 'T', 1815, + 'd', 1829, + 'e', 1780, + 'g', 1814, + 'h', 1883, + 'k', 1814, + 'm', 1817, + 'n', 1896, + 'o', 1784, + 'p', 1814, + 's', 1844, + 't', 1814, + 'u', 1896, + 'w', 1863, + '|', 1456, + '}', 1504, + 0xb5, 1896, + '\t', 1454, + ' ', 1454, + 'B', 1657, + 'b', 1657, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 649: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1564, - ')', 1471, - '.', 1794, - ';', 1454, - 'E', 1823, - '_', 1817, - 'e', 1773, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1795, + ';', 1455, + 'E', 1824, + '_', 1818, + 'a', 1870, + 'e', 1774, 'o', 1783, - '|', 1455, - '}', 1503, - '\t', 1453, - ' ', 1453, + 'x', 1876, + '|', 1456, + '}', 1504, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '\t' || + lookahead == ' ') SKIP(664); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 650: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1564, - ')', 1471, - '.', 1794, - ';', 1454, - 'E', 1823, - 'a', 1869, - 'e', 1773, - 'o', 1782, - 'x', 1875, - '|', 1455, - '}', 1503, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1795, + ';', 1455, + 'E', 1824, + '_', 1818, + 'e', 1774, + 'o', 1784, + '|', 1456, + '}', 1504, + '\t', 1454, + ' ', 1454, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(663); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 651: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1564, - ')', 1471, - '.', 1794, - ';', 1454, - 'E', 1823, - 'e', 1773, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1795, + ';', 1455, + 'E', 1824, + 'a', 1870, + 'e', 1774, 'o', 1783, - '|', 1455, - '}', 1503, - '\t', 1453, - ' ', 1453, + 'x', 1876, + '|', 1456, + '}', 1504, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '\t' || + lookahead == ' ') SKIP(664); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 652: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1564, - ')', 1471, - '.', 1794, - ';', 1454, - 'a', 1869, - 'e', 1781, - 'o', 1782, - 'x', 1875, - '|', 1455, - '}', 1503, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1795, + ';', 1455, + 'E', 1824, + 'e', 1774, + 'o', 1784, + '|', 1456, + '}', 1504, + '\t', 1454, + ' ', 1454, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(663); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 653: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1564, - ')', 1471, - '.', 1794, - ';', 1454, - 'e', 1781, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1795, + ';', 1455, + 'a', 1870, + 'e', 1782, 'o', 1783, - '|', 1455, - '}', 1503, - '\t', 1453, - ' ', 1453, + 'x', 1876, + '|', 1456, + '}', 1504, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '\t' || + lookahead == ' ') SKIP(664); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 654: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1564, - ')', 1471, - '.', 1597, - ';', 1454, - 'E', 1823, - 'a', 1869, - 'e', 1773, - 'o', 1782, - 'x', 1875, - '|', 1455, - '}', 1503, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1795, + ';', 1455, + 'e', 1782, + 'o', 1784, + '|', 1456, + '}', 1504, + '\t', 1454, + ' ', 1454, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(663); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 655: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1564, - ')', 1471, - '.', 1597, - ';', 1454, - 'E', 1823, - 'e', 1773, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1598, + ';', 1455, + 'E', 1824, + 'a', 1870, + 'e', 1774, 'o', 1783, - '|', 1455, - '}', 1503, - '\t', 1453, - ' ', 1453, + 'x', 1876, + '|', 1456, + '}', 1504, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '\t' || + lookahead == ' ') SKIP(664); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 656: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1564, - ')', 1471, - ';', 1454, - 'E', 1823, - '_', 1817, - 'a', 1869, - 'e', 1773, - 'o', 1782, - 'x', 1875, - '|', 1455, - '}', 1503, + '#', 2193, + '(', 1565, + ')', 1472, + '.', 1598, + ';', 1455, + 'E', 1824, + 'e', 1774, + 'o', 1784, + '|', 1456, + '}', 1504, + '\t', 1454, + ' ', 1454, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 657: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1564, - ')', 1471, - ';', 1454, - 'E', 1823, - '_', 1817, - 'e', 1773, + '#', 2193, + '(', 1565, + ')', 1472, + ';', 1455, + 'E', 1824, + '_', 1818, + 'a', 1870, + 'e', 1774, 'o', 1783, - '|', 1455, - '}', 1503, - '\t', 1453, - ' ', 1453, + 'x', 1876, + '|', 1456, + '}', 1504, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '\t' || + lookahead == ' ') SKIP(664); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 658: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1564, - ')', 1471, - ';', 1454, - 'E', 1823, - 'a', 1869, - 'e', 1773, - 'o', 1782, - 'x', 1875, - '|', 1455, - '}', 1503, + '#', 2193, + '(', 1565, + ')', 1472, + ';', 1455, + 'E', 1824, + '_', 1818, + 'e', 1774, + 'o', 1784, + '|', 1456, + '}', 1504, + '\t', 1454, + ' ', 1454, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(663); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 659: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1564, - ')', 1471, - ';', 1454, - 'E', 1823, - 'e', 1773, + '#', 2193, + '(', 1565, + ')', 1472, + ';', 1455, + 'E', 1824, + 'a', 1870, + 'e', 1774, 'o', 1783, - '|', 1455, - '}', 1503, - '\t', 1453, - ' ', 1453, + 'x', 1876, + '|', 1456, + '}', 1504, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '\t' || + lookahead == ' ') SKIP(664); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 660: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1564, - ')', 1471, - ';', 1454, - 'a', 1869, - 'e', 1781, - 'o', 1782, - 'x', 1875, - '|', 1455, - '}', 1503, + '#', 2193, + '(', 1565, + ')', 1472, + ';', 1455, + 'E', 1824, + 'e', 1774, + 'o', 1784, + '|', 1456, + '}', 1504, + '\t', 1454, + ' ', 1454, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(663); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 661: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - '(', 1564, - ')', 1471, - ';', 1454, - 'e', 1781, + '#', 2193, + '(', 1565, + ')', 1472, + ';', 1455, + 'a', 1870, + 'e', 1782, 'o', 1783, - '|', 1455, - '}', 1503, - '\t', 1453, - ' ', 1453, + 'x', 1876, + '|', 1456, + '}', 1504, ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '\t' || + lookahead == ' ') SKIP(664); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 662: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - ')', 1471, - ';', 1454, - '=', 1733, - 'e', 1760, - 'o', 1761, - '|', 1455, - '}', 1503, - '\t', 1453, - ' ', 1453, + '#', 2193, + '(', 1565, + ')', 1472, + ';', 1455, + 'e', 1782, + 'o', 1784, + '|', 1456, + '}', 1504, + '\t', 1454, + ' ', 1454, ); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1766); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 663: - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '#', 2192, - ')', 1471, - ';', 1454, - 'a', 423, - 'e', 292, - 'o', 293, - 'x', 433, - '|', 1455, - '}', 1503, + '#', 2193, + ')', 1472, + ';', 1455, + '=', 1734, + 'e', 1761, + 'o', 1762, + '|', 1456, + '}', 1504, + '\t', 1454, + ' ', 1454, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(663); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1767); END_STATE(); case 664: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (eof) ADVANCE(665); + ADVANCE_MAP( + '\n', 1452, + '\r', 9, + '#', 2193, + ')', 1472, + ';', 1455, + 'a', 424, + 'e', 293, + 'o', 294, + 'x', 434, + '|', 1456, + '}', 1504, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(664); END_STATE(); case 665: - ACCEPT_TOKEN(anon_sym_POUND_BANG); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 666: - ACCEPT_TOKEN(aux_sym_shebang_token1); + ACCEPT_TOKEN(anon_sym_POUND_BANG); END_STATE(); case 667: ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(666); - if (lookahead == '\r') ADVANCE(668); - if (lookahead == '#') ADVANCE(2193); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(667); - if (lookahead != 0) ADVANCE(668); END_STATE(); case 668: ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(666); - if (lookahead == '\r') ADVANCE(668); - if (lookahead != 0) ADVANCE(668); + if (lookahead == '\n') ADVANCE(667); + if (lookahead == '\r') ADVANCE(669); + if (lookahead == '#') ADVANCE(2194); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(668); + if (lookahead != 0) ADVANCE(669); END_STATE(); case 669: - ACCEPT_TOKEN(anon_sym_export); + ACCEPT_TOKEN(aux_sym_shebang_token1); + if (lookahead == '\n') ADVANCE(667); + if (lookahead == '\r') ADVANCE(669); + if (lookahead != 0) ADVANCE(669); END_STATE(); case 670: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(1398); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 671: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(745); + if (lookahead == '-') ADVANCE(1399); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 672: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(905); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '-') ADVANCE(746); END_STATE(); case 673: - ACCEPT_TOKEN(anon_sym_alias); + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '-') ADVANCE(906); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 674: ACCEPT_TOKEN(anon_sym_alias); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 675: ACCEPT_TOKEN(anon_sym_alias); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 676: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_alias); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 677: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(1550); - if (lookahead == '~') ADVANCE(1556); END_STATE(); case 678: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(1504); + if (lookahead == '=') ADVANCE(1551); + if (lookahead == '~') ADVANCE(1557); END_STATE(); case 679: - ACCEPT_TOKEN(anon_sym_let); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(1505); END_STATE(); case 680: ACCEPT_TOKEN(anon_sym_let); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 681: ACCEPT_TOKEN(anon_sym_let); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 682: - ACCEPT_TOKEN(anon_sym_mut); + ACCEPT_TOKEN(anon_sym_let); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 683: ACCEPT_TOKEN(anon_sym_mut); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 684: ACCEPT_TOKEN(anon_sym_mut); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 685: - ACCEPT_TOKEN(anon_sym_const); + ACCEPT_TOKEN(anon_sym_mut); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 686: ACCEPT_TOKEN(anon_sym_const); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 687: ACCEPT_TOKEN(anon_sym_const); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 688: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_const); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 689: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 690: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 691: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 692: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 693: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '$') ADVANCE(1620); - if (lookahead == '(') ADVANCE(1594); - if (lookahead == '{') ADVANCE(1709); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); END_STATE(); case 694: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(769); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'l') ADVANCE(789); - if (lookahead == 'r') ADVANCE(778); - if (lookahead == 'x') ADVANCE(774); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == '$') ADVANCE(1621); + if (lookahead == '(') ADVANCE(1595); + if (lookahead == '{') ADVANCE(1710); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 695: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '+') ADVANCE(770); - if (lookahead == '>') ADVANCE(527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == '>') ADVANCE(525); + if (lookahead == 'l') ADVANCE(790); + if (lookahead == 'r') ADVANCE(779); + if (lookahead == 'x') ADVANCE(775); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 696: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(748); - if (lookahead == '>') ADVANCE(525); - if (lookahead == 'u') ADVANCE(798); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == '+') ADVANCE(771); + if (lookahead == '>') ADVANCE(528); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 697: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(747); - if (lookahead == '>') ADVANCE(529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == '+') ADVANCE(749); + if (lookahead == '>') ADVANCE(526); + if (lookahead == 'u') ADVANCE(799); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 698: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(824); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == '+') ADVANCE(748); + if (lookahead == '>') ADVANCE(530); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 699: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(807); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == '-') ADVANCE(825); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 700: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1511); - if (lookahead == '_') ADVANCE(721); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == '.') ADVANCE(808); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 701: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1508); - if (lookahead == '_') ADVANCE(721); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == '.') ADVANCE(1512); + if (lookahead == '_') ADVANCE(722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 702: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(693); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == '.') ADVANCE(1509); + if (lookahead == '_') ADVANCE(722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 703: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1596); - if (lookahead == '_') ADVANCE(721); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == '.') ADVANCE(694); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 704: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(702); - if (lookahead == '_') ADVANCE(721); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == '.') ADVANCE(1597); + if (lookahead == '_') ADVANCE(722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 705: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(720); - if (lookahead == '_') ADVANCE(705); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == '.') ADVANCE(703); + if (lookahead == '_') ADVANCE(722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 706: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ':') ADVANCE(556); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == '.') ADVANCE(721); + if (lookahead == '_') ADVANCE(706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 707: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == ':') ADVANCE(557); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 708: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == '>') ADVANCE(527); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 709: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(530); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == '>') ADVANCE(529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 710: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '>') ADVANCE(531); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 711: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '>') ADVANCE(532); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); + END_STATE(); + case 712: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); ADVANCE_MAP( - 'I', 809, - '_', 722, - 'i', 809, - 'l', 789, - 'x', 774, - '+', 722, - '-', 722, - 'B', 1656, - 'b', 1656, + 'I', 810, + '_', 723, + 'i', 810, + 'l', 790, + 'x', 775, + '+', 723, + '-', 723, + 'B', 1657, + 'b', 1657, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); - case 712: + case 713: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(809); - if (lookahead == '_') ADVANCE(722); - if (lookahead == 'i') ADVANCE(729); + if (lookahead == 'I') ADVANCE(810); + if (lookahead == '_') ADVANCE(723); + if (lookahead == 'i') ADVANCE(730); if (lookahead == '+' || - lookahead == '-') ADVANCE(722); + lookahead == '-') ADVANCE(723); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + lookahead == 'b') ADVANCE(1657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); - case 713: + case 714: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); ADVANCE_MAP( - 'I', 809, - 'a', 799, - 'i', 766, - 'o', 733, - 's', 1661, - 'u', 794, - 'B', 1656, - 'b', 1656, + 'I', 810, + 'a', 800, + 'i', 767, + 'o', 734, + 's', 1662, + 'u', 795, + 'B', 1657, + 'b', 1657, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); - END_STATE(); - case 714: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(809); - if (lookahead == 'i') ADVANCE(809); - if (lookahead == 'l') ADVANCE(789); - if (lookahead == 'x') ADVANCE(774); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 715: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(809); - if (lookahead == 'i') ADVANCE(809); - if (lookahead == 'r') ADVANCE(802); + if (lookahead == 'I') ADVANCE(810); + if (lookahead == 'i') ADVANCE(810); + if (lookahead == 'l') ADVANCE(790); + if (lookahead == 'x') ADVANCE(775); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 716: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(809); - if (lookahead == 'i') ADVANCE(809); + if (lookahead == 'I') ADVANCE(810); + if (lookahead == 'i') ADVANCE(810); + if (lookahead == 'r') ADVANCE(803); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 717: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(809); - if (lookahead == 'i') ADVANCE(729); + if (lookahead == 'I') ADVANCE(810); + if (lookahead == 'i') ADVANCE(810); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 718: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(810); - if (lookahead == 'f') ADVANCE(1071); - if (lookahead == 'n') ADVANCE(1087); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'I') ADVANCE(810); + if (lookahead == 'i') ADVANCE(730); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 719: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(719); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'N') ADVANCE(811); + if (lookahead == 'f') ADVANCE(1072); + if (lookahead == 'n') ADVANCE(1088); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 720: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(720); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 721: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(721); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1651); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 722: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(722); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 723: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(723); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 724: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(792); - if (lookahead == 'o') ADVANCE(767); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == '_') ADVANCE(724); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 725: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(806); - if (lookahead == 'e') ADVANCE(749); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'a') ADVANCE(793); + if (lookahead == 'o') ADVANCE(768); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 726: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(763); - if (lookahead == 'o') ADVANCE(776); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'a') ADVANCE(807); + if (lookahead == 'e') ADVANCE(750); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 727: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(784); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'a') ADVANCE(764); + if (lookahead == 'o') ADVANCE(777); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 728: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(799); - if (lookahead == 'o') ADVANCE(733); - if (lookahead == 'u') ADVANCE(794); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'a') ADVANCE(785); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 729: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'a') ADVANCE(800); + if (lookahead == 'o') ADVANCE(734); + if (lookahead == 'u') ADVANCE(795); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 730: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(1661); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 731: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(751); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'c') ADVANCE(1662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 732: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'c') ADVANCE(752); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 733: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(804); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'c') ADVANCE(753); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 734: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(749); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'd') ADVANCE(805); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 735: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1050); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'e') ADVANCE(750); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 736: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1074); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'e') ADVANCE(1051); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 737: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1092); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'e') ADVANCE(1075); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 738: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1095); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'e') ADVANCE(1093); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 739: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'e') ADVANCE(1096); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 740: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1068); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'e') ADVANCE(1530); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 741: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1059); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'e') ADVANCE(1069); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 742: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(793); - if (lookahead == 'o') ADVANCE(768); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'e') ADVANCE(1060); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 743: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(730); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'e') ADVANCE(794); + if (lookahead == 'o') ADVANCE(769); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 744: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(781); - if (lookahead == 'i') ADVANCE(760); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'e') ADVANCE(731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 745: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(765); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'e') ADVANCE(782); + if (lookahead == 'i') ADVANCE(761); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 746: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(779); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'e') ADVANCE(766); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 747: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(782); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'e') ADVANCE(780); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 748: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(708); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'e') ADVANCE(783); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 749: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(828); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'e') ADVANCE(709); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 750: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(744); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'f') ADVANCE(829); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 751: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1080); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'h') ADVANCE(745); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 752: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1083); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'h') ADVANCE(1081); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 753: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(756); - if (lookahead == 'k') ADVANCE(1661); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'h') ADVANCE(1084); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 754: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(756); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'h') ADVANCE(757); + if (lookahead == 'k') ADVANCE(1662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 755: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(727); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'h') ADVANCE(757); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 756: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(760); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'i') ADVANCE(728); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 757: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(755); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'i') ADVANCE(761); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 758: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1098); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'l') ADVANCE(756); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 759: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(758); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'l') ADVANCE(1099); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 760: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(740); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'l') ADVANCE(759); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 761: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'l') ADVANCE(741); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 762: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(789); - if (lookahead == 'x') ADVANCE(774); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'l') ADVANCE(742); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 763: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(791); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'l') ADVANCE(790); + if (lookahead == 'x') ADVANCE(775); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 764: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1056); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'l') ADVANCE(792); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 765: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(805); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'n') ADVANCE(1057); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 766: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1661); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'n') ADVANCE(806); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 767: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(790); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'n') ADVANCE(1662); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 768: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(773); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'n') ADVANCE(791); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 769: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(707); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'o') ADVANCE(774); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 770: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(803); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'o') ADVANCE(708); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 771: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(780); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'o') ADVANCE(804); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 772: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(795); - if (lookahead == 'u') ADVANCE(759); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(813); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'o') ADVANCE(781); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 773: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1065); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'o') ADVANCE(796); + if (lookahead == 'u') ADVANCE(760); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(814); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 774: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(771); - if (lookahead == 't') ADVANCE(746); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'p') ADVANCE(1066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 775: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(802); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'p') ADVANCE(772); + if (lookahead == 't') ADVANCE(747); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 776: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1062); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'r') ADVANCE(803); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 777: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1661); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'r') ADVANCE(1063); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 778: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(695); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'r') ADVANCE(1662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 779: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(764); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'r') ADVANCE(696); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 780: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(797); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'r') ADVANCE(765); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 781: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(739); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'r') ADVANCE(798); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 782: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(783); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'r') ADVANCE(740); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 783: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(710); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'r') ADVANCE(784); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 784: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(673); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'r') ADVANCE(711); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 785: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1661); - if (lookahead == 'u') ADVANCE(759); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(813); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 's') ADVANCE(674); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 786: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1661); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 's') ADVANCE(1662); + if (lookahead == 'u') ADVANCE(760); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(814); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 787: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 's') ADVANCE(1662); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 788: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(735); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 's') ADVANCE(1663); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 789: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 's') ADVANCE(736); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 790: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(796); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 's') ADVANCE(737); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 791: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(738); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 's') ADVANCE(797); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 792: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(731); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 's') ADVANCE(739); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 793: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(679); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 't') ADVANCE(732); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 794: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(682); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 't') ADVANCE(680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 795: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(818); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 't') ADVANCE(683); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 796: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(685); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 't') ADVANCE(819); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 797: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 't') ADVANCE(686); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 798: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(697); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 't') ADVANCE(672); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 799: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(732); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 't') ADVANCE(698); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 800: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(709); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 't') ADVANCE(733); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 801: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(759); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(813); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 't') ADVANCE(710); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 802: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(737); - if (lookahead == 'y') ADVANCE(1077); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'u') ADVANCE(760); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(814); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 803: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(800); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'u') ADVANCE(738); + if (lookahead == 'y') ADVANCE(1078); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 804: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(761); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'u') ADVANCE(801); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 805: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'v') ADVANCE(1053); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'u') ADVANCE(762); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 806: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(1661); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'v') ADVANCE(1054); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 807: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '{') ADVANCE(1709); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'y') ADVANCE(1662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 808: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(813); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == '{') ADVANCE(1710); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 809: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(814); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 810: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1102); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 811: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(815); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1103); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 812: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(810); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(816); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 813: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1112); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + lookahead == 'n') ADVANCE(811); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 814: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(811); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + lookahead == 'n') ADVANCE(1113); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 815: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(816); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(812); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 816: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1101); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(817); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 817: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(1652); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1102); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 818: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1563); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(1653); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 819: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1564); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 820: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(698); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(1654); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 821: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1677); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(699); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 822: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(706); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1678); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 823: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(820); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(707); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 824: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(821); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 825: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(822); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 826: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1651); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(823); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 827: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(827); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1652); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 828: - ACCEPT_TOKEN(anon_sym_def); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(828); END_STATE(); case 829: ACCEPT_TOKEN(anon_sym_def); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 830: ACCEPT_TOKEN(anon_sym_def); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 831: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(903); - if (lookahead == '>') ADVANCE(1743); - if (lookahead == 'r') ADVANCE(1535); - if (lookahead == 'u') ADVANCE(996); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + ACCEPT_TOKEN(anon_sym_def); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 832: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(948); - if (lookahead == '>') ADVANCE(1741); - if (lookahead == 'n') ADVANCE(892); - if (lookahead == 'r') ADVANCE(963); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '+') ADVANCE(904); + if (lookahead == '>') ADVANCE(1744); + if (lookahead == 'r') ADVANCE(1536); + if (lookahead == 'u') ADVANCE(997); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 833: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(904); - if (lookahead == '>') ADVANCE(1739); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '+') ADVANCE(949); + if (lookahead == '>') ADVANCE(1742); + if (lookahead == 'n') ADVANCE(893); + if (lookahead == 'r') ADVANCE(964); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 834: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(950); - if (lookahead == '>') ADVANCE(1737); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '+') ADVANCE(905); + if (lookahead == '>') ADVANCE(1740); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 835: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(906); - if (lookahead == '>') ADVANCE(525); - if (lookahead == 'r') ADVANCE(1535); - if (lookahead == 'u') ADVANCE(1002); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '+') ADVANCE(951); + if (lookahead == '>') ADVANCE(1738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 836: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(956); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'n') ADVANCE(892); - if (lookahead == 'r') ADVANCE(969); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '+') ADVANCE(907); + if (lookahead == '>') ADVANCE(526); + if (lookahead == 'r') ADVANCE(1536); + if (lookahead == 'u') ADVANCE(1003); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 837: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(958); - if (lookahead == '>') ADVANCE(527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '+') ADVANCE(957); + if (lookahead == '>') ADVANCE(525); + if (lookahead == 'n') ADVANCE(893); + if (lookahead == 'r') ADVANCE(970); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 838: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '+') ADVANCE(909); - if (lookahead == '>') ADVANCE(529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '+') ADVANCE(959); + if (lookahead == '>') ADVANCE(528); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 839: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1039); - if (lookahead == '_') ADVANCE(869); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(869); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '+') ADVANCE(910); + if (lookahead == '>') ADVANCE(530); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 840: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(883); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '-') ADVANCE(1040); + if (lookahead == '_') ADVANCE(870); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(870); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 841: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(910); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '-') ADVANCE(884); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 842: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1018); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '-') ADVANCE(911); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 843: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1489); - if (lookahead == '.') ADVANCE(869); - if (lookahead == '_') ADVANCE(851); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1028); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(869); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '-') ADVANCE(1019); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 844: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1041); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '-') ADVANCE(1490); + if (lookahead == '.') ADVANCE(870); + if (lookahead == '_') ADVANCE(852); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1029); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(870); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 845: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1019); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '-') ADVANCE(1042); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 846: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1045); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '-') ADVANCE(1020); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 847: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1020); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '-') ADVANCE(1046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 848: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == '-') ADVANCE(1021); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 849: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '-') ADVANCE(1047); - if (lookahead == '_') ADVANCE(869); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(869); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '-') ADVANCE(1022); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 850: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '.') ADVANCE(869); - if (lookahead == '_') ADVANCE(851); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1028); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(869); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '-') ADVANCE(1048); + if (lookahead == '_') ADVANCE(870); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(870); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 851: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '.') ADVANCE(869); - if (lookahead == '_') ADVANCE(851); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(869); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '.') ADVANCE(870); + if (lookahead == '_') ADVANCE(852); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1029); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(870); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 852: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '.') ADVANCE(1512); - if (lookahead == '_') ADVANCE(869); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(869); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '.') ADVANCE(870); + if (lookahead == '_') ADVANCE(852); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(870); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 853: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ':') ADVANCE(556); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '.') ADVANCE(1513); + if (lookahead == '_') ADVANCE(870); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(870); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 854: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ':') ADVANCE(2073); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == ':') ADVANCE(557); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 855: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '=') ADVANCE(1551); - if (lookahead == '~') ADVANCE(1558); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == ':') ADVANCE(2074); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 856: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1751); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '=') ADVANCE(1552); + if (lookahead == '~') ADVANCE(1559); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 857: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1749); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '>') ADVANCE(1752); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 858: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1745); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '>') ADVANCE(1750); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 859: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(1747); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '>') ADVANCE(1746); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 860: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '>') ADVANCE(1748); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 861: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '>') ADVANCE(527); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 862: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '>') ADVANCE(530); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '>') ADVANCE(529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 863: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == '>') ADVANCE(531); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 864: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'N') ADVANCE(1024); - if (lookahead == 'f') ADVANCE(1073); - if (lookahead == 'n') ADVANCE(1088); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '>') ADVANCE(532); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 865: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'T') ADVANCE(1042); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'N') ADVANCE(1025); + if (lookahead == 'f') ADVANCE(1074); + if (lookahead == 'n') ADVANCE(1089); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 866: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'T') ADVANCE(1043); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 867: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(869); - if (lookahead == 'b') ADVANCE(1655); - if (lookahead == 'o') ADVANCE(1665); - if (lookahead == 'x') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(871); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'T') ADVANCE(1044); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 868: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(869); - if (lookahead == 'b') ADVANCE(1655); - if (lookahead == 'o') ADVANCE(1665); - if (lookahead == 'x') ADVANCE(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(874); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '_') ADVANCE(870); + if (lookahead == 'b') ADVANCE(1656); + if (lookahead == 'o') ADVANCE(1666); + if (lookahead == 'x') ADVANCE(1668); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(872); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 869: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(869); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(869); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '_') ADVANCE(870); + if (lookahead == 'b') ADVANCE(1656); + if (lookahead == 'o') ADVANCE(1666); + if (lookahead == 'x') ADVANCE(1668); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(875); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 870: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(869); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(839); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '_') ADVANCE(870); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(870); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 871: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(869); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(870); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '_') ADVANCE(870); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(840); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 872: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(869); + if (lookahead == '_') ADVANCE(870); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(871); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 873: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(869); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(849); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '_') ADVANCE(870); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(872); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 874: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(869); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(873); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '_') ADVANCE(870); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(850); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 875: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == '_') ADVANCE(869); + if (lookahead == '_') ADVANCE(870); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(874); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 876: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(931); - if (lookahead == 'o') ADVANCE(968); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '_') ADVANCE(870); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(875); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 877: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(931); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'a') ADVANCE(932); + if (lookahead == 'o') ADVANCE(969); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 878: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(978); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'a') ADVANCE(932); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 879: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(972); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'a') ADVANCE(979); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 880: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(979); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'a') ADVANCE(973); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 881: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'a') ADVANCE(980); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 882: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(990); - if (lookahead == 'o') ADVANCE(945); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'a') ADVANCE(981); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 883: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(944); - if (lookahead == 'o') ADVANCE(965); - if (lookahead == 's') ADVANCE(912); - if (lookahead == 'x') ADVANCE(957); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'a') ADVANCE(991); + if (lookahead == 'o') ADVANCE(946); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 884: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(1006); - if (lookahead == 'o') ADVANCE(891); - if (lookahead == 'u') ADVANCE(992); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'a') ADVANCE(945); + if (lookahead == 'o') ADVANCE(966); + if (lookahead == 's') ADVANCE(913); + if (lookahead == 'x') ADVANCE(958); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 885: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'a') ADVANCE(977); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'a') ADVANCE(1007); + if (lookahead == 'o') ADVANCE(892); + if (lookahead == 'u') ADVANCE(993); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 886: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'c') ADVANCE(917); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'a') ADVANCE(978); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 887: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'c') ADVANCE(918); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 888: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1531); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'c') ADVANCE(919); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 889: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1575); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'd') ADVANCE(1532); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 890: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1589); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'd') ADVANCE(1576); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 891: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(1016); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'd') ADVANCE(1590); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 892: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(982); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'd') ADVANCE(1017); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 893: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'd') ADVANCE(987); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'd') ADVANCE(983); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 894: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1094); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'd') ADVANCE(988); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 895: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1097); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'e') ADVANCE(1095); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 896: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1560); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'e') ADVANCE(1098); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 897: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1562); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'e') ADVANCE(1561); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 898: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(911); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'e') ADVANCE(1563); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 899: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1052); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'e') ADVANCE(912); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 900: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1076); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'e') ADVANCE(1053); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 901: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1070); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'e') ADVANCE(1077); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 902: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(1061); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'e') ADVANCE(1071); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 903: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(857); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'e') ADVANCE(1062); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 904: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(973); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'e') ADVANCE(858); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 905: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(943); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'e') ADVANCE(974); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 906: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(861); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'e') ADVANCE(944); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 907: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(971); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'e') ADVANCE(862); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 908: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(991); - if (lookahead == 'o') ADVANCE(949); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'e') ADVANCE(972); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 909: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(975); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'e') ADVANCE(992); + if (lookahead == 'o') ADVANCE(950); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 910: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'e') ADVANCE(946); - if (lookahead == 'h') ADVANCE(880); - if (lookahead == 'i') ADVANCE(941); - if (lookahead == 'l') ADVANCE(927); - if (lookahead == 's') ADVANCE(1010); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'e') ADVANCE(976); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 911: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'f') ADVANCE(830); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'e') ADVANCE(947); + if (lookahead == 'h') ADVANCE(881); + if (lookahead == 'i') ADVANCE(942); + if (lookahead == 'l') ADVANCE(928); + if (lookahead == 's') ADVANCE(1011); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 912: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(933); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'f') ADVANCE(831); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 913: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1547); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'h') ADVANCE(934); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 914: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1543); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'h') ADVANCE(1548); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 915: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1549); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'h') ADVANCE(1544); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 916: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1545); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'h') ADVANCE(1550); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 917: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1082); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'h') ADVANCE(1546); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 918: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(1085); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'h') ADVANCE(1083); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 919: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'h') ADVANCE(922); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'h') ADVANCE(1086); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 920: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(929); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'h') ADVANCE(923); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 921: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(995); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'i') ADVANCE(930); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 922: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(936); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'i') ADVANCE(996); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 923: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(997); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'i') ADVANCE(937); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 924: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(1001); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'i') ADVANCE(998); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 925: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(1003); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'i') ADVANCE(1002); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 926: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'i') ADVANCE(1004); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 927: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(930); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'i') ADVANCE(1005); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 928: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'i') ADVANCE(881); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'i') ADVANCE(931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 929: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'k') ADVANCE(896); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'i') ADVANCE(882); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 930: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'k') ADVANCE(897); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 931: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(981); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'k') ADVANCE(898); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 932: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(1100); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'l') ADVANCE(982); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 933: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(1585); - if (lookahead == 'r') ADVANCE(1587); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'l') ADVANCE(1101); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 934: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(932); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'l') ADVANCE(1586); + if (lookahead == 'r') ADVANCE(1588); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 935: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(928); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'l') ADVANCE(933); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 936: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(901); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'l') ADVANCE(929); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 937: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'l') ADVANCE(902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 938: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'l') ADVANCE(984); - if (lookahead == 'x') ADVANCE(961); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'l') ADVANCE(903); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 939: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(888); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'l') ADVANCE(985); + if (lookahead == 'x') ADVANCE(962); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 940: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1091); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'n') ADVANCE(889); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 941: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1537); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'n') ADVANCE(1092); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 942: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1058); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'n') ADVANCE(1538); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 943: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(1017); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'n') ADVANCE(1059); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 944: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(890); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'n') ADVANCE(1018); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 945: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(985); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'n') ADVANCE(891); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 946: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'n') ADVANCE(893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'n') ADVANCE(986); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 947: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(989); - if (lookahead == 'u') ADVANCE(934); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1027); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'n') ADVANCE(894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 948: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(856); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'o') ADVANCE(990); + if (lookahead == 'u') ADVANCE(935); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1028); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 949: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(960); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'o') ADVANCE(857); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 950: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(1014); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'o') ADVANCE(961); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 951: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(964); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'o') ADVANCE(1015); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 952: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(889); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'o') ADVANCE(965); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 953: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(999); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'o') ADVANCE(890); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 954: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(945); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'o') ADVANCE(1000); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 955: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(891); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'o') ADVANCE(946); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 956: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(860); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'o') ADVANCE(892); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 957: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(966); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'o') ADVANCE(861); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 958: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(1015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'o') ADVANCE(967); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 959: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'o') ADVANCE(976); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'o') ADVANCE(1016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 960: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'p') ADVANCE(1067); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'o') ADVANCE(977); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 961: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'p') ADVANCE(959); - if (lookahead == 't') ADVANCE(907); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'p') ADVANCE(1068); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 962: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1012); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'p') ADVANCE(960); + if (lookahead == 't') ADVANCE(908); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 963: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(834); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'r') ADVANCE(1013); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 964: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1533); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'r') ADVANCE(835); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 965: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1593); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'r') ADVANCE(1534); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 966: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1591); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'r') ADVANCE(1594); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 967: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1011); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'r') ADVANCE(1592); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 968: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1064); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'r') ADVANCE(1012); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 969: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(837); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'r') ADVANCE(1065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 970: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(859); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'r') ADVANCE(838); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 971: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(942); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'r') ADVANCE(860); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 972: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1008); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'r') ADVANCE(943); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 973: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(970); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'r') ADVANCE(1009); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 974: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(863); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'r') ADVANCE(971); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 975: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(974); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'r') ADVANCE(864); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 976: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(994); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'r') ADVANCE(975); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 977: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'r') ADVANCE(1009); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'r') ADVANCE(995); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 978: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(1539); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'r') ADVANCE(1010); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 979: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(1541); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 's') ADVANCE(1540); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 980: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(675); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 's') ADVANCE(1542); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 981: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(895); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 's') ADVANCE(676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 982: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(842); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 's') ADVANCE(896); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 983: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(899); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 's') ADVANCE(843); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 984: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 's') ADVANCE(900); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 985: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(993); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 's') ADVANCE(901); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 986: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(845); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 's') ADVANCE(994); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 987: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 's') ADVANCE(847); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 's') ADVANCE(846); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 988: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 's') ADVANCE(848); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 989: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(1034); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 's') ADVANCE(849); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 990: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(886); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 't') ADVANCE(1035); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 991: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 't') ADVANCE(887); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 992: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(684); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 't') ADVANCE(682); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 993: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(687); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 't') ADVANCE(685); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 994: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 't') ADVANCE(688); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 995: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(840); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 't') ADVANCE(673); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 996: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(833); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 't') ADVANCE(841); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 997: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(913); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 't') ADVANCE(834); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 998: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(879); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 't') ADVANCE(914); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 999: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(841); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 't') ADVANCE(880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1000: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(858); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 't') ADVANCE(842); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1001: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(914); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 't') ADVANCE(859); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1002: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(838); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 't') ADVANCE(915); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1003: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(915); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 't') ADVANCE(839); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1004: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 't') ADVANCE(916); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1005: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(862); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 't') ADVANCE(917); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1006: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(887); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 't') ADVANCE(863); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1007: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(907); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 't') ADVANCE(888); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1008: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(986); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 't') ADVANCE(908); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1009: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(988); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 't') ADVANCE(987); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1010: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 't') ADVANCE(885); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 't') ADVANCE(989); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1011: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(894); - if (lookahead == 'y') ADVANCE(1079); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 't') ADVANCE(886); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1012: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(894); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'u') ADVANCE(895); + if (lookahead == 'y') ADVANCE(1080); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1013: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(934); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1027); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'u') ADVANCE(895); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1014: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(1000); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'u') ADVANCE(935); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1028); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1015: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(1005); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'u') ADVANCE(1001); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1016: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'u') ADVANCE(937); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'u') ADVANCE(1006); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1017: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'v') ADVANCE(1055); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'u') ADVANCE(938); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1018: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'w') ADVANCE(923); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'v') ADVANCE(1056); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1019: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'w') ADVANCE(924); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1020: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'w') ADVANCE(925); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1021: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'w') ADVANCE(926); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1022: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'x') ADVANCE(1007); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'w') ADVANCE(927); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1023: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1027); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'x') ADVANCE(1008); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1024: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1026); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1028); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1025: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1030); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1027); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1026: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1029); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + lookahead == 'i') ADVANCE(1031); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1027: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1049); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1030); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1028: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + lookahead == 'n') ADVANCE(1050); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1029: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1025); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1030: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1031); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1026); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1031: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1049); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1032); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1032: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1050); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); + END_STATE(); + case 1033: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1032); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + lookahead == '_') ADVANCE(1033); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); - case 1033: + case 1034: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (lookahead == '-' || lookahead == '.' || lookahead == '?' || - lookahead == '@') ADVANCE(1049); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1033); - END_STATE(); - case 1034: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1563); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + lookahead == '@') ADVANCE(1050); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1034); END_STATE(); case 1035: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1035); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1564); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1036: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(844); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(1036); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1037: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(865); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(845); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1038: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(853); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1039: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1036); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(854); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1040: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(854); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1037); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1041: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1037); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1042: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1038); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1043: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1040); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1039); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1044: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1045: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1044); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(867); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1046: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(846); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1047: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1046); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(847); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1048: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1048); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1047); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1049: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1050: - ACCEPT_TOKEN(anon_sym_use); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1051: ACCEPT_TOKEN(anon_sym_use); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1052: ACCEPT_TOKEN(anon_sym_use); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1053: - ACCEPT_TOKEN(anon_sym_export_DASHenv); + ACCEPT_TOKEN(anon_sym_use); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1054: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1055: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1056: - ACCEPT_TOKEN(anon_sym_extern); + ACCEPT_TOKEN(anon_sym_export_DASHenv); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1057: ACCEPT_TOKEN(anon_sym_extern); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1058: ACCEPT_TOKEN(anon_sym_extern); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1059: - ACCEPT_TOKEN(anon_sym_module); + ACCEPT_TOKEN(anon_sym_extern); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1060: ACCEPT_TOKEN(anon_sym_module); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1061: ACCEPT_TOKEN(anon_sym_module); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1062: - ACCEPT_TOKEN(anon_sym_for); + ACCEPT_TOKEN(anon_sym_module); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1063: ACCEPT_TOKEN(anon_sym_for); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1064: ACCEPT_TOKEN(anon_sym_for); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1065: - ACCEPT_TOKEN(anon_sym_loop); + ACCEPT_TOKEN(anon_sym_for); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1066: ACCEPT_TOKEN(anon_sym_loop); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1067: ACCEPT_TOKEN(anon_sym_loop); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1068: - ACCEPT_TOKEN(anon_sym_while); + ACCEPT_TOKEN(anon_sym_loop); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1069: ACCEPT_TOKEN(anon_sym_while); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1070: ACCEPT_TOKEN(anon_sym_while); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1071: - ACCEPT_TOKEN(anon_sym_if); + ACCEPT_TOKEN(anon_sym_while); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1072: ACCEPT_TOKEN(anon_sym_if); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1073: ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1074: - ACCEPT_TOKEN(anon_sym_else); + ACCEPT_TOKEN(anon_sym_if); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1075: ACCEPT_TOKEN(anon_sym_else); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1076: ACCEPT_TOKEN(anon_sym_else); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1077: - ACCEPT_TOKEN(anon_sym_try); + ACCEPT_TOKEN(anon_sym_else); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1078: ACCEPT_TOKEN(anon_sym_try); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1079: ACCEPT_TOKEN(anon_sym_try); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1080: - ACCEPT_TOKEN(anon_sym_catch); + ACCEPT_TOKEN(anon_sym_try); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1081: ACCEPT_TOKEN(anon_sym_catch); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1082: ACCEPT_TOKEN(anon_sym_catch); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1083: - ACCEPT_TOKEN(anon_sym_match); + ACCEPT_TOKEN(anon_sym_catch); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1084: ACCEPT_TOKEN(anon_sym_match); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1085: ACCEPT_TOKEN(anon_sym_match); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1086: - ACCEPT_TOKEN(anon_sym_in); + ACCEPT_TOKEN(anon_sym_match); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1087: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1102); END_STATE(); case 1088: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1026); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + lookahead == 'f') ADVANCE(1103); END_STATE(); case 1089: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1444); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + lookahead == 'f') ADVANCE(1027); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1090: ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1445); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1091: ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1092: - ACCEPT_TOKEN(anon_sym_true); + ACCEPT_TOKEN(anon_sym_in); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1093: ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1094: ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1095: - ACCEPT_TOKEN(anon_sym_false); + ACCEPT_TOKEN(anon_sym_true); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1096: ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1097: ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1098: - ACCEPT_TOKEN(anon_sym_null); + ACCEPT_TOKEN(anon_sym_false); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1099: ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); END_STATE(); case 1100: ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1101: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + ACCEPT_TOKEN(anon_sym_null); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1102: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(814); END_STATE(); case 1103: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2056); + lookahead == 'i') ADVANCE(815); END_STATE(); case 1104: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2111); + lookahead == 'i') ADVANCE(2057); END_STATE(); case 1105: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2165); + lookahead == 'i') ADVANCE(2112); END_STATE(); case 1106: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(544); + lookahead == 'i') ADVANCE(2166); END_STATE(); case 1107: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(545); END_STATE(); case 1108: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(542); END_STATE(); case 1109: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1935); + lookahead == 'i') ADVANCE(543); END_STATE(); case 1110: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2113); + lookahead == 'i') ADVANCE(1936); END_STATE(); case 1111: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2167); + lookahead == 'i') ADVANCE(2114); END_STATE(); case 1112: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2168); END_STATE(); case 1113: - ACCEPT_TOKEN(anon_sym_STAR_STAR); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); END_STATE(); case 1114: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 1115: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(1113); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 1116: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(1119); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(1114); END_STATE(); case 1117: ACCEPT_TOKEN(anon_sym_SLASH); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == '/') ADVANCE(1120); END_STATE(); case 1118: - ACCEPT_TOKEN(anon_sym_mod); + ACCEPT_TOKEN(anon_sym_SLASH); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1119: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + ACCEPT_TOKEN(anon_sym_mod); END_STATE(); case 1120: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(1114); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); case 1121: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(1115); END_STATE(); case 1122: - ACCEPT_TOKEN(anon_sym_bit_DASHshl); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 1123: - ACCEPT_TOKEN(anon_sym_bit_DASHshr); + ACCEPT_TOKEN(anon_sym_bit_DASHshl); END_STATE(); case 1124: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); + ACCEPT_TOKEN(anon_sym_bit_DASHshr); END_STATE(); case 1125: - ACCEPT_TOKEN(anon_sym_BANG_TILDE); + ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); case 1126: - ACCEPT_TOKEN(anon_sym_like); + ACCEPT_TOKEN(anon_sym_BANG_TILDE); END_STATE(); case 1127: - ACCEPT_TOKEN(anon_sym_not_DASHlike); + ACCEPT_TOKEN(anon_sym_like); END_STATE(); case 1128: - ACCEPT_TOKEN(anon_sym_bit_DASHand); + ACCEPT_TOKEN(anon_sym_not_DASHlike); END_STATE(); case 1129: - ACCEPT_TOKEN(anon_sym_bit_DASHxor); + ACCEPT_TOKEN(anon_sym_bit_DASHand); END_STATE(); case 1130: - ACCEPT_TOKEN(anon_sym_bit_DASHor); + ACCEPT_TOKEN(anon_sym_bit_DASHxor); END_STATE(); case 1131: - ACCEPT_TOKEN(anon_sym_and); + ACCEPT_TOKEN(anon_sym_bit_DASHor); END_STATE(); case 1132: - ACCEPT_TOKEN(anon_sym_xor); + ACCEPT_TOKEN(anon_sym_and); END_STATE(); case 1133: - ACCEPT_TOKEN(anon_sym_or); + ACCEPT_TOKEN(anon_sym_xor); END_STATE(); case 1134: - ACCEPT_TOKEN(anon_sym_in2); + ACCEPT_TOKEN(anon_sym_or); END_STATE(); case 1135: - ACCEPT_TOKEN(anon_sym_not_DASHin); + ACCEPT_TOKEN(anon_sym_in2); END_STATE(); case 1136: - ACCEPT_TOKEN(anon_sym_has); + ACCEPT_TOKEN(anon_sym_not_DASHin); END_STATE(); case 1137: - ACCEPT_TOKEN(anon_sym_not_DASHhas); + ACCEPT_TOKEN(anon_sym_has); END_STATE(); case 1138: - ACCEPT_TOKEN(anon_sym_starts_DASHwith); + ACCEPT_TOKEN(anon_sym_not_DASHhas); END_STATE(); case 1139: - ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith); + ACCEPT_TOKEN(anon_sym_starts_DASHwith); END_STATE(); case 1140: - ACCEPT_TOKEN(anon_sym_ends_DASHwith); + ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith); END_STATE(); case 1141: - ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith); + ACCEPT_TOKEN(anon_sym_ends_DASHwith); END_STATE(); case 1142: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith); END_STATE(); case 1143: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 1144: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 1145: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(1146); END_STATE(); case 1146: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(1147); END_STATE(); case 1147: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(1148); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 1148: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(1149); END_STATE(); case 1149: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '\n', 1451, - '\r', 9, - '!', 1212, - '#', 2192, - ')', 1471, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1598, - '/', 1116, - ';', 1454, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1222, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1193, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1194, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - 0xb5, 1297, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(29); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 1150: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - ')', 1471, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1598, - '/', 1116, - ';', 1454, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1222, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1201, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1202, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - 0xb5, 1297, + '!', 1213, + '#', 2193, + ')', 1472, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1599, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1194, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1151: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - ')', 1471, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1211, - '/', 1116, - ';', 1454, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1222, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - '_', 1230, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1193, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1194, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - 0xb5, 1297, + '!', 1213, + '#', 2193, + ')', 1472, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1599, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1202, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1203, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(29); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1152: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - ')', 1471, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1211, - '/', 1116, - ';', 1454, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1222, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - '_', 1230, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1201, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1202, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - 0xb5, 1297, + '!', 1213, + '#', 2193, + ')', 1472, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + '_', 1231, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1194, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(30); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(29); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1153: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - ')', 1471, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1211, - '/', 1116, - ';', 1454, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1222, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1193, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1194, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - 0xb5, 1297, + '!', 1213, + '#', 2193, + ')', 1472, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + '_', 1231, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1202, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1203, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(29); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(30); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1154: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - ')', 1471, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1211, - '/', 1116, - ';', 1454, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1222, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1201, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1202, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - 0xb5, 1297, + '!', 1213, + '#', 2193, + ')', 1472, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1194, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1155: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - ')', 1471, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1211, - '/', 1116, - ';', 1454, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1225, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1196, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1194, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - 0xb5, 1297, + '!', 1213, + '#', 2193, + ')', 1472, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1202, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1203, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(29); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1156: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - ')', 1471, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1211, - '/', 1116, - ';', 1454, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1225, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1199, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1202, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - 0xb5, 1297, + '!', 1213, + '#', 2193, + ')', 1472, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1226, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1197, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1157: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - ')', 1471, - '*', 1115, - '+', 1120, - '-', 1121, - '/', 1116, - ';', 1454, - '<', 1145, - '=', 323, - '>', 1147, - 'a', 1269, - 'b', 1258, - 'e', 1197, + '!', 1213, + '#', 2193, + ')', 1472, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1226, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1200, + 'g', 1225, 'h', 1233, - 'i', 1271, - 'l', 1259, - 'm', 1279, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, 'n', 1283, - 'o', 1194, - 's', 1305, - 'x', 1278, - '|', 1455, + 'o', 1203, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(29); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1158: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - ')', 1471, - '*', 1115, - '+', 1120, - '-', 1121, - '/', 1116, - ';', 1454, - '<', 1145, - '=', 323, - '>', 1147, - 'a', 1269, - 'b', 1258, - 'e', 1200, - 'h', 1233, - 'i', 1271, - 'l', 1259, - 'm', 1279, - 'n', 1283, - 'o', 1202, - 's', 1305, - 'x', 1278, - '|', 1455, + '!', 1213, + '#', 2193, + ')', 1472, + '*', 1116, + '+', 1121, + '-', 1122, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'a', 1270, + 'b', 1259, + 'e', 1198, + 'h', 1234, + 'i', 1272, + 'l', 1260, + 'm', 1280, + 'n', 1284, + 'o', 1195, + 's', 1306, + 'x', 1279, + '|', 1456, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(30); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(29); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1159: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1598, - '/', 1116, - ':', 1716, - ';', 1454, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1222, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1193, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1194, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - '}', 1503, - 0xb5, 1297, + '!', 1213, + '#', 2193, + ')', 1472, + '*', 1116, + '+', 1121, + '-', 1122, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'a', 1270, + 'b', 1259, + 'e', 1201, + 'h', 1234, + 'i', 1272, + 'l', 1260, + 'm', 1280, + 'n', 1284, + 'o', 1203, + 's', 1306, + 'x', 1279, + '|', 1456, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(31); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(30); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1160: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1598, - '/', 1116, - ';', 1454, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1222, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1193, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1194, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - '}', 1503, - 0xb5, 1297, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1599, + '/', 1117, + ':', 1717, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1194, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + '}', 1504, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(32); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(31); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1161: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1598, - '/', 1116, - ';', 1454, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1222, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1201, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1202, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - '}', 1503, - 0xb5, 1297, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1599, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1194, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + '}', 1504, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(33); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(32); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1162: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1598, - '/', 1116, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1222, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1193, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1194, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - 0xb5, 1297, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1599, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1202, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1203, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + '}', 1504, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(34); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(33); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1163: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1598, - '/', 1116, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1222, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1201, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1202, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - 0xb5, 1297, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1599, + '/', 1117, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1194, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(35); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(34); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1164: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1211, - '/', 1116, - ':', 1716, - ';', 1454, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1222, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - '_', 1230, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1193, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1194, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - '}', 1503, - 0xb5, 1297, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1599, + '/', 1117, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1202, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1203, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(31); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(35); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1165: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1211, - '/', 1116, - ':', 1716, - ';', 1454, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1222, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1193, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1194, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - '}', 1503, - 0xb5, 1297, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ':', 1717, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + '_', 1231, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1194, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + '}', 1504, + 0xb5, 1298, ); if (lookahead == '\t' || lookahead == ' ') SKIP(31); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1166: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1211, - '/', 1116, - ':', 1716, - ';', 1454, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1225, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1196, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1194, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - '}', 1503, - 0xb5, 1297, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ':', 1717, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1194, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + '}', 1504, + 0xb5, 1298, ); if (lookahead == '\t' || lookahead == ' ') SKIP(31); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1167: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1211, - '/', 1116, - ';', 1454, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1222, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - '_', 1230, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1193, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1194, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - '}', 1503, - 0xb5, 1297, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ':', 1717, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1226, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1197, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + '}', 1504, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(32); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(31); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1168: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1211, - '/', 1116, - ';', 1454, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1222, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - '_', 1230, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1201, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1202, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - '}', 1503, - 0xb5, 1297, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + '_', 1231, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1194, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + '}', 1504, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(33); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(32); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1169: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1211, - '/', 1116, - ';', 1454, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1222, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1193, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1194, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - '}', 1503, - 0xb5, 1297, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + '_', 1231, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1202, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1203, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + '}', 1504, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(32); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(33); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1170: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1211, - '/', 1116, - ';', 1454, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1222, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1201, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1202, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - '}', 1503, - 0xb5, 1297, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1194, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + '}', 1504, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(33); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(32); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1171: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1211, - '/', 1116, - ';', 1454, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1225, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1196, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1194, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - '}', 1503, - 0xb5, 1297, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1202, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1203, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + '}', 1504, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(32); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(33); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1172: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1211, - '/', 1116, - ';', 1454, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1225, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1199, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1202, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - '}', 1503, - 0xb5, 1297, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1226, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1197, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + '}', 1504, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(33); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(32); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1173: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1211, - '/', 1116, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1222, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - '_', 1230, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1193, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1194, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - 0xb5, 1297, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1226, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1200, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1203, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + '}', 1504, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(34); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(33); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1174: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1211, - '/', 1116, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1222, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - '_', 1230, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1201, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1202, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - 0xb5, 1297, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + '_', 1231, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1194, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(35); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(34); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1175: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1211, - '/', 1116, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1222, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1193, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1194, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - 0xb5, 1297, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + '_', 1231, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1202, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1203, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(34); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(35); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1176: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1211, - '/', 1116, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1222, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1201, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1202, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - 0xb5, 1297, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1194, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(35); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(34); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1177: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1211, - '/', 1116, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1225, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1196, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1194, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - 0xb5, 1297, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1202, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1203, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(34); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(35); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1178: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1211, - '/', 1116, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1225, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1199, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1202, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - 0xb5, 1297, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1226, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1197, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(35); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(34); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1179: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '/', 1116, - ';', 1454, - '<', 1145, - '=', 323, - '>', 1147, - 'a', 1269, - 'b', 1258, - 'e', 1197, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1226, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1200, + 'g', 1225, 'h', 1233, - 'i', 1271, - 'l', 1259, - 'm', 1279, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, 'n', 1283, - 'o', 1194, - 's', 1305, - 'x', 1278, - '|', 1455, - '}', 1503, + 'o', 1203, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(32); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(35); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1180: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '/', 1116, - ';', 1454, - '<', 1145, - '=', 323, - '>', 1147, - 'a', 1269, - 'b', 1258, - 'e', 1200, - 'h', 1233, - 'i', 1271, - 'l', 1259, - 'm', 1279, - 'n', 1283, - 'o', 1202, - 's', 1305, - 'x', 1278, - '|', 1455, - '}', 1503, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'a', 1270, + 'b', 1259, + 'e', 1198, + 'h', 1234, + 'i', 1272, + 'l', 1260, + 'm', 1280, + 'n', 1284, + 'o', 1195, + 's', 1306, + 'x', 1279, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(33); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(32); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1181: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '/', 1116, - '<', 1145, - '=', 323, - '>', 1147, - 'a', 1269, - 'b', 1258, - 'e', 1197, - 'h', 1233, - 'i', 1271, - 'l', 1259, - 'm', 1279, - 'n', 1283, - 'o', 1194, - 's', 1305, - 'x', 1278, - '|', 1455, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'a', 1270, + 'b', 1259, + 'e', 1201, + 'h', 1234, + 'i', 1272, + 'l', 1260, + 'm', 1280, + 'n', 1284, + 'o', 1203, + 's', 1306, + 'x', 1279, + '|', 1456, + '}', 1504, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(34); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(33); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1182: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '/', 1116, - '<', 1145, - '=', 323, - '>', 1147, - 'a', 1269, - 'b', 1258, - 'e', 1200, - 'h', 1233, - 'i', 1271, - 'l', 1259, - 'm', 1279, - 'n', 1283, - 'o', 1202, - 's', 1305, - 'x', 1278, - '|', 1455, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '/', 1117, + '<', 1146, + '=', 324, + '>', 1148, + 'a', 1270, + 'b', 1259, + 'e', 1198, + 'h', 1234, + 'i', 1272, + 'l', 1260, + 'm', 1280, + 'n', 1284, + 'o', 1195, + 's', 1306, + 'x', 1279, + '|', 1456, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(35); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(34); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1183: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1597, - '/', 1116, - ':', 1716, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1222, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1221, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1285, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - 0xb5, 1297, + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '/', 1117, + '<', 1146, + '=', 324, + '>', 1148, + 'a', 1270, + 'b', 1259, + 'e', 1201, + 'h', 1234, + 'i', 1272, + 'l', 1260, + 'm', 1280, + 'n', 1284, + 'o', 1203, + 's', 1306, + 'x', 1279, + '|', 1456, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(35); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1184: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1597, - '/', 1116, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1222, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1221, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1285, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - 0xb5, 1297, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1598, + '/', 1117, + ':', 1717, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1222, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1286, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(276); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(271); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1185: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '/', 1116, - ':', 1716, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1222, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - '_', 1230, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1221, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1285, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - 0xb5, 1297, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1598, + '/', 1117, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1222, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1286, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(277); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1186: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '/', 1116, - ':', 1716, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1222, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1221, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1285, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - 0xb5, 1297, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '/', 1117, + ':', 1717, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + '_', 1231, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1222, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1286, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(271); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1187: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '/', 1116, - ':', 1716, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1225, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1223, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1285, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - 0xb5, 1297, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '/', 1117, + ':', 1717, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1222, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1286, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(270); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(271); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1188: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '/', 1116, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1222, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - '_', 1230, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1221, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1285, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - 0xb5, 1297, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '/', 1117, + ':', 1717, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1226, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1224, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1286, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(276); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(271); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1189: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '/', 1116, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1222, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1221, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1285, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - 0xb5, 1297, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '/', 1117, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + '_', 1231, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1222, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1286, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(276); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(277); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1190: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '/', 1116, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1225, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1223, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1285, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - 0xb5, 1297, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '/', 1117, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1222, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1286, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(276); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(277); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1191: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); ADVANCE_MAP( - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '/', 1116, - '<', 1145, - '=', 323, - '>', 1147, - 'a', 1269, - 'b', 1258, - 'e', 1273, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '/', 1117, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1226, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1224, + 'g', 1225, 'h', 1233, - 'i', 1271, - 'l', 1259, - 'm', 1279, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, 'n', 1283, - 'o', 1285, - 's', 1305, - 'x', 1278, + 'o', 1286, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(276); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(277); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1192: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '#') ADVANCE(2192); + ADVANCE_MAP( + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '/', 1117, + '<', 1146, + '=', 324, + '>', 1148, + 'a', 1270, + 'b', 1259, + 'e', 1274, + 'h', 1234, + 'i', 1272, + 'l', 1260, + 'm', 1280, + 'n', 1284, + 'o', 1286, + 's', 1306, + 'x', 1279, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(276); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(277); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1193: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '+', 1227, - '-', 1229, - '>', 1741, - 'I', 1325, - '_', 1229, - 'i', 1325, - 'n', 1243, - 'r', 1286, - 'B', 1656, - 'b', 1656, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '\t' || + lookahead == ' ') SKIP(277); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1194: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1248); - if (lookahead == '>') ADVANCE(1743); - if (lookahead == 'r') ADVANCE(1133); - if (lookahead == 'u') ADVANCE(1307); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + ADVANCE_MAP( + '+', 1228, + '-', 1230, + '>', 1742, + 'I', 1326, + '_', 1230, + 'i', 1326, + 'n', 1244, + 'r', 1287, + 'B', 1657, + 'b', 1657, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1195: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1277); - if (lookahead == '>') ADVANCE(1737); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == '+') ADVANCE(1249); + if (lookahead == '>') ADVANCE(1744); + if (lookahead == 'r') ADVANCE(1134); + if (lookahead == 'u') ADVANCE(1308); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1196: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '+', 1276, - '>', 1741, - 'I', 1325, - 'i', 1325, - 'n', 1243, - 'r', 1286, - 'B', 1656, - 'b', 1656, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == '+') ADVANCE(1278); + if (lookahead == '>') ADVANCE(1738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1197: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1276); - if (lookahead == '>') ADVANCE(1741); - if (lookahead == 'n') ADVANCE(1243); - if (lookahead == 'r') ADVANCE(1286); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + ADVANCE_MAP( + '+', 1277, + '>', 1742, + 'I', 1326, + 'i', 1326, + 'n', 1244, + 'r', 1287, + 'B', 1657, + 'b', 1657, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1198: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1249); - if (lookahead == '>') ADVANCE(1739); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == '+') ADVANCE(1277); + if (lookahead == '>') ADVANCE(1742); + if (lookahead == 'n') ADVANCE(1244); + if (lookahead == 'r') ADVANCE(1287); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1199: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '+', 1280, - '>', 524, - 'I', 1325, - 'i', 1325, - 'n', 1243, - 'r', 1291, - 'B', 1656, - 'b', 1656, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == '+') ADVANCE(1250); + if (lookahead == '>') ADVANCE(1740); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1200: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1280); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'n') ADVANCE(1243); - if (lookahead == 'r') ADVANCE(1291); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + ADVANCE_MAP( + '+', 1281, + '>', 525, + 'I', 1326, + 'i', 1326, + 'n', 1244, + 'r', 1292, + 'B', 1657, + 'b', 1657, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1201: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - '+', 1228, - '-', 1229, - '>', 524, - 'I', 1325, - '_', 1229, - 'i', 1325, - 'n', 1243, - 'r', 1291, - 'B', 1656, - 'b', 1656, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == '+') ADVANCE(1281); + if (lookahead == '>') ADVANCE(525); + if (lookahead == 'n') ADVANCE(1244); + if (lookahead == 'r') ADVANCE(1292); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1202: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1250); - if (lookahead == '>') ADVANCE(525); - if (lookahead == 'r') ADVANCE(1133); - if (lookahead == 'u') ADVANCE(1311); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + ADVANCE_MAP( + '+', 1229, + '-', 1230, + '>', 525, + 'I', 1326, + '_', 1230, + 'i', 1326, + 'n', 1244, + 'r', 1292, + 'B', 1657, + 'b', 1657, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1203: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1284); - if (lookahead == '>') ADVANCE(527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == '+') ADVANCE(1251); + if (lookahead == '>') ADVANCE(526); + if (lookahead == 'r') ADVANCE(1134); + if (lookahead == 'u') ADVANCE(1312); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1204: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '+') ADVANCE(1251); - if (lookahead == '>') ADVANCE(529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == '+') ADVANCE(1285); + if (lookahead == '>') ADVANCE(528); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1205: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1236); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == '+') ADVANCE(1252); + if (lookahead == '>') ADVANCE(530); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1206: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1252); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == '-') ADVANCE(1237); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1207: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '-') ADVANCE(1320); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == '-') ADVANCE(1253); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1208: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == '-') ADVANCE(1321); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1209: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == '-') ADVANCE(1322); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1210: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == '-') ADVANCE(1323); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1211: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '.') ADVANCE(1596); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == '-') ADVANCE(1324); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1212: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '=') ADVANCE(1143); - if (lookahead == '~') ADVANCE(1125); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == '.') ADVANCE(1597); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1213: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1751); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == '=') ADVANCE(1144); + if (lookahead == '~') ADVANCE(1126); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1214: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1749); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == '>') ADVANCE(1752); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1215: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1745); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == '>') ADVANCE(1750); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1216: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(1747); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == '>') ADVANCE(1746); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1217: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == '>') ADVANCE(1748); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1218: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == '>') ADVANCE(527); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1219: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '>') ADVANCE(530); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == '>') ADVANCE(529); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1220: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == '>') ADVANCE(531); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1221: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - ADVANCE_MAP( - 'I', 1325, - '_', 1229, - 'i', 1325, - 'n', 1243, - '+', 1229, - '-', 1229, - 'B', 1656, - 'b', 1656, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == '>') ADVANCE(532); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1222: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1325); - if (lookahead == '_') ADVANCE(1229); - if (lookahead == 'i') ADVANCE(1238); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1229); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + ADVANCE_MAP( + 'I', 1326, + '_', 1230, + 'i', 1326, + 'n', 1244, + '+', 1230, + '-', 1230, + 'B', 1657, + 'b', 1657, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1223: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1325); - if (lookahead == 'i') ADVANCE(1325); - if (lookahead == 'n') ADVANCE(1243); + if (lookahead == 'I') ADVANCE(1326); + if (lookahead == '_') ADVANCE(1230); + if (lookahead == 'i') ADVANCE(1239); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1230); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + lookahead == 'b') ADVANCE(1657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1224: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1325); - if (lookahead == 'i') ADVANCE(1325); + if (lookahead == 'I') ADVANCE(1326); + if (lookahead == 'i') ADVANCE(1326); + if (lookahead == 'n') ADVANCE(1244); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1225: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1325); - if (lookahead == 'i') ADVANCE(1238); + if (lookahead == 'I') ADVANCE(1326); + if (lookahead == 'i') ADVANCE(1326); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1226: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'I') ADVANCE(1325); - if (lookahead == 'i') ADVANCE(1270); - if (lookahead == 'o') ADVANCE(1241); - if (lookahead == 's') ADVANCE(1661); + if (lookahead == 'I') ADVANCE(1326); + if (lookahead == 'i') ADVANCE(1239); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1227: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '_') ADVANCE(1229); - if (lookahead == 'o') ADVANCE(1213); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'I') ADVANCE(1326); + if (lookahead == 'i') ADVANCE(1271); + if (lookahead == 'o') ADVANCE(1242); + if (lookahead == 's') ADVANCE(1662); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1228: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '_') ADVANCE(1229); - if (lookahead == 'o') ADVANCE(1217); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == '_') ADVANCE(1230); + if (lookahead == 'o') ADVANCE(1214); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1229: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == '_') ADVANCE(1229); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == '_') ADVANCE(1230); + if (lookahead == 'o') ADVANCE(1218); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1230: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == '_') ADVANCE(1230); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1231: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1324); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == '_') ADVANCE(1231); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1232: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1298); - if (lookahead == 'r') ADVANCE(1661); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'a') ADVANCE(1325); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1233: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1298); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'a') ADVANCE(1299); + if (lookahead == 'r') ADVANCE(1662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1234: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1290); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'a') ADVANCE(1299); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1235: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1299); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'a') ADVANCE(1291); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1236: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1274); - if (lookahead == 'o') ADVANCE(1288); - if (lookahead == 's') ADVANCE(1253); - if (lookahead == 'x') ADVANCE(1281); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'a') ADVANCE(1300); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1237: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'a') ADVANCE(1296); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'a') ADVANCE(1275); + if (lookahead == 'o') ADVANCE(1289); + if (lookahead == 's') ADVANCE(1254); + if (lookahead == 'x') ADVANCE(1282); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1238: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'a') ADVANCE(1297); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1239: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'c') ADVANCE(1661); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1240: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1131); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'c') ADVANCE(1662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1241: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1118); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'd') ADVANCE(1132); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1242: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1128); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'd') ADVANCE(1119); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1243: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1300); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'd') ADVANCE(1129); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1244: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'd') ADVANCE(1302); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'd') ADVANCE(1301); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1245: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1239); - if (lookahead == 't') ADVANCE(1234); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'd') ADVANCE(1303); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1246: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1126); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'e') ADVANCE(1240); + if (lookahead == 't') ADVANCE(1235); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1247: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 'e') ADVANCE(1127); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1248: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1214); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'e') ADVANCE(1128); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1249: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1293); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'e') ADVANCE(1215); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1250: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1218); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'e') ADVANCE(1294); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1251: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1294); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'e') ADVANCE(1219); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1252: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'e') ADVANCE(1275); - if (lookahead == 'h') ADVANCE(1235); - if (lookahead == 'i') ADVANCE(1272); - if (lookahead == 'l') ADVANCE(1264); - if (lookahead == 's') ADVANCE(1317); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'e') ADVANCE(1295); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1253: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1268); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'e') ADVANCE(1276); + if (lookahead == 'h') ADVANCE(1236); + if (lookahead == 'i') ADVANCE(1273); + if (lookahead == 'l') ADVANCE(1265); + if (lookahead == 's') ADVANCE(1318); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1254: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1140); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'h') ADVANCE(1269); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1255: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1138); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'h') ADVANCE(1141); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1256: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1141); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'h') ADVANCE(1139); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1257: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'h') ADVANCE(1139); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'h') ADVANCE(1142); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1258: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1304); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'h') ADVANCE(1140); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1259: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1266); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'i') ADVANCE(1305); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1260: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1308); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'i') ADVANCE(1267); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1261: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1310); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'i') ADVANCE(1309); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1262: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1312); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'i') ADVANCE(1311); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1263: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 'i') ADVANCE(1313); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1264: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'i') ADVANCE(1267); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'i') ADVANCE(1314); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1265: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'k') ADVANCE(1661); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'i') ADVANCE(1268); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1266: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'k') ADVANCE(1246); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'k') ADVANCE(1662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1267: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 'k') ADVANCE(1247); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1268: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'l') ADVANCE(1122); - if (lookahead == 'r') ADVANCE(1123); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'k') ADVANCE(1248); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1269: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1240); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'l') ADVANCE(1123); + if (lookahead == 'r') ADVANCE(1124); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1270: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1661); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'n') ADVANCE(1241); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1271: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1134); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'n') ADVANCE(1662); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1272: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 'n') ADVANCE(1135); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1273: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1243); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'n') ADVANCE(1136); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1274: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1242); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'n') ADVANCE(1244); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1275: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'n') ADVANCE(1244); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'n') ADVANCE(1243); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1276: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1213); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'n') ADVANCE(1245); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1277: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1318); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'o') ADVANCE(1214); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1278: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1287); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'o') ADVANCE(1319); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1279: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1241); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'o') ADVANCE(1288); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1280: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1217); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'o') ADVANCE(1242); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1281: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1289); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'o') ADVANCE(1218); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1282: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1306); - if (lookahead == 's') ADVANCE(1661); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'o') ADVANCE(1290); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1283: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1306); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'o') ADVANCE(1307); + if (lookahead == 's') ADVANCE(1662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1284: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'o') ADVANCE(1319); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'o') ADVANCE(1307); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1285: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1133); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'o') ADVANCE(1320); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1286: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1195); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'r') ADVANCE(1134); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1287: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1132); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'r') ADVANCE(1196); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1288: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1130); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'r') ADVANCE(1133); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1289: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1129); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'r') ADVANCE(1131); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1290: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1315); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'r') ADVANCE(1130); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1291: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1203); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'r') ADVANCE(1316); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1292: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1216); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'r') ADVANCE(1204); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1293: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1292); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'r') ADVANCE(1217); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1294: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1295); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'r') ADVANCE(1293); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1295: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1220); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'r') ADVANCE(1296); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1296: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'r') ADVANCE(1316); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'r') ADVANCE(1221); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1297: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1661); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'r') ADVANCE(1317); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1298: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1136); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 's') ADVANCE(1662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1299: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 's') ADVANCE(1137); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1300: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 's') ADVANCE(1207); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 's') ADVANCE(1138); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1301: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 's') ADVANCE(1208); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1302: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 's') ADVANCE(1209); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1303: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 's') ADVANCE(1210); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1304: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1205); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 's') ADVANCE(1211); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1305: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1234); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 't') ADVANCE(1206); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1306: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1206); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 't') ADVANCE(1235); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1307: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1198); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 't') ADVANCE(1207); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1308: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1254); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 't') ADVANCE(1199); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1309: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1215); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 't') ADVANCE(1255); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1310: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1255); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 't') ADVANCE(1216); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1311: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1204); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 't') ADVANCE(1256); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1312: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1256); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 't') ADVANCE(1205); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1313: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 't') ADVANCE(1257); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1314: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1219); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 't') ADVANCE(1258); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1315: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1301); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 't') ADVANCE(1220); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1316: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1303); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 't') ADVANCE(1302); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1317: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 't') ADVANCE(1237); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 't') ADVANCE(1304); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1318: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'u') ADVANCE(1309); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 't') ADVANCE(1238); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1319: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'u') ADVANCE(1314); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'u') ADVANCE(1310); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1320: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'w') ADVANCE(1260); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'u') ADVANCE(1315); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1321: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 'w') ADVANCE(1261); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1322: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 'w') ADVANCE(1262); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1323: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if (lookahead == 'w') ADVANCE(1263); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1324: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'y') ADVANCE(1661); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'w') ADVANCE(1264); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1325: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'y') ADVANCE(1662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1326: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1326); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1327: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(664); - ADVANCE_MAP( - '\n', 1451, - '\r', 9, - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1598, - '/', 1116, - ';', 1454, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1222, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1193, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1194, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - 0xb5, 1297, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1327); END_STATE(); case 1328: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1598, - '/', 1116, - ';', 1454, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1222, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1201, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1202, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - 0xb5, 1297, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1599, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1194, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || lookahead == ' ') SKIP(622); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1329: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1211, - '/', 1116, - ';', 1454, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1222, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - '_', 1230, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1193, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1194, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - 0xb5, 1297, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1599, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1202, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1203, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(623); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1330: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1211, - '/', 1116, - ';', 1454, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1222, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - '_', 1230, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1201, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1202, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - 0xb5, 1297, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + '_', 1231, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1194, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || lookahead == ' ') SKIP(622); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1331: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1211, - '/', 1116, - ';', 1454, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1222, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1193, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1194, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - 0xb5, 1297, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + '_', 1231, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1202, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1203, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(623); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1332: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1211, - '/', 1116, - ';', 1454, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1222, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1201, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1202, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - 0xb5, 1297, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1194, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || lookahead == ' ') SKIP(622); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1333: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1211, - '/', 1116, - ';', 1454, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1225, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1196, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1194, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - 0xb5, 1297, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1223, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1202, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1203, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(623); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1334: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '.', 1211, - '/', 1116, - ';', 1454, - '<', 1145, - '=', 323, - '>', 1147, - 'B', 1656, - 'E', 1225, - 'G', 1225, - 'K', 1225, - 'M', 1225, - 'P', 1225, - 'T', 1225, - 'a', 1269, - 'b', 1657, - 'd', 1231, - 'e', 1199, - 'g', 1224, - 'h', 1232, - 'i', 1271, - 'k', 1224, - 'l', 1259, - 'm', 1226, - 'n', 1282, - 'o', 1202, - 'p', 1224, - 's', 1245, - 't', 1224, - 'u', 1297, - 'w', 1265, - 'x', 1278, - '|', 1455, - 0xb5, 1297, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1226, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1197, + 'g', 1225, + 'h', 1233, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, + 'n', 1283, + 'o', 1195, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || lookahead == ' ') SKIP(622); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1335: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '/', 1116, - ';', 1454, - '<', 1145, - '=', 323, - '>', 1147, - 'a', 1269, - 'b', 1258, - 'e', 1197, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '.', 1212, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'B', 1657, + 'E', 1226, + 'G', 1226, + 'K', 1226, + 'M', 1226, + 'P', 1226, + 'T', 1226, + 'a', 1270, + 'b', 1658, + 'd', 1232, + 'e', 1200, + 'g', 1225, 'h', 1233, - 'i', 1271, - 'l', 1259, - 'm', 1279, + 'i', 1272, + 'k', 1225, + 'l', 1260, + 'm', 1227, 'n', 1283, - 'o', 1194, - 's', 1305, - 'x', 1278, - '|', 1455, + 'o', 1203, + 'p', 1225, + 's', 1246, + 't', 1225, + 'u', 1298, + 'w', 1266, + 'x', 1279, + '|', 1456, + 0xb5, 1298, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(621); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + lookahead == ' ') SKIP(623); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1336: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (eof) ADVANCE(664); + if (eof) ADVANCE(665); ADVANCE_MAP( - '\n', 1451, + '\n', 1452, '\r', 9, - '!', 1212, - '#', 2192, - '*', 1115, - '+', 1120, - '-', 1121, - '/', 1116, - ';', 1454, - '<', 1145, - '=', 323, - '>', 1147, - 'a', 1269, - 'b', 1258, - 'e', 1200, - 'h', 1233, - 'i', 1271, - 'l', 1259, - 'm', 1279, - 'n', 1283, - 'o', 1202, - 's', 1305, - 'x', 1278, - '|', 1455, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'a', 1270, + 'b', 1259, + 'e', 1198, + 'h', 1234, + 'i', 1272, + 'l', 1260, + 'm', 1280, + 'n', 1284, + 'o', 1195, + 's', 1306, + 'x', 1279, + '|', 1456, ); if (lookahead == '\t' || lookahead == ' ') SKIP(622); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1326); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1337: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1349); - if (lookahead == '-') ADVANCE(1978); - if (lookahead == 'I') ADVANCE(1375); - if (lookahead == '_') ADVANCE(1349); - if (lookahead == 'i') ADVANCE(1375); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1660); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); + if (eof) ADVANCE(665); + ADVANCE_MAP( + '\n', 1452, + '\r', 9, + '!', 1213, + '#', 2193, + '*', 1116, + '+', 1121, + '-', 1122, + '/', 1117, + ';', 1455, + '<', 1146, + '=', 324, + '>', 1148, + 'a', 1270, + 'b', 1259, + 'e', 1201, + 'h', 1234, + 'i', 1272, + 'l', 1260, + 'm', 1280, + 'n', 1284, + 'o', 1203, + 's', 1306, + 'x', 1279, + '|', 1456, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(623); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1327); END_STATE(); case 1338: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1349); - if (lookahead == '-') ADVANCE(1978); - if (lookahead == 'I') ADVANCE(1375); - if (lookahead == '_') ADVANCE(1349); - if (lookahead == 'i') ADVANCE(1352); + if (lookahead == '+') ADVANCE(1350); + if (lookahead == '-') ADVANCE(1979); + if (lookahead == 'I') ADVANCE(1376); + if (lookahead == '_') ADVANCE(1350); + if (lookahead == 'i') ADVANCE(1376); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1660); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + lookahead == 'b') ADVANCE(1661); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1619); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1339: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(1349); - if (lookahead == '-') ADVANCE(1978); - if (lookahead == '_') ADVANCE(1349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == '+') ADVANCE(1350); + if (lookahead == '-') ADVANCE(1979); + if (lookahead == 'I') ADVANCE(1376); + if (lookahead == '_') ADVANCE(1350); + if (lookahead == 'i') ADVANCE(1353); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1661); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1619); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1340: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(450); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == '+') ADVANCE(1350); + if (lookahead == '-') ADVANCE(1979); + if (lookahead == '_') ADVANCE(1350); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1619); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1341: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(363); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == '-') ADVANCE(451); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1342: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(434); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == '-') ADVANCE(364); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1343: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(451); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == '-') ADVANCE(435); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1344: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(518); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == '-') ADVANCE(452); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1345: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1375); - if (lookahead == 'i') ADVANCE(1375); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == '-') ADVANCE(519); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1346: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1375); - if (lookahead == 'i') ADVANCE(1352); + if (lookahead == 'I') ADVANCE(1376); + if (lookahead == 'i') ADVANCE(1376); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + lookahead == 'b') ADVANCE(1661); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1347: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(1375); - if (lookahead == 'i') ADVANCE(1363); - if (lookahead == 's') ADVANCE(1663); + if (lookahead == 'I') ADVANCE(1376); + if (lookahead == 'i') ADVANCE(1353); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + lookahead == 'b') ADVANCE(1661); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1348: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(1348); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == 'I') ADVANCE(1376); + if (lookahead == 'i') ADVANCE(1364); + if (lookahead == 's') ADVANCE(1664); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1661); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1349: ACCEPT_TOKEN(sym_identifier); if (lookahead == '_') ADVANCE(1349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1350: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(1370); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == '_') ADVANCE(1350); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1619); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1351: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(1374); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == 'a') ADVANCE(1371); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1352: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(1660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == 'a') ADVANCE(1375); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1353: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(1663); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == 'b') ADVANCE(1661); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1354: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1358); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == 'c') ADVANCE(1664); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1355: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1342); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == 'e') ADVANCE(1359); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1356: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(1353); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == 'e') ADVANCE(1343); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1357: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(1663); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == 'e') ADVANCE(1354); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1358: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1359); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == 'k') ADVANCE(1664); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1359: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1340); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == 'l') ADVANCE(1360); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1360: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'l') ADVANCE(1341); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1361: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(1360); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == 'l') ADVANCE(1342); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1362: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(1367); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == 'l') ADVANCE(1361); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1363: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1663); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == 'm') ADVANCE(1368); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1364: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1090); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == 'n') ADVANCE(1664); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1661); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1365: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(1355); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == 'n') ADVANCE(1091); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1366: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(1368); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == 'n') ADVANCE(1356); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1367: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(1366); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == 'o') ADVANCE(1369); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1368: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1372); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == 'p') ADVANCE(1367); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1369: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1663); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == 'r') ADVANCE(1373); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1370: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(1344); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == 'r') ADVANCE(1664); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1371: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1663); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == 'r') ADVANCE(1345); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1372: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1343); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == 's') ADVANCE(1664); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1373: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(1361); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == 't') ADVANCE(1344); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1374: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(1663); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == 'u') ADVANCE(1362); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1375: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1660); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == 'y') ADVANCE(1664); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1376: ACCEPT_TOKEN(sym_identifier); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1661); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1377: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(440); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'r') ADVANCE(1422); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + ACCEPT_TOKEN(sym_identifier); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1378: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(382); + if (lookahead == '+') ADVANCE(441); if (lookahead == '>') ADVANCE(525); - if (lookahead == 'u') ADVANCE(1435); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'r') ADVANCE(1423); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1379: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(445); - if (lookahead == '>') ADVANCE(527); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == '+') ADVANCE(383); + if (lookahead == '>') ADVANCE(526); + if (lookahead == 'u') ADVANCE(1436); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1380: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(386); - if (lookahead == '>') ADVANCE(529); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == '+') ADVANCE(446); + if (lookahead == '>') ADVANCE(528); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1381: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N') ADVANCE(1442); - if (lookahead == 'f') ADVANCE(1072); - if (lookahead == 'n') ADVANCE(1089); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == '+') ADVANCE(387); + if (lookahead == '>') ADVANCE(530); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1382: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(1382); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1382); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'N') ADVANCE(1443); + if (lookahead == 'f') ADVANCE(1073); + if (lookahead == 'n') ADVANCE(1090); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1383: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1430); - if (lookahead == 'o') ADVANCE(1415); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == '_') ADVANCE(1383); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1383); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1384: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1412); - if (lookahead == 'o') ADVANCE(1421); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'a') ADVANCE(1431); + if (lookahead == 'o') ADVANCE(1416); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1385: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1425); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'a') ADVANCE(1413); + if (lookahead == 'o') ADVANCE(1422); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1386: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(1436); - if (lookahead == 'o') ADVANCE(1389); - if (lookahead == 'u') ADVANCE(1432); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'a') ADVANCE(1426); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1387: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(1401); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'a') ADVANCE(1437); + if (lookahead == 'o') ADVANCE(1390); + if (lookahead == 'u') ADVANCE(1433); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1388: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'c') ADVANCE(1402); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1389: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(1439); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'c') ADVANCE(1403); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1390: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1400); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'd') ADVANCE(1440); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1391: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1051); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'e') ADVANCE(1401); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1392: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1075); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'e') ADVANCE(1052); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1393: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1093); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'e') ADVANCE(1076); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1394: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1096); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'e') ADVANCE(1094); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1395: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1069); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'e') ADVANCE(1097); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1396: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1060); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'e') ADVANCE(1070); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1397: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1431); - if (lookahead == 'o') ADVANCE(1416); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'e') ADVANCE(1061); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1398: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1414); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'e') ADVANCE(1432); + if (lookahead == 'o') ADVANCE(1417); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1399: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(1423); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'e') ADVANCE(1415); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1400: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'f') ADVANCE(829); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'e') ADVANCE(1424); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1401: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1081); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'f') ADVANCE(830); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1402: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1084); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'h') ADVANCE(1082); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1403: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(1405); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'h') ADVANCE(1085); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1404: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(1385); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'h') ADVANCE(1406); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1405: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(1409); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'i') ADVANCE(1386); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1406: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1404); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'i') ADVANCE(1410); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1407: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1099); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'l') ADVANCE(1405); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1408: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1407); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'l') ADVANCE(1100); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1409: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1395); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'l') ADVANCE(1408); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1410: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'l') ADVANCE(1396); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1411: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1427); - if (lookahead == 'x') ADVANCE(1419); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'l') ADVANCE(1397); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1412: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(1429); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'l') ADVANCE(1428); + if (lookahead == 'x') ADVANCE(1420); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1413: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1057); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'l') ADVANCE(1430); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1414: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1440); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'n') ADVANCE(1058); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1415: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(1428); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'n') ADVANCE(1441); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1416: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1418); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'n') ADVANCE(1429); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1417: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(1424); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'o') ADVANCE(1419); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1418: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(1066); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'o') ADVANCE(1425); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1419: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(1417); - if (lookahead == 't') ADVANCE(1399); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'p') ADVANCE(1067); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1420: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1438); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'p') ADVANCE(1418); + if (lookahead == 't') ADVANCE(1400); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1421: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1063); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'r') ADVANCE(1439); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1422: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1379); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'r') ADVANCE(1064); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1423: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1413); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'r') ADVANCE(1380); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1424: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(1434); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'r') ADVANCE(1414); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1425: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(674); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'r') ADVANCE(1435); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1426: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1391); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 's') ADVANCE(675); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1427: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 's') ADVANCE(1392); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1428: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1433); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 's') ADVANCE(1393); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1429: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(1394); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 's') ADVANCE(1434); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1430: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1387); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 's') ADVANCE(1395); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1431: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(680); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 't') ADVANCE(1388); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1432: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(683); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 't') ADVANCE(681); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1433: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(686); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 't') ADVANCE(684); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1434: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(670); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 't') ADVANCE(687); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1435: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1380); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 't') ADVANCE(671); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1436: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(1388); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 't') ADVANCE(1381); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1437: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1408); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1445); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 't') ADVANCE(1389); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1438: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1393); - if (lookahead == 'y') ADVANCE(1078); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'u') ADVANCE(1409); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1446); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1439: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(1410); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'u') ADVANCE(1394); + if (lookahead == 'y') ADVANCE(1079); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1440: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(1054); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'u') ADVANCE(1411); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1441: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1445); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'v') ADVANCE(1055); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1442: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1444); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1446); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1443: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1448); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1445); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1444: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1447); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + lookahead == 'i') ADVANCE(1449); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1445: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1450); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1448); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1446: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1442); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + lookahead == 'n') ADVANCE(1451); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1447: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1443); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1448: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1449); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1444); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1449: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1450); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1450); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1450: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1450); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1451); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1451: - ACCEPT_TOKEN(sym__newline); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 802, lookahead)) ADVANCE(1451); END_STATE(); case 1452: - ACCEPT_TOKEN(sym__space); - if (lookahead == ':') ADVANCE(1716); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1452); + ACCEPT_TOKEN(sym__newline); END_STATE(); case 1453: ACCEPT_TOKEN(sym__space); + if (lookahead == ':') ADVANCE(1717); if (lookahead == '\t' || lookahead == ' ') ADVANCE(1453); END_STATE(); case 1454: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(sym__space); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1454); END_STATE(); case 1455: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 1456: - ACCEPT_TOKEN(anon_sym_err_GT_PIPE); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 1457: - ACCEPT_TOKEN(anon_sym_out_GT_PIPE); + ACCEPT_TOKEN(anon_sym_err_GT_PIPE); END_STATE(); case 1458: - ACCEPT_TOKEN(anon_sym_e_GT_PIPE); + ACCEPT_TOKEN(anon_sym_out_GT_PIPE); END_STATE(); case 1459: - ACCEPT_TOKEN(anon_sym_o_GT_PIPE); + ACCEPT_TOKEN(anon_sym_e_GT_PIPE); END_STATE(); case 1460: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); + ACCEPT_TOKEN(anon_sym_o_GT_PIPE); END_STATE(); case 1461: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); END_STATE(); case 1462: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); END_STATE(); case 1463: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); END_STATE(); case 1464: - ACCEPT_TOKEN(sym_attribute_identifier); - if (set_contains(sym_attribute_identifier_character_set_2, 801, lookahead)) ADVANCE(1464); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); END_STATE(); case 1465: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(sym_attribute_identifier); + if (set_contains(sym_attribute_identifier_character_set_2, 801, lookahead)) ADVANCE(1465); END_STATE(); case 1466: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 1467: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 1468: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 1469: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 1470: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 1471: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 1472: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 1473: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 1474: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(1705); - if (lookahead == '\'') ADVANCE(1704); END_STATE(); case 1475: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(1705); - if (lookahead == '\'') ADVANCE(1704); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '"') ADVANCE(1706); + if (lookahead == '\'') ADVANCE(1705); END_STATE(); case 1476: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '"') ADVANCE(1706); + if (lookahead == '\'') ADVANCE(1705); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1477: - ACCEPT_TOKEN(anon_sym_cell_DASHpath); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1478: - ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); + ACCEPT_TOKEN(anon_sym_cell_DASHpath); END_STATE(); case 1479: - ACCEPT_TOKEN(anon_sym_import_DASHpattern); + ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); END_STATE(); case 1480: - ACCEPT_TOKEN(anon_sym_one_DASHof); + ACCEPT_TOKEN(anon_sym_import_DASHpattern); END_STATE(); case 1481: - ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); + ACCEPT_TOKEN(anon_sym_one_DASHof); END_STATE(); case 1482: - ACCEPT_TOKEN(anon_sym_LF); + ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); END_STATE(); case 1483: - ACCEPT_TOKEN(anon_sym_GT2); + ACCEPT_TOKEN(anon_sym_LF); END_STATE(); case 1484: ACCEPT_TOKEN(anon_sym_GT2); - if (lookahead == '=') ADVANCE(1555); END_STATE(); case 1485: - ACCEPT_TOKEN(anon_sym_AT2); + ACCEPT_TOKEN(anon_sym_GT2); + if (lookahead == '=') ADVANCE(1556); END_STATE(); case 1486: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_AT2); END_STATE(); case 1487: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 1488: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 1489: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1490: - ACCEPT_TOKEN(anon_sym_DASH2); + ACCEPT_TOKEN(anon_sym_DASH_DASH); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1491: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1488); END_STATE(); case 1492: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1488); - if (lookahead == '.') ADVANCE(339); - if (lookahead == '_') ADVANCE(312); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(540); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if (lookahead == '-') ADVANCE(1489); END_STATE(); case 1493: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1488); - if (lookahead == '.') ADVANCE(1975); - if (lookahead == '_') ADVANCE(1967); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if (lookahead == '-') ADVANCE(1489); + if (lookahead == '.') ADVANCE(340); + if (lookahead == '_') ADVANCE(313); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); END_STATE(); case 1494: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(1488); - if (lookahead == '.') ADVANCE(341); - if (lookahead == '_') ADVANCE(318); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if (lookahead == '-') ADVANCE(1489); + if (lookahead == '.') ADVANCE(1976); + if (lookahead == '_') ADVANCE(1966); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); END_STATE(); case 1495: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(339); - if (lookahead == '_') ADVANCE(312); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(540); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if (lookahead == '-') ADVANCE(1489); + if (lookahead == '.') ADVANCE(342); + if (lookahead == '_') ADVANCE(319); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); END_STATE(); case 1496: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(869); - if (lookahead == '_') ADVANCE(851); + if (lookahead == '.') ADVANCE(340); + if (lookahead == '_') ADVANCE(313); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1028); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(869); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + lookahead == 'i') ADVANCE(541); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); END_STATE(); case 1497: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(1818); - if (lookahead == '_') ADVANCE(1795); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if (lookahead == '.') ADVANCE(870); + if (lookahead == '_') ADVANCE(852); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1029); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(870); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1498: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(341); - if (lookahead == '_') ADVANCE(318); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if (lookahead == '.') ADVANCE(1819); + if (lookahead == '_') ADVANCE(1796); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); END_STATE(); case 1499: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '=') ADVANCE(689); + if (lookahead == '.') ADVANCE(342); + if (lookahead == '_') ADVANCE(319); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); END_STATE(); case 1500: ACCEPT_TOKEN(anon_sym_DASH2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '=') ADVANCE(690); END_STATE(); case 1501: - ACCEPT_TOKEN(sym_param_short_flag_identifier); + ACCEPT_TOKEN(anon_sym_DASH2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1502: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(sym_param_short_flag_identifier); END_STATE(); case 1503: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 1504: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 1505: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(2016); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 1506: ACCEPT_TOKEN(anon_sym__); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == '_') ADVANCE(2017); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); END_STATE(); case 1507: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(anon_sym__); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1508: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(693); - if (lookahead == '<') ADVANCE(1609); - if (lookahead == '=') ADVANCE(1608); END_STATE(); case 1509: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(1992); - if (lookahead == '<') ADVANCE(1609); - if (lookahead == '=') ADVANCE(1608); + if (lookahead == '.') ADVANCE(694); + if (lookahead == '<') ADVANCE(1610); + if (lookahead == '=') ADVANCE(1609); END_STATE(); case 1510: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(2082); - if (lookahead == '<') ADVANCE(1609); - if (lookahead == '=') ADVANCE(1608); + if (lookahead == '.') ADVANCE(1993); + if (lookahead == '<') ADVANCE(1610); + if (lookahead == '=') ADVANCE(1609); END_STATE(); case 1511: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(1609); - if (lookahead == '=') ADVANCE(1608); + if (lookahead == '.') ADVANCE(2083); + if (lookahead == '<') ADVANCE(1610); + if (lookahead == '=') ADVANCE(1609); END_STATE(); case 1512: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(1609); - if (lookahead == '=') ADVANCE(1608); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1049); + if (lookahead == '<') ADVANCE(1610); + if (lookahead == '=') ADVANCE(1609); END_STATE(); case 1513: - ACCEPT_TOKEN(anon_sym_DOLLAR2); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '<') ADVANCE(1610); + if (lookahead == '=') ADVANCE(1609); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1050); END_STATE(); case 1514: - ACCEPT_TOKEN(anon_sym_STAR2); + ACCEPT_TOKEN(anon_sym_DOLLAR2); END_STATE(); case 1515: ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(1565); END_STATE(); case 1516: ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(1565); - if (lookahead == '=') ADVANCE(690); + if (lookahead == '*') ADVANCE(1566); END_STATE(); case 1517: ACCEPT_TOKEN(anon_sym_STAR2); if (lookahead == '*') ADVANCE(1566); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '=') ADVANCE(691); END_STATE(); case 1518: - ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'a') ADVANCE(1521); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1528); + ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '*') ADVANCE(1567); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1519: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'e') ADVANCE(1092); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1528); + if (lookahead == 'a') ADVANCE(1522); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1529); END_STATE(); case 1520: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'e') ADVANCE(1095); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1528); + if (lookahead == 'e') ADVANCE(1093); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1529); END_STATE(); case 1521: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'l') ADVANCE(1524); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1528); + if (lookahead == 'e') ADVANCE(1096); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1529); END_STATE(); case 1522: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'o') ADVANCE(1525); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1528); + if (lookahead == 'l') ADVANCE(1525); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1529); END_STATE(); case 1523: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'r') ADVANCE(1526); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1528); + if (lookahead == 'o') ADVANCE(1526); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1529); END_STATE(); case 1524: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 's') ADVANCE(1520); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1528); + if (lookahead == 'r') ADVANCE(1527); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1529); END_STATE(); case 1525: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 't') ADVANCE(1527); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1528); + if (lookahead == 's') ADVANCE(1521); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1529); END_STATE(); case 1526: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (lookahead == 'u') ADVANCE(1519); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1528); + if (lookahead == 't') ADVANCE(1528); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1529); END_STATE(); case 1527: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1563); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1528); + if (lookahead == 'u') ADVANCE(1520); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1529); END_STATE(); case 1528: ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1528); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1564); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1529); END_STATE(); case 1529: - ACCEPT_TOKEN(anon_sym_where); + ACCEPT_TOKEN(aux_sym__where_predicate_lhs_path_head_token1); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1529); END_STATE(); case 1530: - ACCEPT_TOKEN(anon_sym_and2); + ACCEPT_TOKEN(anon_sym_where); END_STATE(); case 1531: ACCEPT_TOKEN(anon_sym_and2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1532: - ACCEPT_TOKEN(anon_sym_xor2); + ACCEPT_TOKEN(anon_sym_and2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1533: ACCEPT_TOKEN(anon_sym_xor2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1534: - ACCEPT_TOKEN(anon_sym_or2); + ACCEPT_TOKEN(anon_sym_xor2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1535: ACCEPT_TOKEN(anon_sym_or2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1536: - ACCEPT_TOKEN(anon_sym_not_DASHin2); + ACCEPT_TOKEN(anon_sym_or2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1537: ACCEPT_TOKEN(anon_sym_not_DASHin2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1538: - ACCEPT_TOKEN(anon_sym_has2); + ACCEPT_TOKEN(anon_sym_not_DASHin2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1539: ACCEPT_TOKEN(anon_sym_has2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1540: - ACCEPT_TOKEN(anon_sym_not_DASHhas2); + ACCEPT_TOKEN(anon_sym_has2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1541: ACCEPT_TOKEN(anon_sym_not_DASHhas2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1542: - ACCEPT_TOKEN(anon_sym_starts_DASHwith2); + ACCEPT_TOKEN(anon_sym_not_DASHhas2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1543: ACCEPT_TOKEN(anon_sym_starts_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1544: - ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); + ACCEPT_TOKEN(anon_sym_starts_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1545: ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1546: - ACCEPT_TOKEN(anon_sym_ends_DASHwith2); + ACCEPT_TOKEN(anon_sym_not_DASHstarts_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1547: ACCEPT_TOKEN(anon_sym_ends_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1548: - ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); + ACCEPT_TOKEN(anon_sym_ends_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1549: ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1550: - ACCEPT_TOKEN(anon_sym_EQ_EQ2); + ACCEPT_TOKEN(anon_sym_not_DASHends_DASHwith2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1551: - ACCEPT_TOKEN(anon_sym_BANG_EQ2); + ACCEPT_TOKEN(anon_sym_EQ_EQ2); END_STATE(); case 1552: - ACCEPT_TOKEN(anon_sym_LT2); + ACCEPT_TOKEN(anon_sym_BANG_EQ2); END_STATE(); case 1553: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(1554); END_STATE(); case 1554: - ACCEPT_TOKEN(anon_sym_LT_EQ2); + ACCEPT_TOKEN(anon_sym_LT2); + if (lookahead == '=') ADVANCE(1555); END_STATE(); case 1555: - ACCEPT_TOKEN(anon_sym_GT_EQ2); + ACCEPT_TOKEN(anon_sym_LT_EQ2); END_STATE(); case 1556: - ACCEPT_TOKEN(anon_sym_EQ_TILDE2); + ACCEPT_TOKEN(anon_sym_GT_EQ2); END_STATE(); case 1557: - ACCEPT_TOKEN(anon_sym_BANG_TILDE2); + ACCEPT_TOKEN(anon_sym_EQ_TILDE2); END_STATE(); case 1558: ACCEPT_TOKEN(anon_sym_BANG_TILDE2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1559: - ACCEPT_TOKEN(anon_sym_like2); + ACCEPT_TOKEN(anon_sym_BANG_TILDE2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1560: ACCEPT_TOKEN(anon_sym_like2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1561: - ACCEPT_TOKEN(anon_sym_not_DASHlike2); + ACCEPT_TOKEN(anon_sym_like2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1562: ACCEPT_TOKEN(anon_sym_not_DASHlike2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1563: - ACCEPT_TOKEN(aux_sym_expr_unary_token1); + ACCEPT_TOKEN(anon_sym_not_DASHlike2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1564: - ACCEPT_TOKEN(anon_sym_LPAREN2); + ACCEPT_TOKEN(aux_sym_expr_unary_token1); END_STATE(); case 1565: - ACCEPT_TOKEN(anon_sym_STAR_STAR2); + ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); case 1566: ACCEPT_TOKEN(anon_sym_STAR_STAR2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1567: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + ACCEPT_TOKEN(anon_sym_STAR_STAR2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1568: ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); - if (lookahead == '=') ADVANCE(692); END_STATE(); case 1569: ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '=') ADVANCE(693); END_STATE(); case 1570: - ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(1576); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1571: ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(1576); - if (lookahead == '=') ADVANCE(691); + if (lookahead == '/') ADVANCE(1577); END_STATE(); case 1572: ACCEPT_TOKEN(anon_sym_SLASH2); if (lookahead == '/') ADVANCE(1577); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '=') ADVANCE(692); END_STATE(); case 1573: ACCEPT_TOKEN(anon_sym_SLASH2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == '/') ADVANCE(1578); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1574: - ACCEPT_TOKEN(anon_sym_mod2); + ACCEPT_TOKEN(anon_sym_SLASH2); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1575: ACCEPT_TOKEN(anon_sym_mod2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1576: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); + ACCEPT_TOKEN(anon_sym_mod2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1577: ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1578: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1567); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1579: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1567); - if (lookahead == '.') ADVANCE(1818); - if (lookahead == '_') ADVANCE(1795); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if (lookahead == '+') ADVANCE(1568); END_STATE(); case 1580: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(1567); - if (lookahead == '.') ADVANCE(341); - if (lookahead == '_') ADVANCE(318); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if (lookahead == '+') ADVANCE(1568); + if (lookahead == '.') ADVANCE(1819); + if (lookahead == '_') ADVANCE(1796); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); END_STATE(); case 1581: ACCEPT_TOKEN(anon_sym_PLUS2); if (lookahead == '+') ADVANCE(1568); - if (lookahead == '=') ADVANCE(688); + if (lookahead == '.') ADVANCE(342); + if (lookahead == '_') ADVANCE(319); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); END_STATE(); case 1582: ACCEPT_TOKEN(anon_sym_PLUS2); if (lookahead == '+') ADVANCE(1569); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '=') ADVANCE(689); END_STATE(); case 1583: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(720); - if (lookahead == '_') ADVANCE(705); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if (lookahead == '+') ADVANCE(1570); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1584: - ACCEPT_TOKEN(anon_sym_bit_DASHshl2); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '.') ADVANCE(721); + if (lookahead == '_') ADVANCE(706); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); END_STATE(); case 1585: ACCEPT_TOKEN(anon_sym_bit_DASHshl2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1586: - ACCEPT_TOKEN(anon_sym_bit_DASHshr2); + ACCEPT_TOKEN(anon_sym_bit_DASHshl2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1587: ACCEPT_TOKEN(anon_sym_bit_DASHshr2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1588: - ACCEPT_TOKEN(anon_sym_bit_DASHand2); + ACCEPT_TOKEN(anon_sym_bit_DASHshr2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1589: ACCEPT_TOKEN(anon_sym_bit_DASHand2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1590: - ACCEPT_TOKEN(anon_sym_bit_DASHxor2); + ACCEPT_TOKEN(anon_sym_bit_DASHand2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1591: ACCEPT_TOKEN(anon_sym_bit_DASHxor2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1592: - ACCEPT_TOKEN(anon_sym_bit_DASHor2); + ACCEPT_TOKEN(anon_sym_bit_DASHxor2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1593: ACCEPT_TOKEN(anon_sym_bit_DASHor2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); END_STATE(); case 1594: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); + ACCEPT_TOKEN(anon_sym_bit_DASHor2); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1595: - ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(1486); - if (lookahead == '<') ADVANCE(1611); - if (lookahead == '=') ADVANCE(1610); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); END_STATE(); case 1596: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '<') ADVANCE(1611); - if (lookahead == '=') ADVANCE(1610); + if (lookahead == '.') ADVANCE(1487); + if (lookahead == '<') ADVANCE(1612); + if (lookahead == '=') ADVANCE(1611); END_STATE(); case 1597: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym_DOT_DOT2); + if (lookahead == '<') ADVANCE(1612); + if (lookahead == '=') ADVANCE(1611); END_STATE(); case 1598: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1596); END_STATE(); case 1599: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1596); - if (lookahead == '_') ADVANCE(721); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if (lookahead == '.') ADVANCE(1597); END_STATE(); case 1600: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1507); + if (lookahead == '.') ADVANCE(1597); + if (lookahead == '_') ADVANCE(722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); END_STATE(); case 1601: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1507); - if (lookahead == '_') ADVANCE(1949); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); + if (lookahead == '.') ADVANCE(1508); END_STATE(); case 1602: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1595); + if (lookahead == '.') ADVANCE(1508); + if (lookahead == '_') ADVANCE(1950); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); END_STATE(); case 1603: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1966); + if (lookahead == '.') ADVANCE(1969); END_STATE(); case 1604: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1966); - if (lookahead == '_') ADVANCE(1976); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); + if (lookahead == '.') ADVANCE(1969); + if (lookahead == '_') ADVANCE(1977); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); END_STATE(); case 1605: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1976); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); + if (lookahead == '.') ADVANCE(1596); END_STATE(); case 1606: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1949); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); + if (lookahead == '_') ADVANCE(1977); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); END_STATE(); case 1607: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); + if (lookahead == '_') ADVANCE(1950); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); END_STATE(); case 1608: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '_') ADVANCE(1820); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); END_STATE(); case 1609: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); END_STATE(); case 1610: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); END_STATE(); case 1611: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); END_STATE(); case 1612: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(1612); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); END_STATE(); case 1613: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); if (lookahead == '_') ADVANCE(1613); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1614: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); if (lookahead == '_') ADVANCE(1614); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1615: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); if (lookahead == '_') ADVANCE(1615); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); END_STATE(); case 1616: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); if (lookahead == '_') ADVANCE(1616); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); END_STATE(); case 1617: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(1617); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); END_STATE(); @@ -29246,2134 +29277,2139 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); if (lookahead == '_') ADVANCE(1618); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); END_STATE(); case 1619: - ACCEPT_TOKEN(anon_sym_RPAREN2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); + if (lookahead == '_') ADVANCE(1619); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1619); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1620: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); + ACCEPT_TOKEN(anon_sym_RPAREN2); END_STATE(); case 1621: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(823); - if (lookahead == '_') ADVANCE(1647); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); END_STATE(); case 1622: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2068); - if (lookahead == '_') ADVANCE(1647); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if (lookahead == '-') ADVANCE(824); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); END_STATE(); case 1623: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2122); - if (lookahead == '_') ADVANCE(1647); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if (lookahead == '-') ADVANCE(2069); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); END_STATE(); case 1624: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2174); - if (lookahead == '_') ADVANCE(1647); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if (lookahead == '-') ADVANCE(2123); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); END_STATE(); case 1625: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(560); - if (lookahead == '_') ADVANCE(1647); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if (lookahead == '-') ADVANCE(2175); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); END_STATE(); case 1626: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1647); - if (lookahead == 'b') ADVANCE(1654); - if (lookahead == 'o') ADVANCE(1664); - if (lookahead == 'x') ADVANCE(1666); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); + if (lookahead == '-') ADVANCE(561); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); END_STATE(); case 1627: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1647); - if (lookahead == 'b') ADVANCE(1654); - if (lookahead == 'o') ADVANCE(1664); - if (lookahead == 'x') ADVANCE(1666); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); + if (lookahead == '_') ADVANCE(1648); + if (lookahead == 'b') ADVANCE(1655); + if (lookahead == 'o') ADVANCE(1665); + if (lookahead == 'x') ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); END_STATE(); case 1628: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1647); - if (lookahead == 'b') ADVANCE(1654); - if (lookahead == 'o') ADVANCE(1664); - if (lookahead == 'x') ADVANCE(1666); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if (lookahead == '_') ADVANCE(1648); + if (lookahead == 'b') ADVANCE(1655); + if (lookahead == 'o') ADVANCE(1665); + if (lookahead == 'x') ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); END_STATE(); case 1629: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1647); - if (lookahead == 'b') ADVANCE(1654); - if (lookahead == 'o') ADVANCE(1664); - if (lookahead == 'x') ADVANCE(1666); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if (lookahead == '_') ADVANCE(1648); + if (lookahead == 'b') ADVANCE(1655); + if (lookahead == 'o') ADVANCE(1665); + if (lookahead == 'x') ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); END_STATE(); case 1630: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1647); - if (lookahead == 'b') ADVANCE(1654); - if (lookahead == 'o') ADVANCE(1664); - if (lookahead == 'x') ADVANCE(1666); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if (lookahead == '_') ADVANCE(1648); + if (lookahead == 'b') ADVANCE(1655); + if (lookahead == 'o') ADVANCE(1665); + if (lookahead == 'x') ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); END_STATE(); case 1631: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1647); - if (lookahead == 'b') ADVANCE(817); - if (lookahead == 'o') ADVANCE(819); - if (lookahead == 'x') ADVANCE(826); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if (lookahead == '_') ADVANCE(1648); + if (lookahead == 'b') ADVANCE(1655); + if (lookahead == 'o') ADVANCE(1665); + if (lookahead == 'x') ADVANCE(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); END_STATE(); case 1632: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1647); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1621); + if (lookahead == '_') ADVANCE(1648); + if (lookahead == 'b') ADVANCE(818); + if (lookahead == 'o') ADVANCE(820); + if (lookahead == 'x') ADVANCE(827); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); END_STATE(); case 1633: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1647); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1632); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1622); END_STATE(); case 1634: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1647); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1622); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); END_STATE(); case 1635: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1647); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1623); END_STATE(); case 1636: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1647); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1623); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); END_STATE(); case 1637: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1647); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1624); END_STATE(); case 1638: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1647); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1625); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); END_STATE(); case 1639: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1647); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1626); END_STATE(); case 1640: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1647); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1624); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); END_STATE(); case 1641: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1647); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1625); END_STATE(); case 1642: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1647); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1633); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); END_STATE(); case 1643: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1647); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1635); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1634); END_STATE(); case 1644: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1647); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1637); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1636); END_STATE(); case 1645: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1647); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1639); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1638); END_STATE(); case 1646: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1647); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1641); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1640); END_STATE(); case 1647: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(1647); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); + if (lookahead == '_') ADVANCE(1648); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1642); END_STATE(); case 1648: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); if (lookahead == '_') ADVANCE(1648); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); END_STATE(); case 1649: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); if (lookahead == '_') ADVANCE(1649); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); END_STATE(); case 1650: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token4); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); if (lookahead == '_') ADVANCE(1650); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); END_STATE(); case 1651: + ACCEPT_TOKEN(aux_sym__val_number_decimal_token4); + if (lookahead == '_') ADVANCE(1651); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1651); + END_STATE(); + case 1652: ACCEPT_TOKEN(aux_sym__val_number_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1651); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1652); END_STATE(); - case 1652: + case 1653: ACCEPT_TOKEN(aux_sym__val_number_token2); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1652); + lookahead == '_') ADVANCE(1653); END_STATE(); - case 1653: + case 1654: ACCEPT_TOKEN(aux_sym__val_number_token3); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1653); + lookahead == '_') ADVANCE(1654); END_STATE(); - case 1654: + case 1655: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1652); + lookahead == '_') ADVANCE(1653); END_STATE(); - case 1655: + case 1656: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(1032); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); - END_STATE(); - case 1656: - ACCEPT_TOKEN(sym_filesize_unit); + lookahead == '_') ADVANCE(1033); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 1657: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(1304); END_STATE(); case 1658: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(482); + if (lookahead == 'i') ADVANCE(1305); END_STATE(); case 1659: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(1902); + if (lookahead == 'i') ADVANCE(483); END_STATE(); case 1660: ACCEPT_TOKEN(sym_filesize_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == 'i') ADVANCE(1903); END_STATE(); case 1661: - ACCEPT_TOKEN(sym_duration_unit); + ACCEPT_TOKEN(sym_filesize_unit); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1662: ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(1050); END_STATE(); case 1663: ACCEPT_TOKEN(sym_duration_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1376); + if (lookahead == 'e') ADVANCE(1051); END_STATE(); case 1664: - ACCEPT_TOKEN(anon_sym_0o); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1653); + ACCEPT_TOKEN(sym_duration_unit); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1377); END_STATE(); case 1665: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(1035); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + lookahead == '_') ADVANCE(1654); END_STATE(); case 1666: + ACCEPT_TOKEN(anon_sym_0o); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(1036); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); + END_STATE(); + case 1667: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1651); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1652); END_STATE(); - case 1667: + case 1668: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1048); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); - case 1668: + case 1669: ACCEPT_TOKEN(anon_sym_LBRACK2); END_STATE(); - case 1669: + case 1670: ACCEPT_TOKEN(sym_hex_digit); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1669); - END_STATE(); - case 1670: - ACCEPT_TOKEN(sym_val_date); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1670); END_STATE(); case 1671: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(554); - if (lookahead == '+' || - lookahead == '-') ADVANCE(319); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1670); END_STATE(); case 1672: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(2066); + if (lookahead == '.') ADVANCE(555); if (lookahead == '+' || - lookahead == '-') ADVANCE(2005); + lookahead == '-') ADVANCE(320); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1670); + lookahead == 'z') ADVANCE(1671); END_STATE(); case 1673: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(2125); + if (lookahead == '.') ADVANCE(2067); if (lookahead == '+' || - lookahead == '-') ADVANCE(2088); + lookahead == '-') ADVANCE(2006); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1670); + lookahead == 'z') ADVANCE(1671); END_STATE(); case 1674: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(1685); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(553); + if (lookahead == '.') ADVANCE(2126); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2089); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(1671); END_STATE(); case 1675: ACCEPT_TOKEN(sym_val_date); if (lookahead == ':') ADVANCE(1686); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2061); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(554); END_STATE(); case 1676: ACCEPT_TOKEN(sym_val_date); if (lookahead == ':') ADVANCE(1687); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2119); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2062); END_STATE(); case 1677: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(825); + if (lookahead == ':') ADVANCE(1688); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2120); END_STATE(); case 1678: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2070); + if (lookahead == 'T') ADVANCE(826); END_STATE(); case 1679: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2128); + if (lookahead == 'T') ADVANCE(2071); END_STATE(); case 1680: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2176); + if (lookahead == 'T') ADVANCE(2129); END_STATE(); case 1681: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(563); + if (lookahead == 'T') ADVANCE(2177); END_STATE(); case 1682: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '+' || - lookahead == '-') ADVANCE(319); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1670); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1682); + if (lookahead == 'T') ADVANCE(564); END_STATE(); case 1683: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(2005); + lookahead == '-') ADVANCE(320); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1670); + lookahead == 'z') ADVANCE(1671); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1683); END_STATE(); case 1684: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(2088); + lookahead == '-') ADVANCE(2006); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1670); + lookahead == 'z') ADVANCE(1671); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1684); END_STATE(); case 1685: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(553); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2089); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(1671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); END_STATE(); case 1686: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2061); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(554); END_STATE(); case 1687: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2119); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2062); END_STATE(); case 1688: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(sym_val_date); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(2120); END_STATE(); case 1689: + ACCEPT_TOKEN(anon_sym_DQUOTE); + END_STATE(); + case 1690: ACCEPT_TOKEN(sym__escaped_str_content); - if (lookahead == '#') ADVANCE(1690); + if (lookahead == '#') ADVANCE(1691); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1689); + lookahead == ' ') ADVANCE(1690); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && - lookahead != '\\') ADVANCE(1690); + lookahead != '\\') ADVANCE(1691); END_STATE(); - case 1690: + case 1691: ACCEPT_TOKEN(sym__escaped_str_content); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(1690); + lookahead != '\\') ADVANCE(1691); END_STATE(); - case 1691: + case 1692: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 1692: + case 1693: ACCEPT_TOKEN(aux_sym__str_single_quotes_token1); - if (lookahead == '#') ADVANCE(1693); + if (lookahead == '#') ADVANCE(1694); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1692); + lookahead == ' ') ADVANCE(1693); if (lookahead != 0 && - lookahead != '\'') ADVANCE(1693); + lookahead != '\'') ADVANCE(1694); END_STATE(); - case 1693: + case 1694: ACCEPT_TOKEN(aux_sym__str_single_quotes_token1); if (lookahead != 0 && - lookahead != '\'') ADVANCE(1693); + lookahead != '\'') ADVANCE(1694); END_STATE(); - case 1694: + case 1695: ACCEPT_TOKEN(anon_sym_SQUOTE2); END_STATE(); - case 1695: + case 1696: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 1696: + case 1697: ACCEPT_TOKEN(aux_sym__str_back_ticks_token1); - if (lookahead == '#') ADVANCE(1697); + if (lookahead == '#') ADVANCE(1698); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1696); + lookahead == ' ') ADVANCE(1697); if (lookahead != 0 && - lookahead != '`') ADVANCE(1697); + lookahead != '`') ADVANCE(1698); END_STATE(); - case 1697: + case 1698: ACCEPT_TOKEN(aux_sym__str_back_ticks_token1); if (lookahead != 0 && - lookahead != '`') ADVANCE(1697); + lookahead != '`') ADVANCE(1698); END_STATE(); - case 1698: + case 1699: ACCEPT_TOKEN(anon_sym_BQUOTE2); END_STATE(); - case 1699: + case 1700: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 1700: + case 1701: ACCEPT_TOKEN(sym_escaped_interpolated_content); - if (lookahead == '#') ADVANCE(1701); + if (lookahead == '#') ADVANCE(1702); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1700); + lookahead == ' ') ADVANCE(1701); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && lookahead != '(' && - lookahead != '\\') ADVANCE(1701); + lookahead != '\\') ADVANCE(1702); END_STATE(); - case 1701: + case 1702: ACCEPT_TOKEN(sym_escaped_interpolated_content); if (lookahead != 0 && lookahead != '"' && lookahead != '(' && - lookahead != '\\') ADVANCE(1701); + lookahead != '\\') ADVANCE(1702); END_STATE(); - case 1702: + case 1703: ACCEPT_TOKEN(sym_unescaped_interpolated_content); - if (lookahead == '#') ADVANCE(1703); + if (lookahead == '#') ADVANCE(1704); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1702); + lookahead == ' ') ADVANCE(1703); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(1703); + lookahead != '(') ADVANCE(1704); END_STATE(); - case 1703: + case 1704: ACCEPT_TOKEN(sym_unescaped_interpolated_content); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(1703); - END_STATE(); - case 1704: - ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); + lookahead != '(') ADVANCE(1704); END_STATE(); case 1705: - ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); + ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); END_STATE(); case 1706: - ACCEPT_TOKEN(anon_sym_DQUOTE2); + ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); END_STATE(); case 1707: - ACCEPT_TOKEN(sym_inter_escape_sequence); + ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); case 1708: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACK); + ACCEPT_TOKEN(sym_inter_escape_sequence); END_STATE(); case 1709: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACE); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACK); END_STATE(); case 1710: - ACCEPT_TOKEN(sym__entry_separator); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACE); END_STATE(); case 1711: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == '\n') ADVANCE(1710); - if (lookahead == '\r') ADVANCE(1710); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1711); - if (lookahead == 0x0b || - lookahead == '\f' || - lookahead == ',') ADVANCE(1710); END_STATE(); case 1712: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(1710); + if (lookahead == '\n') ADVANCE(1711); + if (lookahead == '\r') ADVANCE(1711); if (lookahead == '\t' || lookahead == ' ') ADVANCE(1712); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1710); + if (lookahead == 0x0b || + lookahead == '\f' || + lookahead == ',') ADVANCE(1711); END_STATE(); case 1713: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(1710); + if (lookahead == ',') ADVANCE(1711); if (lookahead == '\t' || lookahead == ' ') ADVANCE(1713); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1714); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1711); END_STATE(); case 1714: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ';') ADVANCE(1719); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(322); + if (lookahead == ',') ADVANCE(1711); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1714); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(1715); END_STATE(); case 1715: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1715); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(1710); + if (lookahead == ';') ADVANCE(1720); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(323); END_STATE(); case 1716: - ACCEPT_TOKEN(anon_sym_COLON2); + ACCEPT_TOKEN(sym__entry_separator); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1716); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(1711); END_STATE(); case 1717: - ACCEPT_TOKEN(aux_sym__record_key_token1); - if (lookahead == '#') ADVANCE(2196); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1718); + ACCEPT_TOKEN(anon_sym_COLON2); END_STATE(); case 1718: ACCEPT_TOKEN(aux_sym__record_key_token1); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1718); + if (lookahead == '#') ADVANCE(2197); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1719); END_STATE(); case 1719: - ACCEPT_TOKEN(sym__table_head_separator); + ACCEPT_TOKEN(aux_sym__record_key_token1); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1719); END_STATE(); case 1720: - ACCEPT_TOKEN(anon_sym_QMARK2); + ACCEPT_TOKEN(sym__table_head_separator); END_STATE(); case 1721: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_QMARK2); END_STATE(); case 1722: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(1551); - if (lookahead == '~') ADVANCE(1557); END_STATE(); case 1723: - ACCEPT_TOKEN(anon_sym_DOT2); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(1552); + if (lookahead == '~') ADVANCE(1558); END_STATE(); case 1724: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(699); END_STATE(); case 1725: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1511); - if (lookahead == '_') ADVANCE(2147); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if (lookahead == '.') ADVANCE(700); END_STATE(); case 1726: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1596); + if (lookahead == '.') ADVANCE(1512); + if (lookahead == '_') ADVANCE(2148); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); END_STATE(); case 1727: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1507); + if (lookahead == '.') ADVANCE(1597); END_STATE(); case 1728: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(1595); + if (lookahead == '.') ADVANCE(1508); END_STATE(); case 1729: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(315); + if (lookahead == '.') ADVANCE(1596); END_STATE(); case 1730: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '_') ADVANCE(721); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if (lookahead == '.') ADVANCE(316); END_STATE(); case 1731: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '"') ADVANCE(1688); - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '\'') ADVANCE(1691); - if (lookahead == '`') ADVANCE(1695); - if (lookahead == '\t' || - lookahead == ' ') SKIP(178); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1732); + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '_') ADVANCE(722); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); END_STATE(); case 1732: ACCEPT_TOKEN(aux_sym_path_token1); - if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1732); + if (lookahead == '"') ADVANCE(1689); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '\'') ADVANCE(1692); + if (lookahead == '`') ADVANCE(1696); + if (lookahead == '\t' || + lookahead == ' ') SKIP(178); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1733); END_STATE(); case 1733: - ACCEPT_TOKEN(anon_sym_EQ2); + ACCEPT_TOKEN(aux_sym_path_token1); + if ((!eof && set_contains(aux_sym__where_predicate_lhs_path_head_token1_character_set_1, 11, lookahead))) ADVANCE(1733); END_STATE(); case 1734: - ACCEPT_TOKEN(aux_sym_env_var_token1); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1734); + ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); case 1735: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(aux_sym_env_var_token1); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1735); END_STATE(); case 1736: - ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(1752); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 1737: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(1752); - if (lookahead == '|') ADVANCE(1456); + if (lookahead == '>') ADVANCE(1753); END_STATE(); case 1738: - ACCEPT_TOKEN(anon_sym_out_GT); + ACCEPT_TOKEN(anon_sym_err_GT); if (lookahead == '>') ADVANCE(1753); + if (lookahead == '|') ADVANCE(1457); END_STATE(); case 1739: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(1753); - if (lookahead == '|') ADVANCE(1457); + if (lookahead == '>') ADVANCE(1754); END_STATE(); case 1740: - ACCEPT_TOKEN(anon_sym_e_GT); + ACCEPT_TOKEN(anon_sym_out_GT); if (lookahead == '>') ADVANCE(1754); + if (lookahead == '|') ADVANCE(1458); END_STATE(); case 1741: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(1754); - if (lookahead == '|') ADVANCE(1458); + if (lookahead == '>') ADVANCE(1755); END_STATE(); case 1742: - ACCEPT_TOKEN(anon_sym_o_GT); + ACCEPT_TOKEN(anon_sym_e_GT); if (lookahead == '>') ADVANCE(1755); + if (lookahead == '|') ADVANCE(1459); END_STATE(); case 1743: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(1755); - if (lookahead == '|') ADVANCE(1459); + if (lookahead == '>') ADVANCE(1756); END_STATE(); case 1744: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + ACCEPT_TOKEN(anon_sym_o_GT); if (lookahead == '>') ADVANCE(1756); + if (lookahead == '|') ADVANCE(1460); END_STATE(); case 1745: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(1756); - if (lookahead == '|') ADVANCE(1460); + if (lookahead == '>') ADVANCE(1757); END_STATE(); case 1746: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); if (lookahead == '>') ADVANCE(1757); + if (lookahead == '|') ADVANCE(1461); END_STATE(); case 1747: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(1757); - if (lookahead == '|') ADVANCE(1461); + if (lookahead == '>') ADVANCE(1758); END_STATE(); case 1748: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); if (lookahead == '>') ADVANCE(1758); + if (lookahead == '|') ADVANCE(1462); END_STATE(); case 1749: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(1758); - if (lookahead == '|') ADVANCE(1462); + if (lookahead == '>') ADVANCE(1759); END_STATE(); case 1750: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); if (lookahead == '>') ADVANCE(1759); + if (lookahead == '|') ADVANCE(1463); END_STATE(); case 1751: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(1759); - if (lookahead == '|') ADVANCE(1463); + if (lookahead == '>') ADVANCE(1760); END_STATE(); case 1752: - ACCEPT_TOKEN(anon_sym_err_GT_GT); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + if (lookahead == '>') ADVANCE(1760); + if (lookahead == '|') ADVANCE(1464); END_STATE(); case 1753: - ACCEPT_TOKEN(anon_sym_out_GT_GT); + ACCEPT_TOKEN(anon_sym_err_GT_GT); END_STATE(); case 1754: - ACCEPT_TOKEN(anon_sym_e_GT_GT); + ACCEPT_TOKEN(anon_sym_out_GT_GT); END_STATE(); case 1755: - ACCEPT_TOKEN(anon_sym_o_GT_GT); + ACCEPT_TOKEN(anon_sym_e_GT_GT); END_STATE(); case 1756: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); + ACCEPT_TOKEN(anon_sym_o_GT_GT); END_STATE(); case 1757: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); END_STATE(); case 1758: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); END_STATE(); case 1759: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); END_STATE(); case 1760: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(440); - if (lookahead == '>') ADVANCE(524); - if (lookahead == 'r') ADVANCE(1764); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1766); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); END_STATE(); case 1761: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(382); + if (lookahead == '+') ADVANCE(441); if (lookahead == '>') ADVANCE(525); - if (lookahead == 'u') ADVANCE(1765); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1766); + if (lookahead == 'r') ADVANCE(1765); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1767); END_STATE(); case 1762: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(445); - if (lookahead == '>') ADVANCE(527); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1766); + if (lookahead == '+') ADVANCE(383); + if (lookahead == '>') ADVANCE(526); + if (lookahead == 'u') ADVANCE(1766); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1767); END_STATE(); case 1763: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(386); - if (lookahead == '>') ADVANCE(529); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1766); + if (lookahead == '+') ADVANCE(446); + if (lookahead == '>') ADVANCE(528); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1767); END_STATE(); case 1764: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(1762); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1766); + if (lookahead == '+') ADVANCE(387); + if (lookahead == '>') ADVANCE(530); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1767); END_STATE(); case 1765: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(1763); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1766); + if (lookahead == 'r') ADVANCE(1763); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1767); END_STATE(); case 1766: ACCEPT_TOKEN(sym_short_flag_identifier); - if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1766); + if (lookahead == 't') ADVANCE(1764); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1767); END_STATE(); case 1767: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1844); - if (lookahead == '>') ADVANCE(1743); - if (lookahead == 'r') ADVANCE(1534); - if (lookahead == 'u') ADVANCE(1905); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + ACCEPT_TOKEN(sym_short_flag_identifier); + if (set_contains(sym_short_flag_identifier_character_set_1, 803, lookahead)) ADVANCE(1767); END_STATE(); case 1768: ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1821, - '-', 1824, - '>', 1741, - 'I', 1931, - '_', 1824, - 'i', 1931, - 'n', 1838, - 'r', 1887, - 'B', 1656, - 'b', 1656, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '+') ADVANCE(1845); + if (lookahead == '>') ADVANCE(1744); + if (lookahead == 'r') ADVANCE(1535); + if (lookahead == 'u') ADVANCE(1906); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1769: - ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1821); - if (lookahead == '-') ADVANCE(1824); - if (lookahead == '>') ADVANCE(1741); - if (lookahead == '_') ADVANCE(1824); - if (lookahead == 'n') ADVANCE(1838); - if (lookahead == 'r') ADVANCE(1887); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); - END_STATE(); - case 1770: ACCEPT_TOKEN(sym__unquoted_pattern); ADVANCE_MAP( '+', 1822, - '-', 1824, - '>', 1923, - 'I', 1931, - '_', 1824, - 'i', 1931, - 'n', 1838, + '-', 1825, + '>', 1742, + 'I', 1932, + '_', 1825, + 'i', 1932, + 'n', 1839, 'r', 1888, - 'B', 1656, - 'b', 1656, + 'B', 1657, + 'b', 1657, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); + END_STATE(); + case 1770: + ACCEPT_TOKEN(sym__unquoted_pattern); + if (lookahead == '+') ADVANCE(1822); + if (lookahead == '-') ADVANCE(1825); + if (lookahead == '>') ADVANCE(1742); + if (lookahead == '_') ADVANCE(1825); + if (lookahead == 'n') ADVANCE(1839); + if (lookahead == 'r') ADVANCE(1888); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1771: ACCEPT_TOKEN(sym__unquoted_pattern); ADVANCE_MAP( - '+', 1822, - '-', 1824, - '>', 1923, - 'I', 1931, - '_', 1824, - 'i', 1931, - 'r', 1888, - 'B', 1656, - 'b', 1656, + '+', 1823, + '-', 1825, + '>', 1924, + 'I', 1932, + '_', 1825, + 'i', 1932, + 'n', 1839, + 'r', 1889, + 'B', 1657, + 'b', 1657, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1772: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1822); - if (lookahead == '-') ADVANCE(1824); - if (lookahead == '>') ADVANCE(1923); - if (lookahead == '_') ADVANCE(1824); - if (lookahead == 'n') ADVANCE(1838); - if (lookahead == 'r') ADVANCE(1888); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + ADVANCE_MAP( + '+', 1823, + '-', 1825, + '>', 1924, + 'I', 1932, + '_', 1825, + 'i', 1932, + 'r', 1889, + 'B', 1657, + 'b', 1657, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1773: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1822); - if (lookahead == '-') ADVANCE(1824); - if (lookahead == '>') ADVANCE(1923); - if (lookahead == '_') ADVANCE(1824); - if (lookahead == 'r') ADVANCE(1888); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '+') ADVANCE(1823); + if (lookahead == '-') ADVANCE(1825); + if (lookahead == '>') ADVANCE(1924); + if (lookahead == '_') ADVANCE(1825); + if (lookahead == 'n') ADVANCE(1839); + if (lookahead == 'r') ADVANCE(1889); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1774: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1845); - if (lookahead == '>') ADVANCE(1739); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '+') ADVANCE(1823); + if (lookahead == '-') ADVANCE(1825); + if (lookahead == '>') ADVANCE(1924); + if (lookahead == '_') ADVANCE(1825); + if (lookahead == 'r') ADVANCE(1889); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1775: ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1873, - '>', 1741, - 'I', 1931, - 'i', 1931, - 'n', 1838, - 'r', 1887, - 'B', 1656, - 'b', 1656, - ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '+') ADVANCE(1846); + if (lookahead == '>') ADVANCE(1740); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1776: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1873); - if (lookahead == '>') ADVANCE(1741); - if (lookahead == 'n') ADVANCE(1838); - if (lookahead == 'r') ADVANCE(1887); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + ADVANCE_MAP( + '+', 1874, + '>', 1742, + 'I', 1932, + 'i', 1932, + 'n', 1839, + 'r', 1888, + 'B', 1657, + 'b', 1657, + ); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1777: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '+') ADVANCE(1874); - if (lookahead == '>') ADVANCE(1737); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '>') ADVANCE(1742); + if (lookahead == 'n') ADVANCE(1839); + if (lookahead == 'r') ADVANCE(1888); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1778: ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - '+', 1879, - '>', 1923, - 'I', 1931, - 'i', 1931, - 'n', 1838, - 'r', 1888, - 'B', 1656, - 'b', 1656, - ); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '+') ADVANCE(1875); + if (lookahead == '>') ADVANCE(1738); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1779: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1879); - if (lookahead == '>') ADVANCE(1923); - if (lookahead == 'I') ADVANCE(1931); - if (lookahead == 'i') ADVANCE(1931); - if (lookahead == 'r') ADVANCE(1888); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + ADVANCE_MAP( + '+', 1880, + '>', 1924, + 'I', 1932, + 'i', 1932, + 'n', 1839, + 'r', 1889, + 'B', 1657, + 'b', 1657, + ); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1780: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1879); - if (lookahead == '>') ADVANCE(1923); - if (lookahead == 'n') ADVANCE(1838); - if (lookahead == 'r') ADVANCE(1888); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '+') ADVANCE(1880); + if (lookahead == '>') ADVANCE(1924); + if (lookahead == 'I') ADVANCE(1932); + if (lookahead == 'i') ADVANCE(1932); + if (lookahead == 'r') ADVANCE(1889); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1781: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1879); - if (lookahead == '>') ADVANCE(1923); - if (lookahead == 'r') ADVANCE(1888); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '+') ADVANCE(1880); + if (lookahead == '>') ADVANCE(1924); + if (lookahead == 'n') ADVANCE(1839); + if (lookahead == 'r') ADVANCE(1889); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1782: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1846); + if (lookahead == '+') ADVANCE(1880); if (lookahead == '>') ADVANCE(1924); - if (lookahead == 'r') ADVANCE(1534); - if (lookahead == 'u') ADVANCE(1909); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'r') ADVANCE(1889); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1783: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1846); - if (lookahead == '>') ADVANCE(1924); - if (lookahead == 'u') ADVANCE(1909); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '+') ADVANCE(1847); + if (lookahead == '>') ADVANCE(1925); + if (lookahead == 'r') ADVANCE(1535); + if (lookahead == 'u') ADVANCE(1910); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1784: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1881); - if (lookahead == '>') ADVANCE(1926); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '+') ADVANCE(1847); + if (lookahead == '>') ADVANCE(1925); + if (lookahead == 'u') ADVANCE(1910); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1785: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '+') ADVANCE(1847); - if (lookahead == '>') ADVANCE(1928); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '+') ADVANCE(1882); + if (lookahead == '>') ADVANCE(1927); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1786: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1488); - if (lookahead == '.') ADVANCE(1825); - if (lookahead == '_') ADVANCE(1796); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '+') ADVANCE(1848); + if (lookahead == '>') ADVANCE(1929); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1787: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1488); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '-') ADVANCE(1489); + if (lookahead == '.') ADVANCE(1826); + if (lookahead == '_') ADVANCE(1797); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1935); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1788: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1831); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '-') ADVANCE(1489); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1789: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1848); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '-') ADVANCE(1832); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1790: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '-') ADVANCE(1918); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '-') ADVANCE(1849); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1791: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '-') ADVANCE(1919); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1792: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '-') ADVANCE(1920); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1793: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '-') ADVANCE(1921); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1794: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '.') ADVANCE(1596); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '-') ADVANCE(1922); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1795: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '.') ADVANCE(1818); - if (lookahead == '_') ADVANCE(1795); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '.') ADVANCE(1597); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1796: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '.') ADVANCE(1825); + if (lookahead == '.') ADVANCE(1819); if (lookahead == '_') ADVANCE(1796); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1797: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '=') ADVANCE(1551); - if (lookahead == '~') ADVANCE(1557); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '.') ADVANCE(1826); + if (lookahead == '_') ADVANCE(1797); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1798: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '=') ADVANCE(1550); - if (lookahead == '>') ADVANCE(1504); - if (lookahead == '~') ADVANCE(1556); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '=') ADVANCE(1552); + if (lookahead == '~') ADVANCE(1558); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1799: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '=') ADVANCE(1550); - if (lookahead == '~') ADVANCE(1556); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '=') ADVANCE(1551); + if (lookahead == '>') ADVANCE(1505); + if (lookahead == '~') ADVANCE(1557); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1800: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1504); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '=') ADVANCE(1551); + if (lookahead == '~') ADVANCE(1557); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1801: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1751); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '>') ADVANCE(1505); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1802: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1749); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '>') ADVANCE(1752); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1803: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1745); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '>') ADVANCE(1750); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1804: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1747); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '>') ADVANCE(1746); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1805: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1925); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '>') ADVANCE(1748); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1806: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1927); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '>') ADVANCE(1926); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1807: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '>') ADVANCE(1929); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '>') ADVANCE(1928); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1808: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '>') ADVANCE(1930); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1809: ACCEPT_TOKEN(sym__unquoted_pattern); - ADVANCE_MAP( - 'I', 1931, - '_', 1824, - 'i', 1931, - 'n', 1838, - '+', 1824, - '-', 1824, - 'B', 1656, - 'b', 1656, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '>') ADVANCE(1931); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1810: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1931); - if (lookahead == '_') ADVANCE(1824); - if (lookahead == 'i') ADVANCE(1931); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1824); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + ADVANCE_MAP( + 'I', 1932, + '_', 1825, + 'i', 1932, + 'n', 1839, + '+', 1825, + '-', 1825, + 'B', 1657, + 'b', 1657, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1811: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1931); - if (lookahead == '_') ADVANCE(1824); - if (lookahead == 'i') ADVANCE(1833); + if (lookahead == 'I') ADVANCE(1932); + if (lookahead == '_') ADVANCE(1825); + if (lookahead == 'i') ADVANCE(1932); if (lookahead == '+' || - lookahead == '-') ADVANCE(1824); + lookahead == '-') ADVANCE(1825); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == 'b') ADVANCE(1657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1812: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1931); - if (lookahead == 'i') ADVANCE(1931); - if (lookahead == 'n') ADVANCE(1838); + if (lookahead == 'I') ADVANCE(1932); + if (lookahead == '_') ADVANCE(1825); + if (lookahead == 'i') ADVANCE(1834); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1825); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == 'b') ADVANCE(1657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1813: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1931); - if (lookahead == 'i') ADVANCE(1931); + if (lookahead == 'I') ADVANCE(1932); + if (lookahead == 'i') ADVANCE(1932); + if (lookahead == 'n') ADVANCE(1839); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1814: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1931); - if (lookahead == 'i') ADVANCE(1833); + if (lookahead == 'I') ADVANCE(1932); + if (lookahead == 'i') ADVANCE(1932); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1815: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1931); - if (lookahead == 'i') ADVANCE(1866); - if (lookahead == 'o') ADVANCE(1836); - if (lookahead == 's') ADVANCE(1661); + if (lookahead == 'I') ADVANCE(1932); + if (lookahead == 'i') ADVANCE(1834); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1816: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I') ADVANCE(1931); - if (lookahead == 'i') ADVANCE(1866); - if (lookahead == 's') ADVANCE(1661); + if (lookahead == 'I') ADVANCE(1932); + if (lookahead == 'i') ADVANCE(1867); + if (lookahead == 'o') ADVANCE(1837); + if (lookahead == 's') ADVANCE(1662); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1817: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1817); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'I') ADVANCE(1932); + if (lookahead == 'i') ADVANCE(1867); + if (lookahead == 's') ADVANCE(1662); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1818: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '_') ADVANCE(1818); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1819: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '_') ADVANCE(1819); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1820: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1824); - if (lookahead == 'n') ADVANCE(1838); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1824); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '_') ADVANCE(1820); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1821: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1824); - if (lookahead == 'o') ADVANCE(1801); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '_') ADVANCE(1825); + if (lookahead == 'n') ADVANCE(1839); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1825); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1822: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1824); - if (lookahead == 'o') ADVANCE(1805); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '_') ADVANCE(1825); + if (lookahead == 'o') ADVANCE(1802); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1823: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1824); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1824); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '_') ADVANCE(1825); + if (lookahead == 'o') ADVANCE(1806); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1824: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '_') ADVANCE(1824); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '_') ADVANCE(1825); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1825); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1825: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '_') ADVANCE(1825); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1826: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1896); - if (lookahead == 'r') ADVANCE(1661); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '_') ADVANCE(1826); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1651); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1827: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1896); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'a') ADVANCE(1897); + if (lookahead == 'r') ADVANCE(1662); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1828: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1922); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'a') ADVANCE(1897); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1829: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1890); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'a') ADVANCE(1923); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1830: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1897); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'a') ADVANCE(1891); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1831: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1871); - if (lookahead == 'o') ADVANCE(1885); - if (lookahead == 's') ADVANCE(1854); - if (lookahead == 'x') ADVANCE(1880); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'a') ADVANCE(1898); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1832: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'a') ADVANCE(1894); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'a') ADVANCE(1872); + if (lookahead == 'o') ADVANCE(1886); + if (lookahead == 's') ADVANCE(1855); + if (lookahead == 'x') ADVANCE(1881); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1833: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'a') ADVANCE(1895); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1834: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'c') ADVANCE(1661); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1835: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1530); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'c') ADVANCE(1662); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1836: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1574); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'd') ADVANCE(1531); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1837: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1588); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'd') ADVANCE(1575); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1838: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1898); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'd') ADVANCE(1589); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1839: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'd') ADVANCE(1900); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'd') ADVANCE(1899); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1840: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1559); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'd') ADVANCE(1901); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1841: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1561); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'e') ADVANCE(1560); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1842: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1834); - if (lookahead == 't') ADVANCE(1829); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'e') ADVANCE(1562); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1843: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1834); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'e') ADVANCE(1835); + if (lookahead == 't') ADVANCE(1830); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1844: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1802); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'e') ADVANCE(1835); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1845: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1891); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'e') ADVANCE(1803); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1846: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1806); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'e') ADVANCE(1892); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1847: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1892); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'e') ADVANCE(1807); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1848: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'e') ADVANCE(1872); - if (lookahead == 'h') ADVANCE(1830); - if (lookahead == 'i') ADVANCE(1868); - if (lookahead == 'l') ADVANCE(1861); - if (lookahead == 's') ADVANCE(1915); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'e') ADVANCE(1893); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1849: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'f') ADVANCE(1071); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'e') ADVANCE(1873); + if (lookahead == 'h') ADVANCE(1831); + if (lookahead == 'i') ADVANCE(1869); + if (lookahead == 'l') ADVANCE(1862); + if (lookahead == 's') ADVANCE(1916); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1850: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1546); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'f') ADVANCE(1072); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1851: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1542); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'h') ADVANCE(1547); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1852: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1548); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'h') ADVANCE(1543); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1853: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1544); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'h') ADVANCE(1549); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1854: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'h') ADVANCE(1865); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'h') ADVANCE(1545); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1855: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1863); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'h') ADVANCE(1866); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1856: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1902); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'i') ADVANCE(1864); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1857: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1906); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'i') ADVANCE(1903); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1858: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1908); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'i') ADVANCE(1907); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1859: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1910); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'i') ADVANCE(1909); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1860: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 'i') ADVANCE(1911); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1861: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'i') ADVANCE(1864); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'i') ADVANCE(1912); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1862: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'k') ADVANCE(1661); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'i') ADVANCE(1865); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1863: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'k') ADVANCE(1840); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'k') ADVANCE(1662); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1864: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 'k') ADVANCE(1841); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1865: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'l') ADVANCE(1584); - if (lookahead == 'r') ADVANCE(1586); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'k') ADVANCE(1842); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1866: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1661); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'l') ADVANCE(1585); + if (lookahead == 'r') ADVANCE(1587); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1867: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1086); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'n') ADVANCE(1662); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1868: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1536); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'n') ADVANCE(1087); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1869: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1835); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'n') ADVANCE(1537); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1870: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1838); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'n') ADVANCE(1836); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1871: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1837); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'n') ADVANCE(1839); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1872: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'n') ADVANCE(1839); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'n') ADVANCE(1838); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1873: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1801); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'n') ADVANCE(1840); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1874: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1916); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'o') ADVANCE(1802); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1875: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1884); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'o') ADVANCE(1917); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1876: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1904); - if (lookahead == 's') ADVANCE(1661); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'o') ADVANCE(1885); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1877: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1904); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'o') ADVANCE(1905); + if (lookahead == 's') ADVANCE(1662); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1878: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1836); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'o') ADVANCE(1905); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1879: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1805); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'o') ADVANCE(1837); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1880: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1886); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'o') ADVANCE(1806); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1881: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'o') ADVANCE(1917); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'o') ADVANCE(1887); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1882: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1661); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'o') ADVANCE(1918); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1883: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1534); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'r') ADVANCE(1662); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1884: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1532); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'r') ADVANCE(1535); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1885: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1592); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'r') ADVANCE(1533); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1886: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1590); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'r') ADVANCE(1593); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1887: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1777); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'r') ADVANCE(1591); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1888: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1784); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'r') ADVANCE(1778); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1889: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1804); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'r') ADVANCE(1785); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1890: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1913); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'r') ADVANCE(1805); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1891: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1889); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'r') ADVANCE(1914); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1892: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1893); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'r') ADVANCE(1890); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1893: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1808); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'r') ADVANCE(1894); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1894: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'r') ADVANCE(1914); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'r') ADVANCE(1809); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1895: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1661); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'r') ADVANCE(1915); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1896: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1538); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 's') ADVANCE(1662); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1897: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1540); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 's') ADVANCE(1539); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1898: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 's') ADVANCE(1790); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 's') ADVANCE(1541); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1899: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 's') ADVANCE(1791); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1900: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 's') ADVANCE(1792); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1901: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 's') ADVANCE(1793); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1902: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1788); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 's') ADVANCE(1794); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1903: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1829); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 't') ADVANCE(1789); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1904: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1789); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 't') ADVANCE(1830); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1905: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1774); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 't') ADVANCE(1790); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1906: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1850); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 't') ADVANCE(1775); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1907: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1803); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 't') ADVANCE(1851); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1908: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1851); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 't') ADVANCE(1804); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1909: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1785); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 't') ADVANCE(1852); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1910: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1852); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 't') ADVANCE(1786); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1911: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 't') ADVANCE(1853); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1912: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1807); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 't') ADVANCE(1854); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1913: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1899); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 't') ADVANCE(1808); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1914: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1901); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 't') ADVANCE(1900); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1915: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 't') ADVANCE(1832); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 't') ADVANCE(1902); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1916: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'u') ADVANCE(1907); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 't') ADVANCE(1833); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1917: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'u') ADVANCE(1912); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'u') ADVANCE(1908); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1918: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'w') ADVANCE(1857); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'u') ADVANCE(1913); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1919: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 'w') ADVANCE(1858); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1920: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 'w') ADVANCE(1859); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1921: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 'w') ADVANCE(1860); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1922: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'y') ADVANCE(1661); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'w') ADVANCE(1861); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1923: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1458); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'y') ADVANCE(1662); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1924: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '|') ADVANCE(1459); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1925: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1463); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '|') ADVANCE(1460); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1926: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1456); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '|') ADVANCE(1464); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1927: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1462); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '|') ADVANCE(1457); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1928: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1457); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '|') ADVANCE(1463); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1929: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == '|') ADVANCE(1460); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '|') ADVANCE(1458); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1930: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == '|') ADVANCE(1461); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1931: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == '|') ADVANCE(1462); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1932: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1109); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1933: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1936); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1110); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1934: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1932); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1937); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1935: ACCEPT_TOKEN(sym__unquoted_pattern); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1933); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1936: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1937); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1934); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1937: ACCEPT_TOKEN(sym__unquoted_pattern); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1107); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1938); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1938: ACCEPT_TOKEN(sym__unquoted_pattern); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1938); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1108); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1939: - ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1596); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); + ACCEPT_TOKEN(sym__unquoted_pattern); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(1939); END_STATE(); case 1940: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1507); - if (lookahead == '_') ADVANCE(1949); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); + if (lookahead == '.') ADVANCE(1597); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1941: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1507); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); + if (lookahead == '.') ADVANCE(1508); + if (lookahead == '_') ADVANCE(1950); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1942: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '.') ADVANCE(1950); - if (lookahead == '_') ADVANCE(1942); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); + if (lookahead == '.') ADVANCE(1508); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1943: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1962); - if (lookahead == '_') ADVANCE(1952); - if (lookahead == 'i') ADVANCE(1962); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1952); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); + if (lookahead == '.') ADVANCE(1951); + if (lookahead == '_') ADVANCE(1943); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1944: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1962); - if (lookahead == '_') ADVANCE(1952); - if (lookahead == 'i') ADVANCE(1954); + if (lookahead == 'I') ADVANCE(1963); + if (lookahead == '_') ADVANCE(1953); + if (lookahead == 'i') ADVANCE(1963); if (lookahead == '+' || - lookahead == '-') ADVANCE(1952); + lookahead == '-') ADVANCE(1953); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); + lookahead == 'b') ADVANCE(1657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1945: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1962); - if (lookahead == 'i') ADVANCE(1962); + if (lookahead == 'I') ADVANCE(1963); + if (lookahead == '_') ADVANCE(1953); + if (lookahead == 'i') ADVANCE(1955); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1953); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); + lookahead == 'b') ADVANCE(1657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1946: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1962); - if (lookahead == 'i') ADVANCE(1954); + if (lookahead == 'I') ADVANCE(1963); + if (lookahead == 'i') ADVANCE(1963); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1947: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'I') ADVANCE(1962); - if (lookahead == 'i') ADVANCE(1958); - if (lookahead == 's') ADVANCE(1661); + if (lookahead == 'I') ADVANCE(1963); + if (lookahead == 'i') ADVANCE(1955); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1948: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1948); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); + if (lookahead == 'I') ADVANCE(1963); + if (lookahead == 'i') ADVANCE(1959); + if (lookahead == 's') ADVANCE(1662); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1949: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); if (lookahead == '_') ADVANCE(1949); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1950: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); if (lookahead == '_') ADVANCE(1950); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1951: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1952); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1952); + if (lookahead == '_') ADVANCE(1951); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1952: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == '_') ADVANCE(1952); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); + if (lookahead == '_') ADVANCE(1953); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1953: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'a') ADVANCE(1961); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); + if (lookahead == '_') ADVANCE(1953); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1954: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); + if (lookahead == 'a') ADVANCE(1962); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1955: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'c') ADVANCE(1661); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); + if (lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1956: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'e') ADVANCE(1955); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); + if (lookahead == 'c') ADVANCE(1662); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1957: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'k') ADVANCE(1661); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); + if (lookahead == 'e') ADVANCE(1956); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1958: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'n') ADVANCE(1661); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); + if (lookahead == 'k') ADVANCE(1662); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1959: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'r') ADVANCE(1661); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); + if (lookahead == 'n') ADVANCE(1662); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1960: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 's') ADVANCE(1661); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); + if (lookahead == 'r') ADVANCE(1662); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1961: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'y') ADVANCE(1661); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); + if (lookahead == 's') ADVANCE(1662); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1962: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); + if (lookahead == 'y') ADVANCE(1662); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1963: ACCEPT_TOKEN(sym__unquoted_pattern_in_list); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1963); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1964: - ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1596); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + ACCEPT_TOKEN(sym__unquoted_pattern_in_list); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(1964); END_STATE(); case 1965: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1595); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + if (lookahead == '.') ADVANCE(1597); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1966: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1486); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + if (lookahead == '.') ADVANCE(1976); + if (lookahead == '_') ADVANCE(1966); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1967: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1975); - if (lookahead == '_') ADVANCE(1967); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + if (lookahead == '.') ADVANCE(1969); + if (lookahead == '_') ADVANCE(1977); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1968: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1966); - if (lookahead == '_') ADVANCE(1976); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + if (lookahead == '.') ADVANCE(1969); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1969: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '.') ADVANCE(1966); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + if (lookahead == '.') ADVANCE(1487); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1970: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1989); - if (lookahead == '_') ADVANCE(1978); - if (lookahead == 'i') ADVANCE(1989); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1978); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + if (lookahead == '.') ADVANCE(1596); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1971: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1989); - if (lookahead == '_') ADVANCE(1978); - if (lookahead == 'i') ADVANCE(1981); + if (lookahead == 'I') ADVANCE(1990); + if (lookahead == '_') ADVANCE(1979); + if (lookahead == 'i') ADVANCE(1990); if (lookahead == '+' || - lookahead == '-') ADVANCE(1978); + lookahead == '-') ADVANCE(1979); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + lookahead == 'b') ADVANCE(1657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1972: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1989); - if (lookahead == 'i') ADVANCE(1989); + if (lookahead == 'I') ADVANCE(1990); + if (lookahead == '_') ADVANCE(1979); + if (lookahead == 'i') ADVANCE(1982); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1979); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + lookahead == 'b') ADVANCE(1657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1973: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1989); - if (lookahead == 'i') ADVANCE(1981); + if (lookahead == 'I') ADVANCE(1990); + if (lookahead == 'i') ADVANCE(1990); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1974: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'I') ADVANCE(1989); - if (lookahead == 'i') ADVANCE(1985); - if (lookahead == 's') ADVANCE(1661); + if (lookahead == 'I') ADVANCE(1990); + if (lookahead == 'i') ADVANCE(1982); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1975: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(1975); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + if (lookahead == 'I') ADVANCE(1990); + if (lookahead == 'i') ADVANCE(1986); + if (lookahead == 's') ADVANCE(1662); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1976: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); if (lookahead == '_') ADVANCE(1976); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1977: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(1978); - if (lookahead == '+' || - lookahead == '-') ADVANCE(1978); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + if (lookahead == '_') ADVANCE(1977); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1978: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == '_') ADVANCE(1978); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + if (lookahead == '_') ADVANCE(1979); + if (lookahead == '+' || + lookahead == '-') ADVANCE(1979); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1979: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); if (lookahead == '_') ADVANCE(1979); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1980: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'a') ADVANCE(1988); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + if (lookahead == '_') ADVANCE(1980); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1981: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + if (lookahead == 'a') ADVANCE(1989); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1982: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'c') ADVANCE(1661); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + if (lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1983: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'e') ADVANCE(1982); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + if (lookahead == 'c') ADVANCE(1662); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1984: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'k') ADVANCE(1661); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + if (lookahead == 'e') ADVANCE(1983); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1985: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'n') ADVANCE(1661); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + if (lookahead == 'k') ADVANCE(1662); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1986: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'r') ADVANCE(1661); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + if (lookahead == 'n') ADVANCE(1662); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1987: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 's') ADVANCE(1661); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + if (lookahead == 'r') ADVANCE(1662); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1988: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'y') ADVANCE(1661); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + if (lookahead == 's') ADVANCE(1662); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1989: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1656); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + if (lookahead == 'y') ADVANCE(1662); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1990: ACCEPT_TOKEN(sym__unquoted_pattern_in_record); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1990); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1657); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); END_STATE(); case 1991: + ACCEPT_TOKEN(sym__unquoted_pattern_in_record); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(1991); + END_STATE(); + case 1992: ACCEPT_TOKEN(sym__unquoted_naive); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -31381,1149 +31417,1149 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1991); - END_STATE(); - case 1992: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '$') ADVANCE(1620); - if (lookahead == '(') ADVANCE(1594); - if (lookahead == '[') ADVANCE(1708); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + (lookahead < '{' || '}' < lookahead)) ADVANCE(1992); END_STATE(); case 1993: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2029); - if (lookahead == '>') ADVANCE(1741); - if (lookahead == 'r') ADVANCE(2035); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == '$') ADVANCE(1621); + if (lookahead == '(') ADVANCE(1595); + if (lookahead == '[') ADVANCE(1709); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 1994: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2022); - if (lookahead == '>') ADVANCE(1743); - if (lookahead == 'u') ADVANCE(2043); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == '+') ADVANCE(2030); + if (lookahead == '>') ADVANCE(1742); + if (lookahead == 'r') ADVANCE(2036); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 1995: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2030); - if (lookahead == '>') ADVANCE(1737); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == '+') ADVANCE(2023); + if (lookahead == '>') ADVANCE(1744); + if (lookahead == 'u') ADVANCE(2044); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 1996: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2023); - if (lookahead == '>') ADVANCE(1739); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == '+') ADVANCE(2031); + if (lookahead == '>') ADVANCE(1738); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 1997: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2032); + if (lookahead == '+') ADVANCE(2024); if (lookahead == '>') ADVANCE(1740); - if (lookahead == 'r') ADVANCE(2036); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 1998: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2024); - if (lookahead == '>') ADVANCE(1742); - if (lookahead == 'u') ADVANCE(2045); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == '+') ADVANCE(2033); + if (lookahead == '>') ADVANCE(1741); + if (lookahead == 'r') ADVANCE(2037); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 1999: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2033); - if (lookahead == '>') ADVANCE(1736); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == '+') ADVANCE(2025); + if (lookahead == '>') ADVANCE(1743); + if (lookahead == 'u') ADVANCE(2046); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2000: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(2025); - if (lookahead == '>') ADVANCE(1738); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == '+') ADVANCE(2034); + if (lookahead == '>') ADVANCE(1737); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2001: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(2069); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == '+') ADVANCE(2026); + if (lookahead == '>') ADVANCE(1739); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2002: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(1511); - if (lookahead == '_') ADVANCE(2018); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == '-') ADVANCE(2070); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2003: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(1509); - if (lookahead == '_') ADVANCE(2018); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == '.') ADVANCE(1512); + if (lookahead == '_') ADVANCE(2019); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2004: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(2017); - if (lookahead == '_') ADVANCE(2004); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == '.') ADVANCE(1510); + if (lookahead == '_') ADVANCE(2019); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2005: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '2') ADVANCE(2059); - if (lookahead == '0' || - lookahead == '1') ADVANCE(2067); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == '.') ADVANCE(2018); + if (lookahead == '_') ADVANCE(2005); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2006: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(2071); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == '2') ADVANCE(2060); + if (lookahead == '0' || + lookahead == '1') ADVANCE(2068); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2007: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(2073); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == ':') ADVANCE(2072); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2008: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1751); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == ':') ADVANCE(2074); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2009: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1749); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == '>') ADVANCE(1752); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2010: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1745); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == '>') ADVANCE(1750); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2011: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1747); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == '>') ADVANCE(1746); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2012: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1750); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == '>') ADVANCE(1748); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2013: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1748); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == '>') ADVANCE(1751); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2014: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1744); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == '>') ADVANCE(1749); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2015: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(1746); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == '>') ADVANCE(1745); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2016: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(2016); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == '>') ADVANCE(1747); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2017: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == '_') ADVANCE(2017); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2018: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == '_') ADVANCE(2018); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1651); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2019: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(2027); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == '_') ADVANCE(2019); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2020: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(1092); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 'a') ADVANCE(2028); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2021: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(1095); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 'e') ADVANCE(1093); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2022: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2009); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 'e') ADVANCE(1096); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2023: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2037); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 'e') ADVANCE(2010); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2024: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2013); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 'e') ADVANCE(2038); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2025: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2040); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 'e') ADVANCE(2014); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2026: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(1098); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 'e') ADVANCE(2041); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2027: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2041); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 'l') ADVANCE(1099); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2028: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2026); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 'l') ADVANCE(2042); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2029: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2008); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 'l') ADVANCE(2027); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2030: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2049); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 'o') ADVANCE(2009); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2031: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2042); - if (lookahead == 'u') ADVANCE(2028); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2054); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 'o') ADVANCE(2050); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2032: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2012); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 'o') ADVANCE(2043); + if (lookahead == 'u') ADVANCE(2029); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2055); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2033: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(2050); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 'o') ADVANCE(2013); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2034: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2048); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 'o') ADVANCE(2051); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2035: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(1995); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 'r') ADVANCE(2049); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2036: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(1999); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 'r') ADVANCE(1996); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2037: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2038); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 'r') ADVANCE(2000); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2038: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2011); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 'r') ADVANCE(2039); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2039: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2015); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 'r') ADVANCE(2012); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2040: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(2039); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 'r') ADVANCE(2016); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2041: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(2021); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 'r') ADVANCE(2040); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2042: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2060); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 's') ADVANCE(2022); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2043: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(1996); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 't') ADVANCE(2061); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2044: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2010); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 't') ADVANCE(1997); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2045: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2000); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 't') ADVANCE(2011); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2046: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(2014); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 't') ADVANCE(2001); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2047: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2028); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2054); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 't') ADVANCE(2015); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2048: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2020); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 'u') ADVANCE(2029); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2055); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2049: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2044); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 'u') ADVANCE(2021); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2050: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(2046); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 'u') ADVANCE(2045); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2051: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2054); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 'u') ADVANCE(2047); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2052: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1103); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2055); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2053: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2057); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1104); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2054: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1112); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2058); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2055: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2052); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + lookahead == 'n') ADVANCE(1113); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2056: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'N' || lookahead == 'n') ADVANCE(2053); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2057: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2058); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2054); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2058: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1101); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2059); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2059: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1675); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1102); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2060: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1563); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2061: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1670); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(1564); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2062: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2001); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2063: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2007); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2002); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2064: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1678); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2008); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2065: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1672); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1679); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2066: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1683); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2067: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1675); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1684); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2068: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2062); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1676); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2069: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2064); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2063); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2070: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2063); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2065); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2071: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2065); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2064); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2072: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2006); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2066); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2073: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2072); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2007); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2074: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2074); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2073); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2075: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '$') ADVANCE(1473); - if (lookahead == '(') ADVANCE(1564); - if (lookahead == '.') ADVANCE(2078); - if (lookahead == '_') ADVANCE(2079); - if (lookahead == '\t' || - lookahead == ' ') SKIP(198); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2081); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2075); END_STATE(); case 2076: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '.') ADVANCE(2078); - if (lookahead == '_') ADVANCE(2079); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '$') ADVANCE(1474); + if (lookahead == '(') ADVANCE(1565); + if (lookahead == '.') ADVANCE(2079); + if (lookahead == '_') ADVANCE(2080); if (lookahead == '\t' || - lookahead == ' ') SKIP(259); + lookahead == ' ') SKIP(198); if (lookahead == '+' || - lookahead == '-') ADVANCE(2077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2081); + lookahead == '-') ADVANCE(2078); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_1, 12, lookahead))) ADVANCE(2082); END_STATE(); case 2077: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(2080); - if (lookahead == '_') ADVANCE(2077); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2081); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(2079); + if (lookahead == '_') ADVANCE(2080); + if (lookahead == '\t' || + lookahead == ' ') SKIP(260); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2078); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2082); END_STATE(); case 2078: ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '.') ADVANCE(2081); if (lookahead == '_') ADVANCE(2078); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2081); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2082); END_STATE(); case 2079: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '_') ADVANCE(2079); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2081); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2082); END_STATE(); case 2080: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '_') ADVANCE(2080); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2081); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2082); END_STATE(); case 2081: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2081); + if (lookahead == '_') ADVANCE(2081); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2082); END_STATE(); case 2082: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '$') ADVANCE(1620); - if (lookahead == '(') ADVANCE(1594); - if (lookahead == '[') ADVANCE(1708); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2132); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if ((!eof && set_contains(sym__unquoted_pattern_character_set_1, 10, lookahead))) ADVANCE(2082); END_STATE(); case 2083: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '-') ADVANCE(2127); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (lookahead == '$') ADVANCE(1621); + if (lookahead == '(') ADVANCE(1595); + if (lookahead == '[') ADVANCE(1709); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2133); END_STATE(); case 2084: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(1511); - if (lookahead == '_') ADVANCE(2093); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (lookahead == '-') ADVANCE(2128); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2085: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(2092); - if (lookahead == '_') ADVANCE(2086); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2112); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (lookahead == '.') ADVANCE(1512); + if (lookahead == '_') ADVANCE(2094); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2086: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(2092); - if (lookahead == '_') ADVANCE(2086); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (lookahead == '.') ADVANCE(2093); + if (lookahead == '_') ADVANCE(2087); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2113); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2087: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(1510); - if (lookahead == '_') ADVANCE(2093); + if (lookahead == '.') ADVANCE(2093); + if (lookahead == '_') ADVANCE(2087); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2088: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '2') ADVANCE(2118); - if (lookahead == '0' || - lookahead == '1') ADVANCE(2126); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (lookahead == '.') ADVANCE(1511); + if (lookahead == '_') ADVANCE(2094); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2089: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(2129); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (lookahead == '2') ADVANCE(2119); + if (lookahead == '0' || + lookahead == '1') ADVANCE(2127); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2090: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(2131); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (lookahead == ':') ADVANCE(2130); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2091: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(2091); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (lookahead == ':') ADVANCE(2132); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2092: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == '_') ADVANCE(2092); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2093: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == '_') ADVANCE(2093); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1651); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2094: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'a') ADVANCE(2098); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (lookahead == '_') ADVANCE(2094); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2095: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(1092); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (lookahead == 'a') ADVANCE(2099); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2096: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(1095); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (lookahead == 'e') ADVANCE(1093); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2097: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(1098); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (lookahead == 'e') ADVANCE(1096); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2098: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(2101); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (lookahead == 'l') ADVANCE(1099); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2099: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(2097); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (lookahead == 'l') ADVANCE(2102); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2100: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(2102); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (lookahead == 'l') ADVANCE(2098); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2101: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 's') ADVANCE(2096); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (lookahead == 'r') ADVANCE(2103); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2102: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(2095); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (lookahead == 's') ADVANCE(2097); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2103: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(2099); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2109); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (lookahead == 'u') ADVANCE(2096); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2104: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == 'u') ADVANCE(2100); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2109); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + lookahead == 'a') ADVANCE(2110); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2105: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1110); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2110); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2106: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1104); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + lookahead == 'f') ADVANCE(1111); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2107: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2114); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1105); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2108: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'I' || lookahead == 'i') ADVANCE(2115); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2109: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1112); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2116); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2110: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2106); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + lookahead == 'n') ADVANCE(1113); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2111: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || lookahead == 'n') ADVANCE(2107); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2112: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2105); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + lookahead == 'n') ADVANCE(2108); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2113: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2108); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + lookahead == 'n') ADVANCE(2106); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2114: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2116); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2109); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2115: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'T' || lookahead == 't') ADVANCE(2117); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2116: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1101); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2118); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2117: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1107); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + lookahead == 'y') ADVANCE(1102); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2118: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1108); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2119: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1670); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(1677); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2120: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2083); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1671); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2121: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2090); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2084); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2122: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2120); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2091); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2123: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1679); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2121); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2124: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1673); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1680); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2125: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1684); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1674); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2126: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1676); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1685); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2127: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2123); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1677); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2128: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2121); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2124); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2129: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2124); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2122); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2130: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2089); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2125); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2131: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2130); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2090); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2132: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2132); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2131); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); END_STATE(); case 2133: + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2133); + END_STATE(); + case 2134: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '$') ADVANCE(1513); - if (lookahead == '(') ADVANCE(1564); - if (lookahead == '.') ADVANCE(2136); - if (lookahead == ']') ADVANCE(1469); - if (lookahead == '_') ADVANCE(2137); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '$') ADVANCE(1514); + if (lookahead == '(') ADVANCE(1565); + if (lookahead == '.') ADVANCE(2137); + if (lookahead == ']') ADVANCE(1470); + if (lookahead == '_') ADVANCE(2138); if (lookahead == '\t' || lookahead == ' ') SKIP(196); if (lookahead == '+' || - lookahead == '-') ADVANCE(2135); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2139); + lookahead == '-') ADVANCE(2136); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2140); END_STATE(); - case 2134: + case 2135: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '$') ADVANCE(1473); - if (lookahead == '(') ADVANCE(1564); - if (lookahead == '.') ADVANCE(2136); - if (lookahead == '_') ADVANCE(2137); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '$') ADVANCE(1474); + if (lookahead == '(') ADVANCE(1565); + if (lookahead == '.') ADVANCE(2137); + if (lookahead == '_') ADVANCE(2138); if (lookahead == '\t' || lookahead == ' ') SKIP(198); if (lookahead == '+' || - lookahead == '-') ADVANCE(2135); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2139); - END_STATE(); - case 2135: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(2138); - if (lookahead == '_') ADVANCE(2135); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2139); + lookahead == '-') ADVANCE(2136); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_1, 12, lookahead))) ADVANCE(2140); END_STATE(); case 2136: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(2139); if (lookahead == '_') ADVANCE(2136); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2139); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2140); END_STATE(); case 2137: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == '_') ADVANCE(2137); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2139); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2140); END_STATE(); case 2138: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == '_') ADVANCE(2138); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2139); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2140); END_STATE(); case 2139: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2139); + if (lookahead == '_') ADVANCE(2139); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2140); END_STATE(); case 2140: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '-') ADVANCE(2175); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if ((!eof && set_contains(sym__unquoted_pattern_in_list_character_set_1, 11, lookahead))) ADVANCE(2140); END_STATE(); case 2141: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(1511); - if (lookahead == '_') ADVANCE(2147); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + if (lookahead == '-') ADVANCE(2176); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2142: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(2146); - if (lookahead == '_') ADVANCE(2143); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2166); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + if (lookahead == '.') ADVANCE(1512); + if (lookahead == '_') ADVANCE(2148); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2143: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(2146); - if (lookahead == '_') ADVANCE(2143); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + if (lookahead == '.') ADVANCE(2147); + if (lookahead == '_') ADVANCE(2144); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2167); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2144: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == ':') ADVANCE(556); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + if (lookahead == '.') ADVANCE(2147); + if (lookahead == '_') ADVANCE(2144); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2145: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(2145); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1647); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + if (lookahead == ':') ADVANCE(557); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2146: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == '_') ADVANCE(2146); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1648); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2147: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == '_') ADVANCE(2147); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1649); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1651); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2148: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'a') ADVANCE(2152); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + if (lookahead == '_') ADVANCE(2148); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1650); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2149: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(1092); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + if (lookahead == 'a') ADVANCE(2153); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2150: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(1095); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + if (lookahead == 'e') ADVANCE(1093); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2151: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(1098); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + if (lookahead == 'e') ADVANCE(1096); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2152: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(2155); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + if (lookahead == 'l') ADVANCE(1099); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2153: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(2151); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + if (lookahead == 'l') ADVANCE(2156); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2154: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(2156); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + if (lookahead == 'l') ADVANCE(2152); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2155: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 's') ADVANCE(2150); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + if (lookahead == 'r') ADVANCE(2157); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2156: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(2149); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + if (lookahead == 's') ADVANCE(2151); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2157: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(2153); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2163); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + if (lookahead == 'u') ADVANCE(2150); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2158: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == 'u') ADVANCE(2154); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2163); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + lookahead == 'a') ADVANCE(2164); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2159: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1111); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2164); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2160: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1105); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + lookahead == 'f') ADVANCE(1112); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2161: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2168); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1106); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2162: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'I' || lookahead == 'i') ADVANCE(2169); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2163: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1112); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2170); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2164: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2160); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + lookahead == 'n') ADVANCE(1113); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2165: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || lookahead == 'n') ADVANCE(2161); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2166: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2159); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + lookahead == 'n') ADVANCE(2162); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2167: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2162); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + lookahead == 'n') ADVANCE(2160); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2168: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2170); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2163); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2169: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'T' || lookahead == 't') ADVANCE(2171); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2170: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1101); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2172); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2171: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1107); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + lookahead == 'y') ADVANCE(1102); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2172: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2140); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1108); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2173: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2144); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2141); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2174: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2172); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2145); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2175: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2177); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2173); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2176: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2173); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2178); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2177: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1680); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2174); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2178: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2178); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1681); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2179: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '$') ADVANCE(1473); - if (lookahead == '(') ADVANCE(1564); - if (lookahead == '.') ADVANCE(2182); - if (lookahead == '_') ADVANCE(2183); - if (lookahead == '\t' || - lookahead == ' ') SKIP(198); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2181); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2185); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2179); END_STATE(); case 2180: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '#') ADVANCE(2192); - if (lookahead == '.') ADVANCE(2182); - if (lookahead == '_') ADVANCE(2183); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '$') ADVANCE(1474); + if (lookahead == '(') ADVANCE(1565); + if (lookahead == '.') ADVANCE(2183); + if (lookahead == '_') ADVANCE(2184); if (lookahead == '\t' || - lookahead == ' ') SKIP(259); + lookahead == ' ') SKIP(198); if (lookahead == '+' || - lookahead == '-') ADVANCE(2181); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2185); + lookahead == '-') ADVANCE(2182); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 13, lookahead))) ADVANCE(2186); END_STATE(); case 2181: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(2184); - if (lookahead == '_') ADVANCE(2181); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2185); + if (lookahead == '#') ADVANCE(2193); + if (lookahead == '.') ADVANCE(2183); + if (lookahead == '_') ADVANCE(2184); + if (lookahead == '\t' || + lookahead == ' ') SKIP(260); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2182); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2186); END_STATE(); case 2182: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '.') ADVANCE(2185); if (lookahead == '_') ADVANCE(2182); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1615); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2185); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2186); END_STATE(); case 2183: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); if (lookahead == '_') ADVANCE(2183); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1612); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2185); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2186); END_STATE(); case 2184: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); if (lookahead == '_') ADVANCE(2184); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2185); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2186); END_STATE(); case 2185: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2185); + if (lookahead == '_') ADVANCE(2185); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2186); END_STATE(); case 2186: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if ((!eof && set_contains(sym__unquoted_pattern_in_record_character_set_1, 12, lookahead))) ADVANCE(2186); + END_STATE(); + case 2187: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); - if (lookahead == '#') ADVANCE(2199); + if (lookahead == '#') ADVANCE(2200); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2187); + lookahead != '|') ADVANCE(2188); END_STATE(); - case 2187: + case 2188: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32531,20 +32567,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2187); - END_STATE(); - case 2188: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); - if (lookahead == '#') ADVANCE(2198); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2189); + lookahead != '|') ADVANCE(2188); END_STATE(); case 2189: 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(2189); + if (lookahead == '#') ADVANCE(2199); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2190); END_STATE(); case 2190: + 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(2190); + END_STATE(); + case 2191: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); - if (lookahead == '#') ADVANCE(2197); + if (lookahead == '#') ADVANCE(2198); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -32553,9 +32589,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2191); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2192); END_STATE(); - case 2191: + case 2192: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32565,30 +32601,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2191); - END_STATE(); - case 2192: - ACCEPT_TOKEN(anon_sym_POUND); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2192); END_STATE(); case 2193: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '\n') ADVANCE(666); - if (lookahead == '\r') ADVANCE(668); - if (lookahead != 0) ADVANCE(668); END_STATE(); case 2194: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(665); + if (lookahead == '\n') ADVANCE(667); + if (lookahead == '\r') ADVANCE(669); + if (lookahead != 0) ADVANCE(669); END_STATE(); case 2195: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1049); + if (lookahead == '!') ADVANCE(666); END_STATE(); case 2196: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1718); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 11, lookahead))) ADVANCE(1050); END_STATE(); case 2197: + ACCEPT_TOKEN(anon_sym_POUND); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(1719); + END_STATE(); + case 2198: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32598,13 +32634,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2191); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2192); END_STATE(); - case 2198: + case 2199: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2189); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(2190); END_STATE(); - case 2199: + case 2200: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -32612,26 +32648,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(2187); + lookahead != '|') ADVANCE(2188); END_STATE(); - case 2200: + case 2201: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2202); + lookahead != '\n') ADVANCE(2203); END_STATE(); - case 2201: + case 2202: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '#') ADVANCE(2200); + if (lookahead == '#') ADVANCE(2201); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2201); + lookahead == ' ') ADVANCE(2202); if (lookahead != 0 && lookahead != '\t' && - lookahead != '\n') ADVANCE(2202); + lookahead != '\n') ADVANCE(2203); END_STATE(); - case 2202: + case 2203: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2202); + lookahead != '\n') ADVANCE(2203); END_STATE(); default: return false; @@ -33179,74 +33215,74 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 632, .external_lex_state = 2}, - [2] = {.lex_state = 625, .external_lex_state = 2}, - [3] = {.lex_state = 625, .external_lex_state = 2}, - [4] = {.lex_state = 625, .external_lex_state = 2}, - [5] = {.lex_state = 625, .external_lex_state = 2}, - [6] = {.lex_state = 625, .external_lex_state = 2}, - [7] = {.lex_state = 625, .external_lex_state = 2}, - [8] = {.lex_state = 625, .external_lex_state = 2}, - [9] = {.lex_state = 625, .external_lex_state = 2}, - [10] = {.lex_state = 625, .external_lex_state = 2}, - [11] = {.lex_state = 625, .external_lex_state = 2}, - [12] = {.lex_state = 625, .external_lex_state = 2}, - [13] = {.lex_state = 625, .external_lex_state = 2}, - [14] = {.lex_state = 625, .external_lex_state = 2}, - [15] = {.lex_state = 625, .external_lex_state = 2}, - [16] = {.lex_state = 623, .external_lex_state = 2}, - [17] = {.lex_state = 623, .external_lex_state = 2}, - [18] = {.lex_state = 623, .external_lex_state = 2}, - [19] = {.lex_state = 623, .external_lex_state = 2}, - [20] = {.lex_state = 623, .external_lex_state = 2}, - [21] = {.lex_state = 623, .external_lex_state = 2}, - [22] = {.lex_state = 623, .external_lex_state = 2}, - [23] = {.lex_state = 623, .external_lex_state = 2}, - [24] = {.lex_state = 623, .external_lex_state = 2}, - [25] = {.lex_state = 623, .external_lex_state = 2}, - [26] = {.lex_state = 623, .external_lex_state = 2}, - [27] = {.lex_state = 623, .external_lex_state = 2}, - [28] = {.lex_state = 623, .external_lex_state = 2}, - [29] = {.lex_state = 623, .external_lex_state = 2}, - [30] = {.lex_state = 623, .external_lex_state = 2}, - [31] = {.lex_state = 623, .external_lex_state = 2}, - [32] = {.lex_state = 623, .external_lex_state = 2}, - [33] = {.lex_state = 623, .external_lex_state = 2}, - [34] = {.lex_state = 623, .external_lex_state = 2}, - [35] = {.lex_state = 623, .external_lex_state = 2}, + [1] = {.lex_state = 633, .external_lex_state = 2}, + [2] = {.lex_state = 626, .external_lex_state = 2}, + [3] = {.lex_state = 626, .external_lex_state = 2}, + [4] = {.lex_state = 626, .external_lex_state = 2}, + [5] = {.lex_state = 626, .external_lex_state = 2}, + [6] = {.lex_state = 626, .external_lex_state = 2}, + [7] = {.lex_state = 626, .external_lex_state = 2}, + [8] = {.lex_state = 626, .external_lex_state = 2}, + [9] = {.lex_state = 626, .external_lex_state = 2}, + [10] = {.lex_state = 626, .external_lex_state = 2}, + [11] = {.lex_state = 626, .external_lex_state = 2}, + [12] = {.lex_state = 626, .external_lex_state = 2}, + [13] = {.lex_state = 626, .external_lex_state = 2}, + [14] = {.lex_state = 626, .external_lex_state = 2}, + [15] = {.lex_state = 626, .external_lex_state = 2}, + [16] = {.lex_state = 624, .external_lex_state = 2}, + [17] = {.lex_state = 624, .external_lex_state = 2}, + [18] = {.lex_state = 624, .external_lex_state = 2}, + [19] = {.lex_state = 624, .external_lex_state = 2}, + [20] = {.lex_state = 624, .external_lex_state = 2}, + [21] = {.lex_state = 624, .external_lex_state = 2}, + [22] = {.lex_state = 624, .external_lex_state = 2}, + [23] = {.lex_state = 624, .external_lex_state = 2}, + [24] = {.lex_state = 624, .external_lex_state = 2}, + [25] = {.lex_state = 624, .external_lex_state = 2}, + [26] = {.lex_state = 624, .external_lex_state = 2}, + [27] = {.lex_state = 624, .external_lex_state = 2}, + [28] = {.lex_state = 624, .external_lex_state = 2}, + [29] = {.lex_state = 624, .external_lex_state = 2}, + [30] = {.lex_state = 624, .external_lex_state = 2}, + [31] = {.lex_state = 624, .external_lex_state = 2}, + [32] = {.lex_state = 624, .external_lex_state = 2}, + [33] = {.lex_state = 624, .external_lex_state = 2}, + [34] = {.lex_state = 624, .external_lex_state = 2}, + [35] = {.lex_state = 40, .external_lex_state = 2}, [36] = {.lex_state = 40, .external_lex_state = 2}, - [37] = {.lex_state = 623, .external_lex_state = 2}, + [37] = {.lex_state = 624, .external_lex_state = 2}, [38] = {.lex_state = 40, .external_lex_state = 2}, - [39] = {.lex_state = 623, .external_lex_state = 2}, - [40] = {.lex_state = 623, .external_lex_state = 2}, + [39] = {.lex_state = 624, .external_lex_state = 2}, + [40] = {.lex_state = 40, .external_lex_state = 2}, [41] = {.lex_state = 40, .external_lex_state = 2}, - [42] = {.lex_state = 40, .external_lex_state = 2}, - [43] = {.lex_state = 623, .external_lex_state = 2}, - [44] = {.lex_state = 40, .external_lex_state = 2}, - [45] = {.lex_state = 40, .external_lex_state = 2}, + [42] = {.lex_state = 624, .external_lex_state = 2}, + [43] = {.lex_state = 40, .external_lex_state = 2}, + [44] = {.lex_state = 624, .external_lex_state = 2}, + [45] = {.lex_state = 624, .external_lex_state = 2}, [46] = {.lex_state = 40, .external_lex_state = 2}, - [47] = {.lex_state = 623, .external_lex_state = 2}, + [47] = {.lex_state = 40, .external_lex_state = 2}, [48] = {.lex_state = 40, .external_lex_state = 2}, - [49] = {.lex_state = 623, .external_lex_state = 2}, + [49] = {.lex_state = 624, .external_lex_state = 2}, [50] = {.lex_state = 40, .external_lex_state = 2}, - [51] = {.lex_state = 623, .external_lex_state = 2}, - [52] = {.lex_state = 40, .external_lex_state = 2}, - [53] = {.lex_state = 623, .external_lex_state = 2}, - [54] = {.lex_state = 623, .external_lex_state = 2}, - [55] = {.lex_state = 40, .external_lex_state = 2}, - [56] = {.lex_state = 40, .external_lex_state = 2}, - [57] = {.lex_state = 623, .external_lex_state = 2}, + [51] = {.lex_state = 624, .external_lex_state = 2}, + [52] = {.lex_state = 624, .external_lex_state = 2}, + [53] = {.lex_state = 40, .external_lex_state = 2}, + [54] = {.lex_state = 624, .external_lex_state = 2}, + [55] = {.lex_state = 624, .external_lex_state = 2}, + [56] = {.lex_state = 624, .external_lex_state = 2}, + [57] = {.lex_state = 40, .external_lex_state = 2}, [58] = {.lex_state = 40, .external_lex_state = 2}, - [59] = {.lex_state = 623, .external_lex_state = 2}, - [60] = {.lex_state = 623, .external_lex_state = 2}, - [61] = {.lex_state = 40, .external_lex_state = 2}, - [62] = {.lex_state = 623, .external_lex_state = 2}, - [63] = {.lex_state = 40, .external_lex_state = 2}, - [64] = {.lex_state = 623, .external_lex_state = 2}, - [65] = {.lex_state = 623, .external_lex_state = 2}, - [66] = {.lex_state = 40, .external_lex_state = 2}, - [67] = {.lex_state = 623, .external_lex_state = 2}, - [68] = {.lex_state = 40, .external_lex_state = 2}, + [59] = {.lex_state = 624, .external_lex_state = 2}, + [60] = {.lex_state = 40, .external_lex_state = 2}, + [61] = {.lex_state = 624, .external_lex_state = 2}, + [62] = {.lex_state = 40, .external_lex_state = 2}, + [63] = {.lex_state = 624, .external_lex_state = 2}, + [64] = {.lex_state = 40, .external_lex_state = 2}, + [65] = {.lex_state = 624, .external_lex_state = 2}, + [66] = {.lex_state = 624, .external_lex_state = 2}, + [67] = {.lex_state = 40, .external_lex_state = 2}, + [68] = {.lex_state = 624, .external_lex_state = 2}, [69] = {.lex_state = 40, .external_lex_state = 2}, [70] = {.lex_state = 40, .external_lex_state = 2}, [71] = {.lex_state = 40, .external_lex_state = 2}, @@ -33254,124 +33290,124 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [73] = {.lex_state = 40, .external_lex_state = 2}, [74] = {.lex_state = 40, .external_lex_state = 2}, [75] = {.lex_state = 40, .external_lex_state = 2}, - [76] = {.lex_state = 623, .external_lex_state = 2}, - [77] = {.lex_state = 623, .external_lex_state = 2}, - [78] = {.lex_state = 623, .external_lex_state = 2}, - [79] = {.lex_state = 623, .external_lex_state = 2}, - [80] = {.lex_state = 623, .external_lex_state = 2}, - [81] = {.lex_state = 623, .external_lex_state = 2}, - [82] = {.lex_state = 623, .external_lex_state = 2}, - [83] = {.lex_state = 623, .external_lex_state = 2}, - [84] = {.lex_state = 623, .external_lex_state = 2}, - [85] = {.lex_state = 623, .external_lex_state = 2}, - [86] = {.lex_state = 623, .external_lex_state = 2}, - [87] = {.lex_state = 623, .external_lex_state = 2}, - [88] = {.lex_state = 623, .external_lex_state = 2}, - [89] = {.lex_state = 623, .external_lex_state = 2}, - [90] = {.lex_state = 623, .external_lex_state = 2}, - [91] = {.lex_state = 623, .external_lex_state = 2}, - [92] = {.lex_state = 1159}, - [93] = {.lex_state = 1164}, - [94] = {.lex_state = 1327}, - [95] = {.lex_state = 1151}, - [96] = {.lex_state = 1149}, - [97] = {.lex_state = 1165}, - [98] = {.lex_state = 1329}, - [99] = {.lex_state = 1165}, - [100] = {.lex_state = 1160}, - [101] = {.lex_state = 1167}, - [102] = {.lex_state = 1329}, - [103] = {.lex_state = 1153}, - [104] = {.lex_state = 1331}, - [105] = {.lex_state = 1153}, - [106] = {.lex_state = 1166}, - [107] = {.lex_state = 51, .external_lex_state = 2}, - [108] = {.lex_state = 627, .external_lex_state = 2}, - [109] = {.lex_state = 1166}, - [110] = {.lex_state = 1169}, - [111] = {.lex_state = 1331}, - [112] = {.lex_state = 1166}, - [113] = {.lex_state = 1166}, - [114] = {.lex_state = 1169}, - [115] = {.lex_state = 1327}, - [116] = {.lex_state = 1162}, - [117] = {.lex_state = 1331}, - [118] = {.lex_state = 1155}, - [119] = {.lex_state = 1331}, - [120] = {.lex_state = 1333}, - [121] = {.lex_state = 1171}, - [122] = {.lex_state = 1333}, - [123] = {.lex_state = 1171}, - [124] = {.lex_state = 1155}, - [125] = {.lex_state = 1171}, - [126] = {.lex_state = 1171}, - [127] = {.lex_state = 1155}, - [128] = {.lex_state = 1333}, - [129] = {.lex_state = 1333}, - [130] = {.lex_state = 627, .external_lex_state = 2}, - [131] = {.lex_state = 1173}, - [132] = {.lex_state = 1155}, - [133] = {.lex_state = 627, .external_lex_state = 2}, - [134] = {.lex_state = 1175}, - [135] = {.lex_state = 1333}, - [136] = {.lex_state = 1333}, - [137] = {.lex_state = 1333}, - [138] = {.lex_state = 1175}, - [139] = {.lex_state = 1333}, - [140] = {.lex_state = 1177}, - [141] = {.lex_state = 1177}, - [142] = {.lex_state = 1177}, - [143] = {.lex_state = 1177}, - [144] = {.lex_state = 1335}, - [145] = {.lex_state = 1179}, - [146] = {.lex_state = 1335}, - [147] = {.lex_state = 1157}, - [148] = {.lex_state = 1179}, - [149] = {.lex_state = 1157}, - [150] = {.lex_state = 1179}, - [151] = {.lex_state = 1179}, - [152] = {.lex_state = 623, .external_lex_state = 2}, - [153] = {.lex_state = 623, .external_lex_state = 2}, - [154] = {.lex_state = 623, .external_lex_state = 2}, - [155] = {.lex_state = 623, .external_lex_state = 2}, - [156] = {.lex_state = 1335}, - [157] = {.lex_state = 623, .external_lex_state = 2}, - [158] = {.lex_state = 623, .external_lex_state = 2}, - [159] = {.lex_state = 623, .external_lex_state = 2}, - [160] = {.lex_state = 623, .external_lex_state = 2}, - [161] = {.lex_state = 623, .external_lex_state = 2}, - [162] = {.lex_state = 1335}, - [163] = {.lex_state = 623, .external_lex_state = 2}, - [164] = {.lex_state = 623, .external_lex_state = 2}, - [165] = {.lex_state = 623, .external_lex_state = 2}, - [166] = {.lex_state = 623, .external_lex_state = 2}, - [167] = {.lex_state = 623, .external_lex_state = 2}, - [168] = {.lex_state = 623, .external_lex_state = 2}, - [169] = {.lex_state = 623, .external_lex_state = 2}, - [170] = {.lex_state = 623, .external_lex_state = 2}, - [171] = {.lex_state = 623, .external_lex_state = 2}, - [172] = {.lex_state = 623, .external_lex_state = 2}, - [173] = {.lex_state = 623, .external_lex_state = 2}, - [174] = {.lex_state = 623, .external_lex_state = 2}, - [175] = {.lex_state = 623, .external_lex_state = 2}, - [176] = {.lex_state = 623, .external_lex_state = 2}, - [177] = {.lex_state = 623, .external_lex_state = 2}, - [178] = {.lex_state = 623, .external_lex_state = 2}, - [179] = {.lex_state = 623, .external_lex_state = 2}, - [180] = {.lex_state = 623, .external_lex_state = 2}, - [181] = {.lex_state = 623, .external_lex_state = 2}, - [182] = {.lex_state = 623, .external_lex_state = 2}, - [183] = {.lex_state = 623, .external_lex_state = 2}, - [184] = {.lex_state = 623, .external_lex_state = 2}, - [185] = {.lex_state = 623, .external_lex_state = 2}, - [186] = {.lex_state = 623, .external_lex_state = 2}, - [187] = {.lex_state = 623, .external_lex_state = 2}, - [188] = {.lex_state = 623, .external_lex_state = 2}, - [189] = {.lex_state = 1181}, - [190] = {.lex_state = 623, .external_lex_state = 2}, - [191] = {.lex_state = 623, .external_lex_state = 2}, - [192] = {.lex_state = 623, .external_lex_state = 2}, - [193] = {.lex_state = 1181}, + [76] = {.lex_state = 624, .external_lex_state = 2}, + [77] = {.lex_state = 624, .external_lex_state = 2}, + [78] = {.lex_state = 624, .external_lex_state = 2}, + [79] = {.lex_state = 624, .external_lex_state = 2}, + [80] = {.lex_state = 624, .external_lex_state = 2}, + [81] = {.lex_state = 624, .external_lex_state = 2}, + [82] = {.lex_state = 624, .external_lex_state = 2}, + [83] = {.lex_state = 624, .external_lex_state = 2}, + [84] = {.lex_state = 624, .external_lex_state = 2}, + [85] = {.lex_state = 624, .external_lex_state = 2}, + [86] = {.lex_state = 624, .external_lex_state = 2}, + [87] = {.lex_state = 624, .external_lex_state = 2}, + [88] = {.lex_state = 624, .external_lex_state = 2}, + [89] = {.lex_state = 624, .external_lex_state = 2}, + [90] = {.lex_state = 624, .external_lex_state = 2}, + [91] = {.lex_state = 624, .external_lex_state = 2}, + [92] = {.lex_state = 1160}, + [93] = {.lex_state = 1165}, + [94] = {.lex_state = 1166}, + [95] = {.lex_state = 1166}, + [96] = {.lex_state = 1161}, + [97] = {.lex_state = 1330}, + [98] = {.lex_state = 1168}, + [99] = {.lex_state = 1328}, + [100] = {.lex_state = 1150}, + [101] = {.lex_state = 1152}, + [102] = {.lex_state = 1332}, + [103] = {.lex_state = 1154}, + [104] = {.lex_state = 1154}, + [105] = {.lex_state = 1167}, + [106] = {.lex_state = 1167}, + [107] = {.lex_state = 1167}, + [108] = {.lex_state = 1170}, + [109] = {.lex_state = 1170}, + [110] = {.lex_state = 1328}, + [111] = {.lex_state = 1330}, + [112] = {.lex_state = 51, .external_lex_state = 2}, + [113] = {.lex_state = 1332}, + [114] = {.lex_state = 1167}, + [115] = {.lex_state = 628, .external_lex_state = 2}, + [116] = {.lex_state = 1334}, + [117] = {.lex_state = 628, .external_lex_state = 2}, + [118] = {.lex_state = 1172}, + [119] = {.lex_state = 1172}, + [120] = {.lex_state = 1163}, + [121] = {.lex_state = 1332}, + [122] = {.lex_state = 1174}, + [123] = {.lex_state = 1334}, + [124] = {.lex_state = 1156}, + [125] = {.lex_state = 1332}, + [126] = {.lex_state = 1334}, + [127] = {.lex_state = 1156}, + [128] = {.lex_state = 1156}, + [129] = {.lex_state = 1334}, + [130] = {.lex_state = 1156}, + [131] = {.lex_state = 1172}, + [132] = {.lex_state = 628, .external_lex_state = 2}, + [133] = {.lex_state = 1172}, + [134] = {.lex_state = 1176}, + [135] = {.lex_state = 1176}, + [136] = {.lex_state = 1334}, + [137] = {.lex_state = 1334}, + [138] = {.lex_state = 1334}, + [139] = {.lex_state = 1334}, + [140] = {.lex_state = 1178}, + [141] = {.lex_state = 1178}, + [142] = {.lex_state = 1178}, + [143] = {.lex_state = 1178}, + [144] = {.lex_state = 1158}, + [145] = {.lex_state = 1158}, + [146] = {.lex_state = 1336}, + [147] = {.lex_state = 1180}, + [148] = {.lex_state = 1180}, + [149] = {.lex_state = 1180}, + [150] = {.lex_state = 1180}, + [151] = {.lex_state = 1336}, + [152] = {.lex_state = 624, .external_lex_state = 2}, + [153] = {.lex_state = 624, .external_lex_state = 2}, + [154] = {.lex_state = 624, .external_lex_state = 2}, + [155] = {.lex_state = 1336}, + [156] = {.lex_state = 624, .external_lex_state = 2}, + [157] = {.lex_state = 624, .external_lex_state = 2}, + [158] = {.lex_state = 624, .external_lex_state = 2}, + [159] = {.lex_state = 624, .external_lex_state = 2}, + [160] = {.lex_state = 624, .external_lex_state = 2}, + [161] = {.lex_state = 624, .external_lex_state = 2}, + [162] = {.lex_state = 624, .external_lex_state = 2}, + [163] = {.lex_state = 624, .external_lex_state = 2}, + [164] = {.lex_state = 624, .external_lex_state = 2}, + [165] = {.lex_state = 624, .external_lex_state = 2}, + [166] = {.lex_state = 624, .external_lex_state = 2}, + [167] = {.lex_state = 624, .external_lex_state = 2}, + [168] = {.lex_state = 624, .external_lex_state = 2}, + [169] = {.lex_state = 624, .external_lex_state = 2}, + [170] = {.lex_state = 624, .external_lex_state = 2}, + [171] = {.lex_state = 1336}, + [172] = {.lex_state = 624, .external_lex_state = 2}, + [173] = {.lex_state = 624, .external_lex_state = 2}, + [174] = {.lex_state = 624, .external_lex_state = 2}, + [175] = {.lex_state = 624, .external_lex_state = 2}, + [176] = {.lex_state = 624, .external_lex_state = 2}, + [177] = {.lex_state = 624, .external_lex_state = 2}, + [178] = {.lex_state = 624, .external_lex_state = 2}, + [179] = {.lex_state = 624, .external_lex_state = 2}, + [180] = {.lex_state = 624, .external_lex_state = 2}, + [181] = {.lex_state = 624, .external_lex_state = 2}, + [182] = {.lex_state = 624, .external_lex_state = 2}, + [183] = {.lex_state = 624, .external_lex_state = 2}, + [184] = {.lex_state = 624, .external_lex_state = 2}, + [185] = {.lex_state = 624, .external_lex_state = 2}, + [186] = {.lex_state = 624, .external_lex_state = 2}, + [187] = {.lex_state = 624, .external_lex_state = 2}, + [188] = {.lex_state = 624, .external_lex_state = 2}, + [189] = {.lex_state = 624, .external_lex_state = 2}, + [190] = {.lex_state = 624, .external_lex_state = 2}, + [191] = {.lex_state = 1182}, + [192] = {.lex_state = 1182}, + [193] = {.lex_state = 624, .external_lex_state = 2}, [194] = {.lex_state = 52, .external_lex_state = 2}, [195] = {.lex_state = 43, .external_lex_state = 2}, [196] = {.lex_state = 43, .external_lex_state = 2}, @@ -33445,89 +33481,89 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [264] = {.lex_state = 43, .external_lex_state = 2}, [265] = {.lex_state = 43, .external_lex_state = 2}, [266] = {.lex_state = 43, .external_lex_state = 2}, - [267] = {.lex_state = 1328}, - [268] = {.lex_state = 1168}, - [269] = {.lex_state = 1161}, - [270] = {.lex_state = 1150}, - [271] = {.lex_state = 1152}, - [272] = {.lex_state = 1330}, - [273] = {.lex_state = 1154}, - [274] = {.lex_state = 1170}, - [275] = {.lex_state = 43, .external_lex_state = 2}, - [276] = {.lex_state = 1170}, - [277] = {.lex_state = 1328}, + [267] = {.lex_state = 1169}, + [268] = {.lex_state = 1331}, + [269] = {.lex_state = 1151}, + [270] = {.lex_state = 1153}, + [271] = {.lex_state = 1329}, + [272] = {.lex_state = 1162}, + [273] = {.lex_state = 1171}, + [274] = {.lex_state = 43, .external_lex_state = 2}, + [275] = {.lex_state = 1155}, + [276] = {.lex_state = 43, .external_lex_state = 2}, + [277] = {.lex_state = 43, .external_lex_state = 2}, [278] = {.lex_state = 43, .external_lex_state = 2}, - [279] = {.lex_state = 1330}, - [280] = {.lex_state = 43, .external_lex_state = 2}, + [279] = {.lex_state = 43, .external_lex_state = 2}, + [280] = {.lex_state = 1333}, [281] = {.lex_state = 43, .external_lex_state = 2}, [282] = {.lex_state = 43, .external_lex_state = 2}, [283] = {.lex_state = 43, .external_lex_state = 2}, [284] = {.lex_state = 43, .external_lex_state = 2}, - [285] = {.lex_state = 43, .external_lex_state = 2}, + [285] = {.lex_state = 1333}, [286] = {.lex_state = 43, .external_lex_state = 2}, - [287] = {.lex_state = 1332}, + [287] = {.lex_state = 1155}, [288] = {.lex_state = 43, .external_lex_state = 2}, - [289] = {.lex_state = 43, .external_lex_state = 2}, + [289] = {.lex_state = 1171}, [290] = {.lex_state = 43, .external_lex_state = 2}, - [291] = {.lex_state = 43, .external_lex_state = 2}, - [292] = {.lex_state = 1332}, - [293] = {.lex_state = 1154}, - [294] = {.lex_state = 1172}, - [295] = {.lex_state = 1172}, - [296] = {.lex_state = 1163}, - [297] = {.lex_state = 1174}, - [298] = {.lex_state = 1334}, - [299] = {.lex_state = 1156}, - [300] = {.lex_state = 1156}, - [301] = {.lex_state = 1334}, - [302] = {.lex_state = 1332}, - [303] = {.lex_state = 1172}, - [304] = {.lex_state = 1156}, - [305] = {.lex_state = 1156}, - [306] = {.lex_state = 1334}, - [307] = {.lex_state = 1332}, - [308] = {.lex_state = 1334}, - [309] = {.lex_state = 1172}, - [310] = {.lex_state = 1176}, - [311] = {.lex_state = 1176}, - [312] = {.lex_state = 1334}, - [313] = {.lex_state = 1334}, - [314] = {.lex_state = 1334}, - [315] = {.lex_state = 1334}, - [316] = {.lex_state = 1178}, - [317] = {.lex_state = 1178}, - [318] = {.lex_state = 1178}, - [319] = {.lex_state = 1178}, + [291] = {.lex_state = 1329}, + [292] = {.lex_state = 1331}, + [293] = {.lex_state = 43, .external_lex_state = 2}, + [294] = {.lex_state = 1157}, + [295] = {.lex_state = 1157}, + [296] = {.lex_state = 1335}, + [297] = {.lex_state = 1173}, + [298] = {.lex_state = 1333}, + [299] = {.lex_state = 1335}, + [300] = {.lex_state = 1173}, + [301] = {.lex_state = 1157}, + [302] = {.lex_state = 1173}, + [303] = {.lex_state = 1173}, + [304] = {.lex_state = 1164}, + [305] = {.lex_state = 1175}, + [306] = {.lex_state = 1335}, + [307] = {.lex_state = 1157}, + [308] = {.lex_state = 1333}, + [309] = {.lex_state = 1335}, + [310] = {.lex_state = 1177}, + [311] = {.lex_state = 1335}, + [312] = {.lex_state = 1335}, + [313] = {.lex_state = 1335}, + [314] = {.lex_state = 1335}, + [315] = {.lex_state = 1177}, + [316] = {.lex_state = 1179}, + [317] = {.lex_state = 1179}, + [318] = {.lex_state = 1179}, + [319] = {.lex_state = 1179}, [320] = {.lex_state = 53, .external_lex_state = 2}, [321] = {.lex_state = 53, .external_lex_state = 2}, [322] = {.lex_state = 53, .external_lex_state = 2}, - [323] = {.lex_state = 1180}, - [324] = {.lex_state = 1158}, - [325] = {.lex_state = 1180}, - [326] = {.lex_state = 1336}, - [327] = {.lex_state = 1336}, - [328] = {.lex_state = 1158}, - [329] = {.lex_state = 1336}, - [330] = {.lex_state = 1336}, - [331] = {.lex_state = 1182}, - [332] = {.lex_state = 1182}, - [333] = {.lex_state = 578}, + [323] = {.lex_state = 1337}, + [324] = {.lex_state = 1159}, + [325] = {.lex_state = 1181}, + [326] = {.lex_state = 1181}, + [327] = {.lex_state = 1159}, + [328] = {.lex_state = 1337}, + [329] = {.lex_state = 1337}, + [330] = {.lex_state = 1337}, + [331] = {.lex_state = 1183}, + [332] = {.lex_state = 1183}, + [333] = {.lex_state = 579}, [334] = {.lex_state = 130}, - [335] = {.lex_state = 130}, - [336] = {.lex_state = 578}, + [335] = {.lex_state = 579}, + [336] = {.lex_state = 130}, [337] = {.lex_state = 130}, - [338] = {.lex_state = 578}, + [338] = {.lex_state = 579}, [339] = {.lex_state = 53, .external_lex_state = 2}, - [340] = {.lex_state = 578}, - [341] = {.lex_state = 578}, - [342] = {.lex_state = 53, .external_lex_state = 2}, + [340] = {.lex_state = 53, .external_lex_state = 2}, + [341] = {.lex_state = 579}, + [342] = {.lex_state = 579}, [343] = {.lex_state = 53, .external_lex_state = 2}, - [344] = {.lex_state = 578}, - [345] = {.lex_state = 578}, - [346] = {.lex_state = 578}, - [347] = {.lex_state = 578}, - [348] = {.lex_state = 578}, - [349] = {.lex_state = 130}, + [344] = {.lex_state = 579}, + [345] = {.lex_state = 579}, + [346] = {.lex_state = 130}, + [347] = {.lex_state = 579}, + [348] = {.lex_state = 579}, + [349] = {.lex_state = 579}, [350] = {.lex_state = 130}, [351] = {.lex_state = 130}, [352] = {.lex_state = 130}, @@ -33546,156 +33582,156 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [365] = {.lex_state = 130}, [366] = {.lex_state = 130}, [367] = {.lex_state = 130}, - [368] = {.lex_state = 130}, - [369] = {.lex_state = 53, .external_lex_state = 2}, - [370] = {.lex_state = 578}, - [371] = {.lex_state = 578}, - [372] = {.lex_state = 578}, - [373] = {.lex_state = 578}, + [368] = {.lex_state = 579}, + [369] = {.lex_state = 579}, + [370] = {.lex_state = 579}, + [371] = {.lex_state = 53, .external_lex_state = 2}, + [372] = {.lex_state = 579}, + [373] = {.lex_state = 130}, [374] = {.lex_state = 130}, - [375] = {.lex_state = 578}, + [375] = {.lex_state = 53, .external_lex_state = 2}, [376] = {.lex_state = 53, .external_lex_state = 2}, - [377] = {.lex_state = 582}, - [378] = {.lex_state = 578}, - [379] = {.lex_state = 582}, - [380] = {.lex_state = 578}, - [381] = {.lex_state = 578}, - [382] = {.lex_state = 578}, - [383] = {.lex_state = 578}, - [384] = {.lex_state = 578}, + [377] = {.lex_state = 579}, + [378] = {.lex_state = 583}, + [379] = {.lex_state = 579}, + [380] = {.lex_state = 579}, + [381] = {.lex_state = 579}, + [382] = {.lex_state = 579}, + [383] = {.lex_state = 579}, + [384] = {.lex_state = 579}, [385] = {.lex_state = 53, .external_lex_state = 2}, - [386] = {.lex_state = 578}, - [387] = {.lex_state = 578}, + [386] = {.lex_state = 53, .external_lex_state = 2}, + [387] = {.lex_state = 130}, [388] = {.lex_state = 53, .external_lex_state = 2}, - [389] = {.lex_state = 578}, - [390] = {.lex_state = 53, .external_lex_state = 2}, - [391] = {.lex_state = 582}, - [392] = {.lex_state = 53, .external_lex_state = 2}, - [393] = {.lex_state = 130}, - [394] = {.lex_state = 578}, - [395] = {.lex_state = 53, .external_lex_state = 2}, - [396] = {.lex_state = 53, .external_lex_state = 2}, + [389] = {.lex_state = 579}, + [390] = {.lex_state = 583}, + [391] = {.lex_state = 53, .external_lex_state = 2}, + [392] = {.lex_state = 579}, + [393] = {.lex_state = 579}, + [394] = {.lex_state = 53, .external_lex_state = 2}, + [395] = {.lex_state = 583}, + [396] = {.lex_state = 579}, [397] = {.lex_state = 53, .external_lex_state = 2}, - [398] = {.lex_state = 582}, - [399] = {.lex_state = 584}, - [400] = {.lex_state = 582}, - [401] = {.lex_state = 582}, - [402] = {.lex_state = 582}, - [403] = {.lex_state = 579}, - [404] = {.lex_state = 582}, - [405] = {.lex_state = 579}, - [406] = {.lex_state = 582}, - [407] = {.lex_state = 578}, - [408] = {.lex_state = 579}, - [409] = {.lex_state = 578}, - [410] = {.lex_state = 582}, - [411] = {.lex_state = 584}, - [412] = {.lex_state = 578}, - [413] = {.lex_state = 579}, - [414] = {.lex_state = 582}, - [415] = {.lex_state = 582}, - [416] = {.lex_state = 579}, - [417] = {.lex_state = 579}, - [418] = {.lex_state = 578}, - [419] = {.lex_state = 579}, - [420] = {.lex_state = 579}, - [421] = {.lex_state = 584}, + [398] = {.lex_state = 583}, + [399] = {.lex_state = 585}, + [400] = {.lex_state = 579}, + [401] = {.lex_state = 580}, + [402] = {.lex_state = 580}, + [403] = {.lex_state = 585}, + [404] = {.lex_state = 583}, + [405] = {.lex_state = 583}, + [406] = {.lex_state = 583}, + [407] = {.lex_state = 579}, + [408] = {.lex_state = 583}, + [409] = {.lex_state = 583}, + [410] = {.lex_state = 583}, + [411] = {.lex_state = 580}, + [412] = {.lex_state = 579}, + [413] = {.lex_state = 580}, + [414] = {.lex_state = 580}, + [415] = {.lex_state = 585}, + [416] = {.lex_state = 580}, + [417] = {.lex_state = 583}, + [418] = {.lex_state = 580}, + [419] = {.lex_state = 580}, + [420] = {.lex_state = 580}, + [421] = {.lex_state = 580}, [422] = {.lex_state = 579}, [423] = {.lex_state = 579}, - [424] = {.lex_state = 579}, - [425] = {.lex_state = 579}, - [426] = {.lex_state = 579}, - [427] = {.lex_state = 590}, - [428] = {.lex_state = 578}, - [429] = {.lex_state = 578}, - [430] = {.lex_state = 578}, - [431] = {.lex_state = 584}, - [432] = {.lex_state = 586}, - [433] = {.lex_state = 582}, - [434] = {.lex_state = 578}, - [435] = {.lex_state = 579}, - [436] = {.lex_state = 579}, - [437] = {.lex_state = 582}, - [438] = {.lex_state = 582}, - [439] = {.lex_state = 578}, - [440] = {.lex_state = 578}, - [441] = {.lex_state = 579}, - [442] = {.lex_state = 590}, - [443] = {.lex_state = 588}, + [424] = {.lex_state = 585}, + [425] = {.lex_state = 587}, + [426] = {.lex_state = 591}, + [427] = {.lex_state = 579}, + [428] = {.lex_state = 580}, + [429] = {.lex_state = 580}, + [430] = {.lex_state = 583}, + [431] = {.lex_state = 580}, + [432] = {.lex_state = 579}, + [433] = {.lex_state = 580}, + [434] = {.lex_state = 579}, + [435] = {.lex_state = 583}, + [436] = {.lex_state = 595}, + [437] = {.lex_state = 591}, + [438] = {.lex_state = 583}, + [439] = {.lex_state = 579}, + [440] = {.lex_state = 583}, + [441] = {.lex_state = 583}, + [442] = {.lex_state = 583}, + [443] = {.lex_state = 583}, [444] = {.lex_state = 579}, - [445] = {.lex_state = 592}, - [446] = {.lex_state = 596}, - [447] = {.lex_state = 578}, - [448] = {.lex_state = 586}, - [449] = {.lex_state = 592}, - [450] = {.lex_state = 594}, - [451] = {.lex_state = 578}, - [452] = {.lex_state = 582}, - [453] = {.lex_state = 582}, - [454] = {.lex_state = 582}, - [455] = {.lex_state = 598}, + [445] = {.lex_state = 580}, + [446] = {.lex_state = 580}, + [447] = {.lex_state = 597}, + [448] = {.lex_state = 579}, + [449] = {.lex_state = 589}, + [450] = {.lex_state = 593}, + [451] = {.lex_state = 587}, + [452] = {.lex_state = 579}, + [453] = {.lex_state = 593}, + [454] = {.lex_state = 580}, + [455] = {.lex_state = 580}, [456] = {.lex_state = 49, .external_lex_state = 2}, - [457] = {.lex_state = 49, .external_lex_state = 2}, - [458] = {.lex_state = 53, .external_lex_state = 2}, - [459] = {.lex_state = 49, .external_lex_state = 2}, - [460] = {.lex_state = 579}, - [461] = {.lex_state = 592}, - [462] = {.lex_state = 579}, - [463] = {.lex_state = 592}, - [464] = {.lex_state = 598}, - [465] = {.lex_state = 49, .external_lex_state = 2}, - [466] = {.lex_state = 578}, - [467] = {.lex_state = 594}, - [468] = {.lex_state = 49, .external_lex_state = 2}, - [469] = {.lex_state = 594}, - [470] = {.lex_state = 594}, + [457] = {.lex_state = 580}, + [458] = {.lex_state = 49, .external_lex_state = 2}, + [459] = {.lex_state = 595}, + [460] = {.lex_state = 49, .external_lex_state = 2}, + [461] = {.lex_state = 49, .external_lex_state = 2}, + [462] = {.lex_state = 53, .external_lex_state = 2}, + [463] = {.lex_state = 599}, + [464] = {.lex_state = 49, .external_lex_state = 2}, + [465] = {.lex_state = 579}, + [466] = {.lex_state = 593}, + [467] = {.lex_state = 49, .external_lex_state = 2}, + [468] = {.lex_state = 595}, + [469] = {.lex_state = 595}, + [470] = {.lex_state = 595}, [471] = {.lex_state = 49, .external_lex_state = 2}, - [472] = {.lex_state = 594}, - [473] = {.lex_state = 578}, - [474] = {.lex_state = 49, .external_lex_state = 2}, - [475] = {.lex_state = 600}, - [476] = {.lex_state = 579}, - [477] = {.lex_state = 594}, - [478] = {.lex_state = 600}, - [479] = {.lex_state = 579}, - [480] = {.lex_state = 579}, - [481] = {.lex_state = 579}, - [482] = {.lex_state = 579}, - [483] = {.lex_state = 579}, - [484] = {.lex_state = 579}, - [485] = {.lex_state = 600}, - [486] = {.lex_state = 579}, - [487] = {.lex_state = 579}, - [488] = {.lex_state = 579}, - [489] = {.lex_state = 594}, - [490] = {.lex_state = 579}, - [491] = {.lex_state = 579}, - [492] = {.lex_state = 594}, - [493] = {.lex_state = 579}, - [494] = {.lex_state = 579}, - [495] = {.lex_state = 579}, - [496] = {.lex_state = 588}, - [497] = {.lex_state = 596}, - [498] = {.lex_state = 579}, - [499] = {.lex_state = 579}, - [500] = {.lex_state = 579}, - [501] = {.lex_state = 49, .external_lex_state = 2}, - [502] = {.lex_state = 579}, + [472] = {.lex_state = 593}, + [473] = {.lex_state = 579}, + [474] = {.lex_state = 599}, + [475] = {.lex_state = 601}, + [476] = {.lex_state = 580}, + [477] = {.lex_state = 580}, + [478] = {.lex_state = 580}, + [479] = {.lex_state = 580}, + [480] = {.lex_state = 601}, + [481] = {.lex_state = 580}, + [482] = {.lex_state = 595}, + [483] = {.lex_state = 580}, + [484] = {.lex_state = 580}, + [485] = {.lex_state = 580}, + [486] = {.lex_state = 580}, + [487] = {.lex_state = 595}, + [488] = {.lex_state = 601}, + [489] = {.lex_state = 580}, + [490] = {.lex_state = 580}, + [491] = {.lex_state = 595}, + [492] = {.lex_state = 580}, + [493] = {.lex_state = 49, .external_lex_state = 2}, + [494] = {.lex_state = 580}, + [495] = {.lex_state = 580}, + [496] = {.lex_state = 580}, + [497] = {.lex_state = 580}, + [498] = {.lex_state = 589}, + [499] = {.lex_state = 580}, + [500] = {.lex_state = 580}, + [501] = {.lex_state = 580}, + [502] = {.lex_state = 597}, [503] = {.lex_state = 50, .external_lex_state = 2}, [504] = {.lex_state = 50, .external_lex_state = 2}, [505] = {.lex_state = 50, .external_lex_state = 2}, [506] = {.lex_state = 50, .external_lex_state = 2}, [507] = {.lex_state = 50, .external_lex_state = 2}, [508] = {.lex_state = 50, .external_lex_state = 2}, - [509] = {.lex_state = 50, .external_lex_state = 2}, - [510] = {.lex_state = 50, .external_lex_state = 2}, + [509] = {.lex_state = 599}, + [510] = {.lex_state = 49, .external_lex_state = 2}, [511] = {.lex_state = 50, .external_lex_state = 2}, [512] = {.lex_state = 50, .external_lex_state = 2}, [513] = {.lex_state = 50, .external_lex_state = 2}, [514] = {.lex_state = 50, .external_lex_state = 2}, - [515] = {.lex_state = 598}, - [516] = {.lex_state = 579}, - [517] = {.lex_state = 612}, + [515] = {.lex_state = 50, .external_lex_state = 2}, + [516] = {.lex_state = 50, .external_lex_state = 2}, + [517] = {.lex_state = 50, .external_lex_state = 2}, [518] = {.lex_state = 50, .external_lex_state = 2}, [519] = {.lex_state = 50, .external_lex_state = 2}, [520] = {.lex_state = 50, .external_lex_state = 2}, @@ -33703,12 +33739,12 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [522] = {.lex_state = 50, .external_lex_state = 2}, [523] = {.lex_state = 50, .external_lex_state = 2}, [524] = {.lex_state = 50, .external_lex_state = 2}, - [525] = {.lex_state = 50, .external_lex_state = 2}, - [526] = {.lex_state = 50, .external_lex_state = 2}, - [527] = {.lex_state = 50, .external_lex_state = 2}, - [528] = {.lex_state = 50, .external_lex_state = 2}, - [529] = {.lex_state = 50, .external_lex_state = 2}, - [530] = {.lex_state = 50, .external_lex_state = 2}, + [525] = {.lex_state = 580}, + [526] = {.lex_state = 49, .external_lex_state = 2}, + [527] = {.lex_state = 599}, + [528] = {.lex_state = 613}, + [529] = {.lex_state = 53, .external_lex_state = 2}, + [530] = {.lex_state = 53, .external_lex_state = 2}, [531] = {.lex_state = 50, .external_lex_state = 2}, [532] = {.lex_state = 50, .external_lex_state = 2}, [533] = {.lex_state = 50, .external_lex_state = 2}, @@ -33721,13 +33757,13 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [540] = {.lex_state = 50, .external_lex_state = 2}, [541] = {.lex_state = 50, .external_lex_state = 2}, [542] = {.lex_state = 50, .external_lex_state = 2}, - [543] = {.lex_state = 50, .external_lex_state = 2}, - [544] = {.lex_state = 600}, - [545] = {.lex_state = 600}, - [546] = {.lex_state = 598}, - [547] = {.lex_state = 579}, - [548] = {.lex_state = 53, .external_lex_state = 2}, - [549] = {.lex_state = 49, .external_lex_state = 2}, + [543] = {.lex_state = 601}, + [544] = {.lex_state = 601}, + [545] = {.lex_state = 580}, + [546] = {.lex_state = 53, .external_lex_state = 2}, + [547] = {.lex_state = 50, .external_lex_state = 2}, + [548] = {.lex_state = 50, .external_lex_state = 2}, + [549] = {.lex_state = 50, .external_lex_state = 2}, [550] = {.lex_state = 50, .external_lex_state = 2}, [551] = {.lex_state = 50, .external_lex_state = 2}, [552] = {.lex_state = 50, .external_lex_state = 2}, @@ -33793,7 +33829,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [612] = {.lex_state = 50, .external_lex_state = 2}, [613] = {.lex_state = 50, .external_lex_state = 2}, [614] = {.lex_state = 50, .external_lex_state = 2}, - [615] = {.lex_state = 49, .external_lex_state = 2}, + [615] = {.lex_state = 50, .external_lex_state = 2}, [616] = {.lex_state = 50, .external_lex_state = 2}, [617] = {.lex_state = 50, .external_lex_state = 2}, [618] = {.lex_state = 50, .external_lex_state = 2}, @@ -33845,190 +33881,190 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [664] = {.lex_state = 50, .external_lex_state = 2}, [665] = {.lex_state = 50, .external_lex_state = 2}, [666] = {.lex_state = 50, .external_lex_state = 2}, - [667] = {.lex_state = 53, .external_lex_state = 2}, - [668] = {.lex_state = 53, .external_lex_state = 2}, + [667] = {.lex_state = 50, .external_lex_state = 2}, + [668] = {.lex_state = 50, .external_lex_state = 2}, [669] = {.lex_state = 50, .external_lex_state = 2}, [670] = {.lex_state = 50, .external_lex_state = 2}, - [671] = {.lex_state = 579}, - [672] = {.lex_state = 579}, - [673] = {.lex_state = 579}, - [674] = {.lex_state = 579}, - [675] = {.lex_state = 600}, - [676] = {.lex_state = 579}, - [677] = {.lex_state = 579}, - [678] = {.lex_state = 600}, - [679] = {.lex_state = 579}, - [680] = {.lex_state = 579}, - [681] = {.lex_state = 579}, - [682] = {.lex_state = 579}, - [683] = {.lex_state = 612}, - [684] = {.lex_state = 579}, - [685] = {.lex_state = 600}, - [686] = {.lex_state = 579}, - [687] = {.lex_state = 579}, - [688] = {.lex_state = 579}, - [689] = {.lex_state = 579}, - [690] = {.lex_state = 602}, - [691] = {.lex_state = 579}, - [692] = {.lex_state = 579}, - [693] = {.lex_state = 579}, - [694] = {.lex_state = 579}, - [695] = {.lex_state = 579}, - [696] = {.lex_state = 600}, - [697] = {.lex_state = 579}, - [698] = {.lex_state = 579}, - [699] = {.lex_state = 579}, - [700] = {.lex_state = 579}, - [701] = {.lex_state = 579}, - [702] = {.lex_state = 579}, - [703] = {.lex_state = 579}, - [704] = {.lex_state = 579}, - [705] = {.lex_state = 579}, - [706] = {.lex_state = 600}, - [707] = {.lex_state = 579}, - [708] = {.lex_state = 579}, - [709] = {.lex_state = 579}, - [710] = {.lex_state = 604}, - [711] = {.lex_state = 579}, - [712] = {.lex_state = 579}, + [671] = {.lex_state = 580}, + [672] = {.lex_state = 580}, + [673] = {.lex_state = 580}, + [674] = {.lex_state = 580}, + [675] = {.lex_state = 580}, + [676] = {.lex_state = 580}, + [677] = {.lex_state = 580}, + [678] = {.lex_state = 580}, + [679] = {.lex_state = 580}, + [680] = {.lex_state = 580}, + [681] = {.lex_state = 580}, + [682] = {.lex_state = 580}, + [683] = {.lex_state = 580}, + [684] = {.lex_state = 580}, + [685] = {.lex_state = 580}, + [686] = {.lex_state = 580}, + [687] = {.lex_state = 601}, + [688] = {.lex_state = 601}, + [689] = {.lex_state = 601}, + [690] = {.lex_state = 580}, + [691] = {.lex_state = 580}, + [692] = {.lex_state = 580}, + [693] = {.lex_state = 580}, + [694] = {.lex_state = 580}, + [695] = {.lex_state = 580}, + [696] = {.lex_state = 580}, + [697] = {.lex_state = 613}, + [698] = {.lex_state = 601}, + [699] = {.lex_state = 580}, + [700] = {.lex_state = 580}, + [701] = {.lex_state = 580}, + [702] = {.lex_state = 580}, + [703] = {.lex_state = 580}, + [704] = {.lex_state = 580}, + [705] = {.lex_state = 580}, + [706] = {.lex_state = 580}, + [707] = {.lex_state = 601}, + [708] = {.lex_state = 605}, + [709] = {.lex_state = 580}, + [710] = {.lex_state = 603}, + [711] = {.lex_state = 580}, + [712] = {.lex_state = 580}, [713] = {.lex_state = 50, .external_lex_state = 2}, [714] = {.lex_state = 50, .external_lex_state = 2}, - [715] = {.lex_state = 579}, + [715] = {.lex_state = 50, .external_lex_state = 2}, [716] = {.lex_state = 50, .external_lex_state = 2}, - [717] = {.lex_state = 50, .external_lex_state = 2}, - [718] = {.lex_state = 579}, - [719] = {.lex_state = 50, .external_lex_state = 2}, - [720] = {.lex_state = 50, .external_lex_state = 2}, - [721] = {.lex_state = 49, .external_lex_state = 2}, - [722] = {.lex_state = 579}, - [723] = {.lex_state = 579}, - [724] = {.lex_state = 579}, - [725] = {.lex_state = 579}, - [726] = {.lex_state = 50, .external_lex_state = 2}, - [727] = {.lex_state = 50, .external_lex_state = 2}, - [728] = {.lex_state = 579}, - [729] = {.lex_state = 50, .external_lex_state = 2}, - [730] = {.lex_state = 579}, - [731] = {.lex_state = 50, .external_lex_state = 2}, - [732] = {.lex_state = 579}, - [733] = {.lex_state = 50, .external_lex_state = 2}, - [734] = {.lex_state = 579}, - [735] = {.lex_state = 612}, - [736] = {.lex_state = 50, .external_lex_state = 2}, - [737] = {.lex_state = 579}, - [738] = {.lex_state = 50, .external_lex_state = 2}, - [739] = {.lex_state = 579}, - [740] = {.lex_state = 50, .external_lex_state = 2}, - [741] = {.lex_state = 579}, - [742] = {.lex_state = 50, .external_lex_state = 2}, - [743] = {.lex_state = 579}, - [744] = {.lex_state = 50, .external_lex_state = 2}, - [745] = {.lex_state = 579}, - [746] = {.lex_state = 50, .external_lex_state = 2}, - [747] = {.lex_state = 579}, - [748] = {.lex_state = 50, .external_lex_state = 2}, - [749] = {.lex_state = 50, .external_lex_state = 2}, - [750] = {.lex_state = 49, .external_lex_state = 2}, - [751] = {.lex_state = 45, .external_lex_state = 2}, - [752] = {.lex_state = 50, .external_lex_state = 2}, - [753] = {.lex_state = 50, .external_lex_state = 2}, - [754] = {.lex_state = 579}, - [755] = {.lex_state = 604}, + [717] = {.lex_state = 580}, + [718] = {.lex_state = 580}, + [719] = {.lex_state = 49, .external_lex_state = 2}, + [720] = {.lex_state = 49, .external_lex_state = 2}, + [721] = {.lex_state = 580}, + [722] = {.lex_state = 580}, + [723] = {.lex_state = 580}, + [724] = {.lex_state = 580}, + [725] = {.lex_state = 580}, + [726] = {.lex_state = 613}, + [727] = {.lex_state = 580}, + [728] = {.lex_state = 580}, + [729] = {.lex_state = 580}, + [730] = {.lex_state = 45, .external_lex_state = 2}, + [731] = {.lex_state = 580}, + [732] = {.lex_state = 580}, + [733] = {.lex_state = 580}, + [734] = {.lex_state = 580}, + [735] = {.lex_state = 580}, + [736] = {.lex_state = 580}, + [737] = {.lex_state = 580}, + [738] = {.lex_state = 580}, + [739] = {.lex_state = 580}, + [740] = {.lex_state = 580}, + [741] = {.lex_state = 49, .external_lex_state = 2}, + [742] = {.lex_state = 605}, + [743] = {.lex_state = 580}, + [744] = {.lex_state = 580}, + [745] = {.lex_state = 580}, + [746] = {.lex_state = 580}, + [747] = {.lex_state = 603}, + [748] = {.lex_state = 49, .external_lex_state = 2}, + [749] = {.lex_state = 49, .external_lex_state = 2}, + [750] = {.lex_state = 607}, + [751] = {.lex_state = 607}, + [752] = {.lex_state = 580}, + [753] = {.lex_state = 45, .external_lex_state = 2}, + [754] = {.lex_state = 50, .external_lex_state = 2}, + [755] = {.lex_state = 50, .external_lex_state = 2}, [756] = {.lex_state = 50, .external_lex_state = 2}, [757] = {.lex_state = 50, .external_lex_state = 2}, [758] = {.lex_state = 50, .external_lex_state = 2}, [759] = {.lex_state = 50, .external_lex_state = 2}, - [760] = {.lex_state = 579}, - [761] = {.lex_state = 49, .external_lex_state = 2}, - [762] = {.lex_state = 579}, - [763] = {.lex_state = 579}, - [764] = {.lex_state = 579}, - [765] = {.lex_state = 579}, - [766] = {.lex_state = 602}, - [767] = {.lex_state = 579}, - [768] = {.lex_state = 579}, - [769] = {.lex_state = 606}, - [770] = {.lex_state = 579}, - [771] = {.lex_state = 606}, - [772] = {.lex_state = 579}, - [773] = {.lex_state = 579}, - [774] = {.lex_state = 579}, - [775] = {.lex_state = 579}, - [776] = {.lex_state = 579}, - [777] = {.lex_state = 579}, - [778] = {.lex_state = 579}, - [779] = {.lex_state = 579}, - [780] = {.lex_state = 579}, - [781] = {.lex_state = 579}, - [782] = {.lex_state = 579}, - [783] = {.lex_state = 579}, - [784] = {.lex_state = 579}, + [760] = {.lex_state = 50, .external_lex_state = 2}, + [761] = {.lex_state = 50, .external_lex_state = 2}, + [762] = {.lex_state = 50, .external_lex_state = 2}, + [763] = {.lex_state = 50, .external_lex_state = 2}, + [764] = {.lex_state = 50, .external_lex_state = 2}, + [765] = {.lex_state = 50, .external_lex_state = 2}, + [766] = {.lex_state = 50, .external_lex_state = 2}, + [767] = {.lex_state = 580}, + [768] = {.lex_state = 609}, + [769] = {.lex_state = 580}, + [770] = {.lex_state = 580}, + [771] = {.lex_state = 580}, + [772] = {.lex_state = 580}, + [773] = {.lex_state = 49, .external_lex_state = 2}, + [774] = {.lex_state = 580}, + [775] = {.lex_state = 50, .external_lex_state = 2}, + [776] = {.lex_state = 50, .external_lex_state = 2}, + [777] = {.lex_state = 50, .external_lex_state = 2}, + [778] = {.lex_state = 50, .external_lex_state = 2}, + [779] = {.lex_state = 50, .external_lex_state = 2}, + [780] = {.lex_state = 50, .external_lex_state = 2}, + [781] = {.lex_state = 50, .external_lex_state = 2}, + [782] = {.lex_state = 50, .external_lex_state = 2}, + [783] = {.lex_state = 50, .external_lex_state = 2}, + [784] = {.lex_state = 50, .external_lex_state = 2}, [785] = {.lex_state = 50, .external_lex_state = 2}, [786] = {.lex_state = 50, .external_lex_state = 2}, [787] = {.lex_state = 50, .external_lex_state = 2}, - [788] = {.lex_state = 50, .external_lex_state = 2}, - [789] = {.lex_state = 50, .external_lex_state = 2}, + [788] = {.lex_state = 580}, + [789] = {.lex_state = 45, .external_lex_state = 2}, [790] = {.lex_state = 50, .external_lex_state = 2}, - [791] = {.lex_state = 50, .external_lex_state = 2}, - [792] = {.lex_state = 50, .external_lex_state = 2}, - [793] = {.lex_state = 50, .external_lex_state = 2}, + [791] = {.lex_state = 580}, + [792] = {.lex_state = 580}, + [793] = {.lex_state = 580}, [794] = {.lex_state = 50, .external_lex_state = 2}, - [795] = {.lex_state = 50, .external_lex_state = 2}, - [796] = {.lex_state = 50, .external_lex_state = 2}, - [797] = {.lex_state = 50, .external_lex_state = 2}, - [798] = {.lex_state = 579}, - [799] = {.lex_state = 45, .external_lex_state = 2}, - [800] = {.lex_state = 579}, - [801] = {.lex_state = 579}, - [802] = {.lex_state = 579}, - [803] = {.lex_state = 608}, - [804] = {.lex_state = 579}, - [805] = {.lex_state = 579}, - [806] = {.lex_state = 579}, - [807] = {.lex_state = 579}, + [795] = {.lex_state = 580}, + [796] = {.lex_state = 580}, + [797] = {.lex_state = 580}, + [798] = {.lex_state = 50, .external_lex_state = 2}, + [799] = {.lex_state = 580}, + [800] = {.lex_state = 580}, + [801] = {.lex_state = 580}, + [802] = {.lex_state = 580}, + [803] = {.lex_state = 50, .external_lex_state = 2}, + [804] = {.lex_state = 50, .external_lex_state = 2}, + [805] = {.lex_state = 50, .external_lex_state = 2}, + [806] = {.lex_state = 50, .external_lex_state = 2}, + [807] = {.lex_state = 50, .external_lex_state = 2}, [808] = {.lex_state = 50, .external_lex_state = 2}, - [809] = {.lex_state = 579}, - [810] = {.lex_state = 579}, - [811] = {.lex_state = 579}, - [812] = {.lex_state = 579}, - [813] = {.lex_state = 579}, - [814] = {.lex_state = 579}, - [815] = {.lex_state = 579}, - [816] = {.lex_state = 579}, - [817] = {.lex_state = 579}, - [818] = {.lex_state = 579}, - [819] = {.lex_state = 579}, - [820] = {.lex_state = 579}, - [821] = {.lex_state = 49, .external_lex_state = 2}, - [822] = {.lex_state = 49, .external_lex_state = 2}, - [823] = {.lex_state = 49, .external_lex_state = 2}, - [824] = {.lex_state = 579}, - [825] = {.lex_state = 579}, - [826] = {.lex_state = 50, .external_lex_state = 2}, - [827] = {.lex_state = 50, .external_lex_state = 2}, - [828] = {.lex_state = 50, .external_lex_state = 2}, - [829] = {.lex_state = 50, .external_lex_state = 2}, + [809] = {.lex_state = 50, .external_lex_state = 2}, + [810] = {.lex_state = 50, .external_lex_state = 2}, + [811] = {.lex_state = 50, .external_lex_state = 2}, + [812] = {.lex_state = 50, .external_lex_state = 2}, + [813] = {.lex_state = 50, .external_lex_state = 2}, + [814] = {.lex_state = 50, .external_lex_state = 2}, + [815] = {.lex_state = 50, .external_lex_state = 2}, + [816] = {.lex_state = 580}, + [817] = {.lex_state = 580}, + [818] = {.lex_state = 580}, + [819] = {.lex_state = 580}, + [820] = {.lex_state = 580}, + [821] = {.lex_state = 580}, + [822] = {.lex_state = 580}, + [823] = {.lex_state = 580}, + [824] = {.lex_state = 580}, + [825] = {.lex_state = 580}, + [826] = {.lex_state = 580}, + [827] = {.lex_state = 580}, + [828] = {.lex_state = 580}, + [829] = {.lex_state = 580}, [830] = {.lex_state = 50, .external_lex_state = 2}, [831] = {.lex_state = 50, .external_lex_state = 2}, [832] = {.lex_state = 50, .external_lex_state = 2}, - [833] = {.lex_state = 50, .external_lex_state = 2}, + [833] = {.lex_state = 580}, [834] = {.lex_state = 50, .external_lex_state = 2}, [835] = {.lex_state = 50, .external_lex_state = 2}, [836] = {.lex_state = 50, .external_lex_state = 2}, - [837] = {.lex_state = 50, .external_lex_state = 2}, - [838] = {.lex_state = 50, .external_lex_state = 2}, - [839] = {.lex_state = 579}, - [840] = {.lex_state = 579}, - [841] = {.lex_state = 579}, - [842] = {.lex_state = 579}, - [843] = {.lex_state = 579}, - [844] = {.lex_state = 579}, - [845] = {.lex_state = 579}, - [846] = {.lex_state = 579}, - [847] = {.lex_state = 579}, - [848] = {.lex_state = 579}, - [849] = {.lex_state = 579}, - [850] = {.lex_state = 579}, + [837] = {.lex_state = 580}, + [838] = {.lex_state = 580}, + [839] = {.lex_state = 580}, + [840] = {.lex_state = 580}, + [841] = {.lex_state = 580}, + [842] = {.lex_state = 50, .external_lex_state = 2}, + [843] = {.lex_state = 50, .external_lex_state = 2}, + [844] = {.lex_state = 50, .external_lex_state = 2}, + [845] = {.lex_state = 50, .external_lex_state = 2}, + [846] = {.lex_state = 580}, + [847] = {.lex_state = 580}, + [848] = {.lex_state = 580}, + [849] = {.lex_state = 580}, + [850] = {.lex_state = 580}, [851] = {.lex_state = 50, .external_lex_state = 2}, [852] = {.lex_state = 50, .external_lex_state = 2}, [853] = {.lex_state = 50, .external_lex_state = 2}, @@ -34042,1302 +34078,1302 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [861] = {.lex_state = 50, .external_lex_state = 2}, [862] = {.lex_state = 50, .external_lex_state = 2}, [863] = {.lex_state = 50, .external_lex_state = 2}, - [864] = {.lex_state = 579}, - [865] = {.lex_state = 579}, - [866] = {.lex_state = 579}, - [867] = {.lex_state = 579}, - [868] = {.lex_state = 579}, - [869] = {.lex_state = 579}, - [870] = {.lex_state = 579}, - [871] = {.lex_state = 50, .external_lex_state = 2}, - [872] = {.lex_state = 50, .external_lex_state = 2}, - [873] = {.lex_state = 50, .external_lex_state = 2}, + [864] = {.lex_state = 580}, + [865] = {.lex_state = 580}, + [866] = {.lex_state = 580}, + [867] = {.lex_state = 580}, + [868] = {.lex_state = 580}, + [869] = {.lex_state = 580}, + [870] = {.lex_state = 580}, + [871] = {.lex_state = 580}, + [872] = {.lex_state = 580}, + [873] = {.lex_state = 580}, [874] = {.lex_state = 50, .external_lex_state = 2}, - [875] = {.lex_state = 50, .external_lex_state = 2}, - [876] = {.lex_state = 50, .external_lex_state = 2}, - [877] = {.lex_state = 50, .external_lex_state = 2}, - [878] = {.lex_state = 50, .external_lex_state = 2}, - [879] = {.lex_state = 50, .external_lex_state = 2}, - [880] = {.lex_state = 50, .external_lex_state = 2}, - [881] = {.lex_state = 50, .external_lex_state = 2}, - [882] = {.lex_state = 50, .external_lex_state = 2}, - [883] = {.lex_state = 50, .external_lex_state = 2}, - [884] = {.lex_state = 579}, - [885] = {.lex_state = 579}, - [886] = {.lex_state = 579}, - [887] = {.lex_state = 579}, - [888] = {.lex_state = 579}, - [889] = {.lex_state = 579}, - [890] = {.lex_state = 579}, - [891] = {.lex_state = 579}, - [892] = {.lex_state = 579}, - [893] = {.lex_state = 45, .external_lex_state = 2}, - [894] = {.lex_state = 579}, - [895] = {.lex_state = 579}, - [896] = {.lex_state = 579}, - [897] = {.lex_state = 579}, - [898] = {.lex_state = 579}, - [899] = {.lex_state = 608}, - [900] = {.lex_state = 579}, - [901] = {.lex_state = 45, .external_lex_state = 2}, - [902] = {.lex_state = 579}, - [903] = {.lex_state = 608}, - [904] = {.lex_state = 579}, - [905] = {.lex_state = 55, .external_lex_state = 2}, - [906] = {.lex_state = 579}, - [907] = {.lex_state = 579}, - [908] = {.lex_state = 45, .external_lex_state = 2}, - [909] = {.lex_state = 579}, - [910] = {.lex_state = 55, .external_lex_state = 2}, - [911] = {.lex_state = 579}, - [912] = {.lex_state = 579}, - [913] = {.lex_state = 579}, - [914] = {.lex_state = 608}, - [915] = {.lex_state = 579}, - [916] = {.lex_state = 579}, - [917] = {.lex_state = 579}, - [918] = {.lex_state = 608}, - [919] = {.lex_state = 579}, - [920] = {.lex_state = 608}, - [921] = {.lex_state = 579}, - [922] = {.lex_state = 579}, - [923] = {.lex_state = 608}, - [924] = {.lex_state = 579}, - [925] = {.lex_state = 579}, - [926] = {.lex_state = 579}, - [927] = {.lex_state = 579}, - [928] = {.lex_state = 579}, - [929] = {.lex_state = 579}, - [930] = {.lex_state = 579}, - [931] = {.lex_state = 579}, - [932] = {.lex_state = 606}, - [933] = {.lex_state = 579}, - [934] = {.lex_state = 579}, - [935] = {.lex_state = 579}, - [936] = {.lex_state = 579}, - [937] = {.lex_state = 579}, - [938] = {.lex_state = 579}, - [939] = {.lex_state = 55, .external_lex_state = 2}, - [940] = {.lex_state = 579}, - [941] = {.lex_state = 579}, - [942] = {.lex_state = 579}, - [943] = {.lex_state = 579}, - [944] = {.lex_state = 608}, - [945] = {.lex_state = 579}, - [946] = {.lex_state = 579}, - [947] = {.lex_state = 579}, - [948] = {.lex_state = 579}, - [949] = {.lex_state = 608}, - [950] = {.lex_state = 579}, - [951] = {.lex_state = 608}, - [952] = {.lex_state = 579}, - [953] = {.lex_state = 608}, - [954] = {.lex_state = 606}, - [955] = {.lex_state = 608}, - [956] = {.lex_state = 608}, - [957] = {.lex_state = 579}, - [958] = {.lex_state = 579}, - [959] = {.lex_state = 579}, - [960] = {.lex_state = 579}, - [961] = {.lex_state = 579}, - [962] = {.lex_state = 579}, - [963] = {.lex_state = 579}, - [964] = {.lex_state = 38, .external_lex_state = 2}, - [965] = {.lex_state = 623, .external_lex_state = 2}, - [966] = {.lex_state = 608}, - [967] = {.lex_state = 579}, - [968] = {.lex_state = 608}, - [969] = {.lex_state = 608}, - [970] = {.lex_state = 608}, - [971] = {.lex_state = 608}, - [972] = {.lex_state = 579}, - [973] = {.lex_state = 579}, - [974] = {.lex_state = 579}, - [975] = {.lex_state = 55, .external_lex_state = 2}, - [976] = {.lex_state = 55, .external_lex_state = 2}, - [977] = {.lex_state = 579}, - [978] = {.lex_state = 38, .external_lex_state = 2}, - [979] = {.lex_state = 579}, - [980] = {.lex_state = 610}, - [981] = {.lex_state = 579}, - [982] = {.lex_state = 579}, - [983] = {.lex_state = 579}, - [984] = {.lex_state = 579}, - [985] = {.lex_state = 579}, - [986] = {.lex_state = 579}, - [987] = {.lex_state = 579}, - [988] = {.lex_state = 610}, - [989] = {.lex_state = 579}, - [990] = {.lex_state = 612}, - [991] = {.lex_state = 579}, - [992] = {.lex_state = 579}, - [993] = {.lex_state = 579}, - [994] = {.lex_state = 579}, - [995] = {.lex_state = 579}, - [996] = {.lex_state = 579}, - [997] = {.lex_state = 623, .external_lex_state = 2}, - [998] = {.lex_state = 579}, - [999] = {.lex_state = 579}, - [1000] = {.lex_state = 579}, - [1001] = {.lex_state = 579}, - [1002] = {.lex_state = 610}, - [1003] = {.lex_state = 579}, - [1004] = {.lex_state = 579}, - [1005] = {.lex_state = 579}, - [1006] = {.lex_state = 608}, - [1007] = {.lex_state = 579}, - [1008] = {.lex_state = 579}, - [1009] = {.lex_state = 579}, - [1010] = {.lex_state = 579}, - [1011] = {.lex_state = 579}, - [1012] = {.lex_state = 579}, - [1013] = {.lex_state = 579}, - [1014] = {.lex_state = 579}, - [1015] = {.lex_state = 608}, - [1016] = {.lex_state = 579}, - [1017] = {.lex_state = 610}, - [1018] = {.lex_state = 579}, - [1019] = {.lex_state = 579}, - [1020] = {.lex_state = 579}, - [1021] = {.lex_state = 579}, - [1022] = {.lex_state = 579}, - [1023] = {.lex_state = 579}, - [1024] = {.lex_state = 579}, - [1025] = {.lex_state = 579}, - [1026] = {.lex_state = 579}, - [1027] = {.lex_state = 579}, - [1028] = {.lex_state = 579}, - [1029] = {.lex_state = 579}, - [1030] = {.lex_state = 579}, - [1031] = {.lex_state = 579}, - [1032] = {.lex_state = 579}, - [1033] = {.lex_state = 579}, - [1034] = {.lex_state = 579}, - [1035] = {.lex_state = 579}, - [1036] = {.lex_state = 579}, - [1037] = {.lex_state = 579}, - [1038] = {.lex_state = 579}, - [1039] = {.lex_state = 579}, - [1040] = {.lex_state = 579}, - [1041] = {.lex_state = 45, .external_lex_state = 2}, - [1042] = {.lex_state = 579}, - [1043] = {.lex_state = 579}, - [1044] = {.lex_state = 579}, - [1045] = {.lex_state = 579}, - [1046] = {.lex_state = 579}, - [1047] = {.lex_state = 45, .external_lex_state = 2}, - [1048] = {.lex_state = 579}, - [1049] = {.lex_state = 579}, - [1050] = {.lex_state = 579}, - [1051] = {.lex_state = 579}, - [1052] = {.lex_state = 579}, - [1053] = {.lex_state = 579}, - [1054] = {.lex_state = 608}, - [1055] = {.lex_state = 579}, - [1056] = {.lex_state = 579}, - [1057] = {.lex_state = 579}, - [1058] = {.lex_state = 579}, - [1059] = {.lex_state = 579}, - [1060] = {.lex_state = 45, .external_lex_state = 2}, - [1061] = {.lex_state = 579}, - [1062] = {.lex_state = 579}, - [1063] = {.lex_state = 579}, - [1064] = {.lex_state = 45, .external_lex_state = 2}, - [1065] = {.lex_state = 579}, - [1066] = {.lex_state = 579}, - [1067] = {.lex_state = 579}, - [1068] = {.lex_state = 579}, - [1069] = {.lex_state = 38, .external_lex_state = 2}, - [1070] = {.lex_state = 50, .external_lex_state = 2}, - [1071] = {.lex_state = 579}, - [1072] = {.lex_state = 50, .external_lex_state = 2}, - [1073] = {.lex_state = 50, .external_lex_state = 2}, - [1074] = {.lex_state = 579}, - [1075] = {.lex_state = 579}, - [1076] = {.lex_state = 579}, - [1077] = {.lex_state = 579}, - [1078] = {.lex_state = 579}, - [1079] = {.lex_state = 579}, - [1080] = {.lex_state = 579}, - [1081] = {.lex_state = 579}, - [1082] = {.lex_state = 579}, - [1083] = {.lex_state = 50, .external_lex_state = 2}, - [1084] = {.lex_state = 579}, - [1085] = {.lex_state = 579}, - [1086] = {.lex_state = 608}, - [1087] = {.lex_state = 579}, - [1088] = {.lex_state = 50, .external_lex_state = 2}, - [1089] = {.lex_state = 608}, - [1090] = {.lex_state = 579}, - [1091] = {.lex_state = 50, .external_lex_state = 2}, - [1092] = {.lex_state = 579}, - [1093] = {.lex_state = 579}, - [1094] = {.lex_state = 579}, - [1095] = {.lex_state = 579}, - [1096] = {.lex_state = 579}, - [1097] = {.lex_state = 579}, - [1098] = {.lex_state = 579}, - [1099] = {.lex_state = 579}, - [1100] = {.lex_state = 579}, - [1101] = {.lex_state = 579}, - [1102] = {.lex_state = 579}, - [1103] = {.lex_state = 579}, - [1104] = {.lex_state = 579}, - [1105] = {.lex_state = 579}, - [1106] = {.lex_state = 579}, - [1107] = {.lex_state = 608}, - [1108] = {.lex_state = 579}, - [1109] = {.lex_state = 579}, - [1110] = {.lex_state = 608}, - [1111] = {.lex_state = 579}, - [1112] = {.lex_state = 579}, - [1113] = {.lex_state = 579}, - [1114] = {.lex_state = 579}, - [1115] = {.lex_state = 579}, - [1116] = {.lex_state = 608}, - [1117] = {.lex_state = 623, .external_lex_state = 2}, - [1118] = {.lex_state = 608}, - [1119] = {.lex_state = 579}, - [1120] = {.lex_state = 579}, - [1121] = {.lex_state = 579}, - [1122] = {.lex_state = 579}, - [1123] = {.lex_state = 579}, - [1124] = {.lex_state = 579}, - [1125] = {.lex_state = 579}, - [1126] = {.lex_state = 579}, - [1127] = {.lex_state = 579}, - [1128] = {.lex_state = 579}, - [1129] = {.lex_state = 579}, - [1130] = {.lex_state = 579}, - [1131] = {.lex_state = 579}, - [1132] = {.lex_state = 579}, - [1133] = {.lex_state = 579}, - [1134] = {.lex_state = 579}, - [1135] = {.lex_state = 579}, - [1136] = {.lex_state = 579}, - [1137] = {.lex_state = 579}, - [1138] = {.lex_state = 579}, - [1139] = {.lex_state = 579}, - [1140] = {.lex_state = 579}, - [1141] = {.lex_state = 579}, - [1142] = {.lex_state = 579}, - [1143] = {.lex_state = 579}, - [1144] = {.lex_state = 579}, - [1145] = {.lex_state = 579}, - [1146] = {.lex_state = 579}, - [1147] = {.lex_state = 579}, - [1148] = {.lex_state = 579}, - [1149] = {.lex_state = 579}, - [1150] = {.lex_state = 579}, - [1151] = {.lex_state = 579}, - [1152] = {.lex_state = 579}, - [1153] = {.lex_state = 579}, - [1154] = {.lex_state = 579}, - [1155] = {.lex_state = 579}, - [1156] = {.lex_state = 579}, - [1157] = {.lex_state = 55, .external_lex_state = 2}, - [1158] = {.lex_state = 579}, - [1159] = {.lex_state = 579}, - [1160] = {.lex_state = 579}, - [1161] = {.lex_state = 579}, - [1162] = {.lex_state = 55, .external_lex_state = 2}, - [1163] = {.lex_state = 579}, - [1164] = {.lex_state = 579}, - [1165] = {.lex_state = 579}, - [1166] = {.lex_state = 579}, - [1167] = {.lex_state = 610}, - [1168] = {.lex_state = 579}, - [1169] = {.lex_state = 579}, - [1170] = {.lex_state = 55, .external_lex_state = 2}, - [1171] = {.lex_state = 579}, - [1172] = {.lex_state = 579}, - [1173] = {.lex_state = 579}, - [1174] = {.lex_state = 579}, - [1175] = {.lex_state = 579}, - [1176] = {.lex_state = 579}, - [1177] = {.lex_state = 579}, - [1178] = {.lex_state = 579}, - [1179] = {.lex_state = 579}, - [1180] = {.lex_state = 579}, - [1181] = {.lex_state = 579}, - [1182] = {.lex_state = 625, .external_lex_state = 2}, - [1183] = {.lex_state = 579}, - [1184] = {.lex_state = 579}, - [1185] = {.lex_state = 579}, - [1186] = {.lex_state = 579}, - [1187] = {.lex_state = 579}, - [1188] = {.lex_state = 579}, - [1189] = {.lex_state = 579}, - [1190] = {.lex_state = 579}, - [1191] = {.lex_state = 579}, - [1192] = {.lex_state = 579}, - [1193] = {.lex_state = 579}, - [1194] = {.lex_state = 579}, - [1195] = {.lex_state = 579}, - [1196] = {.lex_state = 579}, - [1197] = {.lex_state = 579}, - [1198] = {.lex_state = 579}, - [1199] = {.lex_state = 579}, - [1200] = {.lex_state = 579}, - [1201] = {.lex_state = 37, .external_lex_state = 2}, - [1202] = {.lex_state = 579}, - [1203] = {.lex_state = 579}, - [1204] = {.lex_state = 579}, - [1205] = {.lex_state = 579}, - [1206] = {.lex_state = 579}, - [1207] = {.lex_state = 579}, - [1208] = {.lex_state = 579}, - [1209] = {.lex_state = 579}, - [1210] = {.lex_state = 579}, - [1211] = {.lex_state = 579}, - [1212] = {.lex_state = 579}, - [1213] = {.lex_state = 579}, - [1214] = {.lex_state = 579}, - [1215] = {.lex_state = 579}, - [1216] = {.lex_state = 579}, - [1217] = {.lex_state = 579}, - [1218] = {.lex_state = 579}, - [1219] = {.lex_state = 579}, - [1220] = {.lex_state = 579}, - [1221] = {.lex_state = 37, .external_lex_state = 2}, - [1222] = {.lex_state = 579}, - [1223] = {.lex_state = 579}, - [1224] = {.lex_state = 579}, - [1225] = {.lex_state = 55, .external_lex_state = 2}, - [1226] = {.lex_state = 579}, - [1227] = {.lex_state = 579}, - [1228] = {.lex_state = 610}, - [1229] = {.lex_state = 37, .external_lex_state = 2}, - [1230] = {.lex_state = 579}, - [1231] = {.lex_state = 579}, - [1232] = {.lex_state = 610}, - [1233] = {.lex_state = 579}, - [1234] = {.lex_state = 610}, - [1235] = {.lex_state = 579}, - [1236] = {.lex_state = 579}, - [1237] = {.lex_state = 579}, - [1238] = {.lex_state = 579}, - [1239] = {.lex_state = 608}, - [1240] = {.lex_state = 579}, - [1241] = {.lex_state = 610}, - [1242] = {.lex_state = 579}, - [1243] = {.lex_state = 579}, - [1244] = {.lex_state = 579}, - [1245] = {.lex_state = 579}, - [1246] = {.lex_state = 579}, - [1247] = {.lex_state = 579}, - [1248] = {.lex_state = 579}, - [1249] = {.lex_state = 579}, - [1250] = {.lex_state = 579}, - [1251] = {.lex_state = 579}, - [1252] = {.lex_state = 579}, - [1253] = {.lex_state = 579}, - [1254] = {.lex_state = 579}, - [1255] = {.lex_state = 579}, - [1256] = {.lex_state = 55, .external_lex_state = 2}, - [1257] = {.lex_state = 55, .external_lex_state = 2}, - [1258] = {.lex_state = 55, .external_lex_state = 2}, - [1259] = {.lex_state = 37, .external_lex_state = 2}, - [1260] = {.lex_state = 579}, - [1261] = {.lex_state = 579}, - [1262] = {.lex_state = 579}, - [1263] = {.lex_state = 579}, - [1264] = {.lex_state = 623, .external_lex_state = 2}, - [1265] = {.lex_state = 579}, - [1266] = {.lex_state = 579}, - [1267] = {.lex_state = 579}, - [1268] = {.lex_state = 579}, - [1269] = {.lex_state = 579}, - [1270] = {.lex_state = 579}, - [1271] = {.lex_state = 579}, - [1272] = {.lex_state = 579}, - [1273] = {.lex_state = 623, .external_lex_state = 2}, - [1274] = {.lex_state = 579}, - [1275] = {.lex_state = 579}, - [1276] = {.lex_state = 579}, - [1277] = {.lex_state = 579}, - [1278] = {.lex_state = 579}, - [1279] = {.lex_state = 579}, - [1280] = {.lex_state = 579}, - [1281] = {.lex_state = 579}, - [1282] = {.lex_state = 579}, - [1283] = {.lex_state = 579}, - [1284] = {.lex_state = 579}, - [1285] = {.lex_state = 579}, - [1286] = {.lex_state = 579}, - [1287] = {.lex_state = 579}, - [1288] = {.lex_state = 579}, - [1289] = {.lex_state = 579}, - [1290] = {.lex_state = 579}, - [1291] = {.lex_state = 579}, - [1292] = {.lex_state = 579}, - [1293] = {.lex_state = 579}, - [1294] = {.lex_state = 579}, - [1295] = {.lex_state = 579}, - [1296] = {.lex_state = 579}, - [1297] = {.lex_state = 579}, - [1298] = {.lex_state = 579}, - [1299] = {.lex_state = 579}, - [1300] = {.lex_state = 54, .external_lex_state = 2}, - [1301] = {.lex_state = 579}, - [1302] = {.lex_state = 579}, - [1303] = {.lex_state = 579}, - [1304] = {.lex_state = 579}, - [1305] = {.lex_state = 579}, - [1306] = {.lex_state = 579}, - [1307] = {.lex_state = 579}, - [1308] = {.lex_state = 579}, - [1309] = {.lex_state = 579}, - [1310] = {.lex_state = 579}, - [1311] = {.lex_state = 579}, - [1312] = {.lex_state = 579}, - [1313] = {.lex_state = 579}, - [1314] = {.lex_state = 579}, - [1315] = {.lex_state = 579}, - [1316] = {.lex_state = 579}, - [1317] = {.lex_state = 54, .external_lex_state = 2}, - [1318] = {.lex_state = 579}, - [1319] = {.lex_state = 579}, - [1320] = {.lex_state = 579}, - [1321] = {.lex_state = 579}, - [1322] = {.lex_state = 579}, - [1323] = {.lex_state = 579}, - [1324] = {.lex_state = 579}, - [1325] = {.lex_state = 579}, - [1326] = {.lex_state = 579}, - [1327] = {.lex_state = 579}, - [1328] = {.lex_state = 579}, - [1329] = {.lex_state = 579}, - [1330] = {.lex_state = 579}, - [1331] = {.lex_state = 579}, + [875] = {.lex_state = 580}, + [876] = {.lex_state = 580}, + [877] = {.lex_state = 580}, + [878] = {.lex_state = 580}, + [879] = {.lex_state = 580}, + [880] = {.lex_state = 580}, + [881] = {.lex_state = 580}, + [882] = {.lex_state = 580}, + [883] = {.lex_state = 580}, + [884] = {.lex_state = 50, .external_lex_state = 2}, + [885] = {.lex_state = 50, .external_lex_state = 2}, + [886] = {.lex_state = 580}, + [887] = {.lex_state = 50, .external_lex_state = 2}, + [888] = {.lex_state = 580}, + [889] = {.lex_state = 50, .external_lex_state = 2}, + [890] = {.lex_state = 50, .external_lex_state = 2}, + [891] = {.lex_state = 50, .external_lex_state = 2}, + [892] = {.lex_state = 50, .external_lex_state = 2}, + [893] = {.lex_state = 50, .external_lex_state = 2}, + [894] = {.lex_state = 580}, + [895] = {.lex_state = 580}, + [896] = {.lex_state = 580}, + [897] = {.lex_state = 580}, + [898] = {.lex_state = 580}, + [899] = {.lex_state = 580}, + [900] = {.lex_state = 580}, + [901] = {.lex_state = 580}, + [902] = {.lex_state = 580}, + [903] = {.lex_state = 609}, + [904] = {.lex_state = 580}, + [905] = {.lex_state = 580}, + [906] = {.lex_state = 580}, + [907] = {.lex_state = 609}, + [908] = {.lex_state = 580}, + [909] = {.lex_state = 580}, + [910] = {.lex_state = 580}, + [911] = {.lex_state = 580}, + [912] = {.lex_state = 580}, + [913] = {.lex_state = 580}, + [914] = {.lex_state = 609}, + [915] = {.lex_state = 609}, + [916] = {.lex_state = 580}, + [917] = {.lex_state = 55, .external_lex_state = 2}, + [918] = {.lex_state = 580}, + [919] = {.lex_state = 609}, + [920] = {.lex_state = 580}, + [921] = {.lex_state = 607}, + [922] = {.lex_state = 609}, + [923] = {.lex_state = 609}, + [924] = {.lex_state = 609}, + [925] = {.lex_state = 45, .external_lex_state = 2}, + [926] = {.lex_state = 580}, + [927] = {.lex_state = 609}, + [928] = {.lex_state = 45, .external_lex_state = 2}, + [929] = {.lex_state = 580}, + [930] = {.lex_state = 580}, + [931] = {.lex_state = 580}, + [932] = {.lex_state = 580}, + [933] = {.lex_state = 580}, + [934] = {.lex_state = 580}, + [935] = {.lex_state = 580}, + [936] = {.lex_state = 580}, + [937] = {.lex_state = 580}, + [938] = {.lex_state = 580}, + [939] = {.lex_state = 580}, + [940] = {.lex_state = 609}, + [941] = {.lex_state = 580}, + [942] = {.lex_state = 580}, + [943] = {.lex_state = 580}, + [944] = {.lex_state = 580}, + [945] = {.lex_state = 607}, + [946] = {.lex_state = 580}, + [947] = {.lex_state = 580}, + [948] = {.lex_state = 580}, + [949] = {.lex_state = 609}, + [950] = {.lex_state = 580}, + [951] = {.lex_state = 580}, + [952] = {.lex_state = 580}, + [953] = {.lex_state = 580}, + [954] = {.lex_state = 580}, + [955] = {.lex_state = 580}, + [956] = {.lex_state = 580}, + [957] = {.lex_state = 580}, + [958] = {.lex_state = 580}, + [959] = {.lex_state = 580}, + [960] = {.lex_state = 580}, + [961] = {.lex_state = 55, .external_lex_state = 2}, + [962] = {.lex_state = 55, .external_lex_state = 2}, + [963] = {.lex_state = 609}, + [964] = {.lex_state = 580}, + [965] = {.lex_state = 580}, + [966] = {.lex_state = 580}, + [967] = {.lex_state = 580}, + [968] = {.lex_state = 580}, + [969] = {.lex_state = 580}, + [970] = {.lex_state = 580}, + [971] = {.lex_state = 580}, + [972] = {.lex_state = 580}, + [973] = {.lex_state = 580}, + [974] = {.lex_state = 580}, + [975] = {.lex_state = 580}, + [976] = {.lex_state = 580}, + [977] = {.lex_state = 580}, + [978] = {.lex_state = 580}, + [979] = {.lex_state = 580}, + [980] = {.lex_state = 580}, + [981] = {.lex_state = 580}, + [982] = {.lex_state = 580}, + [983] = {.lex_state = 580}, + [984] = {.lex_state = 580}, + [985] = {.lex_state = 609}, + [986] = {.lex_state = 609}, + [987] = {.lex_state = 609}, + [988] = {.lex_state = 580}, + [989] = {.lex_state = 609}, + [990] = {.lex_state = 609}, + [991] = {.lex_state = 609}, + [992] = {.lex_state = 609}, + [993] = {.lex_state = 609}, + [994] = {.lex_state = 609}, + [995] = {.lex_state = 609}, + [996] = {.lex_state = 580}, + [997] = {.lex_state = 580}, + [998] = {.lex_state = 580}, + [999] = {.lex_state = 624, .external_lex_state = 2}, + [1000] = {.lex_state = 580}, + [1001] = {.lex_state = 580}, + [1002] = {.lex_state = 580}, + [1003] = {.lex_state = 580}, + [1004] = {.lex_state = 580}, + [1005] = {.lex_state = 45, .external_lex_state = 2}, + [1006] = {.lex_state = 580}, + [1007] = {.lex_state = 580}, + [1008] = {.lex_state = 609}, + [1009] = {.lex_state = 580}, + [1010] = {.lex_state = 580}, + [1011] = {.lex_state = 580}, + [1012] = {.lex_state = 609}, + [1013] = {.lex_state = 580}, + [1014] = {.lex_state = 580}, + [1015] = {.lex_state = 609}, + [1016] = {.lex_state = 609}, + [1017] = {.lex_state = 580}, + [1018] = {.lex_state = 580}, + [1019] = {.lex_state = 580}, + [1020] = {.lex_state = 580}, + [1021] = {.lex_state = 580}, + [1022] = {.lex_state = 580}, + [1023] = {.lex_state = 580}, + [1024] = {.lex_state = 580}, + [1025] = {.lex_state = 580}, + [1026] = {.lex_state = 50, .external_lex_state = 2}, + [1027] = {.lex_state = 50, .external_lex_state = 2}, + [1028] = {.lex_state = 50, .external_lex_state = 2}, + [1029] = {.lex_state = 580}, + [1030] = {.lex_state = 580}, + [1031] = {.lex_state = 580}, + [1032] = {.lex_state = 580}, + [1033] = {.lex_state = 45, .external_lex_state = 2}, + [1034] = {.lex_state = 45, .external_lex_state = 2}, + [1035] = {.lex_state = 580}, + [1036] = {.lex_state = 580}, + [1037] = {.lex_state = 580}, + [1038] = {.lex_state = 580}, + [1039] = {.lex_state = 580}, + [1040] = {.lex_state = 580}, + [1041] = {.lex_state = 580}, + [1042] = {.lex_state = 580}, + [1043] = {.lex_state = 580}, + [1044] = {.lex_state = 580}, + [1045] = {.lex_state = 580}, + [1046] = {.lex_state = 580}, + [1047] = {.lex_state = 55, .external_lex_state = 2}, + [1048] = {.lex_state = 55, .external_lex_state = 2}, + [1049] = {.lex_state = 580}, + [1050] = {.lex_state = 580}, + [1051] = {.lex_state = 580}, + [1052] = {.lex_state = 624, .external_lex_state = 2}, + [1053] = {.lex_state = 580}, + [1054] = {.lex_state = 580}, + [1055] = {.lex_state = 580}, + [1056] = {.lex_state = 580}, + [1057] = {.lex_state = 38, .external_lex_state = 2}, + [1058] = {.lex_state = 580}, + [1059] = {.lex_state = 580}, + [1060] = {.lex_state = 580}, + [1061] = {.lex_state = 580}, + [1062] = {.lex_state = 580}, + [1063] = {.lex_state = 580}, + [1064] = {.lex_state = 580}, + [1065] = {.lex_state = 580}, + [1066] = {.lex_state = 580}, + [1067] = {.lex_state = 580}, + [1068] = {.lex_state = 580}, + [1069] = {.lex_state = 580}, + [1070] = {.lex_state = 580}, + [1071] = {.lex_state = 611}, + [1072] = {.lex_state = 611}, + [1073] = {.lex_state = 611}, + [1074] = {.lex_state = 580}, + [1075] = {.lex_state = 580}, + [1076] = {.lex_state = 580}, + [1077] = {.lex_state = 580}, + [1078] = {.lex_state = 580}, + [1079] = {.lex_state = 611}, + [1080] = {.lex_state = 580}, + [1081] = {.lex_state = 613}, + [1082] = {.lex_state = 580}, + [1083] = {.lex_state = 580}, + [1084] = {.lex_state = 580}, + [1085] = {.lex_state = 580}, + [1086] = {.lex_state = 38, .external_lex_state = 2}, + [1087] = {.lex_state = 580}, + [1088] = {.lex_state = 580}, + [1089] = {.lex_state = 580}, + [1090] = {.lex_state = 580}, + [1091] = {.lex_state = 580}, + [1092] = {.lex_state = 45, .external_lex_state = 2}, + [1093] = {.lex_state = 580}, + [1094] = {.lex_state = 50, .external_lex_state = 2}, + [1095] = {.lex_state = 50, .external_lex_state = 2}, + [1096] = {.lex_state = 50, .external_lex_state = 2}, + [1097] = {.lex_state = 580}, + [1098] = {.lex_state = 580}, + [1099] = {.lex_state = 580}, + [1100] = {.lex_state = 580}, + [1101] = {.lex_state = 580}, + [1102] = {.lex_state = 580}, + [1103] = {.lex_state = 580}, + [1104] = {.lex_state = 580}, + [1105] = {.lex_state = 580}, + [1106] = {.lex_state = 580}, + [1107] = {.lex_state = 580}, + [1108] = {.lex_state = 580}, + [1109] = {.lex_state = 580}, + [1110] = {.lex_state = 580}, + [1111] = {.lex_state = 580}, + [1112] = {.lex_state = 580}, + [1113] = {.lex_state = 580}, + [1114] = {.lex_state = 580}, + [1115] = {.lex_state = 580}, + [1116] = {.lex_state = 580}, + [1117] = {.lex_state = 580}, + [1118] = {.lex_state = 580}, + [1119] = {.lex_state = 580}, + [1120] = {.lex_state = 580}, + [1121] = {.lex_state = 580}, + [1122] = {.lex_state = 580}, + [1123] = {.lex_state = 580}, + [1124] = {.lex_state = 580}, + [1125] = {.lex_state = 38, .external_lex_state = 2}, + [1126] = {.lex_state = 580}, + [1127] = {.lex_state = 580}, + [1128] = {.lex_state = 624, .external_lex_state = 2}, + [1129] = {.lex_state = 580}, + [1130] = {.lex_state = 580}, + [1131] = {.lex_state = 580}, + [1132] = {.lex_state = 580}, + [1133] = {.lex_state = 580}, + [1134] = {.lex_state = 580}, + [1135] = {.lex_state = 580}, + [1136] = {.lex_state = 580}, + [1137] = {.lex_state = 580}, + [1138] = {.lex_state = 580}, + [1139] = {.lex_state = 580}, + [1140] = {.lex_state = 609}, + [1141] = {.lex_state = 55, .external_lex_state = 2}, + [1142] = {.lex_state = 55, .external_lex_state = 2}, + [1143] = {.lex_state = 611}, + [1144] = {.lex_state = 580}, + [1145] = {.lex_state = 580}, + [1146] = {.lex_state = 611}, + [1147] = {.lex_state = 580}, + [1148] = {.lex_state = 580}, + [1149] = {.lex_state = 626, .external_lex_state = 2}, + [1150] = {.lex_state = 37, .external_lex_state = 2}, + [1151] = {.lex_state = 37, .external_lex_state = 2}, + [1152] = {.lex_state = 580}, + [1153] = {.lex_state = 580}, + [1154] = {.lex_state = 580}, + [1155] = {.lex_state = 580}, + [1156] = {.lex_state = 580}, + [1157] = {.lex_state = 580}, + [1158] = {.lex_state = 37, .external_lex_state = 2}, + [1159] = {.lex_state = 580}, + [1160] = {.lex_state = 580}, + [1161] = {.lex_state = 580}, + [1162] = {.lex_state = 37, .external_lex_state = 2}, + [1163] = {.lex_state = 580}, + [1164] = {.lex_state = 580}, + [1165] = {.lex_state = 580}, + [1166] = {.lex_state = 580}, + [1167] = {.lex_state = 580}, + [1168] = {.lex_state = 580}, + [1169] = {.lex_state = 580}, + [1170] = {.lex_state = 580}, + [1171] = {.lex_state = 580}, + [1172] = {.lex_state = 580}, + [1173] = {.lex_state = 580}, + [1174] = {.lex_state = 580}, + [1175] = {.lex_state = 580}, + [1176] = {.lex_state = 580}, + [1177] = {.lex_state = 580}, + [1178] = {.lex_state = 580}, + [1179] = {.lex_state = 580}, + [1180] = {.lex_state = 580}, + [1181] = {.lex_state = 580}, + [1182] = {.lex_state = 580}, + [1183] = {.lex_state = 580}, + [1184] = {.lex_state = 580}, + [1185] = {.lex_state = 580}, + [1186] = {.lex_state = 580}, + [1187] = {.lex_state = 580}, + [1188] = {.lex_state = 580}, + [1189] = {.lex_state = 580}, + [1190] = {.lex_state = 580}, + [1191] = {.lex_state = 580}, + [1192] = {.lex_state = 580}, + [1193] = {.lex_state = 611}, + [1194] = {.lex_state = 611}, + [1195] = {.lex_state = 580}, + [1196] = {.lex_state = 580}, + [1197] = {.lex_state = 580}, + [1198] = {.lex_state = 580}, + [1199] = {.lex_state = 580}, + [1200] = {.lex_state = 580}, + [1201] = {.lex_state = 580}, + [1202] = {.lex_state = 55, .external_lex_state = 2}, + [1203] = {.lex_state = 580}, + [1204] = {.lex_state = 580}, + [1205] = {.lex_state = 580}, + [1206] = {.lex_state = 580}, + [1207] = {.lex_state = 55, .external_lex_state = 2}, + [1208] = {.lex_state = 611}, + [1209] = {.lex_state = 580}, + [1210] = {.lex_state = 580}, + [1211] = {.lex_state = 580}, + [1212] = {.lex_state = 580}, + [1213] = {.lex_state = 580}, + [1214] = {.lex_state = 580}, + [1215] = {.lex_state = 580}, + [1216] = {.lex_state = 580}, + [1217] = {.lex_state = 580}, + [1218] = {.lex_state = 580}, + [1219] = {.lex_state = 580}, + [1220] = {.lex_state = 580}, + [1221] = {.lex_state = 580}, + [1222] = {.lex_state = 580}, + [1223] = {.lex_state = 580}, + [1224] = {.lex_state = 580}, + [1225] = {.lex_state = 580}, + [1226] = {.lex_state = 580}, + [1227] = {.lex_state = 580}, + [1228] = {.lex_state = 580}, + [1229] = {.lex_state = 580}, + [1230] = {.lex_state = 580}, + [1231] = {.lex_state = 55, .external_lex_state = 2}, + [1232] = {.lex_state = 580}, + [1233] = {.lex_state = 580}, + [1234] = {.lex_state = 580}, + [1235] = {.lex_state = 580}, + [1236] = {.lex_state = 580}, + [1237] = {.lex_state = 580}, + [1238] = {.lex_state = 580}, + [1239] = {.lex_state = 580}, + [1240] = {.lex_state = 580}, + [1241] = {.lex_state = 580}, + [1242] = {.lex_state = 580}, + [1243] = {.lex_state = 580}, + [1244] = {.lex_state = 580}, + [1245] = {.lex_state = 580}, + [1246] = {.lex_state = 580}, + [1247] = {.lex_state = 580}, + [1248] = {.lex_state = 580}, + [1249] = {.lex_state = 580}, + [1250] = {.lex_state = 580}, + [1251] = {.lex_state = 580}, + [1252] = {.lex_state = 580}, + [1253] = {.lex_state = 580}, + [1254] = {.lex_state = 580}, + [1255] = {.lex_state = 580}, + [1256] = {.lex_state = 580}, + [1257] = {.lex_state = 580}, + [1258] = {.lex_state = 580}, + [1259] = {.lex_state = 55, .external_lex_state = 2}, + [1260] = {.lex_state = 55, .external_lex_state = 2}, + [1261] = {.lex_state = 580}, + [1262] = {.lex_state = 54, .external_lex_state = 2}, + [1263] = {.lex_state = 580}, + [1264] = {.lex_state = 580}, + [1265] = {.lex_state = 580}, + [1266] = {.lex_state = 580}, + [1267] = {.lex_state = 580}, + [1268] = {.lex_state = 580}, + [1269] = {.lex_state = 580}, + [1270] = {.lex_state = 580}, + [1271] = {.lex_state = 580}, + [1272] = {.lex_state = 580}, + [1273] = {.lex_state = 580}, + [1274] = {.lex_state = 580}, + [1275] = {.lex_state = 580}, + [1276] = {.lex_state = 580}, + [1277] = {.lex_state = 580}, + [1278] = {.lex_state = 580}, + [1279] = {.lex_state = 580}, + [1280] = {.lex_state = 580}, + [1281] = {.lex_state = 580}, + [1282] = {.lex_state = 580}, + [1283] = {.lex_state = 580}, + [1284] = {.lex_state = 580}, + [1285] = {.lex_state = 580}, + [1286] = {.lex_state = 580}, + [1287] = {.lex_state = 580}, + [1288] = {.lex_state = 580}, + [1289] = {.lex_state = 580}, + [1290] = {.lex_state = 580}, + [1291] = {.lex_state = 580}, + [1292] = {.lex_state = 580}, + [1293] = {.lex_state = 580}, + [1294] = {.lex_state = 580}, + [1295] = {.lex_state = 580}, + [1296] = {.lex_state = 580}, + [1297] = {.lex_state = 580}, + [1298] = {.lex_state = 580}, + [1299] = {.lex_state = 580}, + [1300] = {.lex_state = 580}, + [1301] = {.lex_state = 580}, + [1302] = {.lex_state = 580}, + [1303] = {.lex_state = 580}, + [1304] = {.lex_state = 580}, + [1305] = {.lex_state = 580}, + [1306] = {.lex_state = 580}, + [1307] = {.lex_state = 580}, + [1308] = {.lex_state = 580}, + [1309] = {.lex_state = 54, .external_lex_state = 2}, + [1310] = {.lex_state = 580}, + [1311] = {.lex_state = 580}, + [1312] = {.lex_state = 580}, + [1313] = {.lex_state = 580}, + [1314] = {.lex_state = 624, .external_lex_state = 2}, + [1315] = {.lex_state = 580}, + [1316] = {.lex_state = 580}, + [1317] = {.lex_state = 580}, + [1318] = {.lex_state = 580}, + [1319] = {.lex_state = 580}, + [1320] = {.lex_state = 580}, + [1321] = {.lex_state = 580}, + [1322] = {.lex_state = 580}, + [1323] = {.lex_state = 580}, + [1324] = {.lex_state = 580}, + [1325] = {.lex_state = 580}, + [1326] = {.lex_state = 580}, + [1327] = {.lex_state = 580}, + [1328] = {.lex_state = 580}, + [1329] = {.lex_state = 580}, + [1330] = {.lex_state = 580}, + [1331] = {.lex_state = 54, .external_lex_state = 2}, [1332] = {.lex_state = 54, .external_lex_state = 2}, - [1333] = {.lex_state = 54, .external_lex_state = 2}, - [1334] = {.lex_state = 579}, - [1335] = {.lex_state = 579}, - [1336] = {.lex_state = 579}, - [1337] = {.lex_state = 579}, - [1338] = {.lex_state = 579}, - [1339] = {.lex_state = 579}, - [1340] = {.lex_state = 579}, - [1341] = {.lex_state = 579}, - [1342] = {.lex_state = 579}, - [1343] = {.lex_state = 623, .external_lex_state = 2}, - [1344] = {.lex_state = 579}, + [1333] = {.lex_state = 624, .external_lex_state = 2}, + [1334] = {.lex_state = 580}, + [1335] = {.lex_state = 580}, + [1336] = {.lex_state = 580}, + [1337] = {.lex_state = 580}, + [1338] = {.lex_state = 580}, + [1339] = {.lex_state = 580}, + [1340] = {.lex_state = 580}, + [1341] = {.lex_state = 580}, + [1342] = {.lex_state = 624, .external_lex_state = 2}, + [1343] = {.lex_state = 580}, + [1344] = {.lex_state = 580}, [1345] = {.lex_state = 179, .external_lex_state = 2}, [1346] = {.lex_state = 37, .external_lex_state = 2}, [1347] = {.lex_state = 40, .external_lex_state = 2}, - [1348] = {.lex_state = 54, .external_lex_state = 2}, - [1349] = {.lex_state = 54, .external_lex_state = 2}, + [1348] = {.lex_state = 180, .external_lex_state = 2}, + [1349] = {.lex_state = 40, .external_lex_state = 2}, [1350] = {.lex_state = 40, .external_lex_state = 2}, - [1351] = {.lex_state = 40, .external_lex_state = 2}, - [1352] = {.lex_state = 54, .external_lex_state = 2}, - [1353] = {.lex_state = 623, .external_lex_state = 2}, - [1354] = {.lex_state = 180, .external_lex_state = 2}, - [1355] = {.lex_state = 180, .external_lex_state = 2}, - [1356] = {.lex_state = 40, .external_lex_state = 2}, - [1357] = {.lex_state = 623, .external_lex_state = 2}, - [1358] = {.lex_state = 632, .external_lex_state = 2}, - [1359] = {.lex_state = 623, .external_lex_state = 2}, - [1360] = {.lex_state = 157, .external_lex_state = 2}, - [1361] = {.lex_state = 623, .external_lex_state = 2}, - [1362] = {.lex_state = 623, .external_lex_state = 2}, - [1363] = {.lex_state = 623, .external_lex_state = 2}, - [1364] = {.lex_state = 37, .external_lex_state = 2}, - [1365] = {.lex_state = 623, .external_lex_state = 2}, + [1351] = {.lex_state = 54, .external_lex_state = 2}, + [1352] = {.lex_state = 180, .external_lex_state = 2}, + [1353] = {.lex_state = 54, .external_lex_state = 2}, + [1354] = {.lex_state = 40, .external_lex_state = 2}, + [1355] = {.lex_state = 54, .external_lex_state = 2}, + [1356] = {.lex_state = 624, .external_lex_state = 2}, + [1357] = {.lex_state = 624, .external_lex_state = 2}, + [1358] = {.lex_state = 624, .external_lex_state = 2}, + [1359] = {.lex_state = 37, .external_lex_state = 2}, + [1360] = {.lex_state = 624, .external_lex_state = 2}, + [1361] = {.lex_state = 37, .external_lex_state = 2}, + [1362] = {.lex_state = 157, .external_lex_state = 2}, + [1363] = {.lex_state = 37, .external_lex_state = 2}, + [1364] = {.lex_state = 157, .external_lex_state = 2}, + [1365] = {.lex_state = 624, .external_lex_state = 2}, [1366] = {.lex_state = 40, .external_lex_state = 2}, - [1367] = {.lex_state = 157, .external_lex_state = 2}, - [1368] = {.lex_state = 37, .external_lex_state = 2}, - [1369] = {.lex_state = 37, .external_lex_state = 2}, - [1370] = {.lex_state = 157, .external_lex_state = 2}, + [1367] = {.lex_state = 624, .external_lex_state = 2}, + [1368] = {.lex_state = 157, .external_lex_state = 2}, + [1369] = {.lex_state = 624, .external_lex_state = 2}, + [1370] = {.lex_state = 633, .external_lex_state = 2}, [1371] = {.lex_state = 157, .external_lex_state = 2}, - [1372] = {.lex_state = 623, .external_lex_state = 2}, - [1373] = {.lex_state = 157, .external_lex_state = 2}, - [1374] = {.lex_state = 623, .external_lex_state = 2}, - [1375] = {.lex_state = 40, .external_lex_state = 2}, - [1376] = {.lex_state = 623, .external_lex_state = 2}, - [1377] = {.lex_state = 623, .external_lex_state = 2}, - [1378] = {.lex_state = 623, .external_lex_state = 2}, - [1379] = {.lex_state = 623, .external_lex_state = 2}, - [1380] = {.lex_state = 623, .external_lex_state = 2}, - [1381] = {.lex_state = 623, .external_lex_state = 2}, - [1382] = {.lex_state = 583}, - [1383] = {.lex_state = 623, .external_lex_state = 2}, - [1384] = {.lex_state = 623, .external_lex_state = 2}, - [1385] = {.lex_state = 623, .external_lex_state = 2}, - [1386] = {.lex_state = 583}, - [1387] = {.lex_state = 43, .external_lex_state = 2}, + [1372] = {.lex_state = 624, .external_lex_state = 2}, + [1373] = {.lex_state = 624, .external_lex_state = 2}, + [1374] = {.lex_state = 157, .external_lex_state = 2}, + [1375] = {.lex_state = 624, .external_lex_state = 2}, + [1376] = {.lex_state = 624, .external_lex_state = 2}, + [1377] = {.lex_state = 624, .external_lex_state = 2}, + [1378] = {.lex_state = 40, .external_lex_state = 2}, + [1379] = {.lex_state = 624, .external_lex_state = 2}, + [1380] = {.lex_state = 624, .external_lex_state = 2}, + [1381] = {.lex_state = 624, .external_lex_state = 2}, + [1382] = {.lex_state = 584}, + [1383] = {.lex_state = 624, .external_lex_state = 2}, + [1384] = {.lex_state = 624, .external_lex_state = 2}, + [1385] = {.lex_state = 586}, + [1386] = {.lex_state = 624, .external_lex_state = 2}, + [1387] = {.lex_state = 584}, [1388] = {.lex_state = 43, .external_lex_state = 2}, - [1389] = {.lex_state = 623, .external_lex_state = 2}, - [1390] = {.lex_state = 585}, - [1391] = {.lex_state = 585}, - [1392] = {.lex_state = 585}, + [1389] = {.lex_state = 586}, + [1390] = {.lex_state = 43, .external_lex_state = 2}, + [1391] = {.lex_state = 624, .external_lex_state = 2}, + [1392] = {.lex_state = 42, .external_lex_state = 2}, [1393] = {.lex_state = 42, .external_lex_state = 2}, - [1394] = {.lex_state = 623, .external_lex_state = 2}, - [1395] = {.lex_state = 38, .external_lex_state = 2}, - [1396] = {.lex_state = 585}, - [1397] = {.lex_state = 587}, - [1398] = {.lex_state = 591}, - [1399] = {.lex_state = 42, .external_lex_state = 2}, - [1400] = {.lex_state = 623, .external_lex_state = 2}, - [1401] = {.lex_state = 587}, - [1402] = {.lex_state = 595}, - [1403] = {.lex_state = 43, .external_lex_state = 2}, - [1404] = {.lex_state = 42, .external_lex_state = 2}, - [1405] = {.lex_state = 42, .external_lex_state = 2}, - [1406] = {.lex_state = 42, .external_lex_state = 2}, - [1407] = {.lex_state = 593}, - [1408] = {.lex_state = 591}, - [1409] = {.lex_state = 593}, - [1410] = {.lex_state = 595}, - [1411] = {.lex_state = 597}, - [1412] = {.lex_state = 595}, - [1413] = {.lex_state = 595}, - [1414] = {.lex_state = 43, .external_lex_state = 2}, - [1415] = {.lex_state = 593}, - [1416] = {.lex_state = 155, .external_lex_state = 2}, - [1417] = {.lex_state = 42, .external_lex_state = 2}, - [1418] = {.lex_state = 38, .external_lex_state = 2}, - [1419] = {.lex_state = 38, .external_lex_state = 2}, - [1420] = {.lex_state = 595}, - [1421] = {.lex_state = 589}, - [1422] = {.lex_state = 155, .external_lex_state = 2}, - [1423] = {.lex_state = 38, .external_lex_state = 2}, - [1424] = {.lex_state = 593}, - [1425] = {.lex_state = 599}, - [1426] = {.lex_state = 595}, - [1427] = {.lex_state = 595}, - [1428] = {.lex_state = 597}, - [1429] = {.lex_state = 595}, - [1430] = {.lex_state = 589}, - [1431] = {.lex_state = 599}, - [1432] = {.lex_state = 601}, - [1433] = {.lex_state = 599}, - [1434] = {.lex_state = 601}, - [1435] = {.lex_state = 601}, - [1436] = {.lex_state = 601}, - [1437] = {.lex_state = 599}, - [1438] = {.lex_state = 601}, - [1439] = {.lex_state = 601}, - [1440] = {.lex_state = 601}, - [1441] = {.lex_state = 603}, - [1442] = {.lex_state = 628, .external_lex_state = 2}, - [1443] = {.lex_state = 601}, - [1444] = {.lex_state = 628, .external_lex_state = 2}, - [1445] = {.lex_state = 601}, - [1446] = {.lex_state = 605}, - [1447] = {.lex_state = 579}, - [1448] = {.lex_state = 601}, - [1449] = {.lex_state = 46, .external_lex_state = 2}, - [1450] = {.lex_state = 628, .external_lex_state = 2}, + [1394] = {.lex_state = 592}, + [1395] = {.lex_state = 588}, + [1396] = {.lex_state = 38, .external_lex_state = 2}, + [1397] = {.lex_state = 624, .external_lex_state = 2}, + [1398] = {.lex_state = 586}, + [1399] = {.lex_state = 624, .external_lex_state = 2}, + [1400] = {.lex_state = 586}, + [1401] = {.lex_state = 42, .external_lex_state = 2}, + [1402] = {.lex_state = 592}, + [1403] = {.lex_state = 42, .external_lex_state = 2}, + [1404] = {.lex_state = 43, .external_lex_state = 2}, + [1405] = {.lex_state = 596}, + [1406] = {.lex_state = 594}, + [1407] = {.lex_state = 42, .external_lex_state = 2}, + [1408] = {.lex_state = 594}, + [1409] = {.lex_state = 588}, + [1410] = {.lex_state = 155, .external_lex_state = 2}, + [1411] = {.lex_state = 598}, + [1412] = {.lex_state = 38, .external_lex_state = 2}, + [1413] = {.lex_state = 43, .external_lex_state = 2}, + [1414] = {.lex_state = 590}, + [1415] = {.lex_state = 155, .external_lex_state = 2}, + [1416] = {.lex_state = 594}, + [1417] = {.lex_state = 38, .external_lex_state = 2}, + [1418] = {.lex_state = 596}, + [1419] = {.lex_state = 596}, + [1420] = {.lex_state = 596}, + [1421] = {.lex_state = 38, .external_lex_state = 2}, + [1422] = {.lex_state = 42, .external_lex_state = 2}, + [1423] = {.lex_state = 594}, + [1424] = {.lex_state = 596}, + [1425] = {.lex_state = 600}, + [1426] = {.lex_state = 590}, + [1427] = {.lex_state = 596}, + [1428] = {.lex_state = 600}, + [1429] = {.lex_state = 596}, + [1430] = {.lex_state = 598}, + [1431] = {.lex_state = 596}, + [1432] = {.lex_state = 600}, + [1433] = {.lex_state = 602}, + [1434] = {.lex_state = 600}, + [1435] = {.lex_state = 602}, + [1436] = {.lex_state = 602}, + [1437] = {.lex_state = 602}, + [1438] = {.lex_state = 602}, + [1439] = {.lex_state = 604}, + [1440] = {.lex_state = 580}, + [1441] = {.lex_state = 602}, + [1442] = {.lex_state = 602}, + [1443] = {.lex_state = 602}, + [1444] = {.lex_state = 629, .external_lex_state = 2}, + [1445] = {.lex_state = 629, .external_lex_state = 2}, + [1446] = {.lex_state = 602}, + [1447] = {.lex_state = 606}, + [1448] = {.lex_state = 602}, + [1449] = {.lex_state = 629, .external_lex_state = 2}, + [1450] = {.lex_state = 629, .external_lex_state = 2}, [1451] = {.lex_state = 46, .external_lex_state = 2}, - [1452] = {.lex_state = 603}, - [1453] = {.lex_state = 605}, - [1454] = {.lex_state = 628, .external_lex_state = 2}, - [1455] = {.lex_state = 579}, - [1456] = {.lex_state = 607}, - [1457] = {.lex_state = 607}, + [1452] = {.lex_state = 606}, + [1453] = {.lex_state = 608}, + [1454] = {.lex_state = 604}, + [1455] = {.lex_state = 580}, + [1456] = {.lex_state = 46, .external_lex_state = 2}, + [1457] = {.lex_state = 608}, [1458] = {.lex_state = 46, .external_lex_state = 2}, - [1459] = {.lex_state = 609}, - [1460] = {.lex_state = 158, .external_lex_state = 2}, - [1461] = {.lex_state = 609}, + [1459] = {.lex_state = 158, .external_lex_state = 2}, + [1460] = {.lex_state = 610}, + [1461] = {.lex_state = 158, .external_lex_state = 2}, [1462] = {.lex_state = 158, .external_lex_state = 2}, [1463] = {.lex_state = 158, .external_lex_state = 2}, - [1464] = {.lex_state = 609}, - [1465] = {.lex_state = 609}, - [1466] = {.lex_state = 609}, - [1467] = {.lex_state = 609}, - [1468] = {.lex_state = 609}, - [1469] = {.lex_state = 609}, - [1470] = {.lex_state = 609}, - [1471] = {.lex_state = 609}, + [1464] = {.lex_state = 610}, + [1465] = {.lex_state = 610}, + [1466] = {.lex_state = 610}, + [1467] = {.lex_state = 158, .external_lex_state = 2}, + [1468] = {.lex_state = 610}, + [1469] = {.lex_state = 158, .external_lex_state = 2}, + [1470] = {.lex_state = 610}, + [1471] = {.lex_state = 158, .external_lex_state = 2}, [1472] = {.lex_state = 158, .external_lex_state = 2}, [1473] = {.lex_state = 158, .external_lex_state = 2}, - [1474] = {.lex_state = 158, .external_lex_state = 2}, - [1475] = {.lex_state = 158, .external_lex_state = 2}, + [1474] = {.lex_state = 610}, + [1475] = {.lex_state = 610}, [1476] = {.lex_state = 158, .external_lex_state = 2}, - [1477] = {.lex_state = 158, .external_lex_state = 2}, - [1478] = {.lex_state = 158, .external_lex_state = 2}, - [1479] = {.lex_state = 158, .external_lex_state = 2}, - [1480] = {.lex_state = 158, .external_lex_state = 2}, - [1481] = {.lex_state = 158, .external_lex_state = 2}, - [1482] = {.lex_state = 607}, - [1483] = {.lex_state = 607}, - [1484] = {.lex_state = 609}, - [1485] = {.lex_state = 609}, - [1486] = {.lex_state = 609}, - [1487] = {.lex_state = 158, .external_lex_state = 2}, - [1488] = {.lex_state = 609}, - [1489] = {.lex_state = 611}, - [1490] = {.lex_state = 609}, - [1491] = {.lex_state = 609}, - [1492] = {.lex_state = 158, .external_lex_state = 2}, - [1493] = {.lex_state = 611}, - [1494] = {.lex_state = 611}, - [1495] = {.lex_state = 609}, - [1496] = {.lex_state = 609}, - [1497] = {.lex_state = 609}, - [1498] = {.lex_state = 609}, - [1499] = {.lex_state = 609}, - [1500] = {.lex_state = 49, .external_lex_state = 2}, - [1501] = {.lex_state = 609}, - [1502] = {.lex_state = 609}, - [1503] = {.lex_state = 609}, - [1504] = {.lex_state = 609}, - [1505] = {.lex_state = 609}, - [1506] = {.lex_state = 609}, - [1507] = {.lex_state = 158, .external_lex_state = 2}, - [1508] = {.lex_state = 609}, - [1509] = {.lex_state = 579}, - [1510] = {.lex_state = 579}, - [1511] = {.lex_state = 579}, - [1512] = {.lex_state = 579}, - [1513] = {.lex_state = 579}, - [1514] = {.lex_state = 579}, - [1515] = {.lex_state = 579}, - [1516] = {.lex_state = 579}, - [1517] = {.lex_state = 579}, - [1518] = {.lex_state = 579}, - [1519] = {.lex_state = 579}, - [1520] = {.lex_state = 579}, - [1521] = {.lex_state = 579}, - [1522] = {.lex_state = 579}, - [1523] = {.lex_state = 579}, + [1477] = {.lex_state = 610}, + [1478] = {.lex_state = 610}, + [1479] = {.lex_state = 610}, + [1480] = {.lex_state = 608}, + [1481] = {.lex_state = 610}, + [1482] = {.lex_state = 158, .external_lex_state = 2}, + [1483] = {.lex_state = 608}, + [1484] = {.lex_state = 158, .external_lex_state = 2}, + [1485] = {.lex_state = 610}, + [1486] = {.lex_state = 158, .external_lex_state = 2}, + [1487] = {.lex_state = 610}, + [1488] = {.lex_state = 612}, + [1489] = {.lex_state = 610}, + [1490] = {.lex_state = 158, .external_lex_state = 2}, + [1491] = {.lex_state = 610}, + [1492] = {.lex_state = 610}, + [1493] = {.lex_state = 610}, + [1494] = {.lex_state = 158, .external_lex_state = 2}, + [1495] = {.lex_state = 610}, + [1496] = {.lex_state = 610}, + [1497] = {.lex_state = 610}, + [1498] = {.lex_state = 610}, + [1499] = {.lex_state = 610}, + [1500] = {.lex_state = 610}, + [1501] = {.lex_state = 612}, + [1502] = {.lex_state = 610}, + [1503] = {.lex_state = 612}, + [1504] = {.lex_state = 158, .external_lex_state = 2}, + [1505] = {.lex_state = 49, .external_lex_state = 2}, + [1506] = {.lex_state = 610}, + [1507] = {.lex_state = 610}, + [1508] = {.lex_state = 580}, + [1509] = {.lex_state = 95}, + [1510] = {.lex_state = 49, .external_lex_state = 2}, + [1511] = {.lex_state = 612}, + [1512] = {.lex_state = 95}, + [1513] = {.lex_state = 95}, + [1514] = {.lex_state = 46, .external_lex_state = 2}, + [1515] = {.lex_state = 14}, + [1516] = {.lex_state = 95}, + [1517] = {.lex_state = 95}, + [1518] = {.lex_state = 95}, + [1519] = {.lex_state = 95}, + [1520] = {.lex_state = 95}, + [1521] = {.lex_state = 95}, + [1522] = {.lex_state = 610}, + [1523] = {.lex_state = 184, .external_lex_state = 2}, [1524] = {.lex_state = 95}, - [1525] = {.lex_state = 579}, - [1526] = {.lex_state = 95}, - [1527] = {.lex_state = 579}, + [1525] = {.lex_state = 95}, + [1526] = {.lex_state = 46, .external_lex_state = 2}, + [1527] = {.lex_state = 95}, [1528] = {.lex_state = 95}, - [1529] = {.lex_state = 579}, - [1530] = {.lex_state = 579}, - [1531] = {.lex_state = 579}, + [1529] = {.lex_state = 95}, + [1530] = {.lex_state = 95}, + [1531] = {.lex_state = 95}, [1532] = {.lex_state = 95}, - [1533] = {.lex_state = 579}, + [1533] = {.lex_state = 95}, [1534] = {.lex_state = 95}, - [1535] = {.lex_state = 579}, - [1536] = {.lex_state = 95}, - [1537] = {.lex_state = 579}, - [1538] = {.lex_state = 579}, - [1539] = {.lex_state = 579}, + [1535] = {.lex_state = 95}, + [1536] = {.lex_state = 46, .external_lex_state = 2}, + [1537] = {.lex_state = 95}, + [1538] = {.lex_state = 95}, + [1539] = {.lex_state = 95}, [1540] = {.lex_state = 95}, - [1541] = {.lex_state = 95}, - [1542] = {.lex_state = 579}, + [1541] = {.lex_state = 46, .external_lex_state = 2}, + [1542] = {.lex_state = 95}, [1543] = {.lex_state = 95}, - [1544] = {.lex_state = 579}, - [1545] = {.lex_state = 579}, - [1546] = {.lex_state = 579}, - [1547] = {.lex_state = 579}, - [1548] = {.lex_state = 579}, - [1549] = {.lex_state = 579}, - [1550] = {.lex_state = 579}, - [1551] = {.lex_state = 579}, - [1552] = {.lex_state = 579}, - [1553] = {.lex_state = 579}, - [1554] = {.lex_state = 579}, - [1555] = {.lex_state = 579}, - [1556] = {.lex_state = 579}, - [1557] = {.lex_state = 579}, - [1558] = {.lex_state = 579}, - [1559] = {.lex_state = 579}, - [1560] = {.lex_state = 579}, - [1561] = {.lex_state = 579}, - [1562] = {.lex_state = 579}, - [1563] = {.lex_state = 579}, - [1564] = {.lex_state = 579}, - [1565] = {.lex_state = 579}, - [1566] = {.lex_state = 579}, - [1567] = {.lex_state = 579}, - [1568] = {.lex_state = 579}, - [1569] = {.lex_state = 579}, - [1570] = {.lex_state = 579}, - [1571] = {.lex_state = 579}, - [1572] = {.lex_state = 579}, - [1573] = {.lex_state = 579}, - [1574] = {.lex_state = 579}, - [1575] = {.lex_state = 579}, - [1576] = {.lex_state = 579}, - [1577] = {.lex_state = 579}, - [1578] = {.lex_state = 579}, - [1579] = {.lex_state = 579}, - [1580] = {.lex_state = 95}, - [1581] = {.lex_state = 95}, - [1582] = {.lex_state = 14}, - [1583] = {.lex_state = 49, .external_lex_state = 2}, - [1584] = {.lex_state = 579}, - [1585] = {.lex_state = 579}, - [1586] = {.lex_state = 579}, - [1587] = {.lex_state = 579}, - [1588] = {.lex_state = 579}, - [1589] = {.lex_state = 579}, - [1590] = {.lex_state = 579}, - [1591] = {.lex_state = 579}, - [1592] = {.lex_state = 579}, - [1593] = {.lex_state = 579}, - [1594] = {.lex_state = 579}, - [1595] = {.lex_state = 579}, - [1596] = {.lex_state = 579}, - [1597] = {.lex_state = 95}, - [1598] = {.lex_state = 579}, - [1599] = {.lex_state = 95}, - [1600] = {.lex_state = 579}, - [1601] = {.lex_state = 95}, - [1602] = {.lex_state = 95}, - [1603] = {.lex_state = 95}, - [1604] = {.lex_state = 95}, - [1605] = {.lex_state = 95}, - [1606] = {.lex_state = 95}, - [1607] = {.lex_state = 95}, - [1608] = {.lex_state = 95}, - [1609] = {.lex_state = 95}, - [1610] = {.lex_state = 95}, - [1611] = {.lex_state = 95}, - [1612] = {.lex_state = 46, .external_lex_state = 2}, - [1613] = {.lex_state = 579}, - [1614] = {.lex_state = 579}, - [1615] = {.lex_state = 46, .external_lex_state = 2}, - [1616] = {.lex_state = 95}, - [1617] = {.lex_state = 579}, - [1618] = {.lex_state = 579}, - [1619] = {.lex_state = 579}, - [1620] = {.lex_state = 579}, - [1621] = {.lex_state = 579}, - [1622] = {.lex_state = 579}, - [1623] = {.lex_state = 579}, - [1624] = {.lex_state = 579}, - [1625] = {.lex_state = 579}, - [1626] = {.lex_state = 579}, - [1627] = {.lex_state = 579}, - [1628] = {.lex_state = 579}, - [1629] = {.lex_state = 579}, - [1630] = {.lex_state = 579}, - [1631] = {.lex_state = 611}, - [1632] = {.lex_state = 95}, - [1633] = {.lex_state = 95}, - [1634] = {.lex_state = 95}, - [1635] = {.lex_state = 46, .external_lex_state = 2}, - [1636] = {.lex_state = 95}, - [1637] = {.lex_state = 579}, - [1638] = {.lex_state = 579}, - [1639] = {.lex_state = 579}, - [1640] = {.lex_state = 579}, - [1641] = {.lex_state = 579}, - [1642] = {.lex_state = 95}, - [1643] = {.lex_state = 95}, - [1644] = {.lex_state = 95}, - [1645] = {.lex_state = 95}, - [1646] = {.lex_state = 95}, - [1647] = {.lex_state = 95}, - [1648] = {.lex_state = 46, .external_lex_state = 2}, - [1649] = {.lex_state = 95}, - [1650] = {.lex_state = 579}, - [1651] = {.lex_state = 579}, - [1652] = {.lex_state = 579}, - [1653] = {.lex_state = 579}, - [1654] = {.lex_state = 184, .external_lex_state = 2}, - [1655] = {.lex_state = 611}, - [1656] = {.lex_state = 611}, - [1657] = {.lex_state = 95}, - [1658] = {.lex_state = 95}, - [1659] = {.lex_state = 95}, - [1660] = {.lex_state = 579}, - [1661] = {.lex_state = 579}, - [1662] = {.lex_state = 579}, - [1663] = {.lex_state = 95}, - [1664] = {.lex_state = 579}, - [1665] = {.lex_state = 95}, - [1666] = {.lex_state = 95}, - [1667] = {.lex_state = 579}, - [1668] = {.lex_state = 95}, - [1669] = {.lex_state = 95}, - [1670] = {.lex_state = 95}, - [1671] = {.lex_state = 46, .external_lex_state = 2}, - [1672] = {.lex_state = 579}, + [1544] = {.lex_state = 95}, + [1545] = {.lex_state = 95}, + [1546] = {.lex_state = 95}, + [1547] = {.lex_state = 95}, + [1548] = {.lex_state = 95}, + [1549] = {.lex_state = 95}, + [1550] = {.lex_state = 95}, + [1551] = {.lex_state = 95}, + [1552] = {.lex_state = 95}, + [1553] = {.lex_state = 95}, + [1554] = {.lex_state = 95}, + [1555] = {.lex_state = 95}, + [1556] = {.lex_state = 95}, + [1557] = {.lex_state = 95}, + [1558] = {.lex_state = 95}, + [1559] = {.lex_state = 95}, + [1560] = {.lex_state = 95}, + [1561] = {.lex_state = 95}, + [1562] = {.lex_state = 580}, + [1563] = {.lex_state = 580}, + [1564] = {.lex_state = 580}, + [1565] = {.lex_state = 580}, + [1566] = {.lex_state = 580}, + [1567] = {.lex_state = 580}, + [1568] = {.lex_state = 580}, + [1569] = {.lex_state = 580}, + [1570] = {.lex_state = 580}, + [1571] = {.lex_state = 580}, + [1572] = {.lex_state = 580}, + [1573] = {.lex_state = 580}, + [1574] = {.lex_state = 46, .external_lex_state = 2}, + [1575] = {.lex_state = 580}, + [1576] = {.lex_state = 580}, + [1577] = {.lex_state = 580}, + [1578] = {.lex_state = 580}, + [1579] = {.lex_state = 580}, + [1580] = {.lex_state = 580}, + [1581] = {.lex_state = 580}, + [1582] = {.lex_state = 580}, + [1583] = {.lex_state = 580}, + [1584] = {.lex_state = 580}, + [1585] = {.lex_state = 580}, + [1586] = {.lex_state = 580}, + [1587] = {.lex_state = 580}, + [1588] = {.lex_state = 580}, + [1589] = {.lex_state = 580}, + [1590] = {.lex_state = 580}, + [1591] = {.lex_state = 580}, + [1592] = {.lex_state = 580}, + [1593] = {.lex_state = 580}, + [1594] = {.lex_state = 580}, + [1595] = {.lex_state = 580}, + [1596] = {.lex_state = 580}, + [1597] = {.lex_state = 580}, + [1598] = {.lex_state = 580}, + [1599] = {.lex_state = 580}, + [1600] = {.lex_state = 580}, + [1601] = {.lex_state = 580}, + [1602] = {.lex_state = 580}, + [1603] = {.lex_state = 580}, + [1604] = {.lex_state = 580}, + [1605] = {.lex_state = 580}, + [1606] = {.lex_state = 580}, + [1607] = {.lex_state = 580}, + [1608] = {.lex_state = 580}, + [1609] = {.lex_state = 580}, + [1610] = {.lex_state = 580}, + [1611] = {.lex_state = 580}, + [1612] = {.lex_state = 580}, + [1613] = {.lex_state = 580}, + [1614] = {.lex_state = 580}, + [1615] = {.lex_state = 580}, + [1616] = {.lex_state = 580}, + [1617] = {.lex_state = 580}, + [1618] = {.lex_state = 580}, + [1619] = {.lex_state = 580}, + [1620] = {.lex_state = 580}, + [1621] = {.lex_state = 580}, + [1622] = {.lex_state = 580}, + [1623] = {.lex_state = 580}, + [1624] = {.lex_state = 580}, + [1625] = {.lex_state = 580}, + [1626] = {.lex_state = 580}, + [1627] = {.lex_state = 580}, + [1628] = {.lex_state = 580}, + [1629] = {.lex_state = 580}, + [1630] = {.lex_state = 580}, + [1631] = {.lex_state = 580}, + [1632] = {.lex_state = 580}, + [1633] = {.lex_state = 580}, + [1634] = {.lex_state = 580}, + [1635] = {.lex_state = 580}, + [1636] = {.lex_state = 580}, + [1637] = {.lex_state = 580}, + [1638] = {.lex_state = 580}, + [1639] = {.lex_state = 580}, + [1640] = {.lex_state = 580}, + [1641] = {.lex_state = 580}, + [1642] = {.lex_state = 580}, + [1643] = {.lex_state = 580}, + [1644] = {.lex_state = 580}, + [1645] = {.lex_state = 580}, + [1646] = {.lex_state = 580}, + [1647] = {.lex_state = 580}, + [1648] = {.lex_state = 580}, + [1649] = {.lex_state = 580}, + [1650] = {.lex_state = 580}, + [1651] = {.lex_state = 580}, + [1652] = {.lex_state = 580}, + [1653] = {.lex_state = 580}, + [1654] = {.lex_state = 580}, + [1655] = {.lex_state = 580}, + [1656] = {.lex_state = 580}, + [1657] = {.lex_state = 580}, + [1658] = {.lex_state = 580}, + [1659] = {.lex_state = 580}, + [1660] = {.lex_state = 580}, + [1661] = {.lex_state = 580}, + [1662] = {.lex_state = 580}, + [1663] = {.lex_state = 580}, + [1664] = {.lex_state = 580}, + [1665] = {.lex_state = 580}, + [1666] = {.lex_state = 580}, + [1667] = {.lex_state = 580}, + [1668] = {.lex_state = 580}, + [1669] = {.lex_state = 580}, + [1670] = {.lex_state = 580}, + [1671] = {.lex_state = 612}, + [1672] = {.lex_state = 612}, [1673] = {.lex_state = 95}, [1674] = {.lex_state = 95}, - [1675] = {.lex_state = 579}, + [1675] = {.lex_state = 95}, [1676] = {.lex_state = 95}, - [1677] = {.lex_state = 579}, - [1678] = {.lex_state = 138}, - [1679] = {.lex_state = 15}, - [1680] = {.lex_state = 579}, - [1681] = {.lex_state = 95}, - [1682] = {.lex_state = 579}, - [1683] = {.lex_state = 579}, - [1684] = {.lex_state = 579}, - [1685] = {.lex_state = 15}, - [1686] = {.lex_state = 579}, - [1687] = {.lex_state = 184, .external_lex_state = 2}, - [1688] = {.lex_state = 579}, - [1689] = {.lex_state = 579}, - [1690] = {.lex_state = 184, .external_lex_state = 2}, - [1691] = {.lex_state = 579}, - [1692] = {.lex_state = 579}, - [1693] = {.lex_state = 579}, - [1694] = {.lex_state = 579}, - [1695] = {.lex_state = 579}, - [1696] = {.lex_state = 139}, - [1697] = {.lex_state = 46, .external_lex_state = 2}, - [1698] = {.lex_state = 139}, - [1699] = {.lex_state = 16}, + [1677] = {.lex_state = 184, .external_lex_state = 2}, + [1678] = {.lex_state = 580}, + [1679] = {.lex_state = 580}, + [1680] = {.lex_state = 580}, + [1681] = {.lex_state = 580}, + [1682] = {.lex_state = 580}, + [1683] = {.lex_state = 580}, + [1684] = {.lex_state = 580}, + [1685] = {.lex_state = 580}, + [1686] = {.lex_state = 580}, + [1687] = {.lex_state = 580}, + [1688] = {.lex_state = 580}, + [1689] = {.lex_state = 580}, + [1690] = {.lex_state = 15}, + [1691] = {.lex_state = 15}, + [1692] = {.lex_state = 95}, + [1693] = {.lex_state = 184, .external_lex_state = 2}, + [1694] = {.lex_state = 138}, + [1695] = {.lex_state = 580}, + [1696] = {.lex_state = 46, .external_lex_state = 2}, + [1697] = {.lex_state = 18}, + [1698] = {.lex_state = 138}, + [1699] = {.lex_state = 46, .external_lex_state = 2}, [1700] = {.lex_state = 46, .external_lex_state = 2}, - [1701] = {.lex_state = 138}, + [1701] = {.lex_state = 46, .external_lex_state = 2}, [1702] = {.lex_state = 46, .external_lex_state = 2}, [1703] = {.lex_state = 46, .external_lex_state = 2}, - [1704] = {.lex_state = 46, .external_lex_state = 2}, - [1705] = {.lex_state = 46, .external_lex_state = 2}, - [1706] = {.lex_state = 46, .external_lex_state = 2}, + [1704] = {.lex_state = 16}, + [1705] = {.lex_state = 139}, + [1706] = {.lex_state = 139}, [1707] = {.lex_state = 46, .external_lex_state = 2}, [1708] = {.lex_state = 46, .external_lex_state = 2}, - [1709] = {.lex_state = 46, .external_lex_state = 2}, - [1710] = {.lex_state = 138}, + [1709] = {.lex_state = 138}, + [1710] = {.lex_state = 46, .external_lex_state = 2}, [1711] = {.lex_state = 46, .external_lex_state = 2}, - [1712] = {.lex_state = 18}, - [1713] = {.lex_state = 631, .external_lex_state = 2}, - [1714] = {.lex_state = 20}, - [1715] = {.lex_state = 140}, - [1716] = {.lex_state = 95}, - [1717] = {.lex_state = 138}, - [1718] = {.lex_state = 138}, - [1719] = {.lex_state = 138}, - [1720] = {.lex_state = 631, .external_lex_state = 2}, - [1721] = {.lex_state = 95}, - [1722] = {.lex_state = 19}, - [1723] = {.lex_state = 95}, + [1712] = {.lex_state = 46, .external_lex_state = 2}, + [1713] = {.lex_state = 574, .external_lex_state = 2}, + [1714] = {.lex_state = 95}, + [1715] = {.lex_state = 138}, + [1716] = {.lex_state = 632, .external_lex_state = 2}, + [1717] = {.lex_state = 20}, + [1718] = {.lex_state = 632, .external_lex_state = 2}, + [1719] = {.lex_state = 183, .external_lex_state = 2}, + [1720] = {.lex_state = 19}, + [1721] = {.lex_state = 140}, + [1722] = {.lex_state = 183, .external_lex_state = 2}, + [1723] = {.lex_state = 142}, [1724] = {.lex_state = 19}, - [1725] = {.lex_state = 95}, - [1726] = {.lex_state = 573, .external_lex_state = 2}, - [1727] = {.lex_state = 183, .external_lex_state = 2}, - [1728] = {.lex_state = 183, .external_lex_state = 2}, - [1729] = {.lex_state = 142}, - [1730] = {.lex_state = 138}, - [1731] = {.lex_state = 95}, - [1732] = {.lex_state = 138}, - [1733] = {.lex_state = 631, .external_lex_state = 2}, - [1734] = {.lex_state = 138}, - [1735] = {.lex_state = 183, .external_lex_state = 2}, - [1736] = {.lex_state = 95}, - [1737] = {.lex_state = 183, .external_lex_state = 2}, - [1738] = {.lex_state = 573, .external_lex_state = 2}, - [1739] = {.lex_state = 144}, - [1740] = {.lex_state = 631, .external_lex_state = 2}, - [1741] = {.lex_state = 631, .external_lex_state = 2}, - [1742] = {.lex_state = 173, .external_lex_state = 2}, - [1743] = {.lex_state = 17}, - [1744] = {.lex_state = 176, .external_lex_state = 2}, - [1745] = {.lex_state = 573, .external_lex_state = 2}, - [1746] = {.lex_state = 573, .external_lex_state = 2}, - [1747] = {.lex_state = 573, .external_lex_state = 2}, - [1748] = {.lex_state = 573, .external_lex_state = 2}, - [1749] = {.lex_state = 573, .external_lex_state = 2}, - [1750] = {.lex_state = 573, .external_lex_state = 2}, - [1751] = {.lex_state = 143}, - [1752] = {.lex_state = 631, .external_lex_state = 2}, - [1753] = {.lex_state = 143}, - [1754] = {.lex_state = 21}, - [1755] = {.lex_state = 183, .external_lex_state = 2}, + [1725] = {.lex_state = 138}, + [1726] = {.lex_state = 138}, + [1727] = {.lex_state = 138}, + [1728] = {.lex_state = 138}, + [1729] = {.lex_state = 95}, + [1730] = {.lex_state = 95}, + [1731] = {.lex_state = 183, .external_lex_state = 2}, + [1732] = {.lex_state = 95}, + [1733] = {.lex_state = 138}, + [1734] = {.lex_state = 632, .external_lex_state = 2}, + [1735] = {.lex_state = 95}, + [1736] = {.lex_state = 173, .external_lex_state = 2}, + [1737] = {.lex_state = 574, .external_lex_state = 2}, + [1738] = {.lex_state = 574, .external_lex_state = 2}, + [1739] = {.lex_state = 574, .external_lex_state = 2}, + [1740] = {.lex_state = 574, .external_lex_state = 2}, + [1741] = {.lex_state = 574, .external_lex_state = 2}, + [1742] = {.lex_state = 95}, + [1743] = {.lex_state = 183, .external_lex_state = 2}, + [1744] = {.lex_state = 183, .external_lex_state = 2}, + [1745] = {.lex_state = 46, .external_lex_state = 2}, + [1746] = {.lex_state = 183, .external_lex_state = 2}, + [1747] = {.lex_state = 183, .external_lex_state = 2}, + [1748] = {.lex_state = 574, .external_lex_state = 2}, + [1749] = {.lex_state = 20}, + [1750] = {.lex_state = 95}, + [1751] = {.lex_state = 46, .external_lex_state = 2}, + [1752] = {.lex_state = 143}, + [1753] = {.lex_state = 632, .external_lex_state = 2}, + [1754] = {.lex_state = 95}, + [1755] = {.lex_state = 143}, [1756] = {.lex_state = 183, .external_lex_state = 2}, - [1757] = {.lex_state = 183, .external_lex_state = 2}, - [1758] = {.lex_state = 183, .external_lex_state = 2}, - [1759] = {.lex_state = 183, .external_lex_state = 2}, - [1760] = {.lex_state = 183, .external_lex_state = 2}, - [1761] = {.lex_state = 631, .external_lex_state = 2}, - [1762] = {.lex_state = 183, .external_lex_state = 2}, - [1763] = {.lex_state = 95}, - [1764] = {.lex_state = 95}, - [1765] = {.lex_state = 631, .external_lex_state = 2}, - [1766] = {.lex_state = 95}, - [1767] = {.lex_state = 95}, - [1768] = {.lex_state = 46, .external_lex_state = 2}, - [1769] = {.lex_state = 46, .external_lex_state = 2}, + [1757] = {.lex_state = 21}, + [1758] = {.lex_state = 95}, + [1759] = {.lex_state = 46, .external_lex_state = 2}, + [1760] = {.lex_state = 95}, + [1761] = {.lex_state = 183, .external_lex_state = 2}, + [1762] = {.lex_state = 144}, + [1763] = {.lex_state = 632, .external_lex_state = 2}, + [1764] = {.lex_state = 632, .external_lex_state = 2}, + [1765] = {.lex_state = 183, .external_lex_state = 2}, + [1766] = {.lex_state = 632, .external_lex_state = 2}, + [1767] = {.lex_state = 183, .external_lex_state = 2}, + [1768] = {.lex_state = 20}, + [1769] = {.lex_state = 183, .external_lex_state = 2}, [1770] = {.lex_state = 20}, - [1771] = {.lex_state = 95}, - [1772] = {.lex_state = 20}, - [1773] = {.lex_state = 46, .external_lex_state = 2}, - [1774] = {.lex_state = 20}, - [1775] = {.lex_state = 183, .external_lex_state = 2}, - [1776] = {.lex_state = 183, .external_lex_state = 2}, - [1777] = {.lex_state = 46, .external_lex_state = 2}, - [1778] = {.lex_state = 175, .external_lex_state = 2}, + [1771] = {.lex_state = 17}, + [1772] = {.lex_state = 176, .external_lex_state = 2}, + [1773] = {.lex_state = 183, .external_lex_state = 2}, + [1774] = {.lex_state = 95}, + [1775] = {.lex_state = 574, .external_lex_state = 2}, + [1776] = {.lex_state = 632, .external_lex_state = 2}, + [1777] = {.lex_state = 141}, + [1778] = {.lex_state = 46, .external_lex_state = 2}, [1779] = {.lex_state = 95}, - [1780] = {.lex_state = 46, .external_lex_state = 2}, - [1781] = {.lex_state = 573, .external_lex_state = 2}, - [1782] = {.lex_state = 573, .external_lex_state = 2}, - [1783] = {.lex_state = 46, .external_lex_state = 2}, - [1784] = {.lex_state = 573, .external_lex_state = 2}, - [1785] = {.lex_state = 95}, + [1780] = {.lex_state = 95}, + [1781] = {.lex_state = 95}, + [1782] = {.lex_state = 95}, + [1783] = {.lex_state = 574, .external_lex_state = 2}, + [1784] = {.lex_state = 574, .external_lex_state = 2}, + [1785] = {.lex_state = 574, .external_lex_state = 2}, [1786] = {.lex_state = 631, .external_lex_state = 2}, - [1787] = {.lex_state = 573, .external_lex_state = 2}, - [1788] = {.lex_state = 46, .external_lex_state = 2}, - [1789] = {.lex_state = 46, .external_lex_state = 2}, - [1790] = {.lex_state = 574, .external_lex_state = 2}, - [1791] = {.lex_state = 573, .external_lex_state = 2}, + [1787] = {.lex_state = 574, .external_lex_state = 2}, + [1788] = {.lex_state = 574, .external_lex_state = 2}, + [1789] = {.lex_state = 574, .external_lex_state = 2}, + [1790] = {.lex_state = 95}, + [1791] = {.lex_state = 95}, [1792] = {.lex_state = 95}, [1793] = {.lex_state = 95}, - [1794] = {.lex_state = 95}, + [1794] = {.lex_state = 575, .external_lex_state = 2}, [1795] = {.lex_state = 95}, - [1796] = {.lex_state = 95}, - [1797] = {.lex_state = 630, .external_lex_state = 2}, - [1798] = {.lex_state = 95}, - [1799] = {.lex_state = 144}, - [1800] = {.lex_state = 631, .external_lex_state = 2}, + [1796] = {.lex_state = 175, .external_lex_state = 2}, + [1797] = {.lex_state = 46, .external_lex_state = 2}, + [1798] = {.lex_state = 175, .external_lex_state = 2}, + [1799] = {.lex_state = 632, .external_lex_state = 2}, + [1800] = {.lex_state = 95}, [1801] = {.lex_state = 95}, - [1802] = {.lex_state = 95}, - [1803] = {.lex_state = 175, .external_lex_state = 2}, - [1804] = {.lex_state = 95}, + [1802] = {.lex_state = 46, .external_lex_state = 2}, + [1803] = {.lex_state = 95}, + [1804] = {.lex_state = 46, .external_lex_state = 2}, [1805] = {.lex_state = 95}, - [1806] = {.lex_state = 95}, - [1807] = {.lex_state = 95}, - [1808] = {.lex_state = 95}, - [1809] = {.lex_state = 144}, - [1810] = {.lex_state = 144}, + [1806] = {.lex_state = 144}, + [1807] = {.lex_state = 144}, + [1808] = {.lex_state = 144}, + [1809] = {.lex_state = 632, .external_lex_state = 2}, + [1810] = {.lex_state = 22}, [1811] = {.lex_state = 22}, - [1812] = {.lex_state = 95}, - [1813] = {.lex_state = 573, .external_lex_state = 2}, - [1814] = {.lex_state = 22}, - [1815] = {.lex_state = 46, .external_lex_state = 2}, - [1816] = {.lex_state = 145}, - [1817] = {.lex_state = 46, .external_lex_state = 2}, + [1812] = {.lex_state = 145}, + [1813] = {.lex_state = 95}, + [1814] = {.lex_state = 46, .external_lex_state = 2}, + [1815] = {.lex_state = 95}, + [1816] = {.lex_state = 95}, + [1817] = {.lex_state = 95}, [1818] = {.lex_state = 46, .external_lex_state = 2}, [1819] = {.lex_state = 46, .external_lex_state = 2}, - [1820] = {.lex_state = 141}, + [1820] = {.lex_state = 46, .external_lex_state = 2}, [1821] = {.lex_state = 46, .external_lex_state = 2}, [1822] = {.lex_state = 46, .external_lex_state = 2}, [1823] = {.lex_state = 46, .external_lex_state = 2}, - [1824] = {.lex_state = 95}, - [1825] = {.lex_state = 23}, - [1826] = {.lex_state = 579}, - [1827] = {.lex_state = 23}, - [1828] = {.lex_state = 23}, - [1829] = {.lex_state = 146}, - [1830] = {.lex_state = 146}, - [1831] = {.lex_state = 23}, - [1832] = {.lex_state = 23}, - [1833] = {.lex_state = 631, .external_lex_state = 2}, - [1834] = {.lex_state = 631, .external_lex_state = 2}, - [1835] = {.lex_state = 95}, - [1836] = {.lex_state = 631, .external_lex_state = 2}, - [1837] = {.lex_state = 630, .external_lex_state = 2}, - [1838] = {.lex_state = 177, .external_lex_state = 2}, + [1824] = {.lex_state = 46, .external_lex_state = 2}, + [1825] = {.lex_state = 95}, + [1826] = {.lex_state = 632, .external_lex_state = 2}, + [1827] = {.lex_state = 95}, + [1828] = {.lex_state = 177, .external_lex_state = 2}, + [1829] = {.lex_state = 632, .external_lex_state = 2}, + [1830] = {.lex_state = 23}, + [1831] = {.lex_state = 580}, + [1832] = {.lex_state = 631, .external_lex_state = 2}, + [1833] = {.lex_state = 23}, + [1834] = {.lex_state = 23}, + [1835] = {.lex_state = 23}, + [1836] = {.lex_state = 146}, + [1837] = {.lex_state = 177, .external_lex_state = 2}, + [1838] = {.lex_state = 632, .external_lex_state = 2}, [1839] = {.lex_state = 177, .external_lex_state = 2}, [1840] = {.lex_state = 177, .external_lex_state = 2}, - [1841] = {.lex_state = 177, .external_lex_state = 2}, + [1841] = {.lex_state = 146}, [1842] = {.lex_state = 95}, - [1843] = {.lex_state = 95}, - [1844] = {.lex_state = 574, .external_lex_state = 2}, + [1843] = {.lex_state = 23}, + [1844] = {.lex_state = 575, .external_lex_state = 2}, [1845] = {.lex_state = 95}, - [1846] = {.lex_state = 628, .external_lex_state = 2}, - [1847] = {.lex_state = 25}, - [1848] = {.lex_state = 147}, - [1849] = {.lex_state = 1183}, - [1850] = {.lex_state = 181, .external_lex_state = 2}, - [1851] = {.lex_state = 628, .external_lex_state = 2}, - [1852] = {.lex_state = 628, .external_lex_state = 2}, - [1853] = {.lex_state = 628, .external_lex_state = 2}, - [1854] = {.lex_state = 95}, - [1855] = {.lex_state = 628, .external_lex_state = 2}, - [1856] = {.lex_state = 628, .external_lex_state = 2}, - [1857] = {.lex_state = 628, .external_lex_state = 2}, - [1858] = {.lex_state = 628, .external_lex_state = 2}, - [1859] = {.lex_state = 271}, - [1860] = {.lex_state = 631, .external_lex_state = 2}, - [1861] = {.lex_state = 1185}, - [1862] = {.lex_state = 631, .external_lex_state = 2}, - [1863] = {.lex_state = 628, .external_lex_state = 2}, - [1864] = {.lex_state = 631, .external_lex_state = 2}, - [1865] = {.lex_state = 628, .external_lex_state = 2}, - [1866] = {.lex_state = 628, .external_lex_state = 2}, - [1867] = {.lex_state = 628, .external_lex_state = 2}, - [1868] = {.lex_state = 95}, - [1869] = {.lex_state = 628, .external_lex_state = 2}, - [1870] = {.lex_state = 147}, - [1871] = {.lex_state = 147}, - [1872] = {.lex_state = 628, .external_lex_state = 2}, - [1873] = {.lex_state = 147}, - [1874] = {.lex_state = 579}, - [1875] = {.lex_state = 628, .external_lex_state = 2}, - [1876] = {.lex_state = 628, .external_lex_state = 2}, - [1877] = {.lex_state = 628, .external_lex_state = 2}, - [1878] = {.lex_state = 147}, - [1879] = {.lex_state = 24}, - [1880] = {.lex_state = 169, .external_lex_state = 2}, - [1881] = {.lex_state = 628, .external_lex_state = 2}, - [1882] = {.lex_state = 271}, - [1883] = {.lex_state = 628, .external_lex_state = 2}, - [1884] = {.lex_state = 628, .external_lex_state = 2}, - [1885] = {.lex_state = 628, .external_lex_state = 2}, - [1886] = {.lex_state = 628, .external_lex_state = 2}, - [1887] = {.lex_state = 628, .external_lex_state = 2}, - [1888] = {.lex_state = 26}, - [1889] = {.lex_state = 182, .external_lex_state = 2}, - [1890] = {.lex_state = 169, .external_lex_state = 2}, - [1891] = {.lex_state = 169, .external_lex_state = 2}, - [1892] = {.lex_state = 169, .external_lex_state = 2}, - [1893] = {.lex_state = 628, .external_lex_state = 2}, + [1846] = {.lex_state = 147}, + [1847] = {.lex_state = 629, .external_lex_state = 2}, + [1848] = {.lex_state = 629, .external_lex_state = 2}, + [1849] = {.lex_state = 181, .external_lex_state = 2}, + [1850] = {.lex_state = 629, .external_lex_state = 2}, + [1851] = {.lex_state = 1184}, + [1852] = {.lex_state = 1186}, + [1853] = {.lex_state = 24}, + [1854] = {.lex_state = 629, .external_lex_state = 2}, + [1855] = {.lex_state = 147}, + [1856] = {.lex_state = 147}, + [1857] = {.lex_state = 272}, + [1858] = {.lex_state = 632, .external_lex_state = 2}, + [1859] = {.lex_state = 580}, + [1860] = {.lex_state = 25}, + [1861] = {.lex_state = 629, .external_lex_state = 2}, + [1862] = {.lex_state = 629, .external_lex_state = 2}, + [1863] = {.lex_state = 629, .external_lex_state = 2}, + [1864] = {.lex_state = 632, .external_lex_state = 2}, + [1865] = {.lex_state = 629, .external_lex_state = 2}, + [1866] = {.lex_state = 632, .external_lex_state = 2}, + [1867] = {.lex_state = 629, .external_lex_state = 2}, + [1868] = {.lex_state = 629, .external_lex_state = 2}, + [1869] = {.lex_state = 147}, + [1870] = {.lex_state = 629, .external_lex_state = 2}, + [1871] = {.lex_state = 629, .external_lex_state = 2}, + [1872] = {.lex_state = 95}, + [1873] = {.lex_state = 629, .external_lex_state = 2}, + [1874] = {.lex_state = 629, .external_lex_state = 2}, + [1875] = {.lex_state = 147}, + [1876] = {.lex_state = 629, .external_lex_state = 2}, + [1877] = {.lex_state = 95}, + [1878] = {.lex_state = 629, .external_lex_state = 2}, + [1879] = {.lex_state = 629, .external_lex_state = 2}, + [1880] = {.lex_state = 629, .external_lex_state = 2}, + [1881] = {.lex_state = 169, .external_lex_state = 2}, + [1882] = {.lex_state = 182, .external_lex_state = 2}, + [1883] = {.lex_state = 629, .external_lex_state = 2}, + [1884] = {.lex_state = 629, .external_lex_state = 2}, + [1885] = {.lex_state = 629, .external_lex_state = 2}, + [1886] = {.lex_state = 169, .external_lex_state = 2}, + [1887] = {.lex_state = 629, .external_lex_state = 2}, + [1888] = {.lex_state = 629, .external_lex_state = 2}, + [1889] = {.lex_state = 629, .external_lex_state = 2}, + [1890] = {.lex_state = 629, .external_lex_state = 2}, + [1891] = {.lex_state = 629, .external_lex_state = 2}, + [1892] = {.lex_state = 629, .external_lex_state = 2}, + [1893] = {.lex_state = 272}, [1894] = {.lex_state = 182, .external_lex_state = 2}, - [1895] = {.lex_state = 169, .external_lex_state = 2}, - [1896] = {.lex_state = 1188}, - [1897] = {.lex_state = 133, .external_lex_state = 2}, - [1898] = {.lex_state = 169, .external_lex_state = 2}, - [1899] = {.lex_state = 628, .external_lex_state = 2}, - [1900] = {.lex_state = 628, .external_lex_state = 2}, - [1901] = {.lex_state = 628, .external_lex_state = 2}, - [1902] = {.lex_state = 1184}, - [1903] = {.lex_state = 628, .external_lex_state = 2}, - [1904] = {.lex_state = 628, .external_lex_state = 2}, - [1905] = {.lex_state = 1186}, - [1906] = {.lex_state = 169, .external_lex_state = 2}, - [1907] = {.lex_state = 148}, - [1908] = {.lex_state = 628, .external_lex_state = 2}, - [1909] = {.lex_state = 628, .external_lex_state = 2}, - [1910] = {.lex_state = 26}, - [1911] = {.lex_state = 628, .external_lex_state = 2}, - [1912] = {.lex_state = 1186}, - [1913] = {.lex_state = 628, .external_lex_state = 2}, - [1914] = {.lex_state = 149}, - [1915] = {.lex_state = 628, .external_lex_state = 2}, - [1916] = {.lex_state = 271}, - [1917] = {.lex_state = 169, .external_lex_state = 2}, - [1918] = {.lex_state = 27}, + [1895] = {.lex_state = 133, .external_lex_state = 2}, + [1896] = {.lex_state = 26}, + [1897] = {.lex_state = 149}, + [1898] = {.lex_state = 629, .external_lex_state = 2}, + [1899] = {.lex_state = 1189}, + [1900] = {.lex_state = 629, .external_lex_state = 2}, + [1901] = {.lex_state = 169, .external_lex_state = 2}, + [1902] = {.lex_state = 169, .external_lex_state = 2}, + [1903] = {.lex_state = 169, .external_lex_state = 2}, + [1904] = {.lex_state = 148}, + [1905] = {.lex_state = 629, .external_lex_state = 2}, + [1906] = {.lex_state = 26}, + [1907] = {.lex_state = 1187}, + [1908] = {.lex_state = 629, .external_lex_state = 2}, + [1909] = {.lex_state = 1187}, + [1910] = {.lex_state = 169, .external_lex_state = 2}, + [1911] = {.lex_state = 1185}, + [1912] = {.lex_state = 629, .external_lex_state = 2}, + [1913] = {.lex_state = 629, .external_lex_state = 2}, + [1914] = {.lex_state = 169, .external_lex_state = 2}, + [1915] = {.lex_state = 629, .external_lex_state = 2}, + [1916] = {.lex_state = 272}, + [1917] = {.lex_state = 171, .external_lex_state = 2}, + [1918] = {.lex_state = 133, .external_lex_state = 2}, [1919] = {.lex_state = 133, .external_lex_state = 2}, - [1920] = {.lex_state = 169, .external_lex_state = 2}, + [1920] = {.lex_state = 133, .external_lex_state = 2}, [1921] = {.lex_state = 133, .external_lex_state = 2}, [1922] = {.lex_state = 133, .external_lex_state = 2}, [1923] = {.lex_state = 133, .external_lex_state = 2}, - [1924] = {.lex_state = 133, .external_lex_state = 2}, - [1925] = {.lex_state = 133, .external_lex_state = 2}, - [1926] = {.lex_state = 163, .external_lex_state = 2}, - [1927] = {.lex_state = 27}, - [1928] = {.lex_state = 271}, - [1929] = {.lex_state = 271}, - [1930] = {.lex_state = 163, .external_lex_state = 2}, - [1931] = {.lex_state = 271}, - [1932] = {.lex_state = 1189}, - [1933] = {.lex_state = 27}, - [1934] = {.lex_state = 27}, + [1924] = {.lex_state = 27}, + [1925] = {.lex_state = 27}, + [1926] = {.lex_state = 27}, + [1927] = {.lex_state = 272}, + [1928] = {.lex_state = 1190}, + [1929] = {.lex_state = 27}, + [1930] = {.lex_state = 27}, + [1931] = {.lex_state = 150}, + [1932] = {.lex_state = 27}, + [1933] = {.lex_state = 150}, + [1934] = {.lex_state = 272}, [1935] = {.lex_state = 27}, [1936] = {.lex_state = 27}, - [1937] = {.lex_state = 271}, - [1938] = {.lex_state = 271}, - [1939] = {.lex_state = 579}, - [1940] = {.lex_state = 1187}, - [1941] = {.lex_state = 1189}, - [1942] = {.lex_state = 27}, - [1943] = {.lex_state = 95}, - [1944] = {.lex_state = 27}, - [1945] = {.lex_state = 27}, - [1946] = {.lex_state = 27}, - [1947] = {.lex_state = 27}, - [1948] = {.lex_state = 171, .external_lex_state = 2}, - [1949] = {.lex_state = 150}, - [1950] = {.lex_state = 27}, - [1951] = {.lex_state = 150}, - [1952] = {.lex_state = 1187}, - [1953] = {.lex_state = 271}, - [1954] = {.lex_state = 1187}, - [1955] = {.lex_state = 579}, - [1956] = {.lex_state = 579}, - [1957] = {.lex_state = 579}, - [1958] = {.lex_state = 27}, - [1959] = {.lex_state = 579}, - [1960] = {.lex_state = 1187}, - [1961] = {.lex_state = 579}, - [1962] = {.lex_state = 579}, - [1963] = {.lex_state = 579}, - [1964] = {.lex_state = 579}, - [1965] = {.lex_state = 271}, - [1966] = {.lex_state = 579}, - [1967] = {.lex_state = 579}, - [1968] = {.lex_state = 579}, - [1969] = {.lex_state = 579}, - [1970] = {.lex_state = 579}, - [1971] = {.lex_state = 579}, - [1972] = {.lex_state = 579}, - [1973] = {.lex_state = 579}, - [1974] = {.lex_state = 579}, - [1975] = {.lex_state = 579}, - [1976] = {.lex_state = 579}, - [1977] = {.lex_state = 579}, - [1978] = {.lex_state = 579}, - [1979] = {.lex_state = 579}, + [1937] = {.lex_state = 27}, + [1938] = {.lex_state = 163, .external_lex_state = 2}, + [1939] = {.lex_state = 95}, + [1940] = {.lex_state = 272}, + [1941] = {.lex_state = 1190}, + [1942] = {.lex_state = 580}, + [1943] = {.lex_state = 1188}, + [1944] = {.lex_state = 1188}, + [1945] = {.lex_state = 1188}, + [1946] = {.lex_state = 169, .external_lex_state = 2}, + [1947] = {.lex_state = 272}, + [1948] = {.lex_state = 272}, + [1949] = {.lex_state = 272}, + [1950] = {.lex_state = 169, .external_lex_state = 2}, + [1951] = {.lex_state = 27}, + [1952] = {.lex_state = 27}, + [1953] = {.lex_state = 27}, + [1954] = {.lex_state = 27}, + [1955] = {.lex_state = 1188}, + [1956] = {.lex_state = 580}, + [1957] = {.lex_state = 580}, + [1958] = {.lex_state = 580}, + [1959] = {.lex_state = 272}, + [1960] = {.lex_state = 580}, + [1961] = {.lex_state = 580}, + [1962] = {.lex_state = 580}, + [1963] = {.lex_state = 580}, + [1964] = {.lex_state = 580}, + [1965] = {.lex_state = 163, .external_lex_state = 2}, + [1966] = {.lex_state = 580}, + [1967] = {.lex_state = 53, .external_lex_state = 2}, + [1968] = {.lex_state = 167, .external_lex_state = 2}, + [1969] = {.lex_state = 151}, + [1970] = {.lex_state = 151}, + [1971] = {.lex_state = 167, .external_lex_state = 2}, + [1972] = {.lex_state = 151}, + [1973] = {.lex_state = 151}, + [1974] = {.lex_state = 164, .external_lex_state = 2}, + [1975] = {.lex_state = 95}, + [1976] = {.lex_state = 1191}, + [1977] = {.lex_state = 95}, + [1978] = {.lex_state = 151}, + [1979] = {.lex_state = 1191}, [1980] = {.lex_state = 579}, - [1981] = {.lex_state = 579}, - [1982] = {.lex_state = 579}, - [1983] = {.lex_state = 579}, - [1984] = {.lex_state = 579}, - [1985] = {.lex_state = 579}, - [1986] = {.lex_state = 579}, - [1987] = {.lex_state = 579}, - [1988] = {.lex_state = 579}, - [1989] = {.lex_state = 579}, - [1990] = {.lex_state = 579}, - [1991] = {.lex_state = 579}, - [1992] = {.lex_state = 579}, - [1993] = {.lex_state = 579}, - [1994] = {.lex_state = 579}, - [1995] = {.lex_state = 579}, - [1996] = {.lex_state = 151}, - [1997] = {.lex_state = 579}, - [1998] = {.lex_state = 151}, - [1999] = {.lex_state = 579}, - [2000] = {.lex_state = 1190}, - [2001] = {.lex_state = 579}, - [2002] = {.lex_state = 151}, - [2003] = {.lex_state = 151}, - [2004] = {.lex_state = 579}, - [2005] = {.lex_state = 579}, - [2006] = {.lex_state = 167, .external_lex_state = 2}, - [2007] = {.lex_state = 579}, - [2008] = {.lex_state = 167, .external_lex_state = 2}, - [2009] = {.lex_state = 579}, - [2010] = {.lex_state = 151}, - [2011] = {.lex_state = 151}, - [2012] = {.lex_state = 579}, - [2013] = {.lex_state = 579}, - [2014] = {.lex_state = 579}, - [2015] = {.lex_state = 579}, - [2016] = {.lex_state = 579}, - [2017] = {.lex_state = 579}, - [2018] = {.lex_state = 579}, - [2019] = {.lex_state = 579}, - [2020] = {.lex_state = 579}, - [2021] = {.lex_state = 579}, - [2022] = {.lex_state = 579}, - [2023] = {.lex_state = 579}, - [2024] = {.lex_state = 579}, - [2025] = {.lex_state = 579}, - [2026] = {.lex_state = 579}, - [2027] = {.lex_state = 579}, - [2028] = {.lex_state = 579}, - [2029] = {.lex_state = 579}, - [2030] = {.lex_state = 579}, - [2031] = {.lex_state = 579}, - [2032] = {.lex_state = 579}, - [2033] = {.lex_state = 579}, - [2034] = {.lex_state = 579}, - [2035] = {.lex_state = 579}, - [2036] = {.lex_state = 27}, - [2037] = {.lex_state = 579}, - [2038] = {.lex_state = 579}, - [2039] = {.lex_state = 579}, - [2040] = {.lex_state = 579}, - [2041] = {.lex_state = 579}, - [2042] = {.lex_state = 579}, - [2043] = {.lex_state = 579}, - [2044] = {.lex_state = 579}, - [2045] = {.lex_state = 579}, - [2046] = {.lex_state = 579}, - [2047] = {.lex_state = 579}, - [2048] = {.lex_state = 579}, - [2049] = {.lex_state = 579}, - [2050] = {.lex_state = 579}, - [2051] = {.lex_state = 579}, - [2052] = {.lex_state = 579}, - [2053] = {.lex_state = 579}, - [2054] = {.lex_state = 579}, - [2055] = {.lex_state = 579}, - [2056] = {.lex_state = 579}, - [2057] = {.lex_state = 579}, - [2058] = {.lex_state = 579}, - [2059] = {.lex_state = 151}, - [2060] = {.lex_state = 271}, - [2061] = {.lex_state = 1190}, - [2062] = {.lex_state = 1190}, - [2063] = {.lex_state = 151}, - [2064] = {.lex_state = 271}, - [2065] = {.lex_state = 167, .external_lex_state = 2}, - [2066] = {.lex_state = 53, .external_lex_state = 2}, - [2067] = {.lex_state = 579}, - [2068] = {.lex_state = 579}, - [2069] = {.lex_state = 579}, - [2070] = {.lex_state = 53, .external_lex_state = 2}, - [2071] = {.lex_state = 1190}, - [2072] = {.lex_state = 578}, - [2073] = {.lex_state = 53, .external_lex_state = 2}, - [2074] = {.lex_state = 46, .external_lex_state = 2}, - [2075] = {.lex_state = 46, .external_lex_state = 2}, - [2076] = {.lex_state = 579}, - [2077] = {.lex_state = 579}, - [2078] = {.lex_state = 164, .external_lex_state = 2}, - [2079] = {.lex_state = 579}, - [2080] = {.lex_state = 579}, - [2081] = {.lex_state = 151}, - [2082] = {.lex_state = 167, .external_lex_state = 2}, - [2083] = {.lex_state = 579}, - [2084] = {.lex_state = 151}, - [2085] = {.lex_state = 151}, - [2086] = {.lex_state = 95}, - [2087] = {.lex_state = 1190}, - [2088] = {.lex_state = 579}, - [2089] = {.lex_state = 579}, - [2090] = {.lex_state = 1190}, - [2091] = {.lex_state = 1190}, + [1981] = {.lex_state = 151}, + [1982] = {.lex_state = 580}, + [1983] = {.lex_state = 580}, + [1984] = {.lex_state = 580}, + [1985] = {.lex_state = 580}, + [1986] = {.lex_state = 580}, + [1987] = {.lex_state = 580}, + [1988] = {.lex_state = 580}, + [1989] = {.lex_state = 580}, + [1990] = {.lex_state = 580}, + [1991] = {.lex_state = 580}, + [1992] = {.lex_state = 580}, + [1993] = {.lex_state = 151}, + [1994] = {.lex_state = 580}, + [1995] = {.lex_state = 1191}, + [1996] = {.lex_state = 1191}, + [1997] = {.lex_state = 580}, + [1998] = {.lex_state = 580}, + [1999] = {.lex_state = 580}, + [2000] = {.lex_state = 580}, + [2001] = {.lex_state = 580}, + [2002] = {.lex_state = 580}, + [2003] = {.lex_state = 580}, + [2004] = {.lex_state = 580}, + [2005] = {.lex_state = 580}, + [2006] = {.lex_state = 580}, + [2007] = {.lex_state = 580}, + [2008] = {.lex_state = 580}, + [2009] = {.lex_state = 580}, + [2010] = {.lex_state = 580}, + [2011] = {.lex_state = 580}, + [2012] = {.lex_state = 580}, + [2013] = {.lex_state = 580}, + [2014] = {.lex_state = 580}, + [2015] = {.lex_state = 580}, + [2016] = {.lex_state = 580}, + [2017] = {.lex_state = 580}, + [2018] = {.lex_state = 580}, + [2019] = {.lex_state = 580}, + [2020] = {.lex_state = 580}, + [2021] = {.lex_state = 580}, + [2022] = {.lex_state = 580}, + [2023] = {.lex_state = 580}, + [2024] = {.lex_state = 580}, + [2025] = {.lex_state = 580}, + [2026] = {.lex_state = 580}, + [2027] = {.lex_state = 580}, + [2028] = {.lex_state = 580}, + [2029] = {.lex_state = 580}, + [2030] = {.lex_state = 580}, + [2031] = {.lex_state = 580}, + [2032] = {.lex_state = 580}, + [2033] = {.lex_state = 167, .external_lex_state = 2}, + [2034] = {.lex_state = 580}, + [2035] = {.lex_state = 580}, + [2036] = {.lex_state = 580}, + [2037] = {.lex_state = 580}, + [2038] = {.lex_state = 580}, + [2039] = {.lex_state = 580}, + [2040] = {.lex_state = 580}, + [2041] = {.lex_state = 580}, + [2042] = {.lex_state = 580}, + [2043] = {.lex_state = 580}, + [2044] = {.lex_state = 580}, + [2045] = {.lex_state = 580}, + [2046] = {.lex_state = 580}, + [2047] = {.lex_state = 580}, + [2048] = {.lex_state = 580}, + [2049] = {.lex_state = 580}, + [2050] = {.lex_state = 580}, + [2051] = {.lex_state = 580}, + [2052] = {.lex_state = 53, .external_lex_state = 2}, + [2053] = {.lex_state = 580}, + [2054] = {.lex_state = 580}, + [2055] = {.lex_state = 580}, + [2056] = {.lex_state = 580}, + [2057] = {.lex_state = 580}, + [2058] = {.lex_state = 580}, + [2059] = {.lex_state = 580}, + [2060] = {.lex_state = 580}, + [2061] = {.lex_state = 580}, + [2062] = {.lex_state = 580}, + [2063] = {.lex_state = 580}, + [2064] = {.lex_state = 580}, + [2065] = {.lex_state = 580}, + [2066] = {.lex_state = 580}, + [2067] = {.lex_state = 580}, + [2068] = {.lex_state = 580}, + [2069] = {.lex_state = 580}, + [2070] = {.lex_state = 580}, + [2071] = {.lex_state = 580}, + [2072] = {.lex_state = 580}, + [2073] = {.lex_state = 580}, + [2074] = {.lex_state = 580}, + [2075] = {.lex_state = 580}, + [2076] = {.lex_state = 580}, + [2077] = {.lex_state = 580}, + [2078] = {.lex_state = 580}, + [2079] = {.lex_state = 580}, + [2080] = {.lex_state = 580}, + [2081] = {.lex_state = 46, .external_lex_state = 2}, + [2082] = {.lex_state = 151}, + [2083] = {.lex_state = 1191}, + [2084] = {.lex_state = 164, .external_lex_state = 2}, + [2085] = {.lex_state = 167, .external_lex_state = 2}, + [2086] = {.lex_state = 168, .external_lex_state = 2}, + [2087] = {.lex_state = 46, .external_lex_state = 2}, + [2088] = {.lex_state = 151}, + [2089] = {.lex_state = 151}, + [2090] = {.lex_state = 580}, + [2091] = {.lex_state = 164, .external_lex_state = 2}, [2092] = {.lex_state = 164, .external_lex_state = 2}, - [2093] = {.lex_state = 167, .external_lex_state = 2}, - [2094] = {.lex_state = 1190}, - [2095] = {.lex_state = 1190}, - [2096] = {.lex_state = 164, .external_lex_state = 2}, - [2097] = {.lex_state = 164, .external_lex_state = 2}, - [2098] = {.lex_state = 579}, - [2099] = {.lex_state = 164, .external_lex_state = 2}, - [2100] = {.lex_state = 579}, - [2101] = {.lex_state = 579}, - [2102] = {.lex_state = 579}, - [2103] = {.lex_state = 579}, - [2104] = {.lex_state = 168, .external_lex_state = 2}, - [2105] = {.lex_state = 134, .external_lex_state = 2}, - [2106] = {.lex_state = 1190}, - [2107] = {.lex_state = 151}, - [2108] = {.lex_state = 151}, - [2109] = {.lex_state = 95}, - [2110] = {.lex_state = 579}, - [2111] = {.lex_state = 164, .external_lex_state = 2}, + [2093] = {.lex_state = 580}, + [2094] = {.lex_state = 272}, + [2095] = {.lex_state = 580}, + [2096] = {.lex_state = 272}, + [2097] = {.lex_state = 151}, + [2098] = {.lex_state = 134, .external_lex_state = 2}, + [2099] = {.lex_state = 151}, + [2100] = {.lex_state = 151}, + [2101] = {.lex_state = 164, .external_lex_state = 2}, + [2102] = {.lex_state = 27}, + [2103] = {.lex_state = 1191}, + [2104] = {.lex_state = 1191}, + [2105] = {.lex_state = 1191}, + [2106] = {.lex_state = 167, .external_lex_state = 2}, + [2107] = {.lex_state = 1191}, + [2108] = {.lex_state = 1191}, + [2109] = {.lex_state = 53, .external_lex_state = 2}, + [2110] = {.lex_state = 580}, + [2111] = {.lex_state = 174, .external_lex_state = 2}, [2112] = {.lex_state = 174, .external_lex_state = 2}, - [2113] = {.lex_state = 53, .external_lex_state = 2}, - [2114] = {.lex_state = 167, .external_lex_state = 2}, - [2115] = {.lex_state = 579}, - [2116] = {.lex_state = 579}, - [2117] = {.lex_state = 46, .external_lex_state = 2}, - [2118] = {.lex_state = 174, .external_lex_state = 2}, - [2119] = {.lex_state = 579}, - [2120] = {.lex_state = 174, .external_lex_state = 2}, - [2121] = {.lex_state = 174, .external_lex_state = 2}, - [2122] = {.lex_state = 174, .external_lex_state = 2}, - [2123] = {.lex_state = 169, .external_lex_state = 2}, - [2124] = {.lex_state = 579}, - [2125] = {.lex_state = 579}, - [2126] = {.lex_state = 174, .external_lex_state = 2}, - [2127] = {.lex_state = 579}, - [2128] = {.lex_state = 151}, - [2129] = {.lex_state = 164, .external_lex_state = 2}, - [2130] = {.lex_state = 169, .external_lex_state = 2}, - [2131] = {.lex_state = 95}, - [2132] = {.lex_state = 169, .external_lex_state = 2}, - [2133] = {.lex_state = 167, .external_lex_state = 2}, - [2134] = {.lex_state = 174, .external_lex_state = 2}, + [2113] = {.lex_state = 169, .external_lex_state = 2}, + [2114] = {.lex_state = 174, .external_lex_state = 2}, + [2115] = {.lex_state = 169, .external_lex_state = 2}, + [2116] = {.lex_state = 164, .external_lex_state = 2}, + [2117] = {.lex_state = 53, .external_lex_state = 2}, + [2118] = {.lex_state = 164, .external_lex_state = 2}, + [2119] = {.lex_state = 174, .external_lex_state = 2}, + [2120] = {.lex_state = 580}, + [2121] = {.lex_state = 580}, + [2122] = {.lex_state = 169, .external_lex_state = 2}, + [2123] = {.lex_state = 174, .external_lex_state = 2}, + [2124] = {.lex_state = 167, .external_lex_state = 2}, + [2125] = {.lex_state = 167, .external_lex_state = 2}, + [2126] = {.lex_state = 580}, + [2127] = {.lex_state = 580}, + [2128] = {.lex_state = 46, .external_lex_state = 2}, + [2129] = {.lex_state = 95}, + [2130] = {.lex_state = 580}, + [2131] = {.lex_state = 580}, + [2132] = {.lex_state = 174, .external_lex_state = 2}, + [2133] = {.lex_state = 174, .external_lex_state = 2}, + [2134] = {.lex_state = 151}, [2135] = {.lex_state = 46, .external_lex_state = 2}, - [2136] = {.lex_state = 46, .external_lex_state = 2}, - [2137] = {.lex_state = 46, .external_lex_state = 2}, + [2136] = {.lex_state = 53, .external_lex_state = 2}, + [2137] = {.lex_state = 50, .external_lex_state = 2}, [2138] = {.lex_state = 46, .external_lex_state = 2}, - [2139] = {.lex_state = 579}, + [2139] = {.lex_state = 580}, [2140] = {.lex_state = 46, .external_lex_state = 2}, - [2141] = {.lex_state = 579}, - [2142] = {.lex_state = 46, .external_lex_state = 2}, - [2143] = {.lex_state = 579}, - [2144] = {.lex_state = 579}, - [2145] = {.lex_state = 579}, - [2146] = {.lex_state = 579}, - [2147] = {.lex_state = 579}, - [2148] = {.lex_state = 5, .external_lex_state = 2}, - [2149] = {.lex_state = 579}, - [2150] = {.lex_state = 579}, - [2151] = {.lex_state = 46, .external_lex_state = 2}, - [2152] = {.lex_state = 579}, - [2153] = {.lex_state = 46, .external_lex_state = 2}, - [2154] = {.lex_state = 46, .external_lex_state = 2}, - [2155] = {.lex_state = 46, .external_lex_state = 2}, - [2156] = {.lex_state = 50, .external_lex_state = 2}, + [2141] = {.lex_state = 46, .external_lex_state = 2}, + [2142] = {.lex_state = 580}, + [2143] = {.lex_state = 580}, + [2144] = {.lex_state = 580}, + [2145] = {.lex_state = 580}, + [2146] = {.lex_state = 580}, + [2147] = {.lex_state = 580}, + [2148] = {.lex_state = 580}, + [2149] = {.lex_state = 580}, + [2150] = {.lex_state = 580}, + [2151] = {.lex_state = 580}, + [2152] = {.lex_state = 580}, + [2153] = {.lex_state = 580}, + [2154] = {.lex_state = 580}, + [2155] = {.lex_state = 580}, + [2156] = {.lex_state = 580}, [2157] = {.lex_state = 46, .external_lex_state = 2}, [2158] = {.lex_state = 46, .external_lex_state = 2}, - [2159] = {.lex_state = 579}, + [2159] = {.lex_state = 1192}, [2160] = {.lex_state = 46, .external_lex_state = 2}, [2161] = {.lex_state = 46, .external_lex_state = 2}, [2162] = {.lex_state = 46, .external_lex_state = 2}, @@ -35348,106 +35384,106 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2167] = {.lex_state = 46, .external_lex_state = 2}, [2168] = {.lex_state = 46, .external_lex_state = 2}, [2169] = {.lex_state = 46, .external_lex_state = 2}, - [2170] = {.lex_state = 579}, - [2171] = {.lex_state = 579}, - [2172] = {.lex_state = 579}, - [2173] = {.lex_state = 579}, - [2174] = {.lex_state = 579}, - [2175] = {.lex_state = 579}, - [2176] = {.lex_state = 579}, - [2177] = {.lex_state = 579}, - [2178] = {.lex_state = 579}, - [2179] = {.lex_state = 579}, - [2180] = {.lex_state = 579}, - [2181] = {.lex_state = 579}, - [2182] = {.lex_state = 1191}, - [2183] = {.lex_state = 46, .external_lex_state = 2}, - [2184] = {.lex_state = 46, .external_lex_state = 2}, - [2185] = {.lex_state = 5, .external_lex_state = 2}, - [2186] = {.lex_state = 46, .external_lex_state = 2}, + [2170] = {.lex_state = 46, .external_lex_state = 2}, + [2171] = {.lex_state = 46, .external_lex_state = 2}, + [2172] = {.lex_state = 46, .external_lex_state = 2}, + [2173] = {.lex_state = 46, .external_lex_state = 2}, + [2174] = {.lex_state = 46, .external_lex_state = 2}, + [2175] = {.lex_state = 580}, + [2176] = {.lex_state = 46, .external_lex_state = 2}, + [2177] = {.lex_state = 46, .external_lex_state = 2}, + [2178] = {.lex_state = 46, .external_lex_state = 2}, + [2179] = {.lex_state = 46, .external_lex_state = 2}, + [2180] = {.lex_state = 46, .external_lex_state = 2}, + [2181] = {.lex_state = 46, .external_lex_state = 2}, + [2182] = {.lex_state = 580}, + [2183] = {.lex_state = 1192}, + [2184] = {.lex_state = 580}, + [2185] = {.lex_state = 1192}, + [2186] = {.lex_state = 580}, [2187] = {.lex_state = 46, .external_lex_state = 2}, [2188] = {.lex_state = 46, .external_lex_state = 2}, - [2189] = {.lex_state = 46, .external_lex_state = 2}, + [2189] = {.lex_state = 1192}, [2190] = {.lex_state = 46, .external_lex_state = 2}, - [2191] = {.lex_state = 46, .external_lex_state = 2}, + [2191] = {.lex_state = 1192}, [2192] = {.lex_state = 46, .external_lex_state = 2}, - [2193] = {.lex_state = 5, .external_lex_state = 2}, - [2194] = {.lex_state = 46, .external_lex_state = 2}, - [2195] = {.lex_state = 46, .external_lex_state = 2}, - [2196] = {.lex_state = 46, .external_lex_state = 2}, - [2197] = {.lex_state = 46, .external_lex_state = 2}, + [2193] = {.lex_state = 580}, + [2194] = {.lex_state = 1192}, + [2195] = {.lex_state = 580}, + [2196] = {.lex_state = 1192}, + [2197] = {.lex_state = 1192}, [2198] = {.lex_state = 46, .external_lex_state = 2}, [2199] = {.lex_state = 46, .external_lex_state = 2}, - [2200] = {.lex_state = 46, .external_lex_state = 2}, + [2200] = {.lex_state = 580}, [2201] = {.lex_state = 46, .external_lex_state = 2}, - [2202] = {.lex_state = 1191}, + [2202] = {.lex_state = 46, .external_lex_state = 2}, [2203] = {.lex_state = 46, .external_lex_state = 2}, - [2204] = {.lex_state = 5, .external_lex_state = 2}, - [2205] = {.lex_state = 46, .external_lex_state = 2}, - [2206] = {.lex_state = 1191}, - [2207] = {.lex_state = 1191}, - [2208] = {.lex_state = 1191}, - [2209] = {.lex_state = 1191}, - [2210] = {.lex_state = 1191}, - [2211] = {.lex_state = 1191}, - [2212] = {.lex_state = 53, .external_lex_state = 2}, - [2213] = {.lex_state = 46, .external_lex_state = 2}, - [2214] = {.lex_state = 579}, - [2215] = {.lex_state = 5, .external_lex_state = 2}, - [2216] = {.lex_state = 579}, + [2204] = {.lex_state = 46, .external_lex_state = 2}, + [2205] = {.lex_state = 580}, + [2206] = {.lex_state = 46, .external_lex_state = 2}, + [2207] = {.lex_state = 46, .external_lex_state = 2}, + [2208] = {.lex_state = 46, .external_lex_state = 2}, + [2209] = {.lex_state = 46, .external_lex_state = 2}, + [2210] = {.lex_state = 46, .external_lex_state = 2}, + [2211] = {.lex_state = 5, .external_lex_state = 2}, + [2212] = {.lex_state = 5, .external_lex_state = 2}, + [2213] = {.lex_state = 579}, + [2214] = {.lex_state = 580}, + [2215] = {.lex_state = 580}, + [2216] = {.lex_state = 5, .external_lex_state = 2}, [2217] = {.lex_state = 5, .external_lex_state = 2}, - [2218] = {.lex_state = 579}, - [2219] = {.lex_state = 50, .external_lex_state = 2}, - [2220] = {.lex_state = 579}, - [2221] = {.lex_state = 579}, - [2222] = {.lex_state = 579}, - [2223] = {.lex_state = 578}, - [2224] = {.lex_state = 579}, - [2225] = {.lex_state = 154, .external_lex_state = 2}, - [2226] = {.lex_state = 154, .external_lex_state = 2}, - [2227] = {.lex_state = 154, .external_lex_state = 2}, - [2228] = {.lex_state = 578}, - [2229] = {.lex_state = 154, .external_lex_state = 2}, + [2218] = {.lex_state = 5, .external_lex_state = 2}, + [2219] = {.lex_state = 580}, + [2220] = {.lex_state = 5, .external_lex_state = 2}, + [2221] = {.lex_state = 5, .external_lex_state = 2}, + [2222] = {.lex_state = 580}, + [2223] = {.lex_state = 50, .external_lex_state = 2}, + [2224] = {.lex_state = 5, .external_lex_state = 2}, + [2225] = {.lex_state = 580}, + [2226] = {.lex_state = 580}, + [2227] = {.lex_state = 5, .external_lex_state = 2}, + [2228] = {.lex_state = 154, .external_lex_state = 2}, + [2229] = {.lex_state = 579}, [2230] = {.lex_state = 54, .external_lex_state = 2}, - [2231] = {.lex_state = 576}, - [2232] = {.lex_state = 576}, - [2233] = {.lex_state = 37, .external_lex_state = 2}, - [2234] = {.lex_state = 576}, - [2235] = {.lex_state = 156, .external_lex_state = 2}, + [2231] = {.lex_state = 154, .external_lex_state = 2}, + [2232] = {.lex_state = 154, .external_lex_state = 2}, + [2233] = {.lex_state = 154, .external_lex_state = 2}, + [2234] = {.lex_state = 577}, + [2235] = {.lex_state = 38, .external_lex_state = 2}, [2236] = {.lex_state = 156, .external_lex_state = 2}, [2237] = {.lex_state = 156, .external_lex_state = 2}, - [2238] = {.lex_state = 154, .external_lex_state = 2}, - [2239] = {.lex_state = 576}, + [2238] = {.lex_state = 156, .external_lex_state = 2}, + [2239] = {.lex_state = 37, .external_lex_state = 2}, [2240] = {.lex_state = 156, .external_lex_state = 2}, - [2241] = {.lex_state = 156, .external_lex_state = 2}, - [2242] = {.lex_state = 54, .external_lex_state = 2}, - [2243] = {.lex_state = 576}, - [2244] = {.lex_state = 154, .external_lex_state = 2}, - [2245] = {.lex_state = 576}, + [2241] = {.lex_state = 54, .external_lex_state = 2}, + [2242] = {.lex_state = 577}, + [2243] = {.lex_state = 577}, + [2244] = {.lex_state = 156, .external_lex_state = 2}, + [2245] = {.lex_state = 154, .external_lex_state = 2}, [2246] = {.lex_state = 156, .external_lex_state = 2}, - [2247] = {.lex_state = 38, .external_lex_state = 2}, - [2248] = {.lex_state = 156, .external_lex_state = 2}, + [2247] = {.lex_state = 577}, + [2248] = {.lex_state = 577}, [2249] = {.lex_state = 156, .external_lex_state = 2}, - [2250] = {.lex_state = 38, .external_lex_state = 2}, - [2251] = {.lex_state = 156, .external_lex_state = 2}, - [2252] = {.lex_state = 37, .external_lex_state = 2}, - [2253] = {.lex_state = 578}, - [2254] = {.lex_state = 38, .external_lex_state = 2}, - [2255] = {.lex_state = 578}, - [2256] = {.lex_state = 578}, - [2257] = {.lex_state = 39, .external_lex_state = 2}, - [2258] = {.lex_state = 578}, - [2259] = {.lex_state = 39, .external_lex_state = 2}, - [2260] = {.lex_state = 578}, - [2261] = {.lex_state = 578}, - [2262] = {.lex_state = 97}, - [2263] = {.lex_state = 13}, - [2264] = {.lex_state = 39, .external_lex_state = 2}, - [2265] = {.lex_state = 39, .external_lex_state = 2}, - [2266] = {.lex_state = 39, .external_lex_state = 2}, - [2267] = {.lex_state = 579}, + [2250] = {.lex_state = 577}, + [2251] = {.lex_state = 154, .external_lex_state = 2}, + [2252] = {.lex_state = 156, .external_lex_state = 2}, + [2253] = {.lex_state = 38, .external_lex_state = 2}, + [2254] = {.lex_state = 156, .external_lex_state = 2}, + [2255] = {.lex_state = 37, .external_lex_state = 2}, + [2256] = {.lex_state = 579}, + [2257] = {.lex_state = 38, .external_lex_state = 2}, + [2258] = {.lex_state = 579}, + [2259] = {.lex_state = 579}, + [2260] = {.lex_state = 579}, + [2261] = {.lex_state = 579}, + [2262] = {.lex_state = 39, .external_lex_state = 2}, + [2263] = {.lex_state = 39, .external_lex_state = 2}, + [2264] = {.lex_state = 579}, + [2265] = {.lex_state = 97}, + [2266] = {.lex_state = 13}, + [2267] = {.lex_state = 39, .external_lex_state = 2}, [2268] = {.lex_state = 39, .external_lex_state = 2}, - [2269] = {.lex_state = 39, .external_lex_state = 2}, + [2269] = {.lex_state = 580}, [2270] = {.lex_state = 39, .external_lex_state = 2}, [2271] = {.lex_state = 39, .external_lex_state = 2}, [2272] = {.lex_state = 39, .external_lex_state = 2}, @@ -35460,11 +35496,11 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2279] = {.lex_state = 39, .external_lex_state = 2}, [2280] = {.lex_state = 39, .external_lex_state = 2}, [2281] = {.lex_state = 39, .external_lex_state = 2}, - [2282] = {.lex_state = 634}, - [2283] = {.lex_state = 579}, - [2284] = {.lex_state = 579}, - [2285] = {.lex_state = 579}, - [2286] = {.lex_state = 579}, + [2282] = {.lex_state = 39, .external_lex_state = 2}, + [2283] = {.lex_state = 39, .external_lex_state = 2}, + [2284] = {.lex_state = 39, .external_lex_state = 2}, + [2285] = {.lex_state = 39, .external_lex_state = 2}, + [2286] = {.lex_state = 39, .external_lex_state = 2}, [2287] = {.lex_state = 39, .external_lex_state = 2}, [2288] = {.lex_state = 39, .external_lex_state = 2}, [2289] = {.lex_state = 39, .external_lex_state = 2}, @@ -35472,2975 +35508,2974 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2291] = {.lex_state = 39, .external_lex_state = 2}, [2292] = {.lex_state = 39, .external_lex_state = 2}, [2293] = {.lex_state = 39, .external_lex_state = 2}, - [2294] = {.lex_state = 39, .external_lex_state = 2}, - [2295] = {.lex_state = 39, .external_lex_state = 2}, - [2296] = {.lex_state = 4, .external_lex_state = 2}, - [2297] = {.lex_state = 4, .external_lex_state = 2}, + [2294] = {.lex_state = 580}, + [2295] = {.lex_state = 580}, + [2296] = {.lex_state = 580}, + [2297] = {.lex_state = 580}, [2298] = {.lex_state = 635}, - [2299] = {.lex_state = 582}, + [2299] = {.lex_state = 635}, [2300] = {.lex_state = 4, .external_lex_state = 2}, - [2301] = {.lex_state = 4, .external_lex_state = 2}, - [2302] = {.lex_state = 4, .external_lex_state = 2}, - [2303] = {.lex_state = 13}, - [2304] = {.lex_state = 635}, - [2305] = {.lex_state = 634}, - [2306] = {.lex_state = 1, .external_lex_state = 2}, - [2307] = {.lex_state = 4, .external_lex_state = 2}, - [2308] = {.lex_state = 39, .external_lex_state = 2}, - [2309] = {.lex_state = 633}, - [2310] = {.lex_state = 1, .external_lex_state = 2}, - [2311] = {.lex_state = 1, .external_lex_state = 2}, - [2312] = {.lex_state = 1, .external_lex_state = 2}, - [2313] = {.lex_state = 635}, - [2314] = {.lex_state = 1, .external_lex_state = 2}, - [2315] = {.lex_state = 1, .external_lex_state = 2}, - [2316] = {.lex_state = 1, .external_lex_state = 2}, - [2317] = {.lex_state = 635}, - [2318] = {.lex_state = 582}, - [2319] = {.lex_state = 582}, - [2320] = {.lex_state = 582}, - [2321] = {.lex_state = 582}, - [2322] = {.lex_state = 39, .external_lex_state = 2}, - [2323] = {.lex_state = 39, .external_lex_state = 2}, - [2324] = {.lex_state = 39, .external_lex_state = 2}, - [2325] = {.lex_state = 39, .external_lex_state = 2}, - [2326] = {.lex_state = 39, .external_lex_state = 2}, - [2327] = {.lex_state = 638}, - [2328] = {.lex_state = 642}, - [2329] = {.lex_state = 4, .external_lex_state = 2}, - [2330] = {.lex_state = 582}, - [2331] = {.lex_state = 39, .external_lex_state = 2}, - [2332] = {.lex_state = 39, .external_lex_state = 2}, - [2333] = {.lex_state = 39, .external_lex_state = 2}, - [2334] = {.lex_state = 39, .external_lex_state = 2}, + [2301] = {.lex_state = 1, .external_lex_state = 2}, + [2302] = {.lex_state = 636}, + [2303] = {.lex_state = 4, .external_lex_state = 2}, + [2304] = {.lex_state = 4, .external_lex_state = 2}, + [2305] = {.lex_state = 583}, + [2306] = {.lex_state = 4, .external_lex_state = 2}, + [2307] = {.lex_state = 13}, + [2308] = {.lex_state = 4, .external_lex_state = 2}, + [2309] = {.lex_state = 636}, + [2310] = {.lex_state = 39, .external_lex_state = 2}, + [2311] = {.lex_state = 4, .external_lex_state = 2}, + [2312] = {.lex_state = 39, .external_lex_state = 2}, + [2313] = {.lex_state = 39, .external_lex_state = 2}, + [2314] = {.lex_state = 39, .external_lex_state = 2}, + [2315] = {.lex_state = 39, .external_lex_state = 2}, + [2316] = {.lex_state = 39, .external_lex_state = 2}, + [2317] = {.lex_state = 39, .external_lex_state = 2}, + [2318] = {.lex_state = 39, .external_lex_state = 2}, + [2319] = {.lex_state = 1, .external_lex_state = 2}, + [2320] = {.lex_state = 1, .external_lex_state = 2}, + [2321] = {.lex_state = 1, .external_lex_state = 2}, + [2322] = {.lex_state = 639}, + [2323] = {.lex_state = 1, .external_lex_state = 2}, + [2324] = {.lex_state = 1, .external_lex_state = 2}, + [2325] = {.lex_state = 583}, + [2326] = {.lex_state = 636}, + [2327] = {.lex_state = 1, .external_lex_state = 2}, + [2328] = {.lex_state = 583}, + [2329] = {.lex_state = 583}, + [2330] = {.lex_state = 583}, + [2331] = {.lex_state = 636}, + [2332] = {.lex_state = 583}, + [2333] = {.lex_state = 634}, + [2334] = {.lex_state = 643}, [2335] = {.lex_state = 39, .external_lex_state = 2}, [2336] = {.lex_state = 39, .external_lex_state = 2}, - [2337] = {.lex_state = 7, .external_lex_state = 2}, - [2338] = {.lex_state = 636}, - [2339] = {.lex_state = 5, .external_lex_state = 2}, - [2340] = {.lex_state = 638}, - [2341] = {.lex_state = 642}, - [2342] = {.lex_state = 3, .external_lex_state = 2}, - [2343] = {.lex_state = 633}, - [2344] = {.lex_state = 646}, - [2345] = {.lex_state = 644}, - [2346] = {.lex_state = 644}, - [2347] = {.lex_state = 633}, - [2348] = {.lex_state = 5, .external_lex_state = 2}, - [2349] = {.lex_state = 582}, - [2350] = {.lex_state = 582}, - [2351] = {.lex_state = 582}, - [2352] = {.lex_state = 582}, - [2353] = {.lex_state = 636}, - [2354] = {.lex_state = 2, .external_lex_state = 2}, - [2355] = {.lex_state = 6, .external_lex_state = 2}, - [2356] = {.lex_state = 6, .external_lex_state = 2}, - [2357] = {.lex_state = 5, .external_lex_state = 2}, - [2358] = {.lex_state = 636}, - [2359] = {.lex_state = 5, .external_lex_state = 2}, - [2360] = {.lex_state = 5, .external_lex_state = 2}, - [2361] = {.lex_state = 644}, - [2362] = {.lex_state = 639}, + [2337] = {.lex_state = 4, .external_lex_state = 2}, + [2338] = {.lex_state = 39, .external_lex_state = 2}, + [2339] = {.lex_state = 39, .external_lex_state = 2}, + [2340] = {.lex_state = 637}, + [2341] = {.lex_state = 5, .external_lex_state = 2}, + [2342] = {.lex_state = 5, .external_lex_state = 2}, + [2343] = {.lex_state = 2, .external_lex_state = 2}, + [2344] = {.lex_state = 6, .external_lex_state = 2}, + [2345] = {.lex_state = 645}, + [2346] = {.lex_state = 634}, + [2347] = {.lex_state = 634}, + [2348] = {.lex_state = 7, .external_lex_state = 2}, + [2349] = {.lex_state = 647}, + [2350] = {.lex_state = 6, .external_lex_state = 2}, + [2351] = {.lex_state = 639}, + [2352] = {.lex_state = 643}, + [2353] = {.lex_state = 637}, + [2354] = {.lex_state = 583}, + [2355] = {.lex_state = 583}, + [2356] = {.lex_state = 583}, + [2357] = {.lex_state = 583}, + [2358] = {.lex_state = 3, .external_lex_state = 2}, + [2359] = {.lex_state = 645}, + [2360] = {.lex_state = 640}, + [2361] = {.lex_state = 5, .external_lex_state = 2}, + [2362] = {.lex_state = 634}, [2363] = {.lex_state = 5, .external_lex_state = 2}, - [2364] = {.lex_state = 640}, - [2365] = {.lex_state = 5, .external_lex_state = 2}, - [2366] = {.lex_state = 646}, - [2367] = {.lex_state = 7, .external_lex_state = 2}, + [2364] = {.lex_state = 5, .external_lex_state = 2}, + [2365] = {.lex_state = 634}, + [2366] = {.lex_state = 634}, + [2367] = {.lex_state = 637}, [2368] = {.lex_state = 4, .external_lex_state = 2}, - [2369] = {.lex_state = 636}, - [2370] = {.lex_state = 7, .external_lex_state = 2}, - [2371] = {.lex_state = 7, .external_lex_state = 2}, - [2372] = {.lex_state = 646}, - [2373] = {.lex_state = 4, .external_lex_state = 2}, - [2374] = {.lex_state = 5, .external_lex_state = 2}, - [2375] = {.lex_state = 646}, - [2376] = {.lex_state = 646}, - [2377] = {.lex_state = 643}, - [2378] = {.lex_state = 648}, + [2369] = {.lex_state = 641}, + [2370] = {.lex_state = 634}, + [2371] = {.lex_state = 647}, + [2372] = {.lex_state = 5, .external_lex_state = 2}, + [2373] = {.lex_state = 5, .external_lex_state = 2}, + [2374] = {.lex_state = 7, .external_lex_state = 2}, + [2375] = {.lex_state = 7, .external_lex_state = 2}, + [2376] = {.lex_state = 5, .external_lex_state = 2}, + [2377] = {.lex_state = 647}, + [2378] = {.lex_state = 5, .external_lex_state = 2}, [2379] = {.lex_state = 5, .external_lex_state = 2}, - [2380] = {.lex_state = 7, .external_lex_state = 2}, - [2381] = {.lex_state = 7, .external_lex_state = 2}, - [2382] = {.lex_state = 7, .external_lex_state = 2}, + [2380] = {.lex_state = 647}, + [2381] = {.lex_state = 637}, + [2382] = {.lex_state = 634}, [2383] = {.lex_state = 7, .external_lex_state = 2}, - [2384] = {.lex_state = 4, .external_lex_state = 2}, - [2385] = {.lex_state = 633}, - [2386] = {.lex_state = 579}, - [2387] = {.lex_state = 633}, - [2388] = {.lex_state = 633}, - [2389] = {.lex_state = 579}, - [2390] = {.lex_state = 633}, - [2391] = {.lex_state = 7, .external_lex_state = 2}, + [2384] = {.lex_state = 7, .external_lex_state = 2}, + [2385] = {.lex_state = 7, .external_lex_state = 2}, + [2386] = {.lex_state = 7, .external_lex_state = 2}, + [2387] = {.lex_state = 645}, + [2388] = {.lex_state = 7, .external_lex_state = 2}, + [2389] = {.lex_state = 647}, + [2390] = {.lex_state = 644}, + [2391] = {.lex_state = 580}, [2392] = {.lex_state = 7, .external_lex_state = 2}, - [2393] = {.lex_state = 644}, - [2394] = {.lex_state = 633}, - [2395] = {.lex_state = 5, .external_lex_state = 2}, - [2396] = {.lex_state = 5, .external_lex_state = 2}, - [2397] = {.lex_state = 5, .external_lex_state = 2}, - [2398] = {.lex_state = 650}, - [2399] = {.lex_state = 643}, + [2393] = {.lex_state = 580}, + [2394] = {.lex_state = 649}, + [2395] = {.lex_state = 4, .external_lex_state = 2}, + [2396] = {.lex_state = 7, .external_lex_state = 2}, + [2397] = {.lex_state = 4, .external_lex_state = 2}, + [2398] = {.lex_state = 645}, + [2399] = {.lex_state = 577}, [2400] = {.lex_state = 5, .external_lex_state = 2}, - [2401] = {.lex_state = 5, .external_lex_state = 2}, - [2402] = {.lex_state = 578}, - [2403] = {.lex_state = 640}, - [2404] = {.lex_state = 633}, - [2405] = {.lex_state = 5, .external_lex_state = 2}, - [2406] = {.lex_state = 10}, - [2407] = {.lex_state = 576}, - [2408] = {.lex_state = 646}, - [2409] = {.lex_state = 633}, - [2410] = {.lex_state = 5, .external_lex_state = 2}, - [2411] = {.lex_state = 646}, - [2412] = {.lex_state = 5, .external_lex_state = 2}, - [2413] = {.lex_state = 5, .external_lex_state = 2}, - [2414] = {.lex_state = 648}, - [2415] = {.lex_state = 650}, - [2416] = {.lex_state = 56}, - [2417] = {.lex_state = 578}, - [2418] = {.lex_state = 646}, - [2419] = {.lex_state = 5, .external_lex_state = 2}, - [2420] = {.lex_state = 5, .external_lex_state = 2}, + [2401] = {.lex_state = 634}, + [2402] = {.lex_state = 634}, + [2403] = {.lex_state = 634}, + [2404] = {.lex_state = 644}, + [2405] = {.lex_state = 579}, + [2406] = {.lex_state = 56}, + [2407] = {.lex_state = 5, .external_lex_state = 2}, + [2408] = {.lex_state = 647}, + [2409] = {.lex_state = 5, .external_lex_state = 2}, + [2410] = {.lex_state = 647}, + [2411] = {.lex_state = 5, .external_lex_state = 2}, + [2412] = {.lex_state = 579}, + [2413] = {.lex_state = 579}, + [2414] = {.lex_state = 5, .external_lex_state = 2}, + [2415] = {.lex_state = 5, .external_lex_state = 2}, + [2416] = {.lex_state = 646}, + [2417] = {.lex_state = 634}, + [2418] = {.lex_state = 640}, + [2419] = {.lex_state = 579}, + [2420] = {.lex_state = 646}, [2421] = {.lex_state = 5, .external_lex_state = 2}, - [2422] = {.lex_state = 578}, + [2422] = {.lex_state = 651}, [2423] = {.lex_state = 5, .external_lex_state = 2}, - [2424] = {.lex_state = 633}, - [2425] = {.lex_state = 578}, - [2426] = {.lex_state = 645}, + [2424] = {.lex_state = 5, .external_lex_state = 2}, + [2425] = {.lex_state = 649}, + [2426] = {.lex_state = 5, .external_lex_state = 2}, [2427] = {.lex_state = 5, .external_lex_state = 2}, - [2428] = {.lex_state = 633}, - [2429] = {.lex_state = 645}, + [2428] = {.lex_state = 5, .external_lex_state = 2}, + [2429] = {.lex_state = 651}, [2430] = {.lex_state = 5, .external_lex_state = 2}, [2431] = {.lex_state = 647}, [2432] = {.lex_state = 5, .external_lex_state = 2}, - [2433] = {.lex_state = 5, .external_lex_state = 2}, - [2434] = {.lex_state = 639}, + [2433] = {.lex_state = 10}, + [2434] = {.lex_state = 5, .external_lex_state = 2}, [2435] = {.lex_state = 5, .external_lex_state = 2}, - [2436] = {.lex_state = 5, .external_lex_state = 2}, - [2437] = {.lex_state = 578}, - [2438] = {.lex_state = 650}, - [2439] = {.lex_state = 650}, - [2440] = {.lex_state = 56}, - [2441] = {.lex_state = 58}, - [2442] = {.lex_state = 60}, - [2443] = {.lex_state = 652}, - [2444] = {.lex_state = 652}, - [2445] = {.lex_state = 652}, - [2446] = {.lex_state = 647}, + [2436] = {.lex_state = 641}, + [2437] = {.lex_state = 5, .external_lex_state = 2}, + [2438] = {.lex_state = 5, .external_lex_state = 2}, + [2439] = {.lex_state = 648}, + [2440] = {.lex_state = 653}, + [2441] = {.lex_state = 579}, + [2442] = {.lex_state = 648}, + [2443] = {.lex_state = 579}, + [2444] = {.lex_state = 579}, + [2445] = {.lex_state = 646}, + [2446] = {.lex_state = 653}, [2447] = {.lex_state = 578}, - [2448] = {.lex_state = 645}, + [2448] = {.lex_state = 653}, [2449] = {.lex_state = 577}, - [2450] = {.lex_state = 645}, - [2451] = {.lex_state = 578}, - [2452] = {.lex_state = 577}, - [2453] = {.lex_state = 652}, - [2454] = {.lex_state = 577}, - [2455] = {.lex_state = 57}, - [2456] = {.lex_state = 57}, - [2457] = {.lex_state = 649}, - [2458] = {.lex_state = 577}, - [2459] = {.lex_state = 576}, - [2460] = {.lex_state = 647}, - [2461] = {.lex_state = 576}, - [2462] = {.lex_state = 576}, - [2463] = {.lex_state = 578}, - [2464] = {.lex_state = 647}, - [2465] = {.lex_state = 576}, - [2466] = {.lex_state = 576}, - [2467] = {.lex_state = 576}, - [2468] = {.lex_state = 647}, - [2469] = {.lex_state = 578}, - [2470] = {.lex_state = 578}, - [2471] = {.lex_state = 578}, - [2472] = {.lex_state = 578}, - [2473] = {.lex_state = 641}, - [2474] = {.lex_state = 652}, - [2475] = {.lex_state = 577}, - [2476] = {.lex_state = 656}, + [2450] = {.lex_state = 56}, + [2451] = {.lex_state = 646}, + [2452] = {.lex_state = 57}, + [2453] = {.lex_state = 578}, + [2454] = {.lex_state = 648}, + [2455] = {.lex_state = 577}, + [2456] = {.lex_state = 60}, + [2457] = {.lex_state = 58}, + [2458] = {.lex_state = 57}, + [2459] = {.lex_state = 648}, + [2460] = {.lex_state = 577}, + [2461] = {.lex_state = 577}, + [2462] = {.lex_state = 648}, + [2463] = {.lex_state = 642}, + [2464] = {.lex_state = 578}, + [2465] = {.lex_state = 651}, + [2466] = {.lex_state = 577}, + [2467] = {.lex_state = 578}, + [2468] = {.lex_state = 579}, + [2469] = {.lex_state = 579}, + [2470] = {.lex_state = 579}, + [2471] = {.lex_state = 653}, + [2472] = {.lex_state = 579}, + [2473] = {.lex_state = 579}, + [2474] = {.lex_state = 651}, + [2475] = {.lex_state = 650}, + [2476] = {.lex_state = 653}, [2477] = {.lex_state = 577}, - [2478] = {.lex_state = 61}, - [2479] = {.lex_state = 62}, + [2478] = {.lex_state = 578}, + [2479] = {.lex_state = 652}, [2480] = {.lex_state = 577}, - [2481] = {.lex_state = 654}, - [2482] = {.lex_state = 576}, - [2483] = {.lex_state = 577}, + [2481] = {.lex_state = 578}, + [2482] = {.lex_state = 56}, + [2483] = {.lex_state = 653}, [2484] = {.lex_state = 56}, - [2485] = {.lex_state = 651}, - [2486] = {.lex_state = 577}, - [2487] = {.lex_state = 651}, - [2488] = {.lex_state = 647}, - [2489] = {.lex_state = 649}, - [2490] = {.lex_state = 652}, - [2491] = {.lex_state = 577}, - [2492] = {.lex_state = 652}, - [2493] = {.lex_state = 61}, - [2494] = {.lex_state = 647}, - [2495] = {.lex_state = 577}, - [2496] = {.lex_state = 577}, - [2497] = {.lex_state = 647}, - [2498] = {.lex_state = 577}, - [2499] = {.lex_state = 647}, - [2500] = {.lex_state = 56}, - [2501] = {.lex_state = 56}, - [2502] = {.lex_state = 56}, - [2503] = {.lex_state = 10}, - [2504] = {.lex_state = 577}, - [2505] = {.lex_state = 641}, - [2506] = {.lex_state = 652}, - [2507] = {.lex_state = 577}, - [2508] = {.lex_state = 577}, - [2509] = {.lex_state = 652}, - [2510] = {.lex_state = 652}, - [2511] = {.lex_state = 10}, - [2512] = {.lex_state = 651}, - [2513] = {.lex_state = 10}, + [2485] = {.lex_state = 648}, + [2486] = {.lex_state = 655}, + [2487] = {.lex_state = 10}, + [2488] = {.lex_state = 578}, + [2489] = {.lex_state = 578}, + [2490] = {.lex_state = 648}, + [2491] = {.lex_state = 56}, + [2492] = {.lex_state = 648}, + [2493] = {.lex_state = 578}, + [2494] = {.lex_state = 62}, + [2495] = {.lex_state = 56}, + [2496] = {.lex_state = 650}, + [2497] = {.lex_state = 648}, + [2498] = {.lex_state = 578}, + [2499] = {.lex_state = 578}, + [2500] = {.lex_state = 61}, + [2501] = {.lex_state = 578}, + [2502] = {.lex_state = 642}, + [2503] = {.lex_state = 61}, + [2504] = {.lex_state = 578}, + [2505] = {.lex_state = 653}, + [2506] = {.lex_state = 653}, + [2507] = {.lex_state = 653}, + [2508] = {.lex_state = 653}, + [2509] = {.lex_state = 578}, + [2510] = {.lex_state = 657}, + [2511] = {.lex_state = 578}, + [2512] = {.lex_state = 10}, + [2513] = {.lex_state = 652}, [2514] = {.lex_state = 578}, - [2515] = {.lex_state = 578}, + [2515] = {.lex_state = 659}, [2516] = {.lex_state = 578}, - [2517] = {.lex_state = 165, .external_lex_state = 2}, - [2518] = {.lex_state = 578}, - [2519] = {.lex_state = 62}, - [2520] = {.lex_state = 10}, - [2521] = {.lex_state = 577}, - [2522] = {.lex_state = 577}, - [2523] = {.lex_state = 577}, - [2524] = {.lex_state = 577}, - [2525] = {.lex_state = 62}, - [2526] = {.lex_state = 658}, - [2527] = {.lex_state = 658}, - [2528] = {.lex_state = 577}, - [2529] = {.lex_state = 654}, - [2530] = {.lex_state = 63}, - [2531] = {.lex_state = 578}, + [2517] = {.lex_state = 655}, + [2518] = {.lex_state = 579}, + [2519] = {.lex_state = 10}, + [2520] = {.lex_state = 165, .external_lex_state = 2}, + [2521] = {.lex_state = 63}, + [2522] = {.lex_state = 578}, + [2523] = {.lex_state = 654}, + [2524] = {.lex_state = 578}, + [2525] = {.lex_state = 579}, + [2526] = {.lex_state = 579}, + [2527] = {.lex_state = 654}, + [2528] = {.lex_state = 648}, + [2529] = {.lex_state = 579}, + [2530] = {.lex_state = 579}, + [2531] = {.lex_state = 579}, [2532] = {.lex_state = 578}, - [2533] = {.lex_state = 578}, - [2534] = {.lex_state = 10}, - [2535] = {.lex_state = 651}, - [2536] = {.lex_state = 10}, - [2537] = {.lex_state = 165, .external_lex_state = 2}, - [2538] = {.lex_state = 653}, - [2539] = {.lex_state = 653}, - [2540] = {.lex_state = 653}, - [2541] = {.lex_state = 647}, - [2542] = {.lex_state = 10}, - [2543] = {.lex_state = 577}, - [2544] = {.lex_state = 653}, - [2545] = {.lex_state = 578}, - [2546] = {.lex_state = 577}, - [2547] = {.lex_state = 653}, + [2533] = {.lex_state = 10}, + [2534] = {.lex_state = 165, .external_lex_state = 2}, + [2535] = {.lex_state = 59}, + [2536] = {.lex_state = 578}, + [2537] = {.lex_state = 579}, + [2538] = {.lex_state = 62}, + [2539] = {.lex_state = 578}, + [2540] = {.lex_state = 62}, + [2541] = {.lex_state = 578}, + [2542] = {.lex_state = 654}, + [2543] = {.lex_state = 659}, + [2544] = {.lex_state = 579}, + [2545] = {.lex_state = 62}, + [2546] = {.lex_state = 578}, + [2547] = {.lex_state = 579}, [2548] = {.lex_state = 165, .external_lex_state = 2}, - [2549] = {.lex_state = 656}, - [2550] = {.lex_state = 59}, - [2551] = {.lex_state = 165, .external_lex_state = 2}, - [2552] = {.lex_state = 10}, - [2553] = {.lex_state = 577}, - [2554] = {.lex_state = 577}, - [2555] = {.lex_state = 578}, - [2556] = {.lex_state = 578}, - [2557] = {.lex_state = 10}, - [2558] = {.lex_state = 62}, - [2559] = {.lex_state = 578}, - [2560] = {.lex_state = 578}, - [2561] = {.lex_state = 578}, - [2562] = {.lex_state = 578}, - [2563] = {.lex_state = 578}, - [2564] = {.lex_state = 577}, - [2565] = {.lex_state = 577}, - [2566] = {.lex_state = 10}, - [2567] = {.lex_state = 660}, - [2568] = {.lex_state = 660}, - [2569] = {.lex_state = 64}, - [2570] = {.lex_state = 660}, - [2571] = {.lex_state = 578}, - [2572] = {.lex_state = 660}, - [2573] = {.lex_state = 660}, - [2574] = {.lex_state = 660}, + [2549] = {.lex_state = 10}, + [2550] = {.lex_state = 579}, + [2551] = {.lex_state = 579}, + [2552] = {.lex_state = 579}, + [2553] = {.lex_state = 579}, + [2554] = {.lex_state = 579}, + [2555] = {.lex_state = 657}, + [2556] = {.lex_state = 652}, + [2557] = {.lex_state = 578}, + [2558] = {.lex_state = 578}, + [2559] = {.lex_state = 10}, + [2560] = {.lex_state = 165, .external_lex_state = 2}, + [2561] = {.lex_state = 652}, + [2562] = {.lex_state = 10}, + [2563] = {.lex_state = 654}, + [2564] = {.lex_state = 654}, + [2565] = {.lex_state = 10}, + [2566] = {.lex_state = 579}, + [2567] = {.lex_state = 10}, + [2568] = {.lex_state = 661}, + [2569] = {.lex_state = 10}, + [2570] = {.lex_state = 10}, + [2571] = {.lex_state = 661}, + [2572] = {.lex_state = 661}, + [2573] = {.lex_state = 654}, + [2574] = {.lex_state = 10}, [2575] = {.lex_state = 578}, - [2576] = {.lex_state = 660}, - [2577] = {.lex_state = 578}, - [2578] = {.lex_state = 578}, + [2576] = {.lex_state = 661}, + [2577] = {.lex_state = 579}, + [2578] = {.lex_state = 64}, [2579] = {.lex_state = 578}, [2580] = {.lex_state = 578}, - [2581] = {.lex_state = 577}, - [2582] = {.lex_state = 577}, - [2583] = {.lex_state = 10}, - [2584] = {.lex_state = 658}, - [2585] = {.lex_state = 10}, - [2586] = {.lex_state = 577}, - [2587] = {.lex_state = 660}, - [2588] = {.lex_state = 10}, - [2589] = {.lex_state = 660}, - [2590] = {.lex_state = 653}, - [2591] = {.lex_state = 660}, - [2592] = {.lex_state = 577}, - [2593] = {.lex_state = 577}, - [2594] = {.lex_state = 577}, - [2595] = {.lex_state = 10}, - [2596] = {.lex_state = 577}, - [2597] = {.lex_state = 10}, - [2598] = {.lex_state = 577}, - [2599] = {.lex_state = 653}, + [2581] = {.lex_state = 64}, + [2582] = {.lex_state = 578}, + [2583] = {.lex_state = 578}, + [2584] = {.lex_state = 654}, + [2585] = {.lex_state = 661}, + [2586] = {.lex_state = 579}, + [2587] = {.lex_state = 578}, + [2588] = {.lex_state = 661}, + [2589] = {.lex_state = 578}, + [2590] = {.lex_state = 10}, + [2591] = {.lex_state = 578}, + [2592] = {.lex_state = 578}, + [2593] = {.lex_state = 10}, + [2594] = {.lex_state = 579}, + [2595] = {.lex_state = 654}, + [2596] = {.lex_state = 578}, + [2597] = {.lex_state = 661}, + [2598] = {.lex_state = 578}, + [2599] = {.lex_state = 658}, [2600] = {.lex_state = 578}, - [2601] = {.lex_state = 10}, - [2602] = {.lex_state = 655}, - [2603] = {.lex_state = 658}, - [2604] = {.lex_state = 653}, - [2605] = {.lex_state = 657}, - [2606] = {.lex_state = 577}, - [2607] = {.lex_state = 577}, - [2608] = {.lex_state = 660}, - [2609] = {.lex_state = 577}, - [2610] = {.lex_state = 660}, - [2611] = {.lex_state = 577}, + [2601] = {.lex_state = 661}, + [2602] = {.lex_state = 654}, + [2603] = {.lex_state = 578}, + [2604] = {.lex_state = 579}, + [2605] = {.lex_state = 10}, + [2606] = {.lex_state = 579}, + [2607] = {.lex_state = 10}, + [2608] = {.lex_state = 578}, + [2609] = {.lex_state = 10}, + [2610] = {.lex_state = 659}, + [2611] = {.lex_state = 10}, [2612] = {.lex_state = 10}, [2613] = {.lex_state = 10}, - [2614] = {.lex_state = 653}, - [2615] = {.lex_state = 660}, - [2616] = {.lex_state = 10}, - [2617] = {.lex_state = 653}, - [2618] = {.lex_state = 577}, - [2619] = {.lex_state = 577}, + [2614] = {.lex_state = 661}, + [2615] = {.lex_state = 654}, + [2616] = {.lex_state = 579}, + [2617] = {.lex_state = 661}, + [2618] = {.lex_state = 661}, + [2619] = {.lex_state = 10}, [2620] = {.lex_state = 578}, - [2621] = {.lex_state = 10}, - [2622] = {.lex_state = 10}, - [2623] = {.lex_state = 64}, - [2624] = {.lex_state = 10}, - [2625] = {.lex_state = 578}, - [2626] = {.lex_state = 578}, - [2627] = {.lex_state = 578}, - [2628] = {.lex_state = 578}, - [2629] = {.lex_state = 578}, - [2630] = {.lex_state = 10}, - [2631] = {.lex_state = 577}, - [2632] = {.lex_state = 660}, - [2633] = {.lex_state = 10}, - [2634] = {.lex_state = 655}, - [2635] = {.lex_state = 65}, - [2636] = {.lex_state = 10}, - [2637] = {.lex_state = 577}, - [2638] = {.lex_state = 659}, - [2639] = {.lex_state = 577}, - [2640] = {.lex_state = 577}, - [2641] = {.lex_state = 660}, - [2642] = {.lex_state = 639}, - [2643] = {.lex_state = 657}, - [2644] = {.lex_state = 577}, + [2621] = {.lex_state = 578}, + [2622] = {.lex_state = 579}, + [2623] = {.lex_state = 10}, + [2624] = {.lex_state = 579}, + [2625] = {.lex_state = 579}, + [2626] = {.lex_state = 661}, + [2627] = {.lex_state = 661}, + [2628] = {.lex_state = 579}, + [2629] = {.lex_state = 579}, + [2630] = {.lex_state = 579}, + [2631] = {.lex_state = 656}, + [2632] = {.lex_state = 579}, + [2633] = {.lex_state = 659}, + [2634] = {.lex_state = 10}, + [2635] = {.lex_state = 640}, + [2636] = {.lex_state = 578}, + [2637] = {.lex_state = 579}, + [2638] = {.lex_state = 640}, + [2639] = {.lex_state = 658}, + [2640] = {.lex_state = 661}, + [2641] = {.lex_state = 663}, + [2642] = {.lex_state = 640}, + [2643] = {.lex_state = 661}, + [2644] = {.lex_state = 10}, [2645] = {.lex_state = 578}, - [2646] = {.lex_state = 639}, - [2647] = {.lex_state = 577}, - [2648] = {.lex_state = 660}, - [2649] = {.lex_state = 10}, - [2650] = {.lex_state = 65}, - [2651] = {.lex_state = 660}, - [2652] = {.lex_state = 577}, - [2653] = {.lex_state = 660}, - [2654] = {.lex_state = 578}, - [2655] = {.lex_state = 10}, - [2656] = {.lex_state = 577}, - [2657] = {.lex_state = 578}, - [2658] = {.lex_state = 577}, - [2659] = {.lex_state = 577}, - [2660] = {.lex_state = 660}, - [2661] = {.lex_state = 577}, - [2662] = {.lex_state = 660}, - [2663] = {.lex_state = 577}, - [2664] = {.lex_state = 10}, - [2665] = {.lex_state = 639}, - [2666] = {.lex_state = 660}, + [2646] = {.lex_state = 578}, + [2647] = {.lex_state = 661}, + [2648] = {.lex_state = 640}, + [2649] = {.lex_state = 640}, + [2650] = {.lex_state = 640}, + [2651] = {.lex_state = 640}, + [2652] = {.lex_state = 640}, + [2653] = {.lex_state = 65}, + [2654] = {.lex_state = 118}, + [2655] = {.lex_state = 578}, + [2656] = {.lex_state = 578}, + [2657] = {.lex_state = 661}, + [2658] = {.lex_state = 578}, + [2659] = {.lex_state = 661}, + [2660] = {.lex_state = 661}, + [2661] = {.lex_state = 578}, + [2662] = {.lex_state = 10}, + [2663] = {.lex_state = 578}, + [2664] = {.lex_state = 661}, + [2665] = {.lex_state = 578}, + [2666] = {.lex_state = 656}, [2667] = {.lex_state = 65}, - [2668] = {.lex_state = 577}, - [2669] = {.lex_state = 662}, - [2670] = {.lex_state = 639}, - [2671] = {.lex_state = 65}, - [2672] = {.lex_state = 639}, - [2673] = {.lex_state = 639}, - [2674] = {.lex_state = 639}, - [2675] = {.lex_state = 639}, - [2676] = {.lex_state = 639}, - [2677] = {.lex_state = 577}, - [2678] = {.lex_state = 660}, - [2679] = {.lex_state = 10}, - [2680] = {.lex_state = 660}, - [2681] = {.lex_state = 660}, - [2682] = {.lex_state = 10}, - [2683] = {.lex_state = 639}, - [2684] = {.lex_state = 660}, - [2685] = {.lex_state = 577}, - [2686] = {.lex_state = 660}, - [2687] = {.lex_state = 639}, + [2668] = {.lex_state = 640}, + [2669] = {.lex_state = 10}, + [2670] = {.lex_state = 661}, + [2671] = {.lex_state = 578}, + [2672] = {.lex_state = 10}, + [2673] = {.lex_state = 579}, + [2674] = {.lex_state = 578}, + [2675] = {.lex_state = 660}, + [2676] = {.lex_state = 640}, + [2677] = {.lex_state = 661}, + [2678] = {.lex_state = 578}, + [2679] = {.lex_state = 579}, + [2680] = {.lex_state = 640}, + [2681] = {.lex_state = 661}, + [2682] = {.lex_state = 65}, + [2683] = {.lex_state = 661}, + [2684] = {.lex_state = 661}, + [2685] = {.lex_state = 65}, + [2686] = {.lex_state = 661}, + [2687] = {.lex_state = 10}, [2688] = {.lex_state = 65}, - [2689] = {.lex_state = 577}, - [2690] = {.lex_state = 118}, - [2691] = {.lex_state = 659}, - [2692] = {.lex_state = 660}, - [2693] = {.lex_state = 10}, - [2694] = {.lex_state = 578}, - [2695] = {.lex_state = 578}, - [2696] = {.lex_state = 578}, - [2697] = {.lex_state = 10}, - [2698] = {.lex_state = 578}, - [2699] = {.lex_state = 578}, - [2700] = {.lex_state = 661}, - [2701] = {.lex_state = 639}, - [2702] = {.lex_state = 578}, - [2703] = {.lex_state = 578}, - [2704] = {.lex_state = 578}, - [2705] = {.lex_state = 639}, - [2706] = {.lex_state = 633}, - [2707] = {.lex_state = 578}, - [2708] = {.lex_state = 578}, - [2709] = {.lex_state = 578}, - [2710] = {.lex_state = 578}, - [2711] = {.lex_state = 660}, - [2712] = {.lex_state = 577}, - [2713] = {.lex_state = 578}, - [2714] = {.lex_state = 578}, - [2715] = {.lex_state = 578}, - [2716] = {.lex_state = 578}, - [2717] = {.lex_state = 578}, - [2718] = {.lex_state = 578}, - [2719] = {.lex_state = 578}, - [2720] = {.lex_state = 578}, - [2721] = {.lex_state = 578}, - [2722] = {.lex_state = 639}, - [2723] = {.lex_state = 662}, - [2724] = {.lex_state = 639}, - [2725] = {.lex_state = 578}, - [2726] = {.lex_state = 578}, - [2727] = {.lex_state = 578}, - [2728] = {.lex_state = 578}, - [2729] = {.lex_state = 578}, - [2730] = {.lex_state = 578}, - [2731] = {.lex_state = 578}, - [2732] = {.lex_state = 578}, - [2733] = {.lex_state = 578}, - [2734] = {.lex_state = 639}, - [2735] = {.lex_state = 661}, - [2736] = {.lex_state = 661}, - [2737] = {.lex_state = 578}, - [2738] = {.lex_state = 578}, - [2739] = {.lex_state = 655}, - [2740] = {.lex_state = 578}, - [2741] = {.lex_state = 578}, - [2742] = {.lex_state = 578}, - [2743] = {.lex_state = 578}, - [2744] = {.lex_state = 659}, - [2745] = {.lex_state = 578}, - [2746] = {.lex_state = 578}, - [2747] = {.lex_state = 661}, - [2748] = {.lex_state = 578}, - [2749] = {.lex_state = 578}, - [2750] = {.lex_state = 66}, - [2751] = {.lex_state = 578}, - [2752] = {.lex_state = 578}, - [2753] = {.lex_state = 661}, - [2754] = {.lex_state = 578}, - [2755] = {.lex_state = 578}, - [2756] = {.lex_state = 578}, - [2757] = {.lex_state = 578}, - [2758] = {.lex_state = 578}, - [2759] = {.lex_state = 578}, - [2760] = {.lex_state = 578}, - [2761] = {.lex_state = 578}, - [2762] = {.lex_state = 659}, - [2763] = {.lex_state = 578}, - [2764] = {.lex_state = 578}, - [2765] = {.lex_state = 578}, - [2766] = {.lex_state = 578}, - [2767] = {.lex_state = 578}, - [2768] = {.lex_state = 578}, - [2769] = {.lex_state = 661}, - [2770] = {.lex_state = 578}, - [2771] = {.lex_state = 578}, - [2772] = {.lex_state = 578}, - [2773] = {.lex_state = 661}, - [2774] = {.lex_state = 578}, - [2775] = {.lex_state = 578}, - [2776] = {.lex_state = 578}, - [2777] = {.lex_state = 578}, - [2778] = {.lex_state = 578}, - [2779] = {.lex_state = 578}, - [2780] = {.lex_state = 578}, - [2781] = {.lex_state = 578}, - [2782] = {.lex_state = 578}, - [2783] = {.lex_state = 578}, - [2784] = {.lex_state = 578}, - [2785] = {.lex_state = 578}, + [2689] = {.lex_state = 578}, + [2690] = {.lex_state = 10}, + [2691] = {.lex_state = 578}, + [2692] = {.lex_state = 661}, + [2693] = {.lex_state = 578}, + [2694] = {.lex_state = 10}, + [2695] = {.lex_state = 660}, + [2696] = {.lex_state = 579}, + [2697] = {.lex_state = 640}, + [2698] = {.lex_state = 579}, + [2699] = {.lex_state = 579}, + [2700] = {.lex_state = 579}, + [2701] = {.lex_state = 579}, + [2702] = {.lex_state = 579}, + [2703] = {.lex_state = 579}, + [2704] = {.lex_state = 579}, + [2705] = {.lex_state = 579}, + [2706] = {.lex_state = 579}, + [2707] = {.lex_state = 640}, + [2708] = {.lex_state = 579}, + [2709] = {.lex_state = 579}, + [2710] = {.lex_state = 634}, + [2711] = {.lex_state = 579}, + [2712] = {.lex_state = 579}, + [2713] = {.lex_state = 640}, + [2714] = {.lex_state = 579}, + [2715] = {.lex_state = 579}, + [2716] = {.lex_state = 634}, + [2717] = {.lex_state = 634}, + [2718] = {.lex_state = 579}, + [2719] = {.lex_state = 579}, + [2720] = {.lex_state = 579}, + [2721] = {.lex_state = 579}, + [2722] = {.lex_state = 579}, + [2723] = {.lex_state = 579}, + [2724] = {.lex_state = 662}, + [2725] = {.lex_state = 579}, + [2726] = {.lex_state = 579}, + [2727] = {.lex_state = 579}, + [2728] = {.lex_state = 634}, + [2729] = {.lex_state = 662}, + [2730] = {.lex_state = 579}, + [2731] = {.lex_state = 579}, + [2732] = {.lex_state = 662}, + [2733] = {.lex_state = 579}, + [2734] = {.lex_state = 634}, + [2735] = {.lex_state = 579}, + [2736] = {.lex_state = 579}, + [2737] = {.lex_state = 579}, + [2738] = {.lex_state = 579}, + [2739] = {.lex_state = 579}, + [2740] = {.lex_state = 579}, + [2741] = {.lex_state = 579}, + [2742] = {.lex_state = 579}, + [2743] = {.lex_state = 579}, + [2744] = {.lex_state = 579}, + [2745] = {.lex_state = 662}, + [2746] = {.lex_state = 579}, + [2747] = {.lex_state = 579}, + [2748] = {.lex_state = 660}, + [2749] = {.lex_state = 662}, + [2750] = {.lex_state = 640}, + [2751] = {.lex_state = 579}, + [2752] = {.lex_state = 579}, + [2753] = {.lex_state = 579}, + [2754] = {.lex_state = 579}, + [2755] = {.lex_state = 579}, + [2756] = {.lex_state = 579}, + [2757] = {.lex_state = 579}, + [2758] = {.lex_state = 579}, + [2759] = {.lex_state = 579}, + [2760] = {.lex_state = 579}, + [2761] = {.lex_state = 640}, + [2762] = {.lex_state = 579}, + [2763] = {.lex_state = 662}, + [2764] = {.lex_state = 579}, + [2765] = {.lex_state = 662}, + [2766] = {.lex_state = 660}, + [2767] = {.lex_state = 579}, + [2768] = {.lex_state = 662}, + [2769] = {.lex_state = 579}, + [2770] = {.lex_state = 662}, + [2771] = {.lex_state = 579}, + [2772] = {.lex_state = 640}, + [2773] = {.lex_state = 579}, + [2774] = {.lex_state = 579}, + [2775] = {.lex_state = 579}, + [2776] = {.lex_state = 579}, + [2777] = {.lex_state = 662}, + [2778] = {.lex_state = 662}, + [2779] = {.lex_state = 640}, + [2780] = {.lex_state = 579}, + [2781] = {.lex_state = 579}, + [2782] = {.lex_state = 663}, + [2783] = {.lex_state = 640}, + [2784] = {.lex_state = 67}, + [2785] = {.lex_state = 579}, [2786] = {.lex_state = 578}, - [2787] = {.lex_state = 578}, - [2788] = {.lex_state = 578}, - [2789] = {.lex_state = 578}, - [2790] = {.lex_state = 578}, - [2791] = {.lex_state = 578}, - [2792] = {.lex_state = 578}, - [2793] = {.lex_state = 578}, - [2794] = {.lex_state = 577}, - [2795] = {.lex_state = 578}, - [2796] = {.lex_state = 578}, - [2797] = {.lex_state = 578}, - [2798] = {.lex_state = 578}, - [2799] = {.lex_state = 578}, - [2800] = {.lex_state = 578}, - [2801] = {.lex_state = 578}, - [2802] = {.lex_state = 578}, - [2803] = {.lex_state = 578}, - [2804] = {.lex_state = 578}, - [2805] = {.lex_state = 578}, - [2806] = {.lex_state = 578}, - [2807] = {.lex_state = 578}, - [2808] = {.lex_state = 578}, - [2809] = {.lex_state = 578}, - [2810] = {.lex_state = 578}, - [2811] = {.lex_state = 578}, - [2812] = {.lex_state = 578}, - [2813] = {.lex_state = 578}, - [2814] = {.lex_state = 578}, - [2815] = {.lex_state = 639}, - [2816] = {.lex_state = 578}, - [2817] = {.lex_state = 578}, - [2818] = {.lex_state = 661}, - [2819] = {.lex_state = 578}, - [2820] = {.lex_state = 578}, - [2821] = {.lex_state = 578}, - [2822] = {.lex_state = 578}, - [2823] = {.lex_state = 661}, - [2824] = {.lex_state = 639}, - [2825] = {.lex_state = 661}, - [2826] = {.lex_state = 578}, - [2827] = {.lex_state = 639}, - [2828] = {.lex_state = 661}, - [2829] = {.lex_state = 578}, - [2830] = {.lex_state = 661}, - [2831] = {.lex_state = 67}, - [2832] = {.lex_state = 578}, - [2833] = {.lex_state = 639}, - [2834] = {.lex_state = 639}, - [2835] = {.lex_state = 639}, - [2836] = {.lex_state = 578}, - [2837] = {.lex_state = 578}, - [2838] = {.lex_state = 578}, - [2839] = {.lex_state = 578}, - [2840] = {.lex_state = 10}, - [2841] = {.lex_state = 578}, - [2842] = {.lex_state = 578}, + [2787] = {.lex_state = 579}, + [2788] = {.lex_state = 579}, + [2789] = {.lex_state = 579}, + [2790] = {.lex_state = 662}, + [2791] = {.lex_state = 579}, + [2792] = {.lex_state = 579}, + [2793] = {.lex_state = 579}, + [2794] = {.lex_state = 579}, + [2795] = {.lex_state = 579}, + [2796] = {.lex_state = 579}, + [2797] = {.lex_state = 579}, + [2798] = {.lex_state = 579}, + [2799] = {.lex_state = 579}, + [2800] = {.lex_state = 579}, + [2801] = {.lex_state = 579}, + [2802] = {.lex_state = 579}, + [2803] = {.lex_state = 579}, + [2804] = {.lex_state = 579}, + [2805] = {.lex_state = 579}, + [2806] = {.lex_state = 579}, + [2807] = {.lex_state = 640}, + [2808] = {.lex_state = 579}, + [2809] = {.lex_state = 10}, + [2810] = {.lex_state = 579}, + [2811] = {.lex_state = 656}, + [2812] = {.lex_state = 579}, + [2813] = {.lex_state = 579}, + [2814] = {.lex_state = 579}, + [2815] = {.lex_state = 579}, + [2816] = {.lex_state = 579}, + [2817] = {.lex_state = 579}, + [2818] = {.lex_state = 579}, + [2819] = {.lex_state = 579}, + [2820] = {.lex_state = 579}, + [2821] = {.lex_state = 66}, + [2822] = {.lex_state = 579}, + [2823] = {.lex_state = 579}, + [2824] = {.lex_state = 579}, + [2825] = {.lex_state = 579}, + [2826] = {.lex_state = 579}, + [2827] = {.lex_state = 661}, + [2828] = {.lex_state = 578}, + [2829] = {.lex_state = 579}, + [2830] = {.lex_state = 579}, + [2831] = {.lex_state = 579}, + [2832] = {.lex_state = 579}, + [2833] = {.lex_state = 10}, + [2834] = {.lex_state = 579}, + [2835] = {.lex_state = 579}, + [2836] = {.lex_state = 579}, + [2837] = {.lex_state = 579}, + [2838] = {.lex_state = 579}, + [2839] = {.lex_state = 579}, + [2840] = {.lex_state = 578}, + [2841] = {.lex_state = 579}, + [2842] = {.lex_state = 579}, [2843] = {.lex_state = 578}, - [2844] = {.lex_state = 578}, - [2845] = {.lex_state = 578}, - [2846] = {.lex_state = 578}, - [2847] = {.lex_state = 577}, - [2848] = {.lex_state = 578}, - [2849] = {.lex_state = 577}, + [2844] = {.lex_state = 579}, + [2845] = {.lex_state = 579}, + [2846] = {.lex_state = 579}, + [2847] = {.lex_state = 10}, + [2848] = {.lex_state = 10}, + [2849] = {.lex_state = 10}, [2850] = {.lex_state = 10}, [2851] = {.lex_state = 10}, [2852] = {.lex_state = 10}, - [2853] = {.lex_state = 10}, - [2854] = {.lex_state = 10}, - [2855] = {.lex_state = 578}, - [2856] = {.lex_state = 633}, - [2857] = {.lex_state = 633}, - [2858] = {.lex_state = 578}, - [2859] = {.lex_state = 633}, - [2860] = {.lex_state = 633}, - [2861] = {.lex_state = 661}, - [2862] = {.lex_state = 578}, - [2863] = {.lex_state = 578}, - [2864] = {.lex_state = 578}, - [2865] = {.lex_state = 578}, - [2866] = {.lex_state = 633}, - [2867] = {.lex_state = 10}, - [2868] = {.lex_state = 578}, - [2869] = {.lex_state = 10}, - [2870] = {.lex_state = 77}, - [2871] = {.lex_state = 633}, - [2872] = {.lex_state = 10}, - [2873] = {.lex_state = 578}, - [2874] = {.lex_state = 578}, - [2875] = {.lex_state = 661}, - [2876] = {.lex_state = 578}, - [2877] = {.lex_state = 578}, - [2878] = {.lex_state = 132, .external_lex_state = 2}, - [2879] = {.lex_state = 633}, - [2880] = {.lex_state = 10}, - [2881] = {.lex_state = 661}, + [2853] = {.lex_state = 579}, + [2854] = {.lex_state = 579}, + [2855] = {.lex_state = 579}, + [2856] = {.lex_state = 579}, + [2857] = {.lex_state = 579}, + [2858] = {.lex_state = 579}, + [2859] = {.lex_state = 579}, + [2860] = {.lex_state = 579}, + [2861] = {.lex_state = 579}, + [2862] = {.lex_state = 579}, + [2863] = {.lex_state = 640}, + [2864] = {.lex_state = 579}, + [2865] = {.lex_state = 640}, + [2866] = {.lex_state = 579}, + [2867] = {.lex_state = 579}, + [2868] = {.lex_state = 662}, + [2869] = {.lex_state = 634}, + [2870] = {.lex_state = 579}, + [2871] = {.lex_state = 10}, + [2872] = {.lex_state = 579}, + [2873] = {.lex_state = 579}, + [2874] = {.lex_state = 579}, + [2875] = {.lex_state = 10}, + [2876] = {.lex_state = 662}, + [2877] = {.lex_state = 10}, + [2878] = {.lex_state = 10}, + [2879] = {.lex_state = 579}, + [2880] = {.lex_state = 579}, + [2881] = {.lex_state = 628}, [2882] = {.lex_state = 10}, - [2883] = {.lex_state = 10}, - [2884] = {.lex_state = 633}, - [2885] = {.lex_state = 627}, - [2886] = {.lex_state = 578}, - [2887] = {.lex_state = 10}, - [2888] = {.lex_state = 118}, - [2889] = {.lex_state = 627}, - [2890] = {.lex_state = 71}, - [2891] = {.lex_state = 10}, - [2892] = {.lex_state = 10}, + [2883] = {.lex_state = 662}, + [2884] = {.lex_state = 10}, + [2885] = {.lex_state = 662}, + [2886] = {.lex_state = 662}, + [2887] = {.lex_state = 662}, + [2888] = {.lex_state = 579}, + [2889] = {.lex_state = 10}, + [2890] = {.lex_state = 118}, + [2891] = {.lex_state = 578}, + [2892] = {.lex_state = 662}, [2893] = {.lex_state = 10}, - [2894] = {.lex_state = 627}, - [2895] = {.lex_state = 661}, - [2896] = {.lex_state = 661}, - [2897] = {.lex_state = 661}, - [2898] = {.lex_state = 10}, - [2899] = {.lex_state = 10}, - [2900] = {.lex_state = 633}, - [2901] = {.lex_state = 118}, - [2902] = {.lex_state = 578}, + [2894] = {.lex_state = 579}, + [2895] = {.lex_state = 579}, + [2896] = {.lex_state = 579}, + [2897] = {.lex_state = 118}, + [2898] = {.lex_state = 662}, + [2899] = {.lex_state = 579}, + [2900] = {.lex_state = 662}, + [2901] = {.lex_state = 662}, + [2902] = {.lex_state = 77}, [2903] = {.lex_state = 578}, - [2904] = {.lex_state = 578}, - [2905] = {.lex_state = 578}, - [2906] = {.lex_state = 578}, - [2907] = {.lex_state = 578}, - [2908] = {.lex_state = 578}, - [2909] = {.lex_state = 577}, - [2910] = {.lex_state = 627}, - [2911] = {.lex_state = 661}, - [2912] = {.lex_state = 661}, - [2913] = {.lex_state = 661}, + [2904] = {.lex_state = 579}, + [2905] = {.lex_state = 579}, + [2906] = {.lex_state = 628}, + [2907] = {.lex_state = 10}, + [2908] = {.lex_state = 10}, + [2909] = {.lex_state = 71}, + [2910] = {.lex_state = 578}, + [2911] = {.lex_state = 634}, + [2912] = {.lex_state = 578}, + [2913] = {.lex_state = 628}, [2914] = {.lex_state = 578}, - [2915] = {.lex_state = 578}, - [2916] = {.lex_state = 578}, - [2917] = {.lex_state = 578}, - [2918] = {.lex_state = 661}, - [2919] = {.lex_state = 578}, - [2920] = {.lex_state = 627}, - [2921] = {.lex_state = 577}, - [2922] = {.lex_state = 578}, - [2923] = {.lex_state = 10}, - [2924] = {.lex_state = 661}, - [2925] = {.lex_state = 633}, - [2926] = {.lex_state = 661}, - [2927] = {.lex_state = 10}, - [2928] = {.lex_state = 661}, - [2929] = {.lex_state = 633}, - [2930] = {.lex_state = 10}, - [2931] = {.lex_state = 661}, - [2932] = {.lex_state = 577}, - [2933] = {.lex_state = 577}, + [2915] = {.lex_state = 634}, + [2916] = {.lex_state = 634}, + [2917] = {.lex_state = 662}, + [2918] = {.lex_state = 579}, + [2919] = {.lex_state = 662}, + [2920] = {.lex_state = 10}, + [2921] = {.lex_state = 579}, + [2922] = {.lex_state = 68}, + [2923] = {.lex_state = 578}, + [2924] = {.lex_state = 628}, + [2925] = {.lex_state = 10}, + [2926] = {.lex_state = 68}, + [2927] = {.lex_state = 634}, + [2928] = {.lex_state = 579}, + [2929] = {.lex_state = 579}, + [2930] = {.lex_state = 628}, + [2931] = {.lex_state = 579}, + [2932] = {.lex_state = 118}, + [2933] = {.lex_state = 10}, [2934] = {.lex_state = 10}, [2935] = {.lex_state = 10}, - [2936] = {.lex_state = 577}, + [2936] = {.lex_state = 118}, [2937] = {.lex_state = 10}, - [2938] = {.lex_state = 655}, - [2939] = {.lex_state = 68}, - [2940] = {.lex_state = 578}, - [2941] = {.lex_state = 10}, - [2942] = {.lex_state = 578}, - [2943] = {.lex_state = 633}, - [2944] = {.lex_state = 577}, - [2945] = {.lex_state = 577}, - [2946] = {.lex_state = 10}, - [2947] = {.lex_state = 578}, - [2948] = {.lex_state = 10}, - [2949] = {.lex_state = 68}, - [2950] = {.lex_state = 577}, - [2951] = {.lex_state = 577}, - [2952] = {.lex_state = 577}, - [2953] = {.lex_state = 578}, - [2954] = {.lex_state = 578}, - [2955] = {.lex_state = 118}, - [2956] = {.lex_state = 10}, - [2957] = {.lex_state = 10}, - [2958] = {.lex_state = 10}, - [2959] = {.lex_state = 10}, - [2960] = {.lex_state = 118}, - [2961] = {.lex_state = 118}, - [2962] = {.lex_state = 10}, - [2963] = {.lex_state = 661}, - [2964] = {.lex_state = 118}, - [2965] = {.lex_state = 578}, - [2966] = {.lex_state = 627}, - [2967] = {.lex_state = 627}, - [2968] = {.lex_state = 578}, - [2969] = {.lex_state = 627}, - [2970] = {.lex_state = 72}, - [2971] = {.lex_state = 627}, - [2972] = {.lex_state = 65}, - [2973] = {.lex_state = 10}, - [2974] = {.lex_state = 71}, - [2975] = {.lex_state = 578}, - [2976] = {.lex_state = 10}, - [2977] = {.lex_state = 578}, - [2978] = {.lex_state = 578}, - [2979] = {.lex_state = 69}, - [2980] = {.lex_state = 65}, - [2981] = {.lex_state = 70}, - [2982] = {.lex_state = 69}, - [2983] = {.lex_state = 627}, - [2984] = {.lex_state = 66}, - [2985] = {.lex_state = 10}, - [2986] = {.lex_state = 627}, - [2987] = {.lex_state = 10}, - [2988] = {.lex_state = 627}, - [2989] = {.lex_state = 578}, - [2990] = {.lex_state = 10}, - [2991] = {.lex_state = 69}, - [2992] = {.lex_state = 578}, - [2993] = {.lex_state = 627}, - [2994] = {.lex_state = 577}, - [2995] = {.lex_state = 577}, - [2996] = {.lex_state = 627}, - [2997] = {.lex_state = 10}, - [2998] = {.lex_state = 577}, - [2999] = {.lex_state = 10}, - [3000] = {.lex_state = 10}, - [3001] = {.lex_state = 578}, - [3002] = {.lex_state = 627}, - [3003] = {.lex_state = 627}, - [3004] = {.lex_state = 627}, - [3005] = {.lex_state = 627}, - [3006] = {.lex_state = 627}, - [3007] = {.lex_state = 627}, - [3008] = {.lex_state = 69}, - [3009] = {.lex_state = 627}, - [3010] = {.lex_state = 627}, - [3011] = {.lex_state = 578}, - [3012] = {.lex_state = 627}, - [3013] = {.lex_state = 627}, - [3014] = {.lex_state = 627}, - [3015] = {.lex_state = 627}, - [3016] = {.lex_state = 10}, + [2938] = {.lex_state = 578}, + [2939] = {.lex_state = 662}, + [2940] = {.lex_state = 662}, + [2941] = {.lex_state = 579}, + [2942] = {.lex_state = 579}, + [2943] = {.lex_state = 10}, + [2944] = {.lex_state = 10}, + [2945] = {.lex_state = 118}, + [2946] = {.lex_state = 578}, + [2947] = {.lex_state = 634}, + [2948] = {.lex_state = 634}, + [2949] = {.lex_state = 579}, + [2950] = {.lex_state = 578}, + [2951] = {.lex_state = 10}, + [2952] = {.lex_state = 634}, + [2953] = {.lex_state = 10}, + [2954] = {.lex_state = 10}, + [2955] = {.lex_state = 10}, + [2956] = {.lex_state = 579}, + [2957] = {.lex_state = 662}, + [2958] = {.lex_state = 118}, + [2959] = {.lex_state = 579}, + [2960] = {.lex_state = 10}, + [2961] = {.lex_state = 10}, + [2962] = {.lex_state = 579}, + [2963] = {.lex_state = 579}, + [2964] = {.lex_state = 10}, + [2965] = {.lex_state = 132, .external_lex_state = 2}, + [2966] = {.lex_state = 10}, + [2967] = {.lex_state = 578}, + [2968] = {.lex_state = 656}, + [2969] = {.lex_state = 628}, + [2970] = {.lex_state = 10}, + [2971] = {.lex_state = 579}, + [2972] = {.lex_state = 628}, + [2973] = {.lex_state = 65}, + [2974] = {.lex_state = 628}, + [2975] = {.lex_state = 579}, + [2976] = {.lex_state = 579}, + [2977] = {.lex_state = 634}, + [2978] = {.lex_state = 579}, + [2979] = {.lex_state = 628}, + [2980] = {.lex_state = 579}, + [2981] = {.lex_state = 579}, + [2982] = {.lex_state = 628}, + [2983] = {.lex_state = 628}, + [2984] = {.lex_state = 628}, + [2985] = {.lex_state = 579}, + [2986] = {.lex_state = 578}, + [2987] = {.lex_state = 628}, + [2988] = {.lex_state = 628}, + [2989] = {.lex_state = 628}, + [2990] = {.lex_state = 628}, + [2991] = {.lex_state = 579}, + [2992] = {.lex_state = 628}, + [2993] = {.lex_state = 634}, + [2994] = {.lex_state = 628}, + [2995] = {.lex_state = 74}, + [2996] = {.lex_state = 628}, + [2997] = {.lex_state = 69}, + [2998] = {.lex_state = 628}, + [2999] = {.lex_state = 69}, + [3000] = {.lex_state = 578}, + [3001] = {.lex_state = 69}, + [3002] = {.lex_state = 578}, + [3003] = {.lex_state = 10}, + [3004] = {.lex_state = 10}, + [3005] = {.lex_state = 10}, + [3006] = {.lex_state = 10}, + [3007] = {.lex_state = 628}, + [3008] = {.lex_state = 10}, + [3009] = {.lex_state = 628}, + [3010] = {.lex_state = 69}, + [3011] = {.lex_state = 628}, + [3012] = {.lex_state = 628}, + [3013] = {.lex_state = 69}, + [3014] = {.lex_state = 69}, + [3015] = {.lex_state = 69}, + [3016] = {.lex_state = 69}, [3017] = {.lex_state = 10}, [3018] = {.lex_state = 69}, - [3019] = {.lex_state = 627}, - [3020] = {.lex_state = 69}, - [3021] = {.lex_state = 627}, - [3022] = {.lex_state = 627}, - [3023] = {.lex_state = 627}, - [3024] = {.lex_state = 627}, - [3025] = {.lex_state = 627}, - [3026] = {.lex_state = 10}, - [3027] = {.lex_state = 627}, - [3028] = {.lex_state = 627}, - [3029] = {.lex_state = 633}, - [3030] = {.lex_state = 627}, - [3031] = {.lex_state = 578}, - [3032] = {.lex_state = 633}, - [3033] = {.lex_state = 661}, - [3034] = {.lex_state = 627}, - [3035] = {.lex_state = 577}, - [3036] = {.lex_state = 627}, - [3037] = {.lex_state = 578}, - [3038] = {.lex_state = 627}, - [3039] = {.lex_state = 627}, - [3040] = {.lex_state = 627}, - [3041] = {.lex_state = 627}, - [3042] = {.lex_state = 627}, - [3043] = {.lex_state = 39, .external_lex_state = 2}, - [3044] = {.lex_state = 10}, - [3045] = {.lex_state = 627}, - [3046] = {.lex_state = 633}, - [3047] = {.lex_state = 69}, - [3048] = {.lex_state = 627}, - [3049] = {.lex_state = 627}, - [3050] = {.lex_state = 578}, - [3051] = {.lex_state = 627}, - [3052] = {.lex_state = 10}, - [3053] = {.lex_state = 627}, - [3054] = {.lex_state = 578}, - [3055] = {.lex_state = 578}, - [3056] = {.lex_state = 10}, - [3057] = {.lex_state = 10}, - [3058] = {.lex_state = 627}, - [3059] = {.lex_state = 69}, - [3060] = {.lex_state = 627}, - [3061] = {.lex_state = 69}, - [3062] = {.lex_state = 627}, + [3019] = {.lex_state = 69}, + [3020] = {.lex_state = 628}, + [3021] = {.lex_state = 578}, + [3022] = {.lex_state = 10}, + [3023] = {.lex_state = 10}, + [3024] = {.lex_state = 39, .external_lex_state = 2}, + [3025] = {.lex_state = 579}, + [3026] = {.lex_state = 579}, + [3027] = {.lex_state = 10}, + [3028] = {.lex_state = 579}, + [3029] = {.lex_state = 579}, + [3030] = {.lex_state = 579}, + [3031] = {.lex_state = 10}, + [3032] = {.lex_state = 579}, + [3033] = {.lex_state = 628}, + [3034] = {.lex_state = 579}, + [3035] = {.lex_state = 628}, + [3036] = {.lex_state = 628}, + [3037] = {.lex_state = 628}, + [3038] = {.lex_state = 628}, + [3039] = {.lex_state = 72}, + [3040] = {.lex_state = 628}, + [3041] = {.lex_state = 628}, + [3042] = {.lex_state = 628}, + [3043] = {.lex_state = 579}, + [3044] = {.lex_state = 74}, + [3045] = {.lex_state = 628}, + [3046] = {.lex_state = 70}, + [3047] = {.lex_state = 579}, + [3048] = {.lex_state = 628}, + [3049] = {.lex_state = 628}, + [3050] = {.lex_state = 69}, + [3051] = {.lex_state = 628}, + [3052] = {.lex_state = 628}, + [3053] = {.lex_state = 628}, + [3054] = {.lex_state = 634}, + [3055] = {.lex_state = 579}, + [3056] = {.lex_state = 579}, + [3057] = {.lex_state = 662}, + [3058] = {.lex_state = 628}, + [3059] = {.lex_state = 10}, + [3060] = {.lex_state = 579}, + [3061] = {.lex_state = 10}, + [3062] = {.lex_state = 69}, [3063] = {.lex_state = 69}, - [3064] = {.lex_state = 10}, - [3065] = {.lex_state = 10}, - [3066] = {.lex_state = 10}, - [3067] = {.lex_state = 627}, - [3068] = {.lex_state = 627}, - [3069] = {.lex_state = 627}, - [3070] = {.lex_state = 74}, + [3064] = {.lex_state = 628}, + [3065] = {.lex_state = 628}, + [3066] = {.lex_state = 628}, + [3067] = {.lex_state = 628}, + [3068] = {.lex_state = 10}, + [3069] = {.lex_state = 10}, + [3070] = {.lex_state = 628}, [3071] = {.lex_state = 578}, - [3072] = {.lex_state = 10}, - [3073] = {.lex_state = 627}, - [3074] = {.lex_state = 65}, - [3075] = {.lex_state = 577}, - [3076] = {.lex_state = 627}, - [3077] = {.lex_state = 578}, - [3078] = {.lex_state = 627}, - [3079] = {.lex_state = 578}, - [3080] = {.lex_state = 10}, - [3081] = {.lex_state = 627}, - [3082] = {.lex_state = 65}, - [3083] = {.lex_state = 69}, + [3072] = {.lex_state = 628}, + [3073] = {.lex_state = 628}, + [3074] = {.lex_state = 10}, + [3075] = {.lex_state = 579}, + [3076] = {.lex_state = 195}, + [3077] = {.lex_state = 65}, + [3078] = {.lex_state = 10}, + [3079] = {.lex_state = 579}, + [3080] = {.lex_state = 65}, + [3081] = {.lex_state = 65}, + [3082] = {.lex_state = 628}, + [3083] = {.lex_state = 65}, [3084] = {.lex_state = 65}, - [3085] = {.lex_state = 65}, - [3086] = {.lex_state = 578}, - [3087] = {.lex_state = 578}, - [3088] = {.lex_state = 10}, - [3089] = {.lex_state = 10}, - [3090] = {.lex_state = 578}, - [3091] = {.lex_state = 10}, - [3092] = {.lex_state = 627}, - [3093] = {.lex_state = 10}, - [3094] = {.lex_state = 10}, - [3095] = {.lex_state = 627}, - [3096] = {.lex_state = 578}, - [3097] = {.lex_state = 627}, - [3098] = {.lex_state = 578}, - [3099] = {.lex_state = 578}, - [3100] = {.lex_state = 627}, - [3101] = {.lex_state = 627}, - [3102] = {.lex_state = 195}, - [3103] = {.lex_state = 627}, - [3104] = {.lex_state = 627}, - [3105] = {.lex_state = 69}, - [3106] = {.lex_state = 69}, - [3107] = {.lex_state = 627}, - [3108] = {.lex_state = 627}, - [3109] = {.lex_state = 578}, - [3110] = {.lex_state = 74}, - [3111] = {.lex_state = 627}, - [3112] = {.lex_state = 627}, - [3113] = {.lex_state = 577}, - [3114] = {.lex_state = 627}, - [3115] = {.lex_state = 627}, - [3116] = {.lex_state = 627}, - [3117] = {.lex_state = 627}, - [3118] = {.lex_state = 578}, - [3119] = {.lex_state = 627}, - [3120] = {.lex_state = 10}, - [3121] = {.lex_state = 578}, + [3085] = {.lex_state = 628}, + [3086] = {.lex_state = 628}, + [3087] = {.lex_state = 628}, + [3088] = {.lex_state = 66}, + [3089] = {.lex_state = 628}, + [3090] = {.lex_state = 628}, + [3091] = {.lex_state = 628}, + [3092] = {.lex_state = 10}, + [3093] = {.lex_state = 628}, + [3094] = {.lex_state = 578}, + [3095] = {.lex_state = 628}, + [3096] = {.lex_state = 628}, + [3097] = {.lex_state = 10}, + [3098] = {.lex_state = 10}, + [3099] = {.lex_state = 628}, + [3100] = {.lex_state = 628}, + [3101] = {.lex_state = 628}, + [3102] = {.lex_state = 628}, + [3103] = {.lex_state = 628}, + [3104] = {.lex_state = 10}, + [3105] = {.lex_state = 628}, + [3106] = {.lex_state = 628}, + [3107] = {.lex_state = 579}, + [3108] = {.lex_state = 10}, + [3109] = {.lex_state = 10}, + [3110] = {.lex_state = 10}, + [3111] = {.lex_state = 628}, + [3112] = {.lex_state = 628}, + [3113] = {.lex_state = 10}, + [3114] = {.lex_state = 628}, + [3115] = {.lex_state = 65}, + [3116] = {.lex_state = 71}, + [3117] = {.lex_state = 628}, + [3118] = {.lex_state = 628}, + [3119] = {.lex_state = 628}, + [3120] = {.lex_state = 579}, + [3121] = {.lex_state = 10}, [3122] = {.lex_state = 10}, - [3123] = {.lex_state = 65}, - [3124] = {.lex_state = 627}, - [3125] = {.lex_state = 627}, - [3126] = {.lex_state = 578}, - [3127] = {.lex_state = 578}, - [3128] = {.lex_state = 627}, - [3129] = {.lex_state = 627}, - [3130] = {.lex_state = 189}, - [3131] = {.lex_state = 195}, - [3132] = {.lex_state = 10}, + [3123] = {.lex_state = 628}, + [3124] = {.lex_state = 628}, + [3125] = {.lex_state = 579}, + [3126] = {.lex_state = 628}, + [3127] = {.lex_state = 628}, + [3128] = {.lex_state = 10}, + [3129] = {.lex_state = 579}, + [3130] = {.lex_state = 39, .external_lex_state = 2}, + [3131] = {.lex_state = 628}, + [3132] = {.lex_state = 628}, [3133] = {.lex_state = 10}, - [3134] = {.lex_state = 578}, - [3135] = {.lex_state = 578}, - [3136] = {.lex_state = 627}, - [3137] = {.lex_state = 77}, - [3138] = {.lex_state = 578}, - [3139] = {.lex_state = 627}, - [3140] = {.lex_state = 65}, - [3141] = {.lex_state = 10}, - [3142] = {.lex_state = 627}, - [3143] = {.lex_state = 627}, - [3144] = {.lex_state = 627}, - [3145] = {.lex_state = 10}, - [3146] = {.lex_state = 627}, - [3147] = {.lex_state = 627}, - [3148] = {.lex_state = 627}, - [3149] = {.lex_state = 627}, - [3150] = {.lex_state = 578}, - [3151] = {.lex_state = 627}, - [3152] = {.lex_state = 10}, - [3153] = {.lex_state = 578}, - [3154] = {.lex_state = 39, .external_lex_state = 2}, - [3155] = {.lex_state = 71}, - [3156] = {.lex_state = 189}, - [3157] = {.lex_state = 71}, - [3158] = {.lex_state = 10}, - [3159] = {.lex_state = 71}, - [3160] = {.lex_state = 627}, - [3161] = {.lex_state = 10}, - [3162] = {.lex_state = 627}, - [3163] = {.lex_state = 627}, - [3164] = {.lex_state = 627}, - [3165] = {.lex_state = 627}, - [3166] = {.lex_state = 627}, - [3167] = {.lex_state = 627}, - [3168] = {.lex_state = 627}, - [3169] = {.lex_state = 627}, - [3170] = {.lex_state = 627}, - [3171] = {.lex_state = 627}, - [3172] = {.lex_state = 10}, - [3173] = {.lex_state = 633}, - [3174] = {.lex_state = 75}, - [3175] = {.lex_state = 627}, - [3176] = {.lex_state = 578}, - [3177] = {.lex_state = 627}, - [3178] = {.lex_state = 578}, - [3179] = {.lex_state = 627}, - [3180] = {.lex_state = 627}, - [3181] = {.lex_state = 627}, - [3182] = {.lex_state = 627}, - [3183] = {.lex_state = 627}, - [3184] = {.lex_state = 627}, - [3185] = {.lex_state = 627}, - [3186] = {.lex_state = 627}, - [3187] = {.lex_state = 627}, - [3188] = {.lex_state = 627}, - [3189] = {.lex_state = 627}, - [3190] = {.lex_state = 578}, - [3191] = {.lex_state = 578}, - [3192] = {.lex_state = 73}, - [3193] = {.lex_state = 73}, - [3194] = {.lex_state = 627}, - [3195] = {.lex_state = 578}, + [3134] = {.lex_state = 10}, + [3135] = {.lex_state = 189}, + [3136] = {.lex_state = 628}, + [3137] = {.lex_state = 628}, + [3138] = {.lex_state = 628}, + [3139] = {.lex_state = 628}, + [3140] = {.lex_state = 628}, + [3141] = {.lex_state = 628}, + [3142] = {.lex_state = 10}, + [3143] = {.lex_state = 579}, + [3144] = {.lex_state = 579}, + [3145] = {.lex_state = 628}, + [3146] = {.lex_state = 628}, + [3147] = {.lex_state = 628}, + [3148] = {.lex_state = 579}, + [3149] = {.lex_state = 579}, + [3150] = {.lex_state = 628}, + [3151] = {.lex_state = 579}, + [3152] = {.lex_state = 75}, + [3153] = {.lex_state = 77}, + [3154] = {.lex_state = 628}, + [3155] = {.lex_state = 579}, + [3156] = {.lex_state = 65}, + [3157] = {.lex_state = 10}, + [3158] = {.lex_state = 195}, + [3159] = {.lex_state = 628}, + [3160] = {.lex_state = 628}, + [3161] = {.lex_state = 75}, + [3162] = {.lex_state = 73}, + [3163] = {.lex_state = 628}, + [3164] = {.lex_state = 579}, + [3165] = {.lex_state = 10}, + [3166] = {.lex_state = 628}, + [3167] = {.lex_state = 628}, + [3168] = {.lex_state = 628}, + [3169] = {.lex_state = 628}, + [3170] = {.lex_state = 10}, + [3171] = {.lex_state = 10}, + [3172] = {.lex_state = 579}, + [3173] = {.lex_state = 579}, + [3174] = {.lex_state = 579}, + [3175] = {.lex_state = 579}, + [3176] = {.lex_state = 579}, + [3177] = {.lex_state = 628}, + [3178] = {.lex_state = 628}, + [3179] = {.lex_state = 628}, + [3180] = {.lex_state = 65}, + [3181] = {.lex_state = 10}, + [3182] = {.lex_state = 579}, + [3183] = {.lex_state = 10}, + [3184] = {.lex_state = 628}, + [3185] = {.lex_state = 192}, + [3186] = {.lex_state = 10}, + [3187] = {.lex_state = 628}, + [3188] = {.lex_state = 628}, + [3189] = {.lex_state = 628}, + [3190] = {.lex_state = 628}, + [3191] = {.lex_state = 628}, + [3192] = {.lex_state = 628}, + [3193] = {.lex_state = 579}, + [3194] = {.lex_state = 10}, + [3195] = {.lex_state = 628}, [3196] = {.lex_state = 10}, - [3197] = {.lex_state = 75}, - [3198] = {.lex_state = 627}, - [3199] = {.lex_state = 627}, - [3200] = {.lex_state = 627}, - [3201] = {.lex_state = 578}, - [3202] = {.lex_state = 578}, - [3203] = {.lex_state = 79}, - [3204] = {.lex_state = 578}, - [3205] = {.lex_state = 578}, - [3206] = {.lex_state = 578}, - [3207] = {.lex_state = 578}, - [3208] = {.lex_state = 627}, - [3209] = {.lex_state = 193}, - [3210] = {.lex_state = 578}, - [3211] = {.lex_state = 192}, - [3212] = {.lex_state = 578}, - [3213] = {.lex_state = 578}, - [3214] = {.lex_state = 578}, - [3215] = {.lex_state = 627}, - [3216] = {.lex_state = 627}, - [3217] = {.lex_state = 627}, - [3218] = {.lex_state = 627}, - [3219] = {.lex_state = 627}, - [3220] = {.lex_state = 627}, - [3221] = {.lex_state = 627}, + [3197] = {.lex_state = 10}, + [3198] = {.lex_state = 628}, + [3199] = {.lex_state = 628}, + [3200] = {.lex_state = 628}, + [3201] = {.lex_state = 628}, + [3202] = {.lex_state = 628}, + [3203] = {.lex_state = 628}, + [3204] = {.lex_state = 628}, + [3205] = {.lex_state = 628}, + [3206] = {.lex_state = 628}, + [3207] = {.lex_state = 10}, + [3208] = {.lex_state = 10}, + [3209] = {.lex_state = 10}, + [3210] = {.lex_state = 579}, + [3211] = {.lex_state = 579}, + [3212] = {.lex_state = 189}, + [3213] = {.lex_state = 628}, + [3214] = {.lex_state = 579}, + [3215] = {.lex_state = 628}, + [3216] = {.lex_state = 628}, + [3217] = {.lex_state = 628}, + [3218] = {.lex_state = 192}, + [3219] = {.lex_state = 628}, + [3220] = {.lex_state = 628}, + [3221] = {.lex_state = 628}, [3222] = {.lex_state = 10}, - [3223] = {.lex_state = 627}, - [3224] = {.lex_state = 627}, - [3225] = {.lex_state = 627}, - [3226] = {.lex_state = 578}, - [3227] = {.lex_state = 627}, - [3228] = {.lex_state = 578}, - [3229] = {.lex_state = 578}, - [3230] = {.lex_state = 578}, - [3231] = {.lex_state = 578}, - [3232] = {.lex_state = 578}, - [3233] = {.lex_state = 578}, - [3234] = {.lex_state = 578}, - [3235] = {.lex_state = 578}, - [3236] = {.lex_state = 578}, - [3237] = {.lex_state = 578}, - [3238] = {.lex_state = 578}, - [3239] = {.lex_state = 10}, - [3240] = {.lex_state = 627}, - [3241] = {.lex_state = 10}, - [3242] = {.lex_state = 192}, - [3243] = {.lex_state = 627}, - [3244] = {.lex_state = 627}, - [3245] = {.lex_state = 627}, - [3246] = {.lex_state = 627}, - [3247] = {.lex_state = 10}, - [3248] = {.lex_state = 10}, - [3249] = {.lex_state = 10}, - [3250] = {.lex_state = 10}, + [3223] = {.lex_state = 628}, + [3224] = {.lex_state = 579}, + [3225] = {.lex_state = 628}, + [3226] = {.lex_state = 71}, + [3227] = {.lex_state = 628}, + [3228] = {.lex_state = 628}, + [3229] = {.lex_state = 10}, + [3230] = {.lex_state = 579}, + [3231] = {.lex_state = 628}, + [3232] = {.lex_state = 579}, + [3233] = {.lex_state = 579}, + [3234] = {.lex_state = 579}, + [3235] = {.lex_state = 579}, + [3236] = {.lex_state = 579}, + [3237] = {.lex_state = 579}, + [3238] = {.lex_state = 579}, + [3239] = {.lex_state = 579}, + [3240] = {.lex_state = 579}, + [3241] = {.lex_state = 579}, + [3242] = {.lex_state = 579}, + [3243] = {.lex_state = 628}, + [3244] = {.lex_state = 73}, + [3245] = {.lex_state = 579}, + [3246] = {.lex_state = 579}, + [3247] = {.lex_state = 579}, + [3248] = {.lex_state = 634}, + [3249] = {.lex_state = 579}, + [3250] = {.lex_state = 628}, [3251] = {.lex_state = 10}, - [3252] = {.lex_state = 10}, - [3253] = {.lex_state = 10}, - [3254] = {.lex_state = 65}, + [3252] = {.lex_state = 628}, + [3253] = {.lex_state = 628}, + [3254] = {.lex_state = 628}, [3255] = {.lex_state = 10}, - [3256] = {.lex_state = 10}, - [3257] = {.lex_state = 71}, - [3258] = {.lex_state = 10}, - [3259] = {.lex_state = 578}, - [3260] = {.lex_state = 578}, - [3261] = {.lex_state = 627}, - [3262] = {.lex_state = 627}, - [3263] = {.lex_state = 627}, - [3264] = {.lex_state = 633}, - [3265] = {.lex_state = 578}, + [3256] = {.lex_state = 579}, + [3257] = {.lex_state = 193}, + [3258] = {.lex_state = 628}, + [3259] = {.lex_state = 71}, + [3260] = {.lex_state = 79}, + [3261] = {.lex_state = 71}, + [3262] = {.lex_state = 628}, + [3263] = {.lex_state = 71}, + [3264] = {.lex_state = 628}, + [3265] = {.lex_state = 628}, [3266] = {.lex_state = 10}, - [3267] = {.lex_state = 578}, - [3268] = {.lex_state = 208}, - [3269] = {.lex_state = 578}, - [3270] = {.lex_state = 578}, - [3271] = {.lex_state = 195}, - [3272] = {.lex_state = 195}, - [3273] = {.lex_state = 578}, - [3274] = {.lex_state = 578}, - [3275] = {.lex_state = 578}, - [3276] = {.lex_state = 578}, + [3267] = {.lex_state = 191}, + [3268] = {.lex_state = 10}, + [3269] = {.lex_state = 10}, + [3270] = {.lex_state = 10}, + [3271] = {.lex_state = 10}, + [3272] = {.lex_state = 579}, + [3273] = {.lex_state = 579}, + [3274] = {.lex_state = 579}, + [3275] = {.lex_state = 579}, + [3276] = {.lex_state = 208}, [3277] = {.lex_state = 10}, - [3278] = {.lex_state = 578}, - [3279] = {.lex_state = 578}, - [3280] = {.lex_state = 578}, - [3281] = {.lex_state = 195}, - [3282] = {.lex_state = 10}, - [3283] = {.lex_state = 578}, - [3284] = {.lex_state = 578}, - [3285] = {.lex_state = 578}, - [3286] = {.lex_state = 10}, - [3287] = {.lex_state = 578}, - [3288] = {.lex_state = 578}, - [3289] = {.lex_state = 2133}, - [3290] = {.lex_state = 578}, - [3291] = {.lex_state = 10}, - [3292] = {.lex_state = 578}, - [3293] = {.lex_state = 190}, + [3278] = {.lex_state = 10}, + [3279] = {.lex_state = 10}, + [3280] = {.lex_state = 10}, + [3281] = {.lex_state = 10}, + [3282] = {.lex_state = 579}, + [3283] = {.lex_state = 579}, + [3284] = {.lex_state = 85}, + [3285] = {.lex_state = 579}, + [3286] = {.lex_state = 579}, + [3287] = {.lex_state = 579}, + [3288] = {.lex_state = 579}, + [3289] = {.lex_state = 579}, + [3290] = {.lex_state = 579}, + [3291] = {.lex_state = 579}, + [3292] = {.lex_state = 10}, + [3293] = {.lex_state = 579}, [3294] = {.lex_state = 10}, - [3295] = {.lex_state = 578}, - [3296] = {.lex_state = 578}, - [3297] = {.lex_state = 578}, - [3298] = {.lex_state = 578}, - [3299] = {.lex_state = 578}, - [3300] = {.lex_state = 578}, - [3301] = {.lex_state = 578}, - [3302] = {.lex_state = 578}, - [3303] = {.lex_state = 578}, - [3304] = {.lex_state = 578}, - [3305] = {.lex_state = 578}, - [3306] = {.lex_state = 578}, - [3307] = {.lex_state = 578}, - [3308] = {.lex_state = 208}, - [3309] = {.lex_state = 10}, - [3310] = {.lex_state = 10}, - [3311] = {.lex_state = 578}, - [3312] = {.lex_state = 104}, - [3313] = {.lex_state = 10}, - [3314] = {.lex_state = 10}, - [3315] = {.lex_state = 136}, - [3316] = {.lex_state = 578}, - [3317] = {.lex_state = 578}, - [3318] = {.lex_state = 2133}, - [3319] = {.lex_state = 578}, - [3320] = {.lex_state = 191}, - [3321] = {.lex_state = 578}, - [3322] = {.lex_state = 578}, - [3323] = {.lex_state = 578}, - [3324] = {.lex_state = 578}, - [3325] = {.lex_state = 578}, - [3326] = {.lex_state = 578}, - [3327] = {.lex_state = 578}, - [3328] = {.lex_state = 10}, - [3329] = {.lex_state = 578}, - [3330] = {.lex_state = 191}, - [3331] = {.lex_state = 578}, - [3332] = {.lex_state = 578}, - [3333] = {.lex_state = 578}, - [3334] = {.lex_state = 578}, - [3335] = {.lex_state = 633}, - [3336] = {.lex_state = 633}, - [3337] = {.lex_state = 10}, - [3338] = {.lex_state = 10}, - [3339] = {.lex_state = 10}, - [3340] = {.lex_state = 578}, - [3341] = {.lex_state = 83}, - [3342] = {.lex_state = 578}, - [3343] = {.lex_state = 10}, - [3344] = {.lex_state = 578}, - [3345] = {.lex_state = 578}, - [3346] = {.lex_state = 578}, - [3347] = {.lex_state = 195}, + [3295] = {.lex_state = 579}, + [3296] = {.lex_state = 579}, + [3297] = {.lex_state = 579}, + [3298] = {.lex_state = 579}, + [3299] = {.lex_state = 579}, + [3300] = {.lex_state = 579}, + [3301] = {.lex_state = 579}, + [3302] = {.lex_state = 579}, + [3303] = {.lex_state = 579}, + [3304] = {.lex_state = 579}, + [3305] = {.lex_state = 579}, + [3306] = {.lex_state = 579}, + [3307] = {.lex_state = 579}, + [3308] = {.lex_state = 579}, + [3309] = {.lex_state = 579}, + [3310] = {.lex_state = 579}, + [3311] = {.lex_state = 579}, + [3312] = {.lex_state = 2134}, + [3313] = {.lex_state = 579}, + [3314] = {.lex_state = 190}, + [3315] = {.lex_state = 579}, + [3316] = {.lex_state = 188}, + [3317] = {.lex_state = 579}, + [3318] = {.lex_state = 579}, + [3319] = {.lex_state = 10}, + [3320] = {.lex_state = 195}, + [3321] = {.lex_state = 10}, + [3322] = {.lex_state = 579}, + [3323] = {.lex_state = 579}, + [3324] = {.lex_state = 195}, + [3325] = {.lex_state = 579}, + [3326] = {.lex_state = 579}, + [3327] = {.lex_state = 579}, + [3328] = {.lex_state = 579}, + [3329] = {.lex_state = 579}, + [3330] = {.lex_state = 579}, + [3331] = {.lex_state = 579}, + [3332] = {.lex_state = 579}, + [3333] = {.lex_state = 579}, + [3334] = {.lex_state = 579}, + [3335] = {.lex_state = 200}, + [3336] = {.lex_state = 10}, + [3337] = {.lex_state = 579}, + [3338] = {.lex_state = 579}, + [3339] = {.lex_state = 579}, + [3340] = {.lex_state = 10}, + [3341] = {.lex_state = 195}, + [3342] = {.lex_state = 579}, + [3343] = {.lex_state = 579}, + [3344] = {.lex_state = 10}, + [3345] = {.lex_state = 195}, + [3346] = {.lex_state = 579}, + [3347] = {.lex_state = 191}, [3348] = {.lex_state = 10}, - [3349] = {.lex_state = 195}, + [3349] = {.lex_state = 10}, [3350] = {.lex_state = 10}, - [3351] = {.lex_state = 201}, - [3352] = {.lex_state = 578}, - [3353] = {.lex_state = 578}, - [3354] = {.lex_state = 578}, - [3355] = {.lex_state = 578}, - [3356] = {.lex_state = 10}, - [3357] = {.lex_state = 195}, - [3358] = {.lex_state = 578}, - [3359] = {.lex_state = 10}, - [3360] = {.lex_state = 195}, - [3361] = {.lex_state = 578}, - [3362] = {.lex_state = 10}, - [3363] = {.lex_state = 578}, - [3364] = {.lex_state = 85}, - [3365] = {.lex_state = 578}, - [3366] = {.lex_state = 578}, - [3367] = {.lex_state = 10}, - [3368] = {.lex_state = 189}, - [3369] = {.lex_state = 10}, - [3370] = {.lex_state = 10}, - [3371] = {.lex_state = 633}, - [3372] = {.lex_state = 578}, - [3373] = {.lex_state = 10}, - [3374] = {.lex_state = 10}, - [3375] = {.lex_state = 10}, - [3376] = {.lex_state = 10}, - [3377] = {.lex_state = 578}, - [3378] = {.lex_state = 578}, - [3379] = {.lex_state = 10}, - [3380] = {.lex_state = 100}, - [3381] = {.lex_state = 578}, - [3382] = {.lex_state = 188}, - [3383] = {.lex_state = 10}, + [3351] = {.lex_state = 10}, + [3352] = {.lex_state = 579}, + [3353] = {.lex_state = 579}, + [3354] = {.lex_state = 2134}, + [3355] = {.lex_state = 10}, + [3356] = {.lex_state = 634}, + [3357] = {.lex_state = 634}, + [3358] = {.lex_state = 195}, + [3359] = {.lex_state = 201}, + [3360] = {.lex_state = 579}, + [3361] = {.lex_state = 579}, + [3362] = {.lex_state = 209}, + [3363] = {.lex_state = 634}, + [3364] = {.lex_state = 579}, + [3365] = {.lex_state = 579}, + [3366] = {.lex_state = 579}, + [3367] = {.lex_state = 100}, + [3368] = {.lex_state = 579}, + [3369] = {.lex_state = 579}, + [3370] = {.lex_state = 189}, + [3371] = {.lex_state = 634}, + [3372] = {.lex_state = 579}, + [3373] = {.lex_state = 579}, + [3374] = {.lex_state = 579}, + [3375] = {.lex_state = 195}, + [3376] = {.lex_state = 195}, + [3377] = {.lex_state = 579}, + [3378] = {.lex_state = 10}, + [3379] = {.lex_state = 195}, + [3380] = {.lex_state = 579}, + [3381] = {.lex_state = 579}, + [3382] = {.lex_state = 10}, + [3383] = {.lex_state = 83}, [3384] = {.lex_state = 10}, - [3385] = {.lex_state = 10}, - [3386] = {.lex_state = 578}, - [3387] = {.lex_state = 578}, - [3388] = {.lex_state = 578}, - [3389] = {.lex_state = 10}, - [3390] = {.lex_state = 578}, - [3391] = {.lex_state = 578}, - [3392] = {.lex_state = 10}, - [3393] = {.lex_state = 578}, - [3394] = {.lex_state = 578}, - [3395] = {.lex_state = 200}, - [3396] = {.lex_state = 190}, - [3397] = {.lex_state = 578}, - [3398] = {.lex_state = 578}, - [3399] = {.lex_state = 578}, + [3385] = {.lex_state = 579}, + [3386] = {.lex_state = 579}, + [3387] = {.lex_state = 579}, + [3388] = {.lex_state = 10}, + [3389] = {.lex_state = 579}, + [3390] = {.lex_state = 10}, + [3391] = {.lex_state = 579}, + [3392] = {.lex_state = 136}, + [3393] = {.lex_state = 579}, + [3394] = {.lex_state = 579}, + [3395] = {.lex_state = 190}, + [3396] = {.lex_state = 104}, + [3397] = {.lex_state = 10}, + [3398] = {.lex_state = 10}, + [3399] = {.lex_state = 10}, [3400] = {.lex_state = 10}, - [3401] = {.lex_state = 578}, - [3402] = {.lex_state = 195}, - [3403] = {.lex_state = 578}, - [3404] = {.lex_state = 194}, - [3405] = {.lex_state = 195}, - [3406] = {.lex_state = 86}, - [3407] = {.lex_state = 86}, - [3408] = {.lex_state = 202}, - [3409] = {.lex_state = 223}, - [3410] = {.lex_state = 238}, - [3411] = {.lex_state = 239}, + [3401] = {.lex_state = 10}, + [3402] = {.lex_state = 579}, + [3403] = {.lex_state = 10}, + [3404] = {.lex_state = 579}, + [3405] = {.lex_state = 10}, + [3406] = {.lex_state = 10}, + [3407] = {.lex_state = 194}, + [3408] = {.lex_state = 86}, + [3409] = {.lex_state = 86}, + [3410] = {.lex_state = 202}, + [3411] = {.lex_state = 224}, [3412] = {.lex_state = 194}, - [3413] = {.lex_state = 195}, - [3414] = {.lex_state = 210}, - [3415] = {.lex_state = 210}, - [3416] = {.lex_state = 101}, - [3417] = {.lex_state = 105}, - [3418] = {.lex_state = 130}, - [3419] = {.lex_state = 10}, - [3420] = {.lex_state = 106}, - [3421] = {.lex_state = 87}, - [3422] = {.lex_state = 209}, - [3423] = {.lex_state = 612}, - [3424] = {.lex_state = 130}, - [3425] = {.lex_state = 10}, - [3426] = {.lex_state = 209}, + [3413] = {.lex_state = 239}, + [3414] = {.lex_state = 240}, + [3415] = {.lex_state = 195}, + [3416] = {.lex_state = 211}, + [3417] = {.lex_state = 211}, + [3418] = {.lex_state = 101}, + [3419] = {.lex_state = 130}, + [3420] = {.lex_state = 105}, + [3421] = {.lex_state = 10}, + [3422] = {.lex_state = 130}, + [3423] = {.lex_state = 583}, + [3424] = {.lex_state = 210}, + [3425] = {.lex_state = 613}, + [3426] = {.lex_state = 130}, [3427] = {.lex_state = 10}, - [3428] = {.lex_state = 10}, + [3428] = {.lex_state = 210}, [3429] = {.lex_state = 10}, - [3430] = {.lex_state = 212}, - [3431] = {.lex_state = 578}, - [3432] = {.lex_state = 106}, - [3433] = {.lex_state = 612}, - [3434] = {.lex_state = 10}, + [3430] = {.lex_state = 10}, + [3431] = {.lex_state = 10}, + [3432] = {.lex_state = 213}, + [3433] = {.lex_state = 579}, + [3434] = {.lex_state = 613}, [3435] = {.lex_state = 10}, - [3436] = {.lex_state = 612}, - [3437] = {.lex_state = 582}, - [3438] = {.lex_state = 612}, - [3439] = {.lex_state = 612}, - [3440] = {.lex_state = 10}, - [3441] = {.lex_state = 578}, - [3442] = {.lex_state = 130}, - [3443] = {.lex_state = 225}, - [3444] = {.lex_state = 107}, - [3445] = {.lex_state = 204}, - [3446] = {.lex_state = 240}, - [3447] = {.lex_state = 87}, - [3448] = {.lex_state = 136}, - [3449] = {.lex_state = 87}, - [3450] = {.lex_state = 582}, - [3451] = {.lex_state = 240}, - [3452] = {.lex_state = 2075}, - [3453] = {.lex_state = 2075}, - [3454] = {.lex_state = 2134}, - [3455] = {.lex_state = 2134}, - [3456] = {.lex_state = 1731, .external_lex_state = 2}, - [3457] = {.lex_state = 582}, - [3458] = {.lex_state = 211}, - [3459] = {.lex_state = 582}, - [3460] = {.lex_state = 2075}, - [3461] = {.lex_state = 2075}, - [3462] = {.lex_state = 213}, - [3463] = {.lex_state = 102}, - [3464] = {.lex_state = 211}, - [3465] = {.lex_state = 224}, - [3466] = {.lex_state = 211}, - [3467] = {.lex_state = 136}, - [3468] = {.lex_state = 108}, - [3469] = {.lex_state = 212}, + [3436] = {.lex_state = 10}, + [3437] = {.lex_state = 613}, + [3438] = {.lex_state = 613}, + [3439] = {.lex_state = 613}, + [3440] = {.lex_state = 106}, + [3441] = {.lex_state = 195}, + [3442] = {.lex_state = 579}, + [3443] = {.lex_state = 106}, + [3444] = {.lex_state = 10}, + [3445] = {.lex_state = 87}, + [3446] = {.lex_state = 88}, + [3447] = {.lex_state = 241}, + [3448] = {.lex_state = 87}, + [3449] = {.lex_state = 136}, + [3450] = {.lex_state = 583}, + [3451] = {.lex_state = 583}, + [3452] = {.lex_state = 241}, + [3453] = {.lex_state = 2076}, + [3454] = {.lex_state = 2076}, + [3455] = {.lex_state = 2135}, + [3456] = {.lex_state = 2135}, + [3457] = {.lex_state = 1732, .external_lex_state = 2}, + [3458] = {.lex_state = 583}, + [3459] = {.lex_state = 212}, + [3460] = {.lex_state = 225}, + [3461] = {.lex_state = 2076}, + [3462] = {.lex_state = 2076}, + [3463] = {.lex_state = 214}, + [3464] = {.lex_state = 84}, + [3465] = {.lex_state = 212}, + [3466] = {.lex_state = 136}, + [3467] = {.lex_state = 212}, + [3468] = {.lex_state = 213}, + [3469] = {.lex_state = 108}, [3470] = {.lex_state = 136}, - [3471] = {.lex_state = 2179}, - [3472] = {.lex_state = 2179}, - [3473] = {.lex_state = 10}, - [3474] = {.lex_state = 2134}, - [3475] = {.lex_state = 136}, - [3476] = {.lex_state = 2134}, - [3477] = {.lex_state = 203}, - [3478] = {.lex_state = 2179}, - [3479] = {.lex_state = 2179}, - [3480] = {.lex_state = 214}, - [3481] = {.lex_state = 84}, - [3482] = {.lex_state = 2075}, - [3483] = {.lex_state = 2075}, - [3484] = {.lex_state = 1731, .external_lex_state = 2}, - [3485] = {.lex_state = 211}, + [3471] = {.lex_state = 136}, + [3472] = {.lex_state = 2180}, + [3473] = {.lex_state = 2180}, + [3474] = {.lex_state = 10}, + [3475] = {.lex_state = 2135}, + [3476] = {.lex_state = 215}, + [3477] = {.lex_state = 2135}, + [3478] = {.lex_state = 203}, + [3479] = {.lex_state = 2180}, + [3480] = {.lex_state = 2180}, + [3481] = {.lex_state = 226}, + [3482] = {.lex_state = 102}, + [3483] = {.lex_state = 2076}, + [3484] = {.lex_state = 2076}, + [3485] = {.lex_state = 1732, .external_lex_state = 2}, [3486] = {.lex_state = 212}, - [3487] = {.lex_state = 136}, - [3488] = {.lex_state = 582}, + [3487] = {.lex_state = 213}, + [3488] = {.lex_state = 136}, [3489] = {.lex_state = 136}, - [3490] = {.lex_state = 136}, - [3491] = {.lex_state = 1731, .external_lex_state = 2}, - [3492] = {.lex_state = 212}, - [3493] = {.lex_state = 2075}, - [3494] = {.lex_state = 2075}, - [3495] = {.lex_state = 108}, - [3496] = {.lex_state = 110}, - [3497] = {.lex_state = 2075}, - [3498] = {.lex_state = 2075}, - [3499] = {.lex_state = 1731, .external_lex_state = 2}, - [3500] = {.lex_state = 2075}, - [3501] = {.lex_state = 2075}, - [3502] = {.lex_state = 1731, .external_lex_state = 2}, - [3503] = {.lex_state = 2075}, - [3504] = {.lex_state = 2075}, - [3505] = {.lex_state = 1731, .external_lex_state = 2}, - [3506] = {.lex_state = 2075}, - [3507] = {.lex_state = 2075}, - [3508] = {.lex_state = 1731, .external_lex_state = 2}, - [3509] = {.lex_state = 2075}, - [3510] = {.lex_state = 2075}, - [3511] = {.lex_state = 1731, .external_lex_state = 2}, - [3512] = {.lex_state = 2075}, - [3513] = {.lex_state = 2075}, - [3514] = {.lex_state = 1731, .external_lex_state = 2}, - [3515] = {.lex_state = 2075}, - [3516] = {.lex_state = 2075}, - [3517] = {.lex_state = 1731, .external_lex_state = 2}, - [3518] = {.lex_state = 2075}, - [3519] = {.lex_state = 2075}, - [3520] = {.lex_state = 1731, .external_lex_state = 2}, - [3521] = {.lex_state = 2075}, - [3522] = {.lex_state = 2075}, - [3523] = {.lex_state = 1731, .external_lex_state = 2}, - [3524] = {.lex_state = 2075}, - [3525] = {.lex_state = 2075}, - [3526] = {.lex_state = 1731, .external_lex_state = 2}, - [3527] = {.lex_state = 1731, .external_lex_state = 2}, - [3528] = {.lex_state = 1731, .external_lex_state = 2}, - [3529] = {.lex_state = 1731, .external_lex_state = 2}, - [3530] = {.lex_state = 1731, .external_lex_state = 2}, - [3531] = {.lex_state = 1731, .external_lex_state = 2}, - [3532] = {.lex_state = 1731, .external_lex_state = 2}, - [3533] = {.lex_state = 87}, - [3534] = {.lex_state = 107}, - [3535] = {.lex_state = 88}, + [3490] = {.lex_state = 1732, .external_lex_state = 2}, + [3491] = {.lex_state = 136}, + [3492] = {.lex_state = 110}, + [3493] = {.lex_state = 2076}, + [3494] = {.lex_state = 2076}, + [3495] = {.lex_state = 1732, .external_lex_state = 2}, + [3496] = {.lex_state = 2076}, + [3497] = {.lex_state = 2076}, + [3498] = {.lex_state = 108}, + [3499] = {.lex_state = 2076}, + [3500] = {.lex_state = 2076}, + [3501] = {.lex_state = 1732, .external_lex_state = 2}, + [3502] = {.lex_state = 2076}, + [3503] = {.lex_state = 2076}, + [3504] = {.lex_state = 1732, .external_lex_state = 2}, + [3505] = {.lex_state = 2076}, + [3506] = {.lex_state = 2076}, + [3507] = {.lex_state = 1732, .external_lex_state = 2}, + [3508] = {.lex_state = 2076}, + [3509] = {.lex_state = 2076}, + [3510] = {.lex_state = 1732, .external_lex_state = 2}, + [3511] = {.lex_state = 2076}, + [3512] = {.lex_state = 2076}, + [3513] = {.lex_state = 1732, .external_lex_state = 2}, + [3514] = {.lex_state = 2076}, + [3515] = {.lex_state = 2076}, + [3516] = {.lex_state = 1732, .external_lex_state = 2}, + [3517] = {.lex_state = 2076}, + [3518] = {.lex_state = 2076}, + [3519] = {.lex_state = 1732, .external_lex_state = 2}, + [3520] = {.lex_state = 2076}, + [3521] = {.lex_state = 2076}, + [3522] = {.lex_state = 1732, .external_lex_state = 2}, + [3523] = {.lex_state = 2076}, + [3524] = {.lex_state = 2076}, + [3525] = {.lex_state = 1732, .external_lex_state = 2}, + [3526] = {.lex_state = 1732, .external_lex_state = 2}, + [3527] = {.lex_state = 1732, .external_lex_state = 2}, + [3528] = {.lex_state = 1732, .external_lex_state = 2}, + [3529] = {.lex_state = 1732, .external_lex_state = 2}, + [3530] = {.lex_state = 1732, .external_lex_state = 2}, + [3531] = {.lex_state = 1732, .external_lex_state = 2}, + [3532] = {.lex_state = 213}, + [3533] = {.lex_state = 225}, + [3534] = {.lex_state = 583}, + [3535] = {.lex_state = 130}, [3536] = {.lex_state = 130}, - [3537] = {.lex_state = 130}, - [3538] = {.lex_state = 224}, - [3539] = {.lex_state = 108}, - [3540] = {.lex_state = 108}, - [3541] = {.lex_state = 1731, .external_lex_state = 2}, - [3542] = {.lex_state = 89}, - [3543] = {.lex_state = 582}, - [3544] = {.lex_state = 103}, - [3545] = {.lex_state = 582}, - [3546] = {.lex_state = 582}, - [3547] = {.lex_state = 95}, - [3548] = {.lex_state = 582}, - [3549] = {.lex_state = 582}, - [3550] = {.lex_state = 225}, - [3551] = {.lex_state = 95}, - [3552] = {.lex_state = 582}, - [3553] = {.lex_state = 241}, - [3554] = {.lex_state = 241}, - [3555] = {.lex_state = 582}, - [3556] = {.lex_state = 226}, - [3557] = {.lex_state = 582}, - [3558] = {.lex_state = 582}, - [3559] = {.lex_state = 112}, - [3560] = {.lex_state = 217}, - [3561] = {.lex_state = 582}, - [3562] = {.lex_state = 582}, - [3563] = {.lex_state = 215}, - [3564] = {.lex_state = 582}, - [3565] = {.lex_state = 582}, - [3566] = {.lex_state = 112}, - [3567] = {.lex_state = 205}, - [3568] = {.lex_state = 628}, - [3569] = {.lex_state = 582}, - [3570] = {.lex_state = 582}, - [3571] = {.lex_state = 582}, - [3572] = {.lex_state = 582}, - [3573] = {.lex_state = 225}, - [3574] = {.lex_state = 241}, - [3575] = {.lex_state = 582}, - [3576] = {.lex_state = 582}, - [3577] = {.lex_state = 582}, - [3578] = {.lex_state = 582}, - [3579] = {.lex_state = 582}, - [3580] = {.lex_state = 215}, - [3581] = {.lex_state = 582}, - [3582] = {.lex_state = 87}, + [3537] = {.lex_state = 107}, + [3538] = {.lex_state = 87}, + [3539] = {.lex_state = 87}, + [3540] = {.lex_state = 107}, + [3541] = {.lex_state = 108}, + [3542] = {.lex_state = 108}, + [3543] = {.lex_state = 204}, + [3544] = {.lex_state = 1732, .external_lex_state = 2}, + [3545] = {.lex_state = 252}, + [3546] = {.lex_state = 583}, + [3547] = {.lex_state = 216}, + [3548] = {.lex_state = 218}, + [3549] = {.lex_state = 583}, + [3550] = {.lex_state = 583}, + [3551] = {.lex_state = 226}, + [3552] = {.lex_state = 227}, + [3553] = {.lex_state = 218}, + [3554] = {.lex_state = 583}, + [3555] = {.lex_state = 583}, + [3556] = {.lex_state = 95}, + [3557] = {.lex_state = 583}, + [3558] = {.lex_state = 583}, + [3559] = {.lex_state = 205}, + [3560] = {.lex_state = 583}, + [3561] = {.lex_state = 583}, + [3562] = {.lex_state = 629}, + [3563] = {.lex_state = 95}, + [3564] = {.lex_state = 583}, + [3565] = {.lex_state = 583}, + [3566] = {.lex_state = 95}, + [3567] = {.lex_state = 242}, + [3568] = {.lex_state = 583}, + [3569] = {.lex_state = 583}, + [3570] = {.lex_state = 583}, + [3571] = {.lex_state = 112}, + [3572] = {.lex_state = 583}, + [3573] = {.lex_state = 583}, + [3574] = {.lex_state = 213}, + [3575] = {.lex_state = 226}, + [3576] = {.lex_state = 583}, + [3577] = {.lex_state = 112}, + [3578] = {.lex_state = 583}, + [3579] = {.lex_state = 109}, + [3580] = {.lex_state = 226}, + [3581] = {.lex_state = 583}, + [3582] = {.lex_state = 583}, [3583] = {.lex_state = 109}, - [3584] = {.lex_state = 582}, - [3585] = {.lex_state = 582}, - [3586] = {.lex_state = 225}, - [3587] = {.lex_state = 217}, - [3588] = {.lex_state = 109}, - [3589] = {.lex_state = 582}, - [3590] = {.lex_state = 109}, - [3591] = {.lex_state = 212}, - [3592] = {.lex_state = 582}, - [3593] = {.lex_state = 582}, - [3594] = {.lex_state = 582}, - [3595] = {.lex_state = 582}, - [3596] = {.lex_state = 111}, - [3597] = {.lex_state = 582}, - [3598] = {.lex_state = 582}, - [3599] = {.lex_state = 582}, - [3600] = {.lex_state = 582}, - [3601] = {.lex_state = 582}, - [3602] = {.lex_state = 582}, - [3603] = {.lex_state = 582}, - [3604] = {.lex_state = 582}, - [3605] = {.lex_state = 582}, - [3606] = {.lex_state = 582}, - [3607] = {.lex_state = 241}, - [3608] = {.lex_state = 95}, - [3609] = {.lex_state = 245}, - [3610] = {.lex_state = 89}, - [3611] = {.lex_state = 628}, - [3612] = {.lex_state = 109}, + [3584] = {.lex_state = 109}, + [3585] = {.lex_state = 242}, + [3586] = {.lex_state = 583}, + [3587] = {.lex_state = 583}, + [3588] = {.lex_state = 583}, + [3589] = {.lex_state = 111}, + [3590] = {.lex_state = 583}, + [3591] = {.lex_state = 583}, + [3592] = {.lex_state = 583}, + [3593] = {.lex_state = 583}, + [3594] = {.lex_state = 583}, + [3595] = {.lex_state = 583}, + [3596] = {.lex_state = 583}, + [3597] = {.lex_state = 583}, + [3598] = {.lex_state = 87}, + [3599] = {.lex_state = 583}, + [3600] = {.lex_state = 103}, + [3601] = {.lex_state = 583}, + [3602] = {.lex_state = 583}, + [3603] = {.lex_state = 583}, + [3604] = {.lex_state = 583}, + [3605] = {.lex_state = 583}, + [3606] = {.lex_state = 583}, + [3607] = {.lex_state = 583}, + [3608] = {.lex_state = 583}, + [3609] = {.lex_state = 242}, + [3610] = {.lex_state = 583}, + [3611] = {.lex_state = 89}, + [3612] = {.lex_state = 583}, [3613] = {.lex_state = 95}, - [3614] = {.lex_state = 251}, - [3615] = {.lex_state = 582}, - [3616] = {.lex_state = 582}, - [3617] = {.lex_state = 582}, - [3618] = {.lex_state = 95}, - [3619] = {.lex_state = 249}, - [3620] = {.lex_state = 281}, - [3621] = {.lex_state = 249}, - [3622] = {.lex_state = 246}, - [3623] = {.lex_state = 263}, - [3624] = {.lex_state = 249}, - [3625] = {.lex_state = 216}, - [3626] = {.lex_state = 579}, - [3627] = {.lex_state = 227}, - [3628] = {.lex_state = 218}, - [3629] = {.lex_state = 113}, - [3630] = {.lex_state = 249}, + [3614] = {.lex_state = 246}, + [3615] = {.lex_state = 89}, + [3616] = {.lex_state = 629}, + [3617] = {.lex_state = 109}, + [3618] = {.lex_state = 216}, + [3619] = {.lex_state = 242}, + [3620] = {.lex_state = 583}, + [3621] = {.lex_state = 137}, + [3622] = {.lex_state = 114}, + [3623] = {.lex_state = 135}, + [3624] = {.lex_state = 219}, + [3625] = {.lex_state = 90}, + [3626] = {.lex_state = 250}, + [3627] = {.lex_state = 219}, + [3628] = {.lex_state = 250}, + [3629] = {.lex_state = 580}, + [3630] = {.lex_state = 250}, [3631] = {.lex_state = 114}, - [3632] = {.lex_state = 218}, - [3633] = {.lex_state = 249}, - [3634] = {.lex_state = 137}, + [3632] = {.lex_state = 580}, + [3633] = {.lex_state = 228}, + [3634] = {.lex_state = 250}, [3635] = {.lex_state = 113}, - [3636] = {.lex_state = 137}, - [3637] = {.lex_state = 113}, - [3638] = {.lex_state = 137}, - [3639] = {.lex_state = 114}, - [3640] = {.lex_state = 135}, - [3641] = {.lex_state = 249}, - [3642] = {.lex_state = 249}, - [3643] = {.lex_state = 137}, - [3644] = {.lex_state = 10}, - [3645] = {.lex_state = 252}, - [3646] = {.lex_state = 135}, - [3647] = {.lex_state = 249}, - [3648] = {.lex_state = 249}, - [3649] = {.lex_state = 218}, - [3650] = {.lex_state = 249}, - [3651] = {.lex_state = 113}, - [3652] = {.lex_state = 249}, - [3653] = {.lex_state = 90}, - [3654] = {.lex_state = 90}, - [3655] = {.lex_state = 216}, - [3656] = {.lex_state = 252}, - [3657] = {.lex_state = 218}, - [3658] = {.lex_state = 113}, - [3659] = {.lex_state = 579}, - [3660] = {.lex_state = 90}, - [3661] = {.lex_state = 130}, - [3662] = {.lex_state = 90}, - [3663] = {.lex_state = 95}, - [3664] = {.lex_state = 90}, - [3665] = {.lex_state = 249}, - [3666] = {.lex_state = 249}, - [3667] = {.lex_state = 227}, - [3668] = {.lex_state = 137}, - [3669] = {.lex_state = 216}, - [3670] = {.lex_state = 218}, - [3671] = {.lex_state = 137}, - [3672] = {.lex_state = 625}, - [3673] = {.lex_state = 264}, - [3674] = {.lex_state = 280}, - [3675] = {.lex_state = 260}, - [3676] = {.lex_state = 280}, - [3677] = {.lex_state = 216}, - [3678] = {.lex_state = 254}, - [3679] = {.lex_state = 130}, - [3680] = {.lex_state = 95}, - [3681] = {.lex_state = 130}, - [3682] = {.lex_state = 253}, - [3683] = {.lex_state = 116}, - [3684] = {.lex_state = 95}, + [3636] = {.lex_state = 250}, + [3637] = {.lex_state = 250}, + [3638] = {.lex_state = 228}, + [3639] = {.lex_state = 135}, + [3640] = {.lex_state = 113}, + [3641] = {.lex_state = 250}, + [3642] = {.lex_state = 90}, + [3643] = {.lex_state = 113}, + [3644] = {.lex_state = 250}, + [3645] = {.lex_state = 217}, + [3646] = {.lex_state = 250}, + [3647] = {.lex_state = 10}, + [3648] = {.lex_state = 137}, + [3649] = {.lex_state = 137}, + [3650] = {.lex_state = 250}, + [3651] = {.lex_state = 137}, + [3652] = {.lex_state = 219}, + [3653] = {.lex_state = 247}, + [3654] = {.lex_state = 250}, + [3655] = {.lex_state = 217}, + [3656] = {.lex_state = 90}, + [3657] = {.lex_state = 264}, + [3658] = {.lex_state = 219}, + [3659] = {.lex_state = 253}, + [3660] = {.lex_state = 113}, + [3661] = {.lex_state = 90}, + [3662] = {.lex_state = 253}, + [3663] = {.lex_state = 90}, + [3664] = {.lex_state = 130}, + [3665] = {.lex_state = 95}, + [3666] = {.lex_state = 95}, + [3667] = {.lex_state = 137}, + [3668] = {.lex_state = 250}, + [3669] = {.lex_state = 217}, + [3670] = {.lex_state = 219}, + [3671] = {.lex_state = 250}, + [3672] = {.lex_state = 137}, + [3673] = {.lex_state = 282}, + [3674] = {.lex_state = 113}, + [3675] = {.lex_state = 626}, + [3676] = {.lex_state = 123}, + [3677] = {.lex_state = 282}, + [3678] = {.lex_state = 281}, + [3679] = {.lex_state = 95}, + [3680] = {.lex_state = 130}, + [3681] = {.lex_state = 37}, + [3682] = {.lex_state = 115}, + [3683] = {.lex_state = 282}, + [3684] = {.lex_state = 37}, [3685] = {.lex_state = 37}, - [3686] = {.lex_state = 95}, - [3687] = {.lex_state = 137}, - [3688] = {.lex_state = 137}, - [3689] = {.lex_state = 222}, - [3690] = {.lex_state = 253}, - [3691] = {.lex_state = 625}, - [3692] = {.lex_state = 130}, - [3693] = {.lex_state = 130}, - [3694] = {.lex_state = 130}, - [3695] = {.lex_state = 115}, - [3696] = {.lex_state = 37}, - [3697] = {.lex_state = 115}, - [3698] = {.lex_state = 135}, - [3699] = {.lex_state = 130}, - [3700] = {.lex_state = 216}, - [3701] = {.lex_state = 281}, - [3702] = {.lex_state = 115}, - [3703] = {.lex_state = 137}, - [3704] = {.lex_state = 37}, - [3705] = {.lex_state = 281}, - [3706] = {.lex_state = 37}, - [3707] = {.lex_state = 37}, - [3708] = {.lex_state = 37}, - [3709] = {.lex_state = 37}, - [3710] = {.lex_state = 228}, - [3711] = {.lex_state = 250}, - [3712] = {.lex_state = 37}, - [3713] = {.lex_state = 211}, - [3714] = {.lex_state = 137}, - [3715] = {.lex_state = 228}, - [3716] = {.lex_state = 579}, - [3717] = {.lex_state = 625}, - [3718] = {.lex_state = 579}, - [3719] = {.lex_state = 137}, - [3720] = {.lex_state = 130}, - [3721] = {.lex_state = 130}, - [3722] = {.lex_state = 137}, - [3723] = {.lex_state = 281}, - [3724] = {.lex_state = 625}, - [3725] = {.lex_state = 137}, - [3726] = {.lex_state = 37}, - [3727] = {.lex_state = 625}, - [3728] = {.lex_state = 91}, - [3729] = {.lex_state = 625}, - [3730] = {.lex_state = 625}, - [3731] = {.lex_state = 115}, - [3732] = {.lex_state = 123}, - [3733] = {.lex_state = 130}, - [3734] = {.lex_state = 625}, - [3735] = {.lex_state = 135}, - [3736] = {.lex_state = 228}, - [3737] = {.lex_state = 130}, - [3738] = {.lex_state = 130}, - [3739] = {.lex_state = 137}, - [3740] = {.lex_state = 228}, - [3741] = {.lex_state = 219}, - [3742] = {.lex_state = 253}, - [3743] = {.lex_state = 130}, - [3744] = {.lex_state = 37}, - [3745] = {.lex_state = 625}, + [3686] = {.lex_state = 37}, + [3687] = {.lex_state = 115}, + [3688] = {.lex_state = 251}, + [3689] = {.lex_state = 130}, + [3690] = {.lex_state = 37}, + [3691] = {.lex_state = 229}, + [3692] = {.lex_state = 212}, + [3693] = {.lex_state = 137}, + [3694] = {.lex_state = 115}, + [3695] = {.lex_state = 91}, + [3696] = {.lex_state = 229}, + [3697] = {.lex_state = 37}, + [3698] = {.lex_state = 137}, + [3699] = {.lex_state = 115}, + [3700] = {.lex_state = 130}, + [3701] = {.lex_state = 130}, + [3702] = {.lex_state = 130}, + [3703] = {.lex_state = 265}, + [3704] = {.lex_state = 580}, + [3705] = {.lex_state = 580}, + [3706] = {.lex_state = 254}, + [3707] = {.lex_state = 261}, + [3708] = {.lex_state = 130}, + [3709] = {.lex_state = 130}, + [3710] = {.lex_state = 281}, + [3711] = {.lex_state = 95}, + [3712] = {.lex_state = 282}, + [3713] = {.lex_state = 37}, + [3714] = {.lex_state = 95}, + [3715] = {.lex_state = 137}, + [3716] = {.lex_state = 130}, + [3717] = {.lex_state = 137}, + [3718] = {.lex_state = 130}, + [3719] = {.lex_state = 626}, + [3720] = {.lex_state = 135}, + [3721] = {.lex_state = 217}, + [3722] = {.lex_state = 130}, + [3723] = {.lex_state = 220}, + [3724] = {.lex_state = 137}, + [3725] = {.lex_state = 130}, + [3726] = {.lex_state = 255}, + [3727] = {.lex_state = 130}, + [3728] = {.lex_state = 137}, + [3729] = {.lex_state = 37}, + [3730] = {.lex_state = 626}, + [3731] = {.lex_state = 137}, + [3732] = {.lex_state = 37}, + [3733] = {.lex_state = 37}, + [3734] = {.lex_state = 626}, + [3735] = {.lex_state = 37}, + [3736] = {.lex_state = 37}, + [3737] = {.lex_state = 37}, + [3738] = {.lex_state = 37}, + [3739] = {.lex_state = 37}, + [3740] = {.lex_state = 281}, + [3741] = {.lex_state = 37}, + [3742] = {.lex_state = 37}, + [3743] = {.lex_state = 37}, + [3744] = {.lex_state = 254}, + [3745] = {.lex_state = 229}, [3746] = {.lex_state = 37}, - [3747] = {.lex_state = 37}, - [3748] = {.lex_state = 37}, - [3749] = {.lex_state = 228}, - [3750] = {.lex_state = 37}, - [3751] = {.lex_state = 37}, - [3752] = {.lex_state = 37}, - [3753] = {.lex_state = 37}, - [3754] = {.lex_state = 37}, - [3755] = {.lex_state = 37}, - [3756] = {.lex_state = 37}, - [3757] = {.lex_state = 37}, - [3758] = {.lex_state = 579}, - [3759] = {.lex_state = 208}, - [3760] = {.lex_state = 579}, - [3761] = {.lex_state = 579}, - [3762] = {.lex_state = 579}, - [3763] = {.lex_state = 130}, - [3764] = {.lex_state = 95}, - [3765] = {.lex_state = 264}, - [3766] = {.lex_state = 280}, - [3767] = {.lex_state = 625}, - [3768] = {.lex_state = 37}, - [3769] = {.lex_state = 625}, - [3770] = {.lex_state = 135}, - [3771] = {.lex_state = 130}, - [3772] = {.lex_state = 92}, - [3773] = {.lex_state = 130}, - [3774] = {.lex_state = 247}, - [3775] = {.lex_state = 37}, - [3776] = {.lex_state = 253}, - [3777] = {.lex_state = 115}, - [3778] = {.lex_state = 281}, - [3779] = {.lex_state = 281}, - [3780] = {.lex_state = 281}, - [3781] = {.lex_state = 37}, - [3782] = {.lex_state = 187}, - [3783] = {.lex_state = 130}, - [3784] = {.lex_state = 625}, - [3785] = {.lex_state = 130}, - [3786] = {.lex_state = 248}, - [3787] = {.lex_state = 625}, - [3788] = {.lex_state = 130}, - [3789] = {.lex_state = 187}, - [3790] = {.lex_state = 117}, - [3791] = {.lex_state = 2076}, - [3792] = {.lex_state = 2076}, - [3793] = {.lex_state = 625}, - [3794] = {.lex_state = 229}, - [3795] = {.lex_state = 625}, - [3796] = {.lex_state = 280}, - [3797] = {.lex_state = 135}, - [3798] = {.lex_state = 187}, - [3799] = {.lex_state = 280}, - [3800] = {.lex_state = 280}, - [3801] = {.lex_state = 625}, - [3802] = {.lex_state = 280}, - [3803] = {.lex_state = 187}, - [3804] = {.lex_state = 2076}, - [3805] = {.lex_state = 2076}, - [3806] = {.lex_state = 625}, - [3807] = {.lex_state = 206}, - [3808] = {.lex_state = 125}, - [3809] = {.lex_state = 187}, - [3810] = {.lex_state = 135}, - [3811] = {.lex_state = 135}, - [3812] = {.lex_state = 135}, - [3813] = {.lex_state = 628}, - [3814] = {.lex_state = 187}, - [3815] = {.lex_state = 187}, - [3816] = {.lex_state = 120}, - [3817] = {.lex_state = 187}, - [3818] = {.lex_state = 2076}, - [3819] = {.lex_state = 187}, - [3820] = {.lex_state = 2076}, - [3821] = {.lex_state = 253}, - [3822] = {.lex_state = 625}, - [3823] = {.lex_state = 130}, - [3824] = {.lex_state = 625}, - [3825] = {.lex_state = 187}, - [3826] = {.lex_state = 625}, - [3827] = {.lex_state = 187}, - [3828] = {.lex_state = 195}, - [3829] = {.lex_state = 2180}, + [3747] = {.lex_state = 626}, + [3748] = {.lex_state = 580}, + [3749] = {.lex_state = 37}, + [3750] = {.lex_state = 137}, + [3751] = {.lex_state = 580}, + [3752] = {.lex_state = 580}, + [3753] = {.lex_state = 580}, + [3754] = {.lex_state = 265}, + [3755] = {.lex_state = 95}, + [3756] = {.lex_state = 626}, + [3757] = {.lex_state = 208}, + [3758] = {.lex_state = 626}, + [3759] = {.lex_state = 229}, + [3760] = {.lex_state = 626}, + [3761] = {.lex_state = 37}, + [3762] = {.lex_state = 37}, + [3763] = {.lex_state = 135}, + [3764] = {.lex_state = 626}, + [3765] = {.lex_state = 135}, + [3766] = {.lex_state = 626}, + [3767] = {.lex_state = 130}, + [3768] = {.lex_state = 130}, + [3769] = {.lex_state = 92}, + [3770] = {.lex_state = 248}, + [3771] = {.lex_state = 254}, + [3772] = {.lex_state = 254}, + [3773] = {.lex_state = 37}, + [3774] = {.lex_state = 217}, + [3775] = {.lex_state = 229}, + [3776] = {.lex_state = 116}, + [3777] = {.lex_state = 130}, + [3778] = {.lex_state = 115}, + [3779] = {.lex_state = 282}, + [3780] = {.lex_state = 282}, + [3781] = {.lex_state = 626}, + [3782] = {.lex_state = 282}, + [3783] = {.lex_state = 223}, + [3784] = {.lex_state = 37}, + [3785] = {.lex_state = 281}, + [3786] = {.lex_state = 626}, + [3787] = {.lex_state = 221}, + [3788] = {.lex_state = 640}, + [3789] = {.lex_state = 281}, + [3790] = {.lex_state = 130}, + [3791] = {.lex_state = 130}, + [3792] = {.lex_state = 281}, + [3793] = {.lex_state = 626}, + [3794] = {.lex_state = 254}, + [3795] = {.lex_state = 281}, + [3796] = {.lex_state = 626}, + [3797] = {.lex_state = 281}, + [3798] = {.lex_state = 579}, + [3799] = {.lex_state = 626}, + [3800] = {.lex_state = 256}, + [3801] = {.lex_state = 267}, + [3802] = {.lex_state = 579}, + [3803] = {.lex_state = 626}, + [3804] = {.lex_state = 262}, + [3805] = {.lex_state = 626}, + [3806] = {.lex_state = 233}, + [3807] = {.lex_state = 263}, + [3808] = {.lex_state = 187}, + [3809] = {.lex_state = 626}, + [3810] = {.lex_state = 626}, + [3811] = {.lex_state = 281}, + [3812] = {.lex_state = 613}, + [3813] = {.lex_state = 626}, + [3814] = {.lex_state = 640}, + [3815] = {.lex_state = 640}, + [3816] = {.lex_state = 640}, + [3817] = {.lex_state = 221}, + [3818] = {.lex_state = 187}, + [3819] = {.lex_state = 130}, + [3820] = {.lex_state = 2077}, + [3821] = {.lex_state = 2077}, + [3822] = {.lex_state = 244}, + [3823] = {.lex_state = 187}, + [3824] = {.lex_state = 130}, + [3825] = {.lex_state = 206}, + [3826] = {.lex_state = 629}, + [3827] = {.lex_state = 626}, + [3828] = {.lex_state = 130}, + [3829] = {.lex_state = 626}, [3830] = {.lex_state = 130}, [3831] = {.lex_state = 187}, - [3832] = {.lex_state = 639}, - [3833] = {.lex_state = 187}, - [3834] = {.lex_state = 130}, - [3835] = {.lex_state = 2076}, - [3836] = {.lex_state = 2076}, - [3837] = {.lex_state = 195}, - [3838] = {.lex_state = 639}, - [3839] = {.lex_state = 130}, - [3840] = {.lex_state = 280}, - [3841] = {.lex_state = 130}, - [3842] = {.lex_state = 253}, - [3843] = {.lex_state = 662}, - [3844] = {.lex_state = 625}, - [3845] = {.lex_state = 628}, - [3846] = {.lex_state = 220}, - [3847] = {.lex_state = 280}, - [3848] = {.lex_state = 625}, - [3849] = {.lex_state = 625}, - [3850] = {.lex_state = 220}, - [3851] = {.lex_state = 639}, - [3852] = {.lex_state = 639}, - [3853] = {.lex_state = 639}, - [3854] = {.lex_state = 639}, - [3855] = {.lex_state = 130}, - [3856] = {.lex_state = 243}, - [3857] = {.lex_state = 625}, - [3858] = {.lex_state = 2180}, - [3859] = {.lex_state = 135}, - [3860] = {.lex_state = 135}, - [3861] = {.lex_state = 135}, - [3862] = {.lex_state = 612}, - [3863] = {.lex_state = 207}, - [3864] = {.lex_state = 280}, - [3865] = {.lex_state = 125}, - [3866] = {.lex_state = 280}, - [3867] = {.lex_state = 261}, - [3868] = {.lex_state = 578}, - [3869] = {.lex_state = 625}, - [3870] = {.lex_state = 255}, - [3871] = {.lex_state = 265}, - [3872] = {.lex_state = 135}, - [3873] = {.lex_state = 578}, - [3874] = {.lex_state = 265}, - [3875] = {.lex_state = 95}, - [3876] = {.lex_state = 625}, - [3877] = {.lex_state = 625}, - [3878] = {.lex_state = 625}, - [3879] = {.lex_state = 130}, - [3880] = {.lex_state = 261}, - [3881] = {.lex_state = 265}, - [3882] = {.lex_state = 625}, - [3883] = {.lex_state = 130}, - [3884] = {.lex_state = 266}, - [3885] = {.lex_state = 187}, - [3886] = {.lex_state = 2076}, - [3887] = {.lex_state = 625}, - [3888] = {.lex_state = 625}, - [3889] = {.lex_state = 130}, - [3890] = {.lex_state = 2076}, - [3891] = {.lex_state = 130}, - [3892] = {.lex_state = 130}, - [3893] = {.lex_state = 130}, - [3894] = {.lex_state = 262}, - [3895] = {.lex_state = 187}, - [3896] = {.lex_state = 280}, - [3897] = {.lex_state = 255}, - [3898] = {.lex_state = 280}, - [3899] = {.lex_state = 280}, - [3900] = {.lex_state = 280}, - [3901] = {.lex_state = 625}, - [3902] = {.lex_state = 93}, - [3903] = {.lex_state = 262}, - [3904] = {.lex_state = 625}, - [3905] = {.lex_state = 124}, - [3906] = {.lex_state = 130}, - [3907] = {.lex_state = 625}, - [3908] = {.lex_state = 187}, - [3909] = {.lex_state = 2076}, - [3910] = {.lex_state = 2076}, - [3911] = {.lex_state = 130}, - [3912] = {.lex_state = 130}, - [3913] = {.lex_state = 625}, - [3914] = {.lex_state = 93}, - [3915] = {.lex_state = 280}, - [3916] = {.lex_state = 280}, - [3917] = {.lex_state = 280}, - [3918] = {.lex_state = 280}, - [3919] = {.lex_state = 280}, - [3920] = {.lex_state = 280}, + [3832] = {.lex_state = 135}, + [3833] = {.lex_state = 2077}, + [3834] = {.lex_state = 2077}, + [3835] = {.lex_state = 124}, + [3836] = {.lex_state = 187}, + [3837] = {.lex_state = 256}, + [3838] = {.lex_state = 125}, + [3839] = {.lex_state = 626}, + [3840] = {.lex_state = 187}, + [3841] = {.lex_state = 135}, + [3842] = {.lex_state = 2077}, + [3843] = {.lex_state = 2077}, + [3844] = {.lex_state = 626}, + [3845] = {.lex_state = 626}, + [3846] = {.lex_state = 135}, + [3847] = {.lex_state = 187}, + [3848] = {.lex_state = 187}, + [3849] = {.lex_state = 187}, + [3850] = {.lex_state = 130}, + [3851] = {.lex_state = 130}, + [3852] = {.lex_state = 2181}, + [3853] = {.lex_state = 187}, + [3854] = {.lex_state = 2181}, + [3855] = {.lex_state = 120}, + [3856] = {.lex_state = 187}, + [3857] = {.lex_state = 266}, + [3858] = {.lex_state = 230}, + [3859] = {.lex_state = 187}, + [3860] = {.lex_state = 626}, + [3861] = {.lex_state = 187}, + [3862] = {.lex_state = 130}, + [3863] = {.lex_state = 130}, + [3864] = {.lex_state = 135}, + [3865] = {.lex_state = 187}, + [3866] = {.lex_state = 262}, + [3867] = {.lex_state = 249}, + [3868] = {.lex_state = 626}, + [3869] = {.lex_state = 626}, + [3870] = {.lex_state = 135}, + [3871] = {.lex_state = 266}, + [3872] = {.lex_state = 117}, + [3873] = {.lex_state = 281}, + [3874] = {.lex_state = 135}, + [3875] = {.lex_state = 626}, + [3876] = {.lex_state = 626}, + [3877] = {.lex_state = 281}, + [3878] = {.lex_state = 130}, + [3879] = {.lex_state = 135}, + [3880] = {.lex_state = 281}, + [3881] = {.lex_state = 281}, + [3882] = {.lex_state = 130}, + [3883] = {.lex_state = 195}, + [3884] = {.lex_state = 663}, + [3885] = {.lex_state = 640}, + [3886] = {.lex_state = 626}, + [3887] = {.lex_state = 266}, + [3888] = {.lex_state = 95}, + [3889] = {.lex_state = 125}, + [3890] = {.lex_state = 266}, + [3891] = {.lex_state = 135}, + [3892] = {.lex_state = 187}, + [3893] = {.lex_state = 2077}, + [3894] = {.lex_state = 2077}, + [3895] = {.lex_state = 254}, + [3896] = {.lex_state = 187}, + [3897] = {.lex_state = 130}, + [3898] = {.lex_state = 2077}, + [3899] = {.lex_state = 130}, + [3900] = {.lex_state = 130}, + [3901] = {.lex_state = 130}, + [3902] = {.lex_state = 2077}, + [3903] = {.lex_state = 263}, + [3904] = {.lex_state = 281}, + [3905] = {.lex_state = 281}, + [3906] = {.lex_state = 281}, + [3907] = {.lex_state = 93}, + [3908] = {.lex_state = 195}, + [3909] = {.lex_state = 629}, + [3910] = {.lex_state = 626}, + [3911] = {.lex_state = 187}, + [3912] = {.lex_state = 626}, + [3913] = {.lex_state = 130}, + [3914] = {.lex_state = 626}, + [3915] = {.lex_state = 626}, + [3916] = {.lex_state = 93}, + [3917] = {.lex_state = 281}, + [3918] = {.lex_state = 281}, + [3919] = {.lex_state = 281}, + [3920] = {.lex_state = 640}, [3921] = {.lex_state = 137}, - [3922] = {.lex_state = 187}, - [3923] = {.lex_state = 265}, - [3924] = {.lex_state = 232}, + [3922] = {.lex_state = 281}, + [3923] = {.lex_state = 281}, + [3924] = {.lex_state = 207}, [3925] = {.lex_state = 187}, [3926] = {.lex_state = 187}, - [3927] = {.lex_state = 137}, - [3928] = {.lex_state = 280}, - [3929] = {.lex_state = 130}, - [3930] = {.lex_state = 628}, - [3931] = {.lex_state = 231}, - [3932] = {.lex_state = 185}, - [3933] = {.lex_state = 282}, - [3934] = {.lex_state = 132}, - [3935] = {.lex_state = 234}, - [3936] = {.lex_state = 94}, - [3937] = {.lex_state = 282}, - [3938] = {.lex_state = 282}, - [3939] = {.lex_state = 628}, - [3940] = {.lex_state = 625}, - [3941] = {.lex_state = 282}, - [3942] = {.lex_state = 625}, - [3943] = {.lex_state = 185}, - [3944] = {.lex_state = 256}, - [3945] = {.lex_state = 95}, - [3946] = {.lex_state = 126}, - [3947] = {.lex_state = 95}, - [3948] = {.lex_state = 655}, - [3949] = {.lex_state = 127}, + [3927] = {.lex_state = 130}, + [3928] = {.lex_state = 2077}, + [3929] = {.lex_state = 137}, + [3930] = {.lex_state = 2077}, + [3931] = {.lex_state = 281}, + [3932] = {.lex_state = 624}, + [3933] = {.lex_state = 37}, + [3934] = {.lex_state = 135}, + [3935] = {.lex_state = 94}, + [3936] = {.lex_state = 626}, + [3937] = {.lex_state = 283}, + [3938] = {.lex_state = 130}, + [3939] = {.lex_state = 656}, + [3940] = {.lex_state = 126}, + [3941] = {.lex_state = 127}, + [3942] = {.lex_state = 185}, + [3943] = {.lex_state = 126}, + [3944] = {.lex_state = 185}, + [3945] = {.lex_state = 283}, + [3946] = {.lex_state = 626}, + [3947] = {.lex_state = 626}, + [3948] = {.lex_state = 222}, + [3949] = {.lex_state = 232}, [3950] = {.lex_state = 185}, - [3951] = {.lex_state = 625}, - [3952] = {.lex_state = 94}, - [3953] = {.lex_state = 623}, - [3954] = {.lex_state = 127}, + [3951] = {.lex_state = 257}, + [3952] = {.lex_state = 126}, + [3953] = {.lex_state = 95}, + [3954] = {.lex_state = 222}, [3955] = {.lex_state = 126}, - [3956] = {.lex_state = 185}, - [3957] = {.lex_state = 625}, - [3958] = {.lex_state = 94}, - [3959] = {.lex_state = 280}, - [3960] = {.lex_state = 628}, - [3961] = {.lex_state = 185}, - [3962] = {.lex_state = 282}, - [3963] = {.lex_state = 625}, - [3964] = {.lex_state = 625}, - [3965] = {.lex_state = 185}, - [3966] = {.lex_state = 185}, - [3967] = {.lex_state = 282}, - [3968] = {.lex_state = 221}, - [3969] = {.lex_state = 628}, - [3970] = {.lex_state = 623}, - [3971] = {.lex_state = 185}, - [3972] = {.lex_state = 126}, - [3973] = {.lex_state = 221}, - [3974] = {.lex_state = 185}, - [3975] = {.lex_state = 94}, - [3976] = {.lex_state = 126}, - [3977] = {.lex_state = 185}, - [3978] = {.lex_state = 126}, - [3979] = {.lex_state = 582}, + [3956] = {.lex_state = 624}, + [3957] = {.lex_state = 185}, + [3958] = {.lex_state = 257}, + [3959] = {.lex_state = 257}, + [3960] = {.lex_state = 130}, + [3961] = {.lex_state = 626}, + [3962] = {.lex_state = 185}, + [3963] = {.lex_state = 126}, + [3964] = {.lex_state = 126}, + [3965] = {.lex_state = 94}, + [3966] = {.lex_state = 130}, + [3967] = {.lex_state = 185}, + [3968] = {.lex_state = 130}, + [3969] = {.lex_state = 222}, + [3970] = {.lex_state = 126}, + [3971] = {.lex_state = 283}, + [3972] = {.lex_state = 185}, + [3973] = {.lex_state = 626}, + [3974] = {.lex_state = 283}, + [3975] = {.lex_state = 185}, + [3976] = {.lex_state = 583}, + [3977] = {.lex_state = 127}, + [3978] = {.lex_state = 185}, + [3979] = {.lex_state = 95}, [3980] = {.lex_state = 185}, - [3981] = {.lex_state = 221}, - [3982] = {.lex_state = 126}, - [3983] = {.lex_state = 185}, - [3984] = {.lex_state = 126}, + [3981] = {.lex_state = 185}, + [3982] = {.lex_state = 94}, + [3983] = {.lex_state = 281}, + [3984] = {.lex_state = 185}, [3985] = {.lex_state = 185}, - [3986] = {.lex_state = 256}, - [3987] = {.lex_state = 185}, + [3986] = {.lex_state = 185}, + [3987] = {.lex_state = 94}, [3988] = {.lex_state = 185}, - [3989] = {.lex_state = 628}, - [3990] = {.lex_state = 282}, - [3991] = {.lex_state = 628}, - [3992] = {.lex_state = 625}, - [3993] = {.lex_state = 10}, - [3994] = {.lex_state = 256}, - [3995] = {.lex_state = 221}, - [3996] = {.lex_state = 130}, - [3997] = {.lex_state = 221}, - [3998] = {.lex_state = 625}, - [3999] = {.lex_state = 94}, + [3989] = {.lex_state = 185}, + [3990] = {.lex_state = 283}, + [3991] = {.lex_state = 222}, + [3992] = {.lex_state = 126}, + [3993] = {.lex_state = 126}, + [3994] = {.lex_state = 222}, + [3995] = {.lex_state = 10}, + [3996] = {.lex_state = 268}, + [3997] = {.lex_state = 126}, + [3998] = {.lex_state = 281}, + [3999] = {.lex_state = 222}, [4000] = {.lex_state = 126}, - [4001] = {.lex_state = 221}, - [4002] = {.lex_state = 94}, - [4003] = {.lex_state = 126}, - [4004] = {.lex_state = 185}, - [4005] = {.lex_state = 126}, - [4006] = {.lex_state = 623}, - [4007] = {.lex_state = 221}, - [4008] = {.lex_state = 282}, - [4009] = {.lex_state = 582}, - [4010] = {.lex_state = 135}, - [4011] = {.lex_state = 130}, - [4012] = {.lex_state = 135}, - [4013] = {.lex_state = 137}, - [4014] = {.lex_state = 130}, - [4015] = {.lex_state = 94}, - [4016] = {.lex_state = 46}, - [4017] = {.lex_state = 94}, - [4018] = {.lex_state = 282}, - [4019] = {.lex_state = 132}, - [4020] = {.lex_state = 267}, - [4021] = {.lex_state = 221}, - [4022] = {.lex_state = 126}, - [4023] = {.lex_state = 130}, - [4024] = {.lex_state = 130}, - [4025] = {.lex_state = 126}, - [4026] = {.lex_state = 185}, - [4027] = {.lex_state = 282}, - [4028] = {.lex_state = 195}, - [4029] = {.lex_state = 94}, - [4030] = {.lex_state = 129}, - [4031] = {.lex_state = 234}, - [4032] = {.lex_state = 130}, - [4033] = {.lex_state = 280}, - [4034] = {.lex_state = 42}, - [4035] = {.lex_state = 267}, - [4036] = {.lex_state = 578}, - [4037] = {.lex_state = 95}, - [4038] = {.lex_state = 282}, - [4039] = {.lex_state = 256}, - [4040] = {.lex_state = 256}, - [4041] = {.lex_state = 282}, - [4042] = {.lex_state = 623}, - [4043] = {.lex_state = 230}, - [4044] = {.lex_state = 221}, - [4045] = {.lex_state = 625}, + [4001] = {.lex_state = 222}, + [4002] = {.lex_state = 42}, + [4003] = {.lex_state = 130}, + [4004] = {.lex_state = 629}, + [4005] = {.lex_state = 624}, + [4006] = {.lex_state = 629}, + [4007] = {.lex_state = 185}, + [4008] = {.lex_state = 135}, + [4009] = {.lex_state = 130}, + [4010] = {.lex_state = 130}, + [4011] = {.lex_state = 283}, + [4012] = {.lex_state = 94}, + [4013] = {.lex_state = 126}, + [4014] = {.lex_state = 94}, + [4015] = {.lex_state = 10}, + [4016] = {.lex_state = 132}, + [4017] = {.lex_state = 132}, + [4018] = {.lex_state = 130}, + [4019] = {.lex_state = 283}, + [4020] = {.lex_state = 95}, + [4021] = {.lex_state = 283}, + [4022] = {.lex_state = 185}, + [4023] = {.lex_state = 626}, + [4024] = {.lex_state = 195}, + [4025] = {.lex_state = 257}, + [4026] = {.lex_state = 629}, + [4027] = {.lex_state = 185}, + [4028] = {.lex_state = 283}, + [4029] = {.lex_state = 283}, + [4030] = {.lex_state = 94}, + [4031] = {.lex_state = 624}, + [4032] = {.lex_state = 626}, + [4033] = {.lex_state = 222}, + [4034] = {.lex_state = 283}, + [4035] = {.lex_state = 10}, + [4036] = {.lex_state = 583}, + [4037] = {.lex_state = 579}, + [4038] = {.lex_state = 232}, + [4039] = {.lex_state = 629}, + [4040] = {.lex_state = 235}, + [4041] = {.lex_state = 629}, + [4042] = {.lex_state = 231}, + [4043] = {.lex_state = 222}, + [4044] = {.lex_state = 94}, + [4045] = {.lex_state = 235}, [4046] = {.lex_state = 185}, - [4047] = {.lex_state = 628}, - [4048] = {.lex_state = 10}, - [4049] = {.lex_state = 185}, + [4047] = {.lex_state = 283}, + [4048] = {.lex_state = 42}, + [4049] = {.lex_state = 624}, [4050] = {.lex_state = 126}, - [4051] = {.lex_state = 282}, - [4052] = {.lex_state = 137}, - [4053] = {.lex_state = 221}, - [4054] = {.lex_state = 185}, - [4055] = {.lex_state = 282}, - [4056] = {.lex_state = 221}, - [4057] = {.lex_state = 221}, - [4058] = {.lex_state = 130}, - [4059] = {.lex_state = 185}, + [4051] = {.lex_state = 10}, + [4052] = {.lex_state = 132}, + [4053] = {.lex_state = 629}, + [4054] = {.lex_state = 283}, + [4055] = {.lex_state = 222}, + [4056] = {.lex_state = 222}, + [4057] = {.lex_state = 206}, + [4058] = {.lex_state = 283}, + [4059] = {.lex_state = 283}, [4060] = {.lex_state = 94}, - [4061] = {.lex_state = 282}, - [4062] = {.lex_state = 623}, - [4063] = {.lex_state = 94}, - [4064] = {.lex_state = 130}, - [4065] = {.lex_state = 282}, - [4066] = {.lex_state = 625}, - [4067] = {.lex_state = 282}, - [4068] = {.lex_state = 10}, + [4061] = {.lex_state = 94}, + [4062] = {.lex_state = 222}, + [4063] = {.lex_state = 130}, + [4064] = {.lex_state = 94}, + [4065] = {.lex_state = 126}, + [4066] = {.lex_state = 129}, + [4067] = {.lex_state = 629}, + [4068] = {.lex_state = 94}, [4069] = {.lex_state = 94}, - [4070] = {.lex_state = 623}, - [4071] = {.lex_state = 42}, - [4072] = {.lex_state = 185}, + [4070] = {.lex_state = 626}, + [4071] = {.lex_state = 185}, + [4072] = {.lex_state = 283}, [4073] = {.lex_state = 10}, - [4074] = {.lex_state = 94}, - [4075] = {.lex_state = 625}, - [4076] = {.lex_state = 282}, - [4077] = {.lex_state = 10}, - [4078] = {.lex_state = 132}, - [4079] = {.lex_state = 206}, - [4080] = {.lex_state = 10}, - [4081] = {.lex_state = 37}, - [4082] = {.lex_state = 231}, - [4083] = {.lex_state = 628}, - [4084] = {.lex_state = 625}, - [4085] = {.lex_state = 282}, - [4086] = {.lex_state = 221}, - [4087] = {.lex_state = 126}, - [4088] = {.lex_state = 130}, - [4089] = {.lex_state = 625}, - [4090] = {.lex_state = 249}, - [4091] = {.lex_state = 132}, - [4092] = {.lex_state = 129}, - [4093] = {.lex_state = 257}, - [4094] = {.lex_state = 625}, - [4095] = {.lex_state = 230}, - [4096] = {.lex_state = 578}, - [4097] = {.lex_state = 137}, - [4098] = {.lex_state = 268}, - [4099] = {.lex_state = 625}, - [4100] = {.lex_state = 625}, - [4101] = {.lex_state = 625}, - [4102] = {.lex_state = 625}, - [4103] = {.lex_state = 625}, - [4104] = {.lex_state = 132}, - [4105] = {.lex_state = 625}, - [4106] = {.lex_state = 625}, - [4107] = {.lex_state = 230}, - [4108] = {.lex_state = 230}, - [4109] = {.lex_state = 230}, - [4110] = {.lex_state = 230}, - [4111] = {.lex_state = 132}, - [4112] = {.lex_state = 268}, - [4113] = {.lex_state = 625}, - [4114] = {.lex_state = 230}, - [4115] = {.lex_state = 268}, - [4116] = {.lex_state = 268}, - [4117] = {.lex_state = 128}, + [4074] = {.lex_state = 222}, + [4075] = {.lex_state = 283}, + [4076] = {.lex_state = 283}, + [4077] = {.lex_state = 629}, + [4078] = {.lex_state = 626}, + [4079] = {.lex_state = 624}, + [4080] = {.lex_state = 283}, + [4081] = {.lex_state = 10}, + [4082] = {.lex_state = 626}, + [4083] = {.lex_state = 626}, + [4084] = {.lex_state = 268}, + [4085] = {.lex_state = 257}, + [4086] = {.lex_state = 46}, + [4087] = {.lex_state = 626}, + [4088] = {.lex_state = 185}, + [4089] = {.lex_state = 137}, + [4090] = {.lex_state = 137}, + [4091] = {.lex_state = 130}, + [4092] = {.lex_state = 626}, + [4093] = {.lex_state = 132}, + [4094] = {.lex_state = 258}, + [4095] = {.lex_state = 626}, + [4096] = {.lex_state = 231}, + [4097] = {.lex_state = 579}, + [4098] = {.lex_state = 269}, + [4099] = {.lex_state = 626}, + [4100] = {.lex_state = 626}, + [4101] = {.lex_state = 626}, + [4102] = {.lex_state = 626}, + [4103] = {.lex_state = 626}, + [4104] = {.lex_state = 128}, + [4105] = {.lex_state = 132}, + [4106] = {.lex_state = 626}, + [4107] = {.lex_state = 626}, + [4108] = {.lex_state = 231}, + [4109] = {.lex_state = 132}, + [4110] = {.lex_state = 231}, + [4111] = {.lex_state = 231}, + [4112] = {.lex_state = 231}, + [4113] = {.lex_state = 269}, + [4114] = {.lex_state = 626}, + [4115] = {.lex_state = 231}, + [4116] = {.lex_state = 195}, + [4117] = {.lex_state = 269}, [4118] = {.lex_state = 195}, - [4119] = {.lex_state = 235}, - [4120] = {.lex_state = 94}, - [4121] = {.lex_state = 256}, - [4122] = {.lex_state = 625}, - [4123] = {.lex_state = 625}, - [4124] = {.lex_state = 135}, - [4125] = {.lex_state = 132}, - [4126] = {.lex_state = 625}, + [4119] = {.lex_state = 269}, + [4120] = {.lex_state = 257}, + [4121] = {.lex_state = 236}, + [4122] = {.lex_state = 626}, + [4123] = {.lex_state = 94}, + [4124] = {.lex_state = 626}, + [4125] = {.lex_state = 135}, + [4126] = {.lex_state = 626}, [4127] = {.lex_state = 132}, - [4128] = {.lex_state = 578}, - [4129] = {.lex_state = 625}, - [4130] = {.lex_state = 132}, - [4131] = {.lex_state = 235}, - [4132] = {.lex_state = 195}, - [4133] = {.lex_state = 129}, - [4134] = {.lex_state = 195}, - [4135] = {.lex_state = 195}, - [4136] = {.lex_state = 627}, - [4137] = {.lex_state = 235}, - [4138] = {.lex_state = 625}, - [4139] = {.lex_state = 195}, - [4140] = {.lex_state = 130}, + [4128] = {.lex_state = 132}, + [4129] = {.lex_state = 132}, + [4130] = {.lex_state = 626}, + [4131] = {.lex_state = 129}, + [4132] = {.lex_state = 579}, + [4133] = {.lex_state = 195}, + [4134] = {.lex_state = 236}, + [4135] = {.lex_state = 236}, + [4136] = {.lex_state = 195}, + [4137] = {.lex_state = 195}, + [4138] = {.lex_state = 628}, + [4139] = {.lex_state = 626}, + [4140] = {.lex_state = 195}, [4141] = {.lex_state = 130}, [4142] = {.lex_state = 195}, - [4143] = {.lex_state = 195}, - [4144] = {.lex_state = 130}, - [4145] = {.lex_state = 195}, - [4146] = {.lex_state = 578}, - [4147] = {.lex_state = 578}, - [4148] = {.lex_state = 578}, + [4143] = {.lex_state = 130}, + [4144] = {.lex_state = 195}, + [4145] = {.lex_state = 579}, + [4146] = {.lex_state = 579}, + [4147] = {.lex_state = 579}, + [4148] = {.lex_state = 128}, [4149] = {.lex_state = 130}, [4150] = {.lex_state = 130}, - [4151] = {.lex_state = 128}, - [4152] = {.lex_state = 128}, + [4151] = {.lex_state = 626}, + [4152] = {.lex_state = 130}, [4153] = {.lex_state = 135}, [4154] = {.lex_state = 128}, - [4155] = {.lex_state = 625}, + [4155] = {.lex_state = 128}, [4156] = {.lex_state = 130}, [4157] = {.lex_state = 135}, - [4158] = {.lex_state = 130}, - [4159] = {.lex_state = 195}, - [4160] = {.lex_state = 625}, - [4161] = {.lex_state = 249}, - [4162] = {.lex_state = 625}, - [4163] = {.lex_state = 625}, + [4158] = {.lex_state = 195}, + [4159] = {.lex_state = 626}, + [4160] = {.lex_state = 626}, + [4161] = {.lex_state = 626}, + [4162] = {.lex_state = 250}, + [4163] = {.lex_state = 130}, [4164] = {.lex_state = 130}, - [4165] = {.lex_state = 130}, - [4166] = {.lex_state = 185}, - [4167] = {.lex_state = 625}, - [4168] = {.lex_state = 623}, - [4169] = {.lex_state = 625}, - [4170] = {.lex_state = 625}, + [4165] = {.lex_state = 185}, + [4166] = {.lex_state = 626}, + [4167] = {.lex_state = 624}, + [4168] = {.lex_state = 626}, + [4169] = {.lex_state = 128}, + [4170] = {.lex_state = 626}, [4171] = {.lex_state = 130}, - [4172] = {.lex_state = 625}, - [4173] = {.lex_state = 625}, - [4174] = {.lex_state = 625}, - [4175] = {.lex_state = 625}, - [4176] = {.lex_state = 128}, + [4172] = {.lex_state = 626}, + [4173] = {.lex_state = 128}, + [4174] = {.lex_state = 626}, + [4175] = {.lex_state = 626}, + [4176] = {.lex_state = 626}, [4177] = {.lex_state = 158}, - [4178] = {.lex_state = 128}, - [4179] = {.lex_state = 158}, - [4180] = {.lex_state = 625}, - [4181] = {.lex_state = 625}, - [4182] = {.lex_state = 625}, - [4183] = {.lex_state = 625}, - [4184] = {.lex_state = 625}, - [4185] = {.lex_state = 268}, - [4186] = {.lex_state = 625}, - [4187] = {.lex_state = 625}, - [4188] = {.lex_state = 130}, - [4189] = {.lex_state = 625}, - [4190] = {.lex_state = 221}, - [4191] = {.lex_state = 99}, - [4192] = {.lex_state = 230}, - [4193] = {.lex_state = 230}, - [4194] = {.lex_state = 625}, - [4195] = {.lex_state = 51}, - [4196] = {.lex_state = 625}, - [4197] = {.lex_state = 130}, - [4198] = {.lex_state = 625}, - [4199] = {.lex_state = 625}, - [4200] = {.lex_state = 625}, - [4201] = {.lex_state = 130}, - [4202] = {.lex_state = 625}, - [4203] = {.lex_state = 256}, - [4204] = {.lex_state = 187}, - [4205] = {.lex_state = 130}, - [4206] = {.lex_state = 625}, - [4207] = {.lex_state = 625}, - [4208] = {.lex_state = 625}, - [4209] = {.lex_state = 625}, - [4210] = {.lex_state = 625}, - [4211] = {.lex_state = 625}, - [4212] = {.lex_state = 235}, - [4213] = {.lex_state = 625}, - [4214] = {.lex_state = 625}, - [4215] = {.lex_state = 235}, - [4216] = {.lex_state = 129}, - [4217] = {.lex_state = 625}, - [4218] = {.lex_state = 625}, - [4219] = {.lex_state = 625}, - [4220] = {.lex_state = 625}, - [4221] = {.lex_state = 625}, - [4222] = {.lex_state = 625}, - [4223] = {.lex_state = 625}, - [4224] = {.lex_state = 235}, - [4225] = {.lex_state = 130}, - [4226] = {.lex_state = 230}, - [4227] = {.lex_state = 195}, - [4228] = {.lex_state = 235}, - [4229] = {.lex_state = 235}, - [4230] = {.lex_state = 625}, - [4231] = {.lex_state = 235}, - [4232] = {.lex_state = 235}, - [4233] = {.lex_state = 130}, - [4234] = {.lex_state = 242}, - [4235] = {.lex_state = 235}, - [4236] = {.lex_state = 242}, - [4237] = {.lex_state = 625}, - [4238] = {.lex_state = 625}, - [4239] = {.lex_state = 625}, - [4240] = {.lex_state = 625}, - [4241] = {.lex_state = 625}, - [4242] = {.lex_state = 625}, - [4243] = {.lex_state = 625}, - [4244] = {.lex_state = 625}, - [4245] = {.lex_state = 235}, - [4246] = {.lex_state = 235}, - [4247] = {.lex_state = 625}, - [4248] = {.lex_state = 195}, - [4249] = {.lex_state = 195}, - [4250] = {.lex_state = 625}, - [4251] = {.lex_state = 625}, - [4252] = {.lex_state = 249}, + [4178] = {.lex_state = 158}, + [4179] = {.lex_state = 626}, + [4180] = {.lex_state = 99}, + [4181] = {.lex_state = 626}, + [4182] = {.lex_state = 626}, + [4183] = {.lex_state = 626}, + [4184] = {.lex_state = 626}, + [4185] = {.lex_state = 626}, + [4186] = {.lex_state = 269}, + [4187] = {.lex_state = 626}, + [4188] = {.lex_state = 626}, + [4189] = {.lex_state = 130}, + [4190] = {.lex_state = 626}, + [4191] = {.lex_state = 222}, + [4192] = {.lex_state = 231}, + [4193] = {.lex_state = 231}, + [4194] = {.lex_state = 130}, + [4195] = {.lex_state = 626}, + [4196] = {.lex_state = 51}, + [4197] = {.lex_state = 626}, + [4198] = {.lex_state = 626}, + [4199] = {.lex_state = 130}, + [4200] = {.lex_state = 626}, + [4201] = {.lex_state = 626}, + [4202] = {.lex_state = 130}, + [4203] = {.lex_state = 257}, + [4204] = {.lex_state = 129}, + [4205] = {.lex_state = 187}, + [4206] = {.lex_state = 626}, + [4207] = {.lex_state = 626}, + [4208] = {.lex_state = 626}, + [4209] = {.lex_state = 626}, + [4210] = {.lex_state = 626}, + [4211] = {.lex_state = 626}, + [4212] = {.lex_state = 626}, + [4213] = {.lex_state = 236}, + [4214] = {.lex_state = 626}, + [4215] = {.lex_state = 626}, + [4216] = {.lex_state = 236}, + [4217] = {.lex_state = 626}, + [4218] = {.lex_state = 626}, + [4219] = {.lex_state = 130}, + [4220] = {.lex_state = 626}, + [4221] = {.lex_state = 626}, + [4222] = {.lex_state = 626}, + [4223] = {.lex_state = 626}, + [4224] = {.lex_state = 626}, + [4225] = {.lex_state = 195}, + [4226] = {.lex_state = 236}, + [4227] = {.lex_state = 231}, + [4228] = {.lex_state = 130}, + [4229] = {.lex_state = 236}, + [4230] = {.lex_state = 626}, + [4231] = {.lex_state = 236}, + [4232] = {.lex_state = 626}, + [4233] = {.lex_state = 236}, + [4234] = {.lex_state = 236}, + [4235] = {.lex_state = 243}, + [4236] = {.lex_state = 236}, + [4237] = {.lex_state = 195}, + [4238] = {.lex_state = 243}, + [4239] = {.lex_state = 626}, + [4240] = {.lex_state = 626}, + [4241] = {.lex_state = 626}, + [4242] = {.lex_state = 626}, + [4243] = {.lex_state = 626}, + [4244] = {.lex_state = 626}, + [4245] = {.lex_state = 626}, + [4246] = {.lex_state = 626}, + [4247] = {.lex_state = 236}, + [4248] = {.lex_state = 236}, + [4249] = {.lex_state = 626}, + [4250] = {.lex_state = 626}, + [4251] = {.lex_state = 195}, + [4252] = {.lex_state = 626}, [4253] = {.lex_state = 195}, [4254] = {.lex_state = 195}, [4255] = {.lex_state = 195}, - [4256] = {.lex_state = 195}, - [4257] = {.lex_state = 625}, - [4258] = {.lex_state = 625}, - [4259] = {.lex_state = 130}, - [4260] = {.lex_state = 625}, - [4261] = {.lex_state = 625}, - [4262] = {.lex_state = 625}, - [4263] = {.lex_state = 625}, - [4264] = {.lex_state = 249}, - [4265] = {.lex_state = 230}, - [4266] = {.lex_state = 130}, - [4267] = {.lex_state = 625}, - [4268] = {.lex_state = 249}, - [4269] = {.lex_state = 578}, - [4270] = {.lex_state = 625}, - [4271] = {.lex_state = 625}, - [4272] = {.lex_state = 625}, - [4273] = {.lex_state = 242}, - [4274] = {.lex_state = 625}, - [4275] = {.lex_state = 625}, - [4276] = {.lex_state = 249}, - [4277] = {.lex_state = 625}, - [4278] = {.lex_state = 625}, - [4279] = {.lex_state = 625}, - [4280] = {.lex_state = 195}, - [4281] = {.lex_state = 137}, - [4282] = {.lex_state = 195}, - [4283] = {.lex_state = 625}, - [4284] = {.lex_state = 249}, - [4285] = {.lex_state = 195}, - [4286] = {.lex_state = 625}, - [4287] = {.lex_state = 625}, - [4288] = {.lex_state = 625}, - [4289] = {.lex_state = 128}, - [4290] = {.lex_state = 625}, - [4291] = {.lex_state = 249}, - [4292] = {.lex_state = 625}, - [4293] = {.lex_state = 128}, - [4294] = {.lex_state = 195}, - [4295] = {.lex_state = 0}, - [4296] = {.lex_state = 625}, - [4297] = {.lex_state = 249}, - [4298] = {.lex_state = 128}, - [4299] = {.lex_state = 249}, - [4300] = {.lex_state = 249}, - [4301] = {.lex_state = 195}, - [4302] = {.lex_state = 625}, - [4303] = {.lex_state = 249}, - [4304] = {.lex_state = 625}, - [4305] = {.lex_state = 625}, - [4306] = {.lex_state = 249}, - [4307] = {.lex_state = 625}, - [4308] = {.lex_state = 625}, - [4309] = {.lex_state = 625}, - [4310] = {.lex_state = 625}, - [4311] = {.lex_state = 625}, - [4312] = {.lex_state = 625}, - [4313] = {.lex_state = 578}, - [4314] = {.lex_state = 625}, - [4315] = {.lex_state = 625}, - [4316] = {.lex_state = 628}, - [4317] = {.lex_state = 625}, - [4318] = {.lex_state = 249}, - [4319] = {.lex_state = 185}, - [4320] = {.lex_state = 578}, - [4321] = {.lex_state = 195}, - [4322] = {.lex_state = 195}, - [4323] = {.lex_state = 625}, - [4324] = {.lex_state = 625}, - [4325] = {.lex_state = 625}, - [4326] = {.lex_state = 625}, - [4327] = {.lex_state = 625}, - [4328] = {.lex_state = 625}, - [4329] = {.lex_state = 625}, - [4330] = {.lex_state = 625}, - [4331] = {.lex_state = 242}, - [4332] = {.lex_state = 128}, - [4333] = {.lex_state = 625}, - [4334] = {.lex_state = 625}, - [4335] = {.lex_state = 625}, - [4336] = {.lex_state = 625}, - [4337] = {.lex_state = 625}, - [4338] = {.lex_state = 128}, - [4339] = {.lex_state = 625}, - [4340] = {.lex_state = 625}, - [4341] = {.lex_state = 51}, - [4342] = {.lex_state = 625}, - [4343] = {.lex_state = 625}, - [4344] = {.lex_state = 625}, - [4345] = {.lex_state = 625}, - [4346] = {.lex_state = 625}, - [4347] = {.lex_state = 242}, - [4348] = {.lex_state = 242}, - [4349] = {.lex_state = 625}, - [4350] = {.lex_state = 625}, - [4351] = {.lex_state = 625}, - [4352] = {.lex_state = 625}, - [4353] = {.lex_state = 195}, - [4354] = {.lex_state = 128}, - [4355] = {.lex_state = 0}, - [4356] = {.lex_state = 230}, - [4357] = {.lex_state = 625}, - [4358] = {.lex_state = 230}, - [4359] = {.lex_state = 625}, - [4360] = {.lex_state = 221}, - [4361] = {.lex_state = 195}, + [4256] = {.lex_state = 250}, + [4257] = {.lex_state = 626}, + [4258] = {.lex_state = 195}, + [4259] = {.lex_state = 195}, + [4260] = {.lex_state = 626}, + [4261] = {.lex_state = 626}, + [4262] = {.lex_state = 626}, + [4263] = {.lex_state = 626}, + [4264] = {.lex_state = 130}, + [4265] = {.lex_state = 250}, + [4266] = {.lex_state = 231}, + [4267] = {.lex_state = 626}, + [4268] = {.lex_state = 626}, + [4269] = {.lex_state = 626}, + [4270] = {.lex_state = 250}, + [4271] = {.lex_state = 579}, + [4272] = {.lex_state = 626}, + [4273] = {.lex_state = 137}, + [4274] = {.lex_state = 626}, + [4275] = {.lex_state = 626}, + [4276] = {.lex_state = 243}, + [4277] = {.lex_state = 626}, + [4278] = {.lex_state = 626}, + [4279] = {.lex_state = 626}, + [4280] = {.lex_state = 626}, + [4281] = {.lex_state = 195}, + [4282] = {.lex_state = 626}, + [4283] = {.lex_state = 250}, + [4284] = {.lex_state = 128}, + [4285] = {.lex_state = 626}, + [4286] = {.lex_state = 128}, + [4287] = {.lex_state = 195}, + [4288] = {.lex_state = 195}, + [4289] = {.lex_state = 626}, + [4290] = {.lex_state = 250}, + [4291] = {.lex_state = 195}, + [4292] = {.lex_state = 128}, + [4293] = {.lex_state = 195}, + [4294] = {.lex_state = 626}, + [4295] = {.lex_state = 626}, + [4296] = {.lex_state = 250}, + [4297] = {.lex_state = 626}, + [4298] = {.lex_state = 626}, + [4299] = {.lex_state = 0}, + [4300] = {.lex_state = 626}, + [4301] = {.lex_state = 250}, + [4302] = {.lex_state = 250}, + [4303] = {.lex_state = 128}, + [4304] = {.lex_state = 250}, + [4305] = {.lex_state = 626}, + [4306] = {.lex_state = 626}, + [4307] = {.lex_state = 626}, + [4308] = {.lex_state = 250}, + [4309] = {.lex_state = 626}, + [4310] = {.lex_state = 626}, + [4311] = {.lex_state = 250}, + [4312] = {.lex_state = 626}, + [4313] = {.lex_state = 626}, + [4314] = {.lex_state = 626}, + [4315] = {.lex_state = 195}, + [4316] = {.lex_state = 579}, + [4317] = {.lex_state = 629}, + [4318] = {.lex_state = 195}, + [4319] = {.lex_state = 626}, + [4320] = {.lex_state = 128}, + [4321] = {.lex_state = 185}, + [4322] = {.lex_state = 250}, + [4323] = {.lex_state = 579}, + [4324] = {.lex_state = 626}, + [4325] = {.lex_state = 626}, + [4326] = {.lex_state = 626}, + [4327] = {.lex_state = 626}, + [4328] = {.lex_state = 626}, + [4329] = {.lex_state = 626}, + [4330] = {.lex_state = 626}, + [4331] = {.lex_state = 243}, + [4332] = {.lex_state = 626}, + [4333] = {.lex_state = 626}, + [4334] = {.lex_state = 128}, + [4335] = {.lex_state = 626}, + [4336] = {.lex_state = 626}, + [4337] = {.lex_state = 626}, + [4338] = {.lex_state = 626}, + [4339] = {.lex_state = 626}, + [4340] = {.lex_state = 51}, + [4341] = {.lex_state = 626}, + [4342] = {.lex_state = 626}, + [4343] = {.lex_state = 626}, + [4344] = {.lex_state = 128}, + [4345] = {.lex_state = 626}, + [4346] = {.lex_state = 626}, + [4347] = {.lex_state = 626}, + [4348] = {.lex_state = 626}, + [4349] = {.lex_state = 626}, + [4350] = {.lex_state = 243}, + [4351] = {.lex_state = 243}, + [4352] = {.lex_state = 626}, + [4353] = {.lex_state = 0}, + [4354] = {.lex_state = 626}, + [4355] = {.lex_state = 195}, + [4356] = {.lex_state = 626}, + [4357] = {.lex_state = 231}, + [4358] = {.lex_state = 195}, + [4359] = {.lex_state = 231}, + [4360] = {.lex_state = 130}, + [4361] = {.lex_state = 222}, [4362] = {.lex_state = 95}, - [4363] = {.lex_state = 625}, - [4364] = {.lex_state = 130}, + [4363] = {.lex_state = 626}, + [4364] = {.lex_state = 273}, [4365] = {.lex_state = 130}, - [4366] = {.lex_state = 625}, + [4366] = {.lex_state = 626}, [4367] = {.lex_state = 132}, - [4368] = {.lex_state = 128}, - [4369] = {.lex_state = 249}, - [4370] = {.lex_state = 249}, - [4371] = {.lex_state = 625}, - [4372] = {.lex_state = 195}, - [4373] = {.lex_state = 272}, - [4374] = {.lex_state = 132}, - [4375] = {.lex_state = 51}, + [4368] = {.lex_state = 99}, + [4369] = {.lex_state = 51}, + [4370] = {.lex_state = 250}, + [4371] = {.lex_state = 195}, + [4372] = {.lex_state = 250}, + [4373] = {.lex_state = 250}, + [4374] = {.lex_state = 626}, + [4375] = {.lex_state = 132}, [4376] = {.lex_state = 187}, [4377] = {.lex_state = 195}, - [4378] = {.lex_state = 99}, + [4378] = {.lex_state = 137}, [4379] = {.lex_state = 130}, - [4380] = {.lex_state = 130}, - [4381] = {.lex_state = 249}, - [4382] = {.lex_state = 627}, - [4383] = {.lex_state = 187}, - [4384] = {.lex_state = 137}, - [4385] = {.lex_state = 625}, - [4386] = {.lex_state = 625}, - [4387] = {.lex_state = 625}, - [4388] = {.lex_state = 195}, - [4389] = {.lex_state = 627}, - [4390] = {.lex_state = 625}, - [4391] = {.lex_state = 625}, - [4392] = {.lex_state = 625}, - [4393] = {.lex_state = 195}, - [4394] = {.lex_state = 128}, - [4395] = {.lex_state = 625}, - [4396] = {.lex_state = 625}, - [4397] = {.lex_state = 625}, - [4398] = {.lex_state = 195}, - [4399] = {.lex_state = 625}, - [4400] = {.lex_state = 273}, - [4401] = {.lex_state = 625}, - [4402] = {.lex_state = 258}, - [4403] = {.lex_state = 43}, - [4404] = {.lex_state = 99}, - [4405] = {.lex_state = 282}, + [4380] = {.lex_state = 195}, + [4381] = {.lex_state = 187}, + [4382] = {.lex_state = 130}, + [4383] = {.lex_state = 628}, + [4384] = {.lex_state = 626}, + [4385] = {.lex_state = 626}, + [4386] = {.lex_state = 137}, + [4387] = {.lex_state = 130}, + [4388] = {.lex_state = 250}, + [4389] = {.lex_state = 195}, + [4390] = {.lex_state = 628}, + [4391] = {.lex_state = 626}, + [4392] = {.lex_state = 129}, + [4393] = {.lex_state = 128}, + [4394] = {.lex_state = 626}, + [4395] = {.lex_state = 626}, + [4396] = {.lex_state = 626}, + [4397] = {.lex_state = 626}, + [4398] = {.lex_state = 626}, + [4399] = {.lex_state = 626}, + [4400] = {.lex_state = 626}, + [4401] = {.lex_state = 130}, + [4402] = {.lex_state = 129}, + [4403] = {.lex_state = 626}, + [4404] = {.lex_state = 283}, + [4405] = {.lex_state = 43}, [4406] = {.lex_state = 130}, - [4407] = {.lex_state = 625}, - [4408] = {.lex_state = 130}, - [4409] = {.lex_state = 627}, - [4410] = {.lex_state = 625}, - [4411] = {.lex_state = 625}, - [4412] = {.lex_state = 625}, - [4413] = {.lex_state = 625}, - [4414] = {.lex_state = 625}, - [4415] = {.lex_state = 625}, - [4416] = {.lex_state = 625}, - [4417] = {.lex_state = 625}, - [4418] = {.lex_state = 195}, - [4419] = {.lex_state = 195}, - [4420] = {.lex_state = 625}, - [4421] = {.lex_state = 235}, - [4422] = {.lex_state = 130}, - [4423] = {.lex_state = 130}, - [4424] = {.lex_state = 625}, - [4425] = {.lex_state = 625}, - [4426] = {.lex_state = 130}, - [4427] = {.lex_state = 130}, - [4428] = {.lex_state = 625}, - [4429] = {.lex_state = 625}, - [4430] = {.lex_state = 625}, - [4431] = {.lex_state = 43}, - [4432] = {.lex_state = 130}, - [4433] = {.lex_state = 625}, + [4407] = {.lex_state = 626}, + [4408] = {.lex_state = 626}, + [4409] = {.lex_state = 130}, + [4410] = {.lex_state = 628}, + [4411] = {.lex_state = 195}, + [4412] = {.lex_state = 195}, + [4413] = {.lex_state = 130}, + [4414] = {.lex_state = 626}, + [4415] = {.lex_state = 626}, + [4416] = {.lex_state = 626}, + [4417] = {.lex_state = 626}, + [4418] = {.lex_state = 626}, + [4419] = {.lex_state = 626}, + [4420] = {.lex_state = 130}, + [4421] = {.lex_state = 236}, + [4422] = {.lex_state = 626}, + [4423] = {.lex_state = 626}, + [4424] = {.lex_state = 626}, + [4425] = {.lex_state = 626}, + [4426] = {.lex_state = 43}, + [4427] = {.lex_state = 43}, + [4428] = {.lex_state = 130}, + [4429] = {.lex_state = 276}, + [4430] = {.lex_state = 626}, + [4431] = {.lex_state = 158}, + [4432] = {.lex_state = 626}, + [4433] = {.lex_state = 626}, [4434] = {.lex_state = 130}, [4435] = {.lex_state = 195}, - [4436] = {.lex_state = 625}, - [4437] = {.lex_state = 625}, - [4438] = {.lex_state = 625}, + [4436] = {.lex_state = 626}, + [4437] = {.lex_state = 626}, + [4438] = {.lex_state = 626}, [4439] = {.lex_state = 130}, [4440] = {.lex_state = 43}, - [4441] = {.lex_state = 625}, - [4442] = {.lex_state = 625}, - [4443] = {.lex_state = 43}, - [4444] = {.lex_state = 129}, - [4445] = {.lex_state = 625}, - [4446] = {.lex_state = 625}, + [4441] = {.lex_state = 130}, + [4442] = {.lex_state = 43}, + [4443] = {.lex_state = 626}, + [4444] = {.lex_state = 626}, + [4445] = {.lex_state = 130}, + [4446] = {.lex_state = 129}, [4447] = {.lex_state = 129}, - [4448] = {.lex_state = 130}, - [4449] = {.lex_state = 625}, + [4448] = {.lex_state = 626}, + [4449] = {.lex_state = 626}, [4450] = {.lex_state = 130}, - [4451] = {.lex_state = 129}, + [4451] = {.lex_state = 130}, [4452] = {.lex_state = 130}, - [4453] = {.lex_state = 625}, - [4454] = {.lex_state = 275}, - [4455] = {.lex_state = 130}, - [4456] = {.lex_state = 625}, - [4457] = {.lex_state = 130}, - [4458] = {.lex_state = 625}, + [4453] = {.lex_state = 130}, + [4454] = {.lex_state = 130}, + [4455] = {.lex_state = 626}, + [4456] = {.lex_state = 158}, + [4457] = {.lex_state = 237}, + [4458] = {.lex_state = 129}, [4459] = {.lex_state = 158}, [4460] = {.lex_state = 158}, - [4461] = {.lex_state = 130}, - [4462] = {.lex_state = 236}, - [4463] = {.lex_state = 625}, - [4464] = {.lex_state = 129}, - [4465] = {.lex_state = 625}, - [4466] = {.lex_state = 625}, - [4467] = {.lex_state = 43}, - [4468] = {.lex_state = 195}, - [4469] = {.lex_state = 625}, - [4470] = {.lex_state = 625}, + [4461] = {.lex_state = 626}, + [4462] = {.lex_state = 626}, + [4463] = {.lex_state = 158}, + [4464] = {.lex_state = 626}, + [4465] = {.lex_state = 633}, + [4466] = {.lex_state = 195}, + [4467] = {.lex_state = 626}, + [4468] = {.lex_state = 43}, + [4469] = {.lex_state = 626}, + [4470] = {.lex_state = 626}, [4471] = {.lex_state = 130}, - [4472] = {.lex_state = 625}, - [4473] = {.lex_state = 99}, - [4474] = {.lex_state = 158}, - [4475] = {.lex_state = 625}, - [4476] = {.lex_state = 99}, - [4477] = {.lex_state = 233}, - [4478] = {.lex_state = 625}, - [4479] = {.lex_state = 625}, - [4480] = {.lex_state = 43}, - [4481] = {.lex_state = 625}, - [4482] = {.lex_state = 195}, - [4483] = {.lex_state = 195}, - [4484] = {.lex_state = 43}, + [4472] = {.lex_state = 626}, + [4473] = {.lex_state = 626}, + [4474] = {.lex_state = 626}, + [4475] = {.lex_state = 135}, + [4476] = {.lex_state = 626}, + [4477] = {.lex_state = 99}, + [4478] = {.lex_state = 130}, + [4479] = {.lex_state = 626}, + [4480] = {.lex_state = 626}, + [4481] = {.lex_state = 626}, + [4482] = {.lex_state = 99}, + [4483] = {.lex_state = 234}, + [4484] = {.lex_state = 195}, [4485] = {.lex_state = 195}, [4486] = {.lex_state = 195}, - [4487] = {.lex_state = 625}, - [4488] = {.lex_state = 625}, - [4489] = {.lex_state = 130}, - [4490] = {.lex_state = 625}, - [4491] = {.lex_state = 625}, - [4492] = {.lex_state = 130}, - [4493] = {.lex_state = 158}, - [4494] = {.lex_state = 625}, - [4495] = {.lex_state = 625}, - [4496] = {.lex_state = 625}, - [4497] = {.lex_state = 625}, - [4498] = {.lex_state = 625}, - [4499] = {.lex_state = 99}, - [4500] = {.lex_state = 625}, - [4501] = {.lex_state = 130}, - [4502] = {.lex_state = 99}, - [4503] = {.lex_state = 625}, - [4504] = {.lex_state = 625}, - [4505] = {.lex_state = 625}, - [4506] = {.lex_state = 625}, - [4507] = {.lex_state = 130}, - [4508] = {.lex_state = 625}, - [4509] = {.lex_state = 130}, - [4510] = {.lex_state = 625}, - [4511] = {.lex_state = 625}, - [4512] = {.lex_state = 99}, - [4513] = {.lex_state = 99}, - [4514] = {.lex_state = 99}, + [4487] = {.lex_state = 626}, + [4488] = {.lex_state = 43}, + [4489] = {.lex_state = 195}, + [4490] = {.lex_state = 626}, + [4491] = {.lex_state = 130}, + [4492] = {.lex_state = 626}, + [4493] = {.lex_state = 626}, + [4494] = {.lex_state = 626}, + [4495] = {.lex_state = 626}, + [4496] = {.lex_state = 626}, + [4497] = {.lex_state = 130}, + [4498] = {.lex_state = 130}, + [4499] = {.lex_state = 626}, + [4500] = {.lex_state = 130}, + [4501] = {.lex_state = 626}, + [4502] = {.lex_state = 626}, + [4503] = {.lex_state = 99}, + [4504] = {.lex_state = 626}, + [4505] = {.lex_state = 99}, + [4506] = {.lex_state = 99}, + [4507] = {.lex_state = 626}, + [4508] = {.lex_state = 130}, + [4509] = {.lex_state = 626}, + [4510] = {.lex_state = 130}, + [4511] = {.lex_state = 626}, + [4512] = {.lex_state = 626}, + [4513] = {.lex_state = 130}, + [4514] = {.lex_state = 626}, [4515] = {.lex_state = 130}, - [4516] = {.lex_state = 625}, - [4517] = {.lex_state = 158}, + [4516] = {.lex_state = 99}, + [4517] = {.lex_state = 99}, [4518] = {.lex_state = 130}, - [4519] = {.lex_state = 632}, - [4520] = {.lex_state = 130}, - [4521] = {.lex_state = 130}, + [4519] = {.lex_state = 158}, + [4520] = {.lex_state = 99}, + [4521] = {.lex_state = 99}, [4522] = {.lex_state = 158}, [4523] = {.lex_state = 158}, - [4524] = {.lex_state = 99}, - [4525] = {.lex_state = 195}, - [4526] = {.lex_state = 158}, - [4527] = {.lex_state = 99}, - [4528] = {.lex_state = 158}, - [4529] = {.lex_state = 130}, - [4530] = {.lex_state = 130}, - [4531] = {.lex_state = 632}, + [4524] = {.lex_state = 626}, + [4525] = {.lex_state = 130}, + [4526] = {.lex_state = 195}, + [4527] = {.lex_state = 130}, + [4528] = {.lex_state = 130}, + [4529] = {.lex_state = 158}, + [4530] = {.lex_state = 626}, + [4531] = {.lex_state = 238}, [4532] = {.lex_state = 99}, - [4533] = {.lex_state = 130}, - [4534] = {.lex_state = 625}, - [4535] = {.lex_state = 625}, - [4536] = {.lex_state = 578}, - [4537] = {.lex_state = 625}, - [4538] = {.lex_state = 99}, - [4539] = {.lex_state = 625}, - [4540] = {.lex_state = 625}, - [4541] = {.lex_state = 625}, - [4542] = {.lex_state = 132}, - [4543] = {.lex_state = 625}, - [4544] = {.lex_state = 237}, - [4545] = {.lex_state = 625}, - [4546] = {.lex_state = 625}, - [4547] = {.lex_state = 625}, - [4548] = {.lex_state = 625}, - [4549] = {.lex_state = 99}, - [4550] = {.lex_state = 99}, - [4551] = {.lex_state = 625}, - [4552] = {.lex_state = 625}, - [4553] = {.lex_state = 625}, - [4554] = {.lex_state = 37}, - [4555] = {.lex_state = 99}, - [4556] = {.lex_state = 233}, - [4557] = {.lex_state = 625}, - [4558] = {.lex_state = 135}, - [4559] = {.lex_state = 625}, - [4560] = {.lex_state = 625}, - [4561] = {.lex_state = 625}, - [4562] = {.lex_state = 43}, - [4563] = {.lex_state = 185}, - [4564] = {.lex_state = 625}, - [4565] = {.lex_state = 130}, - [4566] = {.lex_state = 99}, - [4567] = {.lex_state = 233}, - [4568] = {.lex_state = 195}, - [4569] = {.lex_state = 135}, - [4570] = {.lex_state = 195}, - [4571] = {.lex_state = 195}, - [4572] = {.lex_state = 625}, - [4573] = {.lex_state = 625}, - [4574] = {.lex_state = 625}, - [4575] = {.lex_state = 130}, - [4576] = {.lex_state = 130}, - [4577] = {.lex_state = 625}, - [4578] = {.lex_state = 625}, - [4579] = {.lex_state = 51}, - [4580] = {.lex_state = 625}, - [4581] = {.lex_state = 130}, - [4582] = {.lex_state = 625}, + [4533] = {.lex_state = 626}, + [4534] = {.lex_state = 626}, + [4535] = {.lex_state = 132}, + [4536] = {.lex_state = 99}, + [4537] = {.lex_state = 626}, + [4538] = {.lex_state = 633}, + [4539] = {.lex_state = 51}, + [4540] = {.lex_state = 626}, + [4541] = {.lex_state = 626}, + [4542] = {.lex_state = 626}, + [4543] = {.lex_state = 626}, + [4544] = {.lex_state = 579}, + [4545] = {.lex_state = 626}, + [4546] = {.lex_state = 195}, + [4547] = {.lex_state = 99}, + [4548] = {.lex_state = 626}, + [4549] = {.lex_state = 626}, + [4550] = {.lex_state = 626}, + [4551] = {.lex_state = 626}, + [4552] = {.lex_state = 626}, + [4553] = {.lex_state = 626}, + [4554] = {.lex_state = 626}, + [4555] = {.lex_state = 135}, + [4556] = {.lex_state = 99}, + [4557] = {.lex_state = 626}, + [4558] = {.lex_state = 626}, + [4559] = {.lex_state = 37}, + [4560] = {.lex_state = 626}, + [4561] = {.lex_state = 626}, + [4562] = {.lex_state = 626}, + [4563] = {.lex_state = 99}, + [4564] = {.lex_state = 234}, + [4565] = {.lex_state = 43}, + [4566] = {.lex_state = 185}, + [4567] = {.lex_state = 99}, + [4568] = {.lex_state = 130}, + [4569] = {.lex_state = 234}, + [4570] = {.lex_state = 130}, + [4571] = {.lex_state = 130}, + [4572] = {.lex_state = 626}, + [4573] = {.lex_state = 195}, + [4574] = {.lex_state = 130}, + [4575] = {.lex_state = 626}, + [4576] = {.lex_state = 195}, + [4577] = {.lex_state = 130}, + [4578] = {.lex_state = 626}, + [4579] = {.lex_state = 626}, + [4580] = {.lex_state = 130}, + [4581] = {.lex_state = 626}, + [4582] = {.lex_state = 626}, [4583] = {.lex_state = 37}, - [4584] = {.lex_state = 625}, + [4584] = {.lex_state = 37}, [4585] = {.lex_state = 158}, - [4586] = {.lex_state = 37}, - [4587] = {.lex_state = 625}, - [4588] = {.lex_state = 158}, - [4589] = {.lex_state = 130}, - [4590] = {.lex_state = 625}, - [4591] = {.lex_state = 158}, - [4592] = {.lex_state = 37}, - [4593] = {.lex_state = 37}, + [4586] = {.lex_state = 158}, + [4587] = {.lex_state = 626}, + [4588] = {.lex_state = 37}, + [4589] = {.lex_state = 158}, + [4590] = {.lex_state = 37}, + [4591] = {.lex_state = 37}, + [4592] = {.lex_state = 130}, + [4593] = {.lex_state = 130}, [4594] = {.lex_state = 37}, [4595] = {.lex_state = 130}, [4596] = {.lex_state = 130}, - [4597] = {.lex_state = 625}, - [4598] = {.lex_state = 625}, - [4599] = {.lex_state = 625}, + [4597] = {.lex_state = 626}, + [4598] = {.lex_state = 626}, + [4599] = {.lex_state = 626}, [4600] = {.lex_state = 130}, - [4601] = {.lex_state = 625}, + [4601] = {.lex_state = 130}, [4602] = {.lex_state = 130}, - [4603] = {.lex_state = 130}, + [4603] = {.lex_state = 234}, [4604] = {.lex_state = 130}, - [4605] = {.lex_state = 625}, - [4606] = {.lex_state = 625}, - [4607] = {.lex_state = 37}, - [4608] = {.lex_state = 625}, - [4609] = {.lex_state = 130}, - [4610] = {.lex_state = 625}, - [4611] = {.lex_state = 233}, + [4605] = {.lex_state = 626}, + [4606] = {.lex_state = 626}, + [4607] = {.lex_state = 130}, + [4608] = {.lex_state = 626}, + [4609] = {.lex_state = 195}, + [4610] = {.lex_state = 195}, + [4611] = {.lex_state = 195}, [4612] = {.lex_state = 130}, - [4613] = {.lex_state = 130}, - [4614] = {.lex_state = 282}, - [4615] = {.lex_state = 282}, - [4616] = {.lex_state = 130}, - [4617] = {.lex_state = 625}, - [4618] = {.lex_state = 195}, - [4619] = {.lex_state = 195}, - [4620] = {.lex_state = 625}, - [4621] = {.lex_state = 236}, - [4622] = {.lex_state = 195}, - [4623] = {.lex_state = 625}, - [4624] = {.lex_state = 195}, + [4613] = {.lex_state = 283}, + [4614] = {.lex_state = 195}, + [4615] = {.lex_state = 130}, + [4616] = {.lex_state = 283}, + [4617] = {.lex_state = 626}, + [4618] = {.lex_state = 130}, + [4619] = {.lex_state = 626}, + [4620] = {.lex_state = 626}, + [4621] = {.lex_state = 626}, + [4622] = {.lex_state = 130}, + [4623] = {.lex_state = 237}, + [4624] = {.lex_state = 130}, [4625] = {.lex_state = 130}, - [4626] = {.lex_state = 130}, - [4627] = {.lex_state = 132}, - [4628] = {.lex_state = 275}, - [4629] = {.lex_state = 130}, - [4630] = {.lex_state = 130}, - [4631] = {.lex_state = 130}, - [4632] = {.lex_state = 625}, - [4633] = {.lex_state = 625}, + [4626] = {.lex_state = 626}, + [4627] = {.lex_state = 626}, + [4628] = {.lex_state = 132}, + [4629] = {.lex_state = 276}, + [4630] = {.lex_state = 626}, + [4631] = {.lex_state = 135}, + [4632] = {.lex_state = 626}, + [4633] = {.lex_state = 274}, [4634] = {.lex_state = 130}, [4635] = {.lex_state = 129}, - [4636] = {.lex_state = 578}, - [4637] = {.lex_state = 130}, - [4638] = {.lex_state = 135}, - [4639] = {.lex_state = 625}, - [4640] = {.lex_state = 95}, - [4641] = {.lex_state = 129}, - [4642] = {.lex_state = 130}, - [4643] = {.lex_state = 625}, - [4644] = {.lex_state = 612}, - [4645] = {.lex_state = 625}, - [4646] = {.lex_state = 625}, + [4636] = {.lex_state = 626}, + [4637] = {.lex_state = 613}, + [4638] = {.lex_state = 626}, + [4639] = {.lex_state = 579}, + [4640] = {.lex_state = 626}, + [4641] = {.lex_state = 626}, + [4642] = {.lex_state = 95}, + [4643] = {.lex_state = 130}, + [4644] = {.lex_state = 95}, + [4645] = {.lex_state = 626}, + [4646] = {.lex_state = 626}, [4647] = {.lex_state = 130}, - [4648] = {.lex_state = 625}, - [4649] = {.lex_state = 625}, - [4650] = {.lex_state = 130}, - [4651] = {.lex_state = 625}, - [4652] = {.lex_state = 95}, - [4653] = {.lex_state = 130}, - [4654] = {.lex_state = 625}, - [4655] = {.lex_state = 230}, - [4656] = {.lex_state = 625}, - [4657] = {.lex_state = 0}, - [4658] = {.lex_state = 0}, + [4648] = {.lex_state = 626}, + [4649] = {.lex_state = 130}, + [4650] = {.lex_state = 626}, + [4651] = {.lex_state = 259}, + [4652] = {.lex_state = 626}, + [4653] = {.lex_state = 231}, + [4654] = {.lex_state = 129}, + [4655] = {.lex_state = 626}, + [4656] = {.lex_state = 626}, + [4657] = {.lex_state = 626}, + [4658] = {.lex_state = 99}, [4659] = {.lex_state = 130}, - [4660] = {.lex_state = 130}, - [4661] = {.lex_state = 0}, - [4662] = {.lex_state = 2190}, - [4663] = {.lex_state = 2190}, + [4660] = {.lex_state = 0}, + [4661] = {.lex_state = 2191}, + [4662] = {.lex_state = 0}, + [4663] = {.lex_state = 0}, [4664] = {.lex_state = 0}, - [4665] = {.lex_state = 0}, - [4666] = {.lex_state = 0}, - [4667] = {.lex_state = 233}, - [4668] = {.lex_state = 579}, - [4669] = {.lex_state = 130}, - [4670] = {.lex_state = 0}, + [4665] = {.lex_state = 234}, + [4666] = {.lex_state = 130}, + [4667] = {.lex_state = 0}, + [4668] = {.lex_state = 0}, + [4669] = {.lex_state = 2187}, + [4670] = {.lex_state = 626}, [4671] = {.lex_state = 0}, - [4672] = {.lex_state = 233}, + [4672] = {.lex_state = 130}, [4673] = {.lex_state = 0}, - [4674] = {.lex_state = 130}, + [4674] = {.lex_state = 234}, [4675] = {.lex_state = 130}, - [4676] = {.lex_state = 130}, - [4677] = {.lex_state = 632}, - [4678] = {.lex_state = 230}, - [4679] = {.lex_state = 0}, - [4680] = {.lex_state = 0}, - [4681] = {.lex_state = 130}, - [4682] = {.lex_state = 0}, - [4683] = {.lex_state = 233}, + [4676] = {.lex_state = 0}, + [4677] = {.lex_state = 130}, + [4678] = {.lex_state = 0}, + [4679] = {.lex_state = 2189}, + [4680] = {.lex_state = 234}, + [4681] = {.lex_state = 0}, + [4682] = {.lex_state = 130}, + [4683] = {.lex_state = 0}, [4684] = {.lex_state = 130}, [4685] = {.lex_state = 0}, - [4686] = {.lex_state = 130}, - [4687] = {.lex_state = 627}, + [4686] = {.lex_state = 0}, + [4687] = {.lex_state = 130}, [4688] = {.lex_state = 0}, - [4689] = {.lex_state = 130}, - [4690] = {.lex_state = 130}, - [4691] = {.lex_state = 0}, - [4692] = {.lex_state = 0}, + [4689] = {.lex_state = 0}, + [4690] = {.lex_state = 0}, + [4691] = {.lex_state = 2191}, + [4692] = {.lex_state = 130}, [4693] = {.lex_state = 130}, - [4694] = {.lex_state = 0}, - [4695] = {.lex_state = 130}, - [4696] = {.lex_state = 0}, - [4697] = {.lex_state = 0}, + [4694] = {.lex_state = 234}, + [4695] = {.lex_state = 0}, + [4696] = {.lex_state = 130}, + [4697] = {.lex_state = 1718}, [4698] = {.lex_state = 130}, - [4699] = {.lex_state = 130}, - [4700] = {.lex_state = 130}, - [4701] = {.lex_state = 233}, - [4702] = {.lex_state = 130}, - [4703] = {.lex_state = 130}, - [4704] = {.lex_state = 43}, + [4699] = {.lex_state = 0}, + [4700] = {.lex_state = 0}, + [4701] = {.lex_state = 2189}, + [4702] = {.lex_state = 0}, + [4703] = {.lex_state = 2191}, + [4704] = {.lex_state = 2191}, [4705] = {.lex_state = 0}, [4706] = {.lex_state = 0}, - [4707] = {.lex_state = 0}, + [4707] = {.lex_state = 130}, [4708] = {.lex_state = 130}, - [4709] = {.lex_state = 130}, - [4710] = {.lex_state = 0}, - [4711] = {.lex_state = 578}, - [4712] = {.lex_state = 0}, - [4713] = {.lex_state = 129}, + [4709] = {.lex_state = 129}, + [4710] = {.lex_state = 2187}, + [4711] = {.lex_state = 130}, + [4712] = {.lex_state = 2187}, + [4713] = {.lex_state = 130}, [4714] = {.lex_state = 130}, - [4715] = {.lex_state = 130}, - [4716] = {.lex_state = 0}, - [4717] = {.lex_state = 0}, - [4718] = {.lex_state = 0}, - [4719] = {.lex_state = 130}, - [4720] = {.lex_state = 625}, - [4721] = {.lex_state = 0}, - [4722] = {.lex_state = 578}, - [4723] = {.lex_state = 2186}, - [4724] = {.lex_state = 2190}, - [4725] = {.lex_state = 2186}, - [4726] = {.lex_state = 2186}, - [4727] = {.lex_state = 130}, - [4728] = {.lex_state = 2186}, - [4729] = {.lex_state = 233}, - [4730] = {.lex_state = 130}, + [4715] = {.lex_state = 0}, + [4716] = {.lex_state = 130}, + [4717] = {.lex_state = 130}, + [4718] = {.lex_state = 2187}, + [4719] = {.lex_state = 2187}, + [4720] = {.lex_state = 2189}, + [4721] = {.lex_state = 2187}, + [4722] = {.lex_state = 2187}, + [4723] = {.lex_state = 2187}, + [4724] = {.lex_state = 234}, + [4725] = {.lex_state = 278}, + [4726] = {.lex_state = 130}, + [4727] = {.lex_state = 633}, + [4728] = {.lex_state = 130}, + [4729] = {.lex_state = 130}, + [4730] = {.lex_state = 2187}, [4731] = {.lex_state = 130}, - [4732] = {.lex_state = 0}, + [4732] = {.lex_state = 130}, [4733] = {.lex_state = 130}, - [4734] = {.lex_state = 2188}, - [4735] = {.lex_state = 2186}, - [4736] = {.lex_state = 233}, - [4737] = {.lex_state = 130}, + [4734] = {.lex_state = 130}, + [4735] = {.lex_state = 0}, + [4736] = {.lex_state = 130}, + [4737] = {.lex_state = 579}, [4738] = {.lex_state = 130}, - [4739] = {.lex_state = 130}, - [4740] = {.lex_state = 130}, - [4741] = {.lex_state = 2186}, - [4742] = {.lex_state = 99}, - [4743] = {.lex_state = 0}, - [4744] = {.lex_state = 129}, - [4745] = {.lex_state = 0}, - [4746] = {.lex_state = 2188}, - [4747] = {.lex_state = 130}, + [4739] = {.lex_state = 2187}, + [4740] = {.lex_state = 158}, + [4741] = {.lex_state = 0}, + [4742] = {.lex_state = 234}, + [4743] = {.lex_state = 130}, + [4744] = {.lex_state = 234}, + [4745] = {.lex_state = 132}, + [4746] = {.lex_state = 0}, + [4747] = {.lex_state = 0}, [4748] = {.lex_state = 0}, - [4749] = {.lex_state = 0}, - [4750] = {.lex_state = 130}, - [4751] = {.lex_state = 130}, - [4752] = {.lex_state = 0}, - [4753] = {.lex_state = 130}, - [4754] = {.lex_state = 233}, - [4755] = {.lex_state = 2186}, - [4756] = {.lex_state = 625}, - [4757] = {.lex_state = 2186}, - [4758] = {.lex_state = 277}, - [4759] = {.lex_state = 2186}, - [4760] = {.lex_state = 2186}, - [4761] = {.lex_state = 2190}, - [4762] = {.lex_state = 0}, - [4763] = {.lex_state = 130}, + [4749] = {.lex_state = 130}, + [4750] = {.lex_state = 579}, + [4751] = {.lex_state = 2187}, + [4752] = {.lex_state = 2191}, + [4753] = {.lex_state = 0}, + [4754] = {.lex_state = 2187}, + [4755] = {.lex_state = 2187}, + [4756] = {.lex_state = 130}, + [4757] = {.lex_state = 130}, + [4758] = {.lex_state = 234}, + [4759] = {.lex_state = 234}, + [4760] = {.lex_state = 130}, + [4761] = {.lex_state = 0}, + [4762] = {.lex_state = 234}, + [4763] = {.lex_state = 0}, [4764] = {.lex_state = 0}, [4765] = {.lex_state = 0}, - [4766] = {.lex_state = 233}, - [4767] = {.lex_state = 2190}, - [4768] = {.lex_state = 130}, + [4766] = {.lex_state = 2187}, + [4767] = {.lex_state = 0}, + [4768] = {.lex_state = 2187}, [4769] = {.lex_state = 130}, [4770] = {.lex_state = 0}, - [4771] = {.lex_state = 2186}, - [4772] = {.lex_state = 130}, - [4773] = {.lex_state = 0}, - [4774] = {.lex_state = 2186}, - [4775] = {.lex_state = 130}, - [4776] = {.lex_state = 233}, - [4777] = {.lex_state = 130}, - [4778] = {.lex_state = 132}, + [4771] = {.lex_state = 234}, + [4772] = {.lex_state = 628}, + [4773] = {.lex_state = 130}, + [4774] = {.lex_state = 234}, + [4775] = {.lex_state = 0}, + [4776] = {.lex_state = 132}, + [4777] = {.lex_state = 2189}, + [4778] = {.lex_state = 0}, [4779] = {.lex_state = 0}, - [4780] = {.lex_state = 0}, - [4781] = {.lex_state = 132}, - [4782] = {.lex_state = 0}, + [4780] = {.lex_state = 132}, + [4781] = {.lex_state = 234}, + [4782] = {.lex_state = 2191}, [4783] = {.lex_state = 0}, - [4784] = {.lex_state = 233}, - [4785] = {.lex_state = 0}, + [4784] = {.lex_state = 0}, + [4785] = {.lex_state = 2187}, [4786] = {.lex_state = 0}, - [4787] = {.lex_state = 233}, - [4788] = {.lex_state = 233}, - [4789] = {.lex_state = 0}, - [4790] = {.lex_state = 2190}, - [4791] = {.lex_state = 2190}, + [4787] = {.lex_state = 0}, + [4788] = {.lex_state = 0}, + [4789] = {.lex_state = 130}, + [4790] = {.lex_state = 2191}, + [4791] = {.lex_state = 234}, [4792] = {.lex_state = 0}, - [4793] = {.lex_state = 233}, - [4794] = {.lex_state = 130}, + [4793] = {.lex_state = 130}, + [4794] = {.lex_state = 0}, [4795] = {.lex_state = 130}, - [4796] = {.lex_state = 2190}, - [4797] = {.lex_state = 2186}, - [4798] = {.lex_state = 233}, - [4799] = {.lex_state = 627}, + [4796] = {.lex_state = 0}, + [4797] = {.lex_state = 130}, + [4798] = {.lex_state = 0}, + [4799] = {.lex_state = 130}, [4800] = {.lex_state = 0}, [4801] = {.lex_state = 0}, - [4802] = {.lex_state = 2190}, - [4803] = {.lex_state = 0}, - [4804] = {.lex_state = 625}, - [4805] = {.lex_state = 0}, - [4806] = {.lex_state = 0}, - [4807] = {.lex_state = 0}, + [4802] = {.lex_state = 2189}, + [4803] = {.lex_state = 626}, + [4804] = {.lex_state = 0}, + [4805] = {.lex_state = 10}, + [4806] = {.lex_state = 130}, + [4807] = {.lex_state = 2187}, [4808] = {.lex_state = 0}, - [4809] = {.lex_state = 0}, + [4809] = {.lex_state = 129}, [4810] = {.lex_state = 0}, - [4811] = {.lex_state = 10}, - [4812] = {.lex_state = 277}, - [4813] = {.lex_state = 2188}, - [4814] = {.lex_state = 158}, - [4815] = {.lex_state = 2186}, - [4816] = {.lex_state = 2186}, - [4817] = {.lex_state = 1717}, + [4811] = {.lex_state = 628}, + [4812] = {.lex_state = 0}, + [4813] = {.lex_state = 130}, + [4814] = {.lex_state = 0}, + [4815] = {.lex_state = 580}, + [4816] = {.lex_state = 0}, + [4817] = {.lex_state = 2191}, [4818] = {.lex_state = 0}, - [4819] = {.lex_state = 2188}, - [4820] = {.lex_state = 2186}, - [4821] = {.lex_state = 130}, - [4822] = {.lex_state = 2186}, - [4823] = {.lex_state = 2188}, - [4824] = {.lex_state = 0}, - [4825] = {.lex_state = 0}, + [4819] = {.lex_state = 2191}, + [4820] = {.lex_state = 99}, + [4821] = {.lex_state = 231}, + [4822] = {.lex_state = 0}, + [4823] = {.lex_state = 278}, + [4824] = {.lex_state = 130}, + [4825] = {.lex_state = 130}, [4826] = {.lex_state = 0}, - [4827] = {.lex_state = 132}, - [4828] = {.lex_state = 0, .external_lex_state = 3}, + [4827] = {.lex_state = 130}, + [4828] = {.lex_state = 43}, [4829] = {.lex_state = 0}, - [4830] = {.lex_state = 625}, - [4831] = {.lex_state = 0}, - [4832] = {.lex_state = 578}, - [4833] = {.lex_state = 578}, - [4834] = {.lex_state = 129}, - [4835] = {.lex_state = 10}, - [4836] = {.lex_state = 1192}, - [4837] = {.lex_state = 625}, - [4838] = {.lex_state = 0}, - [4839] = {.lex_state = 625}, - [4840] = {.lex_state = 1192}, - [4841] = {.lex_state = 1696}, + [4830] = {.lex_state = 626}, + [4831] = {.lex_state = 626}, + [4832] = {.lex_state = 579}, + [4833] = {.lex_state = 0}, + [4834] = {.lex_state = 626}, + [4835] = {.lex_state = 1193}, + [4836] = {.lex_state = 1718}, + [4837] = {.lex_state = 0}, + [4838] = {.lex_state = 626}, + [4839] = {.lex_state = 1193}, + [4840] = {.lex_state = 234}, + [4841] = {.lex_state = 626}, [4842] = {.lex_state = 0}, - [4843] = {.lex_state = 236}, - [4844] = {.lex_state = 0}, - [4845] = {.lex_state = 625}, - [4846] = {.lex_state = 625}, - [4847] = {.lex_state = 0, .external_lex_state = 4}, - [4848] = {.lex_state = 625}, + [4843] = {.lex_state = 40}, + [4844] = {.lex_state = 0, .external_lex_state = 3}, + [4845] = {.lex_state = 579}, + [4846] = {.lex_state = 0, .external_lex_state = 3}, + [4847] = {.lex_state = 624}, + [4848] = {.lex_state = 626}, [4849] = {.lex_state = 0}, - [4850] = {.lex_state = 10}, - [4851] = {.lex_state = 0}, - [4852] = {.lex_state = 578}, - [4853] = {.lex_state = 0, .external_lex_state = 4}, - [4854] = {.lex_state = 0}, - [4855] = {.lex_state = 578}, - [4856] = {.lex_state = 578}, - [4857] = {.lex_state = 623}, - [4858] = {.lex_state = 0}, - [4859] = {.lex_state = 625}, - [4860] = {.lex_state = 0}, - [4861] = {.lex_state = 1192}, + [4850] = {.lex_state = 0}, + [4851] = {.lex_state = 237}, + [4852] = {.lex_state = 0}, + [4853] = {.lex_state = 0}, + [4854] = {.lex_state = 579}, + [4855] = {.lex_state = 579}, + [4856] = {.lex_state = 0}, + [4857] = {.lex_state = 0}, + [4858] = {.lex_state = 626}, + [4859] = {.lex_state = 234}, + [4860] = {.lex_state = 279}, + [4861] = {.lex_state = 2189}, [4862] = {.lex_state = 0}, - [4863] = {.lex_state = 278}, - [4864] = {.lex_state = 0, .external_lex_state = 4}, - [4865] = {.lex_state = 233}, - [4866] = {.lex_state = 233}, - [4867] = {.lex_state = 233}, - [4868] = {.lex_state = 0}, + [4863] = {.lex_state = 0, .external_lex_state = 3}, + [4864] = {.lex_state = 626}, + [4865] = {.lex_state = 0}, + [4866] = {.lex_state = 0}, + [4867] = {.lex_state = 0}, + [4868] = {.lex_state = 237}, [4869] = {.lex_state = 0}, - [4870] = {.lex_state = 625}, - [4871] = {.lex_state = 0}, - [4872] = {.lex_state = 578}, - [4873] = {.lex_state = 578}, - [4874] = {.lex_state = 625}, - [4875] = {.lex_state = 625}, - [4876] = {.lex_state = 0}, - [4877] = {.lex_state = 0}, - [4878] = {.lex_state = 625}, - [4879] = {.lex_state = 0, .external_lex_state = 4}, - [4880] = {.lex_state = 625}, - [4881] = {.lex_state = 625}, - [4882] = {.lex_state = 625}, + [4870] = {.lex_state = 0}, + [4871] = {.lex_state = 579}, + [4872] = {.lex_state = 579}, + [4873] = {.lex_state = 626}, + [4874] = {.lex_state = 237}, + [4875] = {.lex_state = 626}, + [4876] = {.lex_state = 626}, + [4877] = {.lex_state = 626}, + [4878] = {.lex_state = 0, .external_lex_state = 3}, + [4879] = {.lex_state = 10}, + [4880] = {.lex_state = 0}, + [4881] = {.lex_state = 0}, + [4882] = {.lex_state = 579}, [4883] = {.lex_state = 0}, - [4884] = {.lex_state = 1717}, - [4885] = {.lex_state = 0}, - [4886] = {.lex_state = 578}, - [4887] = {.lex_state = 578}, - [4888] = {.lex_state = 625}, - [4889] = {.lex_state = 0, .external_lex_state = 4}, - [4890] = {.lex_state = 157}, - [4891] = {.lex_state = 625}, - [4892] = {.lex_state = 0, .external_lex_state = 4}, + [4884] = {.lex_state = 0}, + [4885] = {.lex_state = 579}, + [4886] = {.lex_state = 579}, + [4887] = {.lex_state = 626}, + [4888] = {.lex_state = 626}, + [4889] = {.lex_state = 0}, + [4890] = {.lex_state = 579}, + [4891] = {.lex_state = 0, .external_lex_state = 3}, + [4892] = {.lex_state = 0}, [4893] = {.lex_state = 0}, [4894] = {.lex_state = 0}, - [4895] = {.lex_state = 0}, + [4895] = {.lex_state = 626}, [4896] = {.lex_state = 0}, - [4897] = {.lex_state = 0}, - [4898] = {.lex_state = 578}, - [4899] = {.lex_state = 578}, - [4900] = {.lex_state = 0}, - [4901] = {.lex_state = 625}, - [4902] = {.lex_state = 0, .external_lex_state = 4}, + [4897] = {.lex_state = 579}, + [4898] = {.lex_state = 579}, + [4899] = {.lex_state = 10}, + [4900] = {.lex_state = 579}, + [4901] = {.lex_state = 0, .external_lex_state = 3}, + [4902] = {.lex_state = 579}, [4903] = {.lex_state = 0}, - [4904] = {.lex_state = 578}, - [4905] = {.lex_state = 578}, + [4904] = {.lex_state = 0, .external_lex_state = 3}, + [4905] = {.lex_state = 0}, [4906] = {.lex_state = 0}, - [4907] = {.lex_state = 0}, - [4908] = {.lex_state = 578}, - [4909] = {.lex_state = 578}, - [4910] = {.lex_state = 578}, - [4911] = {.lex_state = 10}, - [4912] = {.lex_state = 0, .external_lex_state = 4}, - [4913] = {.lex_state = 236}, - [4914] = {.lex_state = 1192}, - [4915] = {.lex_state = 625}, - [4916] = {.lex_state = 0}, - [4917] = {.lex_state = 578}, - [4918] = {.lex_state = 578}, - [4919] = {.lex_state = 623}, - [4920] = {.lex_state = 578}, - [4921] = {.lex_state = 0, .external_lex_state = 4}, - [4922] = {.lex_state = 623}, - [4923] = {.lex_state = 0}, - [4924] = {.lex_state = 578}, - [4925] = {.lex_state = 578}, - [4926] = {.lex_state = 0}, - [4927] = {.lex_state = 0}, - [4928] = {.lex_state = 0, .external_lex_state = 4}, + [4907] = {.lex_state = 579}, + [4908] = {.lex_state = 579}, + [4909] = {.lex_state = 1193}, + [4910] = {.lex_state = 624}, + [4911] = {.lex_state = 0, .external_lex_state = 3}, + [4912] = {.lex_state = 626}, + [4913] = {.lex_state = 237}, + [4914] = {.lex_state = 624}, + [4915] = {.lex_state = 0}, + [4916] = {.lex_state = 579}, + [4917] = {.lex_state = 579}, + [4918] = {.lex_state = 244}, + [4919] = {.lex_state = 0}, + [4920] = {.lex_state = 0, .external_lex_state = 3}, + [4921] = {.lex_state = 40}, + [4922] = {.lex_state = 0}, + [4923] = {.lex_state = 579}, + [4924] = {.lex_state = 579}, + [4925] = {.lex_state = 1193}, + [4926] = {.lex_state = 280}, + [4927] = {.lex_state = 0, .external_lex_state = 3}, + [4928] = {.lex_state = 0}, [4929] = {.lex_state = 0}, - [4930] = {.lex_state = 0}, - [4931] = {.lex_state = 578}, - [4932] = {.lex_state = 578}, - [4933] = {.lex_state = 0}, - [4934] = {.lex_state = 243}, - [4935] = {.lex_state = 0, .external_lex_state = 4}, - [4936] = {.lex_state = 279}, - [4937] = {.lex_state = 0}, - [4938] = {.lex_state = 578}, - [4939] = {.lex_state = 578}, + [4930] = {.lex_state = 579}, + [4931] = {.lex_state = 579}, + [4932] = {.lex_state = 0}, + [4933] = {.lex_state = 624}, + [4934] = {.lex_state = 0, .external_lex_state = 3}, + [4935] = {.lex_state = 0}, + [4936] = {.lex_state = 0}, + [4937] = {.lex_state = 579}, + [4938] = {.lex_state = 579}, + [4939] = {.lex_state = 626}, [4940] = {.lex_state = 0}, - [4941] = {.lex_state = 40}, - [4942] = {.lex_state = 0, .external_lex_state = 4}, + [4941] = {.lex_state = 0, .external_lex_state = 3}, + [4942] = {.lex_state = 626}, [4943] = {.lex_state = 0}, - [4944] = {.lex_state = 0}, - [4945] = {.lex_state = 578}, - [4946] = {.lex_state = 578}, - [4947] = {.lex_state = 0}, - [4948] = {.lex_state = 625}, - [4949] = {.lex_state = 0, .external_lex_state = 4}, - [4950] = {.lex_state = 1192}, - [4951] = {.lex_state = 0}, - [4952] = {.lex_state = 578}, - [4953] = {.lex_state = 578}, - [4954] = {.lex_state = 0}, - [4955] = {.lex_state = 0, .external_lex_state = 4}, - [4956] = {.lex_state = 1192}, - [4957] = {.lex_state = 0}, - [4958] = {.lex_state = 578}, - [4959] = {.lex_state = 578}, - [4960] = {.lex_state = 0}, - [4961] = {.lex_state = 0, .external_lex_state = 4}, - [4962] = {.lex_state = 0}, - [4963] = {.lex_state = 578}, - [4964] = {.lex_state = 578}, - [4965] = {.lex_state = 623}, - [4966] = {.lex_state = 0, .external_lex_state = 4}, - [4967] = {.lex_state = 0}, - [4968] = {.lex_state = 578}, - [4969] = {.lex_state = 578}, - [4970] = {.lex_state = 0, .external_lex_state = 3}, - [4971] = {.lex_state = 236}, - [4972] = {.lex_state = 1192}, + [4944] = {.lex_state = 579}, + [4945] = {.lex_state = 579}, + [4946] = {.lex_state = 1193}, + [4947] = {.lex_state = 624}, + [4948] = {.lex_state = 0, .external_lex_state = 3}, + [4949] = {.lex_state = 0}, + [4950] = {.lex_state = 0}, + [4951] = {.lex_state = 579}, + [4952] = {.lex_state = 579}, + [4953] = {.lex_state = 0}, + [4954] = {.lex_state = 0, .external_lex_state = 3}, + [4955] = {.lex_state = 1193}, + [4956] = {.lex_state = 0}, + [4957] = {.lex_state = 579}, + [4958] = {.lex_state = 579}, + [4959] = {.lex_state = 0}, + [4960] = {.lex_state = 0, .external_lex_state = 3}, + [4961] = {.lex_state = 0}, + [4962] = {.lex_state = 579}, + [4963] = {.lex_state = 579}, + [4964] = {.lex_state = 624}, + [4965] = {.lex_state = 0, .external_lex_state = 3}, + [4966] = {.lex_state = 0}, + [4967] = {.lex_state = 579}, + [4968] = {.lex_state = 579}, + [4969] = {.lex_state = 0, .external_lex_state = 4}, + [4970] = {.lex_state = 579}, + [4971] = {.lex_state = 0}, + [4972] = {.lex_state = 37}, [4973] = {.lex_state = 0}, - [4974] = {.lex_state = 0}, - [4975] = {.lex_state = 1692}, - [4976] = {.lex_state = 1696}, - [4977] = {.lex_state = 40}, + [4974] = {.lex_state = 1693}, + [4975] = {.lex_state = 1697}, + [4976] = {.lex_state = 237}, + [4977] = {.lex_state = 579}, [4978] = {.lex_state = 0}, - [4979] = {.lex_state = 37}, - [4980] = {.lex_state = 623}, - [4981] = {.lex_state = 0}, - [4982] = {.lex_state = 623}, - [4983] = {.lex_state = 578}, - [4984] = {.lex_state = 667}, + [4979] = {.lex_state = 626}, + [4980] = {.lex_state = 0}, + [4981] = {.lex_state = 40}, + [4982] = {.lex_state = 0}, + [4983] = {.lex_state = 668}, + [4984] = {.lex_state = 0}, [4985] = {.lex_state = 0}, [4986] = {.lex_state = 0}, - [4987] = {.lex_state = 578}, - [4988] = {.lex_state = 0}, + [4987] = {.lex_state = 0}, + [4988] = {.lex_state = 626}, [4989] = {.lex_state = 0}, [4990] = {.lex_state = 0}, - [4991] = {.lex_state = 625}, - [4992] = {.lex_state = 625}, - [4993] = {.lex_state = 0}, - [4994] = {.lex_state = 625}, + [4991] = {.lex_state = 626}, + [4992] = {.lex_state = 626}, + [4993] = {.lex_state = 626}, + [4994] = {.lex_state = 0}, [4995] = {.lex_state = 0}, - [4996] = {.lex_state = 0}, - [4997] = {.lex_state = 627}, - [4998] = {.lex_state = 625}, - [4999] = {.lex_state = 625}, - [5000] = {.lex_state = 40}, - [5001] = {.lex_state = 625}, - [5002] = {.lex_state = 625}, - [5003] = {.lex_state = 625}, - [5004] = {.lex_state = 0}, - [5005] = {.lex_state = 623}, - [5006] = {.lex_state = 0}, + [4996] = {.lex_state = 628}, + [4997] = {.lex_state = 626}, + [4998] = {.lex_state = 0}, + [4999] = {.lex_state = 237}, + [5000] = {.lex_state = 237}, + [5001] = {.lex_state = 234}, + [5002] = {.lex_state = 2187}, + [5003] = {.lex_state = 0}, + [5004] = {.lex_state = 624}, + [5005] = {.lex_state = 0}, + [5006] = {.lex_state = 2187}, [5007] = {.lex_state = 0}, - [5008] = {.lex_state = 0}, - [5009] = {.lex_state = 0}, - [5010] = {.lex_state = 236}, - [5011] = {.lex_state = 2188}, - [5012] = {.lex_state = 236}, - [5013] = {.lex_state = 233}, - [5014] = {.lex_state = 623}, - [5015] = {.lex_state = 623}, - [5016] = {.lex_state = 129}, - [5017] = {.lex_state = 627}, - [5018] = {.lex_state = 625}, - [5019] = {.lex_state = 236}, - [5020] = {.lex_state = 2188}, + [5008] = {.lex_state = 40}, + [5009] = {.lex_state = 234}, + [5010] = {.lex_state = 129}, + [5011] = {.lex_state = 237}, + [5012] = {.lex_state = 624}, + [5013] = {.lex_state = 624}, + [5014] = {.lex_state = 624}, + [5015] = {.lex_state = 624}, + [5016] = {.lex_state = 0}, + [5017] = {.lex_state = 2189}, + [5018] = {.lex_state = 626}, + [5019] = {.lex_state = 626}, + [5020] = {.lex_state = 238}, [5021] = {.lex_state = 0}, - [5022] = {.lex_state = 625}, - [5023] = {.lex_state = 625}, - [5024] = {.lex_state = 2186}, - [5025] = {.lex_state = 0}, - [5026] = {.lex_state = 0, .external_lex_state = 4}, - [5027] = {.lex_state = 2186}, - [5028] = {.lex_state = 40}, - [5029] = {.lex_state = 0}, - [5030] = {.lex_state = 233}, + [5022] = {.lex_state = 0, .external_lex_state = 3}, + [5023] = {.lex_state = 157}, + [5024] = {.lex_state = 129}, + [5025] = {.lex_state = 234}, + [5026] = {.lex_state = 0}, + [5027] = {.lex_state = 0}, + [5028] = {.lex_state = 129}, + [5029] = {.lex_state = 2191}, + [5030] = {.lex_state = 234}, [5031] = {.lex_state = 0}, - [5032] = {.lex_state = 236}, - [5033] = {.lex_state = 236}, - [5034] = {.lex_state = 129}, - [5035] = {.lex_state = 157}, - [5036] = {.lex_state = 0}, - [5037] = {.lex_state = 623}, - [5038] = {.lex_state = 625}, - [5039] = {.lex_state = 625}, - [5040] = {.lex_state = 0}, + [5032] = {.lex_state = 237}, + [5033] = {.lex_state = 626}, + [5034] = {.lex_state = 626}, + [5035] = {.lex_state = 0, .external_lex_state = 4}, + [5036] = {.lex_state = 237}, + [5037] = {.lex_state = 0}, + [5038] = {.lex_state = 0}, + [5039] = {.lex_state = 626}, + [5040] = {.lex_state = 157}, [5041] = {.lex_state = 0}, - [5042] = {.lex_state = 236}, - [5043] = {.lex_state = 236}, - [5044] = {.lex_state = 10}, + [5042] = {.lex_state = 0}, + [5043] = {.lex_state = 668}, + [5044] = {.lex_state = 626}, [5045] = {.lex_state = 0}, - [5046] = {.lex_state = 0}, - [5047] = {.lex_state = 625}, - [5048] = {.lex_state = 2190}, - [5049] = {.lex_state = 0}, - [5050] = {.lex_state = 578}, - [5051] = {.lex_state = 578}, - [5052] = {.lex_state = 625}, - [5053] = {.lex_state = 10}, - [5054] = {.lex_state = 1192}, + [5046] = {.lex_state = 579}, + [5047] = {.lex_state = 579}, + [5048] = {.lex_state = 624}, + [5049] = {.lex_state = 10}, + [5050] = {.lex_state = 1193}, + [5051] = {.lex_state = 2189}, + [5052] = {.lex_state = 624}, + [5053] = {.lex_state = 40}, + [5054] = {.lex_state = 0}, [5055] = {.lex_state = 0}, - [5056] = {.lex_state = 233}, + [5056] = {.lex_state = 40}, [5057] = {.lex_state = 0}, - [5058] = {.lex_state = 0}, - [5059] = {.lex_state = 129}, - [5060] = {.lex_state = 0}, - [5061] = {.lex_state = 625}, - [5062] = {.lex_state = 40}, + [5058] = {.lex_state = 626}, + [5059] = {.lex_state = 234}, + [5060] = {.lex_state = 626}, + [5061] = {.lex_state = 1193}, + [5062] = {.lex_state = 0}, [5063] = {.lex_state = 0}, - [5064] = {.lex_state = 1192}, - [5065] = {.lex_state = 0}, - [5066] = {.lex_state = 0}, - [5067] = {.lex_state = 0}, - [5068] = {.lex_state = 0, .external_lex_state = 4}, - [5069] = {.lex_state = 157}, - [5070] = {.lex_state = 0, .external_lex_state = 3}, - [5071] = {.lex_state = 625}, - [5072] = {.lex_state = 236}, - [5073] = {.lex_state = 667}, - [5074] = {.lex_state = 40}, - [5075] = {.lex_state = 1192}, - [5076] = {.lex_state = 233}, - [5077] = {.lex_state = 0}, - [5078] = {.lex_state = 237}, - [5079] = {.lex_state = 0, .external_lex_state = 4}, - [5080] = {.lex_state = 2188}, - [5081] = {.lex_state = 623}, - [5082] = {.lex_state = 233}, - [5083] = {.lex_state = 157}, + [5064] = {.lex_state = 1193}, + [5065] = {.lex_state = 129}, + [5066] = {.lex_state = 157}, + [5067] = {.lex_state = 579}, + [5068] = {.lex_state = 0}, + [5069] = {.lex_state = 2191}, + [5070] = {.lex_state = 40}, + [5071] = {.lex_state = 0}, + [5072] = {.lex_state = 0}, + [5073] = {.lex_state = 10}, + [5074] = {.lex_state = 0, .external_lex_state = 3}, + [5075] = {.lex_state = 234}, + [5076] = {.lex_state = 0}, + [5077] = {.lex_state = 234}, + [5078] = {.lex_state = 626}, + [5079] = {.lex_state = 0}, + [5080] = {.lex_state = 0}, + [5081] = {.lex_state = 0}, + [5082] = {.lex_state = 234}, + [5083] = {.lex_state = 234}, [5084] = {.lex_state = 0}, - [5085] = {.lex_state = 2190}, - [5086] = {.lex_state = 0}, + [5085] = {.lex_state = 0}, + [5086] = {.lex_state = 626}, [5087] = {.lex_state = 0}, [5088] = {.lex_state = 0}, [5089] = {.lex_state = 0}, - [5090] = {.lex_state = 40}, - [5091] = {.lex_state = 625}, - [5092] = {.lex_state = 0}, + [5090] = {.lex_state = 626}, + [5091] = {.lex_state = 0}, + [5092] = {.lex_state = 624}, [5093] = {.lex_state = 0}, - [5094] = {.lex_state = 233}, + [5094] = {.lex_state = 0}, [5095] = {.lex_state = 0}, - [5096] = {.lex_state = 623}, + [5096] = {.lex_state = 0}, [5097] = {.lex_state = 0}, - [5098] = {.lex_state = 0}, - [5099] = {.lex_state = 0}, - [5100] = {.lex_state = 625}, - [5101] = {.lex_state = 625}, - [5102] = {.lex_state = 0}, - [5103] = {.lex_state = 625}, + [5098] = {.lex_state = 2191}, + [5099] = {.lex_state = 626}, + [5100] = {.lex_state = 1193}, + [5101] = {.lex_state = 0}, + [5102] = {.lex_state = 579}, + [5103] = {.lex_state = 579}, [5104] = {.lex_state = 0}, - [5105] = {.lex_state = 578}, - [5106] = {.lex_state = 578}, + [5105] = {.lex_state = 579}, + [5106] = {.lex_state = 0}, [5107] = {.lex_state = 0}, - [5108] = {.lex_state = 0}, - [5109] = {.lex_state = 233}, - [5110] = {.lex_state = 0}, - [5111] = {.lex_state = 0, .external_lex_state = 3}, - [5112] = {.lex_state = 0}, - [5113] = {.lex_state = 1692}, - [5114] = {.lex_state = 1696}, + [5108] = {.lex_state = 1193}, + [5109] = {.lex_state = 0}, + [5110] = {.lex_state = 0, .external_lex_state = 4}, + [5111] = {.lex_state = 0}, + [5112] = {.lex_state = 1693}, + [5113] = {.lex_state = 1697}, + [5114] = {.lex_state = 0}, [5115] = {.lex_state = 0}, - [5116] = {.lex_state = 623}, - [5117] = {.lex_state = 1192}, - [5118] = {.lex_state = 627}, - [5119] = {.lex_state = 1192}, - [5120] = {.lex_state = 625}, + [5116] = {.lex_state = 0}, + [5117] = {.lex_state = 628}, + [5118] = {.lex_state = 0}, + [5119] = {.lex_state = 40}, + [5120] = {.lex_state = 2202}, [5121] = {.lex_state = 0}, - [5122] = {.lex_state = 0}, - [5123] = {.lex_state = 0}, - [5124] = {.lex_state = 0}, - [5125] = {.lex_state = 625}, - [5126] = {.lex_state = 40}, - [5127] = {.lex_state = 40}, + [5122] = {.lex_state = 626}, + [5123] = {.lex_state = 0, .external_lex_state = 3}, + [5124] = {.lex_state = 1193}, + [5125] = {.lex_state = 579}, + [5126] = {.lex_state = 0}, + [5127] = {.lex_state = 0}, [5128] = {.lex_state = 0}, - [5129] = {.lex_state = 1192}, - [5130] = {.lex_state = 578}, - [5131] = {.lex_state = 0}, - [5132] = {.lex_state = 578}, - [5133] = {.lex_state = 129}, + [5129] = {.lex_state = 129}, + [5130] = {.lex_state = 0}, + [5131] = {.lex_state = 624}, + [5132] = {.lex_state = 10}, + [5133] = {.lex_state = 624}, [5134] = {.lex_state = 0}, [5135] = {.lex_state = 0}, - [5136] = {.lex_state = 0}, - [5137] = {.lex_state = 0}, + [5136] = {.lex_state = 1693}, + [5137] = {.lex_state = 0, .external_lex_state = 3}, [5138] = {.lex_state = 0}, - [5139] = {.lex_state = 0}, - [5140] = {.lex_state = 0}, - [5141] = {.lex_state = 0, .external_lex_state = 4}, - [5142] = {.lex_state = 0, .external_lex_state = 4}, - [5143] = {.lex_state = 623}, - [5144] = {.lex_state = 233}, - [5145] = {.lex_state = 233}, - [5146] = {.lex_state = 0}, + [5139] = {.lex_state = 234}, + [5140] = {.lex_state = 234}, + [5141] = {.lex_state = 0}, + [5142] = {.lex_state = 0, .external_lex_state = 3}, + [5143] = {.lex_state = 0}, + [5144] = {.lex_state = 40}, + [5145] = {.lex_state = 626}, + [5146] = {.lex_state = 0, .external_lex_state = 4}, [5147] = {.lex_state = 0}, - [5148] = {.lex_state = 0, .external_lex_state = 3}, - [5149] = {.lex_state = 0}, - [5150] = {.lex_state = 1692}, - [5151] = {.lex_state = 1696}, + [5148] = {.lex_state = 1693}, + [5149] = {.lex_state = 1697}, + [5150] = {.lex_state = 157}, + [5151] = {.lex_state = 628}, [5152] = {.lex_state = 0}, - [5153] = {.lex_state = 627}, - [5154] = {.lex_state = 37}, - [5155] = {.lex_state = 0}, - [5156] = {.lex_state = 625}, - [5157] = {.lex_state = 623}, + [5153] = {.lex_state = 0}, + [5154] = {.lex_state = 626}, + [5155] = {.lex_state = 237}, + [5156] = {.lex_state = 40}, + [5157] = {.lex_state = 0}, [5158] = {.lex_state = 0}, - [5159] = {.lex_state = 0}, + [5159] = {.lex_state = 0, .external_lex_state = 4}, [5160] = {.lex_state = 0}, - [5161] = {.lex_state = 0, .external_lex_state = 3}, - [5162] = {.lex_state = 0}, - [5163] = {.lex_state = 1692}, - [5164] = {.lex_state = 1696}, - [5165] = {.lex_state = 0, .external_lex_state = 3}, - [5166] = {.lex_state = 0}, - [5167] = {.lex_state = 1692}, - [5168] = {.lex_state = 1696}, - [5169] = {.lex_state = 0, .external_lex_state = 3}, - [5170] = {.lex_state = 0}, - [5171] = {.lex_state = 1692}, - [5172] = {.lex_state = 1696}, - [5173] = {.lex_state = 0, .external_lex_state = 3}, - [5174] = {.lex_state = 1692}, - [5175] = {.lex_state = 1696}, - [5176] = {.lex_state = 0, .external_lex_state = 3}, - [5177] = {.lex_state = 1692}, - [5178] = {.lex_state = 1696}, - [5179] = {.lex_state = 0, .external_lex_state = 3}, - [5180] = {.lex_state = 1692}, - [5181] = {.lex_state = 1696}, - [5182] = {.lex_state = 0, .external_lex_state = 3}, - [5183] = {.lex_state = 1692}, - [5184] = {.lex_state = 1696}, - [5185] = {.lex_state = 0, .external_lex_state = 3}, - [5186] = {.lex_state = 1692}, - [5187] = {.lex_state = 1696}, - [5188] = {.lex_state = 0, .external_lex_state = 3}, - [5189] = {.lex_state = 1692}, - [5190] = {.lex_state = 1696}, - [5191] = {.lex_state = 623}, - [5192] = {.lex_state = 1692}, - [5193] = {.lex_state = 1696}, - [5194] = {.lex_state = 0, .external_lex_state = 3}, - [5195] = {.lex_state = 1692}, - [5196] = {.lex_state = 1696}, - [5197] = {.lex_state = 0, .external_lex_state = 3}, - [5198] = {.lex_state = 1692}, - [5199] = {.lex_state = 1696}, - [5200] = {.lex_state = 0, .external_lex_state = 3}, - [5201] = {.lex_state = 1692}, - [5202] = {.lex_state = 1696}, - [5203] = {.lex_state = 0, .external_lex_state = 3}, - [5204] = {.lex_state = 1692}, - [5205] = {.lex_state = 1696}, - [5206] = {.lex_state = 0, .external_lex_state = 3}, - [5207] = {.lex_state = 1692}, - [5208] = {.lex_state = 1696}, - [5209] = {.lex_state = 0, .external_lex_state = 3}, - [5210] = {.lex_state = 1692}, - [5211] = {.lex_state = 1696}, - [5212] = {.lex_state = 0, .external_lex_state = 3}, - [5213] = {.lex_state = 1692}, - [5214] = {.lex_state = 1696}, - [5215] = {.lex_state = 0, .external_lex_state = 3}, - [5216] = {.lex_state = 1692}, - [5217] = {.lex_state = 1696}, + [5161] = {.lex_state = 1693}, + [5162] = {.lex_state = 1697}, + [5163] = {.lex_state = 0, .external_lex_state = 4}, + [5164] = {.lex_state = 0}, + [5165] = {.lex_state = 1693}, + [5166] = {.lex_state = 1697}, + [5167] = {.lex_state = 0, .external_lex_state = 4}, + [5168] = {.lex_state = 0}, + [5169] = {.lex_state = 1693}, + [5170] = {.lex_state = 1697}, + [5171] = {.lex_state = 0, .external_lex_state = 4}, + [5172] = {.lex_state = 1693}, + [5173] = {.lex_state = 1697}, + [5174] = {.lex_state = 0, .external_lex_state = 4}, + [5175] = {.lex_state = 1693}, + [5176] = {.lex_state = 1697}, + [5177] = {.lex_state = 0, .external_lex_state = 4}, + [5178] = {.lex_state = 1693}, + [5179] = {.lex_state = 1697}, + [5180] = {.lex_state = 0, .external_lex_state = 4}, + [5181] = {.lex_state = 1693}, + [5182] = {.lex_state = 1697}, + [5183] = {.lex_state = 0, .external_lex_state = 4}, + [5184] = {.lex_state = 1693}, + [5185] = {.lex_state = 1697}, + [5186] = {.lex_state = 0, .external_lex_state = 4}, + [5187] = {.lex_state = 1693}, + [5188] = {.lex_state = 1697}, + [5189] = {.lex_state = 0, .external_lex_state = 4}, + [5190] = {.lex_state = 1693}, + [5191] = {.lex_state = 1697}, + [5192] = {.lex_state = 0, .external_lex_state = 4}, + [5193] = {.lex_state = 1693}, + [5194] = {.lex_state = 1697}, + [5195] = {.lex_state = 0, .external_lex_state = 4}, + [5196] = {.lex_state = 1693}, + [5197] = {.lex_state = 1697}, + [5198] = {.lex_state = 0, .external_lex_state = 4}, + [5199] = {.lex_state = 1693}, + [5200] = {.lex_state = 1697}, + [5201] = {.lex_state = 0, .external_lex_state = 4}, + [5202] = {.lex_state = 1693}, + [5203] = {.lex_state = 1697}, + [5204] = {.lex_state = 0, .external_lex_state = 4}, + [5205] = {.lex_state = 1693}, + [5206] = {.lex_state = 1697}, + [5207] = {.lex_state = 0, .external_lex_state = 4}, + [5208] = {.lex_state = 1693}, + [5209] = {.lex_state = 1697}, + [5210] = {.lex_state = 0, .external_lex_state = 4}, + [5211] = {.lex_state = 1693}, + [5212] = {.lex_state = 1697}, + [5213] = {.lex_state = 0, .external_lex_state = 4}, + [5214] = {.lex_state = 1693}, + [5215] = {.lex_state = 1697}, + [5216] = {.lex_state = 237}, + [5217] = {.lex_state = 0}, [5218] = {.lex_state = 0}, - [5219] = {.lex_state = 236}, - [5220] = {.lex_state = 0}, - [5221] = {.lex_state = 233}, - [5222] = {.lex_state = 10}, - [5223] = {.lex_state = 0}, - [5224] = {.lex_state = 578}, - [5225] = {.lex_state = 578}, - [5226] = {.lex_state = 578}, - [5227] = {.lex_state = 1692}, - [5228] = {.lex_state = 40}, - [5229] = {.lex_state = 1192}, - [5230] = {.lex_state = 2190}, - [5231] = {.lex_state = 0}, + [5219] = {.lex_state = 579}, + [5220] = {.lex_state = 579}, + [5221] = {.lex_state = 234}, + [5222] = {.lex_state = 626}, + [5223] = {.lex_state = 579}, + [5224] = {.lex_state = 1193}, + [5225] = {.lex_state = 626}, + [5226] = {.lex_state = 0}, + [5227] = {.lex_state = 0}, + [5228] = {.lex_state = 2187}, + [5229] = {.lex_state = 0}, + [5230] = {.lex_state = 0}, + [5231] = {.lex_state = 626}, [5232] = {.lex_state = 0}, [5233] = {.lex_state = 0}, - [5234] = {.lex_state = 0}, - [5235] = {.lex_state = 0}, - [5236] = {.lex_state = 0}, - [5237] = {.lex_state = 625}, - [5238] = {.lex_state = 625}, - [5239] = {.lex_state = 1192}, - [5240] = {.lex_state = 625}, - [5241] = {.lex_state = 233}, - [5242] = {.lex_state = 0}, - [5243] = {.lex_state = 2186}, - [5244] = {.lex_state = 0}, - [5245] = {.lex_state = 129}, - [5246] = {.lex_state = 625}, - [5247] = {.lex_state = 625}, - [5248] = {.lex_state = 1192}, - [5249] = {.lex_state = 625}, - [5250] = {.lex_state = 623}, - [5251] = {.lex_state = 2201}, - [5252] = {.lex_state = 0, .external_lex_state = 4}, + [5234] = {.lex_state = 626}, + [5235] = {.lex_state = 626}, + [5236] = {.lex_state = 1193}, + [5237] = {.lex_state = 0}, + [5238] = {.lex_state = 626}, + [5239] = {.lex_state = 1697}, + [5240] = {.lex_state = 0}, + [5241] = {.lex_state = 628}, + [5242] = {.lex_state = 129}, + [5243] = {.lex_state = 626}, + [5244] = {.lex_state = 1193}, + [5245] = {.lex_state = 624}, + [5246] = {.lex_state = 129}, + [5247] = {.lex_state = 626}, + [5248] = {.lex_state = 10}, + [5249] = {.lex_state = 0, .external_lex_state = 3}, + [5250] = {.lex_state = 0}, + [5251] = {.lex_state = 37}, + [5252] = {.lex_state = 624}, [5253] = {.lex_state = 0}, - [5254] = {.lex_state = 625}, - [5255] = {.lex_state = 625}, + [5254] = {.lex_state = 1193}, + [5255] = {.lex_state = 626}, [5256] = {.lex_state = 129}, [5257] = {.lex_state = 0}, [5258] = {.lex_state = 0}, - [5259] = {.lex_state = 623}, - [5260] = {.lex_state = 625}, - [5261] = {.lex_state = 129}, - [5262] = {(TSStateId)(-1),}, + [5259] = {.lex_state = 0}, + [5260] = {.lex_state = 626}, + [5261] = {(TSStateId)(-1),}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -38537,76 +38572,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_end] = ACTIONS(1), }, [STATE(1)] = { - [sym_nu_script] = STATE(5134), - [sym_shebang] = STATE(60), + [sym_nu_script] = STATE(5076), + [sym_shebang] = STATE(37), [sym__block_body_statement] = STATE(4366), [sym__declaration] = STATE(4632), - [sym_decl_alias] = STATE(4441), - [sym_stmt_let] = STATE(4465), - [sym_stmt_mut] = STATE(4465), - [sym_stmt_const] = STATE(4465), - [sym_assignment] = STATE(4465), - [sym__mutable_assignment_pattern] = STATE(4508), + [sym_decl_alias] = STATE(4437), + [sym_stmt_let] = STATE(4461), + [sym_stmt_mut] = STATE(4461), + [sym_stmt_const] = STATE(4461), + [sym_assignment] = STATE(4461), + [sym__mutable_assignment_pattern] = STATE(4511), [sym__statement] = STATE(4632), - [sym_pipeline] = STATE(4465), - [sym__block_body] = STATE(5115), - [sym_cmd_identifier] = STATE(2951), - [aux_sym__repeat_newline] = STATE(4531), - [sym_attribute_list] = STATE(4536), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4441), - [sym_decl_export] = STATE(4441), - [sym_decl_extern] = STATE(4441), - [sym_decl_module] = STATE(4441), - [sym_decl_use] = STATE(4441), - [sym__ctrl_statement] = STATE(4465), - [sym__ctrl_expression] = STATE(3333), - [sym_ctrl_for] = STATE(4546), - [sym_ctrl_loop] = STATE(4546), - [sym_ctrl_while] = STATE(4546), - [sym_ctrl_if] = STATE(3365), - [sym_ctrl_match] = STATE(3365), - [sym_ctrl_try] = STATE(3365), - [sym_pipe_element] = STATE(3098), - [sym_where_command] = STATE(3333), - [sym__expression] = STATE(2260), - [sym_expr_unary] = STATE(1276), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1276), - [sym__expr_binary_expression] = STATE(2222), - [sym_expr_parenthesized] = STATE(919), - [sym_val_range] = STATE(1276), - [sym__value] = STATE(1276), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(1294), - [sym_val_variable] = STATE(440), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(120), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3333), + [sym_pipeline] = STATE(4461), + [sym__block_body] = STATE(5087), + [sym_cmd_identifier] = STATE(2923), + [aux_sym__repeat_newline] = STATE(4538), + [sym_attribute_list] = STATE(4544), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4437), + [sym_decl_export] = STATE(4437), + [sym_decl_extern] = STATE(4437), + [sym_decl_module] = STATE(4437), + [sym_decl_use] = STATE(4437), + [sym__ctrl_statement] = STATE(4461), + [sym__ctrl_expression] = STATE(3323), + [sym_ctrl_for] = STATE(4552), + [sym_ctrl_loop] = STATE(4552), + [sym_ctrl_while] = STATE(4552), + [sym_ctrl_if] = STATE(3369), + [sym_ctrl_match] = STATE(3369), + [sym_ctrl_try] = STATE(3369), + [sym_pipe_element] = STATE(3107), + [sym_where_command] = STATE(3323), + [sym__expression] = STATE(2264), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1273), + [sym__expr_binary_expression] = STATE(2226), + [sym_expr_parenthesized] = STATE(950), + [sym_val_range] = STATE(1273), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1311), + [sym_val_variable] = STATE(444), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3323), [sym_comment] = STATE(1), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(284), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(81), + [aux_sym__block_body_repeat2] = STATE(85), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(293), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_POUND_BANG] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), @@ -38669,85 +38704,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(105), }, [STATE(2)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(4869), - [sym_cmd_identifier] = STATE(2690), - [aux_sym__repeat_newline] = STATE(24), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym_parameter_pipes] = STATE(47), + [sym__block_body] = STATE(4856), + [sym_cmd_identifier] = STATE(2654), + [aux_sym__repeat_newline] = STATE(22), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(49), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym__match_pattern_record_body] = STATE(5234), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(762), - [sym__spread_parenthesized] = STATE(4693), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym__spread_variable] = STATE(4695), - [sym_val_variable] = STATE(393), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(1215), - [sym__val_number_decimal] = STATE(106), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(1215), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(1215), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym__spread_record] = STATE(4693), - [sym_record_body] = STATE(4877), - [sym_record_entry] = STATE(4509), - [sym__record_key] = STATE(5228), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym__match_pattern_record_body] = STATE(5227), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(739), + [sym__spread_parenthesized] = STATE(4675), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(387), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(1176), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(1176), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(1176), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(4866), + [sym_record_entry] = STATE(4500), + [sym__record_key] = STATE(5144), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(2), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym__types_body_repeat1] = STATE(501), - [aux_sym__match_pattern_record_body_repeat1] = STATE(761), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(823), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym__types_body_repeat1] = STATE(493), + [aux_sym__match_pattern_record_body_repeat1] = STATE(773), + [aux_sym_pipe_element_repeat2] = STATE(288), + [aux_sym_record_body_repeat1] = STATE(741), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -38814,83 +38849,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(3)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(5088), - [sym_cmd_identifier] = STATE(2690), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym_parameter_pipes] = STATE(54), + [sym__block_body] = STATE(5138), + [sym_cmd_identifier] = STATE(2654), + [aux_sym__repeat_newline] = STATE(18), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(56), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(762), - [sym__spread_parenthesized] = STATE(4693), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym__spread_variable] = STATE(4695), - [sym_val_variable] = STATE(418), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(1215), - [sym__val_number_decimal] = STATE(106), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(1215), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(1215), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym__spread_record] = STATE(4693), - [sym_record_body] = STATE(5147), - [sym_record_entry] = STATE(4520), - [sym__record_key] = STATE(5228), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(739), + [sym__spread_parenthesized] = STATE(4675), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(432), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(1176), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(1176), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(1176), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(5141), + [sym_record_entry] = STATE(4528), + [sym__record_key] = STATE(5144), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(3), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym__types_body_repeat1] = STATE(615), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(823), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym__types_body_repeat1] = STATE(526), + [aux_sym_pipe_element_repeat2] = STATE(288), + [aux_sym_record_body_repeat1] = STATE(741), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -38957,83 +38992,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(4)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(5155), - [sym_cmd_identifier] = STATE(2690), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym_parameter_pipes] = STATE(54), + [sym__block_body] = STATE(5152), + [sym_cmd_identifier] = STATE(2654), + [aux_sym__repeat_newline] = STATE(26), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(66), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(762), - [sym__spread_parenthesized] = STATE(4693), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym__spread_variable] = STATE(4695), - [sym_val_variable] = STATE(418), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(1215), - [sym__val_number_decimal] = STATE(106), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(1215), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(1215), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym__spread_record] = STATE(4693), - [sym_record_body] = STATE(5147), - [sym_record_entry] = STATE(4520), - [sym__record_key] = STATE(5228), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(739), + [sym__spread_parenthesized] = STATE(4675), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(432), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(1176), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(1176), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(1176), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(5106), + [sym_record_entry] = STATE(4528), + [sym__record_key] = STATE(5144), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(4), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym__types_body_repeat1] = STATE(615), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(823), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym__types_body_repeat1] = STATE(526), + [aux_sym_pipe_element_repeat2] = STATE(288), + [aux_sym_record_body_repeat1] = STATE(741), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39100,83 +39135,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(5)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(5158), - [sym_cmd_identifier] = STATE(2690), - [aux_sym__repeat_newline] = STATE(26), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym_parameter_pipes] = STATE(65), + [sym__block_body] = STATE(5081), + [sym_cmd_identifier] = STATE(2654), + [aux_sym__repeat_newline] = STATE(19), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(42), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(762), - [sym__spread_parenthesized] = STATE(4693), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym__spread_variable] = STATE(4695), - [sym_val_variable] = STATE(418), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(1215), - [sym__val_number_decimal] = STATE(106), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(1215), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(1215), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym__spread_record] = STATE(4693), - [sym_record_body] = STATE(5107), - [sym_record_entry] = STATE(4520), - [sym__record_key] = STATE(5228), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(739), + [sym__spread_parenthesized] = STATE(4675), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(432), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(1176), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(1176), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(1176), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(5085), + [sym_record_entry] = STATE(4528), + [sym__record_key] = STATE(5144), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(5), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym__types_body_repeat1] = STATE(615), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(823), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym__types_body_repeat1] = STATE(526), + [aux_sym_pipe_element_repeat2] = STATE(288), + [aux_sym_record_body_repeat1] = STATE(741), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39243,83 +39278,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(6)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(5086), - [sym_cmd_identifier] = STATE(2690), + [sym__block_body] = STATE(5072), + [sym_cmd_identifier] = STATE(2654), [aux_sym__repeat_newline] = STATE(18), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym_parameter_pipes] = STATE(40), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(56), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(762), - [sym__spread_parenthesized] = STATE(4693), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym__spread_variable] = STATE(4695), - [sym_val_variable] = STATE(418), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(1215), - [sym__val_number_decimal] = STATE(106), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(1215), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(1215), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym__spread_record] = STATE(4693), - [sym_record_body] = STATE(5092), - [sym_record_entry] = STATE(4520), - [sym__record_key] = STATE(5228), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(739), + [sym__spread_parenthesized] = STATE(4675), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(432), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(1176), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(1176), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(1176), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(5141), + [sym_record_entry] = STATE(4528), + [sym__record_key] = STATE(5144), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(6), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym__types_body_repeat1] = STATE(615), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(823), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym__types_body_repeat1] = STATE(526), + [aux_sym_pipe_element_repeat2] = STATE(288), + [aux_sym_record_body_repeat1] = STATE(741), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39386,83 +39421,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(7)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(4981), - [sym_cmd_identifier] = STATE(2690), - [aux_sym__repeat_newline] = STATE(24), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym_parameter_pipes] = STATE(47), + [sym__block_body] = STATE(4949), + [sym_cmd_identifier] = STATE(2654), + [aux_sym__repeat_newline] = STATE(22), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(49), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(762), - [sym__spread_parenthesized] = STATE(4693), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym__spread_variable] = STATE(4695), - [sym_val_variable] = STATE(418), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(1215), - [sym__val_number_decimal] = STATE(106), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(1215), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(1215), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym__spread_record] = STATE(4693), - [sym_record_body] = STATE(4877), - [sym_record_entry] = STATE(4520), - [sym__record_key] = STATE(5228), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(739), + [sym__spread_parenthesized] = STATE(4675), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(432), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(1176), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(1176), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(1176), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(4866), + [sym_record_entry] = STATE(4528), + [sym__record_key] = STATE(5144), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(7), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym__types_body_repeat1] = STATE(615), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(823), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym__types_body_repeat1] = STATE(526), + [aux_sym_pipe_element_repeat2] = STATE(288), + [aux_sym_record_body_repeat1] = STATE(741), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39529,83 +39564,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(8)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(5158), - [sym_cmd_identifier] = STATE(2690), - [aux_sym__repeat_newline] = STATE(26), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym_parameter_pipes] = STATE(65), + [sym__block_body] = STATE(4856), + [sym_cmd_identifier] = STATE(2654), + [aux_sym__repeat_newline] = STATE(22), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(49), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(762), - [sym__spread_parenthesized] = STATE(4693), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym__spread_variable] = STATE(4695), - [sym_val_variable] = STATE(418), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(1215), - [sym__val_number_decimal] = STATE(106), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(1215), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(1215), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym__spread_record] = STATE(4693), - [sym_record_body] = STATE(5218), - [sym_record_entry] = STATE(4520), - [sym__record_key] = STATE(5228), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(739), + [sym__spread_parenthesized] = STATE(4675), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(432), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(1176), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(1176), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(1176), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(4866), + [sym_record_entry] = STATE(4528), + [sym__record_key] = STATE(5144), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(8), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym__types_body_repeat1] = STATE(615), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(823), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym__types_body_repeat1] = STATE(526), + [aux_sym_pipe_element_repeat2] = STATE(288), + [aux_sym_record_body_repeat1] = STATE(741), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39672,83 +39707,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(9)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(5159), - [sym_cmd_identifier] = STATE(2690), - [aux_sym__repeat_newline] = STATE(18), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym_parameter_pipes] = STATE(40), + [sym__block_body] = STATE(5153), + [sym_cmd_identifier] = STATE(2654), + [aux_sym__repeat_newline] = STATE(19), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(42), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(762), - [sym__spread_parenthesized] = STATE(4693), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym__spread_variable] = STATE(4695), - [sym_val_variable] = STATE(418), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(1215), - [sym__val_number_decimal] = STATE(106), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(1215), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(1215), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym__spread_record] = STATE(4693), - [sym_record_body] = STATE(5092), - [sym_record_entry] = STATE(4520), - [sym__record_key] = STATE(5228), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(739), + [sym__spread_parenthesized] = STATE(4675), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(432), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(1176), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(1176), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(1176), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(5085), + [sym_record_entry] = STATE(4528), + [sym__record_key] = STATE(5144), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(9), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym__types_body_repeat1] = STATE(615), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(823), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym__types_body_repeat1] = STATE(526), + [aux_sym_pipe_element_repeat2] = STATE(288), + [aux_sym_record_body_repeat1] = STATE(741), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39815,83 +39850,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(10)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(4883), - [sym_cmd_identifier] = STATE(2690), - [aux_sym__repeat_newline] = STATE(22), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym_parameter_pipes] = STATE(51), + [sym__block_body] = STATE(5037), + [sym_cmd_identifier] = STATE(2654), + [aux_sym__repeat_newline] = STATE(25), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(59), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(762), - [sym__spread_parenthesized] = STATE(4693), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym__spread_variable] = STATE(4695), - [sym_val_variable] = STATE(418), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(1215), - [sym__val_number_decimal] = STATE(106), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(1215), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(1215), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym__spread_record] = STATE(4693), - [sym_record_body] = STATE(4893), - [sym_record_entry] = STATE(4520), - [sym__record_key] = STATE(5228), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(739), + [sym__spread_parenthesized] = STATE(4675), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(432), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(1176), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(1176), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(1176), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(5042), + [sym_record_entry] = STATE(4528), + [sym__record_key] = STATE(5144), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(10), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym__types_body_repeat1] = STATE(615), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(823), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym__types_body_repeat1] = STATE(526), + [aux_sym_pipe_element_repeat2] = STATE(288), + [aux_sym_record_body_repeat1] = STATE(741), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -39958,83 +39993,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(11)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(5040), - [sym_cmd_identifier] = STATE(2690), - [aux_sym__repeat_newline] = STATE(25), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym_parameter_pipes] = STATE(57), + [sym__block_body] = STATE(4880), + [sym_cmd_identifier] = STATE(2654), + [aux_sym__repeat_newline] = STATE(23), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(52), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(762), - [sym__spread_parenthesized] = STATE(4693), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym__spread_variable] = STATE(4695), - [sym_val_variable] = STATE(418), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(1215), - [sym__val_number_decimal] = STATE(106), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(1215), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(1215), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym__spread_record] = STATE(4693), - [sym_record_body] = STATE(5045), - [sym_record_entry] = STATE(4520), - [sym__record_key] = STATE(5228), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(739), + [sym__spread_parenthesized] = STATE(4675), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(432), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(1176), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(1176), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(1176), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(4883), + [sym_record_entry] = STATE(4528), + [sym__record_key] = STATE(5144), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(11), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym__types_body_repeat1] = STATE(615), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(823), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym__types_body_repeat1] = STATE(526), + [aux_sym_pipe_element_repeat2] = STATE(288), + [aux_sym_record_body_repeat1] = STATE(741), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40101,83 +40136,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(12)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(4869), - [sym_cmd_identifier] = STATE(2690), - [aux_sym__repeat_newline] = STATE(24), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym_parameter_pipes] = STATE(47), + [sym__block_body] = STATE(5152), + [sym_cmd_identifier] = STATE(2654), + [aux_sym__repeat_newline] = STATE(26), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(66), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(762), - [sym__spread_parenthesized] = STATE(4693), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym__spread_variable] = STATE(4695), - [sym_val_variable] = STATE(418), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(1215), - [sym__val_number_decimal] = STATE(106), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(1215), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(1215), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym__spread_record] = STATE(4693), - [sym_record_body] = STATE(4877), - [sym_record_entry] = STATE(4520), - [sym__record_key] = STATE(5228), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(739), + [sym__spread_parenthesized] = STATE(4675), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(432), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(1176), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(1176), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(1176), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(5157), + [sym_record_entry] = STATE(4528), + [sym__record_key] = STATE(5144), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(12), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym__types_body_repeat1] = STATE(615), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(823), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym__types_body_repeat1] = STATE(526), + [aux_sym_pipe_element_repeat2] = STATE(288), + [aux_sym_record_body_repeat1] = STATE(741), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40244,83 +40279,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(13)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(5088), - [sym_cmd_identifier] = STATE(2690), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym_parameter_pipes] = STATE(54), + [sym__block_body] = STATE(5072), + [sym_cmd_identifier] = STATE(2654), + [aux_sym__repeat_newline] = STATE(18), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(56), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(762), - [sym__spread_parenthesized] = STATE(4693), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym__spread_variable] = STATE(4695), - [sym_val_variable] = STATE(418), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(1215), - [sym__val_number_decimal] = STATE(106), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(1215), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(1215), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym__spread_record] = STATE(4693), - [sym_record_body] = STATE(4995), - [sym_record_entry] = STATE(4520), - [sym__record_key] = STATE(5228), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(739), + [sym__spread_parenthesized] = STATE(4675), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(432), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(1176), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(1176), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(1176), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(4994), + [sym_record_entry] = STATE(4528), + [sym__record_key] = STATE(5144), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(13), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym__types_body_repeat1] = STATE(615), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(823), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym__types_body_repeat1] = STATE(526), + [aux_sym_pipe_element_repeat2] = STATE(288), + [aux_sym_record_body_repeat1] = STATE(741), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40387,83 +40422,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(14)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(5093), - [sym_cmd_identifier] = STATE(2690), - [aux_sym__repeat_newline] = STATE(23), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym_parameter_pipes] = STATE(62), + [sym__block_body] = STATE(5088), + [sym_cmd_identifier] = STATE(2654), + [aux_sym__repeat_newline] = STATE(24), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(63), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(762), - [sym__spread_parenthesized] = STATE(4693), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym__spread_variable] = STATE(4695), - [sym_val_variable] = STATE(418), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(1215), - [sym__val_number_decimal] = STATE(106), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(1215), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(1215), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym__spread_record] = STATE(4693), - [sym_record_body] = STATE(5099), - [sym_record_entry] = STATE(4520), - [sym__record_key] = STATE(5228), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(739), + [sym__spread_parenthesized] = STATE(4675), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(432), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(1176), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(1176), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(1176), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(5093), + [sym_record_entry] = STATE(4528), + [sym__record_key] = STATE(5144), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(14), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym__types_body_repeat1] = STATE(615), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(823), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym__types_body_repeat1] = STATE(526), + [aux_sym_pipe_element_repeat2] = STATE(288), + [aux_sym_record_body_repeat1] = STATE(741), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40530,83 +40565,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(15)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(5086), - [sym_cmd_identifier] = STATE(2690), - [aux_sym__repeat_newline] = STATE(18), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym_parameter_pipes] = STATE(40), + [sym__block_body] = STATE(5081), + [sym_cmd_identifier] = STATE(2654), + [aux_sym__repeat_newline] = STATE(19), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(42), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(762), - [sym__spread_parenthesized] = STATE(4693), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym__spread_variable] = STATE(4695), - [sym_val_variable] = STATE(418), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(1215), - [sym__val_number_decimal] = STATE(106), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(1215), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(1215), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym__spread_record] = STATE(4693), - [sym_record_body] = STATE(5097), - [sym_record_entry] = STATE(4520), - [sym__record_key] = STATE(5228), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(739), + [sym__spread_parenthesized] = STATE(4675), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(432), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(1176), + [sym__val_number_decimal] = STATE(114), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(1176), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(1176), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(5096), + [sym_record_entry] = STATE(4528), + [sym__record_key] = STATE(5144), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(15), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym__types_body_repeat1] = STATE(615), - [aux_sym_pipe_element_repeat2] = STATE(281), - [aux_sym_record_body_repeat1] = STATE(823), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym__types_body_repeat1] = STATE(526), + [aux_sym_pipe_element_repeat2] = STATE(288), + [aux_sym_record_body_repeat1] = STATE(741), [anon_sym_export] = ACTIONS(107), [anon_sym_alias] = ACTIONS(109), [anon_sym_let] = ACTIONS(111), @@ -40673,75 +40708,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(16)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(5155), - [sym_cmd_identifier] = STATE(2712), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym_parameter_pipes] = STATE(54), + [sym__block_body] = STATE(5072), + [sym_cmd_identifier] = STATE(2786), + [aux_sym__repeat_newline] = STATE(18), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(56), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(16), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -40804,75 +40839,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(17)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(5128), - [sym_cmd_identifier] = STATE(2712), - [aux_sym__repeat_newline] = STATE(1353), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym_parameter_pipes] = STATE(37), + [sym__block_body] = STATE(5138), + [sym_cmd_identifier] = STATE(2786), + [aux_sym__repeat_newline] = STATE(18), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(56), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(17), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -40935,75 +40970,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(18)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(4894), - [sym_cmd_identifier] = STATE(2712), - [aux_sym__repeat_newline] = STATE(1353), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym_parameter_pipes] = STATE(35), + [sym__block_body] = STATE(5118), + [sym_cmd_identifier] = STATE(2786), + [aux_sym__repeat_newline] = STATE(1356), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(55), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(18), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41066,75 +41101,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(19)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(5086), - [sym_cmd_identifier] = STATE(2712), - [aux_sym__repeat_newline] = STATE(18), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym_parameter_pipes] = STATE(40), + [sym__block_body] = STATE(4889), + [sym_cmd_identifier] = STATE(2786), + [aux_sym__repeat_newline] = STATE(1356), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(45), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(19), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41197,75 +41232,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(20)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(5088), - [sym_cmd_identifier] = STATE(2712), - [aux_sym__repeat_newline] = STATE(17), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym_parameter_pipes] = STATE(54), + [sym__block_body] = STATE(5081), + [sym_cmd_identifier] = STATE(2786), + [aux_sym__repeat_newline] = STATE(19), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(42), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(20), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41328,75 +41363,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(21)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(5159), - [sym_cmd_identifier] = STATE(2712), - [aux_sym__repeat_newline] = STATE(18), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym_parameter_pipes] = STATE(40), + [sym__block_body] = STATE(5153), + [sym_cmd_identifier] = STATE(2786), + [aux_sym__repeat_newline] = STATE(19), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(42), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(21), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41459,75 +41494,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(22)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(4940), - [sym_cmd_identifier] = STATE(2712), - [aux_sym__repeat_newline] = STATE(1353), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym_parameter_pipes] = STATE(53), + [sym__block_body] = STATE(5027), + [sym_cmd_identifier] = STATE(2786), + [aux_sym__repeat_newline] = STATE(1356), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(51), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(22), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41590,75 +41625,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(23)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(5122), - [sym_cmd_identifier] = STATE(2712), - [aux_sym__repeat_newline] = STATE(1353), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym_parameter_pipes] = STATE(64), + [sym__block_body] = STATE(4932), + [sym_cmd_identifier] = STATE(2786), + [aux_sym__repeat_newline] = STATE(1356), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(54), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(23), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41721,75 +41756,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(24)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(5041), - [sym_cmd_identifier] = STATE(2712), - [aux_sym__repeat_newline] = STATE(1353), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym_parameter_pipes] = STATE(49), + [sym__block_body] = STATE(5116), + [sym_cmd_identifier] = STATE(2786), + [aux_sym__repeat_newline] = STATE(1356), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(65), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(24), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41852,75 +41887,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(25)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(5058), - [sym_cmd_identifier] = STATE(2712), - [aux_sym__repeat_newline] = STATE(1353), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym_parameter_pipes] = STATE(59), + [sym__block_body] = STATE(5055), + [sym_cmd_identifier] = STATE(2786), + [aux_sym__repeat_newline] = STATE(1356), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(61), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(25), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -41983,75 +42018,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(26)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(5233), - [sym_cmd_identifier] = STATE(2712), - [aux_sym__repeat_newline] = STATE(1353), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym_parameter_pipes] = STATE(67), + [sym__block_body] = STATE(5230), + [sym_cmd_identifier] = STATE(2786), + [aux_sym__repeat_newline] = STATE(1356), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym_parameter_pipes] = STATE(68), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(26), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -42114,73 +42149,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(27)] = { - [sym__block_body_statement_parenthesized] = STATE(3869), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym__parenthesized_body] = STATE(4992), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(4991), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), [sym_comment] = STATE(27), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), - [aux_sym__parenthesized_body_repeat2] = STATE(91), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42243,73 +42278,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(28)] = { - [sym__block_body_statement_parenthesized] = STATE(3869), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym__parenthesized_body] = STATE(5100), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(5099), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), [sym_comment] = STATE(28), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), - [aux_sym__parenthesized_body_repeat2] = STATE(91), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42372,73 +42407,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(29)] = { - [sym__block_body_statement_parenthesized] = STATE(3869), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym__parenthesized_body] = STATE(4848), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(5235), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), [sym_comment] = STATE(29), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), - [aux_sym__parenthesized_body_repeat2] = STATE(91), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42479,7 +42514,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_RPAREN2] = ACTIONS(347), + [anon_sym_RPAREN2] = ACTIONS(335), [aux_sym__val_number_decimal_token1] = ACTIONS(337), [aux_sym__val_number_decimal_token2] = ACTIONS(339), [aux_sym__val_number_decimal_token3] = ACTIONS(341), @@ -42501,73 +42536,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(30)] = { - [sym__block_body_statement_parenthesized] = STATE(3869), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym__parenthesized_body] = STATE(4837), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(4834), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), [sym_comment] = STATE(30), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), - [aux_sym__parenthesized_body_repeat2] = STATE(91), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42608,7 +42643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [anon_sym_RPAREN2] = ACTIONS(335), + [anon_sym_RPAREN2] = ACTIONS(347), [aux_sym__val_number_decimal_token1] = ACTIONS(337), [aux_sym__val_number_decimal_token2] = ACTIONS(339), [aux_sym__val_number_decimal_token3] = ACTIONS(341), @@ -42630,73 +42665,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(31)] = { - [sym__block_body_statement_parenthesized] = STATE(3869), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym__parenthesized_body] = STATE(4880), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(4877), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), [sym_comment] = STATE(31), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), - [aux_sym__parenthesized_body_repeat2] = STATE(91), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42759,73 +42794,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(32)] = { - [sym__block_body_statement_parenthesized] = STATE(3869), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym__parenthesized_body] = STATE(5038), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(5034), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), [sym_comment] = STATE(32), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), - [aux_sym__parenthesized_body_repeat2] = STATE(91), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -42888,73 +42923,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(33)] = { - [sym__block_body_statement_parenthesized] = STATE(3869), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym__parenthesized_body] = STATE(5156), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(5145), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), [sym_comment] = STATE(33), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), - [aux_sym__parenthesized_body_repeat2] = STATE(91), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -43017,73 +43052,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(34)] = { - [sym__block_body_statement_parenthesized] = STATE(3869), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym__parenthesized_body] = STATE(5260), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(5255), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), [sym_comment] = STATE(34), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), - [aux_sym__parenthesized_body_repeat2] = STATE(91), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -43146,201 +43181,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(35)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), - [sym_stmt_let] = STATE(4307), - [sym_stmt_mut] = STATE(4307), - [sym_stmt_const] = STATE(4307), - [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), - [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(5102), - [sym_cmd_identifier] = STATE(2712), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), - [sym_comment] = STATE(35), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [sym__newline] = ACTIONS(153), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(369), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(36)] = { - [sym__block_body_statement_parenthesized] = STATE(3869), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym__parenthesized_body] = STATE(5100), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(5034), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), - [sym_comment] = STATE(36), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), - [aux_sym__parenthesized_body_repeat2] = STATE(91), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(35), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -43372,7 +43279,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(371), + [anon_sym_RPAREN] = ACTIONS(369), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -43401,202 +43308,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(37)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), - [sym_stmt_let] = STATE(4307), - [sym_stmt_mut] = STATE(4307), - [sym_stmt_const] = STATE(4307), - [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), - [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(4860), - [sym_cmd_identifier] = STATE(2712), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), - [sym_comment] = STATE(37), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [sym__newline] = ACTIONS(153), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(373), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(38)] = { - [sym__block_body_statement_parenthesized] = STATE(3869), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym__parenthesized_body] = STATE(4837), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [STATE(36)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(4991), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), - [sym_comment] = STATE(38), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), - [aux_sym__parenthesized_body_repeat2] = STATE(91), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(36), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -43628,7 +43407,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(375), + [anon_sym_RPAREN] = ACTIONS(371), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -43657,79 +43436,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(39)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), - [sym_stmt_let] = STATE(4307), - [sym_stmt_mut] = STATE(4307), - [sym_stmt_const] = STATE(4307), - [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), - [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(4842), - [sym_cmd_identifier] = STATE(2712), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), - [sym_comment] = STATE(39), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [STATE(37)] = { + [sym__block_body_statement] = STATE(4366), + [sym__declaration] = STATE(4632), + [sym_decl_alias] = STATE(4437), + [sym_stmt_let] = STATE(4461), + [sym_stmt_mut] = STATE(4461), + [sym_stmt_const] = STATE(4461), + [sym_assignment] = STATE(4461), + [sym__mutable_assignment_pattern] = STATE(4511), + [sym__statement] = STATE(4632), + [sym_pipeline] = STATE(4461), + [sym__block_body] = STATE(5232), + [sym_cmd_identifier] = STATE(2923), + [sym_attribute_list] = STATE(4544), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4437), + [sym_decl_export] = STATE(4437), + [sym_decl_extern] = STATE(4437), + [sym_decl_module] = STATE(4437), + [sym_decl_use] = STATE(4437), + [sym__ctrl_statement] = STATE(4461), + [sym__ctrl_expression] = STATE(3323), + [sym_ctrl_for] = STATE(4552), + [sym_ctrl_loop] = STATE(4552), + [sym_ctrl_while] = STATE(4552), + [sym_ctrl_if] = STATE(3369), + [sym_ctrl_match] = STATE(3369), + [sym_ctrl_try] = STATE(3369), + [sym_pipe_element] = STATE(3107), + [sym_where_command] = STATE(3323), + [sym__expression] = STATE(2264), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1273), + [sym__expr_binary_expression] = STATE(2226), + [sym_expr_parenthesized] = STATE(950), + [sym_val_range] = STATE(1273), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1311), + [sym_val_variable] = STATE(444), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3323), + [sym_comment] = STATE(37), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(81), + [aux_sym__block_body_repeat2] = STATE(85), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(293), + [ts_builtin_sym_end] = ACTIONS(373), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(21), + [anon_sym_use] = ACTIONS(23), + [anon_sym_export_DASHenv] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(27), + [anon_sym_module] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_loop] = ACTIONS(33), + [anon_sym_while] = ACTIONS(35), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(43), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [sym__newline] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(55), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(63), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(38)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(5235), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(38), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -43739,9 +43646,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -43756,19 +43663,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(375), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(377), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -43781,78 +43688,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(40)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [STATE(39)] = { + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(4896), - [sym_cmd_identifier] = STATE(2712), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), + [sym__block_body] = STATE(4842), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), - [sym_comment] = STATE(40), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(39), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -43887,7 +43794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(379), + [anon_sym_RBRACE] = ACTIONS(377), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -43913,74 +43820,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(41)] = { - [sym__block_body_statement_parenthesized] = STATE(3869), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym__parenthesized_body] = STATE(4901), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [STATE(40)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(4848), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), - [sym_comment] = STATE(41), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), - [aux_sym__parenthesized_body_repeat2] = STATE(91), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(40), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -44012,7 +43919,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(381), + [anon_sym_RPAREN] = ACTIONS(379), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -44041,74 +43948,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(42)] = { - [sym__block_body_statement_parenthesized] = STATE(3869), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym__parenthesized_body] = STATE(5071), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [STATE(41)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(5260), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), - [sym_comment] = STATE(42), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), - [aux_sym__parenthesized_body_repeat2] = STATE(91), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(41), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -44140,7 +44047,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(381), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -44169,74 +44076,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(43)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [STATE(42)] = { + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(5067), - [sym_cmd_identifier] = STATE(2712), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), + [sym__block_body] = STATE(4893), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), - [sym_comment] = STATE(43), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(42), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -44271,7 +44178,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(385), + [anon_sym_RBRACE] = ACTIONS(383), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -44297,74 +44204,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(44)] = { - [sym__block_body_statement_parenthesized] = STATE(3869), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym__parenthesized_body] = STATE(5023), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [STATE(43)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(4895), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), - [sym_comment] = STATE(44), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), - [aux_sym__parenthesized_body_repeat2] = STATE(91), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(43), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -44396,7 +44303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(385), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -44425,79 +44332,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(44)] = { + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5038), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(44), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(253), + [anon_sym_use] = ACTIONS(255), + [anon_sym_export_DASHenv] = ACTIONS(257), + [anon_sym_extern] = ACTIONS(259), + [anon_sym_module] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_loop] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, [STATE(45)] = { - [sym__block_body_statement_parenthesized] = STATE(3869), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym__parenthesized_body] = STATE(5038), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5091), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(45), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), - [aux_sym__parenthesized_body_repeat2] = STATE(91), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -44507,9 +44542,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -44524,19 +44559,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(389), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(389), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -44549,78 +44584,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(46)] = { - [sym__block_body_statement_parenthesized] = STATE(3869), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym__parenthesized_body] = STATE(4991), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(5222), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), [sym_comment] = STATE(46), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), - [aux_sym__parenthesized_body_repeat2] = STATE(91), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -44682,78 +44717,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(47)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), - [sym_stmt_let] = STATE(4307), - [sym_stmt_mut] = STATE(4307), - [sym_stmt_const] = STATE(4307), - [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), - [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(5046), - [sym_cmd_identifier] = STATE(2712), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(5099), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), [sym_comment] = STATE(47), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -44763,9 +44798,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -44780,19 +44815,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(393), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(393), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -44805,78 +44840,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(48)] = { - [sym__block_body_statement_parenthesized] = STATE(3869), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym__parenthesized_body] = STATE(5052), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(4979), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), [sym_comment] = STATE(48), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), - [aux_sym__parenthesized_body_repeat2] = STATE(91), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -44938,73 +44973,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(49)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(4926), - [sym_cmd_identifier] = STATE(2712), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), + [sym__block_body] = STATE(5041), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(49), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -45066,73 +45101,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(50)] = { - [sym__block_body_statement_parenthesized] = STATE(3869), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym__parenthesized_body] = STATE(4848), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(5044), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), [sym_comment] = STATE(50), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), - [aux_sym__parenthesized_body_repeat2] = STATE(91), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -45194,73 +45229,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(51)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(4947), - [sym_cmd_identifier] = STATE(2712), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), + [sym__block_body] = STATE(4892), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(51), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -45322,78 +45357,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(52)] = { - [sym__block_body_statement_parenthesized] = STATE(3869), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym__parenthesized_body] = STATE(4948), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(4935), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(52), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), - [aux_sym__parenthesized_body_repeat2] = STATE(91), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -45403,9 +45438,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -45420,19 +45455,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(403), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(403), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -45445,83 +45480,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(53)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), - [sym_stmt_let] = STATE(4307), - [sym_stmt_mut] = STATE(4307), - [sym_stmt_const] = STATE(4307), - [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), - [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(4978), - [sym_cmd_identifier] = STATE(2712), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(4939), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), [sym_comment] = STATE(53), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -45531,9 +45566,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -45548,19 +45583,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(405), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(405), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -45573,78 +45608,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(54)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(5138), - [sym_cmd_identifier] = STATE(2712), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), + [sym__block_body] = STATE(4971), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(54), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -45706,78 +45741,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(55)] = { - [sym__block_body_statement_parenthesized] = STATE(3869), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym__parenthesized_body] = STATE(5091), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5250), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(55), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), - [aux_sym__parenthesized_body_repeat2] = STATE(91), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -45787,9 +45822,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -45804,19 +45839,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(409), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(409), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -45829,83 +45864,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(56)] = { - [sym__block_body_statement_parenthesized] = STATE(3869), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym__parenthesized_body] = STATE(5022), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5130), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(56), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), - [aux_sym__parenthesized_body_repeat2] = STATE(91), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -45915,9 +45950,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -45932,19 +45967,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(411), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(411), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -45957,83 +45992,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(57)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), - [sym_stmt_let] = STATE(4307), - [sym_stmt_mut] = STATE(4307), - [sym_stmt_const] = STATE(4307), - [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), - [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(5060), - [sym_cmd_identifier] = STATE(2712), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(5086), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), [sym_comment] = STATE(57), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -46043,9 +46078,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -46060,19 +46095,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(413), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(413), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -46085,78 +46120,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(58)] = { - [sym__block_body_statement_parenthesized] = STATE(3869), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym__parenthesized_body] = STATE(5061), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(5019), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), [sym_comment] = STATE(58), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), - [aux_sym__parenthesized_body_repeat2] = STATE(91), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -46218,73 +46253,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(59)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(5066), - [sym_cmd_identifier] = STATE(2712), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), + [sym__block_body] = STATE(5057), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(59), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -46346,201 +46381,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(60)] = { - [sym__block_body_statement] = STATE(4366), - [sym__declaration] = STATE(4632), - [sym_decl_alias] = STATE(4441), - [sym_stmt_let] = STATE(4465), - [sym_stmt_mut] = STATE(4465), - [sym_stmt_const] = STATE(4465), - [sym_assignment] = STATE(4465), - [sym__mutable_assignment_pattern] = STATE(4508), - [sym__statement] = STATE(4632), - [sym_pipeline] = STATE(4465), - [sym__block_body] = STATE(5253), - [sym_cmd_identifier] = STATE(2951), - [sym_attribute_list] = STATE(4536), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4441), - [sym_decl_export] = STATE(4441), - [sym_decl_extern] = STATE(4441), - [sym_decl_module] = STATE(4441), - [sym_decl_use] = STATE(4441), - [sym__ctrl_statement] = STATE(4465), - [sym__ctrl_expression] = STATE(3333), - [sym_ctrl_for] = STATE(4546), - [sym_ctrl_loop] = STATE(4546), - [sym_ctrl_while] = STATE(4546), - [sym_ctrl_if] = STATE(3365), - [sym_ctrl_match] = STATE(3365), - [sym_ctrl_try] = STATE(3365), - [sym_pipe_element] = STATE(3098), - [sym_where_command] = STATE(3333), - [sym__expression] = STATE(2260), - [sym_expr_unary] = STATE(1276), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1276), - [sym__expr_binary_expression] = STATE(2222), - [sym_expr_parenthesized] = STATE(919), - [sym_val_range] = STATE(1276), - [sym__value] = STATE(1276), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(1294), - [sym_val_variable] = STATE(440), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(120), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3333), - [sym_comment] = STATE(60), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym__block_body_repeat1] = STATE(80), - [aux_sym__block_body_repeat2] = STATE(84), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(419), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(21), - [anon_sym_use] = ACTIONS(23), - [anon_sym_export_DASHenv] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_module] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_loop] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(43), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [sym__newline] = ACTIONS(55), - [anon_sym_SEMI] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(63), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(61)] = { - [sym__block_body_statement_parenthesized] = STATE(3869), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym__parenthesized_body] = STATE(5156), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(5058), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), - [sym_comment] = STATE(61), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), - [aux_sym__parenthesized_body_repeat2] = STATE(91), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(60), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -46572,7 +46479,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(421), + [anon_sym_RPAREN] = ACTIONS(419), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -46601,74 +46508,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(62)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [STATE(61)] = { + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(5124), - [sym_cmd_identifier] = STATE(2712), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), + [sym__block_body] = STATE(5063), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), - [sym_comment] = STATE(62), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(61), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -46703,7 +46610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(423), + [anon_sym_RBRACE] = ACTIONS(421), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -46729,74 +46636,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(63)] = { - [sym__block_body_statement_parenthesized] = STATE(3869), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym__parenthesized_body] = STATE(5125), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [STATE(62)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(5145), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), - [sym_comment] = STATE(63), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), - [aux_sym__parenthesized_body_repeat2] = STATE(91), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(62), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -46828,7 +46735,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(425), + [anon_sym_RPAREN] = ACTIONS(423), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -46857,202 +46764,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(64)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), - [sym_stmt_let] = STATE(4307), - [sym_stmt_mut] = STATE(4307), - [sym_stmt_const] = STATE(4307), - [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), - [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(5131), - [sym_cmd_identifier] = STATE(2712), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), - [sym_comment] = STATE(64), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(253), - [anon_sym_use] = ACTIONS(255), - [anon_sym_export_DASHenv] = ACTIONS(257), - [anon_sym_extern] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_loop] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [sym__newline] = ACTIONS(153), - [anon_sym_SEMI] = ACTIONS(153), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(213), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(65)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [STATE(63)] = { + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(5236), - [sym_cmd_identifier] = STATE(2712), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), + [sym__block_body] = STATE(5121), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), - [sym_comment] = STATE(65), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(63), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -47087,7 +46866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(429), + [anon_sym_RBRACE] = ACTIONS(425), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -47113,74 +46892,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(66)] = { - [sym__block_body_statement_parenthesized] = STATE(3869), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym__parenthesized_body] = STATE(5237), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [STATE(64)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(5122), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), - [sym_comment] = STATE(66), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), - [aux_sym__parenthesized_body_repeat2] = STATE(91), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(64), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -47212,7 +46991,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(427), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -47241,74 +47020,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(67)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [STATE(65)] = { + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(5242), - [sym_cmd_identifier] = STATE(2712), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), + [sym__block_body] = STATE(5127), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), - [sym_comment] = STATE(67), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(65), [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(79), - [aux_sym__block_body_repeat2] = STATE(83), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(241), [anon_sym_alias] = ACTIONS(243), [anon_sym_let] = ACTIONS(245), @@ -47343,7 +47122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(433), + [anon_sym_RBRACE] = ACTIONS(429), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), @@ -47369,79 +47148,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(68)] = { - [sym__block_body_statement_parenthesized] = STATE(3869), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym__parenthesized_body] = STATE(4839), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), + [STATE(66)] = { + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5233), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), - [sym_comment] = STATE(68), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), - [aux_sym__parenthesized_body_repeat2] = STATE(91), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(66), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -47451,9 +47230,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -47468,19 +47247,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(435), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(431), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -47493,78 +47272,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(69)] = { - [sym__block_body_statement_parenthesized] = STATE(3869), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym__parenthesized_body] = STATE(4859), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [STATE(67)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(5234), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), - [sym_comment] = STATE(69), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), - [aux_sym__parenthesized_body_repeat2] = STATE(91), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(67), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -47596,7 +47375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(437), + [anon_sym_RPAREN] = ACTIONS(433), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -47625,79 +47404,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(70)] = { - [sym__block_body_statement_parenthesized] = STATE(3869), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym__parenthesized_body] = STATE(4874), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), + [STATE(68)] = { + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym__block_body] = STATE(5240), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), - [sym_comment] = STATE(70), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), - [aux_sym__parenthesized_body_repeat2] = STATE(91), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(68), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(76), + [aux_sym__block_body_repeat2] = STATE(90), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -47707,9 +47486,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -47724,19 +47503,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(435), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -47749,78 +47528,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(71)] = { - [sym__block_body_statement_parenthesized] = STATE(3869), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym__parenthesized_body] = STATE(4888), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [STATE(69)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(4838), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), - [sym_comment] = STATE(71), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), - [aux_sym__parenthesized_body_repeat2] = STATE(91), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(69), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -47852,7 +47631,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(441), + [anon_sym_RPAREN] = ACTIONS(437), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -47881,74 +47660,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(72)] = { - [sym__block_body_statement_parenthesized] = STATE(3869), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym__parenthesized_body] = STATE(4992), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [STATE(70)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(4858), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), - [sym_comment] = STATE(72), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), - [aux_sym__parenthesized_body_repeat2] = STATE(91), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(70), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -47980,7 +47759,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(443), + [anon_sym_RPAREN] = ACTIONS(439), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -48009,74 +47788,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(73)] = { - [sym__block_body_statement_parenthesized] = STATE(3869), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym__parenthesized_body] = STATE(4846), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [STATE(71)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(4873), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), - [sym_comment] = STATE(73), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), - [aux_sym__parenthesized_body_repeat2] = STATE(91), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(71), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -48108,7 +47887,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(445), + [anon_sym_RPAREN] = ACTIONS(441), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -48137,78 +47916,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(74)] = { - [sym__block_body_statement] = STATE(4084), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), - [sym_stmt_let] = STATE(4307), - [sym_stmt_mut] = STATE(4307), - [sym_stmt_const] = STATE(4307), - [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), - [sym_pipeline] = STATE(4307), - [sym_cmd_identifier] = STATE(2712), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(447), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [STATE(72)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(4887), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), - [sym_comment] = STATE(74), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(1350), - [aux_sym__block_body_repeat2] = STATE(89), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(285), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(72), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -48218,9 +47998,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -48235,12 +48015,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(459), + [anon_sym_RPAREN] = ACTIONS(443), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), @@ -48260,77 +48040,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(75)] = { - [sym__block_body_statement_parenthesized] = STATE(3844), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [STATE(73)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(4834), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), - [sym_comment] = STATE(75), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(1350), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), - [aux_sym__parenthesized_body_repeat2] = STATE(85), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(73), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -48362,7 +48143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(461), + [anon_sym_RPAREN] = ACTIONS(445), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -48391,74 +48172,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(76)] = { - [sym__block_body_statement_parenthesized] = STATE(3869), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym__parenthesized_body] = STATE(5002), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [STATE(74)] = { + [sym__block_body_statement_parenthesized] = STATE(3803), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), - [sym_comment] = STATE(76), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), - [aux_sym__parenthesized_body_repeat2] = STATE(91), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(74), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(1349), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(82), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -48490,6 +48270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(447), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -48518,79 +48299,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(77)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [STATE(75)] = { + [sym__block_body_statement] = STATE(4078), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(4881), - [sym_cmd_identifier] = STATE(2712), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(447), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(452), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), - [sym_comment] = STATE(77), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(285), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(75), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym__block_body_repeat1] = STATE(1349), + [aux_sym__block_body_repeat2] = STATE(86), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(276), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -48600,7 +48380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(459), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -48617,6 +48397,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(461), [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), @@ -48645,79 +48426,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(78)] = { - [sym__block_body_statement] = STATE(3963), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [STATE(76)] = { + [sym__block_body_statement] = STATE(4078), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym__block_body] = STATE(4891), - [sym_cmd_identifier] = STATE(2712), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(447), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), - [sym_comment] = STATE(78), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(74), - [aux_sym__block_body_repeat2] = STATE(88), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(285), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(76), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat1] = STATE(1349), + [aux_sym__block_body_repeat2] = STATE(89), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -48727,7 +48507,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -48747,15 +48527,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(461), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -48772,78 +48553,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(79)] = { - [sym__block_body_statement] = STATE(4084), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [STATE(77)] = { + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym_cmd_identifier] = STATE(2712), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), + [sym__block_body] = STATE(4888), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), - [sym_comment] = STATE(79), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat1] = STATE(1350), - [aux_sym__block_body_repeat2] = STATE(82), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(452), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(77), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(276), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -48853,7 +48635,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(459), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -48873,16 +48655,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(213), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_RBRACE] = ACTIONS(459), [anon_sym_DOT_DOT] = ACTIONS(169), [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -48899,201 +48680,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(80)] = { - [sym__block_body_statement] = STATE(4196), - [sym__declaration] = STATE(4632), - [sym_decl_alias] = STATE(4441), - [sym_stmt_let] = STATE(4465), - [sym_stmt_mut] = STATE(4465), - [sym_stmt_const] = STATE(4465), - [sym_assignment] = STATE(4465), - [sym__mutable_assignment_pattern] = STATE(4508), - [sym__statement] = STATE(4632), - [sym_pipeline] = STATE(4465), - [sym_cmd_identifier] = STATE(2951), - [sym_attribute_list] = STATE(4536), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4441), - [sym_decl_export] = STATE(4441), - [sym_decl_extern] = STATE(4441), - [sym_decl_module] = STATE(4441), - [sym_decl_use] = STATE(4441), - [sym__ctrl_statement] = STATE(4465), - [sym__ctrl_expression] = STATE(3333), - [sym_ctrl_for] = STATE(4546), - [sym_ctrl_loop] = STATE(4546), - [sym_ctrl_while] = STATE(4546), - [sym_ctrl_if] = STATE(3365), - [sym_ctrl_match] = STATE(3365), - [sym_ctrl_try] = STATE(3365), - [sym_pipe_element] = STATE(3098), - [sym_where_command] = STATE(3333), - [sym__expression] = STATE(2260), - [sym_expr_unary] = STATE(1276), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1276), - [sym__expr_binary_expression] = STATE(2222), - [sym_expr_parenthesized] = STATE(919), - [sym_val_range] = STATE(1276), - [sym__value] = STATE(1276), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(1294), - [sym_val_variable] = STATE(440), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(120), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3333), - [sym_comment] = STATE(80), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym__block_body_repeat1] = STATE(1357), - [aux_sym__block_body_repeat2] = STATE(87), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(459), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(21), - [anon_sym_use] = ACTIONS(23), - [anon_sym_export_DASHenv] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(27), - [anon_sym_module] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_loop] = ACTIONS(33), - [anon_sym_while] = ACTIONS(35), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(43), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [sym__newline] = ACTIONS(55), - [anon_sym_SEMI] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(63), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(81)] = { - [sym__block_body_statement_parenthesized] = STATE(3869), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym__parenthesized_body] = STATE(4915), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [STATE(78)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(4864), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), - [sym_comment] = STATE(81), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym__block_body_repeat1] = STATE(75), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), - [aux_sym__parenthesized_body_repeat2] = STATE(91), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(78), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -49153,77 +48807,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(82)] = { - [sym__block_body_statement] = STATE(3992), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [STATE(79)] = { + [sym__block_body_statement] = STATE(4082), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym_cmd_identifier] = STATE(2712), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), + [sym__block_body] = STATE(4875), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), - [sym_comment] = STATE(82), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat2] = STATE(90), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(452), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(79), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(276), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -49233,7 +48889,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(459), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -49245,6 +48901,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(283), [aux_sym_cmd_identifier_token4] = ACTIONS(283), [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), @@ -49256,10 +48914,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -49276,77 +48934,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(83)] = { - [sym__block_body_statement] = STATE(4084), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), - [sym_stmt_let] = STATE(4307), - [sym_stmt_mut] = STATE(4307), - [sym_stmt_const] = STATE(4307), - [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), - [sym_pipeline] = STATE(4307), - [sym_cmd_identifier] = STATE(2712), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(451), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), - [sym_comment] = STATE(83), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym__block_body_repeat2] = STATE(90), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(241), - [anon_sym_alias] = ACTIONS(243), - [anon_sym_let] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(247), - [anon_sym_const] = ACTIONS(249), + [STATE(80)] = { + [sym__block_body_statement_parenthesized] = STATE(3799), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym__parenthesized_body] = STATE(4912), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(80), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym__block_body_repeat1] = STATE(74), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(87), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -49356,9 +49016,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -49368,6 +49028,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(283), [aux_sym_cmd_identifier_token4] = ACTIONS(283), [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [sym__newline] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), @@ -49375,14 +49037,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -49395,76 +49057,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(84)] = { - [sym__block_body_statement] = STATE(4196), + [STATE(81)] = { + [sym__block_body_statement] = STATE(4195), [sym__declaration] = STATE(4632), - [sym_decl_alias] = STATE(4441), - [sym_stmt_let] = STATE(4465), - [sym_stmt_mut] = STATE(4465), - [sym_stmt_const] = STATE(4465), - [sym_assignment] = STATE(4465), - [sym__mutable_assignment_pattern] = STATE(4508), + [sym_decl_alias] = STATE(4437), + [sym_stmt_let] = STATE(4461), + [sym_stmt_mut] = STATE(4461), + [sym_stmt_const] = STATE(4461), + [sym_assignment] = STATE(4461), + [sym__mutable_assignment_pattern] = STATE(4511), [sym__statement] = STATE(4632), - [sym_pipeline] = STATE(4465), - [sym_cmd_identifier] = STATE(2951), - [sym_attribute_list] = STATE(4536), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4441), - [sym_decl_export] = STATE(4441), - [sym_decl_extern] = STATE(4441), - [sym_decl_module] = STATE(4441), - [sym_decl_use] = STATE(4441), - [sym__ctrl_statement] = STATE(4465), - [sym__ctrl_expression] = STATE(3333), - [sym_ctrl_for] = STATE(4546), - [sym_ctrl_loop] = STATE(4546), - [sym_ctrl_while] = STATE(4546), - [sym_ctrl_if] = STATE(3365), - [sym_ctrl_match] = STATE(3365), - [sym_ctrl_try] = STATE(3365), - [sym_pipe_element] = STATE(3098), - [sym_where_command] = STATE(3333), - [sym__expression] = STATE(2260), - [sym_expr_unary] = STATE(1276), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1276), - [sym__expr_binary_expression] = STATE(2222), - [sym_expr_parenthesized] = STATE(919), - [sym_val_range] = STATE(1276), - [sym__value] = STATE(1276), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(1294), - [sym_val_variable] = STATE(440), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(120), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3333), - [sym_comment] = STATE(84), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym__block_body_repeat2] = STATE(90), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(284), + [sym_pipeline] = STATE(4461), + [sym_cmd_identifier] = STATE(2923), + [sym_attribute_list] = STATE(4544), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4437), + [sym_decl_export] = STATE(4437), + [sym_decl_extern] = STATE(4437), + [sym_decl_module] = STATE(4437), + [sym_decl_use] = STATE(4437), + [sym__ctrl_statement] = STATE(4461), + [sym__ctrl_expression] = STATE(3323), + [sym_ctrl_for] = STATE(4552), + [sym_ctrl_loop] = STATE(4552), + [sym_ctrl_while] = STATE(4552), + [sym_ctrl_if] = STATE(3369), + [sym_ctrl_match] = STATE(3369), + [sym_ctrl_try] = STATE(3369), + [sym_pipe_element] = STATE(3107), + [sym_where_command] = STATE(3323), + [sym__expression] = STATE(2264), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1273), + [sym__expr_binary_expression] = STATE(2226), + [sym_expr_parenthesized] = STATE(950), + [sym_val_range] = STATE(1273), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1311), + [sym_val_variable] = STATE(444), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3323), + [sym_comment] = STATE(81), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(1360), + [aux_sym__block_body_repeat2] = STATE(91), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(293), + [ts_builtin_sym_end] = ACTIONS(461), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -49491,6 +49155,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(51), [aux_sym_cmd_identifier_token4] = ACTIONS(51), [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [sym__newline] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(55), [anon_sym_AT] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), @@ -49522,72 +49188,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(85)] = { - [sym__block_body_statement_parenthesized] = STATE(3913), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [STATE(82)] = { + [sym__block_body_statement_parenthesized] = STATE(3875), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), - [sym_comment] = STATE(85), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), - [aux_sym__parenthesized_body_repeat2] = STATE(86), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(82), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(317), [anon_sym_alias] = ACTIONS(319), [anon_sym_let] = ACTIONS(321), @@ -49645,72 +49311,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(86)] = { - [sym__block_body_statement_parenthesized] = STATE(4122), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(466), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [STATE(83)] = { + [sym__block_body_statement] = STATE(4078), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(452), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(83), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym__block_body_repeat2] = STATE(84), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(276), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(253), + [anon_sym_use] = ACTIONS(255), + [anon_sym_export_DASHenv] = ACTIONS(257), + [anon_sym_extern] = ACTIONS(259), + [anon_sym_module] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_loop] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(459), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(84)] = { + [sym__block_body_statement] = STATE(4533), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(473), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(139), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), - [sym_comment] = STATE(86), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), - [aux_sym__parenthesized_body_repeat2] = STATE(86), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(84), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym__block_body_repeat2] = STATE(84), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(283), [anon_sym_export] = ACTIONS(463), [anon_sym_alias] = ACTIONS(466), [anon_sym_let] = ACTIONS(469), @@ -49768,72 +49557,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(598), }, - [STATE(87)] = { - [sym__block_body_statement] = STATE(4387), + [STATE(85)] = { + [sym__block_body_statement] = STATE(4195), [sym__declaration] = STATE(4632), - [sym_decl_alias] = STATE(4441), - [sym_stmt_let] = STATE(4465), - [sym_stmt_mut] = STATE(4465), - [sym_stmt_const] = STATE(4465), - [sym_assignment] = STATE(4465), - [sym__mutable_assignment_pattern] = STATE(4508), + [sym_decl_alias] = STATE(4437), + [sym_stmt_let] = STATE(4461), + [sym_stmt_mut] = STATE(4461), + [sym_stmt_const] = STATE(4461), + [sym_assignment] = STATE(4461), + [sym__mutable_assignment_pattern] = STATE(4511), [sym__statement] = STATE(4632), - [sym_pipeline] = STATE(4465), - [sym_cmd_identifier] = STATE(2951), - [sym_attribute_list] = STATE(4536), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4441), - [sym_decl_export] = STATE(4441), - [sym_decl_extern] = STATE(4441), - [sym_decl_module] = STATE(4441), - [sym_decl_use] = STATE(4441), - [sym__ctrl_statement] = STATE(4465), - [sym__ctrl_expression] = STATE(3333), - [sym_ctrl_for] = STATE(4546), - [sym_ctrl_loop] = STATE(4546), - [sym_ctrl_while] = STATE(4546), - [sym_ctrl_if] = STATE(3365), - [sym_ctrl_match] = STATE(3365), - [sym_ctrl_try] = STATE(3365), - [sym_pipe_element] = STATE(3098), - [sym_where_command] = STATE(3333), - [sym__expression] = STATE(2260), - [sym_expr_unary] = STATE(1276), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1276), - [sym__expr_binary_expression] = STATE(2222), - [sym_expr_parenthesized] = STATE(919), - [sym_val_range] = STATE(1276), - [sym__value] = STATE(1276), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(1294), - [sym_val_variable] = STATE(440), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(120), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3333), - [sym_comment] = STATE(87), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym__block_body_repeat2] = STATE(90), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(284), + [sym_pipeline] = STATE(4461), + [sym_cmd_identifier] = STATE(2923), + [sym_attribute_list] = STATE(4544), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4437), + [sym_decl_export] = STATE(4437), + [sym_decl_extern] = STATE(4437), + [sym_decl_module] = STATE(4437), + [sym_decl_use] = STATE(4437), + [sym__ctrl_statement] = STATE(4461), + [sym__ctrl_expression] = STATE(3323), + [sym_ctrl_for] = STATE(4552), + [sym_ctrl_loop] = STATE(4552), + [sym_ctrl_while] = STATE(4552), + [sym_ctrl_if] = STATE(3369), + [sym_ctrl_match] = STATE(3369), + [sym_ctrl_try] = STATE(3369), + [sym_pipe_element] = STATE(3107), + [sym_where_command] = STATE(3323), + [sym__expression] = STATE(2264), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1273), + [sym__expr_binary_expression] = STATE(2226), + [sym_expr_parenthesized] = STATE(950), + [sym_val_range] = STATE(1273), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1311), + [sym_val_variable] = STATE(444), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3323), + [sym_comment] = STATE(85), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat2] = STATE(84), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -49891,77 +49680,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(88)] = { - [sym__block_body_statement] = STATE(4084), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), + [STATE(86)] = { + [sym__block_body_statement] = STATE(4087), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), [sym_stmt_let] = STATE(4307), [sym_stmt_mut] = STATE(4307), [sym_stmt_const] = STATE(4307), [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), [sym_pipeline] = STATE(4307), - [sym_cmd_identifier] = STATE(2712), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(447), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(452), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), - [sym_comment] = STATE(88), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat2] = STATE(90), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(285), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(86), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym__block_body_repeat2] = STATE(84), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(276), + [anon_sym_export] = ACTIONS(449), + [anon_sym_alias] = ACTIONS(451), + [anon_sym_let] = ACTIONS(453), + [anon_sym_mut] = ACTIONS(455), + [anon_sym_const] = ACTIONS(457), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -49971,7 +49760,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(459), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -50014,77 +49803,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(89)] = { - [sym__block_body_statement] = STATE(3992), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), - [sym_stmt_let] = STATE(4307), - [sym_stmt_mut] = STATE(4307), - [sym_stmt_const] = STATE(4307), - [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), - [sym_pipeline] = STATE(4307), - [sym_cmd_identifier] = STATE(2712), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(447), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [STATE(87)] = { + [sym__block_body_statement_parenthesized] = STATE(3803), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(448), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), - [sym_comment] = STATE(89), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat2] = STATE(90), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(285), - [anon_sym_export] = ACTIONS(447), - [anon_sym_alias] = ACTIONS(449), - [anon_sym_let] = ACTIONS(451), - [anon_sym_mut] = ACTIONS(453), - [anon_sym_const] = ACTIONS(455), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(87), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), + [aux_sym__parenthesized_body_repeat2] = STATE(88), + [anon_sym_export] = ACTIONS(317), + [anon_sym_alias] = ACTIONS(319), + [anon_sym_let] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(323), + [anon_sym_const] = ACTIONS(325), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -50094,9 +49883,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -50113,7 +49902,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), @@ -50133,76 +49922,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(90)] = { - [sym__block_body_statement] = STATE(4574), - [sym__declaration] = STATE(4304), - [sym_decl_alias] = STATE(4305), - [sym_stmt_let] = STATE(4307), - [sym_stmt_mut] = STATE(4307), - [sym_stmt_const] = STATE(4307), - [sym_assignment] = STATE(4307), - [sym__mutable_assignment_pattern] = STATE(4308), - [sym__statement] = STATE(4304), - [sym_pipeline] = STATE(4307), - [sym_cmd_identifier] = STATE(2712), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4305), - [sym_decl_export] = STATE(4305), - [sym_decl_extern] = STATE(4305), - [sym_decl_module] = STATE(4305), - [sym_decl_use] = STATE(4305), - [sym__ctrl_statement] = STATE(4307), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(473), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [STATE(88)] = { + [sym__block_body_statement_parenthesized] = STATE(4122), + [sym__declaration_parenthesized] = STATE(4636), + [sym_decl_alias_parenthesized] = STATE(4641), + [sym_stmt_let_parenthesized] = STATE(4645), + [sym_stmt_mut_parenthesized] = STATE(4645), + [sym_stmt_const_parenthesized] = STATE(4645), + [sym_assignment_parenthesized] = STATE(4645), + [sym__mutable_assignment_pattern_parenthesized] = STATE(4646), + [sym__statement_parenthesized] = STATE(4636), + [sym_pipeline_parenthesized] = STATE(4645), + [sym_cmd_identifier] = STATE(2914), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4641), + [sym_decl_export] = STATE(4641), + [sym_decl_extern] = STATE(4641), + [sym_decl_module] = STATE(4641), + [sym_decl_use] = STATE(4641), + [sym__ctrl_statement] = STATE(4645), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(465), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(139), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), - [sym_comment] = STATE(90), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym__block_body_repeat2] = STATE(90), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_repeat2] = STATE(282), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(88), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(186), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(278), + [aux_sym__parenthesized_body_repeat2] = STATE(88), [anon_sym_export] = ACTIONS(601), [anon_sym_alias] = ACTIONS(604), [anon_sym_let] = ACTIONS(607), @@ -50260,77 +50049,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(736), }, - [STATE(91)] = { - [sym__block_body_statement_parenthesized] = STATE(3844), - [sym__declaration_parenthesized] = STATE(4645), - [sym_decl_alias_parenthesized] = STATE(4648), - [sym_stmt_let_parenthesized] = STATE(4649), - [sym_stmt_mut_parenthesized] = STATE(4649), - [sym_stmt_const_parenthesized] = STATE(4649), - [sym_assignment_parenthesized] = STATE(4649), - [sym__mutable_assignment_pattern_parenthesized] = STATE(4543), - [sym__statement_parenthesized] = STATE(4645), - [sym_pipeline_parenthesized] = STATE(4649), - [sym_cmd_identifier] = STATE(2950), - [sym_attribute_list] = STATE(4636), - [sym_attribute] = STATE(4756), - [sym_decl_def] = STATE(4648), - [sym_decl_export] = STATE(4648), - [sym_decl_extern] = STATE(4648), - [sym_decl_module] = STATE(4648), - [sym_decl_use] = STATE(4648), - [sym__ctrl_statement] = STATE(4649), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_for] = STATE(4310), - [sym_ctrl_loop] = STATE(4310), - [sym_ctrl_while] = STATE(4310), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), + [STATE(89)] = { + [sym__block_body_statement] = STATE(4087), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), [sym_val_variable] = STATE(439), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), - [sym_comment] = STATE(91), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_attribute_list_repeat1] = STATE(3873), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), - [aux_sym__parenthesized_body_repeat2] = STATE(86), - [anon_sym_export] = ACTIONS(317), - [anon_sym_alias] = ACTIONS(319), - [anon_sym_let] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(323), - [anon_sym_const] = ACTIONS(325), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(89), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat2] = STATE(84), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), [aux_sym_cmd_identifier_token1] = ACTIONS(251), [anon_sym_def] = ACTIONS(253), [anon_sym_use] = ACTIONS(255), @@ -50340,9 +50129,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(263), [anon_sym_loop] = ACTIONS(265), [anon_sym_while] = ACTIONS(267), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -50359,14 +50148,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -50379,10 +50168,256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(90)] = { + [sym__block_body_statement] = STATE(4078), + [sym__declaration] = STATE(4305), + [sym_decl_alias] = STATE(4306), + [sym_stmt_let] = STATE(4307), + [sym_stmt_mut] = STATE(4307), + [sym_stmt_const] = STATE(4307), + [sym_assignment] = STATE(4307), + [sym__mutable_assignment_pattern] = STATE(4309), + [sym__statement] = STATE(4305), + [sym_pipeline] = STATE(4307), + [sym_cmd_identifier] = STATE(2786), + [sym_attribute_list] = STATE(4639), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4306), + [sym_decl_export] = STATE(4306), + [sym_decl_extern] = STATE(4306), + [sym_decl_module] = STATE(4306), + [sym_decl_use] = STATE(4306), + [sym__ctrl_statement] = STATE(4307), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_for] = STATE(4312), + [sym_ctrl_loop] = STATE(4312), + [sym_ctrl_while] = STATE(4312), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(439), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(90), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym__block_body_repeat2] = STATE(84), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(288), + [anon_sym_export] = ACTIONS(241), + [anon_sym_alias] = ACTIONS(243), + [anon_sym_let] = ACTIONS(245), + [anon_sym_mut] = ACTIONS(247), + [anon_sym_const] = ACTIONS(249), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(253), + [anon_sym_use] = ACTIONS(255), + [anon_sym_export_DASHenv] = ACTIONS(257), + [anon_sym_extern] = ACTIONS(259), + [anon_sym_module] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_loop] = ACTIONS(265), + [anon_sym_while] = ACTIONS(267), + [anon_sym_if] = ACTIONS(269), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(213), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(91)] = { + [sym__block_body_statement] = STATE(4385), + [sym__declaration] = STATE(4632), + [sym_decl_alias] = STATE(4437), + [sym_stmt_let] = STATE(4461), + [sym_stmt_mut] = STATE(4461), + [sym_stmt_const] = STATE(4461), + [sym_assignment] = STATE(4461), + [sym__mutable_assignment_pattern] = STATE(4511), + [sym__statement] = STATE(4632), + [sym_pipeline] = STATE(4461), + [sym_cmd_identifier] = STATE(2923), + [sym_attribute_list] = STATE(4544), + [sym_attribute] = STATE(4830), + [sym_decl_def] = STATE(4437), + [sym_decl_export] = STATE(4437), + [sym_decl_extern] = STATE(4437), + [sym_decl_module] = STATE(4437), + [sym_decl_use] = STATE(4437), + [sym__ctrl_statement] = STATE(4461), + [sym__ctrl_expression] = STATE(3323), + [sym_ctrl_for] = STATE(4552), + [sym_ctrl_loop] = STATE(4552), + [sym_ctrl_while] = STATE(4552), + [sym_ctrl_if] = STATE(3369), + [sym_ctrl_match] = STATE(3369), + [sym_ctrl_try] = STATE(3369), + [sym_pipe_element] = STATE(3107), + [sym_where_command] = STATE(3323), + [sym__expression] = STATE(2264), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1273), + [sym__expr_binary_expression] = STATE(2226), + [sym_expr_parenthesized] = STATE(950), + [sym_val_range] = STATE(1273), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1311), + [sym_val_variable] = STATE(444), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3323), + [sym_comment] = STATE(91), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat2] = STATE(84), + [aux_sym_attribute_list_repeat1] = STATE(3802), + [aux_sym_pipe_element_repeat2] = STATE(293), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(21), + [anon_sym_use] = ACTIONS(23), + [anon_sym_export_DASHenv] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(27), + [anon_sym_module] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_loop] = ACTIONS(33), + [anon_sym_while] = ACTIONS(35), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(43), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [anon_sym_AT] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(63), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, [STATE(92)] = { [sym_comment] = STATE(92), [anon_sym_in] = ACTIONS(739), @@ -50603,7 +50638,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(94)] = { [sym_comment] = STATE(94), - [ts_builtin_sym_end] = ACTIONS(741), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token5] = ACTIONS(759), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_COLON2] = ACTIONS(755), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(95)] = { + [sym_comment] = STATE(95), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -50653,6 +50795,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(739), [anon_sym_STAR2] = ACTIONS(739), [anon_sym_and2] = ACTIONS(739), [anon_sym_xor2] = ACTIONS(739), @@ -50685,12 +50828,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(755), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(757), + [aux_sym__immediate_decimal_token5] = ACTIONS(745), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), + [anon_sym_COLON2] = ACTIONS(739), [anon_sym_err_GT] = ACTIONS(739), [anon_sym_out_GT] = ACTIONS(739), [anon_sym_e_GT] = ACTIONS(739), @@ -50709,114 +50852,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(95)] = { - [sym_comment] = STATE(95), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(759), - [aux_sym__immediate_decimal_token5] = ACTIONS(761), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(747), - [anon_sym_out_GT_GT] = ACTIONS(747), - [anon_sym_e_GT_GT] = ACTIONS(747), - [anon_sym_o_GT_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(96)] = { [sym_comment] = STATE(96), [anon_sym_in] = ACTIONS(739), @@ -50866,9 +50901,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_RPAREN] = ACTIONS(739), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(739), [anon_sym_STAR2] = ACTIONS(739), [anon_sym_and2] = ACTIONS(739), [anon_sym_xor2] = ACTIONS(739), @@ -50901,10 +50936,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(763), + [anon_sym_DOT] = ACTIONS(761), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(763), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -50927,115 +50962,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(97)] = { [sym_comment] = STATE(97), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_RBRACE] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(745), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_COLON2] = ACTIONS(739), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(739), - [anon_sym_out_GT_GT] = ACTIONS(739), - [anon_sym_e_GT_GT] = ACTIONS(739), - [anon_sym_o_GT_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), + [ts_builtin_sym_end] = ACTIONS(749), + [anon_sym_in] = ACTIONS(747), + [anon_sym_STAR_STAR] = ACTIONS(749), + [anon_sym_PLUS_PLUS] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(747), + [anon_sym_SLASH] = ACTIONS(747), + [anon_sym_mod] = ACTIONS(749), + [anon_sym_SLASH_SLASH] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(747), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_bit_DASHshl] = ACTIONS(749), + [anon_sym_bit_DASHshr] = ACTIONS(749), + [anon_sym_EQ_TILDE] = ACTIONS(749), + [anon_sym_BANG_TILDE] = ACTIONS(749), + [anon_sym_like] = ACTIONS(749), + [anon_sym_not_DASHlike] = ACTIONS(749), + [anon_sym_bit_DASHand] = ACTIONS(749), + [anon_sym_bit_DASHxor] = ACTIONS(749), + [anon_sym_bit_DASHor] = ACTIONS(749), + [anon_sym_and] = ACTIONS(749), + [anon_sym_xor] = ACTIONS(749), + [anon_sym_or] = ACTIONS(749), + [anon_sym_in2] = ACTIONS(749), + [anon_sym_not_DASHin] = ACTIONS(749), + [anon_sym_has] = ACTIONS(749), + [anon_sym_not_DASHhas] = ACTIONS(749), + [anon_sym_starts_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), + [anon_sym_ends_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(749), + [anon_sym_BANG_EQ] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_LT_EQ] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_EQ] = ACTIONS(749), + [aux_sym_cmd_identifier_token6] = ACTIONS(747), + [sym__newline] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_err_GT_PIPE] = ACTIONS(747), + [anon_sym_out_GT_PIPE] = ACTIONS(747), + [anon_sym_e_GT_PIPE] = ACTIONS(747), + [anon_sym_o_GT_PIPE] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(747), + [anon_sym_xor2] = ACTIONS(747), + [anon_sym_or2] = ACTIONS(747), + [anon_sym_not_DASHin2] = ACTIONS(747), + [anon_sym_has2] = ACTIONS(747), + [anon_sym_not_DASHhas2] = ACTIONS(747), + [anon_sym_starts_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), + [anon_sym_ends_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), + [anon_sym_EQ_EQ2] = ACTIONS(747), + [anon_sym_BANG_EQ2] = ACTIONS(747), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(747), + [anon_sym_GT_EQ2] = ACTIONS(747), + [anon_sym_EQ_TILDE2] = ACTIONS(747), + [anon_sym_BANG_TILDE2] = ACTIONS(747), + [anon_sym_like2] = ACTIONS(747), + [anon_sym_not_DASHlike2] = ACTIONS(747), + [anon_sym_STAR_STAR2] = ACTIONS(747), + [anon_sym_PLUS_PLUS2] = ACTIONS(747), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(747), + [anon_sym_SLASH_SLASH2] = ACTIONS(747), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(747), + [anon_sym_bit_DASHshr2] = ACTIONS(747), + [anon_sym_bit_DASHand2] = ACTIONS(747), + [anon_sym_bit_DASHxor2] = ACTIONS(747), + [anon_sym_bit_DASHor2] = ACTIONS(747), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token1] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(767), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_err_GT] = ACTIONS(747), + [anon_sym_out_GT] = ACTIONS(747), + [anon_sym_e_GT] = ACTIONS(747), + [anon_sym_o_GT] = ACTIONS(747), + [anon_sym_err_PLUSout_GT] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT] = ACTIONS(747), + [anon_sym_o_PLUSe_GT] = ACTIONS(747), + [anon_sym_e_PLUSo_GT] = ACTIONS(747), + [anon_sym_err_GT_GT] = ACTIONS(747), + [anon_sym_out_GT_GT] = ACTIONS(747), + [anon_sym_e_GT_GT] = ACTIONS(747), + [anon_sym_o_GT_GT] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, [STATE(98)] = { [sym_comment] = STATE(98), - [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -51085,6 +51119,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), [anon_sym_and2] = ACTIONS(747), [anon_sym_xor2] = ACTIONS(747), @@ -51119,8 +51154,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(767), - [aux_sym__immediate_decimal_token5] = ACTIONS(769), + [aux_sym__immediate_decimal_token1] = ACTIONS(769), + [aux_sym__immediate_decimal_token5] = ACTIONS(771), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -51143,110 +51178,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(99)] = { [sym_comment] = STATE(99), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), + [ts_builtin_sym_end] = ACTIONS(741), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT] = ACTIONS(773), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), [aux_sym__immediate_decimal_token5] = ACTIONS(775), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_COLON2] = ACTIONS(771), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_err_GT] = ACTIONS(739), + [anon_sym_out_GT] = ACTIONS(739), + [anon_sym_e_GT] = ACTIONS(739), + [anon_sym_o_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT] = ACTIONS(739), + [anon_sym_err_GT_GT] = ACTIONS(739), + [anon_sym_out_GT_GT] = ACTIONS(739), + [anon_sym_e_GT_GT] = ACTIONS(739), + [anon_sym_o_GT_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, [STATE(100)] = { @@ -51298,9 +51333,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_RPAREN] = ACTIONS(739), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_RBRACE] = ACTIONS(739), [anon_sym_STAR2] = ACTIONS(739), [anon_sym_and2] = ACTIONS(739), [anon_sym_xor2] = ACTIONS(739), @@ -51406,9 +51441,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), [anon_sym_and2] = ACTIONS(747), [anon_sym_xor2] = ACTIONS(747), @@ -51467,109 +51502,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(102)] = { [sym_comment] = STATE(102), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(785), - [aux_sym__immediate_decimal_token5] = ACTIONS(787), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(747), - [anon_sym_out_GT_GT] = ACTIONS(747), - [anon_sym_e_GT_GT] = ACTIONS(747), - [anon_sym_o_GT_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), + [ts_builtin_sym_end] = ACTIONS(757), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token5] = ACTIONS(785), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), [anon_sym_POUND] = ACTIONS(103), }, [STATE(103)] = { @@ -51658,7 +51693,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(765), + [aux_sym__immediate_decimal_token5] = ACTIONS(779), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -51681,648 +51716,434 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(104)] = { [sym_comment] = STATE(104), - [ts_builtin_sym_end] = ACTIONS(773), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(789), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_RPAREN] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token5] = ACTIONS(787), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), [anon_sym_POUND] = ACTIONS(103), }, [STATE(105)] = { [sym_comment] = STATE(105), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_RPAREN] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(791), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [anon_sym_in] = ACTIONS(747), + [anon_sym_STAR_STAR] = ACTIONS(749), + [anon_sym_PLUS_PLUS] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(747), + [anon_sym_SLASH] = ACTIONS(747), + [anon_sym_mod] = ACTIONS(749), + [anon_sym_SLASH_SLASH] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(747), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_bit_DASHshl] = ACTIONS(749), + [anon_sym_bit_DASHshr] = ACTIONS(749), + [anon_sym_EQ_TILDE] = ACTIONS(749), + [anon_sym_BANG_TILDE] = ACTIONS(749), + [anon_sym_like] = ACTIONS(749), + [anon_sym_not_DASHlike] = ACTIONS(749), + [anon_sym_bit_DASHand] = ACTIONS(749), + [anon_sym_bit_DASHxor] = ACTIONS(749), + [anon_sym_bit_DASHor] = ACTIONS(749), + [anon_sym_and] = ACTIONS(749), + [anon_sym_xor] = ACTIONS(749), + [anon_sym_or] = ACTIONS(749), + [anon_sym_in2] = ACTIONS(749), + [anon_sym_not_DASHin] = ACTIONS(749), + [anon_sym_has] = ACTIONS(749), + [anon_sym_not_DASHhas] = ACTIONS(749), + [anon_sym_starts_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), + [anon_sym_ends_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(749), + [anon_sym_BANG_EQ] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_LT_EQ] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_EQ] = ACTIONS(749), + [aux_sym_cmd_identifier_token6] = ACTIONS(747), + [sym__newline] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_err_GT_PIPE] = ACTIONS(747), + [anon_sym_out_GT_PIPE] = ACTIONS(747), + [anon_sym_e_GT_PIPE] = ACTIONS(747), + [anon_sym_o_GT_PIPE] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_RBRACE] = ACTIONS(747), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(747), + [anon_sym_xor2] = ACTIONS(747), + [anon_sym_or2] = ACTIONS(747), + [anon_sym_not_DASHin2] = ACTIONS(747), + [anon_sym_has2] = ACTIONS(747), + [anon_sym_not_DASHhas2] = ACTIONS(747), + [anon_sym_starts_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), + [anon_sym_ends_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), + [anon_sym_EQ_EQ2] = ACTIONS(747), + [anon_sym_BANG_EQ2] = ACTIONS(747), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(747), + [anon_sym_GT_EQ2] = ACTIONS(747), + [anon_sym_EQ_TILDE2] = ACTIONS(747), + [anon_sym_BANG_TILDE2] = ACTIONS(747), + [anon_sym_like2] = ACTIONS(747), + [anon_sym_not_DASHlike2] = ACTIONS(747), + [anon_sym_STAR_STAR2] = ACTIONS(747), + [anon_sym_PLUS_PLUS2] = ACTIONS(747), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(747), + [anon_sym_SLASH_SLASH2] = ACTIONS(747), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(747), + [anon_sym_bit_DASHshr2] = ACTIONS(747), + [anon_sym_bit_DASHand2] = ACTIONS(747), + [anon_sym_bit_DASHxor2] = ACTIONS(747), + [anon_sym_bit_DASHor2] = ACTIONS(747), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_COLON2] = ACTIONS(747), + [anon_sym_err_GT] = ACTIONS(747), + [anon_sym_out_GT] = ACTIONS(747), + [anon_sym_e_GT] = ACTIONS(747), + [anon_sym_o_GT] = ACTIONS(747), + [anon_sym_err_PLUSout_GT] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT] = ACTIONS(747), + [anon_sym_o_PLUSe_GT] = ACTIONS(747), + [anon_sym_e_PLUSo_GT] = ACTIONS(747), + [anon_sym_err_GT_GT] = ACTIONS(747), + [anon_sym_out_GT_GT] = ACTIONS(747), + [anon_sym_e_GT_GT] = ACTIONS(747), + [anon_sym_o_GT_GT] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, [STATE(106)] = { [sym_comment] = STATE(106), - [anon_sym_in] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(795), - [anon_sym_PLUS_PLUS] = ACTIONS(795), - [anon_sym_STAR] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(797), - [anon_sym_mod] = ACTIONS(795), - [anon_sym_SLASH_SLASH] = ACTIONS(795), - [anon_sym_PLUS] = ACTIONS(797), - [anon_sym_DASH] = ACTIONS(795), - [anon_sym_bit_DASHshl] = ACTIONS(795), - [anon_sym_bit_DASHshr] = ACTIONS(795), - [anon_sym_EQ_TILDE] = ACTIONS(795), - [anon_sym_BANG_TILDE] = ACTIONS(795), - [anon_sym_like] = ACTIONS(795), - [anon_sym_not_DASHlike] = ACTIONS(795), - [anon_sym_bit_DASHand] = ACTIONS(795), - [anon_sym_bit_DASHxor] = ACTIONS(795), - [anon_sym_bit_DASHor] = ACTIONS(795), - [anon_sym_and] = ACTIONS(795), - [anon_sym_xor] = ACTIONS(795), - [anon_sym_or] = ACTIONS(795), - [anon_sym_in2] = ACTIONS(795), - [anon_sym_not_DASHin] = ACTIONS(795), - [anon_sym_has] = ACTIONS(795), - [anon_sym_not_DASHhas] = ACTIONS(795), - [anon_sym_starts_DASHwith] = ACTIONS(795), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(795), - [anon_sym_ends_DASHwith] = ACTIONS(795), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(795), - [anon_sym_EQ_EQ] = ACTIONS(795), - [anon_sym_BANG_EQ] = ACTIONS(795), - [anon_sym_LT] = ACTIONS(797), - [anon_sym_LT_EQ] = ACTIONS(795), - [anon_sym_GT] = ACTIONS(797), - [anon_sym_GT_EQ] = ACTIONS(795), - [aux_sym_cmd_identifier_token6] = ACTIONS(799), - [sym__newline] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_err_GT_PIPE] = ACTIONS(793), - [anon_sym_out_GT_PIPE] = ACTIONS(793), - [anon_sym_e_GT_PIPE] = ACTIONS(793), - [anon_sym_o_GT_PIPE] = ACTIONS(793), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(793), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(793), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(793), - [anon_sym_GT2] = ACTIONS(793), - [anon_sym_DASH2] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_STAR2] = ACTIONS(793), - [anon_sym_and2] = ACTIONS(793), - [anon_sym_xor2] = ACTIONS(793), - [anon_sym_or2] = ACTIONS(793), - [anon_sym_not_DASHin2] = ACTIONS(793), - [anon_sym_has2] = ACTIONS(793), - [anon_sym_not_DASHhas2] = ACTIONS(793), - [anon_sym_starts_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), - [anon_sym_ends_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), - [anon_sym_EQ_EQ2] = ACTIONS(793), - [anon_sym_BANG_EQ2] = ACTIONS(793), - [anon_sym_LT2] = ACTIONS(793), - [anon_sym_LT_EQ2] = ACTIONS(793), - [anon_sym_GT_EQ2] = ACTIONS(793), - [anon_sym_EQ_TILDE2] = ACTIONS(793), - [anon_sym_BANG_TILDE2] = ACTIONS(793), - [anon_sym_like2] = ACTIONS(793), - [anon_sym_not_DASHlike2] = ACTIONS(793), - [anon_sym_STAR_STAR2] = ACTIONS(793), - [anon_sym_PLUS_PLUS2] = ACTIONS(793), - [anon_sym_SLASH2] = ACTIONS(793), - [anon_sym_mod2] = ACTIONS(793), - [anon_sym_SLASH_SLASH2] = ACTIONS(793), - [anon_sym_PLUS2] = ACTIONS(793), - [anon_sym_bit_DASHshl2] = ACTIONS(793), - [anon_sym_bit_DASHshr2] = ACTIONS(793), - [anon_sym_bit_DASHand2] = ACTIONS(793), - [anon_sym_bit_DASHxor2] = ACTIONS(793), - [anon_sym_bit_DASHor2] = ACTIONS(793), - [anon_sym_DOT_DOT2] = ACTIONS(801), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(803), - [anon_sym_DOT_DOT_LT2] = ACTIONS(803), - [sym_filesize_unit] = ACTIONS(805), - [sym_duration_unit] = ACTIONS(807), - [anon_sym_COLON2] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [anon_sym_err_GT_GT] = ACTIONS(793), - [anon_sym_out_GT_GT] = ACTIONS(793), - [anon_sym_e_GT_GT] = ACTIONS(793), - [anon_sym_o_GT_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(793), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_COLON2] = ACTIONS(755), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), [anon_sym_POUND] = ACTIONS(103), }, [STATE(107)] = { - [sym_expr_parenthesized] = STATE(2670), - [sym__spread_parenthesized] = STATE(3003), - [sym_val_range] = STATE(3030), - [sym__val_range] = STATE(4477), - [sym__value] = STATE(3030), - [sym_val_nothing] = STATE(3022), - [sym_val_bool] = STATE(2861), - [sym__spread_variable] = STATE(3036), - [sym_val_variable] = STATE(2672), - [sym_val_cellpath] = STATE(3022), - [sym_val_number] = STATE(3022), - [sym__val_number_decimal] = STATE(2431), - [sym__val_number] = STATE(3024), - [sym_val_duration] = STATE(3022), - [sym_val_filesize] = STATE(3022), - [sym_val_binary] = STATE(3022), - [sym_val_string] = STATE(3022), - [sym__raw_str] = STATE(2508), - [sym__str_double_quotes] = STATE(2508), - [sym__str_single_quotes] = STATE(2508), - [sym__str_back_ticks] = STATE(2508), - [sym_val_interpolated] = STATE(3022), - [sym__inter_single_quotes] = STATE(2983), - [sym__inter_double_quotes] = STATE(3101), - [sym_val_list] = STATE(3022), - [sym__spread_list] = STATE(3003), - [sym_val_record] = STATE(3022), - [sym_val_table] = STATE(3022), - [sym_val_closure] = STATE(3022), - [sym__cmd_arg] = STATE(3051), - [sym_redirection] = STATE(3053), - [sym__flag] = STATE(3060), - [sym_short_flag] = STATE(3092), - [sym_long_flag] = STATE(3092), - [sym_unquoted] = STATE(2706), - [sym__unquoted_with_expr] = STATE(3107), - [sym__unquoted_anonymous_prefix] = STATE(4477), [sym_comment] = STATE(107), - [anon_sym_true] = ACTIONS(809), - [anon_sym_false] = ACTIONS(809), - [anon_sym_null] = ACTIONS(811), - [aux_sym_cmd_identifier_token3] = ACTIONS(813), - [aux_sym_cmd_identifier_token4] = ACTIONS(813), - [aux_sym_cmd_identifier_token5] = ACTIONS(813), - [sym__newline] = ACTIONS(815), - [sym__space] = ACTIONS(815), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_err_GT_PIPE] = ACTIONS(818), - [anon_sym_out_GT_PIPE] = ACTIONS(818), - [anon_sym_e_GT_PIPE] = ACTIONS(818), - [anon_sym_o_GT_PIPE] = ACTIONS(818), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(818), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(818), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(818), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(822), - [anon_sym_DOLLAR] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(826), - [anon_sym_DASH2] = ACTIONS(828), - [anon_sym_LBRACE] = ACTIONS(830), - [anon_sym_RBRACE] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(832), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(834), - [anon_sym_DOT_DOT_EQ] = ACTIONS(836), - [anon_sym_DOT_DOT_LT] = ACTIONS(836), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(838), - [aux_sym__val_number_decimal_token1] = ACTIONS(840), - [aux_sym__val_number_decimal_token2] = ACTIONS(840), - [aux_sym__val_number_decimal_token3] = ACTIONS(842), - [aux_sym__val_number_decimal_token4] = ACTIONS(842), - [aux_sym__val_number_token1] = ACTIONS(844), - [aux_sym__val_number_token2] = ACTIONS(844), - [aux_sym__val_number_token3] = ACTIONS(844), - [anon_sym_0b] = ACTIONS(846), - [anon_sym_0o] = ACTIONS(848), - [anon_sym_0x] = ACTIONS(848), - [sym_val_date] = ACTIONS(850), - [anon_sym_DQUOTE] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_BQUOTE] = ACTIONS(856), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(860), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(862), - [anon_sym_COLON2] = ACTIONS(864), - [anon_sym_err_GT] = ACTIONS(866), - [anon_sym_out_GT] = ACTIONS(866), - [anon_sym_e_GT] = ACTIONS(866), - [anon_sym_o_GT] = ACTIONS(866), - [anon_sym_err_PLUSout_GT] = ACTIONS(866), - [anon_sym_out_PLUSerr_GT] = ACTIONS(866), - [anon_sym_o_PLUSe_GT] = ACTIONS(866), - [anon_sym_e_PLUSo_GT] = ACTIONS(866), - [anon_sym_err_GT_GT] = ACTIONS(866), - [anon_sym_out_GT_GT] = ACTIONS(866), - [anon_sym_e_GT_GT] = ACTIONS(866), - [anon_sym_o_GT_GT] = ACTIONS(866), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(866), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(866), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(866), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(866), - [aux_sym_unquoted_token1] = ACTIONS(868), + [anon_sym_in] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_mod] = ACTIONS(791), + [anon_sym_SLASH_SLASH] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_bit_DASHshl] = ACTIONS(791), + [anon_sym_bit_DASHshr] = ACTIONS(791), + [anon_sym_EQ_TILDE] = ACTIONS(791), + [anon_sym_BANG_TILDE] = ACTIONS(791), + [anon_sym_like] = ACTIONS(791), + [anon_sym_not_DASHlike] = ACTIONS(791), + [anon_sym_bit_DASHand] = ACTIONS(791), + [anon_sym_bit_DASHxor] = ACTIONS(791), + [anon_sym_bit_DASHor] = ACTIONS(791), + [anon_sym_and] = ACTIONS(791), + [anon_sym_xor] = ACTIONS(791), + [anon_sym_or] = ACTIONS(791), + [anon_sym_in2] = ACTIONS(791), + [anon_sym_not_DASHin] = ACTIONS(791), + [anon_sym_has] = ACTIONS(791), + [anon_sym_not_DASHhas] = ACTIONS(791), + [anon_sym_starts_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), + [anon_sym_ends_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), + [anon_sym_EQ_EQ] = ACTIONS(791), + [anon_sym_BANG_EQ] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(791), + [aux_sym_cmd_identifier_token6] = ACTIONS(789), + [sym__newline] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_err_GT_PIPE] = ACTIONS(789), + [anon_sym_out_GT_PIPE] = ACTIONS(789), + [anon_sym_e_GT_PIPE] = ACTIONS(789), + [anon_sym_o_GT_PIPE] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(789), + [anon_sym_RBRACE] = ACTIONS(789), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(789), + [anon_sym_xor2] = ACTIONS(789), + [anon_sym_or2] = ACTIONS(789), + [anon_sym_not_DASHin2] = ACTIONS(789), + [anon_sym_has2] = ACTIONS(789), + [anon_sym_not_DASHhas2] = ACTIONS(789), + [anon_sym_starts_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), + [anon_sym_ends_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), + [anon_sym_EQ_EQ2] = ACTIONS(789), + [anon_sym_BANG_EQ2] = ACTIONS(789), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(789), + [anon_sym_GT_EQ2] = ACTIONS(789), + [anon_sym_EQ_TILDE2] = ACTIONS(789), + [anon_sym_BANG_TILDE2] = ACTIONS(789), + [anon_sym_like2] = ACTIONS(789), + [anon_sym_not_DASHlike2] = ACTIONS(789), + [anon_sym_STAR_STAR2] = ACTIONS(789), + [anon_sym_PLUS_PLUS2] = ACTIONS(789), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(789), + [anon_sym_SLASH_SLASH2] = ACTIONS(789), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(789), + [anon_sym_bit_DASHshr2] = ACTIONS(789), + [anon_sym_bit_DASHand2] = ACTIONS(789), + [anon_sym_bit_DASHxor2] = ACTIONS(789), + [anon_sym_bit_DASHor2] = ACTIONS(789), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_COLON2] = ACTIONS(789), + [anon_sym_err_GT] = ACTIONS(789), + [anon_sym_out_GT] = ACTIONS(789), + [anon_sym_e_GT] = ACTIONS(789), + [anon_sym_o_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT] = ACTIONS(789), + [anon_sym_err_GT_GT] = ACTIONS(789), + [anon_sym_out_GT_GT] = ACTIONS(789), + [anon_sym_e_GT_GT] = ACTIONS(789), + [anon_sym_o_GT_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(789), [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(870), }, [STATE(108)] = { - [sym_expr_parenthesized] = STATE(2670), - [sym__spread_parenthesized] = STATE(3003), - [sym_val_range] = STATE(3030), - [sym__val_range] = STATE(4477), - [sym__value] = STATE(3030), - [sym_val_nothing] = STATE(3022), - [sym_val_bool] = STATE(2861), - [sym__spread_variable] = STATE(3036), - [sym_val_variable] = STATE(2672), - [sym_val_cellpath] = STATE(3022), - [sym_val_number] = STATE(3022), - [sym__val_number_decimal] = STATE(2431), - [sym__val_number] = STATE(3024), - [sym_val_duration] = STATE(3022), - [sym_val_filesize] = STATE(3022), - [sym_val_binary] = STATE(3022), - [sym_val_string] = STATE(3022), - [sym__raw_str] = STATE(2508), - [sym__str_double_quotes] = STATE(2508), - [sym__str_single_quotes] = STATE(2508), - [sym__str_back_ticks] = STATE(2508), - [sym_val_interpolated] = STATE(3022), - [sym__inter_single_quotes] = STATE(2983), - [sym__inter_double_quotes] = STATE(3101), - [sym_val_list] = STATE(3022), - [sym__spread_list] = STATE(3003), - [sym_val_record] = STATE(3022), - [sym_val_table] = STATE(3022), - [sym_val_closure] = STATE(3022), - [sym__cmd_arg] = STATE(3051), - [sym_redirection] = STATE(3053), - [sym__flag] = STATE(3060), - [sym_short_flag] = STATE(3092), - [sym_long_flag] = STATE(3092), - [sym_unquoted] = STATE(2706), - [sym__unquoted_with_expr] = STATE(3107), - [sym__unquoted_anonymous_prefix] = STATE(4477), [sym_comment] = STATE(108), - [anon_sym_true] = ACTIONS(809), - [anon_sym_false] = ACTIONS(809), - [anon_sym_null] = ACTIONS(811), - [aux_sym_cmd_identifier_token3] = ACTIONS(813), - [aux_sym_cmd_identifier_token4] = ACTIONS(813), - [aux_sym_cmd_identifier_token5] = ACTIONS(813), - [sym__newline] = ACTIONS(818), - [sym__space] = ACTIONS(872), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_err_GT_PIPE] = ACTIONS(818), - [anon_sym_out_GT_PIPE] = ACTIONS(818), - [anon_sym_e_GT_PIPE] = ACTIONS(818), - [anon_sym_o_GT_PIPE] = ACTIONS(818), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(818), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(818), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(818), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(822), - [anon_sym_RPAREN] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(826), - [anon_sym_DASH2] = ACTIONS(828), - [anon_sym_LBRACE] = ACTIONS(830), - [anon_sym_RBRACE] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(832), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(834), - [anon_sym_DOT_DOT_EQ] = ACTIONS(836), - [anon_sym_DOT_DOT_LT] = ACTIONS(836), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(838), - [aux_sym__val_number_decimal_token1] = ACTIONS(840), - [aux_sym__val_number_decimal_token2] = ACTIONS(840), - [aux_sym__val_number_decimal_token3] = ACTIONS(842), - [aux_sym__val_number_decimal_token4] = ACTIONS(842), - [aux_sym__val_number_token1] = ACTIONS(844), - [aux_sym__val_number_token2] = ACTIONS(844), - [aux_sym__val_number_token3] = ACTIONS(844), - [anon_sym_0b] = ACTIONS(846), - [anon_sym_0o] = ACTIONS(848), - [anon_sym_0x] = ACTIONS(848), - [sym_val_date] = ACTIONS(850), - [anon_sym_DQUOTE] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_BQUOTE] = ACTIONS(856), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(860), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(862), - [anon_sym_err_GT] = ACTIONS(866), - [anon_sym_out_GT] = ACTIONS(866), - [anon_sym_e_GT] = ACTIONS(866), - [anon_sym_o_GT] = ACTIONS(866), - [anon_sym_err_PLUSout_GT] = ACTIONS(866), - [anon_sym_out_PLUSerr_GT] = ACTIONS(866), - [anon_sym_o_PLUSe_GT] = ACTIONS(866), - [anon_sym_e_PLUSo_GT] = ACTIONS(866), - [anon_sym_err_GT_GT] = ACTIONS(866), - [anon_sym_out_GT_GT] = ACTIONS(866), - [anon_sym_e_GT_GT] = ACTIONS(866), - [anon_sym_o_GT_GT] = ACTIONS(866), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(866), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(866), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(866), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(866), - [aux_sym_unquoted_token1] = ACTIONS(868), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(870), - }, - [STATE(109)] = { - [sym_comment] = STATE(109), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_COLON2] = ACTIONS(771), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(110)] = { - [sym_comment] = STATE(110), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -52407,7 +52228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(779), + [aux_sym__immediate_decimal_token5] = ACTIONS(763), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -52428,9 +52249,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(111)] = { - [sym_comment] = STATE(111), - [ts_builtin_sym_end] = ACTIONS(741), + [STATE(109)] = { + [sym_comment] = STATE(109), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token5] = ACTIONS(793), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(110)] = { + [sym_comment] = STATE(110), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -52512,9 +52439,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT] = ACTIONS(795), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(757), + [aux_sym__immediate_decimal_token5] = ACTIONS(797), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -52535,8 +52463,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(112)] = { - [sym_comment] = STATE(112), + [STATE(111)] = { + [sym_comment] = STATE(111), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -52586,7 +52514,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), [anon_sym_and2] = ACTIONS(747), [anon_sym_xor2] = ACTIONS(747), @@ -52621,9 +52548,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token1] = ACTIONS(799), + [aux_sym__immediate_decimal_token5] = ACTIONS(801), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), - [anon_sym_COLON2] = ACTIONS(747), [anon_sym_err_GT] = ACTIONS(747), [anon_sym_out_GT] = ACTIONS(747), [anon_sym_e_GT] = ACTIONS(747), @@ -52642,222 +52570,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(113)] = { - [sym_comment] = STATE(113), - [anon_sym_in] = ACTIONS(874), - [anon_sym_STAR_STAR] = ACTIONS(876), - [anon_sym_PLUS_PLUS] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_mod] = ACTIONS(876), - [anon_sym_SLASH_SLASH] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_DASH] = ACTIONS(876), - [anon_sym_bit_DASHshl] = ACTIONS(876), - [anon_sym_bit_DASHshr] = ACTIONS(876), - [anon_sym_EQ_TILDE] = ACTIONS(876), - [anon_sym_BANG_TILDE] = ACTIONS(876), - [anon_sym_like] = ACTIONS(876), - [anon_sym_not_DASHlike] = ACTIONS(876), - [anon_sym_bit_DASHand] = ACTIONS(876), - [anon_sym_bit_DASHxor] = ACTIONS(876), - [anon_sym_bit_DASHor] = ACTIONS(876), - [anon_sym_and] = ACTIONS(876), - [anon_sym_xor] = ACTIONS(876), - [anon_sym_or] = ACTIONS(876), - [anon_sym_in2] = ACTIONS(876), - [anon_sym_not_DASHin] = ACTIONS(876), - [anon_sym_has] = ACTIONS(876), - [anon_sym_not_DASHhas] = ACTIONS(876), - [anon_sym_starts_DASHwith] = ACTIONS(876), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(876), - [anon_sym_ends_DASHwith] = ACTIONS(876), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_BANG_EQ] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_EQ] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_GT_EQ] = ACTIONS(876), - [aux_sym_cmd_identifier_token6] = ACTIONS(874), - [sym__newline] = ACTIONS(874), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_err_GT_PIPE] = ACTIONS(874), - [anon_sym_out_GT_PIPE] = ACTIONS(874), - [anon_sym_e_GT_PIPE] = ACTIONS(874), - [anon_sym_o_GT_PIPE] = ACTIONS(874), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(874), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(874), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(874), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(874), - [anon_sym_GT2] = ACTIONS(874), - [anon_sym_DASH2] = ACTIONS(874), - [anon_sym_RBRACE] = ACTIONS(874), - [anon_sym_STAR2] = ACTIONS(874), - [anon_sym_and2] = ACTIONS(874), - [anon_sym_xor2] = ACTIONS(874), - [anon_sym_or2] = ACTIONS(874), - [anon_sym_not_DASHin2] = ACTIONS(874), - [anon_sym_has2] = ACTIONS(874), - [anon_sym_not_DASHhas2] = ACTIONS(874), - [anon_sym_starts_DASHwith2] = ACTIONS(874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(874), - [anon_sym_ends_DASHwith2] = ACTIONS(874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(874), - [anon_sym_EQ_EQ2] = ACTIONS(874), - [anon_sym_BANG_EQ2] = ACTIONS(874), - [anon_sym_LT2] = ACTIONS(874), - [anon_sym_LT_EQ2] = ACTIONS(874), - [anon_sym_GT_EQ2] = ACTIONS(874), - [anon_sym_EQ_TILDE2] = ACTIONS(874), - [anon_sym_BANG_TILDE2] = ACTIONS(874), - [anon_sym_like2] = ACTIONS(874), - [anon_sym_not_DASHlike2] = ACTIONS(874), - [anon_sym_STAR_STAR2] = ACTIONS(874), - [anon_sym_PLUS_PLUS2] = ACTIONS(874), - [anon_sym_SLASH2] = ACTIONS(874), - [anon_sym_mod2] = ACTIONS(874), - [anon_sym_SLASH_SLASH2] = ACTIONS(874), - [anon_sym_PLUS2] = ACTIONS(874), - [anon_sym_bit_DASHshl2] = ACTIONS(874), - [anon_sym_bit_DASHshr2] = ACTIONS(874), - [anon_sym_bit_DASHand2] = ACTIONS(874), - [anon_sym_bit_DASHxor2] = ACTIONS(874), - [anon_sym_bit_DASHor2] = ACTIONS(874), - [anon_sym_DOT_DOT2] = ACTIONS(874), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), - [anon_sym_DOT_DOT_LT2] = ACTIONS(876), - [sym_filesize_unit] = ACTIONS(874), - [sym_duration_unit] = ACTIONS(876), - [anon_sym_COLON2] = ACTIONS(874), - [anon_sym_err_GT] = ACTIONS(874), - [anon_sym_out_GT] = ACTIONS(874), - [anon_sym_e_GT] = ACTIONS(874), - [anon_sym_o_GT] = ACTIONS(874), - [anon_sym_err_PLUSout_GT] = ACTIONS(874), - [anon_sym_out_PLUSerr_GT] = ACTIONS(874), - [anon_sym_o_PLUSe_GT] = ACTIONS(874), - [anon_sym_e_PLUSo_GT] = ACTIONS(874), - [anon_sym_err_GT_GT] = ACTIONS(874), - [anon_sym_out_GT_GT] = ACTIONS(874), - [anon_sym_e_GT_GT] = ACTIONS(874), - [anon_sym_o_GT_GT] = ACTIONS(874), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(874), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(874), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(874), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(874), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(114)] = { - [sym_comment] = STATE(114), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(878), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [STATE(112)] = { + [sym_expr_parenthesized] = STATE(2642), + [sym__spread_parenthesized] = STATE(3114), + [sym_val_range] = STATE(3117), + [sym__val_range] = STATE(4483), + [sym__value] = STATE(3117), + [sym_val_nothing] = STATE(3105), + [sym_val_bool] = STATE(2745), + [sym__spread_variable] = STATE(3118), + [sym_val_variable] = STATE(2648), + [sym_val_cellpath] = STATE(3105), + [sym_val_number] = STATE(3105), + [sym__val_number_decimal] = STATE(2439), + [sym__val_number] = STATE(3106), + [sym_val_duration] = STATE(3105), + [sym_val_filesize] = STATE(3105), + [sym_val_binary] = STATE(3105), + [sym_val_string] = STATE(3105), + [sym__raw_str] = STATE(2499), + [sym__str_double_quotes] = STATE(2499), + [sym__str_single_quotes] = STATE(2499), + [sym__str_back_ticks] = STATE(2499), + [sym_val_interpolated] = STATE(3105), + [sym__inter_single_quotes] = STATE(3009), + [sym__inter_double_quotes] = STATE(3012), + [sym_val_list] = STATE(3105), + [sym__spread_list] = STATE(3114), + [sym_val_record] = STATE(3105), + [sym_val_table] = STATE(3105), + [sym_val_closure] = STATE(3105), + [sym__cmd_arg] = STATE(3119), + [sym_redirection] = STATE(2972), + [sym__flag] = STATE(3127), + [sym_short_flag] = STATE(2974), + [sym_long_flag] = STATE(2974), + [sym_unquoted] = STATE(2710), + [sym__unquoted_with_expr] = STATE(2979), + [sym__unquoted_anonymous_prefix] = STATE(4483), + [sym_comment] = STATE(112), + [anon_sym_true] = ACTIONS(803), + [anon_sym_false] = ACTIONS(803), + [anon_sym_null] = ACTIONS(805), + [aux_sym_cmd_identifier_token3] = ACTIONS(807), + [aux_sym_cmd_identifier_token4] = ACTIONS(807), + [aux_sym_cmd_identifier_token5] = ACTIONS(807), + [sym__newline] = ACTIONS(809), + [sym__space] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(812), + [anon_sym_PIPE] = ACTIONS(812), + [anon_sym_err_GT_PIPE] = ACTIONS(812), + [anon_sym_out_GT_PIPE] = ACTIONS(812), + [anon_sym_e_GT_PIPE] = ACTIONS(812), + [anon_sym_o_GT_PIPE] = ACTIONS(812), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(812), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(812), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(812), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(812), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(816), + [anon_sym_DOLLAR] = ACTIONS(818), + [anon_sym_DASH_DASH] = ACTIONS(820), + [anon_sym_DASH2] = ACTIONS(822), + [anon_sym_LBRACE] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(812), + [anon_sym_DOT_DOT] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(828), + [anon_sym_DOT_DOT_EQ] = ACTIONS(830), + [anon_sym_DOT_DOT_LT] = ACTIONS(830), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(832), + [aux_sym__val_number_decimal_token1] = ACTIONS(834), + [aux_sym__val_number_decimal_token2] = ACTIONS(834), + [aux_sym__val_number_decimal_token3] = ACTIONS(836), + [aux_sym__val_number_decimal_token4] = ACTIONS(836), + [aux_sym__val_number_token1] = ACTIONS(838), + [aux_sym__val_number_token2] = ACTIONS(838), + [aux_sym__val_number_token3] = ACTIONS(838), + [anon_sym_0b] = ACTIONS(840), + [anon_sym_0o] = ACTIONS(842), + [anon_sym_0x] = ACTIONS(842), + [sym_val_date] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_SQUOTE] = ACTIONS(848), + [anon_sym_BQUOTE] = ACTIONS(850), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(852), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(854), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(856), + [anon_sym_COLON2] = ACTIONS(858), + [anon_sym_err_GT] = ACTIONS(860), + [anon_sym_out_GT] = ACTIONS(860), + [anon_sym_e_GT] = ACTIONS(860), + [anon_sym_o_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT] = ACTIONS(860), + [anon_sym_err_GT_GT] = ACTIONS(860), + [anon_sym_out_GT_GT] = ACTIONS(860), + [anon_sym_e_GT_GT] = ACTIONS(860), + [anon_sym_o_GT_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(860), + [aux_sym_unquoted_token1] = ACTIONS(862), [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(864), }, - [STATE(115)] = { - [sym_comment] = STATE(115), + [STATE(113)] = { + [sym_comment] = STATE(113), + [ts_builtin_sym_end] = ACTIONS(741), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -52939,10 +52761,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(880), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(882), + [aux_sym__immediate_decimal_token5] = ACTIONS(775), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -52963,8 +52784,646 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(114)] = { + [sym_comment] = STATE(114), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(868), + [anon_sym_PLUS_PLUS] = ACTIONS(868), + [anon_sym_STAR] = ACTIONS(870), + [anon_sym_SLASH] = ACTIONS(870), + [anon_sym_mod] = ACTIONS(868), + [anon_sym_SLASH_SLASH] = ACTIONS(868), + [anon_sym_PLUS] = ACTIONS(870), + [anon_sym_DASH] = ACTIONS(868), + [anon_sym_bit_DASHshl] = ACTIONS(868), + [anon_sym_bit_DASHshr] = ACTIONS(868), + [anon_sym_EQ_TILDE] = ACTIONS(868), + [anon_sym_BANG_TILDE] = ACTIONS(868), + [anon_sym_like] = ACTIONS(868), + [anon_sym_not_DASHlike] = ACTIONS(868), + [anon_sym_bit_DASHand] = ACTIONS(868), + [anon_sym_bit_DASHxor] = ACTIONS(868), + [anon_sym_bit_DASHor] = ACTIONS(868), + [anon_sym_and] = ACTIONS(868), + [anon_sym_xor] = ACTIONS(868), + [anon_sym_or] = ACTIONS(868), + [anon_sym_in2] = ACTIONS(868), + [anon_sym_not_DASHin] = ACTIONS(868), + [anon_sym_has] = ACTIONS(868), + [anon_sym_not_DASHhas] = ACTIONS(868), + [anon_sym_starts_DASHwith] = ACTIONS(868), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(868), + [anon_sym_ends_DASHwith] = ACTIONS(868), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(868), + [anon_sym_EQ_EQ] = ACTIONS(868), + [anon_sym_BANG_EQ] = ACTIONS(868), + [anon_sym_LT] = ACTIONS(870), + [anon_sym_LT_EQ] = ACTIONS(868), + [anon_sym_GT] = ACTIONS(870), + [anon_sym_GT_EQ] = ACTIONS(868), + [aux_sym_cmd_identifier_token6] = ACTIONS(872), + [sym__newline] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_RBRACE] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(878), + [sym_duration_unit] = ACTIONS(880), + [anon_sym_COLON2] = ACTIONS(866), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(866), + [anon_sym_out_GT_GT] = ACTIONS(866), + [anon_sym_e_GT_GT] = ACTIONS(866), + [anon_sym_o_GT_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(866), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(115)] = { + [sym_expr_parenthesized] = STATE(2642), + [sym__spread_parenthesized] = STATE(3114), + [sym_val_range] = STATE(3117), + [sym__val_range] = STATE(4483), + [sym__value] = STATE(3117), + [sym_val_nothing] = STATE(3105), + [sym_val_bool] = STATE(2745), + [sym__spread_variable] = STATE(3118), + [sym_val_variable] = STATE(2648), + [sym_val_cellpath] = STATE(3105), + [sym_val_number] = STATE(3105), + [sym__val_number_decimal] = STATE(2439), + [sym__val_number] = STATE(3106), + [sym_val_duration] = STATE(3105), + [sym_val_filesize] = STATE(3105), + [sym_val_binary] = STATE(3105), + [sym_val_string] = STATE(3105), + [sym__raw_str] = STATE(2499), + [sym__str_double_quotes] = STATE(2499), + [sym__str_single_quotes] = STATE(2499), + [sym__str_back_ticks] = STATE(2499), + [sym_val_interpolated] = STATE(3105), + [sym__inter_single_quotes] = STATE(3009), + [sym__inter_double_quotes] = STATE(3012), + [sym_val_list] = STATE(3105), + [sym__spread_list] = STATE(3114), + [sym_val_record] = STATE(3105), + [sym_val_table] = STATE(3105), + [sym_val_closure] = STATE(3105), + [sym__cmd_arg] = STATE(3119), + [sym_redirection] = STATE(2972), + [sym__flag] = STATE(3127), + [sym_short_flag] = STATE(2974), + [sym_long_flag] = STATE(2974), + [sym_unquoted] = STATE(2710), + [sym__unquoted_with_expr] = STATE(2979), + [sym__unquoted_anonymous_prefix] = STATE(4483), + [sym_comment] = STATE(115), + [anon_sym_true] = ACTIONS(803), + [anon_sym_false] = ACTIONS(803), + [anon_sym_null] = ACTIONS(805), + [aux_sym_cmd_identifier_token3] = ACTIONS(807), + [aux_sym_cmd_identifier_token4] = ACTIONS(807), + [aux_sym_cmd_identifier_token5] = ACTIONS(807), + [sym__newline] = ACTIONS(812), + [sym__space] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(812), + [anon_sym_PIPE] = ACTIONS(812), + [anon_sym_err_GT_PIPE] = ACTIONS(812), + [anon_sym_out_GT_PIPE] = ACTIONS(812), + [anon_sym_e_GT_PIPE] = ACTIONS(812), + [anon_sym_o_GT_PIPE] = ACTIONS(812), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(812), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(812), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(812), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(812), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(816), + [anon_sym_RPAREN] = ACTIONS(812), + [anon_sym_DOLLAR] = ACTIONS(818), + [anon_sym_DASH_DASH] = ACTIONS(820), + [anon_sym_DASH2] = ACTIONS(822), + [anon_sym_LBRACE] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(812), + [anon_sym_DOT_DOT] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(828), + [anon_sym_DOT_DOT_EQ] = ACTIONS(830), + [anon_sym_DOT_DOT_LT] = ACTIONS(830), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(832), + [aux_sym__val_number_decimal_token1] = ACTIONS(834), + [aux_sym__val_number_decimal_token2] = ACTIONS(834), + [aux_sym__val_number_decimal_token3] = ACTIONS(836), + [aux_sym__val_number_decimal_token4] = ACTIONS(836), + [aux_sym__val_number_token1] = ACTIONS(838), + [aux_sym__val_number_token2] = ACTIONS(838), + [aux_sym__val_number_token3] = ACTIONS(838), + [anon_sym_0b] = ACTIONS(840), + [anon_sym_0o] = ACTIONS(842), + [anon_sym_0x] = ACTIONS(842), + [sym_val_date] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_SQUOTE] = ACTIONS(848), + [anon_sym_BQUOTE] = ACTIONS(850), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(852), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(854), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(856), + [anon_sym_err_GT] = ACTIONS(860), + [anon_sym_out_GT] = ACTIONS(860), + [anon_sym_e_GT] = ACTIONS(860), + [anon_sym_o_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT] = ACTIONS(860), + [anon_sym_err_GT_GT] = ACTIONS(860), + [anon_sym_out_GT_GT] = ACTIONS(860), + [anon_sym_e_GT_GT] = ACTIONS(860), + [anon_sym_o_GT_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(860), + [aux_sym_unquoted_token1] = ACTIONS(862), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(864), + }, [STATE(116)] = { [sym_comment] = STATE(116), + [ts_builtin_sym_end] = ACTIONS(791), + [anon_sym_in] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_mod] = ACTIONS(791), + [anon_sym_SLASH_SLASH] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_bit_DASHshl] = ACTIONS(791), + [anon_sym_bit_DASHshr] = ACTIONS(791), + [anon_sym_EQ_TILDE] = ACTIONS(791), + [anon_sym_BANG_TILDE] = ACTIONS(791), + [anon_sym_like] = ACTIONS(791), + [anon_sym_not_DASHlike] = ACTIONS(791), + [anon_sym_bit_DASHand] = ACTIONS(791), + [anon_sym_bit_DASHxor] = ACTIONS(791), + [anon_sym_bit_DASHor] = ACTIONS(791), + [anon_sym_and] = ACTIONS(791), + [anon_sym_xor] = ACTIONS(791), + [anon_sym_or] = ACTIONS(791), + [anon_sym_in2] = ACTIONS(791), + [anon_sym_not_DASHin] = ACTIONS(791), + [anon_sym_has] = ACTIONS(791), + [anon_sym_not_DASHhas] = ACTIONS(791), + [anon_sym_starts_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), + [anon_sym_ends_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), + [anon_sym_EQ_EQ] = ACTIONS(791), + [anon_sym_BANG_EQ] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(791), + [aux_sym_cmd_identifier_token6] = ACTIONS(789), + [sym__newline] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_err_GT_PIPE] = ACTIONS(789), + [anon_sym_out_GT_PIPE] = ACTIONS(789), + [anon_sym_e_GT_PIPE] = ACTIONS(789), + [anon_sym_o_GT_PIPE] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(789), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(789), + [anon_sym_xor2] = ACTIONS(789), + [anon_sym_or2] = ACTIONS(789), + [anon_sym_not_DASHin2] = ACTIONS(789), + [anon_sym_has2] = ACTIONS(789), + [anon_sym_not_DASHhas2] = ACTIONS(789), + [anon_sym_starts_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), + [anon_sym_ends_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), + [anon_sym_EQ_EQ2] = ACTIONS(789), + [anon_sym_BANG_EQ2] = ACTIONS(789), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(789), + [anon_sym_GT_EQ2] = ACTIONS(789), + [anon_sym_EQ_TILDE2] = ACTIONS(789), + [anon_sym_BANG_TILDE2] = ACTIONS(789), + [anon_sym_like2] = ACTIONS(789), + [anon_sym_not_DASHlike2] = ACTIONS(789), + [anon_sym_STAR_STAR2] = ACTIONS(789), + [anon_sym_PLUS_PLUS2] = ACTIONS(789), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(789), + [anon_sym_SLASH_SLASH2] = ACTIONS(789), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(789), + [anon_sym_bit_DASHshr2] = ACTIONS(789), + [anon_sym_bit_DASHand2] = ACTIONS(789), + [anon_sym_bit_DASHxor2] = ACTIONS(789), + [anon_sym_bit_DASHor2] = ACTIONS(789), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_err_GT] = ACTIONS(789), + [anon_sym_out_GT] = ACTIONS(789), + [anon_sym_e_GT] = ACTIONS(789), + [anon_sym_o_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT] = ACTIONS(789), + [anon_sym_err_GT_GT] = ACTIONS(789), + [anon_sym_out_GT_GT] = ACTIONS(789), + [anon_sym_e_GT_GT] = ACTIONS(789), + [anon_sym_o_GT_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(789), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(117)] = { + [sym_expr_parenthesized] = STATE(2642), + [sym__spread_parenthesized] = STATE(3114), + [sym_val_range] = STATE(3117), + [sym__val_range] = STATE(4483), + [sym__value] = STATE(3117), + [sym_val_nothing] = STATE(3105), + [sym_val_bool] = STATE(2745), + [sym__spread_variable] = STATE(3118), + [sym_val_variable] = STATE(2648), + [sym_val_cellpath] = STATE(3105), + [sym_val_number] = STATE(3105), + [sym__val_number_decimal] = STATE(2439), + [sym__val_number] = STATE(3106), + [sym_val_duration] = STATE(3105), + [sym_val_filesize] = STATE(3105), + [sym_val_binary] = STATE(3105), + [sym_val_string] = STATE(3105), + [sym__raw_str] = STATE(2499), + [sym__str_double_quotes] = STATE(2499), + [sym__str_single_quotes] = STATE(2499), + [sym__str_back_ticks] = STATE(2499), + [sym_val_interpolated] = STATE(3105), + [sym__inter_single_quotes] = STATE(3009), + [sym__inter_double_quotes] = STATE(3012), + [sym_val_list] = STATE(3105), + [sym__spread_list] = STATE(3114), + [sym_val_record] = STATE(3105), + [sym_val_table] = STATE(3105), + [sym_val_closure] = STATE(3105), + [sym__cmd_arg] = STATE(3166), + [sym_redirection] = STATE(2972), + [sym__flag] = STATE(3127), + [sym_short_flag] = STATE(2974), + [sym_long_flag] = STATE(2974), + [sym_unquoted] = STATE(2710), + [sym__unquoted_with_expr] = STATE(2979), + [sym__unquoted_anonymous_prefix] = STATE(4483), + [sym_comment] = STATE(117), + [anon_sym_true] = ACTIONS(803), + [anon_sym_false] = ACTIONS(803), + [anon_sym_null] = ACTIONS(805), + [aux_sym_cmd_identifier_token3] = ACTIONS(807), + [aux_sym_cmd_identifier_token4] = ACTIONS(807), + [aux_sym_cmd_identifier_token5] = ACTIONS(807), + [sym__newline] = ACTIONS(884), + [sym__space] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [anon_sym_PIPE] = ACTIONS(884), + [anon_sym_err_GT_PIPE] = ACTIONS(884), + [anon_sym_out_GT_PIPE] = ACTIONS(884), + [anon_sym_e_GT_PIPE] = ACTIONS(884), + [anon_sym_o_GT_PIPE] = ACTIONS(884), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(884), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(884), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(884), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(884), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(816), + [anon_sym_RPAREN] = ACTIONS(884), + [anon_sym_DOLLAR] = ACTIONS(818), + [anon_sym_DASH_DASH] = ACTIONS(820), + [anon_sym_DASH2] = ACTIONS(822), + [anon_sym_LBRACE] = ACTIONS(824), + [anon_sym_DOT_DOT] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(828), + [anon_sym_DOT_DOT_EQ] = ACTIONS(830), + [anon_sym_DOT_DOT_LT] = ACTIONS(830), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(832), + [aux_sym__val_number_decimal_token1] = ACTIONS(834), + [aux_sym__val_number_decimal_token2] = ACTIONS(834), + [aux_sym__val_number_decimal_token3] = ACTIONS(836), + [aux_sym__val_number_decimal_token4] = ACTIONS(836), + [aux_sym__val_number_token1] = ACTIONS(838), + [aux_sym__val_number_token2] = ACTIONS(838), + [aux_sym__val_number_token3] = ACTIONS(838), + [anon_sym_0b] = ACTIONS(840), + [anon_sym_0o] = ACTIONS(842), + [anon_sym_0x] = ACTIONS(842), + [sym_val_date] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_SQUOTE] = ACTIONS(848), + [anon_sym_BQUOTE] = ACTIONS(850), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(852), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(854), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(856), + [anon_sym_err_GT] = ACTIONS(860), + [anon_sym_out_GT] = ACTIONS(860), + [anon_sym_e_GT] = ACTIONS(860), + [anon_sym_o_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT] = ACTIONS(860), + [anon_sym_err_GT_GT] = ACTIONS(860), + [anon_sym_out_GT_GT] = ACTIONS(860), + [anon_sym_e_GT_GT] = ACTIONS(860), + [anon_sym_o_GT_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(860), + [aux_sym_unquoted_token1] = ACTIONS(862), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(864), + }, + [STATE(118)] = { + [sym_comment] = STATE(118), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(119)] = { + [sym_comment] = STATE(119), + [anon_sym_in] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_mod] = ACTIONS(791), + [anon_sym_SLASH_SLASH] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_bit_DASHshl] = ACTIONS(791), + [anon_sym_bit_DASHshr] = ACTIONS(791), + [anon_sym_EQ_TILDE] = ACTIONS(791), + [anon_sym_BANG_TILDE] = ACTIONS(791), + [anon_sym_like] = ACTIONS(791), + [anon_sym_not_DASHlike] = ACTIONS(791), + [anon_sym_bit_DASHand] = ACTIONS(791), + [anon_sym_bit_DASHxor] = ACTIONS(791), + [anon_sym_bit_DASHor] = ACTIONS(791), + [anon_sym_and] = ACTIONS(791), + [anon_sym_xor] = ACTIONS(791), + [anon_sym_or] = ACTIONS(791), + [anon_sym_in2] = ACTIONS(791), + [anon_sym_not_DASHin] = ACTIONS(791), + [anon_sym_has] = ACTIONS(791), + [anon_sym_not_DASHhas] = ACTIONS(791), + [anon_sym_starts_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), + [anon_sym_ends_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), + [anon_sym_EQ_EQ] = ACTIONS(791), + [anon_sym_BANG_EQ] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(791), + [aux_sym_cmd_identifier_token6] = ACTIONS(789), + [sym__newline] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_err_GT_PIPE] = ACTIONS(789), + [anon_sym_out_GT_PIPE] = ACTIONS(789), + [anon_sym_e_GT_PIPE] = ACTIONS(789), + [anon_sym_o_GT_PIPE] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(789), + [anon_sym_RBRACE] = ACTIONS(789), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(789), + [anon_sym_xor2] = ACTIONS(789), + [anon_sym_or2] = ACTIONS(789), + [anon_sym_not_DASHin2] = ACTIONS(789), + [anon_sym_has2] = ACTIONS(789), + [anon_sym_not_DASHhas2] = ACTIONS(789), + [anon_sym_starts_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), + [anon_sym_ends_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), + [anon_sym_EQ_EQ2] = ACTIONS(789), + [anon_sym_BANG_EQ2] = ACTIONS(789), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(789), + [anon_sym_GT_EQ2] = ACTIONS(789), + [anon_sym_EQ_TILDE2] = ACTIONS(789), + [anon_sym_BANG_TILDE2] = ACTIONS(789), + [anon_sym_like2] = ACTIONS(789), + [anon_sym_not_DASHlike2] = ACTIONS(789), + [anon_sym_STAR_STAR2] = ACTIONS(789), + [anon_sym_PLUS_PLUS2] = ACTIONS(789), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(789), + [anon_sym_SLASH_SLASH2] = ACTIONS(789), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(789), + [anon_sym_bit_DASHshr2] = ACTIONS(789), + [anon_sym_bit_DASHand2] = ACTIONS(789), + [anon_sym_bit_DASHxor2] = ACTIONS(789), + [anon_sym_bit_DASHor2] = ACTIONS(789), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_err_GT] = ACTIONS(789), + [anon_sym_out_GT] = ACTIONS(789), + [anon_sym_e_GT] = ACTIONS(789), + [anon_sym_o_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT] = ACTIONS(789), + [anon_sym_err_GT_GT] = ACTIONS(789), + [anon_sym_out_GT_GT] = ACTIONS(789), + [anon_sym_e_GT_GT] = ACTIONS(789), + [anon_sym_o_GT_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(789), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(120)] = { + [sym_comment] = STATE(120), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -53045,10 +53504,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(884), + [anon_sym_DOT] = ACTIONS(888), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(886), + [aux_sym__immediate_decimal_token5] = ACTIONS(890), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -53069,8 +53528,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(117)] = { - [sym_comment] = STATE(117), + [STATE(121)] = { + [sym_comment] = STATE(121), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -53154,7 +53613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(882), + [aux_sym__immediate_decimal_token5] = ACTIONS(797), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -53175,8 +53634,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(118)] = { - [sym_comment] = STATE(118), + [STATE(122)] = { + [sym_comment] = STATE(122), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -53214,7 +53673,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(749), [aux_sym_cmd_identifier_token6] = ACTIONS(747), [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), [anon_sym_PIPE] = ACTIONS(747), [anon_sym_err_GT_PIPE] = ACTIONS(747), [anon_sym_out_GT_PIPE] = ACTIONS(747), @@ -53224,7 +53682,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), @@ -53261,6 +53718,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token1] = ACTIONS(892), + [aux_sym__immediate_decimal_token5] = ACTIONS(894), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -53281,432 +53740,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(119)] = { - [sym_comment] = STATE(119), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(888), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(120)] = { - [sym_comment] = STATE(120), - [ts_builtin_sym_end] = ACTIONS(890), - [anon_sym_in] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_SLASH] = ACTIONS(894), - [anon_sym_mod] = ACTIONS(892), - [anon_sym_SLASH_SLASH] = ACTIONS(892), - [anon_sym_PLUS] = ACTIONS(894), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_bit_DASHshl] = ACTIONS(892), - [anon_sym_bit_DASHshr] = ACTIONS(892), - [anon_sym_EQ_TILDE] = ACTIONS(892), - [anon_sym_BANG_TILDE] = ACTIONS(892), - [anon_sym_like] = ACTIONS(892), - [anon_sym_not_DASHlike] = ACTIONS(892), - [anon_sym_bit_DASHand] = ACTIONS(892), - [anon_sym_bit_DASHxor] = ACTIONS(892), - [anon_sym_bit_DASHor] = ACTIONS(892), - [anon_sym_and] = ACTIONS(892), - [anon_sym_xor] = ACTIONS(892), - [anon_sym_or] = ACTIONS(892), - [anon_sym_in2] = ACTIONS(892), - [anon_sym_not_DASHin] = ACTIONS(892), - [anon_sym_has] = ACTIONS(892), - [anon_sym_not_DASHhas] = ACTIONS(892), - [anon_sym_starts_DASHwith] = ACTIONS(892), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(892), - [anon_sym_ends_DASHwith] = ACTIONS(892), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(892), - [anon_sym_EQ_EQ] = ACTIONS(892), - [anon_sym_BANG_EQ] = ACTIONS(892), - [anon_sym_LT] = ACTIONS(894), - [anon_sym_LT_EQ] = ACTIONS(892), - [anon_sym_GT] = ACTIONS(894), - [anon_sym_GT_EQ] = ACTIONS(892), - [aux_sym_cmd_identifier_token6] = ACTIONS(896), - [sym__newline] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_err_GT_PIPE] = ACTIONS(793), - [anon_sym_out_GT_PIPE] = ACTIONS(793), - [anon_sym_e_GT_PIPE] = ACTIONS(793), - [anon_sym_o_GT_PIPE] = ACTIONS(793), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(793), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(793), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(793), - [anon_sym_GT2] = ACTIONS(793), - [anon_sym_DASH2] = ACTIONS(793), - [anon_sym_STAR2] = ACTIONS(793), - [anon_sym_and2] = ACTIONS(793), - [anon_sym_xor2] = ACTIONS(793), - [anon_sym_or2] = ACTIONS(793), - [anon_sym_not_DASHin2] = ACTIONS(793), - [anon_sym_has2] = ACTIONS(793), - [anon_sym_not_DASHhas2] = ACTIONS(793), - [anon_sym_starts_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), - [anon_sym_ends_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), - [anon_sym_EQ_EQ2] = ACTIONS(793), - [anon_sym_BANG_EQ2] = ACTIONS(793), - [anon_sym_LT2] = ACTIONS(793), - [anon_sym_LT_EQ2] = ACTIONS(793), - [anon_sym_GT_EQ2] = ACTIONS(793), - [anon_sym_EQ_TILDE2] = ACTIONS(793), - [anon_sym_BANG_TILDE2] = ACTIONS(793), - [anon_sym_like2] = ACTIONS(793), - [anon_sym_not_DASHlike2] = ACTIONS(793), - [anon_sym_STAR_STAR2] = ACTIONS(793), - [anon_sym_PLUS_PLUS2] = ACTIONS(793), - [anon_sym_SLASH2] = ACTIONS(793), - [anon_sym_mod2] = ACTIONS(793), - [anon_sym_SLASH_SLASH2] = ACTIONS(793), - [anon_sym_PLUS2] = ACTIONS(793), - [anon_sym_bit_DASHshl2] = ACTIONS(793), - [anon_sym_bit_DASHshr2] = ACTIONS(793), - [anon_sym_bit_DASHand2] = ACTIONS(793), - [anon_sym_bit_DASHxor2] = ACTIONS(793), - [anon_sym_bit_DASHor2] = ACTIONS(793), - [anon_sym_DOT_DOT2] = ACTIONS(898), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(900), - [anon_sym_DOT_DOT_LT2] = ACTIONS(900), - [sym_filesize_unit] = ACTIONS(902), - [sym_duration_unit] = ACTIONS(904), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [anon_sym_err_GT_GT] = ACTIONS(793), - [anon_sym_out_GT_GT] = ACTIONS(793), - [anon_sym_e_GT_GT] = ACTIONS(793), - [anon_sym_o_GT_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(121)] = { - [sym_comment] = STATE(121), - [anon_sym_in] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(906), - [anon_sym_PLUS_PLUS] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(908), - [anon_sym_SLASH] = ACTIONS(908), - [anon_sym_mod] = ACTIONS(906), - [anon_sym_SLASH_SLASH] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_bit_DASHshl] = ACTIONS(906), - [anon_sym_bit_DASHshr] = ACTIONS(906), - [anon_sym_EQ_TILDE] = ACTIONS(906), - [anon_sym_BANG_TILDE] = ACTIONS(906), - [anon_sym_like] = ACTIONS(906), - [anon_sym_not_DASHlike] = ACTIONS(906), - [anon_sym_bit_DASHand] = ACTIONS(906), - [anon_sym_bit_DASHxor] = ACTIONS(906), - [anon_sym_bit_DASHor] = ACTIONS(906), - [anon_sym_and] = ACTIONS(906), - [anon_sym_xor] = ACTIONS(906), - [anon_sym_or] = ACTIONS(906), - [anon_sym_in2] = ACTIONS(906), - [anon_sym_not_DASHin] = ACTIONS(906), - [anon_sym_has] = ACTIONS(906), - [anon_sym_not_DASHhas] = ACTIONS(906), - [anon_sym_starts_DASHwith] = ACTIONS(906), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(906), - [anon_sym_ends_DASHwith] = ACTIONS(906), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(906), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(906), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_GT_EQ] = ACTIONS(906), - [aux_sym_cmd_identifier_token6] = ACTIONS(910), - [sym__newline] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_err_GT_PIPE] = ACTIONS(793), - [anon_sym_out_GT_PIPE] = ACTIONS(793), - [anon_sym_e_GT_PIPE] = ACTIONS(793), - [anon_sym_o_GT_PIPE] = ACTIONS(793), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(793), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(793), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(793), - [anon_sym_GT2] = ACTIONS(793), - [anon_sym_DASH2] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_STAR2] = ACTIONS(793), - [anon_sym_and2] = ACTIONS(793), - [anon_sym_xor2] = ACTIONS(793), - [anon_sym_or2] = ACTIONS(793), - [anon_sym_not_DASHin2] = ACTIONS(793), - [anon_sym_has2] = ACTIONS(793), - [anon_sym_not_DASHhas2] = ACTIONS(793), - [anon_sym_starts_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), - [anon_sym_ends_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), - [anon_sym_EQ_EQ2] = ACTIONS(793), - [anon_sym_BANG_EQ2] = ACTIONS(793), - [anon_sym_LT2] = ACTIONS(793), - [anon_sym_LT_EQ2] = ACTIONS(793), - [anon_sym_GT_EQ2] = ACTIONS(793), - [anon_sym_EQ_TILDE2] = ACTIONS(793), - [anon_sym_BANG_TILDE2] = ACTIONS(793), - [anon_sym_like2] = ACTIONS(793), - [anon_sym_not_DASHlike2] = ACTIONS(793), - [anon_sym_STAR_STAR2] = ACTIONS(793), - [anon_sym_PLUS_PLUS2] = ACTIONS(793), - [anon_sym_SLASH2] = ACTIONS(793), - [anon_sym_mod2] = ACTIONS(793), - [anon_sym_SLASH_SLASH2] = ACTIONS(793), - [anon_sym_PLUS2] = ACTIONS(793), - [anon_sym_bit_DASHshl2] = ACTIONS(793), - [anon_sym_bit_DASHshr2] = ACTIONS(793), - [anon_sym_bit_DASHand2] = ACTIONS(793), - [anon_sym_bit_DASHxor2] = ACTIONS(793), - [anon_sym_bit_DASHor2] = ACTIONS(793), - [anon_sym_DOT_DOT2] = ACTIONS(801), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(803), - [anon_sym_DOT_DOT_LT2] = ACTIONS(803), - [sym_filesize_unit] = ACTIONS(912), - [sym_duration_unit] = ACTIONS(914), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [anon_sym_err_GT_GT] = ACTIONS(793), - [anon_sym_out_GT_GT] = ACTIONS(793), - [anon_sym_e_GT_GT] = ACTIONS(793), - [anon_sym_o_GT_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(122)] = { - [sym_comment] = STATE(122), - [ts_builtin_sym_end] = ACTIONS(876), - [anon_sym_in] = ACTIONS(874), - [anon_sym_STAR_STAR] = ACTIONS(876), - [anon_sym_PLUS_PLUS] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_mod] = ACTIONS(876), - [anon_sym_SLASH_SLASH] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_DASH] = ACTIONS(876), - [anon_sym_bit_DASHshl] = ACTIONS(876), - [anon_sym_bit_DASHshr] = ACTIONS(876), - [anon_sym_EQ_TILDE] = ACTIONS(876), - [anon_sym_BANG_TILDE] = ACTIONS(876), - [anon_sym_like] = ACTIONS(876), - [anon_sym_not_DASHlike] = ACTIONS(876), - [anon_sym_bit_DASHand] = ACTIONS(876), - [anon_sym_bit_DASHxor] = ACTIONS(876), - [anon_sym_bit_DASHor] = ACTIONS(876), - [anon_sym_and] = ACTIONS(876), - [anon_sym_xor] = ACTIONS(876), - [anon_sym_or] = ACTIONS(876), - [anon_sym_in2] = ACTIONS(876), - [anon_sym_not_DASHin] = ACTIONS(876), - [anon_sym_has] = ACTIONS(876), - [anon_sym_not_DASHhas] = ACTIONS(876), - [anon_sym_starts_DASHwith] = ACTIONS(876), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(876), - [anon_sym_ends_DASHwith] = ACTIONS(876), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_BANG_EQ] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_EQ] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_GT_EQ] = ACTIONS(876), - [aux_sym_cmd_identifier_token6] = ACTIONS(874), - [sym__newline] = ACTIONS(874), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_err_GT_PIPE] = ACTIONS(874), - [anon_sym_out_GT_PIPE] = ACTIONS(874), - [anon_sym_e_GT_PIPE] = ACTIONS(874), - [anon_sym_o_GT_PIPE] = ACTIONS(874), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(874), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(874), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(874), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(874), - [anon_sym_GT2] = ACTIONS(874), - [anon_sym_DASH2] = ACTIONS(874), - [anon_sym_STAR2] = ACTIONS(874), - [anon_sym_and2] = ACTIONS(874), - [anon_sym_xor2] = ACTIONS(874), - [anon_sym_or2] = ACTIONS(874), - [anon_sym_not_DASHin2] = ACTIONS(874), - [anon_sym_has2] = ACTIONS(874), - [anon_sym_not_DASHhas2] = ACTIONS(874), - [anon_sym_starts_DASHwith2] = ACTIONS(874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(874), - [anon_sym_ends_DASHwith2] = ACTIONS(874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(874), - [anon_sym_EQ_EQ2] = ACTIONS(874), - [anon_sym_BANG_EQ2] = ACTIONS(874), - [anon_sym_LT2] = ACTIONS(874), - [anon_sym_LT_EQ2] = ACTIONS(874), - [anon_sym_GT_EQ2] = ACTIONS(874), - [anon_sym_EQ_TILDE2] = ACTIONS(874), - [anon_sym_BANG_TILDE2] = ACTIONS(874), - [anon_sym_like2] = ACTIONS(874), - [anon_sym_not_DASHlike2] = ACTIONS(874), - [anon_sym_STAR_STAR2] = ACTIONS(874), - [anon_sym_PLUS_PLUS2] = ACTIONS(874), - [anon_sym_SLASH2] = ACTIONS(874), - [anon_sym_mod2] = ACTIONS(874), - [anon_sym_SLASH_SLASH2] = ACTIONS(874), - [anon_sym_PLUS2] = ACTIONS(874), - [anon_sym_bit_DASHshl2] = ACTIONS(874), - [anon_sym_bit_DASHshr2] = ACTIONS(874), - [anon_sym_bit_DASHand2] = ACTIONS(874), - [anon_sym_bit_DASHxor2] = ACTIONS(874), - [anon_sym_bit_DASHor2] = ACTIONS(874), - [anon_sym_DOT_DOT2] = ACTIONS(874), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), - [anon_sym_DOT_DOT_LT2] = ACTIONS(876), - [sym_filesize_unit] = ACTIONS(874), - [sym_duration_unit] = ACTIONS(876), - [anon_sym_err_GT] = ACTIONS(874), - [anon_sym_out_GT] = ACTIONS(874), - [anon_sym_e_GT] = ACTIONS(874), - [anon_sym_o_GT] = ACTIONS(874), - [anon_sym_err_PLUSout_GT] = ACTIONS(874), - [anon_sym_out_PLUSerr_GT] = ACTIONS(874), - [anon_sym_o_PLUSe_GT] = ACTIONS(874), - [anon_sym_e_PLUSo_GT] = ACTIONS(874), - [anon_sym_err_GT_GT] = ACTIONS(874), - [anon_sym_out_GT_GT] = ACTIONS(874), - [anon_sym_e_GT_GT] = ACTIONS(874), - [anon_sym_o_GT_GT] = ACTIONS(874), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(874), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(874), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(874), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(874), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(123)] = { [sym_comment] = STATE(123), + [ts_builtin_sym_end] = ACTIONS(757), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(124)] = { + [sym_comment] = STATE(124), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -53754,9 +53895,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), [anon_sym_and2] = ACTIONS(747), [anon_sym_xor2] = ACTIONS(747), @@ -53811,432 +53952,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(124)] = { - [sym_comment] = STATE(124), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_RPAREN] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(125)] = { [sym_comment] = STATE(125), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token5] = ACTIONS(896), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), [anon_sym_POUND] = ACTIONS(103), }, [STATE(126)] = { [sym_comment] = STATE(126), - [anon_sym_in] = ACTIONS(874), - [anon_sym_STAR_STAR] = ACTIONS(876), - [anon_sym_PLUS_PLUS] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_mod] = ACTIONS(876), - [anon_sym_SLASH_SLASH] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_DASH] = ACTIONS(876), - [anon_sym_bit_DASHshl] = ACTIONS(876), - [anon_sym_bit_DASHshr] = ACTIONS(876), - [anon_sym_EQ_TILDE] = ACTIONS(876), - [anon_sym_BANG_TILDE] = ACTIONS(876), - [anon_sym_like] = ACTIONS(876), - [anon_sym_not_DASHlike] = ACTIONS(876), - [anon_sym_bit_DASHand] = ACTIONS(876), - [anon_sym_bit_DASHxor] = ACTIONS(876), - [anon_sym_bit_DASHor] = ACTIONS(876), - [anon_sym_and] = ACTIONS(876), - [anon_sym_xor] = ACTIONS(876), - [anon_sym_or] = ACTIONS(876), - [anon_sym_in2] = ACTIONS(876), - [anon_sym_not_DASHin] = ACTIONS(876), - [anon_sym_has] = ACTIONS(876), - [anon_sym_not_DASHhas] = ACTIONS(876), - [anon_sym_starts_DASHwith] = ACTIONS(876), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(876), - [anon_sym_ends_DASHwith] = ACTIONS(876), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_BANG_EQ] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_EQ] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_GT_EQ] = ACTIONS(876), - [aux_sym_cmd_identifier_token6] = ACTIONS(874), - [sym__newline] = ACTIONS(874), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_err_GT_PIPE] = ACTIONS(874), - [anon_sym_out_GT_PIPE] = ACTIONS(874), - [anon_sym_e_GT_PIPE] = ACTIONS(874), - [anon_sym_o_GT_PIPE] = ACTIONS(874), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(874), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(874), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(874), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(874), - [anon_sym_GT2] = ACTIONS(874), - [anon_sym_DASH2] = ACTIONS(874), - [anon_sym_RBRACE] = ACTIONS(874), - [anon_sym_STAR2] = ACTIONS(874), - [anon_sym_and2] = ACTIONS(874), - [anon_sym_xor2] = ACTIONS(874), - [anon_sym_or2] = ACTIONS(874), - [anon_sym_not_DASHin2] = ACTIONS(874), - [anon_sym_has2] = ACTIONS(874), - [anon_sym_not_DASHhas2] = ACTIONS(874), - [anon_sym_starts_DASHwith2] = ACTIONS(874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(874), - [anon_sym_ends_DASHwith2] = ACTIONS(874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(874), - [anon_sym_EQ_EQ2] = ACTIONS(874), - [anon_sym_BANG_EQ2] = ACTIONS(874), - [anon_sym_LT2] = ACTIONS(874), - [anon_sym_LT_EQ2] = ACTIONS(874), - [anon_sym_GT_EQ2] = ACTIONS(874), - [anon_sym_EQ_TILDE2] = ACTIONS(874), - [anon_sym_BANG_TILDE2] = ACTIONS(874), - [anon_sym_like2] = ACTIONS(874), - [anon_sym_not_DASHlike2] = ACTIONS(874), - [anon_sym_STAR_STAR2] = ACTIONS(874), - [anon_sym_PLUS_PLUS2] = ACTIONS(874), - [anon_sym_SLASH2] = ACTIONS(874), - [anon_sym_mod2] = ACTIONS(874), - [anon_sym_SLASH_SLASH2] = ACTIONS(874), - [anon_sym_PLUS2] = ACTIONS(874), - [anon_sym_bit_DASHshl2] = ACTIONS(874), - [anon_sym_bit_DASHshr2] = ACTIONS(874), - [anon_sym_bit_DASHand2] = ACTIONS(874), - [anon_sym_bit_DASHxor2] = ACTIONS(874), - [anon_sym_bit_DASHor2] = ACTIONS(874), - [anon_sym_DOT_DOT2] = ACTIONS(874), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), - [anon_sym_DOT_DOT_LT2] = ACTIONS(876), - [sym_filesize_unit] = ACTIONS(874), - [sym_duration_unit] = ACTIONS(876), - [anon_sym_err_GT] = ACTIONS(874), - [anon_sym_out_GT] = ACTIONS(874), - [anon_sym_e_GT] = ACTIONS(874), - [anon_sym_o_GT] = ACTIONS(874), - [anon_sym_err_PLUSout_GT] = ACTIONS(874), - [anon_sym_out_PLUSerr_GT] = ACTIONS(874), - [anon_sym_o_PLUSe_GT] = ACTIONS(874), - [anon_sym_e_PLUSo_GT] = ACTIONS(874), - [anon_sym_err_GT_GT] = ACTIONS(874), - [anon_sym_out_GT_GT] = ACTIONS(874), - [anon_sym_e_GT_GT] = ACTIONS(874), - [anon_sym_o_GT_GT] = ACTIONS(874), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(874), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(874), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(874), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(874), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(127)] = { - [sym_comment] = STATE(127), - [anon_sym_in] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(906), - [anon_sym_PLUS_PLUS] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(908), - [anon_sym_SLASH] = ACTIONS(908), - [anon_sym_mod] = ACTIONS(906), - [anon_sym_SLASH_SLASH] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_bit_DASHshl] = ACTIONS(906), - [anon_sym_bit_DASHshr] = ACTIONS(906), - [anon_sym_EQ_TILDE] = ACTIONS(906), - [anon_sym_BANG_TILDE] = ACTIONS(906), - [anon_sym_like] = ACTIONS(906), - [anon_sym_not_DASHlike] = ACTIONS(906), - [anon_sym_bit_DASHand] = ACTIONS(906), - [anon_sym_bit_DASHxor] = ACTIONS(906), - [anon_sym_bit_DASHor] = ACTIONS(906), - [anon_sym_and] = ACTIONS(906), - [anon_sym_xor] = ACTIONS(906), - [anon_sym_or] = ACTIONS(906), - [anon_sym_in2] = ACTIONS(906), - [anon_sym_not_DASHin] = ACTIONS(906), - [anon_sym_has] = ACTIONS(906), - [anon_sym_not_DASHhas] = ACTIONS(906), - [anon_sym_starts_DASHwith] = ACTIONS(906), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(906), - [anon_sym_ends_DASHwith] = ACTIONS(906), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(906), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(906), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_GT_EQ] = ACTIONS(906), - [aux_sym_cmd_identifier_token6] = ACTIONS(910), - [sym__newline] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_err_GT_PIPE] = ACTIONS(793), - [anon_sym_out_GT_PIPE] = ACTIONS(793), - [anon_sym_e_GT_PIPE] = ACTIONS(793), - [anon_sym_o_GT_PIPE] = ACTIONS(793), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(793), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(793), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(793), - [anon_sym_GT2] = ACTIONS(793), - [anon_sym_DASH2] = ACTIONS(793), - [anon_sym_STAR2] = ACTIONS(793), - [anon_sym_and2] = ACTIONS(793), - [anon_sym_xor2] = ACTIONS(793), - [anon_sym_or2] = ACTIONS(793), - [anon_sym_not_DASHin2] = ACTIONS(793), - [anon_sym_has2] = ACTIONS(793), - [anon_sym_not_DASHhas2] = ACTIONS(793), - [anon_sym_starts_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), - [anon_sym_ends_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), - [anon_sym_EQ_EQ2] = ACTIONS(793), - [anon_sym_BANG_EQ2] = ACTIONS(793), - [anon_sym_LT2] = ACTIONS(793), - [anon_sym_LT_EQ2] = ACTIONS(793), - [anon_sym_GT_EQ2] = ACTIONS(793), - [anon_sym_EQ_TILDE2] = ACTIONS(793), - [anon_sym_BANG_TILDE2] = ACTIONS(793), - [anon_sym_like2] = ACTIONS(793), - [anon_sym_not_DASHlike2] = ACTIONS(793), - [anon_sym_STAR_STAR2] = ACTIONS(793), - [anon_sym_PLUS_PLUS2] = ACTIONS(793), - [anon_sym_SLASH2] = ACTIONS(793), - [anon_sym_mod2] = ACTIONS(793), - [anon_sym_SLASH_SLASH2] = ACTIONS(793), - [anon_sym_PLUS2] = ACTIONS(793), - [anon_sym_bit_DASHshl2] = ACTIONS(793), - [anon_sym_bit_DASHshr2] = ACTIONS(793), - [anon_sym_bit_DASHand2] = ACTIONS(793), - [anon_sym_bit_DASHxor2] = ACTIONS(793), - [anon_sym_bit_DASHor2] = ACTIONS(793), - [anon_sym_DOT_DOT2] = ACTIONS(801), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(803), - [anon_sym_DOT_DOT_LT2] = ACTIONS(803), - [sym_filesize_unit] = ACTIONS(916), - [sym_duration_unit] = ACTIONS(918), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [anon_sym_err_GT_GT] = ACTIONS(793), - [anon_sym_out_GT_GT] = ACTIONS(793), - [anon_sym_e_GT_GT] = ACTIONS(793), - [anon_sym_o_GT_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(128)] = { - [sym_comment] = STATE(128), [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), @@ -54341,217 +54164,429 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(127)] = { + [sym_comment] = STATE(127), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(900), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_mod] = ACTIONS(898), + [anon_sym_SLASH_SLASH] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(900), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_bit_DASHshl] = ACTIONS(898), + [anon_sym_bit_DASHshr] = ACTIONS(898), + [anon_sym_EQ_TILDE] = ACTIONS(898), + [anon_sym_BANG_TILDE] = ACTIONS(898), + [anon_sym_like] = ACTIONS(898), + [anon_sym_not_DASHlike] = ACTIONS(898), + [anon_sym_bit_DASHand] = ACTIONS(898), + [anon_sym_bit_DASHxor] = ACTIONS(898), + [anon_sym_bit_DASHor] = ACTIONS(898), + [anon_sym_and] = ACTIONS(898), + [anon_sym_xor] = ACTIONS(898), + [anon_sym_or] = ACTIONS(898), + [anon_sym_in2] = ACTIONS(898), + [anon_sym_not_DASHin] = ACTIONS(898), + [anon_sym_has] = ACTIONS(898), + [anon_sym_not_DASHhas] = ACTIONS(898), + [anon_sym_starts_DASHwith] = ACTIONS(898), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(898), + [anon_sym_ends_DASHwith] = ACTIONS(898), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(898), + [anon_sym_EQ_EQ] = ACTIONS(898), + [anon_sym_BANG_EQ] = ACTIONS(898), + [anon_sym_LT] = ACTIONS(900), + [anon_sym_LT_EQ] = ACTIONS(898), + [anon_sym_GT] = ACTIONS(900), + [anon_sym_GT_EQ] = ACTIONS(898), + [aux_sym_cmd_identifier_token6] = ACTIONS(902), + [sym__newline] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_RPAREN] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(904), + [sym_duration_unit] = ACTIONS(906), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(866), + [anon_sym_out_GT_GT] = ACTIONS(866), + [anon_sym_e_GT_GT] = ACTIONS(866), + [anon_sym_o_GT_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(866), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(128)] = { + [sym_comment] = STATE(128), + [anon_sym_in] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_mod] = ACTIONS(791), + [anon_sym_SLASH_SLASH] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_bit_DASHshl] = ACTIONS(791), + [anon_sym_bit_DASHshr] = ACTIONS(791), + [anon_sym_EQ_TILDE] = ACTIONS(791), + [anon_sym_BANG_TILDE] = ACTIONS(791), + [anon_sym_like] = ACTIONS(791), + [anon_sym_not_DASHlike] = ACTIONS(791), + [anon_sym_bit_DASHand] = ACTIONS(791), + [anon_sym_bit_DASHxor] = ACTIONS(791), + [anon_sym_bit_DASHor] = ACTIONS(791), + [anon_sym_and] = ACTIONS(791), + [anon_sym_xor] = ACTIONS(791), + [anon_sym_or] = ACTIONS(791), + [anon_sym_in2] = ACTIONS(791), + [anon_sym_not_DASHin] = ACTIONS(791), + [anon_sym_has] = ACTIONS(791), + [anon_sym_not_DASHhas] = ACTIONS(791), + [anon_sym_starts_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), + [anon_sym_ends_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), + [anon_sym_EQ_EQ] = ACTIONS(791), + [anon_sym_BANG_EQ] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(791), + [aux_sym_cmd_identifier_token6] = ACTIONS(789), + [sym__newline] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_err_GT_PIPE] = ACTIONS(789), + [anon_sym_out_GT_PIPE] = ACTIONS(789), + [anon_sym_e_GT_PIPE] = ACTIONS(789), + [anon_sym_o_GT_PIPE] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), + [anon_sym_RPAREN] = ACTIONS(789), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(789), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(789), + [anon_sym_xor2] = ACTIONS(789), + [anon_sym_or2] = ACTIONS(789), + [anon_sym_not_DASHin2] = ACTIONS(789), + [anon_sym_has2] = ACTIONS(789), + [anon_sym_not_DASHhas2] = ACTIONS(789), + [anon_sym_starts_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), + [anon_sym_ends_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), + [anon_sym_EQ_EQ2] = ACTIONS(789), + [anon_sym_BANG_EQ2] = ACTIONS(789), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(789), + [anon_sym_GT_EQ2] = ACTIONS(789), + [anon_sym_EQ_TILDE2] = ACTIONS(789), + [anon_sym_BANG_TILDE2] = ACTIONS(789), + [anon_sym_like2] = ACTIONS(789), + [anon_sym_not_DASHlike2] = ACTIONS(789), + [anon_sym_STAR_STAR2] = ACTIONS(789), + [anon_sym_PLUS_PLUS2] = ACTIONS(789), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(789), + [anon_sym_SLASH_SLASH2] = ACTIONS(789), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(789), + [anon_sym_bit_DASHshr2] = ACTIONS(789), + [anon_sym_bit_DASHand2] = ACTIONS(789), + [anon_sym_bit_DASHxor2] = ACTIONS(789), + [anon_sym_bit_DASHor2] = ACTIONS(789), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_err_GT] = ACTIONS(789), + [anon_sym_out_GT] = ACTIONS(789), + [anon_sym_e_GT] = ACTIONS(789), + [anon_sym_o_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT] = ACTIONS(789), + [anon_sym_err_GT_GT] = ACTIONS(789), + [anon_sym_out_GT_GT] = ACTIONS(789), + [anon_sym_e_GT_GT] = ACTIONS(789), + [anon_sym_o_GT_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(789), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(129)] = { [sym_comment] = STATE(129), - [ts_builtin_sym_end] = ACTIONS(773), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [ts_builtin_sym_end] = ACTIONS(908), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(910), + [anon_sym_PLUS_PLUS] = ACTIONS(910), + [anon_sym_STAR] = ACTIONS(912), + [anon_sym_SLASH] = ACTIONS(912), + [anon_sym_mod] = ACTIONS(910), + [anon_sym_SLASH_SLASH] = ACTIONS(910), + [anon_sym_PLUS] = ACTIONS(912), + [anon_sym_DASH] = ACTIONS(910), + [anon_sym_bit_DASHshl] = ACTIONS(910), + [anon_sym_bit_DASHshr] = ACTIONS(910), + [anon_sym_EQ_TILDE] = ACTIONS(910), + [anon_sym_BANG_TILDE] = ACTIONS(910), + [anon_sym_like] = ACTIONS(910), + [anon_sym_not_DASHlike] = ACTIONS(910), + [anon_sym_bit_DASHand] = ACTIONS(910), + [anon_sym_bit_DASHxor] = ACTIONS(910), + [anon_sym_bit_DASHor] = ACTIONS(910), + [anon_sym_and] = ACTIONS(910), + [anon_sym_xor] = ACTIONS(910), + [anon_sym_or] = ACTIONS(910), + [anon_sym_in2] = ACTIONS(910), + [anon_sym_not_DASHin] = ACTIONS(910), + [anon_sym_has] = ACTIONS(910), + [anon_sym_not_DASHhas] = ACTIONS(910), + [anon_sym_starts_DASHwith] = ACTIONS(910), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(910), + [anon_sym_ends_DASHwith] = ACTIONS(910), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(910), + [anon_sym_EQ_EQ] = ACTIONS(910), + [anon_sym_BANG_EQ] = ACTIONS(910), + [anon_sym_LT] = ACTIONS(912), + [anon_sym_LT_EQ] = ACTIONS(910), + [anon_sym_GT] = ACTIONS(912), + [anon_sym_GT_EQ] = ACTIONS(910), + [aux_sym_cmd_identifier_token6] = ACTIONS(914), + [sym__newline] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(916), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(918), + [anon_sym_DOT_DOT_LT2] = ACTIONS(918), + [sym_filesize_unit] = ACTIONS(920), + [sym_duration_unit] = ACTIONS(922), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(866), + [anon_sym_out_GT_GT] = ACTIONS(866), + [anon_sym_e_GT_GT] = ACTIONS(866), + [anon_sym_o_GT_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(866), [anon_sym_POUND] = ACTIONS(103), }, [STATE(130)] = { - [sym_expr_parenthesized] = STATE(2724), - [sym__spread_parenthesized] = STATE(3194), - [sym_val_range] = STATE(3128), - [sym__val_range] = STATE(4611), - [sym__value] = STATE(3128), - [sym_val_nothing] = STATE(3144), - [sym_val_bool] = STATE(2897), - [sym__spread_variable] = STATE(3139), - [sym_val_variable] = STATE(2824), - [sym_val_cellpath] = STATE(3144), - [sym_val_number] = STATE(3144), - [sym__val_number_decimal] = STATE(2446), - [sym__val_number] = STATE(3146), - [sym_val_duration] = STATE(3144), - [sym_val_filesize] = STATE(3144), - [sym_val_binary] = STATE(3144), - [sym_val_string] = STATE(3144), - [sym__raw_str] = STATE(2543), - [sym__str_double_quotes] = STATE(2543), - [sym__str_single_quotes] = STATE(2543), - [sym__str_back_ticks] = STATE(2543), - [sym_val_interpolated] = STATE(3144), - [sym__inter_single_quotes] = STATE(3261), - [sym__inter_double_quotes] = STATE(3262), - [sym_val_list] = STATE(3144), - [sym__spread_list] = STATE(3194), - [sym_val_record] = STATE(3144), - [sym_val_table] = STATE(3144), - [sym_val_closure] = STATE(3144), - [sym__cmd_arg] = STATE(3160), - [sym_redirection] = STATE(3165), - [sym__flag] = STATE(3167), - [sym_short_flag] = STATE(3180), - [sym_long_flag] = STATE(3180), - [sym_unquoted] = STATE(2925), - [sym__unquoted_with_expr] = STATE(3147), - [sym__unquoted_anonymous_prefix] = STATE(4611), [sym_comment] = STATE(130), - [ts_builtin_sym_end] = ACTIONS(872), - [anon_sym_true] = ACTIONS(920), - [anon_sym_false] = ACTIONS(920), - [anon_sym_null] = ACTIONS(922), - [aux_sym_cmd_identifier_token3] = ACTIONS(924), - [aux_sym_cmd_identifier_token4] = ACTIONS(924), - [aux_sym_cmd_identifier_token5] = ACTIONS(924), - [sym__newline] = ACTIONS(818), - [sym__space] = ACTIONS(872), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_PIPE] = ACTIONS(818), - [anon_sym_err_GT_PIPE] = ACTIONS(818), - [anon_sym_out_GT_PIPE] = ACTIONS(818), - [anon_sym_e_GT_PIPE] = ACTIONS(818), - [anon_sym_o_GT_PIPE] = ACTIONS(818), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(818), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(818), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(818), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(926), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_DOLLAR] = ACTIONS(930), - [anon_sym_DASH_DASH] = ACTIONS(932), - [anon_sym_DASH2] = ACTIONS(934), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(938), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(940), - [anon_sym_DOT_DOT_EQ] = ACTIONS(942), - [anon_sym_DOT_DOT_LT] = ACTIONS(942), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(944), - [aux_sym__val_number_decimal_token1] = ACTIONS(946), - [aux_sym__val_number_decimal_token2] = ACTIONS(946), - [aux_sym__val_number_decimal_token3] = ACTIONS(948), - [aux_sym__val_number_decimal_token4] = ACTIONS(948), - [aux_sym__val_number_token1] = ACTIONS(950), - [aux_sym__val_number_token2] = ACTIONS(950), - [aux_sym__val_number_token3] = ACTIONS(950), - [anon_sym_0b] = ACTIONS(952), - [anon_sym_0o] = ACTIONS(954), - [anon_sym_0x] = ACTIONS(954), - [sym_val_date] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [anon_sym_SQUOTE] = ACTIONS(960), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(964), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(970), - [anon_sym_out_GT] = ACTIONS(970), - [anon_sym_e_GT] = ACTIONS(970), - [anon_sym_o_GT] = ACTIONS(970), - [anon_sym_err_PLUSout_GT] = ACTIONS(970), - [anon_sym_out_PLUSerr_GT] = ACTIONS(970), - [anon_sym_o_PLUSe_GT] = ACTIONS(970), - [anon_sym_e_PLUSo_GT] = ACTIONS(970), - [anon_sym_err_GT_GT] = ACTIONS(970), - [anon_sym_out_GT_GT] = ACTIONS(970), - [anon_sym_e_GT_GT] = ACTIONS(970), - [anon_sym_o_GT_GT] = ACTIONS(970), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(970), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(970), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(970), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(970), - [aux_sym_unquoted_token1] = ACTIONS(972), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_RPAREN] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(974), }, [STATE(131)] = { [sym_comment] = STATE(131), @@ -54592,6 +54627,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(749), [aux_sym_cmd_identifier_token6] = ACTIONS(747), [sym__newline] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), [anon_sym_PIPE] = ACTIONS(747), [anon_sym_err_GT_PIPE] = ACTIONS(747), [anon_sym_out_GT_PIPE] = ACTIONS(747), @@ -54603,6 +54639,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), [anon_sym_and2] = ACTIONS(747), [anon_sym_xor2] = ACTIONS(747), @@ -54637,8 +54674,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(976), - [aux_sym__immediate_decimal_token5] = ACTIONS(978), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_err_GT] = ACTIONS(747), @@ -54660,197 +54695,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), }, [STATE(132)] = { + [sym_expr_parenthesized] = STATE(2783), + [sym__spread_parenthesized] = STATE(3225), + [sym_val_range] = STATE(3227), + [sym__val_range] = STATE(4603), + [sym__value] = STATE(3227), + [sym_val_nothing] = STATE(3215), + [sym_val_bool] = STATE(2940), + [sym__spread_variable] = STATE(3243), + [sym_val_variable] = STATE(2761), + [sym_val_cellpath] = STATE(3215), + [sym_val_number] = STATE(3215), + [sym__val_number_decimal] = STATE(2462), + [sym__val_number] = STATE(3231), + [sym_val_duration] = STATE(3215), + [sym_val_filesize] = STATE(3215), + [sym_val_binary] = STATE(3215), + [sym_val_string] = STATE(3215), + [sym__raw_str] = STATE(2536), + [sym__str_double_quotes] = STATE(2536), + [sym__str_single_quotes] = STATE(2536), + [sym__str_back_ticks] = STATE(2536), + [sym_val_interpolated] = STATE(3215), + [sym__inter_single_quotes] = STATE(3250), + [sym__inter_double_quotes] = STATE(3253), + [sym_val_list] = STATE(3215), + [sym__spread_list] = STATE(3225), + [sym_val_record] = STATE(3215), + [sym_val_table] = STATE(3215), + [sym_val_closure] = STATE(3215), + [sym__cmd_arg] = STATE(3254), + [sym_redirection] = STATE(3265), + [sym__flag] = STATE(3258), + [sym_short_flag] = STATE(3203), + [sym_long_flag] = STATE(3203), + [sym_unquoted] = STATE(2927), + [sym__unquoted_with_expr] = STATE(3204), + [sym__unquoted_anonymous_prefix] = STATE(4603), [sym_comment] = STATE(132), - [anon_sym_in] = ACTIONS(874), - [anon_sym_STAR_STAR] = ACTIONS(876), - [anon_sym_PLUS_PLUS] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_mod] = ACTIONS(876), - [anon_sym_SLASH_SLASH] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_DASH] = ACTIONS(876), - [anon_sym_bit_DASHshl] = ACTIONS(876), - [anon_sym_bit_DASHshr] = ACTIONS(876), - [anon_sym_EQ_TILDE] = ACTIONS(876), - [anon_sym_BANG_TILDE] = ACTIONS(876), - [anon_sym_like] = ACTIONS(876), - [anon_sym_not_DASHlike] = ACTIONS(876), - [anon_sym_bit_DASHand] = ACTIONS(876), - [anon_sym_bit_DASHxor] = ACTIONS(876), - [anon_sym_bit_DASHor] = ACTIONS(876), - [anon_sym_and] = ACTIONS(876), - [anon_sym_xor] = ACTIONS(876), - [anon_sym_or] = ACTIONS(876), - [anon_sym_in2] = ACTIONS(876), - [anon_sym_not_DASHin] = ACTIONS(876), - [anon_sym_has] = ACTIONS(876), - [anon_sym_not_DASHhas] = ACTIONS(876), - [anon_sym_starts_DASHwith] = ACTIONS(876), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(876), - [anon_sym_ends_DASHwith] = ACTIONS(876), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_BANG_EQ] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_EQ] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_GT_EQ] = ACTIONS(876), - [aux_sym_cmd_identifier_token6] = ACTIONS(874), - [sym__newline] = ACTIONS(874), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_err_GT_PIPE] = ACTIONS(874), - [anon_sym_out_GT_PIPE] = ACTIONS(874), - [anon_sym_e_GT_PIPE] = ACTIONS(874), - [anon_sym_o_GT_PIPE] = ACTIONS(874), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(874), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(874), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(874), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(874), - [anon_sym_RPAREN] = ACTIONS(874), - [anon_sym_GT2] = ACTIONS(874), - [anon_sym_DASH2] = ACTIONS(874), - [anon_sym_STAR2] = ACTIONS(874), - [anon_sym_and2] = ACTIONS(874), - [anon_sym_xor2] = ACTIONS(874), - [anon_sym_or2] = ACTIONS(874), - [anon_sym_not_DASHin2] = ACTIONS(874), - [anon_sym_has2] = ACTIONS(874), - [anon_sym_not_DASHhas2] = ACTIONS(874), - [anon_sym_starts_DASHwith2] = ACTIONS(874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(874), - [anon_sym_ends_DASHwith2] = ACTIONS(874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(874), - [anon_sym_EQ_EQ2] = ACTIONS(874), - [anon_sym_BANG_EQ2] = ACTIONS(874), - [anon_sym_LT2] = ACTIONS(874), - [anon_sym_LT_EQ2] = ACTIONS(874), - [anon_sym_GT_EQ2] = ACTIONS(874), - [anon_sym_EQ_TILDE2] = ACTIONS(874), - [anon_sym_BANG_TILDE2] = ACTIONS(874), - [anon_sym_like2] = ACTIONS(874), - [anon_sym_not_DASHlike2] = ACTIONS(874), - [anon_sym_STAR_STAR2] = ACTIONS(874), - [anon_sym_PLUS_PLUS2] = ACTIONS(874), - [anon_sym_SLASH2] = ACTIONS(874), - [anon_sym_mod2] = ACTIONS(874), - [anon_sym_SLASH_SLASH2] = ACTIONS(874), - [anon_sym_PLUS2] = ACTIONS(874), - [anon_sym_bit_DASHshl2] = ACTIONS(874), - [anon_sym_bit_DASHshr2] = ACTIONS(874), - [anon_sym_bit_DASHand2] = ACTIONS(874), - [anon_sym_bit_DASHxor2] = ACTIONS(874), - [anon_sym_bit_DASHor2] = ACTIONS(874), - [anon_sym_DOT_DOT2] = ACTIONS(874), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), - [anon_sym_DOT_DOT_LT2] = ACTIONS(876), - [sym_filesize_unit] = ACTIONS(874), - [sym_duration_unit] = ACTIONS(876), - [anon_sym_err_GT] = ACTIONS(874), - [anon_sym_out_GT] = ACTIONS(874), - [anon_sym_e_GT] = ACTIONS(874), - [anon_sym_o_GT] = ACTIONS(874), - [anon_sym_err_PLUSout_GT] = ACTIONS(874), - [anon_sym_out_PLUSerr_GT] = ACTIONS(874), - [anon_sym_o_PLUSe_GT] = ACTIONS(874), - [anon_sym_e_PLUSo_GT] = ACTIONS(874), - [anon_sym_err_GT_GT] = ACTIONS(874), - [anon_sym_out_GT_GT] = ACTIONS(874), - [anon_sym_e_GT_GT] = ACTIONS(874), - [anon_sym_o_GT_GT] = ACTIONS(874), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(874), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(874), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(874), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(874), + [ts_builtin_sym_end] = ACTIONS(882), + [anon_sym_true] = ACTIONS(924), + [anon_sym_false] = ACTIONS(924), + [anon_sym_null] = ACTIONS(926), + [aux_sym_cmd_identifier_token3] = ACTIONS(928), + [aux_sym_cmd_identifier_token4] = ACTIONS(928), + [aux_sym_cmd_identifier_token5] = ACTIONS(928), + [sym__newline] = ACTIONS(812), + [sym__space] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(812), + [anon_sym_PIPE] = ACTIONS(812), + [anon_sym_err_GT_PIPE] = ACTIONS(812), + [anon_sym_out_GT_PIPE] = ACTIONS(812), + [anon_sym_e_GT_PIPE] = ACTIONS(812), + [anon_sym_o_GT_PIPE] = ACTIONS(812), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(812), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(812), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(812), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(812), + [anon_sym_LBRACK] = ACTIONS(930), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_DOLLAR] = ACTIONS(934), + [anon_sym_DASH_DASH] = ACTIONS(936), + [anon_sym_DASH2] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_DOT_DOT] = ACTIONS(942), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(944), + [anon_sym_DOT_DOT_EQ] = ACTIONS(946), + [anon_sym_DOT_DOT_LT] = ACTIONS(946), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(948), + [aux_sym__val_number_decimal_token1] = ACTIONS(950), + [aux_sym__val_number_decimal_token2] = ACTIONS(950), + [aux_sym__val_number_decimal_token3] = ACTIONS(952), + [aux_sym__val_number_decimal_token4] = ACTIONS(952), + [aux_sym__val_number_token1] = ACTIONS(954), + [aux_sym__val_number_token2] = ACTIONS(954), + [aux_sym__val_number_token3] = ACTIONS(954), + [anon_sym_0b] = ACTIONS(956), + [anon_sym_0o] = ACTIONS(958), + [anon_sym_0x] = ACTIONS(958), + [sym_val_date] = ACTIONS(960), + [anon_sym_DQUOTE] = ACTIONS(962), + [anon_sym_SQUOTE] = ACTIONS(964), + [anon_sym_BQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(968), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(970), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(972), + [anon_sym_err_GT] = ACTIONS(974), + [anon_sym_out_GT] = ACTIONS(974), + [anon_sym_e_GT] = ACTIONS(974), + [anon_sym_o_GT] = ACTIONS(974), + [anon_sym_err_PLUSout_GT] = ACTIONS(974), + [anon_sym_out_PLUSerr_GT] = ACTIONS(974), + [anon_sym_o_PLUSe_GT] = ACTIONS(974), + [anon_sym_e_PLUSo_GT] = ACTIONS(974), + [anon_sym_err_GT_GT] = ACTIONS(974), + [anon_sym_out_GT_GT] = ACTIONS(974), + [anon_sym_e_GT_GT] = ACTIONS(974), + [anon_sym_o_GT_GT] = ACTIONS(974), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(974), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(974), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(974), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(974), + [aux_sym_unquoted_token1] = ACTIONS(976), [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(978), }, [STATE(133)] = { - [sym_expr_parenthesized] = STATE(2670), - [sym__spread_parenthesized] = STATE(3003), - [sym_val_range] = STATE(3030), - [sym__val_range] = STATE(4477), - [sym__value] = STATE(3030), - [sym_val_nothing] = STATE(3022), - [sym_val_bool] = STATE(2861), - [sym__spread_variable] = STATE(3036), - [sym_val_variable] = STATE(2672), - [sym_val_cellpath] = STATE(3022), - [sym_val_number] = STATE(3022), - [sym__val_number_decimal] = STATE(2431), - [sym__val_number] = STATE(3024), - [sym_val_duration] = STATE(3022), - [sym_val_filesize] = STATE(3022), - [sym_val_binary] = STATE(3022), - [sym_val_string] = STATE(3022), - [sym__raw_str] = STATE(2508), - [sym__str_double_quotes] = STATE(2508), - [sym__str_single_quotes] = STATE(2508), - [sym__str_back_ticks] = STATE(2508), - [sym_val_interpolated] = STATE(3022), - [sym__inter_single_quotes] = STATE(2983), - [sym__inter_double_quotes] = STATE(3101), - [sym_val_list] = STATE(3022), - [sym__spread_list] = STATE(3003), - [sym_val_record] = STATE(3022), - [sym_val_table] = STATE(3022), - [sym_val_closure] = STATE(3022), - [sym__cmd_arg] = STATE(3177), - [sym_redirection] = STATE(3053), - [sym__flag] = STATE(3060), - [sym_short_flag] = STATE(3092), - [sym_long_flag] = STATE(3092), - [sym_unquoted] = STATE(2706), - [sym__unquoted_with_expr] = STATE(3107), - [sym__unquoted_anonymous_prefix] = STATE(4477), [sym_comment] = STATE(133), - [anon_sym_true] = ACTIONS(809), - [anon_sym_false] = ACTIONS(809), - [anon_sym_null] = ACTIONS(811), - [aux_sym_cmd_identifier_token3] = ACTIONS(813), - [aux_sym_cmd_identifier_token4] = ACTIONS(813), - [aux_sym_cmd_identifier_token5] = ACTIONS(813), - [sym__newline] = ACTIONS(980), - [sym__space] = ACTIONS(982), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_PIPE] = ACTIONS(980), - [anon_sym_err_GT_PIPE] = ACTIONS(980), - [anon_sym_out_GT_PIPE] = ACTIONS(980), - [anon_sym_e_GT_PIPE] = ACTIONS(980), - [anon_sym_o_GT_PIPE] = ACTIONS(980), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(980), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(980), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(980), - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(822), - [anon_sym_RPAREN] = ACTIONS(980), - [anon_sym_DOLLAR] = ACTIONS(824), - [anon_sym_DASH_DASH] = ACTIONS(826), - [anon_sym_DASH2] = ACTIONS(828), - [anon_sym_LBRACE] = ACTIONS(830), - [anon_sym_DOT_DOT] = ACTIONS(832), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(834), - [anon_sym_DOT_DOT_EQ] = ACTIONS(836), - [anon_sym_DOT_DOT_LT] = ACTIONS(836), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(838), - [aux_sym__val_number_decimal_token1] = ACTIONS(840), - [aux_sym__val_number_decimal_token2] = ACTIONS(840), - [aux_sym__val_number_decimal_token3] = ACTIONS(842), - [aux_sym__val_number_decimal_token4] = ACTIONS(842), - [aux_sym__val_number_token1] = ACTIONS(844), - [aux_sym__val_number_token2] = ACTIONS(844), - [aux_sym__val_number_token3] = ACTIONS(844), - [anon_sym_0b] = ACTIONS(846), - [anon_sym_0o] = ACTIONS(848), - [anon_sym_0x] = ACTIONS(848), - [sym_val_date] = ACTIONS(850), - [anon_sym_DQUOTE] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_BQUOTE] = ACTIONS(856), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(860), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(862), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(900), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_mod] = ACTIONS(898), + [anon_sym_SLASH_SLASH] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(900), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_bit_DASHshl] = ACTIONS(898), + [anon_sym_bit_DASHshr] = ACTIONS(898), + [anon_sym_EQ_TILDE] = ACTIONS(898), + [anon_sym_BANG_TILDE] = ACTIONS(898), + [anon_sym_like] = ACTIONS(898), + [anon_sym_not_DASHlike] = ACTIONS(898), + [anon_sym_bit_DASHand] = ACTIONS(898), + [anon_sym_bit_DASHxor] = ACTIONS(898), + [anon_sym_bit_DASHor] = ACTIONS(898), + [anon_sym_and] = ACTIONS(898), + [anon_sym_xor] = ACTIONS(898), + [anon_sym_or] = ACTIONS(898), + [anon_sym_in2] = ACTIONS(898), + [anon_sym_not_DASHin] = ACTIONS(898), + [anon_sym_has] = ACTIONS(898), + [anon_sym_not_DASHhas] = ACTIONS(898), + [anon_sym_starts_DASHwith] = ACTIONS(898), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(898), + [anon_sym_ends_DASHwith] = ACTIONS(898), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(898), + [anon_sym_EQ_EQ] = ACTIONS(898), + [anon_sym_BANG_EQ] = ACTIONS(898), + [anon_sym_LT] = ACTIONS(900), + [anon_sym_LT_EQ] = ACTIONS(898), + [anon_sym_GT] = ACTIONS(900), + [anon_sym_GT_EQ] = ACTIONS(898), + [aux_sym_cmd_identifier_token6] = ACTIONS(902), + [sym__newline] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_RBRACE] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(980), + [sym_duration_unit] = ACTIONS(982), [anon_sym_err_GT] = ACTIONS(866), [anon_sym_out_GT] = ACTIONS(866), [anon_sym_e_GT] = ACTIONS(866), @@ -54867,12 +54904,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(866), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(866), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(866), - [aux_sym_unquoted_token1] = ACTIONS(868), [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(870), }, [STATE(134)] = { [sym_comment] = STATE(134), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token5] = ACTIONS(984), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(135)] = { + [sym_comment] = STATE(135), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -54955,7 +55095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(886), + [aux_sym__immediate_decimal_token5] = ACTIONS(890), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -54976,111 +55116,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(135)] = { - [sym_comment] = STATE(135), - [anon_sym_in] = ACTIONS(874), - [anon_sym_STAR_STAR] = ACTIONS(876), - [anon_sym_PLUS_PLUS] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_mod] = ACTIONS(876), - [anon_sym_SLASH_SLASH] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_DASH] = ACTIONS(876), - [anon_sym_bit_DASHshl] = ACTIONS(876), - [anon_sym_bit_DASHshr] = ACTIONS(876), - [anon_sym_EQ_TILDE] = ACTIONS(876), - [anon_sym_BANG_TILDE] = ACTIONS(876), - [anon_sym_like] = ACTIONS(876), - [anon_sym_not_DASHlike] = ACTIONS(876), - [anon_sym_bit_DASHand] = ACTIONS(876), - [anon_sym_bit_DASHxor] = ACTIONS(876), - [anon_sym_bit_DASHor] = ACTIONS(876), - [anon_sym_and] = ACTIONS(876), - [anon_sym_xor] = ACTIONS(876), - [anon_sym_or] = ACTIONS(876), - [anon_sym_in2] = ACTIONS(876), - [anon_sym_not_DASHin] = ACTIONS(876), - [anon_sym_has] = ACTIONS(876), - [anon_sym_not_DASHhas] = ACTIONS(876), - [anon_sym_starts_DASHwith] = ACTIONS(876), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(876), - [anon_sym_ends_DASHwith] = ACTIONS(876), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_BANG_EQ] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_EQ] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_GT_EQ] = ACTIONS(876), - [aux_sym_cmd_identifier_token6] = ACTIONS(874), - [sym__newline] = ACTIONS(874), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_err_GT_PIPE] = ACTIONS(874), - [anon_sym_out_GT_PIPE] = ACTIONS(874), - [anon_sym_e_GT_PIPE] = ACTIONS(874), - [anon_sym_o_GT_PIPE] = ACTIONS(874), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(874), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(874), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(874), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(874), - [anon_sym_GT2] = ACTIONS(874), - [anon_sym_DASH2] = ACTIONS(874), - [anon_sym_STAR2] = ACTIONS(874), - [anon_sym_and2] = ACTIONS(874), - [anon_sym_xor2] = ACTIONS(874), - [anon_sym_or2] = ACTIONS(874), - [anon_sym_not_DASHin2] = ACTIONS(874), - [anon_sym_has2] = ACTIONS(874), - [anon_sym_not_DASHhas2] = ACTIONS(874), - [anon_sym_starts_DASHwith2] = ACTIONS(874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(874), - [anon_sym_ends_DASHwith2] = ACTIONS(874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(874), - [anon_sym_EQ_EQ2] = ACTIONS(874), - [anon_sym_BANG_EQ2] = ACTIONS(874), - [anon_sym_LT2] = ACTIONS(874), - [anon_sym_LT_EQ2] = ACTIONS(874), - [anon_sym_GT_EQ2] = ACTIONS(874), - [anon_sym_EQ_TILDE2] = ACTIONS(874), - [anon_sym_BANG_TILDE2] = ACTIONS(874), - [anon_sym_like2] = ACTIONS(874), - [anon_sym_not_DASHlike2] = ACTIONS(874), - [anon_sym_STAR_STAR2] = ACTIONS(874), - [anon_sym_PLUS_PLUS2] = ACTIONS(874), - [anon_sym_SLASH2] = ACTIONS(874), - [anon_sym_mod2] = ACTIONS(874), - [anon_sym_SLASH_SLASH2] = ACTIONS(874), - [anon_sym_PLUS2] = ACTIONS(874), - [anon_sym_bit_DASHshl2] = ACTIONS(874), - [anon_sym_bit_DASHshr2] = ACTIONS(874), - [anon_sym_bit_DASHand2] = ACTIONS(874), - [anon_sym_bit_DASHxor2] = ACTIONS(874), - [anon_sym_bit_DASHor2] = ACTIONS(874), - [anon_sym_DOT_DOT2] = ACTIONS(874), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), - [anon_sym_DOT_DOT_LT2] = ACTIONS(876), - [sym_filesize_unit] = ACTIONS(874), - [sym_duration_unit] = ACTIONS(876), - [anon_sym_err_GT] = ACTIONS(874), - [anon_sym_out_GT] = ACTIONS(874), - [anon_sym_e_GT] = ACTIONS(874), - [anon_sym_o_GT] = ACTIONS(874), - [anon_sym_err_PLUSout_GT] = ACTIONS(874), - [anon_sym_out_PLUSerr_GT] = ACTIONS(874), - [anon_sym_o_PLUSe_GT] = ACTIONS(874), - [anon_sym_e_PLUSo_GT] = ACTIONS(874), - [anon_sym_err_GT_GT] = ACTIONS(874), - [anon_sym_out_GT_GT] = ACTIONS(874), - [anon_sym_e_GT_GT] = ACTIONS(874), - [anon_sym_o_GT_GT] = ACTIONS(874), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(874), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(874), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(874), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(874), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(136)] = { [sym_comment] = STATE(136), [anon_sym_in] = ACTIONS(747), @@ -55188,321 +55223,633 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(137)] = { [sym_comment] = STATE(137), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [anon_sym_in] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_mod] = ACTIONS(791), + [anon_sym_SLASH_SLASH] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_bit_DASHshl] = ACTIONS(791), + [anon_sym_bit_DASHshr] = ACTIONS(791), + [anon_sym_EQ_TILDE] = ACTIONS(791), + [anon_sym_BANG_TILDE] = ACTIONS(791), + [anon_sym_like] = ACTIONS(791), + [anon_sym_not_DASHlike] = ACTIONS(791), + [anon_sym_bit_DASHand] = ACTIONS(791), + [anon_sym_bit_DASHxor] = ACTIONS(791), + [anon_sym_bit_DASHor] = ACTIONS(791), + [anon_sym_and] = ACTIONS(791), + [anon_sym_xor] = ACTIONS(791), + [anon_sym_or] = ACTIONS(791), + [anon_sym_in2] = ACTIONS(791), + [anon_sym_not_DASHin] = ACTIONS(791), + [anon_sym_has] = ACTIONS(791), + [anon_sym_not_DASHhas] = ACTIONS(791), + [anon_sym_starts_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), + [anon_sym_ends_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), + [anon_sym_EQ_EQ] = ACTIONS(791), + [anon_sym_BANG_EQ] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(791), + [aux_sym_cmd_identifier_token6] = ACTIONS(789), + [sym__newline] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_err_GT_PIPE] = ACTIONS(789), + [anon_sym_out_GT_PIPE] = ACTIONS(789), + [anon_sym_e_GT_PIPE] = ACTIONS(789), + [anon_sym_o_GT_PIPE] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(789), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(789), + [anon_sym_xor2] = ACTIONS(789), + [anon_sym_or2] = ACTIONS(789), + [anon_sym_not_DASHin2] = ACTIONS(789), + [anon_sym_has2] = ACTIONS(789), + [anon_sym_not_DASHhas2] = ACTIONS(789), + [anon_sym_starts_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), + [anon_sym_ends_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), + [anon_sym_EQ_EQ2] = ACTIONS(789), + [anon_sym_BANG_EQ2] = ACTIONS(789), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(789), + [anon_sym_GT_EQ2] = ACTIONS(789), + [anon_sym_EQ_TILDE2] = ACTIONS(789), + [anon_sym_BANG_TILDE2] = ACTIONS(789), + [anon_sym_like2] = ACTIONS(789), + [anon_sym_not_DASHlike2] = ACTIONS(789), + [anon_sym_STAR_STAR2] = ACTIONS(789), + [anon_sym_PLUS_PLUS2] = ACTIONS(789), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(789), + [anon_sym_SLASH_SLASH2] = ACTIONS(789), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(789), + [anon_sym_bit_DASHshr2] = ACTIONS(789), + [anon_sym_bit_DASHand2] = ACTIONS(789), + [anon_sym_bit_DASHxor2] = ACTIONS(789), + [anon_sym_bit_DASHor2] = ACTIONS(789), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_err_GT] = ACTIONS(789), + [anon_sym_out_GT] = ACTIONS(789), + [anon_sym_e_GT] = ACTIONS(789), + [anon_sym_o_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT] = ACTIONS(789), + [anon_sym_err_GT_GT] = ACTIONS(789), + [anon_sym_out_GT_GT] = ACTIONS(789), + [anon_sym_e_GT_GT] = ACTIONS(789), + [anon_sym_o_GT_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(789), [anon_sym_POUND] = ACTIONS(103), }, [STATE(138)] = { [sym_comment] = STATE(138), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(984), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), [anon_sym_POUND] = ACTIONS(103), }, [STATE(139)] = { [sym_comment] = STATE(139), - [anon_sym_in] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(906), - [anon_sym_PLUS_PLUS] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(908), - [anon_sym_SLASH] = ACTIONS(908), - [anon_sym_mod] = ACTIONS(906), - [anon_sym_SLASH_SLASH] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_bit_DASHshl] = ACTIONS(906), - [anon_sym_bit_DASHshr] = ACTIONS(906), - [anon_sym_EQ_TILDE] = ACTIONS(906), - [anon_sym_BANG_TILDE] = ACTIONS(906), - [anon_sym_like] = ACTIONS(906), - [anon_sym_not_DASHlike] = ACTIONS(906), - [anon_sym_bit_DASHand] = ACTIONS(906), - [anon_sym_bit_DASHxor] = ACTIONS(906), - [anon_sym_bit_DASHor] = ACTIONS(906), - [anon_sym_and] = ACTIONS(906), - [anon_sym_xor] = ACTIONS(906), - [anon_sym_or] = ACTIONS(906), - [anon_sym_in2] = ACTIONS(906), - [anon_sym_not_DASHin] = ACTIONS(906), - [anon_sym_has] = ACTIONS(906), - [anon_sym_not_DASHhas] = ACTIONS(906), - [anon_sym_starts_DASHwith] = ACTIONS(906), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(906), - [anon_sym_ends_DASHwith] = ACTIONS(906), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(906), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(906), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_GT_EQ] = ACTIONS(906), - [aux_sym_cmd_identifier_token6] = ACTIONS(910), - [sym__newline] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_err_GT_PIPE] = ACTIONS(793), - [anon_sym_out_GT_PIPE] = ACTIONS(793), - [anon_sym_e_GT_PIPE] = ACTIONS(793), - [anon_sym_o_GT_PIPE] = ACTIONS(793), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(793), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(793), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(793), - [anon_sym_GT2] = ACTIONS(793), - [anon_sym_DASH2] = ACTIONS(793), - [anon_sym_STAR2] = ACTIONS(793), - [anon_sym_and2] = ACTIONS(793), - [anon_sym_xor2] = ACTIONS(793), - [anon_sym_or2] = ACTIONS(793), - [anon_sym_not_DASHin2] = ACTIONS(793), - [anon_sym_has2] = ACTIONS(793), - [anon_sym_not_DASHhas2] = ACTIONS(793), - [anon_sym_starts_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), - [anon_sym_ends_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), - [anon_sym_EQ_EQ2] = ACTIONS(793), - [anon_sym_BANG_EQ2] = ACTIONS(793), - [anon_sym_LT2] = ACTIONS(793), - [anon_sym_LT_EQ2] = ACTIONS(793), - [anon_sym_GT_EQ2] = ACTIONS(793), - [anon_sym_EQ_TILDE2] = ACTIONS(793), - [anon_sym_BANG_TILDE2] = ACTIONS(793), - [anon_sym_like2] = ACTIONS(793), - [anon_sym_not_DASHlike2] = ACTIONS(793), - [anon_sym_STAR_STAR2] = ACTIONS(793), - [anon_sym_PLUS_PLUS2] = ACTIONS(793), - [anon_sym_SLASH2] = ACTIONS(793), - [anon_sym_mod2] = ACTIONS(793), - [anon_sym_SLASH_SLASH2] = ACTIONS(793), - [anon_sym_PLUS2] = ACTIONS(793), - [anon_sym_bit_DASHshl2] = ACTIONS(793), - [anon_sym_bit_DASHshr2] = ACTIONS(793), - [anon_sym_bit_DASHand2] = ACTIONS(793), - [anon_sym_bit_DASHxor2] = ACTIONS(793), - [anon_sym_bit_DASHor2] = ACTIONS(793), - [anon_sym_DOT_DOT2] = ACTIONS(801), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(803), - [anon_sym_DOT_DOT_LT2] = ACTIONS(803), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(900), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_mod] = ACTIONS(898), + [anon_sym_SLASH_SLASH] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(900), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_bit_DASHshl] = ACTIONS(898), + [anon_sym_bit_DASHshr] = ACTIONS(898), + [anon_sym_EQ_TILDE] = ACTIONS(898), + [anon_sym_BANG_TILDE] = ACTIONS(898), + [anon_sym_like] = ACTIONS(898), + [anon_sym_not_DASHlike] = ACTIONS(898), + [anon_sym_bit_DASHand] = ACTIONS(898), + [anon_sym_bit_DASHxor] = ACTIONS(898), + [anon_sym_bit_DASHor] = ACTIONS(898), + [anon_sym_and] = ACTIONS(898), + [anon_sym_xor] = ACTIONS(898), + [anon_sym_or] = ACTIONS(898), + [anon_sym_in2] = ACTIONS(898), + [anon_sym_not_DASHin] = ACTIONS(898), + [anon_sym_has] = ACTIONS(898), + [anon_sym_not_DASHhas] = ACTIONS(898), + [anon_sym_starts_DASHwith] = ACTIONS(898), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(898), + [anon_sym_ends_DASHwith] = ACTIONS(898), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(898), + [anon_sym_EQ_EQ] = ACTIONS(898), + [anon_sym_BANG_EQ] = ACTIONS(898), + [anon_sym_LT] = ACTIONS(900), + [anon_sym_LT_EQ] = ACTIONS(898), + [anon_sym_GT] = ACTIONS(900), + [anon_sym_GT_EQ] = ACTIONS(898), + [aux_sym_cmd_identifier_token6] = ACTIONS(902), + [sym__newline] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), [sym_filesize_unit] = ACTIONS(986), [sym_duration_unit] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [anon_sym_err_GT_GT] = ACTIONS(793), - [anon_sym_out_GT_GT] = ACTIONS(793), - [anon_sym_e_GT_GT] = ACTIONS(793), - [anon_sym_o_GT_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(793), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(866), + [anon_sym_out_GT_GT] = ACTIONS(866), + [anon_sym_e_GT_GT] = ACTIONS(866), + [anon_sym_o_GT_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(866), [anon_sym_POUND] = ACTIONS(103), }, [STATE(140)] = { [sym_comment] = STATE(140), + [anon_sym_in] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_mod] = ACTIONS(791), + [anon_sym_SLASH_SLASH] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_bit_DASHshl] = ACTIONS(791), + [anon_sym_bit_DASHshr] = ACTIONS(791), + [anon_sym_EQ_TILDE] = ACTIONS(791), + [anon_sym_BANG_TILDE] = ACTIONS(791), + [anon_sym_like] = ACTIONS(791), + [anon_sym_not_DASHlike] = ACTIONS(791), + [anon_sym_bit_DASHand] = ACTIONS(791), + [anon_sym_bit_DASHxor] = ACTIONS(791), + [anon_sym_bit_DASHor] = ACTIONS(791), + [anon_sym_and] = ACTIONS(791), + [anon_sym_xor] = ACTIONS(791), + [anon_sym_or] = ACTIONS(791), + [anon_sym_in2] = ACTIONS(791), + [anon_sym_not_DASHin] = ACTIONS(791), + [anon_sym_has] = ACTIONS(791), + [anon_sym_not_DASHhas] = ACTIONS(791), + [anon_sym_starts_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), + [anon_sym_ends_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), + [anon_sym_EQ_EQ] = ACTIONS(791), + [anon_sym_BANG_EQ] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(791), + [aux_sym_cmd_identifier_token6] = ACTIONS(789), + [sym__newline] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_err_GT_PIPE] = ACTIONS(789), + [anon_sym_out_GT_PIPE] = ACTIONS(789), + [anon_sym_e_GT_PIPE] = ACTIONS(789), + [anon_sym_o_GT_PIPE] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(789), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(789), + [anon_sym_xor2] = ACTIONS(789), + [anon_sym_or2] = ACTIONS(789), + [anon_sym_not_DASHin2] = ACTIONS(789), + [anon_sym_has2] = ACTIONS(789), + [anon_sym_not_DASHhas2] = ACTIONS(789), + [anon_sym_starts_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), + [anon_sym_ends_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), + [anon_sym_EQ_EQ2] = ACTIONS(789), + [anon_sym_BANG_EQ2] = ACTIONS(789), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(789), + [anon_sym_GT_EQ2] = ACTIONS(789), + [anon_sym_EQ_TILDE2] = ACTIONS(789), + [anon_sym_BANG_TILDE2] = ACTIONS(789), + [anon_sym_like2] = ACTIONS(789), + [anon_sym_not_DASHlike2] = ACTIONS(789), + [anon_sym_STAR_STAR2] = ACTIONS(789), + [anon_sym_PLUS_PLUS2] = ACTIONS(789), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(789), + [anon_sym_SLASH_SLASH2] = ACTIONS(789), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(789), + [anon_sym_bit_DASHshr2] = ACTIONS(789), + [anon_sym_bit_DASHand2] = ACTIONS(789), + [anon_sym_bit_DASHxor2] = ACTIONS(789), + [anon_sym_bit_DASHor2] = ACTIONS(789), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_err_GT] = ACTIONS(789), + [anon_sym_out_GT] = ACTIONS(789), + [anon_sym_e_GT] = ACTIONS(789), + [anon_sym_o_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT] = ACTIONS(789), + [anon_sym_err_GT_GT] = ACTIONS(789), + [anon_sym_out_GT_GT] = ACTIONS(789), + [anon_sym_e_GT_GT] = ACTIONS(789), + [anon_sym_o_GT_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(789), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(141)] = { + [sym_comment] = STATE(141), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(755), + [anon_sym_out_GT_GT] = ACTIONS(755), + [anon_sym_e_GT_GT] = ACTIONS(755), + [anon_sym_o_GT_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(142)] = { + [sym_comment] = STATE(142), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(900), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_mod] = ACTIONS(898), + [anon_sym_SLASH_SLASH] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(900), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_bit_DASHshl] = ACTIONS(898), + [anon_sym_bit_DASHshr] = ACTIONS(898), + [anon_sym_EQ_TILDE] = ACTIONS(898), + [anon_sym_BANG_TILDE] = ACTIONS(898), + [anon_sym_like] = ACTIONS(898), + [anon_sym_not_DASHlike] = ACTIONS(898), + [anon_sym_bit_DASHand] = ACTIONS(898), + [anon_sym_bit_DASHxor] = ACTIONS(898), + [anon_sym_bit_DASHor] = ACTIONS(898), + [anon_sym_and] = ACTIONS(898), + [anon_sym_xor] = ACTIONS(898), + [anon_sym_or] = ACTIONS(898), + [anon_sym_in2] = ACTIONS(898), + [anon_sym_not_DASHin] = ACTIONS(898), + [anon_sym_has] = ACTIONS(898), + [anon_sym_not_DASHhas] = ACTIONS(898), + [anon_sym_starts_DASHwith] = ACTIONS(898), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(898), + [anon_sym_ends_DASHwith] = ACTIONS(898), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(898), + [anon_sym_EQ_EQ] = ACTIONS(898), + [anon_sym_BANG_EQ] = ACTIONS(898), + [anon_sym_LT] = ACTIONS(900), + [anon_sym_LT_EQ] = ACTIONS(898), + [anon_sym_GT] = ACTIONS(900), + [anon_sym_GT_EQ] = ACTIONS(898), + [aux_sym_cmd_identifier_token6] = ACTIONS(902), + [sym__newline] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(990), + [sym_duration_unit] = ACTIONS(992), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(866), + [anon_sym_out_GT_GT] = ACTIONS(866), + [anon_sym_e_GT_GT] = ACTIONS(866), + [anon_sym_o_GT_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(866), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(143)] = { + [sym_comment] = STATE(143), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -55605,422 +55952,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(141)] = { - [sym_comment] = STATE(141), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(771), - [anon_sym_out_GT_GT] = ACTIONS(771), - [anon_sym_e_GT_GT] = ACTIONS(771), - [anon_sym_o_GT_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(142)] = { - [sym_comment] = STATE(142), - [anon_sym_in] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(906), - [anon_sym_PLUS_PLUS] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(908), - [anon_sym_SLASH] = ACTIONS(908), - [anon_sym_mod] = ACTIONS(906), - [anon_sym_SLASH_SLASH] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_bit_DASHshl] = ACTIONS(906), - [anon_sym_bit_DASHshr] = ACTIONS(906), - [anon_sym_EQ_TILDE] = ACTIONS(906), - [anon_sym_BANG_TILDE] = ACTIONS(906), - [anon_sym_like] = ACTIONS(906), - [anon_sym_not_DASHlike] = ACTIONS(906), - [anon_sym_bit_DASHand] = ACTIONS(906), - [anon_sym_bit_DASHxor] = ACTIONS(906), - [anon_sym_bit_DASHor] = ACTIONS(906), - [anon_sym_and] = ACTIONS(906), - [anon_sym_xor] = ACTIONS(906), - [anon_sym_or] = ACTIONS(906), - [anon_sym_in2] = ACTIONS(906), - [anon_sym_not_DASHin] = ACTIONS(906), - [anon_sym_has] = ACTIONS(906), - [anon_sym_not_DASHhas] = ACTIONS(906), - [anon_sym_starts_DASHwith] = ACTIONS(906), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(906), - [anon_sym_ends_DASHwith] = ACTIONS(906), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(906), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(906), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_GT_EQ] = ACTIONS(906), - [aux_sym_cmd_identifier_token6] = ACTIONS(910), - [sym__newline] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_err_GT_PIPE] = ACTIONS(793), - [anon_sym_out_GT_PIPE] = ACTIONS(793), - [anon_sym_e_GT_PIPE] = ACTIONS(793), - [anon_sym_o_GT_PIPE] = ACTIONS(793), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(793), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(793), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(793), - [anon_sym_GT2] = ACTIONS(793), - [anon_sym_DASH2] = ACTIONS(793), - [anon_sym_STAR2] = ACTIONS(793), - [anon_sym_and2] = ACTIONS(793), - [anon_sym_xor2] = ACTIONS(793), - [anon_sym_or2] = ACTIONS(793), - [anon_sym_not_DASHin2] = ACTIONS(793), - [anon_sym_has2] = ACTIONS(793), - [anon_sym_not_DASHhas2] = ACTIONS(793), - [anon_sym_starts_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), - [anon_sym_ends_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), - [anon_sym_EQ_EQ2] = ACTIONS(793), - [anon_sym_BANG_EQ2] = ACTIONS(793), - [anon_sym_LT2] = ACTIONS(793), - [anon_sym_LT_EQ2] = ACTIONS(793), - [anon_sym_GT_EQ2] = ACTIONS(793), - [anon_sym_EQ_TILDE2] = ACTIONS(793), - [anon_sym_BANG_TILDE2] = ACTIONS(793), - [anon_sym_like2] = ACTIONS(793), - [anon_sym_not_DASHlike2] = ACTIONS(793), - [anon_sym_STAR_STAR2] = ACTIONS(793), - [anon_sym_PLUS_PLUS2] = ACTIONS(793), - [anon_sym_SLASH2] = ACTIONS(793), - [anon_sym_mod2] = ACTIONS(793), - [anon_sym_SLASH_SLASH2] = ACTIONS(793), - [anon_sym_PLUS2] = ACTIONS(793), - [anon_sym_bit_DASHshl2] = ACTIONS(793), - [anon_sym_bit_DASHshr2] = ACTIONS(793), - [anon_sym_bit_DASHand2] = ACTIONS(793), - [anon_sym_bit_DASHxor2] = ACTIONS(793), - [anon_sym_bit_DASHor2] = ACTIONS(793), - [anon_sym_DOT_DOT2] = ACTIONS(801), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(803), - [anon_sym_DOT_DOT_LT2] = ACTIONS(803), - [sym_filesize_unit] = ACTIONS(990), - [sym_duration_unit] = ACTIONS(992), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [anon_sym_err_GT_GT] = ACTIONS(793), - [anon_sym_out_GT_GT] = ACTIONS(793), - [anon_sym_e_GT_GT] = ACTIONS(793), - [anon_sym_o_GT_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(143)] = { - [sym_comment] = STATE(143), - [anon_sym_in] = ACTIONS(874), - [anon_sym_STAR_STAR] = ACTIONS(876), - [anon_sym_PLUS_PLUS] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_mod] = ACTIONS(876), - [anon_sym_SLASH_SLASH] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_DASH] = ACTIONS(876), - [anon_sym_bit_DASHshl] = ACTIONS(876), - [anon_sym_bit_DASHshr] = ACTIONS(876), - [anon_sym_EQ_TILDE] = ACTIONS(876), - [anon_sym_BANG_TILDE] = ACTIONS(876), - [anon_sym_like] = ACTIONS(876), - [anon_sym_not_DASHlike] = ACTIONS(876), - [anon_sym_bit_DASHand] = ACTIONS(876), - [anon_sym_bit_DASHxor] = ACTIONS(876), - [anon_sym_bit_DASHor] = ACTIONS(876), - [anon_sym_and] = ACTIONS(876), - [anon_sym_xor] = ACTIONS(876), - [anon_sym_or] = ACTIONS(876), - [anon_sym_in2] = ACTIONS(876), - [anon_sym_not_DASHin] = ACTIONS(876), - [anon_sym_has] = ACTIONS(876), - [anon_sym_not_DASHhas] = ACTIONS(876), - [anon_sym_starts_DASHwith] = ACTIONS(876), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(876), - [anon_sym_ends_DASHwith] = ACTIONS(876), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_BANG_EQ] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_EQ] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_GT_EQ] = ACTIONS(876), - [aux_sym_cmd_identifier_token6] = ACTIONS(874), - [sym__newline] = ACTIONS(874), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_err_GT_PIPE] = ACTIONS(874), - [anon_sym_out_GT_PIPE] = ACTIONS(874), - [anon_sym_e_GT_PIPE] = ACTIONS(874), - [anon_sym_o_GT_PIPE] = ACTIONS(874), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(874), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(874), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(874), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(874), - [anon_sym_GT2] = ACTIONS(874), - [anon_sym_DASH2] = ACTIONS(874), - [anon_sym_STAR2] = ACTIONS(874), - [anon_sym_and2] = ACTIONS(874), - [anon_sym_xor2] = ACTIONS(874), - [anon_sym_or2] = ACTIONS(874), - [anon_sym_not_DASHin2] = ACTIONS(874), - [anon_sym_has2] = ACTIONS(874), - [anon_sym_not_DASHhas2] = ACTIONS(874), - [anon_sym_starts_DASHwith2] = ACTIONS(874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(874), - [anon_sym_ends_DASHwith2] = ACTIONS(874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(874), - [anon_sym_EQ_EQ2] = ACTIONS(874), - [anon_sym_BANG_EQ2] = ACTIONS(874), - [anon_sym_LT2] = ACTIONS(874), - [anon_sym_LT_EQ2] = ACTIONS(874), - [anon_sym_GT_EQ2] = ACTIONS(874), - [anon_sym_EQ_TILDE2] = ACTIONS(874), - [anon_sym_BANG_TILDE2] = ACTIONS(874), - [anon_sym_like2] = ACTIONS(874), - [anon_sym_not_DASHlike2] = ACTIONS(874), - [anon_sym_STAR_STAR2] = ACTIONS(874), - [anon_sym_PLUS_PLUS2] = ACTIONS(874), - [anon_sym_SLASH2] = ACTIONS(874), - [anon_sym_mod2] = ACTIONS(874), - [anon_sym_SLASH_SLASH2] = ACTIONS(874), - [anon_sym_PLUS2] = ACTIONS(874), - [anon_sym_bit_DASHshl2] = ACTIONS(874), - [anon_sym_bit_DASHshr2] = ACTIONS(874), - [anon_sym_bit_DASHand2] = ACTIONS(874), - [anon_sym_bit_DASHxor2] = ACTIONS(874), - [anon_sym_bit_DASHor2] = ACTIONS(874), - [anon_sym_DOT_DOT2] = ACTIONS(874), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), - [anon_sym_DOT_DOT_LT2] = ACTIONS(876), - [sym_filesize_unit] = ACTIONS(874), - [sym_duration_unit] = ACTIONS(876), - [anon_sym_err_GT] = ACTIONS(874), - [anon_sym_out_GT] = ACTIONS(874), - [anon_sym_e_GT] = ACTIONS(874), - [anon_sym_o_GT] = ACTIONS(874), - [anon_sym_err_PLUSout_GT] = ACTIONS(874), - [anon_sym_out_PLUSerr_GT] = ACTIONS(874), - [anon_sym_o_PLUSe_GT] = ACTIONS(874), - [anon_sym_e_PLUSo_GT] = ACTIONS(874), - [anon_sym_err_GT_GT] = ACTIONS(874), - [anon_sym_out_GT_GT] = ACTIONS(874), - [anon_sym_e_GT_GT] = ACTIONS(874), - [anon_sym_o_GT_GT] = ACTIONS(874), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(874), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(874), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(874), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(874), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(144)] = { [sym_comment] = STATE(144), - [ts_builtin_sym_end] = ACTIONS(994), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(1000), - [anon_sym_SLASH] = ACTIONS(1000), - [anon_sym_mod] = ACTIONS(998), - [anon_sym_SLASH_SLASH] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_bit_DASHshl] = ACTIONS(998), - [anon_sym_bit_DASHshr] = ACTIONS(998), - [anon_sym_EQ_TILDE] = ACTIONS(998), - [anon_sym_BANG_TILDE] = ACTIONS(998), - [anon_sym_like] = ACTIONS(998), - [anon_sym_not_DASHlike] = ACTIONS(998), - [anon_sym_bit_DASHand] = ACTIONS(998), - [anon_sym_bit_DASHxor] = ACTIONS(998), - [anon_sym_bit_DASHor] = ACTIONS(998), - [anon_sym_and] = ACTIONS(998), - [anon_sym_xor] = ACTIONS(998), - [anon_sym_or] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_not_DASHin] = ACTIONS(998), - [anon_sym_has] = ACTIONS(998), - [anon_sym_not_DASHhas] = ACTIONS(998), - [anon_sym_starts_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(998), - [anon_sym_ends_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(998), - [anon_sym_EQ_EQ] = ACTIONS(998), - [anon_sym_BANG_EQ] = ACTIONS(998), - [anon_sym_LT] = ACTIONS(1000), - [anon_sym_LT_EQ] = ACTIONS(998), - [anon_sym_GT] = ACTIONS(1000), - [anon_sym_GT_EQ] = ACTIONS(998), - [aux_sym_cmd_identifier_token6] = ACTIONS(1002), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_RPAREN] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(994), + [anon_sym_out_GT_GT] = ACTIONS(994), + [anon_sym_e_GT_GT] = ACTIONS(994), + [anon_sym_o_GT_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(103), }, [STATE(145)] = { [sym_comment] = STATE(145), - [anon_sym_in] = ACTIONS(1004), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [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(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_STAR2] = 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_has2] = ACTIONS(1002), + [anon_sym_not_DASHhas2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [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_like2] = ACTIONS(1002), + [anon_sym_not_DASHlike2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [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_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(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(103), + }, + [STATE(146)] = { + [sym_comment] = STATE(146), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_in] = ACTIONS(994), [anon_sym_STAR_STAR] = ACTIONS(1006), [anon_sym_PLUS_PLUS] = ACTIONS(1006), [anon_sym_STAR] = ACTIONS(1008), @@ -56056,476 +56193,476 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1008), [anon_sym_GT_EQ] = ACTIONS(1006), [aux_sym_cmd_identifier_token6] = ACTIONS(1010), - [sym__newline] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1004), - [anon_sym_err_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_GT_PIPE] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), - [anon_sym_GT2] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1004), - [anon_sym_STAR2] = ACTIONS(1004), - [anon_sym_and2] = ACTIONS(1004), - [anon_sym_xor2] = ACTIONS(1004), - [anon_sym_or2] = ACTIONS(1004), - [anon_sym_not_DASHin2] = ACTIONS(1004), - [anon_sym_has2] = ACTIONS(1004), - [anon_sym_not_DASHhas2] = ACTIONS(1004), - [anon_sym_starts_DASHwith2] = ACTIONS(1004), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1004), - [anon_sym_ends_DASHwith2] = ACTIONS(1004), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1004), - [anon_sym_EQ_EQ2] = ACTIONS(1004), - [anon_sym_BANG_EQ2] = ACTIONS(1004), - [anon_sym_LT2] = ACTIONS(1004), - [anon_sym_LT_EQ2] = ACTIONS(1004), - [anon_sym_GT_EQ2] = ACTIONS(1004), - [anon_sym_EQ_TILDE2] = ACTIONS(1004), - [anon_sym_BANG_TILDE2] = ACTIONS(1004), - [anon_sym_like2] = ACTIONS(1004), - [anon_sym_not_DASHlike2] = ACTIONS(1004), - [anon_sym_STAR_STAR2] = ACTIONS(1004), - [anon_sym_PLUS_PLUS2] = ACTIONS(1004), - [anon_sym_SLASH2] = ACTIONS(1004), - [anon_sym_mod2] = ACTIONS(1004), - [anon_sym_SLASH_SLASH2] = ACTIONS(1004), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_bit_DASHshl2] = ACTIONS(1004), - [anon_sym_bit_DASHshr2] = ACTIONS(1004), - [anon_sym_bit_DASHand2] = ACTIONS(1004), - [anon_sym_bit_DASHxor2] = ACTIONS(1004), - [anon_sym_bit_DASHor2] = ACTIONS(1004), - [anon_sym_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(1004), - [anon_sym_out_GT_GT] = ACTIONS(1004), - [anon_sym_e_GT_GT] = ACTIONS(1004), - [anon_sym_o_GT_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(146)] = { - [sym_comment] = STATE(146), - [ts_builtin_sym_end] = ACTIONS(1012), - [anon_sym_in] = ACTIONS(1004), - [anon_sym_STAR_STAR] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(1000), - [anon_sym_SLASH] = ACTIONS(1000), - [anon_sym_mod] = ACTIONS(998), - [anon_sym_SLASH_SLASH] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_bit_DASHshl] = ACTIONS(998), - [anon_sym_bit_DASHshr] = ACTIONS(998), - [anon_sym_EQ_TILDE] = ACTIONS(998), - [anon_sym_BANG_TILDE] = ACTIONS(998), - [anon_sym_like] = ACTIONS(998), - [anon_sym_not_DASHlike] = ACTIONS(998), - [anon_sym_bit_DASHand] = ACTIONS(998), - [anon_sym_bit_DASHxor] = ACTIONS(998), - [anon_sym_bit_DASHor] = ACTIONS(998), - [anon_sym_and] = ACTIONS(998), - [anon_sym_xor] = ACTIONS(998), - [anon_sym_or] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_not_DASHin] = ACTIONS(998), - [anon_sym_has] = ACTIONS(998), - [anon_sym_not_DASHhas] = ACTIONS(998), - [anon_sym_starts_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(998), - [anon_sym_ends_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(998), - [anon_sym_EQ_EQ] = ACTIONS(998), - [anon_sym_BANG_EQ] = ACTIONS(998), - [anon_sym_LT] = ACTIONS(1000), - [anon_sym_LT_EQ] = ACTIONS(998), - [anon_sym_GT] = ACTIONS(1000), - [anon_sym_GT_EQ] = ACTIONS(998), - [aux_sym_cmd_identifier_token6] = ACTIONS(1002), - [sym__newline] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1004), - [anon_sym_err_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_GT_PIPE] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), - [anon_sym_GT2] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_STAR2] = ACTIONS(1004), - [anon_sym_and2] = ACTIONS(1004), - [anon_sym_xor2] = ACTIONS(1004), - [anon_sym_or2] = ACTIONS(1004), - [anon_sym_not_DASHin2] = ACTIONS(1004), - [anon_sym_has2] = ACTIONS(1004), - [anon_sym_not_DASHhas2] = ACTIONS(1004), - [anon_sym_starts_DASHwith2] = ACTIONS(1004), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1004), - [anon_sym_ends_DASHwith2] = ACTIONS(1004), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1004), - [anon_sym_EQ_EQ2] = ACTIONS(1004), - [anon_sym_BANG_EQ2] = ACTIONS(1004), - [anon_sym_LT2] = ACTIONS(1004), - [anon_sym_LT_EQ2] = ACTIONS(1004), - [anon_sym_GT_EQ2] = ACTIONS(1004), - [anon_sym_EQ_TILDE2] = ACTIONS(1004), - [anon_sym_BANG_TILDE2] = ACTIONS(1004), - [anon_sym_like2] = ACTIONS(1004), - [anon_sym_not_DASHlike2] = ACTIONS(1004), - [anon_sym_STAR_STAR2] = ACTIONS(1004), - [anon_sym_PLUS_PLUS2] = ACTIONS(1004), - [anon_sym_SLASH2] = ACTIONS(1004), - [anon_sym_mod2] = ACTIONS(1004), - [anon_sym_SLASH_SLASH2] = ACTIONS(1004), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_bit_DASHshl2] = ACTIONS(1004), - [anon_sym_bit_DASHshr2] = ACTIONS(1004), - [anon_sym_bit_DASHand2] = ACTIONS(1004), - [anon_sym_bit_DASHxor2] = ACTIONS(1004), - [anon_sym_bit_DASHor2] = ACTIONS(1004), - [anon_sym_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(1004), - [anon_sym_out_GT_GT] = ACTIONS(1004), - [anon_sym_e_GT_GT] = ACTIONS(1004), - [anon_sym_o_GT_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(994), + [anon_sym_out_GT_GT] = ACTIONS(994), + [anon_sym_e_GT_GT] = ACTIONS(994), + [anon_sym_o_GT_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(103), }, [STATE(147)] = { [sym_comment] = STATE(147), - [anon_sym_in] = ACTIONS(1004), - [anon_sym_STAR_STAR] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_SLASH] = ACTIONS(1016), - [anon_sym_mod] = ACTIONS(1014), - [anon_sym_SLASH_SLASH] = ACTIONS(1014), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_DASH] = ACTIONS(1014), - [anon_sym_bit_DASHshl] = ACTIONS(1014), - [anon_sym_bit_DASHshr] = ACTIONS(1014), - [anon_sym_EQ_TILDE] = ACTIONS(1014), - [anon_sym_BANG_TILDE] = ACTIONS(1014), - [anon_sym_like] = ACTIONS(1014), - [anon_sym_not_DASHlike] = ACTIONS(1014), - [anon_sym_bit_DASHand] = ACTIONS(1014), - [anon_sym_bit_DASHxor] = ACTIONS(1014), - [anon_sym_bit_DASHor] = ACTIONS(1014), - [anon_sym_and] = ACTIONS(1014), - [anon_sym_xor] = ACTIONS(1014), - [anon_sym_or] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1014), - [anon_sym_not_DASHin] = ACTIONS(1014), - [anon_sym_has] = ACTIONS(1014), - [anon_sym_not_DASHhas] = ACTIONS(1014), - [anon_sym_starts_DASHwith] = ACTIONS(1014), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), - [anon_sym_ends_DASHwith] = ACTIONS(1014), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), - [anon_sym_EQ_EQ] = ACTIONS(1014), - [anon_sym_BANG_EQ] = ACTIONS(1014), - [anon_sym_LT] = ACTIONS(1016), - [anon_sym_LT_EQ] = ACTIONS(1014), - [anon_sym_GT] = ACTIONS(1016), - [anon_sym_GT_EQ] = ACTIONS(1014), - [aux_sym_cmd_identifier_token6] = ACTIONS(1018), - [sym__newline] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1004), - [anon_sym_err_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_GT_PIPE] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), - [anon_sym_RPAREN] = ACTIONS(1004), - [anon_sym_GT2] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_STAR2] = ACTIONS(1004), - [anon_sym_and2] = ACTIONS(1004), - [anon_sym_xor2] = ACTIONS(1004), - [anon_sym_or2] = ACTIONS(1004), - [anon_sym_not_DASHin2] = ACTIONS(1004), - [anon_sym_has2] = ACTIONS(1004), - [anon_sym_not_DASHhas2] = ACTIONS(1004), - [anon_sym_starts_DASHwith2] = ACTIONS(1004), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1004), - [anon_sym_ends_DASHwith2] = ACTIONS(1004), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1004), - [anon_sym_EQ_EQ2] = ACTIONS(1004), - [anon_sym_BANG_EQ2] = ACTIONS(1004), - [anon_sym_LT2] = ACTIONS(1004), - [anon_sym_LT_EQ2] = ACTIONS(1004), - [anon_sym_GT_EQ2] = ACTIONS(1004), - [anon_sym_EQ_TILDE2] = ACTIONS(1004), - [anon_sym_BANG_TILDE2] = ACTIONS(1004), - [anon_sym_like2] = ACTIONS(1004), - [anon_sym_not_DASHlike2] = ACTIONS(1004), - [anon_sym_STAR_STAR2] = ACTIONS(1004), - [anon_sym_PLUS_PLUS2] = ACTIONS(1004), - [anon_sym_SLASH2] = ACTIONS(1004), - [anon_sym_mod2] = ACTIONS(1004), - [anon_sym_SLASH_SLASH2] = ACTIONS(1004), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_bit_DASHshl2] = ACTIONS(1004), - [anon_sym_bit_DASHshr2] = ACTIONS(1004), - [anon_sym_bit_DASHand2] = ACTIONS(1004), - [anon_sym_bit_DASHxor2] = ACTIONS(1004), - [anon_sym_bit_DASHor2] = ACTIONS(1004), - [anon_sym_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(1004), - [anon_sym_out_GT_GT] = ACTIONS(1004), - [anon_sym_e_GT_GT] = ACTIONS(1004), - [anon_sym_o_GT_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [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_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_STAR2] = 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_has2] = ACTIONS(1002), + [anon_sym_not_DASHhas2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [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_like2] = ACTIONS(1002), + [anon_sym_not_DASHlike2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [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_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(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(103), }, [STATE(148)] = { [sym_comment] = STATE(148), - [anon_sym_in] = ACTIONS(1004), - [anon_sym_STAR_STAR] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_SLASH] = ACTIONS(1016), - [anon_sym_mod] = ACTIONS(1014), - [anon_sym_SLASH_SLASH] = ACTIONS(1014), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_DASH] = ACTIONS(1014), - [anon_sym_bit_DASHshl] = ACTIONS(1014), - [anon_sym_bit_DASHshr] = ACTIONS(1014), - [anon_sym_EQ_TILDE] = ACTIONS(1014), - [anon_sym_BANG_TILDE] = ACTIONS(1014), - [anon_sym_like] = ACTIONS(1014), - [anon_sym_not_DASHlike] = ACTIONS(1014), - [anon_sym_bit_DASHand] = ACTIONS(1014), - [anon_sym_bit_DASHxor] = ACTIONS(1014), - [anon_sym_bit_DASHor] = ACTIONS(1014), - [anon_sym_and] = ACTIONS(1014), - [anon_sym_xor] = ACTIONS(1014), - [anon_sym_or] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1014), - [anon_sym_not_DASHin] = ACTIONS(1014), - [anon_sym_has] = ACTIONS(1014), - [anon_sym_not_DASHhas] = ACTIONS(1014), - [anon_sym_starts_DASHwith] = ACTIONS(1014), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), - [anon_sym_ends_DASHwith] = ACTIONS(1014), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), - [anon_sym_EQ_EQ] = ACTIONS(1014), - [anon_sym_BANG_EQ] = ACTIONS(1014), - [anon_sym_LT] = ACTIONS(1016), - [anon_sym_LT_EQ] = ACTIONS(1014), - [anon_sym_GT] = ACTIONS(1016), - [anon_sym_GT_EQ] = ACTIONS(1014), - [aux_sym_cmd_identifier_token6] = ACTIONS(1018), - [sym__newline] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1004), - [anon_sym_err_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_GT_PIPE] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), - [anon_sym_GT2] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1004), - [anon_sym_STAR2] = ACTIONS(1004), - [anon_sym_and2] = ACTIONS(1004), - [anon_sym_xor2] = ACTIONS(1004), - [anon_sym_or2] = ACTIONS(1004), - [anon_sym_not_DASHin2] = ACTIONS(1004), - [anon_sym_has2] = ACTIONS(1004), - [anon_sym_not_DASHhas2] = ACTIONS(1004), - [anon_sym_starts_DASHwith2] = ACTIONS(1004), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1004), - [anon_sym_ends_DASHwith2] = ACTIONS(1004), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1004), - [anon_sym_EQ_EQ2] = ACTIONS(1004), - [anon_sym_BANG_EQ2] = ACTIONS(1004), - [anon_sym_LT2] = ACTIONS(1004), - [anon_sym_LT_EQ2] = ACTIONS(1004), - [anon_sym_GT_EQ2] = ACTIONS(1004), - [anon_sym_EQ_TILDE2] = ACTIONS(1004), - [anon_sym_BANG_TILDE2] = ACTIONS(1004), - [anon_sym_like2] = ACTIONS(1004), - [anon_sym_not_DASHlike2] = ACTIONS(1004), - [anon_sym_STAR_STAR2] = ACTIONS(1004), - [anon_sym_PLUS_PLUS2] = ACTIONS(1004), - [anon_sym_SLASH2] = ACTIONS(1004), - [anon_sym_mod2] = ACTIONS(1004), - [anon_sym_SLASH_SLASH2] = ACTIONS(1004), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_bit_DASHshl2] = ACTIONS(1004), - [anon_sym_bit_DASHshr2] = ACTIONS(1004), - [anon_sym_bit_DASHand2] = ACTIONS(1004), - [anon_sym_bit_DASHxor2] = ACTIONS(1004), - [anon_sym_bit_DASHor2] = ACTIONS(1004), - [anon_sym_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(1004), - [anon_sym_out_GT_GT] = ACTIONS(1004), - [anon_sym_e_GT_GT] = ACTIONS(1004), - [anon_sym_o_GT_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(994), + [anon_sym_out_GT_GT] = ACTIONS(994), + [anon_sym_e_GT_GT] = ACTIONS(994), + [anon_sym_o_GT_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(103), }, [STATE(149)] = { [sym_comment] = STATE(149), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_SLASH] = ACTIONS(1016), - [anon_sym_mod] = ACTIONS(1014), - [anon_sym_SLASH_SLASH] = ACTIONS(1014), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_DASH] = ACTIONS(1014), - [anon_sym_bit_DASHshl] = ACTIONS(1014), - [anon_sym_bit_DASHshr] = ACTIONS(1014), - [anon_sym_EQ_TILDE] = ACTIONS(1014), - [anon_sym_BANG_TILDE] = ACTIONS(1014), - [anon_sym_like] = ACTIONS(1014), - [anon_sym_not_DASHlike] = ACTIONS(1014), - [anon_sym_bit_DASHand] = ACTIONS(1014), - [anon_sym_bit_DASHxor] = ACTIONS(1014), - [anon_sym_bit_DASHor] = ACTIONS(1014), - [anon_sym_and] = ACTIONS(1014), - [anon_sym_xor] = ACTIONS(1014), - [anon_sym_or] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1014), - [anon_sym_not_DASHin] = ACTIONS(1014), - [anon_sym_has] = ACTIONS(1014), - [anon_sym_not_DASHhas] = ACTIONS(1014), - [anon_sym_starts_DASHwith] = ACTIONS(1014), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), - [anon_sym_ends_DASHwith] = ACTIONS(1014), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), - [anon_sym_EQ_EQ] = ACTIONS(1014), - [anon_sym_BANG_EQ] = ACTIONS(1014), - [anon_sym_LT] = ACTIONS(1016), - [anon_sym_LT_EQ] = ACTIONS(1014), - [anon_sym_GT] = ACTIONS(1016), - [anon_sym_GT_EQ] = ACTIONS(1014), - [aux_sym_cmd_identifier_token6] = ACTIONS(1018), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_RPAREN] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1012), + [anon_sym_STAR] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1014), + [anon_sym_mod] = ACTIONS(1012), + [anon_sym_SLASH_SLASH] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_bit_DASHshl] = ACTIONS(1012), + [anon_sym_bit_DASHshr] = ACTIONS(1012), + [anon_sym_EQ_TILDE] = ACTIONS(1012), + [anon_sym_BANG_TILDE] = ACTIONS(1012), + [anon_sym_like] = ACTIONS(1012), + [anon_sym_not_DASHlike] = ACTIONS(1012), + [anon_sym_bit_DASHand] = ACTIONS(1012), + [anon_sym_bit_DASHxor] = ACTIONS(1012), + [anon_sym_bit_DASHor] = ACTIONS(1012), + [anon_sym_and] = ACTIONS(1012), + [anon_sym_xor] = ACTIONS(1012), + [anon_sym_or] = ACTIONS(1012), + [anon_sym_in2] = ACTIONS(1012), + [anon_sym_not_DASHin] = ACTIONS(1012), + [anon_sym_has] = ACTIONS(1012), + [anon_sym_not_DASHhas] = ACTIONS(1012), + [anon_sym_starts_DASHwith] = ACTIONS(1012), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1012), + [anon_sym_ends_DASHwith] = ACTIONS(1012), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1012), + [anon_sym_EQ_EQ] = ACTIONS(1012), + [anon_sym_BANG_EQ] = ACTIONS(1012), + [anon_sym_LT] = ACTIONS(1014), + [anon_sym_LT_EQ] = ACTIONS(1012), + [anon_sym_GT] = ACTIONS(1014), + [anon_sym_GT_EQ] = ACTIONS(1012), + [aux_sym_cmd_identifier_token6] = ACTIONS(1016), + [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_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_STAR2] = 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_has2] = ACTIONS(1002), + [anon_sym_not_DASHhas2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [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_like2] = ACTIONS(1002), + [anon_sym_not_DASHlike2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [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_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(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(103), }, [STATE(150)] = { [sym_comment] = STATE(150), - [anon_sym_in] = ACTIONS(996), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1012), + [anon_sym_STAR] = ACTIONS(1014), + [anon_sym_SLASH] = ACTIONS(1014), + [anon_sym_mod] = ACTIONS(1012), + [anon_sym_SLASH_SLASH] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1014), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_bit_DASHshl] = ACTIONS(1012), + [anon_sym_bit_DASHshr] = ACTIONS(1012), + [anon_sym_EQ_TILDE] = ACTIONS(1012), + [anon_sym_BANG_TILDE] = ACTIONS(1012), + [anon_sym_like] = ACTIONS(1012), + [anon_sym_not_DASHlike] = ACTIONS(1012), + [anon_sym_bit_DASHand] = ACTIONS(1012), + [anon_sym_bit_DASHxor] = ACTIONS(1012), + [anon_sym_bit_DASHor] = ACTIONS(1012), + [anon_sym_and] = ACTIONS(1012), + [anon_sym_xor] = ACTIONS(1012), + [anon_sym_or] = ACTIONS(1012), + [anon_sym_in2] = ACTIONS(1012), + [anon_sym_not_DASHin] = ACTIONS(1012), + [anon_sym_has] = ACTIONS(1012), + [anon_sym_not_DASHhas] = ACTIONS(1012), + [anon_sym_starts_DASHwith] = ACTIONS(1012), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1012), + [anon_sym_ends_DASHwith] = ACTIONS(1012), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1012), + [anon_sym_EQ_EQ] = ACTIONS(1012), + [anon_sym_BANG_EQ] = ACTIONS(1012), + [anon_sym_LT] = ACTIONS(1014), + [anon_sym_LT_EQ] = ACTIONS(1012), + [anon_sym_GT] = ACTIONS(1014), + [anon_sym_GT_EQ] = ACTIONS(1012), + [aux_sym_cmd_identifier_token6] = ACTIONS(1016), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(994), + [anon_sym_out_GT_GT] = ACTIONS(994), + [anon_sym_e_GT_GT] = ACTIONS(994), + [anon_sym_o_GT_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(151)] = { + [sym_comment] = STATE(151), + [ts_builtin_sym_end] = ACTIONS(1018), + [anon_sym_in] = ACTIONS(1002), [anon_sym_STAR_STAR] = ACTIONS(1006), [anon_sym_PLUS_PLUS] = ACTIONS(1006), [anon_sym_STAR] = ACTIONS(1008), @@ -56561,214 +56698,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1008), [anon_sym_GT_EQ] = ACTIONS(1006), [aux_sym_cmd_identifier_token6] = ACTIONS(1010), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(151)] = { - [sym_comment] = STATE(151), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_SLASH] = ACTIONS(1016), - [anon_sym_mod] = ACTIONS(1014), - [anon_sym_SLASH_SLASH] = ACTIONS(1014), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_DASH] = ACTIONS(1014), - [anon_sym_bit_DASHshl] = ACTIONS(1014), - [anon_sym_bit_DASHshr] = ACTIONS(1014), - [anon_sym_EQ_TILDE] = ACTIONS(1014), - [anon_sym_BANG_TILDE] = ACTIONS(1014), - [anon_sym_like] = ACTIONS(1014), - [anon_sym_not_DASHlike] = ACTIONS(1014), - [anon_sym_bit_DASHand] = ACTIONS(1014), - [anon_sym_bit_DASHxor] = ACTIONS(1014), - [anon_sym_bit_DASHor] = ACTIONS(1014), - [anon_sym_and] = ACTIONS(1014), - [anon_sym_xor] = ACTIONS(1014), - [anon_sym_or] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1014), - [anon_sym_not_DASHin] = ACTIONS(1014), - [anon_sym_has] = ACTIONS(1014), - [anon_sym_not_DASHhas] = ACTIONS(1014), - [anon_sym_starts_DASHwith] = ACTIONS(1014), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), - [anon_sym_ends_DASHwith] = ACTIONS(1014), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), - [anon_sym_EQ_EQ] = ACTIONS(1014), - [anon_sym_BANG_EQ] = ACTIONS(1014), - [anon_sym_LT] = ACTIONS(1016), - [anon_sym_LT_EQ] = ACTIONS(1014), - [anon_sym_GT] = ACTIONS(1016), - [anon_sym_GT_EQ] = ACTIONS(1014), - [aux_sym_cmd_identifier_token6] = ACTIONS(1018), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), + [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_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_STAR2] = 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_has2] = ACTIONS(1002), + [anon_sym_not_DASHhas2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [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_like2] = ACTIONS(1002), + [anon_sym_not_DASHlike2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [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_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(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(103), }, [STATE(152)] = { - [sym_pipeline_parenthesized] = STATE(4506), - [sym_cmd_identifier] = STATE(2950), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), + [sym_pipeline_parenthesized] = STATE(4504), + [sym_cmd_identifier] = STATE(2914), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), [sym_comment] = STATE(152), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(186), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(278), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -56783,7 +56818,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), @@ -56797,7 +56832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -56805,10 +56840,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -56826,49 +56861,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(153)] = { - [sym_pipeline] = STATE(4211), - [sym_cmd_identifier] = STATE(2712), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym_pipeline_parenthesized] = STATE(4499), + [sym_cmd_identifier] = STATE(2914), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), [sym_comment] = STATE(153), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(186), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(278), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -56883,9 +56918,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -56897,18 +56932,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -56921,54 +56956,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(154)] = { - [sym_pipeline] = STATE(4169), - [sym_cmd_identifier] = STATE(2712), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym_pipeline_parenthesized] = STATE(4502), + [sym_cmd_identifier] = STATE(2914), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), [sym_comment] = STATE(154), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(186), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(278), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -56983,9 +57018,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -56997,18 +57032,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57021,54 +57056,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(155)] = { - [sym_pipeline_parenthesized] = STATE(4506), - [sym_cmd_identifier] = STATE(2950), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(139), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), [sym_comment] = STATE(155), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [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_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_STAR2] = 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_has2] = ACTIONS(1002), + [anon_sym_not_DASHhas2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [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_like2] = ACTIONS(1002), + [anon_sym_not_DASHlike2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [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_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(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(103), + }, + [STATE(156)] = { + [sym_pipeline] = STATE(4168), + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(156), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym_pipe_element_repeat2] = STATE(276), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -57083,9 +57218,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(459), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -57097,18 +57232,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1024), - [aux_sym__val_number_decimal_token2] = ACTIONS(1026), - [aux_sym__val_number_decimal_token3] = ACTIONS(1028), - [aux_sym__val_number_decimal_token4] = ACTIONS(1028), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57121,154 +57256,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(156)] = { - [sym_comment] = STATE(156), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_SLASH] = ACTIONS(1016), - [anon_sym_mod] = ACTIONS(1014), - [anon_sym_SLASH_SLASH] = ACTIONS(1014), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_DASH] = ACTIONS(1014), - [anon_sym_bit_DASHshl] = ACTIONS(1014), - [anon_sym_bit_DASHshr] = ACTIONS(1014), - [anon_sym_EQ_TILDE] = ACTIONS(1014), - [anon_sym_BANG_TILDE] = ACTIONS(1014), - [anon_sym_like] = ACTIONS(1014), - [anon_sym_not_DASHlike] = ACTIONS(1014), - [anon_sym_bit_DASHand] = ACTIONS(1014), - [anon_sym_bit_DASHxor] = ACTIONS(1014), - [anon_sym_bit_DASHor] = ACTIONS(1014), - [anon_sym_and] = ACTIONS(1014), - [anon_sym_xor] = ACTIONS(1014), - [anon_sym_or] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1014), - [anon_sym_not_DASHin] = ACTIONS(1014), - [anon_sym_has] = ACTIONS(1014), - [anon_sym_not_DASHhas] = ACTIONS(1014), - [anon_sym_starts_DASHwith] = ACTIONS(1014), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), - [anon_sym_ends_DASHwith] = ACTIONS(1014), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), - [anon_sym_EQ_EQ] = ACTIONS(1014), - [anon_sym_BANG_EQ] = ACTIONS(1014), - [anon_sym_LT] = ACTIONS(1016), - [anon_sym_LT_EQ] = ACTIONS(1014), - [anon_sym_GT] = ACTIONS(1016), - [anon_sym_GT_EQ] = ACTIONS(1014), - [aux_sym_cmd_identifier_token6] = ACTIONS(1018), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(157)] = { - [sym_pipeline_parenthesized] = STATE(4540), - [sym_cmd_identifier] = STATE(2950), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(139), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), + [sym_pipeline] = STATE(4175), + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(157), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym_pipe_element_repeat2] = STATE(276), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -57283,9 +57318,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(459), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -57297,18 +57332,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1024), - [aux_sym__val_number_decimal_token2] = ACTIONS(1026), - [aux_sym__val_number_decimal_token3] = ACTIONS(1028), - [aux_sym__val_number_decimal_token4] = ACTIONS(1028), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57321,54 +57356,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(158)] = { - [sym_pipeline_parenthesized] = STATE(4547), - [sym_cmd_identifier] = STATE(2950), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(139), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), + [sym_pipeline] = STATE(4176), + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(158), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym_pipe_element_repeat2] = STATE(276), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -57383,9 +57418,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(459), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -57397,18 +57432,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1024), - [aux_sym__val_number_decimal_token2] = ACTIONS(1026), - [aux_sym__val_number_decimal_token3] = ACTIONS(1028), - [aux_sym__val_number_decimal_token4] = ACTIONS(1028), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57421,54 +57456,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(159)] = { - [sym_pipeline] = STATE(4415), - [sym_cmd_identifier] = STATE(2951), - [sym__ctrl_expression] = STATE(3333), - [sym_ctrl_if] = STATE(3365), - [sym_ctrl_match] = STATE(3365), - [sym_ctrl_try] = STATE(3365), - [sym_pipe_element] = STATE(3098), - [sym_where_command] = STATE(3333), - [sym__expression] = STATE(2260), - [sym_expr_unary] = STATE(1276), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1276), - [sym__expr_binary_expression] = STATE(2222), - [sym_expr_parenthesized] = STATE(919), - [sym_val_range] = STATE(1276), - [sym__value] = STATE(1276), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(1294), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(120), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3333), + [sym_pipeline] = STATE(4206), + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(159), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(284), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym_pipe_element_repeat2] = STATE(276), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(459), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(160)] = { + [sym_pipeline] = STATE(4211), + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(160), + [aux_sym_pipeline_repeat1] = STATE(193), + [aux_sym_pipe_element_repeat2] = STATE(276), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(459), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(273), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(275), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [anon_sym_where] = ACTIONS(171), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(161)] = { + [sym_pipeline] = STATE(4416), + [sym_cmd_identifier] = STATE(2923), + [sym__ctrl_expression] = STATE(3323), + [sym_ctrl_if] = STATE(3369), + [sym_ctrl_match] = STATE(3369), + [sym_ctrl_try] = STATE(3369), + [sym_pipe_element] = STATE(3107), + [sym_where_command] = STATE(3323), + [sym__expression] = STATE(2264), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1273), + [sym__expr_binary_expression] = STATE(2226), + [sym_expr_parenthesized] = STATE(950), + [sym_val_range] = STATE(1273), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1311), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3323), + [sym_comment] = STATE(161), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), [anon_sym_let] = ACTIONS(39), @@ -57525,50 +57760,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(160)] = { - [sym_pipeline_parenthesized] = STATE(4510), - [sym_cmd_identifier] = STATE(2950), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [STATE(162)] = { + [sym_pipeline] = STATE(4168), + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(139), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), - [sym_comment] = STATE(160), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(162), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym_pipe_element_repeat2] = STATE(283), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -57583,9 +57818,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(1032), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -57597,11 +57832,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), @@ -57621,54 +57856,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(161)] = { - [sym_pipeline_parenthesized] = STATE(4511), - [sym_cmd_identifier] = STATE(2950), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [STATE(163)] = { + [sym_pipeline] = STATE(4175), + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(139), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), - [sym_comment] = STATE(161), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(163), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym_pipe_element_repeat2] = STATE(283), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -57683,9 +57918,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(1032), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -57697,11 +57932,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), @@ -57721,154 +57956,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(162)] = { - [sym_comment] = STATE(162), - [anon_sym_in] = ACTIONS(1004), - [anon_sym_STAR_STAR] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_SLASH] = ACTIONS(1016), - [anon_sym_mod] = ACTIONS(1014), - [anon_sym_SLASH_SLASH] = ACTIONS(1014), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_DASH] = ACTIONS(1014), - [anon_sym_bit_DASHshl] = ACTIONS(1014), - [anon_sym_bit_DASHshr] = ACTIONS(1014), - [anon_sym_EQ_TILDE] = ACTIONS(1014), - [anon_sym_BANG_TILDE] = ACTIONS(1014), - [anon_sym_like] = ACTIONS(1014), - [anon_sym_not_DASHlike] = ACTIONS(1014), - [anon_sym_bit_DASHand] = ACTIONS(1014), - [anon_sym_bit_DASHxor] = ACTIONS(1014), - [anon_sym_bit_DASHor] = ACTIONS(1014), - [anon_sym_and] = ACTIONS(1014), - [anon_sym_xor] = ACTIONS(1014), - [anon_sym_or] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1014), - [anon_sym_not_DASHin] = ACTIONS(1014), - [anon_sym_has] = ACTIONS(1014), - [anon_sym_not_DASHhas] = ACTIONS(1014), - [anon_sym_starts_DASHwith] = ACTIONS(1014), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), - [anon_sym_ends_DASHwith] = ACTIONS(1014), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), - [anon_sym_EQ_EQ] = ACTIONS(1014), - [anon_sym_BANG_EQ] = ACTIONS(1014), - [anon_sym_LT] = ACTIONS(1016), - [anon_sym_LT_EQ] = ACTIONS(1014), - [anon_sym_GT] = ACTIONS(1016), - [anon_sym_GT_EQ] = ACTIONS(1014), - [aux_sym_cmd_identifier_token6] = ACTIONS(1018), - [sym__newline] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1004), - [anon_sym_err_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_GT_PIPE] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), - [anon_sym_GT2] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_STAR2] = ACTIONS(1004), - [anon_sym_and2] = ACTIONS(1004), - [anon_sym_xor2] = ACTIONS(1004), - [anon_sym_or2] = ACTIONS(1004), - [anon_sym_not_DASHin2] = ACTIONS(1004), - [anon_sym_has2] = ACTIONS(1004), - [anon_sym_not_DASHhas2] = ACTIONS(1004), - [anon_sym_starts_DASHwith2] = ACTIONS(1004), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1004), - [anon_sym_ends_DASHwith2] = ACTIONS(1004), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1004), - [anon_sym_EQ_EQ2] = ACTIONS(1004), - [anon_sym_BANG_EQ2] = ACTIONS(1004), - [anon_sym_LT2] = ACTIONS(1004), - [anon_sym_LT_EQ2] = ACTIONS(1004), - [anon_sym_GT_EQ2] = ACTIONS(1004), - [anon_sym_EQ_TILDE2] = ACTIONS(1004), - [anon_sym_BANG_TILDE2] = ACTIONS(1004), - [anon_sym_like2] = ACTIONS(1004), - [anon_sym_not_DASHlike2] = ACTIONS(1004), - [anon_sym_STAR_STAR2] = ACTIONS(1004), - [anon_sym_PLUS_PLUS2] = ACTIONS(1004), - [anon_sym_SLASH2] = ACTIONS(1004), - [anon_sym_mod2] = ACTIONS(1004), - [anon_sym_SLASH_SLASH2] = ACTIONS(1004), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_bit_DASHshl2] = ACTIONS(1004), - [anon_sym_bit_DASHshr2] = ACTIONS(1004), - [anon_sym_bit_DASHand2] = ACTIONS(1004), - [anon_sym_bit_DASHxor2] = ACTIONS(1004), - [anon_sym_bit_DASHor2] = ACTIONS(1004), - [anon_sym_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(1004), - [anon_sym_out_GT_GT] = ACTIONS(1004), - [anon_sym_e_GT_GT] = ACTIONS(1004), - [anon_sym_o_GT_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(163)] = { - [sym_pipeline] = STATE(4169), - [sym_cmd_identifier] = STATE(2712), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), - [sym_comment] = STATE(163), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(285), + [STATE(164)] = { + [sym_pipeline] = STATE(4176), + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(164), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym_pipe_element_repeat2] = STATE(283), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -57883,7 +58018,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(1032), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -57897,7 +58032,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -57905,10 +58040,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -57925,50 +58060,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(164)] = { - [sym_pipeline] = STATE(4174), - [sym_cmd_identifier] = STATE(2712), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), - [sym_comment] = STATE(164), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(285), + [STATE(165)] = { + [sym_pipeline] = STATE(4206), + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(165), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym_pipe_element_repeat2] = STATE(283), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -57983,7 +58118,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(1032), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -57997,7 +58132,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58005,10 +58140,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58025,50 +58160,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(165)] = { - [sym_pipeline] = STATE(4175), - [sym_cmd_identifier] = STATE(2712), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), - [sym_comment] = STATE(165), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(285), + [STATE(166)] = { + [sym_pipeline] = STATE(4211), + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(166), + [aux_sym_pipeline_repeat1] = STATE(189), + [aux_sym_pipe_element_repeat2] = STATE(283), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -58083,7 +58218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(1032), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -58097,7 +58232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58105,10 +58240,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58125,50 +58260,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(166)] = { - [sym_pipeline] = STATE(4490), - [sym_cmd_identifier] = STATE(2951), - [sym__ctrl_expression] = STATE(3333), - [sym_ctrl_if] = STATE(3365), - [sym_ctrl_match] = STATE(3365), - [sym_ctrl_try] = STATE(3365), - [sym_pipe_element] = STATE(3098), - [sym_where_command] = STATE(3333), - [sym__expression] = STATE(2260), - [sym_expr_unary] = STATE(1276), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1276), - [sym__expr_binary_expression] = STATE(2222), - [sym_expr_parenthesized] = STATE(919), - [sym_val_range] = STATE(1276), - [sym__value] = STATE(1276), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(1294), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(120), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3333), - [sym_comment] = STATE(166), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(284), + [STATE(167)] = { + [sym_pipeline] = STATE(4469), + [sym_cmd_identifier] = STATE(2923), + [sym__ctrl_expression] = STATE(3323), + [sym_ctrl_if] = STATE(3369), + [sym_ctrl_match] = STATE(3369), + [sym_ctrl_try] = STATE(3369), + [sym_pipe_element] = STATE(3107), + [sym_where_command] = STATE(3323), + [sym__expression] = STATE(2264), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1273), + [sym__expr_binary_expression] = STATE(2226), + [sym_expr_parenthesized] = STATE(950), + [sym_val_range] = STATE(1273), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1311), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3323), + [sym_comment] = STATE(167), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), [anon_sym_let] = ACTIONS(39), @@ -58225,50 +58360,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(167)] = { - [sym_pipeline] = STATE(4211), - [sym_cmd_identifier] = STATE(2712), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [STATE(168)] = { + [sym_pipeline_parenthesized] = STATE(4504), + [sym_cmd_identifier] = STATE(2914), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), - [sym_comment] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(285), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(168), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -58283,9 +58418,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -58297,11 +58432,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), @@ -58321,154 +58456,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(168)] = { - [sym_pipeline] = STATE(4445), - [sym_cmd_identifier] = STATE(2951), - [sym__ctrl_expression] = STATE(3333), - [sym_ctrl_if] = STATE(3365), - [sym_ctrl_match] = STATE(3365), - [sym_ctrl_try] = STATE(3365), - [sym_pipe_element] = STATE(3098), - [sym_where_command] = STATE(3333), - [sym__expression] = STATE(2260), - [sym_expr_unary] = STATE(1276), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1276), - [sym__expr_binary_expression] = STATE(2222), - [sym_expr_parenthesized] = STATE(919), - [sym_val_range] = STATE(1276), - [sym__value] = STATE(1276), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(1294), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(120), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3333), - [sym_comment] = STATE(168), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(284), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_const] = ACTIONS(39), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(39), - [anon_sym_use] = ACTIONS(39), - [anon_sym_export_DASHenv] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_for] = ACTIONS(39), - [anon_sym_loop] = ACTIONS(39), - [anon_sym_while] = ACTIONS(39), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(43), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, [STATE(169)] = { - [sym_pipeline_parenthesized] = STATE(4540), - [sym_cmd_identifier] = STATE(2950), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), + [sym_pipeline] = STATE(4168), + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), [sym_comment] = STATE(169), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -58483,9 +58518,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -58497,18 +58532,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58521,54 +58556,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(170)] = { - [sym_pipeline_parenthesized] = STATE(4547), - [sym_cmd_identifier] = STATE(2950), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [sym_pipeline_parenthesized] = STATE(4540), + [sym_cmd_identifier] = STATE(2914), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), [sym_comment] = STATE(170), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -58597,7 +58632,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58626,49 +58661,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(171)] = { - [sym_pipeline] = STATE(4169), - [sym_cmd_identifier] = STATE(2712), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(139), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), [sym_comment] = STATE(171), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(282), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(994), + [anon_sym_out_GT_GT] = ACTIONS(994), + [anon_sym_e_GT_GT] = ACTIONS(994), + [anon_sym_o_GT_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(172)] = { + [sym_pipeline] = STATE(4443), + [sym_cmd_identifier] = STATE(2923), + [sym__ctrl_expression] = STATE(3323), + [sym_ctrl_if] = STATE(3369), + [sym_ctrl_match] = STATE(3369), + [sym_ctrl_try] = STATE(3369), + [sym_pipe_element] = STATE(3107), + [sym_where_command] = STATE(3323), + [sym__expression] = STATE(2264), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1273), + [sym__expr_binary_expression] = STATE(2226), + [sym_expr_parenthesized] = STATE(950), + [sym_val_range] = STATE(1273), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1311), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3323), + [sym_comment] = STATE(172), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipe_element_repeat2] = STATE(293), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(39), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_const] = ACTIONS(39), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(39), + [anon_sym_use] = ACTIONS(39), + [anon_sym_export_DASHenv] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(39), + [anon_sym_for] = ACTIONS(39), + [anon_sym_loop] = ACTIONS(39), + [anon_sym_while] = ACTIONS(39), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(43), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(173)] = { + [sym_pipeline] = STATE(4438), + [sym_cmd_identifier] = STATE(2923), + [sym__ctrl_expression] = STATE(3323), + [sym_ctrl_if] = STATE(3369), + [sym_ctrl_match] = STATE(3369), + [sym_ctrl_try] = STATE(3369), + [sym_pipe_element] = STATE(3107), + [sym_where_command] = STATE(3323), + [sym__expression] = STATE(2264), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1273), + [sym__expr_binary_expression] = STATE(2226), + [sym_expr_parenthesized] = STATE(950), + [sym_val_range] = STATE(1273), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1311), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3323), + [sym_comment] = STATE(173), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipe_element_repeat2] = STATE(293), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(39), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_const] = ACTIONS(39), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(39), + [anon_sym_use] = ACTIONS(39), + [anon_sym_export_DASHenv] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(39), + [anon_sym_for] = ACTIONS(39), + [anon_sym_loop] = ACTIONS(39), + [anon_sym_while] = ACTIONS(39), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(43), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(174)] = { + [sym_pipeline] = STATE(4175), + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(174), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -58683,7 +59018,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -58697,7 +59032,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58705,10 +59040,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1024), - [aux_sym__val_number_decimal_token2] = ACTIONS(1026), - [aux_sym__val_number_decimal_token3] = ACTIONS(1028), - [aux_sym__val_number_decimal_token4] = ACTIONS(1028), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58725,50 +59060,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(172)] = { - [sym_pipeline] = STATE(4174), - [sym_cmd_identifier] = STATE(2712), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(139), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), - [sym_comment] = STATE(172), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(282), + [STATE(175)] = { + [sym_pipeline] = STATE(4176), + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(175), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -58783,7 +59118,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -58797,7 +59132,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58805,10 +59140,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1024), - [aux_sym__val_number_decimal_token2] = ACTIONS(1026), - [aux_sym__val_number_decimal_token3] = ACTIONS(1028), - [aux_sym__val_number_decimal_token4] = ACTIONS(1028), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58825,50 +59160,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(173)] = { - [sym_pipeline] = STATE(4175), - [sym_cmd_identifier] = STATE(2712), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(139), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), - [sym_comment] = STATE(173), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(282), + [STATE(176)] = { + [sym_pipeline] = STATE(4206), + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(176), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -58883,7 +59218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -58897,7 +59232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -58905,10 +59240,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1024), - [aux_sym__val_number_decimal_token2] = ACTIONS(1026), - [aux_sym__val_number_decimal_token3] = ACTIONS(1028), - [aux_sym__val_number_decimal_token4] = ACTIONS(1028), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -58925,150 +59260,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(174)] = { - [sym_pipeline] = STATE(4206), - [sym_cmd_identifier] = STATE(2712), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(139), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), - [sym_comment] = STATE(174), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(282), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1024), - [aux_sym__val_number_decimal_token2] = ACTIONS(1026), - [aux_sym__val_number_decimal_token3] = ACTIONS(1028), - [aux_sym__val_number_decimal_token4] = ACTIONS(1028), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(175)] = { + [STATE(177)] = { [sym_pipeline] = STATE(4211), - [sym_cmd_identifier] = STATE(2712), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(139), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), - [sym_comment] = STATE(175), - [aux_sym_pipeline_repeat1] = STATE(188), - [aux_sym_pipe_element_repeat2] = STATE(282), + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2931), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(177), + [aux_sym_pipeline_repeat1] = STATE(187), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -59083,7 +59318,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -59097,7 +59332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -59105,10 +59340,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1024), - [aux_sym__val_number_decimal_token2] = ACTIONS(1026), - [aux_sym__val_number_decimal_token3] = ACTIONS(1028), - [aux_sym__val_number_decimal_token4] = ACTIONS(1028), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59125,150 +59360,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(176)] = { - [sym_pipeline] = STATE(4539), - [sym_cmd_identifier] = STATE(2951), - [sym__ctrl_expression] = STATE(3333), - [sym_ctrl_if] = STATE(3365), - [sym_ctrl_match] = STATE(3365), - [sym_ctrl_try] = STATE(3365), - [sym_pipe_element] = STATE(3098), - [sym_where_command] = STATE(3333), - [sym__expression] = STATE(2260), - [sym_expr_unary] = STATE(1276), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1276), - [sym__expr_binary_expression] = STATE(2222), - [sym_expr_parenthesized] = STATE(919), - [sym_val_range] = STATE(1276), - [sym__value] = STATE(1276), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(1294), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(120), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3333), - [sym_comment] = STATE(176), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(284), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_const] = ACTIONS(39), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(39), - [anon_sym_use] = ACTIONS(39), - [anon_sym_export_DASHenv] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_for] = ACTIONS(39), - [anon_sym_loop] = ACTIONS(39), - [anon_sym_while] = ACTIONS(39), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(43), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(177)] = { - [sym_pipeline_parenthesized] = STATE(4510), - [sym_cmd_identifier] = STATE(2950), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [STATE(178)] = { + [sym_pipeline_parenthesized] = STATE(4499), + [sym_cmd_identifier] = STATE(2914), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), - [sym_comment] = STATE(177), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(178), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -59297,7 +59432,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -59325,150 +59460,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(178)] = { - [sym_pipeline] = STATE(4442), - [sym_cmd_identifier] = STATE(2951), - [sym__ctrl_expression] = STATE(3333), - [sym_ctrl_if] = STATE(3365), - [sym_ctrl_match] = STATE(3365), - [sym_ctrl_try] = STATE(3365), - [sym_pipe_element] = STATE(3098), - [sym_where_command] = STATE(3333), - [sym__expression] = STATE(2260), - [sym_expr_unary] = STATE(1276), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1276), - [sym__expr_binary_expression] = STATE(2222), - [sym_expr_parenthesized] = STATE(919), - [sym_val_range] = STATE(1276), - [sym__value] = STATE(1276), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(1294), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(120), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3333), - [sym_comment] = STATE(178), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(284), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_const] = ACTIONS(39), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(39), - [anon_sym_use] = ACTIONS(39), - [anon_sym_export_DASHenv] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_for] = ACTIONS(39), - [anon_sym_loop] = ACTIONS(39), - [anon_sym_while] = ACTIONS(39), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(41), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(43), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(69), - [anon_sym_where] = ACTIONS(71), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, [STATE(179)] = { - [sym_pipeline_parenthesized] = STATE(4511), - [sym_cmd_identifier] = STATE(2950), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2968), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [sym_pipeline_parenthesized] = STATE(4502), + [sym_cmd_identifier] = STATE(2914), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), [sym_comment] = STATE(179), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(192), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -59497,7 +59532,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -59526,49 +59561,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(180)] = { - [sym_pipeline] = STATE(4174), - [sym_cmd_identifier] = STATE(2712), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym_pipeline_parenthesized] = STATE(4495), + [sym_cmd_identifier] = STATE(2914), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), [sym_comment] = STATE(180), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(186), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(278), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -59583,9 +59618,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -59597,18 +59632,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59621,54 +59656,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(181)] = { - [sym_pipeline] = STATE(4175), - [sym_cmd_identifier] = STATE(2712), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym_pipeline_parenthesized] = STATE(4495), + [sym_cmd_identifier] = STATE(2914), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), [sym_comment] = STATE(181), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym_pipe_element_repeat2] = STATE(281), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -59683,9 +59718,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -59697,18 +59732,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59721,154 +59756,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(182)] = { - [sym_pipeline] = STATE(4206), - [sym_cmd_identifier] = STATE(2712), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym_pipeline] = STATE(4480), + [sym_cmd_identifier] = STATE(2923), + [sym__ctrl_expression] = STATE(3323), + [sym_ctrl_if] = STATE(3369), + [sym_ctrl_match] = STATE(3369), + [sym_ctrl_try] = STATE(3369), + [sym_pipe_element] = STATE(3107), + [sym_where_command] = STATE(3323), + [sym__expression] = STATE(2264), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1273), + [sym__expr_binary_expression] = STATE(2226), + [sym_expr_parenthesized] = STATE(950), + [sym_val_range] = STATE(1273), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1311), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3323), [sym_comment] = STATE(182), - [aux_sym_pipeline_repeat1] = STATE(187), - [aux_sym_pipe_element_repeat2] = STATE(281), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(275), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipe_element_repeat2] = STATE(293), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(39), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_const] = ACTIONS(39), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(39), + [anon_sym_use] = ACTIONS(39), + [anon_sym_export_DASHenv] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(39), + [anon_sym_for] = ACTIONS(39), + [anon_sym_loop] = ACTIONS(39), + [anon_sym_while] = ACTIONS(39), + [anon_sym_if] = ACTIONS(37), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(43), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [anon_sym_where] = ACTIONS(71), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(105), }, [STATE(183)] = { - [sym_pipeline] = STATE(4206), - [sym_cmd_identifier] = STATE(2712), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2886), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym_pipeline_parenthesized] = STATE(4540), + [sym_cmd_identifier] = STATE(2914), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3026), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), [sym_comment] = STATE(183), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(285), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(186), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(278), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -59883,9 +59918,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -59897,18 +59932,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -59921,53 +59956,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, [STATE(184)] = { - [sym_cmd_identifier] = STATE(2712), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(3323), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [sym_cmd_identifier] = STATE(2914), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3333), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(142), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), [sym_comment] = STATE(184), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(278), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(274), [anon_sym_export] = ACTIONS(1034), [anon_sym_alias] = ACTIONS(1037), [anon_sym_let] = ACTIONS(1037), @@ -60025,147 +60060,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1127), }, [STATE(185)] = { - [sym_cmd_identifier] = STATE(2950), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(3276), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(142), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), + [sym_cmd_identifier] = STATE(2923), + [sym__ctrl_expression] = STATE(3323), + [sym_ctrl_if] = STATE(3369), + [sym_ctrl_match] = STATE(3369), + [sym_ctrl_try] = STATE(3369), + [sym_pipe_element] = STATE(3075), + [sym_where_command] = STATE(3323), + [sym__expression] = STATE(2264), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1273), + [sym__expr_binary_expression] = STATE(2226), + [sym_expr_parenthesized] = STATE(950), + [sym_val_range] = STATE(1273), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1311), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3323), [sym_comment] = STATE(185), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(286), - [anon_sym_export] = ACTIONS(1130), - [anon_sym_alias] = ACTIONS(1133), - [anon_sym_let] = ACTIONS(1133), - [anon_sym_mut] = ACTIONS(1133), - [anon_sym_const] = ACTIONS(1133), - [aux_sym_cmd_identifier_token1] = ACTIONS(1136), - [anon_sym_def] = ACTIONS(1133), - [anon_sym_use] = ACTIONS(1133), - [anon_sym_export_DASHenv] = ACTIONS(1133), - [anon_sym_extern] = ACTIONS(1133), - [anon_sym_module] = ACTIONS(1133), - [anon_sym_for] = ACTIONS(1133), - [anon_sym_loop] = ACTIONS(1133), - [anon_sym_while] = ACTIONS(1133), - [anon_sym_if] = ACTIONS(1139), - [anon_sym_else] = ACTIONS(1133), - [anon_sym_try] = ACTIONS(1142), - [anon_sym_catch] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1130), - [anon_sym_true] = ACTIONS(1148), - [anon_sym_false] = ACTIONS(1148), - [anon_sym_null] = ACTIONS(1151), - [aux_sym_cmd_identifier_token3] = ACTIONS(1154), - [aux_sym_cmd_identifier_token4] = ACTIONS(1154), - [aux_sym_cmd_identifier_token5] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(1160), - [anon_sym_DOLLAR] = ACTIONS(1163), - [anon_sym_DASH2] = ACTIONS(1166), - [anon_sym_LBRACE] = ACTIONS(1169), - [anon_sym_DOT_DOT] = ACTIONS(1172), - [anon_sym_where] = ACTIONS(1175), - [aux_sym_expr_unary_token1] = ACTIONS(1178), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), - [anon_sym_DOT_DOT_LT] = ACTIONS(1181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1184), - [aux_sym__val_number_decimal_token2] = ACTIONS(1187), - [aux_sym__val_number_decimal_token3] = ACTIONS(1190), - [aux_sym__val_number_decimal_token4] = ACTIONS(1190), - [aux_sym__val_number_token1] = ACTIONS(1193), - [aux_sym__val_number_token2] = ACTIONS(1193), - [aux_sym__val_number_token3] = ACTIONS(1193), - [anon_sym_0b] = ACTIONS(1196), - [anon_sym_0o] = ACTIONS(1199), - [anon_sym_0x] = ACTIONS(1199), - [sym_val_date] = ACTIONS(1202), - [anon_sym_DQUOTE] = ACTIONS(1205), - [anon_sym_SQUOTE] = ACTIONS(1208), - [anon_sym_BQUOTE] = ACTIONS(1211), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1214), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1217), - [anon_sym_CARET] = ACTIONS(1220), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1223), - }, - [STATE(186)] = { - [sym_cmd_identifier] = STATE(2951), - [sym__ctrl_expression] = STATE(3333), - [sym_ctrl_if] = STATE(3365), - [sym_ctrl_match] = STATE(3365), - [sym_ctrl_try] = STATE(3365), - [sym_pipe_element] = STATE(2992), - [sym_where_command] = STATE(3333), - [sym__expression] = STATE(2260), - [sym_expr_unary] = STATE(1276), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1276), - [sym__expr_binary_expression] = STATE(2222), - [sym_expr_parenthesized] = STATE(919), - [sym_val_range] = STATE(1276), - [sym__value] = STATE(1276), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(1294), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(120), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3333), - [sym_comment] = STATE(186), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(284), + [aux_sym_pipeline_repeat1] = STATE(190), + [aux_sym_pipe_element_repeat2] = STATE(293), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), [anon_sym_let] = ACTIONS(39), @@ -60222,49 +60158,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(187)] = { - [sym_cmd_identifier] = STATE(2712), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2947), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), - [sym_comment] = STATE(187), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(281), + [STATE(186)] = { + [sym_cmd_identifier] = STATE(2914), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3047), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(186), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(278), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -60279,9 +60215,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), + [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -60293,18 +60229,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(171), + [anon_sym_where] = ACTIONS(333), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -60317,53 +60253,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(188)] = { - [sym_cmd_identifier] = STATE(2712), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2947), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(139), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), - [sym_comment] = STATE(188), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(282), + [STATE(187)] = { + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2949), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(187), + [aux_sym_pipeline_repeat1] = STATE(190), + [aux_sym_pipe_element_repeat2] = STATE(288), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -60378,7 +60314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -60392,7 +60328,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -60400,10 +60336,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1024), - [aux_sym__val_number_decimal_token2] = ACTIONS(1026), - [aux_sym__val_number_decimal_token3] = ACTIONS(1028), - [aux_sym__val_number_decimal_token4] = ACTIONS(1028), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -60420,148 +60356,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(189)] = { - [sym_comment] = STATE(189), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_SLASH] = ACTIONS(1016), - [anon_sym_mod] = ACTIONS(1014), - [anon_sym_SLASH_SLASH] = ACTIONS(1014), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_DASH] = ACTIONS(1014), - [anon_sym_bit_DASHshl] = ACTIONS(1014), - [anon_sym_bit_DASHshr] = ACTIONS(1014), - [anon_sym_EQ_TILDE] = ACTIONS(1014), - [anon_sym_BANG_TILDE] = ACTIONS(1014), - [anon_sym_like] = ACTIONS(1014), - [anon_sym_not_DASHlike] = ACTIONS(1014), - [anon_sym_bit_DASHand] = ACTIONS(1014), - [anon_sym_bit_DASHxor] = ACTIONS(1014), - [anon_sym_bit_DASHor] = ACTIONS(1014), - [anon_sym_and] = ACTIONS(1014), - [anon_sym_xor] = ACTIONS(1014), - [anon_sym_or] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1014), - [anon_sym_not_DASHin] = ACTIONS(1014), - [anon_sym_has] = ACTIONS(1014), - [anon_sym_not_DASHhas] = ACTIONS(1014), - [anon_sym_starts_DASHwith] = ACTIONS(1014), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), - [anon_sym_ends_DASHwith] = ACTIONS(1014), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), - [anon_sym_EQ_EQ] = ACTIONS(1014), - [anon_sym_BANG_EQ] = ACTIONS(1014), - [anon_sym_LT] = ACTIONS(1016), - [anon_sym_LT_EQ] = ACTIONS(1014), - [anon_sym_GT] = ACTIONS(1016), - [anon_sym_GT_EQ] = ACTIONS(1014), - [aux_sym_cmd_identifier_token6] = ACTIONS(1018), - [sym__newline] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(996), - [anon_sym_out_GT_GT] = ACTIONS(996), - [anon_sym_e_GT_GT] = ACTIONS(996), - [anon_sym_o_GT_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(190)] = { - [sym_cmd_identifier] = STATE(2950), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2975), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(139), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), - [sym_comment] = STATE(190), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(289), + [STATE(188)] = { + [sym_cmd_identifier] = STATE(2914), + [sym__ctrl_expression_parenthesized] = STATE(3366), + [sym_ctrl_if_parenthesized] = STATE(3374), + [sym_ctrl_match] = STATE(3374), + [sym_ctrl_try_parenthesized] = STATE(3374), + [sym_pipe_element_parenthesized] = STATE(3047), + [sym_where_command_parenthesized] = STATE(3366), + [sym__expression_parenthesized] = STATE(2260), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3393), + [sym_comment] = STATE(188), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(184), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(279), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -60576,7 +60413,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(329), [anon_sym_catch] = ACTIONS(271), @@ -60590,7 +60427,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -60598,10 +60435,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1024), - [aux_sym__val_number_decimal_token2] = ACTIONS(1026), - [aux_sym__val_number_decimal_token3] = ACTIONS(1028), - [aux_sym__val_number_decimal_token4] = ACTIONS(1028), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -60618,49 +60455,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(191)] = { - [sym_cmd_identifier] = STATE(2712), - [sym__ctrl_expression] = STATE(3150), - [sym_ctrl_if] = STATE(3153), - [sym_ctrl_match] = STATE(3153), - [sym_ctrl_try] = STATE(3153), - [sym_pipe_element] = STATE(2947), - [sym_where_command] = STATE(3150), - [sym__expression] = STATE(2253), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3150), - [sym_comment] = STATE(191), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(285), + [STATE(189)] = { + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2949), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(189), + [aux_sym_pipeline_repeat1] = STATE(190), + [aux_sym_pipe_element_repeat2] = STATE(283), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -60675,7 +60512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(1032), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), @@ -60689,7 +60526,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), @@ -60697,10 +60534,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -60717,49 +60554,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(190)] = { + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(3289), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(142), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(190), + [aux_sym_pipeline_repeat1] = STATE(190), + [aux_sym_pipe_element_repeat2] = STATE(286), + [anon_sym_export] = ACTIONS(1130), + [anon_sym_alias] = ACTIONS(1133), + [anon_sym_let] = ACTIONS(1133), + [anon_sym_mut] = ACTIONS(1133), + [anon_sym_const] = ACTIONS(1133), + [aux_sym_cmd_identifier_token1] = ACTIONS(1136), + [anon_sym_def] = ACTIONS(1133), + [anon_sym_use] = ACTIONS(1133), + [anon_sym_export_DASHenv] = ACTIONS(1133), + [anon_sym_extern] = ACTIONS(1133), + [anon_sym_module] = ACTIONS(1133), + [anon_sym_for] = ACTIONS(1133), + [anon_sym_loop] = ACTIONS(1133), + [anon_sym_while] = ACTIONS(1133), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_else] = ACTIONS(1133), + [anon_sym_try] = ACTIONS(1142), + [anon_sym_catch] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1130), + [anon_sym_true] = ACTIONS(1148), + [anon_sym_false] = ACTIONS(1148), + [anon_sym_null] = ACTIONS(1151), + [aux_sym_cmd_identifier_token3] = ACTIONS(1154), + [aux_sym_cmd_identifier_token4] = ACTIONS(1154), + [aux_sym_cmd_identifier_token5] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1160), + [anon_sym_DOLLAR] = ACTIONS(1163), + [anon_sym_DASH2] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1169), + [anon_sym_DOT_DOT] = ACTIONS(1172), + [anon_sym_where] = ACTIONS(1175), + [aux_sym_expr_unary_token1] = ACTIONS(1178), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), + [anon_sym_DOT_DOT_LT] = ACTIONS(1181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1184), + [aux_sym__val_number_decimal_token2] = ACTIONS(1187), + [aux_sym__val_number_decimal_token3] = ACTIONS(1190), + [aux_sym__val_number_decimal_token4] = ACTIONS(1190), + [aux_sym__val_number_token1] = ACTIONS(1193), + [aux_sym__val_number_token2] = ACTIONS(1193), + [aux_sym__val_number_token3] = ACTIONS(1193), + [anon_sym_0b] = ACTIONS(1196), + [anon_sym_0o] = ACTIONS(1199), + [anon_sym_0x] = ACTIONS(1199), + [sym_val_date] = ACTIONS(1202), + [anon_sym_DQUOTE] = ACTIONS(1205), + [anon_sym_SQUOTE] = ACTIONS(1208), + [anon_sym_BQUOTE] = ACTIONS(1211), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1214), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1220), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1223), + }, + [STATE(191)] = { + [sym_comment] = STATE(191), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = 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(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_STAR2] = 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_has2] = ACTIONS(1002), + [anon_sym_not_DASHhas2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [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_like2] = ACTIONS(1002), + [anon_sym_not_DASHlike2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [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_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(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(103), + }, [STATE(192)] = { - [sym_cmd_identifier] = STATE(2950), - [sym__ctrl_expression_parenthesized] = STATE(3324), - [sym_ctrl_if_parenthesized] = STATE(3397), - [sym_ctrl_match] = STATE(3397), - [sym_ctrl_try_parenthesized] = STATE(3397), - [sym_pipe_element_parenthesized] = STATE(2975), - [sym_where_command_parenthesized] = STATE(3324), - [sym__expression_parenthesized] = STATE(2256), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3275), [sym_comment] = STATE(192), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(185), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(291), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(994), + [anon_sym_out_GT_GT] = ACTIONS(994), + [anon_sym_e_GT_GT] = ACTIONS(994), + [anon_sym_o_GT_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(193)] = { + [sym_cmd_identifier] = STATE(2786), + [sym__ctrl_expression] = STATE(3143), + [sym_ctrl_if] = STATE(3144), + [sym_ctrl_match] = STATE(3144), + [sym_ctrl_try] = STATE(3144), + [sym_pipe_element] = STATE(2949), + [sym_where_command] = STATE(3143), + [sym__expression] = STATE(2256), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3143), + [sym_comment] = STATE(193), + [aux_sym_pipeline_repeat1] = STATE(190), + [aux_sym_pipe_element_repeat2] = STATE(276), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -60774,9 +60908,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(459), [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(273), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(275), [anon_sym_in] = ACTIONS(277), @@ -60788,11 +60922,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), - [anon_sym_where] = ACTIONS(333), + [anon_sym_where] = ACTIONS(171), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), @@ -60812,147 +60946,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(193)] = { - [sym_comment] = STATE(193), - [anon_sym_in] = ACTIONS(1004), - [anon_sym_STAR_STAR] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_SLASH] = ACTIONS(1016), - [anon_sym_mod] = ACTIONS(1014), - [anon_sym_SLASH_SLASH] = ACTIONS(1014), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_DASH] = ACTIONS(1014), - [anon_sym_bit_DASHshl] = ACTIONS(1014), - [anon_sym_bit_DASHshr] = ACTIONS(1014), - [anon_sym_EQ_TILDE] = ACTIONS(1014), - [anon_sym_BANG_TILDE] = ACTIONS(1014), - [anon_sym_like] = ACTIONS(1014), - [anon_sym_not_DASHlike] = ACTIONS(1014), - [anon_sym_bit_DASHand] = ACTIONS(1014), - [anon_sym_bit_DASHxor] = ACTIONS(1014), - [anon_sym_bit_DASHor] = ACTIONS(1014), - [anon_sym_and] = ACTIONS(1014), - [anon_sym_xor] = ACTIONS(1014), - [anon_sym_or] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1014), - [anon_sym_not_DASHin] = ACTIONS(1014), - [anon_sym_has] = ACTIONS(1014), - [anon_sym_not_DASHhas] = ACTIONS(1014), - [anon_sym_starts_DASHwith] = ACTIONS(1014), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), - [anon_sym_ends_DASHwith] = ACTIONS(1014), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), - [anon_sym_EQ_EQ] = ACTIONS(1014), - [anon_sym_BANG_EQ] = ACTIONS(1014), - [anon_sym_LT] = ACTIONS(1016), - [anon_sym_LT_EQ] = ACTIONS(1014), - [anon_sym_GT] = ACTIONS(1016), - [anon_sym_GT_EQ] = ACTIONS(1014), - [aux_sym_cmd_identifier_token6] = ACTIONS(1018), - [sym__newline] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1004), - [anon_sym_err_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_GT_PIPE] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), - [anon_sym_GT2] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_STAR2] = ACTIONS(1004), - [anon_sym_and2] = ACTIONS(1004), - [anon_sym_xor2] = ACTIONS(1004), - [anon_sym_or2] = ACTIONS(1004), - [anon_sym_not_DASHin2] = ACTIONS(1004), - [anon_sym_has2] = ACTIONS(1004), - [anon_sym_not_DASHhas2] = ACTIONS(1004), - [anon_sym_starts_DASHwith2] = ACTIONS(1004), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1004), - [anon_sym_ends_DASHwith2] = ACTIONS(1004), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1004), - [anon_sym_EQ_EQ2] = ACTIONS(1004), - [anon_sym_BANG_EQ2] = ACTIONS(1004), - [anon_sym_LT2] = ACTIONS(1004), - [anon_sym_LT_EQ2] = ACTIONS(1004), - [anon_sym_GT_EQ2] = ACTIONS(1004), - [anon_sym_EQ_TILDE2] = ACTIONS(1004), - [anon_sym_BANG_TILDE2] = ACTIONS(1004), - [anon_sym_like2] = ACTIONS(1004), - [anon_sym_not_DASHlike2] = ACTIONS(1004), - [anon_sym_STAR_STAR2] = ACTIONS(1004), - [anon_sym_PLUS_PLUS2] = ACTIONS(1004), - [anon_sym_SLASH2] = ACTIONS(1004), - [anon_sym_mod2] = ACTIONS(1004), - [anon_sym_SLASH_SLASH2] = ACTIONS(1004), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_bit_DASHshl2] = ACTIONS(1004), - [anon_sym_bit_DASHshr2] = ACTIONS(1004), - [anon_sym_bit_DASHand2] = ACTIONS(1004), - [anon_sym_bit_DASHxor2] = ACTIONS(1004), - [anon_sym_bit_DASHor2] = ACTIONS(1004), - [anon_sym_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(1004), - [anon_sym_out_GT_GT] = ACTIONS(1004), - [anon_sym_e_GT_GT] = ACTIONS(1004), - [anon_sym_o_GT_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(194)] = { - [sym_expr_parenthesized] = STATE(3854), - [sym__spread_parenthesized] = STATE(3003), - [sym_val_range] = STATE(3030), - [sym__val_range] = STATE(4477), - [sym__value] = STATE(3030), - [sym_val_nothing] = STATE(3022), - [sym_val_bool] = STATE(4029), - [sym__spread_variable] = STATE(3036), - [sym_val_variable] = STATE(3832), - [sym_val_cellpath] = STATE(3022), - [sym_val_number] = STATE(3022), - [sym__val_number_decimal] = STATE(3421), - [sym__val_number] = STATE(3024), - [sym_val_duration] = STATE(3022), - [sym_val_filesize] = STATE(3022), - [sym_val_binary] = STATE(3022), - [sym_val_string] = STATE(3022), - [sym__raw_str] = STATE(2508), - [sym__str_double_quotes] = STATE(2508), - [sym__str_single_quotes] = STATE(2508), - [sym__str_back_ticks] = STATE(2508), - [sym_val_interpolated] = STATE(3022), - [sym__inter_single_quotes] = STATE(2983), - [sym__inter_double_quotes] = STATE(3101), - [sym_val_list] = STATE(3022), - [sym__spread_list] = STATE(3003), - [sym_val_record] = STATE(3022), - [sym_val_table] = STATE(3022), - [sym_val_closure] = STATE(3022), - [sym__cmd_arg] = STATE(3051), - [sym_redirection] = STATE(3053), - [sym__flag] = STATE(3060), - [sym_short_flag] = STATE(3092), - [sym_long_flag] = STATE(3092), - [sym_unquoted] = STATE(2706), - [sym__unquoted_with_expr] = STATE(3107), - [sym__unquoted_anonymous_prefix] = STATE(4477), + [sym_expr_parenthesized] = STATE(3885), + [sym__spread_parenthesized] = STATE(3114), + [sym_val_range] = STATE(3117), + [sym__val_range] = STATE(4483), + [sym__value] = STATE(3117), + [sym_val_nothing] = STATE(3105), + [sym_val_bool] = STATE(3965), + [sym__spread_variable] = STATE(3118), + [sym_val_variable] = STATE(3920), + [sym_val_cellpath] = STATE(3105), + [sym_val_number] = STATE(3105), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(3106), + [sym_val_duration] = STATE(3105), + [sym_val_filesize] = STATE(3105), + [sym_val_binary] = STATE(3105), + [sym_val_string] = STATE(3105), + [sym__raw_str] = STATE(2499), + [sym__str_double_quotes] = STATE(2499), + [sym__str_single_quotes] = STATE(2499), + [sym__str_back_ticks] = STATE(2499), + [sym_val_interpolated] = STATE(3105), + [sym__inter_single_quotes] = STATE(3009), + [sym__inter_double_quotes] = STATE(3012), + [sym_val_list] = STATE(3105), + [sym__spread_list] = STATE(3114), + [sym_val_record] = STATE(3105), + [sym_val_table] = STATE(3105), + [sym_val_closure] = STATE(3105), + [sym__cmd_arg] = STATE(3119), + [sym_redirection] = STATE(2972), + [sym__flag] = STATE(3127), + [sym_short_flag] = STATE(2974), + [sym_long_flag] = STATE(2974), + [sym_unquoted] = STATE(2710), + [sym__unquoted_with_expr] = STATE(2979), + [sym__unquoted_anonymous_prefix] = STATE(4483), [sym_comment] = STATE(194), [anon_sym_true] = ACTIONS(1226), [anon_sym_false] = ACTIONS(1226), @@ -60960,93 +60995,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token3] = ACTIONS(1230), [aux_sym_cmd_identifier_token4] = ACTIONS(1230), [aux_sym_cmd_identifier_token5] = ACTIONS(1230), - [sym__newline] = ACTIONS(818), - [sym__space] = ACTIONS(872), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(822), - [anon_sym_DOLLAR] = ACTIONS(824), + [sym__newline] = ACTIONS(812), + [sym__space] = ACTIONS(882), + [anon_sym_SEMI] = ACTIONS(812), + [anon_sym_LBRACK] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(816), + [anon_sym_DOLLAR] = ACTIONS(818), [anon_sym_DASH_DASH] = ACTIONS(1232), [anon_sym_DASH2] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(824), [anon_sym_DOT_DOT] = ACTIONS(1236), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(834), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(828), [anon_sym_DOT_DOT_EQ] = ACTIONS(1238), [anon_sym_DOT_DOT_LT] = ACTIONS(1238), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(838), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(832), [aux_sym__val_number_decimal_token1] = ACTIONS(1240), [aux_sym__val_number_decimal_token2] = ACTIONS(1240), [aux_sym__val_number_decimal_token3] = ACTIONS(1242), [aux_sym__val_number_decimal_token4] = ACTIONS(1242), - [aux_sym__val_number_token1] = ACTIONS(844), - [aux_sym__val_number_token2] = ACTIONS(844), - [aux_sym__val_number_token3] = ACTIONS(844), - [anon_sym_0b] = ACTIONS(846), - [anon_sym_0o] = ACTIONS(848), - [anon_sym_0x] = ACTIONS(848), + [aux_sym__val_number_token1] = ACTIONS(838), + [aux_sym__val_number_token2] = ACTIONS(838), + [aux_sym__val_number_token3] = ACTIONS(838), + [anon_sym_0b] = ACTIONS(840), + [anon_sym_0o] = ACTIONS(842), + [anon_sym_0x] = ACTIONS(842), [sym_val_date] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(854), - [anon_sym_BQUOTE] = ACTIONS(856), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(860), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(862), - [anon_sym_err_GT] = ACTIONS(866), - [anon_sym_out_GT] = ACTIONS(866), - [anon_sym_e_GT] = ACTIONS(866), - [anon_sym_o_GT] = ACTIONS(866), - [anon_sym_err_PLUSout_GT] = ACTIONS(866), - [anon_sym_out_PLUSerr_GT] = ACTIONS(866), - [anon_sym_o_PLUSe_GT] = ACTIONS(866), - [anon_sym_e_PLUSo_GT] = ACTIONS(866), - [anon_sym_err_GT_GT] = ACTIONS(866), - [anon_sym_out_GT_GT] = ACTIONS(866), - [anon_sym_e_GT_GT] = ACTIONS(866), - [anon_sym_o_GT_GT] = ACTIONS(866), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(866), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(866), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(866), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(866), - [aux_sym_unquoted_token1] = ACTIONS(868), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_SQUOTE] = ACTIONS(848), + [anon_sym_BQUOTE] = ACTIONS(850), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(852), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(854), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(856), + [anon_sym_err_GT] = ACTIONS(860), + [anon_sym_out_GT] = ACTIONS(860), + [anon_sym_e_GT] = ACTIONS(860), + [anon_sym_o_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT] = ACTIONS(860), + [anon_sym_err_GT_GT] = ACTIONS(860), + [anon_sym_out_GT_GT] = ACTIONS(860), + [anon_sym_e_GT_GT] = ACTIONS(860), + [anon_sym_o_GT_GT] = ACTIONS(860), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(860), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(860), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(860), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(860), + [aux_sym_unquoted_token1] = ACTIONS(862), [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(870), + [sym_raw_string_begin] = ACTIONS(864), }, [STATE(195)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(264), - [sym_ctrl_if_parenthesized] = STATE(3398), - [sym_block] = STATE(3399), - [sym__expression_parenthesized] = STATE(3399), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3399), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3298), + [sym_block] = STATE(3315), + [sym__expression_parenthesized] = STATE(3315), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3315), [sym_comment] = STATE(195), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61062,32 +61097,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61105,41 +61140,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(196)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(199), - [sym_ctrl_if_parenthesized] = STATE(3381), - [sym_block] = STATE(3316), - [sym__expression_parenthesized] = STATE(3316), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3316), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(222), + [sym_ctrl_if_parenthesized] = STATE(3386), + [sym_block] = STATE(3391), + [sym__expression_parenthesized] = STATE(3391), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3391), [sym_comment] = STATE(196), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61155,24 +61190,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -61198,41 +61233,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(197)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(205), - [sym_ctrl_if_parenthesized] = STATE(3387), - [sym_block] = STATE(3334), - [sym__expression_parenthesized] = STATE(3334), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3334), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(225), + [sym_ctrl_if_parenthesized] = STATE(3338), + [sym_block] = STATE(3353), + [sym__expression_parenthesized] = STATE(3353), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3353), [sym_comment] = STATE(197), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61248,24 +61283,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -61291,41 +61326,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(198)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(207), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(201), [sym_ctrl_if_parenthesized] = STATE(3386), - [sym_block] = STATE(3358), - [sym__expression_parenthesized] = STATE(3358), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [sym_block] = STATE(3391), + [sym__expression_parenthesized] = STATE(3391), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3358), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3391), [sym_comment] = STATE(198), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61341,32 +61376,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61384,41 +61419,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(199)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3390), - [sym_block] = STATE(3303), - [sym__expression_parenthesized] = STATE(3303), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(204), + [sym_ctrl_if_parenthesized] = STATE(3338), + [sym_block] = STATE(3353), + [sym__expression_parenthesized] = STATE(3353), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3303), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3353), [sym_comment] = STATE(199), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61434,32 +61469,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61477,41 +61512,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(200)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(233), - [sym_ctrl_if_parenthesized] = STATE(3390), - [sym_block] = STATE(3303), - [sym__expression_parenthesized] = STATE(3303), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(206), + [sym_ctrl_if_parenthesized] = STATE(3373), + [sym_block] = STATE(3380), + [sym__expression_parenthesized] = STATE(3380), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3303), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3380), [sym_comment] = STATE(200), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61527,32 +61562,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61570,41 +61605,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(201)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3332), - [sym_block] = STATE(3321), - [sym__expression_parenthesized] = STATE(3321), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3321), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3343), + [sym_block] = STATE(3288), + [sym__expression_parenthesized] = STATE(3288), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3288), [sym_comment] = STATE(201), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61620,32 +61655,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61663,41 +61698,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(202)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3346), - [sym_block] = STATE(3295), - [sym__expression_parenthesized] = STATE(3295), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3295), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(208), + [sym_ctrl_if_parenthesized] = STATE(3343), + [sym_block] = STATE(3288), + [sym__expression_parenthesized] = STATE(3288), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3288), [sym_comment] = STATE(202), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61713,32 +61748,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61756,41 +61791,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(203)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3342), - [sym_block] = STATE(3366), - [sym__expression_parenthesized] = STATE(3366), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3366), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(210), + [sym_ctrl_if_parenthesized] = STATE(3332), + [sym_block] = STATE(3334), + [sym__expression_parenthesized] = STATE(3334), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3334), [sym_comment] = STATE(203), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61806,32 +61841,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61849,41 +61884,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(204)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(235), - [sym_ctrl_if_parenthesized] = STATE(3288), - [sym_block] = STATE(3326), - [sym__expression_parenthesized] = STATE(3326), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3402), + [sym_block] = STATE(3404), + [sym__expression_parenthesized] = STATE(3404), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3326), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3404), [sym_comment] = STATE(204), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61899,32 +61934,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -61942,41 +61977,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(205)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3344), - [sym_block] = STATE(3345), - [sym__expression_parenthesized] = STATE(3345), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(195), + [sym_ctrl_if_parenthesized] = STATE(3402), + [sym_block] = STATE(3404), + [sym__expression_parenthesized] = STATE(3404), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3345), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3404), [sym_comment] = STATE(205), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -61992,32 +62027,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62035,41 +62070,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(206)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(237), - [sym_ctrl_if_parenthesized] = STATE(3344), - [sym_block] = STATE(3345), - [sym__expression_parenthesized] = STATE(3345), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3282), + [sym_block] = STATE(3296), + [sym__expression_parenthesized] = STATE(3296), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3345), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3296), [sym_comment] = STATE(206), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62085,32 +62120,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62128,41 +62163,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(207)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3398), - [sym_block] = STATE(3399), - [sym__expression_parenthesized] = STATE(3399), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(213), + [sym_ctrl_if_parenthesized] = STATE(3282), + [sym_block] = STATE(3296), + [sym__expression_parenthesized] = STATE(3296), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3399), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3296), [sym_comment] = STATE(207), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62178,32 +62213,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62221,41 +62256,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(208)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(211), - [sym_ctrl_if_parenthesized] = STATE(3381), - [sym_block] = STATE(3316), - [sym__expression_parenthesized] = STATE(3316), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(312), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3316), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3295), + [sym_block] = STATE(3297), + [sym__expression_parenthesized] = STATE(3297), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3297), [sym_comment] = STATE(208), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62271,32 +62306,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62314,41 +62349,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(209)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(214), - [sym_ctrl_if_parenthesized] = STATE(3387), - [sym_block] = STATE(3334), - [sym__expression_parenthesized] = STATE(3334), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(312), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3334), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(215), + [sym_ctrl_if_parenthesized] = STATE(3295), + [sym_block] = STATE(3297), + [sym__expression_parenthesized] = STATE(3297), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3297), [sym_comment] = STATE(209), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62364,32 +62399,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62407,41 +62442,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(210)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(216), - [sym_ctrl_if_parenthesized] = STATE(3386), - [sym_block] = STATE(3358), - [sym__expression_parenthesized] = STATE(3358), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(312), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3358), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3385), + [sym_block] = STATE(3387), + [sym__expression_parenthesized] = STATE(3387), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3387), [sym_comment] = STATE(210), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62457,32 +62492,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62500,41 +62535,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(211)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3390), - [sym_block] = STATE(3303), - [sym__expression_parenthesized] = STATE(3303), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(312), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3303), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(216), + [sym_ctrl_if_parenthesized] = STATE(3385), + [sym_block] = STATE(3387), + [sym__expression_parenthesized] = STATE(3387), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3387), [sym_comment] = STATE(211), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62550,32 +62585,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62593,41 +62628,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(212)] = { - [sym_cmd_identifier] = STATE(2889), + [sym_cmd_identifier] = STATE(2881), [aux_sym__repeat_newline] = STATE(218), - [sym_ctrl_if_parenthesized] = STATE(3390), - [sym_block] = STATE(3303), - [sym__expression_parenthesized] = STATE(3303), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(312), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3303), + [sym_ctrl_if_parenthesized] = STATE(3298), + [sym_block] = STATE(3315), + [sym__expression_parenthesized] = STATE(3315), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3315), [sym_comment] = STATE(212), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62643,32 +62678,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62686,41 +62721,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(213)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(220), - [sym_ctrl_if_parenthesized] = STATE(3288), - [sym_block] = STATE(3326), - [sym__expression_parenthesized] = STATE(3326), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(312), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3326), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3330), + [sym_block] = STATE(3339), + [sym__expression_parenthesized] = STATE(3339), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3339), [sym_comment] = STATE(213), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62736,32 +62771,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62779,41 +62814,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(214)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3344), - [sym_block] = STATE(3345), - [sym__expression_parenthesized] = STATE(3345), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(312), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3345), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(219), + [sym_ctrl_if_parenthesized] = STATE(3330), + [sym_block] = STATE(3339), + [sym__expression_parenthesized] = STATE(3339), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3339), [sym_comment] = STATE(214), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62829,32 +62864,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62872,41 +62907,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(215)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(222), - [sym_ctrl_if_parenthesized] = STATE(3344), - [sym_block] = STATE(3345), - [sym__expression_parenthesized] = STATE(3345), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(312), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3345), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3346), + [sym_block] = STATE(3322), + [sym__expression_parenthesized] = STATE(3322), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3322), [sym_comment] = STATE(215), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -62922,32 +62957,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -62965,41 +63000,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(216)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3398), - [sym_block] = STATE(3399), - [sym__expression_parenthesized] = STATE(3399), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(312), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3399), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3275), + [sym_block] = STATE(3364), + [sym__expression_parenthesized] = STATE(3364), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3364), [sym_comment] = STATE(216), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63015,32 +63050,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63058,41 +63093,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(217)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(224), - [sym_ctrl_if_parenthesized] = STATE(3398), - [sym_block] = STATE(3399), - [sym__expression_parenthesized] = STATE(3399), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(312), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3399), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(220), + [sym_ctrl_if_parenthesized] = STATE(3275), + [sym_block] = STATE(3364), + [sym__expression_parenthesized] = STATE(3364), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3364), [sym_comment] = STATE(217), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63108,32 +63143,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63151,41 +63186,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(218)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3279), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(312), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3280), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3274), + [sym_block] = STATE(3313), + [sym__expression_parenthesized] = STATE(3313), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3313), [sym_comment] = STATE(218), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63201,32 +63236,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63244,41 +63279,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(219)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(226), - [sym_ctrl_if_parenthesized] = STATE(3279), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(312), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3280), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3325), + [sym_block] = STATE(3326), + [sym__expression_parenthesized] = STATE(3326), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3326), [sym_comment] = STATE(219), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63294,32 +63329,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63337,41 +63372,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(220)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3273), - [sym_block] = STATE(3363), - [sym__expression_parenthesized] = STATE(3363), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(312), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3363), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3361), + [sym_block] = STATE(3360), + [sym__expression_parenthesized] = STATE(3360), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(316), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3360), [sym_comment] = STATE(220), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63387,32 +63422,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(1246), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63430,41 +63465,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(221)] = { - [sym_cmd_identifier] = STATE(2889), + [sym_cmd_identifier] = STATE(2881), [aux_sym__repeat_newline] = STATE(227), - [sym_ctrl_if_parenthesized] = STATE(3273), - [sym_block] = STATE(3363), - [sym__expression_parenthesized] = STATE(3363), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(312), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3363), + [sym_ctrl_if_parenthesized] = STATE(3373), + [sym_block] = STATE(3380), + [sym__expression_parenthesized] = STATE(3380), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3380), [sym_comment] = STATE(221), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63480,32 +63515,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63523,41 +63558,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(222)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3340), - [sym_block] = STATE(3393), - [sym__expression_parenthesized] = STATE(3393), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(312), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3393), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3343), + [sym_block] = STATE(3288), + [sym__expression_parenthesized] = STATE(3288), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3288), [sym_comment] = STATE(222), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63573,32 +63608,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63616,41 +63651,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(223)] = { - [sym_cmd_identifier] = STATE(2889), + [sym_cmd_identifier] = STATE(2881), [aux_sym__repeat_newline] = STATE(229), - [sym_ctrl_if_parenthesized] = STATE(3340), - [sym_block] = STATE(3393), - [sym__expression_parenthesized] = STATE(3393), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(312), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3393), + [sym_ctrl_if_parenthesized] = STATE(3343), + [sym_block] = STATE(3288), + [sym__expression_parenthesized] = STATE(3288), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3288), [sym_comment] = STATE(223), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63666,32 +63701,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63709,41 +63744,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(224)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3391), - [sym_block] = STATE(3354), - [sym__expression_parenthesized] = STATE(3354), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(312), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3354), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(231), + [sym_ctrl_if_parenthesized] = STATE(3332), + [sym_block] = STATE(3334), + [sym__expression_parenthesized] = STATE(3334), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3334), [sym_comment] = STATE(224), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63759,32 +63794,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63802,41 +63837,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(225)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(230), - [sym_ctrl_if_parenthesized] = STATE(3391), - [sym_block] = STATE(3354), - [sym__expression_parenthesized] = STATE(3354), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(312), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3354), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3402), + [sym_block] = STATE(3404), + [sym__expression_parenthesized] = STATE(3404), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3404), [sym_comment] = STATE(225), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63852,32 +63887,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63895,41 +63930,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(226)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3394), - [sym_block] = STATE(3311), - [sym__expression_parenthesized] = STATE(3311), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(312), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3311), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(256), + [sym_ctrl_if_parenthesized] = STATE(3402), + [sym_block] = STATE(3404), + [sym__expression_parenthesized] = STATE(3404), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3404), [sym_comment] = STATE(226), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -63945,32 +63980,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -63988,41 +64023,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(227)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3342), - [sym_block] = STATE(3366), - [sym__expression_parenthesized] = STATE(3366), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(312), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3366), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3282), + [sym_block] = STATE(3296), + [sym__expression_parenthesized] = STATE(3296), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3296), [sym_comment] = STATE(227), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64038,32 +64073,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64081,41 +64116,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(228)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(266), - [sym_ctrl_if_parenthesized] = STATE(3342), - [sym_block] = STATE(3366), - [sym__expression_parenthesized] = STATE(3366), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(312), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3366), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(258), + [sym_ctrl_if_parenthesized] = STATE(3282), + [sym_block] = STATE(3296), + [sym__expression_parenthesized] = STATE(3296), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3296), [sym_comment] = STATE(228), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64131,32 +64166,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64174,41 +64209,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(229)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3329), - [sym_block] = STATE(3331), - [sym__expression_parenthesized] = STATE(3331), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(312), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3331), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3295), + [sym_block] = STATE(3297), + [sym__expression_parenthesized] = STATE(3297), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3297), [sym_comment] = STATE(229), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64224,32 +64259,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64267,41 +64302,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(230)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3332), - [sym_block] = STATE(3321), - [sym__expression_parenthesized] = STATE(3321), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(312), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3321), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(260), + [sym_ctrl_if_parenthesized] = STATE(3295), + [sym_block] = STATE(3297), + [sym__expression_parenthesized] = STATE(3297), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3297), [sym_comment] = STATE(230), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64317,32 +64352,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64360,41 +64395,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(231)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(202), - [sym_ctrl_if_parenthesized] = STATE(3342), - [sym_block] = STATE(3366), - [sym__expression_parenthesized] = STATE(3366), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3366), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3385), + [sym_block] = STATE(3387), + [sym__expression_parenthesized] = STATE(3387), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3387), [sym_comment] = STATE(231), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64416,26 +64451,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64453,41 +64488,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(232)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(239), - [sym_ctrl_if_parenthesized] = STATE(3398), - [sym_block] = STATE(3399), - [sym__expression_parenthesized] = STATE(3399), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3399), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(234), + [sym_ctrl_if_parenthesized] = STATE(3386), + [sym_block] = STATE(3391), + [sym__expression_parenthesized] = STATE(3391), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3391), [sym_comment] = STATE(232), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64503,32 +64538,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64546,41 +64581,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(233)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3279), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3280), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(239), + [sym_ctrl_if_parenthesized] = STATE(3373), + [sym_block] = STATE(3380), + [sym__expression_parenthesized] = STATE(3380), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3380), [sym_comment] = STATE(233), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64596,32 +64631,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64639,41 +64674,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(234)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(241), - [sym_ctrl_if_parenthesized] = STATE(3279), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3280), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3343), + [sym_block] = STATE(3288), + [sym__expression_parenthesized] = STATE(3288), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3288), [sym_comment] = STATE(234), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64689,32 +64724,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64732,41 +64767,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(235)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3273), - [sym_block] = STATE(3363), - [sym__expression_parenthesized] = STATE(3363), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3363), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(241), + [sym_ctrl_if_parenthesized] = STATE(3343), + [sym_block] = STATE(3288), + [sym__expression_parenthesized] = STATE(3288), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3288), [sym_comment] = STATE(235), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64782,32 +64817,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64825,41 +64860,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(236)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(242), - [sym_ctrl_if_parenthesized] = STATE(3273), - [sym_block] = STATE(3363), - [sym__expression_parenthesized] = STATE(3363), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3363), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(243), + [sym_ctrl_if_parenthesized] = STATE(3332), + [sym_block] = STATE(3334), + [sym__expression_parenthesized] = STATE(3334), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3334), [sym_comment] = STATE(236), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64875,32 +64910,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -64918,41 +64953,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(237)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3340), - [sym_block] = STATE(3393), - [sym__expression_parenthesized] = STATE(3393), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3393), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3402), + [sym_block] = STATE(3404), + [sym__expression_parenthesized] = STATE(3404), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3404), [sym_comment] = STATE(237), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -64968,32 +65003,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65011,41 +65046,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(238)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(253), - [sym_ctrl_if_parenthesized] = STATE(3340), - [sym_block] = STATE(3393), - [sym__expression_parenthesized] = STATE(3393), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3393), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(245), + [sym_ctrl_if_parenthesized] = STATE(3402), + [sym_block] = STATE(3404), + [sym__expression_parenthesized] = STATE(3404), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3404), [sym_comment] = STATE(238), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65061,32 +65096,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65104,41 +65139,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(239)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3391), - [sym_block] = STATE(3354), - [sym__expression_parenthesized] = STATE(3354), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3354), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3282), + [sym_block] = STATE(3296), + [sym__expression_parenthesized] = STATE(3296), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3296), [sym_comment] = STATE(239), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65154,32 +65189,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65197,41 +65232,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(240)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(254), - [sym_ctrl_if_parenthesized] = STATE(3391), - [sym_block] = STATE(3354), - [sym__expression_parenthesized] = STATE(3354), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3354), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(247), + [sym_ctrl_if_parenthesized] = STATE(3282), + [sym_block] = STATE(3296), + [sym__expression_parenthesized] = STATE(3296), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3296), [sym_comment] = STATE(240), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65247,32 +65282,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65290,41 +65325,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(241)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3394), - [sym_block] = STATE(3311), - [sym__expression_parenthesized] = STATE(3311), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3311), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3295), + [sym_block] = STATE(3297), + [sym__expression_parenthesized] = STATE(3297), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3297), [sym_comment] = STATE(241), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65340,32 +65375,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65383,41 +65418,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(242)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3342), - [sym_block] = STATE(3366), - [sym__expression_parenthesized] = STATE(3366), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3366), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(249), + [sym_ctrl_if_parenthesized] = STATE(3295), + [sym_block] = STATE(3297), + [sym__expression_parenthesized] = STATE(3297), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3297), [sym_comment] = STATE(242), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65433,32 +65468,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65476,41 +65511,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(243)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(246), - [sym_ctrl_if_parenthesized] = STATE(3381), - [sym_block] = STATE(3316), - [sym__expression_parenthesized] = STATE(3316), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3316), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3385), + [sym_block] = STATE(3387), + [sym__expression_parenthesized] = STATE(3387), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3387), [sym_comment] = STATE(243), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65526,32 +65561,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65569,41 +65604,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(244)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(249), - [sym_ctrl_if_parenthesized] = STATE(3387), - [sym_block] = STATE(3334), - [sym__expression_parenthesized] = STATE(3334), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3334), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(250), + [sym_ctrl_if_parenthesized] = STATE(3385), + [sym_block] = STATE(3387), + [sym__expression_parenthesized] = STATE(3387), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3387), [sym_comment] = STATE(244), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65619,32 +65654,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65662,41 +65697,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(245)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(251), - [sym_ctrl_if_parenthesized] = STATE(3386), - [sym_block] = STATE(3358), - [sym__expression_parenthesized] = STATE(3358), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3358), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3298), + [sym_block] = STATE(3315), + [sym__expression_parenthesized] = STATE(3315), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3315), [sym_comment] = STATE(245), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65712,32 +65747,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65755,41 +65790,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(246)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3390), - [sym_block] = STATE(3303), - [sym__expression_parenthesized] = STATE(3303), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3303), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(252), + [sym_ctrl_if_parenthesized] = STATE(3298), + [sym_block] = STATE(3315), + [sym__expression_parenthesized] = STATE(3315), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3315), [sym_comment] = STATE(246), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65805,32 +65840,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65848,41 +65883,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(247)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(255), - [sym_ctrl_if_parenthesized] = STATE(3390), - [sym_block] = STATE(3303), - [sym__expression_parenthesized] = STATE(3303), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3303), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3330), + [sym_block] = STATE(3339), + [sym__expression_parenthesized] = STATE(3339), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3339), [sym_comment] = STATE(247), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65898,32 +65933,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -65941,41 +65976,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(248)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(257), - [sym_ctrl_if_parenthesized] = STATE(3288), - [sym_block] = STATE(3326), - [sym__expression_parenthesized] = STATE(3326), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3326), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(253), + [sym_ctrl_if_parenthesized] = STATE(3330), + [sym_block] = STATE(3339), + [sym__expression_parenthesized] = STATE(3339), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3339), [sym_comment] = STATE(248), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -65991,32 +66026,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66034,41 +66069,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(249)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3344), - [sym_block] = STATE(3345), - [sym__expression_parenthesized] = STATE(3345), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3345), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3346), + [sym_block] = STATE(3322), + [sym__expression_parenthesized] = STATE(3322), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3322), [sym_comment] = STATE(249), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66084,32 +66119,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66127,41 +66162,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(250)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(259), - [sym_ctrl_if_parenthesized] = STATE(3344), - [sym_block] = STATE(3345), - [sym__expression_parenthesized] = STATE(3345), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3345), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3275), + [sym_block] = STATE(3364), + [sym__expression_parenthesized] = STATE(3364), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3364), [sym_comment] = STATE(250), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66177,32 +66212,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66220,41 +66255,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(251)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3398), - [sym_block] = STATE(3399), - [sym__expression_parenthesized] = STATE(3399), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3399), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(254), + [sym_ctrl_if_parenthesized] = STATE(3275), + [sym_block] = STATE(3364), + [sym__expression_parenthesized] = STATE(3364), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3364), [sym_comment] = STATE(251), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66270,32 +66305,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66313,41 +66348,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(252)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(261), - [sym_ctrl_if_parenthesized] = STATE(3342), - [sym_block] = STATE(3366), - [sym__expression_parenthesized] = STATE(3366), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3366), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3274), + [sym_block] = STATE(3313), + [sym__expression_parenthesized] = STATE(3313), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3313), [sym_comment] = STATE(252), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66363,24 +66398,303 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(253)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3325), + [sym_block] = STATE(3326), + [sym__expression_parenthesized] = STATE(3326), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3326), + [sym_comment] = STATE(253), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(254)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3361), + [sym_block] = STATE(3360), + [sym__expression_parenthesized] = STATE(3360), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3360), + [sym_comment] = STATE(254), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_CARET] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(255)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(261), + [sym_ctrl_if_parenthesized] = STATE(3385), + [sym_block] = STATE(3387), + [sym__expression_parenthesized] = STATE(3387), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3387), + [sym_comment] = STATE(255), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(271), + [anon_sym_let] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(271), + [anon_sym_const] = ACTIONS(271), + [aux_sym_cmd_identifier_token1] = ACTIONS(251), + [anon_sym_def] = ACTIONS(271), + [anon_sym_use] = ACTIONS(271), + [anon_sym_export_DASHenv] = ACTIONS(271), + [anon_sym_extern] = ACTIONS(271), + [anon_sym_module] = ACTIONS(271), + [anon_sym_for] = ACTIONS(271), + [anon_sym_loop] = ACTIONS(271), + [anon_sym_while] = ACTIONS(271), + [anon_sym_if] = ACTIONS(327), + [anon_sym_else] = ACTIONS(271), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(271), + [anon_sym_match] = ACTIONS(271), + [anon_sym_in] = ACTIONS(277), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -66405,43 +66719,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(253)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3329), - [sym_block] = STATE(3331), - [sym__expression_parenthesized] = STATE(3331), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3331), - [sym_comment] = STATE(253), + [STATE(256)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3298), + [sym_block] = STATE(3315), + [sym__expression_parenthesized] = STATE(3315), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3315), + [sym_comment] = STATE(256), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -66456,24 +66770,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -66498,43 +66812,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(254)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3332), - [sym_block] = STATE(3321), - [sym__expression_parenthesized] = STATE(3321), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3321), - [sym_comment] = STATE(254), + [STATE(257)] = { + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(263), + [sym_ctrl_if_parenthesized] = STATE(3298), + [sym_block] = STATE(3315), + [sym__expression_parenthesized] = STATE(3315), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3315), + [sym_comment] = STATE(257), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -66549,24 +66863,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -66591,321 +66905,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(255)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3279), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3280), - [sym_comment] = STATE(255), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(256)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(263), - [sym_ctrl_if_parenthesized] = STATE(3279), - [sym_block] = STATE(3280), - [sym__expression_parenthesized] = STATE(3280), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3280), - [sym_comment] = STATE(256), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(257)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3273), - [sym_block] = STATE(3363), - [sym__expression_parenthesized] = STATE(3363), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3363), - [sym_comment] = STATE(257), - [anon_sym_export] = ACTIONS(277), - [anon_sym_alias] = ACTIONS(271), - [anon_sym_let] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(271), - [anon_sym_const] = ACTIONS(271), - [aux_sym_cmd_identifier_token1] = ACTIONS(251), - [anon_sym_def] = ACTIONS(271), - [anon_sym_use] = ACTIONS(271), - [anon_sym_export_DASHenv] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(271), - [anon_sym_module] = ACTIONS(271), - [anon_sym_for] = ACTIONS(271), - [anon_sym_loop] = ACTIONS(271), - [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(327), - [anon_sym_else] = ACTIONS(271), - [anon_sym_try] = ACTIONS(271), - [anon_sym_catch] = ACTIONS(271), - [anon_sym_match] = ACTIONS(271), - [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, [STATE(258)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(203), - [sym_ctrl_if_parenthesized] = STATE(3273), - [sym_block] = STATE(3363), - [sym__expression_parenthesized] = STATE(3363), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3363), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3330), + [sym_block] = STATE(3339), + [sym__expression_parenthesized] = STATE(3339), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3339), [sym_comment] = STATE(258), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -66927,26 +66962,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -66964,41 +66999,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(259)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3340), - [sym_block] = STATE(3393), - [sym__expression_parenthesized] = STATE(3393), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3393), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(264), + [sym_ctrl_if_parenthesized] = STATE(3330), + [sym_block] = STATE(3339), + [sym__expression_parenthesized] = STATE(3339), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3339), [sym_comment] = STATE(259), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67020,26 +67055,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67057,41 +67092,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(260)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(262), - [sym_ctrl_if_parenthesized] = STATE(3340), - [sym_block] = STATE(3393), - [sym__expression_parenthesized] = STATE(3393), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3393), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3346), + [sym_block] = STATE(3322), + [sym__expression_parenthesized] = STATE(3322), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3322), [sym_comment] = STATE(260), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67113,26 +67148,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67150,41 +67185,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(261)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3346), - [sym_block] = STATE(3295), - [sym__expression_parenthesized] = STATE(3295), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3295), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3275), + [sym_block] = STATE(3364), + [sym__expression_parenthesized] = STATE(3364), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3364), [sym_comment] = STATE(261), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67200,24 +67235,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(327), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -67243,41 +67278,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(262)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3329), - [sym_block] = STATE(3331), - [sym__expression_parenthesized] = STATE(3331), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3331), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(265), + [sym_ctrl_if_parenthesized] = STATE(3275), + [sym_block] = STATE(3364), + [sym__expression_parenthesized] = STATE(3364), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3364), [sym_comment] = STATE(262), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67299,26 +67334,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67336,41 +67371,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(263)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3394), - [sym_block] = STATE(3311), - [sym__expression_parenthesized] = STATE(3311), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3311), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3274), + [sym_block] = STATE(3313), + [sym__expression_parenthesized] = STATE(3313), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3313), [sym_comment] = STATE(263), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67392,26 +67427,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67429,41 +67464,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(264)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3391), - [sym_block] = STATE(3354), - [sym__expression_parenthesized] = STATE(3354), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3354), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3325), + [sym_block] = STATE(3326), + [sym__expression_parenthesized] = STATE(3326), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3326), [sym_comment] = STATE(264), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67485,26 +67520,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67522,41 +67557,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(265)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(201), - [sym_ctrl_if_parenthesized] = STATE(3391), - [sym_block] = STATE(3354), - [sym__expression_parenthesized] = STATE(3354), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3354), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(1404), + [sym_ctrl_if_parenthesized] = STATE(3361), + [sym_block] = STATE(3360), + [sym__expression_parenthesized] = STATE(3360), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3360), [sym_comment] = STATE(265), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67578,26 +67613,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -67615,41 +67650,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(266)] = { - [sym_cmd_identifier] = STATE(2889), - [aux_sym__repeat_newline] = STATE(1403), - [sym_ctrl_if_parenthesized] = STATE(3346), - [sym_block] = STATE(3295), - [sym__expression_parenthesized] = STATE(3295), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2124), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(312), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3295), + [sym_cmd_identifier] = STATE(2881), + [aux_sym__repeat_newline] = STATE(237), + [sym_ctrl_if_parenthesized] = STATE(3338), + [sym_block] = STATE(3353), + [sym__expression_parenthesized] = STATE(3353), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2130), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3353), [sym_comment] = STATE(266), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -67665,24 +67700,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1022), + [anon_sym_if] = ACTIONS(1020), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), - [sym__newline] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), + [sym__newline] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), @@ -67709,98 +67744,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(267)] = { [sym_comment] = STATE(267), - [ts_builtin_sym_end] = ACTIONS(741), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1276), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [anon_sym_in] = ACTIONS(747), + [anon_sym_STAR_STAR] = ACTIONS(749), + [anon_sym_PLUS_PLUS] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(747), + [anon_sym_SLASH] = ACTIONS(747), + [anon_sym_mod] = ACTIONS(749), + [anon_sym_SLASH_SLASH] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(747), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_bit_DASHshl] = ACTIONS(749), + [anon_sym_bit_DASHshr] = ACTIONS(749), + [anon_sym_EQ_TILDE] = ACTIONS(749), + [anon_sym_BANG_TILDE] = ACTIONS(749), + [anon_sym_like] = ACTIONS(749), + [anon_sym_not_DASHlike] = ACTIONS(749), + [anon_sym_bit_DASHand] = ACTIONS(749), + [anon_sym_bit_DASHxor] = ACTIONS(749), + [anon_sym_bit_DASHor] = ACTIONS(749), + [anon_sym_and] = ACTIONS(749), + [anon_sym_xor] = ACTIONS(749), + [anon_sym_or] = ACTIONS(749), + [anon_sym_in2] = ACTIONS(749), + [anon_sym_not_DASHin] = ACTIONS(749), + [anon_sym_has] = ACTIONS(749), + [anon_sym_not_DASHhas] = ACTIONS(749), + [anon_sym_starts_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), + [anon_sym_ends_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(749), + [anon_sym_BANG_EQ] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_LT_EQ] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_EQ] = ACTIONS(749), + [aux_sym_cmd_identifier_token6] = ACTIONS(747), + [sym__newline] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_err_GT_PIPE] = ACTIONS(747), + [anon_sym_out_GT_PIPE] = ACTIONS(747), + [anon_sym_e_GT_PIPE] = ACTIONS(747), + [anon_sym_o_GT_PIPE] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_RBRACE] = ACTIONS(747), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(747), + [anon_sym_xor2] = ACTIONS(747), + [anon_sym_or2] = ACTIONS(747), + [anon_sym_not_DASHin2] = ACTIONS(747), + [anon_sym_has2] = ACTIONS(747), + [anon_sym_not_DASHhas2] = ACTIONS(747), + [anon_sym_starts_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), + [anon_sym_ends_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), + [anon_sym_EQ_EQ2] = ACTIONS(747), + [anon_sym_BANG_EQ2] = ACTIONS(747), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(747), + [anon_sym_GT_EQ2] = ACTIONS(747), + [anon_sym_EQ_TILDE2] = ACTIONS(747), + [anon_sym_BANG_TILDE2] = ACTIONS(747), + [anon_sym_like2] = ACTIONS(747), + [anon_sym_not_DASHlike2] = ACTIONS(747), + [anon_sym_STAR_STAR2] = ACTIONS(747), + [anon_sym_PLUS_PLUS2] = ACTIONS(747), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(747), + [anon_sym_SLASH_SLASH2] = ACTIONS(747), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(747), + [anon_sym_bit_DASHshr2] = ACTIONS(747), + [anon_sym_bit_DASHand2] = ACTIONS(747), + [anon_sym_bit_DASHxor2] = ACTIONS(747), + [anon_sym_bit_DASHor2] = ACTIONS(747), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token1] = ACTIONS(1276), [aux_sym__immediate_decimal_token5] = ACTIONS(1278), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, [STATE(268)] = { [sym_comment] = STATE(268), + [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -67850,7 +67886,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), [anon_sym_and2] = ACTIONS(747), [anon_sym_xor2] = ACTIONS(747), @@ -67940,9 +67975,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_RPAREN] = ACTIONS(739), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_RBRACE] = ACTIONS(739), [anon_sym_STAR2] = ACTIONS(739), [anon_sym_and2] = ACTIONS(739), [anon_sym_xor2] = ACTIONS(739), @@ -67985,98 +68020,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(270)] = { [sym_comment] = STATE(270), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_RPAREN] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1288), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1290), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(271)] = { - [sym_comment] = STATE(271), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -68161,197 +68104,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1292), - [aux_sym__immediate_decimal_token5] = ACTIONS(1294), + [aux_sym__immediate_decimal_token1] = ACTIONS(1288), + [aux_sym__immediate_decimal_token5] = ACTIONS(1290), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(271)] = { + [sym_comment] = STATE(271), + [ts_builtin_sym_end] = ACTIONS(741), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT] = ACTIONS(1292), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token5] = ACTIONS(1294), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(272)] = { [sym_comment] = STATE(272), - [ts_builtin_sym_end] = ACTIONS(749), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1296), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_RBRACE] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT] = ACTIONS(1296), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), [aux_sym__immediate_decimal_token5] = ACTIONS(1298), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, [STATE(273)] = { [sym_comment] = STATE(273), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_RPAREN] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1300), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(274)] = { - [sym_comment] = STATE(274), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -68436,47 +68380,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1286), + [aux_sym__immediate_decimal_token5] = ACTIONS(1298), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(275)] = { - [sym_cmd_identifier] = STATE(2889), - [sym_ctrl_if] = STATE(3206), - [sym_block] = STATE(3207), - [sym__expression] = STATE(3207), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2221), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(294), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3207), - [sym_comment] = STATE(275), + [STATE(274)] = { + [sym_cmd_identifier] = STATE(2914), + [sym__expression_parenthesized] = STATE(2261), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(142), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3283), + [sym_comment] = STATE(274), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1390), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -68491,31 +68435,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(269), + [anon_sym_if] = ACTIONS(271), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1302), - [aux_sym__val_number_decimal_token2] = ACTIONS(1304), - [aux_sym__val_number_decimal_token3] = ACTIONS(1306), - [aux_sym__val_number_decimal_token4] = ACTIONS(1306), + [aux_sym__val_number_decimal_token1] = ACTIONS(1300), + [aux_sym__val_number_decimal_token2] = ACTIONS(1302), + [aux_sym__val_number_decimal_token3] = ACTIONS(1304), + [aux_sym__val_number_decimal_token4] = ACTIONS(1304), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -68528,103 +68472,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(276)] = { - [sym_comment] = STATE(276), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1308), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(277)] = { - [sym_comment] = STATE(277), + [STATE(275)] = { + [sym_comment] = STATE(275), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -68672,6 +68525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_RPAREN] = ACTIONS(739), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(739), [anon_sym_STAR2] = ACTIONS(739), @@ -68706,49 +68560,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1310), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1312), + [aux_sym__immediate_decimal_token5] = ACTIONS(1286), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(278)] = { - [sym_cmd_identifier] = STATE(2712), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(142), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3191), - [sym_comment] = STATE(278), + [STATE(276)] = { + [sym_cmd_identifier] = STATE(2786), + [sym__expression] = STATE(2258), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3211), + [sym_comment] = STATE(276), [aux_sym_pipe_element_repeat2] = STATE(1388), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -68778,17 +68631,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1314), - [aux_sym__val_number_decimal_token2] = ACTIONS(1316), - [aux_sym__val_number_decimal_token3] = ACTIONS(1318), - [aux_sym__val_number_decimal_token4] = ACTIONS(1318), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -68805,133 +68658,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(279)] = { - [sym_comment] = STATE(279), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), - [anon_sym_SLASH] = ACTIONS(747), - [anon_sym_mod] = ACTIONS(749), - [anon_sym_SLASH_SLASH] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(747), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_bit_DASHshl] = ACTIONS(749), - [anon_sym_bit_DASHshr] = ACTIONS(749), - [anon_sym_EQ_TILDE] = ACTIONS(749), - [anon_sym_BANG_TILDE] = ACTIONS(749), - [anon_sym_like] = ACTIONS(749), - [anon_sym_not_DASHlike] = ACTIONS(749), - [anon_sym_bit_DASHand] = ACTIONS(749), - [anon_sym_bit_DASHxor] = ACTIONS(749), - [anon_sym_bit_DASHor] = ACTIONS(749), - [anon_sym_and] = ACTIONS(749), - [anon_sym_xor] = ACTIONS(749), - [anon_sym_or] = ACTIONS(749), - [anon_sym_in2] = ACTIONS(749), - [anon_sym_not_DASHin] = ACTIONS(749), - [anon_sym_has] = ACTIONS(749), - [anon_sym_not_DASHhas] = ACTIONS(749), - [anon_sym_starts_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), - [anon_sym_ends_DASHwith] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), - [anon_sym_EQ_EQ] = ACTIONS(749), - [anon_sym_BANG_EQ] = ACTIONS(749), - [anon_sym_LT] = ACTIONS(747), - [anon_sym_LT_EQ] = ACTIONS(749), - [anon_sym_GT] = ACTIONS(747), - [anon_sym_GT_EQ] = ACTIONS(749), - [aux_sym_cmd_identifier_token6] = ACTIONS(747), - [sym__newline] = ACTIONS(747), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(747), - [anon_sym_err_GT_PIPE] = ACTIONS(747), - [anon_sym_out_GT_PIPE] = ACTIONS(747), - [anon_sym_e_GT_PIPE] = ACTIONS(747), - [anon_sym_o_GT_PIPE] = ACTIONS(747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(747), - [anon_sym_xor2] = ACTIONS(747), - [anon_sym_or2] = ACTIONS(747), - [anon_sym_not_DASHin2] = ACTIONS(747), - [anon_sym_has2] = ACTIONS(747), - [anon_sym_not_DASHhas2] = ACTIONS(747), - [anon_sym_starts_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), - [anon_sym_ends_DASHwith2] = ACTIONS(747), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), - [anon_sym_EQ_EQ2] = ACTIONS(747), - [anon_sym_BANG_EQ2] = ACTIONS(747), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(747), - [anon_sym_GT_EQ2] = ACTIONS(747), - [anon_sym_EQ_TILDE2] = ACTIONS(747), - [anon_sym_BANG_TILDE2] = ACTIONS(747), - [anon_sym_like2] = ACTIONS(747), - [anon_sym_not_DASHlike2] = ACTIONS(747), - [anon_sym_STAR_STAR2] = ACTIONS(747), - [anon_sym_PLUS_PLUS2] = ACTIONS(747), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(747), - [anon_sym_SLASH_SLASH2] = ACTIONS(747), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(747), - [anon_sym_bit_DASHshr2] = ACTIONS(747), - [anon_sym_bit_DASHand2] = ACTIONS(747), - [anon_sym_bit_DASHxor2] = ACTIONS(747), - [anon_sym_bit_DASHor2] = ACTIONS(747), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1320), - [aux_sym__immediate_decimal_token5] = ACTIONS(1322), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(280)] = { - [sym_cmd_identifier] = STATE(2889), - [sym_ctrl_if] = STATE(3206), - [sym_block] = STATE(3207), - [sym__expression] = STATE(3207), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2221), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), + [STATE(277)] = { + [sym_cmd_identifier] = STATE(2881), + [sym_ctrl_if] = STATE(3172), + [sym_block] = STATE(3173), + [sym__expression] = STATE(3173), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2219), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), [sym__val_number_decimal] = STATE(316), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3207), - [sym_comment] = STATE(280), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3173), + [sym_comment] = STATE(277), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -68946,31 +68708,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1324), + [anon_sym_if] = ACTIONS(1306), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1264), - [aux_sym__val_number_decimal_token2] = ACTIONS(1266), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_decimal_token1] = ACTIONS(1258), + [aux_sym__val_number_decimal_token2] = ACTIONS(1260), + [aux_sym__val_number_decimal_token3] = ACTIONS(1262), + [aux_sym__val_number_decimal_token4] = ACTIONS(1262), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -68987,42 +68749,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(281)] = { - [sym_cmd_identifier] = STATE(2712), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(121), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3191), - [sym_comment] = STATE(281), - [aux_sym_pipe_element_repeat2] = STATE(1388), + [STATE(278)] = { + [sym_cmd_identifier] = STATE(2914), + [sym__expression_parenthesized] = STATE(2261), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3283), + [sym_comment] = STATE(278), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1390), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69051,17 +68813,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(291), - [aux_sym__val_number_decimal_token2] = ACTIONS(293), - [aux_sym__val_number_decimal_token3] = ACTIONS(295), - [aux_sym__val_number_decimal_token4] = ACTIONS(295), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -69074,46 +68836,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(282)] = { - [sym_cmd_identifier] = STATE(2712), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(139), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3191), - [sym_comment] = STATE(282), - [aux_sym_pipe_element_repeat2] = STATE(1388), + [STATE(279)] = { + [sym_cmd_identifier] = STATE(2914), + [sym__expression_parenthesized] = STATE(2261), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2120), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(127), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4410), + [sym__command_parenthesized] = STATE(3283), + [sym_comment] = STATE(279), + [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1390), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69142,17 +68904,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1024), - [aux_sym__val_number_decimal_token2] = ACTIONS(1026), - [aux_sym__val_number_decimal_token3] = ACTIONS(1028), - [aux_sym__val_number_decimal_token4] = ACTIONS(1028), + [aux_sym__val_number_decimal_token1] = ACTIONS(337), + [aux_sym__val_number_decimal_token2] = ACTIONS(339), + [aux_sym__val_number_decimal_token3] = ACTIONS(341), + [aux_sym__val_number_decimal_token4] = ACTIONS(341), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -69165,46 +68927,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(209), + [anon_sym_CARET] = ACTIONS(343), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(283)] = { - [sym_cmd_identifier] = STATE(2889), - [sym_ctrl_if] = STATE(3206), - [sym_block] = STATE(3207), - [sym__expression] = STATE(3207), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2221), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(312), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3207), - [sym_comment] = STATE(283), + [STATE(280)] = { + [sym_comment] = STATE(280), + [ts_builtin_sym_end] = ACTIONS(741), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token5] = ACTIONS(1294), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(281)] = { + [sym_cmd_identifier] = STATE(2881), + [sym_ctrl_if] = STATE(3172), + [sym_block] = STATE(3173), + [sym__expression] = STATE(3173), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2219), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(301), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3173), + [sym_comment] = STATE(281), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69219,31 +69072,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(459), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1274), - [aux_sym__val_number_decimal_token4] = ACTIONS(1274), + [aux_sym__val_number_decimal_token1] = ACTIONS(1264), + [aux_sym__val_number_decimal_token2] = ACTIONS(1266), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -69260,42 +69113,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(284)] = { - [sym_cmd_identifier] = STATE(2951), - [sym__expression] = STATE(2258), - [sym_expr_unary] = STATE(1276), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1276), + [STATE(282)] = { + [sym_cmd_identifier] = STATE(3073), + [sym_ctrl_if] = STATE(3372), + [sym_block] = STATE(3286), + [sym__expression] = STATE(3286), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1273), [sym__expr_binary_expression] = STATE(2222), - [sym_expr_parenthesized] = STATE(919), - [sym_val_range] = STATE(1276), - [sym__value] = STATE(1276), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(1294), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(120), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3292), - [sym_comment] = STATE(284), - [aux_sym_pipe_element_repeat2] = STATE(1388), + [sym_expr_parenthesized] = STATE(950), + [sym_val_range] = STATE(1273), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1311), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(306), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_command] = STATE(3286), + [sym_comment] = STATE(282), [anon_sym_export] = ACTIONS(45), [anon_sym_alias] = ACTIONS(39), [anon_sym_let] = ACTIONS(39), @@ -69310,31 +69163,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(39), [anon_sym_loop] = ACTIONS(39), [anon_sym_while] = ACTIONS(39), - [anon_sym_if] = ACTIONS(39), + [anon_sym_if] = ACTIONS(37), [anon_sym_else] = ACTIONS(39), [anon_sym_try] = ACTIONS(39), [anon_sym_catch] = ACTIONS(39), [anon_sym_match] = ACTIONS(39), [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_null] = ACTIONS(49), - [aux_sym_cmd_identifier_token3] = ACTIONS(51), - [aux_sym_cmd_identifier_token4] = ACTIONS(51), - [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [anon_sym_true] = ACTIONS(1308), + [anon_sym_false] = ACTIONS(1308), + [anon_sym_null] = ACTIONS(1310), + [aux_sym_cmd_identifier_token3] = ACTIONS(1312), + [aux_sym_cmd_identifier_token4] = ACTIONS(1312), + [aux_sym_cmd_identifier_token5] = ACTIONS(1312), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(1314), [anon_sym_DOT_DOT] = ACTIONS(69), [aux_sym_expr_unary_token1] = ACTIONS(73), [anon_sym_DOT_DOT_EQ] = ACTIONS(75), [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(77), - [aux_sym__val_number_decimal_token2] = ACTIONS(79), - [aux_sym__val_number_decimal_token3] = ACTIONS(81), - [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_decimal_token1] = ACTIONS(1316), + [aux_sym__val_number_decimal_token2] = ACTIONS(1318), + [aux_sym__val_number_decimal_token3] = ACTIONS(1320), + [aux_sym__val_number_decimal_token4] = ACTIONS(1320), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), @@ -69351,41 +69204,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(285)] = { - [sym_cmd_identifier] = STATE(2712), - [sym__expression] = STATE(2255), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2220), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4687), - [sym_command] = STATE(3191), - [sym_comment] = STATE(285), + [STATE(283)] = { + [sym_cmd_identifier] = STATE(2786), + [sym__expression] = STATE(2258), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(139), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3211), + [sym_comment] = STATE(283), [aux_sym_pipe_element_repeat2] = STATE(1388), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), @@ -69415,17 +69268,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(1024), + [aux_sym__val_number_decimal_token2] = ACTIONS(1026), + [aux_sym__val_number_decimal_token3] = ACTIONS(1028), + [aux_sym__val_number_decimal_token4] = ACTIONS(1028), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -69442,42 +69295,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(286)] = { - [sym_cmd_identifier] = STATE(2950), - [sym__expression_parenthesized] = STATE(2261), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(142), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3355), - [sym_comment] = STATE(286), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1387), + [STATE(284)] = { + [sym_cmd_identifier] = STATE(2881), + [sym_ctrl_if] = STATE(3172), + [sym_block] = STATE(3173), + [sym__expression] = STATE(3173), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2219), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(314), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3173), + [sym_comment] = STATE(284), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69492,31 +69345,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), + [anon_sym_if] = ACTIONS(1032), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1314), - [aux_sym__val_number_decimal_token2] = ACTIONS(1316), - [aux_sym__val_number_decimal_token3] = ACTIONS(1318), - [aux_sym__val_number_decimal_token4] = ACTIONS(1318), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1274), + [aux_sym__val_number_decimal_token4] = ACTIONS(1274), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -69529,228 +69382,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(287)] = { - [sym_comment] = STATE(287), - [ts_builtin_sym_end] = ACTIONS(773), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1326), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), + [STATE(285)] = { + [sym_comment] = STATE(285), + [ts_builtin_sym_end] = ACTIONS(757), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token5] = ACTIONS(1322), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(288)] = { - [sym_cmd_identifier] = STATE(3042), - [sym_ctrl_if] = STATE(3265), - [sym_block] = STATE(3269), - [sym__expression] = STATE(3269), - [sym_expr_unary] = STATE(1276), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1276), - [sym__expr_binary_expression] = STATE(2224), - [sym_expr_parenthesized] = STATE(919), - [sym_val_range] = STATE(1276), - [sym__value] = STATE(1276), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(1294), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(298), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_command] = STATE(3269), - [sym_comment] = STATE(288), - [anon_sym_export] = ACTIONS(45), - [anon_sym_alias] = ACTIONS(39), - [anon_sym_let] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_const] = ACTIONS(39), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [anon_sym_def] = ACTIONS(39), - [anon_sym_use] = ACTIONS(39), - [anon_sym_export_DASHenv] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_for] = ACTIONS(39), - [anon_sym_loop] = ACTIONS(39), - [anon_sym_while] = ACTIONS(39), - [anon_sym_if] = ACTIONS(37), - [anon_sym_else] = ACTIONS(39), - [anon_sym_try] = ACTIONS(39), - [anon_sym_catch] = ACTIONS(39), - [anon_sym_match] = ACTIONS(39), - [anon_sym_in] = ACTIONS(45), - [anon_sym_true] = ACTIONS(1328), - [anon_sym_false] = ACTIONS(1328), - [anon_sym_null] = ACTIONS(1330), - [aux_sym_cmd_identifier_token3] = ACTIONS(1332), - [aux_sym_cmd_identifier_token4] = ACTIONS(1332), - [aux_sym_cmd_identifier_token5] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_DOT_DOT] = ACTIONS(69), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(75), - [aux_sym__val_number_decimal_token1] = ACTIONS(1336), - [aux_sym__val_number_decimal_token2] = ACTIONS(1338), - [aux_sym__val_number_decimal_token3] = ACTIONS(1340), - [aux_sym__val_number_decimal_token4] = ACTIONS(1340), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(289)] = { - [sym_cmd_identifier] = STATE(2950), - [sym__expression_parenthesized] = STATE(2261), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(139), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3355), - [sym_comment] = STATE(289), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1387), + [STATE(286)] = { + [sym_cmd_identifier] = STATE(2786), + [sym__expression] = STATE(2258), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(142), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3211), + [sym_comment] = STATE(286), + [aux_sym_pipe_element_repeat2] = STATE(1388), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69779,17 +69541,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1024), - [aux_sym__val_number_decimal_token2] = ACTIONS(1026), - [aux_sym__val_number_decimal_token3] = ACTIONS(1028), - [aux_sym__val_number_decimal_token4] = ACTIONS(1028), + [aux_sym__val_number_decimal_token1] = ACTIONS(1300), + [aux_sym__val_number_decimal_token2] = ACTIONS(1302), + [aux_sym__val_number_decimal_token3] = ACTIONS(1304), + [aux_sym__val_number_decimal_token4] = ACTIONS(1304), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -69802,46 +69564,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(290)] = { - [sym_cmd_identifier] = STATE(2889), - [sym_ctrl_if] = STATE(3206), - [sym_block] = STATE(3207), - [sym__expression] = STATE(3207), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2221), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(305), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_command] = STATE(3207), - [sym_comment] = STATE(290), + [STATE(287)] = { + [sym_comment] = STATE(287), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_RPAREN] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token5] = ACTIONS(1324), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(288)] = { + [sym_cmd_identifier] = STATE(2786), + [sym__expression] = STATE(2258), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2214), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(133), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3211), + [sym_comment] = STATE(288), + [aux_sym_pipe_element_repeat2] = STATE(1388), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69856,31 +69709,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(457), + [anon_sym_if] = ACTIONS(271), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [aux_sym_cmd_identifier_token3] = ACTIONS(1250), - [aux_sym_cmd_identifier_token4] = ACTIONS(1250), - [aux_sym_cmd_identifier_token5] = ACTIONS(1250), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [anon_sym_null] = ACTIONS(281), + [aux_sym_cmd_identifier_token3] = ACTIONS(283), + [aux_sym_cmd_identifier_token4] = ACTIONS(283), + [aux_sym_cmd_identifier_token5] = ACTIONS(283), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1256), - [aux_sym__val_number_decimal_token2] = ACTIONS(1258), - [aux_sym__val_number_decimal_token3] = ACTIONS(1260), - [aux_sym__val_number_decimal_token4] = ACTIONS(1260), + [aux_sym__val_number_decimal_token1] = ACTIONS(291), + [aux_sym__val_number_decimal_token2] = ACTIONS(293), + [aux_sym__val_number_decimal_token3] = ACTIONS(295), + [aux_sym__val_number_decimal_token4] = ACTIONS(295), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -69897,42 +69750,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(291)] = { - [sym_cmd_identifier] = STATE(2950), - [sym__expression_parenthesized] = STATE(2261), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2127), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(127), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_env_var] = STATE(4409), - [sym__command_parenthesized] = STATE(3355), - [sym_comment] = STATE(291), - [aux_sym_pipe_element_parenthesized_repeat2] = STATE(1387), + [STATE(289)] = { + [sym_comment] = STATE(289), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token5] = ACTIONS(1326), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(290)] = { + [sym_cmd_identifier] = STATE(2881), + [sym_ctrl_if] = STATE(3172), + [sym_block] = STATE(3173), + [sym__expression] = STATE(3173), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2219), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(297), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_command] = STATE(3173), + [sym_comment] = STATE(290), [anon_sym_export] = ACTIONS(277), [anon_sym_alias] = ACTIONS(271), [anon_sym_let] = ACTIONS(271), @@ -69947,31 +69891,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(271), [anon_sym_loop] = ACTIONS(271), [anon_sym_while] = ACTIONS(271), - [anon_sym_if] = ACTIONS(271), + [anon_sym_if] = ACTIONS(269), [anon_sym_else] = ACTIONS(271), [anon_sym_try] = ACTIONS(271), [anon_sym_catch] = ACTIONS(271), [anon_sym_match] = ACTIONS(271), [anon_sym_in] = ACTIONS(277), - [anon_sym_true] = ACTIONS(279), - [anon_sym_false] = ACTIONS(279), - [anon_sym_null] = ACTIONS(281), - [aux_sym_cmd_identifier_token3] = ACTIONS(283), - [aux_sym_cmd_identifier_token4] = ACTIONS(283), - [aux_sym_cmd_identifier_token5] = ACTIONS(283), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [aux_sym_cmd_identifier_token3] = ACTIONS(1252), + [aux_sym_cmd_identifier_token4] = ACTIONS(1252), + [aux_sym_cmd_identifier_token5] = ACTIONS(1252), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(1256), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(337), - [aux_sym__val_number_decimal_token2] = ACTIONS(339), - [aux_sym__val_number_decimal_token3] = ACTIONS(341), - [aux_sym__val_number_decimal_token4] = ACTIONS(341), + [aux_sym__val_number_decimal_token1] = ACTIONS(1328), + [aux_sym__val_number_decimal_token2] = ACTIONS(1330), + [aux_sym__val_number_decimal_token3] = ACTIONS(1332), + [aux_sym__val_number_decimal_token4] = ACTIONS(1332), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -69984,103 +69928,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_CARET] = ACTIONS(343), + [anon_sym_CARET] = ACTIONS(209), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(292)] = { - [sym_comment] = STATE(292), - [ts_builtin_sym_end] = ACTIONS(741), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1278), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(293)] = { - [sym_comment] = STATE(293), + [STATE(291)] = { + [sym_comment] = STATE(291), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -70128,276 +69981,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), - [anon_sym_RPAREN] = ACTIONS(739), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(739), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(739), - [anon_sym_xor2] = ACTIONS(739), - [anon_sym_or2] = ACTIONS(739), - [anon_sym_not_DASHin2] = ACTIONS(739), - [anon_sym_has2] = ACTIONS(739), - [anon_sym_not_DASHhas2] = ACTIONS(739), - [anon_sym_starts_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), - [anon_sym_ends_DASHwith2] = ACTIONS(739), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), - [anon_sym_EQ_EQ2] = ACTIONS(739), - [anon_sym_BANG_EQ2] = ACTIONS(739), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(739), - [anon_sym_GT_EQ2] = ACTIONS(739), - [anon_sym_EQ_TILDE2] = ACTIONS(739), - [anon_sym_BANG_TILDE2] = ACTIONS(739), - [anon_sym_like2] = ACTIONS(739), - [anon_sym_not_DASHlike2] = ACTIONS(739), - [anon_sym_STAR_STAR2] = ACTIONS(739), - [anon_sym_PLUS_PLUS2] = ACTIONS(739), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(739), - [anon_sym_SLASH_SLASH2] = ACTIONS(739), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(739), - [anon_sym_bit_DASHshr2] = ACTIONS(739), - [anon_sym_bit_DASHand2] = ACTIONS(739), - [anon_sym_bit_DASHxor2] = ACTIONS(739), - [anon_sym_bit_DASHor2] = ACTIONS(739), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1290), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(294)] = { - [sym_comment] = STATE(294), - [anon_sym_in] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(906), - [anon_sym_PLUS_PLUS] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(908), - [anon_sym_SLASH] = ACTIONS(908), - [anon_sym_mod] = ACTIONS(906), - [anon_sym_SLASH_SLASH] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_bit_DASHshl] = ACTIONS(906), - [anon_sym_bit_DASHshr] = ACTIONS(906), - [anon_sym_EQ_TILDE] = ACTIONS(906), - [anon_sym_BANG_TILDE] = ACTIONS(906), - [anon_sym_like] = ACTIONS(906), - [anon_sym_not_DASHlike] = ACTIONS(906), - [anon_sym_bit_DASHand] = ACTIONS(906), - [anon_sym_bit_DASHxor] = ACTIONS(906), - [anon_sym_bit_DASHor] = ACTIONS(906), - [anon_sym_and] = ACTIONS(906), - [anon_sym_xor] = ACTIONS(906), - [anon_sym_or] = ACTIONS(906), - [anon_sym_in2] = ACTIONS(906), - [anon_sym_not_DASHin] = ACTIONS(906), - [anon_sym_has] = ACTIONS(906), - [anon_sym_not_DASHhas] = ACTIONS(906), - [anon_sym_starts_DASHwith] = ACTIONS(906), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(906), - [anon_sym_ends_DASHwith] = ACTIONS(906), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(906), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(906), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_GT_EQ] = ACTIONS(906), - [aux_sym_cmd_identifier_token6] = ACTIONS(910), - [sym__newline] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_err_GT_PIPE] = ACTIONS(793), - [anon_sym_out_GT_PIPE] = ACTIONS(793), - [anon_sym_e_GT_PIPE] = ACTIONS(793), - [anon_sym_o_GT_PIPE] = ACTIONS(793), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(793), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(793), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(793), - [anon_sym_GT2] = ACTIONS(793), - [anon_sym_DASH2] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_STAR2] = ACTIONS(793), - [anon_sym_and2] = ACTIONS(793), - [anon_sym_xor2] = ACTIONS(793), - [anon_sym_or2] = ACTIONS(793), - [anon_sym_not_DASHin2] = ACTIONS(793), - [anon_sym_has2] = ACTIONS(793), - [anon_sym_not_DASHhas2] = ACTIONS(793), - [anon_sym_starts_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), - [anon_sym_ends_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), - [anon_sym_EQ_EQ2] = ACTIONS(793), - [anon_sym_BANG_EQ2] = ACTIONS(793), - [anon_sym_LT2] = ACTIONS(793), - [anon_sym_LT_EQ2] = ACTIONS(793), - [anon_sym_GT_EQ2] = ACTIONS(793), - [anon_sym_EQ_TILDE2] = ACTIONS(793), - [anon_sym_BANG_TILDE2] = ACTIONS(793), - [anon_sym_like2] = ACTIONS(793), - [anon_sym_not_DASHlike2] = ACTIONS(793), - [anon_sym_STAR_STAR2] = ACTIONS(793), - [anon_sym_PLUS_PLUS2] = ACTIONS(793), - [anon_sym_SLASH2] = ACTIONS(793), - [anon_sym_mod2] = ACTIONS(793), - [anon_sym_SLASH_SLASH2] = ACTIONS(793), - [anon_sym_PLUS2] = ACTIONS(793), - [anon_sym_bit_DASHshl2] = ACTIONS(793), - [anon_sym_bit_DASHshr2] = ACTIONS(793), - [anon_sym_bit_DASHand2] = ACTIONS(793), - [anon_sym_bit_DASHxor2] = ACTIONS(793), - [anon_sym_bit_DASHor2] = ACTIONS(793), - [anon_sym_DOT_DOT2] = ACTIONS(801), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(803), - [anon_sym_DOT_DOT_LT2] = ACTIONS(803), - [sym_filesize_unit] = ACTIONS(1342), - [sym_duration_unit] = ACTIONS(1344), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(295)] = { - [sym_comment] = STATE(295), - [anon_sym_in] = ACTIONS(874), - [anon_sym_STAR_STAR] = ACTIONS(876), - [anon_sym_PLUS_PLUS] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_mod] = ACTIONS(876), - [anon_sym_SLASH_SLASH] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_DASH] = ACTIONS(876), - [anon_sym_bit_DASHshl] = ACTIONS(876), - [anon_sym_bit_DASHshr] = ACTIONS(876), - [anon_sym_EQ_TILDE] = ACTIONS(876), - [anon_sym_BANG_TILDE] = ACTIONS(876), - [anon_sym_like] = ACTIONS(876), - [anon_sym_not_DASHlike] = ACTIONS(876), - [anon_sym_bit_DASHand] = ACTIONS(876), - [anon_sym_bit_DASHxor] = ACTIONS(876), - [anon_sym_bit_DASHor] = ACTIONS(876), - [anon_sym_and] = ACTIONS(876), - [anon_sym_xor] = ACTIONS(876), - [anon_sym_or] = ACTIONS(876), - [anon_sym_in2] = ACTIONS(876), - [anon_sym_not_DASHin] = ACTIONS(876), - [anon_sym_has] = ACTIONS(876), - [anon_sym_not_DASHhas] = ACTIONS(876), - [anon_sym_starts_DASHwith] = ACTIONS(876), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(876), - [anon_sym_ends_DASHwith] = ACTIONS(876), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_BANG_EQ] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_EQ] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_GT_EQ] = ACTIONS(876), - [aux_sym_cmd_identifier_token6] = ACTIONS(874), - [sym__newline] = ACTIONS(874), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_err_GT_PIPE] = ACTIONS(874), - [anon_sym_out_GT_PIPE] = ACTIONS(874), - [anon_sym_e_GT_PIPE] = ACTIONS(874), - [anon_sym_o_GT_PIPE] = ACTIONS(874), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(874), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(874), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(874), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(874), - [anon_sym_GT2] = ACTIONS(874), - [anon_sym_DASH2] = ACTIONS(874), - [anon_sym_RBRACE] = ACTIONS(874), - [anon_sym_STAR2] = ACTIONS(874), - [anon_sym_and2] = ACTIONS(874), - [anon_sym_xor2] = ACTIONS(874), - [anon_sym_or2] = ACTIONS(874), - [anon_sym_not_DASHin2] = ACTIONS(874), - [anon_sym_has2] = ACTIONS(874), - [anon_sym_not_DASHhas2] = ACTIONS(874), - [anon_sym_starts_DASHwith2] = ACTIONS(874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(874), - [anon_sym_ends_DASHwith2] = ACTIONS(874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(874), - [anon_sym_EQ_EQ2] = ACTIONS(874), - [anon_sym_BANG_EQ2] = ACTIONS(874), - [anon_sym_LT2] = ACTIONS(874), - [anon_sym_LT_EQ2] = ACTIONS(874), - [anon_sym_GT_EQ2] = ACTIONS(874), - [anon_sym_EQ_TILDE2] = ACTIONS(874), - [anon_sym_BANG_TILDE2] = ACTIONS(874), - [anon_sym_like2] = ACTIONS(874), - [anon_sym_not_DASHlike2] = ACTIONS(874), - [anon_sym_STAR_STAR2] = ACTIONS(874), - [anon_sym_PLUS_PLUS2] = ACTIONS(874), - [anon_sym_SLASH2] = ACTIONS(874), - [anon_sym_mod2] = ACTIONS(874), - [anon_sym_SLASH_SLASH2] = ACTIONS(874), - [anon_sym_PLUS2] = ACTIONS(874), - [anon_sym_bit_DASHshl2] = ACTIONS(874), - [anon_sym_bit_DASHshr2] = ACTIONS(874), - [anon_sym_bit_DASHand2] = ACTIONS(874), - [anon_sym_bit_DASHxor2] = ACTIONS(874), - [anon_sym_bit_DASHor2] = ACTIONS(874), - [anon_sym_DOT_DOT2] = ACTIONS(874), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), - [anon_sym_DOT_DOT_LT2] = ACTIONS(876), - [sym_filesize_unit] = ACTIONS(874), - [sym_duration_unit] = ACTIONS(876), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(296)] = { - [sym_comment] = STATE(296), - [anon_sym_in] = ACTIONS(739), - [anon_sym_STAR_STAR] = ACTIONS(741), - [anon_sym_PLUS_PLUS] = ACTIONS(741), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_SLASH] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(741), - [anon_sym_SLASH_SLASH] = ACTIONS(741), - [anon_sym_PLUS] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_bit_DASHshl] = ACTIONS(741), - [anon_sym_bit_DASHshr] = ACTIONS(741), - [anon_sym_EQ_TILDE] = ACTIONS(741), - [anon_sym_BANG_TILDE] = ACTIONS(741), - [anon_sym_like] = ACTIONS(741), - [anon_sym_not_DASHlike] = ACTIONS(741), - [anon_sym_bit_DASHand] = ACTIONS(741), - [anon_sym_bit_DASHxor] = ACTIONS(741), - [anon_sym_bit_DASHor] = ACTIONS(741), - [anon_sym_and] = ACTIONS(741), - [anon_sym_xor] = ACTIONS(741), - [anon_sym_or] = ACTIONS(741), - [anon_sym_in2] = ACTIONS(741), - [anon_sym_not_DASHin] = ACTIONS(741), - [anon_sym_has] = ACTIONS(741), - [anon_sym_not_DASHhas] = ACTIONS(741), - [anon_sym_starts_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), - [anon_sym_ends_DASHwith] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_LT] = ACTIONS(739), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(739), - [anon_sym_GT_EQ] = ACTIONS(741), - [aux_sym_cmd_identifier_token6] = ACTIONS(739), - [sym__newline] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_err_GT_PIPE] = ACTIONS(739), - [anon_sym_out_GT_PIPE] = ACTIONS(739), - [anon_sym_e_GT_PIPE] = ACTIONS(739), - [anon_sym_o_GT_PIPE] = ACTIONS(739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), [anon_sym_GT2] = ACTIONS(739), [anon_sym_DASH2] = ACTIONS(739), [anon_sym_STAR2] = ACTIONS(739), @@ -70432,16 +70015,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(739), [anon_sym_bit_DASHor2] = ACTIONS(739), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1334), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1348), + [aux_sym__immediate_decimal_token5] = ACTIONS(1336), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(297)] = { - [sym_comment] = STATE(297), + [STATE(292)] = { + [sym_comment] = STATE(292), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -70479,6 +70062,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(749), [aux_sym_cmd_identifier_token6] = ACTIONS(747), [sym__newline] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(747), [anon_sym_PIPE] = ACTIONS(747), [anon_sym_err_GT_PIPE] = ACTIONS(747), [anon_sym_out_GT_PIPE] = ACTIONS(747), @@ -70524,108 +70108,649 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(747), [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1350), - [aux_sym__immediate_decimal_token5] = ACTIONS(1352), + [aux_sym__immediate_decimal_token1] = ACTIONS(1338), + [aux_sym__immediate_decimal_token5] = ACTIONS(1340), [sym_filesize_unit] = ACTIONS(747), [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(298)] = { - [sym_comment] = STATE(298), - [ts_builtin_sym_end] = ACTIONS(890), - [anon_sym_in] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_SLASH] = ACTIONS(894), - [anon_sym_mod] = ACTIONS(892), - [anon_sym_SLASH_SLASH] = ACTIONS(892), - [anon_sym_PLUS] = ACTIONS(894), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_bit_DASHshl] = ACTIONS(892), - [anon_sym_bit_DASHshr] = ACTIONS(892), - [anon_sym_EQ_TILDE] = ACTIONS(892), - [anon_sym_BANG_TILDE] = ACTIONS(892), - [anon_sym_like] = ACTIONS(892), - [anon_sym_not_DASHlike] = ACTIONS(892), - [anon_sym_bit_DASHand] = ACTIONS(892), - [anon_sym_bit_DASHxor] = ACTIONS(892), - [anon_sym_bit_DASHor] = ACTIONS(892), - [anon_sym_and] = ACTIONS(892), - [anon_sym_xor] = ACTIONS(892), - [anon_sym_or] = ACTIONS(892), - [anon_sym_in2] = ACTIONS(892), - [anon_sym_not_DASHin] = ACTIONS(892), - [anon_sym_has] = ACTIONS(892), - [anon_sym_not_DASHhas] = ACTIONS(892), - [anon_sym_starts_DASHwith] = ACTIONS(892), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(892), - [anon_sym_ends_DASHwith] = ACTIONS(892), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(892), - [anon_sym_EQ_EQ] = ACTIONS(892), - [anon_sym_BANG_EQ] = ACTIONS(892), - [anon_sym_LT] = ACTIONS(894), - [anon_sym_LT_EQ] = ACTIONS(892), - [anon_sym_GT] = ACTIONS(894), - [anon_sym_GT_EQ] = ACTIONS(892), - [aux_sym_cmd_identifier_token6] = ACTIONS(896), - [sym__newline] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_err_GT_PIPE] = ACTIONS(793), - [anon_sym_out_GT_PIPE] = ACTIONS(793), - [anon_sym_e_GT_PIPE] = ACTIONS(793), - [anon_sym_o_GT_PIPE] = ACTIONS(793), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(793), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(793), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(793), - [anon_sym_GT2] = ACTIONS(793), - [anon_sym_DASH2] = ACTIONS(793), - [anon_sym_STAR2] = ACTIONS(793), - [anon_sym_and2] = ACTIONS(793), - [anon_sym_xor2] = ACTIONS(793), - [anon_sym_or2] = ACTIONS(793), - [anon_sym_not_DASHin2] = ACTIONS(793), - [anon_sym_has2] = ACTIONS(793), - [anon_sym_not_DASHhas2] = ACTIONS(793), - [anon_sym_starts_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), - [anon_sym_ends_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), - [anon_sym_EQ_EQ2] = ACTIONS(793), - [anon_sym_BANG_EQ2] = ACTIONS(793), - [anon_sym_LT2] = ACTIONS(793), - [anon_sym_LT_EQ2] = ACTIONS(793), - [anon_sym_GT_EQ2] = ACTIONS(793), - [anon_sym_EQ_TILDE2] = ACTIONS(793), - [anon_sym_BANG_TILDE2] = ACTIONS(793), - [anon_sym_like2] = ACTIONS(793), - [anon_sym_not_DASHlike2] = ACTIONS(793), - [anon_sym_STAR_STAR2] = ACTIONS(793), - [anon_sym_PLUS_PLUS2] = ACTIONS(793), - [anon_sym_SLASH2] = ACTIONS(793), - [anon_sym_mod2] = ACTIONS(793), - [anon_sym_SLASH_SLASH2] = ACTIONS(793), - [anon_sym_PLUS2] = ACTIONS(793), - [anon_sym_bit_DASHshl2] = ACTIONS(793), - [anon_sym_bit_DASHshr2] = ACTIONS(793), - [anon_sym_bit_DASHand2] = ACTIONS(793), - [anon_sym_bit_DASHxor2] = ACTIONS(793), - [anon_sym_bit_DASHor2] = ACTIONS(793), - [anon_sym_DOT_DOT2] = ACTIONS(898), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(900), - [anon_sym_DOT_DOT_LT2] = ACTIONS(900), - [sym_filesize_unit] = ACTIONS(1354), - [sym_duration_unit] = ACTIONS(1356), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(299)] = { - [sym_comment] = STATE(299), - [anon_sym_in] = ACTIONS(747), - [anon_sym_STAR_STAR] = ACTIONS(749), - [anon_sym_PLUS_PLUS] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(747), + [STATE(293)] = { + [sym_cmd_identifier] = STATE(2923), + [sym__expression] = STATE(2259), + [sym_expr_unary] = STATE(1273), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1273), + [sym__expr_binary_expression] = STATE(2226), + [sym_expr_parenthesized] = STATE(950), + [sym_val_range] = STATE(1273), + [sym__value] = STATE(1273), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1311), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(129), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_env_var] = STATE(4811), + [sym_command] = STATE(3287), + [sym_comment] = STATE(293), + [aux_sym_pipe_element_repeat2] = STATE(1388), + [anon_sym_export] = ACTIONS(45), + [anon_sym_alias] = ACTIONS(39), + [anon_sym_let] = ACTIONS(39), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_const] = ACTIONS(39), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [anon_sym_def] = ACTIONS(39), + [anon_sym_use] = ACTIONS(39), + [anon_sym_export_DASHenv] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(39), + [anon_sym_for] = ACTIONS(39), + [anon_sym_loop] = ACTIONS(39), + [anon_sym_while] = ACTIONS(39), + [anon_sym_if] = ACTIONS(39), + [anon_sym_else] = ACTIONS(39), + [anon_sym_try] = ACTIONS(39), + [anon_sym_catch] = ACTIONS(39), + [anon_sym_match] = ACTIONS(39), + [anon_sym_in] = ACTIONS(45), + [anon_sym_true] = ACTIONS(47), + [anon_sym_false] = ACTIONS(47), + [anon_sym_null] = ACTIONS(49), + [aux_sym_cmd_identifier_token3] = ACTIONS(51), + [aux_sym_cmd_identifier_token4] = ACTIONS(51), + [aux_sym_cmd_identifier_token5] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(69), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(75), + [aux_sym__val_number_decimal_token1] = ACTIONS(77), + [aux_sym__val_number_decimal_token2] = ACTIONS(79), + [aux_sym__val_number_decimal_token3] = ACTIONS(81), + [aux_sym__val_number_decimal_token4] = ACTIONS(81), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(294)] = { + [sym_comment] = STATE(294), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_RPAREN] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(295)] = { + [sym_comment] = STATE(295), + [anon_sym_in] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_mod] = ACTIONS(791), + [anon_sym_SLASH_SLASH] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_bit_DASHshl] = ACTIONS(791), + [anon_sym_bit_DASHshr] = ACTIONS(791), + [anon_sym_EQ_TILDE] = ACTIONS(791), + [anon_sym_BANG_TILDE] = ACTIONS(791), + [anon_sym_like] = ACTIONS(791), + [anon_sym_not_DASHlike] = ACTIONS(791), + [anon_sym_bit_DASHand] = ACTIONS(791), + [anon_sym_bit_DASHxor] = ACTIONS(791), + [anon_sym_bit_DASHor] = ACTIONS(791), + [anon_sym_and] = ACTIONS(791), + [anon_sym_xor] = ACTIONS(791), + [anon_sym_or] = ACTIONS(791), + [anon_sym_in2] = ACTIONS(791), + [anon_sym_not_DASHin] = ACTIONS(791), + [anon_sym_has] = ACTIONS(791), + [anon_sym_not_DASHhas] = ACTIONS(791), + [anon_sym_starts_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), + [anon_sym_ends_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), + [anon_sym_EQ_EQ] = ACTIONS(791), + [anon_sym_BANG_EQ] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(791), + [aux_sym_cmd_identifier_token6] = ACTIONS(789), + [sym__newline] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_err_GT_PIPE] = ACTIONS(789), + [anon_sym_out_GT_PIPE] = ACTIONS(789), + [anon_sym_e_GT_PIPE] = ACTIONS(789), + [anon_sym_o_GT_PIPE] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), + [anon_sym_RPAREN] = ACTIONS(789), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(789), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(789), + [anon_sym_xor2] = ACTIONS(789), + [anon_sym_or2] = ACTIONS(789), + [anon_sym_not_DASHin2] = ACTIONS(789), + [anon_sym_has2] = ACTIONS(789), + [anon_sym_not_DASHhas2] = ACTIONS(789), + [anon_sym_starts_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), + [anon_sym_ends_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), + [anon_sym_EQ_EQ2] = ACTIONS(789), + [anon_sym_BANG_EQ2] = ACTIONS(789), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(789), + [anon_sym_GT_EQ2] = ACTIONS(789), + [anon_sym_EQ_TILDE2] = ACTIONS(789), + [anon_sym_BANG_TILDE2] = ACTIONS(789), + [anon_sym_like2] = ACTIONS(789), + [anon_sym_not_DASHlike2] = ACTIONS(789), + [anon_sym_STAR_STAR2] = ACTIONS(789), + [anon_sym_PLUS_PLUS2] = ACTIONS(789), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(789), + [anon_sym_SLASH_SLASH2] = ACTIONS(789), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(789), + [anon_sym_bit_DASHshr2] = ACTIONS(789), + [anon_sym_bit_DASHand2] = ACTIONS(789), + [anon_sym_bit_DASHxor2] = ACTIONS(789), + [anon_sym_bit_DASHor2] = ACTIONS(789), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(296)] = { + [sym_comment] = STATE(296), + [ts_builtin_sym_end] = ACTIONS(757), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(297)] = { + [sym_comment] = STATE(297), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(900), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_mod] = ACTIONS(898), + [anon_sym_SLASH_SLASH] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(900), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_bit_DASHshl] = ACTIONS(898), + [anon_sym_bit_DASHshr] = ACTIONS(898), + [anon_sym_EQ_TILDE] = ACTIONS(898), + [anon_sym_BANG_TILDE] = ACTIONS(898), + [anon_sym_like] = ACTIONS(898), + [anon_sym_not_DASHlike] = ACTIONS(898), + [anon_sym_bit_DASHand] = ACTIONS(898), + [anon_sym_bit_DASHxor] = ACTIONS(898), + [anon_sym_bit_DASHor] = ACTIONS(898), + [anon_sym_and] = ACTIONS(898), + [anon_sym_xor] = ACTIONS(898), + [anon_sym_or] = ACTIONS(898), + [anon_sym_in2] = ACTIONS(898), + [anon_sym_not_DASHin] = ACTIONS(898), + [anon_sym_has] = ACTIONS(898), + [anon_sym_not_DASHhas] = ACTIONS(898), + [anon_sym_starts_DASHwith] = ACTIONS(898), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(898), + [anon_sym_ends_DASHwith] = ACTIONS(898), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(898), + [anon_sym_EQ_EQ] = ACTIONS(898), + [anon_sym_BANG_EQ] = ACTIONS(898), + [anon_sym_LT] = ACTIONS(900), + [anon_sym_LT_EQ] = ACTIONS(898), + [anon_sym_GT] = ACTIONS(900), + [anon_sym_GT_EQ] = ACTIONS(898), + [aux_sym_cmd_identifier_token6] = ACTIONS(902), + [sym__newline] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_RBRACE] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(1342), + [sym_duration_unit] = ACTIONS(1344), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(298)] = { + [sym_comment] = STATE(298), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token5] = ACTIONS(1346), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(299)] = { + [sym_comment] = STATE(299), + [ts_builtin_sym_end] = ACTIONS(791), + [anon_sym_in] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_mod] = ACTIONS(791), + [anon_sym_SLASH_SLASH] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_bit_DASHshl] = ACTIONS(791), + [anon_sym_bit_DASHshr] = ACTIONS(791), + [anon_sym_EQ_TILDE] = ACTIONS(791), + [anon_sym_BANG_TILDE] = ACTIONS(791), + [anon_sym_like] = ACTIONS(791), + [anon_sym_not_DASHlike] = ACTIONS(791), + [anon_sym_bit_DASHand] = ACTIONS(791), + [anon_sym_bit_DASHxor] = ACTIONS(791), + [anon_sym_bit_DASHor] = ACTIONS(791), + [anon_sym_and] = ACTIONS(791), + [anon_sym_xor] = ACTIONS(791), + [anon_sym_or] = ACTIONS(791), + [anon_sym_in2] = ACTIONS(791), + [anon_sym_not_DASHin] = ACTIONS(791), + [anon_sym_has] = ACTIONS(791), + [anon_sym_not_DASHhas] = ACTIONS(791), + [anon_sym_starts_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), + [anon_sym_ends_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), + [anon_sym_EQ_EQ] = ACTIONS(791), + [anon_sym_BANG_EQ] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(791), + [aux_sym_cmd_identifier_token6] = ACTIONS(789), + [sym__newline] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_err_GT_PIPE] = ACTIONS(789), + [anon_sym_out_GT_PIPE] = ACTIONS(789), + [anon_sym_e_GT_PIPE] = ACTIONS(789), + [anon_sym_o_GT_PIPE] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(789), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(789), + [anon_sym_xor2] = ACTIONS(789), + [anon_sym_or2] = ACTIONS(789), + [anon_sym_not_DASHin2] = ACTIONS(789), + [anon_sym_has2] = ACTIONS(789), + [anon_sym_not_DASHhas2] = ACTIONS(789), + [anon_sym_starts_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), + [anon_sym_ends_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), + [anon_sym_EQ_EQ2] = ACTIONS(789), + [anon_sym_BANG_EQ2] = ACTIONS(789), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(789), + [anon_sym_GT_EQ2] = ACTIONS(789), + [anon_sym_EQ_TILDE2] = ACTIONS(789), + [anon_sym_BANG_TILDE2] = ACTIONS(789), + [anon_sym_like2] = ACTIONS(789), + [anon_sym_not_DASHlike2] = ACTIONS(789), + [anon_sym_STAR_STAR2] = ACTIONS(789), + [anon_sym_PLUS_PLUS2] = ACTIONS(789), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(789), + [anon_sym_SLASH_SLASH2] = ACTIONS(789), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(789), + [anon_sym_bit_DASHshr2] = ACTIONS(789), + [anon_sym_bit_DASHand2] = ACTIONS(789), + [anon_sym_bit_DASHxor2] = ACTIONS(789), + [anon_sym_bit_DASHor2] = ACTIONS(789), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(300)] = { + [sym_comment] = STATE(300), + [anon_sym_in] = ACTIONS(747), + [anon_sym_STAR_STAR] = ACTIONS(749), + [anon_sym_PLUS_PLUS] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(747), [anon_sym_SLASH] = ACTIONS(747), [anon_sym_mod] = ACTIONS(749), [anon_sym_SLASH_SLASH] = ACTIONS(749), @@ -70669,9 +70794,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), - [anon_sym_RPAREN] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), [anon_sym_and2] = ACTIONS(747), [anon_sym_xor2] = ACTIONS(747), @@ -70710,99 +70835,548 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(300)] = { - [sym_comment] = STATE(300), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_RPAREN] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(301)] = { [sym_comment] = STATE(301), - [ts_builtin_sym_end] = ACTIONS(749), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(900), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_mod] = ACTIONS(898), + [anon_sym_SLASH_SLASH] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(900), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_bit_DASHshl] = ACTIONS(898), + [anon_sym_bit_DASHshr] = ACTIONS(898), + [anon_sym_EQ_TILDE] = ACTIONS(898), + [anon_sym_BANG_TILDE] = ACTIONS(898), + [anon_sym_like] = ACTIONS(898), + [anon_sym_not_DASHlike] = ACTIONS(898), + [anon_sym_bit_DASHand] = ACTIONS(898), + [anon_sym_bit_DASHxor] = ACTIONS(898), + [anon_sym_bit_DASHor] = ACTIONS(898), + [anon_sym_and] = ACTIONS(898), + [anon_sym_xor] = ACTIONS(898), + [anon_sym_or] = ACTIONS(898), + [anon_sym_in2] = ACTIONS(898), + [anon_sym_not_DASHin] = ACTIONS(898), + [anon_sym_has] = ACTIONS(898), + [anon_sym_not_DASHhas] = ACTIONS(898), + [anon_sym_starts_DASHwith] = ACTIONS(898), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(898), + [anon_sym_ends_DASHwith] = ACTIONS(898), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(898), + [anon_sym_EQ_EQ] = ACTIONS(898), + [anon_sym_BANG_EQ] = ACTIONS(898), + [anon_sym_LT] = ACTIONS(900), + [anon_sym_LT_EQ] = ACTIONS(898), + [anon_sym_GT] = ACTIONS(900), + [anon_sym_GT_EQ] = ACTIONS(898), + [aux_sym_cmd_identifier_token6] = ACTIONS(902), + [sym__newline] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_RPAREN] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(1348), + [sym_duration_unit] = ACTIONS(1350), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(302)] = { + [sym_comment] = STATE(302), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(303)] = { + [sym_comment] = STATE(303), + [anon_sym_in] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_mod] = ACTIONS(791), + [anon_sym_SLASH_SLASH] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_bit_DASHshl] = ACTIONS(791), + [anon_sym_bit_DASHshr] = ACTIONS(791), + [anon_sym_EQ_TILDE] = ACTIONS(791), + [anon_sym_BANG_TILDE] = ACTIONS(791), + [anon_sym_like] = ACTIONS(791), + [anon_sym_not_DASHlike] = ACTIONS(791), + [anon_sym_bit_DASHand] = ACTIONS(791), + [anon_sym_bit_DASHxor] = ACTIONS(791), + [anon_sym_bit_DASHor] = ACTIONS(791), + [anon_sym_and] = ACTIONS(791), + [anon_sym_xor] = ACTIONS(791), + [anon_sym_or] = ACTIONS(791), + [anon_sym_in2] = ACTIONS(791), + [anon_sym_not_DASHin] = ACTIONS(791), + [anon_sym_has] = ACTIONS(791), + [anon_sym_not_DASHhas] = ACTIONS(791), + [anon_sym_starts_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), + [anon_sym_ends_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), + [anon_sym_EQ_EQ] = ACTIONS(791), + [anon_sym_BANG_EQ] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(791), + [aux_sym_cmd_identifier_token6] = ACTIONS(789), + [sym__newline] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_err_GT_PIPE] = ACTIONS(789), + [anon_sym_out_GT_PIPE] = ACTIONS(789), + [anon_sym_e_GT_PIPE] = ACTIONS(789), + [anon_sym_o_GT_PIPE] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(789), + [anon_sym_RBRACE] = ACTIONS(789), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(789), + [anon_sym_xor2] = ACTIONS(789), + [anon_sym_or2] = ACTIONS(789), + [anon_sym_not_DASHin2] = ACTIONS(789), + [anon_sym_has2] = ACTIONS(789), + [anon_sym_not_DASHhas2] = ACTIONS(789), + [anon_sym_starts_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), + [anon_sym_ends_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), + [anon_sym_EQ_EQ2] = ACTIONS(789), + [anon_sym_BANG_EQ2] = ACTIONS(789), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(789), + [anon_sym_GT_EQ2] = ACTIONS(789), + [anon_sym_EQ_TILDE2] = ACTIONS(789), + [anon_sym_BANG_TILDE2] = ACTIONS(789), + [anon_sym_like2] = ACTIONS(789), + [anon_sym_not_DASHlike2] = ACTIONS(789), + [anon_sym_STAR_STAR2] = ACTIONS(789), + [anon_sym_PLUS_PLUS2] = ACTIONS(789), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(789), + [anon_sym_SLASH_SLASH2] = ACTIONS(789), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(789), + [anon_sym_bit_DASHshr2] = ACTIONS(789), + [anon_sym_bit_DASHand2] = ACTIONS(789), + [anon_sym_bit_DASHxor2] = ACTIONS(789), + [anon_sym_bit_DASHor2] = ACTIONS(789), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(304)] = { + [sym_comment] = STATE(304), + [anon_sym_in] = ACTIONS(739), + [anon_sym_STAR_STAR] = ACTIONS(741), + [anon_sym_PLUS_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(739), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_bit_DASHshl] = ACTIONS(741), + [anon_sym_bit_DASHshr] = ACTIONS(741), + [anon_sym_EQ_TILDE] = ACTIONS(741), + [anon_sym_BANG_TILDE] = ACTIONS(741), + [anon_sym_like] = ACTIONS(741), + [anon_sym_not_DASHlike] = ACTIONS(741), + [anon_sym_bit_DASHand] = ACTIONS(741), + [anon_sym_bit_DASHxor] = ACTIONS(741), + [anon_sym_bit_DASHor] = ACTIONS(741), + [anon_sym_and] = ACTIONS(741), + [anon_sym_xor] = ACTIONS(741), + [anon_sym_or] = ACTIONS(741), + [anon_sym_in2] = ACTIONS(741), + [anon_sym_not_DASHin] = ACTIONS(741), + [anon_sym_has] = ACTIONS(741), + [anon_sym_not_DASHhas] = ACTIONS(741), + [anon_sym_starts_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(741), + [anon_sym_ends_DASHwith] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(741), + [anon_sym_BANG_EQ] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(739), + [anon_sym_LT_EQ] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(739), + [anon_sym_GT_EQ] = ACTIONS(741), + [aux_sym_cmd_identifier_token6] = ACTIONS(739), + [sym__newline] = ACTIONS(739), + [anon_sym_PIPE] = ACTIONS(739), + [anon_sym_err_GT_PIPE] = ACTIONS(739), + [anon_sym_out_GT_PIPE] = ACTIONS(739), + [anon_sym_e_GT_PIPE] = ACTIONS(739), + [anon_sym_o_GT_PIPE] = ACTIONS(739), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(739), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(739), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(739), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(739), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(739), + [anon_sym_xor2] = ACTIONS(739), + [anon_sym_or2] = ACTIONS(739), + [anon_sym_not_DASHin2] = ACTIONS(739), + [anon_sym_has2] = ACTIONS(739), + [anon_sym_not_DASHhas2] = ACTIONS(739), + [anon_sym_starts_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(739), + [anon_sym_ends_DASHwith2] = ACTIONS(739), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(739), + [anon_sym_EQ_EQ2] = ACTIONS(739), + [anon_sym_BANG_EQ2] = ACTIONS(739), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(739), + [anon_sym_GT_EQ2] = ACTIONS(739), + [anon_sym_EQ_TILDE2] = ACTIONS(739), + [anon_sym_BANG_TILDE2] = ACTIONS(739), + [anon_sym_like2] = ACTIONS(739), + [anon_sym_not_DASHlike2] = ACTIONS(739), + [anon_sym_STAR_STAR2] = ACTIONS(739), + [anon_sym_PLUS_PLUS2] = ACTIONS(739), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(739), + [anon_sym_SLASH_SLASH2] = ACTIONS(739), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(739), + [anon_sym_bit_DASHshr2] = ACTIONS(739), + [anon_sym_bit_DASHand2] = ACTIONS(739), + [anon_sym_bit_DASHxor2] = ACTIONS(739), + [anon_sym_bit_DASHor2] = ACTIONS(739), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT] = ACTIONS(1352), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token5] = ACTIONS(1354), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(305)] = { + [sym_comment] = STATE(305), + [anon_sym_in] = ACTIONS(747), + [anon_sym_STAR_STAR] = ACTIONS(749), + [anon_sym_PLUS_PLUS] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(747), + [anon_sym_SLASH] = ACTIONS(747), + [anon_sym_mod] = ACTIONS(749), + [anon_sym_SLASH_SLASH] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(747), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_bit_DASHshl] = ACTIONS(749), + [anon_sym_bit_DASHshr] = ACTIONS(749), + [anon_sym_EQ_TILDE] = ACTIONS(749), + [anon_sym_BANG_TILDE] = ACTIONS(749), + [anon_sym_like] = ACTIONS(749), + [anon_sym_not_DASHlike] = ACTIONS(749), + [anon_sym_bit_DASHand] = ACTIONS(749), + [anon_sym_bit_DASHxor] = ACTIONS(749), + [anon_sym_bit_DASHor] = ACTIONS(749), + [anon_sym_and] = ACTIONS(749), + [anon_sym_xor] = ACTIONS(749), + [anon_sym_or] = ACTIONS(749), + [anon_sym_in2] = ACTIONS(749), + [anon_sym_not_DASHin] = ACTIONS(749), + [anon_sym_has] = ACTIONS(749), + [anon_sym_not_DASHhas] = ACTIONS(749), + [anon_sym_starts_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(749), + [anon_sym_ends_DASHwith] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(749), + [anon_sym_BANG_EQ] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(747), + [anon_sym_LT_EQ] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(747), + [anon_sym_GT_EQ] = ACTIONS(749), + [aux_sym_cmd_identifier_token6] = ACTIONS(747), + [sym__newline] = ACTIONS(747), + [anon_sym_PIPE] = ACTIONS(747), + [anon_sym_err_GT_PIPE] = ACTIONS(747), + [anon_sym_out_GT_PIPE] = ACTIONS(747), + [anon_sym_e_GT_PIPE] = ACTIONS(747), + [anon_sym_o_GT_PIPE] = ACTIONS(747), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(747), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(747), + [anon_sym_xor2] = ACTIONS(747), + [anon_sym_or2] = ACTIONS(747), + [anon_sym_not_DASHin2] = ACTIONS(747), + [anon_sym_has2] = ACTIONS(747), + [anon_sym_not_DASHhas2] = ACTIONS(747), + [anon_sym_starts_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(747), + [anon_sym_ends_DASHwith2] = ACTIONS(747), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(747), + [anon_sym_EQ_EQ2] = ACTIONS(747), + [anon_sym_BANG_EQ2] = ACTIONS(747), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(747), + [anon_sym_GT_EQ2] = ACTIONS(747), + [anon_sym_EQ_TILDE2] = ACTIONS(747), + [anon_sym_BANG_TILDE2] = ACTIONS(747), + [anon_sym_like2] = ACTIONS(747), + [anon_sym_not_DASHlike2] = ACTIONS(747), + [anon_sym_STAR_STAR2] = ACTIONS(747), + [anon_sym_PLUS_PLUS2] = ACTIONS(747), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(747), + [anon_sym_SLASH_SLASH2] = ACTIONS(747), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(747), + [anon_sym_bit_DASHshr2] = ACTIONS(747), + [anon_sym_bit_DASHand2] = ACTIONS(747), + [anon_sym_bit_DASHxor2] = ACTIONS(747), + [anon_sym_bit_DASHor2] = ACTIONS(747), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token1] = ACTIONS(1356), + [aux_sym__immediate_decimal_token5] = ACTIONS(1358), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(306)] = { + [sym_comment] = STATE(306), + [ts_builtin_sym_end] = ACTIONS(908), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(910), + [anon_sym_PLUS_PLUS] = ACTIONS(910), + [anon_sym_STAR] = ACTIONS(912), + [anon_sym_SLASH] = ACTIONS(912), + [anon_sym_mod] = ACTIONS(910), + [anon_sym_SLASH_SLASH] = ACTIONS(910), + [anon_sym_PLUS] = ACTIONS(912), + [anon_sym_DASH] = ACTIONS(910), + [anon_sym_bit_DASHshl] = ACTIONS(910), + [anon_sym_bit_DASHshr] = ACTIONS(910), + [anon_sym_EQ_TILDE] = ACTIONS(910), + [anon_sym_BANG_TILDE] = ACTIONS(910), + [anon_sym_like] = ACTIONS(910), + [anon_sym_not_DASHlike] = ACTIONS(910), + [anon_sym_bit_DASHand] = ACTIONS(910), + [anon_sym_bit_DASHxor] = ACTIONS(910), + [anon_sym_bit_DASHor] = ACTIONS(910), + [anon_sym_and] = ACTIONS(910), + [anon_sym_xor] = ACTIONS(910), + [anon_sym_or] = ACTIONS(910), + [anon_sym_in2] = ACTIONS(910), + [anon_sym_not_DASHin] = ACTIONS(910), + [anon_sym_has] = ACTIONS(910), + [anon_sym_not_DASHhas] = ACTIONS(910), + [anon_sym_starts_DASHwith] = ACTIONS(910), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(910), + [anon_sym_ends_DASHwith] = ACTIONS(910), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(910), + [anon_sym_EQ_EQ] = ACTIONS(910), + [anon_sym_BANG_EQ] = ACTIONS(910), + [anon_sym_LT] = ACTIONS(912), + [anon_sym_LT_EQ] = ACTIONS(910), + [anon_sym_GT] = ACTIONS(912), + [anon_sym_GT_EQ] = ACTIONS(910), + [aux_sym_cmd_identifier_token6] = ACTIONS(914), + [sym__newline] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(916), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(918), + [anon_sym_DOT_DOT_LT2] = ACTIONS(918), + [sym_filesize_unit] = ACTIONS(1360), + [sym_duration_unit] = ACTIONS(1362), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(307)] = { + [sym_comment] = STATE(307), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -70850,6 +71424,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(747), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(747), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), @@ -70890,8 +71465,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(302)] = { - [sym_comment] = STATE(302), + [STATE(308)] = { + [sym_comment] = STATE(308), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -70975,13 +71550,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1312), + [aux_sym__immediate_decimal_token5] = ACTIONS(1336), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(303)] = { - [sym_comment] = STATE(303), + [STATE(309)] = { + [sym_comment] = STATE(309), + [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -71031,7 +71607,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(747), [anon_sym_GT2] = ACTIONS(747), [anon_sym_DASH2] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_STAR2] = ACTIONS(747), [anon_sym_and2] = ACTIONS(747), [anon_sym_xor2] = ACTIONS(747), @@ -71070,637 +71645,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(304)] = { - [sym_comment] = STATE(304), - [anon_sym_in] = ACTIONS(874), - [anon_sym_STAR_STAR] = ACTIONS(876), - [anon_sym_PLUS_PLUS] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_mod] = ACTIONS(876), - [anon_sym_SLASH_SLASH] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_DASH] = ACTIONS(876), - [anon_sym_bit_DASHshl] = ACTIONS(876), - [anon_sym_bit_DASHshr] = ACTIONS(876), - [anon_sym_EQ_TILDE] = ACTIONS(876), - [anon_sym_BANG_TILDE] = ACTIONS(876), - [anon_sym_like] = ACTIONS(876), - [anon_sym_not_DASHlike] = ACTIONS(876), - [anon_sym_bit_DASHand] = ACTIONS(876), - [anon_sym_bit_DASHxor] = ACTIONS(876), - [anon_sym_bit_DASHor] = ACTIONS(876), - [anon_sym_and] = ACTIONS(876), - [anon_sym_xor] = ACTIONS(876), - [anon_sym_or] = ACTIONS(876), - [anon_sym_in2] = ACTIONS(876), - [anon_sym_not_DASHin] = ACTIONS(876), - [anon_sym_has] = ACTIONS(876), - [anon_sym_not_DASHhas] = ACTIONS(876), - [anon_sym_starts_DASHwith] = ACTIONS(876), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(876), - [anon_sym_ends_DASHwith] = ACTIONS(876), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_BANG_EQ] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_EQ] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_GT_EQ] = ACTIONS(876), - [aux_sym_cmd_identifier_token6] = ACTIONS(874), - [sym__newline] = ACTIONS(874), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_err_GT_PIPE] = ACTIONS(874), - [anon_sym_out_GT_PIPE] = ACTIONS(874), - [anon_sym_e_GT_PIPE] = ACTIONS(874), - [anon_sym_o_GT_PIPE] = ACTIONS(874), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(874), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(874), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(874), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(874), - [anon_sym_RPAREN] = ACTIONS(874), - [anon_sym_GT2] = ACTIONS(874), - [anon_sym_DASH2] = ACTIONS(874), - [anon_sym_STAR2] = ACTIONS(874), - [anon_sym_and2] = ACTIONS(874), - [anon_sym_xor2] = ACTIONS(874), - [anon_sym_or2] = ACTIONS(874), - [anon_sym_not_DASHin2] = ACTIONS(874), - [anon_sym_has2] = ACTIONS(874), - [anon_sym_not_DASHhas2] = ACTIONS(874), - [anon_sym_starts_DASHwith2] = ACTIONS(874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(874), - [anon_sym_ends_DASHwith2] = ACTIONS(874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(874), - [anon_sym_EQ_EQ2] = ACTIONS(874), - [anon_sym_BANG_EQ2] = ACTIONS(874), - [anon_sym_LT2] = ACTIONS(874), - [anon_sym_LT_EQ2] = ACTIONS(874), - [anon_sym_GT_EQ2] = ACTIONS(874), - [anon_sym_EQ_TILDE2] = ACTIONS(874), - [anon_sym_BANG_TILDE2] = ACTIONS(874), - [anon_sym_like2] = ACTIONS(874), - [anon_sym_not_DASHlike2] = ACTIONS(874), - [anon_sym_STAR_STAR2] = ACTIONS(874), - [anon_sym_PLUS_PLUS2] = ACTIONS(874), - [anon_sym_SLASH2] = ACTIONS(874), - [anon_sym_mod2] = ACTIONS(874), - [anon_sym_SLASH_SLASH2] = ACTIONS(874), - [anon_sym_PLUS2] = ACTIONS(874), - [anon_sym_bit_DASHshl2] = ACTIONS(874), - [anon_sym_bit_DASHshr2] = ACTIONS(874), - [anon_sym_bit_DASHand2] = ACTIONS(874), - [anon_sym_bit_DASHxor2] = ACTIONS(874), - [anon_sym_bit_DASHor2] = ACTIONS(874), - [anon_sym_DOT_DOT2] = ACTIONS(874), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), - [anon_sym_DOT_DOT_LT2] = ACTIONS(876), - [sym_filesize_unit] = ACTIONS(874), - [sym_duration_unit] = ACTIONS(876), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(305)] = { - [sym_comment] = STATE(305), - [anon_sym_in] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(906), - [anon_sym_PLUS_PLUS] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(908), - [anon_sym_SLASH] = ACTIONS(908), - [anon_sym_mod] = ACTIONS(906), - [anon_sym_SLASH_SLASH] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_bit_DASHshl] = ACTIONS(906), - [anon_sym_bit_DASHshr] = ACTIONS(906), - [anon_sym_EQ_TILDE] = ACTIONS(906), - [anon_sym_BANG_TILDE] = ACTIONS(906), - [anon_sym_like] = ACTIONS(906), - [anon_sym_not_DASHlike] = ACTIONS(906), - [anon_sym_bit_DASHand] = ACTIONS(906), - [anon_sym_bit_DASHxor] = ACTIONS(906), - [anon_sym_bit_DASHor] = ACTIONS(906), - [anon_sym_and] = ACTIONS(906), - [anon_sym_xor] = ACTIONS(906), - [anon_sym_or] = ACTIONS(906), - [anon_sym_in2] = ACTIONS(906), - [anon_sym_not_DASHin] = ACTIONS(906), - [anon_sym_has] = ACTIONS(906), - [anon_sym_not_DASHhas] = ACTIONS(906), - [anon_sym_starts_DASHwith] = ACTIONS(906), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(906), - [anon_sym_ends_DASHwith] = ACTIONS(906), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(906), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(906), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_GT_EQ] = ACTIONS(906), - [aux_sym_cmd_identifier_token6] = ACTIONS(910), - [sym__newline] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_err_GT_PIPE] = ACTIONS(793), - [anon_sym_out_GT_PIPE] = ACTIONS(793), - [anon_sym_e_GT_PIPE] = ACTIONS(793), - [anon_sym_o_GT_PIPE] = ACTIONS(793), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(793), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(793), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(793), - [anon_sym_GT2] = ACTIONS(793), - [anon_sym_DASH2] = ACTIONS(793), - [anon_sym_STAR2] = ACTIONS(793), - [anon_sym_and2] = ACTIONS(793), - [anon_sym_xor2] = ACTIONS(793), - [anon_sym_or2] = ACTIONS(793), - [anon_sym_not_DASHin2] = ACTIONS(793), - [anon_sym_has2] = ACTIONS(793), - [anon_sym_not_DASHhas2] = ACTIONS(793), - [anon_sym_starts_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), - [anon_sym_ends_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), - [anon_sym_EQ_EQ2] = ACTIONS(793), - [anon_sym_BANG_EQ2] = ACTIONS(793), - [anon_sym_LT2] = ACTIONS(793), - [anon_sym_LT_EQ2] = ACTIONS(793), - [anon_sym_GT_EQ2] = ACTIONS(793), - [anon_sym_EQ_TILDE2] = ACTIONS(793), - [anon_sym_BANG_TILDE2] = ACTIONS(793), - [anon_sym_like2] = ACTIONS(793), - [anon_sym_not_DASHlike2] = ACTIONS(793), - [anon_sym_STAR_STAR2] = ACTIONS(793), - [anon_sym_PLUS_PLUS2] = ACTIONS(793), - [anon_sym_SLASH2] = ACTIONS(793), - [anon_sym_mod2] = ACTIONS(793), - [anon_sym_SLASH_SLASH2] = ACTIONS(793), - [anon_sym_PLUS2] = ACTIONS(793), - [anon_sym_bit_DASHshl2] = ACTIONS(793), - [anon_sym_bit_DASHshr2] = ACTIONS(793), - [anon_sym_bit_DASHand2] = ACTIONS(793), - [anon_sym_bit_DASHxor2] = ACTIONS(793), - [anon_sym_bit_DASHor2] = ACTIONS(793), - [anon_sym_DOT_DOT2] = ACTIONS(801), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(803), - [anon_sym_DOT_DOT_LT2] = ACTIONS(803), - [sym_filesize_unit] = ACTIONS(1358), - [sym_duration_unit] = ACTIONS(1360), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(306)] = { - [sym_comment] = STATE(306), - [ts_builtin_sym_end] = ACTIONS(773), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(307)] = { - [sym_comment] = STATE(307), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1362), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(308)] = { - [sym_comment] = STATE(308), - [ts_builtin_sym_end] = ACTIONS(876), - [anon_sym_in] = ACTIONS(874), - [anon_sym_STAR_STAR] = ACTIONS(876), - [anon_sym_PLUS_PLUS] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_mod] = ACTIONS(876), - [anon_sym_SLASH_SLASH] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_DASH] = ACTIONS(876), - [anon_sym_bit_DASHshl] = ACTIONS(876), - [anon_sym_bit_DASHshr] = ACTIONS(876), - [anon_sym_EQ_TILDE] = ACTIONS(876), - [anon_sym_BANG_TILDE] = ACTIONS(876), - [anon_sym_like] = ACTIONS(876), - [anon_sym_not_DASHlike] = ACTIONS(876), - [anon_sym_bit_DASHand] = ACTIONS(876), - [anon_sym_bit_DASHxor] = ACTIONS(876), - [anon_sym_bit_DASHor] = ACTIONS(876), - [anon_sym_and] = ACTIONS(876), - [anon_sym_xor] = ACTIONS(876), - [anon_sym_or] = ACTIONS(876), - [anon_sym_in2] = ACTIONS(876), - [anon_sym_not_DASHin] = ACTIONS(876), - [anon_sym_has] = ACTIONS(876), - [anon_sym_not_DASHhas] = ACTIONS(876), - [anon_sym_starts_DASHwith] = ACTIONS(876), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(876), - [anon_sym_ends_DASHwith] = ACTIONS(876), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_BANG_EQ] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_EQ] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_GT_EQ] = ACTIONS(876), - [aux_sym_cmd_identifier_token6] = ACTIONS(874), - [sym__newline] = ACTIONS(874), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_err_GT_PIPE] = ACTIONS(874), - [anon_sym_out_GT_PIPE] = ACTIONS(874), - [anon_sym_e_GT_PIPE] = ACTIONS(874), - [anon_sym_o_GT_PIPE] = ACTIONS(874), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(874), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(874), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(874), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(874), - [anon_sym_GT2] = ACTIONS(874), - [anon_sym_DASH2] = ACTIONS(874), - [anon_sym_STAR2] = ACTIONS(874), - [anon_sym_and2] = ACTIONS(874), - [anon_sym_xor2] = ACTIONS(874), - [anon_sym_or2] = ACTIONS(874), - [anon_sym_not_DASHin2] = ACTIONS(874), - [anon_sym_has2] = ACTIONS(874), - [anon_sym_not_DASHhas2] = ACTIONS(874), - [anon_sym_starts_DASHwith2] = ACTIONS(874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(874), - [anon_sym_ends_DASHwith2] = ACTIONS(874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(874), - [anon_sym_EQ_EQ2] = ACTIONS(874), - [anon_sym_BANG_EQ2] = ACTIONS(874), - [anon_sym_LT2] = ACTIONS(874), - [anon_sym_LT_EQ2] = ACTIONS(874), - [anon_sym_GT_EQ2] = ACTIONS(874), - [anon_sym_EQ_TILDE2] = ACTIONS(874), - [anon_sym_BANG_TILDE2] = ACTIONS(874), - [anon_sym_like2] = ACTIONS(874), - [anon_sym_not_DASHlike2] = ACTIONS(874), - [anon_sym_STAR_STAR2] = ACTIONS(874), - [anon_sym_PLUS_PLUS2] = ACTIONS(874), - [anon_sym_SLASH2] = ACTIONS(874), - [anon_sym_mod2] = ACTIONS(874), - [anon_sym_SLASH_SLASH2] = ACTIONS(874), - [anon_sym_PLUS2] = ACTIONS(874), - [anon_sym_bit_DASHshl2] = ACTIONS(874), - [anon_sym_bit_DASHshr2] = ACTIONS(874), - [anon_sym_bit_DASHand2] = ACTIONS(874), - [anon_sym_bit_DASHxor2] = ACTIONS(874), - [anon_sym_bit_DASHor2] = ACTIONS(874), - [anon_sym_DOT_DOT2] = ACTIONS(874), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), - [anon_sym_DOT_DOT_LT2] = ACTIONS(876), - [sym_filesize_unit] = ACTIONS(874), - [sym_duration_unit] = ACTIONS(876), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(309)] = { - [sym_comment] = STATE(309), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(310)] = { [sym_comment] = STATE(310), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1364), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(311)] = { - [sym_comment] = STATE(311), [anon_sym_in] = ACTIONS(739), [anon_sym_STAR_STAR] = ACTIONS(741), [anon_sym_PLUS_PLUS] = ACTIONS(741), @@ -71783,98 +71729,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(739), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1348), + [aux_sym__immediate_decimal_token5] = ACTIONS(1354), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(311)] = { + [sym_comment] = STATE(311), + [anon_sym_in] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_mod] = ACTIONS(791), + [anon_sym_SLASH_SLASH] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_bit_DASHshl] = ACTIONS(791), + [anon_sym_bit_DASHshr] = ACTIONS(791), + [anon_sym_EQ_TILDE] = ACTIONS(791), + [anon_sym_BANG_TILDE] = ACTIONS(791), + [anon_sym_like] = ACTIONS(791), + [anon_sym_not_DASHlike] = ACTIONS(791), + [anon_sym_bit_DASHand] = ACTIONS(791), + [anon_sym_bit_DASHxor] = ACTIONS(791), + [anon_sym_bit_DASHor] = ACTIONS(791), + [anon_sym_and] = ACTIONS(791), + [anon_sym_xor] = ACTIONS(791), + [anon_sym_or] = ACTIONS(791), + [anon_sym_in2] = ACTIONS(791), + [anon_sym_not_DASHin] = ACTIONS(791), + [anon_sym_has] = ACTIONS(791), + [anon_sym_not_DASHhas] = ACTIONS(791), + [anon_sym_starts_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), + [anon_sym_ends_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), + [anon_sym_EQ_EQ] = ACTIONS(791), + [anon_sym_BANG_EQ] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(791), + [aux_sym_cmd_identifier_token6] = ACTIONS(789), + [sym__newline] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_err_GT_PIPE] = ACTIONS(789), + [anon_sym_out_GT_PIPE] = ACTIONS(789), + [anon_sym_e_GT_PIPE] = ACTIONS(789), + [anon_sym_o_GT_PIPE] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(789), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(789), + [anon_sym_xor2] = ACTIONS(789), + [anon_sym_or2] = ACTIONS(789), + [anon_sym_not_DASHin2] = ACTIONS(789), + [anon_sym_has2] = ACTIONS(789), + [anon_sym_not_DASHhas2] = ACTIONS(789), + [anon_sym_starts_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), + [anon_sym_ends_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), + [anon_sym_EQ_EQ2] = ACTIONS(789), + [anon_sym_BANG_EQ2] = ACTIONS(789), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(789), + [anon_sym_GT_EQ2] = ACTIONS(789), + [anon_sym_EQ_TILDE2] = ACTIONS(789), + [anon_sym_BANG_TILDE2] = ACTIONS(789), + [anon_sym_like2] = ACTIONS(789), + [anon_sym_not_DASHlike2] = ACTIONS(789), + [anon_sym_STAR_STAR2] = ACTIONS(789), + [anon_sym_PLUS_PLUS2] = ACTIONS(789), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(789), + [anon_sym_SLASH_SLASH2] = ACTIONS(789), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(789), + [anon_sym_bit_DASHshr2] = ACTIONS(789), + [anon_sym_bit_DASHand2] = ACTIONS(789), + [anon_sym_bit_DASHxor2] = ACTIONS(789), + [anon_sym_bit_DASHor2] = ACTIONS(789), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(312)] = { [sym_comment] = STATE(312), - [anon_sym_in] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(906), - [anon_sym_PLUS_PLUS] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(908), - [anon_sym_SLASH] = ACTIONS(908), - [anon_sym_mod] = ACTIONS(906), - [anon_sym_SLASH_SLASH] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_bit_DASHshl] = ACTIONS(906), - [anon_sym_bit_DASHshr] = ACTIONS(906), - [anon_sym_EQ_TILDE] = ACTIONS(906), - [anon_sym_BANG_TILDE] = ACTIONS(906), - [anon_sym_like] = ACTIONS(906), - [anon_sym_not_DASHlike] = ACTIONS(906), - [anon_sym_bit_DASHand] = ACTIONS(906), - [anon_sym_bit_DASHxor] = ACTIONS(906), - [anon_sym_bit_DASHor] = ACTIONS(906), - [anon_sym_and] = ACTIONS(906), - [anon_sym_xor] = ACTIONS(906), - [anon_sym_or] = ACTIONS(906), - [anon_sym_in2] = ACTIONS(906), - [anon_sym_not_DASHin] = ACTIONS(906), - [anon_sym_has] = ACTIONS(906), - [anon_sym_not_DASHhas] = ACTIONS(906), - [anon_sym_starts_DASHwith] = ACTIONS(906), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(906), - [anon_sym_ends_DASHwith] = ACTIONS(906), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(906), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(906), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_GT_EQ] = ACTIONS(906), - [aux_sym_cmd_identifier_token6] = ACTIONS(910), - [sym__newline] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_err_GT_PIPE] = ACTIONS(793), - [anon_sym_out_GT_PIPE] = ACTIONS(793), - [anon_sym_e_GT_PIPE] = ACTIONS(793), - [anon_sym_o_GT_PIPE] = ACTIONS(793), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(793), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(793), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(793), - [anon_sym_GT2] = ACTIONS(793), - [anon_sym_DASH2] = ACTIONS(793), - [anon_sym_STAR2] = ACTIONS(793), - [anon_sym_and2] = ACTIONS(793), - [anon_sym_xor2] = ACTIONS(793), - [anon_sym_or2] = ACTIONS(793), - [anon_sym_not_DASHin2] = ACTIONS(793), - [anon_sym_has2] = ACTIONS(793), - [anon_sym_not_DASHhas2] = ACTIONS(793), - [anon_sym_starts_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), - [anon_sym_ends_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), - [anon_sym_EQ_EQ2] = ACTIONS(793), - [anon_sym_BANG_EQ2] = ACTIONS(793), - [anon_sym_LT2] = ACTIONS(793), - [anon_sym_LT_EQ2] = ACTIONS(793), - [anon_sym_GT_EQ2] = ACTIONS(793), - [anon_sym_EQ_TILDE2] = ACTIONS(793), - [anon_sym_BANG_TILDE2] = ACTIONS(793), - [anon_sym_like2] = ACTIONS(793), - [anon_sym_not_DASHlike2] = ACTIONS(793), - [anon_sym_STAR_STAR2] = ACTIONS(793), - [anon_sym_PLUS_PLUS2] = ACTIONS(793), - [anon_sym_SLASH2] = ACTIONS(793), - [anon_sym_mod2] = ACTIONS(793), - [anon_sym_SLASH_SLASH2] = ACTIONS(793), - [anon_sym_PLUS2] = ACTIONS(793), - [anon_sym_bit_DASHshl2] = ACTIONS(793), - [anon_sym_bit_DASHshr2] = ACTIONS(793), - [anon_sym_bit_DASHand2] = ACTIONS(793), - [anon_sym_bit_DASHxor2] = ACTIONS(793), - [anon_sym_bit_DASHor2] = ACTIONS(793), - [anon_sym_DOT_DOT2] = ACTIONS(801), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(803), - [anon_sym_DOT_DOT_LT2] = ACTIONS(803), - [sym_filesize_unit] = ACTIONS(1366), - [sym_duration_unit] = ACTIONS(1368), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), [anon_sym_POUND] = ACTIONS(103), }, [STATE(313)] = { @@ -71968,272 +72003,448 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(314)] = { [sym_comment] = STATE(314), - [anon_sym_in] = ACTIONS(874), - [anon_sym_STAR_STAR] = ACTIONS(876), - [anon_sym_PLUS_PLUS] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_mod] = ACTIONS(876), - [anon_sym_SLASH_SLASH] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_DASH] = ACTIONS(876), - [anon_sym_bit_DASHshl] = ACTIONS(876), - [anon_sym_bit_DASHshr] = ACTIONS(876), - [anon_sym_EQ_TILDE] = ACTIONS(876), - [anon_sym_BANG_TILDE] = ACTIONS(876), - [anon_sym_like] = ACTIONS(876), - [anon_sym_not_DASHlike] = ACTIONS(876), - [anon_sym_bit_DASHand] = ACTIONS(876), - [anon_sym_bit_DASHxor] = ACTIONS(876), - [anon_sym_bit_DASHor] = ACTIONS(876), - [anon_sym_and] = ACTIONS(876), - [anon_sym_xor] = ACTIONS(876), - [anon_sym_or] = ACTIONS(876), - [anon_sym_in2] = ACTIONS(876), - [anon_sym_not_DASHin] = ACTIONS(876), - [anon_sym_has] = ACTIONS(876), - [anon_sym_not_DASHhas] = ACTIONS(876), - [anon_sym_starts_DASHwith] = ACTIONS(876), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(876), - [anon_sym_ends_DASHwith] = ACTIONS(876), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_BANG_EQ] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_EQ] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_GT_EQ] = ACTIONS(876), - [aux_sym_cmd_identifier_token6] = ACTIONS(874), - [sym__newline] = ACTIONS(874), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_err_GT_PIPE] = ACTIONS(874), - [anon_sym_out_GT_PIPE] = ACTIONS(874), - [anon_sym_e_GT_PIPE] = ACTIONS(874), - [anon_sym_o_GT_PIPE] = ACTIONS(874), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(874), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(874), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(874), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(874), - [anon_sym_GT2] = ACTIONS(874), - [anon_sym_DASH2] = ACTIONS(874), - [anon_sym_STAR2] = ACTIONS(874), - [anon_sym_and2] = ACTIONS(874), - [anon_sym_xor2] = ACTIONS(874), - [anon_sym_or2] = ACTIONS(874), - [anon_sym_not_DASHin2] = ACTIONS(874), - [anon_sym_has2] = ACTIONS(874), - [anon_sym_not_DASHhas2] = ACTIONS(874), - [anon_sym_starts_DASHwith2] = ACTIONS(874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(874), - [anon_sym_ends_DASHwith2] = ACTIONS(874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(874), - [anon_sym_EQ_EQ2] = ACTIONS(874), - [anon_sym_BANG_EQ2] = ACTIONS(874), - [anon_sym_LT2] = ACTIONS(874), - [anon_sym_LT_EQ2] = ACTIONS(874), - [anon_sym_GT_EQ2] = ACTIONS(874), - [anon_sym_EQ_TILDE2] = ACTIONS(874), - [anon_sym_BANG_TILDE2] = ACTIONS(874), - [anon_sym_like2] = ACTIONS(874), - [anon_sym_not_DASHlike2] = ACTIONS(874), - [anon_sym_STAR_STAR2] = ACTIONS(874), - [anon_sym_PLUS_PLUS2] = ACTIONS(874), - [anon_sym_SLASH2] = ACTIONS(874), - [anon_sym_mod2] = ACTIONS(874), - [anon_sym_SLASH_SLASH2] = ACTIONS(874), - [anon_sym_PLUS2] = ACTIONS(874), - [anon_sym_bit_DASHshl2] = ACTIONS(874), - [anon_sym_bit_DASHshr2] = ACTIONS(874), - [anon_sym_bit_DASHand2] = ACTIONS(874), - [anon_sym_bit_DASHxor2] = ACTIONS(874), - [anon_sym_bit_DASHor2] = ACTIONS(874), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(900), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_mod] = ACTIONS(898), + [anon_sym_SLASH_SLASH] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(900), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_bit_DASHshl] = ACTIONS(898), + [anon_sym_bit_DASHshr] = ACTIONS(898), + [anon_sym_EQ_TILDE] = ACTIONS(898), + [anon_sym_BANG_TILDE] = ACTIONS(898), + [anon_sym_like] = ACTIONS(898), + [anon_sym_not_DASHlike] = ACTIONS(898), + [anon_sym_bit_DASHand] = ACTIONS(898), + [anon_sym_bit_DASHxor] = ACTIONS(898), + [anon_sym_bit_DASHor] = ACTIONS(898), + [anon_sym_and] = ACTIONS(898), + [anon_sym_xor] = ACTIONS(898), + [anon_sym_or] = ACTIONS(898), + [anon_sym_in2] = ACTIONS(898), + [anon_sym_not_DASHin] = ACTIONS(898), + [anon_sym_has] = ACTIONS(898), + [anon_sym_not_DASHhas] = ACTIONS(898), + [anon_sym_starts_DASHwith] = ACTIONS(898), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(898), + [anon_sym_ends_DASHwith] = ACTIONS(898), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(898), + [anon_sym_EQ_EQ] = ACTIONS(898), + [anon_sym_BANG_EQ] = ACTIONS(898), + [anon_sym_LT] = ACTIONS(900), + [anon_sym_LT_EQ] = ACTIONS(898), + [anon_sym_GT] = ACTIONS(900), + [anon_sym_GT_EQ] = ACTIONS(898), + [aux_sym_cmd_identifier_token6] = ACTIONS(902), + [sym__newline] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), [anon_sym_DOT_DOT2] = ACTIONS(874), [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), [anon_sym_DOT_DOT_LT2] = ACTIONS(876), - [sym_filesize_unit] = ACTIONS(874), - [sym_duration_unit] = ACTIONS(876), + [sym_filesize_unit] = ACTIONS(1364), + [sym_duration_unit] = ACTIONS(1366), [anon_sym_POUND] = ACTIONS(103), }, [STATE(315)] = { [sym_comment] = STATE(315), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token5] = ACTIONS(1368), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), [anon_sym_POUND] = ACTIONS(103), }, [STATE(316)] = { [sym_comment] = STATE(316), - [anon_sym_in] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(906), - [anon_sym_PLUS_PLUS] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(908), - [anon_sym_SLASH] = ACTIONS(908), - [anon_sym_mod] = ACTIONS(906), - [anon_sym_SLASH_SLASH] = ACTIONS(906), - [anon_sym_PLUS] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_bit_DASHshl] = ACTIONS(906), - [anon_sym_bit_DASHshr] = ACTIONS(906), - [anon_sym_EQ_TILDE] = ACTIONS(906), - [anon_sym_BANG_TILDE] = ACTIONS(906), - [anon_sym_like] = ACTIONS(906), - [anon_sym_not_DASHlike] = ACTIONS(906), - [anon_sym_bit_DASHand] = ACTIONS(906), - [anon_sym_bit_DASHxor] = ACTIONS(906), - [anon_sym_bit_DASHor] = ACTIONS(906), - [anon_sym_and] = ACTIONS(906), - [anon_sym_xor] = ACTIONS(906), - [anon_sym_or] = ACTIONS(906), - [anon_sym_in2] = ACTIONS(906), - [anon_sym_not_DASHin] = ACTIONS(906), - [anon_sym_has] = ACTIONS(906), - [anon_sym_not_DASHhas] = ACTIONS(906), - [anon_sym_starts_DASHwith] = ACTIONS(906), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(906), - [anon_sym_ends_DASHwith] = ACTIONS(906), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(906), - [anon_sym_EQ_EQ] = ACTIONS(906), - [anon_sym_BANG_EQ] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(906), - [anon_sym_GT] = ACTIONS(908), - [anon_sym_GT_EQ] = ACTIONS(906), - [aux_sym_cmd_identifier_token6] = ACTIONS(910), - [sym__newline] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_err_GT_PIPE] = ACTIONS(793), - [anon_sym_out_GT_PIPE] = ACTIONS(793), - [anon_sym_e_GT_PIPE] = ACTIONS(793), - [anon_sym_o_GT_PIPE] = ACTIONS(793), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(793), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(793), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(793), - [anon_sym_GT2] = ACTIONS(793), - [anon_sym_DASH2] = ACTIONS(793), - [anon_sym_STAR2] = ACTIONS(793), - [anon_sym_and2] = ACTIONS(793), - [anon_sym_xor2] = ACTIONS(793), - [anon_sym_or2] = ACTIONS(793), - [anon_sym_not_DASHin2] = ACTIONS(793), - [anon_sym_has2] = ACTIONS(793), - [anon_sym_not_DASHhas2] = ACTIONS(793), - [anon_sym_starts_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), - [anon_sym_ends_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), - [anon_sym_EQ_EQ2] = ACTIONS(793), - [anon_sym_BANG_EQ2] = ACTIONS(793), - [anon_sym_LT2] = ACTIONS(793), - [anon_sym_LT_EQ2] = ACTIONS(793), - [anon_sym_GT_EQ2] = ACTIONS(793), - [anon_sym_EQ_TILDE2] = ACTIONS(793), - [anon_sym_BANG_TILDE2] = ACTIONS(793), - [anon_sym_like2] = ACTIONS(793), - [anon_sym_not_DASHlike2] = ACTIONS(793), - [anon_sym_STAR_STAR2] = ACTIONS(793), - [anon_sym_PLUS_PLUS2] = ACTIONS(793), - [anon_sym_SLASH2] = ACTIONS(793), - [anon_sym_mod2] = ACTIONS(793), - [anon_sym_SLASH_SLASH2] = ACTIONS(793), - [anon_sym_PLUS2] = ACTIONS(793), - [anon_sym_bit_DASHshl2] = ACTIONS(793), - [anon_sym_bit_DASHshr2] = ACTIONS(793), - [anon_sym_bit_DASHand2] = ACTIONS(793), - [anon_sym_bit_DASHxor2] = ACTIONS(793), - [anon_sym_bit_DASHor2] = ACTIONS(793), - [anon_sym_DOT_DOT2] = ACTIONS(801), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(803), - [anon_sym_DOT_DOT_LT2] = ACTIONS(803), + [anon_sym_in] = ACTIONS(866), + [anon_sym_STAR_STAR] = ACTIONS(898), + [anon_sym_PLUS_PLUS] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(900), + [anon_sym_SLASH] = ACTIONS(900), + [anon_sym_mod] = ACTIONS(898), + [anon_sym_SLASH_SLASH] = ACTIONS(898), + [anon_sym_PLUS] = ACTIONS(900), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_bit_DASHshl] = ACTIONS(898), + [anon_sym_bit_DASHshr] = ACTIONS(898), + [anon_sym_EQ_TILDE] = ACTIONS(898), + [anon_sym_BANG_TILDE] = ACTIONS(898), + [anon_sym_like] = ACTIONS(898), + [anon_sym_not_DASHlike] = ACTIONS(898), + [anon_sym_bit_DASHand] = ACTIONS(898), + [anon_sym_bit_DASHxor] = ACTIONS(898), + [anon_sym_bit_DASHor] = ACTIONS(898), + [anon_sym_and] = ACTIONS(898), + [anon_sym_xor] = ACTIONS(898), + [anon_sym_or] = ACTIONS(898), + [anon_sym_in2] = ACTIONS(898), + [anon_sym_not_DASHin] = ACTIONS(898), + [anon_sym_has] = ACTIONS(898), + [anon_sym_not_DASHhas] = ACTIONS(898), + [anon_sym_starts_DASHwith] = ACTIONS(898), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(898), + [anon_sym_ends_DASHwith] = ACTIONS(898), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(898), + [anon_sym_EQ_EQ] = ACTIONS(898), + [anon_sym_BANG_EQ] = ACTIONS(898), + [anon_sym_LT] = ACTIONS(900), + [anon_sym_LT_EQ] = ACTIONS(898), + [anon_sym_GT] = ACTIONS(900), + [anon_sym_GT_EQ] = ACTIONS(898), + [aux_sym_cmd_identifier_token6] = ACTIONS(902), + [sym__newline] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_err_GT_PIPE] = ACTIONS(866), + [anon_sym_out_GT_PIPE] = ACTIONS(866), + [anon_sym_e_GT_PIPE] = ACTIONS(866), + [anon_sym_o_GT_PIPE] = ACTIONS(866), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(866), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(866), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(866), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(866), + [anon_sym_BANG_EQ2] = ACTIONS(866), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(866), + [anon_sym_GT_EQ2] = ACTIONS(866), + [anon_sym_EQ_TILDE2] = ACTIONS(866), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_DOT_DOT2] = ACTIONS(874), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), + [anon_sym_DOT_DOT_LT2] = ACTIONS(876), [sym_filesize_unit] = ACTIONS(1370), [sym_duration_unit] = ACTIONS(1372), [anon_sym_POUND] = ACTIONS(103), }, [STATE(317)] = { [sym_comment] = STATE(317), + [anon_sym_in] = ACTIONS(755), + [anon_sym_STAR_STAR] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_bit_DASHshl] = ACTIONS(757), + [anon_sym_bit_DASHshr] = ACTIONS(757), + [anon_sym_EQ_TILDE] = ACTIONS(757), + [anon_sym_BANG_TILDE] = ACTIONS(757), + [anon_sym_like] = ACTIONS(757), + [anon_sym_not_DASHlike] = ACTIONS(757), + [anon_sym_bit_DASHand] = ACTIONS(757), + [anon_sym_bit_DASHxor] = ACTIONS(757), + [anon_sym_bit_DASHor] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_in2] = ACTIONS(757), + [anon_sym_not_DASHin] = ACTIONS(757), + [anon_sym_has] = ACTIONS(757), + [anon_sym_not_DASHhas] = ACTIONS(757), + [anon_sym_starts_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(757), + [anon_sym_ends_DASHwith] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(757), + [aux_sym_cmd_identifier_token6] = ACTIONS(755), + [sym__newline] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_err_GT_PIPE] = ACTIONS(755), + [anon_sym_out_GT_PIPE] = ACTIONS(755), + [anon_sym_e_GT_PIPE] = ACTIONS(755), + [anon_sym_o_GT_PIPE] = ACTIONS(755), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(755), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(755), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(755), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(755), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(755), + [anon_sym_xor2] = ACTIONS(755), + [anon_sym_or2] = ACTIONS(755), + [anon_sym_not_DASHin2] = ACTIONS(755), + [anon_sym_has2] = ACTIONS(755), + [anon_sym_not_DASHhas2] = ACTIONS(755), + [anon_sym_starts_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(755), + [anon_sym_ends_DASHwith2] = ACTIONS(755), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(755), + [anon_sym_EQ_EQ2] = ACTIONS(755), + [anon_sym_BANG_EQ2] = ACTIONS(755), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(755), + [anon_sym_GT_EQ2] = ACTIONS(755), + [anon_sym_EQ_TILDE2] = ACTIONS(755), + [anon_sym_BANG_TILDE2] = ACTIONS(755), + [anon_sym_like2] = ACTIONS(755), + [anon_sym_not_DASHlike2] = ACTIONS(755), + [anon_sym_STAR_STAR2] = ACTIONS(755), + [anon_sym_PLUS_PLUS2] = ACTIONS(755), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(755), + [anon_sym_SLASH_SLASH2] = ACTIONS(755), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(755), + [anon_sym_bit_DASHshr2] = ACTIONS(755), + [anon_sym_bit_DASHand2] = ACTIONS(755), + [anon_sym_bit_DASHxor2] = ACTIONS(755), + [anon_sym_bit_DASHor2] = ACTIONS(755), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(318)] = { + [sym_comment] = STATE(318), + [anon_sym_in] = ACTIONS(789), + [anon_sym_STAR_STAR] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_mod] = ACTIONS(791), + [anon_sym_SLASH_SLASH] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_bit_DASHshl] = ACTIONS(791), + [anon_sym_bit_DASHshr] = ACTIONS(791), + [anon_sym_EQ_TILDE] = ACTIONS(791), + [anon_sym_BANG_TILDE] = ACTIONS(791), + [anon_sym_like] = ACTIONS(791), + [anon_sym_not_DASHlike] = ACTIONS(791), + [anon_sym_bit_DASHand] = ACTIONS(791), + [anon_sym_bit_DASHxor] = ACTIONS(791), + [anon_sym_bit_DASHor] = ACTIONS(791), + [anon_sym_and] = ACTIONS(791), + [anon_sym_xor] = ACTIONS(791), + [anon_sym_or] = ACTIONS(791), + [anon_sym_in2] = ACTIONS(791), + [anon_sym_not_DASHin] = ACTIONS(791), + [anon_sym_has] = ACTIONS(791), + [anon_sym_not_DASHhas] = ACTIONS(791), + [anon_sym_starts_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(791), + [anon_sym_ends_DASHwith] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(791), + [anon_sym_EQ_EQ] = ACTIONS(791), + [anon_sym_BANG_EQ] = ACTIONS(791), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_LT_EQ] = ACTIONS(791), + [anon_sym_GT] = ACTIONS(789), + [anon_sym_GT_EQ] = ACTIONS(791), + [aux_sym_cmd_identifier_token6] = ACTIONS(789), + [sym__newline] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_err_GT_PIPE] = ACTIONS(789), + [anon_sym_out_GT_PIPE] = ACTIONS(789), + [anon_sym_e_GT_PIPE] = ACTIONS(789), + [anon_sym_o_GT_PIPE] = ACTIONS(789), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(789), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(789), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(789), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(789), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(789), + [anon_sym_xor2] = ACTIONS(789), + [anon_sym_or2] = ACTIONS(789), + [anon_sym_not_DASHin2] = ACTIONS(789), + [anon_sym_has2] = ACTIONS(789), + [anon_sym_not_DASHhas2] = ACTIONS(789), + [anon_sym_starts_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(789), + [anon_sym_ends_DASHwith2] = ACTIONS(789), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(789), + [anon_sym_EQ_EQ2] = ACTIONS(789), + [anon_sym_BANG_EQ2] = ACTIONS(789), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(789), + [anon_sym_GT_EQ2] = ACTIONS(789), + [anon_sym_EQ_TILDE2] = ACTIONS(789), + [anon_sym_BANG_TILDE2] = ACTIONS(789), + [anon_sym_like2] = ACTIONS(789), + [anon_sym_not_DASHlike2] = ACTIONS(789), + [anon_sym_STAR_STAR2] = ACTIONS(789), + [anon_sym_PLUS_PLUS2] = ACTIONS(789), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(789), + [anon_sym_SLASH_SLASH2] = ACTIONS(789), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(789), + [anon_sym_bit_DASHshr2] = ACTIONS(789), + [anon_sym_bit_DASHand2] = ACTIONS(789), + [anon_sym_bit_DASHxor2] = ACTIONS(789), + [anon_sym_bit_DASHor2] = ACTIONS(789), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(319)] = { + [sym_comment] = STATE(319), [anon_sym_in] = ACTIONS(747), [anon_sym_STAR_STAR] = ACTIONS(749), [anon_sym_PLUS_PLUS] = ACTIONS(749), @@ -72320,230 +72531,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_duration_unit] = ACTIONS(749), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(318)] = { - [sym_comment] = STATE(318), - [anon_sym_in] = ACTIONS(771), - [anon_sym_STAR_STAR] = ACTIONS(773), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_mod] = ACTIONS(773), - [anon_sym_SLASH_SLASH] = ACTIONS(773), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_bit_DASHshl] = ACTIONS(773), - [anon_sym_bit_DASHshr] = ACTIONS(773), - [anon_sym_EQ_TILDE] = ACTIONS(773), - [anon_sym_BANG_TILDE] = ACTIONS(773), - [anon_sym_like] = ACTIONS(773), - [anon_sym_not_DASHlike] = ACTIONS(773), - [anon_sym_bit_DASHand] = ACTIONS(773), - [anon_sym_bit_DASHxor] = ACTIONS(773), - [anon_sym_bit_DASHor] = ACTIONS(773), - [anon_sym_and] = ACTIONS(773), - [anon_sym_xor] = ACTIONS(773), - [anon_sym_or] = ACTIONS(773), - [anon_sym_in2] = ACTIONS(773), - [anon_sym_not_DASHin] = ACTIONS(773), - [anon_sym_has] = ACTIONS(773), - [anon_sym_not_DASHhas] = ACTIONS(773), - [anon_sym_starts_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(773), - [anon_sym_ends_DASHwith] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(773), - [aux_sym_cmd_identifier_token6] = ACTIONS(771), - [sym__newline] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_err_GT_PIPE] = ACTIONS(771), - [anon_sym_out_GT_PIPE] = ACTIONS(771), - [anon_sym_e_GT_PIPE] = ACTIONS(771), - [anon_sym_o_GT_PIPE] = ACTIONS(771), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(771), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(771), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(771), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(771), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(771), - [anon_sym_xor2] = ACTIONS(771), - [anon_sym_or2] = ACTIONS(771), - [anon_sym_not_DASHin2] = ACTIONS(771), - [anon_sym_has2] = ACTIONS(771), - [anon_sym_not_DASHhas2] = ACTIONS(771), - [anon_sym_starts_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(771), - [anon_sym_ends_DASHwith2] = ACTIONS(771), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(771), - [anon_sym_EQ_EQ2] = ACTIONS(771), - [anon_sym_BANG_EQ2] = ACTIONS(771), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(771), - [anon_sym_GT_EQ2] = ACTIONS(771), - [anon_sym_EQ_TILDE2] = ACTIONS(771), - [anon_sym_BANG_TILDE2] = ACTIONS(771), - [anon_sym_like2] = ACTIONS(771), - [anon_sym_not_DASHlike2] = ACTIONS(771), - [anon_sym_STAR_STAR2] = ACTIONS(771), - [anon_sym_PLUS_PLUS2] = ACTIONS(771), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(771), - [anon_sym_SLASH_SLASH2] = ACTIONS(771), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(771), - [anon_sym_bit_DASHshr2] = ACTIONS(771), - [anon_sym_bit_DASHand2] = ACTIONS(771), - [anon_sym_bit_DASHxor2] = ACTIONS(771), - [anon_sym_bit_DASHor2] = ACTIONS(771), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(319)] = { - [sym_comment] = STATE(319), - [anon_sym_in] = ACTIONS(874), - [anon_sym_STAR_STAR] = ACTIONS(876), - [anon_sym_PLUS_PLUS] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(874), - [anon_sym_SLASH] = ACTIONS(874), - [anon_sym_mod] = ACTIONS(876), - [anon_sym_SLASH_SLASH] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(874), - [anon_sym_DASH] = ACTIONS(876), - [anon_sym_bit_DASHshl] = ACTIONS(876), - [anon_sym_bit_DASHshr] = ACTIONS(876), - [anon_sym_EQ_TILDE] = ACTIONS(876), - [anon_sym_BANG_TILDE] = ACTIONS(876), - [anon_sym_like] = ACTIONS(876), - [anon_sym_not_DASHlike] = ACTIONS(876), - [anon_sym_bit_DASHand] = ACTIONS(876), - [anon_sym_bit_DASHxor] = ACTIONS(876), - [anon_sym_bit_DASHor] = ACTIONS(876), - [anon_sym_and] = ACTIONS(876), - [anon_sym_xor] = ACTIONS(876), - [anon_sym_or] = ACTIONS(876), - [anon_sym_in2] = ACTIONS(876), - [anon_sym_not_DASHin] = ACTIONS(876), - [anon_sym_has] = ACTIONS(876), - [anon_sym_not_DASHhas] = ACTIONS(876), - [anon_sym_starts_DASHwith] = ACTIONS(876), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(876), - [anon_sym_ends_DASHwith] = ACTIONS(876), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_BANG_EQ] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(874), - [anon_sym_LT_EQ] = ACTIONS(876), - [anon_sym_GT] = ACTIONS(874), - [anon_sym_GT_EQ] = ACTIONS(876), - [aux_sym_cmd_identifier_token6] = ACTIONS(874), - [sym__newline] = ACTIONS(874), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_err_GT_PIPE] = ACTIONS(874), - [anon_sym_out_GT_PIPE] = ACTIONS(874), - [anon_sym_e_GT_PIPE] = ACTIONS(874), - [anon_sym_o_GT_PIPE] = ACTIONS(874), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(874), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(874), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(874), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(874), - [anon_sym_GT2] = ACTIONS(874), - [anon_sym_DASH2] = ACTIONS(874), - [anon_sym_STAR2] = ACTIONS(874), - [anon_sym_and2] = ACTIONS(874), - [anon_sym_xor2] = ACTIONS(874), - [anon_sym_or2] = ACTIONS(874), - [anon_sym_not_DASHin2] = ACTIONS(874), - [anon_sym_has2] = ACTIONS(874), - [anon_sym_not_DASHhas2] = ACTIONS(874), - [anon_sym_starts_DASHwith2] = ACTIONS(874), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(874), - [anon_sym_ends_DASHwith2] = ACTIONS(874), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(874), - [anon_sym_EQ_EQ2] = ACTIONS(874), - [anon_sym_BANG_EQ2] = ACTIONS(874), - [anon_sym_LT2] = ACTIONS(874), - [anon_sym_LT_EQ2] = ACTIONS(874), - [anon_sym_GT_EQ2] = ACTIONS(874), - [anon_sym_EQ_TILDE2] = ACTIONS(874), - [anon_sym_BANG_TILDE2] = ACTIONS(874), - [anon_sym_like2] = ACTIONS(874), - [anon_sym_not_DASHlike2] = ACTIONS(874), - [anon_sym_STAR_STAR2] = ACTIONS(874), - [anon_sym_PLUS_PLUS2] = ACTIONS(874), - [anon_sym_SLASH2] = ACTIONS(874), - [anon_sym_mod2] = ACTIONS(874), - [anon_sym_SLASH_SLASH2] = ACTIONS(874), - [anon_sym_PLUS2] = ACTIONS(874), - [anon_sym_bit_DASHshl2] = ACTIONS(874), - [anon_sym_bit_DASHshr2] = ACTIONS(874), - [anon_sym_bit_DASHand2] = ACTIONS(874), - [anon_sym_bit_DASHxor2] = ACTIONS(874), - [anon_sym_bit_DASHor2] = ACTIONS(874), - [anon_sym_DOT_DOT2] = ACTIONS(874), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), - [anon_sym_DOT_DOT_LT2] = ACTIONS(876), - [sym_filesize_unit] = ACTIONS(874), - [sym_duration_unit] = ACTIONS(876), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(320)] = { - [aux_sym__repeat_newline] = STATE(4123), - [sym__match_pattern_expression] = STATE(4388), - [sym__match_pattern_value] = STATE(4618), - [sym__match_pattern_list_body] = STATE(4640), - [sym__match_pattern_list] = STATE(4619), - [sym__match_pattern_rest] = STATE(5232), - [sym__match_pattern_record] = STATE(4622), - [sym_expr_parenthesized] = STATE(3830), - [sym__spread_parenthesized] = STATE(4700), - [sym_val_range] = STATE(4418), - [sym__val_range] = STATE(4544), - [sym__value] = STATE(4730), - [sym_val_nothing] = STATE(4419), - [sym_val_bool] = STATE(4086), - [sym__spread_variable] = STATE(4795), - [sym_val_variable] = STATE(3834), - [sym_val_cellpath] = STATE(4604), - [sym_val_number] = STATE(4419), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(4361), - [sym_val_duration] = STATE(4419), - [sym_val_filesize] = STATE(4419), - [sym_val_binary] = STATE(4419), - [sym_val_string] = STATE(4419), - [sym__raw_str] = STATE(3638), - [sym__str_double_quotes] = STATE(3638), - [sym__str_single_quotes] = STATE(3638), - [sym__str_back_ticks] = STATE(3638), - [sym_val_interpolated] = STATE(4604), - [sym__inter_single_quotes] = STATE(4595), + [aux_sym__repeat_newline] = STATE(4124), + [sym__match_pattern_expression] = STATE(4389), + [sym__match_pattern_value] = STATE(4609), + [sym__match_pattern_list_body] = STATE(4642), + [sym__match_pattern_list] = STATE(4610), + [sym__match_pattern_rest] = STATE(5226), + [sym__match_pattern_record] = STATE(4611), + [sym_expr_parenthesized] = STATE(3878), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4411), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4412), + [sym_val_bool] = STATE(3969), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3882), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4412), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4412), + [sym_val_filesize] = STATE(4412), + [sym_val_binary] = STATE(4412), + [sym_val_string] = STATE(4412), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), [sym__inter_double_quotes] = STATE(4596), - [sym_val_list] = STATE(4558), - [sym__spread_list] = STATE(4700), - [sym_list_body] = STATE(5036), - [sym_val_entry] = STATE(4576), - [sym_val_record] = STATE(4604), - [sym__table_head] = STATE(3730), - [sym_val_table] = STATE(4419), - [sym_val_closure] = STATE(4604), - [sym__unquoted_in_list] = STATE(3837), - [sym__unquoted_in_list_with_expr] = STATE(4730), - [sym__unquoted_anonymous_prefix] = STATE(4544), + [sym_val_list] = STATE(4555), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(5258), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym__table_head] = STATE(3675), + [sym_val_table] = STATE(4412), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(3883), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), [sym_comment] = STATE(320), - [aux_sym__types_body_repeat1] = STATE(369), - [aux_sym_parameter_repeat2] = STATE(3945), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1423), - [aux_sym_list_body_repeat1] = STATE(548), + [aux_sym__types_body_repeat1] = STATE(371), + [aux_sym_parameter_repeat2] = STATE(3979), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1412), + [aux_sym_list_body_repeat1] = STATE(546), [anon_sym_true] = ACTIONS(1374), [anon_sym_false] = ACTIONS(1374), [anon_sym_null] = ACTIONS(1376), @@ -72584,53 +72619,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1426), }, [STATE(321)] = { - [aux_sym__repeat_newline] = STATE(4123), - [sym__match_pattern_expression] = STATE(4388), - [sym__match_pattern_value] = STATE(4618), - [sym__match_pattern_list_body] = STATE(4640), - [sym__match_pattern_list] = STATE(4619), - [sym__match_pattern_rest] = STATE(5232), - [sym__match_pattern_record] = STATE(4622), - [sym_expr_parenthesized] = STATE(3830), - [sym__spread_parenthesized] = STATE(4700), - [sym_val_range] = STATE(4418), - [sym__val_range] = STATE(4544), - [sym__value] = STATE(4730), - [sym_val_nothing] = STATE(4419), - [sym_val_bool] = STATE(4086), - [sym__spread_variable] = STATE(4795), - [sym_val_variable] = STATE(3834), - [sym_val_cellpath] = STATE(4604), - [sym_val_number] = STATE(4419), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(4361), - [sym_val_duration] = STATE(4419), - [sym_val_filesize] = STATE(4419), - [sym_val_binary] = STATE(4419), - [sym_val_string] = STATE(4419), - [sym__raw_str] = STATE(3638), - [sym__str_double_quotes] = STATE(3638), - [sym__str_single_quotes] = STATE(3638), - [sym__str_back_ticks] = STATE(3638), - [sym_val_interpolated] = STATE(4604), - [sym__inter_single_quotes] = STATE(4595), + [aux_sym__repeat_newline] = STATE(4124), + [sym__match_pattern_expression] = STATE(4389), + [sym__match_pattern_value] = STATE(4609), + [sym__match_pattern_list_body] = STATE(4642), + [sym__match_pattern_list] = STATE(4610), + [sym__match_pattern_rest] = STATE(5226), + [sym__match_pattern_record] = STATE(4611), + [sym_expr_parenthesized] = STATE(3878), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4411), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4412), + [sym_val_bool] = STATE(3969), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3882), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4412), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4412), + [sym_val_filesize] = STATE(4412), + [sym_val_binary] = STATE(4412), + [sym_val_string] = STATE(4412), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), [sym__inter_double_quotes] = STATE(4596), - [sym_val_list] = STATE(4558), - [sym__spread_list] = STATE(4700), - [sym_list_body] = STATE(4876), - [sym_val_entry] = STATE(4576), - [sym_val_record] = STATE(4604), - [sym__table_head] = STATE(3730), - [sym_val_table] = STATE(4419), - [sym_val_closure] = STATE(4604), - [sym__unquoted_in_list] = STATE(3837), - [sym__unquoted_in_list_with_expr] = STATE(4730), - [sym__unquoted_anonymous_prefix] = STATE(4544), + [sym_val_list] = STATE(4555), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(4869), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym__table_head] = STATE(3675), + [sym_val_table] = STATE(4412), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(3883), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), [sym_comment] = STATE(321), - [aux_sym__types_body_repeat1] = STATE(369), - [aux_sym_parameter_repeat2] = STATE(3945), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1423), - [aux_sym_list_body_repeat1] = STATE(548), + [aux_sym__types_body_repeat1] = STATE(371), + [aux_sym_parameter_repeat2] = STATE(3979), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1412), + [aux_sym_list_body_repeat1] = STATE(546), [anon_sym_true] = ACTIONS(1374), [anon_sym_false] = ACTIONS(1374), [anon_sym_null] = ACTIONS(1376), @@ -72671,53 +72706,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1426), }, [STATE(322)] = { - [aux_sym__repeat_newline] = STATE(4123), - [sym__match_pattern_expression] = STATE(4388), - [sym__match_pattern_value] = STATE(4618), - [sym__match_pattern_list_body] = STATE(4640), - [sym__match_pattern_list] = STATE(4619), - [sym__match_pattern_rest] = STATE(5232), - [sym__match_pattern_record] = STATE(4622), - [sym_expr_parenthesized] = STATE(3830), - [sym__spread_parenthesized] = STATE(4700), - [sym_val_range] = STATE(4418), - [sym__val_range] = STATE(4544), - [sym__value] = STATE(4730), - [sym_val_nothing] = STATE(4419), - [sym_val_bool] = STATE(4086), - [sym__spread_variable] = STATE(4795), - [sym_val_variable] = STATE(3834), - [sym_val_cellpath] = STATE(4604), - [sym_val_number] = STATE(4419), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(4361), - [sym_val_duration] = STATE(4419), - [sym_val_filesize] = STATE(4419), - [sym_val_binary] = STATE(4419), - [sym_val_string] = STATE(4419), - [sym__raw_str] = STATE(3638), - [sym__str_double_quotes] = STATE(3638), - [sym__str_single_quotes] = STATE(3638), - [sym__str_back_ticks] = STATE(3638), - [sym_val_interpolated] = STATE(4604), - [sym__inter_single_quotes] = STATE(4595), + [aux_sym__repeat_newline] = STATE(4124), + [sym__match_pattern_expression] = STATE(4389), + [sym__match_pattern_value] = STATE(4609), + [sym__match_pattern_list_body] = STATE(4642), + [sym__match_pattern_list] = STATE(4610), + [sym__match_pattern_rest] = STATE(5226), + [sym__match_pattern_record] = STATE(4611), + [sym_expr_parenthesized] = STATE(3878), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4411), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4412), + [sym_val_bool] = STATE(3969), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3882), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4412), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4412), + [sym_val_filesize] = STATE(4412), + [sym_val_binary] = STATE(4412), + [sym_val_string] = STATE(4412), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), [sym__inter_double_quotes] = STATE(4596), - [sym_val_list] = STATE(4558), - [sym__spread_list] = STATE(4700), - [sym_list_body] = STATE(4844), - [sym_val_entry] = STATE(4576), - [sym_val_record] = STATE(4604), - [sym__table_head] = STATE(3730), - [sym_val_table] = STATE(4419), - [sym_val_closure] = STATE(4604), - [sym__unquoted_in_list] = STATE(3837), - [sym__unquoted_in_list_with_expr] = STATE(4730), - [sym__unquoted_anonymous_prefix] = STATE(4544), + [sym_val_list] = STATE(4555), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(5031), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym__table_head] = STATE(3675), + [sym_val_table] = STATE(4412), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(3883), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), [sym_comment] = STATE(322), - [aux_sym__types_body_repeat1] = STATE(369), - [aux_sym_parameter_repeat2] = STATE(3945), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1423), - [aux_sym_list_body_repeat1] = STATE(548), + [aux_sym__types_body_repeat1] = STATE(371), + [aux_sym_parameter_repeat2] = STATE(3979), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1412), + [aux_sym_list_body_repeat1] = STATE(546), [anon_sym_true] = ACTIONS(1374), [anon_sym_false] = ACTIONS(1374), [anon_sym_null] = ACTIONS(1376), @@ -72759,853 +72794,851 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(323)] = { [sym_comment] = STATE(323), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_SLASH] = ACTIONS(1016), - [anon_sym_mod] = ACTIONS(1014), - [anon_sym_SLASH_SLASH] = ACTIONS(1014), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_DASH] = ACTIONS(1014), - [anon_sym_bit_DASHshl] = ACTIONS(1014), - [anon_sym_bit_DASHshr] = ACTIONS(1014), - [anon_sym_EQ_TILDE] = ACTIONS(1014), - [anon_sym_BANG_TILDE] = ACTIONS(1014), - [anon_sym_like] = ACTIONS(1014), - [anon_sym_not_DASHlike] = ACTIONS(1014), - [anon_sym_bit_DASHand] = ACTIONS(1014), - [anon_sym_bit_DASHxor] = ACTIONS(1014), - [anon_sym_bit_DASHor] = ACTIONS(1014), - [anon_sym_and] = ACTIONS(1014), - [anon_sym_xor] = ACTIONS(1014), - [anon_sym_or] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1014), - [anon_sym_not_DASHin] = ACTIONS(1014), - [anon_sym_has] = ACTIONS(1014), - [anon_sym_not_DASHhas] = ACTIONS(1014), - [anon_sym_starts_DASHwith] = ACTIONS(1014), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), - [anon_sym_ends_DASHwith] = ACTIONS(1014), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), - [anon_sym_EQ_EQ] = ACTIONS(1014), - [anon_sym_BANG_EQ] = ACTIONS(1014), - [anon_sym_LT] = ACTIONS(1016), - [anon_sym_LT_EQ] = ACTIONS(1014), - [anon_sym_GT] = ACTIONS(1016), - [anon_sym_GT_EQ] = ACTIONS(1014), - [aux_sym_cmd_identifier_token6] = ACTIONS(1018), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), + [ts_builtin_sym_end] = ACTIONS(1018), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1008), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_mod] = ACTIONS(1006), + [anon_sym_SLASH_SLASH] = ACTIONS(1006), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_bit_DASHshl] = ACTIONS(1006), + [anon_sym_bit_DASHshr] = ACTIONS(1006), + [anon_sym_EQ_TILDE] = ACTIONS(1006), + [anon_sym_BANG_TILDE] = ACTIONS(1006), + [anon_sym_like] = ACTIONS(1006), + [anon_sym_not_DASHlike] = ACTIONS(1006), + [anon_sym_bit_DASHand] = ACTIONS(1006), + [anon_sym_bit_DASHxor] = ACTIONS(1006), + [anon_sym_bit_DASHor] = ACTIONS(1006), + [anon_sym_and] = ACTIONS(1006), + [anon_sym_xor] = ACTIONS(1006), + [anon_sym_or] = ACTIONS(1006), + [anon_sym_in2] = ACTIONS(1006), + [anon_sym_not_DASHin] = ACTIONS(1006), + [anon_sym_has] = ACTIONS(1006), + [anon_sym_not_DASHhas] = ACTIONS(1006), + [anon_sym_starts_DASHwith] = ACTIONS(1006), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1006), + [anon_sym_ends_DASHwith] = ACTIONS(1006), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1006), + [anon_sym_EQ_EQ] = ACTIONS(1006), + [anon_sym_BANG_EQ] = ACTIONS(1006), + [anon_sym_LT] = ACTIONS(1008), + [anon_sym_LT_EQ] = ACTIONS(1006), + [anon_sym_GT] = ACTIONS(1008), + [anon_sym_GT_EQ] = ACTIONS(1006), + [aux_sym_cmd_identifier_token6] = ACTIONS(1010), + [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_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_STAR2] = 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_has2] = ACTIONS(1002), + [anon_sym_not_DASHhas2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [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_like2] = ACTIONS(1002), + [anon_sym_not_DASHlike2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [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_POUND] = ACTIONS(103), }, [STATE(324)] = { [sym_comment] = STATE(324), - [anon_sym_in] = ACTIONS(1004), - [anon_sym_STAR_STAR] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_SLASH] = ACTIONS(1016), - [anon_sym_mod] = ACTIONS(1014), - [anon_sym_SLASH_SLASH] = ACTIONS(1014), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_DASH] = ACTIONS(1014), - [anon_sym_bit_DASHshl] = ACTIONS(1014), - [anon_sym_bit_DASHshr] = ACTIONS(1014), - [anon_sym_EQ_TILDE] = ACTIONS(1014), - [anon_sym_BANG_TILDE] = ACTIONS(1014), - [anon_sym_like] = ACTIONS(1014), - [anon_sym_not_DASHlike] = ACTIONS(1014), - [anon_sym_bit_DASHand] = ACTIONS(1014), - [anon_sym_bit_DASHxor] = ACTIONS(1014), - [anon_sym_bit_DASHor] = ACTIONS(1014), - [anon_sym_and] = ACTIONS(1014), - [anon_sym_xor] = ACTIONS(1014), - [anon_sym_or] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1014), - [anon_sym_not_DASHin] = ACTIONS(1014), - [anon_sym_has] = ACTIONS(1014), - [anon_sym_not_DASHhas] = ACTIONS(1014), - [anon_sym_starts_DASHwith] = ACTIONS(1014), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), - [anon_sym_ends_DASHwith] = ACTIONS(1014), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), - [anon_sym_EQ_EQ] = ACTIONS(1014), - [anon_sym_BANG_EQ] = ACTIONS(1014), - [anon_sym_LT] = ACTIONS(1016), - [anon_sym_LT_EQ] = ACTIONS(1014), - [anon_sym_GT] = ACTIONS(1016), - [anon_sym_GT_EQ] = ACTIONS(1014), - [aux_sym_cmd_identifier_token6] = ACTIONS(1018), - [sym__newline] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1004), - [anon_sym_err_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_GT_PIPE] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), - [anon_sym_RPAREN] = ACTIONS(1004), - [anon_sym_GT2] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_STAR2] = ACTIONS(1004), - [anon_sym_and2] = ACTIONS(1004), - [anon_sym_xor2] = ACTIONS(1004), - [anon_sym_or2] = ACTIONS(1004), - [anon_sym_not_DASHin2] = ACTIONS(1004), - [anon_sym_has2] = ACTIONS(1004), - [anon_sym_not_DASHhas2] = ACTIONS(1004), - [anon_sym_starts_DASHwith2] = ACTIONS(1004), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1004), - [anon_sym_ends_DASHwith2] = ACTIONS(1004), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1004), - [anon_sym_EQ_EQ2] = ACTIONS(1004), - [anon_sym_BANG_EQ2] = ACTIONS(1004), - [anon_sym_LT2] = ACTIONS(1004), - [anon_sym_LT_EQ2] = ACTIONS(1004), - [anon_sym_GT_EQ2] = ACTIONS(1004), - [anon_sym_EQ_TILDE2] = ACTIONS(1004), - [anon_sym_BANG_TILDE2] = ACTIONS(1004), - [anon_sym_like2] = ACTIONS(1004), - [anon_sym_not_DASHlike2] = ACTIONS(1004), - [anon_sym_STAR_STAR2] = ACTIONS(1004), - [anon_sym_PLUS_PLUS2] = ACTIONS(1004), - [anon_sym_SLASH2] = ACTIONS(1004), - [anon_sym_mod2] = ACTIONS(1004), - [anon_sym_SLASH_SLASH2] = ACTIONS(1004), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_bit_DASHshl2] = ACTIONS(1004), - [anon_sym_bit_DASHshr2] = ACTIONS(1004), - [anon_sym_bit_DASHand2] = ACTIONS(1004), - [anon_sym_bit_DASHxor2] = ACTIONS(1004), - [anon_sym_bit_DASHor2] = ACTIONS(1004), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [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(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_STAR2] = 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_has2] = ACTIONS(1002), + [anon_sym_not_DASHhas2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [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_like2] = ACTIONS(1002), + [anon_sym_not_DASHlike2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [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_POUND] = ACTIONS(103), }, [STATE(325)] = { [sym_comment] = STATE(325), - [anon_sym_in] = ACTIONS(1004), - [anon_sym_STAR_STAR] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_SLASH] = ACTIONS(1016), - [anon_sym_mod] = ACTIONS(1014), - [anon_sym_SLASH_SLASH] = ACTIONS(1014), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_DASH] = ACTIONS(1014), - [anon_sym_bit_DASHshl] = ACTIONS(1014), - [anon_sym_bit_DASHshr] = ACTIONS(1014), - [anon_sym_EQ_TILDE] = ACTIONS(1014), - [anon_sym_BANG_TILDE] = ACTIONS(1014), - [anon_sym_like] = ACTIONS(1014), - [anon_sym_not_DASHlike] = ACTIONS(1014), - [anon_sym_bit_DASHand] = ACTIONS(1014), - [anon_sym_bit_DASHxor] = ACTIONS(1014), - [anon_sym_bit_DASHor] = ACTIONS(1014), - [anon_sym_and] = ACTIONS(1014), - [anon_sym_xor] = ACTIONS(1014), - [anon_sym_or] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1014), - [anon_sym_not_DASHin] = ACTIONS(1014), - [anon_sym_has] = ACTIONS(1014), - [anon_sym_not_DASHhas] = ACTIONS(1014), - [anon_sym_starts_DASHwith] = ACTIONS(1014), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), - [anon_sym_ends_DASHwith] = ACTIONS(1014), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), - [anon_sym_EQ_EQ] = ACTIONS(1014), - [anon_sym_BANG_EQ] = ACTIONS(1014), - [anon_sym_LT] = ACTIONS(1016), - [anon_sym_LT_EQ] = ACTIONS(1014), - [anon_sym_GT] = ACTIONS(1016), - [anon_sym_GT_EQ] = ACTIONS(1014), - [aux_sym_cmd_identifier_token6] = ACTIONS(1018), - [sym__newline] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1004), - [anon_sym_err_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_GT_PIPE] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), - [anon_sym_GT2] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1004), - [anon_sym_STAR2] = ACTIONS(1004), - [anon_sym_and2] = ACTIONS(1004), - [anon_sym_xor2] = ACTIONS(1004), - [anon_sym_or2] = ACTIONS(1004), - [anon_sym_not_DASHin2] = ACTIONS(1004), - [anon_sym_has2] = ACTIONS(1004), - [anon_sym_not_DASHhas2] = ACTIONS(1004), - [anon_sym_starts_DASHwith2] = ACTIONS(1004), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1004), - [anon_sym_ends_DASHwith2] = ACTIONS(1004), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1004), - [anon_sym_EQ_EQ2] = ACTIONS(1004), - [anon_sym_BANG_EQ2] = ACTIONS(1004), - [anon_sym_LT2] = ACTIONS(1004), - [anon_sym_LT_EQ2] = ACTIONS(1004), - [anon_sym_GT_EQ2] = ACTIONS(1004), - [anon_sym_EQ_TILDE2] = ACTIONS(1004), - [anon_sym_BANG_TILDE2] = ACTIONS(1004), - [anon_sym_like2] = ACTIONS(1004), - [anon_sym_not_DASHlike2] = ACTIONS(1004), - [anon_sym_STAR_STAR2] = ACTIONS(1004), - [anon_sym_PLUS_PLUS2] = ACTIONS(1004), - [anon_sym_SLASH2] = ACTIONS(1004), - [anon_sym_mod2] = ACTIONS(1004), - [anon_sym_SLASH_SLASH2] = ACTIONS(1004), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_bit_DASHshl2] = ACTIONS(1004), - [anon_sym_bit_DASHshr2] = ACTIONS(1004), - [anon_sym_bit_DASHand2] = ACTIONS(1004), - [anon_sym_bit_DASHxor2] = ACTIONS(1004), - [anon_sym_bit_DASHor2] = ACTIONS(1004), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [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_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_STAR2] = 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_has2] = ACTIONS(1002), + [anon_sym_not_DASHhas2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [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_like2] = ACTIONS(1002), + [anon_sym_not_DASHlike2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [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_POUND] = ACTIONS(103), }, [STATE(326)] = { [sym_comment] = STATE(326), - [ts_builtin_sym_end] = ACTIONS(1012), - [anon_sym_in] = ACTIONS(1004), - [anon_sym_STAR_STAR] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(1000), - [anon_sym_SLASH] = ACTIONS(1000), - [anon_sym_mod] = ACTIONS(998), - [anon_sym_SLASH_SLASH] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_bit_DASHshl] = ACTIONS(998), - [anon_sym_bit_DASHshr] = ACTIONS(998), - [anon_sym_EQ_TILDE] = ACTIONS(998), - [anon_sym_BANG_TILDE] = ACTIONS(998), - [anon_sym_like] = ACTIONS(998), - [anon_sym_not_DASHlike] = ACTIONS(998), - [anon_sym_bit_DASHand] = ACTIONS(998), - [anon_sym_bit_DASHxor] = ACTIONS(998), - [anon_sym_bit_DASHor] = ACTIONS(998), - [anon_sym_and] = ACTIONS(998), - [anon_sym_xor] = ACTIONS(998), - [anon_sym_or] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_not_DASHin] = ACTIONS(998), - [anon_sym_has] = ACTIONS(998), - [anon_sym_not_DASHhas] = ACTIONS(998), - [anon_sym_starts_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(998), - [anon_sym_ends_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(998), - [anon_sym_EQ_EQ] = ACTIONS(998), - [anon_sym_BANG_EQ] = ACTIONS(998), - [anon_sym_LT] = ACTIONS(1000), - [anon_sym_LT_EQ] = ACTIONS(998), - [anon_sym_GT] = ACTIONS(1000), - [anon_sym_GT_EQ] = ACTIONS(998), - [aux_sym_cmd_identifier_token6] = ACTIONS(1002), - [sym__newline] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1004), - [anon_sym_err_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_GT_PIPE] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), - [anon_sym_GT2] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_STAR2] = ACTIONS(1004), - [anon_sym_and2] = ACTIONS(1004), - [anon_sym_xor2] = ACTIONS(1004), - [anon_sym_or2] = ACTIONS(1004), - [anon_sym_not_DASHin2] = ACTIONS(1004), - [anon_sym_has2] = ACTIONS(1004), - [anon_sym_not_DASHhas2] = ACTIONS(1004), - [anon_sym_starts_DASHwith2] = ACTIONS(1004), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1004), - [anon_sym_ends_DASHwith2] = ACTIONS(1004), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1004), - [anon_sym_EQ_EQ2] = ACTIONS(1004), - [anon_sym_BANG_EQ2] = ACTIONS(1004), - [anon_sym_LT2] = ACTIONS(1004), - [anon_sym_LT_EQ2] = ACTIONS(1004), - [anon_sym_GT_EQ2] = ACTIONS(1004), - [anon_sym_EQ_TILDE2] = ACTIONS(1004), - [anon_sym_BANG_TILDE2] = ACTIONS(1004), - [anon_sym_like2] = ACTIONS(1004), - [anon_sym_not_DASHlike2] = ACTIONS(1004), - [anon_sym_STAR_STAR2] = ACTIONS(1004), - [anon_sym_PLUS_PLUS2] = ACTIONS(1004), - [anon_sym_SLASH2] = ACTIONS(1004), - [anon_sym_mod2] = ACTIONS(1004), - [anon_sym_SLASH_SLASH2] = ACTIONS(1004), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_bit_DASHshl2] = ACTIONS(1004), - [anon_sym_bit_DASHshr2] = ACTIONS(1004), - [anon_sym_bit_DASHand2] = ACTIONS(1004), - [anon_sym_bit_DASHxor2] = ACTIONS(1004), - [anon_sym_bit_DASHor2] = ACTIONS(1004), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(103), }, [STATE(327)] = { [sym_comment] = STATE(327), - [ts_builtin_sym_end] = ACTIONS(994), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(998), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(1000), - [anon_sym_SLASH] = ACTIONS(1000), - [anon_sym_mod] = ACTIONS(998), - [anon_sym_SLASH_SLASH] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(998), - [anon_sym_bit_DASHshl] = ACTIONS(998), - [anon_sym_bit_DASHshr] = ACTIONS(998), - [anon_sym_EQ_TILDE] = ACTIONS(998), - [anon_sym_BANG_TILDE] = ACTIONS(998), - [anon_sym_like] = ACTIONS(998), - [anon_sym_not_DASHlike] = ACTIONS(998), - [anon_sym_bit_DASHand] = ACTIONS(998), - [anon_sym_bit_DASHxor] = ACTIONS(998), - [anon_sym_bit_DASHor] = ACTIONS(998), - [anon_sym_and] = ACTIONS(998), - [anon_sym_xor] = ACTIONS(998), - [anon_sym_or] = ACTIONS(998), - [anon_sym_in2] = ACTIONS(998), - [anon_sym_not_DASHin] = ACTIONS(998), - [anon_sym_has] = ACTIONS(998), - [anon_sym_not_DASHhas] = ACTIONS(998), - [anon_sym_starts_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(998), - [anon_sym_ends_DASHwith] = ACTIONS(998), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(998), - [anon_sym_EQ_EQ] = ACTIONS(998), - [anon_sym_BANG_EQ] = ACTIONS(998), - [anon_sym_LT] = ACTIONS(1000), - [anon_sym_LT_EQ] = ACTIONS(998), - [anon_sym_GT] = ACTIONS(1000), - [anon_sym_GT_EQ] = ACTIONS(998), - [aux_sym_cmd_identifier_token6] = ACTIONS(1002), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_RPAREN] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(103), }, [STATE(328)] = { [sym_comment] = STATE(328), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_SLASH] = ACTIONS(1016), - [anon_sym_mod] = ACTIONS(1014), - [anon_sym_SLASH_SLASH] = ACTIONS(1014), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_DASH] = ACTIONS(1014), - [anon_sym_bit_DASHshl] = ACTIONS(1014), - [anon_sym_bit_DASHshr] = ACTIONS(1014), - [anon_sym_EQ_TILDE] = ACTIONS(1014), - [anon_sym_BANG_TILDE] = ACTIONS(1014), - [anon_sym_like] = ACTIONS(1014), - [anon_sym_not_DASHlike] = ACTIONS(1014), - [anon_sym_bit_DASHand] = ACTIONS(1014), - [anon_sym_bit_DASHxor] = ACTIONS(1014), - [anon_sym_bit_DASHor] = ACTIONS(1014), - [anon_sym_and] = ACTIONS(1014), - [anon_sym_xor] = ACTIONS(1014), - [anon_sym_or] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1014), - [anon_sym_not_DASHin] = ACTIONS(1014), - [anon_sym_has] = ACTIONS(1014), - [anon_sym_not_DASHhas] = ACTIONS(1014), - [anon_sym_starts_DASHwith] = ACTIONS(1014), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), - [anon_sym_ends_DASHwith] = ACTIONS(1014), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), - [anon_sym_EQ_EQ] = ACTIONS(1014), - [anon_sym_BANG_EQ] = ACTIONS(1014), - [anon_sym_LT] = ACTIONS(1016), - [anon_sym_LT_EQ] = ACTIONS(1014), - [anon_sym_GT] = ACTIONS(1016), - [anon_sym_GT_EQ] = ACTIONS(1014), - [aux_sym_cmd_identifier_token6] = ACTIONS(1018), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_RPAREN] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_STAR] = ACTIONS(1008), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_mod] = ACTIONS(1006), + [anon_sym_SLASH_SLASH] = ACTIONS(1006), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1006), + [anon_sym_bit_DASHshl] = ACTIONS(1006), + [anon_sym_bit_DASHshr] = ACTIONS(1006), + [anon_sym_EQ_TILDE] = ACTIONS(1006), + [anon_sym_BANG_TILDE] = ACTIONS(1006), + [anon_sym_like] = ACTIONS(1006), + [anon_sym_not_DASHlike] = ACTIONS(1006), + [anon_sym_bit_DASHand] = ACTIONS(1006), + [anon_sym_bit_DASHxor] = ACTIONS(1006), + [anon_sym_bit_DASHor] = ACTIONS(1006), + [anon_sym_and] = ACTIONS(1006), + [anon_sym_xor] = ACTIONS(1006), + [anon_sym_or] = ACTIONS(1006), + [anon_sym_in2] = ACTIONS(1006), + [anon_sym_not_DASHin] = ACTIONS(1006), + [anon_sym_has] = ACTIONS(1006), + [anon_sym_not_DASHhas] = ACTIONS(1006), + [anon_sym_starts_DASHwith] = ACTIONS(1006), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1006), + [anon_sym_ends_DASHwith] = ACTIONS(1006), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(1006), + [anon_sym_EQ_EQ] = ACTIONS(1006), + [anon_sym_BANG_EQ] = ACTIONS(1006), + [anon_sym_LT] = ACTIONS(1008), + [anon_sym_LT_EQ] = ACTIONS(1006), + [anon_sym_GT] = ACTIONS(1008), + [anon_sym_GT_EQ] = ACTIONS(1006), + [aux_sym_cmd_identifier_token6] = ACTIONS(1010), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(103), }, [STATE(329)] = { [sym_comment] = STATE(329), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_SLASH] = ACTIONS(1016), - [anon_sym_mod] = ACTIONS(1014), - [anon_sym_SLASH_SLASH] = ACTIONS(1014), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_DASH] = ACTIONS(1014), - [anon_sym_bit_DASHshl] = ACTIONS(1014), - [anon_sym_bit_DASHshr] = ACTIONS(1014), - [anon_sym_EQ_TILDE] = ACTIONS(1014), - [anon_sym_BANG_TILDE] = ACTIONS(1014), - [anon_sym_like] = ACTIONS(1014), - [anon_sym_not_DASHlike] = ACTIONS(1014), - [anon_sym_bit_DASHand] = ACTIONS(1014), - [anon_sym_bit_DASHxor] = ACTIONS(1014), - [anon_sym_bit_DASHor] = ACTIONS(1014), - [anon_sym_and] = ACTIONS(1014), - [anon_sym_xor] = ACTIONS(1014), - [anon_sym_or] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1014), - [anon_sym_not_DASHin] = ACTIONS(1014), - [anon_sym_has] = ACTIONS(1014), - [anon_sym_not_DASHhas] = ACTIONS(1014), - [anon_sym_starts_DASHwith] = ACTIONS(1014), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), - [anon_sym_ends_DASHwith] = ACTIONS(1014), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), - [anon_sym_EQ_EQ] = ACTIONS(1014), - [anon_sym_BANG_EQ] = ACTIONS(1014), - [anon_sym_LT] = ACTIONS(1016), - [anon_sym_LT_EQ] = ACTIONS(1014), - [anon_sym_GT] = ACTIONS(1016), - [anon_sym_GT_EQ] = ACTIONS(1014), - [aux_sym_cmd_identifier_token6] = ACTIONS(1018), - [sym__newline] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(103), }, [STATE(330)] = { [sym_comment] = STATE(330), - [anon_sym_in] = ACTIONS(1004), - [anon_sym_STAR_STAR] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_SLASH] = ACTIONS(1016), - [anon_sym_mod] = ACTIONS(1014), - [anon_sym_SLASH_SLASH] = ACTIONS(1014), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_DASH] = ACTIONS(1014), - [anon_sym_bit_DASHshl] = ACTIONS(1014), - [anon_sym_bit_DASHshr] = ACTIONS(1014), - [anon_sym_EQ_TILDE] = ACTIONS(1014), - [anon_sym_BANG_TILDE] = ACTIONS(1014), - [anon_sym_like] = ACTIONS(1014), - [anon_sym_not_DASHlike] = ACTIONS(1014), - [anon_sym_bit_DASHand] = ACTIONS(1014), - [anon_sym_bit_DASHxor] = ACTIONS(1014), - [anon_sym_bit_DASHor] = ACTIONS(1014), - [anon_sym_and] = ACTIONS(1014), - [anon_sym_xor] = ACTIONS(1014), - [anon_sym_or] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1014), - [anon_sym_not_DASHin] = ACTIONS(1014), - [anon_sym_has] = ACTIONS(1014), - [anon_sym_not_DASHhas] = ACTIONS(1014), - [anon_sym_starts_DASHwith] = ACTIONS(1014), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), - [anon_sym_ends_DASHwith] = ACTIONS(1014), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), - [anon_sym_EQ_EQ] = ACTIONS(1014), - [anon_sym_BANG_EQ] = ACTIONS(1014), - [anon_sym_LT] = ACTIONS(1016), - [anon_sym_LT_EQ] = ACTIONS(1014), - [anon_sym_GT] = ACTIONS(1016), - [anon_sym_GT_EQ] = ACTIONS(1014), - [aux_sym_cmd_identifier_token6] = ACTIONS(1018), - [sym__newline] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1004), - [anon_sym_err_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_GT_PIPE] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), - [anon_sym_GT2] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_STAR2] = ACTIONS(1004), - [anon_sym_and2] = ACTIONS(1004), - [anon_sym_xor2] = ACTIONS(1004), - [anon_sym_or2] = ACTIONS(1004), - [anon_sym_not_DASHin2] = ACTIONS(1004), - [anon_sym_has2] = ACTIONS(1004), - [anon_sym_not_DASHhas2] = ACTIONS(1004), - [anon_sym_starts_DASHwith2] = ACTIONS(1004), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1004), - [anon_sym_ends_DASHwith2] = ACTIONS(1004), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1004), - [anon_sym_EQ_EQ2] = ACTIONS(1004), - [anon_sym_BANG_EQ2] = ACTIONS(1004), - [anon_sym_LT2] = ACTIONS(1004), - [anon_sym_LT_EQ2] = ACTIONS(1004), - [anon_sym_GT_EQ2] = ACTIONS(1004), - [anon_sym_EQ_TILDE2] = ACTIONS(1004), - [anon_sym_BANG_TILDE2] = ACTIONS(1004), - [anon_sym_like2] = ACTIONS(1004), - [anon_sym_not_DASHlike2] = ACTIONS(1004), - [anon_sym_STAR_STAR2] = ACTIONS(1004), - [anon_sym_PLUS_PLUS2] = ACTIONS(1004), - [anon_sym_SLASH2] = ACTIONS(1004), - [anon_sym_mod2] = ACTIONS(1004), - [anon_sym_SLASH_SLASH2] = ACTIONS(1004), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_bit_DASHshl2] = ACTIONS(1004), - [anon_sym_bit_DASHshr2] = ACTIONS(1004), - [anon_sym_bit_DASHand2] = ACTIONS(1004), - [anon_sym_bit_DASHxor2] = ACTIONS(1004), - [anon_sym_bit_DASHor2] = ACTIONS(1004), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [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_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_STAR2] = 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_has2] = ACTIONS(1002), + [anon_sym_not_DASHhas2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [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_like2] = ACTIONS(1002), + [anon_sym_not_DASHlike2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [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_POUND] = ACTIONS(103), }, [STATE(331)] = { [sym_comment] = STATE(331), - [anon_sym_in] = ACTIONS(1004), - [anon_sym_STAR_STAR] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_SLASH] = ACTIONS(1016), - [anon_sym_mod] = ACTIONS(1014), - [anon_sym_SLASH_SLASH] = ACTIONS(1014), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_DASH] = ACTIONS(1014), - [anon_sym_bit_DASHshl] = ACTIONS(1014), - [anon_sym_bit_DASHshr] = ACTIONS(1014), - [anon_sym_EQ_TILDE] = ACTIONS(1014), - [anon_sym_BANG_TILDE] = ACTIONS(1014), - [anon_sym_like] = ACTIONS(1014), - [anon_sym_not_DASHlike] = ACTIONS(1014), - [anon_sym_bit_DASHand] = ACTIONS(1014), - [anon_sym_bit_DASHxor] = ACTIONS(1014), - [anon_sym_bit_DASHor] = ACTIONS(1014), - [anon_sym_and] = ACTIONS(1014), - [anon_sym_xor] = ACTIONS(1014), - [anon_sym_or] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1014), - [anon_sym_not_DASHin] = ACTIONS(1014), - [anon_sym_has] = ACTIONS(1014), - [anon_sym_not_DASHhas] = ACTIONS(1014), - [anon_sym_starts_DASHwith] = ACTIONS(1014), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), - [anon_sym_ends_DASHwith] = ACTIONS(1014), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), - [anon_sym_EQ_EQ] = ACTIONS(1014), - [anon_sym_BANG_EQ] = ACTIONS(1014), - [anon_sym_LT] = ACTIONS(1016), - [anon_sym_LT_EQ] = ACTIONS(1014), - [anon_sym_GT] = ACTIONS(1016), - [anon_sym_GT_EQ] = ACTIONS(1014), - [aux_sym_cmd_identifier_token6] = ACTIONS(1018), - [sym__newline] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1004), - [anon_sym_err_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_GT_PIPE] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), - [anon_sym_GT2] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_STAR2] = ACTIONS(1004), - [anon_sym_and2] = ACTIONS(1004), - [anon_sym_xor2] = ACTIONS(1004), - [anon_sym_or2] = ACTIONS(1004), - [anon_sym_not_DASHin2] = ACTIONS(1004), - [anon_sym_has2] = ACTIONS(1004), - [anon_sym_not_DASHhas2] = ACTIONS(1004), - [anon_sym_starts_DASHwith2] = ACTIONS(1004), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1004), - [anon_sym_ends_DASHwith2] = ACTIONS(1004), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1004), - [anon_sym_EQ_EQ2] = ACTIONS(1004), - [anon_sym_BANG_EQ2] = ACTIONS(1004), - [anon_sym_LT2] = ACTIONS(1004), - [anon_sym_LT_EQ2] = ACTIONS(1004), - [anon_sym_GT_EQ2] = ACTIONS(1004), - [anon_sym_EQ_TILDE2] = ACTIONS(1004), - [anon_sym_BANG_TILDE2] = ACTIONS(1004), - [anon_sym_like2] = ACTIONS(1004), - [anon_sym_not_DASHlike2] = ACTIONS(1004), - [anon_sym_STAR_STAR2] = ACTIONS(1004), - [anon_sym_PLUS_PLUS2] = ACTIONS(1004), - [anon_sym_SLASH2] = ACTIONS(1004), - [anon_sym_mod2] = ACTIONS(1004), - [anon_sym_SLASH_SLASH2] = ACTIONS(1004), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_bit_DASHshl2] = ACTIONS(1004), - [anon_sym_bit_DASHshr2] = ACTIONS(1004), - [anon_sym_bit_DASHand2] = ACTIONS(1004), - [anon_sym_bit_DASHxor2] = ACTIONS(1004), - [anon_sym_bit_DASHor2] = ACTIONS(1004), + [anon_sym_in] = ACTIONS(994), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(994), + [anon_sym_err_GT_PIPE] = ACTIONS(994), + [anon_sym_out_GT_PIPE] = ACTIONS(994), + [anon_sym_e_GT_PIPE] = ACTIONS(994), + [anon_sym_o_GT_PIPE] = ACTIONS(994), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(994), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(994), + [anon_sym_xor2] = ACTIONS(994), + [anon_sym_or2] = ACTIONS(994), + [anon_sym_not_DASHin2] = ACTIONS(994), + [anon_sym_has2] = ACTIONS(994), + [anon_sym_not_DASHhas2] = ACTIONS(994), + [anon_sym_starts_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), + [anon_sym_ends_DASHwith2] = ACTIONS(994), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), + [anon_sym_EQ_EQ2] = ACTIONS(994), + [anon_sym_BANG_EQ2] = ACTIONS(994), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(994), + [anon_sym_GT_EQ2] = ACTIONS(994), + [anon_sym_EQ_TILDE2] = ACTIONS(994), + [anon_sym_BANG_TILDE2] = ACTIONS(994), + [anon_sym_like2] = ACTIONS(994), + [anon_sym_not_DASHlike2] = ACTIONS(994), + [anon_sym_STAR_STAR2] = ACTIONS(994), + [anon_sym_PLUS_PLUS2] = ACTIONS(994), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(994), + [anon_sym_SLASH_SLASH2] = ACTIONS(994), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(994), + [anon_sym_bit_DASHshr2] = ACTIONS(994), + [anon_sym_bit_DASHand2] = ACTIONS(994), + [anon_sym_bit_DASHxor2] = ACTIONS(994), + [anon_sym_bit_DASHor2] = ACTIONS(994), [anon_sym_POUND] = ACTIONS(103), }, [STATE(332)] = { [sym_comment] = STATE(332), - [anon_sym_in] = ACTIONS(996), - [anon_sym_STAR_STAR] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1014), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_SLASH] = ACTIONS(1016), - [anon_sym_mod] = ACTIONS(1014), - [anon_sym_SLASH_SLASH] = ACTIONS(1014), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_DASH] = ACTIONS(1014), - [anon_sym_bit_DASHshl] = ACTIONS(1014), - [anon_sym_bit_DASHshr] = ACTIONS(1014), - [anon_sym_EQ_TILDE] = ACTIONS(1014), - [anon_sym_BANG_TILDE] = ACTIONS(1014), - [anon_sym_like] = ACTIONS(1014), - [anon_sym_not_DASHlike] = ACTIONS(1014), - [anon_sym_bit_DASHand] = ACTIONS(1014), - [anon_sym_bit_DASHxor] = ACTIONS(1014), - [anon_sym_bit_DASHor] = ACTIONS(1014), - [anon_sym_and] = ACTIONS(1014), - [anon_sym_xor] = ACTIONS(1014), - [anon_sym_or] = ACTIONS(1014), - [anon_sym_in2] = ACTIONS(1014), - [anon_sym_not_DASHin] = ACTIONS(1014), - [anon_sym_has] = ACTIONS(1014), - [anon_sym_not_DASHhas] = ACTIONS(1014), - [anon_sym_starts_DASHwith] = ACTIONS(1014), - [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(1014), - [anon_sym_ends_DASHwith] = ACTIONS(1014), - [anon_sym_not_DASHends_DASHwith] = ACTIONS(1014), - [anon_sym_EQ_EQ] = ACTIONS(1014), - [anon_sym_BANG_EQ] = ACTIONS(1014), - [anon_sym_LT] = ACTIONS(1016), - [anon_sym_LT_EQ] = ACTIONS(1014), - [anon_sym_GT] = ACTIONS(1016), - [anon_sym_GT_EQ] = ACTIONS(1014), - [aux_sym_cmd_identifier_token6] = ACTIONS(1018), - [sym__newline] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_err_GT_PIPE] = ACTIONS(996), - [anon_sym_out_GT_PIPE] = ACTIONS(996), - [anon_sym_e_GT_PIPE] = ACTIONS(996), - [anon_sym_o_GT_PIPE] = ACTIONS(996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(996), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(996), - [anon_sym_xor2] = ACTIONS(996), - [anon_sym_or2] = ACTIONS(996), - [anon_sym_not_DASHin2] = ACTIONS(996), - [anon_sym_has2] = ACTIONS(996), - [anon_sym_not_DASHhas2] = ACTIONS(996), - [anon_sym_starts_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(996), - [anon_sym_ends_DASHwith2] = ACTIONS(996), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(996), - [anon_sym_EQ_EQ2] = ACTIONS(996), - [anon_sym_BANG_EQ2] = ACTIONS(996), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(996), - [anon_sym_GT_EQ2] = ACTIONS(996), - [anon_sym_EQ_TILDE2] = ACTIONS(996), - [anon_sym_BANG_TILDE2] = ACTIONS(996), - [anon_sym_like2] = ACTIONS(996), - [anon_sym_not_DASHlike2] = ACTIONS(996), - [anon_sym_STAR_STAR2] = ACTIONS(996), - [anon_sym_PLUS_PLUS2] = ACTIONS(996), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(996), - [anon_sym_SLASH_SLASH2] = ACTIONS(996), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(996), - [anon_sym_bit_DASHshr2] = ACTIONS(996), - [anon_sym_bit_DASHand2] = ACTIONS(996), - [anon_sym_bit_DASHxor2] = ACTIONS(996), - [anon_sym_bit_DASHor2] = ACTIONS(996), + [anon_sym_in] = ACTIONS(1002), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_SLASH] = ACTIONS(998), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(998), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_bit_DASHshl] = ACTIONS(996), + [anon_sym_bit_DASHshr] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_BANG_TILDE] = ACTIONS(996), + [anon_sym_like] = ACTIONS(996), + [anon_sym_not_DASHlike] = ACTIONS(996), + [anon_sym_bit_DASHand] = ACTIONS(996), + [anon_sym_bit_DASHxor] = ACTIONS(996), + [anon_sym_bit_DASHor] = ACTIONS(996), + [anon_sym_and] = ACTIONS(996), + [anon_sym_xor] = ACTIONS(996), + [anon_sym_or] = ACTIONS(996), + [anon_sym_in2] = ACTIONS(996), + [anon_sym_not_DASHin] = ACTIONS(996), + [anon_sym_has] = ACTIONS(996), + [anon_sym_not_DASHhas] = ACTIONS(996), + [anon_sym_starts_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHstarts_DASHwith] = ACTIONS(996), + [anon_sym_ends_DASHwith] = ACTIONS(996), + [anon_sym_not_DASHends_DASHwith] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(996), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [sym__newline] = 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(1002), + [anon_sym_DASH2] = ACTIONS(1002), + [anon_sym_STAR2] = 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_has2] = ACTIONS(1002), + [anon_sym_not_DASHhas2] = ACTIONS(1002), + [anon_sym_starts_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1002), + [anon_sym_ends_DASHwith2] = ACTIONS(1002), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1002), + [anon_sym_EQ_EQ2] = ACTIONS(1002), + [anon_sym_BANG_EQ2] = ACTIONS(1002), + [anon_sym_LT2] = ACTIONS(1002), + [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_like2] = ACTIONS(1002), + [anon_sym_not_DASHlike2] = ACTIONS(1002), + [anon_sym_STAR_STAR2] = ACTIONS(1002), + [anon_sym_PLUS_PLUS2] = ACTIONS(1002), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1002), + [anon_sym_SLASH_SLASH2] = ACTIONS(1002), + [anon_sym_PLUS2] = ACTIONS(1002), + [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_POUND] = ACTIONS(103), }, [STATE(333)] = { - [sym_cell_path] = STATE(407), - [sym_path] = STATE(394), + [sym__path_suffix] = STATE(377), [sym_comment] = STATE(333), - [aux_sym__where_predicate_lhs_repeat1] = STATE(340), [anon_sym_EQ] = ACTIONS(1432), [anon_sym_PLUS_EQ] = ACTIONS(1434), [anon_sym_DASH_EQ] = ACTIONS(1434), @@ -73663,7 +73696,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ2] = ACTIONS(1434), [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), [anon_sym_COLON2] = ACTIONS(1434), - [anon_sym_DOT2] = ACTIONS(1436), + [anon_sym_QMARK2] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_DOT2] = ACTIONS(1432), [anon_sym_err_GT] = ACTIONS(1432), [anon_sym_out_GT] = ACTIONS(1432), [anon_sym_e_GT] = ACTIONS(1432), @@ -73685,251 +73720,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(334)] = { [sym__path_suffix] = STATE(352), [sym_comment] = STATE(334), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_PLUS_EQ] = ACTIONS(1438), - [anon_sym_DASH_EQ] = ACTIONS(1438), - [anon_sym_STAR_EQ] = ACTIONS(1438), - [anon_sym_SLASH_EQ] = ACTIONS(1438), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1438), - [anon_sym_in] = ACTIONS(1438), - [sym__newline] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_PIPE] = ACTIONS(1438), - [anon_sym_err_GT_PIPE] = ACTIONS(1438), - [anon_sym_out_GT_PIPE] = ACTIONS(1438), - [anon_sym_e_GT_PIPE] = ACTIONS(1438), - [anon_sym_o_GT_PIPE] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1438), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1438), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1438), - [anon_sym_xor2] = ACTIONS(1438), - [anon_sym_or2] = ACTIONS(1438), - [anon_sym_not_DASHin2] = ACTIONS(1438), - [anon_sym_has2] = ACTIONS(1438), - [anon_sym_not_DASHhas2] = ACTIONS(1438), - [anon_sym_starts_DASHwith2] = ACTIONS(1438), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1438), - [anon_sym_ends_DASHwith2] = ACTIONS(1438), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1438), - [anon_sym_EQ_EQ2] = ACTIONS(1438), - [anon_sym_BANG_EQ2] = ACTIONS(1438), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1438), - [anon_sym_GT_EQ2] = ACTIONS(1438), - [anon_sym_EQ_TILDE2] = ACTIONS(1438), - [anon_sym_BANG_TILDE2] = ACTIONS(1438), - [anon_sym_like2] = ACTIONS(1438), - [anon_sym_not_DASHlike2] = ACTIONS(1438), - [anon_sym_STAR_STAR2] = ACTIONS(1438), - [anon_sym_PLUS_PLUS2] = ACTIONS(1438), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1438), - [anon_sym_SLASH_SLASH2] = ACTIONS(1438), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1438), - [anon_sym_bit_DASHshr2] = ACTIONS(1438), - [anon_sym_bit_DASHand2] = ACTIONS(1438), - [anon_sym_bit_DASHxor2] = ACTIONS(1438), - [anon_sym_bit_DASHor2] = ACTIONS(1438), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [sym__entry_separator] = ACTIONS(1440), - [anon_sym_COLON2] = ACTIONS(1438), - [anon_sym_QMARK2] = ACTIONS(1442), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1438), - [anon_sym_out_GT_GT] = ACTIONS(1438), - [anon_sym_e_GT_GT] = ACTIONS(1438), - [anon_sym_o_GT_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1438), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(335)] = { - [sym_comment] = STATE(335), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_PLUS_EQ] = ACTIONS(1446), - [anon_sym_DASH_EQ] = ACTIONS(1446), - [anon_sym_STAR_EQ] = ACTIONS(1446), - [anon_sym_SLASH_EQ] = ACTIONS(1446), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1446), - [anon_sym_in] = ACTIONS(1446), - [sym__newline] = ACTIONS(1446), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym_PIPE] = ACTIONS(1446), - [anon_sym_err_GT_PIPE] = ACTIONS(1446), - [anon_sym_out_GT_PIPE] = ACTIONS(1446), - [anon_sym_e_GT_PIPE] = ACTIONS(1446), - [anon_sym_o_GT_PIPE] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1446), - [anon_sym_RBRACK] = ACTIONS(1446), - [anon_sym_GT2] = ACTIONS(1446), - [anon_sym_DASH2] = ACTIONS(1446), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_DOT_DOT] = ACTIONS(1446), - [anon_sym_STAR2] = ACTIONS(1446), - [anon_sym_and2] = ACTIONS(1446), - [anon_sym_xor2] = ACTIONS(1446), - [anon_sym_or2] = ACTIONS(1446), - [anon_sym_not_DASHin2] = ACTIONS(1446), - [anon_sym_has2] = ACTIONS(1446), - [anon_sym_not_DASHhas2] = ACTIONS(1446), - [anon_sym_starts_DASHwith2] = ACTIONS(1446), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1446), - [anon_sym_ends_DASHwith2] = ACTIONS(1446), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1446), - [anon_sym_EQ_EQ2] = ACTIONS(1446), - [anon_sym_BANG_EQ2] = ACTIONS(1446), - [anon_sym_LT2] = ACTIONS(1446), - [anon_sym_LT_EQ2] = ACTIONS(1446), - [anon_sym_GT_EQ2] = ACTIONS(1446), - [anon_sym_EQ_TILDE2] = ACTIONS(1446), - [anon_sym_BANG_TILDE2] = ACTIONS(1446), - [anon_sym_like2] = ACTIONS(1446), - [anon_sym_not_DASHlike2] = ACTIONS(1446), - [anon_sym_STAR_STAR2] = ACTIONS(1446), - [anon_sym_PLUS_PLUS2] = ACTIONS(1446), - [anon_sym_SLASH2] = ACTIONS(1446), - [anon_sym_mod2] = ACTIONS(1446), - [anon_sym_SLASH_SLASH2] = ACTIONS(1446), - [anon_sym_PLUS2] = ACTIONS(1446), - [anon_sym_bit_DASHshl2] = ACTIONS(1446), - [anon_sym_bit_DASHshr2] = ACTIONS(1446), - [anon_sym_bit_DASHand2] = ACTIONS(1446), - [anon_sym_bit_DASHxor2] = ACTIONS(1446), - [anon_sym_bit_DASHor2] = ACTIONS(1446), - [anon_sym_DOT_DOT2] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), - [sym__entry_separator] = ACTIONS(1448), - [anon_sym_COLON2] = ACTIONS(1446), - [anon_sym_QMARK2] = ACTIONS(1450), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1446), - [anon_sym_out_GT] = ACTIONS(1446), - [anon_sym_e_GT] = ACTIONS(1446), - [anon_sym_o_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT] = ACTIONS(1446), - [anon_sym_err_GT_GT] = ACTIONS(1446), - [anon_sym_out_GT_GT] = ACTIONS(1446), - [anon_sym_e_GT_GT] = ACTIONS(1446), - [anon_sym_o_GT_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1446), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(336)] = { - [sym__path_suffix] = STATE(378), - [sym_comment] = STATE(336), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_PLUS_EQ] = ACTIONS(1440), - [anon_sym_DASH_EQ] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1440), - [anon_sym_SLASH_EQ] = ACTIONS(1440), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1438), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_COLON2] = ACTIONS(1440), - [anon_sym_QMARK2] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(337)] = { - [sym_cell_path] = STATE(374), - [sym_path] = STATE(367), - [sym_comment] = STATE(337), - [aux_sym__where_predicate_lhs_repeat1] = STATE(365), [anon_sym_EQ] = ACTIONS(1432), [anon_sym_PLUS_EQ] = ACTIONS(1432), [anon_sym_DASH_EQ] = ACTIONS(1432), @@ -73987,7 +73777,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), [sym__entry_separator] = ACTIONS(1434), [anon_sym_COLON2] = ACTIONS(1432), - [anon_sym_DOT2] = ACTIONS(1456), + [anon_sym_QMARK2] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_DOT2] = ACTIONS(1432), [anon_sym_err_GT] = ACTIONS(1432), [anon_sym_out_GT] = ACTIONS(1432), [anon_sym_e_GT] = ACTIONS(1432), @@ -74006,6 +73798,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1432), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(335)] = { + [sym_cell_path] = STATE(400), + [sym_path] = STATE(396), + [sym_comment] = STATE(335), + [aux_sym__where_predicate_lhs_repeat1] = STATE(341), + [anon_sym_EQ] = ACTIONS(1444), + [anon_sym_PLUS_EQ] = ACTIONS(1446), + [anon_sym_DASH_EQ] = ACTIONS(1446), + [anon_sym_STAR_EQ] = ACTIONS(1446), + [anon_sym_SLASH_EQ] = ACTIONS(1446), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1446), + [anon_sym_in] = ACTIONS(1446), + [sym__newline] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym_PIPE] = ACTIONS(1446), + [anon_sym_err_GT_PIPE] = ACTIONS(1446), + [anon_sym_out_GT_PIPE] = ACTIONS(1446), + [anon_sym_e_GT_PIPE] = ACTIONS(1446), + [anon_sym_o_GT_PIPE] = ACTIONS(1446), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1446), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1446), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1446), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1446), + [anon_sym_RPAREN] = ACTIONS(1446), + [anon_sym_GT2] = ACTIONS(1444), + [anon_sym_DASH2] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_STAR2] = ACTIONS(1444), + [anon_sym_and2] = ACTIONS(1446), + [anon_sym_xor2] = ACTIONS(1446), + [anon_sym_or2] = ACTIONS(1446), + [anon_sym_not_DASHin2] = ACTIONS(1446), + [anon_sym_has2] = ACTIONS(1446), + [anon_sym_not_DASHhas2] = ACTIONS(1446), + [anon_sym_starts_DASHwith2] = ACTIONS(1446), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1446), + [anon_sym_ends_DASHwith2] = ACTIONS(1446), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1446), + [anon_sym_EQ_EQ2] = ACTIONS(1446), + [anon_sym_BANG_EQ2] = ACTIONS(1446), + [anon_sym_LT2] = ACTIONS(1444), + [anon_sym_LT_EQ2] = ACTIONS(1446), + [anon_sym_GT_EQ2] = ACTIONS(1446), + [anon_sym_EQ_TILDE2] = ACTIONS(1446), + [anon_sym_BANG_TILDE2] = ACTIONS(1446), + [anon_sym_like2] = ACTIONS(1446), + [anon_sym_not_DASHlike2] = ACTIONS(1446), + [anon_sym_STAR_STAR2] = ACTIONS(1446), + [anon_sym_PLUS_PLUS2] = ACTIONS(1444), + [anon_sym_SLASH2] = ACTIONS(1444), + [anon_sym_mod2] = ACTIONS(1446), + [anon_sym_SLASH_SLASH2] = ACTIONS(1446), + [anon_sym_PLUS2] = ACTIONS(1444), + [anon_sym_bit_DASHshl2] = ACTIONS(1446), + [anon_sym_bit_DASHshr2] = ACTIONS(1446), + [anon_sym_bit_DASHand2] = ACTIONS(1446), + [anon_sym_bit_DASHxor2] = ACTIONS(1446), + [anon_sym_bit_DASHor2] = ACTIONS(1446), + [anon_sym_DOT_DOT2] = ACTIONS(1444), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1446), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1446), + [anon_sym_COLON2] = ACTIONS(1446), + [anon_sym_DOT2] = ACTIONS(1448), + [anon_sym_err_GT] = ACTIONS(1444), + [anon_sym_out_GT] = ACTIONS(1444), + [anon_sym_e_GT] = ACTIONS(1444), + [anon_sym_o_GT] = ACTIONS(1444), + [anon_sym_err_PLUSout_GT] = ACTIONS(1444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1444), + [anon_sym_o_PLUSe_GT] = ACTIONS(1444), + [anon_sym_e_PLUSo_GT] = ACTIONS(1444), + [anon_sym_err_GT_GT] = ACTIONS(1446), + [anon_sym_out_GT_GT] = ACTIONS(1446), + [anon_sym_e_GT_GT] = ACTIONS(1446), + [anon_sym_o_GT_GT] = ACTIONS(1446), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1446), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1446), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1446), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1446), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(336)] = { + [sym_comment] = STATE(336), + [anon_sym_EQ] = ACTIONS(1450), + [anon_sym_PLUS_EQ] = ACTIONS(1450), + [anon_sym_DASH_EQ] = ACTIONS(1450), + [anon_sym_STAR_EQ] = ACTIONS(1450), + [anon_sym_SLASH_EQ] = ACTIONS(1450), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1450), + [anon_sym_in] = ACTIONS(1450), + [sym__newline] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_err_GT_PIPE] = ACTIONS(1450), + [anon_sym_out_GT_PIPE] = ACTIONS(1450), + [anon_sym_e_GT_PIPE] = ACTIONS(1450), + [anon_sym_o_GT_PIPE] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1450), + [anon_sym_RBRACK] = ACTIONS(1450), + [anon_sym_GT2] = ACTIONS(1450), + [anon_sym_DASH2] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1450), + [anon_sym_DOT_DOT] = ACTIONS(1450), + [anon_sym_STAR2] = ACTIONS(1450), + [anon_sym_and2] = ACTIONS(1450), + [anon_sym_xor2] = ACTIONS(1450), + [anon_sym_or2] = ACTIONS(1450), + [anon_sym_not_DASHin2] = ACTIONS(1450), + [anon_sym_has2] = ACTIONS(1450), + [anon_sym_not_DASHhas2] = ACTIONS(1450), + [anon_sym_starts_DASHwith2] = ACTIONS(1450), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1450), + [anon_sym_ends_DASHwith2] = ACTIONS(1450), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1450), + [anon_sym_EQ_EQ2] = ACTIONS(1450), + [anon_sym_BANG_EQ2] = ACTIONS(1450), + [anon_sym_LT2] = ACTIONS(1450), + [anon_sym_LT_EQ2] = ACTIONS(1450), + [anon_sym_GT_EQ2] = ACTIONS(1450), + [anon_sym_EQ_TILDE2] = ACTIONS(1450), + [anon_sym_BANG_TILDE2] = ACTIONS(1450), + [anon_sym_like2] = ACTIONS(1450), + [anon_sym_not_DASHlike2] = ACTIONS(1450), + [anon_sym_STAR_STAR2] = ACTIONS(1450), + [anon_sym_PLUS_PLUS2] = ACTIONS(1450), + [anon_sym_SLASH2] = ACTIONS(1450), + [anon_sym_mod2] = ACTIONS(1450), + [anon_sym_SLASH_SLASH2] = ACTIONS(1450), + [anon_sym_PLUS2] = ACTIONS(1450), + [anon_sym_bit_DASHshl2] = ACTIONS(1450), + [anon_sym_bit_DASHshr2] = ACTIONS(1450), + [anon_sym_bit_DASHand2] = ACTIONS(1450), + [anon_sym_bit_DASHxor2] = ACTIONS(1450), + [anon_sym_bit_DASHor2] = ACTIONS(1450), + [anon_sym_DOT_DOT2] = ACTIONS(1450), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1452), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1452), + [sym__entry_separator] = ACTIONS(1452), + [anon_sym_COLON2] = ACTIONS(1450), + [anon_sym_QMARK2] = ACTIONS(1454), + [anon_sym_DOT2] = ACTIONS(1450), + [anon_sym_err_GT] = ACTIONS(1450), + [anon_sym_out_GT] = ACTIONS(1450), + [anon_sym_e_GT] = ACTIONS(1450), + [anon_sym_o_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT] = ACTIONS(1450), + [anon_sym_err_GT_GT] = ACTIONS(1450), + [anon_sym_out_GT_GT] = ACTIONS(1450), + [anon_sym_e_GT_GT] = ACTIONS(1450), + [anon_sym_o_GT_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1450), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(337)] = { + [sym_cell_path] = STATE(374), + [sym_path] = STATE(346), + [sym_comment] = STATE(337), + [aux_sym__where_predicate_lhs_repeat1] = STATE(365), + [anon_sym_EQ] = ACTIONS(1444), + [anon_sym_PLUS_EQ] = ACTIONS(1444), + [anon_sym_DASH_EQ] = ACTIONS(1444), + [anon_sym_STAR_EQ] = ACTIONS(1444), + [anon_sym_SLASH_EQ] = ACTIONS(1444), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1444), + [anon_sym_in] = ACTIONS(1444), + [sym__newline] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym_PIPE] = ACTIONS(1444), + [anon_sym_err_GT_PIPE] = ACTIONS(1444), + [anon_sym_out_GT_PIPE] = ACTIONS(1444), + [anon_sym_e_GT_PIPE] = ACTIONS(1444), + [anon_sym_o_GT_PIPE] = ACTIONS(1444), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1444), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1444), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1444), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1444), + [anon_sym_GT2] = ACTIONS(1444), + [anon_sym_DASH2] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [anon_sym_STAR2] = ACTIONS(1444), + [anon_sym_and2] = ACTIONS(1444), + [anon_sym_xor2] = ACTIONS(1444), + [anon_sym_or2] = ACTIONS(1444), + [anon_sym_not_DASHin2] = ACTIONS(1444), + [anon_sym_has2] = ACTIONS(1444), + [anon_sym_not_DASHhas2] = ACTIONS(1444), + [anon_sym_starts_DASHwith2] = ACTIONS(1444), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1444), + [anon_sym_ends_DASHwith2] = ACTIONS(1444), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1444), + [anon_sym_EQ_EQ2] = ACTIONS(1444), + [anon_sym_BANG_EQ2] = ACTIONS(1444), + [anon_sym_LT2] = ACTIONS(1444), + [anon_sym_LT_EQ2] = ACTIONS(1444), + [anon_sym_GT_EQ2] = ACTIONS(1444), + [anon_sym_EQ_TILDE2] = ACTIONS(1444), + [anon_sym_BANG_TILDE2] = ACTIONS(1444), + [anon_sym_like2] = ACTIONS(1444), + [anon_sym_not_DASHlike2] = ACTIONS(1444), + [anon_sym_STAR_STAR2] = ACTIONS(1444), + [anon_sym_PLUS_PLUS2] = ACTIONS(1444), + [anon_sym_SLASH2] = ACTIONS(1444), + [anon_sym_mod2] = ACTIONS(1444), + [anon_sym_SLASH_SLASH2] = ACTIONS(1444), + [anon_sym_PLUS2] = ACTIONS(1444), + [anon_sym_bit_DASHshl2] = ACTIONS(1444), + [anon_sym_bit_DASHshr2] = ACTIONS(1444), + [anon_sym_bit_DASHand2] = ACTIONS(1444), + [anon_sym_bit_DASHxor2] = ACTIONS(1444), + [anon_sym_bit_DASHor2] = ACTIONS(1444), + [anon_sym_DOT_DOT2] = ACTIONS(1444), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1446), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1446), + [sym__entry_separator] = ACTIONS(1446), + [anon_sym_COLON2] = ACTIONS(1444), + [anon_sym_DOT2] = ACTIONS(1456), + [anon_sym_err_GT] = ACTIONS(1444), + [anon_sym_out_GT] = ACTIONS(1444), + [anon_sym_e_GT] = ACTIONS(1444), + [anon_sym_o_GT] = ACTIONS(1444), + [anon_sym_err_PLUSout_GT] = ACTIONS(1444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1444), + [anon_sym_o_PLUSe_GT] = ACTIONS(1444), + [anon_sym_e_PLUSo_GT] = ACTIONS(1444), + [anon_sym_err_GT_GT] = ACTIONS(1444), + [anon_sym_out_GT_GT] = ACTIONS(1444), + [anon_sym_e_GT_GT] = ACTIONS(1444), + [anon_sym_o_GT_GT] = ACTIONS(1444), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1444), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1444), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1444), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1444), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(338)] = { [sym_comment] = STATE(338), [anon_sym_EQ] = ACTIONS(1458), @@ -74087,46 +74122,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(339)] = { - [aux_sym__repeat_newline] = STATE(4123), - [sym_expr_parenthesized] = STATE(4058), - [sym__spread_parenthesized] = STATE(4700), - [sym_val_range] = STATE(4730), - [sym__val_range] = STATE(4544), - [sym__value] = STATE(4730), - [sym_val_nothing] = STATE(4604), - [sym_val_bool] = STATE(4358), - [sym__spread_variable] = STATE(4795), - [sym_val_variable] = STATE(3879), - [sym_val_cellpath] = STATE(4604), - [sym_val_number] = STATE(4604), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(4361), - [sym_val_duration] = STATE(4604), - [sym_val_filesize] = STATE(4604), - [sym_val_binary] = STATE(4604), - [sym_val_string] = STATE(4604), - [sym__raw_str] = STATE(3638), - [sym__str_double_quotes] = STATE(3638), - [sym__str_single_quotes] = STATE(3638), - [sym__str_back_ticks] = STATE(3638), - [sym_val_interpolated] = STATE(4604), - [sym__inter_single_quotes] = STATE(4595), + [aux_sym__repeat_newline] = STATE(4124), + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), [sym__inter_double_quotes] = STATE(4596), - [sym_val_list] = STATE(4558), - [sym__spread_list] = STATE(4700), - [sym_list_body] = STATE(4988), - [sym_val_entry] = STATE(4576), - [sym_val_record] = STATE(4604), - [sym__table_head] = STATE(3745), - [sym_val_table] = STATE(4604), - [sym_val_closure] = STATE(4604), + [sym_val_list] = STATE(4555), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(4987), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym__table_head] = STATE(3730), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), [sym__unquoted_in_list] = STATE(4171), - [sym__unquoted_in_list_with_expr] = STATE(4730), - [sym__unquoted_anonymous_prefix] = STATE(4544), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), [sym_comment] = STATE(339), - [aux_sym__types_body_repeat1] = STATE(458), - [aux_sym_parameter_repeat2] = STATE(4189), - [aux_sym_list_body_repeat1] = STATE(548), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), [anon_sym_true] = ACTIONS(1462), [anon_sym_false] = ACTIONS(1462), [anon_sym_null] = ACTIONS(1464), @@ -74167,206 +74202,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1426), }, [STATE(340)] = { - [sym_path] = STATE(394), - [sym_comment] = STATE(340), - [aux_sym__where_predicate_lhs_repeat1] = STATE(341), - [anon_sym_EQ] = ACTIONS(1490), - [anon_sym_PLUS_EQ] = ACTIONS(1492), - [anon_sym_DASH_EQ] = ACTIONS(1492), - [anon_sym_STAR_EQ] = ACTIONS(1492), - [anon_sym_SLASH_EQ] = ACTIONS(1492), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1492), - [anon_sym_in] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1490), - [anon_sym_DASH2] = ACTIONS(1490), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1490), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1490), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_like2] = ACTIONS(1492), - [anon_sym_not_DASHlike2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1490), - [anon_sym_SLASH2] = ACTIONS(1490), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1490), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1490), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1492), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1492), - [anon_sym_COLON2] = ACTIONS(1492), - [anon_sym_DOT2] = ACTIONS(1436), - [anon_sym_err_GT] = ACTIONS(1490), - [anon_sym_out_GT] = ACTIONS(1490), - [anon_sym_e_GT] = ACTIONS(1490), - [anon_sym_o_GT] = ACTIONS(1490), - [anon_sym_err_PLUSout_GT] = ACTIONS(1490), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1490), - [anon_sym_o_PLUSe_GT] = ACTIONS(1490), - [anon_sym_e_PLUSo_GT] = ACTIONS(1490), - [anon_sym_err_GT_GT] = ACTIONS(1492), - [anon_sym_out_GT_GT] = ACTIONS(1492), - [anon_sym_e_GT_GT] = ACTIONS(1492), - [anon_sym_o_GT_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(341)] = { - [sym_path] = STATE(394), - [sym_comment] = STATE(341), - [aux_sym__where_predicate_lhs_repeat1] = STATE(341), - [anon_sym_EQ] = ACTIONS(1494), - [anon_sym_PLUS_EQ] = ACTIONS(1496), - [anon_sym_DASH_EQ] = ACTIONS(1496), - [anon_sym_STAR_EQ] = ACTIONS(1496), - [anon_sym_SLASH_EQ] = ACTIONS(1496), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1496), - [anon_sym_in] = ACTIONS(1496), - [sym__newline] = ACTIONS(1496), - [anon_sym_SEMI] = ACTIONS(1496), - [anon_sym_PIPE] = ACTIONS(1496), - [anon_sym_err_GT_PIPE] = ACTIONS(1496), - [anon_sym_out_GT_PIPE] = ACTIONS(1496), - [anon_sym_e_GT_PIPE] = ACTIONS(1496), - [anon_sym_o_GT_PIPE] = ACTIONS(1496), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1496), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1496), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1496), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1496), - [anon_sym_RPAREN] = ACTIONS(1496), - [anon_sym_GT2] = ACTIONS(1494), - [anon_sym_DASH2] = ACTIONS(1494), - [anon_sym_RBRACE] = ACTIONS(1496), - [anon_sym_STAR2] = ACTIONS(1494), - [anon_sym_and2] = ACTIONS(1496), - [anon_sym_xor2] = ACTIONS(1496), - [anon_sym_or2] = ACTIONS(1496), - [anon_sym_not_DASHin2] = ACTIONS(1496), - [anon_sym_has2] = ACTIONS(1496), - [anon_sym_not_DASHhas2] = ACTIONS(1496), - [anon_sym_starts_DASHwith2] = ACTIONS(1496), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1496), - [anon_sym_ends_DASHwith2] = ACTIONS(1496), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1496), - [anon_sym_EQ_EQ2] = ACTIONS(1496), - [anon_sym_BANG_EQ2] = ACTIONS(1496), - [anon_sym_LT2] = ACTIONS(1494), - [anon_sym_LT_EQ2] = ACTIONS(1496), - [anon_sym_GT_EQ2] = ACTIONS(1496), - [anon_sym_EQ_TILDE2] = ACTIONS(1496), - [anon_sym_BANG_TILDE2] = ACTIONS(1496), - [anon_sym_like2] = ACTIONS(1496), - [anon_sym_not_DASHlike2] = ACTIONS(1496), - [anon_sym_STAR_STAR2] = ACTIONS(1496), - [anon_sym_PLUS_PLUS2] = ACTIONS(1494), - [anon_sym_SLASH2] = ACTIONS(1494), - [anon_sym_mod2] = ACTIONS(1496), - [anon_sym_SLASH_SLASH2] = ACTIONS(1496), - [anon_sym_PLUS2] = ACTIONS(1494), - [anon_sym_bit_DASHshl2] = ACTIONS(1496), - [anon_sym_bit_DASHshr2] = ACTIONS(1496), - [anon_sym_bit_DASHand2] = ACTIONS(1496), - [anon_sym_bit_DASHxor2] = ACTIONS(1496), - [anon_sym_bit_DASHor2] = ACTIONS(1496), - [anon_sym_DOT_DOT2] = ACTIONS(1494), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1496), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1496), - [anon_sym_COLON2] = ACTIONS(1496), - [anon_sym_DOT2] = ACTIONS(1498), - [anon_sym_err_GT] = ACTIONS(1494), - [anon_sym_out_GT] = ACTIONS(1494), - [anon_sym_e_GT] = ACTIONS(1494), - [anon_sym_o_GT] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT] = ACTIONS(1494), - [anon_sym_err_GT_GT] = ACTIONS(1496), - [anon_sym_out_GT_GT] = ACTIONS(1496), - [anon_sym_e_GT_GT] = ACTIONS(1496), - [anon_sym_o_GT_GT] = ACTIONS(1496), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1496), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1496), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1496), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1496), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(342)] = { - [aux_sym__repeat_newline] = STATE(4123), - [sym_expr_parenthesized] = STATE(4058), - [sym__spread_parenthesized] = STATE(4700), - [sym_val_range] = STATE(4730), - [sym__val_range] = STATE(4544), - [sym__value] = STATE(4730), - [sym_val_nothing] = STATE(4604), - [sym_val_bool] = STATE(4358), - [sym__spread_variable] = STATE(4795), - [sym_val_variable] = STATE(3879), - [sym_val_cellpath] = STATE(4604), - [sym_val_number] = STATE(4604), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(4361), - [sym_val_duration] = STATE(4604), - [sym_val_filesize] = STATE(4604), - [sym_val_binary] = STATE(4604), - [sym_val_string] = STATE(4604), - [sym__raw_str] = STATE(3638), - [sym__str_double_quotes] = STATE(3638), - [sym__str_single_quotes] = STATE(3638), - [sym__str_back_ticks] = STATE(3638), - [sym_val_interpolated] = STATE(4604), - [sym__inter_single_quotes] = STATE(4595), + [aux_sym__repeat_newline] = STATE(4124), + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), [sym__inter_double_quotes] = STATE(4596), - [sym_val_list] = STATE(4558), - [sym__spread_list] = STATE(4700), - [sym_list_body] = STATE(4844), - [sym_val_entry] = STATE(4576), - [sym_val_record] = STATE(4604), - [sym__table_head] = STATE(3691), - [sym_val_table] = STATE(4604), - [sym_val_closure] = STATE(4604), + [sym_val_list] = STATE(4555), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(5021), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym__table_head] = STATE(3758), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), [sym__unquoted_in_list] = STATE(4171), - [sym__unquoted_in_list_with_expr] = STATE(4730), - [sym__unquoted_anonymous_prefix] = STATE(4544), - [sym_comment] = STATE(342), - [aux_sym__types_body_repeat1] = STATE(458), - [aux_sym_parameter_repeat2] = STATE(4189), - [aux_sym_list_body_repeat1] = STATE(548), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), + [sym_comment] = STATE(340), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), [anon_sym_true] = ACTIONS(1462), [anon_sym_false] = ACTIONS(1462), [anon_sym_null] = ACTIONS(1464), @@ -74375,7 +74250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1466), [sym__newline] = ACTIONS(1468), [anon_sym_LBRACK] = ACTIONS(1470), - [anon_sym_RBRACK] = ACTIONS(1501), + [anon_sym_RBRACK] = ACTIONS(1490), [anon_sym_LPAREN] = ACTIONS(1386), [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), @@ -74406,47 +74281,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, + [STATE(341)] = { + [sym_path] = STATE(396), + [sym_comment] = STATE(341), + [aux_sym__where_predicate_lhs_repeat1] = STATE(342), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_PLUS_EQ] = ACTIONS(1494), + [anon_sym_DASH_EQ] = ACTIONS(1494), + [anon_sym_STAR_EQ] = ACTIONS(1494), + [anon_sym_SLASH_EQ] = ACTIONS(1494), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1494), + [anon_sym_in] = ACTIONS(1494), + [sym__newline] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_err_GT_PIPE] = ACTIONS(1494), + [anon_sym_out_GT_PIPE] = ACTIONS(1494), + [anon_sym_e_GT_PIPE] = ACTIONS(1494), + [anon_sym_o_GT_PIPE] = ACTIONS(1494), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1494), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1494), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1494), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1494), + [anon_sym_RPAREN] = ACTIONS(1494), + [anon_sym_GT2] = ACTIONS(1492), + [anon_sym_DASH2] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1494), + [anon_sym_STAR2] = ACTIONS(1492), + [anon_sym_and2] = ACTIONS(1494), + [anon_sym_xor2] = ACTIONS(1494), + [anon_sym_or2] = ACTIONS(1494), + [anon_sym_not_DASHin2] = ACTIONS(1494), + [anon_sym_has2] = ACTIONS(1494), + [anon_sym_not_DASHhas2] = ACTIONS(1494), + [anon_sym_starts_DASHwith2] = ACTIONS(1494), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1494), + [anon_sym_ends_DASHwith2] = ACTIONS(1494), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1494), + [anon_sym_EQ_EQ2] = ACTIONS(1494), + [anon_sym_BANG_EQ2] = ACTIONS(1494), + [anon_sym_LT2] = ACTIONS(1492), + [anon_sym_LT_EQ2] = ACTIONS(1494), + [anon_sym_GT_EQ2] = ACTIONS(1494), + [anon_sym_EQ_TILDE2] = ACTIONS(1494), + [anon_sym_BANG_TILDE2] = ACTIONS(1494), + [anon_sym_like2] = ACTIONS(1494), + [anon_sym_not_DASHlike2] = ACTIONS(1494), + [anon_sym_STAR_STAR2] = ACTIONS(1494), + [anon_sym_PLUS_PLUS2] = ACTIONS(1492), + [anon_sym_SLASH2] = ACTIONS(1492), + [anon_sym_mod2] = ACTIONS(1494), + [anon_sym_SLASH_SLASH2] = ACTIONS(1494), + [anon_sym_PLUS2] = ACTIONS(1492), + [anon_sym_bit_DASHshl2] = ACTIONS(1494), + [anon_sym_bit_DASHshr2] = ACTIONS(1494), + [anon_sym_bit_DASHand2] = ACTIONS(1494), + [anon_sym_bit_DASHxor2] = ACTIONS(1494), + [anon_sym_bit_DASHor2] = ACTIONS(1494), + [anon_sym_DOT_DOT2] = ACTIONS(1492), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), + [anon_sym_COLON2] = ACTIONS(1494), + [anon_sym_DOT2] = ACTIONS(1448), + [anon_sym_err_GT] = ACTIONS(1492), + [anon_sym_out_GT] = ACTIONS(1492), + [anon_sym_e_GT] = ACTIONS(1492), + [anon_sym_o_GT] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT] = ACTIONS(1492), + [anon_sym_err_GT_GT] = ACTIONS(1494), + [anon_sym_out_GT_GT] = ACTIONS(1494), + [anon_sym_e_GT_GT] = ACTIONS(1494), + [anon_sym_o_GT_GT] = ACTIONS(1494), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1494), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1494), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1494), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1494), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(342)] = { + [sym_path] = STATE(396), + [sym_comment] = STATE(342), + [aux_sym__where_predicate_lhs_repeat1] = STATE(342), + [anon_sym_EQ] = ACTIONS(1496), + [anon_sym_PLUS_EQ] = ACTIONS(1498), + [anon_sym_DASH_EQ] = ACTIONS(1498), + [anon_sym_STAR_EQ] = ACTIONS(1498), + [anon_sym_SLASH_EQ] = ACTIONS(1498), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1498), + [anon_sym_in] = ACTIONS(1498), + [sym__newline] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_err_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_GT_PIPE] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1498), + [anon_sym_RPAREN] = ACTIONS(1498), + [anon_sym_GT2] = ACTIONS(1496), + [anon_sym_DASH2] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1498), + [anon_sym_STAR2] = ACTIONS(1496), + [anon_sym_and2] = ACTIONS(1498), + [anon_sym_xor2] = ACTIONS(1498), + [anon_sym_or2] = ACTIONS(1498), + [anon_sym_not_DASHin2] = ACTIONS(1498), + [anon_sym_has2] = ACTIONS(1498), + [anon_sym_not_DASHhas2] = ACTIONS(1498), + [anon_sym_starts_DASHwith2] = ACTIONS(1498), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1498), + [anon_sym_ends_DASHwith2] = ACTIONS(1498), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1498), + [anon_sym_EQ_EQ2] = ACTIONS(1498), + [anon_sym_BANG_EQ2] = ACTIONS(1498), + [anon_sym_LT2] = ACTIONS(1496), + [anon_sym_LT_EQ2] = ACTIONS(1498), + [anon_sym_GT_EQ2] = ACTIONS(1498), + [anon_sym_EQ_TILDE2] = ACTIONS(1498), + [anon_sym_BANG_TILDE2] = ACTIONS(1498), + [anon_sym_like2] = ACTIONS(1498), + [anon_sym_not_DASHlike2] = ACTIONS(1498), + [anon_sym_STAR_STAR2] = ACTIONS(1498), + [anon_sym_PLUS_PLUS2] = ACTIONS(1496), + [anon_sym_SLASH2] = ACTIONS(1496), + [anon_sym_mod2] = ACTIONS(1498), + [anon_sym_SLASH_SLASH2] = ACTIONS(1498), + [anon_sym_PLUS2] = ACTIONS(1496), + [anon_sym_bit_DASHshl2] = ACTIONS(1498), + [anon_sym_bit_DASHshr2] = ACTIONS(1498), + [anon_sym_bit_DASHand2] = ACTIONS(1498), + [anon_sym_bit_DASHxor2] = ACTIONS(1498), + [anon_sym_bit_DASHor2] = ACTIONS(1498), + [anon_sym_DOT_DOT2] = ACTIONS(1496), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1498), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1498), + [anon_sym_COLON2] = ACTIONS(1498), + [anon_sym_DOT2] = ACTIONS(1500), + [anon_sym_err_GT] = ACTIONS(1496), + [anon_sym_out_GT] = ACTIONS(1496), + [anon_sym_e_GT] = ACTIONS(1496), + [anon_sym_o_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT] = ACTIONS(1496), + [anon_sym_err_GT_GT] = ACTIONS(1498), + [anon_sym_out_GT_GT] = ACTIONS(1498), + [anon_sym_e_GT_GT] = ACTIONS(1498), + [anon_sym_o_GT_GT] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1498), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(343)] = { - [aux_sym__repeat_newline] = STATE(4123), - [sym_expr_parenthesized] = STATE(4058), - [sym__spread_parenthesized] = STATE(4700), - [sym_val_range] = STATE(4730), - [sym__val_range] = STATE(4544), - [sym__value] = STATE(4730), - [sym_val_nothing] = STATE(4604), - [sym_val_bool] = STATE(4358), - [sym__spread_variable] = STATE(4795), - [sym_val_variable] = STATE(3879), - [sym_val_cellpath] = STATE(4604), - [sym_val_number] = STATE(4604), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(4361), - [sym_val_duration] = STATE(4604), - [sym_val_filesize] = STATE(4604), - [sym_val_binary] = STATE(4604), - [sym_val_string] = STATE(4604), - [sym__raw_str] = STATE(3638), - [sym__str_double_quotes] = STATE(3638), - [sym__str_single_quotes] = STATE(3638), - [sym__str_back_ticks] = STATE(3638), - [sym_val_interpolated] = STATE(4604), - [sym__inter_single_quotes] = STATE(4595), + [aux_sym__repeat_newline] = STATE(4124), + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), [sym__inter_double_quotes] = STATE(4596), - [sym_val_list] = STATE(4558), - [sym__spread_list] = STATE(4700), - [sym_list_body] = STATE(5084), - [sym_val_entry] = STATE(4576), - [sym_val_record] = STATE(4604), - [sym__table_head] = STATE(3672), - [sym_val_table] = STATE(4604), - [sym_val_closure] = STATE(4604), + [sym_val_list] = STATE(4555), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(5258), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym__table_head] = STATE(3734), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), [sym__unquoted_in_list] = STATE(4171), - [sym__unquoted_in_list_with_expr] = STATE(4730), - [sym__unquoted_anonymous_prefix] = STATE(4544), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), [sym_comment] = STATE(343), - [aux_sym__types_body_repeat1] = STATE(458), - [aux_sym_parameter_repeat2] = STATE(4189), - [aux_sym_list_body_repeat1] = STATE(548), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), [anon_sym_true] = ACTIONS(1462), [anon_sym_false] = ACTIONS(1462), [anon_sym_null] = ACTIONS(1464), @@ -74649,64 +74684,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(346)] = { [sym_comment] = STATE(346), [anon_sym_EQ] = ACTIONS(1513), - [anon_sym_PLUS_EQ] = ACTIONS(1515), - [anon_sym_DASH_EQ] = ACTIONS(1515), - [anon_sym_STAR_EQ] = ACTIONS(1515), - [anon_sym_SLASH_EQ] = ACTIONS(1515), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1515), - [anon_sym_in] = ACTIONS(1515), - [sym__newline] = ACTIONS(1515), - [anon_sym_SEMI] = ACTIONS(1515), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_err_GT_PIPE] = ACTIONS(1515), - [anon_sym_out_GT_PIPE] = ACTIONS(1515), - [anon_sym_e_GT_PIPE] = ACTIONS(1515), - [anon_sym_o_GT_PIPE] = ACTIONS(1515), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1515), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1515), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1515), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1515), - [anon_sym_RPAREN] = ACTIONS(1515), + [anon_sym_PLUS_EQ] = ACTIONS(1513), + [anon_sym_DASH_EQ] = ACTIONS(1513), + [anon_sym_STAR_EQ] = ACTIONS(1513), + [anon_sym_SLASH_EQ] = ACTIONS(1513), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1513), + [anon_sym_in] = ACTIONS(1513), + [sym__newline] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1513), + [anon_sym_err_GT_PIPE] = ACTIONS(1513), + [anon_sym_out_GT_PIPE] = ACTIONS(1513), + [anon_sym_e_GT_PIPE] = ACTIONS(1513), + [anon_sym_o_GT_PIPE] = ACTIONS(1513), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1513), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1513), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1513), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1513), + [anon_sym_RBRACK] = ACTIONS(1513), [anon_sym_GT2] = ACTIONS(1513), [anon_sym_DASH2] = ACTIONS(1513), - [anon_sym_RBRACE] = ACTIONS(1515), + [anon_sym_RBRACE] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1513), [anon_sym_STAR2] = ACTIONS(1513), - [anon_sym_and2] = ACTIONS(1515), - [anon_sym_xor2] = ACTIONS(1515), - [anon_sym_or2] = ACTIONS(1515), - [anon_sym_not_DASHin2] = ACTIONS(1515), - [anon_sym_has2] = ACTIONS(1515), - [anon_sym_not_DASHhas2] = ACTIONS(1515), - [anon_sym_starts_DASHwith2] = ACTIONS(1515), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1515), - [anon_sym_ends_DASHwith2] = ACTIONS(1515), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1515), - [anon_sym_EQ_EQ2] = ACTIONS(1515), - [anon_sym_BANG_EQ2] = ACTIONS(1515), + [anon_sym_and2] = ACTIONS(1513), + [anon_sym_xor2] = ACTIONS(1513), + [anon_sym_or2] = ACTIONS(1513), + [anon_sym_not_DASHin2] = ACTIONS(1513), + [anon_sym_has2] = ACTIONS(1513), + [anon_sym_not_DASHhas2] = ACTIONS(1513), + [anon_sym_starts_DASHwith2] = ACTIONS(1513), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1513), + [anon_sym_ends_DASHwith2] = ACTIONS(1513), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1513), + [anon_sym_EQ_EQ2] = ACTIONS(1513), + [anon_sym_BANG_EQ2] = ACTIONS(1513), [anon_sym_LT2] = ACTIONS(1513), - [anon_sym_LT_EQ2] = ACTIONS(1515), - [anon_sym_GT_EQ2] = ACTIONS(1515), - [anon_sym_EQ_TILDE2] = ACTIONS(1515), - [anon_sym_BANG_TILDE2] = ACTIONS(1515), - [anon_sym_like2] = ACTIONS(1515), - [anon_sym_not_DASHlike2] = ACTIONS(1515), - [anon_sym_STAR_STAR2] = ACTIONS(1515), + [anon_sym_LT_EQ2] = ACTIONS(1513), + [anon_sym_GT_EQ2] = ACTIONS(1513), + [anon_sym_EQ_TILDE2] = ACTIONS(1513), + [anon_sym_BANG_TILDE2] = ACTIONS(1513), + [anon_sym_like2] = ACTIONS(1513), + [anon_sym_not_DASHlike2] = ACTIONS(1513), + [anon_sym_STAR_STAR2] = ACTIONS(1513), [anon_sym_PLUS_PLUS2] = ACTIONS(1513), [anon_sym_SLASH2] = ACTIONS(1513), - [anon_sym_mod2] = ACTIONS(1515), - [anon_sym_SLASH_SLASH2] = ACTIONS(1515), + [anon_sym_mod2] = ACTIONS(1513), + [anon_sym_SLASH_SLASH2] = ACTIONS(1513), [anon_sym_PLUS2] = ACTIONS(1513), - [anon_sym_bit_DASHshl2] = ACTIONS(1515), - [anon_sym_bit_DASHshr2] = ACTIONS(1515), - [anon_sym_bit_DASHand2] = ACTIONS(1515), - [anon_sym_bit_DASHxor2] = ACTIONS(1515), - [anon_sym_bit_DASHor2] = ACTIONS(1515), + [anon_sym_bit_DASHshl2] = ACTIONS(1513), + [anon_sym_bit_DASHshr2] = ACTIONS(1513), + [anon_sym_bit_DASHand2] = ACTIONS(1513), + [anon_sym_bit_DASHxor2] = ACTIONS(1513), + [anon_sym_bit_DASHor2] = ACTIONS(1513), [anon_sym_DOT_DOT2] = ACTIONS(1513), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1515), [anon_sym_DOT_DOT_LT2] = ACTIONS(1515), - [anon_sym_COLON2] = ACTIONS(1515), - [anon_sym_QMARK2] = ACTIONS(1515), - [anon_sym_BANG] = ACTIONS(1513), + [sym__entry_separator] = ACTIONS(1515), + [anon_sym_COLON2] = ACTIONS(1513), [anon_sym_DOT2] = ACTIONS(1513), [anon_sym_err_GT] = ACTIONS(1513), [anon_sym_out_GT] = ACTIONS(1513), @@ -74716,15 +74751,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT] = ACTIONS(1513), [anon_sym_o_PLUSe_GT] = ACTIONS(1513), [anon_sym_e_PLUSo_GT] = ACTIONS(1513), - [anon_sym_err_GT_GT] = ACTIONS(1515), - [anon_sym_out_GT_GT] = ACTIONS(1515), - [anon_sym_e_GT_GT] = ACTIONS(1515), - [anon_sym_o_GT_GT] = ACTIONS(1515), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1515), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1515), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1515), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1515), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_err_GT_GT] = ACTIONS(1513), + [anon_sym_out_GT_GT] = ACTIONS(1513), + [anon_sym_e_GT_GT] = ACTIONS(1513), + [anon_sym_o_GT_GT] = ACTIONS(1513), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1513), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1513), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1513), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1513), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(347)] = { [sym_comment] = STATE(347), @@ -74888,166 +74923,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(349)] = { [sym_comment] = STATE(349), - [anon_sym_EQ] = ACTIONS(1505), - [anon_sym_PLUS_EQ] = ACTIONS(1505), - [anon_sym_DASH_EQ] = ACTIONS(1505), - [anon_sym_STAR_EQ] = ACTIONS(1505), - [anon_sym_SLASH_EQ] = ACTIONS(1505), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1505), - [anon_sym_in] = ACTIONS(1505), - [sym__newline] = ACTIONS(1505), - [anon_sym_SEMI] = ACTIONS(1505), - [anon_sym_PIPE] = ACTIONS(1505), - [anon_sym_err_GT_PIPE] = ACTIONS(1505), - [anon_sym_out_GT_PIPE] = ACTIONS(1505), - [anon_sym_e_GT_PIPE] = ACTIONS(1505), - [anon_sym_o_GT_PIPE] = ACTIONS(1505), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1505), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1505), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1505), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1505), - [anon_sym_GT2] = ACTIONS(1505), - [anon_sym_DASH2] = ACTIONS(1505), - [anon_sym_RBRACE] = ACTIONS(1505), - [anon_sym_STAR2] = ACTIONS(1505), - [anon_sym_and2] = ACTIONS(1505), - [anon_sym_xor2] = ACTIONS(1505), - [anon_sym_or2] = ACTIONS(1505), - [anon_sym_not_DASHin2] = ACTIONS(1505), - [anon_sym_has2] = ACTIONS(1505), - [anon_sym_not_DASHhas2] = ACTIONS(1505), - [anon_sym_starts_DASHwith2] = ACTIONS(1505), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1505), - [anon_sym_ends_DASHwith2] = ACTIONS(1505), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1505), - [anon_sym_EQ_EQ2] = ACTIONS(1505), - [anon_sym_BANG_EQ2] = ACTIONS(1505), - [anon_sym_LT2] = ACTIONS(1505), - [anon_sym_LT_EQ2] = ACTIONS(1505), - [anon_sym_GT_EQ2] = ACTIONS(1505), - [anon_sym_EQ_TILDE2] = ACTIONS(1505), - [anon_sym_BANG_TILDE2] = ACTIONS(1505), - [anon_sym_like2] = ACTIONS(1505), - [anon_sym_not_DASHlike2] = ACTIONS(1505), - [anon_sym_STAR_STAR2] = ACTIONS(1505), - [anon_sym_PLUS_PLUS2] = ACTIONS(1505), - [anon_sym_SLASH2] = ACTIONS(1505), - [anon_sym_mod2] = ACTIONS(1505), - [anon_sym_SLASH_SLASH2] = ACTIONS(1505), - [anon_sym_PLUS2] = ACTIONS(1505), - [anon_sym_bit_DASHshl2] = ACTIONS(1505), - [anon_sym_bit_DASHshr2] = ACTIONS(1505), - [anon_sym_bit_DASHand2] = ACTIONS(1505), - [anon_sym_bit_DASHxor2] = ACTIONS(1505), - [anon_sym_bit_DASHor2] = ACTIONS(1505), - [anon_sym_DOT_DOT2] = ACTIONS(1505), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1507), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1507), - [sym__entry_separator] = ACTIONS(1507), - [anon_sym_COLON2] = ACTIONS(1505), - [anon_sym_QMARK2] = ACTIONS(1505), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_DOT2] = ACTIONS(1505), - [anon_sym_err_GT] = ACTIONS(1505), - [anon_sym_out_GT] = ACTIONS(1505), - [anon_sym_e_GT] = ACTIONS(1505), - [anon_sym_o_GT] = ACTIONS(1505), - [anon_sym_err_PLUSout_GT] = ACTIONS(1505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1505), - [anon_sym_o_PLUSe_GT] = ACTIONS(1505), - [anon_sym_e_PLUSo_GT] = ACTIONS(1505), - [anon_sym_err_GT_GT] = ACTIONS(1505), - [anon_sym_out_GT_GT] = ACTIONS(1505), - [anon_sym_e_GT_GT] = ACTIONS(1505), - [anon_sym_o_GT_GT] = ACTIONS(1505), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1505), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1505), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1505), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1505), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(350)] = { - [sym_comment] = STATE(350), - [anon_sym_EQ] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(1509), - [anon_sym_DASH_EQ] = ACTIONS(1509), - [anon_sym_STAR_EQ] = ACTIONS(1509), - [anon_sym_SLASH_EQ] = ACTIONS(1509), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1509), - [anon_sym_in] = ACTIONS(1509), - [sym__newline] = ACTIONS(1509), - [anon_sym_SEMI] = ACTIONS(1509), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_err_GT_PIPE] = ACTIONS(1509), - [anon_sym_out_GT_PIPE] = ACTIONS(1509), - [anon_sym_e_GT_PIPE] = ACTIONS(1509), - [anon_sym_o_GT_PIPE] = ACTIONS(1509), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1509), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1509), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1509), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1509), - [anon_sym_GT2] = ACTIONS(1509), - [anon_sym_DASH2] = ACTIONS(1509), - [anon_sym_RBRACE] = ACTIONS(1509), - [anon_sym_STAR2] = ACTIONS(1509), - [anon_sym_and2] = ACTIONS(1509), - [anon_sym_xor2] = ACTIONS(1509), - [anon_sym_or2] = ACTIONS(1509), - [anon_sym_not_DASHin2] = ACTIONS(1509), - [anon_sym_has2] = ACTIONS(1509), - [anon_sym_not_DASHhas2] = ACTIONS(1509), - [anon_sym_starts_DASHwith2] = ACTIONS(1509), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1509), - [anon_sym_ends_DASHwith2] = ACTIONS(1509), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1509), - [anon_sym_EQ_EQ2] = ACTIONS(1509), - [anon_sym_BANG_EQ2] = ACTIONS(1509), - [anon_sym_LT2] = ACTIONS(1509), - [anon_sym_LT_EQ2] = ACTIONS(1509), - [anon_sym_GT_EQ2] = ACTIONS(1509), - [anon_sym_EQ_TILDE2] = ACTIONS(1509), - [anon_sym_BANG_TILDE2] = ACTIONS(1509), - [anon_sym_like2] = ACTIONS(1509), - [anon_sym_not_DASHlike2] = ACTIONS(1509), - [anon_sym_STAR_STAR2] = ACTIONS(1509), - [anon_sym_PLUS_PLUS2] = ACTIONS(1509), - [anon_sym_SLASH2] = ACTIONS(1509), - [anon_sym_mod2] = ACTIONS(1509), - [anon_sym_SLASH_SLASH2] = ACTIONS(1509), - [anon_sym_PLUS2] = ACTIONS(1509), - [anon_sym_bit_DASHshl2] = ACTIONS(1509), - [anon_sym_bit_DASHshr2] = ACTIONS(1509), - [anon_sym_bit_DASHand2] = ACTIONS(1509), - [anon_sym_bit_DASHxor2] = ACTIONS(1509), - [anon_sym_bit_DASHor2] = ACTIONS(1509), - [anon_sym_DOT_DOT2] = ACTIONS(1509), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1511), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1511), - [sym__entry_separator] = ACTIONS(1511), - [anon_sym_COLON2] = ACTIONS(1509), - [anon_sym_QMARK2] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(1509), - [anon_sym_DOT2] = ACTIONS(1509), - [anon_sym_err_GT] = ACTIONS(1509), - [anon_sym_out_GT] = ACTIONS(1509), - [anon_sym_e_GT] = ACTIONS(1509), - [anon_sym_o_GT] = ACTIONS(1509), - [anon_sym_err_PLUSout_GT] = ACTIONS(1509), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1509), - [anon_sym_o_PLUSe_GT] = ACTIONS(1509), - [anon_sym_e_PLUSo_GT] = ACTIONS(1509), - [anon_sym_err_GT_GT] = ACTIONS(1509), - [anon_sym_out_GT_GT] = ACTIONS(1509), - [anon_sym_e_GT_GT] = ACTIONS(1509), - [anon_sym_o_GT_GT] = ACTIONS(1509), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1509), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1509), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1509), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1509), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_EQ] = ACTIONS(1525), + [anon_sym_PLUS_EQ] = ACTIONS(1527), + [anon_sym_DASH_EQ] = ACTIONS(1527), + [anon_sym_STAR_EQ] = ACTIONS(1527), + [anon_sym_SLASH_EQ] = ACTIONS(1527), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1527), + [anon_sym_in] = ACTIONS(1527), + [sym__newline] = ACTIONS(1527), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_err_GT_PIPE] = ACTIONS(1527), + [anon_sym_out_GT_PIPE] = ACTIONS(1527), + [anon_sym_e_GT_PIPE] = ACTIONS(1527), + [anon_sym_o_GT_PIPE] = ACTIONS(1527), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1527), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1527), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1527), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1527), + [anon_sym_RPAREN] = ACTIONS(1527), + [anon_sym_GT2] = ACTIONS(1525), + [anon_sym_DASH2] = ACTIONS(1525), + [anon_sym_RBRACE] = ACTIONS(1527), + [anon_sym_STAR2] = ACTIONS(1525), + [anon_sym_and2] = ACTIONS(1527), + [anon_sym_xor2] = ACTIONS(1527), + [anon_sym_or2] = ACTIONS(1527), + [anon_sym_not_DASHin2] = ACTIONS(1527), + [anon_sym_has2] = ACTIONS(1527), + [anon_sym_not_DASHhas2] = ACTIONS(1527), + [anon_sym_starts_DASHwith2] = ACTIONS(1527), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1527), + [anon_sym_ends_DASHwith2] = ACTIONS(1527), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1527), + [anon_sym_EQ_EQ2] = ACTIONS(1527), + [anon_sym_BANG_EQ2] = ACTIONS(1527), + [anon_sym_LT2] = ACTIONS(1525), + [anon_sym_LT_EQ2] = ACTIONS(1527), + [anon_sym_GT_EQ2] = ACTIONS(1527), + [anon_sym_EQ_TILDE2] = ACTIONS(1527), + [anon_sym_BANG_TILDE2] = ACTIONS(1527), + [anon_sym_like2] = ACTIONS(1527), + [anon_sym_not_DASHlike2] = ACTIONS(1527), + [anon_sym_STAR_STAR2] = ACTIONS(1527), + [anon_sym_PLUS_PLUS2] = ACTIONS(1525), + [anon_sym_SLASH2] = ACTIONS(1525), + [anon_sym_mod2] = ACTIONS(1527), + [anon_sym_SLASH_SLASH2] = ACTIONS(1527), + [anon_sym_PLUS2] = ACTIONS(1525), + [anon_sym_bit_DASHshl2] = ACTIONS(1527), + [anon_sym_bit_DASHshr2] = ACTIONS(1527), + [anon_sym_bit_DASHand2] = ACTIONS(1527), + [anon_sym_bit_DASHxor2] = ACTIONS(1527), + [anon_sym_bit_DASHor2] = ACTIONS(1527), + [anon_sym_DOT_DOT2] = ACTIONS(1525), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1527), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1527), + [anon_sym_COLON2] = ACTIONS(1527), + [anon_sym_QMARK2] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_DOT2] = ACTIONS(1525), + [anon_sym_err_GT] = ACTIONS(1525), + [anon_sym_out_GT] = ACTIONS(1525), + [anon_sym_e_GT] = ACTIONS(1525), + [anon_sym_o_GT] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT] = ACTIONS(1525), + [anon_sym_err_GT_GT] = ACTIONS(1527), + [anon_sym_out_GT_GT] = ACTIONS(1527), + [anon_sym_e_GT_GT] = ACTIONS(1527), + [anon_sym_o_GT_GT] = ACTIONS(1527), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1527), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1527), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1527), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1527), + [anon_sym_POUND] = ACTIONS(3), }, - [STATE(351)] = { - [sym_comment] = STATE(351), + [STATE(350)] = { + [sym_comment] = STATE(350), [anon_sym_EQ] = ACTIONS(1458), [anon_sym_PLUS_EQ] = ACTIONS(1458), [anon_sym_DASH_EQ] = ACTIONS(1458), @@ -75126,88 +75081,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1458), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(352)] = { - [sym_comment] = STATE(352), - [anon_sym_EQ] = ACTIONS(1525), - [anon_sym_PLUS_EQ] = ACTIONS(1525), - [anon_sym_DASH_EQ] = ACTIONS(1525), - [anon_sym_STAR_EQ] = ACTIONS(1525), - [anon_sym_SLASH_EQ] = ACTIONS(1525), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1525), - [anon_sym_in] = ACTIONS(1525), - [sym__newline] = ACTIONS(1525), - [anon_sym_SEMI] = ACTIONS(1525), - [anon_sym_PIPE] = ACTIONS(1525), - [anon_sym_err_GT_PIPE] = ACTIONS(1525), - [anon_sym_out_GT_PIPE] = ACTIONS(1525), - [anon_sym_e_GT_PIPE] = ACTIONS(1525), - [anon_sym_o_GT_PIPE] = ACTIONS(1525), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1525), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1525), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1525), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1525), - [anon_sym_RBRACK] = ACTIONS(1525), - [anon_sym_GT2] = ACTIONS(1525), - [anon_sym_DASH2] = ACTIONS(1525), - [anon_sym_RBRACE] = ACTIONS(1525), - [anon_sym_DOT_DOT] = ACTIONS(1525), - [anon_sym_STAR2] = ACTIONS(1525), - [anon_sym_and2] = ACTIONS(1525), - [anon_sym_xor2] = ACTIONS(1525), - [anon_sym_or2] = ACTIONS(1525), - [anon_sym_not_DASHin2] = ACTIONS(1525), - [anon_sym_has2] = ACTIONS(1525), - [anon_sym_not_DASHhas2] = ACTIONS(1525), - [anon_sym_starts_DASHwith2] = ACTIONS(1525), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1525), - [anon_sym_ends_DASHwith2] = ACTIONS(1525), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1525), - [anon_sym_EQ_EQ2] = ACTIONS(1525), - [anon_sym_BANG_EQ2] = ACTIONS(1525), - [anon_sym_LT2] = ACTIONS(1525), - [anon_sym_LT_EQ2] = ACTIONS(1525), - [anon_sym_GT_EQ2] = ACTIONS(1525), - [anon_sym_EQ_TILDE2] = ACTIONS(1525), - [anon_sym_BANG_TILDE2] = ACTIONS(1525), - [anon_sym_like2] = ACTIONS(1525), - [anon_sym_not_DASHlike2] = ACTIONS(1525), - [anon_sym_STAR_STAR2] = ACTIONS(1525), - [anon_sym_PLUS_PLUS2] = ACTIONS(1525), - [anon_sym_SLASH2] = ACTIONS(1525), - [anon_sym_mod2] = ACTIONS(1525), - [anon_sym_SLASH_SLASH2] = ACTIONS(1525), - [anon_sym_PLUS2] = ACTIONS(1525), - [anon_sym_bit_DASHshl2] = ACTIONS(1525), - [anon_sym_bit_DASHshr2] = ACTIONS(1525), - [anon_sym_bit_DASHand2] = ACTIONS(1525), - [anon_sym_bit_DASHxor2] = ACTIONS(1525), - [anon_sym_bit_DASHor2] = ACTIONS(1525), - [anon_sym_DOT_DOT2] = ACTIONS(1525), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1527), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1527), - [sym__entry_separator] = ACTIONS(1527), - [anon_sym_COLON2] = ACTIONS(1525), - [anon_sym_DOT2] = ACTIONS(1525), - [anon_sym_err_GT] = ACTIONS(1525), - [anon_sym_out_GT] = ACTIONS(1525), - [anon_sym_e_GT] = ACTIONS(1525), - [anon_sym_o_GT] = ACTIONS(1525), - [anon_sym_err_PLUSout_GT] = ACTIONS(1525), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), - [anon_sym_o_PLUSe_GT] = ACTIONS(1525), - [anon_sym_e_PLUSo_GT] = ACTIONS(1525), - [anon_sym_err_GT_GT] = ACTIONS(1525), - [anon_sym_out_GT_GT] = ACTIONS(1525), - [anon_sym_e_GT_GT] = ACTIONS(1525), - [anon_sym_o_GT_GT] = ACTIONS(1525), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1525), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1525), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1525), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1525), + [STATE(351)] = { + [sym_comment] = STATE(351), + [anon_sym_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1509), + [anon_sym_in] = ACTIONS(1509), + [sym__newline] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1509), + [anon_sym_PIPE] = ACTIONS(1509), + [anon_sym_err_GT_PIPE] = ACTIONS(1509), + [anon_sym_out_GT_PIPE] = ACTIONS(1509), + [anon_sym_e_GT_PIPE] = ACTIONS(1509), + [anon_sym_o_GT_PIPE] = ACTIONS(1509), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1509), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1509), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1509), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1509), + [anon_sym_GT2] = ACTIONS(1509), + [anon_sym_DASH2] = ACTIONS(1509), + [anon_sym_RBRACE] = ACTIONS(1509), + [anon_sym_STAR2] = ACTIONS(1509), + [anon_sym_and2] = ACTIONS(1509), + [anon_sym_xor2] = ACTIONS(1509), + [anon_sym_or2] = ACTIONS(1509), + [anon_sym_not_DASHin2] = ACTIONS(1509), + [anon_sym_has2] = ACTIONS(1509), + [anon_sym_not_DASHhas2] = ACTIONS(1509), + [anon_sym_starts_DASHwith2] = ACTIONS(1509), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1509), + [anon_sym_ends_DASHwith2] = ACTIONS(1509), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1509), + [anon_sym_EQ_EQ2] = ACTIONS(1509), + [anon_sym_BANG_EQ2] = ACTIONS(1509), + [anon_sym_LT2] = ACTIONS(1509), + [anon_sym_LT_EQ2] = ACTIONS(1509), + [anon_sym_GT_EQ2] = ACTIONS(1509), + [anon_sym_EQ_TILDE2] = ACTIONS(1509), + [anon_sym_BANG_TILDE2] = ACTIONS(1509), + [anon_sym_like2] = ACTIONS(1509), + [anon_sym_not_DASHlike2] = ACTIONS(1509), + [anon_sym_STAR_STAR2] = ACTIONS(1509), + [anon_sym_PLUS_PLUS2] = ACTIONS(1509), + [anon_sym_SLASH2] = ACTIONS(1509), + [anon_sym_mod2] = ACTIONS(1509), + [anon_sym_SLASH_SLASH2] = ACTIONS(1509), + [anon_sym_PLUS2] = ACTIONS(1509), + [anon_sym_bit_DASHshl2] = ACTIONS(1509), + [anon_sym_bit_DASHshr2] = ACTIONS(1509), + [anon_sym_bit_DASHand2] = ACTIONS(1509), + [anon_sym_bit_DASHxor2] = ACTIONS(1509), + [anon_sym_bit_DASHor2] = ACTIONS(1509), + [anon_sym_DOT_DOT2] = ACTIONS(1509), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1511), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1511), + [sym__entry_separator] = ACTIONS(1511), + [anon_sym_COLON2] = ACTIONS(1509), + [anon_sym_QMARK2] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(1509), + [anon_sym_DOT2] = ACTIONS(1509), + [anon_sym_err_GT] = ACTIONS(1509), + [anon_sym_out_GT] = ACTIONS(1509), + [anon_sym_e_GT] = ACTIONS(1509), + [anon_sym_o_GT] = ACTIONS(1509), + [anon_sym_err_PLUSout_GT] = ACTIONS(1509), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1509), + [anon_sym_o_PLUSe_GT] = ACTIONS(1509), + [anon_sym_e_PLUSo_GT] = ACTIONS(1509), + [anon_sym_err_GT_GT] = ACTIONS(1509), + [anon_sym_out_GT_GT] = ACTIONS(1509), + [anon_sym_e_GT_GT] = ACTIONS(1509), + [anon_sym_o_GT_GT] = ACTIONS(1509), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1509), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1509), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1509), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1509), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(353)] = { - [sym_comment] = STATE(353), + [STATE(352)] = { + [sym_comment] = STATE(352), [anon_sym_EQ] = ACTIONS(1529), [anon_sym_PLUS_EQ] = ACTIONS(1529), [anon_sym_DASH_EQ] = ACTIONS(1529), @@ -75286,47 +75241,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1529), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(353)] = { + [sym_comment] = STATE(353), + [anon_sym_EQ] = ACTIONS(1533), + [anon_sym_PLUS_EQ] = ACTIONS(1533), + [anon_sym_DASH_EQ] = ACTIONS(1533), + [anon_sym_STAR_EQ] = ACTIONS(1533), + [anon_sym_SLASH_EQ] = ACTIONS(1533), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1533), + [anon_sym_in] = ACTIONS(1533), + [sym__newline] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1533), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_err_GT_PIPE] = ACTIONS(1533), + [anon_sym_out_GT_PIPE] = ACTIONS(1533), + [anon_sym_e_GT_PIPE] = ACTIONS(1533), + [anon_sym_o_GT_PIPE] = ACTIONS(1533), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1533), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1533), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1533), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1533), + [anon_sym_RBRACK] = ACTIONS(1533), + [anon_sym_GT2] = ACTIONS(1533), + [anon_sym_DASH2] = ACTIONS(1533), + [anon_sym_RBRACE] = ACTIONS(1533), + [anon_sym_DOT_DOT] = ACTIONS(1533), + [anon_sym_STAR2] = ACTIONS(1533), + [anon_sym_and2] = ACTIONS(1533), + [anon_sym_xor2] = ACTIONS(1533), + [anon_sym_or2] = ACTIONS(1533), + [anon_sym_not_DASHin2] = ACTIONS(1533), + [anon_sym_has2] = ACTIONS(1533), + [anon_sym_not_DASHhas2] = ACTIONS(1533), + [anon_sym_starts_DASHwith2] = ACTIONS(1533), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1533), + [anon_sym_ends_DASHwith2] = ACTIONS(1533), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1533), + [anon_sym_EQ_EQ2] = ACTIONS(1533), + [anon_sym_BANG_EQ2] = ACTIONS(1533), + [anon_sym_LT2] = ACTIONS(1533), + [anon_sym_LT_EQ2] = ACTIONS(1533), + [anon_sym_GT_EQ2] = ACTIONS(1533), + [anon_sym_EQ_TILDE2] = ACTIONS(1533), + [anon_sym_BANG_TILDE2] = ACTIONS(1533), + [anon_sym_like2] = ACTIONS(1533), + [anon_sym_not_DASHlike2] = ACTIONS(1533), + [anon_sym_STAR_STAR2] = ACTIONS(1533), + [anon_sym_PLUS_PLUS2] = ACTIONS(1533), + [anon_sym_SLASH2] = ACTIONS(1533), + [anon_sym_mod2] = ACTIONS(1533), + [anon_sym_SLASH_SLASH2] = ACTIONS(1533), + [anon_sym_PLUS2] = ACTIONS(1533), + [anon_sym_bit_DASHshl2] = ACTIONS(1533), + [anon_sym_bit_DASHshr2] = ACTIONS(1533), + [anon_sym_bit_DASHand2] = ACTIONS(1533), + [anon_sym_bit_DASHxor2] = ACTIONS(1533), + [anon_sym_bit_DASHor2] = ACTIONS(1533), + [anon_sym_DOT_DOT2] = ACTIONS(1533), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1535), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1535), + [sym__entry_separator] = ACTIONS(1535), + [anon_sym_COLON2] = ACTIONS(1533), + [anon_sym_DOT2] = ACTIONS(1533), + [anon_sym_err_GT] = ACTIONS(1533), + [anon_sym_out_GT] = ACTIONS(1533), + [anon_sym_e_GT] = ACTIONS(1533), + [anon_sym_o_GT] = ACTIONS(1533), + [anon_sym_err_PLUSout_GT] = ACTIONS(1533), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1533), + [anon_sym_o_PLUSe_GT] = ACTIONS(1533), + [anon_sym_e_PLUSo_GT] = ACTIONS(1533), + [anon_sym_err_GT_GT] = ACTIONS(1533), + [anon_sym_out_GT_GT] = ACTIONS(1533), + [anon_sym_e_GT_GT] = ACTIONS(1533), + [anon_sym_o_GT_GT] = ACTIONS(1533), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1533), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1533), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1533), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1533), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(354)] = { - [aux_sym__repeat_newline] = STATE(4123), - [sym_expr_parenthesized] = STATE(4058), - [sym__spread_parenthesized] = STATE(4700), - [sym_val_range] = STATE(4730), - [sym__val_range] = STATE(4544), - [sym__value] = STATE(4730), - [sym_val_nothing] = STATE(4604), - [sym_val_bool] = STATE(4358), - [sym__spread_variable] = STATE(4795), - [sym_val_variable] = STATE(3879), - [sym_val_cellpath] = STATE(4604), - [sym_val_number] = STATE(4604), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(4361), - [sym_val_duration] = STATE(4604), - [sym_val_filesize] = STATE(4604), - [sym_val_binary] = STATE(4604), - [sym_val_string] = STATE(4604), - [sym__raw_str] = STATE(3638), - [sym__str_double_quotes] = STATE(3638), - [sym__str_single_quotes] = STATE(3638), - [sym__str_back_ticks] = STATE(3638), - [sym_val_interpolated] = STATE(4604), - [sym__inter_single_quotes] = STATE(4595), + [aux_sym__repeat_newline] = STATE(4124), + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), [sym__inter_double_quotes] = STATE(4596), - [sym_val_list] = STATE(4558), - [sym__spread_list] = STATE(4700), - [sym_list_body] = STATE(4876), - [sym_val_entry] = STATE(4576), - [sym_val_record] = STATE(4604), - [sym__table_head] = STATE(3691), - [sym_val_table] = STATE(4604), - [sym_val_closure] = STATE(4604), + [sym_val_list] = STATE(4555), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(4869), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym__table_head] = STATE(3734), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), [sym__unquoted_in_list] = STATE(4171), - [sym__unquoted_in_list_with_expr] = STATE(4730), - [sym__unquoted_anonymous_prefix] = STATE(4544), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), [sym_comment] = STATE(354), - [aux_sym__types_body_repeat1] = STATE(458), - [aux_sym_parameter_repeat2] = STATE(4189), - [aux_sym_list_body_repeat1] = STATE(548), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), [anon_sym_true] = ACTIONS(1462), [anon_sym_false] = ACTIONS(1462), [anon_sym_null] = ACTIONS(1464), @@ -75335,7 +75370,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1466), [sym__newline] = ACTIONS(1468), [anon_sym_LBRACK] = ACTIONS(1470), - [anon_sym_RBRACK] = ACTIONS(1533), + [anon_sym_RBRACK] = ACTIONS(1537), [anon_sym_LPAREN] = ACTIONS(1386), [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), @@ -75368,86 +75403,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(355)] = { [sym_comment] = STATE(355), - [anon_sym_EQ] = ACTIONS(1513), - [anon_sym_PLUS_EQ] = ACTIONS(1513), - [anon_sym_DASH_EQ] = ACTIONS(1513), - [anon_sym_STAR_EQ] = ACTIONS(1513), - [anon_sym_SLASH_EQ] = ACTIONS(1513), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1513), - [anon_sym_in] = ACTIONS(1513), - [sym__newline] = ACTIONS(1513), - [anon_sym_SEMI] = ACTIONS(1513), - [anon_sym_PIPE] = ACTIONS(1513), - [anon_sym_err_GT_PIPE] = ACTIONS(1513), - [anon_sym_out_GT_PIPE] = ACTIONS(1513), - [anon_sym_e_GT_PIPE] = ACTIONS(1513), - [anon_sym_o_GT_PIPE] = ACTIONS(1513), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1513), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1513), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1513), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1513), - [anon_sym_GT2] = ACTIONS(1513), - [anon_sym_DASH2] = ACTIONS(1513), - [anon_sym_RBRACE] = ACTIONS(1513), - [anon_sym_STAR2] = ACTIONS(1513), - [anon_sym_and2] = ACTIONS(1513), - [anon_sym_xor2] = ACTIONS(1513), - [anon_sym_or2] = ACTIONS(1513), - [anon_sym_not_DASHin2] = ACTIONS(1513), - [anon_sym_has2] = ACTIONS(1513), - [anon_sym_not_DASHhas2] = ACTIONS(1513), - [anon_sym_starts_DASHwith2] = ACTIONS(1513), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1513), - [anon_sym_ends_DASHwith2] = ACTIONS(1513), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1513), - [anon_sym_EQ_EQ2] = ACTIONS(1513), - [anon_sym_BANG_EQ2] = ACTIONS(1513), - [anon_sym_LT2] = ACTIONS(1513), - [anon_sym_LT_EQ2] = ACTIONS(1513), - [anon_sym_GT_EQ2] = ACTIONS(1513), - [anon_sym_EQ_TILDE2] = ACTIONS(1513), - [anon_sym_BANG_TILDE2] = ACTIONS(1513), - [anon_sym_like2] = ACTIONS(1513), - [anon_sym_not_DASHlike2] = ACTIONS(1513), - [anon_sym_STAR_STAR2] = ACTIONS(1513), - [anon_sym_PLUS_PLUS2] = ACTIONS(1513), - [anon_sym_SLASH2] = ACTIONS(1513), - [anon_sym_mod2] = ACTIONS(1513), - [anon_sym_SLASH_SLASH2] = ACTIONS(1513), - [anon_sym_PLUS2] = ACTIONS(1513), - [anon_sym_bit_DASHshl2] = ACTIONS(1513), - [anon_sym_bit_DASHshr2] = ACTIONS(1513), - [anon_sym_bit_DASHand2] = ACTIONS(1513), - [anon_sym_bit_DASHxor2] = ACTIONS(1513), - [anon_sym_bit_DASHor2] = ACTIONS(1513), - [anon_sym_DOT_DOT2] = ACTIONS(1513), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1515), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1515), - [sym__entry_separator] = ACTIONS(1515), - [anon_sym_COLON2] = ACTIONS(1513), - [anon_sym_QMARK2] = ACTIONS(1513), - [anon_sym_BANG] = ACTIONS(1513), - [anon_sym_DOT2] = ACTIONS(1513), - [anon_sym_err_GT] = ACTIONS(1513), - [anon_sym_out_GT] = ACTIONS(1513), - [anon_sym_e_GT] = ACTIONS(1513), - [anon_sym_o_GT] = ACTIONS(1513), - [anon_sym_err_PLUSout_GT] = ACTIONS(1513), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1513), - [anon_sym_o_PLUSe_GT] = ACTIONS(1513), - [anon_sym_e_PLUSo_GT] = ACTIONS(1513), - [anon_sym_err_GT_GT] = ACTIONS(1513), - [anon_sym_out_GT_GT] = ACTIONS(1513), - [anon_sym_e_GT_GT] = ACTIONS(1513), - [anon_sym_o_GT_GT] = ACTIONS(1513), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1513), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1513), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1513), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1513), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(356)] = { - [sym_comment] = STATE(356), [anon_sym_EQ] = ACTIONS(1517), [anon_sym_PLUS_EQ] = ACTIONS(1517), [anon_sym_DASH_EQ] = ACTIONS(1517), @@ -75526,8 +75481,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1517), [anon_sym_POUND] = ACTIONS(103), }, - [STATE(357)] = { - [sym_comment] = STATE(357), + [STATE(356)] = { + [sym_comment] = STATE(356), [anon_sym_EQ] = ACTIONS(1521), [anon_sym_PLUS_EQ] = ACTIONS(1521), [anon_sym_DASH_EQ] = ACTIONS(1521), @@ -75606,47 +75561,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1521), [anon_sym_POUND] = ACTIONS(103), }, + [STATE(357)] = { + [sym_comment] = STATE(357), + [anon_sym_EQ] = ACTIONS(1525), + [anon_sym_PLUS_EQ] = ACTIONS(1525), + [anon_sym_DASH_EQ] = ACTIONS(1525), + [anon_sym_STAR_EQ] = ACTIONS(1525), + [anon_sym_SLASH_EQ] = ACTIONS(1525), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1525), + [anon_sym_in] = ACTIONS(1525), + [sym__newline] = ACTIONS(1525), + [anon_sym_SEMI] = ACTIONS(1525), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_err_GT_PIPE] = ACTIONS(1525), + [anon_sym_out_GT_PIPE] = ACTIONS(1525), + [anon_sym_e_GT_PIPE] = ACTIONS(1525), + [anon_sym_o_GT_PIPE] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1525), + [anon_sym_GT2] = ACTIONS(1525), + [anon_sym_DASH2] = ACTIONS(1525), + [anon_sym_RBRACE] = ACTIONS(1525), + [anon_sym_STAR2] = ACTIONS(1525), + [anon_sym_and2] = ACTIONS(1525), + [anon_sym_xor2] = ACTIONS(1525), + [anon_sym_or2] = ACTIONS(1525), + [anon_sym_not_DASHin2] = ACTIONS(1525), + [anon_sym_has2] = ACTIONS(1525), + [anon_sym_not_DASHhas2] = ACTIONS(1525), + [anon_sym_starts_DASHwith2] = ACTIONS(1525), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1525), + [anon_sym_ends_DASHwith2] = ACTIONS(1525), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1525), + [anon_sym_EQ_EQ2] = ACTIONS(1525), + [anon_sym_BANG_EQ2] = ACTIONS(1525), + [anon_sym_LT2] = ACTIONS(1525), + [anon_sym_LT_EQ2] = ACTIONS(1525), + [anon_sym_GT_EQ2] = ACTIONS(1525), + [anon_sym_EQ_TILDE2] = ACTIONS(1525), + [anon_sym_BANG_TILDE2] = ACTIONS(1525), + [anon_sym_like2] = ACTIONS(1525), + [anon_sym_not_DASHlike2] = ACTIONS(1525), + [anon_sym_STAR_STAR2] = ACTIONS(1525), + [anon_sym_PLUS_PLUS2] = ACTIONS(1525), + [anon_sym_SLASH2] = ACTIONS(1525), + [anon_sym_mod2] = ACTIONS(1525), + [anon_sym_SLASH_SLASH2] = ACTIONS(1525), + [anon_sym_PLUS2] = ACTIONS(1525), + [anon_sym_bit_DASHshl2] = ACTIONS(1525), + [anon_sym_bit_DASHshr2] = ACTIONS(1525), + [anon_sym_bit_DASHand2] = ACTIONS(1525), + [anon_sym_bit_DASHxor2] = ACTIONS(1525), + [anon_sym_bit_DASHor2] = ACTIONS(1525), + [anon_sym_DOT_DOT2] = ACTIONS(1525), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1527), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1527), + [sym__entry_separator] = ACTIONS(1527), + [anon_sym_COLON2] = ACTIONS(1525), + [anon_sym_QMARK2] = ACTIONS(1525), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_DOT2] = ACTIONS(1525), + [anon_sym_err_GT] = ACTIONS(1525), + [anon_sym_out_GT] = ACTIONS(1525), + [anon_sym_e_GT] = ACTIONS(1525), + [anon_sym_o_GT] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT] = ACTIONS(1525), + [anon_sym_err_GT_GT] = ACTIONS(1525), + [anon_sym_out_GT_GT] = ACTIONS(1525), + [anon_sym_e_GT_GT] = ACTIONS(1525), + [anon_sym_o_GT_GT] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1525), + [anon_sym_POUND] = ACTIONS(103), + }, [STATE(358)] = { - [aux_sym__repeat_newline] = STATE(4123), - [sym_expr_parenthesized] = STATE(4058), - [sym__spread_parenthesized] = STATE(4700), - [sym_val_range] = STATE(4730), - [sym__val_range] = STATE(4544), - [sym__value] = STATE(4730), - [sym_val_nothing] = STATE(4604), - [sym_val_bool] = STATE(4358), - [sym__spread_variable] = STATE(4795), - [sym_val_variable] = STATE(3879), - [sym_val_cellpath] = STATE(4604), - [sym_val_number] = STATE(4604), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(4361), - [sym_val_duration] = STATE(4604), - [sym_val_filesize] = STATE(4604), - [sym_val_binary] = STATE(4604), - [sym_val_string] = STATE(4604), - [sym__raw_str] = STATE(3638), - [sym__str_double_quotes] = STATE(3638), - [sym__str_single_quotes] = STATE(3638), - [sym__str_back_ticks] = STATE(3638), - [sym_val_interpolated] = STATE(4604), - [sym__inter_single_quotes] = STATE(4595), + [aux_sym__repeat_newline] = STATE(4124), + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), [sym__inter_double_quotes] = STATE(4596), - [sym_val_list] = STATE(4558), - [sym__spread_list] = STATE(4700), - [sym_list_body] = STATE(5089), - [sym_val_entry] = STATE(4576), - [sym_val_record] = STATE(4604), - [sym__table_head] = STATE(3717), - [sym_val_table] = STATE(4604), - [sym_val_closure] = STATE(4604), + [sym_val_list] = STATE(4555), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(5084), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym__table_head] = STATE(3719), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), [sym__unquoted_in_list] = STATE(4171), - [sym__unquoted_in_list_with_expr] = STATE(4730), - [sym__unquoted_anonymous_prefix] = STATE(4544), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), [sym_comment] = STATE(358), - [aux_sym__types_body_repeat1] = STATE(458), - [aux_sym_parameter_repeat2] = STATE(4189), - [aux_sym_list_body_repeat1] = STATE(548), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), [anon_sym_true] = ACTIONS(1462), [anon_sym_false] = ACTIONS(1462), [anon_sym_null] = ACTIONS(1464), @@ -75655,7 +75690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1466), [sym__newline] = ACTIONS(1468), [anon_sym_LBRACK] = ACTIONS(1470), - [anon_sym_RBRACK] = ACTIONS(1535), + [anon_sym_RBRACK] = ACTIONS(1539), [anon_sym_LPAREN] = ACTIONS(1386), [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), @@ -75687,46 +75722,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1426), }, [STATE(359)] = { - [aux_sym__repeat_newline] = STATE(4123), - [sym_expr_parenthesized] = STATE(4058), - [sym__spread_parenthesized] = STATE(4700), - [sym_val_range] = STATE(4730), - [sym__val_range] = STATE(4544), - [sym__value] = STATE(4730), - [sym_val_nothing] = STATE(4604), - [sym_val_bool] = STATE(4358), - [sym__spread_variable] = STATE(4795), - [sym_val_variable] = STATE(3879), - [sym_val_cellpath] = STATE(4604), - [sym_val_number] = STATE(4604), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(4361), - [sym_val_duration] = STATE(4604), - [sym_val_filesize] = STATE(4604), - [sym_val_binary] = STATE(4604), - [sym_val_string] = STATE(4604), - [sym__raw_str] = STATE(3638), - [sym__str_double_quotes] = STATE(3638), - [sym__str_single_quotes] = STATE(3638), - [sym__str_back_ticks] = STATE(3638), - [sym_val_interpolated] = STATE(4604), - [sym__inter_single_quotes] = STATE(4595), + [aux_sym__repeat_newline] = STATE(4124), + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), [sym__inter_double_quotes] = STATE(4596), - [sym_val_list] = STATE(4558), - [sym__spread_list] = STATE(4700), - [sym_list_body] = STATE(5152), - [sym_val_entry] = STATE(4576), - [sym_val_record] = STATE(4604), - [sym__table_head] = STATE(3724), - [sym_val_table] = STATE(4604), - [sym_val_closure] = STATE(4604), + [sym_val_list] = STATE(4555), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(5143), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym__table_head] = STATE(3747), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), [sym__unquoted_in_list] = STATE(4171), - [sym__unquoted_in_list_with_expr] = STATE(4730), - [sym__unquoted_anonymous_prefix] = STATE(4544), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), [sym_comment] = STATE(359), - [aux_sym__types_body_repeat1] = STATE(458), - [aux_sym_parameter_repeat2] = STATE(4189), - [aux_sym_list_body_repeat1] = STATE(548), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), [anon_sym_true] = ACTIONS(1462), [anon_sym_false] = ACTIONS(1462), [anon_sym_null] = ACTIONS(1464), @@ -75735,7 +75770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1466), [sym__newline] = ACTIONS(1468), [anon_sym_LBRACK] = ACTIONS(1470), - [anon_sym_RBRACK] = ACTIONS(1537), + [anon_sym_RBRACK] = ACTIONS(1541), [anon_sym_LPAREN] = ACTIONS(1386), [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), @@ -75767,46 +75802,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1426), }, [STATE(360)] = { - [aux_sym__repeat_newline] = STATE(4123), - [sym_expr_parenthesized] = STATE(4058), - [sym__spread_parenthesized] = STATE(4700), - [sym_val_range] = STATE(4730), - [sym__val_range] = STATE(4544), - [sym__value] = STATE(4730), - [sym_val_nothing] = STATE(4604), - [sym_val_bool] = STATE(4358), - [sym__spread_variable] = STATE(4795), - [sym_val_variable] = STATE(3879), - [sym_val_cellpath] = STATE(4604), - [sym_val_number] = STATE(4604), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(4361), - [sym_val_duration] = STATE(4604), - [sym_val_filesize] = STATE(4604), - [sym_val_binary] = STATE(4604), - [sym_val_string] = STATE(4604), - [sym__raw_str] = STATE(3638), - [sym__str_double_quotes] = STATE(3638), - [sym__str_single_quotes] = STATE(3638), - [sym__str_back_ticks] = STATE(3638), - [sym_val_interpolated] = STATE(4604), - [sym__inter_single_quotes] = STATE(4595), + [aux_sym__repeat_newline] = STATE(4124), + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), [sym__inter_double_quotes] = STATE(4596), - [sym_val_list] = STATE(4558), - [sym__spread_list] = STATE(4700), - [sym_list_body] = STATE(5258), - [sym_val_entry] = STATE(4576), - [sym_val_record] = STATE(4604), - [sym__table_head] = STATE(3727), - [sym_val_table] = STATE(4604), - [sym_val_closure] = STATE(4604), + [sym_val_list] = STATE(4555), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(5253), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym__table_head] = STATE(3760), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), [sym__unquoted_in_list] = STATE(4171), - [sym__unquoted_in_list_with_expr] = STATE(4730), - [sym__unquoted_anonymous_prefix] = STATE(4544), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), [sym_comment] = STATE(360), - [aux_sym__types_body_repeat1] = STATE(458), - [aux_sym_parameter_repeat2] = STATE(4189), - [aux_sym_list_body_repeat1] = STATE(548), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), [anon_sym_true] = ACTIONS(1462), [anon_sym_false] = ACTIONS(1462), [anon_sym_null] = ACTIONS(1464), @@ -75815,7 +75850,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1466), [sym__newline] = ACTIONS(1468), [anon_sym_LBRACK] = ACTIONS(1470), - [anon_sym_RBRACK] = ACTIONS(1539), + [anon_sym_RBRACK] = ACTIONS(1543), [anon_sym_LPAREN] = ACTIONS(1386), [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), @@ -75847,46 +75882,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1426), }, [STATE(361)] = { - [aux_sym__repeat_newline] = STATE(4123), - [sym_expr_parenthesized] = STATE(4058), - [sym__spread_parenthesized] = STATE(4700), - [sym_val_range] = STATE(4730), - [sym__val_range] = STATE(4544), - [sym__value] = STATE(4730), - [sym_val_nothing] = STATE(4604), - [sym_val_bool] = STATE(4358), - [sym__spread_variable] = STATE(4795), - [sym_val_variable] = STATE(3879), - [sym_val_cellpath] = STATE(4604), - [sym_val_number] = STATE(4604), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(4361), - [sym_val_duration] = STATE(4604), - [sym_val_filesize] = STATE(4604), - [sym_val_binary] = STATE(4604), - [sym_val_string] = STATE(4604), - [sym__raw_str] = STATE(3638), - [sym__str_double_quotes] = STATE(3638), - [sym__str_single_quotes] = STATE(3638), - [sym__str_back_ticks] = STATE(3638), - [sym_val_interpolated] = STATE(4604), - [sym__inter_single_quotes] = STATE(4595), + [aux_sym__repeat_newline] = STATE(4124), + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), [sym__inter_double_quotes] = STATE(4596), - [sym_val_list] = STATE(4558), - [sym__spread_list] = STATE(4700), - [sym_list_body] = STATE(4851), - [sym_val_entry] = STATE(4576), - [sym_val_record] = STATE(4604), - [sym__table_head] = STATE(3729), - [sym_val_table] = STATE(4604), - [sym_val_closure] = STATE(4604), + [sym_val_list] = STATE(4555), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(4850), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym__table_head] = STATE(3781), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), [sym__unquoted_in_list] = STATE(4171), - [sym__unquoted_in_list_with_expr] = STATE(4730), - [sym__unquoted_anonymous_prefix] = STATE(4544), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), [sym_comment] = STATE(361), - [aux_sym__types_body_repeat1] = STATE(458), - [aux_sym_parameter_repeat2] = STATE(4189), - [aux_sym_list_body_repeat1] = STATE(548), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), [anon_sym_true] = ACTIONS(1462), [anon_sym_false] = ACTIONS(1462), [anon_sym_null] = ACTIONS(1464), @@ -75895,7 +75930,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1466), [sym__newline] = ACTIONS(1468), [anon_sym_LBRACK] = ACTIONS(1470), - [anon_sym_RBRACK] = ACTIONS(1541), + [anon_sym_RBRACK] = ACTIONS(1545), [anon_sym_LPAREN] = ACTIONS(1386), [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), @@ -75927,46 +75962,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1426), }, [STATE(362)] = { - [aux_sym__repeat_newline] = STATE(4123), - [sym_expr_parenthesized] = STATE(4058), - [sym__spread_parenthesized] = STATE(4700), - [sym_val_range] = STATE(4730), - [sym__val_range] = STATE(4544), - [sym__value] = STATE(4730), - [sym_val_nothing] = STATE(4604), - [sym_val_bool] = STATE(4358), - [sym__spread_variable] = STATE(4795), - [sym_val_variable] = STATE(3879), - [sym_val_cellpath] = STATE(4604), - [sym_val_number] = STATE(4604), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(4361), - [sym_val_duration] = STATE(4604), - [sym_val_filesize] = STATE(4604), - [sym_val_binary] = STATE(4604), - [sym_val_string] = STATE(4604), - [sym__raw_str] = STATE(3638), - [sym__str_double_quotes] = STATE(3638), - [sym__str_single_quotes] = STATE(3638), - [sym__str_back_ticks] = STATE(3638), - [sym_val_interpolated] = STATE(4604), - [sym__inter_single_quotes] = STATE(4595), + [aux_sym__repeat_newline] = STATE(4124), + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), [sym__inter_double_quotes] = STATE(4596), - [sym_val_list] = STATE(4558), - [sym__spread_list] = STATE(4700), - [sym_list_body] = STATE(5095), - [sym_val_entry] = STATE(4576), - [sym_val_record] = STATE(4604), - [sym__table_head] = STATE(3767), - [sym_val_table] = STATE(4604), - [sym_val_closure] = STATE(4604), + [sym_val_list] = STATE(4555), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(5094), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym__table_head] = STATE(3764), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), [sym__unquoted_in_list] = STATE(4171), - [sym__unquoted_in_list_with_expr] = STATE(4730), - [sym__unquoted_anonymous_prefix] = STATE(4544), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), [sym_comment] = STATE(362), - [aux_sym__types_body_repeat1] = STATE(458), - [aux_sym_parameter_repeat2] = STATE(4189), - [aux_sym_list_body_repeat1] = STATE(548), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), [anon_sym_true] = ACTIONS(1462), [anon_sym_false] = ACTIONS(1462), [anon_sym_null] = ACTIONS(1464), @@ -75975,7 +76010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1466), [sym__newline] = ACTIONS(1468), [anon_sym_LBRACK] = ACTIONS(1470), - [anon_sym_RBRACK] = ACTIONS(1543), + [anon_sym_RBRACK] = ACTIONS(1547), [anon_sym_LPAREN] = ACTIONS(1386), [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), @@ -76007,46 +76042,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1426), }, [STATE(363)] = { - [aux_sym__repeat_newline] = STATE(4123), - [sym_expr_parenthesized] = STATE(4058), - [sym__spread_parenthesized] = STATE(4700), - [sym_val_range] = STATE(4730), - [sym__val_range] = STATE(4544), - [sym__value] = STATE(4730), - [sym_val_nothing] = STATE(4604), - [sym_val_bool] = STATE(4358), - [sym__spread_variable] = STATE(4795), - [sym_val_variable] = STATE(3879), - [sym_val_cellpath] = STATE(4604), - [sym_val_number] = STATE(4604), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(4361), - [sym_val_duration] = STATE(4604), - [sym_val_filesize] = STATE(4604), - [sym_val_binary] = STATE(4604), - [sym_val_string] = STATE(4604), - [sym__raw_str] = STATE(3638), - [sym__str_double_quotes] = STATE(3638), - [sym__str_single_quotes] = STATE(3638), - [sym__str_back_ticks] = STATE(3638), - [sym_val_interpolated] = STATE(4604), - [sym__inter_single_quotes] = STATE(4595), + [aux_sym__repeat_newline] = STATE(4124), + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), [sym__inter_double_quotes] = STATE(4596), - [sym_val_list] = STATE(4558), - [sym__spread_list] = STATE(4700), - [sym_list_body] = STATE(5065), - [sym_val_entry] = STATE(4576), - [sym_val_record] = STATE(4604), - [sym__table_head] = STATE(3734), - [sym_val_table] = STATE(4604), - [sym_val_closure] = STATE(4604), + [sym_val_list] = STATE(4555), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(5062), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym__table_head] = STATE(3756), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), [sym__unquoted_in_list] = STATE(4171), - [sym__unquoted_in_list_with_expr] = STATE(4730), - [sym__unquoted_anonymous_prefix] = STATE(4544), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), [sym_comment] = STATE(363), - [aux_sym__types_body_repeat1] = STATE(458), - [aux_sym_parameter_repeat2] = STATE(4189), - [aux_sym_list_body_repeat1] = STATE(548), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), [anon_sym_true] = ACTIONS(1462), [anon_sym_false] = ACTIONS(1462), [anon_sym_null] = ACTIONS(1464), @@ -76055,7 +76090,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1466), [sym__newline] = ACTIONS(1468), [anon_sym_LBRACK] = ACTIONS(1470), - [anon_sym_RBRACK] = ACTIONS(1545), + [anon_sym_RBRACK] = ACTIONS(1549), [anon_sym_LPAREN] = ACTIONS(1386), [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), @@ -76087,46 +76122,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1426), }, [STATE(364)] = { - [aux_sym__repeat_newline] = STATE(4123), - [sym_expr_parenthesized] = STATE(4058), - [sym__spread_parenthesized] = STATE(4700), - [sym_val_range] = STATE(4730), - [sym__val_range] = STATE(4544), - [sym__value] = STATE(4730), - [sym_val_nothing] = STATE(4604), - [sym_val_bool] = STATE(4358), - [sym__spread_variable] = STATE(4795), - [sym_val_variable] = STATE(3879), - [sym_val_cellpath] = STATE(4604), - [sym_val_number] = STATE(4604), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(4361), - [sym_val_duration] = STATE(4604), - [sym_val_filesize] = STATE(4604), - [sym_val_binary] = STATE(4604), - [sym_val_string] = STATE(4604), - [sym__raw_str] = STATE(3638), - [sym__str_double_quotes] = STATE(3638), - [sym__str_single_quotes] = STATE(3638), - [sym__str_back_ticks] = STATE(3638), - [sym_val_interpolated] = STATE(4604), - [sym__inter_single_quotes] = STATE(4595), + [aux_sym__repeat_newline] = STATE(4124), + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), [sym__inter_double_quotes] = STATE(4596), - [sym_val_list] = STATE(4558), - [sym__spread_list] = STATE(4700), - [sym_list_body] = STATE(5110), - [sym_val_entry] = STATE(4576), - [sym_val_record] = STATE(4604), - [sym__table_head] = STATE(3769), - [sym_val_table] = STATE(4604), - [sym_val_closure] = STATE(4604), + [sym_val_list] = STATE(4555), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(5109), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym__table_head] = STATE(3766), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), [sym__unquoted_in_list] = STATE(4171), - [sym__unquoted_in_list_with_expr] = STATE(4730), - [sym__unquoted_anonymous_prefix] = STATE(4544), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), [sym_comment] = STATE(364), - [aux_sym__types_body_repeat1] = STATE(458), - [aux_sym_parameter_repeat2] = STATE(4189), - [aux_sym_list_body_repeat1] = STATE(548), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), [anon_sym_true] = ACTIONS(1462), [anon_sym_false] = ACTIONS(1462), [anon_sym_null] = ACTIONS(1464), @@ -76135,7 +76170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1466), [sym__newline] = ACTIONS(1468), [anon_sym_LBRACK] = ACTIONS(1470), - [anon_sym_RBRACK] = ACTIONS(1547), + [anon_sym_RBRACK] = ACTIONS(1551), [anon_sym_LPAREN] = ACTIONS(1386), [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), @@ -76167,248 +76202,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1426), }, [STATE(365)] = { - [sym_path] = STATE(367), + [sym_path] = STATE(346), [sym_comment] = STATE(365), [aux_sym__where_predicate_lhs_repeat1] = STATE(366), - [anon_sym_EQ] = ACTIONS(1490), - [anon_sym_PLUS_EQ] = ACTIONS(1490), - [anon_sym_DASH_EQ] = ACTIONS(1490), - [anon_sym_STAR_EQ] = ACTIONS(1490), - [anon_sym_SLASH_EQ] = ACTIONS(1490), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1490), - [anon_sym_in] = ACTIONS(1490), - [sym__newline] = ACTIONS(1490), - [anon_sym_SEMI] = ACTIONS(1490), - [anon_sym_PIPE] = ACTIONS(1490), - [anon_sym_err_GT_PIPE] = ACTIONS(1490), - [anon_sym_out_GT_PIPE] = ACTIONS(1490), - [anon_sym_e_GT_PIPE] = ACTIONS(1490), - [anon_sym_o_GT_PIPE] = ACTIONS(1490), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1490), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1490), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1490), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1490), - [anon_sym_GT2] = ACTIONS(1490), - [anon_sym_DASH2] = ACTIONS(1490), - [anon_sym_RBRACE] = ACTIONS(1490), - [anon_sym_STAR2] = ACTIONS(1490), - [anon_sym_and2] = ACTIONS(1490), - [anon_sym_xor2] = ACTIONS(1490), - [anon_sym_or2] = ACTIONS(1490), - [anon_sym_not_DASHin2] = ACTIONS(1490), - [anon_sym_has2] = ACTIONS(1490), - [anon_sym_not_DASHhas2] = ACTIONS(1490), - [anon_sym_starts_DASHwith2] = ACTIONS(1490), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1490), - [anon_sym_ends_DASHwith2] = ACTIONS(1490), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1490), - [anon_sym_EQ_EQ2] = ACTIONS(1490), - [anon_sym_BANG_EQ2] = ACTIONS(1490), - [anon_sym_LT2] = ACTIONS(1490), - [anon_sym_LT_EQ2] = ACTIONS(1490), - [anon_sym_GT_EQ2] = ACTIONS(1490), - [anon_sym_EQ_TILDE2] = ACTIONS(1490), - [anon_sym_BANG_TILDE2] = ACTIONS(1490), - [anon_sym_like2] = ACTIONS(1490), - [anon_sym_not_DASHlike2] = ACTIONS(1490), - [anon_sym_STAR_STAR2] = ACTIONS(1490), - [anon_sym_PLUS_PLUS2] = ACTIONS(1490), - [anon_sym_SLASH2] = ACTIONS(1490), - [anon_sym_mod2] = ACTIONS(1490), - [anon_sym_SLASH_SLASH2] = ACTIONS(1490), - [anon_sym_PLUS2] = ACTIONS(1490), - [anon_sym_bit_DASHshl2] = ACTIONS(1490), - [anon_sym_bit_DASHshr2] = ACTIONS(1490), - [anon_sym_bit_DASHand2] = ACTIONS(1490), - [anon_sym_bit_DASHxor2] = ACTIONS(1490), - [anon_sym_bit_DASHor2] = ACTIONS(1490), - [anon_sym_DOT_DOT2] = ACTIONS(1490), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1492), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1492), - [sym__entry_separator] = ACTIONS(1492), - [anon_sym_COLON2] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_PLUS_EQ] = ACTIONS(1492), + [anon_sym_DASH_EQ] = ACTIONS(1492), + [anon_sym_STAR_EQ] = ACTIONS(1492), + [anon_sym_SLASH_EQ] = ACTIONS(1492), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1492), + [anon_sym_in] = ACTIONS(1492), + [sym__newline] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_err_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_GT_PIPE] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), + [anon_sym_GT2] = ACTIONS(1492), + [anon_sym_DASH2] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_STAR2] = ACTIONS(1492), + [anon_sym_and2] = ACTIONS(1492), + [anon_sym_xor2] = ACTIONS(1492), + [anon_sym_or2] = ACTIONS(1492), + [anon_sym_not_DASHin2] = ACTIONS(1492), + [anon_sym_has2] = ACTIONS(1492), + [anon_sym_not_DASHhas2] = ACTIONS(1492), + [anon_sym_starts_DASHwith2] = ACTIONS(1492), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1492), + [anon_sym_ends_DASHwith2] = ACTIONS(1492), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1492), + [anon_sym_EQ_EQ2] = ACTIONS(1492), + [anon_sym_BANG_EQ2] = ACTIONS(1492), + [anon_sym_LT2] = ACTIONS(1492), + [anon_sym_LT_EQ2] = ACTIONS(1492), + [anon_sym_GT_EQ2] = ACTIONS(1492), + [anon_sym_EQ_TILDE2] = ACTIONS(1492), + [anon_sym_BANG_TILDE2] = ACTIONS(1492), + [anon_sym_like2] = ACTIONS(1492), + [anon_sym_not_DASHlike2] = ACTIONS(1492), + [anon_sym_STAR_STAR2] = ACTIONS(1492), + [anon_sym_PLUS_PLUS2] = ACTIONS(1492), + [anon_sym_SLASH2] = ACTIONS(1492), + [anon_sym_mod2] = ACTIONS(1492), + [anon_sym_SLASH_SLASH2] = ACTIONS(1492), + [anon_sym_PLUS2] = ACTIONS(1492), + [anon_sym_bit_DASHshl2] = ACTIONS(1492), + [anon_sym_bit_DASHshr2] = ACTIONS(1492), + [anon_sym_bit_DASHand2] = ACTIONS(1492), + [anon_sym_bit_DASHxor2] = ACTIONS(1492), + [anon_sym_bit_DASHor2] = ACTIONS(1492), + [anon_sym_DOT_DOT2] = ACTIONS(1492), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), + [sym__entry_separator] = ACTIONS(1494), + [anon_sym_COLON2] = ACTIONS(1492), [anon_sym_DOT2] = ACTIONS(1456), - [anon_sym_err_GT] = ACTIONS(1490), - [anon_sym_out_GT] = ACTIONS(1490), - [anon_sym_e_GT] = ACTIONS(1490), - [anon_sym_o_GT] = ACTIONS(1490), - [anon_sym_err_PLUSout_GT] = ACTIONS(1490), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1490), - [anon_sym_o_PLUSe_GT] = ACTIONS(1490), - [anon_sym_e_PLUSo_GT] = ACTIONS(1490), - [anon_sym_err_GT_GT] = ACTIONS(1490), - [anon_sym_out_GT_GT] = ACTIONS(1490), - [anon_sym_e_GT_GT] = ACTIONS(1490), - [anon_sym_o_GT_GT] = ACTIONS(1490), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1490), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1490), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1490), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1490), + [anon_sym_err_GT] = ACTIONS(1492), + [anon_sym_out_GT] = ACTIONS(1492), + [anon_sym_e_GT] = ACTIONS(1492), + [anon_sym_o_GT] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT] = ACTIONS(1492), + [anon_sym_err_GT_GT] = ACTIONS(1492), + [anon_sym_out_GT_GT] = ACTIONS(1492), + [anon_sym_e_GT_GT] = ACTIONS(1492), + [anon_sym_o_GT_GT] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), [anon_sym_POUND] = ACTIONS(103), }, [STATE(366)] = { - [sym_path] = STATE(367), + [sym_path] = STATE(346), [sym_comment] = STATE(366), [aux_sym__where_predicate_lhs_repeat1] = STATE(366), - [anon_sym_EQ] = ACTIONS(1494), - [anon_sym_PLUS_EQ] = ACTIONS(1494), - [anon_sym_DASH_EQ] = ACTIONS(1494), - [anon_sym_STAR_EQ] = ACTIONS(1494), - [anon_sym_SLASH_EQ] = ACTIONS(1494), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1494), - [anon_sym_in] = ACTIONS(1494), - [sym__newline] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym_PIPE] = ACTIONS(1494), - [anon_sym_err_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_GT_PIPE] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1494), - [anon_sym_GT2] = ACTIONS(1494), - [anon_sym_DASH2] = ACTIONS(1494), - [anon_sym_RBRACE] = ACTIONS(1494), - [anon_sym_STAR2] = ACTIONS(1494), - [anon_sym_and2] = ACTIONS(1494), - [anon_sym_xor2] = ACTIONS(1494), - [anon_sym_or2] = ACTIONS(1494), - [anon_sym_not_DASHin2] = ACTIONS(1494), - [anon_sym_has2] = ACTIONS(1494), - [anon_sym_not_DASHhas2] = ACTIONS(1494), - [anon_sym_starts_DASHwith2] = ACTIONS(1494), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1494), - [anon_sym_ends_DASHwith2] = ACTIONS(1494), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1494), - [anon_sym_EQ_EQ2] = ACTIONS(1494), - [anon_sym_BANG_EQ2] = ACTIONS(1494), - [anon_sym_LT2] = ACTIONS(1494), - [anon_sym_LT_EQ2] = ACTIONS(1494), - [anon_sym_GT_EQ2] = ACTIONS(1494), - [anon_sym_EQ_TILDE2] = ACTIONS(1494), - [anon_sym_BANG_TILDE2] = ACTIONS(1494), - [anon_sym_like2] = ACTIONS(1494), - [anon_sym_not_DASHlike2] = ACTIONS(1494), - [anon_sym_STAR_STAR2] = ACTIONS(1494), - [anon_sym_PLUS_PLUS2] = ACTIONS(1494), - [anon_sym_SLASH2] = ACTIONS(1494), - [anon_sym_mod2] = ACTIONS(1494), - [anon_sym_SLASH_SLASH2] = ACTIONS(1494), - [anon_sym_PLUS2] = ACTIONS(1494), - [anon_sym_bit_DASHshl2] = ACTIONS(1494), - [anon_sym_bit_DASHshr2] = ACTIONS(1494), - [anon_sym_bit_DASHand2] = ACTIONS(1494), - [anon_sym_bit_DASHxor2] = ACTIONS(1494), - [anon_sym_bit_DASHor2] = ACTIONS(1494), - [anon_sym_DOT_DOT2] = ACTIONS(1494), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1496), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1496), - [sym__entry_separator] = ACTIONS(1496), - [anon_sym_COLON2] = ACTIONS(1494), - [anon_sym_DOT2] = ACTIONS(1549), - [anon_sym_err_GT] = ACTIONS(1494), - [anon_sym_out_GT] = ACTIONS(1494), - [anon_sym_e_GT] = ACTIONS(1494), - [anon_sym_o_GT] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT] = ACTIONS(1494), - [anon_sym_err_GT_GT] = ACTIONS(1494), - [anon_sym_out_GT_GT] = ACTIONS(1494), - [anon_sym_e_GT_GT] = ACTIONS(1494), - [anon_sym_o_GT_GT] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1494), + [anon_sym_EQ] = ACTIONS(1496), + [anon_sym_PLUS_EQ] = ACTIONS(1496), + [anon_sym_DASH_EQ] = ACTIONS(1496), + [anon_sym_STAR_EQ] = ACTIONS(1496), + [anon_sym_SLASH_EQ] = ACTIONS(1496), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1496), + [anon_sym_in] = ACTIONS(1496), + [sym__newline] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym_PIPE] = ACTIONS(1496), + [anon_sym_err_GT_PIPE] = ACTIONS(1496), + [anon_sym_out_GT_PIPE] = ACTIONS(1496), + [anon_sym_e_GT_PIPE] = ACTIONS(1496), + [anon_sym_o_GT_PIPE] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1496), + [anon_sym_GT2] = ACTIONS(1496), + [anon_sym_DASH2] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1496), + [anon_sym_STAR2] = ACTIONS(1496), + [anon_sym_and2] = ACTIONS(1496), + [anon_sym_xor2] = ACTIONS(1496), + [anon_sym_or2] = ACTIONS(1496), + [anon_sym_not_DASHin2] = ACTIONS(1496), + [anon_sym_has2] = ACTIONS(1496), + [anon_sym_not_DASHhas2] = ACTIONS(1496), + [anon_sym_starts_DASHwith2] = ACTIONS(1496), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1496), + [anon_sym_ends_DASHwith2] = ACTIONS(1496), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1496), + [anon_sym_EQ_EQ2] = ACTIONS(1496), + [anon_sym_BANG_EQ2] = ACTIONS(1496), + [anon_sym_LT2] = ACTIONS(1496), + [anon_sym_LT_EQ2] = ACTIONS(1496), + [anon_sym_GT_EQ2] = ACTIONS(1496), + [anon_sym_EQ_TILDE2] = ACTIONS(1496), + [anon_sym_BANG_TILDE2] = ACTIONS(1496), + [anon_sym_like2] = ACTIONS(1496), + [anon_sym_not_DASHlike2] = ACTIONS(1496), + [anon_sym_STAR_STAR2] = ACTIONS(1496), + [anon_sym_PLUS_PLUS2] = ACTIONS(1496), + [anon_sym_SLASH2] = ACTIONS(1496), + [anon_sym_mod2] = ACTIONS(1496), + [anon_sym_SLASH_SLASH2] = ACTIONS(1496), + [anon_sym_PLUS2] = ACTIONS(1496), + [anon_sym_bit_DASHshl2] = ACTIONS(1496), + [anon_sym_bit_DASHshr2] = ACTIONS(1496), + [anon_sym_bit_DASHand2] = ACTIONS(1496), + [anon_sym_bit_DASHxor2] = ACTIONS(1496), + [anon_sym_bit_DASHor2] = ACTIONS(1496), + [anon_sym_DOT_DOT2] = ACTIONS(1496), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1498), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1498), + [sym__entry_separator] = ACTIONS(1498), + [anon_sym_COLON2] = ACTIONS(1496), + [anon_sym_DOT2] = ACTIONS(1553), + [anon_sym_err_GT] = ACTIONS(1496), + [anon_sym_out_GT] = ACTIONS(1496), + [anon_sym_e_GT] = ACTIONS(1496), + [anon_sym_o_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT] = ACTIONS(1496), + [anon_sym_err_GT_GT] = ACTIONS(1496), + [anon_sym_out_GT_GT] = ACTIONS(1496), + [anon_sym_e_GT_GT] = ACTIONS(1496), + [anon_sym_o_GT_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1496), [anon_sym_POUND] = ACTIONS(103), }, [STATE(367)] = { [sym_comment] = STATE(367), - [anon_sym_EQ] = ACTIONS(1552), - [anon_sym_PLUS_EQ] = ACTIONS(1552), - [anon_sym_DASH_EQ] = ACTIONS(1552), - [anon_sym_STAR_EQ] = ACTIONS(1552), - [anon_sym_SLASH_EQ] = ACTIONS(1552), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1552), - [anon_sym_in] = ACTIONS(1552), - [sym__newline] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1552), - [anon_sym_err_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_GT_PIPE] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1552), - [anon_sym_RBRACK] = ACTIONS(1552), - [anon_sym_GT2] = ACTIONS(1552), - [anon_sym_DASH2] = ACTIONS(1552), - [anon_sym_RBRACE] = ACTIONS(1552), - [anon_sym_DOT_DOT] = ACTIONS(1552), - [anon_sym_STAR2] = ACTIONS(1552), - [anon_sym_and2] = ACTIONS(1552), - [anon_sym_xor2] = ACTIONS(1552), - [anon_sym_or2] = ACTIONS(1552), - [anon_sym_not_DASHin2] = ACTIONS(1552), - [anon_sym_has2] = ACTIONS(1552), - [anon_sym_not_DASHhas2] = ACTIONS(1552), - [anon_sym_starts_DASHwith2] = ACTIONS(1552), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1552), - [anon_sym_ends_DASHwith2] = ACTIONS(1552), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1552), - [anon_sym_EQ_EQ2] = ACTIONS(1552), - [anon_sym_BANG_EQ2] = ACTIONS(1552), - [anon_sym_LT2] = ACTIONS(1552), - [anon_sym_LT_EQ2] = ACTIONS(1552), - [anon_sym_GT_EQ2] = ACTIONS(1552), - [anon_sym_EQ_TILDE2] = ACTIONS(1552), - [anon_sym_BANG_TILDE2] = ACTIONS(1552), - [anon_sym_like2] = ACTIONS(1552), - [anon_sym_not_DASHlike2] = ACTIONS(1552), - [anon_sym_STAR_STAR2] = ACTIONS(1552), - [anon_sym_PLUS_PLUS2] = ACTIONS(1552), - [anon_sym_SLASH2] = ACTIONS(1552), - [anon_sym_mod2] = ACTIONS(1552), - [anon_sym_SLASH_SLASH2] = ACTIONS(1552), - [anon_sym_PLUS2] = ACTIONS(1552), - [anon_sym_bit_DASHshl2] = ACTIONS(1552), - [anon_sym_bit_DASHshr2] = ACTIONS(1552), - [anon_sym_bit_DASHand2] = ACTIONS(1552), - [anon_sym_bit_DASHxor2] = ACTIONS(1552), - [anon_sym_bit_DASHor2] = ACTIONS(1552), - [anon_sym_DOT_DOT2] = ACTIONS(1552), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1554), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1554), - [sym__entry_separator] = ACTIONS(1554), - [anon_sym_COLON2] = ACTIONS(1552), - [anon_sym_DOT2] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1552), - [anon_sym_out_GT] = ACTIONS(1552), - [anon_sym_e_GT] = ACTIONS(1552), - [anon_sym_o_GT] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT] = ACTIONS(1552), - [anon_sym_err_GT_GT] = ACTIONS(1552), - [anon_sym_out_GT_GT] = ACTIONS(1552), - [anon_sym_e_GT_GT] = ACTIONS(1552), - [anon_sym_o_GT_GT] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1552), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_PLUS_EQ] = ACTIONS(1505), + [anon_sym_DASH_EQ] = ACTIONS(1505), + [anon_sym_STAR_EQ] = ACTIONS(1505), + [anon_sym_SLASH_EQ] = ACTIONS(1505), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1505), + [anon_sym_in] = ACTIONS(1505), + [sym__newline] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_PIPE] = ACTIONS(1505), + [anon_sym_err_GT_PIPE] = ACTIONS(1505), + [anon_sym_out_GT_PIPE] = ACTIONS(1505), + [anon_sym_e_GT_PIPE] = ACTIONS(1505), + [anon_sym_o_GT_PIPE] = ACTIONS(1505), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1505), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1505), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1505), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1505), + [anon_sym_GT2] = ACTIONS(1505), + [anon_sym_DASH2] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(1505), + [anon_sym_STAR2] = ACTIONS(1505), + [anon_sym_and2] = ACTIONS(1505), + [anon_sym_xor2] = ACTIONS(1505), + [anon_sym_or2] = ACTIONS(1505), + [anon_sym_not_DASHin2] = ACTIONS(1505), + [anon_sym_has2] = ACTIONS(1505), + [anon_sym_not_DASHhas2] = ACTIONS(1505), + [anon_sym_starts_DASHwith2] = ACTIONS(1505), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1505), + [anon_sym_ends_DASHwith2] = ACTIONS(1505), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1505), + [anon_sym_EQ_EQ2] = ACTIONS(1505), + [anon_sym_BANG_EQ2] = ACTIONS(1505), + [anon_sym_LT2] = ACTIONS(1505), + [anon_sym_LT_EQ2] = ACTIONS(1505), + [anon_sym_GT_EQ2] = ACTIONS(1505), + [anon_sym_EQ_TILDE2] = ACTIONS(1505), + [anon_sym_BANG_TILDE2] = ACTIONS(1505), + [anon_sym_like2] = ACTIONS(1505), + [anon_sym_not_DASHlike2] = ACTIONS(1505), + [anon_sym_STAR_STAR2] = ACTIONS(1505), + [anon_sym_PLUS_PLUS2] = ACTIONS(1505), + [anon_sym_SLASH2] = ACTIONS(1505), + [anon_sym_mod2] = ACTIONS(1505), + [anon_sym_SLASH_SLASH2] = ACTIONS(1505), + [anon_sym_PLUS2] = ACTIONS(1505), + [anon_sym_bit_DASHshl2] = ACTIONS(1505), + [anon_sym_bit_DASHshr2] = ACTIONS(1505), + [anon_sym_bit_DASHand2] = ACTIONS(1505), + [anon_sym_bit_DASHxor2] = ACTIONS(1505), + [anon_sym_bit_DASHor2] = ACTIONS(1505), + [anon_sym_DOT_DOT2] = ACTIONS(1505), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1507), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1507), + [sym__entry_separator] = ACTIONS(1507), + [anon_sym_COLON2] = ACTIONS(1505), + [anon_sym_QMARK2] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_DOT2] = ACTIONS(1505), + [anon_sym_err_GT] = ACTIONS(1505), + [anon_sym_out_GT] = ACTIONS(1505), + [anon_sym_e_GT] = ACTIONS(1505), + [anon_sym_o_GT] = ACTIONS(1505), + [anon_sym_err_PLUSout_GT] = ACTIONS(1505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1505), + [anon_sym_o_PLUSe_GT] = ACTIONS(1505), + [anon_sym_e_PLUSo_GT] = ACTIONS(1505), + [anon_sym_err_GT_GT] = ACTIONS(1505), + [anon_sym_out_GT_GT] = ACTIONS(1505), + [anon_sym_e_GT_GT] = ACTIONS(1505), + [anon_sym_o_GT_GT] = ACTIONS(1505), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1505), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1505), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1505), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1505), [anon_sym_POUND] = ACTIONS(103), }, [STATE(368)] = { + [sym_cell_path] = STATE(434), + [sym_path] = STATE(427), [sym_comment] = STATE(368), - [anon_sym_EQ] = ACTIONS(1446), + [aux_sym__where_predicate_lhs_repeat1] = STATE(392), + [ts_builtin_sym_end] = ACTIONS(1446), + [anon_sym_EQ] = ACTIONS(1444), [anon_sym_PLUS_EQ] = ACTIONS(1446), [anon_sym_DASH_EQ] = ACTIONS(1446), [anon_sym_STAR_EQ] = ACTIONS(1446), @@ -76426,10 +76465,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1446), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1446), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1446), - [anon_sym_GT2] = ACTIONS(1446), - [anon_sym_DASH2] = ACTIONS(1446), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_STAR2] = ACTIONS(1446), + [anon_sym_GT2] = ACTIONS(1444), + [anon_sym_DASH2] = ACTIONS(1444), + [anon_sym_STAR2] = ACTIONS(1444), [anon_sym_and2] = ACTIONS(1446), [anon_sym_xor2] = ACTIONS(1446), [anon_sym_or2] = ACTIONS(1446), @@ -76442,7 +76480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1446), [anon_sym_EQ_EQ2] = ACTIONS(1446), [anon_sym_BANG_EQ2] = ACTIONS(1446), - [anon_sym_LT2] = ACTIONS(1446), + [anon_sym_LT2] = ACTIONS(1444), [anon_sym_LT_EQ2] = ACTIONS(1446), [anon_sym_GT_EQ2] = ACTIONS(1446), [anon_sym_EQ_TILDE2] = ACTIONS(1446), @@ -76450,31 +76488,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like2] = ACTIONS(1446), [anon_sym_not_DASHlike2] = ACTIONS(1446), [anon_sym_STAR_STAR2] = ACTIONS(1446), - [anon_sym_PLUS_PLUS2] = ACTIONS(1446), - [anon_sym_SLASH2] = ACTIONS(1446), + [anon_sym_PLUS_PLUS2] = ACTIONS(1444), + [anon_sym_SLASH2] = ACTIONS(1444), [anon_sym_mod2] = ACTIONS(1446), [anon_sym_SLASH_SLASH2] = ACTIONS(1446), - [anon_sym_PLUS2] = ACTIONS(1446), + [anon_sym_PLUS2] = ACTIONS(1444), [anon_sym_bit_DASHshl2] = ACTIONS(1446), [anon_sym_bit_DASHshr2] = ACTIONS(1446), [anon_sym_bit_DASHand2] = ACTIONS(1446), [anon_sym_bit_DASHxor2] = ACTIONS(1446), [anon_sym_bit_DASHor2] = ACTIONS(1446), - [anon_sym_DOT_DOT2] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), - [sym__entry_separator] = ACTIONS(1448), - [anon_sym_COLON2] = ACTIONS(1446), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1446), - [anon_sym_out_GT] = ACTIONS(1446), - [anon_sym_e_GT] = ACTIONS(1446), - [anon_sym_o_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT] = ACTIONS(1446), + [anon_sym_DOT_DOT2] = ACTIONS(1444), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1446), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1446), + [anon_sym_DOT2] = ACTIONS(1556), + [anon_sym_err_GT] = ACTIONS(1444), + [anon_sym_out_GT] = ACTIONS(1444), + [anon_sym_e_GT] = ACTIONS(1444), + [anon_sym_o_GT] = ACTIONS(1444), + [anon_sym_err_PLUSout_GT] = ACTIONS(1444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1444), + [anon_sym_o_PLUSe_GT] = ACTIONS(1444), + [anon_sym_e_PLUSo_GT] = ACTIONS(1444), [anon_sym_err_GT_GT] = ACTIONS(1446), [anon_sym_out_GT_GT] = ACTIONS(1446), [anon_sym_e_GT_GT] = ACTIONS(1446), @@ -76483,92 +76518,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1446), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1446), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1446), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(369)] = { - [sym__match_pattern_expression] = STATE(4132), - [sym__match_pattern_value] = STATE(4618), - [sym__match_pattern_list] = STATE(4619), - [sym__match_pattern_record] = STATE(4622), - [sym_expr_parenthesized] = STATE(3830), - [sym__spread_parenthesized] = STATE(4700), - [sym_val_range] = STATE(4418), - [sym__val_range] = STATE(4544), - [sym__value] = STATE(4730), - [sym_val_nothing] = STATE(4419), - [sym_val_bool] = STATE(4086), - [sym__spread_variable] = STATE(4795), - [sym_val_variable] = STATE(3834), - [sym_val_cellpath] = STATE(4604), - [sym_val_number] = STATE(4419), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(4361), - [sym_val_duration] = STATE(4419), - [sym_val_filesize] = STATE(4419), - [sym_val_binary] = STATE(4419), - [sym_val_string] = STATE(4419), - [sym__raw_str] = STATE(3638), - [sym__str_double_quotes] = STATE(3638), - [sym__str_single_quotes] = STATE(3638), - [sym__str_back_ticks] = STATE(3638), - [sym_val_interpolated] = STATE(4604), - [sym__inter_single_quotes] = STATE(4595), - [sym__inter_double_quotes] = STATE(4596), - [sym_val_list] = STATE(4604), - [sym__spread_list] = STATE(4700), - [sym_val_entry] = STATE(4455), - [sym_val_record] = STATE(4604), - [sym_val_table] = STATE(4419), - [sym_val_closure] = STATE(4604), - [sym__unquoted_in_list] = STATE(3828), - [sym__unquoted_in_list_with_expr] = STATE(4730), - [sym__unquoted_anonymous_prefix] = STATE(4544), [sym_comment] = STATE(369), - [aux_sym__types_body_repeat1] = STATE(2113), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1419), - [aux_sym_list_body_repeat1] = STATE(667), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [anon_sym_null] = ACTIONS(1376), - [aux_sym_cmd_identifier_token3] = ACTIONS(1378), - [aux_sym_cmd_identifier_token4] = ACTIONS(1378), - [aux_sym_cmd_identifier_token5] = ACTIONS(1378), - [sym__newline] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_DOT_DOT] = ACTIONS(1560), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), - [anon_sym_DOT_DOT_LT] = ACTIONS(1396), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [aux_sym__val_number_decimal_token3] = ACTIONS(1402), - [aux_sym__val_number_decimal_token4] = ACTIONS(1402), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), + [anon_sym_EQ] = ACTIONS(1450), + [anon_sym_PLUS_EQ] = ACTIONS(1452), + [anon_sym_DASH_EQ] = ACTIONS(1452), + [anon_sym_STAR_EQ] = ACTIONS(1452), + [anon_sym_SLASH_EQ] = ACTIONS(1452), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1452), + [anon_sym_in] = ACTIONS(1452), + [sym__newline] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_err_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_GT_PIPE] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1452), + [anon_sym_RPAREN] = ACTIONS(1452), + [anon_sym_GT2] = ACTIONS(1450), + [anon_sym_DASH2] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_STAR2] = ACTIONS(1450), + [anon_sym_and2] = ACTIONS(1452), + [anon_sym_xor2] = ACTIONS(1452), + [anon_sym_or2] = ACTIONS(1452), + [anon_sym_not_DASHin2] = ACTIONS(1452), + [anon_sym_has2] = ACTIONS(1452), + [anon_sym_not_DASHhas2] = ACTIONS(1452), + [anon_sym_starts_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1452), + [anon_sym_ends_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1452), + [anon_sym_EQ_EQ2] = ACTIONS(1452), + [anon_sym_BANG_EQ2] = ACTIONS(1452), + [anon_sym_LT2] = ACTIONS(1450), + [anon_sym_LT_EQ2] = ACTIONS(1452), + [anon_sym_GT_EQ2] = ACTIONS(1452), + [anon_sym_EQ_TILDE2] = ACTIONS(1452), + [anon_sym_BANG_TILDE2] = ACTIONS(1452), + [anon_sym_like2] = ACTIONS(1452), + [anon_sym_not_DASHlike2] = ACTIONS(1452), + [anon_sym_STAR_STAR2] = ACTIONS(1452), + [anon_sym_PLUS_PLUS2] = ACTIONS(1450), + [anon_sym_SLASH2] = ACTIONS(1450), + [anon_sym_mod2] = ACTIONS(1452), + [anon_sym_SLASH_SLASH2] = ACTIONS(1452), + [anon_sym_PLUS2] = ACTIONS(1450), + [anon_sym_bit_DASHshl2] = ACTIONS(1452), + [anon_sym_bit_DASHshr2] = ACTIONS(1452), + [anon_sym_bit_DASHand2] = ACTIONS(1452), + [anon_sym_bit_DASHxor2] = ACTIONS(1452), + [anon_sym_bit_DASHor2] = ACTIONS(1452), + [anon_sym_DOT_DOT2] = ACTIONS(1450), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1452), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1452), + [anon_sym_COLON2] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1558), + [anon_sym_DOT2] = ACTIONS(1450), + [anon_sym_err_GT] = ACTIONS(1450), + [anon_sym_out_GT] = ACTIONS(1450), + [anon_sym_e_GT] = ACTIONS(1450), + [anon_sym_o_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT] = ACTIONS(1450), + [anon_sym_err_GT_GT] = ACTIONS(1452), + [anon_sym_out_GT_GT] = ACTIONS(1452), + [anon_sym_e_GT_GT] = ACTIONS(1452), + [anon_sym_o_GT_GT] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1452), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), }, [STATE(370)] = { - [sym_cell_path] = STATE(434), - [sym_path] = STATE(429), + [sym__path_suffix] = STATE(422), [sym_comment] = STATE(370), - [aux_sym__where_predicate_lhs_repeat1] = STATE(386), [ts_builtin_sym_end] = ACTIONS(1434), [anon_sym_EQ] = ACTIONS(1432), [anon_sym_PLUS_EQ] = ACTIONS(1434), @@ -76624,7 +76657,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1432), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1434), [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), - [anon_sym_DOT2] = ACTIONS(1562), + [anon_sym_QMARK2] = ACTIONS(1560), + [anon_sym_BANG] = ACTIONS(1562), + [anon_sym_DOT2] = ACTIONS(1432), [anon_sym_err_GT] = ACTIONS(1432), [anon_sym_out_GT] = ACTIONS(1432), [anon_sym_e_GT] = ACTIONS(1432), @@ -76644,241 +76679,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(371)] = { + [sym__match_pattern_expression] = STATE(4133), + [sym__match_pattern_value] = STATE(4609), + [sym__match_pattern_list] = STATE(4610), + [sym__match_pattern_record] = STATE(4611), + [sym_expr_parenthesized] = STATE(3878), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4411), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4412), + [sym_val_bool] = STATE(3969), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3882), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4412), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4412), + [sym_val_filesize] = STATE(4412), + [sym_val_binary] = STATE(4412), + [sym_val_string] = STATE(4412), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4601), + [sym__spread_list] = STATE(4806), + [sym_val_entry] = STATE(4428), + [sym_val_record] = STATE(4601), + [sym_val_table] = STATE(4412), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(3908), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), [sym_comment] = STATE(371), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_PLUS_EQ] = ACTIONS(1448), - [anon_sym_DASH_EQ] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1448), - [anon_sym_SLASH_EQ] = ACTIONS(1448), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1448), - [anon_sym_in] = ACTIONS(1448), - [sym__newline] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_err_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_GT_PIPE] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), - [anon_sym_RPAREN] = ACTIONS(1448), - [anon_sym_GT2] = ACTIONS(1446), - [anon_sym_DASH2] = ACTIONS(1446), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_STAR2] = ACTIONS(1446), - [anon_sym_and2] = ACTIONS(1448), - [anon_sym_xor2] = ACTIONS(1448), - [anon_sym_or2] = ACTIONS(1448), - [anon_sym_not_DASHin2] = ACTIONS(1448), - [anon_sym_has2] = ACTIONS(1448), - [anon_sym_not_DASHhas2] = ACTIONS(1448), - [anon_sym_starts_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1448), - [anon_sym_ends_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), - [anon_sym_EQ_EQ2] = ACTIONS(1448), - [anon_sym_BANG_EQ2] = ACTIONS(1448), - [anon_sym_LT2] = ACTIONS(1446), - [anon_sym_LT_EQ2] = ACTIONS(1448), - [anon_sym_GT_EQ2] = ACTIONS(1448), - [anon_sym_EQ_TILDE2] = ACTIONS(1448), - [anon_sym_BANG_TILDE2] = ACTIONS(1448), - [anon_sym_like2] = ACTIONS(1448), - [anon_sym_not_DASHlike2] = ACTIONS(1448), - [anon_sym_STAR_STAR2] = ACTIONS(1448), - [anon_sym_PLUS_PLUS2] = ACTIONS(1446), - [anon_sym_SLASH2] = ACTIONS(1446), - [anon_sym_mod2] = ACTIONS(1448), - [anon_sym_SLASH_SLASH2] = ACTIONS(1448), - [anon_sym_PLUS2] = ACTIONS(1446), - [anon_sym_bit_DASHshl2] = ACTIONS(1448), - [anon_sym_bit_DASHshr2] = ACTIONS(1448), - [anon_sym_bit_DASHand2] = ACTIONS(1448), - [anon_sym_bit_DASHxor2] = ACTIONS(1448), - [anon_sym_bit_DASHor2] = ACTIONS(1448), - [anon_sym_DOT_DOT2] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), - [anon_sym_COLON2] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1564), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1446), - [anon_sym_out_GT] = ACTIONS(1446), - [anon_sym_e_GT] = ACTIONS(1446), - [anon_sym_o_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT] = ACTIONS(1446), - [anon_sym_err_GT_GT] = ACTIONS(1448), - [anon_sym_out_GT_GT] = ACTIONS(1448), - [anon_sym_e_GT_GT] = ACTIONS(1448), - [anon_sym_o_GT_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), + [aux_sym__types_body_repeat1] = STATE(2117), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1417), + [aux_sym_list_body_repeat1] = STATE(529), + [anon_sym_true] = ACTIONS(1374), + [anon_sym_false] = ACTIONS(1374), + [anon_sym_null] = ACTIONS(1376), + [aux_sym_cmd_identifier_token3] = ACTIONS(1378), + [aux_sym_cmd_identifier_token4] = ACTIONS(1378), + [aux_sym_cmd_identifier_token5] = ACTIONS(1378), + [sym__newline] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_DOLLAR] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1568), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), + [anon_sym_DOT_DOT_LT] = ACTIONS(1396), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1398), + [aux_sym__val_number_decimal_token2] = ACTIONS(1400), + [aux_sym__val_number_decimal_token3] = ACTIONS(1402), + [aux_sym__val_number_decimal_token4] = ACTIONS(1402), + [aux_sym__val_number_token1] = ACTIONS(1404), + [aux_sym__val_number_token2] = ACTIONS(1404), + [aux_sym__val_number_token3] = ACTIONS(1404), + [anon_sym_0b] = ACTIONS(1406), + [anon_sym_0o] = ACTIONS(1408), + [anon_sym_0x] = ACTIONS(1408), + [sym_val_date] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_BQUOTE] = ACTIONS(1416), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1426), }, [STATE(372)] = { - [sym__path_suffix] = STATE(428), [sym_comment] = STATE(372), - [ts_builtin_sym_end] = ACTIONS(1440), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_PLUS_EQ] = ACTIONS(1440), - [anon_sym_DASH_EQ] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1440), - [anon_sym_SLASH_EQ] = ACTIONS(1440), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1438), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1438), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_QMARK2] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), + [anon_sym_EQ] = ACTIONS(1450), + [anon_sym_PLUS_EQ] = ACTIONS(1452), + [anon_sym_DASH_EQ] = ACTIONS(1452), + [anon_sym_STAR_EQ] = ACTIONS(1452), + [anon_sym_SLASH_EQ] = ACTIONS(1452), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1452), + [anon_sym_in] = ACTIONS(1452), + [sym__newline] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_err_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_GT_PIPE] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1452), + [anon_sym_RPAREN] = ACTIONS(1452), + [anon_sym_GT2] = ACTIONS(1450), + [anon_sym_DASH2] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_STAR2] = ACTIONS(1450), + [anon_sym_and2] = ACTIONS(1452), + [anon_sym_xor2] = ACTIONS(1452), + [anon_sym_or2] = ACTIONS(1452), + [anon_sym_not_DASHin2] = ACTIONS(1452), + [anon_sym_has2] = ACTIONS(1452), + [anon_sym_not_DASHhas2] = ACTIONS(1452), + [anon_sym_starts_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1452), + [anon_sym_ends_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1452), + [anon_sym_EQ_EQ2] = ACTIONS(1452), + [anon_sym_BANG_EQ2] = ACTIONS(1452), + [anon_sym_LT2] = ACTIONS(1450), + [anon_sym_LT_EQ2] = ACTIONS(1452), + [anon_sym_GT_EQ2] = ACTIONS(1452), + [anon_sym_EQ_TILDE2] = ACTIONS(1452), + [anon_sym_BANG_TILDE2] = ACTIONS(1452), + [anon_sym_like2] = ACTIONS(1452), + [anon_sym_not_DASHlike2] = ACTIONS(1452), + [anon_sym_STAR_STAR2] = ACTIONS(1452), + [anon_sym_PLUS_PLUS2] = ACTIONS(1450), + [anon_sym_SLASH2] = ACTIONS(1450), + [anon_sym_mod2] = ACTIONS(1452), + [anon_sym_SLASH_SLASH2] = ACTIONS(1452), + [anon_sym_PLUS2] = ACTIONS(1450), + [anon_sym_bit_DASHshl2] = ACTIONS(1452), + [anon_sym_bit_DASHshr2] = ACTIONS(1452), + [anon_sym_bit_DASHand2] = ACTIONS(1452), + [anon_sym_bit_DASHxor2] = ACTIONS(1452), + [anon_sym_bit_DASHor2] = ACTIONS(1452), + [anon_sym_DOT_DOT2] = ACTIONS(1450), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1452), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1452), + [anon_sym_COLON2] = ACTIONS(1452), + [anon_sym_QMARK2] = ACTIONS(1570), + [anon_sym_DOT2] = ACTIONS(1450), + [anon_sym_err_GT] = ACTIONS(1450), + [anon_sym_out_GT] = ACTIONS(1450), + [anon_sym_e_GT] = ACTIONS(1450), + [anon_sym_o_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT] = ACTIONS(1450), + [anon_sym_err_GT_GT] = ACTIONS(1452), + [anon_sym_out_GT_GT] = ACTIONS(1452), + [anon_sym_e_GT_GT] = ACTIONS(1452), + [anon_sym_o_GT_GT] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1452), [anon_sym_POUND] = ACTIONS(3), }, [STATE(373)] = { [sym_comment] = STATE(373), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_PLUS_EQ] = ACTIONS(1448), - [anon_sym_DASH_EQ] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1448), - [anon_sym_SLASH_EQ] = ACTIONS(1448), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1448), - [anon_sym_in] = ACTIONS(1448), - [sym__newline] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_err_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_GT_PIPE] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), - [anon_sym_RPAREN] = ACTIONS(1448), - [anon_sym_GT2] = ACTIONS(1446), - [anon_sym_DASH2] = ACTIONS(1446), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_STAR2] = ACTIONS(1446), - [anon_sym_and2] = ACTIONS(1448), - [anon_sym_xor2] = ACTIONS(1448), - [anon_sym_or2] = ACTIONS(1448), - [anon_sym_not_DASHin2] = ACTIONS(1448), - [anon_sym_has2] = ACTIONS(1448), - [anon_sym_not_DASHhas2] = ACTIONS(1448), - [anon_sym_starts_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1448), - [anon_sym_ends_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), - [anon_sym_EQ_EQ2] = ACTIONS(1448), - [anon_sym_BANG_EQ2] = ACTIONS(1448), - [anon_sym_LT2] = ACTIONS(1446), - [anon_sym_LT_EQ2] = ACTIONS(1448), - [anon_sym_GT_EQ2] = ACTIONS(1448), - [anon_sym_EQ_TILDE2] = ACTIONS(1448), - [anon_sym_BANG_TILDE2] = ACTIONS(1448), - [anon_sym_like2] = ACTIONS(1448), - [anon_sym_not_DASHlike2] = ACTIONS(1448), - [anon_sym_STAR_STAR2] = ACTIONS(1448), - [anon_sym_PLUS_PLUS2] = ACTIONS(1446), - [anon_sym_SLASH2] = ACTIONS(1446), - [anon_sym_mod2] = ACTIONS(1448), - [anon_sym_SLASH_SLASH2] = ACTIONS(1448), - [anon_sym_PLUS2] = ACTIONS(1446), - [anon_sym_bit_DASHshl2] = ACTIONS(1448), - [anon_sym_bit_DASHshr2] = ACTIONS(1448), - [anon_sym_bit_DASHand2] = ACTIONS(1448), - [anon_sym_bit_DASHxor2] = ACTIONS(1448), - [anon_sym_bit_DASHor2] = ACTIONS(1448), - [anon_sym_DOT_DOT2] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), - [anon_sym_COLON2] = ACTIONS(1448), - [anon_sym_QMARK2] = ACTIONS(1570), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1446), - [anon_sym_out_GT] = ACTIONS(1446), - [anon_sym_e_GT] = ACTIONS(1446), - [anon_sym_o_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT] = ACTIONS(1446), - [anon_sym_err_GT_GT] = ACTIONS(1448), - [anon_sym_out_GT_GT] = ACTIONS(1448), - [anon_sym_e_GT_GT] = ACTIONS(1448), - [anon_sym_o_GT_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_EQ] = ACTIONS(1450), + [anon_sym_PLUS_EQ] = ACTIONS(1450), + [anon_sym_DASH_EQ] = ACTIONS(1450), + [anon_sym_STAR_EQ] = ACTIONS(1450), + [anon_sym_SLASH_EQ] = ACTIONS(1450), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1450), + [anon_sym_in] = ACTIONS(1450), + [sym__newline] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_err_GT_PIPE] = ACTIONS(1450), + [anon_sym_out_GT_PIPE] = ACTIONS(1450), + [anon_sym_e_GT_PIPE] = ACTIONS(1450), + [anon_sym_o_GT_PIPE] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1450), + [anon_sym_GT2] = ACTIONS(1450), + [anon_sym_DASH2] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1450), + [anon_sym_STAR2] = ACTIONS(1450), + [anon_sym_and2] = ACTIONS(1450), + [anon_sym_xor2] = ACTIONS(1450), + [anon_sym_or2] = ACTIONS(1450), + [anon_sym_not_DASHin2] = ACTIONS(1450), + [anon_sym_has2] = ACTIONS(1450), + [anon_sym_not_DASHhas2] = ACTIONS(1450), + [anon_sym_starts_DASHwith2] = ACTIONS(1450), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1450), + [anon_sym_ends_DASHwith2] = ACTIONS(1450), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1450), + [anon_sym_EQ_EQ2] = ACTIONS(1450), + [anon_sym_BANG_EQ2] = ACTIONS(1450), + [anon_sym_LT2] = ACTIONS(1450), + [anon_sym_LT_EQ2] = ACTIONS(1450), + [anon_sym_GT_EQ2] = ACTIONS(1450), + [anon_sym_EQ_TILDE2] = ACTIONS(1450), + [anon_sym_BANG_TILDE2] = ACTIONS(1450), + [anon_sym_like2] = ACTIONS(1450), + [anon_sym_not_DASHlike2] = ACTIONS(1450), + [anon_sym_STAR_STAR2] = ACTIONS(1450), + [anon_sym_PLUS_PLUS2] = ACTIONS(1450), + [anon_sym_SLASH2] = ACTIONS(1450), + [anon_sym_mod2] = ACTIONS(1450), + [anon_sym_SLASH_SLASH2] = ACTIONS(1450), + [anon_sym_PLUS2] = ACTIONS(1450), + [anon_sym_bit_DASHshl2] = ACTIONS(1450), + [anon_sym_bit_DASHshr2] = ACTIONS(1450), + [anon_sym_bit_DASHand2] = ACTIONS(1450), + [anon_sym_bit_DASHxor2] = ACTIONS(1450), + [anon_sym_bit_DASHor2] = ACTIONS(1450), + [anon_sym_DOT_DOT2] = ACTIONS(1450), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1452), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1452), + [sym__entry_separator] = ACTIONS(1452), + [anon_sym_COLON2] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_DOT2] = ACTIONS(1450), + [anon_sym_err_GT] = ACTIONS(1450), + [anon_sym_out_GT] = ACTIONS(1450), + [anon_sym_e_GT] = ACTIONS(1450), + [anon_sym_o_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT] = ACTIONS(1450), + [anon_sym_err_GT_GT] = ACTIONS(1450), + [anon_sym_out_GT_GT] = ACTIONS(1450), + [anon_sym_e_GT_GT] = ACTIONS(1450), + [anon_sym_o_GT_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1450), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(374)] = { [sym_comment] = STATE(374), @@ -76960,7 +76995,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), }, [STATE(375)] = { + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4601), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(5031), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), [sym_comment] = STATE(375), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), + [sym__newline] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(1578), + [anon_sym_RBRACK] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_COMMA] = ACTIONS(1474), + [anon_sym_DOLLAR] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_token1] = ACTIONS(1404), + [aux_sym__val_number_token2] = ACTIONS(1404), + [aux_sym__val_number_token3] = ACTIONS(1404), + [anon_sym_0b] = ACTIONS(1406), + [anon_sym_0o] = ACTIONS(1408), + [anon_sym_0x] = ACTIONS(1408), + [sym_val_date] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_BQUOTE] = ACTIONS(1416), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1426), + }, + [STATE(376)] = { + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4601), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(4995), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), + [sym_comment] = STATE(376), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), + [sym__newline] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(1578), + [anon_sym_RBRACK] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_COMMA] = ACTIONS(1474), + [anon_sym_DOLLAR] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_token1] = ACTIONS(1404), + [aux_sym__val_number_token2] = ACTIONS(1404), + [aux_sym__val_number_token3] = ACTIONS(1404), + [anon_sym_0b] = ACTIONS(1406), + [anon_sym_0o] = ACTIONS(1408), + [anon_sym_0x] = ACTIONS(1408), + [sym_val_date] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_BQUOTE] = ACTIONS(1416), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1426), + }, + [STATE(377)] = { + [sym_comment] = STATE(377), [anon_sym_EQ] = ACTIONS(1529), [anon_sym_PLUS_EQ] = ACTIONS(1531), [anon_sym_DASH_EQ] = ACTIONS(1531), @@ -77037,320 +77228,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1531), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(376)] = { - [sym_expr_parenthesized] = STATE(4058), - [sym__spread_parenthesized] = STATE(4700), - [sym_val_range] = STATE(4730), - [sym__val_range] = STATE(4544), - [sym__value] = STATE(4730), - [sym_val_nothing] = STATE(4604), - [sym_val_bool] = STATE(4358), - [sym__spread_variable] = STATE(4795), - [sym_val_variable] = STATE(3879), - [sym_val_cellpath] = STATE(4604), - [sym_val_number] = STATE(4604), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(4361), - [sym_val_duration] = STATE(4604), - [sym_val_filesize] = STATE(4604), - [sym_val_binary] = STATE(4604), - [sym_val_string] = STATE(4604), - [sym__raw_str] = STATE(3638), - [sym__str_double_quotes] = STATE(3638), - [sym__str_single_quotes] = STATE(3638), - [sym__str_back_ticks] = STATE(3638), - [sym_val_interpolated] = STATE(4604), - [sym__inter_single_quotes] = STATE(4595), - [sym__inter_double_quotes] = STATE(4596), - [sym_val_list] = STATE(4604), - [sym__spread_list] = STATE(4700), - [sym_list_body] = STATE(4849), - [sym_val_entry] = STATE(4576), - [sym_val_record] = STATE(4604), - [sym_val_table] = STATE(4604), - [sym_val_closure] = STATE(4604), - [sym__unquoted_in_list] = STATE(4171), - [sym__unquoted_in_list_with_expr] = STATE(4730), - [sym__unquoted_anonymous_prefix] = STATE(4544), - [sym_comment] = STATE(376), - [aux_sym__types_body_repeat1] = STATE(458), - [aux_sym_parameter_repeat2] = STATE(4189), - [aux_sym_list_body_repeat1] = STATE(548), - [anon_sym_true] = ACTIONS(1462), - [anon_sym_false] = ACTIONS(1462), - [anon_sym_null] = ACTIONS(1464), - [aux_sym_cmd_identifier_token3] = ACTIONS(1466), - [aux_sym_cmd_identifier_token4] = ACTIONS(1466), - [aux_sym_cmd_identifier_token5] = ACTIONS(1466), - [sym__newline] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1474), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), - [anon_sym_DOT_DOT_LT] = ACTIONS(1480), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1482), - [aux_sym__val_number_decimal_token2] = ACTIONS(1484), - [aux_sym__val_number_decimal_token3] = ACTIONS(1486), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1488), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [STATE(377)] = { - [sym__expr_parenthesized_immediate] = STATE(707), - [sym__immediate_decimal] = STATE(708), - [sym_val_variable] = STATE(707), - [sym_comment] = STATE(377), - [anon_sym_in] = ACTIONS(1582), - [sym__newline] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_err_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_GT_PIPE] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), - [anon_sym_RPAREN] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1586), - [anon_sym_DASH2] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1582), - [anon_sym_RBRACE] = ACTIONS(1582), - [anon_sym_STAR2] = ACTIONS(1586), - [anon_sym_and2] = ACTIONS(1582), - [anon_sym_xor2] = ACTIONS(1582), - [anon_sym_or2] = ACTIONS(1582), - [anon_sym_not_DASHin2] = ACTIONS(1582), - [anon_sym_has2] = ACTIONS(1582), - [anon_sym_not_DASHhas2] = ACTIONS(1582), - [anon_sym_starts_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1582), - [anon_sym_ends_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1582), - [anon_sym_EQ_EQ2] = ACTIONS(1582), - [anon_sym_BANG_EQ2] = ACTIONS(1582), - [anon_sym_LT2] = ACTIONS(1586), - [anon_sym_LT_EQ2] = ACTIONS(1582), - [anon_sym_GT_EQ2] = ACTIONS(1582), - [anon_sym_EQ_TILDE2] = ACTIONS(1582), - [anon_sym_BANG_TILDE2] = ACTIONS(1582), - [anon_sym_like2] = ACTIONS(1582), - [anon_sym_not_DASHlike2] = ACTIONS(1582), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1582), - [anon_sym_PLUS_PLUS2] = ACTIONS(1582), - [anon_sym_SLASH2] = ACTIONS(1586), - [anon_sym_mod2] = ACTIONS(1582), - [anon_sym_SLASH_SLASH2] = ACTIONS(1582), - [anon_sym_PLUS2] = ACTIONS(1586), - [anon_sym_bit_DASHshl2] = ACTIONS(1582), - [anon_sym_bit_DASHshr2] = ACTIONS(1582), - [anon_sym_bit_DASHand2] = ACTIONS(1582), - [anon_sym_bit_DASHxor2] = ACTIONS(1582), - [anon_sym_bit_DASHor2] = ACTIONS(1582), - [anon_sym_DOT] = ACTIONS(1590), - [aux_sym__immediate_decimal_token1] = ACTIONS(1592), - [aux_sym__immediate_decimal_token2] = ACTIONS(1592), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1586), - [anon_sym_out_GT] = ACTIONS(1586), - [anon_sym_e_GT] = ACTIONS(1586), - [anon_sym_o_GT] = ACTIONS(1586), - [anon_sym_err_PLUSout_GT] = ACTIONS(1586), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1586), - [anon_sym_o_PLUSe_GT] = ACTIONS(1586), - [anon_sym_e_PLUSo_GT] = ACTIONS(1586), - [anon_sym_err_GT_GT] = ACTIONS(1582), - [anon_sym_out_GT_GT] = ACTIONS(1582), - [anon_sym_e_GT_GT] = ACTIONS(1582), - [anon_sym_o_GT_GT] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(378)] = { + [sym__expr_parenthesized_immediate] = STATE(681), + [sym__immediate_decimal] = STATE(544), + [sym_val_variable] = STATE(681), [sym_comment] = STATE(378), - [anon_sym_EQ] = ACTIONS(1525), - [anon_sym_PLUS_EQ] = ACTIONS(1527), - [anon_sym_DASH_EQ] = ACTIONS(1527), - [anon_sym_STAR_EQ] = ACTIONS(1527), - [anon_sym_SLASH_EQ] = ACTIONS(1527), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1527), - [anon_sym_in] = ACTIONS(1527), - [sym__newline] = ACTIONS(1527), - [anon_sym_SEMI] = ACTIONS(1527), - [anon_sym_PIPE] = ACTIONS(1527), - [anon_sym_err_GT_PIPE] = ACTIONS(1527), - [anon_sym_out_GT_PIPE] = ACTIONS(1527), - [anon_sym_e_GT_PIPE] = ACTIONS(1527), - [anon_sym_o_GT_PIPE] = ACTIONS(1527), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1527), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1527), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1527), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1527), - [anon_sym_RPAREN] = ACTIONS(1527), - [anon_sym_GT2] = ACTIONS(1525), - [anon_sym_DASH2] = ACTIONS(1525), - [anon_sym_RBRACE] = ACTIONS(1527), - [anon_sym_STAR2] = ACTIONS(1525), - [anon_sym_and2] = ACTIONS(1527), - [anon_sym_xor2] = ACTIONS(1527), - [anon_sym_or2] = ACTIONS(1527), - [anon_sym_not_DASHin2] = ACTIONS(1527), - [anon_sym_has2] = ACTIONS(1527), - [anon_sym_not_DASHhas2] = ACTIONS(1527), - [anon_sym_starts_DASHwith2] = ACTIONS(1527), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1527), - [anon_sym_ends_DASHwith2] = ACTIONS(1527), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1527), - [anon_sym_EQ_EQ2] = ACTIONS(1527), - [anon_sym_BANG_EQ2] = ACTIONS(1527), - [anon_sym_LT2] = ACTIONS(1525), - [anon_sym_LT_EQ2] = ACTIONS(1527), - [anon_sym_GT_EQ2] = ACTIONS(1527), - [anon_sym_EQ_TILDE2] = ACTIONS(1527), - [anon_sym_BANG_TILDE2] = ACTIONS(1527), - [anon_sym_like2] = ACTIONS(1527), - [anon_sym_not_DASHlike2] = ACTIONS(1527), - [anon_sym_STAR_STAR2] = ACTIONS(1527), - [anon_sym_PLUS_PLUS2] = ACTIONS(1525), - [anon_sym_SLASH2] = ACTIONS(1525), - [anon_sym_mod2] = ACTIONS(1527), - [anon_sym_SLASH_SLASH2] = ACTIONS(1527), - [anon_sym_PLUS2] = ACTIONS(1525), - [anon_sym_bit_DASHshl2] = ACTIONS(1527), - [anon_sym_bit_DASHshr2] = ACTIONS(1527), - [anon_sym_bit_DASHand2] = ACTIONS(1527), - [anon_sym_bit_DASHxor2] = ACTIONS(1527), - [anon_sym_bit_DASHor2] = ACTIONS(1527), - [anon_sym_DOT_DOT2] = ACTIONS(1525), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1527), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1527), - [anon_sym_COLON2] = ACTIONS(1527), - [anon_sym_DOT2] = ACTIONS(1525), - [anon_sym_err_GT] = ACTIONS(1525), - [anon_sym_out_GT] = ACTIONS(1525), - [anon_sym_e_GT] = ACTIONS(1525), - [anon_sym_o_GT] = ACTIONS(1525), - [anon_sym_err_PLUSout_GT] = ACTIONS(1525), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), - [anon_sym_o_PLUSe_GT] = ACTIONS(1525), - [anon_sym_e_PLUSo_GT] = ACTIONS(1525), - [anon_sym_err_GT_GT] = ACTIONS(1527), - [anon_sym_out_GT_GT] = ACTIONS(1527), - [anon_sym_e_GT_GT] = ACTIONS(1527), - [anon_sym_o_GT_GT] = ACTIONS(1527), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1527), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1527), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1527), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1527), + [anon_sym_in] = ACTIONS(1584), + [sym__newline] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1584), + [anon_sym_err_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_GT_PIPE] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1584), + [anon_sym_RPAREN] = ACTIONS(1584), + [anon_sym_DOLLAR] = ACTIONS(1586), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1584), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1584), + [anon_sym_xor2] = ACTIONS(1584), + [anon_sym_or2] = ACTIONS(1584), + [anon_sym_not_DASHin2] = ACTIONS(1584), + [anon_sym_has2] = ACTIONS(1584), + [anon_sym_not_DASHhas2] = ACTIONS(1584), + [anon_sym_starts_DASHwith2] = ACTIONS(1584), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1584), + [anon_sym_ends_DASHwith2] = ACTIONS(1584), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1584), + [anon_sym_EQ_EQ2] = ACTIONS(1584), + [anon_sym_BANG_EQ2] = ACTIONS(1584), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1584), + [anon_sym_GT_EQ2] = ACTIONS(1584), + [anon_sym_EQ_TILDE2] = ACTIONS(1584), + [anon_sym_BANG_TILDE2] = ACTIONS(1584), + [anon_sym_like2] = ACTIONS(1584), + [anon_sym_not_DASHlike2] = ACTIONS(1584), + [anon_sym_LPAREN2] = ACTIONS(1590), + [anon_sym_STAR_STAR2] = ACTIONS(1584), + [anon_sym_PLUS_PLUS2] = ACTIONS(1584), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1584), + [anon_sym_SLASH_SLASH2] = ACTIONS(1584), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1584), + [anon_sym_bit_DASHshr2] = ACTIONS(1584), + [anon_sym_bit_DASHand2] = ACTIONS(1584), + [anon_sym_bit_DASHxor2] = ACTIONS(1584), + [anon_sym_bit_DASHor2] = ACTIONS(1584), + [anon_sym_DOT] = ACTIONS(1592), + [aux_sym__immediate_decimal_token1] = ACTIONS(1594), + [aux_sym__immediate_decimal_token2] = ACTIONS(1594), + [aux_sym__immediate_decimal_token3] = ACTIONS(1596), + [aux_sym__immediate_decimal_token4] = ACTIONS(1596), + [anon_sym_err_GT] = ACTIONS(1588), + [anon_sym_out_GT] = ACTIONS(1588), + [anon_sym_e_GT] = ACTIONS(1588), + [anon_sym_o_GT] = ACTIONS(1588), + [anon_sym_err_PLUSout_GT] = ACTIONS(1588), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), + [anon_sym_o_PLUSe_GT] = ACTIONS(1588), + [anon_sym_e_PLUSo_GT] = ACTIONS(1588), + [anon_sym_err_GT_GT] = ACTIONS(1584), + [anon_sym_out_GT_GT] = ACTIONS(1584), + [anon_sym_e_GT_GT] = ACTIONS(1584), + [anon_sym_o_GT_GT] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1584), + [sym__unquoted_pattern] = ACTIONS(1598), [anon_sym_POUND] = ACTIONS(3), }, [STATE(379)] = { - [sym__expr_parenthesized_immediate] = STATE(707), - [sym__immediate_decimal] = STATE(545), - [sym_val_variable] = STATE(707), [sym_comment] = STATE(379), - [anon_sym_in] = ACTIONS(1582), - [sym__newline] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_err_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_GT_PIPE] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), - [anon_sym_RPAREN] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1586), - [anon_sym_DASH2] = ACTIONS(1586), - [anon_sym_RBRACE] = ACTIONS(1582), - [anon_sym_STAR2] = ACTIONS(1586), - [anon_sym_and2] = ACTIONS(1582), - [anon_sym_xor2] = ACTIONS(1582), - [anon_sym_or2] = ACTIONS(1582), - [anon_sym_not_DASHin2] = ACTIONS(1582), - [anon_sym_has2] = ACTIONS(1582), - [anon_sym_not_DASHhas2] = ACTIONS(1582), - [anon_sym_starts_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1582), - [anon_sym_ends_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1582), - [anon_sym_EQ_EQ2] = ACTIONS(1582), - [anon_sym_BANG_EQ2] = ACTIONS(1582), - [anon_sym_LT2] = ACTIONS(1586), - [anon_sym_LT_EQ2] = ACTIONS(1582), - [anon_sym_GT_EQ2] = ACTIONS(1582), - [anon_sym_EQ_TILDE2] = ACTIONS(1582), - [anon_sym_BANG_TILDE2] = ACTIONS(1582), - [anon_sym_like2] = ACTIONS(1582), - [anon_sym_not_DASHlike2] = ACTIONS(1582), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1582), - [anon_sym_PLUS_PLUS2] = ACTIONS(1582), - [anon_sym_SLASH2] = ACTIONS(1586), - [anon_sym_mod2] = ACTIONS(1582), - [anon_sym_SLASH_SLASH2] = ACTIONS(1582), - [anon_sym_PLUS2] = ACTIONS(1586), - [anon_sym_bit_DASHshl2] = ACTIONS(1582), - [anon_sym_bit_DASHshr2] = ACTIONS(1582), - [anon_sym_bit_DASHand2] = ACTIONS(1582), - [anon_sym_bit_DASHxor2] = ACTIONS(1582), - [anon_sym_bit_DASHor2] = ACTIONS(1582), - [anon_sym_DOT] = ACTIONS(1596), - [aux_sym__immediate_decimal_token1] = ACTIONS(1592), - [aux_sym__immediate_decimal_token2] = ACTIONS(1592), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1586), - [anon_sym_out_GT] = ACTIONS(1586), - [anon_sym_e_GT] = ACTIONS(1586), - [anon_sym_o_GT] = ACTIONS(1586), - [anon_sym_err_PLUSout_GT] = ACTIONS(1586), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1586), - [anon_sym_o_PLUSe_GT] = ACTIONS(1586), - [anon_sym_e_PLUSo_GT] = ACTIONS(1586), - [anon_sym_err_GT_GT] = ACTIONS(1582), - [anon_sym_out_GT_GT] = ACTIONS(1582), - [anon_sym_e_GT_GT] = ACTIONS(1582), - [anon_sym_o_GT_GT] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), - [sym__unquoted_pattern] = ACTIONS(1598), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(380)] = { - [sym_comment] = STATE(380), [ts_builtin_sym_end] = ACTIONS(1507), [anon_sym_EQ] = ACTIONS(1505), [anon_sym_PLUS_EQ] = ACTIONS(1507), @@ -77427,86 +77384,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1507), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(381)] = { - [sym_comment] = STATE(381), - [ts_builtin_sym_end] = ACTIONS(1511), - [anon_sym_EQ] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(1511), - [anon_sym_DASH_EQ] = ACTIONS(1511), - [anon_sym_STAR_EQ] = ACTIONS(1511), - [anon_sym_SLASH_EQ] = ACTIONS(1511), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1511), - [anon_sym_in] = ACTIONS(1511), - [sym__newline] = ACTIONS(1511), - [anon_sym_SEMI] = ACTIONS(1511), - [anon_sym_PIPE] = ACTIONS(1511), - [anon_sym_err_GT_PIPE] = ACTIONS(1511), - [anon_sym_out_GT_PIPE] = ACTIONS(1511), - [anon_sym_e_GT_PIPE] = ACTIONS(1511), - [anon_sym_o_GT_PIPE] = ACTIONS(1511), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1511), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1511), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1511), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1511), - [anon_sym_GT2] = ACTIONS(1509), - [anon_sym_DASH2] = ACTIONS(1509), - [anon_sym_STAR2] = ACTIONS(1509), - [anon_sym_and2] = ACTIONS(1511), - [anon_sym_xor2] = ACTIONS(1511), - [anon_sym_or2] = ACTIONS(1511), - [anon_sym_not_DASHin2] = ACTIONS(1511), - [anon_sym_has2] = ACTIONS(1511), - [anon_sym_not_DASHhas2] = ACTIONS(1511), - [anon_sym_starts_DASHwith2] = ACTIONS(1511), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1511), - [anon_sym_ends_DASHwith2] = ACTIONS(1511), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1511), - [anon_sym_EQ_EQ2] = ACTIONS(1511), - [anon_sym_BANG_EQ2] = ACTIONS(1511), - [anon_sym_LT2] = ACTIONS(1509), - [anon_sym_LT_EQ2] = ACTIONS(1511), - [anon_sym_GT_EQ2] = ACTIONS(1511), - [anon_sym_EQ_TILDE2] = ACTIONS(1511), - [anon_sym_BANG_TILDE2] = ACTIONS(1511), - [anon_sym_like2] = ACTIONS(1511), - [anon_sym_not_DASHlike2] = ACTIONS(1511), - [anon_sym_STAR_STAR2] = ACTIONS(1511), - [anon_sym_PLUS_PLUS2] = ACTIONS(1509), - [anon_sym_SLASH2] = ACTIONS(1509), - [anon_sym_mod2] = ACTIONS(1511), - [anon_sym_SLASH_SLASH2] = ACTIONS(1511), - [anon_sym_PLUS2] = ACTIONS(1509), - [anon_sym_bit_DASHshl2] = ACTIONS(1511), - [anon_sym_bit_DASHshr2] = ACTIONS(1511), - [anon_sym_bit_DASHand2] = ACTIONS(1511), - [anon_sym_bit_DASHxor2] = ACTIONS(1511), - [anon_sym_bit_DASHor2] = ACTIONS(1511), - [anon_sym_DOT_DOT2] = ACTIONS(1509), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1511), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1511), - [anon_sym_QMARK2] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1509), - [anon_sym_DOT2] = ACTIONS(1509), - [anon_sym_err_GT] = ACTIONS(1509), - [anon_sym_out_GT] = ACTIONS(1509), - [anon_sym_e_GT] = ACTIONS(1509), - [anon_sym_o_GT] = ACTIONS(1509), - [anon_sym_err_PLUSout_GT] = ACTIONS(1509), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1509), - [anon_sym_o_PLUSe_GT] = ACTIONS(1509), - [anon_sym_e_PLUSo_GT] = ACTIONS(1509), - [anon_sym_err_GT_GT] = ACTIONS(1511), - [anon_sym_out_GT_GT] = ACTIONS(1511), - [anon_sym_e_GT_GT] = ACTIONS(1511), - [anon_sym_o_GT_GT] = ACTIONS(1511), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1511), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1511), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1511), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1511), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(382)] = { - [sym_comment] = STATE(382), + [STATE(380)] = { + [sym_comment] = STATE(380), [ts_builtin_sym_end] = ACTIONS(1460), [anon_sym_EQ] = ACTIONS(1458), [anon_sym_PLUS_EQ] = ACTIONS(1460), @@ -77583,86 +77462,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1460), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(383)] = { - [sym_comment] = STATE(383), - [ts_builtin_sym_end] = ACTIONS(1515), - [anon_sym_EQ] = ACTIONS(1513), - [anon_sym_PLUS_EQ] = ACTIONS(1515), - [anon_sym_DASH_EQ] = ACTIONS(1515), - [anon_sym_STAR_EQ] = ACTIONS(1515), - [anon_sym_SLASH_EQ] = ACTIONS(1515), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1515), - [anon_sym_in] = ACTIONS(1515), - [sym__newline] = ACTIONS(1515), - [anon_sym_SEMI] = ACTIONS(1515), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_err_GT_PIPE] = ACTIONS(1515), - [anon_sym_out_GT_PIPE] = ACTIONS(1515), - [anon_sym_e_GT_PIPE] = ACTIONS(1515), - [anon_sym_o_GT_PIPE] = ACTIONS(1515), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1515), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1515), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1515), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1515), - [anon_sym_GT2] = ACTIONS(1513), - [anon_sym_DASH2] = ACTIONS(1513), - [anon_sym_STAR2] = ACTIONS(1513), - [anon_sym_and2] = ACTIONS(1515), - [anon_sym_xor2] = ACTIONS(1515), - [anon_sym_or2] = ACTIONS(1515), - [anon_sym_not_DASHin2] = ACTIONS(1515), - [anon_sym_has2] = ACTIONS(1515), - [anon_sym_not_DASHhas2] = ACTIONS(1515), - [anon_sym_starts_DASHwith2] = ACTIONS(1515), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1515), - [anon_sym_ends_DASHwith2] = ACTIONS(1515), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1515), - [anon_sym_EQ_EQ2] = ACTIONS(1515), - [anon_sym_BANG_EQ2] = ACTIONS(1515), - [anon_sym_LT2] = ACTIONS(1513), - [anon_sym_LT_EQ2] = ACTIONS(1515), - [anon_sym_GT_EQ2] = ACTIONS(1515), - [anon_sym_EQ_TILDE2] = ACTIONS(1515), - [anon_sym_BANG_TILDE2] = ACTIONS(1515), - [anon_sym_like2] = ACTIONS(1515), - [anon_sym_not_DASHlike2] = ACTIONS(1515), - [anon_sym_STAR_STAR2] = ACTIONS(1515), - [anon_sym_PLUS_PLUS2] = ACTIONS(1513), - [anon_sym_SLASH2] = ACTIONS(1513), - [anon_sym_mod2] = ACTIONS(1515), - [anon_sym_SLASH_SLASH2] = ACTIONS(1515), - [anon_sym_PLUS2] = ACTIONS(1513), - [anon_sym_bit_DASHshl2] = ACTIONS(1515), - [anon_sym_bit_DASHshr2] = ACTIONS(1515), - [anon_sym_bit_DASHand2] = ACTIONS(1515), - [anon_sym_bit_DASHxor2] = ACTIONS(1515), - [anon_sym_bit_DASHor2] = ACTIONS(1515), - [anon_sym_DOT_DOT2] = ACTIONS(1513), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1515), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1515), - [anon_sym_QMARK2] = ACTIONS(1515), - [anon_sym_BANG] = ACTIONS(1513), - [anon_sym_DOT2] = ACTIONS(1513), - [anon_sym_err_GT] = ACTIONS(1513), - [anon_sym_out_GT] = ACTIONS(1513), - [anon_sym_e_GT] = ACTIONS(1513), - [anon_sym_o_GT] = ACTIONS(1513), - [anon_sym_err_PLUSout_GT] = ACTIONS(1513), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1513), - [anon_sym_o_PLUSe_GT] = ACTIONS(1513), - [anon_sym_e_PLUSo_GT] = ACTIONS(1513), - [anon_sym_err_GT_GT] = ACTIONS(1515), - [anon_sym_out_GT_GT] = ACTIONS(1515), - [anon_sym_e_GT_GT] = ACTIONS(1515), - [anon_sym_o_GT_GT] = ACTIONS(1515), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1515), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1515), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1515), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1515), + [STATE(381)] = { + [sym_comment] = STATE(381), + [ts_builtin_sym_end] = ACTIONS(1511), + [anon_sym_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1511), + [anon_sym_DASH_EQ] = ACTIONS(1511), + [anon_sym_STAR_EQ] = ACTIONS(1511), + [anon_sym_SLASH_EQ] = ACTIONS(1511), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1511), + [anon_sym_in] = ACTIONS(1511), + [sym__newline] = ACTIONS(1511), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_err_GT_PIPE] = ACTIONS(1511), + [anon_sym_out_GT_PIPE] = ACTIONS(1511), + [anon_sym_e_GT_PIPE] = ACTIONS(1511), + [anon_sym_o_GT_PIPE] = ACTIONS(1511), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1511), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1511), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1511), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1511), + [anon_sym_GT2] = ACTIONS(1509), + [anon_sym_DASH2] = ACTIONS(1509), + [anon_sym_STAR2] = ACTIONS(1509), + [anon_sym_and2] = ACTIONS(1511), + [anon_sym_xor2] = ACTIONS(1511), + [anon_sym_or2] = ACTIONS(1511), + [anon_sym_not_DASHin2] = ACTIONS(1511), + [anon_sym_has2] = ACTIONS(1511), + [anon_sym_not_DASHhas2] = ACTIONS(1511), + [anon_sym_starts_DASHwith2] = ACTIONS(1511), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1511), + [anon_sym_ends_DASHwith2] = ACTIONS(1511), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1511), + [anon_sym_EQ_EQ2] = ACTIONS(1511), + [anon_sym_BANG_EQ2] = ACTIONS(1511), + [anon_sym_LT2] = ACTIONS(1509), + [anon_sym_LT_EQ2] = ACTIONS(1511), + [anon_sym_GT_EQ2] = ACTIONS(1511), + [anon_sym_EQ_TILDE2] = ACTIONS(1511), + [anon_sym_BANG_TILDE2] = ACTIONS(1511), + [anon_sym_like2] = ACTIONS(1511), + [anon_sym_not_DASHlike2] = ACTIONS(1511), + [anon_sym_STAR_STAR2] = ACTIONS(1511), + [anon_sym_PLUS_PLUS2] = ACTIONS(1509), + [anon_sym_SLASH2] = ACTIONS(1509), + [anon_sym_mod2] = ACTIONS(1511), + [anon_sym_SLASH_SLASH2] = ACTIONS(1511), + [anon_sym_PLUS2] = ACTIONS(1509), + [anon_sym_bit_DASHshl2] = ACTIONS(1511), + [anon_sym_bit_DASHshr2] = ACTIONS(1511), + [anon_sym_bit_DASHand2] = ACTIONS(1511), + [anon_sym_bit_DASHxor2] = ACTIONS(1511), + [anon_sym_bit_DASHor2] = ACTIONS(1511), + [anon_sym_DOT_DOT2] = ACTIONS(1509), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1511), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1511), + [anon_sym_QMARK2] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1509), + [anon_sym_DOT2] = ACTIONS(1509), + [anon_sym_err_GT] = ACTIONS(1509), + [anon_sym_out_GT] = ACTIONS(1509), + [anon_sym_e_GT] = ACTIONS(1509), + [anon_sym_o_GT] = ACTIONS(1509), + [anon_sym_err_PLUSout_GT] = ACTIONS(1509), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1509), + [anon_sym_o_PLUSe_GT] = ACTIONS(1509), + [anon_sym_e_PLUSo_GT] = ACTIONS(1509), + [anon_sym_err_GT_GT] = ACTIONS(1511), + [anon_sym_out_GT_GT] = ACTIONS(1511), + [anon_sym_e_GT_GT] = ACTIONS(1511), + [anon_sym_o_GT_GT] = ACTIONS(1511), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1511), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1511), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1511), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1511), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(384)] = { - [sym_comment] = STATE(384), + [STATE(382)] = { + [sym_comment] = STATE(382), [ts_builtin_sym_end] = ACTIONS(1519), [anon_sym_EQ] = ACTIONS(1517), [anon_sym_PLUS_EQ] = ACTIONS(1519), @@ -77739,320 +77618,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(385)] = { - [sym_expr_parenthesized] = STATE(4058), - [sym__spread_parenthesized] = STATE(4700), - [sym_val_range] = STATE(4730), - [sym__val_range] = STATE(4544), - [sym__value] = STATE(4730), - [sym_val_nothing] = STATE(4604), - [sym_val_bool] = STATE(4358), - [sym__spread_variable] = STATE(4795), - [sym_val_variable] = STATE(3879), - [sym_val_cellpath] = STATE(4604), - [sym_val_number] = STATE(4604), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(4361), - [sym_val_duration] = STATE(4604), - [sym_val_filesize] = STATE(4604), - [sym_val_binary] = STATE(4604), - [sym_val_string] = STATE(4604), - [sym__raw_str] = STATE(3638), - [sym__str_double_quotes] = STATE(3638), - [sym__str_single_quotes] = STATE(3638), - [sym__str_back_ticks] = STATE(3638), - [sym_val_interpolated] = STATE(4604), - [sym__inter_single_quotes] = STATE(4595), - [sym__inter_double_quotes] = STATE(4596), - [sym_val_list] = STATE(4604), - [sym__spread_list] = STATE(4700), - [sym_list_body] = STATE(4876), - [sym_val_entry] = STATE(4576), - [sym_val_record] = STATE(4604), - [sym_val_table] = STATE(4604), - [sym_val_closure] = STATE(4604), - [sym__unquoted_in_list] = STATE(4171), - [sym__unquoted_in_list_with_expr] = STATE(4730), - [sym__unquoted_anonymous_prefix] = STATE(4544), - [sym_comment] = STATE(385), - [aux_sym__types_body_repeat1] = STATE(458), - [aux_sym_parameter_repeat2] = STATE(4189), - [aux_sym_list_body_repeat1] = STATE(548), - [anon_sym_true] = ACTIONS(1462), - [anon_sym_false] = ACTIONS(1462), - [anon_sym_null] = ACTIONS(1464), - [aux_sym_cmd_identifier_token3] = ACTIONS(1466), - [aux_sym_cmd_identifier_token4] = ACTIONS(1466), - [aux_sym_cmd_identifier_token5] = ACTIONS(1466), - [sym__newline] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1474), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), - [anon_sym_DOT_DOT_LT] = ACTIONS(1480), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1482), - [aux_sym__val_number_decimal_token2] = ACTIONS(1484), - [aux_sym__val_number_decimal_token3] = ACTIONS(1486), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1488), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [STATE(386)] = { - [sym_path] = STATE(429), - [sym_comment] = STATE(386), - [aux_sym__where_predicate_lhs_repeat1] = STATE(387), - [ts_builtin_sym_end] = ACTIONS(1492), - [anon_sym_EQ] = ACTIONS(1490), - [anon_sym_PLUS_EQ] = ACTIONS(1492), - [anon_sym_DASH_EQ] = ACTIONS(1492), - [anon_sym_STAR_EQ] = ACTIONS(1492), - [anon_sym_SLASH_EQ] = ACTIONS(1492), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1492), - [anon_sym_in] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1490), - [anon_sym_DASH2] = ACTIONS(1490), - [anon_sym_STAR2] = ACTIONS(1490), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1490), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_like2] = ACTIONS(1492), - [anon_sym_not_DASHlike2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1490), - [anon_sym_SLASH2] = ACTIONS(1490), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1490), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1490), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1492), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1492), - [anon_sym_DOT2] = ACTIONS(1562), - [anon_sym_err_GT] = ACTIONS(1490), - [anon_sym_out_GT] = ACTIONS(1490), - [anon_sym_e_GT] = ACTIONS(1490), - [anon_sym_o_GT] = ACTIONS(1490), - [anon_sym_err_PLUSout_GT] = ACTIONS(1490), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1490), - [anon_sym_o_PLUSe_GT] = ACTIONS(1490), - [anon_sym_e_PLUSo_GT] = ACTIONS(1490), - [anon_sym_err_GT_GT] = ACTIONS(1492), - [anon_sym_out_GT_GT] = ACTIONS(1492), - [anon_sym_e_GT_GT] = ACTIONS(1492), - [anon_sym_o_GT_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(387)] = { - [sym_path] = STATE(429), - [sym_comment] = STATE(387), - [aux_sym__where_predicate_lhs_repeat1] = STATE(387), - [ts_builtin_sym_end] = ACTIONS(1496), - [anon_sym_EQ] = ACTIONS(1494), - [anon_sym_PLUS_EQ] = ACTIONS(1496), - [anon_sym_DASH_EQ] = ACTIONS(1496), - [anon_sym_STAR_EQ] = ACTIONS(1496), - [anon_sym_SLASH_EQ] = ACTIONS(1496), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1496), - [anon_sym_in] = ACTIONS(1496), - [sym__newline] = ACTIONS(1496), - [anon_sym_SEMI] = ACTIONS(1496), - [anon_sym_PIPE] = ACTIONS(1496), - [anon_sym_err_GT_PIPE] = ACTIONS(1496), - [anon_sym_out_GT_PIPE] = ACTIONS(1496), - [anon_sym_e_GT_PIPE] = ACTIONS(1496), - [anon_sym_o_GT_PIPE] = ACTIONS(1496), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1496), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1496), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1496), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1496), - [anon_sym_GT2] = ACTIONS(1494), - [anon_sym_DASH2] = ACTIONS(1494), - [anon_sym_STAR2] = ACTIONS(1494), - [anon_sym_and2] = ACTIONS(1496), - [anon_sym_xor2] = ACTIONS(1496), - [anon_sym_or2] = ACTIONS(1496), - [anon_sym_not_DASHin2] = ACTIONS(1496), - [anon_sym_has2] = ACTIONS(1496), - [anon_sym_not_DASHhas2] = ACTIONS(1496), - [anon_sym_starts_DASHwith2] = ACTIONS(1496), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1496), - [anon_sym_ends_DASHwith2] = ACTIONS(1496), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1496), - [anon_sym_EQ_EQ2] = ACTIONS(1496), - [anon_sym_BANG_EQ2] = ACTIONS(1496), - [anon_sym_LT2] = ACTIONS(1494), - [anon_sym_LT_EQ2] = ACTIONS(1496), - [anon_sym_GT_EQ2] = ACTIONS(1496), - [anon_sym_EQ_TILDE2] = ACTIONS(1496), - [anon_sym_BANG_TILDE2] = ACTIONS(1496), - [anon_sym_like2] = ACTIONS(1496), - [anon_sym_not_DASHlike2] = ACTIONS(1496), - [anon_sym_STAR_STAR2] = ACTIONS(1496), - [anon_sym_PLUS_PLUS2] = ACTIONS(1494), - [anon_sym_SLASH2] = ACTIONS(1494), - [anon_sym_mod2] = ACTIONS(1496), - [anon_sym_SLASH_SLASH2] = ACTIONS(1496), - [anon_sym_PLUS2] = ACTIONS(1494), - [anon_sym_bit_DASHshl2] = ACTIONS(1496), - [anon_sym_bit_DASHshr2] = ACTIONS(1496), - [anon_sym_bit_DASHand2] = ACTIONS(1496), - [anon_sym_bit_DASHxor2] = ACTIONS(1496), - [anon_sym_bit_DASHor2] = ACTIONS(1496), - [anon_sym_DOT_DOT2] = ACTIONS(1494), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1496), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1496), - [anon_sym_DOT2] = ACTIONS(1600), - [anon_sym_err_GT] = ACTIONS(1494), - [anon_sym_out_GT] = ACTIONS(1494), - [anon_sym_e_GT] = ACTIONS(1494), - [anon_sym_o_GT] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT] = ACTIONS(1494), - [anon_sym_err_GT_GT] = ACTIONS(1496), - [anon_sym_out_GT_GT] = ACTIONS(1496), - [anon_sym_e_GT_GT] = ACTIONS(1496), - [anon_sym_o_GT_GT] = ACTIONS(1496), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1496), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1496), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1496), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1496), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(388)] = { - [sym_expr_parenthesized] = STATE(4058), - [sym__spread_parenthesized] = STATE(4700), - [sym_val_range] = STATE(4730), - [sym__val_range] = STATE(4544), - [sym__value] = STATE(4730), - [sym_val_nothing] = STATE(4604), - [sym_val_bool] = STATE(4358), - [sym__spread_variable] = STATE(4795), - [sym_val_variable] = STATE(3879), - [sym_val_cellpath] = STATE(4604), - [sym_val_number] = STATE(4604), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(4361), - [sym_val_duration] = STATE(4604), - [sym_val_filesize] = STATE(4604), - [sym_val_binary] = STATE(4604), - [sym_val_string] = STATE(4604), - [sym__raw_str] = STATE(3638), - [sym__str_double_quotes] = STATE(3638), - [sym__str_single_quotes] = STATE(3638), - [sym__str_back_ticks] = STATE(3638), - [sym_val_interpolated] = STATE(4604), - [sym__inter_single_quotes] = STATE(4595), - [sym__inter_double_quotes] = STATE(4596), - [sym_val_list] = STATE(4604), - [sym__spread_list] = STATE(4700), - [sym_list_body] = STATE(4996), - [sym_val_entry] = STATE(4576), - [sym_val_record] = STATE(4604), - [sym_val_table] = STATE(4604), - [sym_val_closure] = STATE(4604), - [sym__unquoted_in_list] = STATE(4171), - [sym__unquoted_in_list_with_expr] = STATE(4730), - [sym__unquoted_anonymous_prefix] = STATE(4544), - [sym_comment] = STATE(388), - [aux_sym__types_body_repeat1] = STATE(458), - [aux_sym_parameter_repeat2] = STATE(4189), - [aux_sym_list_body_repeat1] = STATE(548), - [anon_sym_true] = ACTIONS(1462), - [anon_sym_false] = ACTIONS(1462), - [anon_sym_null] = ACTIONS(1464), - [aux_sym_cmd_identifier_token3] = ACTIONS(1466), - [aux_sym_cmd_identifier_token4] = ACTIONS(1466), - [aux_sym_cmd_identifier_token5] = ACTIONS(1466), - [sym__newline] = ACTIONS(1576), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1474), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), - [anon_sym_DOT_DOT_LT] = ACTIONS(1480), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1482), - [aux_sym__val_number_decimal_token2] = ACTIONS(1484), - [aux_sym__val_number_decimal_token3] = ACTIONS(1486), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1488), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [STATE(389)] = { - [sym_comment] = STATE(389), + [STATE(383)] = { + [sym_comment] = STATE(383), [ts_builtin_sym_end] = ACTIONS(1523), [anon_sym_EQ] = ACTIONS(1521), [anon_sym_PLUS_EQ] = ACTIONS(1523), @@ -78129,45 +77696,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1523), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(390)] = { - [sym_expr_parenthesized] = STATE(4058), - [sym__spread_parenthesized] = STATE(4700), - [sym_val_range] = STATE(4730), - [sym__val_range] = STATE(4544), - [sym__value] = STATE(4730), - [sym_val_nothing] = STATE(4604), - [sym_val_bool] = STATE(4358), - [sym__spread_variable] = STATE(4795), - [sym_val_variable] = STATE(3879), - [sym_val_cellpath] = STATE(4604), - [sym_val_number] = STATE(4604), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(4361), - [sym_val_duration] = STATE(4604), - [sym_val_filesize] = STATE(4604), - [sym_val_binary] = STATE(4604), - [sym_val_string] = STATE(4604), - [sym__raw_str] = STATE(3638), - [sym__str_double_quotes] = STATE(3638), - [sym__str_single_quotes] = STATE(3638), - [sym__str_back_ticks] = STATE(3638), - [sym_val_interpolated] = STATE(4604), - [sym__inter_single_quotes] = STATE(4595), + [STATE(384)] = { + [sym_comment] = STATE(384), + [ts_builtin_sym_end] = ACTIONS(1527), + [anon_sym_EQ] = ACTIONS(1525), + [anon_sym_PLUS_EQ] = ACTIONS(1527), + [anon_sym_DASH_EQ] = ACTIONS(1527), + [anon_sym_STAR_EQ] = ACTIONS(1527), + [anon_sym_SLASH_EQ] = ACTIONS(1527), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1527), + [anon_sym_in] = ACTIONS(1527), + [sym__newline] = ACTIONS(1527), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_err_GT_PIPE] = ACTIONS(1527), + [anon_sym_out_GT_PIPE] = ACTIONS(1527), + [anon_sym_e_GT_PIPE] = ACTIONS(1527), + [anon_sym_o_GT_PIPE] = ACTIONS(1527), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1527), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1527), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1527), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1527), + [anon_sym_GT2] = ACTIONS(1525), + [anon_sym_DASH2] = ACTIONS(1525), + [anon_sym_STAR2] = ACTIONS(1525), + [anon_sym_and2] = ACTIONS(1527), + [anon_sym_xor2] = ACTIONS(1527), + [anon_sym_or2] = ACTIONS(1527), + [anon_sym_not_DASHin2] = ACTIONS(1527), + [anon_sym_has2] = ACTIONS(1527), + [anon_sym_not_DASHhas2] = ACTIONS(1527), + [anon_sym_starts_DASHwith2] = ACTIONS(1527), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1527), + [anon_sym_ends_DASHwith2] = ACTIONS(1527), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1527), + [anon_sym_EQ_EQ2] = ACTIONS(1527), + [anon_sym_BANG_EQ2] = ACTIONS(1527), + [anon_sym_LT2] = ACTIONS(1525), + [anon_sym_LT_EQ2] = ACTIONS(1527), + [anon_sym_GT_EQ2] = ACTIONS(1527), + [anon_sym_EQ_TILDE2] = ACTIONS(1527), + [anon_sym_BANG_TILDE2] = ACTIONS(1527), + [anon_sym_like2] = ACTIONS(1527), + [anon_sym_not_DASHlike2] = ACTIONS(1527), + [anon_sym_STAR_STAR2] = ACTIONS(1527), + [anon_sym_PLUS_PLUS2] = ACTIONS(1525), + [anon_sym_SLASH2] = ACTIONS(1525), + [anon_sym_mod2] = ACTIONS(1527), + [anon_sym_SLASH_SLASH2] = ACTIONS(1527), + [anon_sym_PLUS2] = ACTIONS(1525), + [anon_sym_bit_DASHshl2] = ACTIONS(1527), + [anon_sym_bit_DASHshr2] = ACTIONS(1527), + [anon_sym_bit_DASHand2] = ACTIONS(1527), + [anon_sym_bit_DASHxor2] = ACTIONS(1527), + [anon_sym_bit_DASHor2] = ACTIONS(1527), + [anon_sym_DOT_DOT2] = ACTIONS(1525), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1527), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1527), + [anon_sym_QMARK2] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_DOT2] = ACTIONS(1525), + [anon_sym_err_GT] = ACTIONS(1525), + [anon_sym_out_GT] = ACTIONS(1525), + [anon_sym_e_GT] = ACTIONS(1525), + [anon_sym_o_GT] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT] = ACTIONS(1525), + [anon_sym_err_GT_GT] = ACTIONS(1527), + [anon_sym_out_GT_GT] = ACTIONS(1527), + [anon_sym_e_GT_GT] = ACTIONS(1527), + [anon_sym_o_GT_GT] = ACTIONS(1527), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1527), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1527), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1527), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1527), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(385)] = { + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), [sym__inter_double_quotes] = STATE(4596), - [sym_val_list] = STATE(4604), - [sym__spread_list] = STATE(4700), - [sym_list_body] = STATE(5036), - [sym_val_entry] = STATE(4576), - [sym_val_record] = STATE(4604), - [sym_val_table] = STATE(4604), - [sym_val_closure] = STATE(4604), + [sym_val_list] = STATE(4601), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(4982), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), [sym__unquoted_in_list] = STATE(4171), - [sym__unquoted_in_list_with_expr] = STATE(4730), - [sym__unquoted_anonymous_prefix] = STATE(4544), - [sym_comment] = STATE(390), - [aux_sym__types_body_repeat1] = STATE(458), - [aux_sym_parameter_repeat2] = STATE(4189), - [aux_sym_list_body_repeat1] = STATE(548), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), + [sym_comment] = STATE(385), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), [anon_sym_true] = ACTIONS(1462), [anon_sym_false] = ACTIONS(1462), [anon_sym_null] = ACTIONS(1464), @@ -78176,7 +77821,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1466), [sym__newline] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1605), + [anon_sym_RBRACK] = ACTIONS(1600), [anon_sym_LPAREN] = ACTIONS(1386), [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), @@ -78207,123 +77852,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(391)] = { - [sym__expr_parenthesized_immediate] = STATE(704), - [sym__immediate_decimal] = STATE(705), - [sym_val_variable] = STATE(704), - [sym_comment] = STATE(391), - [anon_sym_in] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_RPAREN] = ACTIONS(1607), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1609), - [anon_sym_DASH2] = ACTIONS(1609), - [anon_sym_LBRACE] = ACTIONS(1607), - [anon_sym_RBRACE] = ACTIONS(1607), - [anon_sym_STAR2] = ACTIONS(1609), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_has2] = ACTIONS(1607), - [anon_sym_not_DASHhas2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1609), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_like2] = ACTIONS(1607), - [anon_sym_not_DASHlike2] = ACTIONS(1607), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1609), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1609), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [anon_sym_DOT] = ACTIONS(1611), - [aux_sym__immediate_decimal_token1] = ACTIONS(1592), - [aux_sym__immediate_decimal_token2] = ACTIONS(1592), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1609), - [anon_sym_out_GT] = ACTIONS(1609), - [anon_sym_e_GT] = ACTIONS(1609), - [anon_sym_o_GT] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT] = ACTIONS(1609), - [anon_sym_err_GT_GT] = ACTIONS(1607), - [anon_sym_out_GT_GT] = ACTIONS(1607), - [anon_sym_e_GT_GT] = ACTIONS(1607), - [anon_sym_o_GT_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [STATE(386)] = { + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4601), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(4850), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), + [sym_comment] = STATE(386), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), + [sym__newline] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(1578), + [anon_sym_RBRACK] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_COMMA] = ACTIONS(1474), + [anon_sym_DOLLAR] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_token1] = ACTIONS(1404), + [aux_sym__val_number_token2] = ACTIONS(1404), + [aux_sym__val_number_token3] = ACTIONS(1404), + [anon_sym_0b] = ACTIONS(1406), + [anon_sym_0o] = ACTIONS(1408), + [anon_sym_0x] = ACTIONS(1408), + [sym_val_date] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_BQUOTE] = ACTIONS(1416), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(392)] = { - [sym_expr_parenthesized] = STATE(4058), - [sym__spread_parenthesized] = STATE(4700), - [sym_val_range] = STATE(4730), - [sym__val_range] = STATE(4544), - [sym__value] = STATE(4730), - [sym_val_nothing] = STATE(4604), - [sym_val_bool] = STATE(4358), - [sym__spread_variable] = STATE(4795), - [sym_val_variable] = STATE(3879), - [sym_val_cellpath] = STATE(4604), - [sym_val_number] = STATE(4604), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(4361), - [sym_val_duration] = STATE(4604), - [sym_val_filesize] = STATE(4604), - [sym_val_binary] = STATE(4604), - [sym_val_string] = STATE(4604), - [sym__raw_str] = STATE(3638), - [sym__str_double_quotes] = STATE(3638), - [sym__str_single_quotes] = STATE(3638), - [sym__str_back_ticks] = STATE(3638), - [sym_val_interpolated] = STATE(4604), - [sym__inter_single_quotes] = STATE(4595), + [STATE(387)] = { + [sym_comment] = STATE(387), + [aux_sym__types_body_repeat2] = STATE(1482), + [anon_sym_EQ] = ACTIONS(1602), + [anon_sym_PLUS_EQ] = ACTIONS(1602), + [anon_sym_DASH_EQ] = ACTIONS(1602), + [anon_sym_STAR_EQ] = ACTIONS(1602), + [anon_sym_SLASH_EQ] = ACTIONS(1602), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1602), + [anon_sym_in] = ACTIONS(1604), + [sym__newline] = ACTIONS(1604), + [anon_sym_SEMI] = ACTIONS(1604), + [anon_sym_PIPE] = ACTIONS(1604), + [anon_sym_err_GT_PIPE] = ACTIONS(1604), + [anon_sym_out_GT_PIPE] = ACTIONS(1604), + [anon_sym_e_GT_PIPE] = ACTIONS(1604), + [anon_sym_o_GT_PIPE] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1604), + [anon_sym_GT2] = ACTIONS(1604), + [anon_sym_DASH2] = ACTIONS(1604), + [anon_sym_RBRACE] = ACTIONS(1606), + [anon_sym_STAR2] = ACTIONS(1604), + [anon_sym_and2] = ACTIONS(1604), + [anon_sym_xor2] = ACTIONS(1604), + [anon_sym_or2] = ACTIONS(1604), + [anon_sym_not_DASHin2] = ACTIONS(1604), + [anon_sym_has2] = ACTIONS(1604), + [anon_sym_not_DASHhas2] = ACTIONS(1604), + [anon_sym_starts_DASHwith2] = ACTIONS(1604), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1604), + [anon_sym_ends_DASHwith2] = ACTIONS(1604), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1604), + [anon_sym_EQ_EQ2] = ACTIONS(1604), + [anon_sym_BANG_EQ2] = ACTIONS(1604), + [anon_sym_LT2] = ACTIONS(1604), + [anon_sym_LT_EQ2] = ACTIONS(1604), + [anon_sym_GT_EQ2] = ACTIONS(1604), + [anon_sym_EQ_TILDE2] = ACTIONS(1604), + [anon_sym_BANG_TILDE2] = ACTIONS(1604), + [anon_sym_like2] = ACTIONS(1604), + [anon_sym_not_DASHlike2] = ACTIONS(1604), + [anon_sym_STAR_STAR2] = ACTIONS(1604), + [anon_sym_PLUS_PLUS2] = ACTIONS(1604), + [anon_sym_SLASH2] = ACTIONS(1604), + [anon_sym_mod2] = ACTIONS(1604), + [anon_sym_SLASH_SLASH2] = ACTIONS(1604), + [anon_sym_PLUS2] = ACTIONS(1604), + [anon_sym_bit_DASHshl2] = ACTIONS(1604), + [anon_sym_bit_DASHshr2] = ACTIONS(1604), + [anon_sym_bit_DASHand2] = ACTIONS(1604), + [anon_sym_bit_DASHxor2] = ACTIONS(1604), + [anon_sym_bit_DASHor2] = ACTIONS(1604), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), + [sym__entry_separator] = ACTIONS(1612), + [anon_sym_COLON2] = ACTIONS(1614), + [anon_sym_err_GT] = ACTIONS(1604), + [anon_sym_out_GT] = ACTIONS(1604), + [anon_sym_e_GT] = ACTIONS(1604), + [anon_sym_o_GT] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT] = ACTIONS(1604), + [anon_sym_err_GT_GT] = ACTIONS(1604), + [anon_sym_out_GT_GT] = ACTIONS(1604), + [anon_sym_e_GT_GT] = ACTIONS(1604), + [anon_sym_o_GT_GT] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1604), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(388)] = { + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), [sym__inter_double_quotes] = STATE(4596), - [sym_val_list] = STATE(4604), - [sym__spread_list] = STATE(4700), - [sym_list_body] = STATE(5110), - [sym_val_entry] = STATE(4576), - [sym_val_record] = STATE(4604), - [sym_val_table] = STATE(4604), - [sym_val_closure] = STATE(4604), + [sym_val_list] = STATE(4601), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(4869), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), [sym__unquoted_in_list] = STATE(4171), - [sym__unquoted_in_list_with_expr] = STATE(4730), - [sym__unquoted_anonymous_prefix] = STATE(4544), - [sym_comment] = STATE(392), - [aux_sym__types_body_repeat1] = STATE(458), - [aux_sym_parameter_repeat2] = STATE(4189), - [aux_sym_list_body_repeat1] = STATE(548), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), + [sym_comment] = STATE(388), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), [anon_sym_true] = ACTIONS(1462), [anon_sym_false] = ACTIONS(1462), [anon_sym_null] = ACTIONS(1464), @@ -78332,7 +78055,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1466), [sym__newline] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1547), + [anon_sym_RBRACK] = ACTIONS(1537), [anon_sym_LPAREN] = ACTIONS(1386), [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), @@ -78363,201 +78086,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(393)] = { - [sym_comment] = STATE(393), - [aux_sym__types_body_repeat2] = STATE(1460), - [anon_sym_EQ] = ACTIONS(1613), - [anon_sym_PLUS_EQ] = ACTIONS(1613), - [anon_sym_DASH_EQ] = ACTIONS(1613), - [anon_sym_STAR_EQ] = ACTIONS(1613), - [anon_sym_SLASH_EQ] = ACTIONS(1613), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1613), - [anon_sym_in] = ACTIONS(1615), - [sym__newline] = ACTIONS(1615), - [anon_sym_SEMI] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1615), - [anon_sym_err_GT_PIPE] = ACTIONS(1615), - [anon_sym_out_GT_PIPE] = ACTIONS(1615), - [anon_sym_e_GT_PIPE] = ACTIONS(1615), - [anon_sym_o_GT_PIPE] = ACTIONS(1615), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1615), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1615), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1615), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1615), - [anon_sym_GT2] = ACTIONS(1615), - [anon_sym_DASH2] = ACTIONS(1615), - [anon_sym_RBRACE] = ACTIONS(1617), - [anon_sym_STAR2] = ACTIONS(1615), - [anon_sym_and2] = ACTIONS(1615), - [anon_sym_xor2] = ACTIONS(1615), - [anon_sym_or2] = ACTIONS(1615), - [anon_sym_not_DASHin2] = ACTIONS(1615), - [anon_sym_has2] = ACTIONS(1615), - [anon_sym_not_DASHhas2] = ACTIONS(1615), - [anon_sym_starts_DASHwith2] = ACTIONS(1615), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1615), - [anon_sym_ends_DASHwith2] = ACTIONS(1615), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1615), - [anon_sym_EQ_EQ2] = ACTIONS(1615), - [anon_sym_BANG_EQ2] = ACTIONS(1615), - [anon_sym_LT2] = ACTIONS(1615), - [anon_sym_LT_EQ2] = ACTIONS(1615), - [anon_sym_GT_EQ2] = ACTIONS(1615), - [anon_sym_EQ_TILDE2] = ACTIONS(1615), - [anon_sym_BANG_TILDE2] = ACTIONS(1615), - [anon_sym_like2] = ACTIONS(1615), - [anon_sym_not_DASHlike2] = ACTIONS(1615), - [anon_sym_STAR_STAR2] = ACTIONS(1615), - [anon_sym_PLUS_PLUS2] = ACTIONS(1615), - [anon_sym_SLASH2] = ACTIONS(1615), - [anon_sym_mod2] = ACTIONS(1615), - [anon_sym_SLASH_SLASH2] = ACTIONS(1615), - [anon_sym_PLUS2] = ACTIONS(1615), - [anon_sym_bit_DASHshl2] = ACTIONS(1615), - [anon_sym_bit_DASHshr2] = ACTIONS(1615), - [anon_sym_bit_DASHand2] = ACTIONS(1615), - [anon_sym_bit_DASHxor2] = ACTIONS(1615), - [anon_sym_bit_DASHor2] = ACTIONS(1615), - [anon_sym_DOT_DOT2] = ACTIONS(1619), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), - [sym__entry_separator] = ACTIONS(1623), - [anon_sym_COLON2] = ACTIONS(1625), - [anon_sym_err_GT] = ACTIONS(1615), - [anon_sym_out_GT] = ACTIONS(1615), - [anon_sym_e_GT] = ACTIONS(1615), - [anon_sym_o_GT] = ACTIONS(1615), - [anon_sym_err_PLUSout_GT] = ACTIONS(1615), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), - [anon_sym_o_PLUSe_GT] = ACTIONS(1615), - [anon_sym_e_PLUSo_GT] = ACTIONS(1615), - [anon_sym_err_GT_GT] = ACTIONS(1615), - [anon_sym_out_GT_GT] = ACTIONS(1615), - [anon_sym_e_GT_GT] = ACTIONS(1615), - [anon_sym_o_GT_GT] = ACTIONS(1615), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1615), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1615), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1615), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1615), - [anon_sym_POUND] = ACTIONS(103), + [STATE(389)] = { + [sym_comment] = STATE(389), + [anon_sym_EQ] = ACTIONS(1533), + [anon_sym_PLUS_EQ] = ACTIONS(1535), + [anon_sym_DASH_EQ] = ACTIONS(1535), + [anon_sym_STAR_EQ] = ACTIONS(1535), + [anon_sym_SLASH_EQ] = ACTIONS(1535), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1535), + [anon_sym_in] = ACTIONS(1535), + [sym__newline] = ACTIONS(1535), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_PIPE] = ACTIONS(1535), + [anon_sym_err_GT_PIPE] = ACTIONS(1535), + [anon_sym_out_GT_PIPE] = ACTIONS(1535), + [anon_sym_e_GT_PIPE] = ACTIONS(1535), + [anon_sym_o_GT_PIPE] = ACTIONS(1535), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1535), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1535), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1535), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1535), + [anon_sym_RPAREN] = ACTIONS(1535), + [anon_sym_GT2] = ACTIONS(1533), + [anon_sym_DASH2] = ACTIONS(1533), + [anon_sym_RBRACE] = ACTIONS(1535), + [anon_sym_STAR2] = ACTIONS(1533), + [anon_sym_and2] = ACTIONS(1535), + [anon_sym_xor2] = ACTIONS(1535), + [anon_sym_or2] = ACTIONS(1535), + [anon_sym_not_DASHin2] = ACTIONS(1535), + [anon_sym_has2] = ACTIONS(1535), + [anon_sym_not_DASHhas2] = ACTIONS(1535), + [anon_sym_starts_DASHwith2] = ACTIONS(1535), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1535), + [anon_sym_ends_DASHwith2] = ACTIONS(1535), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1535), + [anon_sym_EQ_EQ2] = ACTIONS(1535), + [anon_sym_BANG_EQ2] = ACTIONS(1535), + [anon_sym_LT2] = ACTIONS(1533), + [anon_sym_LT_EQ2] = ACTIONS(1535), + [anon_sym_GT_EQ2] = ACTIONS(1535), + [anon_sym_EQ_TILDE2] = ACTIONS(1535), + [anon_sym_BANG_TILDE2] = ACTIONS(1535), + [anon_sym_like2] = ACTIONS(1535), + [anon_sym_not_DASHlike2] = ACTIONS(1535), + [anon_sym_STAR_STAR2] = ACTIONS(1535), + [anon_sym_PLUS_PLUS2] = ACTIONS(1533), + [anon_sym_SLASH2] = ACTIONS(1533), + [anon_sym_mod2] = ACTIONS(1535), + [anon_sym_SLASH_SLASH2] = ACTIONS(1535), + [anon_sym_PLUS2] = ACTIONS(1533), + [anon_sym_bit_DASHshl2] = ACTIONS(1535), + [anon_sym_bit_DASHshr2] = ACTIONS(1535), + [anon_sym_bit_DASHand2] = ACTIONS(1535), + [anon_sym_bit_DASHxor2] = ACTIONS(1535), + [anon_sym_bit_DASHor2] = ACTIONS(1535), + [anon_sym_DOT_DOT2] = ACTIONS(1533), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1535), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1535), + [anon_sym_COLON2] = ACTIONS(1535), + [anon_sym_DOT2] = ACTIONS(1533), + [anon_sym_err_GT] = ACTIONS(1533), + [anon_sym_out_GT] = ACTIONS(1533), + [anon_sym_e_GT] = ACTIONS(1533), + [anon_sym_o_GT] = ACTIONS(1533), + [anon_sym_err_PLUSout_GT] = ACTIONS(1533), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1533), + [anon_sym_o_PLUSe_GT] = ACTIONS(1533), + [anon_sym_e_PLUSo_GT] = ACTIONS(1533), + [anon_sym_err_GT_GT] = ACTIONS(1535), + [anon_sym_out_GT_GT] = ACTIONS(1535), + [anon_sym_e_GT_GT] = ACTIONS(1535), + [anon_sym_o_GT_GT] = ACTIONS(1535), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1535), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1535), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1535), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1535), + [anon_sym_POUND] = ACTIONS(3), }, - [STATE(394)] = { - [sym_comment] = STATE(394), - [anon_sym_EQ] = ACTIONS(1552), - [anon_sym_PLUS_EQ] = ACTIONS(1554), - [anon_sym_DASH_EQ] = ACTIONS(1554), - [anon_sym_STAR_EQ] = ACTIONS(1554), - [anon_sym_SLASH_EQ] = ACTIONS(1554), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1554), - [anon_sym_in] = ACTIONS(1554), - [sym__newline] = ACTIONS(1554), - [anon_sym_SEMI] = ACTIONS(1554), - [anon_sym_PIPE] = ACTIONS(1554), - [anon_sym_err_GT_PIPE] = ACTIONS(1554), - [anon_sym_out_GT_PIPE] = ACTIONS(1554), - [anon_sym_e_GT_PIPE] = ACTIONS(1554), - [anon_sym_o_GT_PIPE] = ACTIONS(1554), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1554), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1554), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1554), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1554), - [anon_sym_RPAREN] = ACTIONS(1554), - [anon_sym_GT2] = ACTIONS(1552), - [anon_sym_DASH2] = ACTIONS(1552), - [anon_sym_RBRACE] = ACTIONS(1554), - [anon_sym_STAR2] = ACTIONS(1552), - [anon_sym_and2] = ACTIONS(1554), - [anon_sym_xor2] = ACTIONS(1554), - [anon_sym_or2] = ACTIONS(1554), - [anon_sym_not_DASHin2] = ACTIONS(1554), - [anon_sym_has2] = ACTIONS(1554), - [anon_sym_not_DASHhas2] = ACTIONS(1554), - [anon_sym_starts_DASHwith2] = ACTIONS(1554), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1554), - [anon_sym_ends_DASHwith2] = ACTIONS(1554), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1554), - [anon_sym_EQ_EQ2] = ACTIONS(1554), - [anon_sym_BANG_EQ2] = ACTIONS(1554), - [anon_sym_LT2] = ACTIONS(1552), - [anon_sym_LT_EQ2] = ACTIONS(1554), - [anon_sym_GT_EQ2] = ACTIONS(1554), - [anon_sym_EQ_TILDE2] = ACTIONS(1554), - [anon_sym_BANG_TILDE2] = ACTIONS(1554), - [anon_sym_like2] = ACTIONS(1554), - [anon_sym_not_DASHlike2] = ACTIONS(1554), - [anon_sym_STAR_STAR2] = ACTIONS(1554), - [anon_sym_PLUS_PLUS2] = ACTIONS(1552), - [anon_sym_SLASH2] = ACTIONS(1552), - [anon_sym_mod2] = ACTIONS(1554), - [anon_sym_SLASH_SLASH2] = ACTIONS(1554), - [anon_sym_PLUS2] = ACTIONS(1552), - [anon_sym_bit_DASHshl2] = ACTIONS(1554), - [anon_sym_bit_DASHshr2] = ACTIONS(1554), - [anon_sym_bit_DASHand2] = ACTIONS(1554), - [anon_sym_bit_DASHxor2] = ACTIONS(1554), - [anon_sym_bit_DASHor2] = ACTIONS(1554), - [anon_sym_DOT_DOT2] = ACTIONS(1552), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1554), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1554), - [anon_sym_COLON2] = ACTIONS(1554), - [anon_sym_DOT2] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1552), - [anon_sym_out_GT] = ACTIONS(1552), - [anon_sym_e_GT] = ACTIONS(1552), - [anon_sym_o_GT] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT] = ACTIONS(1552), - [anon_sym_err_GT_GT] = ACTIONS(1554), - [anon_sym_out_GT_GT] = ACTIONS(1554), - [anon_sym_e_GT_GT] = ACTIONS(1554), - [anon_sym_o_GT_GT] = ACTIONS(1554), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1554), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1554), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1554), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1554), + [STATE(390)] = { + [sym__expr_parenthesized_immediate] = STATE(681), + [sym__immediate_decimal] = STATE(682), + [sym_val_variable] = STATE(681), + [sym_comment] = STATE(390), + [anon_sym_in] = ACTIONS(1584), + [sym__newline] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1584), + [anon_sym_err_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_GT_PIPE] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1584), + [anon_sym_RPAREN] = ACTIONS(1584), + [anon_sym_DOLLAR] = ACTIONS(1586), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1584), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1584), + [anon_sym_xor2] = ACTIONS(1584), + [anon_sym_or2] = ACTIONS(1584), + [anon_sym_not_DASHin2] = ACTIONS(1584), + [anon_sym_has2] = ACTIONS(1584), + [anon_sym_not_DASHhas2] = ACTIONS(1584), + [anon_sym_starts_DASHwith2] = ACTIONS(1584), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1584), + [anon_sym_ends_DASHwith2] = ACTIONS(1584), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1584), + [anon_sym_EQ_EQ2] = ACTIONS(1584), + [anon_sym_BANG_EQ2] = ACTIONS(1584), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1584), + [anon_sym_GT_EQ2] = ACTIONS(1584), + [anon_sym_EQ_TILDE2] = ACTIONS(1584), + [anon_sym_BANG_TILDE2] = ACTIONS(1584), + [anon_sym_like2] = ACTIONS(1584), + [anon_sym_not_DASHlike2] = ACTIONS(1584), + [anon_sym_LPAREN2] = ACTIONS(1590), + [anon_sym_STAR_STAR2] = ACTIONS(1584), + [anon_sym_PLUS_PLUS2] = ACTIONS(1584), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1584), + [anon_sym_SLASH_SLASH2] = ACTIONS(1584), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1584), + [anon_sym_bit_DASHshr2] = ACTIONS(1584), + [anon_sym_bit_DASHand2] = ACTIONS(1584), + [anon_sym_bit_DASHxor2] = ACTIONS(1584), + [anon_sym_bit_DASHor2] = ACTIONS(1584), + [anon_sym_DOT] = ACTIONS(1616), + [aux_sym__immediate_decimal_token1] = ACTIONS(1594), + [aux_sym__immediate_decimal_token2] = ACTIONS(1594), + [aux_sym__immediate_decimal_token3] = ACTIONS(1596), + [aux_sym__immediate_decimal_token4] = ACTIONS(1596), + [anon_sym_err_GT] = ACTIONS(1588), + [anon_sym_out_GT] = ACTIONS(1588), + [anon_sym_e_GT] = ACTIONS(1588), + [anon_sym_o_GT] = ACTIONS(1588), + [anon_sym_err_PLUSout_GT] = ACTIONS(1588), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), + [anon_sym_o_PLUSe_GT] = ACTIONS(1588), + [anon_sym_e_PLUSo_GT] = ACTIONS(1588), + [anon_sym_err_GT_GT] = ACTIONS(1584), + [anon_sym_out_GT_GT] = ACTIONS(1584), + [anon_sym_e_GT_GT] = ACTIONS(1584), + [anon_sym_o_GT_GT] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1584), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(395)] = { - [sym_expr_parenthesized] = STATE(4058), - [sym__spread_parenthesized] = STATE(4700), - [sym_val_range] = STATE(4730), - [sym__val_range] = STATE(4544), - [sym__value] = STATE(4730), - [sym_val_nothing] = STATE(4604), - [sym_val_bool] = STATE(4358), - [sym__spread_variable] = STATE(4795), - [sym_val_variable] = STATE(3879), - [sym_val_cellpath] = STATE(4604), - [sym_val_number] = STATE(4604), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(4361), - [sym_val_duration] = STATE(4604), - [sym_val_filesize] = STATE(4604), - [sym_val_binary] = STATE(4604), - [sym_val_string] = STATE(4604), - [sym__raw_str] = STATE(3638), - [sym__str_double_quotes] = STATE(3638), - [sym__str_single_quotes] = STATE(3638), - [sym__str_back_ticks] = STATE(3638), - [sym_val_interpolated] = STATE(4604), - [sym__inter_single_quotes] = STATE(4595), + [STATE(391)] = { + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), [sym__inter_double_quotes] = STATE(4596), - [sym_val_list] = STATE(4604), - [sym__spread_list] = STATE(4700), - [sym_list_body] = STATE(4851), - [sym_val_entry] = STATE(4576), - [sym_val_record] = STATE(4604), - [sym_val_table] = STATE(4604), - [sym_val_closure] = STATE(4604), + [sym_val_list] = STATE(4601), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(4867), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), [sym__unquoted_in_list] = STATE(4171), - [sym__unquoted_in_list_with_expr] = STATE(4730), - [sym__unquoted_anonymous_prefix] = STATE(4544), - [sym_comment] = STATE(395), - [aux_sym__types_body_repeat1] = STATE(458), - [aux_sym_parameter_repeat2] = STATE(4189), - [aux_sym_list_body_repeat1] = STATE(548), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), + [sym_comment] = STATE(391), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), [anon_sym_true] = ACTIONS(1462), [anon_sym_false] = ACTIONS(1462), [anon_sym_null] = ACTIONS(1464), @@ -78566,7 +78289,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1466), [sym__newline] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1541), + [anon_sym_RBRACK] = ACTIONS(1618), [anon_sym_LPAREN] = ACTIONS(1386), [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), @@ -78597,45 +78320,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(396)] = { - [sym_expr_parenthesized] = STATE(4058), - [sym__spread_parenthesized] = STATE(4700), - [sym_val_range] = STATE(4730), - [sym__val_range] = STATE(4544), - [sym__value] = STATE(4730), - [sym_val_nothing] = STATE(4604), - [sym_val_bool] = STATE(4358), - [sym__spread_variable] = STATE(4795), - [sym_val_variable] = STATE(3879), - [sym_val_cellpath] = STATE(4604), - [sym_val_number] = STATE(4604), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(4361), - [sym_val_duration] = STATE(4604), - [sym_val_filesize] = STATE(4604), - [sym_val_binary] = STATE(4604), - [sym_val_string] = STATE(4604), - [sym__raw_str] = STATE(3638), - [sym__str_double_quotes] = STATE(3638), - [sym__str_single_quotes] = STATE(3638), - [sym__str_back_ticks] = STATE(3638), - [sym_val_interpolated] = STATE(4604), - [sym__inter_single_quotes] = STATE(4595), + [STATE(392)] = { + [sym_path] = STATE(427), + [sym_comment] = STATE(392), + [aux_sym__where_predicate_lhs_repeat1] = STATE(393), + [ts_builtin_sym_end] = ACTIONS(1494), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_PLUS_EQ] = ACTIONS(1494), + [anon_sym_DASH_EQ] = ACTIONS(1494), + [anon_sym_STAR_EQ] = ACTIONS(1494), + [anon_sym_SLASH_EQ] = ACTIONS(1494), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1494), + [anon_sym_in] = ACTIONS(1494), + [sym__newline] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_err_GT_PIPE] = ACTIONS(1494), + [anon_sym_out_GT_PIPE] = ACTIONS(1494), + [anon_sym_e_GT_PIPE] = ACTIONS(1494), + [anon_sym_o_GT_PIPE] = ACTIONS(1494), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1494), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1494), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1494), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1494), + [anon_sym_GT2] = ACTIONS(1492), + [anon_sym_DASH2] = ACTIONS(1492), + [anon_sym_STAR2] = ACTIONS(1492), + [anon_sym_and2] = ACTIONS(1494), + [anon_sym_xor2] = ACTIONS(1494), + [anon_sym_or2] = ACTIONS(1494), + [anon_sym_not_DASHin2] = ACTIONS(1494), + [anon_sym_has2] = ACTIONS(1494), + [anon_sym_not_DASHhas2] = ACTIONS(1494), + [anon_sym_starts_DASHwith2] = ACTIONS(1494), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1494), + [anon_sym_ends_DASHwith2] = ACTIONS(1494), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1494), + [anon_sym_EQ_EQ2] = ACTIONS(1494), + [anon_sym_BANG_EQ2] = ACTIONS(1494), + [anon_sym_LT2] = ACTIONS(1492), + [anon_sym_LT_EQ2] = ACTIONS(1494), + [anon_sym_GT_EQ2] = ACTIONS(1494), + [anon_sym_EQ_TILDE2] = ACTIONS(1494), + [anon_sym_BANG_TILDE2] = ACTIONS(1494), + [anon_sym_like2] = ACTIONS(1494), + [anon_sym_not_DASHlike2] = ACTIONS(1494), + [anon_sym_STAR_STAR2] = ACTIONS(1494), + [anon_sym_PLUS_PLUS2] = ACTIONS(1492), + [anon_sym_SLASH2] = ACTIONS(1492), + [anon_sym_mod2] = ACTIONS(1494), + [anon_sym_SLASH_SLASH2] = ACTIONS(1494), + [anon_sym_PLUS2] = ACTIONS(1492), + [anon_sym_bit_DASHshl2] = ACTIONS(1494), + [anon_sym_bit_DASHshr2] = ACTIONS(1494), + [anon_sym_bit_DASHand2] = ACTIONS(1494), + [anon_sym_bit_DASHxor2] = ACTIONS(1494), + [anon_sym_bit_DASHor2] = ACTIONS(1494), + [anon_sym_DOT_DOT2] = ACTIONS(1492), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), + [anon_sym_DOT2] = ACTIONS(1556), + [anon_sym_err_GT] = ACTIONS(1492), + [anon_sym_out_GT] = ACTIONS(1492), + [anon_sym_e_GT] = ACTIONS(1492), + [anon_sym_o_GT] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT] = ACTIONS(1492), + [anon_sym_err_GT_GT] = ACTIONS(1494), + [anon_sym_out_GT_GT] = ACTIONS(1494), + [anon_sym_e_GT_GT] = ACTIONS(1494), + [anon_sym_o_GT_GT] = ACTIONS(1494), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1494), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1494), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1494), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1494), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(393)] = { + [sym_path] = STATE(427), + [sym_comment] = STATE(393), + [aux_sym__where_predicate_lhs_repeat1] = STATE(393), + [ts_builtin_sym_end] = ACTIONS(1498), + [anon_sym_EQ] = ACTIONS(1496), + [anon_sym_PLUS_EQ] = ACTIONS(1498), + [anon_sym_DASH_EQ] = ACTIONS(1498), + [anon_sym_STAR_EQ] = ACTIONS(1498), + [anon_sym_SLASH_EQ] = ACTIONS(1498), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1498), + [anon_sym_in] = ACTIONS(1498), + [sym__newline] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_err_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_GT_PIPE] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1498), + [anon_sym_GT2] = ACTIONS(1496), + [anon_sym_DASH2] = ACTIONS(1496), + [anon_sym_STAR2] = ACTIONS(1496), + [anon_sym_and2] = ACTIONS(1498), + [anon_sym_xor2] = ACTIONS(1498), + [anon_sym_or2] = ACTIONS(1498), + [anon_sym_not_DASHin2] = ACTIONS(1498), + [anon_sym_has2] = ACTIONS(1498), + [anon_sym_not_DASHhas2] = ACTIONS(1498), + [anon_sym_starts_DASHwith2] = ACTIONS(1498), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1498), + [anon_sym_ends_DASHwith2] = ACTIONS(1498), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1498), + [anon_sym_EQ_EQ2] = ACTIONS(1498), + [anon_sym_BANG_EQ2] = ACTIONS(1498), + [anon_sym_LT2] = ACTIONS(1496), + [anon_sym_LT_EQ2] = ACTIONS(1498), + [anon_sym_GT_EQ2] = ACTIONS(1498), + [anon_sym_EQ_TILDE2] = ACTIONS(1498), + [anon_sym_BANG_TILDE2] = ACTIONS(1498), + [anon_sym_like2] = ACTIONS(1498), + [anon_sym_not_DASHlike2] = ACTIONS(1498), + [anon_sym_STAR_STAR2] = ACTIONS(1498), + [anon_sym_PLUS_PLUS2] = ACTIONS(1496), + [anon_sym_SLASH2] = ACTIONS(1496), + [anon_sym_mod2] = ACTIONS(1498), + [anon_sym_SLASH_SLASH2] = ACTIONS(1498), + [anon_sym_PLUS2] = ACTIONS(1496), + [anon_sym_bit_DASHshl2] = ACTIONS(1498), + [anon_sym_bit_DASHshr2] = ACTIONS(1498), + [anon_sym_bit_DASHand2] = ACTIONS(1498), + [anon_sym_bit_DASHxor2] = ACTIONS(1498), + [anon_sym_bit_DASHor2] = ACTIONS(1498), + [anon_sym_DOT_DOT2] = ACTIONS(1496), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1498), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1498), + [anon_sym_DOT2] = ACTIONS(1620), + [anon_sym_err_GT] = ACTIONS(1496), + [anon_sym_out_GT] = ACTIONS(1496), + [anon_sym_e_GT] = ACTIONS(1496), + [anon_sym_o_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT] = ACTIONS(1496), + [anon_sym_err_GT_GT] = ACTIONS(1498), + [anon_sym_out_GT_GT] = ACTIONS(1498), + [anon_sym_e_GT_GT] = ACTIONS(1498), + [anon_sym_o_GT_GT] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1498), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(394)] = { + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), [sym__inter_double_quotes] = STATE(4596), - [sym_val_list] = STATE(4604), - [sym__spread_list] = STATE(4700), - [sym_list_body] = STATE(4868), - [sym_val_entry] = STATE(4576), - [sym_val_record] = STATE(4604), - [sym_val_table] = STATE(4604), - [sym_val_closure] = STATE(4604), + [sym_val_list] = STATE(4601), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(5109), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), [sym__unquoted_in_list] = STATE(4171), - [sym__unquoted_in_list_with_expr] = STATE(4730), - [sym__unquoted_anonymous_prefix] = STATE(4544), - [sym_comment] = STATE(396), - [aux_sym__types_body_repeat1] = STATE(458), - [aux_sym_parameter_repeat2] = STATE(4189), - [aux_sym_list_body_repeat1] = STATE(548), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), + [sym_comment] = STATE(394), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), [anon_sym_true] = ACTIONS(1462), [anon_sym_false] = ACTIONS(1462), [anon_sym_null] = ACTIONS(1464), @@ -78644,7 +78523,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token5] = ACTIONS(1466), [sym__newline] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1627), + [anon_sym_RBRACK] = ACTIONS(1551), [anon_sym_LPAREN] = ACTIONS(1386), [anon_sym_COMMA] = ACTIONS(1474), [anon_sym_DOLLAR] = ACTIONS(1390), @@ -78675,45 +78554,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, + [STATE(395)] = { + [sym__expr_parenthesized_immediate] = STATE(679), + [sym__immediate_decimal] = STATE(680), + [sym_val_variable] = STATE(679), + [sym_comment] = STATE(395), + [anon_sym_in] = ACTIONS(1623), + [sym__newline] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1623), + [anon_sym_err_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_GT_PIPE] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), + [anon_sym_RPAREN] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(1586), + [anon_sym_GT2] = ACTIONS(1625), + [anon_sym_DASH2] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_RBRACE] = ACTIONS(1623), + [anon_sym_STAR2] = ACTIONS(1625), + [anon_sym_and2] = ACTIONS(1623), + [anon_sym_xor2] = ACTIONS(1623), + [anon_sym_or2] = ACTIONS(1623), + [anon_sym_not_DASHin2] = ACTIONS(1623), + [anon_sym_has2] = ACTIONS(1623), + [anon_sym_not_DASHhas2] = ACTIONS(1623), + [anon_sym_starts_DASHwith2] = ACTIONS(1623), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1623), + [anon_sym_ends_DASHwith2] = ACTIONS(1623), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1623), + [anon_sym_EQ_EQ2] = ACTIONS(1623), + [anon_sym_BANG_EQ2] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1625), + [anon_sym_LT_EQ2] = ACTIONS(1623), + [anon_sym_GT_EQ2] = ACTIONS(1623), + [anon_sym_EQ_TILDE2] = ACTIONS(1623), + [anon_sym_BANG_TILDE2] = ACTIONS(1623), + [anon_sym_like2] = ACTIONS(1623), + [anon_sym_not_DASHlike2] = ACTIONS(1623), + [anon_sym_LPAREN2] = ACTIONS(1590), + [anon_sym_STAR_STAR2] = ACTIONS(1623), + [anon_sym_PLUS_PLUS2] = ACTIONS(1623), + [anon_sym_SLASH2] = ACTIONS(1625), + [anon_sym_mod2] = ACTIONS(1623), + [anon_sym_SLASH_SLASH2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1625), + [anon_sym_bit_DASHshl2] = ACTIONS(1623), + [anon_sym_bit_DASHshr2] = ACTIONS(1623), + [anon_sym_bit_DASHand2] = ACTIONS(1623), + [anon_sym_bit_DASHxor2] = ACTIONS(1623), + [anon_sym_bit_DASHor2] = ACTIONS(1623), + [anon_sym_DOT] = ACTIONS(1627), + [aux_sym__immediate_decimal_token1] = ACTIONS(1594), + [aux_sym__immediate_decimal_token2] = ACTIONS(1594), + [aux_sym__immediate_decimal_token3] = ACTIONS(1596), + [aux_sym__immediate_decimal_token4] = ACTIONS(1596), + [anon_sym_err_GT] = ACTIONS(1625), + [anon_sym_out_GT] = ACTIONS(1625), + [anon_sym_e_GT] = ACTIONS(1625), + [anon_sym_o_GT] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT] = ACTIONS(1625), + [anon_sym_err_GT_GT] = ACTIONS(1623), + [anon_sym_out_GT_GT] = ACTIONS(1623), + [anon_sym_e_GT_GT] = ACTIONS(1623), + [anon_sym_o_GT_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(396)] = { + [sym_comment] = STATE(396), + [anon_sym_EQ] = ACTIONS(1513), + [anon_sym_PLUS_EQ] = ACTIONS(1515), + [anon_sym_DASH_EQ] = ACTIONS(1515), + [anon_sym_STAR_EQ] = ACTIONS(1515), + [anon_sym_SLASH_EQ] = ACTIONS(1515), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1515), + [anon_sym_in] = ACTIONS(1515), + [sym__newline] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_err_GT_PIPE] = ACTIONS(1515), + [anon_sym_out_GT_PIPE] = ACTIONS(1515), + [anon_sym_e_GT_PIPE] = ACTIONS(1515), + [anon_sym_o_GT_PIPE] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1515), + [anon_sym_RPAREN] = ACTIONS(1515), + [anon_sym_GT2] = ACTIONS(1513), + [anon_sym_DASH2] = ACTIONS(1513), + [anon_sym_RBRACE] = ACTIONS(1515), + [anon_sym_STAR2] = ACTIONS(1513), + [anon_sym_and2] = ACTIONS(1515), + [anon_sym_xor2] = ACTIONS(1515), + [anon_sym_or2] = ACTIONS(1515), + [anon_sym_not_DASHin2] = ACTIONS(1515), + [anon_sym_has2] = ACTIONS(1515), + [anon_sym_not_DASHhas2] = ACTIONS(1515), + [anon_sym_starts_DASHwith2] = ACTIONS(1515), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1515), + [anon_sym_ends_DASHwith2] = ACTIONS(1515), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1515), + [anon_sym_EQ_EQ2] = ACTIONS(1515), + [anon_sym_BANG_EQ2] = ACTIONS(1515), + [anon_sym_LT2] = ACTIONS(1513), + [anon_sym_LT_EQ2] = ACTIONS(1515), + [anon_sym_GT_EQ2] = ACTIONS(1515), + [anon_sym_EQ_TILDE2] = ACTIONS(1515), + [anon_sym_BANG_TILDE2] = ACTIONS(1515), + [anon_sym_like2] = ACTIONS(1515), + [anon_sym_not_DASHlike2] = ACTIONS(1515), + [anon_sym_STAR_STAR2] = ACTIONS(1515), + [anon_sym_PLUS_PLUS2] = ACTIONS(1513), + [anon_sym_SLASH2] = ACTIONS(1513), + [anon_sym_mod2] = ACTIONS(1515), + [anon_sym_SLASH_SLASH2] = ACTIONS(1515), + [anon_sym_PLUS2] = ACTIONS(1513), + [anon_sym_bit_DASHshl2] = ACTIONS(1515), + [anon_sym_bit_DASHshr2] = ACTIONS(1515), + [anon_sym_bit_DASHand2] = ACTIONS(1515), + [anon_sym_bit_DASHxor2] = ACTIONS(1515), + [anon_sym_bit_DASHor2] = ACTIONS(1515), + [anon_sym_DOT_DOT2] = ACTIONS(1513), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1515), + [anon_sym_COLON2] = ACTIONS(1515), + [anon_sym_DOT2] = ACTIONS(1513), + [anon_sym_err_GT] = ACTIONS(1513), + [anon_sym_out_GT] = ACTIONS(1513), + [anon_sym_e_GT] = ACTIONS(1513), + [anon_sym_o_GT] = ACTIONS(1513), + [anon_sym_err_PLUSout_GT] = ACTIONS(1513), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1513), + [anon_sym_o_PLUSe_GT] = ACTIONS(1513), + [anon_sym_e_PLUSo_GT] = ACTIONS(1513), + [anon_sym_err_GT_GT] = ACTIONS(1515), + [anon_sym_out_GT_GT] = ACTIONS(1515), + [anon_sym_e_GT_GT] = ACTIONS(1515), + [anon_sym_o_GT_GT] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1515), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(397)] = { - [sym_expr_parenthesized] = STATE(4058), - [sym__spread_parenthesized] = STATE(4700), - [sym_val_range] = STATE(4730), - [sym__val_range] = STATE(4544), - [sym__value] = STATE(4730), - [sym_val_nothing] = STATE(4604), - [sym_val_bool] = STATE(4358), - [sym__spread_variable] = STATE(4795), - [sym_val_variable] = STATE(3879), - [sym_val_cellpath] = STATE(4604), - [sym_val_number] = STATE(4604), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(4361), - [sym_val_duration] = STATE(4604), - [sym_val_filesize] = STATE(4604), - [sym_val_binary] = STATE(4604), - [sym_val_string] = STATE(4604), - [sym__raw_str] = STATE(3638), - [sym__str_double_quotes] = STATE(3638), - [sym__str_single_quotes] = STATE(3638), - [sym__str_back_ticks] = STATE(3638), - [sym_val_interpolated] = STATE(4604), - [sym__inter_single_quotes] = STATE(4595), + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), [sym__inter_double_quotes] = STATE(4596), - [sym_val_list] = STATE(4604), - [sym__spread_list] = STATE(4700), - [sym_list_body] = STATE(5021), - [sym_val_entry] = STATE(4576), - [sym_val_record] = STATE(4604), - [sym_val_table] = STATE(4604), - [sym_val_closure] = STATE(4604), + [sym_val_list] = STATE(4601), + [sym__spread_list] = STATE(4806), + [sym_list_body] = STATE(4849), + [sym_val_entry] = STATE(4571), + [sym_val_record] = STATE(4601), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), [sym__unquoted_in_list] = STATE(4171), - [sym__unquoted_in_list_with_expr] = STATE(4730), - [sym__unquoted_anonymous_prefix] = STATE(4544), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), [sym_comment] = STATE(397), - [aux_sym__types_body_repeat1] = STATE(458), - [aux_sym_parameter_repeat2] = STATE(4189), - [aux_sym_list_body_repeat1] = STATE(548), + [aux_sym__types_body_repeat1] = STATE(462), + [aux_sym_parameter_repeat2] = STATE(4190), + [aux_sym_list_body_repeat1] = STATE(546), [anon_sym_true] = ACTIONS(1462), [anon_sym_false] = ACTIONS(1462), [anon_sym_null] = ACTIONS(1464), @@ -78754,241 +78789,318 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1426), }, [STATE(398)] = { - [sym__expr_parenthesized_immediate] = STATE(846), - [sym__immediate_decimal] = STATE(909), - [sym_val_variable] = STATE(846), + [sym__expr_parenthesized_immediate] = STATE(829), + [sym__immediate_decimal] = STATE(952), + [sym_val_variable] = STATE(829), [sym_comment] = STATE(398), - [anon_sym_in] = ACTIONS(1631), - [sym__newline] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_PIPE] = ACTIONS(1631), - [anon_sym_err_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_GT_PIPE] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1631), - [anon_sym_RPAREN] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_LBRACE] = ACTIONS(1631), - [anon_sym_RBRACE] = ACTIONS(1631), - [anon_sym_STAR2] = ACTIONS(1633), - [anon_sym_and2] = ACTIONS(1631), - [anon_sym_xor2] = ACTIONS(1631), - [anon_sym_or2] = ACTIONS(1631), - [anon_sym_not_DASHin2] = ACTIONS(1631), - [anon_sym_has2] = ACTIONS(1631), - [anon_sym_not_DASHhas2] = ACTIONS(1631), - [anon_sym_starts_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1631), - [anon_sym_ends_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1631), - [anon_sym_EQ_EQ2] = ACTIONS(1631), - [anon_sym_BANG_EQ2] = ACTIONS(1631), - [anon_sym_LT2] = ACTIONS(1633), - [anon_sym_LT_EQ2] = ACTIONS(1631), - [anon_sym_GT_EQ2] = ACTIONS(1631), - [anon_sym_EQ_TILDE2] = ACTIONS(1631), - [anon_sym_BANG_TILDE2] = ACTIONS(1631), - [anon_sym_like2] = ACTIONS(1631), - [anon_sym_not_DASHlike2] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1631), - [anon_sym_PLUS_PLUS2] = ACTIONS(1631), - [anon_sym_SLASH2] = ACTIONS(1633), - [anon_sym_mod2] = ACTIONS(1631), - [anon_sym_SLASH_SLASH2] = ACTIONS(1631), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_bit_DASHshl2] = ACTIONS(1631), - [anon_sym_bit_DASHshr2] = ACTIONS(1631), - [anon_sym_bit_DASHand2] = ACTIONS(1631), - [anon_sym_bit_DASHxor2] = ACTIONS(1631), - [anon_sym_bit_DASHor2] = ACTIONS(1631), - [aux_sym__immediate_decimal_token1] = ACTIONS(1635), - [aux_sym__immediate_decimal_token2] = ACTIONS(1635), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1631), - [anon_sym_out_GT_GT] = ACTIONS(1631), - [anon_sym_e_GT_GT] = ACTIONS(1631), - [anon_sym_o_GT_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1631), + [anon_sym_in] = ACTIONS(1584), + [sym__newline] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1584), + [anon_sym_err_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_GT_PIPE] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1584), + [anon_sym_RPAREN] = ACTIONS(1584), + [anon_sym_DOLLAR] = ACTIONS(1586), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1584), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1584), + [anon_sym_xor2] = ACTIONS(1584), + [anon_sym_or2] = ACTIONS(1584), + [anon_sym_not_DASHin2] = ACTIONS(1584), + [anon_sym_has2] = ACTIONS(1584), + [anon_sym_not_DASHhas2] = ACTIONS(1584), + [anon_sym_starts_DASHwith2] = ACTIONS(1584), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1584), + [anon_sym_ends_DASHwith2] = ACTIONS(1584), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1584), + [anon_sym_EQ_EQ2] = ACTIONS(1584), + [anon_sym_BANG_EQ2] = ACTIONS(1584), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1584), + [anon_sym_GT_EQ2] = ACTIONS(1584), + [anon_sym_EQ_TILDE2] = ACTIONS(1584), + [anon_sym_BANG_TILDE2] = ACTIONS(1584), + [anon_sym_like2] = ACTIONS(1584), + [anon_sym_not_DASHlike2] = ACTIONS(1584), + [anon_sym_LPAREN2] = ACTIONS(1590), + [anon_sym_STAR_STAR2] = ACTIONS(1584), + [anon_sym_PLUS_PLUS2] = ACTIONS(1584), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1584), + [anon_sym_SLASH_SLASH2] = ACTIONS(1584), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1584), + [anon_sym_bit_DASHshr2] = ACTIONS(1584), + [anon_sym_bit_DASHand2] = ACTIONS(1584), + [anon_sym_bit_DASHxor2] = ACTIONS(1584), + [anon_sym_bit_DASHor2] = ACTIONS(1584), + [aux_sym__immediate_decimal_token1] = ACTIONS(1631), + [aux_sym__immediate_decimal_token2] = ACTIONS(1631), + [aux_sym__immediate_decimal_token3] = ACTIONS(1596), + [aux_sym__immediate_decimal_token4] = ACTIONS(1596), + [anon_sym_err_GT] = ACTIONS(1588), + [anon_sym_out_GT] = ACTIONS(1588), + [anon_sym_e_GT] = ACTIONS(1588), + [anon_sym_o_GT] = ACTIONS(1588), + [anon_sym_err_PLUSout_GT] = ACTIONS(1588), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), + [anon_sym_o_PLUSe_GT] = ACTIONS(1588), + [anon_sym_e_PLUSo_GT] = ACTIONS(1588), + [anon_sym_err_GT_GT] = ACTIONS(1584), + [anon_sym_out_GT_GT] = ACTIONS(1584), + [anon_sym_e_GT_GT] = ACTIONS(1584), + [anon_sym_o_GT_GT] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1584), [anon_sym_POUND] = ACTIONS(3), }, [STATE(399)] = { - [sym__expr_parenthesized_immediate] = STATE(846), - [sym__immediate_decimal] = STATE(903), - [sym_val_variable] = STATE(846), + [sym__expr_parenthesized_immediate] = STATE(871), + [sym__immediate_decimal] = STATE(923), + [sym_val_variable] = STATE(871), [sym_comment] = STATE(399), - [anon_sym_in] = ACTIONS(1631), - [sym__newline] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_PIPE] = ACTIONS(1631), - [anon_sym_err_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_GT_PIPE] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1631), - [anon_sym_RPAREN] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(1631), - [anon_sym_STAR2] = ACTIONS(1633), - [anon_sym_and2] = ACTIONS(1631), - [anon_sym_xor2] = ACTIONS(1631), - [anon_sym_or2] = ACTIONS(1631), - [anon_sym_not_DASHin2] = ACTIONS(1631), - [anon_sym_has2] = ACTIONS(1631), - [anon_sym_not_DASHhas2] = ACTIONS(1631), - [anon_sym_starts_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1631), - [anon_sym_ends_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1631), - [anon_sym_EQ_EQ2] = ACTIONS(1631), - [anon_sym_BANG_EQ2] = ACTIONS(1631), - [anon_sym_LT2] = ACTIONS(1633), - [anon_sym_LT_EQ2] = ACTIONS(1631), - [anon_sym_GT_EQ2] = ACTIONS(1631), - [anon_sym_EQ_TILDE2] = ACTIONS(1631), - [anon_sym_BANG_TILDE2] = ACTIONS(1631), - [anon_sym_like2] = ACTIONS(1631), - [anon_sym_not_DASHlike2] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1631), - [anon_sym_PLUS_PLUS2] = ACTIONS(1631), - [anon_sym_SLASH2] = ACTIONS(1633), - [anon_sym_mod2] = ACTIONS(1631), - [anon_sym_SLASH_SLASH2] = ACTIONS(1631), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_bit_DASHshl2] = ACTIONS(1631), - [anon_sym_bit_DASHshr2] = ACTIONS(1631), - [anon_sym_bit_DASHand2] = ACTIONS(1631), - [anon_sym_bit_DASHxor2] = ACTIONS(1631), - [anon_sym_bit_DASHor2] = ACTIONS(1631), + [anon_sym_in] = ACTIONS(1633), + [sym__newline] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1633), + [anon_sym_err_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_GT_PIPE] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1633), + [anon_sym_RPAREN] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(1586), + [anon_sym_GT2] = ACTIONS(1635), + [anon_sym_DASH2] = ACTIONS(1635), + [anon_sym_RBRACE] = ACTIONS(1633), + [anon_sym_STAR2] = ACTIONS(1635), + [anon_sym_and2] = ACTIONS(1633), + [anon_sym_xor2] = ACTIONS(1633), + [anon_sym_or2] = ACTIONS(1633), + [anon_sym_not_DASHin2] = ACTIONS(1633), + [anon_sym_has2] = ACTIONS(1633), + [anon_sym_not_DASHhas2] = ACTIONS(1633), + [anon_sym_starts_DASHwith2] = ACTIONS(1633), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1633), + [anon_sym_ends_DASHwith2] = ACTIONS(1633), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1633), + [anon_sym_EQ_EQ2] = ACTIONS(1633), + [anon_sym_BANG_EQ2] = ACTIONS(1633), + [anon_sym_LT2] = ACTIONS(1635), + [anon_sym_LT_EQ2] = ACTIONS(1633), + [anon_sym_GT_EQ2] = ACTIONS(1633), + [anon_sym_EQ_TILDE2] = ACTIONS(1633), + [anon_sym_BANG_TILDE2] = ACTIONS(1633), + [anon_sym_like2] = ACTIONS(1633), + [anon_sym_not_DASHlike2] = ACTIONS(1633), + [anon_sym_LPAREN2] = ACTIONS(1590), + [anon_sym_STAR_STAR2] = ACTIONS(1633), + [anon_sym_PLUS_PLUS2] = ACTIONS(1633), + [anon_sym_SLASH2] = ACTIONS(1635), + [anon_sym_mod2] = ACTIONS(1633), + [anon_sym_SLASH_SLASH2] = ACTIONS(1633), + [anon_sym_PLUS2] = ACTIONS(1635), + [anon_sym_bit_DASHshl2] = ACTIONS(1633), + [anon_sym_bit_DASHshr2] = ACTIONS(1633), + [anon_sym_bit_DASHand2] = ACTIONS(1633), + [anon_sym_bit_DASHxor2] = ACTIONS(1633), + [anon_sym_bit_DASHor2] = ACTIONS(1633), [aux_sym__immediate_decimal_token1] = ACTIONS(1637), [aux_sym__immediate_decimal_token2] = ACTIONS(1637), [aux_sym__immediate_decimal_token3] = ACTIONS(1639), [aux_sym__immediate_decimal_token4] = ACTIONS(1639), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1631), - [anon_sym_out_GT_GT] = ACTIONS(1631), - [anon_sym_e_GT_GT] = ACTIONS(1631), - [anon_sym_o_GT_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1631), + [anon_sym_err_GT] = ACTIONS(1635), + [anon_sym_out_GT] = ACTIONS(1635), + [anon_sym_e_GT] = ACTIONS(1635), + [anon_sym_o_GT] = ACTIONS(1635), + [anon_sym_err_PLUSout_GT] = ACTIONS(1635), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1635), + [anon_sym_o_PLUSe_GT] = ACTIONS(1635), + [anon_sym_e_PLUSo_GT] = ACTIONS(1635), + [anon_sym_err_GT_GT] = ACTIONS(1633), + [anon_sym_out_GT_GT] = ACTIONS(1633), + [anon_sym_e_GT_GT] = ACTIONS(1633), + [anon_sym_o_GT_GT] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1633), [sym__unquoted_pattern] = ACTIONS(1641), [anon_sym_POUND] = ACTIONS(3), }, [STATE(400)] = { - [sym__expr_parenthesized_immediate] = STATE(840), - [sym__immediate_decimal] = STATE(841), - [sym_val_variable] = STATE(840), [sym_comment] = STATE(400), - [anon_sym_in] = 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_RPAREN] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1643), - [anon_sym_xor2] = ACTIONS(1643), - [anon_sym_or2] = ACTIONS(1643), - [anon_sym_not_DASHin2] = ACTIONS(1643), - [anon_sym_has2] = ACTIONS(1643), - [anon_sym_not_DASHhas2] = ACTIONS(1643), - [anon_sym_starts_DASHwith2] = ACTIONS(1643), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1643), - [anon_sym_ends_DASHwith2] = ACTIONS(1643), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1643), - [anon_sym_EQ_EQ2] = ACTIONS(1643), - [anon_sym_BANG_EQ2] = ACTIONS(1643), - [anon_sym_LT2] = ACTIONS(1645), - [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_like2] = ACTIONS(1643), - [anon_sym_not_DASHlike2] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1643), - [anon_sym_PLUS_PLUS2] = ACTIONS(1643), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1643), - [anon_sym_SLASH_SLASH2] = ACTIONS(1643), - [anon_sym_PLUS2] = ACTIONS(1645), - [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(1635), - [aux_sym__immediate_decimal_token2] = ACTIONS(1635), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [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(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_EQ] = ACTIONS(1572), + [anon_sym_PLUS_EQ] = ACTIONS(1574), + [anon_sym_DASH_EQ] = ACTIONS(1574), + [anon_sym_STAR_EQ] = ACTIONS(1574), + [anon_sym_SLASH_EQ] = ACTIONS(1574), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1574), + [anon_sym_in] = ACTIONS(1574), + [sym__newline] = ACTIONS(1574), + [anon_sym_SEMI] = ACTIONS(1574), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_err_GT_PIPE] = ACTIONS(1574), + [anon_sym_out_GT_PIPE] = ACTIONS(1574), + [anon_sym_e_GT_PIPE] = ACTIONS(1574), + [anon_sym_o_GT_PIPE] = ACTIONS(1574), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1574), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1574), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1574), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1574), + [anon_sym_RPAREN] = ACTIONS(1574), + [anon_sym_GT2] = ACTIONS(1572), + [anon_sym_DASH2] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1574), + [anon_sym_STAR2] = ACTIONS(1572), + [anon_sym_and2] = ACTIONS(1574), + [anon_sym_xor2] = ACTIONS(1574), + [anon_sym_or2] = ACTIONS(1574), + [anon_sym_not_DASHin2] = ACTIONS(1574), + [anon_sym_has2] = ACTIONS(1574), + [anon_sym_not_DASHhas2] = ACTIONS(1574), + [anon_sym_starts_DASHwith2] = ACTIONS(1574), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1574), + [anon_sym_ends_DASHwith2] = ACTIONS(1574), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1574), + [anon_sym_EQ_EQ2] = ACTIONS(1574), + [anon_sym_BANG_EQ2] = ACTIONS(1574), + [anon_sym_LT2] = ACTIONS(1572), + [anon_sym_LT_EQ2] = ACTIONS(1574), + [anon_sym_GT_EQ2] = ACTIONS(1574), + [anon_sym_EQ_TILDE2] = ACTIONS(1574), + [anon_sym_BANG_TILDE2] = ACTIONS(1574), + [anon_sym_like2] = ACTIONS(1574), + [anon_sym_not_DASHlike2] = ACTIONS(1574), + [anon_sym_STAR_STAR2] = ACTIONS(1574), + [anon_sym_PLUS_PLUS2] = ACTIONS(1572), + [anon_sym_SLASH2] = ACTIONS(1572), + [anon_sym_mod2] = ACTIONS(1574), + [anon_sym_SLASH_SLASH2] = ACTIONS(1574), + [anon_sym_PLUS2] = ACTIONS(1572), + [anon_sym_bit_DASHshl2] = ACTIONS(1574), + [anon_sym_bit_DASHshr2] = ACTIONS(1574), + [anon_sym_bit_DASHand2] = ACTIONS(1574), + [anon_sym_bit_DASHxor2] = ACTIONS(1574), + [anon_sym_bit_DASHor2] = ACTIONS(1574), + [anon_sym_DOT_DOT2] = ACTIONS(1572), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1574), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1574), + [anon_sym_COLON2] = ACTIONS(1574), + [anon_sym_err_GT] = ACTIONS(1572), + [anon_sym_out_GT] = ACTIONS(1572), + [anon_sym_e_GT] = ACTIONS(1572), + [anon_sym_o_GT] = ACTIONS(1572), + [anon_sym_err_PLUSout_GT] = ACTIONS(1572), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1572), + [anon_sym_o_PLUSe_GT] = ACTIONS(1572), + [anon_sym_e_PLUSo_GT] = ACTIONS(1572), + [anon_sym_err_GT_GT] = ACTIONS(1574), + [anon_sym_out_GT_GT] = ACTIONS(1574), + [anon_sym_e_GT_GT] = ACTIONS(1574), + [anon_sym_o_GT_GT] = ACTIONS(1574), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1574), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1574), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1574), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1574), [anon_sym_POUND] = ACTIONS(3), }, [STATE(401)] = { - [sym__expr_parenthesized_immediate] = STATE(842), - [sym__immediate_decimal] = STATE(843), - [sym_val_variable] = STATE(842), + [sym__path_suffix] = STATE(445), [sym_comment] = STATE(401), + [anon_sym_in] = ACTIONS(1434), + [sym__newline] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym_PIPE] = ACTIONS(1434), + [anon_sym_err_GT_PIPE] = ACTIONS(1434), + [anon_sym_out_GT_PIPE] = ACTIONS(1434), + [anon_sym_e_GT_PIPE] = ACTIONS(1434), + [anon_sym_o_GT_PIPE] = ACTIONS(1434), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1434), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1434), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1434), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1434), + [anon_sym_RPAREN] = ACTIONS(1434), + [anon_sym_GT2] = ACTIONS(1432), + [anon_sym_DASH2] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_EQ_GT] = ACTIONS(1434), + [anon_sym_STAR2] = ACTIONS(1432), + [anon_sym_and2] = ACTIONS(1434), + [anon_sym_xor2] = ACTIONS(1434), + [anon_sym_or2] = ACTIONS(1434), + [anon_sym_not_DASHin2] = ACTIONS(1434), + [anon_sym_has2] = ACTIONS(1434), + [anon_sym_not_DASHhas2] = ACTIONS(1434), + [anon_sym_starts_DASHwith2] = ACTIONS(1434), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1434), + [anon_sym_ends_DASHwith2] = ACTIONS(1434), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1434), + [anon_sym_EQ_EQ2] = ACTIONS(1434), + [anon_sym_BANG_EQ2] = ACTIONS(1434), + [anon_sym_LT2] = ACTIONS(1432), + [anon_sym_LT_EQ2] = ACTIONS(1434), + [anon_sym_GT_EQ2] = ACTIONS(1434), + [anon_sym_EQ_TILDE2] = ACTIONS(1434), + [anon_sym_BANG_TILDE2] = ACTIONS(1434), + [anon_sym_like2] = ACTIONS(1434), + [anon_sym_not_DASHlike2] = ACTIONS(1434), + [anon_sym_STAR_STAR2] = ACTIONS(1434), + [anon_sym_PLUS_PLUS2] = ACTIONS(1434), + [anon_sym_SLASH2] = ACTIONS(1432), + [anon_sym_mod2] = ACTIONS(1434), + [anon_sym_SLASH_SLASH2] = ACTIONS(1434), + [anon_sym_PLUS2] = ACTIONS(1432), + [anon_sym_bit_DASHshl2] = ACTIONS(1434), + [anon_sym_bit_DASHshr2] = ACTIONS(1434), + [anon_sym_bit_DASHand2] = ACTIONS(1434), + [anon_sym_bit_DASHxor2] = ACTIONS(1434), + [anon_sym_bit_DASHor2] = ACTIONS(1434), + [anon_sym_DOT_DOT2] = ACTIONS(1432), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1434), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), + [anon_sym_COLON2] = ACTIONS(1434), + [anon_sym_QMARK2] = ACTIONS(1643), + [anon_sym_BANG] = ACTIONS(1645), + [anon_sym_DOT2] = ACTIONS(1432), + [anon_sym_err_GT] = ACTIONS(1432), + [anon_sym_out_GT] = ACTIONS(1432), + [anon_sym_e_GT] = ACTIONS(1432), + [anon_sym_o_GT] = ACTIONS(1432), + [anon_sym_err_PLUSout_GT] = ACTIONS(1432), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1432), + [anon_sym_o_PLUSe_GT] = ACTIONS(1432), + [anon_sym_e_PLUSo_GT] = ACTIONS(1432), + [anon_sym_err_GT_GT] = ACTIONS(1434), + [anon_sym_out_GT_GT] = ACTIONS(1434), + [anon_sym_e_GT_GT] = ACTIONS(1434), + [anon_sym_o_GT_GT] = ACTIONS(1434), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1434), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1434), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1434), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(402)] = { + [sym_cell_path] = STATE(455), + [sym_path] = STATE(446), + [sym_comment] = STATE(402), + [aux_sym__where_predicate_lhs_repeat1] = STATE(421), [anon_sym_in] = ACTIONS(1647), [sym__newline] = ACTIONS(1647), [anon_sym_SEMI] = ACTIONS(1647), @@ -79002,11 +79114,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1647), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1647), [anon_sym_RPAREN] = ACTIONS(1647), - [anon_sym_DOLLAR] = ACTIONS(1584), [anon_sym_GT2] = ACTIONS(1649), - [anon_sym_DASH2] = ACTIONS(1649), + [anon_sym_DASH2] = ACTIONS(1647), [anon_sym_LBRACE] = ACTIONS(1647), [anon_sym_RBRACE] = ACTIONS(1647), + [anon_sym_EQ_GT] = ACTIONS(1647), [anon_sym_STAR2] = ACTIONS(1649), [anon_sym_and2] = ACTIONS(1647), [anon_sym_xor2] = ACTIONS(1647), @@ -79027,7 +79139,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(1647), [anon_sym_like2] = ACTIONS(1647), [anon_sym_not_DASHlike2] = ACTIONS(1647), - [anon_sym_LPAREN2] = ACTIONS(1588), [anon_sym_STAR_STAR2] = ACTIONS(1647), [anon_sym_PLUS_PLUS2] = ACTIONS(1647), [anon_sym_SLASH2] = ACTIONS(1649), @@ -79039,10 +79150,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1647), [anon_sym_bit_DASHxor2] = ACTIONS(1647), [anon_sym_bit_DASHor2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token1] = ACTIONS(1635), - [aux_sym__immediate_decimal_token2] = ACTIONS(1635), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), + [anon_sym_DOT_DOT2] = ACTIONS(1649), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), + [anon_sym_COLON2] = ACTIONS(1647), + [anon_sym_DOT2] = ACTIONS(1651), [anon_sym_err_GT] = ACTIONS(1649), [anon_sym_out_GT] = ACTIONS(1649), [anon_sym_e_GT] = ACTIONS(1649), @@ -79061,1159 +79173,778 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1647), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(402)] = { - [sym__expr_parenthesized_immediate] = STATE(844), - [sym__immediate_decimal] = STATE(845), - [sym_val_variable] = STATE(844), - [sym_comment] = STATE(402), - [anon_sym_in] = ACTIONS(1651), - [sym__newline] = ACTIONS(1651), - [anon_sym_SEMI] = ACTIONS(1651), - [anon_sym_PIPE] = ACTIONS(1651), - [anon_sym_err_GT_PIPE] = ACTIONS(1651), - [anon_sym_out_GT_PIPE] = ACTIONS(1651), - [anon_sym_e_GT_PIPE] = ACTIONS(1651), - [anon_sym_o_GT_PIPE] = ACTIONS(1651), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1651), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1651), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1651), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1651), - [anon_sym_RPAREN] = ACTIONS(1651), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1653), - [anon_sym_DASH2] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(1651), - [anon_sym_RBRACE] = ACTIONS(1651), - [anon_sym_STAR2] = ACTIONS(1653), - [anon_sym_and2] = ACTIONS(1651), - [anon_sym_xor2] = ACTIONS(1651), - [anon_sym_or2] = ACTIONS(1651), - [anon_sym_not_DASHin2] = ACTIONS(1651), - [anon_sym_has2] = ACTIONS(1651), - [anon_sym_not_DASHhas2] = ACTIONS(1651), - [anon_sym_starts_DASHwith2] = ACTIONS(1651), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1651), - [anon_sym_ends_DASHwith2] = ACTIONS(1651), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1651), - [anon_sym_EQ_EQ2] = ACTIONS(1651), - [anon_sym_BANG_EQ2] = ACTIONS(1651), - [anon_sym_LT2] = ACTIONS(1653), - [anon_sym_LT_EQ2] = ACTIONS(1651), - [anon_sym_GT_EQ2] = ACTIONS(1651), - [anon_sym_EQ_TILDE2] = ACTIONS(1651), - [anon_sym_BANG_TILDE2] = ACTIONS(1651), - [anon_sym_like2] = ACTIONS(1651), - [anon_sym_not_DASHlike2] = ACTIONS(1651), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1651), - [anon_sym_PLUS_PLUS2] = ACTIONS(1651), - [anon_sym_SLASH2] = ACTIONS(1653), - [anon_sym_mod2] = ACTIONS(1651), - [anon_sym_SLASH_SLASH2] = ACTIONS(1651), - [anon_sym_PLUS2] = ACTIONS(1653), - [anon_sym_bit_DASHshl2] = ACTIONS(1651), - [anon_sym_bit_DASHshr2] = ACTIONS(1651), - [anon_sym_bit_DASHand2] = ACTIONS(1651), - [anon_sym_bit_DASHxor2] = ACTIONS(1651), - [anon_sym_bit_DASHor2] = ACTIONS(1651), - [aux_sym__immediate_decimal_token1] = ACTIONS(1635), - [aux_sym__immediate_decimal_token2] = ACTIONS(1635), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1653), - [anon_sym_out_GT] = ACTIONS(1653), - [anon_sym_e_GT] = ACTIONS(1653), - [anon_sym_o_GT] = ACTIONS(1653), - [anon_sym_err_PLUSout_GT] = ACTIONS(1653), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), - [anon_sym_o_PLUSe_GT] = ACTIONS(1653), - [anon_sym_e_PLUSo_GT] = ACTIONS(1653), - [anon_sym_err_GT_GT] = ACTIONS(1651), - [anon_sym_out_GT_GT] = ACTIONS(1651), - [anon_sym_e_GT_GT] = ACTIONS(1651), - [anon_sym_o_GT_GT] = ACTIONS(1651), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1651), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1651), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1651), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1651), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(403)] = { - [sym_cell_path] = STATE(460), - [sym_path] = STATE(435), + [sym__expr_parenthesized_immediate] = STATE(829), + [sym__immediate_decimal] = STATE(919), + [sym_val_variable] = STATE(829), [sym_comment] = STATE(403), - [aux_sym__where_predicate_lhs_repeat1] = STATE(416), - [anon_sym_in] = ACTIONS(1655), - [sym__newline] = ACTIONS(1655), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_PIPE] = ACTIONS(1655), - [anon_sym_err_GT_PIPE] = ACTIONS(1655), - [anon_sym_out_GT_PIPE] = ACTIONS(1655), - [anon_sym_e_GT_PIPE] = ACTIONS(1655), - [anon_sym_o_GT_PIPE] = ACTIONS(1655), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1655), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1655), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1655), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1655), - [anon_sym_RPAREN] = ACTIONS(1655), - [anon_sym_GT2] = ACTIONS(1657), - [anon_sym_DASH2] = ACTIONS(1655), - [anon_sym_LBRACE] = ACTIONS(1655), - [anon_sym_RBRACE] = ACTIONS(1655), - [anon_sym_EQ_GT] = ACTIONS(1655), - [anon_sym_STAR2] = ACTIONS(1657), - [anon_sym_and2] = ACTIONS(1655), - [anon_sym_xor2] = ACTIONS(1655), - [anon_sym_or2] = ACTIONS(1655), - [anon_sym_not_DASHin2] = ACTIONS(1655), - [anon_sym_has2] = ACTIONS(1655), - [anon_sym_not_DASHhas2] = ACTIONS(1655), - [anon_sym_starts_DASHwith2] = ACTIONS(1655), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1655), - [anon_sym_ends_DASHwith2] = ACTIONS(1655), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1655), - [anon_sym_EQ_EQ2] = ACTIONS(1655), - [anon_sym_BANG_EQ2] = ACTIONS(1655), - [anon_sym_LT2] = ACTIONS(1657), - [anon_sym_LT_EQ2] = ACTIONS(1655), - [anon_sym_GT_EQ2] = ACTIONS(1655), - [anon_sym_EQ_TILDE2] = ACTIONS(1655), - [anon_sym_BANG_TILDE2] = ACTIONS(1655), - [anon_sym_like2] = ACTIONS(1655), - [anon_sym_not_DASHlike2] = ACTIONS(1655), - [anon_sym_STAR_STAR2] = ACTIONS(1655), - [anon_sym_PLUS_PLUS2] = ACTIONS(1655), - [anon_sym_SLASH2] = ACTIONS(1657), - [anon_sym_mod2] = ACTIONS(1655), - [anon_sym_SLASH_SLASH2] = ACTIONS(1655), - [anon_sym_PLUS2] = ACTIONS(1657), - [anon_sym_bit_DASHshl2] = ACTIONS(1655), - [anon_sym_bit_DASHshr2] = ACTIONS(1655), - [anon_sym_bit_DASHand2] = ACTIONS(1655), - [anon_sym_bit_DASHxor2] = ACTIONS(1655), - [anon_sym_bit_DASHor2] = ACTIONS(1655), - [anon_sym_DOT_DOT2] = ACTIONS(1657), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1655), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1655), - [anon_sym_COLON2] = ACTIONS(1655), - [anon_sym_DOT2] = ACTIONS(1659), - [anon_sym_err_GT] = ACTIONS(1657), - [anon_sym_out_GT] = ACTIONS(1657), - [anon_sym_e_GT] = ACTIONS(1657), - [anon_sym_o_GT] = ACTIONS(1657), - [anon_sym_err_PLUSout_GT] = ACTIONS(1657), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1657), - [anon_sym_o_PLUSe_GT] = ACTIONS(1657), - [anon_sym_e_PLUSo_GT] = ACTIONS(1657), - [anon_sym_err_GT_GT] = ACTIONS(1655), - [anon_sym_out_GT_GT] = ACTIONS(1655), - [anon_sym_e_GT_GT] = ACTIONS(1655), - [anon_sym_o_GT_GT] = ACTIONS(1655), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1655), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1655), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1655), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1655), + [anon_sym_in] = ACTIONS(1584), + [sym__newline] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1584), + [anon_sym_err_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_GT_PIPE] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1584), + [anon_sym_RPAREN] = ACTIONS(1584), + [anon_sym_DOLLAR] = ACTIONS(1586), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1584), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1584), + [anon_sym_xor2] = ACTIONS(1584), + [anon_sym_or2] = ACTIONS(1584), + [anon_sym_not_DASHin2] = ACTIONS(1584), + [anon_sym_has2] = ACTIONS(1584), + [anon_sym_not_DASHhas2] = ACTIONS(1584), + [anon_sym_starts_DASHwith2] = ACTIONS(1584), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1584), + [anon_sym_ends_DASHwith2] = ACTIONS(1584), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1584), + [anon_sym_EQ_EQ2] = ACTIONS(1584), + [anon_sym_BANG_EQ2] = ACTIONS(1584), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1584), + [anon_sym_GT_EQ2] = ACTIONS(1584), + [anon_sym_EQ_TILDE2] = ACTIONS(1584), + [anon_sym_BANG_TILDE2] = ACTIONS(1584), + [anon_sym_like2] = ACTIONS(1584), + [anon_sym_not_DASHlike2] = ACTIONS(1584), + [anon_sym_LPAREN2] = ACTIONS(1590), + [anon_sym_STAR_STAR2] = ACTIONS(1584), + [anon_sym_PLUS_PLUS2] = ACTIONS(1584), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1584), + [anon_sym_SLASH_SLASH2] = ACTIONS(1584), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1584), + [anon_sym_bit_DASHshr2] = ACTIONS(1584), + [anon_sym_bit_DASHand2] = ACTIONS(1584), + [anon_sym_bit_DASHxor2] = ACTIONS(1584), + [anon_sym_bit_DASHor2] = ACTIONS(1584), + [aux_sym__immediate_decimal_token1] = ACTIONS(1637), + [aux_sym__immediate_decimal_token2] = ACTIONS(1637), + [aux_sym__immediate_decimal_token3] = ACTIONS(1639), + [aux_sym__immediate_decimal_token4] = ACTIONS(1639), + [anon_sym_err_GT] = ACTIONS(1588), + [anon_sym_out_GT] = ACTIONS(1588), + [anon_sym_e_GT] = ACTIONS(1588), + [anon_sym_o_GT] = ACTIONS(1588), + [anon_sym_err_PLUSout_GT] = ACTIONS(1588), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), + [anon_sym_o_PLUSe_GT] = ACTIONS(1588), + [anon_sym_e_PLUSo_GT] = ACTIONS(1588), + [anon_sym_err_GT_GT] = ACTIONS(1584), + [anon_sym_out_GT_GT] = ACTIONS(1584), + [anon_sym_e_GT_GT] = ACTIONS(1584), + [anon_sym_o_GT_GT] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1584), + [sym__unquoted_pattern] = ACTIONS(1598), [anon_sym_POUND] = ACTIONS(3), }, [STATE(404)] = { - [sym__expr_parenthesized_immediate] = STATE(806), - [sym__immediate_decimal] = STATE(807), - [sym_val_variable] = STATE(806), + [sym__expr_parenthesized_immediate] = STATE(847), + [sym__immediate_decimal] = STATE(848), + [sym_val_variable] = STATE(847), [sym_comment] = STATE(404), - [anon_sym_in] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_RPAREN] = ACTIONS(1607), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1609), - [anon_sym_DASH2] = ACTIONS(1609), - [anon_sym_LBRACE] = ACTIONS(1607), - [anon_sym_RBRACE] = ACTIONS(1607), - [anon_sym_STAR2] = ACTIONS(1609), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_has2] = ACTIONS(1607), - [anon_sym_not_DASHhas2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1609), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_like2] = ACTIONS(1607), - [anon_sym_not_DASHlike2] = ACTIONS(1607), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1609), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1609), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [aux_sym__immediate_decimal_token1] = ACTIONS(1635), - [aux_sym__immediate_decimal_token2] = ACTIONS(1635), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1609), - [anon_sym_out_GT] = ACTIONS(1609), - [anon_sym_e_GT] = ACTIONS(1609), - [anon_sym_o_GT] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT] = ACTIONS(1609), - [anon_sym_err_GT_GT] = ACTIONS(1607), - [anon_sym_out_GT_GT] = ACTIONS(1607), - [anon_sym_e_GT_GT] = ACTIONS(1607), - [anon_sym_o_GT_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1653), + [sym__newline] = ACTIONS(1653), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_PIPE] = ACTIONS(1653), + [anon_sym_err_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_GT_PIPE] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1653), + [anon_sym_RPAREN] = ACTIONS(1653), + [anon_sym_DOLLAR] = ACTIONS(1586), + [anon_sym_GT2] = ACTIONS(1655), + [anon_sym_DASH2] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1653), + [anon_sym_STAR2] = ACTIONS(1655), + [anon_sym_and2] = ACTIONS(1653), + [anon_sym_xor2] = ACTIONS(1653), + [anon_sym_or2] = ACTIONS(1653), + [anon_sym_not_DASHin2] = ACTIONS(1653), + [anon_sym_has2] = ACTIONS(1653), + [anon_sym_not_DASHhas2] = ACTIONS(1653), + [anon_sym_starts_DASHwith2] = ACTIONS(1653), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1653), + [anon_sym_ends_DASHwith2] = ACTIONS(1653), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1653), + [anon_sym_EQ_EQ2] = ACTIONS(1653), + [anon_sym_BANG_EQ2] = ACTIONS(1653), + [anon_sym_LT2] = ACTIONS(1655), + [anon_sym_LT_EQ2] = ACTIONS(1653), + [anon_sym_GT_EQ2] = ACTIONS(1653), + [anon_sym_EQ_TILDE2] = ACTIONS(1653), + [anon_sym_BANG_TILDE2] = ACTIONS(1653), + [anon_sym_like2] = ACTIONS(1653), + [anon_sym_not_DASHlike2] = ACTIONS(1653), + [anon_sym_LPAREN2] = ACTIONS(1590), + [anon_sym_STAR_STAR2] = ACTIONS(1653), + [anon_sym_PLUS_PLUS2] = ACTIONS(1653), + [anon_sym_SLASH2] = ACTIONS(1655), + [anon_sym_mod2] = ACTIONS(1653), + [anon_sym_SLASH_SLASH2] = ACTIONS(1653), + [anon_sym_PLUS2] = ACTIONS(1655), + [anon_sym_bit_DASHshl2] = ACTIONS(1653), + [anon_sym_bit_DASHshr2] = ACTIONS(1653), + [anon_sym_bit_DASHand2] = ACTIONS(1653), + [anon_sym_bit_DASHxor2] = ACTIONS(1653), + [anon_sym_bit_DASHor2] = ACTIONS(1653), + [aux_sym__immediate_decimal_token1] = ACTIONS(1631), + [aux_sym__immediate_decimal_token2] = ACTIONS(1631), + [aux_sym__immediate_decimal_token3] = ACTIONS(1596), + [aux_sym__immediate_decimal_token4] = ACTIONS(1596), + [anon_sym_err_GT] = ACTIONS(1655), + [anon_sym_out_GT] = ACTIONS(1655), + [anon_sym_e_GT] = ACTIONS(1655), + [anon_sym_o_GT] = ACTIONS(1655), + [anon_sym_err_PLUSout_GT] = ACTIONS(1655), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1655), + [anon_sym_o_PLUSe_GT] = ACTIONS(1655), + [anon_sym_e_PLUSo_GT] = ACTIONS(1655), + [anon_sym_err_GT_GT] = ACTIONS(1653), + [anon_sym_out_GT_GT] = ACTIONS(1653), + [anon_sym_e_GT_GT] = ACTIONS(1653), + [anon_sym_o_GT_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1653), [anon_sym_POUND] = ACTIONS(3), }, [STATE(405)] = { - [sym_cell_path] = STATE(462), - [sym_path] = STATE(435), + [sym__expr_parenthesized_immediate] = STATE(911), + [sym__immediate_decimal] = STATE(688), + [sym_val_variable] = STATE(911), [sym_comment] = STATE(405), - [aux_sym__where_predicate_lhs_repeat1] = STATE(416), - [anon_sym_in] = 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(1663), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_LBRACE] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_EQ_GT] = ACTIONS(1661), - [anon_sym_STAR2] = ACTIONS(1663), - [anon_sym_and2] = ACTIONS(1661), - [anon_sym_xor2] = ACTIONS(1661), - [anon_sym_or2] = ACTIONS(1661), - [anon_sym_not_DASHin2] = ACTIONS(1661), - [anon_sym_has2] = ACTIONS(1661), - [anon_sym_not_DASHhas2] = ACTIONS(1661), - [anon_sym_starts_DASHwith2] = ACTIONS(1661), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1661), - [anon_sym_ends_DASHwith2] = ACTIONS(1661), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1661), - [anon_sym_EQ_EQ2] = ACTIONS(1661), - [anon_sym_BANG_EQ2] = ACTIONS(1661), - [anon_sym_LT2] = ACTIONS(1663), - [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_like2] = ACTIONS(1661), - [anon_sym_not_DASHlike2] = ACTIONS(1661), - [anon_sym_STAR_STAR2] = ACTIONS(1661), - [anon_sym_PLUS_PLUS2] = ACTIONS(1661), - [anon_sym_SLASH2] = ACTIONS(1663), - [anon_sym_mod2] = ACTIONS(1661), - [anon_sym_SLASH_SLASH2] = ACTIONS(1661), - [anon_sym_PLUS2] = ACTIONS(1663), - [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(1663), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), - [anon_sym_COLON2] = ACTIONS(1661), - [anon_sym_DOT2] = ACTIONS(1659), - [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(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), + [ts_builtin_sym_end] = ACTIONS(1584), + [anon_sym_in] = ACTIONS(1584), + [sym__newline] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1584), + [anon_sym_err_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_GT_PIPE] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1584), + [anon_sym_DOLLAR] = ACTIONS(1657), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1588), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1584), + [anon_sym_xor2] = ACTIONS(1584), + [anon_sym_or2] = ACTIONS(1584), + [anon_sym_not_DASHin2] = ACTIONS(1584), + [anon_sym_has2] = ACTIONS(1584), + [anon_sym_not_DASHhas2] = ACTIONS(1584), + [anon_sym_starts_DASHwith2] = ACTIONS(1584), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1584), + [anon_sym_ends_DASHwith2] = ACTIONS(1584), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1584), + [anon_sym_EQ_EQ2] = ACTIONS(1584), + [anon_sym_BANG_EQ2] = ACTIONS(1584), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1584), + [anon_sym_GT_EQ2] = ACTIONS(1584), + [anon_sym_EQ_TILDE2] = ACTIONS(1584), + [anon_sym_BANG_TILDE2] = ACTIONS(1584), + [anon_sym_like2] = ACTIONS(1584), + [anon_sym_not_DASHlike2] = ACTIONS(1584), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_STAR_STAR2] = ACTIONS(1584), + [anon_sym_PLUS_PLUS2] = ACTIONS(1584), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1584), + [anon_sym_SLASH_SLASH2] = ACTIONS(1584), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1584), + [anon_sym_bit_DASHshr2] = ACTIONS(1584), + [anon_sym_bit_DASHand2] = ACTIONS(1584), + [anon_sym_bit_DASHxor2] = ACTIONS(1584), + [anon_sym_bit_DASHor2] = ACTIONS(1584), + [anon_sym_DOT] = ACTIONS(1661), + [aux_sym__immediate_decimal_token1] = ACTIONS(1663), + [aux_sym__immediate_decimal_token2] = ACTIONS(1663), + [aux_sym__immediate_decimal_token3] = ACTIONS(1665), + [aux_sym__immediate_decimal_token4] = ACTIONS(1665), + [anon_sym_err_GT] = ACTIONS(1588), + [anon_sym_out_GT] = ACTIONS(1588), + [anon_sym_e_GT] = ACTIONS(1588), + [anon_sym_o_GT] = ACTIONS(1588), + [anon_sym_err_PLUSout_GT] = ACTIONS(1588), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), + [anon_sym_o_PLUSe_GT] = ACTIONS(1588), + [anon_sym_e_PLUSo_GT] = ACTIONS(1588), + [anon_sym_err_GT_GT] = ACTIONS(1584), + [anon_sym_out_GT_GT] = ACTIONS(1584), + [anon_sym_e_GT_GT] = ACTIONS(1584), + [anon_sym_o_GT_GT] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1584), + [sym__unquoted_pattern] = ACTIONS(1598), [anon_sym_POUND] = ACTIONS(3), }, [STATE(406)] = { - [sym__expr_parenthesized_immediate] = STATE(809), - [sym__immediate_decimal] = STATE(924), - [sym_val_variable] = STATE(809), + [sym__expr_parenthesized_immediate] = STATE(849), + [sym__immediate_decimal] = STATE(864), + [sym_val_variable] = STATE(849), [sym_comment] = STATE(406), - [anon_sym_in] = ACTIONS(1582), - [sym__newline] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_err_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_GT_PIPE] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), - [anon_sym_RPAREN] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1586), - [anon_sym_DASH2] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1582), - [anon_sym_RBRACE] = ACTIONS(1582), - [anon_sym_STAR2] = ACTIONS(1586), - [anon_sym_and2] = ACTIONS(1582), - [anon_sym_xor2] = ACTIONS(1582), - [anon_sym_or2] = ACTIONS(1582), - [anon_sym_not_DASHin2] = ACTIONS(1582), - [anon_sym_has2] = ACTIONS(1582), - [anon_sym_not_DASHhas2] = ACTIONS(1582), - [anon_sym_starts_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1582), - [anon_sym_ends_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1582), - [anon_sym_EQ_EQ2] = ACTIONS(1582), - [anon_sym_BANG_EQ2] = ACTIONS(1582), - [anon_sym_LT2] = ACTIONS(1586), - [anon_sym_LT_EQ2] = ACTIONS(1582), - [anon_sym_GT_EQ2] = ACTIONS(1582), - [anon_sym_EQ_TILDE2] = ACTIONS(1582), - [anon_sym_BANG_TILDE2] = ACTIONS(1582), - [anon_sym_like2] = ACTIONS(1582), - [anon_sym_not_DASHlike2] = ACTIONS(1582), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1582), - [anon_sym_PLUS_PLUS2] = ACTIONS(1582), - [anon_sym_SLASH2] = ACTIONS(1586), - [anon_sym_mod2] = ACTIONS(1582), - [anon_sym_SLASH_SLASH2] = ACTIONS(1582), - [anon_sym_PLUS2] = ACTIONS(1586), - [anon_sym_bit_DASHshl2] = ACTIONS(1582), - [anon_sym_bit_DASHshr2] = ACTIONS(1582), - [anon_sym_bit_DASHand2] = ACTIONS(1582), - [anon_sym_bit_DASHxor2] = ACTIONS(1582), - [anon_sym_bit_DASHor2] = ACTIONS(1582), - [aux_sym__immediate_decimal_token1] = ACTIONS(1635), - [aux_sym__immediate_decimal_token2] = ACTIONS(1635), - [aux_sym__immediate_decimal_token3] = ACTIONS(1594), - [aux_sym__immediate_decimal_token4] = ACTIONS(1594), - [anon_sym_err_GT] = ACTIONS(1586), - [anon_sym_out_GT] = ACTIONS(1586), - [anon_sym_e_GT] = ACTIONS(1586), - [anon_sym_o_GT] = ACTIONS(1586), - [anon_sym_err_PLUSout_GT] = ACTIONS(1586), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1586), - [anon_sym_o_PLUSe_GT] = ACTIONS(1586), - [anon_sym_e_PLUSo_GT] = ACTIONS(1586), - [anon_sym_err_GT_GT] = ACTIONS(1582), - [anon_sym_out_GT_GT] = ACTIONS(1582), - [anon_sym_e_GT_GT] = ACTIONS(1582), - [anon_sym_o_GT_GT] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), + [anon_sym_in] = ACTIONS(1667), + [sym__newline] = ACTIONS(1667), + [anon_sym_SEMI] = ACTIONS(1667), + [anon_sym_PIPE] = ACTIONS(1667), + [anon_sym_err_GT_PIPE] = ACTIONS(1667), + [anon_sym_out_GT_PIPE] = ACTIONS(1667), + [anon_sym_e_GT_PIPE] = ACTIONS(1667), + [anon_sym_o_GT_PIPE] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1667), + [anon_sym_RPAREN] = ACTIONS(1667), + [anon_sym_DOLLAR] = ACTIONS(1586), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_LBRACE] = ACTIONS(1667), + [anon_sym_RBRACE] = ACTIONS(1667), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1667), + [anon_sym_xor2] = ACTIONS(1667), + [anon_sym_or2] = ACTIONS(1667), + [anon_sym_not_DASHin2] = ACTIONS(1667), + [anon_sym_has2] = ACTIONS(1667), + [anon_sym_not_DASHhas2] = ACTIONS(1667), + [anon_sym_starts_DASHwith2] = ACTIONS(1667), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1667), + [anon_sym_ends_DASHwith2] = ACTIONS(1667), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1667), + [anon_sym_EQ_EQ2] = ACTIONS(1667), + [anon_sym_BANG_EQ2] = ACTIONS(1667), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1667), + [anon_sym_GT_EQ2] = ACTIONS(1667), + [anon_sym_EQ_TILDE2] = ACTIONS(1667), + [anon_sym_BANG_TILDE2] = ACTIONS(1667), + [anon_sym_like2] = ACTIONS(1667), + [anon_sym_not_DASHlike2] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1590), + [anon_sym_STAR_STAR2] = ACTIONS(1667), + [anon_sym_PLUS_PLUS2] = ACTIONS(1667), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1667), + [anon_sym_SLASH_SLASH2] = ACTIONS(1667), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1667), + [anon_sym_bit_DASHshr2] = ACTIONS(1667), + [anon_sym_bit_DASHand2] = ACTIONS(1667), + [anon_sym_bit_DASHxor2] = ACTIONS(1667), + [anon_sym_bit_DASHor2] = ACTIONS(1667), + [aux_sym__immediate_decimal_token1] = ACTIONS(1631), + [aux_sym__immediate_decimal_token2] = ACTIONS(1631), + [aux_sym__immediate_decimal_token3] = ACTIONS(1596), + [aux_sym__immediate_decimal_token4] = ACTIONS(1596), + [anon_sym_err_GT] = ACTIONS(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(1667), + [anon_sym_out_GT_GT] = ACTIONS(1667), + [anon_sym_e_GT_GT] = ACTIONS(1667), + [anon_sym_o_GT_GT] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1667), [anon_sym_POUND] = ACTIONS(3), }, [STATE(407)] = { [sym_comment] = STATE(407), - [anon_sym_EQ] = ACTIONS(1572), - [anon_sym_PLUS_EQ] = ACTIONS(1574), - [anon_sym_DASH_EQ] = ACTIONS(1574), - [anon_sym_STAR_EQ] = ACTIONS(1574), - [anon_sym_SLASH_EQ] = ACTIONS(1574), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1574), - [anon_sym_in] = ACTIONS(1574), - [sym__newline] = ACTIONS(1574), - [anon_sym_SEMI] = ACTIONS(1574), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_err_GT_PIPE] = ACTIONS(1574), - [anon_sym_out_GT_PIPE] = ACTIONS(1574), - [anon_sym_e_GT_PIPE] = ACTIONS(1574), - [anon_sym_o_GT_PIPE] = ACTIONS(1574), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1574), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1574), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1574), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1574), - [anon_sym_RPAREN] = ACTIONS(1574), - [anon_sym_GT2] = ACTIONS(1572), - [anon_sym_DASH2] = ACTIONS(1572), - [anon_sym_RBRACE] = ACTIONS(1574), - [anon_sym_STAR2] = ACTIONS(1572), - [anon_sym_and2] = ACTIONS(1574), - [anon_sym_xor2] = ACTIONS(1574), - [anon_sym_or2] = ACTIONS(1574), - [anon_sym_not_DASHin2] = ACTIONS(1574), - [anon_sym_has2] = ACTIONS(1574), - [anon_sym_not_DASHhas2] = ACTIONS(1574), - [anon_sym_starts_DASHwith2] = ACTIONS(1574), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1574), - [anon_sym_ends_DASHwith2] = ACTIONS(1574), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1574), - [anon_sym_EQ_EQ2] = ACTIONS(1574), - [anon_sym_BANG_EQ2] = ACTIONS(1574), - [anon_sym_LT2] = ACTIONS(1572), - [anon_sym_LT_EQ2] = ACTIONS(1574), - [anon_sym_GT_EQ2] = ACTIONS(1574), - [anon_sym_EQ_TILDE2] = ACTIONS(1574), - [anon_sym_BANG_TILDE2] = ACTIONS(1574), - [anon_sym_like2] = ACTIONS(1574), - [anon_sym_not_DASHlike2] = ACTIONS(1574), - [anon_sym_STAR_STAR2] = ACTIONS(1574), - [anon_sym_PLUS_PLUS2] = ACTIONS(1572), - [anon_sym_SLASH2] = ACTIONS(1572), - [anon_sym_mod2] = ACTIONS(1574), - [anon_sym_SLASH_SLASH2] = ACTIONS(1574), - [anon_sym_PLUS2] = ACTIONS(1572), - [anon_sym_bit_DASHshl2] = ACTIONS(1574), - [anon_sym_bit_DASHshr2] = ACTIONS(1574), - [anon_sym_bit_DASHand2] = ACTIONS(1574), - [anon_sym_bit_DASHxor2] = ACTIONS(1574), - [anon_sym_bit_DASHor2] = ACTIONS(1574), - [anon_sym_DOT_DOT2] = ACTIONS(1572), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1574), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1574), - [anon_sym_COLON2] = ACTIONS(1574), - [anon_sym_err_GT] = ACTIONS(1572), - [anon_sym_out_GT] = ACTIONS(1572), - [anon_sym_e_GT] = ACTIONS(1572), - [anon_sym_o_GT] = ACTIONS(1572), - [anon_sym_err_PLUSout_GT] = ACTIONS(1572), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1572), - [anon_sym_o_PLUSe_GT] = ACTIONS(1572), - [anon_sym_e_PLUSo_GT] = ACTIONS(1572), - [anon_sym_err_GT_GT] = ACTIONS(1574), - [anon_sym_out_GT_GT] = ACTIONS(1574), - [anon_sym_e_GT_GT] = ACTIONS(1574), - [anon_sym_o_GT_GT] = ACTIONS(1574), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1574), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1574), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1574), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1574), + [ts_builtin_sym_end] = ACTIONS(1452), + [anon_sym_EQ] = ACTIONS(1450), + [anon_sym_PLUS_EQ] = ACTIONS(1452), + [anon_sym_DASH_EQ] = ACTIONS(1452), + [anon_sym_STAR_EQ] = ACTIONS(1452), + [anon_sym_SLASH_EQ] = ACTIONS(1452), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1452), + [anon_sym_in] = ACTIONS(1452), + [sym__newline] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_err_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_GT_PIPE] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1452), + [anon_sym_GT2] = ACTIONS(1450), + [anon_sym_DASH2] = ACTIONS(1450), + [anon_sym_STAR2] = ACTIONS(1450), + [anon_sym_and2] = ACTIONS(1452), + [anon_sym_xor2] = ACTIONS(1452), + [anon_sym_or2] = ACTIONS(1452), + [anon_sym_not_DASHin2] = ACTIONS(1452), + [anon_sym_has2] = ACTIONS(1452), + [anon_sym_not_DASHhas2] = ACTIONS(1452), + [anon_sym_starts_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1452), + [anon_sym_ends_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1452), + [anon_sym_EQ_EQ2] = ACTIONS(1452), + [anon_sym_BANG_EQ2] = ACTIONS(1452), + [anon_sym_LT2] = ACTIONS(1450), + [anon_sym_LT_EQ2] = ACTIONS(1452), + [anon_sym_GT_EQ2] = ACTIONS(1452), + [anon_sym_EQ_TILDE2] = ACTIONS(1452), + [anon_sym_BANG_TILDE2] = ACTIONS(1452), + [anon_sym_like2] = ACTIONS(1452), + [anon_sym_not_DASHlike2] = ACTIONS(1452), + [anon_sym_STAR_STAR2] = ACTIONS(1452), + [anon_sym_PLUS_PLUS2] = ACTIONS(1450), + [anon_sym_SLASH2] = ACTIONS(1450), + [anon_sym_mod2] = ACTIONS(1452), + [anon_sym_SLASH_SLASH2] = ACTIONS(1452), + [anon_sym_PLUS2] = ACTIONS(1450), + [anon_sym_bit_DASHshl2] = ACTIONS(1452), + [anon_sym_bit_DASHshr2] = ACTIONS(1452), + [anon_sym_bit_DASHand2] = ACTIONS(1452), + [anon_sym_bit_DASHxor2] = ACTIONS(1452), + [anon_sym_bit_DASHor2] = ACTIONS(1452), + [anon_sym_DOT_DOT2] = ACTIONS(1450), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1452), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1452), + [anon_sym_QMARK2] = ACTIONS(1671), + [anon_sym_DOT2] = ACTIONS(1450), + [anon_sym_err_GT] = ACTIONS(1450), + [anon_sym_out_GT] = ACTIONS(1450), + [anon_sym_e_GT] = ACTIONS(1450), + [anon_sym_o_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT] = ACTIONS(1450), + [anon_sym_err_GT_GT] = ACTIONS(1452), + [anon_sym_out_GT_GT] = ACTIONS(1452), + [anon_sym_e_GT_GT] = ACTIONS(1452), + [anon_sym_o_GT_GT] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1452), [anon_sym_POUND] = ACTIONS(3), }, [STATE(408)] = { - [sym__path_suffix] = STATE(441), + [sym__expr_parenthesized_immediate] = STATE(867), + [sym__immediate_decimal] = STATE(869), + [sym_val_variable] = STATE(867), [sym_comment] = STATE(408), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1440), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1440), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_COLON2] = ACTIONS(1440), - [anon_sym_QMARK2] = ACTIONS(1665), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), + [anon_sym_in] = ACTIONS(1673), + [sym__newline] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1673), + [anon_sym_PIPE] = ACTIONS(1673), + [anon_sym_err_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_GT_PIPE] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1673), + [anon_sym_RPAREN] = ACTIONS(1673), + [anon_sym_DOLLAR] = ACTIONS(1586), + [anon_sym_GT2] = ACTIONS(1675), + [anon_sym_DASH2] = ACTIONS(1675), + [anon_sym_LBRACE] = ACTIONS(1673), + [anon_sym_RBRACE] = ACTIONS(1673), + [anon_sym_STAR2] = ACTIONS(1675), + [anon_sym_and2] = ACTIONS(1673), + [anon_sym_xor2] = ACTIONS(1673), + [anon_sym_or2] = ACTIONS(1673), + [anon_sym_not_DASHin2] = ACTIONS(1673), + [anon_sym_has2] = ACTIONS(1673), + [anon_sym_not_DASHhas2] = ACTIONS(1673), + [anon_sym_starts_DASHwith2] = ACTIONS(1673), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1673), + [anon_sym_ends_DASHwith2] = ACTIONS(1673), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1673), + [anon_sym_EQ_EQ2] = ACTIONS(1673), + [anon_sym_BANG_EQ2] = ACTIONS(1673), + [anon_sym_LT2] = ACTIONS(1675), + [anon_sym_LT_EQ2] = ACTIONS(1673), + [anon_sym_GT_EQ2] = ACTIONS(1673), + [anon_sym_EQ_TILDE2] = ACTIONS(1673), + [anon_sym_BANG_TILDE2] = ACTIONS(1673), + [anon_sym_like2] = ACTIONS(1673), + [anon_sym_not_DASHlike2] = ACTIONS(1673), + [anon_sym_LPAREN2] = ACTIONS(1590), + [anon_sym_STAR_STAR2] = ACTIONS(1673), + [anon_sym_PLUS_PLUS2] = ACTIONS(1673), + [anon_sym_SLASH2] = ACTIONS(1675), + [anon_sym_mod2] = ACTIONS(1673), + [anon_sym_SLASH_SLASH2] = ACTIONS(1673), + [anon_sym_PLUS2] = ACTIONS(1675), + [anon_sym_bit_DASHshl2] = ACTIONS(1673), + [anon_sym_bit_DASHshr2] = ACTIONS(1673), + [anon_sym_bit_DASHand2] = ACTIONS(1673), + [anon_sym_bit_DASHxor2] = ACTIONS(1673), + [anon_sym_bit_DASHor2] = ACTIONS(1673), + [aux_sym__immediate_decimal_token1] = ACTIONS(1631), + [aux_sym__immediate_decimal_token2] = ACTIONS(1631), + [aux_sym__immediate_decimal_token3] = ACTIONS(1596), + [aux_sym__immediate_decimal_token4] = ACTIONS(1596), + [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(1673), + [anon_sym_out_GT_GT] = ACTIONS(1673), + [anon_sym_e_GT_GT] = ACTIONS(1673), + [anon_sym_o_GT_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1673), [anon_sym_POUND] = ACTIONS(3), }, [STATE(409)] = { + [sym__expr_parenthesized_immediate] = STATE(871), + [sym__immediate_decimal] = STATE(938), + [sym_val_variable] = STATE(871), [sym_comment] = STATE(409), - [ts_builtin_sym_end] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_PLUS_EQ] = ACTIONS(1448), - [anon_sym_DASH_EQ] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1448), - [anon_sym_SLASH_EQ] = ACTIONS(1448), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1448), - [anon_sym_in] = ACTIONS(1448), - [sym__newline] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_err_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_GT_PIPE] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), - [anon_sym_GT2] = ACTIONS(1446), - [anon_sym_DASH2] = ACTIONS(1446), - [anon_sym_STAR2] = ACTIONS(1446), - [anon_sym_and2] = ACTIONS(1448), - [anon_sym_xor2] = ACTIONS(1448), - [anon_sym_or2] = ACTIONS(1448), - [anon_sym_not_DASHin2] = ACTIONS(1448), - [anon_sym_has2] = ACTIONS(1448), - [anon_sym_not_DASHhas2] = ACTIONS(1448), - [anon_sym_starts_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1448), - [anon_sym_ends_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), - [anon_sym_EQ_EQ2] = ACTIONS(1448), - [anon_sym_BANG_EQ2] = ACTIONS(1448), - [anon_sym_LT2] = ACTIONS(1446), - [anon_sym_LT_EQ2] = ACTIONS(1448), - [anon_sym_GT_EQ2] = ACTIONS(1448), - [anon_sym_EQ_TILDE2] = ACTIONS(1448), - [anon_sym_BANG_TILDE2] = ACTIONS(1448), - [anon_sym_like2] = ACTIONS(1448), - [anon_sym_not_DASHlike2] = ACTIONS(1448), - [anon_sym_STAR_STAR2] = ACTIONS(1448), - [anon_sym_PLUS_PLUS2] = ACTIONS(1446), - [anon_sym_SLASH2] = ACTIONS(1446), - [anon_sym_mod2] = ACTIONS(1448), - [anon_sym_SLASH_SLASH2] = ACTIONS(1448), - [anon_sym_PLUS2] = ACTIONS(1446), - [anon_sym_bit_DASHshl2] = ACTIONS(1448), - [anon_sym_bit_DASHshr2] = ACTIONS(1448), - [anon_sym_bit_DASHand2] = ACTIONS(1448), - [anon_sym_bit_DASHxor2] = ACTIONS(1448), - [anon_sym_bit_DASHor2] = ACTIONS(1448), - [anon_sym_DOT_DOT2] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1669), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1446), - [anon_sym_out_GT] = ACTIONS(1446), - [anon_sym_e_GT] = ACTIONS(1446), - [anon_sym_o_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT] = ACTIONS(1446), - [anon_sym_err_GT_GT] = ACTIONS(1448), - [anon_sym_out_GT_GT] = ACTIONS(1448), - [anon_sym_e_GT_GT] = ACTIONS(1448), - [anon_sym_o_GT_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), + [anon_sym_in] = ACTIONS(1633), + [sym__newline] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1633), + [anon_sym_err_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_GT_PIPE] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1633), + [anon_sym_RPAREN] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(1586), + [anon_sym_GT2] = ACTIONS(1635), + [anon_sym_DASH2] = ACTIONS(1635), + [anon_sym_LBRACE] = ACTIONS(1633), + [anon_sym_RBRACE] = ACTIONS(1633), + [anon_sym_STAR2] = ACTIONS(1635), + [anon_sym_and2] = ACTIONS(1633), + [anon_sym_xor2] = ACTIONS(1633), + [anon_sym_or2] = ACTIONS(1633), + [anon_sym_not_DASHin2] = ACTIONS(1633), + [anon_sym_has2] = ACTIONS(1633), + [anon_sym_not_DASHhas2] = ACTIONS(1633), + [anon_sym_starts_DASHwith2] = ACTIONS(1633), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1633), + [anon_sym_ends_DASHwith2] = ACTIONS(1633), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1633), + [anon_sym_EQ_EQ2] = ACTIONS(1633), + [anon_sym_BANG_EQ2] = ACTIONS(1633), + [anon_sym_LT2] = ACTIONS(1635), + [anon_sym_LT_EQ2] = ACTIONS(1633), + [anon_sym_GT_EQ2] = ACTIONS(1633), + [anon_sym_EQ_TILDE2] = ACTIONS(1633), + [anon_sym_BANG_TILDE2] = ACTIONS(1633), + [anon_sym_like2] = ACTIONS(1633), + [anon_sym_not_DASHlike2] = ACTIONS(1633), + [anon_sym_LPAREN2] = ACTIONS(1590), + [anon_sym_STAR_STAR2] = ACTIONS(1633), + [anon_sym_PLUS_PLUS2] = ACTIONS(1633), + [anon_sym_SLASH2] = ACTIONS(1635), + [anon_sym_mod2] = ACTIONS(1633), + [anon_sym_SLASH_SLASH2] = ACTIONS(1633), + [anon_sym_PLUS2] = ACTIONS(1635), + [anon_sym_bit_DASHshl2] = ACTIONS(1633), + [anon_sym_bit_DASHshr2] = ACTIONS(1633), + [anon_sym_bit_DASHand2] = ACTIONS(1633), + [anon_sym_bit_DASHxor2] = ACTIONS(1633), + [anon_sym_bit_DASHor2] = ACTIONS(1633), + [aux_sym__immediate_decimal_token1] = ACTIONS(1631), + [aux_sym__immediate_decimal_token2] = ACTIONS(1631), + [aux_sym__immediate_decimal_token3] = ACTIONS(1596), + [aux_sym__immediate_decimal_token4] = ACTIONS(1596), + [anon_sym_err_GT] = ACTIONS(1635), + [anon_sym_out_GT] = ACTIONS(1635), + [anon_sym_e_GT] = ACTIONS(1635), + [anon_sym_o_GT] = ACTIONS(1635), + [anon_sym_err_PLUSout_GT] = ACTIONS(1635), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1635), + [anon_sym_o_PLUSe_GT] = ACTIONS(1635), + [anon_sym_e_PLUSo_GT] = ACTIONS(1635), + [anon_sym_err_GT_GT] = ACTIONS(1633), + [anon_sym_out_GT_GT] = ACTIONS(1633), + [anon_sym_e_GT_GT] = ACTIONS(1633), + [anon_sym_o_GT_GT] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1633), [anon_sym_POUND] = ACTIONS(3), }, [STATE(410)] = { - [sym__expr_parenthesized_immediate] = STATE(930), - [sym__immediate_decimal] = STATE(678), - [sym_val_variable] = STATE(930), + [sym__expr_parenthesized_immediate] = STATE(825), + [sym__immediate_decimal] = STATE(826), + [sym_val_variable] = STATE(825), [sym_comment] = STATE(410), - [ts_builtin_sym_end] = ACTIONS(1582), - [anon_sym_in] = ACTIONS(1582), - [sym__newline] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_err_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_GT_PIPE] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1671), - [anon_sym_GT2] = ACTIONS(1586), - [anon_sym_DASH2] = ACTIONS(1586), - [anon_sym_STAR2] = ACTIONS(1586), - [anon_sym_and2] = ACTIONS(1582), - [anon_sym_xor2] = ACTIONS(1582), - [anon_sym_or2] = ACTIONS(1582), - [anon_sym_not_DASHin2] = ACTIONS(1582), - [anon_sym_has2] = ACTIONS(1582), - [anon_sym_not_DASHhas2] = ACTIONS(1582), - [anon_sym_starts_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1582), - [anon_sym_ends_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1582), - [anon_sym_EQ_EQ2] = ACTIONS(1582), - [anon_sym_BANG_EQ2] = ACTIONS(1582), - [anon_sym_LT2] = ACTIONS(1586), - [anon_sym_LT_EQ2] = ACTIONS(1582), - [anon_sym_GT_EQ2] = ACTIONS(1582), - [anon_sym_EQ_TILDE2] = ACTIONS(1582), - [anon_sym_BANG_TILDE2] = ACTIONS(1582), - [anon_sym_like2] = ACTIONS(1582), - [anon_sym_not_DASHlike2] = ACTIONS(1582), - [anon_sym_LPAREN2] = ACTIONS(1673), - [anon_sym_STAR_STAR2] = ACTIONS(1582), - [anon_sym_PLUS_PLUS2] = ACTIONS(1582), - [anon_sym_SLASH2] = ACTIONS(1586), - [anon_sym_mod2] = ACTIONS(1582), - [anon_sym_SLASH_SLASH2] = ACTIONS(1582), - [anon_sym_PLUS2] = ACTIONS(1586), - [anon_sym_bit_DASHshl2] = ACTIONS(1582), - [anon_sym_bit_DASHshr2] = ACTIONS(1582), - [anon_sym_bit_DASHand2] = ACTIONS(1582), - [anon_sym_bit_DASHxor2] = ACTIONS(1582), - [anon_sym_bit_DASHor2] = ACTIONS(1582), - [anon_sym_DOT] = ACTIONS(1675), - [aux_sym__immediate_decimal_token1] = ACTIONS(1677), - [aux_sym__immediate_decimal_token2] = ACTIONS(1677), - [aux_sym__immediate_decimal_token3] = ACTIONS(1679), - [aux_sym__immediate_decimal_token4] = ACTIONS(1679), - [anon_sym_err_GT] = ACTIONS(1586), - [anon_sym_out_GT] = ACTIONS(1586), - [anon_sym_e_GT] = ACTIONS(1586), - [anon_sym_o_GT] = ACTIONS(1586), - [anon_sym_err_PLUSout_GT] = ACTIONS(1586), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1586), - [anon_sym_o_PLUSe_GT] = ACTIONS(1586), - [anon_sym_e_PLUSo_GT] = ACTIONS(1586), - [anon_sym_err_GT_GT] = ACTIONS(1582), - [anon_sym_out_GT_GT] = ACTIONS(1582), - [anon_sym_e_GT_GT] = ACTIONS(1582), - [anon_sym_o_GT_GT] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), - [sym__unquoted_pattern] = ACTIONS(1598), + [anon_sym_in] = ACTIONS(1623), + [sym__newline] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1623), + [anon_sym_err_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_GT_PIPE] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), + [anon_sym_RPAREN] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(1586), + [anon_sym_GT2] = ACTIONS(1625), + [anon_sym_DASH2] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_RBRACE] = ACTIONS(1623), + [anon_sym_STAR2] = ACTIONS(1625), + [anon_sym_and2] = ACTIONS(1623), + [anon_sym_xor2] = ACTIONS(1623), + [anon_sym_or2] = ACTIONS(1623), + [anon_sym_not_DASHin2] = ACTIONS(1623), + [anon_sym_has2] = ACTIONS(1623), + [anon_sym_not_DASHhas2] = ACTIONS(1623), + [anon_sym_starts_DASHwith2] = ACTIONS(1623), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1623), + [anon_sym_ends_DASHwith2] = ACTIONS(1623), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1623), + [anon_sym_EQ_EQ2] = ACTIONS(1623), + [anon_sym_BANG_EQ2] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1625), + [anon_sym_LT_EQ2] = ACTIONS(1623), + [anon_sym_GT_EQ2] = ACTIONS(1623), + [anon_sym_EQ_TILDE2] = ACTIONS(1623), + [anon_sym_BANG_TILDE2] = ACTIONS(1623), + [anon_sym_like2] = ACTIONS(1623), + [anon_sym_not_DASHlike2] = ACTIONS(1623), + [anon_sym_LPAREN2] = ACTIONS(1590), + [anon_sym_STAR_STAR2] = ACTIONS(1623), + [anon_sym_PLUS_PLUS2] = ACTIONS(1623), + [anon_sym_SLASH2] = ACTIONS(1625), + [anon_sym_mod2] = ACTIONS(1623), + [anon_sym_SLASH_SLASH2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1625), + [anon_sym_bit_DASHshl2] = ACTIONS(1623), + [anon_sym_bit_DASHshr2] = ACTIONS(1623), + [anon_sym_bit_DASHand2] = ACTIONS(1623), + [anon_sym_bit_DASHxor2] = ACTIONS(1623), + [anon_sym_bit_DASHor2] = ACTIONS(1623), + [aux_sym__immediate_decimal_token1] = ACTIONS(1631), + [aux_sym__immediate_decimal_token2] = ACTIONS(1631), + [aux_sym__immediate_decimal_token3] = ACTIONS(1596), + [aux_sym__immediate_decimal_token4] = ACTIONS(1596), + [anon_sym_err_GT] = ACTIONS(1625), + [anon_sym_out_GT] = ACTIONS(1625), + [anon_sym_e_GT] = ACTIONS(1625), + [anon_sym_o_GT] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT] = ACTIONS(1625), + [anon_sym_err_GT_GT] = ACTIONS(1623), + [anon_sym_out_GT_GT] = ACTIONS(1623), + [anon_sym_e_GT_GT] = ACTIONS(1623), + [anon_sym_o_GT_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), [anon_sym_POUND] = ACTIONS(3), }, [STATE(411)] = { - [sym__expr_parenthesized_immediate] = STATE(809), - [sym__immediate_decimal] = STATE(951), - [sym_val_variable] = STATE(809), + [sym_cell_path] = STATE(457), + [sym_path] = STATE(446), [sym_comment] = STATE(411), - [anon_sym_in] = ACTIONS(1582), - [sym__newline] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_err_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_GT_PIPE] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), - [anon_sym_RPAREN] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1584), - [anon_sym_GT2] = ACTIONS(1586), - [anon_sym_DASH2] = ACTIONS(1586), - [anon_sym_RBRACE] = ACTIONS(1582), - [anon_sym_STAR2] = ACTIONS(1586), - [anon_sym_and2] = ACTIONS(1582), - [anon_sym_xor2] = ACTIONS(1582), - [anon_sym_or2] = ACTIONS(1582), - [anon_sym_not_DASHin2] = ACTIONS(1582), - [anon_sym_has2] = ACTIONS(1582), - [anon_sym_not_DASHhas2] = ACTIONS(1582), - [anon_sym_starts_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1582), - [anon_sym_ends_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1582), - [anon_sym_EQ_EQ2] = ACTIONS(1582), - [anon_sym_BANG_EQ2] = ACTIONS(1582), - [anon_sym_LT2] = ACTIONS(1586), - [anon_sym_LT_EQ2] = ACTIONS(1582), - [anon_sym_GT_EQ2] = ACTIONS(1582), - [anon_sym_EQ_TILDE2] = ACTIONS(1582), - [anon_sym_BANG_TILDE2] = ACTIONS(1582), - [anon_sym_like2] = ACTIONS(1582), - [anon_sym_not_DASHlike2] = ACTIONS(1582), - [anon_sym_LPAREN2] = ACTIONS(1588), - [anon_sym_STAR_STAR2] = ACTIONS(1582), - [anon_sym_PLUS_PLUS2] = ACTIONS(1582), - [anon_sym_SLASH2] = ACTIONS(1586), - [anon_sym_mod2] = ACTIONS(1582), - [anon_sym_SLASH_SLASH2] = ACTIONS(1582), - [anon_sym_PLUS2] = ACTIONS(1586), - [anon_sym_bit_DASHshl2] = ACTIONS(1582), - [anon_sym_bit_DASHshr2] = ACTIONS(1582), - [anon_sym_bit_DASHand2] = ACTIONS(1582), - [anon_sym_bit_DASHxor2] = ACTIONS(1582), - [anon_sym_bit_DASHor2] = ACTIONS(1582), - [aux_sym__immediate_decimal_token1] = ACTIONS(1637), - [aux_sym__immediate_decimal_token2] = ACTIONS(1637), - [aux_sym__immediate_decimal_token3] = ACTIONS(1639), - [aux_sym__immediate_decimal_token4] = ACTIONS(1639), - [anon_sym_err_GT] = ACTIONS(1586), - [anon_sym_out_GT] = ACTIONS(1586), - [anon_sym_e_GT] = ACTIONS(1586), - [anon_sym_o_GT] = ACTIONS(1586), - [anon_sym_err_PLUSout_GT] = ACTIONS(1586), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1586), - [anon_sym_o_PLUSe_GT] = ACTIONS(1586), - [anon_sym_e_PLUSo_GT] = ACTIONS(1586), - [anon_sym_err_GT_GT] = ACTIONS(1582), - [anon_sym_out_GT_GT] = ACTIONS(1582), - [anon_sym_e_GT_GT] = ACTIONS(1582), - [anon_sym_o_GT_GT] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), - [sym__unquoted_pattern] = ACTIONS(1598), + [aux_sym__where_predicate_lhs_repeat1] = STATE(421), + [anon_sym_in] = 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_RPAREN] = ACTIONS(1677), + [anon_sym_GT2] = ACTIONS(1679), + [anon_sym_DASH2] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1677), + [anon_sym_RBRACE] = ACTIONS(1677), + [anon_sym_EQ_GT] = ACTIONS(1677), + [anon_sym_STAR2] = ACTIONS(1679), + [anon_sym_and2] = ACTIONS(1677), + [anon_sym_xor2] = ACTIONS(1677), + [anon_sym_or2] = ACTIONS(1677), + [anon_sym_not_DASHin2] = ACTIONS(1677), + [anon_sym_has2] = ACTIONS(1677), + [anon_sym_not_DASHhas2] = ACTIONS(1677), + [anon_sym_starts_DASHwith2] = ACTIONS(1677), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1677), + [anon_sym_ends_DASHwith2] = ACTIONS(1677), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1677), + [anon_sym_EQ_EQ2] = ACTIONS(1677), + [anon_sym_BANG_EQ2] = ACTIONS(1677), + [anon_sym_LT2] = ACTIONS(1679), + [anon_sym_LT_EQ2] = ACTIONS(1677), + [anon_sym_GT_EQ2] = ACTIONS(1677), + [anon_sym_EQ_TILDE2] = ACTIONS(1677), + [anon_sym_BANG_TILDE2] = ACTIONS(1677), + [anon_sym_like2] = ACTIONS(1677), + [anon_sym_not_DASHlike2] = ACTIONS(1677), + [anon_sym_STAR_STAR2] = ACTIONS(1677), + [anon_sym_PLUS_PLUS2] = ACTIONS(1677), + [anon_sym_SLASH2] = ACTIONS(1679), + [anon_sym_mod2] = ACTIONS(1677), + [anon_sym_SLASH_SLASH2] = ACTIONS(1677), + [anon_sym_PLUS2] = ACTIONS(1679), + [anon_sym_bit_DASHshl2] = ACTIONS(1677), + [anon_sym_bit_DASHshr2] = ACTIONS(1677), + [anon_sym_bit_DASHand2] = ACTIONS(1677), + [anon_sym_bit_DASHxor2] = ACTIONS(1677), + [anon_sym_bit_DASHor2] = ACTIONS(1677), + [anon_sym_DOT_DOT2] = ACTIONS(1679), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1677), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1677), + [anon_sym_COLON2] = ACTIONS(1677), + [anon_sym_DOT2] = ACTIONS(1651), + [anon_sym_err_GT] = ACTIONS(1679), + [anon_sym_out_GT] = ACTIONS(1679), + [anon_sym_e_GT] = ACTIONS(1679), + [anon_sym_o_GT] = ACTIONS(1679), + [anon_sym_err_PLUSout_GT] = ACTIONS(1679), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1679), + [anon_sym_o_PLUSe_GT] = ACTIONS(1679), + [anon_sym_e_PLUSo_GT] = ACTIONS(1679), + [anon_sym_err_GT_GT] = ACTIONS(1677), + [anon_sym_out_GT_GT] = ACTIONS(1677), + [anon_sym_e_GT_GT] = ACTIONS(1677), + [anon_sym_o_GT_GT] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1677), [anon_sym_POUND] = ACTIONS(3), }, [STATE(412)] = { [sym_comment] = STATE(412), - [ts_builtin_sym_end] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_PLUS_EQ] = ACTIONS(1448), - [anon_sym_DASH_EQ] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1448), - [anon_sym_SLASH_EQ] = ACTIONS(1448), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1448), - [anon_sym_in] = ACTIONS(1448), - [sym__newline] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_err_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_GT_PIPE] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), - [anon_sym_GT2] = ACTIONS(1446), - [anon_sym_DASH2] = ACTIONS(1446), - [anon_sym_STAR2] = ACTIONS(1446), - [anon_sym_and2] = ACTIONS(1448), - [anon_sym_xor2] = ACTIONS(1448), - [anon_sym_or2] = ACTIONS(1448), - [anon_sym_not_DASHin2] = ACTIONS(1448), - [anon_sym_has2] = ACTIONS(1448), - [anon_sym_not_DASHhas2] = ACTIONS(1448), - [anon_sym_starts_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1448), - [anon_sym_ends_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), - [anon_sym_EQ_EQ2] = ACTIONS(1448), - [anon_sym_BANG_EQ2] = ACTIONS(1448), - [anon_sym_LT2] = ACTIONS(1446), - [anon_sym_LT_EQ2] = ACTIONS(1448), - [anon_sym_GT_EQ2] = ACTIONS(1448), - [anon_sym_EQ_TILDE2] = ACTIONS(1448), - [anon_sym_BANG_TILDE2] = ACTIONS(1448), - [anon_sym_like2] = ACTIONS(1448), - [anon_sym_not_DASHlike2] = ACTIONS(1448), - [anon_sym_STAR_STAR2] = ACTIONS(1448), - [anon_sym_PLUS_PLUS2] = ACTIONS(1446), - [anon_sym_SLASH2] = ACTIONS(1446), - [anon_sym_mod2] = ACTIONS(1448), - [anon_sym_SLASH_SLASH2] = ACTIONS(1448), - [anon_sym_PLUS2] = ACTIONS(1446), - [anon_sym_bit_DASHshl2] = ACTIONS(1448), - [anon_sym_bit_DASHshr2] = ACTIONS(1448), - [anon_sym_bit_DASHand2] = ACTIONS(1448), - [anon_sym_bit_DASHxor2] = ACTIONS(1448), - [anon_sym_bit_DASHor2] = ACTIONS(1448), - [anon_sym_DOT_DOT2] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), - [anon_sym_QMARK2] = ACTIONS(1681), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1446), - [anon_sym_out_GT] = ACTIONS(1446), - [anon_sym_e_GT] = ACTIONS(1446), - [anon_sym_o_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT] = ACTIONS(1446), - [anon_sym_err_GT_GT] = ACTIONS(1448), - [anon_sym_out_GT_GT] = ACTIONS(1448), - [anon_sym_e_GT_GT] = ACTIONS(1448), - [anon_sym_o_GT_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), + [ts_builtin_sym_end] = ACTIONS(1452), + [anon_sym_EQ] = ACTIONS(1450), + [anon_sym_PLUS_EQ] = ACTIONS(1452), + [anon_sym_DASH_EQ] = ACTIONS(1452), + [anon_sym_STAR_EQ] = ACTIONS(1452), + [anon_sym_SLASH_EQ] = ACTIONS(1452), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1452), + [anon_sym_in] = ACTIONS(1452), + [sym__newline] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_err_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_GT_PIPE] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1452), + [anon_sym_GT2] = ACTIONS(1450), + [anon_sym_DASH2] = ACTIONS(1450), + [anon_sym_STAR2] = ACTIONS(1450), + [anon_sym_and2] = ACTIONS(1452), + [anon_sym_xor2] = ACTIONS(1452), + [anon_sym_or2] = ACTIONS(1452), + [anon_sym_not_DASHin2] = ACTIONS(1452), + [anon_sym_has2] = ACTIONS(1452), + [anon_sym_not_DASHhas2] = ACTIONS(1452), + [anon_sym_starts_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1452), + [anon_sym_ends_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1452), + [anon_sym_EQ_EQ2] = ACTIONS(1452), + [anon_sym_BANG_EQ2] = ACTIONS(1452), + [anon_sym_LT2] = ACTIONS(1450), + [anon_sym_LT_EQ2] = ACTIONS(1452), + [anon_sym_GT_EQ2] = ACTIONS(1452), + [anon_sym_EQ_TILDE2] = ACTIONS(1452), + [anon_sym_BANG_TILDE2] = ACTIONS(1452), + [anon_sym_like2] = ACTIONS(1452), + [anon_sym_not_DASHlike2] = ACTIONS(1452), + [anon_sym_STAR_STAR2] = ACTIONS(1452), + [anon_sym_PLUS_PLUS2] = ACTIONS(1450), + [anon_sym_SLASH2] = ACTIONS(1450), + [anon_sym_mod2] = ACTIONS(1452), + [anon_sym_SLASH_SLASH2] = ACTIONS(1452), + [anon_sym_PLUS2] = ACTIONS(1450), + [anon_sym_bit_DASHshl2] = ACTIONS(1452), + [anon_sym_bit_DASHshr2] = ACTIONS(1452), + [anon_sym_bit_DASHand2] = ACTIONS(1452), + [anon_sym_bit_DASHxor2] = ACTIONS(1452), + [anon_sym_bit_DASHor2] = ACTIONS(1452), + [anon_sym_DOT_DOT2] = ACTIONS(1450), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1452), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1681), + [anon_sym_DOT2] = ACTIONS(1450), + [anon_sym_err_GT] = ACTIONS(1450), + [anon_sym_out_GT] = ACTIONS(1450), + [anon_sym_e_GT] = ACTIONS(1450), + [anon_sym_o_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT] = ACTIONS(1450), + [anon_sym_err_GT_GT] = ACTIONS(1452), + [anon_sym_out_GT_GT] = ACTIONS(1452), + [anon_sym_e_GT_GT] = ACTIONS(1452), + [anon_sym_o_GT_GT] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1452), [anon_sym_POUND] = ACTIONS(3), }, [STATE(413)] = { [sym_comment] = STATE(413), - [anon_sym_in] = ACTIONS(1523), - [sym__newline] = ACTIONS(1523), - [anon_sym_SEMI] = ACTIONS(1523), - [anon_sym_PIPE] = ACTIONS(1523), - [anon_sym_err_GT_PIPE] = ACTIONS(1523), - [anon_sym_out_GT_PIPE] = ACTIONS(1523), - [anon_sym_e_GT_PIPE] = ACTIONS(1523), - [anon_sym_o_GT_PIPE] = ACTIONS(1523), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1523), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1523), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1523), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1523), - [anon_sym_RPAREN] = ACTIONS(1523), - [anon_sym_GT2] = ACTIONS(1521), - [anon_sym_DASH2] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1523), - [anon_sym_RBRACE] = ACTIONS(1523), - [anon_sym_EQ_GT] = ACTIONS(1523), - [anon_sym_STAR2] = ACTIONS(1521), - [anon_sym_and2] = ACTIONS(1523), - [anon_sym_xor2] = ACTIONS(1523), - [anon_sym_or2] = ACTIONS(1523), - [anon_sym_not_DASHin2] = ACTIONS(1523), - [anon_sym_has2] = ACTIONS(1523), - [anon_sym_not_DASHhas2] = ACTIONS(1523), - [anon_sym_starts_DASHwith2] = ACTIONS(1523), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1523), - [anon_sym_ends_DASHwith2] = ACTIONS(1523), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1523), - [anon_sym_EQ_EQ2] = ACTIONS(1523), - [anon_sym_BANG_EQ2] = ACTIONS(1523), - [anon_sym_LT2] = ACTIONS(1521), - [anon_sym_LT_EQ2] = ACTIONS(1523), - [anon_sym_GT_EQ2] = ACTIONS(1523), - [anon_sym_EQ_TILDE2] = ACTIONS(1523), - [anon_sym_BANG_TILDE2] = ACTIONS(1523), - [anon_sym_like2] = ACTIONS(1523), - [anon_sym_not_DASHlike2] = ACTIONS(1523), - [anon_sym_STAR_STAR2] = ACTIONS(1523), - [anon_sym_PLUS_PLUS2] = ACTIONS(1523), - [anon_sym_SLASH2] = ACTIONS(1521), - [anon_sym_mod2] = ACTIONS(1523), - [anon_sym_SLASH_SLASH2] = ACTIONS(1523), - [anon_sym_PLUS2] = ACTIONS(1521), - [anon_sym_bit_DASHshl2] = ACTIONS(1523), - [anon_sym_bit_DASHshr2] = ACTIONS(1523), - [anon_sym_bit_DASHand2] = ACTIONS(1523), - [anon_sym_bit_DASHxor2] = ACTIONS(1523), - [anon_sym_bit_DASHor2] = ACTIONS(1523), - [anon_sym_DOT_DOT2] = ACTIONS(1521), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1523), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1523), - [anon_sym_COLON2] = ACTIONS(1523), - [anon_sym_QMARK2] = ACTIONS(1523), - [anon_sym_BANG] = ACTIONS(1521), - [anon_sym_DOT2] = ACTIONS(1521), - [anon_sym_err_GT] = ACTIONS(1521), - [anon_sym_out_GT] = ACTIONS(1521), - [anon_sym_e_GT] = ACTIONS(1521), - [anon_sym_o_GT] = ACTIONS(1521), - [anon_sym_err_PLUSout_GT] = ACTIONS(1521), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1521), - [anon_sym_o_PLUSe_GT] = ACTIONS(1521), - [anon_sym_e_PLUSo_GT] = ACTIONS(1521), - [anon_sym_err_GT_GT] = ACTIONS(1523), - [anon_sym_out_GT_GT] = ACTIONS(1523), - [anon_sym_e_GT_GT] = ACTIONS(1523), - [anon_sym_o_GT_GT] = ACTIONS(1523), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1523), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1523), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1523), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1523), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(414)] = { - [sym__expr_parenthesized_immediate] = STATE(930), - [sym__immediate_decimal] = STATE(963), - [sym_val_variable] = STATE(930), - [sym_comment] = STATE(414), - [ts_builtin_sym_end] = ACTIONS(1582), - [anon_sym_in] = ACTIONS(1582), - [sym__newline] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_err_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_GT_PIPE] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1671), - [anon_sym_GT2] = ACTIONS(1586), - [anon_sym_DASH2] = ACTIONS(1586), - [anon_sym_STAR2] = ACTIONS(1586), - [anon_sym_and2] = ACTIONS(1582), - [anon_sym_xor2] = ACTIONS(1582), - [anon_sym_or2] = ACTIONS(1582), - [anon_sym_not_DASHin2] = ACTIONS(1582), - [anon_sym_has2] = ACTIONS(1582), - [anon_sym_not_DASHhas2] = ACTIONS(1582), - [anon_sym_starts_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1582), - [anon_sym_ends_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1582), - [anon_sym_EQ_EQ2] = ACTIONS(1582), - [anon_sym_BANG_EQ2] = ACTIONS(1582), - [anon_sym_LT2] = ACTIONS(1586), - [anon_sym_LT_EQ2] = ACTIONS(1582), - [anon_sym_GT_EQ2] = ACTIONS(1582), - [anon_sym_EQ_TILDE2] = ACTIONS(1582), - [anon_sym_BANG_TILDE2] = ACTIONS(1582), - [anon_sym_like2] = ACTIONS(1582), - [anon_sym_not_DASHlike2] = ACTIONS(1582), - [anon_sym_LPAREN2] = ACTIONS(1673), - [anon_sym_STAR_STAR2] = ACTIONS(1582), - [anon_sym_PLUS_PLUS2] = ACTIONS(1582), - [anon_sym_SLASH2] = ACTIONS(1586), - [anon_sym_mod2] = ACTIONS(1582), - [anon_sym_SLASH_SLASH2] = ACTIONS(1582), - [anon_sym_PLUS2] = ACTIONS(1586), - [anon_sym_bit_DASHshl2] = ACTIONS(1582), - [anon_sym_bit_DASHshr2] = ACTIONS(1582), - [anon_sym_bit_DASHand2] = ACTIONS(1582), - [anon_sym_bit_DASHxor2] = ACTIONS(1582), - [anon_sym_bit_DASHor2] = ACTIONS(1582), - [anon_sym_DOT] = ACTIONS(1683), - [aux_sym__immediate_decimal_token1] = ACTIONS(1677), - [aux_sym__immediate_decimal_token2] = ACTIONS(1677), - [aux_sym__immediate_decimal_token3] = ACTIONS(1679), - [aux_sym__immediate_decimal_token4] = ACTIONS(1679), - [anon_sym_err_GT] = ACTIONS(1586), - [anon_sym_out_GT] = ACTIONS(1586), - [anon_sym_e_GT] = ACTIONS(1586), - [anon_sym_o_GT] = ACTIONS(1586), - [anon_sym_err_PLUSout_GT] = ACTIONS(1586), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1586), - [anon_sym_o_PLUSe_GT] = ACTIONS(1586), - [anon_sym_e_PLUSo_GT] = ACTIONS(1586), - [anon_sym_err_GT_GT] = ACTIONS(1582), - [anon_sym_out_GT_GT] = ACTIONS(1582), - [anon_sym_e_GT_GT] = ACTIONS(1582), - [anon_sym_o_GT_GT] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(415)] = { - [sym__expr_parenthesized_immediate] = STATE(928), - [sym__immediate_decimal] = STATE(929), - [sym_val_variable] = STATE(928), - [sym_comment] = STATE(415), - [ts_builtin_sym_end] = ACTIONS(1607), - [anon_sym_in] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_DOLLAR] = ACTIONS(1671), - [anon_sym_GT2] = ACTIONS(1609), - [anon_sym_DASH2] = ACTIONS(1609), - [anon_sym_STAR2] = ACTIONS(1609), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_has2] = ACTIONS(1607), - [anon_sym_not_DASHhas2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1609), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_like2] = ACTIONS(1607), - [anon_sym_not_DASHlike2] = ACTIONS(1607), - [anon_sym_LPAREN2] = ACTIONS(1673), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1609), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1609), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [anon_sym_DOT] = ACTIONS(1685), - [aux_sym__immediate_decimal_token1] = ACTIONS(1677), - [aux_sym__immediate_decimal_token2] = ACTIONS(1677), - [aux_sym__immediate_decimal_token3] = ACTIONS(1679), - [aux_sym__immediate_decimal_token4] = ACTIONS(1679), - [anon_sym_err_GT] = ACTIONS(1609), - [anon_sym_out_GT] = ACTIONS(1609), - [anon_sym_e_GT] = ACTIONS(1609), - [anon_sym_o_GT] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT] = ACTIONS(1609), - [anon_sym_err_GT_GT] = ACTIONS(1607), - [anon_sym_out_GT_GT] = ACTIONS(1607), - [anon_sym_e_GT_GT] = ACTIONS(1607), - [anon_sym_o_GT_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(416)] = { - [sym_path] = STATE(435), - [sym_comment] = STATE(416), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1490), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_EQ_GT] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1490), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1490), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_like2] = ACTIONS(1492), - [anon_sym_not_DASHlike2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1490), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1490), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1490), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1492), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1492), - [anon_sym_COLON2] = ACTIONS(1492), - [anon_sym_DOT2] = ACTIONS(1659), - [anon_sym_err_GT] = ACTIONS(1490), - [anon_sym_out_GT] = ACTIONS(1490), - [anon_sym_e_GT] = ACTIONS(1490), - [anon_sym_o_GT] = ACTIONS(1490), - [anon_sym_err_PLUSout_GT] = ACTIONS(1490), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1490), - [anon_sym_o_PLUSe_GT] = ACTIONS(1490), - [anon_sym_e_PLUSo_GT] = ACTIONS(1490), - [anon_sym_err_GT_GT] = ACTIONS(1492), - [anon_sym_out_GT_GT] = ACTIONS(1492), - [anon_sym_e_GT_GT] = ACTIONS(1492), - [anon_sym_o_GT_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(417)] = { - [sym_comment] = STATE(417), [anon_sym_in] = ACTIONS(1511), [sym__newline] = ACTIONS(1511), [anon_sym_SEMI] = ACTIONS(1511), @@ -80288,312 +80019,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1511), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(418)] = { - [sym_comment] = STATE(418), - [anon_sym_EQ] = ACTIONS(1613), - [anon_sym_PLUS_EQ] = ACTIONS(1687), - [anon_sym_DASH_EQ] = ACTIONS(1687), - [anon_sym_STAR_EQ] = ACTIONS(1687), - [anon_sym_SLASH_EQ] = ACTIONS(1687), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1687), - [anon_sym_in] = ACTIONS(1689), - [sym__newline] = ACTIONS(1689), - [anon_sym_SEMI] = ACTIONS(1689), - [anon_sym_PIPE] = ACTIONS(1689), - [anon_sym_err_GT_PIPE] = ACTIONS(1689), - [anon_sym_out_GT_PIPE] = ACTIONS(1689), - [anon_sym_e_GT_PIPE] = ACTIONS(1689), - [anon_sym_o_GT_PIPE] = ACTIONS(1689), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), - [anon_sym_GT2] = ACTIONS(1615), - [anon_sym_DASH2] = ACTIONS(1615), - [anon_sym_RBRACE] = ACTIONS(1689), - [anon_sym_STAR2] = ACTIONS(1615), - [anon_sym_and2] = ACTIONS(1689), - [anon_sym_xor2] = ACTIONS(1689), - [anon_sym_or2] = ACTIONS(1689), - [anon_sym_not_DASHin2] = ACTIONS(1689), - [anon_sym_has2] = ACTIONS(1689), - [anon_sym_not_DASHhas2] = ACTIONS(1689), - [anon_sym_starts_DASHwith2] = ACTIONS(1689), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1689), - [anon_sym_ends_DASHwith2] = ACTIONS(1689), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1689), - [anon_sym_EQ_EQ2] = ACTIONS(1689), - [anon_sym_BANG_EQ2] = ACTIONS(1689), - [anon_sym_LT2] = ACTIONS(1615), - [anon_sym_LT_EQ2] = ACTIONS(1689), - [anon_sym_GT_EQ2] = ACTIONS(1689), - [anon_sym_EQ_TILDE2] = ACTIONS(1689), - [anon_sym_BANG_TILDE2] = ACTIONS(1689), - [anon_sym_like2] = ACTIONS(1689), - [anon_sym_not_DASHlike2] = ACTIONS(1689), - [anon_sym_STAR_STAR2] = ACTIONS(1689), - [anon_sym_PLUS_PLUS2] = ACTIONS(1615), - [anon_sym_SLASH2] = ACTIONS(1615), - [anon_sym_mod2] = ACTIONS(1689), - [anon_sym_SLASH_SLASH2] = ACTIONS(1689), - [anon_sym_PLUS2] = ACTIONS(1615), - [anon_sym_bit_DASHshl2] = ACTIONS(1689), - [anon_sym_bit_DASHshr2] = ACTIONS(1689), - [anon_sym_bit_DASHand2] = ACTIONS(1689), - [anon_sym_bit_DASHxor2] = ACTIONS(1689), - [anon_sym_bit_DASHor2] = ACTIONS(1689), - [anon_sym_DOT_DOT2] = ACTIONS(1619), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), - [anon_sym_COLON2] = ACTIONS(1691), - [anon_sym_err_GT] = ACTIONS(1615), - [anon_sym_out_GT] = ACTIONS(1615), - [anon_sym_e_GT] = ACTIONS(1615), - [anon_sym_o_GT] = ACTIONS(1615), - [anon_sym_err_PLUSout_GT] = ACTIONS(1615), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), - [anon_sym_o_PLUSe_GT] = ACTIONS(1615), - [anon_sym_e_PLUSo_GT] = ACTIONS(1615), - [anon_sym_err_GT_GT] = ACTIONS(1689), - [anon_sym_out_GT_GT] = ACTIONS(1689), - [anon_sym_e_GT_GT] = ACTIONS(1689), - [anon_sym_o_GT_GT] = ACTIONS(1689), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(419)] = { - [sym_comment] = STATE(419), - [anon_sym_in] = ACTIONS(1460), - [sym__newline] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_err_GT_PIPE] = ACTIONS(1460), - [anon_sym_out_GT_PIPE] = ACTIONS(1460), - [anon_sym_e_GT_PIPE] = ACTIONS(1460), - [anon_sym_o_GT_PIPE] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1460), - [anon_sym_RPAREN] = ACTIONS(1460), - [anon_sym_GT2] = ACTIONS(1458), - [anon_sym_DASH2] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_RBRACE] = ACTIONS(1460), - [anon_sym_EQ_GT] = ACTIONS(1460), - [anon_sym_STAR2] = ACTIONS(1458), - [anon_sym_and2] = ACTIONS(1460), - [anon_sym_xor2] = ACTIONS(1460), - [anon_sym_or2] = ACTIONS(1460), - [anon_sym_not_DASHin2] = ACTIONS(1460), - [anon_sym_has2] = ACTIONS(1460), - [anon_sym_not_DASHhas2] = ACTIONS(1460), - [anon_sym_starts_DASHwith2] = ACTIONS(1460), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1460), - [anon_sym_ends_DASHwith2] = ACTIONS(1460), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1460), - [anon_sym_EQ_EQ2] = ACTIONS(1460), - [anon_sym_BANG_EQ2] = ACTIONS(1460), - [anon_sym_LT2] = ACTIONS(1458), - [anon_sym_LT_EQ2] = ACTIONS(1460), - [anon_sym_GT_EQ2] = ACTIONS(1460), - [anon_sym_EQ_TILDE2] = ACTIONS(1460), - [anon_sym_BANG_TILDE2] = ACTIONS(1460), - [anon_sym_like2] = ACTIONS(1460), - [anon_sym_not_DASHlike2] = ACTIONS(1460), - [anon_sym_STAR_STAR2] = ACTIONS(1460), - [anon_sym_PLUS_PLUS2] = ACTIONS(1460), - [anon_sym_SLASH2] = ACTIONS(1458), - [anon_sym_mod2] = ACTIONS(1460), - [anon_sym_SLASH_SLASH2] = ACTIONS(1460), - [anon_sym_PLUS2] = ACTIONS(1458), - [anon_sym_bit_DASHshl2] = ACTIONS(1460), - [anon_sym_bit_DASHshr2] = ACTIONS(1460), - [anon_sym_bit_DASHand2] = ACTIONS(1460), - [anon_sym_bit_DASHxor2] = ACTIONS(1460), - [anon_sym_bit_DASHor2] = ACTIONS(1460), - [anon_sym_DOT_DOT2] = ACTIONS(1458), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1460), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1460), - [anon_sym_COLON2] = ACTIONS(1460), - [anon_sym_QMARK2] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_DOT2] = ACTIONS(1458), - [anon_sym_err_GT] = ACTIONS(1458), - [anon_sym_out_GT] = ACTIONS(1458), - [anon_sym_e_GT] = ACTIONS(1458), - [anon_sym_o_GT] = ACTIONS(1458), - [anon_sym_err_PLUSout_GT] = ACTIONS(1458), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1458), - [anon_sym_o_PLUSe_GT] = ACTIONS(1458), - [anon_sym_e_PLUSo_GT] = ACTIONS(1458), - [anon_sym_err_GT_GT] = ACTIONS(1460), - [anon_sym_out_GT_GT] = ACTIONS(1460), - [anon_sym_e_GT_GT] = ACTIONS(1460), - [anon_sym_o_GT_GT] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1460), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(420)] = { - [sym_comment] = STATE(420), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_in] = ACTIONS(1448), - [sym__newline] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_err_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_GT_PIPE] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), - [anon_sym_RPAREN] = ACTIONS(1448), - [anon_sym_GT2] = ACTIONS(1446), - [anon_sym_DASH2] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_EQ_GT] = ACTIONS(1448), - [anon_sym_STAR2] = ACTIONS(1446), - [anon_sym_and2] = ACTIONS(1448), - [anon_sym_xor2] = ACTIONS(1448), - [anon_sym_or2] = ACTIONS(1448), - [anon_sym_not_DASHin2] = ACTIONS(1448), - [anon_sym_has2] = ACTIONS(1448), - [anon_sym_not_DASHhas2] = ACTIONS(1448), - [anon_sym_starts_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1448), - [anon_sym_ends_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), - [anon_sym_EQ_EQ2] = ACTIONS(1448), - [anon_sym_BANG_EQ2] = ACTIONS(1448), - [anon_sym_LT2] = ACTIONS(1446), - [anon_sym_LT_EQ2] = ACTIONS(1448), - [anon_sym_GT_EQ2] = ACTIONS(1448), - [anon_sym_EQ_TILDE2] = ACTIONS(1448), - [anon_sym_BANG_TILDE2] = ACTIONS(1448), - [anon_sym_like2] = ACTIONS(1448), - [anon_sym_not_DASHlike2] = ACTIONS(1448), - [anon_sym_STAR_STAR2] = ACTIONS(1448), - [anon_sym_PLUS_PLUS2] = ACTIONS(1448), - [anon_sym_SLASH2] = ACTIONS(1446), - [anon_sym_mod2] = ACTIONS(1448), - [anon_sym_SLASH_SLASH2] = ACTIONS(1448), - [anon_sym_PLUS2] = ACTIONS(1446), - [anon_sym_bit_DASHshl2] = ACTIONS(1448), - [anon_sym_bit_DASHshr2] = ACTIONS(1448), - [anon_sym_bit_DASHand2] = ACTIONS(1448), - [anon_sym_bit_DASHxor2] = ACTIONS(1448), - [anon_sym_bit_DASHor2] = ACTIONS(1448), - [anon_sym_DOT_DOT2] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), - [anon_sym_COLON2] = ACTIONS(1448), - [anon_sym_QMARK2] = ACTIONS(1693), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1446), - [anon_sym_out_GT] = ACTIONS(1446), - [anon_sym_e_GT] = ACTIONS(1446), - [anon_sym_o_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT] = ACTIONS(1446), - [anon_sym_err_GT_GT] = ACTIONS(1448), - [anon_sym_out_GT_GT] = ACTIONS(1448), - [anon_sym_e_GT_GT] = ACTIONS(1448), - [anon_sym_o_GT_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(421)] = { - [sym__expr_parenthesized_immediate] = STATE(1263), - [sym__immediate_decimal] = STATE(1015), - [sym_val_variable] = STATE(1263), - [sym_comment] = STATE(421), - [ts_builtin_sym_end] = ACTIONS(1582), - [anon_sym_in] = ACTIONS(1582), - [sym__newline] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_err_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_GT_PIPE] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1671), - [anon_sym_GT2] = ACTIONS(1586), - [anon_sym_DASH2] = ACTIONS(1586), - [anon_sym_STAR2] = ACTIONS(1586), - [anon_sym_and2] = ACTIONS(1582), - [anon_sym_xor2] = ACTIONS(1582), - [anon_sym_or2] = ACTIONS(1582), - [anon_sym_not_DASHin2] = ACTIONS(1582), - [anon_sym_has2] = ACTIONS(1582), - [anon_sym_not_DASHhas2] = ACTIONS(1582), - [anon_sym_starts_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1582), - [anon_sym_ends_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1582), - [anon_sym_EQ_EQ2] = ACTIONS(1582), - [anon_sym_BANG_EQ2] = ACTIONS(1582), - [anon_sym_LT2] = ACTIONS(1586), - [anon_sym_LT_EQ2] = ACTIONS(1582), - [anon_sym_GT_EQ2] = ACTIONS(1582), - [anon_sym_EQ_TILDE2] = ACTIONS(1582), - [anon_sym_BANG_TILDE2] = ACTIONS(1582), - [anon_sym_like2] = ACTIONS(1582), - [anon_sym_not_DASHlike2] = ACTIONS(1582), - [anon_sym_LPAREN2] = ACTIONS(1673), - [anon_sym_STAR_STAR2] = ACTIONS(1582), - [anon_sym_PLUS_PLUS2] = ACTIONS(1582), - [anon_sym_SLASH2] = ACTIONS(1586), - [anon_sym_mod2] = ACTIONS(1582), - [anon_sym_SLASH_SLASH2] = ACTIONS(1582), - [anon_sym_PLUS2] = ACTIONS(1586), - [anon_sym_bit_DASHshl2] = ACTIONS(1582), - [anon_sym_bit_DASHshr2] = ACTIONS(1582), - [anon_sym_bit_DASHand2] = ACTIONS(1582), - [anon_sym_bit_DASHxor2] = ACTIONS(1582), - [anon_sym_bit_DASHor2] = ACTIONS(1582), - [aux_sym__immediate_decimal_token1] = ACTIONS(1695), - [aux_sym__immediate_decimal_token2] = ACTIONS(1695), - [aux_sym__immediate_decimal_token3] = ACTIONS(1697), - [aux_sym__immediate_decimal_token4] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1586), - [anon_sym_out_GT] = ACTIONS(1586), - [anon_sym_e_GT] = ACTIONS(1586), - [anon_sym_o_GT] = ACTIONS(1586), - [anon_sym_err_PLUSout_GT] = ACTIONS(1586), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1586), - [anon_sym_o_PLUSe_GT] = ACTIONS(1586), - [anon_sym_e_PLUSo_GT] = ACTIONS(1586), - [anon_sym_err_GT_GT] = ACTIONS(1582), - [anon_sym_out_GT_GT] = ACTIONS(1582), - [anon_sym_e_GT_GT] = ACTIONS(1582), - [anon_sym_o_GT_GT] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), - [sym__unquoted_pattern] = ACTIONS(1598), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(422)] = { - [sym_comment] = STATE(422), + [STATE(414)] = { + [sym_comment] = STATE(414), [anon_sym_in] = ACTIONS(1507), [sym__newline] = ACTIONS(1507), [anon_sym_SEMI] = ACTIONS(1507), @@ -80668,236 +80095,236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1507), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(423)] = { - [sym_path] = STATE(435), - [sym_comment] = STATE(423), - [aux_sym__where_predicate_lhs_repeat1] = STATE(423), - [anon_sym_in] = ACTIONS(1496), - [sym__newline] = ACTIONS(1496), - [anon_sym_SEMI] = ACTIONS(1496), - [anon_sym_PIPE] = ACTIONS(1496), - [anon_sym_err_GT_PIPE] = ACTIONS(1496), - [anon_sym_out_GT_PIPE] = ACTIONS(1496), - [anon_sym_e_GT_PIPE] = ACTIONS(1496), - [anon_sym_o_GT_PIPE] = ACTIONS(1496), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1496), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1496), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1496), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1496), - [anon_sym_RPAREN] = ACTIONS(1496), - [anon_sym_GT2] = ACTIONS(1494), - [anon_sym_DASH2] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_RBRACE] = ACTIONS(1496), - [anon_sym_EQ_GT] = ACTIONS(1496), - [anon_sym_STAR2] = ACTIONS(1494), - [anon_sym_and2] = ACTIONS(1496), - [anon_sym_xor2] = ACTIONS(1496), - [anon_sym_or2] = ACTIONS(1496), - [anon_sym_not_DASHin2] = ACTIONS(1496), - [anon_sym_has2] = ACTIONS(1496), - [anon_sym_not_DASHhas2] = ACTIONS(1496), - [anon_sym_starts_DASHwith2] = ACTIONS(1496), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1496), - [anon_sym_ends_DASHwith2] = ACTIONS(1496), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1496), - [anon_sym_EQ_EQ2] = ACTIONS(1496), - [anon_sym_BANG_EQ2] = ACTIONS(1496), - [anon_sym_LT2] = ACTIONS(1494), - [anon_sym_LT_EQ2] = ACTIONS(1496), - [anon_sym_GT_EQ2] = ACTIONS(1496), - [anon_sym_EQ_TILDE2] = ACTIONS(1496), - [anon_sym_BANG_TILDE2] = ACTIONS(1496), - [anon_sym_like2] = ACTIONS(1496), - [anon_sym_not_DASHlike2] = ACTIONS(1496), - [anon_sym_STAR_STAR2] = ACTIONS(1496), - [anon_sym_PLUS_PLUS2] = ACTIONS(1496), - [anon_sym_SLASH2] = ACTIONS(1494), - [anon_sym_mod2] = ACTIONS(1496), - [anon_sym_SLASH_SLASH2] = ACTIONS(1496), - [anon_sym_PLUS2] = ACTIONS(1494), - [anon_sym_bit_DASHshl2] = ACTIONS(1496), - [anon_sym_bit_DASHshr2] = ACTIONS(1496), - [anon_sym_bit_DASHand2] = ACTIONS(1496), - [anon_sym_bit_DASHxor2] = ACTIONS(1496), - [anon_sym_bit_DASHor2] = ACTIONS(1496), - [anon_sym_DOT_DOT2] = ACTIONS(1494), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1496), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1496), - [anon_sym_COLON2] = ACTIONS(1496), - [anon_sym_DOT2] = ACTIONS(1699), - [anon_sym_err_GT] = ACTIONS(1494), - [anon_sym_out_GT] = ACTIONS(1494), - [anon_sym_e_GT] = ACTIONS(1494), - [anon_sym_o_GT] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT] = ACTIONS(1494), - [anon_sym_err_GT_GT] = ACTIONS(1496), - [anon_sym_out_GT_GT] = ACTIONS(1496), - [anon_sym_e_GT_GT] = ACTIONS(1496), - [anon_sym_o_GT_GT] = ACTIONS(1496), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1496), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1496), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1496), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1496), + [STATE(415)] = { + [sym__expr_parenthesized_immediate] = STATE(1291), + [sym__immediate_decimal] = STATE(993), + [sym_val_variable] = STATE(1291), + [sym_comment] = STATE(415), + [ts_builtin_sym_end] = ACTIONS(1584), + [anon_sym_in] = ACTIONS(1584), + [sym__newline] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1584), + [anon_sym_err_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_GT_PIPE] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1584), + [anon_sym_DOLLAR] = ACTIONS(1657), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1588), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1584), + [anon_sym_xor2] = ACTIONS(1584), + [anon_sym_or2] = ACTIONS(1584), + [anon_sym_not_DASHin2] = ACTIONS(1584), + [anon_sym_has2] = ACTIONS(1584), + [anon_sym_not_DASHhas2] = ACTIONS(1584), + [anon_sym_starts_DASHwith2] = ACTIONS(1584), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1584), + [anon_sym_ends_DASHwith2] = ACTIONS(1584), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1584), + [anon_sym_EQ_EQ2] = ACTIONS(1584), + [anon_sym_BANG_EQ2] = ACTIONS(1584), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1584), + [anon_sym_GT_EQ2] = ACTIONS(1584), + [anon_sym_EQ_TILDE2] = ACTIONS(1584), + [anon_sym_BANG_TILDE2] = ACTIONS(1584), + [anon_sym_like2] = ACTIONS(1584), + [anon_sym_not_DASHlike2] = ACTIONS(1584), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_STAR_STAR2] = ACTIONS(1584), + [anon_sym_PLUS_PLUS2] = ACTIONS(1584), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1584), + [anon_sym_SLASH_SLASH2] = ACTIONS(1584), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1584), + [anon_sym_bit_DASHshr2] = ACTIONS(1584), + [anon_sym_bit_DASHand2] = ACTIONS(1584), + [anon_sym_bit_DASHxor2] = ACTIONS(1584), + [anon_sym_bit_DASHor2] = ACTIONS(1584), + [aux_sym__immediate_decimal_token1] = ACTIONS(1683), + [aux_sym__immediate_decimal_token2] = ACTIONS(1683), + [aux_sym__immediate_decimal_token3] = ACTIONS(1685), + [aux_sym__immediate_decimal_token4] = ACTIONS(1685), + [anon_sym_err_GT] = ACTIONS(1588), + [anon_sym_out_GT] = ACTIONS(1588), + [anon_sym_e_GT] = ACTIONS(1588), + [anon_sym_o_GT] = ACTIONS(1588), + [anon_sym_err_PLUSout_GT] = ACTIONS(1588), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), + [anon_sym_o_PLUSe_GT] = ACTIONS(1588), + [anon_sym_e_PLUSo_GT] = ACTIONS(1588), + [anon_sym_err_GT_GT] = ACTIONS(1584), + [anon_sym_out_GT_GT] = ACTIONS(1584), + [anon_sym_e_GT_GT] = ACTIONS(1584), + [anon_sym_o_GT_GT] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1584), + [sym__unquoted_pattern] = ACTIONS(1598), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(424)] = { - [sym_cell_path] = STATE(493), - [sym_path] = STATE(435), - [sym_comment] = STATE(424), - [aux_sym__where_predicate_lhs_repeat1] = STATE(416), - [anon_sym_in] = ACTIONS(1434), - [sym__newline] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_err_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_GT_PIPE] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1434), - [anon_sym_RPAREN] = ACTIONS(1434), - [anon_sym_GT2] = ACTIONS(1432), - [anon_sym_DASH2] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_RBRACE] = ACTIONS(1434), - [anon_sym_EQ_GT] = ACTIONS(1434), - [anon_sym_STAR2] = ACTIONS(1432), - [anon_sym_and2] = ACTIONS(1434), - [anon_sym_xor2] = ACTIONS(1434), - [anon_sym_or2] = ACTIONS(1434), - [anon_sym_not_DASHin2] = ACTIONS(1434), - [anon_sym_has2] = ACTIONS(1434), - [anon_sym_not_DASHhas2] = ACTIONS(1434), - [anon_sym_starts_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1434), - [anon_sym_ends_DASHwith2] = ACTIONS(1434), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1434), - [anon_sym_EQ_EQ2] = ACTIONS(1434), - [anon_sym_BANG_EQ2] = ACTIONS(1434), - [anon_sym_LT2] = ACTIONS(1432), - [anon_sym_LT_EQ2] = ACTIONS(1434), - [anon_sym_GT_EQ2] = ACTIONS(1434), - [anon_sym_EQ_TILDE2] = ACTIONS(1434), - [anon_sym_BANG_TILDE2] = ACTIONS(1434), - [anon_sym_like2] = ACTIONS(1434), - [anon_sym_not_DASHlike2] = ACTIONS(1434), - [anon_sym_STAR_STAR2] = ACTIONS(1434), - [anon_sym_PLUS_PLUS2] = ACTIONS(1434), - [anon_sym_SLASH2] = ACTIONS(1432), - [anon_sym_mod2] = ACTIONS(1434), - [anon_sym_SLASH_SLASH2] = ACTIONS(1434), - [anon_sym_PLUS2] = ACTIONS(1432), - [anon_sym_bit_DASHshl2] = ACTIONS(1434), - [anon_sym_bit_DASHshr2] = ACTIONS(1434), - [anon_sym_bit_DASHand2] = ACTIONS(1434), - [anon_sym_bit_DASHxor2] = ACTIONS(1434), - [anon_sym_bit_DASHor2] = ACTIONS(1434), - [anon_sym_DOT_DOT2] = ACTIONS(1432), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1434), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), - [anon_sym_DOT2] = ACTIONS(1659), - [anon_sym_err_GT] = ACTIONS(1432), - [anon_sym_out_GT] = ACTIONS(1432), - [anon_sym_e_GT] = ACTIONS(1432), - [anon_sym_o_GT] = ACTIONS(1432), - [anon_sym_err_PLUSout_GT] = ACTIONS(1432), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1432), - [anon_sym_o_PLUSe_GT] = ACTIONS(1432), - [anon_sym_e_PLUSo_GT] = ACTIONS(1432), - [anon_sym_err_GT_GT] = ACTIONS(1434), - [anon_sym_out_GT_GT] = ACTIONS(1434), - [anon_sym_e_GT_GT] = ACTIONS(1434), - [anon_sym_o_GT_GT] = ACTIONS(1434), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1434), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1434), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1434), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1434), + [STATE(416)] = { + [sym_cell_path] = STATE(499), + [sym_path] = STATE(446), + [sym_comment] = STATE(416), + [aux_sym__where_predicate_lhs_repeat1] = STATE(421), + [anon_sym_in] = ACTIONS(1446), + [sym__newline] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym_PIPE] = ACTIONS(1446), + [anon_sym_err_GT_PIPE] = ACTIONS(1446), + [anon_sym_out_GT_PIPE] = ACTIONS(1446), + [anon_sym_e_GT_PIPE] = ACTIONS(1446), + [anon_sym_o_GT_PIPE] = ACTIONS(1446), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1446), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1446), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1446), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1446), + [anon_sym_RPAREN] = ACTIONS(1446), + [anon_sym_GT2] = ACTIONS(1444), + [anon_sym_DASH2] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_EQ_GT] = ACTIONS(1446), + [anon_sym_STAR2] = ACTIONS(1444), + [anon_sym_and2] = ACTIONS(1446), + [anon_sym_xor2] = ACTIONS(1446), + [anon_sym_or2] = ACTIONS(1446), + [anon_sym_not_DASHin2] = ACTIONS(1446), + [anon_sym_has2] = ACTIONS(1446), + [anon_sym_not_DASHhas2] = ACTIONS(1446), + [anon_sym_starts_DASHwith2] = ACTIONS(1446), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1446), + [anon_sym_ends_DASHwith2] = ACTIONS(1446), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1446), + [anon_sym_EQ_EQ2] = ACTIONS(1446), + [anon_sym_BANG_EQ2] = ACTIONS(1446), + [anon_sym_LT2] = ACTIONS(1444), + [anon_sym_LT_EQ2] = ACTIONS(1446), + [anon_sym_GT_EQ2] = ACTIONS(1446), + [anon_sym_EQ_TILDE2] = ACTIONS(1446), + [anon_sym_BANG_TILDE2] = ACTIONS(1446), + [anon_sym_like2] = ACTIONS(1446), + [anon_sym_not_DASHlike2] = ACTIONS(1446), + [anon_sym_STAR_STAR2] = ACTIONS(1446), + [anon_sym_PLUS_PLUS2] = ACTIONS(1446), + [anon_sym_SLASH2] = ACTIONS(1444), + [anon_sym_mod2] = ACTIONS(1446), + [anon_sym_SLASH_SLASH2] = ACTIONS(1446), + [anon_sym_PLUS2] = ACTIONS(1444), + [anon_sym_bit_DASHshl2] = ACTIONS(1446), + [anon_sym_bit_DASHshr2] = ACTIONS(1446), + [anon_sym_bit_DASHand2] = ACTIONS(1446), + [anon_sym_bit_DASHxor2] = ACTIONS(1446), + [anon_sym_bit_DASHor2] = ACTIONS(1446), + [anon_sym_DOT_DOT2] = ACTIONS(1444), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1446), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1446), + [anon_sym_DOT2] = ACTIONS(1651), + [anon_sym_err_GT] = ACTIONS(1444), + [anon_sym_out_GT] = ACTIONS(1444), + [anon_sym_e_GT] = ACTIONS(1444), + [anon_sym_o_GT] = ACTIONS(1444), + [anon_sym_err_PLUSout_GT] = ACTIONS(1444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1444), + [anon_sym_o_PLUSe_GT] = ACTIONS(1444), + [anon_sym_e_PLUSo_GT] = ACTIONS(1444), + [anon_sym_err_GT_GT] = ACTIONS(1446), + [anon_sym_out_GT_GT] = ACTIONS(1446), + [anon_sym_e_GT_GT] = ACTIONS(1446), + [anon_sym_o_GT_GT] = ACTIONS(1446), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1446), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1446), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1446), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1446), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(425)] = { - [sym_comment] = STATE(425), - [anon_sym_in] = ACTIONS(1515), - [sym__newline] = ACTIONS(1515), - [anon_sym_SEMI] = ACTIONS(1515), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_err_GT_PIPE] = ACTIONS(1515), - [anon_sym_out_GT_PIPE] = ACTIONS(1515), - [anon_sym_e_GT_PIPE] = ACTIONS(1515), - [anon_sym_o_GT_PIPE] = ACTIONS(1515), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1515), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1515), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1515), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1515), - [anon_sym_RPAREN] = ACTIONS(1515), - [anon_sym_GT2] = ACTIONS(1513), - [anon_sym_DASH2] = ACTIONS(1515), - [anon_sym_LBRACE] = ACTIONS(1515), - [anon_sym_RBRACE] = ACTIONS(1515), - [anon_sym_EQ_GT] = ACTIONS(1515), - [anon_sym_STAR2] = ACTIONS(1513), - [anon_sym_and2] = ACTIONS(1515), - [anon_sym_xor2] = ACTIONS(1515), - [anon_sym_or2] = ACTIONS(1515), - [anon_sym_not_DASHin2] = ACTIONS(1515), - [anon_sym_has2] = ACTIONS(1515), - [anon_sym_not_DASHhas2] = ACTIONS(1515), - [anon_sym_starts_DASHwith2] = ACTIONS(1515), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1515), - [anon_sym_ends_DASHwith2] = ACTIONS(1515), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1515), - [anon_sym_EQ_EQ2] = ACTIONS(1515), - [anon_sym_BANG_EQ2] = ACTIONS(1515), - [anon_sym_LT2] = ACTIONS(1513), - [anon_sym_LT_EQ2] = ACTIONS(1515), - [anon_sym_GT_EQ2] = ACTIONS(1515), - [anon_sym_EQ_TILDE2] = ACTIONS(1515), - [anon_sym_BANG_TILDE2] = ACTIONS(1515), - [anon_sym_like2] = ACTIONS(1515), - [anon_sym_not_DASHlike2] = ACTIONS(1515), - [anon_sym_STAR_STAR2] = ACTIONS(1515), - [anon_sym_PLUS_PLUS2] = ACTIONS(1515), - [anon_sym_SLASH2] = ACTIONS(1513), - [anon_sym_mod2] = ACTIONS(1515), - [anon_sym_SLASH_SLASH2] = ACTIONS(1515), - [anon_sym_PLUS2] = ACTIONS(1513), - [anon_sym_bit_DASHshl2] = ACTIONS(1515), - [anon_sym_bit_DASHshr2] = ACTIONS(1515), - [anon_sym_bit_DASHand2] = ACTIONS(1515), - [anon_sym_bit_DASHxor2] = ACTIONS(1515), - [anon_sym_bit_DASHor2] = ACTIONS(1515), - [anon_sym_DOT_DOT2] = ACTIONS(1513), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1515), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1515), - [anon_sym_COLON2] = ACTIONS(1515), - [anon_sym_QMARK2] = ACTIONS(1515), - [anon_sym_BANG] = ACTIONS(1513), - [anon_sym_DOT2] = ACTIONS(1513), - [anon_sym_err_GT] = ACTIONS(1513), - [anon_sym_out_GT] = ACTIONS(1513), - [anon_sym_e_GT] = ACTIONS(1513), - [anon_sym_o_GT] = ACTIONS(1513), - [anon_sym_err_PLUSout_GT] = ACTIONS(1513), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1513), - [anon_sym_o_PLUSe_GT] = ACTIONS(1513), - [anon_sym_e_PLUSo_GT] = ACTIONS(1513), - [anon_sym_err_GT_GT] = ACTIONS(1515), - [anon_sym_out_GT_GT] = ACTIONS(1515), - [anon_sym_e_GT_GT] = ACTIONS(1515), - [anon_sym_o_GT_GT] = ACTIONS(1515), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1515), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1515), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1515), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1515), + [STATE(417)] = { + [sym__expr_parenthesized_immediate] = STATE(911), + [sym__immediate_decimal] = STATE(912), + [sym_val_variable] = STATE(911), + [sym_comment] = STATE(417), + [ts_builtin_sym_end] = ACTIONS(1584), + [anon_sym_in] = ACTIONS(1584), + [sym__newline] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1584), + [anon_sym_err_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_GT_PIPE] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1584), + [anon_sym_DOLLAR] = ACTIONS(1657), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1588), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1584), + [anon_sym_xor2] = ACTIONS(1584), + [anon_sym_or2] = ACTIONS(1584), + [anon_sym_not_DASHin2] = ACTIONS(1584), + [anon_sym_has2] = ACTIONS(1584), + [anon_sym_not_DASHhas2] = ACTIONS(1584), + [anon_sym_starts_DASHwith2] = ACTIONS(1584), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1584), + [anon_sym_ends_DASHwith2] = ACTIONS(1584), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1584), + [anon_sym_EQ_EQ2] = ACTIONS(1584), + [anon_sym_BANG_EQ2] = ACTIONS(1584), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1584), + [anon_sym_GT_EQ2] = ACTIONS(1584), + [anon_sym_EQ_TILDE2] = ACTIONS(1584), + [anon_sym_BANG_TILDE2] = ACTIONS(1584), + [anon_sym_like2] = ACTIONS(1584), + [anon_sym_not_DASHlike2] = ACTIONS(1584), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_STAR_STAR2] = ACTIONS(1584), + [anon_sym_PLUS_PLUS2] = ACTIONS(1584), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1584), + [anon_sym_SLASH_SLASH2] = ACTIONS(1584), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1584), + [anon_sym_bit_DASHshr2] = ACTIONS(1584), + [anon_sym_bit_DASHand2] = ACTIONS(1584), + [anon_sym_bit_DASHxor2] = ACTIONS(1584), + [anon_sym_bit_DASHor2] = ACTIONS(1584), + [anon_sym_DOT] = ACTIONS(1687), + [aux_sym__immediate_decimal_token1] = ACTIONS(1663), + [aux_sym__immediate_decimal_token2] = ACTIONS(1663), + [aux_sym__immediate_decimal_token3] = ACTIONS(1665), + [aux_sym__immediate_decimal_token4] = ACTIONS(1665), + [anon_sym_err_GT] = ACTIONS(1588), + [anon_sym_out_GT] = ACTIONS(1588), + [anon_sym_e_GT] = ACTIONS(1588), + [anon_sym_o_GT] = ACTIONS(1588), + [anon_sym_err_PLUSout_GT] = ACTIONS(1588), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), + [anon_sym_o_PLUSe_GT] = ACTIONS(1588), + [anon_sym_e_PLUSo_GT] = ACTIONS(1588), + [anon_sym_err_GT_GT] = ACTIONS(1584), + [anon_sym_out_GT_GT] = ACTIONS(1584), + [anon_sym_e_GT_GT] = ACTIONS(1584), + [anon_sym_o_GT_GT] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1584), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(426)] = { - [sym_comment] = STATE(426), + [STATE(418)] = { + [sym_comment] = STATE(418), [anon_sym_in] = ACTIONS(1519), [sym__newline] = ACTIONS(1519), [anon_sym_SEMI] = ACTIONS(1519), @@ -80972,91 +80399,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(427)] = { - [sym_comment] = STATE(427), - [anon_sym_in] = ACTIONS(749), - [sym__newline] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(749), - [anon_sym_err_GT_PIPE] = ACTIONS(749), - [anon_sym_out_GT_PIPE] = ACTIONS(749), - [anon_sym_e_GT_PIPE] = ACTIONS(749), - [anon_sym_o_GT_PIPE] = ACTIONS(749), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(749), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(749), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(749), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(749), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(749), - [anon_sym_RBRACE] = ACTIONS(749), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(749), - [anon_sym_xor2] = ACTIONS(749), - [anon_sym_or2] = ACTIONS(749), - [anon_sym_not_DASHin2] = ACTIONS(749), - [anon_sym_has2] = ACTIONS(749), - [anon_sym_not_DASHhas2] = ACTIONS(749), - [anon_sym_starts_DASHwith2] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(749), - [anon_sym_ends_DASHwith2] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(749), - [anon_sym_EQ_EQ2] = ACTIONS(749), - [anon_sym_BANG_EQ2] = ACTIONS(749), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(749), - [anon_sym_GT_EQ2] = ACTIONS(749), - [anon_sym_EQ_TILDE2] = ACTIONS(749), - [anon_sym_BANG_TILDE2] = ACTIONS(749), - [anon_sym_like2] = ACTIONS(749), - [anon_sym_not_DASHlike2] = ACTIONS(749), - [anon_sym_LPAREN2] = ACTIONS(749), - [anon_sym_STAR_STAR2] = ACTIONS(749), - [anon_sym_PLUS_PLUS2] = ACTIONS(749), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(749), - [anon_sym_SLASH_SLASH2] = ACTIONS(749), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(749), - [anon_sym_bit_DASHshr2] = ACTIONS(749), - [anon_sym_bit_DASHand2] = ACTIONS(749), - [anon_sym_bit_DASHxor2] = ACTIONS(749), - [anon_sym_bit_DASHor2] = ACTIONS(749), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1702), - [aux_sym__immediate_decimal_token5] = ACTIONS(1704), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(749), - [anon_sym_out_GT_GT] = ACTIONS(749), - [anon_sym_e_GT_GT] = ACTIONS(749), - [anon_sym_o_GT_GT] = ACTIONS(749), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(749), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(749), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(749), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(749), - [sym__unquoted_pattern] = ACTIONS(747), + [STATE(419)] = { + [sym_comment] = STATE(419), + [anon_sym_in] = ACTIONS(1523), + [sym__newline] = ACTIONS(1523), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_PIPE] = ACTIONS(1523), + [anon_sym_err_GT_PIPE] = ACTIONS(1523), + [anon_sym_out_GT_PIPE] = ACTIONS(1523), + [anon_sym_e_GT_PIPE] = ACTIONS(1523), + [anon_sym_o_GT_PIPE] = ACTIONS(1523), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1523), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1523), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1523), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1523), + [anon_sym_RPAREN] = ACTIONS(1523), + [anon_sym_GT2] = ACTIONS(1521), + [anon_sym_DASH2] = ACTIONS(1523), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_RBRACE] = ACTIONS(1523), + [anon_sym_EQ_GT] = ACTIONS(1523), + [anon_sym_STAR2] = ACTIONS(1521), + [anon_sym_and2] = ACTIONS(1523), + [anon_sym_xor2] = ACTIONS(1523), + [anon_sym_or2] = ACTIONS(1523), + [anon_sym_not_DASHin2] = ACTIONS(1523), + [anon_sym_has2] = ACTIONS(1523), + [anon_sym_not_DASHhas2] = ACTIONS(1523), + [anon_sym_starts_DASHwith2] = ACTIONS(1523), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1523), + [anon_sym_ends_DASHwith2] = ACTIONS(1523), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1523), + [anon_sym_EQ_EQ2] = ACTIONS(1523), + [anon_sym_BANG_EQ2] = ACTIONS(1523), + [anon_sym_LT2] = ACTIONS(1521), + [anon_sym_LT_EQ2] = ACTIONS(1523), + [anon_sym_GT_EQ2] = ACTIONS(1523), + [anon_sym_EQ_TILDE2] = ACTIONS(1523), + [anon_sym_BANG_TILDE2] = ACTIONS(1523), + [anon_sym_like2] = ACTIONS(1523), + [anon_sym_not_DASHlike2] = ACTIONS(1523), + [anon_sym_STAR_STAR2] = ACTIONS(1523), + [anon_sym_PLUS_PLUS2] = ACTIONS(1523), + [anon_sym_SLASH2] = ACTIONS(1521), + [anon_sym_mod2] = ACTIONS(1523), + [anon_sym_SLASH_SLASH2] = ACTIONS(1523), + [anon_sym_PLUS2] = ACTIONS(1521), + [anon_sym_bit_DASHshl2] = ACTIONS(1523), + [anon_sym_bit_DASHshr2] = ACTIONS(1523), + [anon_sym_bit_DASHand2] = ACTIONS(1523), + [anon_sym_bit_DASHxor2] = ACTIONS(1523), + [anon_sym_bit_DASHor2] = ACTIONS(1523), + [anon_sym_DOT_DOT2] = ACTIONS(1521), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1523), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1523), + [anon_sym_COLON2] = ACTIONS(1523), + [anon_sym_QMARK2] = ACTIONS(1523), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_DOT2] = ACTIONS(1521), + [anon_sym_err_GT] = ACTIONS(1521), + [anon_sym_out_GT] = ACTIONS(1521), + [anon_sym_e_GT] = ACTIONS(1521), + [anon_sym_o_GT] = ACTIONS(1521), + [anon_sym_err_PLUSout_GT] = ACTIONS(1521), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1521), + [anon_sym_o_PLUSe_GT] = ACTIONS(1521), + [anon_sym_e_PLUSo_GT] = ACTIONS(1521), + [anon_sym_err_GT_GT] = ACTIONS(1523), + [anon_sym_out_GT_GT] = ACTIONS(1523), + [anon_sym_e_GT_GT] = ACTIONS(1523), + [anon_sym_o_GT_GT] = ACTIONS(1523), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1523), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1523), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1523), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1523), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(428)] = { - [sym_comment] = STATE(428), - [ts_builtin_sym_end] = ACTIONS(1527), - [anon_sym_EQ] = ACTIONS(1525), - [anon_sym_PLUS_EQ] = ACTIONS(1527), - [anon_sym_DASH_EQ] = ACTIONS(1527), - [anon_sym_STAR_EQ] = ACTIONS(1527), - [anon_sym_SLASH_EQ] = ACTIONS(1527), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1527), + [STATE(420)] = { + [sym_comment] = STATE(420), [anon_sym_in] = ACTIONS(1527), [sym__newline] = ACTIONS(1527), [anon_sym_SEMI] = ACTIONS(1527), @@ -81069,8 +80489,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1527), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1527), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1527), + [anon_sym_RPAREN] = ACTIONS(1527), [anon_sym_GT2] = ACTIONS(1525), - [anon_sym_DASH2] = ACTIONS(1525), + [anon_sym_DASH2] = ACTIONS(1527), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1527), + [anon_sym_EQ_GT] = ACTIONS(1527), [anon_sym_STAR2] = ACTIONS(1525), [anon_sym_and2] = ACTIONS(1527), [anon_sym_xor2] = ACTIONS(1527), @@ -81092,7 +80516,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_like2] = ACTIONS(1527), [anon_sym_not_DASHlike2] = ACTIONS(1527), [anon_sym_STAR_STAR2] = ACTIONS(1527), - [anon_sym_PLUS_PLUS2] = ACTIONS(1525), + [anon_sym_PLUS_PLUS2] = ACTIONS(1527), [anon_sym_SLASH2] = ACTIONS(1525), [anon_sym_mod2] = ACTIONS(1527), [anon_sym_SLASH_SLASH2] = ACTIONS(1527), @@ -81105,6 +80529,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1525), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1527), [anon_sym_DOT_DOT_LT2] = ACTIONS(1527), + [anon_sym_COLON2] = ACTIONS(1527), + [anon_sym_QMARK2] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1525), [anon_sym_DOT2] = ACTIONS(1525), [anon_sym_err_GT] = ACTIONS(1525), [anon_sym_out_GT] = ACTIONS(1525), @@ -81124,84 +80551,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1527), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(429)] = { - [sym_comment] = STATE(429), - [ts_builtin_sym_end] = ACTIONS(1554), - [anon_sym_EQ] = ACTIONS(1552), - [anon_sym_PLUS_EQ] = ACTIONS(1554), - [anon_sym_DASH_EQ] = ACTIONS(1554), - [anon_sym_STAR_EQ] = ACTIONS(1554), - [anon_sym_SLASH_EQ] = ACTIONS(1554), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1554), - [anon_sym_in] = ACTIONS(1554), - [sym__newline] = ACTIONS(1554), - [anon_sym_SEMI] = ACTIONS(1554), - [anon_sym_PIPE] = ACTIONS(1554), - [anon_sym_err_GT_PIPE] = ACTIONS(1554), - [anon_sym_out_GT_PIPE] = ACTIONS(1554), - [anon_sym_e_GT_PIPE] = ACTIONS(1554), - [anon_sym_o_GT_PIPE] = ACTIONS(1554), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1554), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1554), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1554), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1554), - [anon_sym_GT2] = ACTIONS(1552), - [anon_sym_DASH2] = ACTIONS(1552), - [anon_sym_STAR2] = ACTIONS(1552), - [anon_sym_and2] = ACTIONS(1554), - [anon_sym_xor2] = ACTIONS(1554), - [anon_sym_or2] = ACTIONS(1554), - [anon_sym_not_DASHin2] = ACTIONS(1554), - [anon_sym_has2] = ACTIONS(1554), - [anon_sym_not_DASHhas2] = ACTIONS(1554), - [anon_sym_starts_DASHwith2] = ACTIONS(1554), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1554), - [anon_sym_ends_DASHwith2] = ACTIONS(1554), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1554), - [anon_sym_EQ_EQ2] = ACTIONS(1554), - [anon_sym_BANG_EQ2] = ACTIONS(1554), - [anon_sym_LT2] = ACTIONS(1552), - [anon_sym_LT_EQ2] = ACTIONS(1554), - [anon_sym_GT_EQ2] = ACTIONS(1554), - [anon_sym_EQ_TILDE2] = ACTIONS(1554), - [anon_sym_BANG_TILDE2] = ACTIONS(1554), - [anon_sym_like2] = ACTIONS(1554), - [anon_sym_not_DASHlike2] = ACTIONS(1554), - [anon_sym_STAR_STAR2] = ACTIONS(1554), - [anon_sym_PLUS_PLUS2] = ACTIONS(1552), - [anon_sym_SLASH2] = ACTIONS(1552), - [anon_sym_mod2] = ACTIONS(1554), - [anon_sym_SLASH_SLASH2] = ACTIONS(1554), - [anon_sym_PLUS2] = ACTIONS(1552), - [anon_sym_bit_DASHshl2] = ACTIONS(1554), - [anon_sym_bit_DASHshr2] = ACTIONS(1554), - [anon_sym_bit_DASHand2] = ACTIONS(1554), - [anon_sym_bit_DASHxor2] = ACTIONS(1554), - [anon_sym_bit_DASHor2] = ACTIONS(1554), - [anon_sym_DOT_DOT2] = ACTIONS(1552), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1554), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1554), - [anon_sym_DOT2] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1552), - [anon_sym_out_GT] = ACTIONS(1552), - [anon_sym_e_GT] = ACTIONS(1552), - [anon_sym_o_GT] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT] = ACTIONS(1552), - [anon_sym_err_GT_GT] = ACTIONS(1554), - [anon_sym_out_GT_GT] = ACTIONS(1554), - [anon_sym_e_GT_GT] = ACTIONS(1554), - [anon_sym_o_GT_GT] = ACTIONS(1554), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1554), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1554), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1554), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1554), + [STATE(421)] = { + [sym_path] = STATE(446), + [sym_comment] = STATE(421), + [aux_sym__where_predicate_lhs_repeat1] = STATE(431), + [anon_sym_in] = ACTIONS(1494), + [sym__newline] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_err_GT_PIPE] = ACTIONS(1494), + [anon_sym_out_GT_PIPE] = ACTIONS(1494), + [anon_sym_e_GT_PIPE] = ACTIONS(1494), + [anon_sym_o_GT_PIPE] = ACTIONS(1494), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1494), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1494), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1494), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1494), + [anon_sym_RPAREN] = ACTIONS(1494), + [anon_sym_GT2] = ACTIONS(1492), + [anon_sym_DASH2] = ACTIONS(1494), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_RBRACE] = ACTIONS(1494), + [anon_sym_EQ_GT] = ACTIONS(1494), + [anon_sym_STAR2] = ACTIONS(1492), + [anon_sym_and2] = ACTIONS(1494), + [anon_sym_xor2] = ACTIONS(1494), + [anon_sym_or2] = ACTIONS(1494), + [anon_sym_not_DASHin2] = ACTIONS(1494), + [anon_sym_has2] = ACTIONS(1494), + [anon_sym_not_DASHhas2] = ACTIONS(1494), + [anon_sym_starts_DASHwith2] = ACTIONS(1494), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1494), + [anon_sym_ends_DASHwith2] = ACTIONS(1494), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1494), + [anon_sym_EQ_EQ2] = ACTIONS(1494), + [anon_sym_BANG_EQ2] = ACTIONS(1494), + [anon_sym_LT2] = ACTIONS(1492), + [anon_sym_LT_EQ2] = ACTIONS(1494), + [anon_sym_GT_EQ2] = ACTIONS(1494), + [anon_sym_EQ_TILDE2] = ACTIONS(1494), + [anon_sym_BANG_TILDE2] = ACTIONS(1494), + [anon_sym_like2] = ACTIONS(1494), + [anon_sym_not_DASHlike2] = ACTIONS(1494), + [anon_sym_STAR_STAR2] = ACTIONS(1494), + [anon_sym_PLUS_PLUS2] = ACTIONS(1494), + [anon_sym_SLASH2] = ACTIONS(1492), + [anon_sym_mod2] = ACTIONS(1494), + [anon_sym_SLASH_SLASH2] = ACTIONS(1494), + [anon_sym_PLUS2] = ACTIONS(1492), + [anon_sym_bit_DASHshl2] = ACTIONS(1494), + [anon_sym_bit_DASHshr2] = ACTIONS(1494), + [anon_sym_bit_DASHand2] = ACTIONS(1494), + [anon_sym_bit_DASHxor2] = ACTIONS(1494), + [anon_sym_bit_DASHor2] = ACTIONS(1494), + [anon_sym_DOT_DOT2] = ACTIONS(1492), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), + [anon_sym_COLON2] = ACTIONS(1494), + [anon_sym_DOT2] = ACTIONS(1651), + [anon_sym_err_GT] = ACTIONS(1492), + [anon_sym_out_GT] = ACTIONS(1492), + [anon_sym_e_GT] = ACTIONS(1492), + [anon_sym_o_GT] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT] = ACTIONS(1492), + [anon_sym_err_GT_GT] = ACTIONS(1494), + [anon_sym_out_GT_GT] = ACTIONS(1494), + [anon_sym_e_GT_GT] = ACTIONS(1494), + [anon_sym_o_GT_GT] = ACTIONS(1494), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1494), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1494), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1494), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1494), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(430)] = { - [sym_comment] = STATE(430), + [STATE(422)] = { + [sym_comment] = STATE(422), [ts_builtin_sym_end] = ACTIONS(1531), [anon_sym_EQ] = ACTIONS(1529), [anon_sym_PLUS_EQ] = ACTIONS(1531), @@ -81276,84 +80703,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1531), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(431)] = { - [sym__expr_parenthesized_immediate] = STATE(1341), - [sym__immediate_decimal] = STATE(1089), - [sym_val_variable] = STATE(1341), - [sym_comment] = STATE(431), - [ts_builtin_sym_end] = ACTIONS(1631), - [anon_sym_in] = ACTIONS(1631), - [sym__newline] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_PIPE] = ACTIONS(1631), - [anon_sym_err_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_GT_PIPE] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1671), - [anon_sym_GT2] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_STAR2] = ACTIONS(1633), - [anon_sym_and2] = ACTIONS(1631), - [anon_sym_xor2] = ACTIONS(1631), - [anon_sym_or2] = ACTIONS(1631), - [anon_sym_not_DASHin2] = ACTIONS(1631), - [anon_sym_has2] = ACTIONS(1631), - [anon_sym_not_DASHhas2] = ACTIONS(1631), - [anon_sym_starts_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1631), - [anon_sym_ends_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1631), - [anon_sym_EQ_EQ2] = ACTIONS(1631), - [anon_sym_BANG_EQ2] = ACTIONS(1631), - [anon_sym_LT2] = ACTIONS(1633), - [anon_sym_LT_EQ2] = ACTIONS(1631), - [anon_sym_GT_EQ2] = ACTIONS(1631), - [anon_sym_EQ_TILDE2] = ACTIONS(1631), - [anon_sym_BANG_TILDE2] = ACTIONS(1631), - [anon_sym_like2] = ACTIONS(1631), - [anon_sym_not_DASHlike2] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1673), - [anon_sym_STAR_STAR2] = ACTIONS(1631), - [anon_sym_PLUS_PLUS2] = ACTIONS(1631), - [anon_sym_SLASH2] = ACTIONS(1633), - [anon_sym_mod2] = ACTIONS(1631), - [anon_sym_SLASH_SLASH2] = ACTIONS(1631), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_bit_DASHshl2] = ACTIONS(1631), - [anon_sym_bit_DASHshr2] = ACTIONS(1631), - [anon_sym_bit_DASHand2] = ACTIONS(1631), - [anon_sym_bit_DASHxor2] = ACTIONS(1631), - [anon_sym_bit_DASHor2] = ACTIONS(1631), - [aux_sym__immediate_decimal_token1] = ACTIONS(1695), - [aux_sym__immediate_decimal_token2] = ACTIONS(1695), - [aux_sym__immediate_decimal_token3] = ACTIONS(1697), - [aux_sym__immediate_decimal_token4] = ACTIONS(1697), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1631), - [anon_sym_out_GT_GT] = ACTIONS(1631), - [anon_sym_e_GT_GT] = ACTIONS(1631), - [anon_sym_o_GT_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1631), + [STATE(423)] = { + [sym_comment] = STATE(423), + [ts_builtin_sym_end] = ACTIONS(1535), + [anon_sym_EQ] = ACTIONS(1533), + [anon_sym_PLUS_EQ] = ACTIONS(1535), + [anon_sym_DASH_EQ] = ACTIONS(1535), + [anon_sym_STAR_EQ] = ACTIONS(1535), + [anon_sym_SLASH_EQ] = ACTIONS(1535), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1535), + [anon_sym_in] = ACTIONS(1535), + [sym__newline] = ACTIONS(1535), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_PIPE] = ACTIONS(1535), + [anon_sym_err_GT_PIPE] = ACTIONS(1535), + [anon_sym_out_GT_PIPE] = ACTIONS(1535), + [anon_sym_e_GT_PIPE] = ACTIONS(1535), + [anon_sym_o_GT_PIPE] = ACTIONS(1535), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1535), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1535), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1535), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1535), + [anon_sym_GT2] = ACTIONS(1533), + [anon_sym_DASH2] = ACTIONS(1533), + [anon_sym_STAR2] = ACTIONS(1533), + [anon_sym_and2] = ACTIONS(1535), + [anon_sym_xor2] = ACTIONS(1535), + [anon_sym_or2] = ACTIONS(1535), + [anon_sym_not_DASHin2] = ACTIONS(1535), + [anon_sym_has2] = ACTIONS(1535), + [anon_sym_not_DASHhas2] = ACTIONS(1535), + [anon_sym_starts_DASHwith2] = ACTIONS(1535), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1535), + [anon_sym_ends_DASHwith2] = ACTIONS(1535), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1535), + [anon_sym_EQ_EQ2] = ACTIONS(1535), + [anon_sym_BANG_EQ2] = ACTIONS(1535), + [anon_sym_LT2] = ACTIONS(1533), + [anon_sym_LT_EQ2] = ACTIONS(1535), + [anon_sym_GT_EQ2] = ACTIONS(1535), + [anon_sym_EQ_TILDE2] = ACTIONS(1535), + [anon_sym_BANG_TILDE2] = ACTIONS(1535), + [anon_sym_like2] = ACTIONS(1535), + [anon_sym_not_DASHlike2] = ACTIONS(1535), + [anon_sym_STAR_STAR2] = ACTIONS(1535), + [anon_sym_PLUS_PLUS2] = ACTIONS(1533), + [anon_sym_SLASH2] = ACTIONS(1533), + [anon_sym_mod2] = ACTIONS(1535), + [anon_sym_SLASH_SLASH2] = ACTIONS(1535), + [anon_sym_PLUS2] = ACTIONS(1533), + [anon_sym_bit_DASHshl2] = ACTIONS(1535), + [anon_sym_bit_DASHshr2] = ACTIONS(1535), + [anon_sym_bit_DASHand2] = ACTIONS(1535), + [anon_sym_bit_DASHxor2] = ACTIONS(1535), + [anon_sym_bit_DASHor2] = ACTIONS(1535), + [anon_sym_DOT_DOT2] = ACTIONS(1533), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1535), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1535), + [anon_sym_DOT2] = ACTIONS(1533), + [anon_sym_err_GT] = ACTIONS(1533), + [anon_sym_out_GT] = ACTIONS(1533), + [anon_sym_e_GT] = ACTIONS(1533), + [anon_sym_o_GT] = ACTIONS(1533), + [anon_sym_err_PLUSout_GT] = ACTIONS(1533), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1533), + [anon_sym_o_PLUSe_GT] = ACTIONS(1533), + [anon_sym_e_PLUSo_GT] = ACTIONS(1533), + [anon_sym_err_GT_GT] = ACTIONS(1535), + [anon_sym_out_GT_GT] = ACTIONS(1535), + [anon_sym_e_GT_GT] = ACTIONS(1535), + [anon_sym_o_GT_GT] = ACTIONS(1535), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1535), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1535), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1535), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1535), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(424)] = { + [sym__expr_parenthesized_immediate] = STATE(1343), + [sym__immediate_decimal] = STATE(995), + [sym_val_variable] = STATE(1343), + [sym_comment] = STATE(424), + [ts_builtin_sym_end] = ACTIONS(1633), + [anon_sym_in] = ACTIONS(1633), + [sym__newline] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1633), + [anon_sym_err_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_GT_PIPE] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(1657), + [anon_sym_GT2] = ACTIONS(1635), + [anon_sym_DASH2] = ACTIONS(1635), + [anon_sym_STAR2] = ACTIONS(1635), + [anon_sym_and2] = ACTIONS(1633), + [anon_sym_xor2] = ACTIONS(1633), + [anon_sym_or2] = ACTIONS(1633), + [anon_sym_not_DASHin2] = ACTIONS(1633), + [anon_sym_has2] = ACTIONS(1633), + [anon_sym_not_DASHhas2] = ACTIONS(1633), + [anon_sym_starts_DASHwith2] = ACTIONS(1633), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1633), + [anon_sym_ends_DASHwith2] = ACTIONS(1633), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1633), + [anon_sym_EQ_EQ2] = ACTIONS(1633), + [anon_sym_BANG_EQ2] = ACTIONS(1633), + [anon_sym_LT2] = ACTIONS(1635), + [anon_sym_LT_EQ2] = ACTIONS(1633), + [anon_sym_GT_EQ2] = ACTIONS(1633), + [anon_sym_EQ_TILDE2] = ACTIONS(1633), + [anon_sym_BANG_TILDE2] = ACTIONS(1633), + [anon_sym_like2] = ACTIONS(1633), + [anon_sym_not_DASHlike2] = ACTIONS(1633), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_STAR_STAR2] = ACTIONS(1633), + [anon_sym_PLUS_PLUS2] = ACTIONS(1633), + [anon_sym_SLASH2] = ACTIONS(1635), + [anon_sym_mod2] = ACTIONS(1633), + [anon_sym_SLASH_SLASH2] = ACTIONS(1633), + [anon_sym_PLUS2] = ACTIONS(1635), + [anon_sym_bit_DASHshl2] = ACTIONS(1633), + [anon_sym_bit_DASHshr2] = ACTIONS(1633), + [anon_sym_bit_DASHand2] = ACTIONS(1633), + [anon_sym_bit_DASHxor2] = ACTIONS(1633), + [anon_sym_bit_DASHor2] = ACTIONS(1633), + [aux_sym__immediate_decimal_token1] = ACTIONS(1683), + [aux_sym__immediate_decimal_token2] = ACTIONS(1683), + [aux_sym__immediate_decimal_token3] = ACTIONS(1685), + [aux_sym__immediate_decimal_token4] = ACTIONS(1685), + [anon_sym_err_GT] = ACTIONS(1635), + [anon_sym_out_GT] = ACTIONS(1635), + [anon_sym_e_GT] = ACTIONS(1635), + [anon_sym_o_GT] = ACTIONS(1635), + [anon_sym_err_PLUSout_GT] = ACTIONS(1635), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1635), + [anon_sym_o_PLUSe_GT] = ACTIONS(1635), + [anon_sym_e_PLUSo_GT] = ACTIONS(1635), + [anon_sym_err_GT_GT] = ACTIONS(1633), + [anon_sym_out_GT_GT] = ACTIONS(1633), + [anon_sym_e_GT_GT] = ACTIONS(1633), + [anon_sym_o_GT_GT] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1633), [sym__unquoted_pattern] = ACTIONS(1641), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(432)] = { - [sym_comment] = STATE(432), + [STATE(425)] = { + [sym_comment] = STATE(425), [anon_sym_in] = ACTIONS(741), [sym__newline] = ACTIONS(741), [anon_sym_SEMI] = ACTIONS(741), @@ -81403,10 +80906,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(741), [anon_sym_bit_DASHor2] = ACTIONS(741), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1706), + [anon_sym_DOT] = ACTIONS(1689), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1708), + [aux_sym__immediate_decimal_token5] = ACTIONS(1691), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -81428,79 +80931,611 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(426)] = { + [sym_comment] = STATE(426), + [anon_sym_in] = ACTIONS(749), + [sym__newline] = ACTIONS(749), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_PIPE] = ACTIONS(749), + [anon_sym_err_GT_PIPE] = ACTIONS(749), + [anon_sym_out_GT_PIPE] = ACTIONS(749), + [anon_sym_e_GT_PIPE] = ACTIONS(749), + [anon_sym_o_GT_PIPE] = ACTIONS(749), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(749), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(749), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(749), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(749), + [anon_sym_RPAREN] = ACTIONS(749), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(749), + [anon_sym_RBRACE] = ACTIONS(749), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(749), + [anon_sym_xor2] = ACTIONS(749), + [anon_sym_or2] = ACTIONS(749), + [anon_sym_not_DASHin2] = ACTIONS(749), + [anon_sym_has2] = ACTIONS(749), + [anon_sym_not_DASHhas2] = ACTIONS(749), + [anon_sym_starts_DASHwith2] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(749), + [anon_sym_ends_DASHwith2] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(749), + [anon_sym_EQ_EQ2] = ACTIONS(749), + [anon_sym_BANG_EQ2] = ACTIONS(749), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(749), + [anon_sym_GT_EQ2] = ACTIONS(749), + [anon_sym_EQ_TILDE2] = ACTIONS(749), + [anon_sym_BANG_TILDE2] = ACTIONS(749), + [anon_sym_like2] = ACTIONS(749), + [anon_sym_not_DASHlike2] = ACTIONS(749), + [anon_sym_LPAREN2] = ACTIONS(749), + [anon_sym_STAR_STAR2] = ACTIONS(749), + [anon_sym_PLUS_PLUS2] = ACTIONS(749), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(749), + [anon_sym_SLASH_SLASH2] = ACTIONS(749), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(749), + [anon_sym_bit_DASHshr2] = ACTIONS(749), + [anon_sym_bit_DASHand2] = ACTIONS(749), + [anon_sym_bit_DASHxor2] = ACTIONS(749), + [anon_sym_bit_DASHor2] = ACTIONS(749), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token1] = ACTIONS(1693), + [aux_sym__immediate_decimal_token5] = ACTIONS(1695), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_err_GT] = ACTIONS(747), + [anon_sym_out_GT] = ACTIONS(747), + [anon_sym_e_GT] = ACTIONS(747), + [anon_sym_o_GT] = ACTIONS(747), + [anon_sym_err_PLUSout_GT] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT] = ACTIONS(747), + [anon_sym_o_PLUSe_GT] = ACTIONS(747), + [anon_sym_e_PLUSo_GT] = ACTIONS(747), + [anon_sym_err_GT_GT] = ACTIONS(749), + [anon_sym_out_GT_GT] = ACTIONS(749), + [anon_sym_e_GT_GT] = ACTIONS(749), + [anon_sym_o_GT_GT] = ACTIONS(749), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(749), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(749), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(749), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(749), + [sym__unquoted_pattern] = ACTIONS(747), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(427)] = { + [sym_comment] = STATE(427), + [ts_builtin_sym_end] = ACTIONS(1515), + [anon_sym_EQ] = ACTIONS(1513), + [anon_sym_PLUS_EQ] = ACTIONS(1515), + [anon_sym_DASH_EQ] = ACTIONS(1515), + [anon_sym_STAR_EQ] = ACTIONS(1515), + [anon_sym_SLASH_EQ] = ACTIONS(1515), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1515), + [anon_sym_in] = ACTIONS(1515), + [sym__newline] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_err_GT_PIPE] = ACTIONS(1515), + [anon_sym_out_GT_PIPE] = ACTIONS(1515), + [anon_sym_e_GT_PIPE] = ACTIONS(1515), + [anon_sym_o_GT_PIPE] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1515), + [anon_sym_GT2] = ACTIONS(1513), + [anon_sym_DASH2] = ACTIONS(1513), + [anon_sym_STAR2] = ACTIONS(1513), + [anon_sym_and2] = ACTIONS(1515), + [anon_sym_xor2] = ACTIONS(1515), + [anon_sym_or2] = ACTIONS(1515), + [anon_sym_not_DASHin2] = ACTIONS(1515), + [anon_sym_has2] = ACTIONS(1515), + [anon_sym_not_DASHhas2] = ACTIONS(1515), + [anon_sym_starts_DASHwith2] = ACTIONS(1515), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1515), + [anon_sym_ends_DASHwith2] = ACTIONS(1515), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1515), + [anon_sym_EQ_EQ2] = ACTIONS(1515), + [anon_sym_BANG_EQ2] = ACTIONS(1515), + [anon_sym_LT2] = ACTIONS(1513), + [anon_sym_LT_EQ2] = ACTIONS(1515), + [anon_sym_GT_EQ2] = ACTIONS(1515), + [anon_sym_EQ_TILDE2] = ACTIONS(1515), + [anon_sym_BANG_TILDE2] = ACTIONS(1515), + [anon_sym_like2] = ACTIONS(1515), + [anon_sym_not_DASHlike2] = ACTIONS(1515), + [anon_sym_STAR_STAR2] = ACTIONS(1515), + [anon_sym_PLUS_PLUS2] = ACTIONS(1513), + [anon_sym_SLASH2] = ACTIONS(1513), + [anon_sym_mod2] = ACTIONS(1515), + [anon_sym_SLASH_SLASH2] = ACTIONS(1515), + [anon_sym_PLUS2] = ACTIONS(1513), + [anon_sym_bit_DASHshl2] = ACTIONS(1515), + [anon_sym_bit_DASHshr2] = ACTIONS(1515), + [anon_sym_bit_DASHand2] = ACTIONS(1515), + [anon_sym_bit_DASHxor2] = ACTIONS(1515), + [anon_sym_bit_DASHor2] = ACTIONS(1515), + [anon_sym_DOT_DOT2] = ACTIONS(1513), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1515), + [anon_sym_DOT2] = ACTIONS(1513), + [anon_sym_err_GT] = ACTIONS(1513), + [anon_sym_out_GT] = ACTIONS(1513), + [anon_sym_e_GT] = ACTIONS(1513), + [anon_sym_o_GT] = ACTIONS(1513), + [anon_sym_err_PLUSout_GT] = ACTIONS(1513), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1513), + [anon_sym_o_PLUSe_GT] = ACTIONS(1513), + [anon_sym_e_PLUSo_GT] = ACTIONS(1513), + [anon_sym_err_GT_GT] = ACTIONS(1515), + [anon_sym_out_GT_GT] = ACTIONS(1515), + [anon_sym_e_GT_GT] = ACTIONS(1515), + [anon_sym_o_GT_GT] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1515), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(428)] = { + [sym_comment] = STATE(428), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_in] = ACTIONS(1452), + [sym__newline] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_err_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_GT_PIPE] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1452), + [anon_sym_RPAREN] = ACTIONS(1452), + [anon_sym_GT2] = ACTIONS(1450), + [anon_sym_DASH2] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_EQ_GT] = ACTIONS(1452), + [anon_sym_STAR2] = ACTIONS(1450), + [anon_sym_and2] = ACTIONS(1452), + [anon_sym_xor2] = ACTIONS(1452), + [anon_sym_or2] = ACTIONS(1452), + [anon_sym_not_DASHin2] = ACTIONS(1452), + [anon_sym_has2] = ACTIONS(1452), + [anon_sym_not_DASHhas2] = ACTIONS(1452), + [anon_sym_starts_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1452), + [anon_sym_ends_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1452), + [anon_sym_EQ_EQ2] = ACTIONS(1452), + [anon_sym_BANG_EQ2] = ACTIONS(1452), + [anon_sym_LT2] = ACTIONS(1450), + [anon_sym_LT_EQ2] = ACTIONS(1452), + [anon_sym_GT_EQ2] = ACTIONS(1452), + [anon_sym_EQ_TILDE2] = ACTIONS(1452), + [anon_sym_BANG_TILDE2] = ACTIONS(1452), + [anon_sym_like2] = ACTIONS(1452), + [anon_sym_not_DASHlike2] = ACTIONS(1452), + [anon_sym_STAR_STAR2] = ACTIONS(1452), + [anon_sym_PLUS_PLUS2] = ACTIONS(1452), + [anon_sym_SLASH2] = ACTIONS(1450), + [anon_sym_mod2] = ACTIONS(1452), + [anon_sym_SLASH_SLASH2] = ACTIONS(1452), + [anon_sym_PLUS2] = ACTIONS(1450), + [anon_sym_bit_DASHshl2] = ACTIONS(1452), + [anon_sym_bit_DASHshr2] = ACTIONS(1452), + [anon_sym_bit_DASHand2] = ACTIONS(1452), + [anon_sym_bit_DASHxor2] = ACTIONS(1452), + [anon_sym_bit_DASHor2] = ACTIONS(1452), + [anon_sym_DOT_DOT2] = ACTIONS(1450), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1452), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1452), + [anon_sym_COLON2] = ACTIONS(1452), + [anon_sym_QMARK2] = ACTIONS(1697), + [anon_sym_DOT2] = ACTIONS(1450), + [anon_sym_err_GT] = ACTIONS(1450), + [anon_sym_out_GT] = ACTIONS(1450), + [anon_sym_e_GT] = ACTIONS(1450), + [anon_sym_o_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT] = ACTIONS(1450), + [anon_sym_err_GT_GT] = ACTIONS(1452), + [anon_sym_out_GT_GT] = ACTIONS(1452), + [anon_sym_e_GT_GT] = ACTIONS(1452), + [anon_sym_o_GT_GT] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(429)] = { + [sym_comment] = STATE(429), + [anon_sym_in] = ACTIONS(1460), + [sym__newline] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1460), + [anon_sym_PIPE] = ACTIONS(1460), + [anon_sym_err_GT_PIPE] = ACTIONS(1460), + [anon_sym_out_GT_PIPE] = ACTIONS(1460), + [anon_sym_e_GT_PIPE] = ACTIONS(1460), + [anon_sym_o_GT_PIPE] = ACTIONS(1460), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1460), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1460), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1460), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1460), + [anon_sym_RPAREN] = ACTIONS(1460), + [anon_sym_GT2] = ACTIONS(1458), + [anon_sym_DASH2] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_RBRACE] = ACTIONS(1460), + [anon_sym_EQ_GT] = ACTIONS(1460), + [anon_sym_STAR2] = ACTIONS(1458), + [anon_sym_and2] = ACTIONS(1460), + [anon_sym_xor2] = ACTIONS(1460), + [anon_sym_or2] = ACTIONS(1460), + [anon_sym_not_DASHin2] = ACTIONS(1460), + [anon_sym_has2] = ACTIONS(1460), + [anon_sym_not_DASHhas2] = ACTIONS(1460), + [anon_sym_starts_DASHwith2] = ACTIONS(1460), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1460), + [anon_sym_ends_DASHwith2] = ACTIONS(1460), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1460), + [anon_sym_EQ_EQ2] = ACTIONS(1460), + [anon_sym_BANG_EQ2] = ACTIONS(1460), + [anon_sym_LT2] = ACTIONS(1458), + [anon_sym_LT_EQ2] = ACTIONS(1460), + [anon_sym_GT_EQ2] = ACTIONS(1460), + [anon_sym_EQ_TILDE2] = ACTIONS(1460), + [anon_sym_BANG_TILDE2] = ACTIONS(1460), + [anon_sym_like2] = ACTIONS(1460), + [anon_sym_not_DASHlike2] = ACTIONS(1460), + [anon_sym_STAR_STAR2] = ACTIONS(1460), + [anon_sym_PLUS_PLUS2] = ACTIONS(1460), + [anon_sym_SLASH2] = ACTIONS(1458), + [anon_sym_mod2] = ACTIONS(1460), + [anon_sym_SLASH_SLASH2] = ACTIONS(1460), + [anon_sym_PLUS2] = ACTIONS(1458), + [anon_sym_bit_DASHshl2] = ACTIONS(1460), + [anon_sym_bit_DASHshr2] = ACTIONS(1460), + [anon_sym_bit_DASHand2] = ACTIONS(1460), + [anon_sym_bit_DASHxor2] = ACTIONS(1460), + [anon_sym_bit_DASHor2] = ACTIONS(1460), + [anon_sym_DOT_DOT2] = ACTIONS(1458), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1460), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1460), + [anon_sym_COLON2] = ACTIONS(1460), + [anon_sym_QMARK2] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_DOT2] = ACTIONS(1458), + [anon_sym_err_GT] = ACTIONS(1458), + [anon_sym_out_GT] = ACTIONS(1458), + [anon_sym_e_GT] = ACTIONS(1458), + [anon_sym_o_GT] = ACTIONS(1458), + [anon_sym_err_PLUSout_GT] = ACTIONS(1458), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1458), + [anon_sym_o_PLUSe_GT] = ACTIONS(1458), + [anon_sym_e_PLUSo_GT] = ACTIONS(1458), + [anon_sym_err_GT_GT] = ACTIONS(1460), + [anon_sym_out_GT_GT] = ACTIONS(1460), + [anon_sym_e_GT_GT] = ACTIONS(1460), + [anon_sym_o_GT_GT] = ACTIONS(1460), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1460), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1460), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1460), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1460), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(430)] = { + [sym__expr_parenthesized_immediate] = STATE(908), + [sym__immediate_decimal] = STATE(909), + [sym_val_variable] = STATE(908), + [sym_comment] = STATE(430), + [ts_builtin_sym_end] = ACTIONS(1623), + [anon_sym_in] = ACTIONS(1623), + [sym__newline] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1623), + [anon_sym_err_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_GT_PIPE] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(1657), + [anon_sym_GT2] = ACTIONS(1625), + [anon_sym_DASH2] = ACTIONS(1625), + [anon_sym_STAR2] = ACTIONS(1625), + [anon_sym_and2] = ACTIONS(1623), + [anon_sym_xor2] = ACTIONS(1623), + [anon_sym_or2] = ACTIONS(1623), + [anon_sym_not_DASHin2] = ACTIONS(1623), + [anon_sym_has2] = ACTIONS(1623), + [anon_sym_not_DASHhas2] = ACTIONS(1623), + [anon_sym_starts_DASHwith2] = ACTIONS(1623), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1623), + [anon_sym_ends_DASHwith2] = ACTIONS(1623), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1623), + [anon_sym_EQ_EQ2] = ACTIONS(1623), + [anon_sym_BANG_EQ2] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1625), + [anon_sym_LT_EQ2] = ACTIONS(1623), + [anon_sym_GT_EQ2] = ACTIONS(1623), + [anon_sym_EQ_TILDE2] = ACTIONS(1623), + [anon_sym_BANG_TILDE2] = ACTIONS(1623), + [anon_sym_like2] = ACTIONS(1623), + [anon_sym_not_DASHlike2] = ACTIONS(1623), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_STAR_STAR2] = ACTIONS(1623), + [anon_sym_PLUS_PLUS2] = ACTIONS(1623), + [anon_sym_SLASH2] = ACTIONS(1625), + [anon_sym_mod2] = ACTIONS(1623), + [anon_sym_SLASH_SLASH2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1625), + [anon_sym_bit_DASHshl2] = ACTIONS(1623), + [anon_sym_bit_DASHshr2] = ACTIONS(1623), + [anon_sym_bit_DASHand2] = ACTIONS(1623), + [anon_sym_bit_DASHxor2] = ACTIONS(1623), + [anon_sym_bit_DASHor2] = ACTIONS(1623), + [anon_sym_DOT] = ACTIONS(1699), + [aux_sym__immediate_decimal_token1] = ACTIONS(1663), + [aux_sym__immediate_decimal_token2] = ACTIONS(1663), + [aux_sym__immediate_decimal_token3] = ACTIONS(1665), + [aux_sym__immediate_decimal_token4] = ACTIONS(1665), + [anon_sym_err_GT] = ACTIONS(1625), + [anon_sym_out_GT] = ACTIONS(1625), + [anon_sym_e_GT] = ACTIONS(1625), + [anon_sym_o_GT] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT] = ACTIONS(1625), + [anon_sym_err_GT_GT] = ACTIONS(1623), + [anon_sym_out_GT_GT] = ACTIONS(1623), + [anon_sym_e_GT_GT] = ACTIONS(1623), + [anon_sym_o_GT_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(431)] = { + [sym_path] = STATE(446), + [sym_comment] = STATE(431), + [aux_sym__where_predicate_lhs_repeat1] = STATE(431), + [anon_sym_in] = ACTIONS(1498), + [sym__newline] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_err_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_GT_PIPE] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1498), + [anon_sym_RPAREN] = ACTIONS(1498), + [anon_sym_GT2] = ACTIONS(1496), + [anon_sym_DASH2] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_RBRACE] = ACTIONS(1498), + [anon_sym_EQ_GT] = ACTIONS(1498), + [anon_sym_STAR2] = ACTIONS(1496), + [anon_sym_and2] = ACTIONS(1498), + [anon_sym_xor2] = ACTIONS(1498), + [anon_sym_or2] = ACTIONS(1498), + [anon_sym_not_DASHin2] = ACTIONS(1498), + [anon_sym_has2] = ACTIONS(1498), + [anon_sym_not_DASHhas2] = ACTIONS(1498), + [anon_sym_starts_DASHwith2] = ACTIONS(1498), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1498), + [anon_sym_ends_DASHwith2] = ACTIONS(1498), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1498), + [anon_sym_EQ_EQ2] = ACTIONS(1498), + [anon_sym_BANG_EQ2] = ACTIONS(1498), + [anon_sym_LT2] = ACTIONS(1496), + [anon_sym_LT_EQ2] = ACTIONS(1498), + [anon_sym_GT_EQ2] = ACTIONS(1498), + [anon_sym_EQ_TILDE2] = ACTIONS(1498), + [anon_sym_BANG_TILDE2] = ACTIONS(1498), + [anon_sym_like2] = ACTIONS(1498), + [anon_sym_not_DASHlike2] = ACTIONS(1498), + [anon_sym_STAR_STAR2] = ACTIONS(1498), + [anon_sym_PLUS_PLUS2] = ACTIONS(1498), + [anon_sym_SLASH2] = ACTIONS(1496), + [anon_sym_mod2] = ACTIONS(1498), + [anon_sym_SLASH_SLASH2] = ACTIONS(1498), + [anon_sym_PLUS2] = ACTIONS(1496), + [anon_sym_bit_DASHshl2] = ACTIONS(1498), + [anon_sym_bit_DASHshr2] = ACTIONS(1498), + [anon_sym_bit_DASHand2] = ACTIONS(1498), + [anon_sym_bit_DASHxor2] = ACTIONS(1498), + [anon_sym_bit_DASHor2] = ACTIONS(1498), + [anon_sym_DOT_DOT2] = ACTIONS(1496), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1498), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1498), + [anon_sym_COLON2] = ACTIONS(1498), + [anon_sym_DOT2] = ACTIONS(1701), + [anon_sym_err_GT] = ACTIONS(1496), + [anon_sym_out_GT] = ACTIONS(1496), + [anon_sym_e_GT] = ACTIONS(1496), + [anon_sym_o_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT] = ACTIONS(1496), + [anon_sym_err_GT_GT] = ACTIONS(1498), + [anon_sym_out_GT_GT] = ACTIONS(1498), + [anon_sym_e_GT_GT] = ACTIONS(1498), + [anon_sym_o_GT_GT] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1498), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(432)] = { + [sym_comment] = STATE(432), + [anon_sym_EQ] = ACTIONS(1602), + [anon_sym_PLUS_EQ] = ACTIONS(1704), + [anon_sym_DASH_EQ] = ACTIONS(1704), + [anon_sym_STAR_EQ] = ACTIONS(1704), + [anon_sym_SLASH_EQ] = ACTIONS(1704), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1704), + [anon_sym_in] = ACTIONS(1706), + [sym__newline] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1706), + [anon_sym_err_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_GT_PIPE] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), + [anon_sym_GT2] = ACTIONS(1604), + [anon_sym_DASH2] = ACTIONS(1604), + [anon_sym_RBRACE] = ACTIONS(1706), + [anon_sym_STAR2] = ACTIONS(1604), + [anon_sym_and2] = ACTIONS(1706), + [anon_sym_xor2] = ACTIONS(1706), + [anon_sym_or2] = ACTIONS(1706), + [anon_sym_not_DASHin2] = ACTIONS(1706), + [anon_sym_has2] = ACTIONS(1706), + [anon_sym_not_DASHhas2] = ACTIONS(1706), + [anon_sym_starts_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), + [anon_sym_ends_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), + [anon_sym_EQ_EQ2] = ACTIONS(1706), + [anon_sym_BANG_EQ2] = ACTIONS(1706), + [anon_sym_LT2] = ACTIONS(1604), + [anon_sym_LT_EQ2] = ACTIONS(1706), + [anon_sym_GT_EQ2] = ACTIONS(1706), + [anon_sym_EQ_TILDE2] = ACTIONS(1706), + [anon_sym_BANG_TILDE2] = ACTIONS(1706), + [anon_sym_like2] = ACTIONS(1706), + [anon_sym_not_DASHlike2] = ACTIONS(1706), + [anon_sym_STAR_STAR2] = ACTIONS(1706), + [anon_sym_PLUS_PLUS2] = ACTIONS(1604), + [anon_sym_SLASH2] = ACTIONS(1604), + [anon_sym_mod2] = ACTIONS(1706), + [anon_sym_SLASH_SLASH2] = ACTIONS(1706), + [anon_sym_PLUS2] = ACTIONS(1604), + [anon_sym_bit_DASHshl2] = ACTIONS(1706), + [anon_sym_bit_DASHshr2] = ACTIONS(1706), + [anon_sym_bit_DASHand2] = ACTIONS(1706), + [anon_sym_bit_DASHxor2] = ACTIONS(1706), + [anon_sym_bit_DASHor2] = ACTIONS(1706), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), + [anon_sym_COLON2] = ACTIONS(1708), + [anon_sym_err_GT] = ACTIONS(1604), + [anon_sym_out_GT] = ACTIONS(1604), + [anon_sym_e_GT] = ACTIONS(1604), + [anon_sym_o_GT] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT] = ACTIONS(1604), + [anon_sym_err_GT_GT] = ACTIONS(1706), + [anon_sym_out_GT_GT] = ACTIONS(1706), + [anon_sym_e_GT_GT] = ACTIONS(1706), + [anon_sym_o_GT_GT] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(433)] = { - [sym__expr_parenthesized_immediate] = STATE(1335), - [sym__immediate_decimal] = STATE(1336), - [sym_val_variable] = STATE(1335), [sym_comment] = STATE(433), - [ts_builtin_sym_end] = ACTIONS(1643), - [anon_sym_in] = 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(1671), - [anon_sym_GT2] = ACTIONS(1645), - [anon_sym_DASH2] = ACTIONS(1645), - [anon_sym_STAR2] = ACTIONS(1645), - [anon_sym_and2] = ACTIONS(1643), - [anon_sym_xor2] = ACTIONS(1643), - [anon_sym_or2] = ACTIONS(1643), - [anon_sym_not_DASHin2] = ACTIONS(1643), - [anon_sym_has2] = ACTIONS(1643), - [anon_sym_not_DASHhas2] = ACTIONS(1643), - [anon_sym_starts_DASHwith2] = ACTIONS(1643), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1643), - [anon_sym_ends_DASHwith2] = ACTIONS(1643), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1643), - [anon_sym_EQ_EQ2] = ACTIONS(1643), - [anon_sym_BANG_EQ2] = ACTIONS(1643), - [anon_sym_LT2] = ACTIONS(1645), - [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_like2] = ACTIONS(1643), - [anon_sym_not_DASHlike2] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1673), - [anon_sym_STAR_STAR2] = ACTIONS(1643), - [anon_sym_PLUS_PLUS2] = ACTIONS(1643), - [anon_sym_SLASH2] = ACTIONS(1645), - [anon_sym_mod2] = ACTIONS(1643), - [anon_sym_SLASH_SLASH2] = ACTIONS(1643), - [anon_sym_PLUS2] = ACTIONS(1645), - [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(1710), - [aux_sym__immediate_decimal_token2] = ACTIONS(1710), - [aux_sym__immediate_decimal_token3] = ACTIONS(1679), - [aux_sym__immediate_decimal_token4] = ACTIONS(1679), - [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(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_in] = ACTIONS(1452), + [sym__newline] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_err_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_GT_PIPE] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1452), + [anon_sym_RPAREN] = ACTIONS(1452), + [anon_sym_GT2] = ACTIONS(1450), + [anon_sym_DASH2] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_EQ_GT] = ACTIONS(1452), + [anon_sym_STAR2] = ACTIONS(1450), + [anon_sym_and2] = ACTIONS(1452), + [anon_sym_xor2] = ACTIONS(1452), + [anon_sym_or2] = ACTIONS(1452), + [anon_sym_not_DASHin2] = ACTIONS(1452), + [anon_sym_has2] = ACTIONS(1452), + [anon_sym_not_DASHhas2] = ACTIONS(1452), + [anon_sym_starts_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1452), + [anon_sym_ends_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1452), + [anon_sym_EQ_EQ2] = ACTIONS(1452), + [anon_sym_BANG_EQ2] = ACTIONS(1452), + [anon_sym_LT2] = ACTIONS(1450), + [anon_sym_LT_EQ2] = ACTIONS(1452), + [anon_sym_GT_EQ2] = ACTIONS(1452), + [anon_sym_EQ_TILDE2] = ACTIONS(1452), + [anon_sym_BANG_TILDE2] = ACTIONS(1452), + [anon_sym_like2] = ACTIONS(1452), + [anon_sym_not_DASHlike2] = ACTIONS(1452), + [anon_sym_STAR_STAR2] = ACTIONS(1452), + [anon_sym_PLUS_PLUS2] = ACTIONS(1452), + [anon_sym_SLASH2] = ACTIONS(1450), + [anon_sym_mod2] = ACTIONS(1452), + [anon_sym_SLASH_SLASH2] = ACTIONS(1452), + [anon_sym_PLUS2] = ACTIONS(1450), + [anon_sym_bit_DASHshl2] = ACTIONS(1452), + [anon_sym_bit_DASHshr2] = ACTIONS(1452), + [anon_sym_bit_DASHand2] = ACTIONS(1452), + [anon_sym_bit_DASHxor2] = ACTIONS(1452), + [anon_sym_bit_DASHor2] = ACTIONS(1452), + [anon_sym_DOT_DOT2] = ACTIONS(1450), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1452), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1452), + [anon_sym_COLON2] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_DOT2] = ACTIONS(1450), + [anon_sym_err_GT] = ACTIONS(1450), + [anon_sym_out_GT] = ACTIONS(1450), + [anon_sym_e_GT] = ACTIONS(1450), + [anon_sym_o_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT] = ACTIONS(1450), + [anon_sym_err_GT_GT] = ACTIONS(1452), + [anon_sym_out_GT_GT] = ACTIONS(1452), + [anon_sym_e_GT_GT] = ACTIONS(1452), + [anon_sym_o_GT_GT] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1452), [anon_sym_POUND] = ACTIONS(3), }, [STATE(434)] = { @@ -81579,82 +81614,757 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(435)] = { + [sym__expr_parenthesized_immediate] = STATE(1336), + [sym__immediate_decimal] = STATE(1337), + [sym_val_variable] = STATE(1336), [sym_comment] = STATE(435), - [anon_sym_if] = ACTIONS(1554), - [anon_sym_in] = ACTIONS(1554), - [sym__newline] = ACTIONS(1554), - [anon_sym_SEMI] = ACTIONS(1554), - [anon_sym_PIPE] = ACTIONS(1554), - [anon_sym_err_GT_PIPE] = ACTIONS(1554), - [anon_sym_out_GT_PIPE] = ACTIONS(1554), - [anon_sym_e_GT_PIPE] = ACTIONS(1554), - [anon_sym_o_GT_PIPE] = ACTIONS(1554), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1554), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1554), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1554), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1554), - [anon_sym_RPAREN] = ACTIONS(1554), - [anon_sym_GT2] = ACTIONS(1552), - [anon_sym_DASH2] = ACTIONS(1554), - [anon_sym_LBRACE] = ACTIONS(1554), - [anon_sym_RBRACE] = ACTIONS(1554), - [anon_sym_EQ_GT] = ACTIONS(1554), - [anon_sym_STAR2] = ACTIONS(1552), - [anon_sym_and2] = ACTIONS(1554), - [anon_sym_xor2] = ACTIONS(1554), - [anon_sym_or2] = ACTIONS(1554), - [anon_sym_not_DASHin2] = ACTIONS(1554), - [anon_sym_has2] = ACTIONS(1554), - [anon_sym_not_DASHhas2] = ACTIONS(1554), - [anon_sym_starts_DASHwith2] = ACTIONS(1554), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1554), - [anon_sym_ends_DASHwith2] = ACTIONS(1554), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1554), - [anon_sym_EQ_EQ2] = ACTIONS(1554), - [anon_sym_BANG_EQ2] = ACTIONS(1554), - [anon_sym_LT2] = ACTIONS(1552), - [anon_sym_LT_EQ2] = ACTIONS(1554), - [anon_sym_GT_EQ2] = ACTIONS(1554), - [anon_sym_EQ_TILDE2] = ACTIONS(1554), - [anon_sym_BANG_TILDE2] = ACTIONS(1554), - [anon_sym_like2] = ACTIONS(1554), - [anon_sym_not_DASHlike2] = ACTIONS(1554), - [anon_sym_STAR_STAR2] = ACTIONS(1554), - [anon_sym_PLUS_PLUS2] = ACTIONS(1554), - [anon_sym_SLASH2] = ACTIONS(1552), - [anon_sym_mod2] = ACTIONS(1554), - [anon_sym_SLASH_SLASH2] = ACTIONS(1554), - [anon_sym_PLUS2] = ACTIONS(1552), - [anon_sym_bit_DASHshl2] = ACTIONS(1554), - [anon_sym_bit_DASHshr2] = ACTIONS(1554), - [anon_sym_bit_DASHand2] = ACTIONS(1554), - [anon_sym_bit_DASHxor2] = ACTIONS(1554), - [anon_sym_bit_DASHor2] = ACTIONS(1554), - [anon_sym_DOT_DOT2] = ACTIONS(1552), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1554), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1554), - [anon_sym_COLON2] = ACTIONS(1554), - [anon_sym_DOT2] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1552), - [anon_sym_out_GT] = ACTIONS(1552), - [anon_sym_e_GT] = ACTIONS(1552), - [anon_sym_o_GT] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT] = ACTIONS(1552), - [anon_sym_err_GT_GT] = ACTIONS(1554), - [anon_sym_out_GT_GT] = ACTIONS(1554), - [anon_sym_e_GT_GT] = ACTIONS(1554), - [anon_sym_o_GT_GT] = ACTIONS(1554), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1554), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1554), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1554), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1554), + [ts_builtin_sym_end] = ACTIONS(1653), + [anon_sym_in] = ACTIONS(1653), + [sym__newline] = ACTIONS(1653), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_PIPE] = ACTIONS(1653), + [anon_sym_err_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_GT_PIPE] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1653), + [anon_sym_DOLLAR] = ACTIONS(1657), + [anon_sym_GT2] = ACTIONS(1655), + [anon_sym_DASH2] = ACTIONS(1655), + [anon_sym_STAR2] = ACTIONS(1655), + [anon_sym_and2] = ACTIONS(1653), + [anon_sym_xor2] = ACTIONS(1653), + [anon_sym_or2] = ACTIONS(1653), + [anon_sym_not_DASHin2] = ACTIONS(1653), + [anon_sym_has2] = ACTIONS(1653), + [anon_sym_not_DASHhas2] = ACTIONS(1653), + [anon_sym_starts_DASHwith2] = ACTIONS(1653), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1653), + [anon_sym_ends_DASHwith2] = ACTIONS(1653), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1653), + [anon_sym_EQ_EQ2] = ACTIONS(1653), + [anon_sym_BANG_EQ2] = ACTIONS(1653), + [anon_sym_LT2] = ACTIONS(1655), + [anon_sym_LT_EQ2] = ACTIONS(1653), + [anon_sym_GT_EQ2] = ACTIONS(1653), + [anon_sym_EQ_TILDE2] = ACTIONS(1653), + [anon_sym_BANG_TILDE2] = ACTIONS(1653), + [anon_sym_like2] = ACTIONS(1653), + [anon_sym_not_DASHlike2] = ACTIONS(1653), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_STAR_STAR2] = ACTIONS(1653), + [anon_sym_PLUS_PLUS2] = ACTIONS(1653), + [anon_sym_SLASH2] = ACTIONS(1655), + [anon_sym_mod2] = ACTIONS(1653), + [anon_sym_SLASH_SLASH2] = ACTIONS(1653), + [anon_sym_PLUS2] = ACTIONS(1655), + [anon_sym_bit_DASHshl2] = ACTIONS(1653), + [anon_sym_bit_DASHshr2] = ACTIONS(1653), + [anon_sym_bit_DASHand2] = ACTIONS(1653), + [anon_sym_bit_DASHxor2] = ACTIONS(1653), + [anon_sym_bit_DASHor2] = ACTIONS(1653), + [aux_sym__immediate_decimal_token1] = ACTIONS(1712), + [aux_sym__immediate_decimal_token2] = ACTIONS(1712), + [aux_sym__immediate_decimal_token3] = ACTIONS(1665), + [aux_sym__immediate_decimal_token4] = ACTIONS(1665), + [anon_sym_err_GT] = ACTIONS(1655), + [anon_sym_out_GT] = ACTIONS(1655), + [anon_sym_e_GT] = ACTIONS(1655), + [anon_sym_o_GT] = ACTIONS(1655), + [anon_sym_err_PLUSout_GT] = ACTIONS(1655), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1655), + [anon_sym_o_PLUSe_GT] = ACTIONS(1655), + [anon_sym_e_PLUSo_GT] = ACTIONS(1655), + [anon_sym_err_GT_GT] = ACTIONS(1653), + [anon_sym_out_GT_GT] = ACTIONS(1653), + [anon_sym_e_GT_GT] = ACTIONS(1653), + [anon_sym_o_GT_GT] = ACTIONS(1653), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1653), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1653), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1653), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1653), [anon_sym_POUND] = ACTIONS(3), }, [STATE(436)] = { + [sym__expr_parenthesized_immediate] = STATE(4718), [sym_comment] = STATE(436), + [anon_sym_in] = ACTIONS(908), + [sym__newline] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_PIPE] = ACTIONS(908), + [anon_sym_err_GT_PIPE] = ACTIONS(908), + [anon_sym_out_GT_PIPE] = ACTIONS(908), + [anon_sym_e_GT_PIPE] = ACTIONS(908), + [anon_sym_o_GT_PIPE] = ACTIONS(908), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(908), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(908), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(908), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(908), + [anon_sym_RPAREN] = ACTIONS(908), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(908), + [anon_sym_RBRACE] = ACTIONS(908), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(908), + [anon_sym_xor2] = ACTIONS(908), + [anon_sym_or2] = ACTIONS(908), + [anon_sym_not_DASHin2] = ACTIONS(908), + [anon_sym_has2] = ACTIONS(908), + [anon_sym_not_DASHhas2] = ACTIONS(908), + [anon_sym_starts_DASHwith2] = ACTIONS(908), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(908), + [anon_sym_ends_DASHwith2] = ACTIONS(908), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(908), + [anon_sym_EQ_EQ2] = ACTIONS(908), + [anon_sym_BANG_EQ2] = ACTIONS(908), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(908), + [anon_sym_GT_EQ2] = ACTIONS(908), + [anon_sym_EQ_TILDE2] = ACTIONS(908), + [anon_sym_BANG_TILDE2] = ACTIONS(908), + [anon_sym_like2] = ACTIONS(908), + [anon_sym_not_DASHlike2] = ACTIONS(908), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(908), + [anon_sym_PLUS_PLUS2] = ACTIONS(908), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(908), + [anon_sym_SLASH_SLASH2] = ACTIONS(908), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(908), + [anon_sym_bit_DASHshr2] = ACTIONS(908), + [anon_sym_bit_DASHand2] = ACTIONS(908), + [anon_sym_bit_DASHxor2] = ACTIONS(908), + [anon_sym_bit_DASHor2] = ACTIONS(908), + [anon_sym_DOT_DOT2] = ACTIONS(1716), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1718), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1718), + [sym_filesize_unit] = ACTIONS(1720), + [sym_duration_unit] = ACTIONS(1722), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(908), + [anon_sym_out_GT_GT] = ACTIONS(908), + [anon_sym_e_GT_GT] = ACTIONS(908), + [anon_sym_o_GT_GT] = ACTIONS(908), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(908), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(908), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(908), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(908), + [sym__unquoted_pattern] = ACTIONS(1724), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(437)] = { + [sym_comment] = STATE(437), + [ts_builtin_sym_end] = ACTIONS(749), + [anon_sym_in] = ACTIONS(749), + [sym__newline] = ACTIONS(749), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_PIPE] = ACTIONS(749), + [anon_sym_err_GT_PIPE] = ACTIONS(749), + [anon_sym_out_GT_PIPE] = ACTIONS(749), + [anon_sym_e_GT_PIPE] = ACTIONS(749), + [anon_sym_o_GT_PIPE] = ACTIONS(749), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(749), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(749), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(749), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(749), + [anon_sym_GT2] = ACTIONS(747), + [anon_sym_DASH2] = ACTIONS(749), + [anon_sym_STAR2] = ACTIONS(747), + [anon_sym_and2] = ACTIONS(749), + [anon_sym_xor2] = ACTIONS(749), + [anon_sym_or2] = ACTIONS(749), + [anon_sym_not_DASHin2] = ACTIONS(749), + [anon_sym_has2] = ACTIONS(749), + [anon_sym_not_DASHhas2] = ACTIONS(749), + [anon_sym_starts_DASHwith2] = ACTIONS(749), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(749), + [anon_sym_ends_DASHwith2] = ACTIONS(749), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(749), + [anon_sym_EQ_EQ2] = ACTIONS(749), + [anon_sym_BANG_EQ2] = ACTIONS(749), + [anon_sym_LT2] = ACTIONS(747), + [anon_sym_LT_EQ2] = ACTIONS(749), + [anon_sym_GT_EQ2] = ACTIONS(749), + [anon_sym_EQ_TILDE2] = ACTIONS(749), + [anon_sym_BANG_TILDE2] = ACTIONS(749), + [anon_sym_like2] = ACTIONS(749), + [anon_sym_not_DASHlike2] = ACTIONS(749), + [anon_sym_LPAREN2] = ACTIONS(749), + [anon_sym_STAR_STAR2] = ACTIONS(749), + [anon_sym_PLUS_PLUS2] = ACTIONS(749), + [anon_sym_SLASH2] = ACTIONS(747), + [anon_sym_mod2] = ACTIONS(749), + [anon_sym_SLASH_SLASH2] = ACTIONS(749), + [anon_sym_PLUS2] = ACTIONS(747), + [anon_sym_bit_DASHshl2] = ACTIONS(749), + [anon_sym_bit_DASHshr2] = ACTIONS(749), + [anon_sym_bit_DASHand2] = ACTIONS(749), + [anon_sym_bit_DASHxor2] = ACTIONS(749), + [anon_sym_bit_DASHor2] = ACTIONS(749), + [anon_sym_DOT_DOT2] = ACTIONS(747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), + [anon_sym_DOT_DOT_LT2] = ACTIONS(749), + [aux_sym__immediate_decimal_token1] = ACTIONS(1726), + [aux_sym__immediate_decimal_token5] = ACTIONS(1728), + [sym_filesize_unit] = ACTIONS(747), + [sym_duration_unit] = ACTIONS(749), + [anon_sym_err_GT] = ACTIONS(747), + [anon_sym_out_GT] = ACTIONS(747), + [anon_sym_e_GT] = ACTIONS(747), + [anon_sym_o_GT] = ACTIONS(747), + [anon_sym_err_PLUSout_GT] = ACTIONS(747), + [anon_sym_out_PLUSerr_GT] = ACTIONS(747), + [anon_sym_o_PLUSe_GT] = ACTIONS(747), + [anon_sym_e_PLUSo_GT] = ACTIONS(747), + [anon_sym_err_GT_GT] = ACTIONS(749), + [anon_sym_out_GT_GT] = ACTIONS(749), + [anon_sym_e_GT_GT] = ACTIONS(749), + [anon_sym_o_GT_GT] = ACTIONS(749), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(749), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(749), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(749), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(749), + [sym__unquoted_pattern] = ACTIONS(747), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(438)] = { + [sym__expr_parenthesized_immediate] = STATE(1287), + [sym__immediate_decimal] = STATE(1288), + [sym_val_variable] = STATE(1287), + [sym_comment] = STATE(438), + [ts_builtin_sym_end] = ACTIONS(1623), + [anon_sym_in] = ACTIONS(1623), + [sym__newline] = ACTIONS(1623), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_PIPE] = ACTIONS(1623), + [anon_sym_err_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_GT_PIPE] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1623), + [anon_sym_DOLLAR] = ACTIONS(1657), + [anon_sym_GT2] = ACTIONS(1625), + [anon_sym_DASH2] = ACTIONS(1625), + [anon_sym_STAR2] = ACTIONS(1625), + [anon_sym_and2] = ACTIONS(1623), + [anon_sym_xor2] = ACTIONS(1623), + [anon_sym_or2] = ACTIONS(1623), + [anon_sym_not_DASHin2] = ACTIONS(1623), + [anon_sym_has2] = ACTIONS(1623), + [anon_sym_not_DASHhas2] = ACTIONS(1623), + [anon_sym_starts_DASHwith2] = ACTIONS(1623), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1623), + [anon_sym_ends_DASHwith2] = ACTIONS(1623), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1623), + [anon_sym_EQ_EQ2] = ACTIONS(1623), + [anon_sym_BANG_EQ2] = ACTIONS(1623), + [anon_sym_LT2] = ACTIONS(1625), + [anon_sym_LT_EQ2] = ACTIONS(1623), + [anon_sym_GT_EQ2] = ACTIONS(1623), + [anon_sym_EQ_TILDE2] = ACTIONS(1623), + [anon_sym_BANG_TILDE2] = ACTIONS(1623), + [anon_sym_like2] = ACTIONS(1623), + [anon_sym_not_DASHlike2] = ACTIONS(1623), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_STAR_STAR2] = ACTIONS(1623), + [anon_sym_PLUS_PLUS2] = ACTIONS(1623), + [anon_sym_SLASH2] = ACTIONS(1625), + [anon_sym_mod2] = ACTIONS(1623), + [anon_sym_SLASH_SLASH2] = ACTIONS(1623), + [anon_sym_PLUS2] = ACTIONS(1625), + [anon_sym_bit_DASHshl2] = ACTIONS(1623), + [anon_sym_bit_DASHshr2] = ACTIONS(1623), + [anon_sym_bit_DASHand2] = ACTIONS(1623), + [anon_sym_bit_DASHxor2] = ACTIONS(1623), + [anon_sym_bit_DASHor2] = ACTIONS(1623), + [aux_sym__immediate_decimal_token1] = ACTIONS(1712), + [aux_sym__immediate_decimal_token2] = ACTIONS(1712), + [aux_sym__immediate_decimal_token3] = ACTIONS(1665), + [aux_sym__immediate_decimal_token4] = ACTIONS(1665), + [anon_sym_err_GT] = ACTIONS(1625), + [anon_sym_out_GT] = ACTIONS(1625), + [anon_sym_e_GT] = ACTIONS(1625), + [anon_sym_o_GT] = ACTIONS(1625), + [anon_sym_err_PLUSout_GT] = ACTIONS(1625), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1625), + [anon_sym_o_PLUSe_GT] = ACTIONS(1625), + [anon_sym_e_PLUSo_GT] = ACTIONS(1625), + [anon_sym_err_GT_GT] = ACTIONS(1623), + [anon_sym_out_GT_GT] = ACTIONS(1623), + [anon_sym_e_GT_GT] = ACTIONS(1623), + [anon_sym_o_GT_GT] = ACTIONS(1623), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1623), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1623), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1623), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1623), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(439)] = { + [sym_comment] = STATE(439), + [anon_sym_EQ] = ACTIONS(1602), + [anon_sym_PLUS_EQ] = ACTIONS(1704), + [anon_sym_DASH_EQ] = ACTIONS(1704), + [anon_sym_STAR_EQ] = ACTIONS(1704), + [anon_sym_SLASH_EQ] = ACTIONS(1704), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1704), + [anon_sym_in] = ACTIONS(1706), + [sym__newline] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1706), + [anon_sym_err_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_GT_PIPE] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), + [anon_sym_GT2] = ACTIONS(1604), + [anon_sym_DASH2] = ACTIONS(1604), + [anon_sym_RBRACE] = ACTIONS(1706), + [anon_sym_STAR2] = ACTIONS(1604), + [anon_sym_and2] = ACTIONS(1706), + [anon_sym_xor2] = ACTIONS(1706), + [anon_sym_or2] = ACTIONS(1706), + [anon_sym_not_DASHin2] = ACTIONS(1706), + [anon_sym_has2] = ACTIONS(1706), + [anon_sym_not_DASHhas2] = ACTIONS(1706), + [anon_sym_starts_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), + [anon_sym_ends_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), + [anon_sym_EQ_EQ2] = ACTIONS(1706), + [anon_sym_BANG_EQ2] = ACTIONS(1706), + [anon_sym_LT2] = ACTIONS(1604), + [anon_sym_LT_EQ2] = ACTIONS(1706), + [anon_sym_GT_EQ2] = ACTIONS(1706), + [anon_sym_EQ_TILDE2] = ACTIONS(1706), + [anon_sym_BANG_TILDE2] = ACTIONS(1706), + [anon_sym_like2] = ACTIONS(1706), + [anon_sym_not_DASHlike2] = ACTIONS(1706), + [anon_sym_STAR_STAR2] = ACTIONS(1706), + [anon_sym_PLUS_PLUS2] = ACTIONS(1604), + [anon_sym_SLASH2] = ACTIONS(1604), + [anon_sym_mod2] = ACTIONS(1706), + [anon_sym_SLASH_SLASH2] = ACTIONS(1706), + [anon_sym_PLUS2] = ACTIONS(1604), + [anon_sym_bit_DASHshl2] = ACTIONS(1706), + [anon_sym_bit_DASHshr2] = ACTIONS(1706), + [anon_sym_bit_DASHand2] = ACTIONS(1706), + [anon_sym_bit_DASHxor2] = ACTIONS(1706), + [anon_sym_bit_DASHor2] = ACTIONS(1706), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), + [anon_sym_err_GT] = ACTIONS(1604), + [anon_sym_out_GT] = ACTIONS(1604), + [anon_sym_e_GT] = ACTIONS(1604), + [anon_sym_o_GT] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT] = ACTIONS(1604), + [anon_sym_err_GT_GT] = ACTIONS(1706), + [anon_sym_out_GT_GT] = ACTIONS(1706), + [anon_sym_e_GT_GT] = ACTIONS(1706), + [anon_sym_o_GT_GT] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(440)] = { + [sym__expr_parenthesized_immediate] = STATE(1338), + [sym__immediate_decimal] = STATE(1339), + [sym_val_variable] = STATE(1338), + [sym_comment] = STATE(440), + [ts_builtin_sym_end] = ACTIONS(1667), + [anon_sym_in] = ACTIONS(1667), + [sym__newline] = ACTIONS(1667), + [anon_sym_SEMI] = ACTIONS(1667), + [anon_sym_PIPE] = ACTIONS(1667), + [anon_sym_err_GT_PIPE] = ACTIONS(1667), + [anon_sym_out_GT_PIPE] = ACTIONS(1667), + [anon_sym_e_GT_PIPE] = ACTIONS(1667), + [anon_sym_o_GT_PIPE] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1667), + [anon_sym_DOLLAR] = ACTIONS(1657), + [anon_sym_GT2] = ACTIONS(1669), + [anon_sym_DASH2] = ACTIONS(1669), + [anon_sym_STAR2] = ACTIONS(1669), + [anon_sym_and2] = ACTIONS(1667), + [anon_sym_xor2] = ACTIONS(1667), + [anon_sym_or2] = ACTIONS(1667), + [anon_sym_not_DASHin2] = ACTIONS(1667), + [anon_sym_has2] = ACTIONS(1667), + [anon_sym_not_DASHhas2] = ACTIONS(1667), + [anon_sym_starts_DASHwith2] = ACTIONS(1667), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1667), + [anon_sym_ends_DASHwith2] = ACTIONS(1667), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1667), + [anon_sym_EQ_EQ2] = ACTIONS(1667), + [anon_sym_BANG_EQ2] = ACTIONS(1667), + [anon_sym_LT2] = ACTIONS(1669), + [anon_sym_LT_EQ2] = ACTIONS(1667), + [anon_sym_GT_EQ2] = ACTIONS(1667), + [anon_sym_EQ_TILDE2] = ACTIONS(1667), + [anon_sym_BANG_TILDE2] = ACTIONS(1667), + [anon_sym_like2] = ACTIONS(1667), + [anon_sym_not_DASHlike2] = ACTIONS(1667), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_STAR_STAR2] = ACTIONS(1667), + [anon_sym_PLUS_PLUS2] = ACTIONS(1667), + [anon_sym_SLASH2] = ACTIONS(1669), + [anon_sym_mod2] = ACTIONS(1667), + [anon_sym_SLASH_SLASH2] = ACTIONS(1667), + [anon_sym_PLUS2] = ACTIONS(1669), + [anon_sym_bit_DASHshl2] = ACTIONS(1667), + [anon_sym_bit_DASHshr2] = ACTIONS(1667), + [anon_sym_bit_DASHand2] = ACTIONS(1667), + [anon_sym_bit_DASHxor2] = ACTIONS(1667), + [anon_sym_bit_DASHor2] = ACTIONS(1667), + [aux_sym__immediate_decimal_token1] = ACTIONS(1712), + [aux_sym__immediate_decimal_token2] = ACTIONS(1712), + [aux_sym__immediate_decimal_token3] = ACTIONS(1665), + [aux_sym__immediate_decimal_token4] = ACTIONS(1665), + [anon_sym_err_GT] = ACTIONS(1669), + [anon_sym_out_GT] = ACTIONS(1669), + [anon_sym_e_GT] = ACTIONS(1669), + [anon_sym_o_GT] = ACTIONS(1669), + [anon_sym_err_PLUSout_GT] = ACTIONS(1669), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1669), + [anon_sym_o_PLUSe_GT] = ACTIONS(1669), + [anon_sym_e_PLUSo_GT] = ACTIONS(1669), + [anon_sym_err_GT_GT] = ACTIONS(1667), + [anon_sym_out_GT_GT] = ACTIONS(1667), + [anon_sym_e_GT_GT] = ACTIONS(1667), + [anon_sym_o_GT_GT] = ACTIONS(1667), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1667), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1667), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1667), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(441)] = { + [sym__expr_parenthesized_immediate] = STATE(1340), + [sym__immediate_decimal] = STATE(1341), + [sym_val_variable] = STATE(1340), + [sym_comment] = STATE(441), + [ts_builtin_sym_end] = ACTIONS(1673), + [anon_sym_in] = 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_DOLLAR] = ACTIONS(1657), + [anon_sym_GT2] = ACTIONS(1675), + [anon_sym_DASH2] = ACTIONS(1675), + [anon_sym_STAR2] = ACTIONS(1675), + [anon_sym_and2] = ACTIONS(1673), + [anon_sym_xor2] = ACTIONS(1673), + [anon_sym_or2] = ACTIONS(1673), + [anon_sym_not_DASHin2] = ACTIONS(1673), + [anon_sym_has2] = ACTIONS(1673), + [anon_sym_not_DASHhas2] = ACTIONS(1673), + [anon_sym_starts_DASHwith2] = ACTIONS(1673), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1673), + [anon_sym_ends_DASHwith2] = ACTIONS(1673), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1673), + [anon_sym_EQ_EQ2] = ACTIONS(1673), + [anon_sym_BANG_EQ2] = ACTIONS(1673), + [anon_sym_LT2] = ACTIONS(1675), + [anon_sym_LT_EQ2] = ACTIONS(1673), + [anon_sym_GT_EQ2] = ACTIONS(1673), + [anon_sym_EQ_TILDE2] = ACTIONS(1673), + [anon_sym_BANG_TILDE2] = ACTIONS(1673), + [anon_sym_like2] = ACTIONS(1673), + [anon_sym_not_DASHlike2] = ACTIONS(1673), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_STAR_STAR2] = ACTIONS(1673), + [anon_sym_PLUS_PLUS2] = ACTIONS(1673), + [anon_sym_SLASH2] = ACTIONS(1675), + [anon_sym_mod2] = ACTIONS(1673), + [anon_sym_SLASH_SLASH2] = ACTIONS(1673), + [anon_sym_PLUS2] = ACTIONS(1675), + [anon_sym_bit_DASHshl2] = ACTIONS(1673), + [anon_sym_bit_DASHshr2] = ACTIONS(1673), + [anon_sym_bit_DASHand2] = ACTIONS(1673), + [anon_sym_bit_DASHxor2] = ACTIONS(1673), + [anon_sym_bit_DASHor2] = ACTIONS(1673), + [aux_sym__immediate_decimal_token1] = ACTIONS(1712), + [aux_sym__immediate_decimal_token2] = ACTIONS(1712), + [aux_sym__immediate_decimal_token3] = ACTIONS(1665), + [aux_sym__immediate_decimal_token4] = ACTIONS(1665), + [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(1673), + [anon_sym_out_GT_GT] = ACTIONS(1673), + [anon_sym_e_GT_GT] = ACTIONS(1673), + [anon_sym_o_GT_GT] = ACTIONS(1673), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1673), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1673), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1673), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1673), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(442)] = { + [sym__expr_parenthesized_immediate] = STATE(1343), + [sym__immediate_decimal] = STATE(1263), + [sym_val_variable] = STATE(1343), + [sym_comment] = STATE(442), + [ts_builtin_sym_end] = ACTIONS(1633), + [anon_sym_in] = ACTIONS(1633), + [sym__newline] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1633), + [anon_sym_PIPE] = ACTIONS(1633), + [anon_sym_err_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_GT_PIPE] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(1657), + [anon_sym_GT2] = ACTIONS(1635), + [anon_sym_DASH2] = ACTIONS(1635), + [anon_sym_STAR2] = ACTIONS(1635), + [anon_sym_and2] = ACTIONS(1633), + [anon_sym_xor2] = ACTIONS(1633), + [anon_sym_or2] = ACTIONS(1633), + [anon_sym_not_DASHin2] = ACTIONS(1633), + [anon_sym_has2] = ACTIONS(1633), + [anon_sym_not_DASHhas2] = ACTIONS(1633), + [anon_sym_starts_DASHwith2] = ACTIONS(1633), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1633), + [anon_sym_ends_DASHwith2] = ACTIONS(1633), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1633), + [anon_sym_EQ_EQ2] = ACTIONS(1633), + [anon_sym_BANG_EQ2] = ACTIONS(1633), + [anon_sym_LT2] = ACTIONS(1635), + [anon_sym_LT_EQ2] = ACTIONS(1633), + [anon_sym_GT_EQ2] = ACTIONS(1633), + [anon_sym_EQ_TILDE2] = ACTIONS(1633), + [anon_sym_BANG_TILDE2] = ACTIONS(1633), + [anon_sym_like2] = ACTIONS(1633), + [anon_sym_not_DASHlike2] = ACTIONS(1633), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_STAR_STAR2] = ACTIONS(1633), + [anon_sym_PLUS_PLUS2] = ACTIONS(1633), + [anon_sym_SLASH2] = ACTIONS(1635), + [anon_sym_mod2] = ACTIONS(1633), + [anon_sym_SLASH_SLASH2] = ACTIONS(1633), + [anon_sym_PLUS2] = ACTIONS(1635), + [anon_sym_bit_DASHshl2] = ACTIONS(1633), + [anon_sym_bit_DASHshr2] = ACTIONS(1633), + [anon_sym_bit_DASHand2] = ACTIONS(1633), + [anon_sym_bit_DASHxor2] = ACTIONS(1633), + [anon_sym_bit_DASHor2] = ACTIONS(1633), + [aux_sym__immediate_decimal_token1] = ACTIONS(1712), + [aux_sym__immediate_decimal_token2] = ACTIONS(1712), + [aux_sym__immediate_decimal_token3] = ACTIONS(1665), + [aux_sym__immediate_decimal_token4] = ACTIONS(1665), + [anon_sym_err_GT] = ACTIONS(1635), + [anon_sym_out_GT] = ACTIONS(1635), + [anon_sym_e_GT] = ACTIONS(1635), + [anon_sym_o_GT] = ACTIONS(1635), + [anon_sym_err_PLUSout_GT] = ACTIONS(1635), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1635), + [anon_sym_o_PLUSe_GT] = ACTIONS(1635), + [anon_sym_e_PLUSo_GT] = ACTIONS(1635), + [anon_sym_err_GT_GT] = ACTIONS(1633), + [anon_sym_out_GT_GT] = ACTIONS(1633), + [anon_sym_e_GT_GT] = ACTIONS(1633), + [anon_sym_o_GT_GT] = ACTIONS(1633), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1633), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1633), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1633), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1633), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(443)] = { + [sym__expr_parenthesized_immediate] = STATE(1291), + [sym__immediate_decimal] = STATE(1292), + [sym_val_variable] = STATE(1291), + [sym_comment] = STATE(443), + [ts_builtin_sym_end] = ACTIONS(1584), + [anon_sym_in] = ACTIONS(1584), + [sym__newline] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1584), + [anon_sym_err_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_GT_PIPE] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1584), + [anon_sym_DOLLAR] = ACTIONS(1657), + [anon_sym_GT2] = ACTIONS(1588), + [anon_sym_DASH2] = ACTIONS(1588), + [anon_sym_STAR2] = ACTIONS(1588), + [anon_sym_and2] = ACTIONS(1584), + [anon_sym_xor2] = ACTIONS(1584), + [anon_sym_or2] = ACTIONS(1584), + [anon_sym_not_DASHin2] = ACTIONS(1584), + [anon_sym_has2] = ACTIONS(1584), + [anon_sym_not_DASHhas2] = ACTIONS(1584), + [anon_sym_starts_DASHwith2] = ACTIONS(1584), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1584), + [anon_sym_ends_DASHwith2] = ACTIONS(1584), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1584), + [anon_sym_EQ_EQ2] = ACTIONS(1584), + [anon_sym_BANG_EQ2] = ACTIONS(1584), + [anon_sym_LT2] = ACTIONS(1588), + [anon_sym_LT_EQ2] = ACTIONS(1584), + [anon_sym_GT_EQ2] = ACTIONS(1584), + [anon_sym_EQ_TILDE2] = ACTIONS(1584), + [anon_sym_BANG_TILDE2] = ACTIONS(1584), + [anon_sym_like2] = ACTIONS(1584), + [anon_sym_not_DASHlike2] = ACTIONS(1584), + [anon_sym_LPAREN2] = ACTIONS(1659), + [anon_sym_STAR_STAR2] = ACTIONS(1584), + [anon_sym_PLUS_PLUS2] = ACTIONS(1584), + [anon_sym_SLASH2] = ACTIONS(1588), + [anon_sym_mod2] = ACTIONS(1584), + [anon_sym_SLASH_SLASH2] = ACTIONS(1584), + [anon_sym_PLUS2] = ACTIONS(1588), + [anon_sym_bit_DASHshl2] = ACTIONS(1584), + [anon_sym_bit_DASHshr2] = ACTIONS(1584), + [anon_sym_bit_DASHand2] = ACTIONS(1584), + [anon_sym_bit_DASHxor2] = ACTIONS(1584), + [anon_sym_bit_DASHor2] = ACTIONS(1584), + [aux_sym__immediate_decimal_token1] = ACTIONS(1712), + [aux_sym__immediate_decimal_token2] = ACTIONS(1712), + [aux_sym__immediate_decimal_token3] = ACTIONS(1665), + [aux_sym__immediate_decimal_token4] = ACTIONS(1665), + [anon_sym_err_GT] = ACTIONS(1588), + [anon_sym_out_GT] = ACTIONS(1588), + [anon_sym_e_GT] = ACTIONS(1588), + [anon_sym_o_GT] = ACTIONS(1588), + [anon_sym_err_PLUSout_GT] = ACTIONS(1588), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1588), + [anon_sym_o_PLUSe_GT] = ACTIONS(1588), + [anon_sym_e_PLUSo_GT] = ACTIONS(1588), + [anon_sym_err_GT_GT] = ACTIONS(1584), + [anon_sym_out_GT_GT] = ACTIONS(1584), + [anon_sym_e_GT_GT] = ACTIONS(1584), + [anon_sym_o_GT_GT] = ACTIONS(1584), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1584), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1584), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1584), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1584), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(444)] = { + [sym_comment] = STATE(444), + [ts_builtin_sym_end] = ACTIONS(1706), + [anon_sym_EQ] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1732), + [anon_sym_DASH_EQ] = ACTIONS(1732), + [anon_sym_STAR_EQ] = ACTIONS(1732), + [anon_sym_SLASH_EQ] = ACTIONS(1732), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1706), + [sym__newline] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1706), + [anon_sym_err_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_GT_PIPE] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), + [anon_sym_GT2] = ACTIONS(1604), + [anon_sym_DASH2] = ACTIONS(1604), + [anon_sym_STAR2] = ACTIONS(1604), + [anon_sym_and2] = ACTIONS(1706), + [anon_sym_xor2] = ACTIONS(1706), + [anon_sym_or2] = ACTIONS(1706), + [anon_sym_not_DASHin2] = ACTIONS(1706), + [anon_sym_has2] = ACTIONS(1706), + [anon_sym_not_DASHhas2] = ACTIONS(1706), + [anon_sym_starts_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), + [anon_sym_ends_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), + [anon_sym_EQ_EQ2] = ACTIONS(1706), + [anon_sym_BANG_EQ2] = ACTIONS(1706), + [anon_sym_LT2] = ACTIONS(1604), + [anon_sym_LT_EQ2] = ACTIONS(1706), + [anon_sym_GT_EQ2] = ACTIONS(1706), + [anon_sym_EQ_TILDE2] = ACTIONS(1706), + [anon_sym_BANG_TILDE2] = ACTIONS(1706), + [anon_sym_like2] = ACTIONS(1706), + [anon_sym_not_DASHlike2] = ACTIONS(1706), + [anon_sym_STAR_STAR2] = ACTIONS(1706), + [anon_sym_PLUS_PLUS2] = ACTIONS(1604), + [anon_sym_SLASH2] = ACTIONS(1604), + [anon_sym_mod2] = ACTIONS(1706), + [anon_sym_SLASH_SLASH2] = ACTIONS(1706), + [anon_sym_PLUS2] = ACTIONS(1604), + [anon_sym_bit_DASHshl2] = ACTIONS(1706), + [anon_sym_bit_DASHshr2] = ACTIONS(1706), + [anon_sym_bit_DASHand2] = ACTIONS(1706), + [anon_sym_bit_DASHxor2] = ACTIONS(1706), + [anon_sym_bit_DASHor2] = ACTIONS(1706), + [anon_sym_DOT_DOT2] = ACTIONS(1734), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1736), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1736), + [anon_sym_err_GT] = ACTIONS(1604), + [anon_sym_out_GT] = ACTIONS(1604), + [anon_sym_e_GT] = ACTIONS(1604), + [anon_sym_o_GT] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT] = ACTIONS(1604), + [anon_sym_err_GT_GT] = ACTIONS(1706), + [anon_sym_out_GT_GT] = ACTIONS(1706), + [anon_sym_e_GT_GT] = ACTIONS(1706), + [anon_sym_o_GT_GT] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(445)] = { + [sym_comment] = STATE(445), [anon_sym_if] = ACTIONS(1531), [anon_sym_in] = ACTIONS(1531), [sym__newline] = ACTIONS(1531), @@ -81728,683 +82438,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1531), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(437)] = { - [sym__expr_parenthesized_immediate] = STATE(1328), - [sym__immediate_decimal] = STATE(1330), - [sym_val_variable] = STATE(1328), - [sym_comment] = STATE(437), - [ts_builtin_sym_end] = ACTIONS(1607), - [anon_sym_in] = ACTIONS(1607), - [sym__newline] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_err_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_GT_PIPE] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), - [anon_sym_DOLLAR] = ACTIONS(1671), - [anon_sym_GT2] = ACTIONS(1609), - [anon_sym_DASH2] = ACTIONS(1609), - [anon_sym_STAR2] = ACTIONS(1609), - [anon_sym_and2] = ACTIONS(1607), - [anon_sym_xor2] = ACTIONS(1607), - [anon_sym_or2] = ACTIONS(1607), - [anon_sym_not_DASHin2] = ACTIONS(1607), - [anon_sym_has2] = ACTIONS(1607), - [anon_sym_not_DASHhas2] = ACTIONS(1607), - [anon_sym_starts_DASHwith2] = ACTIONS(1607), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1607), - [anon_sym_ends_DASHwith2] = ACTIONS(1607), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1607), - [anon_sym_EQ_EQ2] = ACTIONS(1607), - [anon_sym_BANG_EQ2] = ACTIONS(1607), - [anon_sym_LT2] = ACTIONS(1609), - [anon_sym_LT_EQ2] = ACTIONS(1607), - [anon_sym_GT_EQ2] = ACTIONS(1607), - [anon_sym_EQ_TILDE2] = ACTIONS(1607), - [anon_sym_BANG_TILDE2] = ACTIONS(1607), - [anon_sym_like2] = ACTIONS(1607), - [anon_sym_not_DASHlike2] = ACTIONS(1607), - [anon_sym_LPAREN2] = ACTIONS(1673), - [anon_sym_STAR_STAR2] = ACTIONS(1607), - [anon_sym_PLUS_PLUS2] = ACTIONS(1607), - [anon_sym_SLASH2] = ACTIONS(1609), - [anon_sym_mod2] = ACTIONS(1607), - [anon_sym_SLASH_SLASH2] = ACTIONS(1607), - [anon_sym_PLUS2] = ACTIONS(1609), - [anon_sym_bit_DASHshl2] = ACTIONS(1607), - [anon_sym_bit_DASHshr2] = ACTIONS(1607), - [anon_sym_bit_DASHand2] = ACTIONS(1607), - [anon_sym_bit_DASHxor2] = ACTIONS(1607), - [anon_sym_bit_DASHor2] = ACTIONS(1607), - [aux_sym__immediate_decimal_token1] = ACTIONS(1710), - [aux_sym__immediate_decimal_token2] = ACTIONS(1710), - [aux_sym__immediate_decimal_token3] = ACTIONS(1679), - [aux_sym__immediate_decimal_token4] = ACTIONS(1679), - [anon_sym_err_GT] = ACTIONS(1609), - [anon_sym_out_GT] = ACTIONS(1609), - [anon_sym_e_GT] = ACTIONS(1609), - [anon_sym_o_GT] = ACTIONS(1609), - [anon_sym_err_PLUSout_GT] = ACTIONS(1609), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1609), - [anon_sym_o_PLUSe_GT] = ACTIONS(1609), - [anon_sym_e_PLUSo_GT] = ACTIONS(1609), - [anon_sym_err_GT_GT] = ACTIONS(1607), - [anon_sym_out_GT_GT] = ACTIONS(1607), - [anon_sym_e_GT_GT] = ACTIONS(1607), - [anon_sym_o_GT_GT] = ACTIONS(1607), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(438)] = { - [sym__expr_parenthesized_immediate] = STATE(1263), - [sym__immediate_decimal] = STATE(1265), - [sym_val_variable] = STATE(1263), - [sym_comment] = STATE(438), - [ts_builtin_sym_end] = ACTIONS(1582), - [anon_sym_in] = ACTIONS(1582), - [sym__newline] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_err_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_GT_PIPE] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1671), - [anon_sym_GT2] = ACTIONS(1586), - [anon_sym_DASH2] = ACTIONS(1586), - [anon_sym_STAR2] = ACTIONS(1586), - [anon_sym_and2] = ACTIONS(1582), - [anon_sym_xor2] = ACTIONS(1582), - [anon_sym_or2] = ACTIONS(1582), - [anon_sym_not_DASHin2] = ACTIONS(1582), - [anon_sym_has2] = ACTIONS(1582), - [anon_sym_not_DASHhas2] = ACTIONS(1582), - [anon_sym_starts_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1582), - [anon_sym_ends_DASHwith2] = ACTIONS(1582), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1582), - [anon_sym_EQ_EQ2] = ACTIONS(1582), - [anon_sym_BANG_EQ2] = ACTIONS(1582), - [anon_sym_LT2] = ACTIONS(1586), - [anon_sym_LT_EQ2] = ACTIONS(1582), - [anon_sym_GT_EQ2] = ACTIONS(1582), - [anon_sym_EQ_TILDE2] = ACTIONS(1582), - [anon_sym_BANG_TILDE2] = ACTIONS(1582), - [anon_sym_like2] = ACTIONS(1582), - [anon_sym_not_DASHlike2] = ACTIONS(1582), - [anon_sym_LPAREN2] = ACTIONS(1673), - [anon_sym_STAR_STAR2] = ACTIONS(1582), - [anon_sym_PLUS_PLUS2] = ACTIONS(1582), - [anon_sym_SLASH2] = ACTIONS(1586), - [anon_sym_mod2] = ACTIONS(1582), - [anon_sym_SLASH_SLASH2] = ACTIONS(1582), - [anon_sym_PLUS2] = ACTIONS(1586), - [anon_sym_bit_DASHshl2] = ACTIONS(1582), - [anon_sym_bit_DASHshr2] = ACTIONS(1582), - [anon_sym_bit_DASHand2] = ACTIONS(1582), - [anon_sym_bit_DASHxor2] = ACTIONS(1582), - [anon_sym_bit_DASHor2] = ACTIONS(1582), - [aux_sym__immediate_decimal_token1] = ACTIONS(1710), - [aux_sym__immediate_decimal_token2] = ACTIONS(1710), - [aux_sym__immediate_decimal_token3] = ACTIONS(1679), - [aux_sym__immediate_decimal_token4] = ACTIONS(1679), - [anon_sym_err_GT] = ACTIONS(1586), - [anon_sym_out_GT] = ACTIONS(1586), - [anon_sym_e_GT] = ACTIONS(1586), - [anon_sym_o_GT] = ACTIONS(1586), - [anon_sym_err_PLUSout_GT] = ACTIONS(1586), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1586), - [anon_sym_o_PLUSe_GT] = ACTIONS(1586), - [anon_sym_e_PLUSo_GT] = ACTIONS(1586), - [anon_sym_err_GT_GT] = ACTIONS(1582), - [anon_sym_out_GT_GT] = ACTIONS(1582), - [anon_sym_e_GT_GT] = ACTIONS(1582), - [anon_sym_o_GT_GT] = ACTIONS(1582), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1582), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1582), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1582), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1582), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(439)] = { - [sym_comment] = STATE(439), - [anon_sym_EQ] = ACTIONS(1712), - [anon_sym_PLUS_EQ] = ACTIONS(1714), - [anon_sym_DASH_EQ] = ACTIONS(1714), - [anon_sym_STAR_EQ] = ACTIONS(1714), - [anon_sym_SLASH_EQ] = ACTIONS(1714), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1714), - [anon_sym_in] = ACTIONS(1689), - [sym__newline] = ACTIONS(1689), - [anon_sym_SEMI] = ACTIONS(1689), - [anon_sym_PIPE] = ACTIONS(1689), - [anon_sym_err_GT_PIPE] = ACTIONS(1689), - [anon_sym_out_GT_PIPE] = ACTIONS(1689), - [anon_sym_e_GT_PIPE] = ACTIONS(1689), - [anon_sym_o_GT_PIPE] = ACTIONS(1689), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), - [anon_sym_RPAREN] = ACTIONS(1689), - [anon_sym_GT2] = ACTIONS(1615), - [anon_sym_DASH2] = ACTIONS(1615), - [anon_sym_STAR2] = ACTIONS(1615), - [anon_sym_and2] = ACTIONS(1689), - [anon_sym_xor2] = ACTIONS(1689), - [anon_sym_or2] = ACTIONS(1689), - [anon_sym_not_DASHin2] = ACTIONS(1689), - [anon_sym_has2] = ACTIONS(1689), - [anon_sym_not_DASHhas2] = ACTIONS(1689), - [anon_sym_starts_DASHwith2] = ACTIONS(1689), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1689), - [anon_sym_ends_DASHwith2] = ACTIONS(1689), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1689), - [anon_sym_EQ_EQ2] = ACTIONS(1689), - [anon_sym_BANG_EQ2] = ACTIONS(1689), - [anon_sym_LT2] = ACTIONS(1615), - [anon_sym_LT_EQ2] = ACTIONS(1689), - [anon_sym_GT_EQ2] = ACTIONS(1689), - [anon_sym_EQ_TILDE2] = ACTIONS(1689), - [anon_sym_BANG_TILDE2] = ACTIONS(1689), - [anon_sym_like2] = ACTIONS(1689), - [anon_sym_not_DASHlike2] = ACTIONS(1689), - [anon_sym_STAR_STAR2] = ACTIONS(1689), - [anon_sym_PLUS_PLUS2] = ACTIONS(1615), - [anon_sym_SLASH2] = ACTIONS(1615), - [anon_sym_mod2] = ACTIONS(1689), - [anon_sym_SLASH_SLASH2] = ACTIONS(1689), - [anon_sym_PLUS2] = ACTIONS(1615), - [anon_sym_bit_DASHshl2] = ACTIONS(1689), - [anon_sym_bit_DASHshr2] = ACTIONS(1689), - [anon_sym_bit_DASHand2] = ACTIONS(1689), - [anon_sym_bit_DASHxor2] = ACTIONS(1689), - [anon_sym_bit_DASHor2] = ACTIONS(1689), - [anon_sym_DOT_DOT2] = ACTIONS(1619), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), - [anon_sym_err_GT] = ACTIONS(1615), - [anon_sym_out_GT] = ACTIONS(1615), - [anon_sym_e_GT] = ACTIONS(1615), - [anon_sym_o_GT] = ACTIONS(1615), - [anon_sym_err_PLUSout_GT] = ACTIONS(1615), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), - [anon_sym_o_PLUSe_GT] = ACTIONS(1615), - [anon_sym_e_PLUSo_GT] = ACTIONS(1615), - [anon_sym_err_GT_GT] = ACTIONS(1689), - [anon_sym_out_GT_GT] = ACTIONS(1689), - [anon_sym_e_GT_GT] = ACTIONS(1689), - [anon_sym_o_GT_GT] = ACTIONS(1689), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(440)] = { - [sym_comment] = STATE(440), - [ts_builtin_sym_end] = ACTIONS(1689), - [anon_sym_EQ] = ACTIONS(1716), - [anon_sym_PLUS_EQ] = ACTIONS(1718), - [anon_sym_DASH_EQ] = ACTIONS(1718), - [anon_sym_STAR_EQ] = ACTIONS(1718), - [anon_sym_SLASH_EQ] = ACTIONS(1718), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1718), - [anon_sym_in] = ACTIONS(1689), - [sym__newline] = ACTIONS(1689), - [anon_sym_SEMI] = ACTIONS(1689), - [anon_sym_PIPE] = ACTIONS(1689), - [anon_sym_err_GT_PIPE] = ACTIONS(1689), - [anon_sym_out_GT_PIPE] = ACTIONS(1689), - [anon_sym_e_GT_PIPE] = ACTIONS(1689), - [anon_sym_o_GT_PIPE] = ACTIONS(1689), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), - [anon_sym_GT2] = ACTIONS(1615), - [anon_sym_DASH2] = ACTIONS(1615), - [anon_sym_STAR2] = ACTIONS(1615), - [anon_sym_and2] = ACTIONS(1689), - [anon_sym_xor2] = ACTIONS(1689), - [anon_sym_or2] = ACTIONS(1689), - [anon_sym_not_DASHin2] = ACTIONS(1689), - [anon_sym_has2] = ACTIONS(1689), - [anon_sym_not_DASHhas2] = ACTIONS(1689), - [anon_sym_starts_DASHwith2] = ACTIONS(1689), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1689), - [anon_sym_ends_DASHwith2] = ACTIONS(1689), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1689), - [anon_sym_EQ_EQ2] = ACTIONS(1689), - [anon_sym_BANG_EQ2] = ACTIONS(1689), - [anon_sym_LT2] = ACTIONS(1615), - [anon_sym_LT_EQ2] = ACTIONS(1689), - [anon_sym_GT_EQ2] = ACTIONS(1689), - [anon_sym_EQ_TILDE2] = ACTIONS(1689), - [anon_sym_BANG_TILDE2] = ACTIONS(1689), - [anon_sym_like2] = ACTIONS(1689), - [anon_sym_not_DASHlike2] = ACTIONS(1689), - [anon_sym_STAR_STAR2] = ACTIONS(1689), - [anon_sym_PLUS_PLUS2] = ACTIONS(1615), - [anon_sym_SLASH2] = ACTIONS(1615), - [anon_sym_mod2] = ACTIONS(1689), - [anon_sym_SLASH_SLASH2] = ACTIONS(1689), - [anon_sym_PLUS2] = ACTIONS(1615), - [anon_sym_bit_DASHshl2] = ACTIONS(1689), - [anon_sym_bit_DASHshr2] = ACTIONS(1689), - [anon_sym_bit_DASHand2] = ACTIONS(1689), - [anon_sym_bit_DASHxor2] = ACTIONS(1689), - [anon_sym_bit_DASHor2] = ACTIONS(1689), - [anon_sym_DOT_DOT2] = ACTIONS(1720), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1722), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1722), - [anon_sym_err_GT] = ACTIONS(1615), - [anon_sym_out_GT] = ACTIONS(1615), - [anon_sym_e_GT] = ACTIONS(1615), - [anon_sym_o_GT] = ACTIONS(1615), - [anon_sym_err_PLUSout_GT] = ACTIONS(1615), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), - [anon_sym_o_PLUSe_GT] = ACTIONS(1615), - [anon_sym_e_PLUSo_GT] = ACTIONS(1615), - [anon_sym_err_GT_GT] = ACTIONS(1689), - [anon_sym_out_GT_GT] = ACTIONS(1689), - [anon_sym_e_GT_GT] = ACTIONS(1689), - [anon_sym_o_GT_GT] = ACTIONS(1689), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(441)] = { - [sym_comment] = STATE(441), - [anon_sym_if] = ACTIONS(1527), - [anon_sym_in] = ACTIONS(1527), - [sym__newline] = ACTIONS(1527), - [anon_sym_SEMI] = ACTIONS(1527), - [anon_sym_PIPE] = ACTIONS(1527), - [anon_sym_err_GT_PIPE] = ACTIONS(1527), - [anon_sym_out_GT_PIPE] = ACTIONS(1527), - [anon_sym_e_GT_PIPE] = ACTIONS(1527), - [anon_sym_o_GT_PIPE] = ACTIONS(1527), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1527), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1527), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1527), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1527), - [anon_sym_RPAREN] = ACTIONS(1527), - [anon_sym_GT2] = ACTIONS(1525), - [anon_sym_DASH2] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_RBRACE] = ACTIONS(1527), - [anon_sym_EQ_GT] = ACTIONS(1527), - [anon_sym_STAR2] = ACTIONS(1525), - [anon_sym_and2] = ACTIONS(1527), - [anon_sym_xor2] = ACTIONS(1527), - [anon_sym_or2] = ACTIONS(1527), - [anon_sym_not_DASHin2] = ACTIONS(1527), - [anon_sym_has2] = ACTIONS(1527), - [anon_sym_not_DASHhas2] = ACTIONS(1527), - [anon_sym_starts_DASHwith2] = ACTIONS(1527), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1527), - [anon_sym_ends_DASHwith2] = ACTIONS(1527), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1527), - [anon_sym_EQ_EQ2] = ACTIONS(1527), - [anon_sym_BANG_EQ2] = ACTIONS(1527), - [anon_sym_LT2] = ACTIONS(1525), - [anon_sym_LT_EQ2] = ACTIONS(1527), - [anon_sym_GT_EQ2] = ACTIONS(1527), - [anon_sym_EQ_TILDE2] = ACTIONS(1527), - [anon_sym_BANG_TILDE2] = ACTIONS(1527), - [anon_sym_like2] = ACTIONS(1527), - [anon_sym_not_DASHlike2] = ACTIONS(1527), - [anon_sym_STAR_STAR2] = ACTIONS(1527), - [anon_sym_PLUS_PLUS2] = ACTIONS(1527), - [anon_sym_SLASH2] = ACTIONS(1525), - [anon_sym_mod2] = ACTIONS(1527), - [anon_sym_SLASH_SLASH2] = ACTIONS(1527), - [anon_sym_PLUS2] = ACTIONS(1525), - [anon_sym_bit_DASHshl2] = ACTIONS(1527), - [anon_sym_bit_DASHshr2] = ACTIONS(1527), - [anon_sym_bit_DASHand2] = ACTIONS(1527), - [anon_sym_bit_DASHxor2] = ACTIONS(1527), - [anon_sym_bit_DASHor2] = ACTIONS(1527), - [anon_sym_DOT_DOT2] = ACTIONS(1525), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1527), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1527), - [anon_sym_COLON2] = ACTIONS(1527), - [anon_sym_DOT2] = ACTIONS(1525), - [anon_sym_err_GT] = ACTIONS(1525), - [anon_sym_out_GT] = ACTIONS(1525), - [anon_sym_e_GT] = ACTIONS(1525), - [anon_sym_o_GT] = ACTIONS(1525), - [anon_sym_err_PLUSout_GT] = ACTIONS(1525), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), - [anon_sym_o_PLUSe_GT] = ACTIONS(1525), - [anon_sym_e_PLUSo_GT] = ACTIONS(1525), - [anon_sym_err_GT_GT] = ACTIONS(1527), - [anon_sym_out_GT_GT] = ACTIONS(1527), - [anon_sym_e_GT_GT] = ACTIONS(1527), - [anon_sym_o_GT_GT] = ACTIONS(1527), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1527), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1527), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1527), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1527), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(442)] = { - [sym_comment] = STATE(442), - [ts_builtin_sym_end] = ACTIONS(749), - [anon_sym_in] = ACTIONS(749), - [sym__newline] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(749), - [anon_sym_PIPE] = ACTIONS(749), - [anon_sym_err_GT_PIPE] = ACTIONS(749), - [anon_sym_out_GT_PIPE] = ACTIONS(749), - [anon_sym_e_GT_PIPE] = ACTIONS(749), - [anon_sym_o_GT_PIPE] = ACTIONS(749), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(749), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(749), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(749), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(749), - [anon_sym_GT2] = ACTIONS(747), - [anon_sym_DASH2] = ACTIONS(749), - [anon_sym_STAR2] = ACTIONS(747), - [anon_sym_and2] = ACTIONS(749), - [anon_sym_xor2] = ACTIONS(749), - [anon_sym_or2] = ACTIONS(749), - [anon_sym_not_DASHin2] = ACTIONS(749), - [anon_sym_has2] = ACTIONS(749), - [anon_sym_not_DASHhas2] = ACTIONS(749), - [anon_sym_starts_DASHwith2] = ACTIONS(749), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(749), - [anon_sym_ends_DASHwith2] = ACTIONS(749), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(749), - [anon_sym_EQ_EQ2] = ACTIONS(749), - [anon_sym_BANG_EQ2] = ACTIONS(749), - [anon_sym_LT2] = ACTIONS(747), - [anon_sym_LT_EQ2] = ACTIONS(749), - [anon_sym_GT_EQ2] = ACTIONS(749), - [anon_sym_EQ_TILDE2] = ACTIONS(749), - [anon_sym_BANG_TILDE2] = ACTIONS(749), - [anon_sym_like2] = ACTIONS(749), - [anon_sym_not_DASHlike2] = ACTIONS(749), - [anon_sym_LPAREN2] = ACTIONS(749), - [anon_sym_STAR_STAR2] = ACTIONS(749), - [anon_sym_PLUS_PLUS2] = ACTIONS(749), - [anon_sym_SLASH2] = ACTIONS(747), - [anon_sym_mod2] = ACTIONS(749), - [anon_sym_SLASH_SLASH2] = ACTIONS(749), - [anon_sym_PLUS2] = ACTIONS(747), - [anon_sym_bit_DASHshl2] = ACTIONS(749), - [anon_sym_bit_DASHshr2] = ACTIONS(749), - [anon_sym_bit_DASHand2] = ACTIONS(749), - [anon_sym_bit_DASHxor2] = ACTIONS(749), - [anon_sym_bit_DASHor2] = ACTIONS(749), - [anon_sym_DOT_DOT2] = ACTIONS(747), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(749), - [anon_sym_DOT_DOT_LT2] = ACTIONS(749), - [aux_sym__immediate_decimal_token1] = ACTIONS(1724), - [aux_sym__immediate_decimal_token5] = ACTIONS(1726), - [sym_filesize_unit] = ACTIONS(747), - [sym_duration_unit] = ACTIONS(749), - [anon_sym_err_GT] = ACTIONS(747), - [anon_sym_out_GT] = ACTIONS(747), - [anon_sym_e_GT] = ACTIONS(747), - [anon_sym_o_GT] = ACTIONS(747), - [anon_sym_err_PLUSout_GT] = ACTIONS(747), - [anon_sym_out_PLUSerr_GT] = ACTIONS(747), - [anon_sym_o_PLUSe_GT] = ACTIONS(747), - [anon_sym_e_PLUSo_GT] = ACTIONS(747), - [anon_sym_err_GT_GT] = ACTIONS(749), - [anon_sym_out_GT_GT] = ACTIONS(749), - [anon_sym_e_GT_GT] = ACTIONS(749), - [anon_sym_o_GT_GT] = ACTIONS(749), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(749), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(749), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(749), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(749), - [sym__unquoted_pattern] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(443)] = { - [sym_comment] = STATE(443), - [anon_sym_in] = ACTIONS(1728), - [sym__newline] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_err_GT_PIPE] = ACTIONS(1728), - [anon_sym_out_GT_PIPE] = ACTIONS(1728), - [anon_sym_e_GT_PIPE] = ACTIONS(1728), - [anon_sym_o_GT_PIPE] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1728), - [anon_sym_RPAREN] = ACTIONS(1728), - [anon_sym_GT2] = ACTIONS(1730), - [anon_sym_DASH2] = ACTIONS(1728), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_RBRACE] = ACTIONS(1728), - [anon_sym_STAR2] = ACTIONS(1730), - [anon_sym_and2] = ACTIONS(1728), - [anon_sym_xor2] = ACTIONS(1728), - [anon_sym_or2] = ACTIONS(1728), - [anon_sym_not_DASHin2] = ACTIONS(1728), - [anon_sym_has2] = ACTIONS(1728), - [anon_sym_not_DASHhas2] = ACTIONS(1728), - [anon_sym_starts_DASHwith2] = ACTIONS(1728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1728), - [anon_sym_ends_DASHwith2] = ACTIONS(1728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1728), - [anon_sym_EQ_EQ2] = ACTIONS(1728), - [anon_sym_BANG_EQ2] = ACTIONS(1728), - [anon_sym_LT2] = ACTIONS(1730), - [anon_sym_LT_EQ2] = ACTIONS(1728), - [anon_sym_GT_EQ2] = ACTIONS(1728), - [anon_sym_EQ_TILDE2] = ACTIONS(1728), - [anon_sym_BANG_TILDE2] = ACTIONS(1728), - [anon_sym_like2] = ACTIONS(1728), - [anon_sym_not_DASHlike2] = ACTIONS(1728), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_STAR_STAR2] = ACTIONS(1728), - [anon_sym_PLUS_PLUS2] = ACTIONS(1728), - [anon_sym_SLASH2] = ACTIONS(1730), - [anon_sym_mod2] = ACTIONS(1728), - [anon_sym_SLASH_SLASH2] = ACTIONS(1728), - [anon_sym_PLUS2] = ACTIONS(1730), - [anon_sym_bit_DASHshl2] = ACTIONS(1728), - [anon_sym_bit_DASHshr2] = ACTIONS(1728), - [anon_sym_bit_DASHand2] = ACTIONS(1728), - [anon_sym_bit_DASHxor2] = ACTIONS(1728), - [anon_sym_bit_DASHor2] = ACTIONS(1728), - [anon_sym_DOT_DOT2] = ACTIONS(1730), - [anon_sym_DOT] = ACTIONS(1732), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1728), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1728), - [aux_sym__immediate_decimal_token5] = ACTIONS(1734), - [anon_sym_err_GT] = ACTIONS(1730), - [anon_sym_out_GT] = ACTIONS(1730), - [anon_sym_e_GT] = ACTIONS(1730), - [anon_sym_o_GT] = ACTIONS(1730), - [anon_sym_err_PLUSout_GT] = ACTIONS(1730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1730), - [anon_sym_o_PLUSe_GT] = ACTIONS(1730), - [anon_sym_e_PLUSo_GT] = ACTIONS(1730), - [anon_sym_err_GT_GT] = ACTIONS(1728), - [anon_sym_out_GT_GT] = ACTIONS(1728), - [anon_sym_e_GT_GT] = ACTIONS(1728), - [anon_sym_o_GT_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1728), - [sym__unquoted_pattern] = ACTIONS(1730), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(444)] = { - [sym_comment] = STATE(444), - [anon_sym_in] = ACTIONS(1448), - [sym__newline] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_err_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_GT_PIPE] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), - [anon_sym_RPAREN] = ACTIONS(1448), - [anon_sym_GT2] = ACTIONS(1446), - [anon_sym_DASH2] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_EQ_GT] = ACTIONS(1448), - [anon_sym_STAR2] = ACTIONS(1446), - [anon_sym_and2] = ACTIONS(1448), - [anon_sym_xor2] = ACTIONS(1448), - [anon_sym_or2] = ACTIONS(1448), - [anon_sym_not_DASHin2] = ACTIONS(1448), - [anon_sym_has2] = ACTIONS(1448), - [anon_sym_not_DASHhas2] = ACTIONS(1448), - [anon_sym_starts_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1448), - [anon_sym_ends_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), - [anon_sym_EQ_EQ2] = ACTIONS(1448), - [anon_sym_BANG_EQ2] = ACTIONS(1448), - [anon_sym_LT2] = ACTIONS(1446), - [anon_sym_LT_EQ2] = ACTIONS(1448), - [anon_sym_GT_EQ2] = ACTIONS(1448), - [anon_sym_EQ_TILDE2] = ACTIONS(1448), - [anon_sym_BANG_TILDE2] = ACTIONS(1448), - [anon_sym_like2] = ACTIONS(1448), - [anon_sym_not_DASHlike2] = ACTIONS(1448), - [anon_sym_STAR_STAR2] = ACTIONS(1448), - [anon_sym_PLUS_PLUS2] = ACTIONS(1448), - [anon_sym_SLASH2] = ACTIONS(1446), - [anon_sym_mod2] = ACTIONS(1448), - [anon_sym_SLASH_SLASH2] = ACTIONS(1448), - [anon_sym_PLUS2] = ACTIONS(1446), - [anon_sym_bit_DASHshl2] = ACTIONS(1448), - [anon_sym_bit_DASHshr2] = ACTIONS(1448), - [anon_sym_bit_DASHand2] = ACTIONS(1448), - [anon_sym_bit_DASHxor2] = ACTIONS(1448), - [anon_sym_bit_DASHor2] = ACTIONS(1448), - [anon_sym_DOT_DOT2] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), - [anon_sym_COLON2] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1736), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1446), - [anon_sym_out_GT] = ACTIONS(1446), - [anon_sym_e_GT] = ACTIONS(1446), - [anon_sym_o_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT] = ACTIONS(1446), - [anon_sym_err_GT_GT] = ACTIONS(1448), - [anon_sym_out_GT_GT] = ACTIONS(1448), - [anon_sym_e_GT_GT] = ACTIONS(1448), - [anon_sym_o_GT_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(445)] = { - [sym_comment] = STATE(445), - [anon_sym_in] = ACTIONS(741), - [sym__newline] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(741), - [anon_sym_err_GT_PIPE] = ACTIONS(741), - [anon_sym_out_GT_PIPE] = ACTIONS(741), - [anon_sym_e_GT_PIPE] = ACTIONS(741), - [anon_sym_o_GT_PIPE] = ACTIONS(741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(741), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(741), - [anon_sym_RBRACE] = ACTIONS(741), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(741), - [anon_sym_xor2] = ACTIONS(741), - [anon_sym_or2] = ACTIONS(741), - [anon_sym_not_DASHin2] = ACTIONS(741), - [anon_sym_has2] = ACTIONS(741), - [anon_sym_not_DASHhas2] = ACTIONS(741), - [anon_sym_starts_DASHwith2] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(741), - [anon_sym_ends_DASHwith2] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(741), - [anon_sym_EQ_EQ2] = ACTIONS(741), - [anon_sym_BANG_EQ2] = ACTIONS(741), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(741), - [anon_sym_GT_EQ2] = ACTIONS(741), - [anon_sym_EQ_TILDE2] = ACTIONS(741), - [anon_sym_BANG_TILDE2] = ACTIONS(741), - [anon_sym_like2] = ACTIONS(741), - [anon_sym_not_DASHlike2] = ACTIONS(741), - [anon_sym_LPAREN2] = ACTIONS(741), - [anon_sym_STAR_STAR2] = ACTIONS(741), - [anon_sym_PLUS_PLUS2] = ACTIONS(741), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(741), - [anon_sym_SLASH_SLASH2] = ACTIONS(741), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(741), - [anon_sym_bit_DASHshr2] = ACTIONS(741), - [anon_sym_bit_DASHand2] = ACTIONS(741), - [anon_sym_bit_DASHxor2] = ACTIONS(741), - [anon_sym_bit_DASHor2] = ACTIONS(741), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1708), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(741), - [anon_sym_out_GT_GT] = ACTIONS(741), - [anon_sym_e_GT_GT] = ACTIONS(741), - [anon_sym_o_GT_GT] = ACTIONS(741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(741), - [sym__unquoted_pattern] = ACTIONS(739), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(446)] = { [sym_comment] = STATE(446), + [anon_sym_if] = ACTIONS(1515), + [anon_sym_in] = ACTIONS(1515), + [sym__newline] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_err_GT_PIPE] = ACTIONS(1515), + [anon_sym_out_GT_PIPE] = ACTIONS(1515), + [anon_sym_e_GT_PIPE] = ACTIONS(1515), + [anon_sym_o_GT_PIPE] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1515), + [anon_sym_RPAREN] = ACTIONS(1515), + [anon_sym_GT2] = ACTIONS(1513), + [anon_sym_DASH2] = ACTIONS(1515), + [anon_sym_LBRACE] = ACTIONS(1515), + [anon_sym_RBRACE] = ACTIONS(1515), + [anon_sym_EQ_GT] = ACTIONS(1515), + [anon_sym_STAR2] = ACTIONS(1513), + [anon_sym_and2] = ACTIONS(1515), + [anon_sym_xor2] = ACTIONS(1515), + [anon_sym_or2] = ACTIONS(1515), + [anon_sym_not_DASHin2] = ACTIONS(1515), + [anon_sym_has2] = ACTIONS(1515), + [anon_sym_not_DASHhas2] = ACTIONS(1515), + [anon_sym_starts_DASHwith2] = ACTIONS(1515), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1515), + [anon_sym_ends_DASHwith2] = ACTIONS(1515), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1515), + [anon_sym_EQ_EQ2] = ACTIONS(1515), + [anon_sym_BANG_EQ2] = ACTIONS(1515), + [anon_sym_LT2] = ACTIONS(1513), + [anon_sym_LT_EQ2] = ACTIONS(1515), + [anon_sym_GT_EQ2] = ACTIONS(1515), + [anon_sym_EQ_TILDE2] = ACTIONS(1515), + [anon_sym_BANG_TILDE2] = ACTIONS(1515), + [anon_sym_like2] = ACTIONS(1515), + [anon_sym_not_DASHlike2] = ACTIONS(1515), + [anon_sym_STAR_STAR2] = ACTIONS(1515), + [anon_sym_PLUS_PLUS2] = ACTIONS(1515), + [anon_sym_SLASH2] = ACTIONS(1513), + [anon_sym_mod2] = ACTIONS(1515), + [anon_sym_SLASH_SLASH2] = ACTIONS(1515), + [anon_sym_PLUS2] = ACTIONS(1513), + [anon_sym_bit_DASHshl2] = ACTIONS(1515), + [anon_sym_bit_DASHshr2] = ACTIONS(1515), + [anon_sym_bit_DASHand2] = ACTIONS(1515), + [anon_sym_bit_DASHxor2] = ACTIONS(1515), + [anon_sym_bit_DASHor2] = ACTIONS(1515), + [anon_sym_DOT_DOT2] = ACTIONS(1513), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1515), + [anon_sym_COLON2] = ACTIONS(1515), + [anon_sym_DOT2] = ACTIONS(1513), + [anon_sym_err_GT] = ACTIONS(1513), + [anon_sym_out_GT] = ACTIONS(1513), + [anon_sym_e_GT] = ACTIONS(1513), + [anon_sym_o_GT] = ACTIONS(1513), + [anon_sym_err_PLUSout_GT] = ACTIONS(1513), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1513), + [anon_sym_o_PLUSe_GT] = ACTIONS(1513), + [anon_sym_e_PLUSo_GT] = ACTIONS(1513), + [anon_sym_err_GT_GT] = ACTIONS(1515), + [anon_sym_out_GT_GT] = ACTIONS(1515), + [anon_sym_e_GT_GT] = ACTIONS(1515), + [anon_sym_o_GT_GT] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1515), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(447)] = { + [sym_comment] = STATE(447), [anon_sym_in] = ACTIONS(1738), [sym__newline] = ACTIONS(1738), [anon_sym_SEMI] = ACTIONS(1738), @@ -82478,83 +82588,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(1740), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(447)] = { - [sym_comment] = STATE(447), + [STATE(448)] = { + [sym_comment] = STATE(448), [anon_sym_EQ] = ACTIONS(1746), [anon_sym_PLUS_EQ] = ACTIONS(1748), [anon_sym_DASH_EQ] = ACTIONS(1748), [anon_sym_STAR_EQ] = ACTIONS(1748), [anon_sym_SLASH_EQ] = ACTIONS(1748), [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1748), - [anon_sym_in] = ACTIONS(1689), - [sym__newline] = ACTIONS(1689), - [anon_sym_SEMI] = ACTIONS(1689), - [anon_sym_PIPE] = ACTIONS(1689), - [anon_sym_err_GT_PIPE] = ACTIONS(1689), - [anon_sym_out_GT_PIPE] = ACTIONS(1689), - [anon_sym_e_GT_PIPE] = ACTIONS(1689), - [anon_sym_o_GT_PIPE] = ACTIONS(1689), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), - [anon_sym_RPAREN] = ACTIONS(1689), - [anon_sym_GT2] = ACTIONS(1615), - [anon_sym_DASH2] = ACTIONS(1615), - [anon_sym_STAR2] = ACTIONS(1615), - [anon_sym_and2] = ACTIONS(1689), - [anon_sym_xor2] = ACTIONS(1689), - [anon_sym_or2] = ACTIONS(1689), - [anon_sym_not_DASHin2] = ACTIONS(1689), - [anon_sym_has2] = ACTIONS(1689), - [anon_sym_not_DASHhas2] = ACTIONS(1689), - [anon_sym_starts_DASHwith2] = ACTIONS(1689), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1689), - [anon_sym_ends_DASHwith2] = ACTIONS(1689), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1689), - [anon_sym_EQ_EQ2] = ACTIONS(1689), - [anon_sym_BANG_EQ2] = ACTIONS(1689), - [anon_sym_LT2] = ACTIONS(1615), - [anon_sym_LT_EQ2] = ACTIONS(1689), - [anon_sym_GT_EQ2] = ACTIONS(1689), - [anon_sym_EQ_TILDE2] = ACTIONS(1689), - [anon_sym_BANG_TILDE2] = ACTIONS(1689), - [anon_sym_like2] = ACTIONS(1689), - [anon_sym_not_DASHlike2] = ACTIONS(1689), - [anon_sym_STAR_STAR2] = ACTIONS(1689), - [anon_sym_PLUS_PLUS2] = ACTIONS(1615), - [anon_sym_SLASH2] = ACTIONS(1615), - [anon_sym_mod2] = ACTIONS(1689), - [anon_sym_SLASH_SLASH2] = ACTIONS(1689), - [anon_sym_PLUS2] = ACTIONS(1615), - [anon_sym_bit_DASHshl2] = ACTIONS(1689), - [anon_sym_bit_DASHshr2] = ACTIONS(1689), - [anon_sym_bit_DASHand2] = ACTIONS(1689), - [anon_sym_bit_DASHxor2] = ACTIONS(1689), - [anon_sym_bit_DASHor2] = ACTIONS(1689), - [anon_sym_DOT_DOT2] = ACTIONS(1619), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), - [anon_sym_err_GT] = ACTIONS(1615), - [anon_sym_out_GT] = ACTIONS(1615), - [anon_sym_e_GT] = ACTIONS(1615), - [anon_sym_o_GT] = ACTIONS(1615), - [anon_sym_err_PLUSout_GT] = ACTIONS(1615), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), - [anon_sym_o_PLUSe_GT] = ACTIONS(1615), - [anon_sym_e_PLUSo_GT] = ACTIONS(1615), - [anon_sym_err_GT_GT] = ACTIONS(1689), - [anon_sym_out_GT_GT] = ACTIONS(1689), - [anon_sym_e_GT_GT] = ACTIONS(1689), - [anon_sym_o_GT_GT] = ACTIONS(1689), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), + [anon_sym_in] = ACTIONS(1706), + [sym__newline] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1706), + [anon_sym_err_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_GT_PIPE] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), + [anon_sym_RPAREN] = ACTIONS(1706), + [anon_sym_GT2] = ACTIONS(1604), + [anon_sym_DASH2] = ACTIONS(1604), + [anon_sym_STAR2] = ACTIONS(1604), + [anon_sym_and2] = ACTIONS(1706), + [anon_sym_xor2] = ACTIONS(1706), + [anon_sym_or2] = ACTIONS(1706), + [anon_sym_not_DASHin2] = ACTIONS(1706), + [anon_sym_has2] = ACTIONS(1706), + [anon_sym_not_DASHhas2] = ACTIONS(1706), + [anon_sym_starts_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), + [anon_sym_ends_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), + [anon_sym_EQ_EQ2] = ACTIONS(1706), + [anon_sym_BANG_EQ2] = ACTIONS(1706), + [anon_sym_LT2] = ACTIONS(1604), + [anon_sym_LT_EQ2] = ACTIONS(1706), + [anon_sym_GT_EQ2] = ACTIONS(1706), + [anon_sym_EQ_TILDE2] = ACTIONS(1706), + [anon_sym_BANG_TILDE2] = ACTIONS(1706), + [anon_sym_like2] = ACTIONS(1706), + [anon_sym_not_DASHlike2] = ACTIONS(1706), + [anon_sym_STAR_STAR2] = ACTIONS(1706), + [anon_sym_PLUS_PLUS2] = ACTIONS(1604), + [anon_sym_SLASH2] = ACTIONS(1604), + [anon_sym_mod2] = ACTIONS(1706), + [anon_sym_SLASH_SLASH2] = ACTIONS(1706), + [anon_sym_PLUS2] = ACTIONS(1604), + [anon_sym_bit_DASHshl2] = ACTIONS(1706), + [anon_sym_bit_DASHshr2] = ACTIONS(1706), + [anon_sym_bit_DASHand2] = ACTIONS(1706), + [anon_sym_bit_DASHxor2] = ACTIONS(1706), + [anon_sym_bit_DASHor2] = ACTIONS(1706), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), + [anon_sym_err_GT] = ACTIONS(1604), + [anon_sym_out_GT] = ACTIONS(1604), + [anon_sym_e_GT] = ACTIONS(1604), + [anon_sym_o_GT] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT] = ACTIONS(1604), + [anon_sym_err_GT_GT] = ACTIONS(1706), + [anon_sym_out_GT_GT] = ACTIONS(1706), + [anon_sym_e_GT_GT] = ACTIONS(1706), + [anon_sym_o_GT_GT] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(448)] = { - [sym_comment] = STATE(448), + [STATE(449)] = { + [sym_comment] = STATE(449), + [anon_sym_in] = ACTIONS(1750), + [sym__newline] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1750), + [anon_sym_err_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_GT_PIPE] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1750), + [anon_sym_RPAREN] = ACTIONS(1750), + [anon_sym_GT2] = ACTIONS(1752), + [anon_sym_DASH2] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1750), + [anon_sym_RBRACE] = ACTIONS(1750), + [anon_sym_STAR2] = ACTIONS(1752), + [anon_sym_and2] = ACTIONS(1750), + [anon_sym_xor2] = ACTIONS(1750), + [anon_sym_or2] = ACTIONS(1750), + [anon_sym_not_DASHin2] = ACTIONS(1750), + [anon_sym_has2] = ACTIONS(1750), + [anon_sym_not_DASHhas2] = ACTIONS(1750), + [anon_sym_starts_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1750), + [anon_sym_ends_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1750), + [anon_sym_EQ_EQ2] = ACTIONS(1750), + [anon_sym_BANG_EQ2] = ACTIONS(1750), + [anon_sym_LT2] = ACTIONS(1752), + [anon_sym_LT_EQ2] = ACTIONS(1750), + [anon_sym_GT_EQ2] = ACTIONS(1750), + [anon_sym_EQ_TILDE2] = ACTIONS(1750), + [anon_sym_BANG_TILDE2] = ACTIONS(1750), + [anon_sym_like2] = ACTIONS(1750), + [anon_sym_not_DASHlike2] = ACTIONS(1750), + [anon_sym_LPAREN2] = ACTIONS(1750), + [anon_sym_STAR_STAR2] = ACTIONS(1750), + [anon_sym_PLUS_PLUS2] = ACTIONS(1750), + [anon_sym_SLASH2] = ACTIONS(1752), + [anon_sym_mod2] = ACTIONS(1750), + [anon_sym_SLASH_SLASH2] = ACTIONS(1750), + [anon_sym_PLUS2] = ACTIONS(1752), + [anon_sym_bit_DASHshl2] = ACTIONS(1750), + [anon_sym_bit_DASHshr2] = ACTIONS(1750), + [anon_sym_bit_DASHand2] = ACTIONS(1750), + [anon_sym_bit_DASHxor2] = ACTIONS(1750), + [anon_sym_bit_DASHor2] = ACTIONS(1750), + [anon_sym_DOT_DOT2] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1750), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1750), + [aux_sym__immediate_decimal_token5] = ACTIONS(1756), + [anon_sym_err_GT] = ACTIONS(1752), + [anon_sym_out_GT] = ACTIONS(1752), + [anon_sym_e_GT] = ACTIONS(1752), + [anon_sym_o_GT] = ACTIONS(1752), + [anon_sym_err_PLUSout_GT] = ACTIONS(1752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1752), + [anon_sym_o_PLUSe_GT] = ACTIONS(1752), + [anon_sym_e_PLUSo_GT] = ACTIONS(1752), + [anon_sym_err_GT_GT] = ACTIONS(1750), + [anon_sym_out_GT_GT] = ACTIONS(1750), + [anon_sym_e_GT_GT] = ACTIONS(1750), + [anon_sym_o_GT_GT] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1750), + [sym__unquoted_pattern] = ACTIONS(1752), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(450)] = { + [sym_comment] = STATE(450), + [anon_sym_in] = ACTIONS(741), + [sym__newline] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_err_GT_PIPE] = ACTIONS(741), + [anon_sym_out_GT_PIPE] = ACTIONS(741), + [anon_sym_e_GT_PIPE] = ACTIONS(741), + [anon_sym_o_GT_PIPE] = ACTIONS(741), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(741), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(741), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(741), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(741), + [anon_sym_RPAREN] = ACTIONS(741), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(741), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(741), + [anon_sym_xor2] = ACTIONS(741), + [anon_sym_or2] = ACTIONS(741), + [anon_sym_not_DASHin2] = ACTIONS(741), + [anon_sym_has2] = ACTIONS(741), + [anon_sym_not_DASHhas2] = ACTIONS(741), + [anon_sym_starts_DASHwith2] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(741), + [anon_sym_ends_DASHwith2] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(741), + [anon_sym_EQ_EQ2] = ACTIONS(741), + [anon_sym_BANG_EQ2] = ACTIONS(741), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(741), + [anon_sym_GT_EQ2] = ACTIONS(741), + [anon_sym_EQ_TILDE2] = ACTIONS(741), + [anon_sym_BANG_TILDE2] = ACTIONS(741), + [anon_sym_like2] = ACTIONS(741), + [anon_sym_not_DASHlike2] = ACTIONS(741), + [anon_sym_LPAREN2] = ACTIONS(741), + [anon_sym_STAR_STAR2] = ACTIONS(741), + [anon_sym_PLUS_PLUS2] = ACTIONS(741), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(741), + [anon_sym_SLASH_SLASH2] = ACTIONS(741), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(741), + [anon_sym_bit_DASHshr2] = ACTIONS(741), + [anon_sym_bit_DASHand2] = ACTIONS(741), + [anon_sym_bit_DASHxor2] = ACTIONS(741), + [anon_sym_bit_DASHor2] = ACTIONS(741), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token5] = ACTIONS(1691), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_err_GT] = ACTIONS(739), + [anon_sym_out_GT] = ACTIONS(739), + [anon_sym_e_GT] = ACTIONS(739), + [anon_sym_o_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT] = ACTIONS(739), + [anon_sym_err_GT_GT] = ACTIONS(741), + [anon_sym_out_GT_GT] = ACTIONS(741), + [anon_sym_e_GT_GT] = ACTIONS(741), + [anon_sym_o_GT_GT] = ACTIONS(741), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(741), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(741), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(741), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(741), + [sym__unquoted_pattern] = ACTIONS(739), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(451)] = { + [sym_comment] = STATE(451), [ts_builtin_sym_end] = ACTIONS(741), [anon_sym_in] = ACTIONS(741), [sym__newline] = ACTIONS(741), @@ -82603,10 +82863,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHxor2] = ACTIONS(741), [anon_sym_bit_DASHor2] = ACTIONS(741), [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT] = ACTIONS(1750), + [anon_sym_DOT] = ACTIONS(1758), [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1752), + [aux_sym__immediate_decimal_token5] = ACTIONS(1760), [sym_filesize_unit] = ACTIONS(739), [sym_duration_unit] = ACTIONS(741), [anon_sym_err_GT] = ACTIONS(739), @@ -82628,237 +82888,382 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(449)] = { - [sym_comment] = STATE(449), - [anon_sym_in] = ACTIONS(773), - [sym__newline] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_err_GT_PIPE] = ACTIONS(773), - [anon_sym_out_GT_PIPE] = ACTIONS(773), - [anon_sym_e_GT_PIPE] = ACTIONS(773), - [anon_sym_o_GT_PIPE] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(773), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(773), - [anon_sym_RBRACE] = ACTIONS(773), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(773), - [anon_sym_xor2] = ACTIONS(773), - [anon_sym_or2] = ACTIONS(773), - [anon_sym_not_DASHin2] = ACTIONS(773), - [anon_sym_has2] = ACTIONS(773), - [anon_sym_not_DASHhas2] = ACTIONS(773), - [anon_sym_starts_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(773), - [anon_sym_ends_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(773), - [anon_sym_EQ_EQ2] = ACTIONS(773), - [anon_sym_BANG_EQ2] = ACTIONS(773), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(773), - [anon_sym_GT_EQ2] = ACTIONS(773), - [anon_sym_EQ_TILDE2] = ACTIONS(773), - [anon_sym_BANG_TILDE2] = ACTIONS(773), - [anon_sym_like2] = ACTIONS(773), - [anon_sym_not_DASHlike2] = ACTIONS(773), - [anon_sym_LPAREN2] = ACTIONS(773), - [anon_sym_STAR_STAR2] = ACTIONS(773), - [anon_sym_PLUS_PLUS2] = ACTIONS(773), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(773), - [anon_sym_SLASH_SLASH2] = ACTIONS(773), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(773), - [anon_sym_bit_DASHshr2] = ACTIONS(773), - [anon_sym_bit_DASHand2] = ACTIONS(773), - [anon_sym_bit_DASHxor2] = ACTIONS(773), - [anon_sym_bit_DASHor2] = ACTIONS(773), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1754), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(773), - [anon_sym_out_GT_GT] = ACTIONS(773), - [anon_sym_e_GT_GT] = ACTIONS(773), - [anon_sym_o_GT_GT] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(773), - [sym__unquoted_pattern] = ACTIONS(771), + [STATE(452)] = { + [sym_comment] = STATE(452), + [anon_sym_EQ] = ACTIONS(1762), + [anon_sym_PLUS_EQ] = ACTIONS(1764), + [anon_sym_DASH_EQ] = ACTIONS(1764), + [anon_sym_STAR_EQ] = ACTIONS(1764), + [anon_sym_SLASH_EQ] = ACTIONS(1764), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1706), + [sym__newline] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1706), + [anon_sym_err_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_GT_PIPE] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), + [anon_sym_RPAREN] = ACTIONS(1706), + [anon_sym_GT2] = ACTIONS(1604), + [anon_sym_DASH2] = ACTIONS(1604), + [anon_sym_STAR2] = ACTIONS(1604), + [anon_sym_and2] = ACTIONS(1706), + [anon_sym_xor2] = ACTIONS(1706), + [anon_sym_or2] = ACTIONS(1706), + [anon_sym_not_DASHin2] = ACTIONS(1706), + [anon_sym_has2] = ACTIONS(1706), + [anon_sym_not_DASHhas2] = ACTIONS(1706), + [anon_sym_starts_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), + [anon_sym_ends_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), + [anon_sym_EQ_EQ2] = ACTIONS(1706), + [anon_sym_BANG_EQ2] = ACTIONS(1706), + [anon_sym_LT2] = ACTIONS(1604), + [anon_sym_LT_EQ2] = ACTIONS(1706), + [anon_sym_GT_EQ2] = ACTIONS(1706), + [anon_sym_EQ_TILDE2] = ACTIONS(1706), + [anon_sym_BANG_TILDE2] = ACTIONS(1706), + [anon_sym_like2] = ACTIONS(1706), + [anon_sym_not_DASHlike2] = ACTIONS(1706), + [anon_sym_STAR_STAR2] = ACTIONS(1706), + [anon_sym_PLUS_PLUS2] = ACTIONS(1604), + [anon_sym_SLASH2] = ACTIONS(1604), + [anon_sym_mod2] = ACTIONS(1706), + [anon_sym_SLASH_SLASH2] = ACTIONS(1706), + [anon_sym_PLUS2] = ACTIONS(1604), + [anon_sym_bit_DASHshl2] = ACTIONS(1706), + [anon_sym_bit_DASHshr2] = ACTIONS(1706), + [anon_sym_bit_DASHand2] = ACTIONS(1706), + [anon_sym_bit_DASHxor2] = ACTIONS(1706), + [anon_sym_bit_DASHor2] = ACTIONS(1706), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), + [anon_sym_err_GT] = ACTIONS(1604), + [anon_sym_out_GT] = ACTIONS(1604), + [anon_sym_e_GT] = ACTIONS(1604), + [anon_sym_o_GT] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT] = ACTIONS(1604), + [anon_sym_err_GT_GT] = ACTIONS(1706), + [anon_sym_out_GT_GT] = ACTIONS(1706), + [anon_sym_e_GT_GT] = ACTIONS(1706), + [anon_sym_o_GT_GT] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(450)] = { - [sym__expr_parenthesized_immediate] = STATE(4726), - [sym_comment] = STATE(450), - [anon_sym_in] = ACTIONS(890), - [sym__newline] = ACTIONS(890), - [anon_sym_SEMI] = ACTIONS(890), - [anon_sym_PIPE] = ACTIONS(890), - [anon_sym_err_GT_PIPE] = ACTIONS(890), - [anon_sym_out_GT_PIPE] = ACTIONS(890), - [anon_sym_e_GT_PIPE] = ACTIONS(890), - [anon_sym_o_GT_PIPE] = ACTIONS(890), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(890), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(890), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(890), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(890), - [anon_sym_RPAREN] = ACTIONS(890), - [anon_sym_GT2] = ACTIONS(793), - [anon_sym_DASH2] = ACTIONS(890), - [anon_sym_RBRACE] = ACTIONS(890), - [anon_sym_STAR2] = ACTIONS(793), - [anon_sym_and2] = ACTIONS(890), - [anon_sym_xor2] = ACTIONS(890), - [anon_sym_or2] = ACTIONS(890), - [anon_sym_not_DASHin2] = ACTIONS(890), - [anon_sym_has2] = ACTIONS(890), - [anon_sym_not_DASHhas2] = ACTIONS(890), - [anon_sym_starts_DASHwith2] = ACTIONS(890), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(890), - [anon_sym_ends_DASHwith2] = ACTIONS(890), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(890), - [anon_sym_EQ_EQ2] = ACTIONS(890), - [anon_sym_BANG_EQ2] = ACTIONS(890), - [anon_sym_LT2] = ACTIONS(793), - [anon_sym_LT_EQ2] = ACTIONS(890), - [anon_sym_GT_EQ2] = ACTIONS(890), - [anon_sym_EQ_TILDE2] = ACTIONS(890), - [anon_sym_BANG_TILDE2] = ACTIONS(890), - [anon_sym_like2] = ACTIONS(890), - [anon_sym_not_DASHlike2] = ACTIONS(890), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(890), - [anon_sym_PLUS_PLUS2] = ACTIONS(890), - [anon_sym_SLASH2] = ACTIONS(793), - [anon_sym_mod2] = ACTIONS(890), - [anon_sym_SLASH_SLASH2] = ACTIONS(890), - [anon_sym_PLUS2] = ACTIONS(793), - [anon_sym_bit_DASHshl2] = ACTIONS(890), - [anon_sym_bit_DASHshr2] = ACTIONS(890), - [anon_sym_bit_DASHand2] = ACTIONS(890), - [anon_sym_bit_DASHxor2] = ACTIONS(890), - [anon_sym_bit_DASHor2] = ACTIONS(890), - [anon_sym_DOT_DOT2] = ACTIONS(1758), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1760), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1760), - [sym_filesize_unit] = ACTIONS(1762), - [sym_duration_unit] = ACTIONS(1764), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [anon_sym_err_GT_GT] = ACTIONS(890), - [anon_sym_out_GT_GT] = ACTIONS(890), - [anon_sym_e_GT_GT] = ACTIONS(890), - [anon_sym_o_GT_GT] = ACTIONS(890), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(890), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(890), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(890), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(890), - [sym__unquoted_pattern] = ACTIONS(1766), + [STATE(453)] = { + [sym_comment] = STATE(453), + [anon_sym_in] = ACTIONS(757), + [sym__newline] = ACTIONS(757), + [anon_sym_SEMI] = ACTIONS(757), + [anon_sym_PIPE] = ACTIONS(757), + [anon_sym_err_GT_PIPE] = ACTIONS(757), + [anon_sym_out_GT_PIPE] = ACTIONS(757), + [anon_sym_e_GT_PIPE] = ACTIONS(757), + [anon_sym_o_GT_PIPE] = ACTIONS(757), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(757), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(757), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(757), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(757), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(757), + [anon_sym_RBRACE] = ACTIONS(757), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(757), + [anon_sym_xor2] = ACTIONS(757), + [anon_sym_or2] = ACTIONS(757), + [anon_sym_not_DASHin2] = ACTIONS(757), + [anon_sym_has2] = ACTIONS(757), + [anon_sym_not_DASHhas2] = ACTIONS(757), + [anon_sym_starts_DASHwith2] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(757), + [anon_sym_ends_DASHwith2] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(757), + [anon_sym_EQ_EQ2] = ACTIONS(757), + [anon_sym_BANG_EQ2] = ACTIONS(757), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(757), + [anon_sym_GT_EQ2] = ACTIONS(757), + [anon_sym_EQ_TILDE2] = ACTIONS(757), + [anon_sym_BANG_TILDE2] = ACTIONS(757), + [anon_sym_like2] = ACTIONS(757), + [anon_sym_not_DASHlike2] = ACTIONS(757), + [anon_sym_LPAREN2] = ACTIONS(757), + [anon_sym_STAR_STAR2] = ACTIONS(757), + [anon_sym_PLUS_PLUS2] = ACTIONS(757), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(757), + [anon_sym_SLASH_SLASH2] = ACTIONS(757), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(757), + [anon_sym_bit_DASHshr2] = ACTIONS(757), + [anon_sym_bit_DASHand2] = ACTIONS(757), + [anon_sym_bit_DASHxor2] = ACTIONS(757), + [anon_sym_bit_DASHor2] = ACTIONS(757), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token5] = ACTIONS(1766), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(757), + [anon_sym_out_GT_GT] = ACTIONS(757), + [anon_sym_e_GT_GT] = ACTIONS(757), + [anon_sym_o_GT_GT] = ACTIONS(757), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(757), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(757), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(757), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(757), + [sym__unquoted_pattern] = ACTIONS(755), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(451)] = { - [sym_comment] = STATE(451), - [anon_sym_EQ] = ACTIONS(1613), - [anon_sym_PLUS_EQ] = ACTIONS(1687), - [anon_sym_DASH_EQ] = ACTIONS(1687), - [anon_sym_STAR_EQ] = ACTIONS(1687), - [anon_sym_SLASH_EQ] = ACTIONS(1687), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1687), - [anon_sym_in] = ACTIONS(1689), - [sym__newline] = ACTIONS(1689), - [anon_sym_SEMI] = ACTIONS(1689), - [anon_sym_PIPE] = ACTIONS(1689), - [anon_sym_err_GT_PIPE] = ACTIONS(1689), - [anon_sym_out_GT_PIPE] = ACTIONS(1689), - [anon_sym_e_GT_PIPE] = ACTIONS(1689), - [anon_sym_o_GT_PIPE] = ACTIONS(1689), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), - [anon_sym_GT2] = ACTIONS(1615), - [anon_sym_DASH2] = ACTIONS(1615), - [anon_sym_RBRACE] = ACTIONS(1689), - [anon_sym_STAR2] = ACTIONS(1615), - [anon_sym_and2] = ACTIONS(1689), - [anon_sym_xor2] = ACTIONS(1689), - [anon_sym_or2] = ACTIONS(1689), - [anon_sym_not_DASHin2] = ACTIONS(1689), - [anon_sym_has2] = ACTIONS(1689), - [anon_sym_not_DASHhas2] = ACTIONS(1689), - [anon_sym_starts_DASHwith2] = ACTIONS(1689), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1689), - [anon_sym_ends_DASHwith2] = ACTIONS(1689), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1689), - [anon_sym_EQ_EQ2] = ACTIONS(1689), - [anon_sym_BANG_EQ2] = ACTIONS(1689), - [anon_sym_LT2] = ACTIONS(1615), - [anon_sym_LT_EQ2] = ACTIONS(1689), - [anon_sym_GT_EQ2] = ACTIONS(1689), - [anon_sym_EQ_TILDE2] = ACTIONS(1689), - [anon_sym_BANG_TILDE2] = ACTIONS(1689), - [anon_sym_like2] = ACTIONS(1689), - [anon_sym_not_DASHlike2] = ACTIONS(1689), - [anon_sym_STAR_STAR2] = ACTIONS(1689), - [anon_sym_PLUS_PLUS2] = ACTIONS(1615), - [anon_sym_SLASH2] = ACTIONS(1615), - [anon_sym_mod2] = ACTIONS(1689), - [anon_sym_SLASH_SLASH2] = ACTIONS(1689), - [anon_sym_PLUS2] = ACTIONS(1615), - [anon_sym_bit_DASHshl2] = ACTIONS(1689), - [anon_sym_bit_DASHshr2] = ACTIONS(1689), - [anon_sym_bit_DASHand2] = ACTIONS(1689), - [anon_sym_bit_DASHxor2] = ACTIONS(1689), - [anon_sym_bit_DASHor2] = ACTIONS(1689), - [anon_sym_DOT_DOT2] = ACTIONS(1619), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), - [anon_sym_err_GT] = ACTIONS(1615), - [anon_sym_out_GT] = ACTIONS(1615), - [anon_sym_e_GT] = ACTIONS(1615), - [anon_sym_o_GT] = ACTIONS(1615), - [anon_sym_err_PLUSout_GT] = ACTIONS(1615), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), - [anon_sym_o_PLUSe_GT] = ACTIONS(1615), - [anon_sym_e_PLUSo_GT] = ACTIONS(1615), - [anon_sym_err_GT_GT] = ACTIONS(1689), - [anon_sym_out_GT_GT] = ACTIONS(1689), - [anon_sym_e_GT_GT] = ACTIONS(1689), - [anon_sym_o_GT_GT] = ACTIONS(1689), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), + [STATE(454)] = { + [sym_comment] = STATE(454), + [anon_sym_if] = ACTIONS(1535), + [anon_sym_in] = ACTIONS(1535), + [sym__newline] = ACTIONS(1535), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_PIPE] = ACTIONS(1535), + [anon_sym_err_GT_PIPE] = ACTIONS(1535), + [anon_sym_out_GT_PIPE] = ACTIONS(1535), + [anon_sym_e_GT_PIPE] = ACTIONS(1535), + [anon_sym_o_GT_PIPE] = ACTIONS(1535), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1535), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1535), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1535), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1535), + [anon_sym_RPAREN] = ACTIONS(1535), + [anon_sym_GT2] = ACTIONS(1533), + [anon_sym_DASH2] = ACTIONS(1535), + [anon_sym_LBRACE] = ACTIONS(1535), + [anon_sym_RBRACE] = ACTIONS(1535), + [anon_sym_EQ_GT] = ACTIONS(1535), + [anon_sym_STAR2] = ACTIONS(1533), + [anon_sym_and2] = ACTIONS(1535), + [anon_sym_xor2] = ACTIONS(1535), + [anon_sym_or2] = ACTIONS(1535), + [anon_sym_not_DASHin2] = ACTIONS(1535), + [anon_sym_has2] = ACTIONS(1535), + [anon_sym_not_DASHhas2] = ACTIONS(1535), + [anon_sym_starts_DASHwith2] = ACTIONS(1535), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1535), + [anon_sym_ends_DASHwith2] = ACTIONS(1535), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1535), + [anon_sym_EQ_EQ2] = ACTIONS(1535), + [anon_sym_BANG_EQ2] = ACTIONS(1535), + [anon_sym_LT2] = ACTIONS(1533), + [anon_sym_LT_EQ2] = ACTIONS(1535), + [anon_sym_GT_EQ2] = ACTIONS(1535), + [anon_sym_EQ_TILDE2] = ACTIONS(1535), + [anon_sym_BANG_TILDE2] = ACTIONS(1535), + [anon_sym_like2] = ACTIONS(1535), + [anon_sym_not_DASHlike2] = ACTIONS(1535), + [anon_sym_STAR_STAR2] = ACTIONS(1535), + [anon_sym_PLUS_PLUS2] = ACTIONS(1535), + [anon_sym_SLASH2] = ACTIONS(1533), + [anon_sym_mod2] = ACTIONS(1535), + [anon_sym_SLASH_SLASH2] = ACTIONS(1535), + [anon_sym_PLUS2] = ACTIONS(1533), + [anon_sym_bit_DASHshl2] = ACTIONS(1535), + [anon_sym_bit_DASHshr2] = ACTIONS(1535), + [anon_sym_bit_DASHand2] = ACTIONS(1535), + [anon_sym_bit_DASHxor2] = ACTIONS(1535), + [anon_sym_bit_DASHor2] = ACTIONS(1535), + [anon_sym_DOT_DOT2] = ACTIONS(1533), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1535), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1535), + [anon_sym_COLON2] = ACTIONS(1535), + [anon_sym_DOT2] = ACTIONS(1533), + [anon_sym_err_GT] = ACTIONS(1533), + [anon_sym_out_GT] = ACTIONS(1533), + [anon_sym_e_GT] = ACTIONS(1533), + [anon_sym_o_GT] = ACTIONS(1533), + [anon_sym_err_PLUSout_GT] = ACTIONS(1533), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1533), + [anon_sym_o_PLUSe_GT] = ACTIONS(1533), + [anon_sym_e_PLUSo_GT] = ACTIONS(1533), + [anon_sym_err_GT_GT] = ACTIONS(1535), + [anon_sym_out_GT_GT] = ACTIONS(1535), + [anon_sym_e_GT_GT] = ACTIONS(1535), + [anon_sym_o_GT_GT] = ACTIONS(1535), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1535), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1535), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1535), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1535), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(452)] = { - [sym__expr_parenthesized_immediate] = STATE(1337), - [sym__immediate_decimal] = STATE(1338), - [sym_val_variable] = STATE(1337), - [sym_comment] = STATE(452), - [ts_builtin_sym_end] = ACTIONS(1647), + [STATE(455)] = { + [sym_comment] = STATE(455), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_RPAREN] = ACTIONS(1768), + [anon_sym_GT2] = ACTIONS(1770), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_EQ_GT] = ACTIONS(1768), + [anon_sym_STAR2] = ACTIONS(1770), + [anon_sym_and2] = ACTIONS(1768), + [anon_sym_xor2] = ACTIONS(1768), + [anon_sym_or2] = ACTIONS(1768), + [anon_sym_not_DASHin2] = ACTIONS(1768), + [anon_sym_has2] = ACTIONS(1768), + [anon_sym_not_DASHhas2] = ACTIONS(1768), + [anon_sym_starts_DASHwith2] = ACTIONS(1768), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1768), + [anon_sym_ends_DASHwith2] = ACTIONS(1768), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1768), + [anon_sym_EQ_EQ2] = ACTIONS(1768), + [anon_sym_BANG_EQ2] = ACTIONS(1768), + [anon_sym_LT2] = ACTIONS(1770), + [anon_sym_LT_EQ2] = ACTIONS(1768), + [anon_sym_GT_EQ2] = ACTIONS(1768), + [anon_sym_EQ_TILDE2] = ACTIONS(1768), + [anon_sym_BANG_TILDE2] = ACTIONS(1768), + [anon_sym_like2] = ACTIONS(1768), + [anon_sym_not_DASHlike2] = ACTIONS(1768), + [anon_sym_STAR_STAR2] = ACTIONS(1768), + [anon_sym_PLUS_PLUS2] = ACTIONS(1768), + [anon_sym_SLASH2] = ACTIONS(1770), + [anon_sym_mod2] = ACTIONS(1768), + [anon_sym_SLASH_SLASH2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1770), + [anon_sym_bit_DASHshl2] = ACTIONS(1768), + [anon_sym_bit_DASHshr2] = ACTIONS(1768), + [anon_sym_bit_DASHand2] = ACTIONS(1768), + [anon_sym_bit_DASHxor2] = ACTIONS(1768), + [anon_sym_bit_DASHor2] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1770), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1768), + [anon_sym_COLON2] = ACTIONS(1768), + [anon_sym_err_GT] = ACTIONS(1770), + [anon_sym_out_GT] = ACTIONS(1770), + [anon_sym_e_GT] = ACTIONS(1770), + [anon_sym_o_GT] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT] = ACTIONS(1770), + [anon_sym_err_GT_GT] = ACTIONS(1768), + [anon_sym_out_GT_GT] = ACTIONS(1768), + [anon_sym_e_GT_GT] = ACTIONS(1768), + [anon_sym_o_GT_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1768), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(456)] = { + [sym_cmd_identifier] = STATE(4340), + [sym__match_pattern_record_body] = STATE(5227), + [sym_expr_parenthesized] = STATE(5053), + [sym__spread_parenthesized] = STATE(4675), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(4387), + [sym_val_number] = STATE(5053), + [sym__val_number_decimal] = STATE(1955), + [sym__val_number] = STATE(693), + [sym_val_string] = STATE(5053), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(5053), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym__spread_record] = STATE(4675), + [sym_record_entry] = STATE(4445), + [sym__record_key] = STATE(5144), + [sym_comment] = STATE(456), + [aux_sym__types_body_repeat1] = STATE(510), + [aux_sym__match_pattern_record_body_repeat1] = STATE(773), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_null] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [sym__newline] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1780), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1784), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1796), + }, + [STATE(457)] = { + [sym_comment] = STATE(457), + [anon_sym_if] = ACTIONS(1647), [anon_sym_in] = ACTIONS(1647), [sym__newline] = ACTIONS(1647), [anon_sym_SEMI] = ACTIONS(1647), @@ -82871,9 +83276,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_DOLLAR] = ACTIONS(1671), + [anon_sym_RPAREN] = ACTIONS(1647), [anon_sym_GT2] = ACTIONS(1649), - [anon_sym_DASH2] = ACTIONS(1649), + [anon_sym_DASH2] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(1647), + [anon_sym_RBRACE] = ACTIONS(1647), + [anon_sym_EQ_GT] = ACTIONS(1647), [anon_sym_STAR2] = ACTIONS(1649), [anon_sym_and2] = ACTIONS(1647), [anon_sym_xor2] = ACTIONS(1647), @@ -82894,7 +83302,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(1647), [anon_sym_like2] = ACTIONS(1647), [anon_sym_not_DASHlike2] = ACTIONS(1647), - [anon_sym_LPAREN2] = ACTIONS(1673), [anon_sym_STAR_STAR2] = ACTIONS(1647), [anon_sym_PLUS_PLUS2] = ACTIONS(1647), [anon_sym_SLASH2] = ACTIONS(1649), @@ -82906,10 +83313,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1647), [anon_sym_bit_DASHxor2] = ACTIONS(1647), [anon_sym_bit_DASHor2] = ACTIONS(1647), - [aux_sym__immediate_decimal_token1] = ACTIONS(1710), - [aux_sym__immediate_decimal_token2] = ACTIONS(1710), - [aux_sym__immediate_decimal_token3] = ACTIONS(1679), - [aux_sym__immediate_decimal_token4] = ACTIONS(1679), + [anon_sym_DOT_DOT2] = ACTIONS(1649), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), + [anon_sym_COLON2] = ACTIONS(1647), [anon_sym_err_GT] = ACTIONS(1649), [anon_sym_out_GT] = ACTIONS(1649), [anon_sym_e_GT] = ACTIONS(1649), @@ -82928,254 +83335,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1647), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(453)] = { - [sym__expr_parenthesized_immediate] = STATE(1339), - [sym__immediate_decimal] = STATE(1340), - [sym_val_variable] = STATE(1339), - [sym_comment] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(1651), - [anon_sym_in] = ACTIONS(1651), - [sym__newline] = ACTIONS(1651), - [anon_sym_SEMI] = ACTIONS(1651), - [anon_sym_PIPE] = ACTIONS(1651), - [anon_sym_err_GT_PIPE] = ACTIONS(1651), - [anon_sym_out_GT_PIPE] = ACTIONS(1651), - [anon_sym_e_GT_PIPE] = ACTIONS(1651), - [anon_sym_o_GT_PIPE] = ACTIONS(1651), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1651), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1651), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1651), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1651), - [anon_sym_DOLLAR] = ACTIONS(1671), - [anon_sym_GT2] = ACTIONS(1653), - [anon_sym_DASH2] = ACTIONS(1653), - [anon_sym_STAR2] = ACTIONS(1653), - [anon_sym_and2] = ACTIONS(1651), - [anon_sym_xor2] = ACTIONS(1651), - [anon_sym_or2] = ACTIONS(1651), - [anon_sym_not_DASHin2] = ACTIONS(1651), - [anon_sym_has2] = ACTIONS(1651), - [anon_sym_not_DASHhas2] = ACTIONS(1651), - [anon_sym_starts_DASHwith2] = ACTIONS(1651), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1651), - [anon_sym_ends_DASHwith2] = ACTIONS(1651), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1651), - [anon_sym_EQ_EQ2] = ACTIONS(1651), - [anon_sym_BANG_EQ2] = ACTIONS(1651), - [anon_sym_LT2] = ACTIONS(1653), - [anon_sym_LT_EQ2] = ACTIONS(1651), - [anon_sym_GT_EQ2] = ACTIONS(1651), - [anon_sym_EQ_TILDE2] = ACTIONS(1651), - [anon_sym_BANG_TILDE2] = ACTIONS(1651), - [anon_sym_like2] = ACTIONS(1651), - [anon_sym_not_DASHlike2] = ACTIONS(1651), - [anon_sym_LPAREN2] = ACTIONS(1673), - [anon_sym_STAR_STAR2] = ACTIONS(1651), - [anon_sym_PLUS_PLUS2] = ACTIONS(1651), - [anon_sym_SLASH2] = ACTIONS(1653), - [anon_sym_mod2] = ACTIONS(1651), - [anon_sym_SLASH_SLASH2] = ACTIONS(1651), - [anon_sym_PLUS2] = ACTIONS(1653), - [anon_sym_bit_DASHshl2] = ACTIONS(1651), - [anon_sym_bit_DASHshr2] = ACTIONS(1651), - [anon_sym_bit_DASHand2] = ACTIONS(1651), - [anon_sym_bit_DASHxor2] = ACTIONS(1651), - [anon_sym_bit_DASHor2] = ACTIONS(1651), - [aux_sym__immediate_decimal_token1] = ACTIONS(1710), - [aux_sym__immediate_decimal_token2] = ACTIONS(1710), - [aux_sym__immediate_decimal_token3] = ACTIONS(1679), - [aux_sym__immediate_decimal_token4] = ACTIONS(1679), - [anon_sym_err_GT] = ACTIONS(1653), - [anon_sym_out_GT] = ACTIONS(1653), - [anon_sym_e_GT] = ACTIONS(1653), - [anon_sym_o_GT] = ACTIONS(1653), - [anon_sym_err_PLUSout_GT] = ACTIONS(1653), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), - [anon_sym_o_PLUSe_GT] = ACTIONS(1653), - [anon_sym_e_PLUSo_GT] = ACTIONS(1653), - [anon_sym_err_GT_GT] = ACTIONS(1651), - [anon_sym_out_GT_GT] = ACTIONS(1651), - [anon_sym_e_GT_GT] = ACTIONS(1651), - [anon_sym_o_GT_GT] = ACTIONS(1651), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1651), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1651), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1651), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1651), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(454)] = { - [sym__expr_parenthesized_immediate] = STATE(1341), - [sym__immediate_decimal] = STATE(1342), - [sym_val_variable] = STATE(1341), - [sym_comment] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(1631), - [anon_sym_in] = ACTIONS(1631), - [sym__newline] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_PIPE] = ACTIONS(1631), - [anon_sym_err_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_GT_PIPE] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1671), - [anon_sym_GT2] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_STAR2] = ACTIONS(1633), - [anon_sym_and2] = ACTIONS(1631), - [anon_sym_xor2] = ACTIONS(1631), - [anon_sym_or2] = ACTIONS(1631), - [anon_sym_not_DASHin2] = ACTIONS(1631), - [anon_sym_has2] = ACTIONS(1631), - [anon_sym_not_DASHhas2] = ACTIONS(1631), - [anon_sym_starts_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1631), - [anon_sym_ends_DASHwith2] = ACTIONS(1631), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1631), - [anon_sym_EQ_EQ2] = ACTIONS(1631), - [anon_sym_BANG_EQ2] = ACTIONS(1631), - [anon_sym_LT2] = ACTIONS(1633), - [anon_sym_LT_EQ2] = ACTIONS(1631), - [anon_sym_GT_EQ2] = ACTIONS(1631), - [anon_sym_EQ_TILDE2] = ACTIONS(1631), - [anon_sym_BANG_TILDE2] = ACTIONS(1631), - [anon_sym_like2] = ACTIONS(1631), - [anon_sym_not_DASHlike2] = ACTIONS(1631), - [anon_sym_LPAREN2] = ACTIONS(1673), - [anon_sym_STAR_STAR2] = ACTIONS(1631), - [anon_sym_PLUS_PLUS2] = ACTIONS(1631), - [anon_sym_SLASH2] = ACTIONS(1633), - [anon_sym_mod2] = ACTIONS(1631), - [anon_sym_SLASH_SLASH2] = ACTIONS(1631), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_bit_DASHshl2] = ACTIONS(1631), - [anon_sym_bit_DASHshr2] = ACTIONS(1631), - [anon_sym_bit_DASHand2] = ACTIONS(1631), - [anon_sym_bit_DASHxor2] = ACTIONS(1631), - [anon_sym_bit_DASHor2] = ACTIONS(1631), - [aux_sym__immediate_decimal_token1] = ACTIONS(1710), - [aux_sym__immediate_decimal_token2] = ACTIONS(1710), - [aux_sym__immediate_decimal_token3] = ACTIONS(1679), - [aux_sym__immediate_decimal_token4] = ACTIONS(1679), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1631), - [anon_sym_out_GT_GT] = ACTIONS(1631), - [anon_sym_e_GT_GT] = ACTIONS(1631), - [anon_sym_o_GT_GT] = ACTIONS(1631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1631), + [STATE(458)] = { + [sym_cmd_identifier] = STATE(4340), + [sym_expr_parenthesized] = STATE(5053), + [sym__spread_parenthesized] = STATE(4675), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(5053), + [sym_val_number] = STATE(5053), + [sym__val_number_decimal] = STATE(1955), + [sym__val_number] = STATE(693), + [sym_val_string] = STATE(5053), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(5053), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(5257), + [sym_record_entry] = STATE(4528), + [sym__record_key] = STATE(5144), + [sym_comment] = STATE(458), + [aux_sym__types_body_repeat1] = STATE(526), + [aux_sym_record_body_repeat1] = STATE(741), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_null] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [sym__newline] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1798), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_RBRACE] = ACTIONS(1800), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1784), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1796), }, - [STATE(455)] = { - [sym_comment] = STATE(455), - [anon_sym_in] = ACTIONS(1728), - [sym__newline] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_err_GT_PIPE] = ACTIONS(1728), - [anon_sym_out_GT_PIPE] = ACTIONS(1728), - [anon_sym_e_GT_PIPE] = ACTIONS(1728), - [anon_sym_o_GT_PIPE] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1728), - [anon_sym_RPAREN] = ACTIONS(1728), - [anon_sym_GT2] = ACTIONS(1730), - [anon_sym_DASH2] = ACTIONS(1728), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_RBRACE] = ACTIONS(1728), - [anon_sym_STAR2] = ACTIONS(1730), - [anon_sym_and2] = ACTIONS(1728), - [anon_sym_xor2] = ACTIONS(1728), - [anon_sym_or2] = ACTIONS(1728), - [anon_sym_not_DASHin2] = ACTIONS(1728), - [anon_sym_has2] = ACTIONS(1728), - [anon_sym_not_DASHhas2] = ACTIONS(1728), - [anon_sym_starts_DASHwith2] = ACTIONS(1728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1728), - [anon_sym_ends_DASHwith2] = ACTIONS(1728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1728), - [anon_sym_EQ_EQ2] = ACTIONS(1728), - [anon_sym_BANG_EQ2] = ACTIONS(1728), - [anon_sym_LT2] = ACTIONS(1730), - [anon_sym_LT_EQ2] = ACTIONS(1728), - [anon_sym_GT_EQ2] = ACTIONS(1728), - [anon_sym_EQ_TILDE2] = ACTIONS(1728), - [anon_sym_BANG_TILDE2] = ACTIONS(1728), - [anon_sym_like2] = ACTIONS(1728), - [anon_sym_not_DASHlike2] = ACTIONS(1728), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_STAR_STAR2] = ACTIONS(1728), - [anon_sym_PLUS_PLUS2] = ACTIONS(1728), - [anon_sym_SLASH2] = ACTIONS(1730), - [anon_sym_mod2] = ACTIONS(1728), - [anon_sym_SLASH_SLASH2] = ACTIONS(1728), - [anon_sym_PLUS2] = ACTIONS(1730), - [anon_sym_bit_DASHshl2] = ACTIONS(1728), - [anon_sym_bit_DASHshr2] = ACTIONS(1728), - [anon_sym_bit_DASHand2] = ACTIONS(1728), - [anon_sym_bit_DASHxor2] = ACTIONS(1728), - [anon_sym_bit_DASHor2] = ACTIONS(1728), - [anon_sym_DOT_DOT2] = ACTIONS(1730), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1728), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1728), - [aux_sym__immediate_decimal_token5] = ACTIONS(1734), - [anon_sym_err_GT] = ACTIONS(1730), - [anon_sym_out_GT] = ACTIONS(1730), - [anon_sym_e_GT] = ACTIONS(1730), - [anon_sym_o_GT] = ACTIONS(1730), - [anon_sym_err_PLUSout_GT] = ACTIONS(1730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1730), - [anon_sym_o_PLUSe_GT] = ACTIONS(1730), - [anon_sym_e_PLUSo_GT] = ACTIONS(1730), - [anon_sym_err_GT_GT] = ACTIONS(1728), - [anon_sym_out_GT_GT] = ACTIONS(1728), - [anon_sym_e_GT_GT] = ACTIONS(1728), - [anon_sym_o_GT_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1728), - [sym__unquoted_pattern] = ACTIONS(1730), + [STATE(459)] = { + [sym__expr_parenthesized_immediate] = STATE(4754), + [sym_comment] = STATE(459), + [ts_builtin_sym_end] = ACTIONS(908), + [anon_sym_in] = ACTIONS(908), + [sym__newline] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_PIPE] = ACTIONS(908), + [anon_sym_err_GT_PIPE] = ACTIONS(908), + [anon_sym_out_GT_PIPE] = ACTIONS(908), + [anon_sym_e_GT_PIPE] = ACTIONS(908), + [anon_sym_o_GT_PIPE] = ACTIONS(908), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(908), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(908), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(908), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(908), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(908), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(908), + [anon_sym_xor2] = ACTIONS(908), + [anon_sym_or2] = ACTIONS(908), + [anon_sym_not_DASHin2] = ACTIONS(908), + [anon_sym_has2] = ACTIONS(908), + [anon_sym_not_DASHhas2] = ACTIONS(908), + [anon_sym_starts_DASHwith2] = ACTIONS(908), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(908), + [anon_sym_ends_DASHwith2] = ACTIONS(908), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(908), + [anon_sym_EQ_EQ2] = ACTIONS(908), + [anon_sym_BANG_EQ2] = ACTIONS(908), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(908), + [anon_sym_GT_EQ2] = ACTIONS(908), + [anon_sym_EQ_TILDE2] = ACTIONS(908), + [anon_sym_BANG_TILDE2] = ACTIONS(908), + [anon_sym_like2] = ACTIONS(908), + [anon_sym_not_DASHlike2] = ACTIONS(908), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(908), + [anon_sym_PLUS_PLUS2] = ACTIONS(908), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(908), + [anon_sym_SLASH_SLASH2] = ACTIONS(908), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(908), + [anon_sym_bit_DASHshr2] = ACTIONS(908), + [anon_sym_bit_DASHand2] = ACTIONS(908), + [anon_sym_bit_DASHxor2] = ACTIONS(908), + [anon_sym_bit_DASHor2] = ACTIONS(908), + [anon_sym_DOT_DOT2] = ACTIONS(1802), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1804), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1804), + [sym_filesize_unit] = ACTIONS(1806), + [sym_duration_unit] = ACTIONS(1808), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(908), + [anon_sym_out_GT_GT] = ACTIONS(908), + [anon_sym_e_GT_GT] = ACTIONS(908), + [anon_sym_o_GT_GT] = ACTIONS(908), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(908), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(908), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(908), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(908), + [sym__unquoted_pattern] = ACTIONS(1810), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(456)] = { - [sym_cmd_identifier] = STATE(4341), - [sym__match_pattern_record_body] = STATE(5234), - [sym_expr_parenthesized] = STATE(5062), - [sym__spread_parenthesized] = STATE(4693), - [sym__spread_variable] = STATE(4695), - [sym_val_variable] = STATE(4140), - [sym_val_number] = STATE(5062), - [sym__val_number_decimal] = STATE(1952), - [sym__val_number] = STATE(676), - [sym_val_string] = STATE(5062), - [sym__raw_str] = STATE(2243), - [sym__str_double_quotes] = STATE(2243), - [sym__str_single_quotes] = STATE(2243), - [sym__str_back_ticks] = STATE(2243), - [sym_val_interpolated] = STATE(5062), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym__spread_record] = STATE(4693), - [sym_record_entry] = STATE(4492), - [sym__record_key] = STATE(5228), - [sym_comment] = STATE(456), - [aux_sym__types_body_repeat1] = STATE(549), - [aux_sym__match_pattern_record_body_repeat1] = STATE(761), + [STATE(460)] = { + [sym_cmd_identifier] = STATE(4340), + [sym_expr_parenthesized] = STATE(5053), + [sym__spread_parenthesized] = STATE(4675), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(5053), + [sym_val_number] = STATE(5053), + [sym__val_number_decimal] = STATE(1955), + [sym__val_number] = STATE(693), + [sym_val_string] = STATE(5053), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(5053), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(5079), + [sym_record_entry] = STATE(4528), + [sym__record_key] = STATE(5144), + [sym_comment] = STATE(460), + [aux_sym__types_body_repeat1] = STATE(526), + [aux_sym_record_body_repeat1] = STATE(741), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -83196,60 +83527,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_null] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [sym__newline] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1798), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1778), + [anon_sym_RBRACE] = ACTIONS(1812), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_decimal_token1] = ACTIONS(1784), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(1796), }, - [STATE(457)] = { - [sym_cmd_identifier] = STATE(4341), - [sym_expr_parenthesized] = STATE(5062), - [sym__spread_parenthesized] = STATE(4693), - [sym__spread_variable] = STATE(4695), - [sym_val_variable] = STATE(5062), - [sym_val_number] = STATE(5062), - [sym__val_number_decimal] = STATE(1952), - [sym__val_number] = STATE(676), - [sym_val_string] = STATE(5062), - [sym__raw_str] = STATE(2243), - [sym__str_double_quotes] = STATE(2243), - [sym__str_single_quotes] = STATE(2243), - [sym__str_back_ticks] = STATE(2243), - [sym_val_interpolated] = STATE(5062), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym__spread_record] = STATE(4693), - [sym_record_body] = STATE(5087), - [sym_record_entry] = STATE(4520), - [sym__record_key] = STATE(5228), - [sym_comment] = STATE(457), - [aux_sym__types_body_repeat1] = STATE(615), - [aux_sym_record_body_repeat1] = STATE(823), + [STATE(461)] = { + [sym_cmd_identifier] = STATE(4340), + [sym__match_pattern_record_body] = STATE(4865), + [sym_expr_parenthesized] = STATE(5053), + [sym__spread_parenthesized] = STATE(4675), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(4387), + [sym_val_number] = STATE(5053), + [sym__val_number_decimal] = STATE(1955), + [sym__val_number] = STATE(693), + [sym_val_string] = STATE(5053), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(5053), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym__spread_record] = STATE(4675), + [sym_record_entry] = STATE(4445), + [sym__record_key] = STATE(5144), + [sym_comment] = STATE(461), + [aux_sym__types_body_repeat1] = STATE(510), + [aux_sym__match_pattern_record_body_repeat1] = STATE(773), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -83270,80 +83601,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_null] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [sym__newline] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1780), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(1814), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_decimal_token1] = ACTIONS(1784), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(1796), }, - [STATE(458)] = { - [sym_expr_parenthesized] = STATE(4058), - [sym__spread_parenthesized] = STATE(4700), - [sym_val_range] = STATE(4730), - [sym__val_range] = STATE(4544), - [sym__value] = STATE(4730), - [sym_val_nothing] = STATE(4604), - [sym_val_bool] = STATE(4358), - [sym__spread_variable] = STATE(4795), - [sym_val_variable] = STATE(3879), - [sym_val_cellpath] = STATE(4604), - [sym_val_number] = STATE(4604), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(4361), - [sym_val_duration] = STATE(4604), - [sym_val_filesize] = STATE(4604), - [sym_val_binary] = STATE(4604), - [sym_val_string] = STATE(4604), - [sym__raw_str] = STATE(3638), - [sym__str_double_quotes] = STATE(3638), - [sym__str_single_quotes] = STATE(3638), - [sym__str_back_ticks] = STATE(3638), - [sym_val_interpolated] = STATE(4604), - [sym__inter_single_quotes] = STATE(4595), + [STATE(462)] = { + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), [sym__inter_double_quotes] = STATE(4596), - [sym_val_list] = STATE(4604), - [sym__spread_list] = STATE(4700), - [sym_val_entry] = STATE(4455), - [sym_val_record] = STATE(4604), - [sym_val_table] = STATE(4604), - [sym_val_closure] = STATE(4604), + [sym_val_list] = STATE(4601), + [sym__spread_list] = STATE(4806), + [sym_val_entry] = STATE(4428), + [sym_val_record] = STATE(4601), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), [sym__unquoted_in_list] = STATE(4171), - [sym__unquoted_in_list_with_expr] = STATE(4730), - [sym__unquoted_anonymous_prefix] = STATE(4544), - [sym_comment] = STATE(458), - [aux_sym__types_body_repeat1] = STATE(2113), - [aux_sym_list_body_repeat1] = STATE(667), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), + [sym_comment] = STATE(462), + [aux_sym__types_body_repeat1] = STATE(2117), + [aux_sym_list_body_repeat1] = STATE(529), [anon_sym_true] = ACTIONS(1462), [anon_sym_false] = ACTIONS(1462), [anon_sym_null] = ACTIONS(1464), [aux_sym_cmd_identifier_token3] = ACTIONS(1466), [aux_sym_cmd_identifier_token4] = ACTIONS(1466), [aux_sym_cmd_identifier_token5] = ACTIONS(1466), - [sym__newline] = ACTIONS(1556), + [sym__newline] = ACTIONS(1564), [anon_sym_LBRACK] = ACTIONS(1578), [anon_sym_LPAREN] = ACTIONS(1386), [anon_sym_DOLLAR] = ACTIONS(1390), @@ -83374,30 +83705,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(459)] = { - [sym_cmd_identifier] = STATE(4341), - [sym_expr_parenthesized] = STATE(5062), - [sym__spread_parenthesized] = STATE(4693), - [sym__spread_variable] = STATE(4695), - [sym_val_variable] = STATE(5062), - [sym_val_number] = STATE(5062), - [sym__val_number_decimal] = STATE(1952), - [sym__val_number] = STATE(676), - [sym_val_string] = STATE(5062), - [sym__raw_str] = STATE(2243), - [sym__str_double_quotes] = STATE(2243), - [sym__str_single_quotes] = STATE(2243), - [sym__str_back_ticks] = STATE(2243), - [sym_val_interpolated] = STATE(5062), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym__spread_record] = STATE(4693), - [sym_record_body] = STATE(4829), - [sym_record_entry] = STATE(4520), - [sym__record_key] = STATE(5228), - [sym_comment] = STATE(459), - [aux_sym__types_body_repeat1] = STATE(615), - [aux_sym_record_body_repeat1] = STATE(823), + [STATE(463)] = { + [sym_comment] = STATE(463), + [anon_sym_in] = ACTIONS(1816), + [sym__newline] = ACTIONS(1816), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_PIPE] = ACTIONS(1816), + [anon_sym_err_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_GT_PIPE] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_GT2] = ACTIONS(1818), + [anon_sym_DASH2] = ACTIONS(1816), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_STAR2] = ACTIONS(1818), + [anon_sym_and2] = ACTIONS(1816), + [anon_sym_xor2] = ACTIONS(1816), + [anon_sym_or2] = ACTIONS(1816), + [anon_sym_not_DASHin2] = ACTIONS(1816), + [anon_sym_has2] = ACTIONS(1816), + [anon_sym_not_DASHhas2] = ACTIONS(1816), + [anon_sym_starts_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1816), + [anon_sym_ends_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1816), + [anon_sym_EQ_EQ2] = ACTIONS(1816), + [anon_sym_BANG_EQ2] = ACTIONS(1816), + [anon_sym_LT2] = ACTIONS(1818), + [anon_sym_LT_EQ2] = ACTIONS(1816), + [anon_sym_GT_EQ2] = ACTIONS(1816), + [anon_sym_EQ_TILDE2] = ACTIONS(1816), + [anon_sym_BANG_TILDE2] = ACTIONS(1816), + [anon_sym_like2] = ACTIONS(1816), + [anon_sym_not_DASHlike2] = ACTIONS(1816), + [anon_sym_LPAREN2] = ACTIONS(1816), + [anon_sym_STAR_STAR2] = ACTIONS(1816), + [anon_sym_PLUS_PLUS2] = ACTIONS(1816), + [anon_sym_SLASH2] = ACTIONS(1818), + [anon_sym_mod2] = ACTIONS(1816), + [anon_sym_SLASH_SLASH2] = ACTIONS(1816), + [anon_sym_PLUS2] = ACTIONS(1818), + [anon_sym_bit_DASHshl2] = ACTIONS(1816), + [anon_sym_bit_DASHshr2] = ACTIONS(1816), + [anon_sym_bit_DASHand2] = ACTIONS(1816), + [anon_sym_bit_DASHxor2] = ACTIONS(1816), + [anon_sym_bit_DASHor2] = ACTIONS(1816), + [anon_sym_DOT_DOT2] = ACTIONS(1818), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1816), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1816), + [aux_sym__immediate_decimal_token5] = 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(1816), + [anon_sym_out_GT_GT] = ACTIONS(1816), + [anon_sym_e_GT_GT] = ACTIONS(1816), + [anon_sym_o_GT_GT] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1816), + [sym__unquoted_pattern] = ACTIONS(1818), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(464)] = { + [sym_cmd_identifier] = STATE(4340), + [sym_expr_parenthesized] = STATE(5053), + [sym__spread_parenthesized] = STATE(4675), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(5053), + [sym_val_number] = STATE(5053), + [sym__val_number_decimal] = STATE(1955), + [sym__val_number] = STATE(693), + [sym_val_string] = STATE(5053), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(5053), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(5106), + [sym_record_entry] = STATE(4528), + [sym__record_key] = STATE(5144), + [sym_comment] = STATE(464), + [aux_sym__types_body_repeat1] = STATE(526), + [aux_sym_record_body_repeat1] = STATE(741), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -83418,430 +83823,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_null] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [sym__newline] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1798), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1822), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_decimal_token1] = ACTIONS(1784), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(460)] = { - [sym_comment] = STATE(460), - [anon_sym_if] = ACTIONS(1661), - [anon_sym_in] = 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(1663), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_LBRACE] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_EQ_GT] = ACTIONS(1661), - [anon_sym_STAR2] = ACTIONS(1663), - [anon_sym_and2] = ACTIONS(1661), - [anon_sym_xor2] = ACTIONS(1661), - [anon_sym_or2] = ACTIONS(1661), - [anon_sym_not_DASHin2] = ACTIONS(1661), - [anon_sym_has2] = ACTIONS(1661), - [anon_sym_not_DASHhas2] = ACTIONS(1661), - [anon_sym_starts_DASHwith2] = ACTIONS(1661), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1661), - [anon_sym_ends_DASHwith2] = ACTIONS(1661), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1661), - [anon_sym_EQ_EQ2] = ACTIONS(1661), - [anon_sym_BANG_EQ2] = ACTIONS(1661), - [anon_sym_LT2] = ACTIONS(1663), - [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_like2] = ACTIONS(1661), - [anon_sym_not_DASHlike2] = ACTIONS(1661), - [anon_sym_STAR_STAR2] = ACTIONS(1661), - [anon_sym_PLUS_PLUS2] = ACTIONS(1661), - [anon_sym_SLASH2] = ACTIONS(1663), - [anon_sym_mod2] = ACTIONS(1661), - [anon_sym_SLASH_SLASH2] = ACTIONS(1661), - [anon_sym_PLUS2] = ACTIONS(1663), - [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(1663), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), - [anon_sym_COLON2] = ACTIONS(1661), - [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(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), - }, - [STATE(461)] = { - [sym_comment] = STATE(461), - [ts_builtin_sym_end] = ACTIONS(741), - [anon_sym_in] = ACTIONS(741), - [sym__newline] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(741), - [anon_sym_PIPE] = ACTIONS(741), - [anon_sym_err_GT_PIPE] = ACTIONS(741), - [anon_sym_out_GT_PIPE] = ACTIONS(741), - [anon_sym_e_GT_PIPE] = ACTIONS(741), - [anon_sym_o_GT_PIPE] = ACTIONS(741), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(741), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(741), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(741), - [anon_sym_GT2] = ACTIONS(739), - [anon_sym_DASH2] = ACTIONS(741), - [anon_sym_STAR2] = ACTIONS(739), - [anon_sym_and2] = ACTIONS(741), - [anon_sym_xor2] = ACTIONS(741), - [anon_sym_or2] = ACTIONS(741), - [anon_sym_not_DASHin2] = ACTIONS(741), - [anon_sym_has2] = ACTIONS(741), - [anon_sym_not_DASHhas2] = ACTIONS(741), - [anon_sym_starts_DASHwith2] = ACTIONS(741), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(741), - [anon_sym_ends_DASHwith2] = ACTIONS(741), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(741), - [anon_sym_EQ_EQ2] = ACTIONS(741), - [anon_sym_BANG_EQ2] = ACTIONS(741), - [anon_sym_LT2] = ACTIONS(739), - [anon_sym_LT_EQ2] = ACTIONS(741), - [anon_sym_GT_EQ2] = ACTIONS(741), - [anon_sym_EQ_TILDE2] = ACTIONS(741), - [anon_sym_BANG_TILDE2] = ACTIONS(741), - [anon_sym_like2] = ACTIONS(741), - [anon_sym_not_DASHlike2] = ACTIONS(741), - [anon_sym_LPAREN2] = ACTIONS(741), - [anon_sym_STAR_STAR2] = ACTIONS(741), - [anon_sym_PLUS_PLUS2] = ACTIONS(741), - [anon_sym_SLASH2] = ACTIONS(739), - [anon_sym_mod2] = ACTIONS(741), - [anon_sym_SLASH_SLASH2] = ACTIONS(741), - [anon_sym_PLUS2] = ACTIONS(739), - [anon_sym_bit_DASHshl2] = ACTIONS(741), - [anon_sym_bit_DASHshr2] = ACTIONS(741), - [anon_sym_bit_DASHand2] = ACTIONS(741), - [anon_sym_bit_DASHxor2] = ACTIONS(741), - [anon_sym_bit_DASHor2] = ACTIONS(741), - [anon_sym_DOT_DOT2] = ACTIONS(739), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), - [anon_sym_DOT_DOT_LT2] = ACTIONS(741), - [aux_sym__immediate_decimal_token5] = ACTIONS(1752), - [sym_filesize_unit] = ACTIONS(739), - [sym_duration_unit] = ACTIONS(741), - [anon_sym_err_GT] = ACTIONS(739), - [anon_sym_out_GT] = ACTIONS(739), - [anon_sym_e_GT] = ACTIONS(739), - [anon_sym_o_GT] = ACTIONS(739), - [anon_sym_err_PLUSout_GT] = ACTIONS(739), - [anon_sym_out_PLUSerr_GT] = ACTIONS(739), - [anon_sym_o_PLUSe_GT] = ACTIONS(739), - [anon_sym_e_PLUSo_GT] = ACTIONS(739), - [anon_sym_err_GT_GT] = ACTIONS(741), - [anon_sym_out_GT_GT] = ACTIONS(741), - [anon_sym_e_GT_GT] = ACTIONS(741), - [anon_sym_o_GT_GT] = ACTIONS(741), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(741), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(741), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(741), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(741), - [sym__unquoted_pattern] = ACTIONS(739), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(462)] = { - [sym_comment] = STATE(462), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_in] = ACTIONS(1800), - [sym__newline] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_PIPE] = ACTIONS(1800), - [anon_sym_err_GT_PIPE] = ACTIONS(1800), - [anon_sym_out_GT_PIPE] = ACTIONS(1800), - [anon_sym_e_GT_PIPE] = ACTIONS(1800), - [anon_sym_o_GT_PIPE] = ACTIONS(1800), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1800), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1800), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1800), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1800), - [anon_sym_RPAREN] = ACTIONS(1800), - [anon_sym_GT2] = ACTIONS(1802), - [anon_sym_DASH2] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_RBRACE] = ACTIONS(1800), - [anon_sym_EQ_GT] = ACTIONS(1800), - [anon_sym_STAR2] = ACTIONS(1802), - [anon_sym_and2] = ACTIONS(1800), - [anon_sym_xor2] = ACTIONS(1800), - [anon_sym_or2] = ACTIONS(1800), - [anon_sym_not_DASHin2] = ACTIONS(1800), - [anon_sym_has2] = ACTIONS(1800), - [anon_sym_not_DASHhas2] = ACTIONS(1800), - [anon_sym_starts_DASHwith2] = ACTIONS(1800), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1800), - [anon_sym_ends_DASHwith2] = ACTIONS(1800), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1800), - [anon_sym_EQ_EQ2] = ACTIONS(1800), - [anon_sym_BANG_EQ2] = ACTIONS(1800), - [anon_sym_LT2] = ACTIONS(1802), - [anon_sym_LT_EQ2] = ACTIONS(1800), - [anon_sym_GT_EQ2] = ACTIONS(1800), - [anon_sym_EQ_TILDE2] = ACTIONS(1800), - [anon_sym_BANG_TILDE2] = ACTIONS(1800), - [anon_sym_like2] = ACTIONS(1800), - [anon_sym_not_DASHlike2] = ACTIONS(1800), - [anon_sym_STAR_STAR2] = ACTIONS(1800), - [anon_sym_PLUS_PLUS2] = ACTIONS(1800), - [anon_sym_SLASH2] = ACTIONS(1802), - [anon_sym_mod2] = ACTIONS(1800), - [anon_sym_SLASH_SLASH2] = ACTIONS(1800), - [anon_sym_PLUS2] = ACTIONS(1802), - [anon_sym_bit_DASHshl2] = ACTIONS(1800), - [anon_sym_bit_DASHshr2] = ACTIONS(1800), - [anon_sym_bit_DASHand2] = ACTIONS(1800), - [anon_sym_bit_DASHxor2] = ACTIONS(1800), - [anon_sym_bit_DASHor2] = ACTIONS(1800), - [anon_sym_DOT_DOT2] = ACTIONS(1802), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1800), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1800), - [anon_sym_COLON2] = ACTIONS(1800), - [anon_sym_err_GT] = ACTIONS(1802), - [anon_sym_out_GT] = ACTIONS(1802), - [anon_sym_e_GT] = ACTIONS(1802), - [anon_sym_o_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT] = ACTIONS(1802), - [anon_sym_err_GT_GT] = ACTIONS(1800), - [anon_sym_out_GT_GT] = ACTIONS(1800), - [anon_sym_e_GT_GT] = ACTIONS(1800), - [anon_sym_o_GT_GT] = ACTIONS(1800), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1800), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1800), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1800), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1800), - [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1796), }, - [STATE(463)] = { - [sym_comment] = STATE(463), - [ts_builtin_sym_end] = ACTIONS(773), - [anon_sym_in] = ACTIONS(773), - [sym__newline] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_err_GT_PIPE] = ACTIONS(773), - [anon_sym_out_GT_PIPE] = ACTIONS(773), - [anon_sym_e_GT_PIPE] = ACTIONS(773), - [anon_sym_o_GT_PIPE] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(773), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(773), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(773), - [anon_sym_xor2] = ACTIONS(773), - [anon_sym_or2] = ACTIONS(773), - [anon_sym_not_DASHin2] = ACTIONS(773), - [anon_sym_has2] = ACTIONS(773), - [anon_sym_not_DASHhas2] = ACTIONS(773), - [anon_sym_starts_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(773), - [anon_sym_ends_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(773), - [anon_sym_EQ_EQ2] = ACTIONS(773), - [anon_sym_BANG_EQ2] = ACTIONS(773), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(773), - [anon_sym_GT_EQ2] = ACTIONS(773), - [anon_sym_EQ_TILDE2] = ACTIONS(773), - [anon_sym_BANG_TILDE2] = ACTIONS(773), - [anon_sym_like2] = ACTIONS(773), - [anon_sym_not_DASHlike2] = ACTIONS(773), - [anon_sym_LPAREN2] = ACTIONS(773), - [anon_sym_STAR_STAR2] = ACTIONS(773), - [anon_sym_PLUS_PLUS2] = ACTIONS(773), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(773), - [anon_sym_SLASH_SLASH2] = ACTIONS(773), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(773), - [anon_sym_bit_DASHshr2] = ACTIONS(773), - [anon_sym_bit_DASHand2] = ACTIONS(773), - [anon_sym_bit_DASHxor2] = ACTIONS(773), - [anon_sym_bit_DASHor2] = ACTIONS(773), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [aux_sym__immediate_decimal_token5] = ACTIONS(1804), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(773), - [anon_sym_out_GT_GT] = ACTIONS(773), - [anon_sym_e_GT_GT] = ACTIONS(773), - [anon_sym_o_GT_GT] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(773), - [sym__unquoted_pattern] = ACTIONS(771), + [STATE(465)] = { + [sym_comment] = STATE(465), + [anon_sym_EQ] = ACTIONS(1824), + [anon_sym_PLUS_EQ] = ACTIONS(1826), + [anon_sym_DASH_EQ] = ACTIONS(1826), + [anon_sym_STAR_EQ] = ACTIONS(1826), + [anon_sym_SLASH_EQ] = ACTIONS(1826), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1826), + [anon_sym_in] = ACTIONS(1706), + [sym__newline] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1706), + [anon_sym_err_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_GT_PIPE] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), + [anon_sym_GT2] = ACTIONS(1604), + [anon_sym_DASH2] = ACTIONS(1604), + [anon_sym_STAR2] = ACTIONS(1604), + [anon_sym_and2] = ACTIONS(1706), + [anon_sym_xor2] = ACTIONS(1706), + [anon_sym_or2] = ACTIONS(1706), + [anon_sym_not_DASHin2] = ACTIONS(1706), + [anon_sym_has2] = ACTIONS(1706), + [anon_sym_not_DASHhas2] = ACTIONS(1706), + [anon_sym_starts_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), + [anon_sym_ends_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), + [anon_sym_EQ_EQ2] = ACTIONS(1706), + [anon_sym_BANG_EQ2] = ACTIONS(1706), + [anon_sym_LT2] = ACTIONS(1604), + [anon_sym_LT_EQ2] = ACTIONS(1706), + [anon_sym_GT_EQ2] = ACTIONS(1706), + [anon_sym_EQ_TILDE2] = ACTIONS(1706), + [anon_sym_BANG_TILDE2] = ACTIONS(1706), + [anon_sym_like2] = ACTIONS(1706), + [anon_sym_not_DASHlike2] = ACTIONS(1706), + [anon_sym_STAR_STAR2] = ACTIONS(1706), + [anon_sym_PLUS_PLUS2] = ACTIONS(1604), + [anon_sym_SLASH2] = ACTIONS(1604), + [anon_sym_mod2] = ACTIONS(1706), + [anon_sym_SLASH_SLASH2] = ACTIONS(1706), + [anon_sym_PLUS2] = ACTIONS(1604), + [anon_sym_bit_DASHshl2] = ACTIONS(1706), + [anon_sym_bit_DASHshr2] = ACTIONS(1706), + [anon_sym_bit_DASHand2] = ACTIONS(1706), + [anon_sym_bit_DASHxor2] = ACTIONS(1706), + [anon_sym_bit_DASHor2] = ACTIONS(1706), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), + [anon_sym_err_GT] = ACTIONS(1604), + [anon_sym_out_GT] = ACTIONS(1604), + [anon_sym_e_GT] = ACTIONS(1604), + [anon_sym_o_GT] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT] = ACTIONS(1604), + [anon_sym_err_GT_GT] = ACTIONS(1706), + [anon_sym_out_GT_GT] = ACTIONS(1706), + [anon_sym_e_GT_GT] = ACTIONS(1706), + [anon_sym_o_GT_GT] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(464)] = { - [sym_comment] = STATE(464), - [anon_sym_in] = ACTIONS(1806), - [sym__newline] = ACTIONS(1806), - [anon_sym_SEMI] = ACTIONS(1806), - [anon_sym_PIPE] = ACTIONS(1806), - [anon_sym_err_GT_PIPE] = ACTIONS(1806), - [anon_sym_out_GT_PIPE] = ACTIONS(1806), - [anon_sym_e_GT_PIPE] = ACTIONS(1806), - [anon_sym_o_GT_PIPE] = ACTIONS(1806), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1806), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1806), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1806), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1806), - [anon_sym_RPAREN] = ACTIONS(1806), - [anon_sym_GT2] = ACTIONS(1808), - [anon_sym_DASH2] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_RBRACE] = ACTIONS(1806), - [anon_sym_STAR2] = ACTIONS(1808), - [anon_sym_and2] = ACTIONS(1806), - [anon_sym_xor2] = ACTIONS(1806), - [anon_sym_or2] = ACTIONS(1806), - [anon_sym_not_DASHin2] = ACTIONS(1806), - [anon_sym_has2] = ACTIONS(1806), - [anon_sym_not_DASHhas2] = ACTIONS(1806), - [anon_sym_starts_DASHwith2] = ACTIONS(1806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1806), - [anon_sym_ends_DASHwith2] = ACTIONS(1806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1806), - [anon_sym_EQ_EQ2] = ACTIONS(1806), - [anon_sym_BANG_EQ2] = ACTIONS(1806), - [anon_sym_LT2] = ACTIONS(1808), - [anon_sym_LT_EQ2] = ACTIONS(1806), - [anon_sym_GT_EQ2] = ACTIONS(1806), - [anon_sym_EQ_TILDE2] = ACTIONS(1806), - [anon_sym_BANG_TILDE2] = ACTIONS(1806), - [anon_sym_like2] = ACTIONS(1806), - [anon_sym_not_DASHlike2] = ACTIONS(1806), - [anon_sym_LPAREN2] = ACTIONS(1806), - [anon_sym_STAR_STAR2] = ACTIONS(1806), - [anon_sym_PLUS_PLUS2] = ACTIONS(1806), - [anon_sym_SLASH2] = ACTIONS(1808), - [anon_sym_mod2] = ACTIONS(1806), - [anon_sym_SLASH_SLASH2] = ACTIONS(1806), - [anon_sym_PLUS2] = ACTIONS(1808), - [anon_sym_bit_DASHshl2] = ACTIONS(1806), - [anon_sym_bit_DASHshr2] = ACTIONS(1806), - [anon_sym_bit_DASHand2] = ACTIONS(1806), - [anon_sym_bit_DASHxor2] = ACTIONS(1806), - [anon_sym_bit_DASHor2] = ACTIONS(1806), - [anon_sym_DOT_DOT2] = ACTIONS(1808), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1806), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1806), - [aux_sym__immediate_decimal_token5] = ACTIONS(1810), - [anon_sym_err_GT] = ACTIONS(1808), - [anon_sym_out_GT] = ACTIONS(1808), - [anon_sym_e_GT] = ACTIONS(1808), - [anon_sym_o_GT] = ACTIONS(1808), - [anon_sym_err_PLUSout_GT] = ACTIONS(1808), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1808), - [anon_sym_o_PLUSe_GT] = ACTIONS(1808), - [anon_sym_e_PLUSo_GT] = ACTIONS(1808), - [anon_sym_err_GT_GT] = ACTIONS(1806), - [anon_sym_out_GT_GT] = ACTIONS(1806), - [anon_sym_e_GT_GT] = ACTIONS(1806), - [anon_sym_o_GT_GT] = ACTIONS(1806), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1806), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1806), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1806), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1806), - [sym__unquoted_pattern] = ACTIONS(1808), + [STATE(466)] = { + [sym_comment] = STATE(466), + [ts_builtin_sym_end] = ACTIONS(757), + [anon_sym_in] = ACTIONS(757), + [sym__newline] = ACTIONS(757), + [anon_sym_SEMI] = ACTIONS(757), + [anon_sym_PIPE] = ACTIONS(757), + [anon_sym_err_GT_PIPE] = ACTIONS(757), + [anon_sym_out_GT_PIPE] = ACTIONS(757), + [anon_sym_e_GT_PIPE] = ACTIONS(757), + [anon_sym_o_GT_PIPE] = ACTIONS(757), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(757), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(757), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(757), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(757), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(757), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(757), + [anon_sym_xor2] = ACTIONS(757), + [anon_sym_or2] = ACTIONS(757), + [anon_sym_not_DASHin2] = ACTIONS(757), + [anon_sym_has2] = ACTIONS(757), + [anon_sym_not_DASHhas2] = ACTIONS(757), + [anon_sym_starts_DASHwith2] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(757), + [anon_sym_ends_DASHwith2] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(757), + [anon_sym_EQ_EQ2] = ACTIONS(757), + [anon_sym_BANG_EQ2] = ACTIONS(757), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(757), + [anon_sym_GT_EQ2] = ACTIONS(757), + [anon_sym_EQ_TILDE2] = ACTIONS(757), + [anon_sym_BANG_TILDE2] = ACTIONS(757), + [anon_sym_like2] = ACTIONS(757), + [anon_sym_not_DASHlike2] = ACTIONS(757), + [anon_sym_LPAREN2] = ACTIONS(757), + [anon_sym_STAR_STAR2] = ACTIONS(757), + [anon_sym_PLUS_PLUS2] = ACTIONS(757), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(757), + [anon_sym_SLASH_SLASH2] = ACTIONS(757), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(757), + [anon_sym_bit_DASHshr2] = ACTIONS(757), + [anon_sym_bit_DASHand2] = ACTIONS(757), + [anon_sym_bit_DASHxor2] = ACTIONS(757), + [anon_sym_bit_DASHor2] = ACTIONS(757), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [aux_sym__immediate_decimal_token5] = ACTIONS(1828), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(757), + [anon_sym_out_GT_GT] = ACTIONS(757), + [anon_sym_e_GT_GT] = ACTIONS(757), + [anon_sym_o_GT_GT] = ACTIONS(757), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(757), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(757), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(757), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(757), + [sym__unquoted_pattern] = ACTIONS(755), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(465)] = { - [sym_cmd_identifier] = STATE(4341), - [sym__match_pattern_record_body] = STATE(4906), - [sym_expr_parenthesized] = STATE(5062), - [sym__spread_parenthesized] = STATE(4693), - [sym__spread_variable] = STATE(4695), - [sym_val_variable] = STATE(4140), - [sym_val_number] = STATE(5062), - [sym__val_number_decimal] = STATE(1952), - [sym__val_number] = STATE(676), - [sym_val_string] = STATE(5062), - [sym__raw_str] = STATE(2243), - [sym__str_double_quotes] = STATE(2243), - [sym__str_single_quotes] = STATE(2243), - [sym__str_back_ticks] = STATE(2243), - [sym_val_interpolated] = STATE(5062), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym__spread_record] = STATE(4693), - [sym_record_entry] = STATE(4492), - [sym__record_key] = STATE(5228), - [sym_comment] = STATE(465), - [aux_sym__types_body_repeat1] = STATE(549), - [aux_sym__match_pattern_record_body_repeat1] = STATE(761), + [STATE(467)] = { + [sym_cmd_identifier] = STATE(4340), + [sym_expr_parenthesized] = STATE(5053), + [sym__spread_parenthesized] = STATE(4675), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(5053), + [sym_val_number] = STATE(5053), + [sym__val_number_decimal] = STATE(1955), + [sym__val_number] = STATE(693), + [sym_val_string] = STATE(5053), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(5053), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym__spread_record] = STATE(4675), + [sym_record_body] = STATE(5157), + [sym_record_entry] = STATE(4528), + [sym__record_key] = STATE(5144), + [sym_comment] = STATE(467), + [aux_sym__types_body_repeat1] = STATE(526), + [aux_sym_record_body_repeat1] = STATE(741), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -83862,112 +84045,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_null] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [sym__newline] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1798), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1812), + [anon_sym_RBRACE] = ACTIONS(1830), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_decimal_token1] = ACTIONS(1784), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(466)] = { - [sym_comment] = STATE(466), - [anon_sym_EQ] = ACTIONS(1814), - [anon_sym_PLUS_EQ] = ACTIONS(1816), - [anon_sym_DASH_EQ] = ACTIONS(1816), - [anon_sym_STAR_EQ] = ACTIONS(1816), - [anon_sym_SLASH_EQ] = ACTIONS(1816), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1689), - [sym__newline] = ACTIONS(1689), - [anon_sym_SEMI] = ACTIONS(1689), - [anon_sym_PIPE] = ACTIONS(1689), - [anon_sym_err_GT_PIPE] = ACTIONS(1689), - [anon_sym_out_GT_PIPE] = ACTIONS(1689), - [anon_sym_e_GT_PIPE] = ACTIONS(1689), - [anon_sym_o_GT_PIPE] = ACTIONS(1689), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), - [anon_sym_GT2] = ACTIONS(1615), - [anon_sym_DASH2] = ACTIONS(1615), - [anon_sym_STAR2] = ACTIONS(1615), - [anon_sym_and2] = ACTIONS(1689), - [anon_sym_xor2] = ACTIONS(1689), - [anon_sym_or2] = ACTIONS(1689), - [anon_sym_not_DASHin2] = ACTIONS(1689), - [anon_sym_has2] = ACTIONS(1689), - [anon_sym_not_DASHhas2] = ACTIONS(1689), - [anon_sym_starts_DASHwith2] = ACTIONS(1689), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1689), - [anon_sym_ends_DASHwith2] = ACTIONS(1689), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1689), - [anon_sym_EQ_EQ2] = ACTIONS(1689), - [anon_sym_BANG_EQ2] = ACTIONS(1689), - [anon_sym_LT2] = ACTIONS(1615), - [anon_sym_LT_EQ2] = ACTIONS(1689), - [anon_sym_GT_EQ2] = ACTIONS(1689), - [anon_sym_EQ_TILDE2] = ACTIONS(1689), - [anon_sym_BANG_TILDE2] = ACTIONS(1689), - [anon_sym_like2] = ACTIONS(1689), - [anon_sym_not_DASHlike2] = ACTIONS(1689), - [anon_sym_STAR_STAR2] = ACTIONS(1689), - [anon_sym_PLUS_PLUS2] = ACTIONS(1615), - [anon_sym_SLASH2] = ACTIONS(1615), - [anon_sym_mod2] = ACTIONS(1689), - [anon_sym_SLASH_SLASH2] = ACTIONS(1689), - [anon_sym_PLUS2] = ACTIONS(1615), - [anon_sym_bit_DASHshl2] = ACTIONS(1689), - [anon_sym_bit_DASHshr2] = ACTIONS(1689), - [anon_sym_bit_DASHand2] = ACTIONS(1689), - [anon_sym_bit_DASHxor2] = ACTIONS(1689), - [anon_sym_bit_DASHor2] = ACTIONS(1689), - [anon_sym_DOT_DOT2] = ACTIONS(1619), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), - [anon_sym_err_GT] = ACTIONS(1615), - [anon_sym_out_GT] = ACTIONS(1615), - [anon_sym_e_GT] = ACTIONS(1615), - [anon_sym_o_GT] = ACTIONS(1615), - [anon_sym_err_PLUSout_GT] = ACTIONS(1615), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), - [anon_sym_o_PLUSe_GT] = ACTIONS(1615), - [anon_sym_e_PLUSo_GT] = ACTIONS(1615), - [anon_sym_err_GT_GT] = ACTIONS(1689), - [anon_sym_out_GT_GT] = ACTIONS(1689), - [anon_sym_e_GT_GT] = ACTIONS(1689), - [anon_sym_o_GT_GT] = ACTIONS(1689), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), - [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1796), }, - [STATE(467)] = { - [sym_comment] = STATE(467), + [STATE(468)] = { + [sym_comment] = STATE(468), [anon_sym_in] = ACTIONS(749), [sym__newline] = ACTIONS(749), [anon_sym_SEMI] = ACTIONS(749), @@ -84040,252 +84149,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(468)] = { - [sym_cmd_identifier] = STATE(4341), - [sym__match_pattern_record_body] = STATE(4990), - [sym_expr_parenthesized] = STATE(5062), - [sym__spread_parenthesized] = STATE(4693), - [sym__spread_variable] = STATE(4695), - [sym_val_variable] = STATE(4140), - [sym_val_number] = STATE(5062), - [sym__val_number_decimal] = STATE(1952), - [sym__val_number] = STATE(676), - [sym_val_string] = STATE(5062), - [sym__raw_str] = STATE(2243), - [sym__str_double_quotes] = STATE(2243), - [sym__str_single_quotes] = STATE(2243), - [sym__str_back_ticks] = STATE(2243), - [sym_val_interpolated] = STATE(5062), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym__spread_record] = STATE(4693), - [sym_record_entry] = STATE(4492), - [sym__record_key] = STATE(5228), - [sym_comment] = STATE(468), - [aux_sym__types_body_repeat1] = STATE(549), - [aux_sym__match_pattern_record_body_repeat1] = STATE(761), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, [STATE(469)] = { [sym_comment] = STATE(469), - [anon_sym_in] = ACTIONS(773), - [sym__newline] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_err_GT_PIPE] = ACTIONS(773), - [anon_sym_out_GT_PIPE] = ACTIONS(773), - [anon_sym_e_GT_PIPE] = ACTIONS(773), - [anon_sym_o_GT_PIPE] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(773), - [anon_sym_RPAREN] = ACTIONS(773), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(773), - [anon_sym_RBRACE] = ACTIONS(773), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(773), - [anon_sym_xor2] = ACTIONS(773), - [anon_sym_or2] = ACTIONS(773), - [anon_sym_not_DASHin2] = ACTIONS(773), - [anon_sym_has2] = ACTIONS(773), - [anon_sym_not_DASHhas2] = ACTIONS(773), - [anon_sym_starts_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(773), - [anon_sym_ends_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(773), - [anon_sym_EQ_EQ2] = ACTIONS(773), - [anon_sym_BANG_EQ2] = ACTIONS(773), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(773), - [anon_sym_GT_EQ2] = ACTIONS(773), - [anon_sym_EQ_TILDE2] = ACTIONS(773), - [anon_sym_BANG_TILDE2] = ACTIONS(773), - [anon_sym_like2] = ACTIONS(773), - [anon_sym_not_DASHlike2] = ACTIONS(773), - [anon_sym_LPAREN2] = ACTIONS(773), - [anon_sym_STAR_STAR2] = ACTIONS(773), - [anon_sym_PLUS_PLUS2] = ACTIONS(773), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(773), - [anon_sym_SLASH_SLASH2] = ACTIONS(773), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(773), - [anon_sym_bit_DASHshr2] = ACTIONS(773), - [anon_sym_bit_DASHand2] = ACTIONS(773), - [anon_sym_bit_DASHxor2] = ACTIONS(773), - [anon_sym_bit_DASHor2] = ACTIONS(773), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(773), - [anon_sym_out_GT_GT] = ACTIONS(773), - [anon_sym_e_GT_GT] = ACTIONS(773), - [anon_sym_o_GT_GT] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(773), - [sym__unquoted_pattern] = ACTIONS(771), + [anon_sym_in] = ACTIONS(757), + [sym__newline] = ACTIONS(757), + [anon_sym_SEMI] = ACTIONS(757), + [anon_sym_PIPE] = ACTIONS(757), + [anon_sym_err_GT_PIPE] = ACTIONS(757), + [anon_sym_out_GT_PIPE] = ACTIONS(757), + [anon_sym_e_GT_PIPE] = ACTIONS(757), + [anon_sym_o_GT_PIPE] = ACTIONS(757), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(757), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(757), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(757), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(757), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(757), + [anon_sym_RBRACE] = ACTIONS(757), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(757), + [anon_sym_xor2] = ACTIONS(757), + [anon_sym_or2] = ACTIONS(757), + [anon_sym_not_DASHin2] = ACTIONS(757), + [anon_sym_has2] = ACTIONS(757), + [anon_sym_not_DASHhas2] = ACTIONS(757), + [anon_sym_starts_DASHwith2] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(757), + [anon_sym_ends_DASHwith2] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(757), + [anon_sym_EQ_EQ2] = ACTIONS(757), + [anon_sym_BANG_EQ2] = ACTIONS(757), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(757), + [anon_sym_GT_EQ2] = ACTIONS(757), + [anon_sym_EQ_TILDE2] = ACTIONS(757), + [anon_sym_BANG_TILDE2] = ACTIONS(757), + [anon_sym_like2] = ACTIONS(757), + [anon_sym_not_DASHlike2] = ACTIONS(757), + [anon_sym_LPAREN2] = ACTIONS(757), + [anon_sym_STAR_STAR2] = ACTIONS(757), + [anon_sym_PLUS_PLUS2] = ACTIONS(757), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(757), + [anon_sym_SLASH_SLASH2] = ACTIONS(757), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(757), + [anon_sym_bit_DASHshr2] = ACTIONS(757), + [anon_sym_bit_DASHand2] = ACTIONS(757), + [anon_sym_bit_DASHxor2] = ACTIONS(757), + [anon_sym_bit_DASHor2] = ACTIONS(757), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(757), + [anon_sym_out_GT_GT] = ACTIONS(757), + [anon_sym_e_GT_GT] = ACTIONS(757), + [anon_sym_o_GT_GT] = ACTIONS(757), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(757), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(757), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(757), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(757), + [sym__unquoted_pattern] = ACTIONS(755), [anon_sym_POUND] = ACTIONS(3), }, [STATE(470)] = { [sym_comment] = STATE(470), - [anon_sym_in] = ACTIONS(876), - [sym__newline] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(876), - [anon_sym_err_GT_PIPE] = ACTIONS(876), - [anon_sym_out_GT_PIPE] = ACTIONS(876), - [anon_sym_e_GT_PIPE] = ACTIONS(876), - [anon_sym_o_GT_PIPE] = ACTIONS(876), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(876), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(876), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(876), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(876), - [anon_sym_RPAREN] = ACTIONS(876), - [anon_sym_GT2] = ACTIONS(874), - [anon_sym_DASH2] = ACTIONS(876), - [anon_sym_RBRACE] = ACTIONS(876), - [anon_sym_STAR2] = ACTIONS(874), - [anon_sym_and2] = ACTIONS(876), - [anon_sym_xor2] = ACTIONS(876), - [anon_sym_or2] = ACTIONS(876), - [anon_sym_not_DASHin2] = ACTIONS(876), - [anon_sym_has2] = ACTIONS(876), - [anon_sym_not_DASHhas2] = ACTIONS(876), - [anon_sym_starts_DASHwith2] = ACTIONS(876), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(876), - [anon_sym_ends_DASHwith2] = ACTIONS(876), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(876), - [anon_sym_EQ_EQ2] = ACTIONS(876), - [anon_sym_BANG_EQ2] = ACTIONS(876), - [anon_sym_LT2] = ACTIONS(874), - [anon_sym_LT_EQ2] = ACTIONS(876), - [anon_sym_GT_EQ2] = ACTIONS(876), - [anon_sym_EQ_TILDE2] = ACTIONS(876), - [anon_sym_BANG_TILDE2] = ACTIONS(876), - [anon_sym_like2] = ACTIONS(876), - [anon_sym_not_DASHlike2] = ACTIONS(876), - [anon_sym_LPAREN2] = ACTIONS(876), - [anon_sym_STAR_STAR2] = ACTIONS(876), - [anon_sym_PLUS_PLUS2] = ACTIONS(876), - [anon_sym_SLASH2] = ACTIONS(874), - [anon_sym_mod2] = ACTIONS(876), - [anon_sym_SLASH_SLASH2] = ACTIONS(876), - [anon_sym_PLUS2] = ACTIONS(874), - [anon_sym_bit_DASHshl2] = ACTIONS(876), - [anon_sym_bit_DASHshr2] = ACTIONS(876), - [anon_sym_bit_DASHand2] = ACTIONS(876), - [anon_sym_bit_DASHxor2] = ACTIONS(876), - [anon_sym_bit_DASHor2] = ACTIONS(876), - [anon_sym_DOT_DOT2] = ACTIONS(874), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), - [anon_sym_DOT_DOT_LT2] = ACTIONS(876), - [sym_filesize_unit] = ACTIONS(874), - [sym_duration_unit] = ACTIONS(876), - [anon_sym_err_GT] = ACTIONS(874), - [anon_sym_out_GT] = ACTIONS(874), - [anon_sym_e_GT] = ACTIONS(874), - [anon_sym_o_GT] = ACTIONS(874), - [anon_sym_err_PLUSout_GT] = ACTIONS(874), - [anon_sym_out_PLUSerr_GT] = ACTIONS(874), - [anon_sym_o_PLUSe_GT] = ACTIONS(874), - [anon_sym_e_PLUSo_GT] = ACTIONS(874), - [anon_sym_err_GT_GT] = ACTIONS(876), - [anon_sym_out_GT_GT] = ACTIONS(876), - [anon_sym_e_GT_GT] = ACTIONS(876), - [anon_sym_o_GT_GT] = ACTIONS(876), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(876), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(876), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(876), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(876), - [sym__unquoted_pattern] = ACTIONS(874), + [anon_sym_in] = ACTIONS(791), + [sym__newline] = ACTIONS(791), + [anon_sym_SEMI] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_err_GT_PIPE] = ACTIONS(791), + [anon_sym_out_GT_PIPE] = ACTIONS(791), + [anon_sym_e_GT_PIPE] = ACTIONS(791), + [anon_sym_o_GT_PIPE] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), + [anon_sym_RPAREN] = ACTIONS(791), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(791), + [anon_sym_RBRACE] = ACTIONS(791), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(791), + [anon_sym_xor2] = ACTIONS(791), + [anon_sym_or2] = ACTIONS(791), + [anon_sym_not_DASHin2] = ACTIONS(791), + [anon_sym_has2] = ACTIONS(791), + [anon_sym_not_DASHhas2] = ACTIONS(791), + [anon_sym_starts_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), + [anon_sym_ends_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), + [anon_sym_EQ_EQ2] = ACTIONS(791), + [anon_sym_BANG_EQ2] = ACTIONS(791), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(791), + [anon_sym_GT_EQ2] = ACTIONS(791), + [anon_sym_EQ_TILDE2] = ACTIONS(791), + [anon_sym_BANG_TILDE2] = ACTIONS(791), + [anon_sym_like2] = ACTIONS(791), + [anon_sym_not_DASHlike2] = ACTIONS(791), + [anon_sym_LPAREN2] = ACTIONS(791), + [anon_sym_STAR_STAR2] = ACTIONS(791), + [anon_sym_PLUS_PLUS2] = ACTIONS(791), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(791), + [anon_sym_SLASH_SLASH2] = ACTIONS(791), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(791), + [anon_sym_bit_DASHshr2] = ACTIONS(791), + [anon_sym_bit_DASHand2] = ACTIONS(791), + [anon_sym_bit_DASHxor2] = ACTIONS(791), + [anon_sym_bit_DASHor2] = ACTIONS(791), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_err_GT] = ACTIONS(789), + [anon_sym_out_GT] = ACTIONS(789), + [anon_sym_e_GT] = ACTIONS(789), + [anon_sym_o_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT] = ACTIONS(789), + [anon_sym_err_GT_GT] = ACTIONS(791), + [anon_sym_out_GT_GT] = ACTIONS(791), + [anon_sym_e_GT_GT] = ACTIONS(791), + [anon_sym_o_GT_GT] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(791), + [sym__unquoted_pattern] = ACTIONS(789), [anon_sym_POUND] = ACTIONS(3), }, [STATE(471)] = { - [sym_cmd_identifier] = STATE(4341), - [sym_expr_parenthesized] = STATE(5062), - [sym__spread_parenthesized] = STATE(4693), - [sym__spread_variable] = STATE(4695), - [sym_val_variable] = STATE(5062), - [sym_val_number] = STATE(5062), - [sym__val_number_decimal] = STATE(1952), - [sym__val_number] = STATE(676), - [sym_val_string] = STATE(5062), - [sym__raw_str] = STATE(2243), - [sym__str_double_quotes] = STATE(2243), - [sym__str_single_quotes] = STATE(2243), - [sym__str_back_ticks] = STATE(2243), - [sym_val_interpolated] = STATE(5062), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym__spread_record] = STATE(4693), - [sym_record_body] = STATE(5107), - [sym_record_entry] = STATE(4520), - [sym__record_key] = STATE(5228), + [sym_cmd_identifier] = STATE(4340), + [sym__match_pattern_record_body] = STATE(4978), + [sym_expr_parenthesized] = STATE(5053), + [sym__spread_parenthesized] = STATE(4675), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(4387), + [sym_val_number] = STATE(5053), + [sym__val_number_decimal] = STATE(1955), + [sym__val_number] = STATE(693), + [sym_val_string] = STATE(5053), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(5053), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym__spread_record] = STATE(4675), + [sym_record_entry] = STATE(4445), + [sym__record_key] = STATE(5144), [sym_comment] = STATE(471), - [aux_sym__types_body_repeat1] = STATE(615), - [aux_sym_record_body_repeat1] = STATE(823), + [aux_sym__types_body_repeat1] = STATE(510), + [aux_sym__match_pattern_record_body_repeat1] = STATE(773), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -84306,336 +84341,336 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_null] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [sym__newline] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1780), [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_RBRACE] = ACTIONS(1832), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_decimal_token1] = ACTIONS(1784), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(1796), }, [STATE(472)] = { - [sym__expr_parenthesized_immediate] = STATE(4757), [sym_comment] = STATE(472), - [ts_builtin_sym_end] = ACTIONS(890), - [anon_sym_in] = ACTIONS(890), - [sym__newline] = ACTIONS(890), - [anon_sym_SEMI] = ACTIONS(890), - [anon_sym_PIPE] = ACTIONS(890), - [anon_sym_err_GT_PIPE] = ACTIONS(890), - [anon_sym_out_GT_PIPE] = ACTIONS(890), - [anon_sym_e_GT_PIPE] = ACTIONS(890), - [anon_sym_o_GT_PIPE] = ACTIONS(890), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(890), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(890), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(890), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(890), - [anon_sym_GT2] = ACTIONS(793), - [anon_sym_DASH2] = ACTIONS(890), - [anon_sym_STAR2] = ACTIONS(793), - [anon_sym_and2] = ACTIONS(890), - [anon_sym_xor2] = ACTIONS(890), - [anon_sym_or2] = ACTIONS(890), - [anon_sym_not_DASHin2] = ACTIONS(890), - [anon_sym_has2] = ACTIONS(890), - [anon_sym_not_DASHhas2] = ACTIONS(890), - [anon_sym_starts_DASHwith2] = ACTIONS(890), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(890), - [anon_sym_ends_DASHwith2] = ACTIONS(890), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(890), - [anon_sym_EQ_EQ2] = ACTIONS(890), - [anon_sym_BANG_EQ2] = ACTIONS(890), - [anon_sym_LT2] = ACTIONS(793), - [anon_sym_LT_EQ2] = ACTIONS(890), - [anon_sym_GT_EQ2] = ACTIONS(890), - [anon_sym_EQ_TILDE2] = ACTIONS(890), - [anon_sym_BANG_TILDE2] = ACTIONS(890), - [anon_sym_like2] = ACTIONS(890), - [anon_sym_not_DASHlike2] = ACTIONS(890), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(890), - [anon_sym_PLUS_PLUS2] = ACTIONS(890), - [anon_sym_SLASH2] = ACTIONS(793), - [anon_sym_mod2] = ACTIONS(890), - [anon_sym_SLASH_SLASH2] = ACTIONS(890), - [anon_sym_PLUS2] = ACTIONS(793), - [anon_sym_bit_DASHshl2] = ACTIONS(890), - [anon_sym_bit_DASHshr2] = ACTIONS(890), - [anon_sym_bit_DASHand2] = ACTIONS(890), - [anon_sym_bit_DASHxor2] = ACTIONS(890), - [anon_sym_bit_DASHor2] = ACTIONS(890), - [anon_sym_DOT_DOT2] = ACTIONS(1822), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1824), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1824), - [sym_filesize_unit] = ACTIONS(1826), - [sym_duration_unit] = ACTIONS(1828), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [anon_sym_err_GT_GT] = ACTIONS(890), - [anon_sym_out_GT_GT] = ACTIONS(890), - [anon_sym_e_GT_GT] = ACTIONS(890), - [anon_sym_o_GT_GT] = ACTIONS(890), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(890), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(890), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(890), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(890), - [sym__unquoted_pattern] = ACTIONS(1830), + [ts_builtin_sym_end] = ACTIONS(741), + [anon_sym_in] = ACTIONS(741), + [sym__newline] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_err_GT_PIPE] = ACTIONS(741), + [anon_sym_out_GT_PIPE] = ACTIONS(741), + [anon_sym_e_GT_PIPE] = ACTIONS(741), + [anon_sym_o_GT_PIPE] = ACTIONS(741), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(741), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(741), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(741), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(741), + [anon_sym_GT2] = ACTIONS(739), + [anon_sym_DASH2] = ACTIONS(741), + [anon_sym_STAR2] = ACTIONS(739), + [anon_sym_and2] = ACTIONS(741), + [anon_sym_xor2] = ACTIONS(741), + [anon_sym_or2] = ACTIONS(741), + [anon_sym_not_DASHin2] = ACTIONS(741), + [anon_sym_has2] = ACTIONS(741), + [anon_sym_not_DASHhas2] = ACTIONS(741), + [anon_sym_starts_DASHwith2] = ACTIONS(741), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(741), + [anon_sym_ends_DASHwith2] = ACTIONS(741), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(741), + [anon_sym_EQ_EQ2] = ACTIONS(741), + [anon_sym_BANG_EQ2] = ACTIONS(741), + [anon_sym_LT2] = ACTIONS(739), + [anon_sym_LT_EQ2] = ACTIONS(741), + [anon_sym_GT_EQ2] = ACTIONS(741), + [anon_sym_EQ_TILDE2] = ACTIONS(741), + [anon_sym_BANG_TILDE2] = ACTIONS(741), + [anon_sym_like2] = ACTIONS(741), + [anon_sym_not_DASHlike2] = ACTIONS(741), + [anon_sym_LPAREN2] = ACTIONS(741), + [anon_sym_STAR_STAR2] = ACTIONS(741), + [anon_sym_PLUS_PLUS2] = ACTIONS(741), + [anon_sym_SLASH2] = ACTIONS(739), + [anon_sym_mod2] = ACTIONS(741), + [anon_sym_SLASH_SLASH2] = ACTIONS(741), + [anon_sym_PLUS2] = ACTIONS(739), + [anon_sym_bit_DASHshl2] = ACTIONS(741), + [anon_sym_bit_DASHshr2] = ACTIONS(741), + [anon_sym_bit_DASHand2] = ACTIONS(741), + [anon_sym_bit_DASHxor2] = ACTIONS(741), + [anon_sym_bit_DASHor2] = ACTIONS(741), + [anon_sym_DOT_DOT2] = ACTIONS(739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(741), + [aux_sym__immediate_decimal_token5] = ACTIONS(1760), + [sym_filesize_unit] = ACTIONS(739), + [sym_duration_unit] = ACTIONS(741), + [anon_sym_err_GT] = ACTIONS(739), + [anon_sym_out_GT] = ACTIONS(739), + [anon_sym_e_GT] = ACTIONS(739), + [anon_sym_o_GT] = ACTIONS(739), + [anon_sym_err_PLUSout_GT] = ACTIONS(739), + [anon_sym_out_PLUSerr_GT] = ACTIONS(739), + [anon_sym_o_PLUSe_GT] = ACTIONS(739), + [anon_sym_e_PLUSo_GT] = ACTIONS(739), + [anon_sym_err_GT_GT] = ACTIONS(741), + [anon_sym_out_GT_GT] = ACTIONS(741), + [anon_sym_e_GT_GT] = ACTIONS(741), + [anon_sym_o_GT_GT] = ACTIONS(741), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(741), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(741), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(741), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(741), + [sym__unquoted_pattern] = ACTIONS(739), [anon_sym_POUND] = ACTIONS(3), }, [STATE(473)] = { [sym_comment] = STATE(473), - [anon_sym_EQ] = ACTIONS(1832), - [anon_sym_PLUS_EQ] = ACTIONS(1834), - [anon_sym_DASH_EQ] = ACTIONS(1834), - [anon_sym_STAR_EQ] = ACTIONS(1834), - [anon_sym_SLASH_EQ] = ACTIONS(1834), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1834), - [anon_sym_in] = ACTIONS(1689), - [sym__newline] = ACTIONS(1689), - [anon_sym_SEMI] = ACTIONS(1689), - [anon_sym_PIPE] = ACTIONS(1689), - [anon_sym_err_GT_PIPE] = ACTIONS(1689), - [anon_sym_out_GT_PIPE] = ACTIONS(1689), - [anon_sym_e_GT_PIPE] = ACTIONS(1689), - [anon_sym_o_GT_PIPE] = ACTIONS(1689), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), - [anon_sym_GT2] = ACTIONS(1615), - [anon_sym_DASH2] = ACTIONS(1615), - [anon_sym_STAR2] = ACTIONS(1615), - [anon_sym_and2] = ACTIONS(1689), - [anon_sym_xor2] = ACTIONS(1689), - [anon_sym_or2] = ACTIONS(1689), - [anon_sym_not_DASHin2] = ACTIONS(1689), - [anon_sym_has2] = ACTIONS(1689), - [anon_sym_not_DASHhas2] = ACTIONS(1689), - [anon_sym_starts_DASHwith2] = ACTIONS(1689), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1689), - [anon_sym_ends_DASHwith2] = ACTIONS(1689), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1689), - [anon_sym_EQ_EQ2] = ACTIONS(1689), - [anon_sym_BANG_EQ2] = ACTIONS(1689), - [anon_sym_LT2] = ACTIONS(1615), - [anon_sym_LT_EQ2] = ACTIONS(1689), - [anon_sym_GT_EQ2] = ACTIONS(1689), - [anon_sym_EQ_TILDE2] = ACTIONS(1689), - [anon_sym_BANG_TILDE2] = ACTIONS(1689), - [anon_sym_like2] = ACTIONS(1689), - [anon_sym_not_DASHlike2] = ACTIONS(1689), - [anon_sym_STAR_STAR2] = ACTIONS(1689), - [anon_sym_PLUS_PLUS2] = ACTIONS(1615), - [anon_sym_SLASH2] = ACTIONS(1615), - [anon_sym_mod2] = ACTIONS(1689), - [anon_sym_SLASH_SLASH2] = ACTIONS(1689), - [anon_sym_PLUS2] = ACTIONS(1615), - [anon_sym_bit_DASHshl2] = ACTIONS(1689), - [anon_sym_bit_DASHshr2] = ACTIONS(1689), - [anon_sym_bit_DASHand2] = ACTIONS(1689), - [anon_sym_bit_DASHxor2] = ACTIONS(1689), - [anon_sym_bit_DASHor2] = ACTIONS(1689), - [anon_sym_DOT_DOT2] = ACTIONS(1619), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), - [anon_sym_err_GT] = ACTIONS(1615), - [anon_sym_out_GT] = ACTIONS(1615), - [anon_sym_e_GT] = ACTIONS(1615), - [anon_sym_o_GT] = ACTIONS(1615), - [anon_sym_err_PLUSout_GT] = ACTIONS(1615), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), - [anon_sym_o_PLUSe_GT] = ACTIONS(1615), - [anon_sym_e_PLUSo_GT] = ACTIONS(1615), - [anon_sym_err_GT_GT] = ACTIONS(1689), - [anon_sym_out_GT_GT] = ACTIONS(1689), - [anon_sym_e_GT_GT] = ACTIONS(1689), - [anon_sym_o_GT_GT] = ACTIONS(1689), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), + [anon_sym_EQ] = ACTIONS(1834), + [anon_sym_PLUS_EQ] = ACTIONS(1836), + [anon_sym_DASH_EQ] = ACTIONS(1836), + [anon_sym_STAR_EQ] = ACTIONS(1836), + [anon_sym_SLASH_EQ] = ACTIONS(1836), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1836), + [anon_sym_in] = ACTIONS(1706), + [sym__newline] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1706), + [anon_sym_err_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_GT_PIPE] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), + [anon_sym_GT2] = ACTIONS(1604), + [anon_sym_DASH2] = ACTIONS(1604), + [anon_sym_STAR2] = ACTIONS(1604), + [anon_sym_and2] = ACTIONS(1706), + [anon_sym_xor2] = ACTIONS(1706), + [anon_sym_or2] = ACTIONS(1706), + [anon_sym_not_DASHin2] = ACTIONS(1706), + [anon_sym_has2] = ACTIONS(1706), + [anon_sym_not_DASHhas2] = ACTIONS(1706), + [anon_sym_starts_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), + [anon_sym_ends_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), + [anon_sym_EQ_EQ2] = ACTIONS(1706), + [anon_sym_BANG_EQ2] = ACTIONS(1706), + [anon_sym_LT2] = ACTIONS(1604), + [anon_sym_LT_EQ2] = ACTIONS(1706), + [anon_sym_GT_EQ2] = ACTIONS(1706), + [anon_sym_EQ_TILDE2] = ACTIONS(1706), + [anon_sym_BANG_TILDE2] = ACTIONS(1706), + [anon_sym_like2] = ACTIONS(1706), + [anon_sym_not_DASHlike2] = ACTIONS(1706), + [anon_sym_STAR_STAR2] = ACTIONS(1706), + [anon_sym_PLUS_PLUS2] = ACTIONS(1604), + [anon_sym_SLASH2] = ACTIONS(1604), + [anon_sym_mod2] = ACTIONS(1706), + [anon_sym_SLASH_SLASH2] = ACTIONS(1706), + [anon_sym_PLUS2] = ACTIONS(1604), + [anon_sym_bit_DASHshl2] = ACTIONS(1706), + [anon_sym_bit_DASHshr2] = ACTIONS(1706), + [anon_sym_bit_DASHand2] = ACTIONS(1706), + [anon_sym_bit_DASHxor2] = ACTIONS(1706), + [anon_sym_bit_DASHor2] = ACTIONS(1706), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), + [anon_sym_err_GT] = ACTIONS(1604), + [anon_sym_out_GT] = ACTIONS(1604), + [anon_sym_e_GT] = ACTIONS(1604), + [anon_sym_o_GT] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT] = ACTIONS(1604), + [anon_sym_err_GT_GT] = ACTIONS(1706), + [anon_sym_out_GT_GT] = ACTIONS(1706), + [anon_sym_e_GT_GT] = ACTIONS(1706), + [anon_sym_o_GT_GT] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), [anon_sym_POUND] = ACTIONS(3), }, [STATE(474)] = { - [sym_cmd_identifier] = STATE(4341), - [sym_expr_parenthesized] = STATE(5062), - [sym__spread_parenthesized] = STATE(4693), - [sym__spread_variable] = STATE(4695), - [sym_val_variable] = STATE(5062), - [sym_val_number] = STATE(5062), - [sym__val_number_decimal] = STATE(1952), - [sym__val_number] = STATE(676), - [sym_val_string] = STATE(5062), - [sym__raw_str] = STATE(2243), - [sym__str_double_quotes] = STATE(2243), - [sym__str_single_quotes] = STATE(2243), - [sym__str_back_ticks] = STATE(2243), - [sym_val_interpolated] = STATE(5062), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym__spread_record] = STATE(4693), - [sym_record_body] = STATE(5218), - [sym_record_entry] = STATE(4520), - [sym__record_key] = STATE(5228), [sym_comment] = STATE(474), - [aux_sym__types_body_repeat1] = STATE(615), - [aux_sym_record_body_repeat1] = STATE(823), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_RBRACE] = ACTIONS(1836), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [anon_sym_in] = ACTIONS(1750), + [sym__newline] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1750), + [anon_sym_err_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_GT_PIPE] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1750), + [anon_sym_RPAREN] = ACTIONS(1750), + [anon_sym_GT2] = ACTIONS(1752), + [anon_sym_DASH2] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1750), + [anon_sym_RBRACE] = ACTIONS(1750), + [anon_sym_STAR2] = ACTIONS(1752), + [anon_sym_and2] = ACTIONS(1750), + [anon_sym_xor2] = ACTIONS(1750), + [anon_sym_or2] = ACTIONS(1750), + [anon_sym_not_DASHin2] = ACTIONS(1750), + [anon_sym_has2] = ACTIONS(1750), + [anon_sym_not_DASHhas2] = ACTIONS(1750), + [anon_sym_starts_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1750), + [anon_sym_ends_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1750), + [anon_sym_EQ_EQ2] = ACTIONS(1750), + [anon_sym_BANG_EQ2] = ACTIONS(1750), + [anon_sym_LT2] = ACTIONS(1752), + [anon_sym_LT_EQ2] = ACTIONS(1750), + [anon_sym_GT_EQ2] = ACTIONS(1750), + [anon_sym_EQ_TILDE2] = ACTIONS(1750), + [anon_sym_BANG_TILDE2] = ACTIONS(1750), + [anon_sym_like2] = ACTIONS(1750), + [anon_sym_not_DASHlike2] = ACTIONS(1750), + [anon_sym_LPAREN2] = ACTIONS(1750), + [anon_sym_STAR_STAR2] = ACTIONS(1750), + [anon_sym_PLUS_PLUS2] = ACTIONS(1750), + [anon_sym_SLASH2] = ACTIONS(1752), + [anon_sym_mod2] = ACTIONS(1750), + [anon_sym_SLASH_SLASH2] = ACTIONS(1750), + [anon_sym_PLUS2] = ACTIONS(1752), + [anon_sym_bit_DASHshl2] = ACTIONS(1750), + [anon_sym_bit_DASHshr2] = ACTIONS(1750), + [anon_sym_bit_DASHand2] = ACTIONS(1750), + [anon_sym_bit_DASHxor2] = ACTIONS(1750), + [anon_sym_bit_DASHor2] = ACTIONS(1750), + [anon_sym_DOT_DOT2] = ACTIONS(1752), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1750), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1750), + [aux_sym__immediate_decimal_token5] = ACTIONS(1756), + [anon_sym_err_GT] = ACTIONS(1752), + [anon_sym_out_GT] = ACTIONS(1752), + [anon_sym_e_GT] = ACTIONS(1752), + [anon_sym_o_GT] = ACTIONS(1752), + [anon_sym_err_PLUSout_GT] = ACTIONS(1752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1752), + [anon_sym_o_PLUSe_GT] = ACTIONS(1752), + [anon_sym_e_PLUSo_GT] = ACTIONS(1752), + [anon_sym_err_GT_GT] = ACTIONS(1750), + [anon_sym_out_GT_GT] = ACTIONS(1750), + [anon_sym_e_GT_GT] = ACTIONS(1750), + [anon_sym_o_GT_GT] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1750), + [sym__unquoted_pattern] = ACTIONS(1752), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(475)] = { [sym_comment] = STATE(475), - [anon_sym_in] = ACTIONS(1806), - [sym__newline] = ACTIONS(1806), - [anon_sym_SEMI] = ACTIONS(1806), - [anon_sym_PIPE] = ACTIONS(1806), - [anon_sym_err_GT_PIPE] = ACTIONS(1806), - [anon_sym_out_GT_PIPE] = ACTIONS(1806), - [anon_sym_e_GT_PIPE] = ACTIONS(1806), - [anon_sym_o_GT_PIPE] = ACTIONS(1806), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1806), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1806), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1806), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1806), - [anon_sym_RPAREN] = ACTIONS(1806), - [anon_sym_GT2] = ACTIONS(1808), - [anon_sym_DASH2] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_RBRACE] = ACTIONS(1806), - [anon_sym_STAR2] = ACTIONS(1808), - [anon_sym_and2] = ACTIONS(1806), - [anon_sym_xor2] = ACTIONS(1806), - [anon_sym_or2] = ACTIONS(1806), - [anon_sym_not_DASHin2] = ACTIONS(1806), - [anon_sym_has2] = ACTIONS(1806), - [anon_sym_not_DASHhas2] = ACTIONS(1806), - [anon_sym_starts_DASHwith2] = ACTIONS(1806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1806), - [anon_sym_ends_DASHwith2] = ACTIONS(1806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1806), - [anon_sym_EQ_EQ2] = ACTIONS(1806), - [anon_sym_BANG_EQ2] = ACTIONS(1806), - [anon_sym_LT2] = ACTIONS(1808), - [anon_sym_LT_EQ2] = ACTIONS(1806), - [anon_sym_GT_EQ2] = ACTIONS(1806), - [anon_sym_EQ_TILDE2] = ACTIONS(1806), - [anon_sym_BANG_TILDE2] = ACTIONS(1806), - [anon_sym_like2] = ACTIONS(1806), - [anon_sym_not_DASHlike2] = ACTIONS(1806), - [anon_sym_LPAREN2] = ACTIONS(1806), - [anon_sym_STAR_STAR2] = ACTIONS(1806), - [anon_sym_PLUS_PLUS2] = ACTIONS(1806), - [anon_sym_SLASH2] = ACTIONS(1808), - [anon_sym_mod2] = ACTIONS(1806), - [anon_sym_SLASH_SLASH2] = ACTIONS(1806), - [anon_sym_PLUS2] = ACTIONS(1808), - [anon_sym_bit_DASHshl2] = ACTIONS(1806), - [anon_sym_bit_DASHshr2] = ACTIONS(1806), - [anon_sym_bit_DASHand2] = ACTIONS(1806), - [anon_sym_bit_DASHxor2] = ACTIONS(1806), - [anon_sym_bit_DASHor2] = ACTIONS(1806), - [anon_sym_DOT_DOT2] = ACTIONS(1808), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1806), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1806), - [anon_sym_err_GT] = ACTIONS(1808), - [anon_sym_out_GT] = ACTIONS(1808), - [anon_sym_e_GT] = ACTIONS(1808), - [anon_sym_o_GT] = ACTIONS(1808), - [anon_sym_err_PLUSout_GT] = ACTIONS(1808), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1808), - [anon_sym_o_PLUSe_GT] = ACTIONS(1808), - [anon_sym_e_PLUSo_GT] = ACTIONS(1808), - [anon_sym_err_GT_GT] = ACTIONS(1806), - [anon_sym_out_GT_GT] = ACTIONS(1806), - [anon_sym_e_GT_GT] = ACTIONS(1806), - [anon_sym_o_GT_GT] = ACTIONS(1806), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1806), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1806), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1806), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1806), - [sym__unquoted_pattern] = ACTIONS(1808), + [anon_sym_in] = ACTIONS(1816), + [sym__newline] = ACTIONS(1816), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_PIPE] = ACTIONS(1816), + [anon_sym_err_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_GT_PIPE] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_GT2] = ACTIONS(1818), + [anon_sym_DASH2] = ACTIONS(1816), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_STAR2] = ACTIONS(1818), + [anon_sym_and2] = ACTIONS(1816), + [anon_sym_xor2] = ACTIONS(1816), + [anon_sym_or2] = ACTIONS(1816), + [anon_sym_not_DASHin2] = ACTIONS(1816), + [anon_sym_has2] = ACTIONS(1816), + [anon_sym_not_DASHhas2] = ACTIONS(1816), + [anon_sym_starts_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1816), + [anon_sym_ends_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1816), + [anon_sym_EQ_EQ2] = ACTIONS(1816), + [anon_sym_BANG_EQ2] = ACTIONS(1816), + [anon_sym_LT2] = ACTIONS(1818), + [anon_sym_LT_EQ2] = ACTIONS(1816), + [anon_sym_GT_EQ2] = ACTIONS(1816), + [anon_sym_EQ_TILDE2] = ACTIONS(1816), + [anon_sym_BANG_TILDE2] = ACTIONS(1816), + [anon_sym_like2] = ACTIONS(1816), + [anon_sym_not_DASHlike2] = ACTIONS(1816), + [anon_sym_LPAREN2] = ACTIONS(1816), + [anon_sym_STAR_STAR2] = ACTIONS(1816), + [anon_sym_PLUS_PLUS2] = ACTIONS(1816), + [anon_sym_SLASH2] = ACTIONS(1818), + [anon_sym_mod2] = ACTIONS(1816), + [anon_sym_SLASH_SLASH2] = ACTIONS(1816), + [anon_sym_PLUS2] = ACTIONS(1818), + [anon_sym_bit_DASHshl2] = ACTIONS(1816), + [anon_sym_bit_DASHshr2] = ACTIONS(1816), + [anon_sym_bit_DASHand2] = ACTIONS(1816), + [anon_sym_bit_DASHxor2] = ACTIONS(1816), + [anon_sym_bit_DASHor2] = ACTIONS(1816), + [anon_sym_DOT_DOT2] = ACTIONS(1818), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1816), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1816), + [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(1816), + [anon_sym_out_GT_GT] = ACTIONS(1816), + [anon_sym_e_GT_GT] = ACTIONS(1816), + [anon_sym_o_GT_GT] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1816), + [sym__unquoted_pattern] = ACTIONS(1818), [anon_sym_POUND] = ACTIONS(3), }, [STATE(476)] = { - [sym_cell_path] = STATE(839), - [sym_path] = STATE(435), + [sym_cell_path] = STATE(937), + [sym_path] = STATE(446), [sym_comment] = STATE(476), - [aux_sym__where_predicate_lhs_repeat1] = STATE(416), + [aux_sym__where_predicate_lhs_repeat1] = STATE(421), [anon_sym_in] = ACTIONS(1838), [sym__newline] = ACTIONS(1838), [anon_sym_SEMI] = ACTIONS(1838), @@ -84706,79 +84741,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(477)] = { [sym_comment] = STATE(477), - [ts_builtin_sym_end] = ACTIONS(773), - [anon_sym_in] = ACTIONS(773), - [sym__newline] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_err_GT_PIPE] = ACTIONS(773), - [anon_sym_out_GT_PIPE] = ACTIONS(773), - [anon_sym_e_GT_PIPE] = ACTIONS(773), - [anon_sym_o_GT_PIPE] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(773), - [anon_sym_GT2] = ACTIONS(771), - [anon_sym_DASH2] = ACTIONS(773), - [anon_sym_STAR2] = ACTIONS(771), - [anon_sym_and2] = ACTIONS(773), - [anon_sym_xor2] = ACTIONS(773), - [anon_sym_or2] = ACTIONS(773), - [anon_sym_not_DASHin2] = ACTIONS(773), - [anon_sym_has2] = ACTIONS(773), - [anon_sym_not_DASHhas2] = ACTIONS(773), - [anon_sym_starts_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(773), - [anon_sym_ends_DASHwith2] = ACTIONS(773), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(773), - [anon_sym_EQ_EQ2] = ACTIONS(773), - [anon_sym_BANG_EQ2] = ACTIONS(773), - [anon_sym_LT2] = ACTIONS(771), - [anon_sym_LT_EQ2] = ACTIONS(773), - [anon_sym_GT_EQ2] = ACTIONS(773), - [anon_sym_EQ_TILDE2] = ACTIONS(773), - [anon_sym_BANG_TILDE2] = ACTIONS(773), - [anon_sym_like2] = ACTIONS(773), - [anon_sym_not_DASHlike2] = ACTIONS(773), - [anon_sym_LPAREN2] = ACTIONS(773), - [anon_sym_STAR_STAR2] = ACTIONS(773), - [anon_sym_PLUS_PLUS2] = ACTIONS(773), - [anon_sym_SLASH2] = ACTIONS(771), - [anon_sym_mod2] = ACTIONS(773), - [anon_sym_SLASH_SLASH2] = ACTIONS(773), - [anon_sym_PLUS2] = ACTIONS(771), - [anon_sym_bit_DASHshl2] = ACTIONS(773), - [anon_sym_bit_DASHshr2] = ACTIONS(773), - [anon_sym_bit_DASHand2] = ACTIONS(773), - [anon_sym_bit_DASHxor2] = ACTIONS(773), - [anon_sym_bit_DASHor2] = ACTIONS(773), - [anon_sym_DOT_DOT2] = ACTIONS(771), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(773), - [anon_sym_DOT_DOT_LT2] = ACTIONS(773), - [sym_filesize_unit] = ACTIONS(771), - [sym_duration_unit] = ACTIONS(773), - [anon_sym_err_GT] = ACTIONS(771), - [anon_sym_out_GT] = ACTIONS(771), - [anon_sym_e_GT] = ACTIONS(771), - [anon_sym_o_GT] = ACTIONS(771), - [anon_sym_err_PLUSout_GT] = ACTIONS(771), - [anon_sym_out_PLUSerr_GT] = ACTIONS(771), - [anon_sym_o_PLUSe_GT] = ACTIONS(771), - [anon_sym_e_PLUSo_GT] = ACTIONS(771), - [anon_sym_err_GT_GT] = ACTIONS(773), - [anon_sym_out_GT_GT] = ACTIONS(773), - [anon_sym_e_GT_GT] = ACTIONS(773), - [anon_sym_o_GT_GT] = ACTIONS(773), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(773), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(773), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(773), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(773), - [sym__unquoted_pattern] = ACTIONS(771), + [ts_builtin_sym_end] = ACTIONS(1511), + [anon_sym_in] = ACTIONS(1511), + [sym__newline] = ACTIONS(1511), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_err_GT_PIPE] = ACTIONS(1511), + [anon_sym_out_GT_PIPE] = ACTIONS(1511), + [anon_sym_e_GT_PIPE] = ACTIONS(1511), + [anon_sym_o_GT_PIPE] = ACTIONS(1511), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1511), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1511), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1511), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1511), + [anon_sym_GT2] = ACTIONS(1509), + [anon_sym_DASH2] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_STAR2] = ACTIONS(1509), + [anon_sym_and2] = ACTIONS(1511), + [anon_sym_xor2] = ACTIONS(1511), + [anon_sym_or2] = ACTIONS(1511), + [anon_sym_not_DASHin2] = ACTIONS(1511), + [anon_sym_has2] = ACTIONS(1511), + [anon_sym_not_DASHhas2] = ACTIONS(1511), + [anon_sym_starts_DASHwith2] = ACTIONS(1511), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1511), + [anon_sym_ends_DASHwith2] = ACTIONS(1511), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1511), + [anon_sym_EQ_EQ2] = ACTIONS(1511), + [anon_sym_BANG_EQ2] = ACTIONS(1511), + [anon_sym_LT2] = ACTIONS(1509), + [anon_sym_LT_EQ2] = ACTIONS(1511), + [anon_sym_GT_EQ2] = ACTIONS(1511), + [anon_sym_EQ_TILDE2] = ACTIONS(1511), + [anon_sym_BANG_TILDE2] = ACTIONS(1511), + [anon_sym_like2] = ACTIONS(1511), + [anon_sym_not_DASHlike2] = ACTIONS(1511), + [anon_sym_STAR_STAR2] = ACTIONS(1511), + [anon_sym_PLUS_PLUS2] = ACTIONS(1511), + [anon_sym_SLASH2] = ACTIONS(1509), + [anon_sym_mod2] = ACTIONS(1511), + [anon_sym_SLASH_SLASH2] = ACTIONS(1511), + [anon_sym_PLUS2] = ACTIONS(1509), + [anon_sym_bit_DASHshl2] = ACTIONS(1511), + [anon_sym_bit_DASHshr2] = ACTIONS(1511), + [anon_sym_bit_DASHand2] = ACTIONS(1511), + [anon_sym_bit_DASHxor2] = ACTIONS(1511), + [anon_sym_bit_DASHor2] = ACTIONS(1511), + [anon_sym_DOT_DOT2] = ACTIONS(1509), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1511), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1511), + [anon_sym_QMARK2] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1509), + [anon_sym_DOT2] = ACTIONS(1509), + [anon_sym_err_GT] = ACTIONS(1509), + [anon_sym_out_GT] = ACTIONS(1509), + [anon_sym_e_GT] = ACTIONS(1509), + [anon_sym_o_GT] = ACTIONS(1509), + [anon_sym_err_PLUSout_GT] = ACTIONS(1509), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1509), + [anon_sym_o_PLUSe_GT] = ACTIONS(1509), + [anon_sym_e_PLUSo_GT] = ACTIONS(1509), + [anon_sym_err_GT_GT] = ACTIONS(1511), + [anon_sym_out_GT_GT] = ACTIONS(1511), + [anon_sym_e_GT_GT] = ACTIONS(1511), + [anon_sym_o_GT_GT] = ACTIONS(1511), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1511), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1511), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1511), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1511), [anon_sym_POUND] = ACTIONS(3), }, [STATE(478)] = { + [sym_cell_path] = STATE(897), + [sym_path] = STATE(446), [sym_comment] = STATE(478), + [aux_sym__where_predicate_lhs_repeat1] = STATE(421), [anon_sym_in] = ACTIONS(1844), [sym__newline] = ACTIONS(1844), [anon_sym_SEMI] = ACTIONS(1844), @@ -84796,6 +84834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(1844), [anon_sym_LBRACE] = ACTIONS(1844), [anon_sym_RBRACE] = ACTIONS(1844), + [anon_sym_EQ_GT] = ACTIONS(1844), [anon_sym_STAR2] = ACTIONS(1846), [anon_sym_and2] = ACTIONS(1844), [anon_sym_xor2] = ACTIONS(1844), @@ -84816,7 +84855,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(1844), [anon_sym_like2] = ACTIONS(1844), [anon_sym_not_DASHlike2] = ACTIONS(1844), - [anon_sym_LPAREN2] = ACTIONS(1844), [anon_sym_STAR_STAR2] = ACTIONS(1844), [anon_sym_PLUS_PLUS2] = ACTIONS(1844), [anon_sym_SLASH2] = ACTIONS(1846), @@ -84828,9 +84866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1844), [anon_sym_bit_DASHxor2] = ACTIONS(1844), [anon_sym_bit_DASHor2] = ACTIONS(1844), - [anon_sym_DOT_DOT2] = ACTIONS(1846), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1844), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1844), + [anon_sym_DOT2] = ACTIONS(1842), [anon_sym_err_GT] = ACTIONS(1846), [anon_sym_out_GT] = ACTIONS(1846), [anon_sym_e_GT] = ACTIONS(1846), @@ -84847,14 +84883,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1844), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1844), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1844), - [sym__unquoted_pattern] = ACTIONS(1846), [anon_sym_POUND] = ACTIONS(3), }, [STATE(479)] = { - [sym_cell_path] = STATE(937), - [sym_path] = STATE(435), + [sym_cell_path] = STATE(942), + [sym_path] = STATE(446), [sym_comment] = STATE(479), - [aux_sym__where_predicate_lhs_repeat1] = STATE(416), + [aux_sym__where_predicate_lhs_repeat1] = STATE(421), [anon_sym_in] = ACTIONS(1848), [sym__newline] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(1848), @@ -84868,12 +84903,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1848), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1848), [anon_sym_RPAREN] = ACTIONS(1848), - [anon_sym_GT2] = ACTIONS(1850), + [anon_sym_GT2] = ACTIONS(1851), [anon_sym_DASH2] = ACTIONS(1848), [anon_sym_LBRACE] = ACTIONS(1848), [anon_sym_RBRACE] = ACTIONS(1848), [anon_sym_EQ_GT] = ACTIONS(1848), - [anon_sym_STAR2] = ACTIONS(1850), + [anon_sym_STAR2] = ACTIONS(1851), [anon_sym_and2] = ACTIONS(1848), [anon_sym_xor2] = ACTIONS(1848), [anon_sym_or2] = ACTIONS(1848), @@ -84886,7 +84921,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1848), [anon_sym_EQ_EQ2] = ACTIONS(1848), [anon_sym_BANG_EQ2] = ACTIONS(1848), - [anon_sym_LT2] = ACTIONS(1850), + [anon_sym_LT2] = ACTIONS(1851), [anon_sym_LT_EQ2] = ACTIONS(1848), [anon_sym_GT_EQ2] = ACTIONS(1848), [anon_sym_EQ_TILDE2] = ACTIONS(1848), @@ -84895,24 +84930,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHlike2] = ACTIONS(1848), [anon_sym_STAR_STAR2] = ACTIONS(1848), [anon_sym_PLUS_PLUS2] = ACTIONS(1848), - [anon_sym_SLASH2] = ACTIONS(1850), + [anon_sym_SLASH2] = ACTIONS(1851), [anon_sym_mod2] = ACTIONS(1848), [anon_sym_SLASH_SLASH2] = ACTIONS(1848), - [anon_sym_PLUS2] = ACTIONS(1850), + [anon_sym_PLUS2] = ACTIONS(1851), [anon_sym_bit_DASHshl2] = ACTIONS(1848), [anon_sym_bit_DASHshr2] = ACTIONS(1848), [anon_sym_bit_DASHand2] = ACTIONS(1848), [anon_sym_bit_DASHxor2] = ACTIONS(1848), [anon_sym_bit_DASHor2] = ACTIONS(1848), [anon_sym_DOT2] = ACTIONS(1842), - [anon_sym_err_GT] = ACTIONS(1850), - [anon_sym_out_GT] = ACTIONS(1850), - [anon_sym_e_GT] = ACTIONS(1850), - [anon_sym_o_GT] = ACTIONS(1850), - [anon_sym_err_PLUSout_GT] = ACTIONS(1850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1850), - [anon_sym_o_PLUSe_GT] = ACTIONS(1850), - [anon_sym_e_PLUSo_GT] = ACTIONS(1850), + [anon_sym_err_GT] = ACTIONS(1851), + [anon_sym_out_GT] = ACTIONS(1851), + [anon_sym_e_GT] = ACTIONS(1851), + [anon_sym_o_GT] = ACTIONS(1851), + [anon_sym_err_PLUSout_GT] = ACTIONS(1851), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1851), + [anon_sym_o_PLUSe_GT] = ACTIONS(1851), + [anon_sym_e_PLUSo_GT] = ACTIONS(1851), [anon_sym_err_GT_GT] = ACTIONS(1848), [anon_sym_out_GT_GT] = ACTIONS(1848), [anon_sym_e_GT_GT] = ACTIONS(1848), @@ -84925,152 +84960,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(480)] = { [sym_comment] = STATE(480), - [ts_builtin_sym_end] = ACTIONS(1515), - [anon_sym_in] = ACTIONS(1515), - [sym__newline] = ACTIONS(1515), - [anon_sym_SEMI] = ACTIONS(1515), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_err_GT_PIPE] = ACTIONS(1515), - [anon_sym_out_GT_PIPE] = ACTIONS(1515), - [anon_sym_e_GT_PIPE] = ACTIONS(1515), - [anon_sym_o_GT_PIPE] = ACTIONS(1515), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1515), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1515), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1515), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1515), - [anon_sym_GT2] = ACTIONS(1513), - [anon_sym_DASH2] = ACTIONS(1515), - [anon_sym_LBRACE] = ACTIONS(1515), - [anon_sym_STAR2] = ACTIONS(1513), - [anon_sym_and2] = ACTIONS(1515), - [anon_sym_xor2] = ACTIONS(1515), - [anon_sym_or2] = ACTIONS(1515), - [anon_sym_not_DASHin2] = ACTIONS(1515), - [anon_sym_has2] = ACTIONS(1515), - [anon_sym_not_DASHhas2] = ACTIONS(1515), - [anon_sym_starts_DASHwith2] = ACTIONS(1515), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1515), - [anon_sym_ends_DASHwith2] = ACTIONS(1515), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1515), - [anon_sym_EQ_EQ2] = ACTIONS(1515), - [anon_sym_BANG_EQ2] = ACTIONS(1515), - [anon_sym_LT2] = ACTIONS(1513), - [anon_sym_LT_EQ2] = ACTIONS(1515), - [anon_sym_GT_EQ2] = ACTIONS(1515), - [anon_sym_EQ_TILDE2] = ACTIONS(1515), - [anon_sym_BANG_TILDE2] = ACTIONS(1515), - [anon_sym_like2] = ACTIONS(1515), - [anon_sym_not_DASHlike2] = ACTIONS(1515), - [anon_sym_STAR_STAR2] = ACTIONS(1515), - [anon_sym_PLUS_PLUS2] = ACTIONS(1515), - [anon_sym_SLASH2] = ACTIONS(1513), - [anon_sym_mod2] = ACTIONS(1515), - [anon_sym_SLASH_SLASH2] = ACTIONS(1515), - [anon_sym_PLUS2] = ACTIONS(1513), - [anon_sym_bit_DASHshl2] = ACTIONS(1515), - [anon_sym_bit_DASHshr2] = ACTIONS(1515), - [anon_sym_bit_DASHand2] = ACTIONS(1515), - [anon_sym_bit_DASHxor2] = ACTIONS(1515), - [anon_sym_bit_DASHor2] = ACTIONS(1515), - [anon_sym_DOT_DOT2] = ACTIONS(1513), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1515), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1515), - [anon_sym_QMARK2] = ACTIONS(1515), - [anon_sym_BANG] = ACTIONS(1513), - [anon_sym_DOT2] = ACTIONS(1513), - [anon_sym_err_GT] = ACTIONS(1513), - [anon_sym_out_GT] = ACTIONS(1513), - [anon_sym_e_GT] = ACTIONS(1513), - [anon_sym_o_GT] = ACTIONS(1513), - [anon_sym_err_PLUSout_GT] = ACTIONS(1513), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1513), - [anon_sym_o_PLUSe_GT] = ACTIONS(1513), - [anon_sym_e_PLUSo_GT] = ACTIONS(1513), - [anon_sym_err_GT_GT] = ACTIONS(1515), - [anon_sym_out_GT_GT] = ACTIONS(1515), - [anon_sym_e_GT_GT] = ACTIONS(1515), - [anon_sym_o_GT_GT] = ACTIONS(1515), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1515), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1515), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1515), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1515), + [anon_sym_in] = ACTIONS(1854), + [sym__newline] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1854), + [anon_sym_PIPE] = ACTIONS(1854), + [anon_sym_err_GT_PIPE] = ACTIONS(1854), + [anon_sym_out_GT_PIPE] = ACTIONS(1854), + [anon_sym_e_GT_PIPE] = ACTIONS(1854), + [anon_sym_o_GT_PIPE] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1854), + [anon_sym_RPAREN] = ACTIONS(1854), + [anon_sym_GT2] = ACTIONS(1856), + [anon_sym_DASH2] = ACTIONS(1854), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(1854), + [anon_sym_STAR2] = ACTIONS(1856), + [anon_sym_and2] = ACTIONS(1854), + [anon_sym_xor2] = ACTIONS(1854), + [anon_sym_or2] = ACTIONS(1854), + [anon_sym_not_DASHin2] = ACTIONS(1854), + [anon_sym_has2] = ACTIONS(1854), + [anon_sym_not_DASHhas2] = ACTIONS(1854), + [anon_sym_starts_DASHwith2] = ACTIONS(1854), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1854), + [anon_sym_ends_DASHwith2] = ACTIONS(1854), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1854), + [anon_sym_EQ_EQ2] = ACTIONS(1854), + [anon_sym_BANG_EQ2] = ACTIONS(1854), + [anon_sym_LT2] = ACTIONS(1856), + [anon_sym_LT_EQ2] = ACTIONS(1854), + [anon_sym_GT_EQ2] = ACTIONS(1854), + [anon_sym_EQ_TILDE2] = ACTIONS(1854), + [anon_sym_BANG_TILDE2] = ACTIONS(1854), + [anon_sym_like2] = ACTIONS(1854), + [anon_sym_not_DASHlike2] = ACTIONS(1854), + [anon_sym_LPAREN2] = ACTIONS(1854), + [anon_sym_STAR_STAR2] = ACTIONS(1854), + [anon_sym_PLUS_PLUS2] = ACTIONS(1854), + [anon_sym_SLASH2] = ACTIONS(1856), + [anon_sym_mod2] = ACTIONS(1854), + [anon_sym_SLASH_SLASH2] = ACTIONS(1854), + [anon_sym_PLUS2] = ACTIONS(1856), + [anon_sym_bit_DASHshl2] = ACTIONS(1854), + [anon_sym_bit_DASHshr2] = ACTIONS(1854), + [anon_sym_bit_DASHand2] = ACTIONS(1854), + [anon_sym_bit_DASHxor2] = ACTIONS(1854), + [anon_sym_bit_DASHor2] = ACTIONS(1854), + [anon_sym_DOT_DOT2] = ACTIONS(1856), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1854), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1854), + [anon_sym_err_GT] = ACTIONS(1856), + [anon_sym_out_GT] = ACTIONS(1856), + [anon_sym_e_GT] = ACTIONS(1856), + [anon_sym_o_GT] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT] = ACTIONS(1856), + [anon_sym_err_GT_GT] = ACTIONS(1854), + [anon_sym_out_GT_GT] = ACTIONS(1854), + [anon_sym_e_GT_GT] = ACTIONS(1854), + [anon_sym_o_GT_GT] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1854), + [sym__unquoted_pattern] = ACTIONS(1856), [anon_sym_POUND] = ACTIONS(3), }, [STATE(481)] = { - [sym_cell_path] = STATE(961), - [sym_path] = STATE(712), [sym_comment] = STATE(481), - [aux_sym__where_predicate_lhs_repeat1] = STATE(547), - [ts_builtin_sym_end] = ACTIONS(1655), - [anon_sym_in] = ACTIONS(1655), - [sym__newline] = ACTIONS(1655), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_PIPE] = ACTIONS(1655), - [anon_sym_err_GT_PIPE] = ACTIONS(1655), - [anon_sym_out_GT_PIPE] = ACTIONS(1655), - [anon_sym_e_GT_PIPE] = ACTIONS(1655), - [anon_sym_o_GT_PIPE] = ACTIONS(1655), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1655), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1655), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1655), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1655), - [anon_sym_GT2] = ACTIONS(1657), - [anon_sym_DASH2] = ACTIONS(1655), - [anon_sym_STAR2] = ACTIONS(1657), - [anon_sym_and2] = ACTIONS(1655), - [anon_sym_xor2] = ACTIONS(1655), - [anon_sym_or2] = ACTIONS(1655), - [anon_sym_not_DASHin2] = ACTIONS(1655), - [anon_sym_has2] = ACTIONS(1655), - [anon_sym_not_DASHhas2] = ACTIONS(1655), - [anon_sym_starts_DASHwith2] = ACTIONS(1655), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1655), - [anon_sym_ends_DASHwith2] = ACTIONS(1655), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1655), - [anon_sym_EQ_EQ2] = ACTIONS(1655), - [anon_sym_BANG_EQ2] = ACTIONS(1655), - [anon_sym_LT2] = ACTIONS(1657), - [anon_sym_LT_EQ2] = ACTIONS(1655), - [anon_sym_GT_EQ2] = ACTIONS(1655), - [anon_sym_EQ_TILDE2] = ACTIONS(1655), - [anon_sym_BANG_TILDE2] = ACTIONS(1655), - [anon_sym_like2] = ACTIONS(1655), - [anon_sym_not_DASHlike2] = ACTIONS(1655), - [anon_sym_STAR_STAR2] = ACTIONS(1655), - [anon_sym_PLUS_PLUS2] = ACTIONS(1655), - [anon_sym_SLASH2] = ACTIONS(1657), - [anon_sym_mod2] = ACTIONS(1655), - [anon_sym_SLASH_SLASH2] = ACTIONS(1655), - [anon_sym_PLUS2] = ACTIONS(1657), - [anon_sym_bit_DASHshl2] = ACTIONS(1655), - [anon_sym_bit_DASHshr2] = ACTIONS(1655), - [anon_sym_bit_DASHand2] = ACTIONS(1655), - [anon_sym_bit_DASHxor2] = ACTIONS(1655), - [anon_sym_bit_DASHor2] = ACTIONS(1655), - [anon_sym_DOT_DOT2] = ACTIONS(1657), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1655), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1655), - [anon_sym_DOT2] = ACTIONS(1852), - [anon_sym_err_GT] = ACTIONS(1657), - [anon_sym_out_GT] = ACTIONS(1657), - [anon_sym_e_GT] = ACTIONS(1657), - [anon_sym_o_GT] = ACTIONS(1657), - [anon_sym_err_PLUSout_GT] = ACTIONS(1657), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1657), - [anon_sym_o_PLUSe_GT] = ACTIONS(1657), - [anon_sym_e_PLUSo_GT] = ACTIONS(1657), - [anon_sym_err_GT_GT] = ACTIONS(1655), - [anon_sym_out_GT_GT] = ACTIONS(1655), - [anon_sym_e_GT_GT] = ACTIONS(1655), - [anon_sym_o_GT_GT] = ACTIONS(1655), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1655), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1655), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1655), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1655), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(482)] = { - [sym_comment] = STATE(482), [ts_builtin_sym_end] = ACTIONS(1519), [anon_sym_in] = ACTIONS(1519), [sym__newline] = ACTIONS(1519), @@ -85142,665 +85104,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1519), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(483)] = { - [sym_cell_path] = STATE(942), - [sym_path] = STATE(435), - [sym_comment] = STATE(483), - [aux_sym__where_predicate_lhs_repeat1] = STATE(416), - [anon_sym_in] = ACTIONS(1854), - [sym__newline] = ACTIONS(1854), - [anon_sym_SEMI] = ACTIONS(1854), - [anon_sym_PIPE] = ACTIONS(1854), - [anon_sym_err_GT_PIPE] = ACTIONS(1854), - [anon_sym_out_GT_PIPE] = ACTIONS(1854), - [anon_sym_e_GT_PIPE] = ACTIONS(1854), - [anon_sym_o_GT_PIPE] = ACTIONS(1854), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1854), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1854), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1854), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1854), - [anon_sym_RPAREN] = ACTIONS(1854), - [anon_sym_GT2] = ACTIONS(1856), - [anon_sym_DASH2] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(1854), - [anon_sym_EQ_GT] = ACTIONS(1854), - [anon_sym_STAR2] = ACTIONS(1856), - [anon_sym_and2] = ACTIONS(1854), - [anon_sym_xor2] = ACTIONS(1854), - [anon_sym_or2] = ACTIONS(1854), - [anon_sym_not_DASHin2] = ACTIONS(1854), - [anon_sym_has2] = ACTIONS(1854), - [anon_sym_not_DASHhas2] = ACTIONS(1854), - [anon_sym_starts_DASHwith2] = ACTIONS(1854), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1854), - [anon_sym_ends_DASHwith2] = ACTIONS(1854), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1854), - [anon_sym_EQ_EQ2] = ACTIONS(1854), - [anon_sym_BANG_EQ2] = ACTIONS(1854), - [anon_sym_LT2] = ACTIONS(1856), - [anon_sym_LT_EQ2] = ACTIONS(1854), - [anon_sym_GT_EQ2] = ACTIONS(1854), - [anon_sym_EQ_TILDE2] = ACTIONS(1854), - [anon_sym_BANG_TILDE2] = ACTIONS(1854), - [anon_sym_like2] = ACTIONS(1854), - [anon_sym_not_DASHlike2] = ACTIONS(1854), - [anon_sym_STAR_STAR2] = ACTIONS(1854), - [anon_sym_PLUS_PLUS2] = ACTIONS(1854), - [anon_sym_SLASH2] = ACTIONS(1856), - [anon_sym_mod2] = ACTIONS(1854), - [anon_sym_SLASH_SLASH2] = ACTIONS(1854), - [anon_sym_PLUS2] = ACTIONS(1856), - [anon_sym_bit_DASHshl2] = ACTIONS(1854), - [anon_sym_bit_DASHshr2] = ACTIONS(1854), - [anon_sym_bit_DASHand2] = ACTIONS(1854), - [anon_sym_bit_DASHxor2] = ACTIONS(1854), - [anon_sym_bit_DASHor2] = ACTIONS(1854), - [anon_sym_DOT2] = ACTIONS(1842), - [anon_sym_err_GT] = ACTIONS(1856), - [anon_sym_out_GT] = ACTIONS(1856), - [anon_sym_e_GT] = ACTIONS(1856), - [anon_sym_o_GT] = ACTIONS(1856), - [anon_sym_err_PLUSout_GT] = ACTIONS(1856), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1856), - [anon_sym_o_PLUSe_GT] = ACTIONS(1856), - [anon_sym_e_PLUSo_GT] = ACTIONS(1856), - [anon_sym_err_GT_GT] = ACTIONS(1854), - [anon_sym_out_GT_GT] = ACTIONS(1854), - [anon_sym_e_GT_GT] = ACTIONS(1854), - [anon_sym_o_GT_GT] = ACTIONS(1854), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1854), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1854), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1854), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1854), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(484)] = { - [sym_comment] = STATE(484), - [ts_builtin_sym_end] = ACTIONS(1511), - [anon_sym_in] = ACTIONS(1511), - [sym__newline] = ACTIONS(1511), - [anon_sym_SEMI] = ACTIONS(1511), - [anon_sym_PIPE] = ACTIONS(1511), - [anon_sym_err_GT_PIPE] = ACTIONS(1511), - [anon_sym_out_GT_PIPE] = ACTIONS(1511), - [anon_sym_e_GT_PIPE] = ACTIONS(1511), - [anon_sym_o_GT_PIPE] = ACTIONS(1511), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1511), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1511), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1511), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1511), - [anon_sym_GT2] = ACTIONS(1509), - [anon_sym_DASH2] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_STAR2] = ACTIONS(1509), - [anon_sym_and2] = ACTIONS(1511), - [anon_sym_xor2] = ACTIONS(1511), - [anon_sym_or2] = ACTIONS(1511), - [anon_sym_not_DASHin2] = ACTIONS(1511), - [anon_sym_has2] = ACTIONS(1511), - [anon_sym_not_DASHhas2] = ACTIONS(1511), - [anon_sym_starts_DASHwith2] = ACTIONS(1511), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1511), - [anon_sym_ends_DASHwith2] = ACTIONS(1511), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1511), - [anon_sym_EQ_EQ2] = ACTIONS(1511), - [anon_sym_BANG_EQ2] = ACTIONS(1511), - [anon_sym_LT2] = ACTIONS(1509), - [anon_sym_LT_EQ2] = ACTIONS(1511), - [anon_sym_GT_EQ2] = ACTIONS(1511), - [anon_sym_EQ_TILDE2] = ACTIONS(1511), - [anon_sym_BANG_TILDE2] = ACTIONS(1511), - [anon_sym_like2] = ACTIONS(1511), - [anon_sym_not_DASHlike2] = ACTIONS(1511), - [anon_sym_STAR_STAR2] = ACTIONS(1511), - [anon_sym_PLUS_PLUS2] = ACTIONS(1511), - [anon_sym_SLASH2] = ACTIONS(1509), - [anon_sym_mod2] = ACTIONS(1511), - [anon_sym_SLASH_SLASH2] = ACTIONS(1511), - [anon_sym_PLUS2] = ACTIONS(1509), - [anon_sym_bit_DASHshl2] = ACTIONS(1511), - [anon_sym_bit_DASHshr2] = ACTIONS(1511), - [anon_sym_bit_DASHand2] = ACTIONS(1511), - [anon_sym_bit_DASHxor2] = ACTIONS(1511), - [anon_sym_bit_DASHor2] = ACTIONS(1511), - [anon_sym_DOT_DOT2] = ACTIONS(1509), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1511), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1511), - [anon_sym_QMARK2] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1509), - [anon_sym_DOT2] = ACTIONS(1509), - [anon_sym_err_GT] = ACTIONS(1509), - [anon_sym_out_GT] = ACTIONS(1509), - [anon_sym_e_GT] = ACTIONS(1509), - [anon_sym_o_GT] = ACTIONS(1509), - [anon_sym_err_PLUSout_GT] = ACTIONS(1509), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1509), - [anon_sym_o_PLUSe_GT] = ACTIONS(1509), - [anon_sym_e_PLUSo_GT] = ACTIONS(1509), - [anon_sym_err_GT_GT] = ACTIONS(1511), - [anon_sym_out_GT_GT] = ACTIONS(1511), - [anon_sym_e_GT_GT] = ACTIONS(1511), - [anon_sym_o_GT_GT] = ACTIONS(1511), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1511), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1511), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1511), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1511), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(485)] = { - [sym_comment] = STATE(485), - [anon_sym_in] = ACTIONS(1738), - [sym__newline] = ACTIONS(1738), - [anon_sym_SEMI] = ACTIONS(1738), - [anon_sym_PIPE] = ACTIONS(1738), - [anon_sym_err_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_GT_PIPE] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), - [anon_sym_RPAREN] = ACTIONS(1738), - [anon_sym_GT2] = ACTIONS(1740), - [anon_sym_DASH2] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1738), - [anon_sym_RBRACE] = ACTIONS(1738), - [anon_sym_STAR2] = ACTIONS(1740), - [anon_sym_and2] = ACTIONS(1738), - [anon_sym_xor2] = ACTIONS(1738), - [anon_sym_or2] = ACTIONS(1738), - [anon_sym_not_DASHin2] = ACTIONS(1738), - [anon_sym_has2] = ACTIONS(1738), - [anon_sym_not_DASHhas2] = ACTIONS(1738), - [anon_sym_starts_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), - [anon_sym_ends_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), - [anon_sym_EQ_EQ2] = ACTIONS(1738), - [anon_sym_BANG_EQ2] = ACTIONS(1738), - [anon_sym_LT2] = ACTIONS(1740), - [anon_sym_LT_EQ2] = ACTIONS(1738), - [anon_sym_GT_EQ2] = ACTIONS(1738), - [anon_sym_EQ_TILDE2] = ACTIONS(1738), - [anon_sym_BANG_TILDE2] = ACTIONS(1738), - [anon_sym_like2] = ACTIONS(1738), - [anon_sym_not_DASHlike2] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1738), - [anon_sym_STAR_STAR2] = ACTIONS(1738), - [anon_sym_PLUS_PLUS2] = ACTIONS(1738), - [anon_sym_SLASH2] = ACTIONS(1740), - [anon_sym_mod2] = ACTIONS(1738), - [anon_sym_SLASH_SLASH2] = ACTIONS(1738), - [anon_sym_PLUS2] = ACTIONS(1740), - [anon_sym_bit_DASHshl2] = ACTIONS(1738), - [anon_sym_bit_DASHshr2] = ACTIONS(1738), - [anon_sym_bit_DASHand2] = ACTIONS(1738), - [anon_sym_bit_DASHxor2] = ACTIONS(1738), - [anon_sym_bit_DASHor2] = ACTIONS(1738), - [anon_sym_DOT_DOT2] = ACTIONS(1740), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1738), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1738), - [anon_sym_err_GT] = ACTIONS(1740), - [anon_sym_out_GT] = ACTIONS(1740), - [anon_sym_e_GT] = ACTIONS(1740), - [anon_sym_o_GT] = ACTIONS(1740), - [anon_sym_err_PLUSout_GT] = ACTIONS(1740), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1740), - [anon_sym_o_PLUSe_GT] = ACTIONS(1740), - [anon_sym_e_PLUSo_GT] = ACTIONS(1740), - [anon_sym_err_GT_GT] = ACTIONS(1738), - [anon_sym_out_GT_GT] = ACTIONS(1738), - [anon_sym_e_GT_GT] = ACTIONS(1738), - [anon_sym_o_GT_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), - [sym__unquoted_pattern] = ACTIONS(1740), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(486)] = { - [sym_comment] = STATE(486), - [ts_builtin_sym_end] = ACTIONS(1460), - [anon_sym_in] = ACTIONS(1460), - [sym__newline] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_err_GT_PIPE] = ACTIONS(1460), - [anon_sym_out_GT_PIPE] = ACTIONS(1460), - [anon_sym_e_GT_PIPE] = ACTIONS(1460), - [anon_sym_o_GT_PIPE] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1460), - [anon_sym_GT2] = ACTIONS(1458), - [anon_sym_DASH2] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_STAR2] = ACTIONS(1458), - [anon_sym_and2] = ACTIONS(1460), - [anon_sym_xor2] = ACTIONS(1460), - [anon_sym_or2] = ACTIONS(1460), - [anon_sym_not_DASHin2] = ACTIONS(1460), - [anon_sym_has2] = ACTIONS(1460), - [anon_sym_not_DASHhas2] = ACTIONS(1460), - [anon_sym_starts_DASHwith2] = ACTIONS(1460), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1460), - [anon_sym_ends_DASHwith2] = ACTIONS(1460), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1460), - [anon_sym_EQ_EQ2] = ACTIONS(1460), - [anon_sym_BANG_EQ2] = ACTIONS(1460), - [anon_sym_LT2] = ACTIONS(1458), - [anon_sym_LT_EQ2] = ACTIONS(1460), - [anon_sym_GT_EQ2] = ACTIONS(1460), - [anon_sym_EQ_TILDE2] = ACTIONS(1460), - [anon_sym_BANG_TILDE2] = ACTIONS(1460), - [anon_sym_like2] = ACTIONS(1460), - [anon_sym_not_DASHlike2] = ACTIONS(1460), - [anon_sym_STAR_STAR2] = ACTIONS(1460), - [anon_sym_PLUS_PLUS2] = ACTIONS(1460), - [anon_sym_SLASH2] = ACTIONS(1458), - [anon_sym_mod2] = ACTIONS(1460), - [anon_sym_SLASH_SLASH2] = ACTIONS(1460), - [anon_sym_PLUS2] = ACTIONS(1458), - [anon_sym_bit_DASHshl2] = ACTIONS(1460), - [anon_sym_bit_DASHshr2] = ACTIONS(1460), - [anon_sym_bit_DASHand2] = ACTIONS(1460), - [anon_sym_bit_DASHxor2] = ACTIONS(1460), - [anon_sym_bit_DASHor2] = ACTIONS(1460), - [anon_sym_DOT_DOT2] = ACTIONS(1458), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1460), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1460), - [anon_sym_QMARK2] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_DOT2] = ACTIONS(1458), - [anon_sym_err_GT] = ACTIONS(1458), - [anon_sym_out_GT] = ACTIONS(1458), - [anon_sym_e_GT] = ACTIONS(1458), - [anon_sym_o_GT] = ACTIONS(1458), - [anon_sym_err_PLUSout_GT] = ACTIONS(1458), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1458), - [anon_sym_o_PLUSe_GT] = ACTIONS(1458), - [anon_sym_e_PLUSo_GT] = ACTIONS(1458), - [anon_sym_err_GT_GT] = ACTIONS(1460), - [anon_sym_out_GT_GT] = ACTIONS(1460), - [anon_sym_e_GT_GT] = ACTIONS(1460), - [anon_sym_o_GT_GT] = ACTIONS(1460), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1460), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1460), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1460), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1460), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(487)] = { - [sym__path_suffix] = STATE(754), - [sym_comment] = STATE(487), - [ts_builtin_sym_end] = ACTIONS(1440), - [anon_sym_in] = ACTIONS(1440), - [sym__newline] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_err_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_GT_PIPE] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1440), - [anon_sym_GT2] = ACTIONS(1438), - [anon_sym_DASH2] = ACTIONS(1440), - [anon_sym_STAR2] = ACTIONS(1438), - [anon_sym_and2] = ACTIONS(1440), - [anon_sym_xor2] = ACTIONS(1440), - [anon_sym_or2] = ACTIONS(1440), - [anon_sym_not_DASHin2] = ACTIONS(1440), - [anon_sym_has2] = ACTIONS(1440), - [anon_sym_not_DASHhas2] = ACTIONS(1440), - [anon_sym_starts_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1440), - [anon_sym_ends_DASHwith2] = ACTIONS(1440), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1440), - [anon_sym_EQ_EQ2] = ACTIONS(1440), - [anon_sym_BANG_EQ2] = ACTIONS(1440), - [anon_sym_LT2] = ACTIONS(1438), - [anon_sym_LT_EQ2] = ACTIONS(1440), - [anon_sym_GT_EQ2] = ACTIONS(1440), - [anon_sym_EQ_TILDE2] = ACTIONS(1440), - [anon_sym_BANG_TILDE2] = ACTIONS(1440), - [anon_sym_like2] = ACTIONS(1440), - [anon_sym_not_DASHlike2] = ACTIONS(1440), - [anon_sym_STAR_STAR2] = ACTIONS(1440), - [anon_sym_PLUS_PLUS2] = ACTIONS(1440), - [anon_sym_SLASH2] = ACTIONS(1438), - [anon_sym_mod2] = ACTIONS(1440), - [anon_sym_SLASH_SLASH2] = ACTIONS(1440), - [anon_sym_PLUS2] = ACTIONS(1438), - [anon_sym_bit_DASHshl2] = ACTIONS(1440), - [anon_sym_bit_DASHshr2] = ACTIONS(1440), - [anon_sym_bit_DASHand2] = ACTIONS(1440), - [anon_sym_bit_DASHxor2] = ACTIONS(1440), - [anon_sym_bit_DASHor2] = ACTIONS(1440), - [anon_sym_DOT_DOT2] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1440), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1440), - [anon_sym_QMARK2] = ACTIONS(1858), - [anon_sym_BANG] = ACTIONS(1860), - [anon_sym_DOT2] = ACTIONS(1438), - [anon_sym_err_GT] = ACTIONS(1438), - [anon_sym_out_GT] = ACTIONS(1438), - [anon_sym_e_GT] = ACTIONS(1438), - [anon_sym_o_GT] = ACTIONS(1438), - [anon_sym_err_PLUSout_GT] = ACTIONS(1438), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1438), - [anon_sym_o_PLUSe_GT] = ACTIONS(1438), - [anon_sym_e_PLUSo_GT] = ACTIONS(1438), - [anon_sym_err_GT_GT] = ACTIONS(1440), - [anon_sym_out_GT_GT] = ACTIONS(1440), - [anon_sym_e_GT_GT] = ACTIONS(1440), - [anon_sym_o_GT_GT] = ACTIONS(1440), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1440), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1440), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1440), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1440), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(488)] = { - [sym_cell_path] = STATE(927), - [sym_path] = STATE(435), - [sym_comment] = STATE(488), - [aux_sym__where_predicate_lhs_repeat1] = STATE(416), - [anon_sym_in] = ACTIONS(1862), - [sym__newline] = ACTIONS(1862), - [anon_sym_SEMI] = ACTIONS(1862), - [anon_sym_PIPE] = ACTIONS(1862), - [anon_sym_err_GT_PIPE] = ACTIONS(1862), - [anon_sym_out_GT_PIPE] = ACTIONS(1862), - [anon_sym_e_GT_PIPE] = ACTIONS(1862), - [anon_sym_o_GT_PIPE] = ACTIONS(1862), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1862), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1862), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1862), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1862), - [anon_sym_RPAREN] = ACTIONS(1862), - [anon_sym_GT2] = ACTIONS(1864), - [anon_sym_DASH2] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1862), - [anon_sym_RBRACE] = ACTIONS(1862), - [anon_sym_EQ_GT] = ACTIONS(1862), - [anon_sym_STAR2] = ACTIONS(1864), - [anon_sym_and2] = ACTIONS(1862), - [anon_sym_xor2] = ACTIONS(1862), - [anon_sym_or2] = ACTIONS(1862), - [anon_sym_not_DASHin2] = ACTIONS(1862), - [anon_sym_has2] = ACTIONS(1862), - [anon_sym_not_DASHhas2] = ACTIONS(1862), - [anon_sym_starts_DASHwith2] = ACTIONS(1862), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1862), - [anon_sym_ends_DASHwith2] = ACTIONS(1862), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1862), - [anon_sym_EQ_EQ2] = ACTIONS(1862), - [anon_sym_BANG_EQ2] = ACTIONS(1862), - [anon_sym_LT2] = ACTIONS(1864), - [anon_sym_LT_EQ2] = ACTIONS(1862), - [anon_sym_GT_EQ2] = ACTIONS(1862), - [anon_sym_EQ_TILDE2] = ACTIONS(1862), - [anon_sym_BANG_TILDE2] = ACTIONS(1862), - [anon_sym_like2] = ACTIONS(1862), - [anon_sym_not_DASHlike2] = ACTIONS(1862), - [anon_sym_STAR_STAR2] = ACTIONS(1862), - [anon_sym_PLUS_PLUS2] = ACTIONS(1862), - [anon_sym_SLASH2] = ACTIONS(1864), - [anon_sym_mod2] = ACTIONS(1862), - [anon_sym_SLASH_SLASH2] = ACTIONS(1862), - [anon_sym_PLUS2] = ACTIONS(1864), - [anon_sym_bit_DASHshl2] = ACTIONS(1862), - [anon_sym_bit_DASHshr2] = ACTIONS(1862), - [anon_sym_bit_DASHand2] = ACTIONS(1862), - [anon_sym_bit_DASHxor2] = ACTIONS(1862), - [anon_sym_bit_DASHor2] = ACTIONS(1862), - [anon_sym_DOT2] = ACTIONS(1842), - [anon_sym_err_GT] = ACTIONS(1864), - [anon_sym_out_GT] = ACTIONS(1864), - [anon_sym_e_GT] = ACTIONS(1864), - [anon_sym_o_GT] = ACTIONS(1864), - [anon_sym_err_PLUSout_GT] = ACTIONS(1864), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1864), - [anon_sym_o_PLUSe_GT] = ACTIONS(1864), - [anon_sym_e_PLUSo_GT] = ACTIONS(1864), - [anon_sym_err_GT_GT] = ACTIONS(1862), - [anon_sym_out_GT_GT] = ACTIONS(1862), - [anon_sym_e_GT_GT] = ACTIONS(1862), - [anon_sym_o_GT_GT] = ACTIONS(1862), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1862), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1862), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1862), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1862), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(489)] = { - [sym_comment] = STATE(489), - [ts_builtin_sym_end] = ACTIONS(876), - [anon_sym_in] = ACTIONS(876), - [sym__newline] = ACTIONS(876), - [anon_sym_SEMI] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(876), - [anon_sym_err_GT_PIPE] = ACTIONS(876), - [anon_sym_out_GT_PIPE] = ACTIONS(876), - [anon_sym_e_GT_PIPE] = ACTIONS(876), - [anon_sym_o_GT_PIPE] = ACTIONS(876), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(876), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(876), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(876), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(876), - [anon_sym_GT2] = ACTIONS(874), - [anon_sym_DASH2] = ACTIONS(876), - [anon_sym_STAR2] = ACTIONS(874), - [anon_sym_and2] = ACTIONS(876), - [anon_sym_xor2] = ACTIONS(876), - [anon_sym_or2] = ACTIONS(876), - [anon_sym_not_DASHin2] = ACTIONS(876), - [anon_sym_has2] = ACTIONS(876), - [anon_sym_not_DASHhas2] = ACTIONS(876), - [anon_sym_starts_DASHwith2] = ACTIONS(876), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(876), - [anon_sym_ends_DASHwith2] = ACTIONS(876), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(876), - [anon_sym_EQ_EQ2] = ACTIONS(876), - [anon_sym_BANG_EQ2] = ACTIONS(876), - [anon_sym_LT2] = ACTIONS(874), - [anon_sym_LT_EQ2] = ACTIONS(876), - [anon_sym_GT_EQ2] = ACTIONS(876), - [anon_sym_EQ_TILDE2] = ACTIONS(876), - [anon_sym_BANG_TILDE2] = ACTIONS(876), - [anon_sym_like2] = ACTIONS(876), - [anon_sym_not_DASHlike2] = ACTIONS(876), - [anon_sym_LPAREN2] = ACTIONS(876), - [anon_sym_STAR_STAR2] = ACTIONS(876), - [anon_sym_PLUS_PLUS2] = ACTIONS(876), - [anon_sym_SLASH2] = ACTIONS(874), - [anon_sym_mod2] = ACTIONS(876), - [anon_sym_SLASH_SLASH2] = ACTIONS(876), - [anon_sym_PLUS2] = ACTIONS(874), - [anon_sym_bit_DASHshl2] = ACTIONS(876), - [anon_sym_bit_DASHshr2] = ACTIONS(876), - [anon_sym_bit_DASHand2] = ACTIONS(876), - [anon_sym_bit_DASHxor2] = ACTIONS(876), - [anon_sym_bit_DASHor2] = ACTIONS(876), - [anon_sym_DOT_DOT2] = ACTIONS(874), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(876), - [anon_sym_DOT_DOT_LT2] = ACTIONS(876), - [sym_filesize_unit] = ACTIONS(874), - [sym_duration_unit] = ACTIONS(876), - [anon_sym_err_GT] = ACTIONS(874), - [anon_sym_out_GT] = ACTIONS(874), - [anon_sym_e_GT] = ACTIONS(874), - [anon_sym_o_GT] = ACTIONS(874), - [anon_sym_err_PLUSout_GT] = ACTIONS(874), - [anon_sym_out_PLUSerr_GT] = ACTIONS(874), - [anon_sym_o_PLUSe_GT] = ACTIONS(874), - [anon_sym_e_PLUSo_GT] = ACTIONS(874), - [anon_sym_err_GT_GT] = ACTIONS(876), - [anon_sym_out_GT_GT] = ACTIONS(876), - [anon_sym_e_GT_GT] = ACTIONS(876), - [anon_sym_o_GT_GT] = ACTIONS(876), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(876), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(876), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(876), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(876), - [sym__unquoted_pattern] = ACTIONS(874), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(490)] = { - [sym_comment] = STATE(490), - [ts_builtin_sym_end] = ACTIONS(1507), - [anon_sym_in] = ACTIONS(1507), - [sym__newline] = ACTIONS(1507), - [anon_sym_SEMI] = ACTIONS(1507), - [anon_sym_PIPE] = ACTIONS(1507), - [anon_sym_err_GT_PIPE] = ACTIONS(1507), - [anon_sym_out_GT_PIPE] = ACTIONS(1507), - [anon_sym_e_GT_PIPE] = ACTIONS(1507), - [anon_sym_o_GT_PIPE] = ACTIONS(1507), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1507), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1507), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1507), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1507), - [anon_sym_GT2] = ACTIONS(1505), - [anon_sym_DASH2] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_STAR2] = ACTIONS(1505), - [anon_sym_and2] = ACTIONS(1507), - [anon_sym_xor2] = ACTIONS(1507), - [anon_sym_or2] = ACTIONS(1507), - [anon_sym_not_DASHin2] = ACTIONS(1507), - [anon_sym_has2] = ACTIONS(1507), - [anon_sym_not_DASHhas2] = ACTIONS(1507), - [anon_sym_starts_DASHwith2] = ACTIONS(1507), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1507), - [anon_sym_ends_DASHwith2] = ACTIONS(1507), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1507), - [anon_sym_EQ_EQ2] = ACTIONS(1507), - [anon_sym_BANG_EQ2] = ACTIONS(1507), - [anon_sym_LT2] = ACTIONS(1505), - [anon_sym_LT_EQ2] = ACTIONS(1507), - [anon_sym_GT_EQ2] = ACTIONS(1507), - [anon_sym_EQ_TILDE2] = ACTIONS(1507), - [anon_sym_BANG_TILDE2] = ACTIONS(1507), - [anon_sym_like2] = ACTIONS(1507), - [anon_sym_not_DASHlike2] = ACTIONS(1507), - [anon_sym_STAR_STAR2] = ACTIONS(1507), - [anon_sym_PLUS_PLUS2] = ACTIONS(1507), - [anon_sym_SLASH2] = ACTIONS(1505), - [anon_sym_mod2] = ACTIONS(1507), - [anon_sym_SLASH_SLASH2] = ACTIONS(1507), - [anon_sym_PLUS2] = ACTIONS(1505), - [anon_sym_bit_DASHshl2] = ACTIONS(1507), - [anon_sym_bit_DASHshr2] = ACTIONS(1507), - [anon_sym_bit_DASHand2] = ACTIONS(1507), - [anon_sym_bit_DASHxor2] = ACTIONS(1507), - [anon_sym_bit_DASHor2] = ACTIONS(1507), - [anon_sym_DOT_DOT2] = ACTIONS(1505), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1507), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1507), - [anon_sym_QMARK2] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_DOT2] = ACTIONS(1505), - [anon_sym_err_GT] = ACTIONS(1505), - [anon_sym_out_GT] = ACTIONS(1505), - [anon_sym_e_GT] = ACTIONS(1505), - [anon_sym_o_GT] = ACTIONS(1505), - [anon_sym_err_PLUSout_GT] = ACTIONS(1505), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1505), - [anon_sym_o_PLUSe_GT] = ACTIONS(1505), - [anon_sym_e_PLUSo_GT] = ACTIONS(1505), - [anon_sym_err_GT_GT] = ACTIONS(1507), - [anon_sym_out_GT_GT] = ACTIONS(1507), - [anon_sym_e_GT_GT] = ACTIONS(1507), - [anon_sym_o_GT_GT] = ACTIONS(1507), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1507), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1507), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1507), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1507), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(491)] = { - [sym_comment] = STATE(491), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [sym__newline] = ACTIONS(1866), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_err_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_GT_PIPE] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_GT2] = ACTIONS(1868), - [anon_sym_DASH2] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), - [anon_sym_EQ_GT] = ACTIONS(1866), - [anon_sym_STAR2] = ACTIONS(1868), - [anon_sym_and2] = ACTIONS(1866), - [anon_sym_xor2] = ACTIONS(1866), - [anon_sym_or2] = ACTIONS(1866), - [anon_sym_not_DASHin2] = ACTIONS(1866), - [anon_sym_has2] = ACTIONS(1866), - [anon_sym_not_DASHhas2] = ACTIONS(1866), - [anon_sym_starts_DASHwith2] = ACTIONS(1866), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1866), - [anon_sym_ends_DASHwith2] = ACTIONS(1866), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1866), - [anon_sym_EQ_EQ2] = ACTIONS(1866), - [anon_sym_BANG_EQ2] = ACTIONS(1866), - [anon_sym_LT2] = ACTIONS(1868), - [anon_sym_LT_EQ2] = ACTIONS(1866), - [anon_sym_GT_EQ2] = ACTIONS(1866), - [anon_sym_EQ_TILDE2] = ACTIONS(1866), - [anon_sym_BANG_TILDE2] = ACTIONS(1866), - [anon_sym_like2] = ACTIONS(1866), - [anon_sym_not_DASHlike2] = ACTIONS(1866), - [anon_sym_STAR_STAR2] = ACTIONS(1866), - [anon_sym_PLUS_PLUS2] = ACTIONS(1866), - [anon_sym_SLASH2] = ACTIONS(1868), - [anon_sym_mod2] = ACTIONS(1866), - [anon_sym_SLASH_SLASH2] = ACTIONS(1866), - [anon_sym_PLUS2] = ACTIONS(1868), - [anon_sym_bit_DASHshl2] = ACTIONS(1866), - [anon_sym_bit_DASHshr2] = ACTIONS(1866), - [anon_sym_bit_DASHand2] = ACTIONS(1866), - [anon_sym_bit_DASHxor2] = ACTIONS(1866), - [anon_sym_bit_DASHor2] = ACTIONS(1866), - [anon_sym_DOT_DOT2] = ACTIONS(1868), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1866), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1866), - [anon_sym_err_GT] = ACTIONS(1868), - [anon_sym_out_GT] = ACTIONS(1868), - [anon_sym_e_GT] = ACTIONS(1868), - [anon_sym_o_GT] = ACTIONS(1868), - [anon_sym_err_PLUSout_GT] = ACTIONS(1868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1868), - [anon_sym_o_PLUSe_GT] = ACTIONS(1868), - [anon_sym_e_PLUSo_GT] = ACTIONS(1868), - [anon_sym_err_GT_GT] = ACTIONS(1866), - [anon_sym_out_GT_GT] = ACTIONS(1866), - [anon_sym_e_GT_GT] = ACTIONS(1866), - [anon_sym_o_GT_GT] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(492)] = { - [sym_comment] = STATE(492), + [STATE(482)] = { + [sym_comment] = STATE(482), [ts_builtin_sym_end] = ACTIONS(749), [anon_sym_in] = ACTIONS(749), [sym__newline] = ACTIONS(749), @@ -85872,154 +85177,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(747), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(493)] = { - [sym_comment] = STATE(493), - [anon_sym_in] = ACTIONS(1574), - [sym__newline] = ACTIONS(1574), - [anon_sym_SEMI] = ACTIONS(1574), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_err_GT_PIPE] = ACTIONS(1574), - [anon_sym_out_GT_PIPE] = ACTIONS(1574), - [anon_sym_e_GT_PIPE] = ACTIONS(1574), - [anon_sym_o_GT_PIPE] = ACTIONS(1574), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1574), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1574), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1574), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1574), - [anon_sym_RPAREN] = ACTIONS(1574), - [anon_sym_GT2] = ACTIONS(1572), - [anon_sym_DASH2] = ACTIONS(1574), - [anon_sym_LBRACE] = ACTIONS(1574), - [anon_sym_RBRACE] = ACTIONS(1574), - [anon_sym_EQ_GT] = ACTIONS(1574), - [anon_sym_STAR2] = ACTIONS(1572), - [anon_sym_and2] = ACTIONS(1574), - [anon_sym_xor2] = ACTIONS(1574), - [anon_sym_or2] = ACTIONS(1574), - [anon_sym_not_DASHin2] = ACTIONS(1574), - [anon_sym_has2] = ACTIONS(1574), - [anon_sym_not_DASHhas2] = ACTIONS(1574), - [anon_sym_starts_DASHwith2] = ACTIONS(1574), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1574), - [anon_sym_ends_DASHwith2] = ACTIONS(1574), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1574), - [anon_sym_EQ_EQ2] = ACTIONS(1574), - [anon_sym_BANG_EQ2] = ACTIONS(1574), - [anon_sym_LT2] = ACTIONS(1572), - [anon_sym_LT_EQ2] = ACTIONS(1574), - [anon_sym_GT_EQ2] = ACTIONS(1574), - [anon_sym_EQ_TILDE2] = ACTIONS(1574), - [anon_sym_BANG_TILDE2] = ACTIONS(1574), - [anon_sym_like2] = ACTIONS(1574), - [anon_sym_not_DASHlike2] = ACTIONS(1574), - [anon_sym_STAR_STAR2] = ACTIONS(1574), - [anon_sym_PLUS_PLUS2] = ACTIONS(1574), - [anon_sym_SLASH2] = ACTIONS(1572), - [anon_sym_mod2] = ACTIONS(1574), - [anon_sym_SLASH_SLASH2] = ACTIONS(1574), - [anon_sym_PLUS2] = ACTIONS(1572), - [anon_sym_bit_DASHshl2] = ACTIONS(1574), - [anon_sym_bit_DASHshr2] = ACTIONS(1574), - [anon_sym_bit_DASHand2] = ACTIONS(1574), - [anon_sym_bit_DASHxor2] = ACTIONS(1574), - [anon_sym_bit_DASHor2] = ACTIONS(1574), - [anon_sym_DOT_DOT2] = ACTIONS(1572), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1574), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1574), - [anon_sym_COLON2] = ACTIONS(1574), - [anon_sym_err_GT] = ACTIONS(1572), - [anon_sym_out_GT] = ACTIONS(1572), - [anon_sym_e_GT] = ACTIONS(1572), - [anon_sym_o_GT] = ACTIONS(1572), - [anon_sym_err_PLUSout_GT] = ACTIONS(1572), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1572), - [anon_sym_o_PLUSe_GT] = ACTIONS(1572), - [anon_sym_e_PLUSo_GT] = ACTIONS(1572), - [anon_sym_err_GT_GT] = ACTIONS(1574), - [anon_sym_out_GT_GT] = ACTIONS(1574), - [anon_sym_e_GT_GT] = ACTIONS(1574), - [anon_sym_o_GT_GT] = ACTIONS(1574), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1574), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1574), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1574), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1574), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(494)] = { - [sym_comment] = STATE(494), - [anon_sym_if] = ACTIONS(1870), - [anon_sym_in] = ACTIONS(1870), - [sym__newline] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_err_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_GT_PIPE] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1870), - [anon_sym_RPAREN] = ACTIONS(1870), - [anon_sym_GT2] = ACTIONS(1872), - [anon_sym_DASH2] = ACTIONS(1870), - [anon_sym_LBRACE] = ACTIONS(1870), - [anon_sym_RBRACE] = ACTIONS(1870), - [anon_sym_EQ_GT] = ACTIONS(1870), - [anon_sym_STAR2] = ACTIONS(1872), - [anon_sym_and2] = ACTIONS(1870), - [anon_sym_xor2] = ACTIONS(1870), - [anon_sym_or2] = ACTIONS(1870), - [anon_sym_not_DASHin2] = ACTIONS(1870), - [anon_sym_has2] = ACTIONS(1870), - [anon_sym_not_DASHhas2] = ACTIONS(1870), - [anon_sym_starts_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1870), - [anon_sym_ends_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1870), - [anon_sym_EQ_EQ2] = ACTIONS(1870), - [anon_sym_BANG_EQ2] = ACTIONS(1870), - [anon_sym_LT2] = ACTIONS(1872), - [anon_sym_LT_EQ2] = ACTIONS(1870), - [anon_sym_GT_EQ2] = ACTIONS(1870), - [anon_sym_EQ_TILDE2] = ACTIONS(1870), - [anon_sym_BANG_TILDE2] = ACTIONS(1870), - [anon_sym_like2] = ACTIONS(1870), - [anon_sym_not_DASHlike2] = ACTIONS(1870), - [anon_sym_STAR_STAR2] = ACTIONS(1870), - [anon_sym_PLUS_PLUS2] = ACTIONS(1870), - [anon_sym_SLASH2] = ACTIONS(1872), - [anon_sym_mod2] = ACTIONS(1870), - [anon_sym_SLASH_SLASH2] = ACTIONS(1870), - [anon_sym_PLUS2] = ACTIONS(1872), - [anon_sym_bit_DASHshl2] = ACTIONS(1870), - [anon_sym_bit_DASHshr2] = ACTIONS(1870), - [anon_sym_bit_DASHand2] = ACTIONS(1870), - [anon_sym_bit_DASHxor2] = ACTIONS(1870), - [anon_sym_bit_DASHor2] = ACTIONS(1870), - [anon_sym_DOT_DOT2] = ACTIONS(1872), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1870), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1870), - [anon_sym_err_GT] = ACTIONS(1872), - [anon_sym_out_GT] = ACTIONS(1872), - [anon_sym_e_GT] = ACTIONS(1872), - [anon_sym_o_GT] = ACTIONS(1872), - [anon_sym_err_PLUSout_GT] = ACTIONS(1872), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), - [anon_sym_o_PLUSe_GT] = ACTIONS(1872), - [anon_sym_e_PLUSo_GT] = ACTIONS(1872), - [anon_sym_err_GT_GT] = ACTIONS(1870), - [anon_sym_out_GT_GT] = ACTIONS(1870), - [anon_sym_e_GT_GT] = ACTIONS(1870), - [anon_sym_o_GT_GT] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1870), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(495)] = { - [sym_comment] = STATE(495), + [STATE(483)] = { + [sym_comment] = STATE(483), [ts_builtin_sym_end] = ACTIONS(1523), [anon_sym_in] = ACTIONS(1523), [sym__newline] = ACTIONS(1523), @@ -86091,82 +85250,300 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1523), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(496)] = { - [sym_comment] = STATE(496), - [ts_builtin_sym_end] = ACTIONS(1728), - [anon_sym_in] = ACTIONS(1728), - [sym__newline] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_err_GT_PIPE] = ACTIONS(1728), - [anon_sym_out_GT_PIPE] = ACTIONS(1728), - [anon_sym_e_GT_PIPE] = ACTIONS(1728), - [anon_sym_o_GT_PIPE] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1728), - [anon_sym_GT2] = ACTIONS(1730), - [anon_sym_DASH2] = ACTIONS(1728), - [anon_sym_STAR2] = ACTIONS(1730), - [anon_sym_and2] = ACTIONS(1728), - [anon_sym_xor2] = ACTIONS(1728), - [anon_sym_or2] = ACTIONS(1728), - [anon_sym_not_DASHin2] = ACTIONS(1728), - [anon_sym_has2] = ACTIONS(1728), - [anon_sym_not_DASHhas2] = ACTIONS(1728), - [anon_sym_starts_DASHwith2] = ACTIONS(1728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1728), - [anon_sym_ends_DASHwith2] = ACTIONS(1728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1728), - [anon_sym_EQ_EQ2] = ACTIONS(1728), - [anon_sym_BANG_EQ2] = ACTIONS(1728), - [anon_sym_LT2] = ACTIONS(1730), - [anon_sym_LT_EQ2] = ACTIONS(1728), - [anon_sym_GT_EQ2] = ACTIONS(1728), - [anon_sym_EQ_TILDE2] = ACTIONS(1728), - [anon_sym_BANG_TILDE2] = ACTIONS(1728), - [anon_sym_like2] = ACTIONS(1728), - [anon_sym_not_DASHlike2] = ACTIONS(1728), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_STAR_STAR2] = ACTIONS(1728), - [anon_sym_PLUS_PLUS2] = ACTIONS(1728), - [anon_sym_SLASH2] = ACTIONS(1730), - [anon_sym_mod2] = ACTIONS(1728), - [anon_sym_SLASH_SLASH2] = ACTIONS(1728), - [anon_sym_PLUS2] = ACTIONS(1730), - [anon_sym_bit_DASHshl2] = ACTIONS(1728), - [anon_sym_bit_DASHshr2] = ACTIONS(1728), - [anon_sym_bit_DASHand2] = ACTIONS(1728), - [anon_sym_bit_DASHxor2] = ACTIONS(1728), - [anon_sym_bit_DASHor2] = ACTIONS(1728), - [anon_sym_DOT_DOT2] = ACTIONS(1730), - [anon_sym_DOT] = ACTIONS(1874), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1728), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1728), - [aux_sym__immediate_decimal_token5] = ACTIONS(1876), - [anon_sym_err_GT] = ACTIONS(1730), - [anon_sym_out_GT] = ACTIONS(1730), - [anon_sym_e_GT] = ACTIONS(1730), - [anon_sym_o_GT] = ACTIONS(1730), - [anon_sym_err_PLUSout_GT] = ACTIONS(1730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1730), - [anon_sym_o_PLUSe_GT] = ACTIONS(1730), - [anon_sym_e_PLUSo_GT] = ACTIONS(1730), - [anon_sym_err_GT_GT] = ACTIONS(1728), - [anon_sym_out_GT_GT] = ACTIONS(1728), - [anon_sym_e_GT_GT] = ACTIONS(1728), - [anon_sym_o_GT_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1728), - [sym__unquoted_pattern] = ACTIONS(1730), + [STATE(484)] = { + [sym_comment] = STATE(484), + [ts_builtin_sym_end] = ACTIONS(1460), + [anon_sym_in] = ACTIONS(1460), + [sym__newline] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1460), + [anon_sym_PIPE] = ACTIONS(1460), + [anon_sym_err_GT_PIPE] = ACTIONS(1460), + [anon_sym_out_GT_PIPE] = ACTIONS(1460), + [anon_sym_e_GT_PIPE] = ACTIONS(1460), + [anon_sym_o_GT_PIPE] = ACTIONS(1460), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1460), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1460), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1460), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1460), + [anon_sym_GT2] = ACTIONS(1458), + [anon_sym_DASH2] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_STAR2] = ACTIONS(1458), + [anon_sym_and2] = ACTIONS(1460), + [anon_sym_xor2] = ACTIONS(1460), + [anon_sym_or2] = ACTIONS(1460), + [anon_sym_not_DASHin2] = ACTIONS(1460), + [anon_sym_has2] = ACTIONS(1460), + [anon_sym_not_DASHhas2] = ACTIONS(1460), + [anon_sym_starts_DASHwith2] = ACTIONS(1460), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1460), + [anon_sym_ends_DASHwith2] = ACTIONS(1460), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1460), + [anon_sym_EQ_EQ2] = ACTIONS(1460), + [anon_sym_BANG_EQ2] = ACTIONS(1460), + [anon_sym_LT2] = ACTIONS(1458), + [anon_sym_LT_EQ2] = ACTIONS(1460), + [anon_sym_GT_EQ2] = ACTIONS(1460), + [anon_sym_EQ_TILDE2] = ACTIONS(1460), + [anon_sym_BANG_TILDE2] = ACTIONS(1460), + [anon_sym_like2] = ACTIONS(1460), + [anon_sym_not_DASHlike2] = ACTIONS(1460), + [anon_sym_STAR_STAR2] = ACTIONS(1460), + [anon_sym_PLUS_PLUS2] = ACTIONS(1460), + [anon_sym_SLASH2] = ACTIONS(1458), + [anon_sym_mod2] = ACTIONS(1460), + [anon_sym_SLASH_SLASH2] = ACTIONS(1460), + [anon_sym_PLUS2] = ACTIONS(1458), + [anon_sym_bit_DASHshl2] = ACTIONS(1460), + [anon_sym_bit_DASHshr2] = ACTIONS(1460), + [anon_sym_bit_DASHand2] = ACTIONS(1460), + [anon_sym_bit_DASHxor2] = ACTIONS(1460), + [anon_sym_bit_DASHor2] = ACTIONS(1460), + [anon_sym_DOT_DOT2] = ACTIONS(1458), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1460), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1460), + [anon_sym_QMARK2] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_DOT2] = ACTIONS(1458), + [anon_sym_err_GT] = ACTIONS(1458), + [anon_sym_out_GT] = ACTIONS(1458), + [anon_sym_e_GT] = ACTIONS(1458), + [anon_sym_o_GT] = ACTIONS(1458), + [anon_sym_err_PLUSout_GT] = ACTIONS(1458), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1458), + [anon_sym_o_PLUSe_GT] = ACTIONS(1458), + [anon_sym_e_PLUSo_GT] = ACTIONS(1458), + [anon_sym_err_GT_GT] = ACTIONS(1460), + [anon_sym_out_GT_GT] = ACTIONS(1460), + [anon_sym_e_GT_GT] = ACTIONS(1460), + [anon_sym_o_GT_GT] = ACTIONS(1460), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1460), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1460), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1460), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1460), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(497)] = { - [sym_comment] = STATE(497), - [ts_builtin_sym_end] = ACTIONS(1738), + [STATE(485)] = { + [sym_comment] = STATE(485), + [anon_sym_if] = ACTIONS(1858), + [anon_sym_in] = ACTIONS(1858), + [sym__newline] = ACTIONS(1858), + [anon_sym_SEMI] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(1858), + [anon_sym_err_GT_PIPE] = ACTIONS(1858), + [anon_sym_out_GT_PIPE] = ACTIONS(1858), + [anon_sym_e_GT_PIPE] = ACTIONS(1858), + [anon_sym_o_GT_PIPE] = ACTIONS(1858), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1858), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1858), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1858), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1858), + [anon_sym_RPAREN] = ACTIONS(1858), + [anon_sym_GT2] = ACTIONS(1860), + [anon_sym_DASH2] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_RBRACE] = ACTIONS(1858), + [anon_sym_EQ_GT] = ACTIONS(1858), + [anon_sym_STAR2] = ACTIONS(1860), + [anon_sym_and2] = ACTIONS(1858), + [anon_sym_xor2] = ACTIONS(1858), + [anon_sym_or2] = ACTIONS(1858), + [anon_sym_not_DASHin2] = ACTIONS(1858), + [anon_sym_has2] = ACTIONS(1858), + [anon_sym_not_DASHhas2] = ACTIONS(1858), + [anon_sym_starts_DASHwith2] = ACTIONS(1858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1858), + [anon_sym_ends_DASHwith2] = ACTIONS(1858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1858), + [anon_sym_EQ_EQ2] = ACTIONS(1858), + [anon_sym_BANG_EQ2] = ACTIONS(1858), + [anon_sym_LT2] = ACTIONS(1860), + [anon_sym_LT_EQ2] = ACTIONS(1858), + [anon_sym_GT_EQ2] = ACTIONS(1858), + [anon_sym_EQ_TILDE2] = ACTIONS(1858), + [anon_sym_BANG_TILDE2] = ACTIONS(1858), + [anon_sym_like2] = ACTIONS(1858), + [anon_sym_not_DASHlike2] = ACTIONS(1858), + [anon_sym_STAR_STAR2] = ACTIONS(1858), + [anon_sym_PLUS_PLUS2] = ACTIONS(1858), + [anon_sym_SLASH2] = ACTIONS(1860), + [anon_sym_mod2] = ACTIONS(1858), + [anon_sym_SLASH_SLASH2] = ACTIONS(1858), + [anon_sym_PLUS2] = ACTIONS(1860), + [anon_sym_bit_DASHshl2] = ACTIONS(1858), + [anon_sym_bit_DASHshr2] = ACTIONS(1858), + [anon_sym_bit_DASHand2] = ACTIONS(1858), + [anon_sym_bit_DASHxor2] = ACTIONS(1858), + [anon_sym_bit_DASHor2] = ACTIONS(1858), + [anon_sym_DOT_DOT2] = ACTIONS(1860), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1858), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1858), + [anon_sym_err_GT] = ACTIONS(1860), + [anon_sym_out_GT] = ACTIONS(1860), + [anon_sym_e_GT] = ACTIONS(1860), + [anon_sym_o_GT] = ACTIONS(1860), + [anon_sym_err_PLUSout_GT] = ACTIONS(1860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1860), + [anon_sym_o_PLUSe_GT] = ACTIONS(1860), + [anon_sym_e_PLUSo_GT] = ACTIONS(1860), + [anon_sym_err_GT_GT] = ACTIONS(1858), + [anon_sym_out_GT_GT] = ACTIONS(1858), + [anon_sym_e_GT_GT] = ACTIONS(1858), + [anon_sym_o_GT_GT] = ACTIONS(1858), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1858), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1858), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1858), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1858), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(486)] = { + [sym_cell_path] = STATE(955), + [sym_path] = STATE(827), + [sym_comment] = STATE(486), + [aux_sym__where_predicate_lhs_repeat1] = STATE(525), + [ts_builtin_sym_end] = ACTIONS(1677), + [anon_sym_in] = 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_GT2] = ACTIONS(1679), + [anon_sym_DASH2] = ACTIONS(1677), + [anon_sym_STAR2] = ACTIONS(1679), + [anon_sym_and2] = ACTIONS(1677), + [anon_sym_xor2] = ACTIONS(1677), + [anon_sym_or2] = ACTIONS(1677), + [anon_sym_not_DASHin2] = ACTIONS(1677), + [anon_sym_has2] = ACTIONS(1677), + [anon_sym_not_DASHhas2] = ACTIONS(1677), + [anon_sym_starts_DASHwith2] = ACTIONS(1677), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1677), + [anon_sym_ends_DASHwith2] = ACTIONS(1677), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1677), + [anon_sym_EQ_EQ2] = ACTIONS(1677), + [anon_sym_BANG_EQ2] = ACTIONS(1677), + [anon_sym_LT2] = ACTIONS(1679), + [anon_sym_LT_EQ2] = ACTIONS(1677), + [anon_sym_GT_EQ2] = ACTIONS(1677), + [anon_sym_EQ_TILDE2] = ACTIONS(1677), + [anon_sym_BANG_TILDE2] = ACTIONS(1677), + [anon_sym_like2] = ACTIONS(1677), + [anon_sym_not_DASHlike2] = ACTIONS(1677), + [anon_sym_STAR_STAR2] = ACTIONS(1677), + [anon_sym_PLUS_PLUS2] = ACTIONS(1677), + [anon_sym_SLASH2] = ACTIONS(1679), + [anon_sym_mod2] = ACTIONS(1677), + [anon_sym_SLASH_SLASH2] = ACTIONS(1677), + [anon_sym_PLUS2] = ACTIONS(1679), + [anon_sym_bit_DASHshl2] = ACTIONS(1677), + [anon_sym_bit_DASHshr2] = ACTIONS(1677), + [anon_sym_bit_DASHand2] = ACTIONS(1677), + [anon_sym_bit_DASHxor2] = ACTIONS(1677), + [anon_sym_bit_DASHor2] = ACTIONS(1677), + [anon_sym_DOT_DOT2] = ACTIONS(1679), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1677), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1677), + [anon_sym_DOT2] = ACTIONS(1862), + [anon_sym_err_GT] = ACTIONS(1679), + [anon_sym_out_GT] = ACTIONS(1679), + [anon_sym_e_GT] = ACTIONS(1679), + [anon_sym_o_GT] = ACTIONS(1679), + [anon_sym_err_PLUSout_GT] = ACTIONS(1679), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1679), + [anon_sym_o_PLUSe_GT] = ACTIONS(1679), + [anon_sym_e_PLUSo_GT] = ACTIONS(1679), + [anon_sym_err_GT_GT] = ACTIONS(1677), + [anon_sym_out_GT_GT] = ACTIONS(1677), + [anon_sym_e_GT_GT] = ACTIONS(1677), + [anon_sym_o_GT_GT] = ACTIONS(1677), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1677), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1677), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1677), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1677), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(487)] = { + [sym_comment] = STATE(487), + [ts_builtin_sym_end] = ACTIONS(757), + [anon_sym_in] = ACTIONS(757), + [sym__newline] = ACTIONS(757), + [anon_sym_SEMI] = ACTIONS(757), + [anon_sym_PIPE] = ACTIONS(757), + [anon_sym_err_GT_PIPE] = ACTIONS(757), + [anon_sym_out_GT_PIPE] = ACTIONS(757), + [anon_sym_e_GT_PIPE] = ACTIONS(757), + [anon_sym_o_GT_PIPE] = ACTIONS(757), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(757), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(757), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(757), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(757), + [anon_sym_GT2] = ACTIONS(755), + [anon_sym_DASH2] = ACTIONS(757), + [anon_sym_STAR2] = ACTIONS(755), + [anon_sym_and2] = ACTIONS(757), + [anon_sym_xor2] = ACTIONS(757), + [anon_sym_or2] = ACTIONS(757), + [anon_sym_not_DASHin2] = ACTIONS(757), + [anon_sym_has2] = ACTIONS(757), + [anon_sym_not_DASHhas2] = ACTIONS(757), + [anon_sym_starts_DASHwith2] = ACTIONS(757), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(757), + [anon_sym_ends_DASHwith2] = ACTIONS(757), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(757), + [anon_sym_EQ_EQ2] = ACTIONS(757), + [anon_sym_BANG_EQ2] = ACTIONS(757), + [anon_sym_LT2] = ACTIONS(755), + [anon_sym_LT_EQ2] = ACTIONS(757), + [anon_sym_GT_EQ2] = ACTIONS(757), + [anon_sym_EQ_TILDE2] = ACTIONS(757), + [anon_sym_BANG_TILDE2] = ACTIONS(757), + [anon_sym_like2] = ACTIONS(757), + [anon_sym_not_DASHlike2] = ACTIONS(757), + [anon_sym_LPAREN2] = ACTIONS(757), + [anon_sym_STAR_STAR2] = ACTIONS(757), + [anon_sym_PLUS_PLUS2] = ACTIONS(757), + [anon_sym_SLASH2] = ACTIONS(755), + [anon_sym_mod2] = ACTIONS(757), + [anon_sym_SLASH_SLASH2] = ACTIONS(757), + [anon_sym_PLUS2] = ACTIONS(755), + [anon_sym_bit_DASHshl2] = ACTIONS(757), + [anon_sym_bit_DASHshr2] = ACTIONS(757), + [anon_sym_bit_DASHand2] = ACTIONS(757), + [anon_sym_bit_DASHxor2] = ACTIONS(757), + [anon_sym_bit_DASHor2] = ACTIONS(757), + [anon_sym_DOT_DOT2] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(757), + [anon_sym_DOT_DOT_LT2] = ACTIONS(757), + [sym_filesize_unit] = ACTIONS(755), + [sym_duration_unit] = ACTIONS(757), + [anon_sym_err_GT] = ACTIONS(755), + [anon_sym_out_GT] = ACTIONS(755), + [anon_sym_e_GT] = ACTIONS(755), + [anon_sym_o_GT] = ACTIONS(755), + [anon_sym_err_PLUSout_GT] = ACTIONS(755), + [anon_sym_out_PLUSerr_GT] = ACTIONS(755), + [anon_sym_o_PLUSe_GT] = ACTIONS(755), + [anon_sym_e_PLUSo_GT] = ACTIONS(755), + [anon_sym_err_GT_GT] = ACTIONS(757), + [anon_sym_out_GT_GT] = ACTIONS(757), + [anon_sym_e_GT_GT] = ACTIONS(757), + [anon_sym_o_GT_GT] = ACTIONS(757), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(757), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(757), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(757), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(757), + [sym__unquoted_pattern] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(488)] = { + [sym_comment] = STATE(488), [anon_sym_in] = ACTIONS(1738), [sym__newline] = ACTIONS(1738), [anon_sym_SEMI] = ACTIONS(1738), @@ -86179,8 +85556,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_RPAREN] = ACTIONS(1738), [anon_sym_GT2] = ACTIONS(1740), [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1738), [anon_sym_STAR2] = ACTIONS(1740), [anon_sym_and2] = ACTIONS(1738), [anon_sym_xor2] = ACTIONS(1738), @@ -86216,8 +85596,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1740), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1738), [anon_sym_DOT_DOT_LT2] = ACTIONS(1738), - [aux_sym__immediate_decimal_token1] = ACTIONS(1878), - [aux_sym__immediate_decimal_token5] = ACTIONS(1880), [anon_sym_err_GT] = ACTIONS(1740), [anon_sym_out_GT] = ACTIONS(1740), [anon_sym_e_GT] = ACTIONS(1740), @@ -86237,303 +85615,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(1740), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(498)] = { - [sym_cell_path] = STATE(811), - [sym_path] = STATE(435), - [sym_comment] = STATE(498), - [aux_sym__where_predicate_lhs_repeat1] = STATE(416), - [anon_sym_in] = ACTIONS(1882), - [sym__newline] = ACTIONS(1882), - [anon_sym_SEMI] = ACTIONS(1882), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_err_GT_PIPE] = ACTIONS(1882), - [anon_sym_out_GT_PIPE] = ACTIONS(1882), - [anon_sym_e_GT_PIPE] = ACTIONS(1882), - [anon_sym_o_GT_PIPE] = ACTIONS(1882), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1882), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1882), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1882), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1882), - [anon_sym_RPAREN] = ACTIONS(1882), - [anon_sym_GT2] = ACTIONS(1884), - [anon_sym_DASH2] = ACTIONS(1882), - [anon_sym_LBRACE] = ACTIONS(1882), - [anon_sym_RBRACE] = ACTIONS(1882), - [anon_sym_EQ_GT] = ACTIONS(1882), - [anon_sym_STAR2] = ACTIONS(1884), - [anon_sym_and2] = ACTIONS(1882), - [anon_sym_xor2] = ACTIONS(1882), - [anon_sym_or2] = ACTIONS(1882), - [anon_sym_not_DASHin2] = ACTIONS(1882), - [anon_sym_has2] = ACTIONS(1882), - [anon_sym_not_DASHhas2] = ACTIONS(1882), - [anon_sym_starts_DASHwith2] = ACTIONS(1882), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1882), - [anon_sym_ends_DASHwith2] = ACTIONS(1882), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1882), - [anon_sym_EQ_EQ2] = ACTIONS(1882), - [anon_sym_BANG_EQ2] = ACTIONS(1882), - [anon_sym_LT2] = ACTIONS(1884), - [anon_sym_LT_EQ2] = ACTIONS(1882), - [anon_sym_GT_EQ2] = ACTIONS(1882), - [anon_sym_EQ_TILDE2] = ACTIONS(1882), - [anon_sym_BANG_TILDE2] = ACTIONS(1882), - [anon_sym_like2] = ACTIONS(1882), - [anon_sym_not_DASHlike2] = ACTIONS(1882), - [anon_sym_STAR_STAR2] = ACTIONS(1882), - [anon_sym_PLUS_PLUS2] = ACTIONS(1882), - [anon_sym_SLASH2] = ACTIONS(1884), - [anon_sym_mod2] = ACTIONS(1882), - [anon_sym_SLASH_SLASH2] = ACTIONS(1882), - [anon_sym_PLUS2] = ACTIONS(1884), - [anon_sym_bit_DASHshl2] = ACTIONS(1882), - [anon_sym_bit_DASHshr2] = ACTIONS(1882), - [anon_sym_bit_DASHand2] = ACTIONS(1882), - [anon_sym_bit_DASHxor2] = ACTIONS(1882), - [anon_sym_bit_DASHor2] = ACTIONS(1882), - [anon_sym_DOT2] = ACTIONS(1842), - [anon_sym_err_GT] = ACTIONS(1884), - [anon_sym_out_GT] = ACTIONS(1884), - [anon_sym_e_GT] = ACTIONS(1884), - [anon_sym_o_GT] = ACTIONS(1884), - [anon_sym_err_PLUSout_GT] = ACTIONS(1884), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1884), - [anon_sym_o_PLUSe_GT] = ACTIONS(1884), - [anon_sym_e_PLUSo_GT] = ACTIONS(1884), - [anon_sym_err_GT_GT] = ACTIONS(1882), - [anon_sym_out_GT_GT] = ACTIONS(1882), - [anon_sym_e_GT_GT] = ACTIONS(1882), - [anon_sym_o_GT_GT] = ACTIONS(1882), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1882), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1882), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1882), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1882), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(499)] = { - [sym_cell_path] = STATE(938), - [sym_path] = STATE(435), - [sym_comment] = STATE(499), - [aux_sym__where_predicate_lhs_repeat1] = STATE(416), - [anon_sym_in] = ACTIONS(1886), - [sym__newline] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_err_GT_PIPE] = ACTIONS(1886), - [anon_sym_out_GT_PIPE] = ACTIONS(1886), - [anon_sym_e_GT_PIPE] = ACTIONS(1886), - [anon_sym_o_GT_PIPE] = ACTIONS(1886), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1886), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1886), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1886), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1886), - [anon_sym_RPAREN] = ACTIONS(1886), - [anon_sym_GT2] = ACTIONS(1889), - [anon_sym_DASH2] = ACTIONS(1886), - [anon_sym_LBRACE] = ACTIONS(1886), - [anon_sym_RBRACE] = ACTIONS(1886), - [anon_sym_EQ_GT] = ACTIONS(1886), - [anon_sym_STAR2] = ACTIONS(1889), - [anon_sym_and2] = ACTIONS(1886), - [anon_sym_xor2] = ACTIONS(1886), - [anon_sym_or2] = ACTIONS(1886), - [anon_sym_not_DASHin2] = ACTIONS(1886), - [anon_sym_has2] = ACTIONS(1886), - [anon_sym_not_DASHhas2] = ACTIONS(1886), - [anon_sym_starts_DASHwith2] = ACTIONS(1886), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1886), - [anon_sym_ends_DASHwith2] = ACTIONS(1886), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1886), - [anon_sym_EQ_EQ2] = ACTIONS(1886), - [anon_sym_BANG_EQ2] = ACTIONS(1886), - [anon_sym_LT2] = ACTIONS(1889), - [anon_sym_LT_EQ2] = ACTIONS(1886), - [anon_sym_GT_EQ2] = ACTIONS(1886), - [anon_sym_EQ_TILDE2] = ACTIONS(1886), - [anon_sym_BANG_TILDE2] = ACTIONS(1886), - [anon_sym_like2] = ACTIONS(1886), - [anon_sym_not_DASHlike2] = ACTIONS(1886), - [anon_sym_STAR_STAR2] = ACTIONS(1886), - [anon_sym_PLUS_PLUS2] = ACTIONS(1886), - [anon_sym_SLASH2] = ACTIONS(1889), - [anon_sym_mod2] = ACTIONS(1886), - [anon_sym_SLASH_SLASH2] = ACTIONS(1886), - [anon_sym_PLUS2] = ACTIONS(1889), - [anon_sym_bit_DASHshl2] = ACTIONS(1886), - [anon_sym_bit_DASHshr2] = ACTIONS(1886), - [anon_sym_bit_DASHand2] = ACTIONS(1886), - [anon_sym_bit_DASHxor2] = ACTIONS(1886), - [anon_sym_bit_DASHor2] = ACTIONS(1886), - [anon_sym_DOT2] = ACTIONS(1842), - [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(1886), - [anon_sym_out_GT_GT] = ACTIONS(1886), - [anon_sym_e_GT_GT] = ACTIONS(1886), - [anon_sym_o_GT_GT] = ACTIONS(1886), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1886), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1886), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1886), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1886), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(500)] = { - [sym_cell_path] = STATE(945), - [sym_path] = STATE(712), - [sym_comment] = STATE(500), - [aux_sym__where_predicate_lhs_repeat1] = STATE(547), - [ts_builtin_sym_end] = ACTIONS(1661), - [anon_sym_in] = 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(1663), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_STAR2] = ACTIONS(1663), - [anon_sym_and2] = ACTIONS(1661), - [anon_sym_xor2] = ACTIONS(1661), - [anon_sym_or2] = ACTIONS(1661), - [anon_sym_not_DASHin2] = ACTIONS(1661), - [anon_sym_has2] = ACTIONS(1661), - [anon_sym_not_DASHhas2] = ACTIONS(1661), - [anon_sym_starts_DASHwith2] = ACTIONS(1661), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1661), - [anon_sym_ends_DASHwith2] = ACTIONS(1661), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1661), - [anon_sym_EQ_EQ2] = ACTIONS(1661), - [anon_sym_BANG_EQ2] = ACTIONS(1661), - [anon_sym_LT2] = ACTIONS(1663), - [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_like2] = ACTIONS(1661), - [anon_sym_not_DASHlike2] = ACTIONS(1661), - [anon_sym_STAR_STAR2] = ACTIONS(1661), - [anon_sym_PLUS_PLUS2] = ACTIONS(1661), - [anon_sym_SLASH2] = ACTIONS(1663), - [anon_sym_mod2] = ACTIONS(1661), - [anon_sym_SLASH_SLASH2] = ACTIONS(1661), - [anon_sym_PLUS2] = ACTIONS(1663), - [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(1663), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), - [anon_sym_DOT2] = ACTIONS(1852), - [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(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), - }, - [STATE(501)] = { - [sym_cmd_identifier] = STATE(4341), - [sym_expr_parenthesized] = STATE(5062), - [sym__spread_parenthesized] = STATE(4693), - [sym__spread_variable] = STATE(4695), - [sym_val_variable] = STATE(4141), - [sym_val_number] = STATE(5062), - [sym__val_number_decimal] = STATE(1952), - [sym__val_number] = STATE(676), - [sym_val_string] = STATE(5062), - [sym__raw_str] = STATE(2243), - [sym__str_double_quotes] = STATE(2243), - [sym__str_single_quotes] = STATE(2243), - [sym__str_back_ticks] = STATE(2243), - [sym_val_interpolated] = STATE(5062), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym__spread_record] = STATE(4693), - [sym_record_entry] = STATE(4629), - [sym__record_key] = STATE(5228), - [sym_comment] = STATE(501), - [aux_sym__types_body_repeat1] = STATE(1500), - [aux_sym__match_pattern_record_body_repeat1] = STATE(821), - [aux_sym_record_body_repeat1] = STATE(721), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [STATE(489)] = { + [sym_cell_path] = STATE(935), + [sym_path] = STATE(827), + [sym_comment] = STATE(489), + [aux_sym__where_predicate_lhs_repeat1] = STATE(525), + [ts_builtin_sym_end] = ACTIONS(1647), + [anon_sym_in] = 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(1649), + [anon_sym_DASH2] = ACTIONS(1647), + [anon_sym_STAR2] = ACTIONS(1649), + [anon_sym_and2] = ACTIONS(1647), + [anon_sym_xor2] = ACTIONS(1647), + [anon_sym_or2] = ACTIONS(1647), + [anon_sym_not_DASHin2] = ACTIONS(1647), + [anon_sym_has2] = ACTIONS(1647), + [anon_sym_not_DASHhas2] = ACTIONS(1647), + [anon_sym_starts_DASHwith2] = ACTIONS(1647), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1647), + [anon_sym_ends_DASHwith2] = ACTIONS(1647), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1647), + [anon_sym_EQ_EQ2] = ACTIONS(1647), + [anon_sym_BANG_EQ2] = ACTIONS(1647), + [anon_sym_LT2] = ACTIONS(1649), + [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_like2] = ACTIONS(1647), + [anon_sym_not_DASHlike2] = ACTIONS(1647), + [anon_sym_STAR_STAR2] = ACTIONS(1647), + [anon_sym_PLUS_PLUS2] = ACTIONS(1647), + [anon_sym_SLASH2] = ACTIONS(1649), + [anon_sym_mod2] = ACTIONS(1647), + [anon_sym_SLASH_SLASH2] = ACTIONS(1647), + [anon_sym_PLUS2] = ACTIONS(1649), + [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(1649), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), + [anon_sym_DOT2] = ACTIONS(1862), + [anon_sym_err_GT] = ACTIONS(1649), + [anon_sym_out_GT] = ACTIONS(1649), + [anon_sym_e_GT] = ACTIONS(1649), + [anon_sym_o_GT] = ACTIONS(1649), + [anon_sym_err_PLUSout_GT] = ACTIONS(1649), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1649), + [anon_sym_o_PLUSe_GT] = ACTIONS(1649), + [anon_sym_e_PLUSo_GT] = ACTIONS(1649), + [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_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(502)] = { - [sym_cell_path] = STATE(946), - [sym_path] = STATE(712), - [sym_comment] = STATE(502), - [aux_sym__where_predicate_lhs_repeat1] = STATE(547), + [STATE(490)] = { + [sym__path_suffix] = STATE(744), + [sym_comment] = STATE(490), [ts_builtin_sym_end] = ACTIONS(1434), [anon_sym_in] = ACTIONS(1434), [sym__newline] = ACTIONS(1434), @@ -86583,7 +85740,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1432), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1434), [anon_sym_DOT_DOT_LT2] = ACTIONS(1434), - [anon_sym_DOT2] = ACTIONS(1852), + [anon_sym_QMARK2] = ACTIONS(1864), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_DOT2] = ACTIONS(1432), [anon_sym_err_GT] = ACTIONS(1432), [anon_sym_out_GT] = ACTIONS(1432), [anon_sym_e_GT] = ACTIONS(1432), @@ -86602,789 +85761,945 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1434), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(503)] = { - [aux_sym__repeat_newline] = STATE(639), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1517), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(745), - [sym__unquoted_with_expr] = STATE(1013), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(503), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), - [sym__newline] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), + [STATE(491)] = { + [sym_comment] = STATE(491), + [ts_builtin_sym_end] = ACTIONS(791), + [anon_sym_in] = ACTIONS(791), + [sym__newline] = ACTIONS(791), + [anon_sym_SEMI] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_err_GT_PIPE] = ACTIONS(791), + [anon_sym_out_GT_PIPE] = ACTIONS(791), + [anon_sym_e_GT_PIPE] = ACTIONS(791), + [anon_sym_o_GT_PIPE] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(791), + [anon_sym_GT2] = ACTIONS(789), + [anon_sym_DASH2] = ACTIONS(791), + [anon_sym_STAR2] = ACTIONS(789), + [anon_sym_and2] = ACTIONS(791), + [anon_sym_xor2] = ACTIONS(791), + [anon_sym_or2] = ACTIONS(791), + [anon_sym_not_DASHin2] = ACTIONS(791), + [anon_sym_has2] = ACTIONS(791), + [anon_sym_not_DASHhas2] = ACTIONS(791), + [anon_sym_starts_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(791), + [anon_sym_ends_DASHwith2] = ACTIONS(791), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(791), + [anon_sym_EQ_EQ2] = ACTIONS(791), + [anon_sym_BANG_EQ2] = ACTIONS(791), + [anon_sym_LT2] = ACTIONS(789), + [anon_sym_LT_EQ2] = ACTIONS(791), + [anon_sym_GT_EQ2] = ACTIONS(791), + [anon_sym_EQ_TILDE2] = ACTIONS(791), + [anon_sym_BANG_TILDE2] = ACTIONS(791), + [anon_sym_like2] = ACTIONS(791), + [anon_sym_not_DASHlike2] = ACTIONS(791), + [anon_sym_LPAREN2] = ACTIONS(791), + [anon_sym_STAR_STAR2] = ACTIONS(791), + [anon_sym_PLUS_PLUS2] = ACTIONS(791), + [anon_sym_SLASH2] = ACTIONS(789), + [anon_sym_mod2] = ACTIONS(791), + [anon_sym_SLASH_SLASH2] = ACTIONS(791), + [anon_sym_PLUS2] = ACTIONS(789), + [anon_sym_bit_DASHshl2] = ACTIONS(791), + [anon_sym_bit_DASHshr2] = ACTIONS(791), + [anon_sym_bit_DASHand2] = ACTIONS(791), + [anon_sym_bit_DASHxor2] = ACTIONS(791), + [anon_sym_bit_DASHor2] = ACTIONS(791), + [anon_sym_DOT_DOT2] = ACTIONS(789), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(791), + [anon_sym_DOT_DOT_LT2] = ACTIONS(791), + [sym_filesize_unit] = ACTIONS(789), + [sym_duration_unit] = ACTIONS(791), + [anon_sym_err_GT] = ACTIONS(789), + [anon_sym_out_GT] = ACTIONS(789), + [anon_sym_e_GT] = ACTIONS(789), + [anon_sym_o_GT] = ACTIONS(789), + [anon_sym_err_PLUSout_GT] = ACTIONS(789), + [anon_sym_out_PLUSerr_GT] = ACTIONS(789), + [anon_sym_o_PLUSe_GT] = ACTIONS(789), + [anon_sym_e_PLUSo_GT] = ACTIONS(789), + [anon_sym_err_GT_GT] = ACTIONS(791), + [anon_sym_out_GT_GT] = ACTIONS(791), + [anon_sym_e_GT_GT] = ACTIONS(791), + [anon_sym_o_GT_GT] = ACTIONS(791), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(791), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(791), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(791), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(791), + [sym__unquoted_pattern] = ACTIONS(789), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(504)] = { - [aux_sym__repeat_newline] = STATE(520), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1218), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(725), - [sym__unquoted_with_expr] = STATE(1016), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(504), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), - [sym__newline] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), + [STATE(492)] = { + [sym_cell_path] = STATE(846), + [sym_path] = STATE(446), + [sym_comment] = STATE(492), + [aux_sym__where_predicate_lhs_repeat1] = STATE(421), + [anon_sym_in] = ACTIONS(1868), + [sym__newline] = ACTIONS(1868), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1868), + [anon_sym_err_GT_PIPE] = ACTIONS(1868), + [anon_sym_out_GT_PIPE] = ACTIONS(1868), + [anon_sym_e_GT_PIPE] = ACTIONS(1868), + [anon_sym_o_GT_PIPE] = ACTIONS(1868), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1868), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1868), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1868), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1868), + [anon_sym_RPAREN] = ACTIONS(1868), + [anon_sym_GT2] = ACTIONS(1870), + [anon_sym_DASH2] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1868), + [anon_sym_RBRACE] = ACTIONS(1868), + [anon_sym_EQ_GT] = ACTIONS(1868), + [anon_sym_STAR2] = ACTIONS(1870), + [anon_sym_and2] = ACTIONS(1868), + [anon_sym_xor2] = ACTIONS(1868), + [anon_sym_or2] = ACTIONS(1868), + [anon_sym_not_DASHin2] = ACTIONS(1868), + [anon_sym_has2] = ACTIONS(1868), + [anon_sym_not_DASHhas2] = ACTIONS(1868), + [anon_sym_starts_DASHwith2] = ACTIONS(1868), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1868), + [anon_sym_ends_DASHwith2] = ACTIONS(1868), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1868), + [anon_sym_EQ_EQ2] = ACTIONS(1868), + [anon_sym_BANG_EQ2] = ACTIONS(1868), + [anon_sym_LT2] = ACTIONS(1870), + [anon_sym_LT_EQ2] = ACTIONS(1868), + [anon_sym_GT_EQ2] = ACTIONS(1868), + [anon_sym_EQ_TILDE2] = ACTIONS(1868), + [anon_sym_BANG_TILDE2] = ACTIONS(1868), + [anon_sym_like2] = ACTIONS(1868), + [anon_sym_not_DASHlike2] = ACTIONS(1868), + [anon_sym_STAR_STAR2] = ACTIONS(1868), + [anon_sym_PLUS_PLUS2] = ACTIONS(1868), + [anon_sym_SLASH2] = ACTIONS(1870), + [anon_sym_mod2] = ACTIONS(1868), + [anon_sym_SLASH_SLASH2] = ACTIONS(1868), + [anon_sym_PLUS2] = ACTIONS(1870), + [anon_sym_bit_DASHshl2] = ACTIONS(1868), + [anon_sym_bit_DASHshr2] = ACTIONS(1868), + [anon_sym_bit_DASHand2] = ACTIONS(1868), + [anon_sym_bit_DASHxor2] = ACTIONS(1868), + [anon_sym_bit_DASHor2] = ACTIONS(1868), + [anon_sym_DOT2] = ACTIONS(1842), + [anon_sym_err_GT] = ACTIONS(1870), + [anon_sym_out_GT] = ACTIONS(1870), + [anon_sym_e_GT] = ACTIONS(1870), + [anon_sym_o_GT] = ACTIONS(1870), + [anon_sym_err_PLUSout_GT] = ACTIONS(1870), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1870), + [anon_sym_o_PLUSe_GT] = ACTIONS(1870), + [anon_sym_e_PLUSo_GT] = ACTIONS(1870), + [anon_sym_err_GT_GT] = ACTIONS(1868), + [anon_sym_out_GT_GT] = ACTIONS(1868), + [anon_sym_e_GT_GT] = ACTIONS(1868), + [anon_sym_o_GT_GT] = ACTIONS(1868), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1868), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1868), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1868), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1868), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(505)] = { - [aux_sym__repeat_newline] = STATE(521), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1144), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(728), - [sym__unquoted_with_expr] = STATE(1066), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(505), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), - [sym__newline] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [STATE(493)] = { + [sym_cmd_identifier] = STATE(4340), + [sym_expr_parenthesized] = STATE(5053), + [sym__spread_parenthesized] = STATE(4675), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(4141), + [sym_val_number] = STATE(5053), + [sym__val_number_decimal] = STATE(1955), + [sym__val_number] = STATE(693), + [sym_val_string] = STATE(5053), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(5053), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym__spread_record] = STATE(4675), + [sym_record_entry] = STATE(4618), + [sym__record_key] = STATE(5144), + [sym_comment] = STATE(493), + [aux_sym__types_body_repeat1] = STATE(1505), + [aux_sym__match_pattern_record_body_repeat1] = STATE(719), + [aux_sym_record_body_repeat1] = STATE(748), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_null] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [sym__newline] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1780), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1784), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(1796), }, - [STATE(506)] = { - [aux_sym__repeat_newline] = STATE(522), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1186), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(730), - [sym__unquoted_with_expr] = STATE(1096), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(506), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), - [sym__newline] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), + [STATE(494)] = { + [sym_cell_path] = STATE(956), + [sym_path] = STATE(446), + [sym_comment] = STATE(494), + [aux_sym__where_predicate_lhs_repeat1] = STATE(421), + [anon_sym_in] = ACTIONS(1872), + [sym__newline] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1872), + [anon_sym_PIPE] = ACTIONS(1872), + [anon_sym_err_GT_PIPE] = ACTIONS(1872), + [anon_sym_out_GT_PIPE] = ACTIONS(1872), + [anon_sym_e_GT_PIPE] = ACTIONS(1872), + [anon_sym_o_GT_PIPE] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1872), + [anon_sym_RPAREN] = ACTIONS(1872), + [anon_sym_GT2] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_EQ_GT] = ACTIONS(1872), + [anon_sym_STAR2] = ACTIONS(1874), + [anon_sym_and2] = ACTIONS(1872), + [anon_sym_xor2] = ACTIONS(1872), + [anon_sym_or2] = ACTIONS(1872), + [anon_sym_not_DASHin2] = ACTIONS(1872), + [anon_sym_has2] = ACTIONS(1872), + [anon_sym_not_DASHhas2] = ACTIONS(1872), + [anon_sym_starts_DASHwith2] = ACTIONS(1872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1872), + [anon_sym_ends_DASHwith2] = ACTIONS(1872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1872), + [anon_sym_EQ_EQ2] = ACTIONS(1872), + [anon_sym_BANG_EQ2] = ACTIONS(1872), + [anon_sym_LT2] = ACTIONS(1874), + [anon_sym_LT_EQ2] = ACTIONS(1872), + [anon_sym_GT_EQ2] = ACTIONS(1872), + [anon_sym_EQ_TILDE2] = ACTIONS(1872), + [anon_sym_BANG_TILDE2] = ACTIONS(1872), + [anon_sym_like2] = ACTIONS(1872), + [anon_sym_not_DASHlike2] = ACTIONS(1872), + [anon_sym_STAR_STAR2] = ACTIONS(1872), + [anon_sym_PLUS_PLUS2] = ACTIONS(1872), + [anon_sym_SLASH2] = ACTIONS(1874), + [anon_sym_mod2] = ACTIONS(1872), + [anon_sym_SLASH_SLASH2] = ACTIONS(1872), + [anon_sym_PLUS2] = ACTIONS(1874), + [anon_sym_bit_DASHshl2] = ACTIONS(1872), + [anon_sym_bit_DASHshr2] = ACTIONS(1872), + [anon_sym_bit_DASHand2] = ACTIONS(1872), + [anon_sym_bit_DASHxor2] = ACTIONS(1872), + [anon_sym_bit_DASHor2] = ACTIONS(1872), + [anon_sym_DOT2] = ACTIONS(1842), + [anon_sym_err_GT] = ACTIONS(1874), + [anon_sym_out_GT] = ACTIONS(1874), + [anon_sym_e_GT] = ACTIONS(1874), + [anon_sym_o_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT] = ACTIONS(1874), + [anon_sym_err_GT_GT] = ACTIONS(1872), + [anon_sym_out_GT_GT] = ACTIONS(1872), + [anon_sym_e_GT_GT] = ACTIONS(1872), + [anon_sym_o_GT_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1872), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(507)] = { - [aux_sym__repeat_newline] = STATE(523), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1210), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(732), - [sym__unquoted_with_expr] = STATE(1113), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(507), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), - [sym__newline] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), + [STATE(495)] = { + [sym_cell_path] = STATE(933), + [sym_path] = STATE(827), + [sym_comment] = STATE(495), + [aux_sym__where_predicate_lhs_repeat1] = STATE(525), + [ts_builtin_sym_end] = ACTIONS(1446), + [anon_sym_in] = ACTIONS(1446), + [sym__newline] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym_PIPE] = ACTIONS(1446), + [anon_sym_err_GT_PIPE] = ACTIONS(1446), + [anon_sym_out_GT_PIPE] = ACTIONS(1446), + [anon_sym_e_GT_PIPE] = ACTIONS(1446), + [anon_sym_o_GT_PIPE] = ACTIONS(1446), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1446), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1446), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1446), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1446), + [anon_sym_GT2] = ACTIONS(1444), + [anon_sym_DASH2] = ACTIONS(1446), + [anon_sym_STAR2] = ACTIONS(1444), + [anon_sym_and2] = ACTIONS(1446), + [anon_sym_xor2] = ACTIONS(1446), + [anon_sym_or2] = ACTIONS(1446), + [anon_sym_not_DASHin2] = ACTIONS(1446), + [anon_sym_has2] = ACTIONS(1446), + [anon_sym_not_DASHhas2] = ACTIONS(1446), + [anon_sym_starts_DASHwith2] = ACTIONS(1446), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1446), + [anon_sym_ends_DASHwith2] = ACTIONS(1446), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1446), + [anon_sym_EQ_EQ2] = ACTIONS(1446), + [anon_sym_BANG_EQ2] = ACTIONS(1446), + [anon_sym_LT2] = ACTIONS(1444), + [anon_sym_LT_EQ2] = ACTIONS(1446), + [anon_sym_GT_EQ2] = ACTIONS(1446), + [anon_sym_EQ_TILDE2] = ACTIONS(1446), + [anon_sym_BANG_TILDE2] = ACTIONS(1446), + [anon_sym_like2] = ACTIONS(1446), + [anon_sym_not_DASHlike2] = ACTIONS(1446), + [anon_sym_STAR_STAR2] = ACTIONS(1446), + [anon_sym_PLUS_PLUS2] = ACTIONS(1446), + [anon_sym_SLASH2] = ACTIONS(1444), + [anon_sym_mod2] = ACTIONS(1446), + [anon_sym_SLASH_SLASH2] = ACTIONS(1446), + [anon_sym_PLUS2] = ACTIONS(1444), + [anon_sym_bit_DASHshl2] = ACTIONS(1446), + [anon_sym_bit_DASHshr2] = ACTIONS(1446), + [anon_sym_bit_DASHand2] = ACTIONS(1446), + [anon_sym_bit_DASHxor2] = ACTIONS(1446), + [anon_sym_bit_DASHor2] = ACTIONS(1446), + [anon_sym_DOT_DOT2] = ACTIONS(1444), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1446), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1446), + [anon_sym_DOT2] = ACTIONS(1862), + [anon_sym_err_GT] = ACTIONS(1444), + [anon_sym_out_GT] = ACTIONS(1444), + [anon_sym_e_GT] = ACTIONS(1444), + [anon_sym_o_GT] = ACTIONS(1444), + [anon_sym_err_PLUSout_GT] = ACTIONS(1444), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1444), + [anon_sym_o_PLUSe_GT] = ACTIONS(1444), + [anon_sym_e_PLUSo_GT] = ACTIONS(1444), + [anon_sym_err_GT_GT] = ACTIONS(1446), + [anon_sym_out_GT_GT] = ACTIONS(1446), + [anon_sym_e_GT_GT] = ACTIONS(1446), + [anon_sym_o_GT_GT] = ACTIONS(1446), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1446), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1446), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1446), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1446), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(508)] = { - [aux_sym__repeat_newline] = STATE(524), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1233), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(734), - [sym__unquoted_with_expr] = STATE(967), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(508), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), - [sym__newline] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), + [STATE(496)] = { + [sym_cell_path] = STATE(833), + [sym_path] = STATE(446), + [sym_comment] = STATE(496), + [aux_sym__where_predicate_lhs_repeat1] = STATE(421), + [anon_sym_in] = ACTIONS(1876), + [sym__newline] = ACTIONS(1876), + [anon_sym_SEMI] = ACTIONS(1876), + [anon_sym_PIPE] = ACTIONS(1876), + [anon_sym_err_GT_PIPE] = ACTIONS(1876), + [anon_sym_out_GT_PIPE] = ACTIONS(1876), + [anon_sym_e_GT_PIPE] = ACTIONS(1876), + [anon_sym_o_GT_PIPE] = ACTIONS(1876), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1876), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1876), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1876), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1876), + [anon_sym_RPAREN] = ACTIONS(1876), + [anon_sym_GT2] = ACTIONS(1878), + [anon_sym_DASH2] = ACTIONS(1876), + [anon_sym_LBRACE] = ACTIONS(1876), + [anon_sym_RBRACE] = ACTIONS(1876), + [anon_sym_EQ_GT] = ACTIONS(1876), + [anon_sym_STAR2] = ACTIONS(1878), + [anon_sym_and2] = ACTIONS(1876), + [anon_sym_xor2] = ACTIONS(1876), + [anon_sym_or2] = ACTIONS(1876), + [anon_sym_not_DASHin2] = ACTIONS(1876), + [anon_sym_has2] = ACTIONS(1876), + [anon_sym_not_DASHhas2] = ACTIONS(1876), + [anon_sym_starts_DASHwith2] = ACTIONS(1876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1876), + [anon_sym_ends_DASHwith2] = ACTIONS(1876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1876), + [anon_sym_EQ_EQ2] = ACTIONS(1876), + [anon_sym_BANG_EQ2] = ACTIONS(1876), + [anon_sym_LT2] = ACTIONS(1878), + [anon_sym_LT_EQ2] = ACTIONS(1876), + [anon_sym_GT_EQ2] = ACTIONS(1876), + [anon_sym_EQ_TILDE2] = ACTIONS(1876), + [anon_sym_BANG_TILDE2] = ACTIONS(1876), + [anon_sym_like2] = ACTIONS(1876), + [anon_sym_not_DASHlike2] = ACTIONS(1876), + [anon_sym_STAR_STAR2] = ACTIONS(1876), + [anon_sym_PLUS_PLUS2] = ACTIONS(1876), + [anon_sym_SLASH2] = ACTIONS(1878), + [anon_sym_mod2] = ACTIONS(1876), + [anon_sym_SLASH_SLASH2] = ACTIONS(1876), + [anon_sym_PLUS2] = ACTIONS(1878), + [anon_sym_bit_DASHshl2] = ACTIONS(1876), + [anon_sym_bit_DASHshr2] = ACTIONS(1876), + [anon_sym_bit_DASHand2] = ACTIONS(1876), + [anon_sym_bit_DASHxor2] = ACTIONS(1876), + [anon_sym_bit_DASHor2] = ACTIONS(1876), + [anon_sym_DOT2] = ACTIONS(1842), + [anon_sym_err_GT] = ACTIONS(1878), + [anon_sym_out_GT] = ACTIONS(1878), + [anon_sym_e_GT] = ACTIONS(1878), + [anon_sym_o_GT] = ACTIONS(1878), + [anon_sym_err_PLUSout_GT] = ACTIONS(1878), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1878), + [anon_sym_o_PLUSe_GT] = ACTIONS(1878), + [anon_sym_e_PLUSo_GT] = ACTIONS(1878), + [anon_sym_err_GT_GT] = ACTIONS(1876), + [anon_sym_out_GT_GT] = ACTIONS(1876), + [anon_sym_e_GT_GT] = ACTIONS(1876), + [anon_sym_o_GT_GT] = ACTIONS(1876), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1876), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1876), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1876), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1876), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(509)] = { - [aux_sym__repeat_newline] = STATE(525), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1145), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(737), - [sym__unquoted_with_expr] = STATE(972), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(509), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), - [sym__newline] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), + [STATE(497)] = { + [sym_comment] = STATE(497), + [anon_sym_if] = ACTIONS(1880), + [anon_sym_in] = ACTIONS(1880), + [sym__newline] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1880), + [anon_sym_err_GT_PIPE] = ACTIONS(1880), + [anon_sym_out_GT_PIPE] = ACTIONS(1880), + [anon_sym_e_GT_PIPE] = ACTIONS(1880), + [anon_sym_o_GT_PIPE] = ACTIONS(1880), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1880), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1880), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1880), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1880), + [anon_sym_RPAREN] = ACTIONS(1880), + [anon_sym_GT2] = ACTIONS(1882), + [anon_sym_DASH2] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1880), + [anon_sym_RBRACE] = ACTIONS(1880), + [anon_sym_EQ_GT] = ACTIONS(1880), + [anon_sym_STAR2] = ACTIONS(1882), + [anon_sym_and2] = ACTIONS(1880), + [anon_sym_xor2] = ACTIONS(1880), + [anon_sym_or2] = ACTIONS(1880), + [anon_sym_not_DASHin2] = ACTIONS(1880), + [anon_sym_has2] = ACTIONS(1880), + [anon_sym_not_DASHhas2] = ACTIONS(1880), + [anon_sym_starts_DASHwith2] = ACTIONS(1880), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1880), + [anon_sym_ends_DASHwith2] = ACTIONS(1880), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1880), + [anon_sym_EQ_EQ2] = ACTIONS(1880), + [anon_sym_BANG_EQ2] = ACTIONS(1880), + [anon_sym_LT2] = ACTIONS(1882), + [anon_sym_LT_EQ2] = ACTIONS(1880), + [anon_sym_GT_EQ2] = ACTIONS(1880), + [anon_sym_EQ_TILDE2] = ACTIONS(1880), + [anon_sym_BANG_TILDE2] = ACTIONS(1880), + [anon_sym_like2] = ACTIONS(1880), + [anon_sym_not_DASHlike2] = ACTIONS(1880), + [anon_sym_STAR_STAR2] = ACTIONS(1880), + [anon_sym_PLUS_PLUS2] = ACTIONS(1880), + [anon_sym_SLASH2] = ACTIONS(1882), + [anon_sym_mod2] = ACTIONS(1880), + [anon_sym_SLASH_SLASH2] = ACTIONS(1880), + [anon_sym_PLUS2] = ACTIONS(1882), + [anon_sym_bit_DASHshl2] = ACTIONS(1880), + [anon_sym_bit_DASHshr2] = ACTIONS(1880), + [anon_sym_bit_DASHand2] = ACTIONS(1880), + [anon_sym_bit_DASHxor2] = ACTIONS(1880), + [anon_sym_bit_DASHor2] = ACTIONS(1880), + [anon_sym_DOT_DOT2] = ACTIONS(1882), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1880), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1880), + [anon_sym_err_GT] = ACTIONS(1882), + [anon_sym_out_GT] = ACTIONS(1882), + [anon_sym_e_GT] = ACTIONS(1882), + [anon_sym_o_GT] = ACTIONS(1882), + [anon_sym_err_PLUSout_GT] = ACTIONS(1882), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1882), + [anon_sym_o_PLUSe_GT] = ACTIONS(1882), + [anon_sym_e_PLUSo_GT] = ACTIONS(1882), + [anon_sym_err_GT_GT] = ACTIONS(1880), + [anon_sym_out_GT_GT] = ACTIONS(1880), + [anon_sym_e_GT_GT] = ACTIONS(1880), + [anon_sym_o_GT_GT] = ACTIONS(1880), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1880), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1880), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1880), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1880), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(510)] = { - [aux_sym__repeat_newline] = STATE(526), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(979), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(739), - [sym__unquoted_with_expr] = STATE(981), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(510), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), - [sym__newline] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), + [STATE(498)] = { + [sym_comment] = STATE(498), + [ts_builtin_sym_end] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [sym__newline] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1750), + [anon_sym_err_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_GT_PIPE] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1750), + [anon_sym_GT2] = ACTIONS(1752), + [anon_sym_DASH2] = ACTIONS(1750), + [anon_sym_STAR2] = ACTIONS(1752), + [anon_sym_and2] = ACTIONS(1750), + [anon_sym_xor2] = ACTIONS(1750), + [anon_sym_or2] = ACTIONS(1750), + [anon_sym_not_DASHin2] = ACTIONS(1750), + [anon_sym_has2] = ACTIONS(1750), + [anon_sym_not_DASHhas2] = ACTIONS(1750), + [anon_sym_starts_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1750), + [anon_sym_ends_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1750), + [anon_sym_EQ_EQ2] = ACTIONS(1750), + [anon_sym_BANG_EQ2] = ACTIONS(1750), + [anon_sym_LT2] = ACTIONS(1752), + [anon_sym_LT_EQ2] = ACTIONS(1750), + [anon_sym_GT_EQ2] = ACTIONS(1750), + [anon_sym_EQ_TILDE2] = ACTIONS(1750), + [anon_sym_BANG_TILDE2] = ACTIONS(1750), + [anon_sym_like2] = ACTIONS(1750), + [anon_sym_not_DASHlike2] = ACTIONS(1750), + [anon_sym_LPAREN2] = ACTIONS(1750), + [anon_sym_STAR_STAR2] = ACTIONS(1750), + [anon_sym_PLUS_PLUS2] = ACTIONS(1750), + [anon_sym_SLASH2] = ACTIONS(1752), + [anon_sym_mod2] = ACTIONS(1750), + [anon_sym_SLASH_SLASH2] = ACTIONS(1750), + [anon_sym_PLUS2] = ACTIONS(1752), + [anon_sym_bit_DASHshl2] = ACTIONS(1750), + [anon_sym_bit_DASHshr2] = ACTIONS(1750), + [anon_sym_bit_DASHand2] = ACTIONS(1750), + [anon_sym_bit_DASHxor2] = ACTIONS(1750), + [anon_sym_bit_DASHor2] = ACTIONS(1750), + [anon_sym_DOT_DOT2] = ACTIONS(1752), + [anon_sym_DOT] = ACTIONS(1884), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1750), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1750), + [aux_sym__immediate_decimal_token5] = ACTIONS(1886), + [anon_sym_err_GT] = ACTIONS(1752), + [anon_sym_out_GT] = ACTIONS(1752), + [anon_sym_e_GT] = ACTIONS(1752), + [anon_sym_o_GT] = ACTIONS(1752), + [anon_sym_err_PLUSout_GT] = ACTIONS(1752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1752), + [anon_sym_o_PLUSe_GT] = ACTIONS(1752), + [anon_sym_e_PLUSo_GT] = ACTIONS(1752), + [anon_sym_err_GT_GT] = ACTIONS(1750), + [anon_sym_out_GT_GT] = ACTIONS(1750), + [anon_sym_e_GT_GT] = ACTIONS(1750), + [anon_sym_o_GT_GT] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1750), + [sym__unquoted_pattern] = ACTIONS(1752), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(511)] = { - [aux_sym__repeat_newline] = STATE(527), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1203), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(741), - [sym__unquoted_with_expr] = STATE(983), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(511), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), - [sym__newline] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), + [STATE(499)] = { + [sym_comment] = STATE(499), + [anon_sym_in] = ACTIONS(1574), + [sym__newline] = ACTIONS(1574), + [anon_sym_SEMI] = ACTIONS(1574), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_err_GT_PIPE] = ACTIONS(1574), + [anon_sym_out_GT_PIPE] = ACTIONS(1574), + [anon_sym_e_GT_PIPE] = ACTIONS(1574), + [anon_sym_o_GT_PIPE] = ACTIONS(1574), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1574), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1574), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1574), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1574), + [anon_sym_RPAREN] = ACTIONS(1574), + [anon_sym_GT2] = ACTIONS(1572), + [anon_sym_DASH2] = ACTIONS(1574), + [anon_sym_LBRACE] = ACTIONS(1574), + [anon_sym_RBRACE] = ACTIONS(1574), + [anon_sym_EQ_GT] = ACTIONS(1574), + [anon_sym_STAR2] = ACTIONS(1572), + [anon_sym_and2] = ACTIONS(1574), + [anon_sym_xor2] = ACTIONS(1574), + [anon_sym_or2] = ACTIONS(1574), + [anon_sym_not_DASHin2] = ACTIONS(1574), + [anon_sym_has2] = ACTIONS(1574), + [anon_sym_not_DASHhas2] = ACTIONS(1574), + [anon_sym_starts_DASHwith2] = ACTIONS(1574), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1574), + [anon_sym_ends_DASHwith2] = ACTIONS(1574), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1574), + [anon_sym_EQ_EQ2] = ACTIONS(1574), + [anon_sym_BANG_EQ2] = ACTIONS(1574), + [anon_sym_LT2] = ACTIONS(1572), + [anon_sym_LT_EQ2] = ACTIONS(1574), + [anon_sym_GT_EQ2] = ACTIONS(1574), + [anon_sym_EQ_TILDE2] = ACTIONS(1574), + [anon_sym_BANG_TILDE2] = ACTIONS(1574), + [anon_sym_like2] = ACTIONS(1574), + [anon_sym_not_DASHlike2] = ACTIONS(1574), + [anon_sym_STAR_STAR2] = ACTIONS(1574), + [anon_sym_PLUS_PLUS2] = ACTIONS(1574), + [anon_sym_SLASH2] = ACTIONS(1572), + [anon_sym_mod2] = ACTIONS(1574), + [anon_sym_SLASH_SLASH2] = ACTIONS(1574), + [anon_sym_PLUS2] = ACTIONS(1572), + [anon_sym_bit_DASHshl2] = ACTIONS(1574), + [anon_sym_bit_DASHshr2] = ACTIONS(1574), + [anon_sym_bit_DASHand2] = ACTIONS(1574), + [anon_sym_bit_DASHxor2] = ACTIONS(1574), + [anon_sym_bit_DASHor2] = ACTIONS(1574), + [anon_sym_DOT_DOT2] = ACTIONS(1572), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1574), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1574), + [anon_sym_COLON2] = ACTIONS(1574), + [anon_sym_err_GT] = ACTIONS(1572), + [anon_sym_out_GT] = ACTIONS(1572), + [anon_sym_e_GT] = ACTIONS(1572), + [anon_sym_o_GT] = ACTIONS(1572), + [anon_sym_err_PLUSout_GT] = ACTIONS(1572), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1572), + [anon_sym_o_PLUSe_GT] = ACTIONS(1572), + [anon_sym_e_PLUSo_GT] = ACTIONS(1572), + [anon_sym_err_GT_GT] = ACTIONS(1574), + [anon_sym_out_GT_GT] = ACTIONS(1574), + [anon_sym_e_GT_GT] = ACTIONS(1574), + [anon_sym_o_GT_GT] = ACTIONS(1574), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1574), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1574), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1574), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1574), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(512)] = { - [aux_sym__repeat_newline] = STATE(528), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1141), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(743), - [sym__unquoted_with_expr] = STATE(998), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(512), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), - [sym__newline] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), + [STATE(500)] = { + [sym_comment] = STATE(500), + [ts_builtin_sym_end] = ACTIONS(1527), + [anon_sym_in] = ACTIONS(1527), + [sym__newline] = ACTIONS(1527), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_err_GT_PIPE] = ACTIONS(1527), + [anon_sym_out_GT_PIPE] = ACTIONS(1527), + [anon_sym_e_GT_PIPE] = ACTIONS(1527), + [anon_sym_o_GT_PIPE] = ACTIONS(1527), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1527), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1527), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1527), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1527), + [anon_sym_GT2] = ACTIONS(1525), + [anon_sym_DASH2] = ACTIONS(1527), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_STAR2] = ACTIONS(1525), + [anon_sym_and2] = ACTIONS(1527), + [anon_sym_xor2] = ACTIONS(1527), + [anon_sym_or2] = ACTIONS(1527), + [anon_sym_not_DASHin2] = ACTIONS(1527), + [anon_sym_has2] = ACTIONS(1527), + [anon_sym_not_DASHhas2] = ACTIONS(1527), + [anon_sym_starts_DASHwith2] = ACTIONS(1527), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1527), + [anon_sym_ends_DASHwith2] = ACTIONS(1527), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1527), + [anon_sym_EQ_EQ2] = ACTIONS(1527), + [anon_sym_BANG_EQ2] = ACTIONS(1527), + [anon_sym_LT2] = ACTIONS(1525), + [anon_sym_LT_EQ2] = ACTIONS(1527), + [anon_sym_GT_EQ2] = ACTIONS(1527), + [anon_sym_EQ_TILDE2] = ACTIONS(1527), + [anon_sym_BANG_TILDE2] = ACTIONS(1527), + [anon_sym_like2] = ACTIONS(1527), + [anon_sym_not_DASHlike2] = ACTIONS(1527), + [anon_sym_STAR_STAR2] = ACTIONS(1527), + [anon_sym_PLUS_PLUS2] = ACTIONS(1527), + [anon_sym_SLASH2] = ACTIONS(1525), + [anon_sym_mod2] = ACTIONS(1527), + [anon_sym_SLASH_SLASH2] = ACTIONS(1527), + [anon_sym_PLUS2] = ACTIONS(1525), + [anon_sym_bit_DASHshl2] = ACTIONS(1527), + [anon_sym_bit_DASHshr2] = ACTIONS(1527), + [anon_sym_bit_DASHand2] = ACTIONS(1527), + [anon_sym_bit_DASHxor2] = ACTIONS(1527), + [anon_sym_bit_DASHor2] = ACTIONS(1527), + [anon_sym_DOT_DOT2] = ACTIONS(1525), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1527), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1527), + [anon_sym_QMARK2] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_DOT2] = ACTIONS(1525), + [anon_sym_err_GT] = ACTIONS(1525), + [anon_sym_out_GT] = ACTIONS(1525), + [anon_sym_e_GT] = ACTIONS(1525), + [anon_sym_o_GT] = ACTIONS(1525), + [anon_sym_err_PLUSout_GT] = ACTIONS(1525), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), + [anon_sym_o_PLUSe_GT] = ACTIONS(1525), + [anon_sym_e_PLUSo_GT] = ACTIONS(1525), + [anon_sym_err_GT_GT] = ACTIONS(1527), + [anon_sym_out_GT_GT] = ACTIONS(1527), + [anon_sym_e_GT_GT] = ACTIONS(1527), + [anon_sym_o_GT_GT] = ACTIONS(1527), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1527), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1527), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1527), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1527), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(513)] = { - [aux_sym__repeat_newline] = STATE(529), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1204), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(745), - [sym__unquoted_with_expr] = STATE(1013), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(513), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [STATE(501)] = { + [sym_comment] = STATE(501), + [ts_builtin_sym_end] = ACTIONS(1507), + [anon_sym_in] = ACTIONS(1507), + [sym__newline] = ACTIONS(1507), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_PIPE] = ACTIONS(1507), + [anon_sym_err_GT_PIPE] = ACTIONS(1507), + [anon_sym_out_GT_PIPE] = ACTIONS(1507), + [anon_sym_e_GT_PIPE] = ACTIONS(1507), + [anon_sym_o_GT_PIPE] = ACTIONS(1507), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1507), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1507), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1507), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1507), + [anon_sym_GT2] = ACTIONS(1505), + [anon_sym_DASH2] = ACTIONS(1507), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_STAR2] = ACTIONS(1505), + [anon_sym_and2] = ACTIONS(1507), + [anon_sym_xor2] = ACTIONS(1507), + [anon_sym_or2] = ACTIONS(1507), + [anon_sym_not_DASHin2] = ACTIONS(1507), + [anon_sym_has2] = ACTIONS(1507), + [anon_sym_not_DASHhas2] = ACTIONS(1507), + [anon_sym_starts_DASHwith2] = ACTIONS(1507), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1507), + [anon_sym_ends_DASHwith2] = ACTIONS(1507), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1507), + [anon_sym_EQ_EQ2] = ACTIONS(1507), + [anon_sym_BANG_EQ2] = ACTIONS(1507), + [anon_sym_LT2] = ACTIONS(1505), + [anon_sym_LT_EQ2] = ACTIONS(1507), + [anon_sym_GT_EQ2] = ACTIONS(1507), + [anon_sym_EQ_TILDE2] = ACTIONS(1507), + [anon_sym_BANG_TILDE2] = ACTIONS(1507), + [anon_sym_like2] = ACTIONS(1507), + [anon_sym_not_DASHlike2] = ACTIONS(1507), + [anon_sym_STAR_STAR2] = ACTIONS(1507), + [anon_sym_PLUS_PLUS2] = ACTIONS(1507), + [anon_sym_SLASH2] = ACTIONS(1505), + [anon_sym_mod2] = ACTIONS(1507), + [anon_sym_SLASH_SLASH2] = ACTIONS(1507), + [anon_sym_PLUS2] = ACTIONS(1505), + [anon_sym_bit_DASHshl2] = ACTIONS(1507), + [anon_sym_bit_DASHshr2] = ACTIONS(1507), + [anon_sym_bit_DASHand2] = ACTIONS(1507), + [anon_sym_bit_DASHxor2] = ACTIONS(1507), + [anon_sym_bit_DASHor2] = ACTIONS(1507), + [anon_sym_DOT_DOT2] = ACTIONS(1505), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1507), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1507), + [anon_sym_QMARK2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_DOT2] = ACTIONS(1505), + [anon_sym_err_GT] = ACTIONS(1505), + [anon_sym_out_GT] = ACTIONS(1505), + [anon_sym_e_GT] = ACTIONS(1505), + [anon_sym_o_GT] = ACTIONS(1505), + [anon_sym_err_PLUSout_GT] = ACTIONS(1505), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1505), + [anon_sym_o_PLUSe_GT] = ACTIONS(1505), + [anon_sym_e_PLUSo_GT] = ACTIONS(1505), + [anon_sym_err_GT_GT] = ACTIONS(1507), + [anon_sym_out_GT_GT] = ACTIONS(1507), + [anon_sym_e_GT_GT] = ACTIONS(1507), + [anon_sym_o_GT_GT] = ACTIONS(1507), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1507), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1507), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1507), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1507), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(502)] = { + [sym_comment] = STATE(502), + [ts_builtin_sym_end] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [sym__newline] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_err_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_GT_PIPE] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_GT2] = ACTIONS(1740), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_STAR2] = ACTIONS(1740), + [anon_sym_and2] = ACTIONS(1738), + [anon_sym_xor2] = ACTIONS(1738), + [anon_sym_or2] = ACTIONS(1738), + [anon_sym_not_DASHin2] = ACTIONS(1738), + [anon_sym_has2] = ACTIONS(1738), + [anon_sym_not_DASHhas2] = ACTIONS(1738), + [anon_sym_starts_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), + [anon_sym_ends_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), + [anon_sym_EQ_EQ2] = ACTIONS(1738), + [anon_sym_BANG_EQ2] = ACTIONS(1738), + [anon_sym_LT2] = ACTIONS(1740), + [anon_sym_LT_EQ2] = ACTIONS(1738), + [anon_sym_GT_EQ2] = ACTIONS(1738), + [anon_sym_EQ_TILDE2] = ACTIONS(1738), + [anon_sym_BANG_TILDE2] = ACTIONS(1738), + [anon_sym_like2] = ACTIONS(1738), + [anon_sym_not_DASHlike2] = ACTIONS(1738), + [anon_sym_LPAREN2] = ACTIONS(1738), + [anon_sym_STAR_STAR2] = ACTIONS(1738), + [anon_sym_PLUS_PLUS2] = ACTIONS(1738), + [anon_sym_SLASH2] = ACTIONS(1740), + [anon_sym_mod2] = ACTIONS(1738), + [anon_sym_SLASH_SLASH2] = ACTIONS(1738), + [anon_sym_PLUS2] = ACTIONS(1740), + [anon_sym_bit_DASHshl2] = ACTIONS(1738), + [anon_sym_bit_DASHshr2] = ACTIONS(1738), + [anon_sym_bit_DASHand2] = ACTIONS(1738), + [anon_sym_bit_DASHxor2] = ACTIONS(1738), + [anon_sym_bit_DASHor2] = ACTIONS(1738), + [anon_sym_DOT_DOT2] = ACTIONS(1740), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1738), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1738), + [aux_sym__immediate_decimal_token1] = ACTIONS(1888), + [aux_sym__immediate_decimal_token5] = ACTIONS(1890), + [anon_sym_err_GT] = ACTIONS(1740), + [anon_sym_out_GT] = ACTIONS(1740), + [anon_sym_e_GT] = ACTIONS(1740), + [anon_sym_o_GT] = ACTIONS(1740), + [anon_sym_err_PLUSout_GT] = ACTIONS(1740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1740), + [anon_sym_o_PLUSe_GT] = ACTIONS(1740), + [anon_sym_e_PLUSo_GT] = ACTIONS(1740), + [anon_sym_err_GT_GT] = ACTIONS(1738), + [anon_sym_out_GT_GT] = ACTIONS(1738), + [anon_sym_e_GT_GT] = ACTIONS(1738), + [anon_sym_o_GT_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), + [sym__unquoted_pattern] = ACTIONS(1740), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(503)] = { + [aux_sym__repeat_newline] = STATE(659), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1121), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(880), + [sym__unquoted_with_expr] = STATE(1122), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(503), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -87394,69 +86709,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(514)] = { - [aux_sym__repeat_newline] = STATE(530), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1226), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(747), - [sym__unquoted_with_expr] = STATE(1018), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(514), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [STATE(504)] = { + [aux_sym__repeat_newline] = STATE(520), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1104), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(801), + [sym__unquoted_with_expr] = STATE(1105), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(504), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -87466,285 +86781,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(515)] = { - [sym_comment] = STATE(515), - [ts_builtin_sym_end] = ACTIONS(1728), - [anon_sym_in] = ACTIONS(1728), - [sym__newline] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_err_GT_PIPE] = ACTIONS(1728), - [anon_sym_out_GT_PIPE] = ACTIONS(1728), - [anon_sym_e_GT_PIPE] = ACTIONS(1728), - [anon_sym_o_GT_PIPE] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1728), - [anon_sym_GT2] = ACTIONS(1730), - [anon_sym_DASH2] = ACTIONS(1728), - [anon_sym_STAR2] = ACTIONS(1730), - [anon_sym_and2] = ACTIONS(1728), - [anon_sym_xor2] = ACTIONS(1728), - [anon_sym_or2] = ACTIONS(1728), - [anon_sym_not_DASHin2] = ACTIONS(1728), - [anon_sym_has2] = ACTIONS(1728), - [anon_sym_not_DASHhas2] = ACTIONS(1728), - [anon_sym_starts_DASHwith2] = ACTIONS(1728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1728), - [anon_sym_ends_DASHwith2] = ACTIONS(1728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1728), - [anon_sym_EQ_EQ2] = ACTIONS(1728), - [anon_sym_BANG_EQ2] = ACTIONS(1728), - [anon_sym_LT2] = ACTIONS(1730), - [anon_sym_LT_EQ2] = ACTIONS(1728), - [anon_sym_GT_EQ2] = ACTIONS(1728), - [anon_sym_EQ_TILDE2] = ACTIONS(1728), - [anon_sym_BANG_TILDE2] = ACTIONS(1728), - [anon_sym_like2] = ACTIONS(1728), - [anon_sym_not_DASHlike2] = ACTIONS(1728), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_STAR_STAR2] = ACTIONS(1728), - [anon_sym_PLUS_PLUS2] = ACTIONS(1728), - [anon_sym_SLASH2] = ACTIONS(1730), - [anon_sym_mod2] = ACTIONS(1728), - [anon_sym_SLASH_SLASH2] = ACTIONS(1728), - [anon_sym_PLUS2] = ACTIONS(1730), - [anon_sym_bit_DASHshl2] = ACTIONS(1728), - [anon_sym_bit_DASHshr2] = ACTIONS(1728), - [anon_sym_bit_DASHand2] = ACTIONS(1728), - [anon_sym_bit_DASHxor2] = ACTIONS(1728), - [anon_sym_bit_DASHor2] = ACTIONS(1728), - [anon_sym_DOT_DOT2] = ACTIONS(1730), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1728), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1728), - [aux_sym__immediate_decimal_token5] = ACTIONS(1876), - [anon_sym_err_GT] = ACTIONS(1730), - [anon_sym_out_GT] = ACTIONS(1730), - [anon_sym_e_GT] = ACTIONS(1730), - [anon_sym_o_GT] = ACTIONS(1730), - [anon_sym_err_PLUSout_GT] = ACTIONS(1730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1730), - [anon_sym_o_PLUSe_GT] = ACTIONS(1730), - [anon_sym_e_PLUSo_GT] = ACTIONS(1730), - [anon_sym_err_GT_GT] = ACTIONS(1728), - [anon_sym_out_GT_GT] = ACTIONS(1728), - [anon_sym_e_GT_GT] = ACTIONS(1728), - [anon_sym_o_GT_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1728), - [sym__unquoted_pattern] = ACTIONS(1730), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(516)] = { - [sym_path] = STATE(712), - [sym_comment] = STATE(516), - [aux_sym__where_predicate_lhs_repeat1] = STATE(516), - [ts_builtin_sym_end] = ACTIONS(1496), - [anon_sym_in] = ACTIONS(1496), - [sym__newline] = ACTIONS(1496), - [anon_sym_SEMI] = ACTIONS(1496), - [anon_sym_PIPE] = ACTIONS(1496), - [anon_sym_err_GT_PIPE] = ACTIONS(1496), - [anon_sym_out_GT_PIPE] = ACTIONS(1496), - [anon_sym_e_GT_PIPE] = ACTIONS(1496), - [anon_sym_o_GT_PIPE] = ACTIONS(1496), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1496), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1496), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1496), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1496), - [anon_sym_GT2] = ACTIONS(1494), - [anon_sym_DASH2] = ACTIONS(1496), - [anon_sym_STAR2] = ACTIONS(1494), - [anon_sym_and2] = ACTIONS(1496), - [anon_sym_xor2] = ACTIONS(1496), - [anon_sym_or2] = ACTIONS(1496), - [anon_sym_not_DASHin2] = ACTIONS(1496), - [anon_sym_has2] = ACTIONS(1496), - [anon_sym_not_DASHhas2] = ACTIONS(1496), - [anon_sym_starts_DASHwith2] = ACTIONS(1496), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1496), - [anon_sym_ends_DASHwith2] = ACTIONS(1496), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1496), - [anon_sym_EQ_EQ2] = ACTIONS(1496), - [anon_sym_BANG_EQ2] = ACTIONS(1496), - [anon_sym_LT2] = ACTIONS(1494), - [anon_sym_LT_EQ2] = ACTIONS(1496), - [anon_sym_GT_EQ2] = ACTIONS(1496), - [anon_sym_EQ_TILDE2] = ACTIONS(1496), - [anon_sym_BANG_TILDE2] = ACTIONS(1496), - [anon_sym_like2] = ACTIONS(1496), - [anon_sym_not_DASHlike2] = ACTIONS(1496), - [anon_sym_STAR_STAR2] = ACTIONS(1496), - [anon_sym_PLUS_PLUS2] = ACTIONS(1496), - [anon_sym_SLASH2] = ACTIONS(1494), - [anon_sym_mod2] = ACTIONS(1496), - [anon_sym_SLASH_SLASH2] = ACTIONS(1496), - [anon_sym_PLUS2] = ACTIONS(1494), - [anon_sym_bit_DASHshl2] = ACTIONS(1496), - [anon_sym_bit_DASHshr2] = ACTIONS(1496), - [anon_sym_bit_DASHand2] = ACTIONS(1496), - [anon_sym_bit_DASHxor2] = ACTIONS(1496), - [anon_sym_bit_DASHor2] = ACTIONS(1496), - [anon_sym_DOT_DOT2] = ACTIONS(1494), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1496), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1496), - [anon_sym_DOT2] = ACTIONS(1932), - [anon_sym_err_GT] = ACTIONS(1494), - [anon_sym_out_GT] = ACTIONS(1494), - [anon_sym_e_GT] = ACTIONS(1494), - [anon_sym_o_GT] = ACTIONS(1494), - [anon_sym_err_PLUSout_GT] = ACTIONS(1494), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1494), - [anon_sym_o_PLUSe_GT] = ACTIONS(1494), - [anon_sym_e_PLUSo_GT] = ACTIONS(1494), - [anon_sym_err_GT_GT] = ACTIONS(1496), - [anon_sym_out_GT_GT] = ACTIONS(1496), - [anon_sym_e_GT_GT] = ACTIONS(1496), - [anon_sym_o_GT_GT] = ACTIONS(1496), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1496), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1496), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1496), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1496), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(517)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(517), - [anon_sym_else] = ACTIONS(1935), - [anon_sym_catch] = ACTIONS(1935), - [anon_sym_in] = ACTIONS(1935), - [sym__newline] = ACTIONS(1937), - [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_COLON] = ACTIONS(1935), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_RPAREN] = ACTIONS(1935), - [anon_sym_GT2] = ACTIONS(1940), - [anon_sym_DASH2] = ACTIONS(1935), - [anon_sym_LBRACE] = ACTIONS(1935), - [anon_sym_STAR2] = ACTIONS(1940), - [anon_sym_and2] = ACTIONS(1935), - [anon_sym_xor2] = ACTIONS(1935), - [anon_sym_or2] = ACTIONS(1935), - [anon_sym_not_DASHin2] = ACTIONS(1935), - [anon_sym_has2] = ACTIONS(1935), - [anon_sym_not_DASHhas2] = ACTIONS(1935), - [anon_sym_starts_DASHwith2] = ACTIONS(1935), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1935), - [anon_sym_ends_DASHwith2] = ACTIONS(1935), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1935), - [anon_sym_EQ_EQ2] = ACTIONS(1935), - [anon_sym_BANG_EQ2] = ACTIONS(1935), - [anon_sym_LT2] = ACTIONS(1940), - [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_like2] = ACTIONS(1935), - [anon_sym_not_DASHlike2] = ACTIONS(1935), - [anon_sym_STAR_STAR2] = ACTIONS(1935), - [anon_sym_PLUS_PLUS2] = ACTIONS(1935), - [anon_sym_SLASH2] = ACTIONS(1940), - [anon_sym_mod2] = ACTIONS(1935), - [anon_sym_SLASH_SLASH2] = ACTIONS(1935), - [anon_sym_PLUS2] = ACTIONS(1940), - [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_err_GT] = ACTIONS(1940), - [anon_sym_out_GT] = ACTIONS(1940), - [anon_sym_e_GT] = ACTIONS(1940), - [anon_sym_o_GT] = ACTIONS(1940), - [anon_sym_err_PLUSout_GT] = ACTIONS(1940), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1940), - [anon_sym_o_PLUSe_GT] = ACTIONS(1940), - [anon_sym_e_PLUSo_GT] = ACTIONS(1940), - [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(3), - }, - [STATE(518)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1139), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(763), - [sym__unquoted_with_expr] = STATE(986), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(518), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [STATE(505)] = { + [aux_sym__repeat_newline] = STATE(521), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1232), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(816), + [sym__unquoted_with_expr] = STATE(1107), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(505), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -87754,69 +86853,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(519)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1180), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(764), - [sym__unquoted_with_expr] = STATE(989), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(519), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [STATE(506)] = { + [aux_sym__repeat_newline] = STATE(522), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1239), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(818), + [sym__unquoted_with_expr] = STATE(1110), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(506), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -87826,69 +86925,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(520)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1208), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(765), - [sym__unquoted_with_expr] = STATE(994), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(520), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [STATE(507)] = { + [aux_sym__repeat_newline] = STATE(523), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1242), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(820), + [sym__unquoted_with_expr] = STATE(1114), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(507), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -87898,69 +86997,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(521)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1152), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(767), - [sym__unquoted_with_expr] = STATE(1003), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(521), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [STATE(508)] = { + [aux_sym__repeat_newline] = STATE(524), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1130), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(823), + [sym__unquoted_with_expr] = STATE(1120), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(508), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -87970,69 +87069,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(522)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1173), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(768), - [sym__unquoted_with_expr] = STATE(1008), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(522), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [STATE(509)] = { + [sym_comment] = STATE(509), + [ts_builtin_sym_end] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1816), + [sym__newline] = ACTIONS(1816), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_PIPE] = ACTIONS(1816), + [anon_sym_err_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_GT_PIPE] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1816), + [anon_sym_GT2] = ACTIONS(1818), + [anon_sym_DASH2] = ACTIONS(1816), + [anon_sym_STAR2] = ACTIONS(1818), + [anon_sym_and2] = ACTIONS(1816), + [anon_sym_xor2] = ACTIONS(1816), + [anon_sym_or2] = ACTIONS(1816), + [anon_sym_not_DASHin2] = ACTIONS(1816), + [anon_sym_has2] = ACTIONS(1816), + [anon_sym_not_DASHhas2] = ACTIONS(1816), + [anon_sym_starts_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1816), + [anon_sym_ends_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1816), + [anon_sym_EQ_EQ2] = ACTIONS(1816), + [anon_sym_BANG_EQ2] = ACTIONS(1816), + [anon_sym_LT2] = ACTIONS(1818), + [anon_sym_LT_EQ2] = ACTIONS(1816), + [anon_sym_GT_EQ2] = ACTIONS(1816), + [anon_sym_EQ_TILDE2] = ACTIONS(1816), + [anon_sym_BANG_TILDE2] = ACTIONS(1816), + [anon_sym_like2] = ACTIONS(1816), + [anon_sym_not_DASHlike2] = ACTIONS(1816), + [anon_sym_LPAREN2] = ACTIONS(1816), + [anon_sym_STAR_STAR2] = ACTIONS(1816), + [anon_sym_PLUS_PLUS2] = ACTIONS(1816), + [anon_sym_SLASH2] = ACTIONS(1818), + [anon_sym_mod2] = ACTIONS(1816), + [anon_sym_SLASH_SLASH2] = ACTIONS(1816), + [anon_sym_PLUS2] = ACTIONS(1818), + [anon_sym_bit_DASHshl2] = ACTIONS(1816), + [anon_sym_bit_DASHshr2] = ACTIONS(1816), + [anon_sym_bit_DASHand2] = ACTIONS(1816), + [anon_sym_bit_DASHxor2] = ACTIONS(1816), + [anon_sym_bit_DASHor2] = ACTIONS(1816), + [anon_sym_DOT_DOT2] = ACTIONS(1818), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1816), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1816), + [aux_sym__immediate_decimal_token5] = ACTIONS(1914), + [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(1816), + [anon_sym_out_GT_GT] = ACTIONS(1816), + [anon_sym_e_GT_GT] = ACTIONS(1816), + [anon_sym_o_GT_GT] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1816), + [sym__unquoted_pattern] = ACTIONS(1818), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(510)] = { + [sym_cmd_identifier] = STATE(4340), + [sym_expr_parenthesized] = STATE(5053), + [sym__spread_parenthesized] = STATE(4675), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(4141), + [sym_val_number] = STATE(5053), + [sym__val_number_decimal] = STATE(1955), + [sym__val_number] = STATE(693), + [sym_val_string] = STATE(5053), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(5053), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym__spread_record] = STATE(4675), + [sym_record_entry] = STATE(4451), + [sym__record_key] = STATE(5144), + [sym_comment] = STATE(510), + [aux_sym__types_body_repeat1] = STATE(1505), + [aux_sym__match_pattern_record_body_repeat1] = STATE(719), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_null] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [sym__newline] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1780), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1784), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1796), + }, + [STATE(511)] = { + [aux_sym__repeat_newline] = STATE(517), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1224), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(795), + [sym__unquoted_with_expr] = STATE(1101), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(511), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -88042,69 +87285,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(523)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1198), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(770), - [sym__unquoted_with_expr] = STATE(1019), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(523), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [STATE(512)] = { + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1257), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(721), + [sym__unquoted_with_expr] = STATE(984), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(512), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -88114,69 +87357,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(524)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1134), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(772), - [sym__unquoted_with_expr] = STATE(1022), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(524), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [STATE(513)] = { + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1148), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(722), + [sym__unquoted_with_expr] = STATE(997), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(513), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -88186,69 +87429,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(525)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1142), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(773), - [sym__unquoted_with_expr] = STATE(1024), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(525), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [STATE(514)] = { + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1168), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(723), + [sym__unquoted_with_expr] = STATE(1000), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(514), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -88258,69 +87501,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(526)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1026), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(774), - [sym__unquoted_with_expr] = STATE(1044), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(526), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [STATE(515)] = { + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1180), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(724), + [sym__unquoted_with_expr] = STATE(1003), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(515), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -88330,69 +87573,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(527)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1211), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(775), - [sym__unquoted_with_expr] = STATE(1048), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(527), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [STATE(516)] = { + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1186), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(728), + [sym__unquoted_with_expr] = STATE(1006), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(516), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -88402,69 +87645,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(528)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1223), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(776), - [sym__unquoted_with_expr] = STATE(1055), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(528), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [STATE(517)] = { + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1195), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(729), + [sym__unquoted_with_expr] = STATE(1009), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(517), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -88474,69 +87717,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(529)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1246), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(777), - [sym__unquoted_with_expr] = STATE(1061), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(529), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [STATE(518)] = { + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1200), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(731), + [sym__unquoted_with_expr] = STATE(1013), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(518), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -88546,69 +87789,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(530)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1260), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(778), - [sym__unquoted_with_expr] = STATE(1062), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(530), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [STATE(519)] = { + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1216), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(732), + [sym__unquoted_with_expr] = STATE(1017), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(519), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -88618,69 +87861,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(531)] = { - [aux_sym__repeat_newline] = STATE(550), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1135), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(779), - [sym__unquoted_with_expr] = STATE(1067), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(531), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [STATE(520)] = { + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1019), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(733), + [sym__unquoted_with_expr] = STATE(1021), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(520), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -88690,69 +87933,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(532)] = { - [aux_sym__repeat_newline] = STATE(551), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1143), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(780), - [sym__unquoted_with_expr] = STATE(1071), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(532), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [STATE(521)] = { + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1250), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(734), + [sym__unquoted_with_expr] = STATE(1024), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(521), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -88762,69 +88005,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(533)] = { - [aux_sym__repeat_newline] = STATE(552), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1147), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(781), - [sym__unquoted_with_expr] = STATE(1080), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(533), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [STATE(522)] = { + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1131), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(735), + [sym__unquoted_with_expr] = STATE(1029), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(522), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -88834,69 +88077,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(534)] = { - [aux_sym__repeat_newline] = STATE(553), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1177), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(782), - [sym__unquoted_with_expr] = STATE(1087), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(534), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [STATE(523)] = { + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1134), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(736), + [sym__unquoted_with_expr] = STATE(1032), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(523), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -88906,69 +88149,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(535)] = { - [aux_sym__repeat_newline] = STATE(554), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1181), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(783), - [sym__unquoted_with_expr] = STATE(1090), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(535), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [STATE(524)] = { + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1138), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(737), + [sym__unquoted_with_expr] = STATE(1045), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(524), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -88978,69 +88221,501 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(536)] = { - [aux_sym__repeat_newline] = STATE(555), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1185), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(784), - [sym__unquoted_with_expr] = STATE(1092), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(536), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [STATE(525)] = { + [sym_path] = STATE(827), + [sym_comment] = STATE(525), + [aux_sym__where_predicate_lhs_repeat1] = STATE(545), + [ts_builtin_sym_end] = ACTIONS(1494), + [anon_sym_in] = ACTIONS(1494), + [sym__newline] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_err_GT_PIPE] = ACTIONS(1494), + [anon_sym_out_GT_PIPE] = ACTIONS(1494), + [anon_sym_e_GT_PIPE] = ACTIONS(1494), + [anon_sym_o_GT_PIPE] = ACTIONS(1494), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1494), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1494), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1494), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1494), + [anon_sym_GT2] = ACTIONS(1492), + [anon_sym_DASH2] = ACTIONS(1494), + [anon_sym_STAR2] = ACTIONS(1492), + [anon_sym_and2] = ACTIONS(1494), + [anon_sym_xor2] = ACTIONS(1494), + [anon_sym_or2] = ACTIONS(1494), + [anon_sym_not_DASHin2] = ACTIONS(1494), + [anon_sym_has2] = ACTIONS(1494), + [anon_sym_not_DASHhas2] = ACTIONS(1494), + [anon_sym_starts_DASHwith2] = ACTIONS(1494), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1494), + [anon_sym_ends_DASHwith2] = ACTIONS(1494), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1494), + [anon_sym_EQ_EQ2] = ACTIONS(1494), + [anon_sym_BANG_EQ2] = ACTIONS(1494), + [anon_sym_LT2] = ACTIONS(1492), + [anon_sym_LT_EQ2] = ACTIONS(1494), + [anon_sym_GT_EQ2] = ACTIONS(1494), + [anon_sym_EQ_TILDE2] = ACTIONS(1494), + [anon_sym_BANG_TILDE2] = ACTIONS(1494), + [anon_sym_like2] = ACTIONS(1494), + [anon_sym_not_DASHlike2] = ACTIONS(1494), + [anon_sym_STAR_STAR2] = ACTIONS(1494), + [anon_sym_PLUS_PLUS2] = ACTIONS(1494), + [anon_sym_SLASH2] = ACTIONS(1492), + [anon_sym_mod2] = ACTIONS(1494), + [anon_sym_SLASH_SLASH2] = ACTIONS(1494), + [anon_sym_PLUS2] = ACTIONS(1492), + [anon_sym_bit_DASHshl2] = ACTIONS(1494), + [anon_sym_bit_DASHshr2] = ACTIONS(1494), + [anon_sym_bit_DASHand2] = ACTIONS(1494), + [anon_sym_bit_DASHxor2] = ACTIONS(1494), + [anon_sym_bit_DASHor2] = ACTIONS(1494), + [anon_sym_DOT_DOT2] = ACTIONS(1492), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1494), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1494), + [anon_sym_DOT2] = ACTIONS(1862), + [anon_sym_err_GT] = ACTIONS(1492), + [anon_sym_out_GT] = ACTIONS(1492), + [anon_sym_e_GT] = ACTIONS(1492), + [anon_sym_o_GT] = ACTIONS(1492), + [anon_sym_err_PLUSout_GT] = ACTIONS(1492), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1492), + [anon_sym_o_PLUSe_GT] = ACTIONS(1492), + [anon_sym_e_PLUSo_GT] = ACTIONS(1492), + [anon_sym_err_GT_GT] = ACTIONS(1494), + [anon_sym_out_GT_GT] = ACTIONS(1494), + [anon_sym_e_GT_GT] = ACTIONS(1494), + [anon_sym_o_GT_GT] = ACTIONS(1494), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1494), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1494), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1494), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1494), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(526)] = { + [sym_cmd_identifier] = STATE(4340), + [sym_expr_parenthesized] = STATE(5053), + [sym__spread_parenthesized] = STATE(4675), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(5053), + [sym_val_number] = STATE(5053), + [sym__val_number_decimal] = STATE(1955), + [sym__val_number] = STATE(693), + [sym_val_string] = STATE(5053), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(5053), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym__spread_record] = STATE(4675), + [sym_record_entry] = STATE(4643), + [sym__record_key] = STATE(5144), + [sym_comment] = STATE(526), + [aux_sym__types_body_repeat1] = STATE(1505), + [aux_sym_record_body_repeat1] = STATE(748), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_null] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [sym__newline] = ACTIONS(1776), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1798), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1784), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1796), + }, + [STATE(527)] = { + [sym_comment] = STATE(527), + [ts_builtin_sym_end] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [sym__newline] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1750), + [anon_sym_err_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_GT_PIPE] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1750), + [anon_sym_GT2] = ACTIONS(1752), + [anon_sym_DASH2] = ACTIONS(1750), + [anon_sym_STAR2] = ACTIONS(1752), + [anon_sym_and2] = ACTIONS(1750), + [anon_sym_xor2] = ACTIONS(1750), + [anon_sym_or2] = ACTIONS(1750), + [anon_sym_not_DASHin2] = ACTIONS(1750), + [anon_sym_has2] = ACTIONS(1750), + [anon_sym_not_DASHhas2] = ACTIONS(1750), + [anon_sym_starts_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1750), + [anon_sym_ends_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1750), + [anon_sym_EQ_EQ2] = ACTIONS(1750), + [anon_sym_BANG_EQ2] = ACTIONS(1750), + [anon_sym_LT2] = ACTIONS(1752), + [anon_sym_LT_EQ2] = ACTIONS(1750), + [anon_sym_GT_EQ2] = ACTIONS(1750), + [anon_sym_EQ_TILDE2] = ACTIONS(1750), + [anon_sym_BANG_TILDE2] = ACTIONS(1750), + [anon_sym_like2] = ACTIONS(1750), + [anon_sym_not_DASHlike2] = ACTIONS(1750), + [anon_sym_LPAREN2] = ACTIONS(1750), + [anon_sym_STAR_STAR2] = ACTIONS(1750), + [anon_sym_PLUS_PLUS2] = ACTIONS(1750), + [anon_sym_SLASH2] = ACTIONS(1752), + [anon_sym_mod2] = ACTIONS(1750), + [anon_sym_SLASH_SLASH2] = ACTIONS(1750), + [anon_sym_PLUS2] = ACTIONS(1752), + [anon_sym_bit_DASHshl2] = ACTIONS(1750), + [anon_sym_bit_DASHshr2] = ACTIONS(1750), + [anon_sym_bit_DASHand2] = ACTIONS(1750), + [anon_sym_bit_DASHxor2] = ACTIONS(1750), + [anon_sym_bit_DASHor2] = ACTIONS(1750), + [anon_sym_DOT_DOT2] = ACTIONS(1752), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1750), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1750), + [aux_sym__immediate_decimal_token5] = ACTIONS(1886), + [anon_sym_err_GT] = ACTIONS(1752), + [anon_sym_out_GT] = ACTIONS(1752), + [anon_sym_e_GT] = ACTIONS(1752), + [anon_sym_o_GT] = ACTIONS(1752), + [anon_sym_err_PLUSout_GT] = ACTIONS(1752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1752), + [anon_sym_o_PLUSe_GT] = ACTIONS(1752), + [anon_sym_e_PLUSo_GT] = ACTIONS(1752), + [anon_sym_err_GT_GT] = ACTIONS(1750), + [anon_sym_out_GT_GT] = ACTIONS(1750), + [anon_sym_e_GT_GT] = ACTIONS(1750), + [anon_sym_o_GT_GT] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1750), + [sym__unquoted_pattern] = ACTIONS(1752), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(528)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(528), + [anon_sym_else] = ACTIONS(1916), + [anon_sym_catch] = ACTIONS(1916), + [anon_sym_in] = ACTIONS(1916), + [sym__newline] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(1916), + [anon_sym_PIPE] = ACTIONS(1916), + [anon_sym_err_GT_PIPE] = ACTIONS(1916), + [anon_sym_out_GT_PIPE] = ACTIONS(1916), + [anon_sym_e_GT_PIPE] = ACTIONS(1916), + [anon_sym_o_GT_PIPE] = ACTIONS(1916), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1916), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1916), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1916), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1916), + [anon_sym_COLON] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_RPAREN] = ACTIONS(1916), + [anon_sym_GT2] = ACTIONS(1921), + [anon_sym_DASH2] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1916), + [anon_sym_STAR2] = ACTIONS(1921), + [anon_sym_and2] = ACTIONS(1916), + [anon_sym_xor2] = ACTIONS(1916), + [anon_sym_or2] = ACTIONS(1916), + [anon_sym_not_DASHin2] = ACTIONS(1916), + [anon_sym_has2] = ACTIONS(1916), + [anon_sym_not_DASHhas2] = ACTIONS(1916), + [anon_sym_starts_DASHwith2] = ACTIONS(1916), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1916), + [anon_sym_ends_DASHwith2] = ACTIONS(1916), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1916), + [anon_sym_EQ_EQ2] = ACTIONS(1916), + [anon_sym_BANG_EQ2] = ACTIONS(1916), + [anon_sym_LT2] = ACTIONS(1921), + [anon_sym_LT_EQ2] = ACTIONS(1916), + [anon_sym_GT_EQ2] = ACTIONS(1916), + [anon_sym_EQ_TILDE2] = ACTIONS(1916), + [anon_sym_BANG_TILDE2] = ACTIONS(1916), + [anon_sym_like2] = ACTIONS(1916), + [anon_sym_not_DASHlike2] = ACTIONS(1916), + [anon_sym_STAR_STAR2] = ACTIONS(1916), + [anon_sym_PLUS_PLUS2] = ACTIONS(1916), + [anon_sym_SLASH2] = ACTIONS(1921), + [anon_sym_mod2] = ACTIONS(1916), + [anon_sym_SLASH_SLASH2] = ACTIONS(1916), + [anon_sym_PLUS2] = ACTIONS(1921), + [anon_sym_bit_DASHshl2] = ACTIONS(1916), + [anon_sym_bit_DASHshr2] = ACTIONS(1916), + [anon_sym_bit_DASHand2] = ACTIONS(1916), + [anon_sym_bit_DASHxor2] = ACTIONS(1916), + [anon_sym_bit_DASHor2] = ACTIONS(1916), + [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(1916), + [anon_sym_out_GT_GT] = ACTIONS(1916), + [anon_sym_e_GT_GT] = ACTIONS(1916), + [anon_sym_o_GT_GT] = ACTIONS(1916), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1916), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1916), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1916), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1916), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(529)] = { + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4601), + [sym__spread_list] = STATE(4806), + [sym_val_entry] = STATE(4413), + [sym_val_record] = STATE(4601), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), + [sym_comment] = STATE(529), + [aux_sym_list_body_repeat1] = STATE(530), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_null] = ACTIONS(1464), + [aux_sym_cmd_identifier_token3] = ACTIONS(1466), + [aux_sym_cmd_identifier_token4] = ACTIONS(1466), + [aux_sym_cmd_identifier_token5] = ACTIONS(1466), + [anon_sym_LBRACK] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_DOLLAR] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), + [anon_sym_DOT_DOT_LT] = ACTIONS(1480), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1482), + [aux_sym__val_number_decimal_token2] = ACTIONS(1484), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_token1] = ACTIONS(1404), + [aux_sym__val_number_token2] = ACTIONS(1404), + [aux_sym__val_number_token3] = ACTIONS(1404), + [anon_sym_0b] = ACTIONS(1406), + [anon_sym_0o] = ACTIONS(1408), + [anon_sym_0x] = ACTIONS(1408), + [sym_val_date] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_BQUOTE] = ACTIONS(1416), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1426), + }, + [STATE(530)] = { + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), + [sym__inter_double_quotes] = STATE(4596), + [sym_val_list] = STATE(4601), + [sym__spread_list] = STATE(4806), + [sym_val_entry] = STATE(4687), + [sym_val_record] = STATE(4601), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), + [sym__unquoted_in_list] = STATE(4171), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), + [sym_comment] = STATE(530), + [aux_sym_list_body_repeat1] = STATE(530), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1926), + [aux_sym_cmd_identifier_token3] = ACTIONS(1929), + [aux_sym_cmd_identifier_token4] = ACTIONS(1929), + [aux_sym_cmd_identifier_token5] = ACTIONS(1929), + [anon_sym_LBRACK] = ACTIONS(1932), + [anon_sym_LPAREN] = ACTIONS(1935), + [anon_sym_DOLLAR] = ACTIONS(1938), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1947), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1950), + [anon_sym_DOT_DOT_LT] = ACTIONS(1950), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1953), + [aux_sym__val_number_decimal_token1] = ACTIONS(1956), + [aux_sym__val_number_decimal_token2] = ACTIONS(1959), + [aux_sym__val_number_decimal_token3] = ACTIONS(1962), + [aux_sym__val_number_decimal_token4] = ACTIONS(1962), + [aux_sym__val_number_token1] = ACTIONS(1965), + [aux_sym__val_number_token2] = ACTIONS(1965), + [aux_sym__val_number_token3] = ACTIONS(1965), + [anon_sym_0b] = ACTIONS(1968), + [anon_sym_0o] = ACTIONS(1971), + [anon_sym_0x] = ACTIONS(1971), + [sym_val_date] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1977), + [anon_sym_SQUOTE] = ACTIONS(1980), + [anon_sym_BQUOTE] = ACTIONS(1983), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1989), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1992), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1995), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1998), + }, + [STATE(531)] = { + [aux_sym__repeat_newline] = STATE(651), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1230), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(866), + [sym__unquoted_with_expr] = STATE(1106), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(531), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -89050,69 +88725,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(537)] = { - [aux_sym__repeat_newline] = STATE(556), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1158), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(800), - [sym__unquoted_with_expr] = STATE(977), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(537), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [STATE(532)] = { + [aux_sym__repeat_newline] = STATE(652), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1234), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(868), + [sym__unquoted_with_expr] = STATE(1108), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(532), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -89122,69 +88797,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(538)] = { - [aux_sym__repeat_newline] = STATE(570), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1244), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(801), - [sym__unquoted_with_expr] = STATE(992), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(538), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [STATE(533)] = { + [aux_sym__repeat_newline] = STATE(653), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1238), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(870), + [sym__unquoted_with_expr] = STATE(1109), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(533), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -89194,69 +88869,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(539)] = { - [aux_sym__repeat_newline] = STATE(597), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(993), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(810), - [sym__unquoted_with_expr] = STATE(995), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(539), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [STATE(534)] = { + [aux_sym__repeat_newline] = STATE(654), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1240), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(872), + [sym__unquoted_with_expr] = STATE(1111), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(534), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -89266,69 +88941,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(540)] = { - [aux_sym__repeat_newline] = STATE(611), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1178), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(814), - [sym__unquoted_with_expr] = STATE(1007), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(540), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [STATE(535)] = { + [aux_sym__repeat_newline] = STATE(655), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1241), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(873), + [sym__unquoted_with_expr] = STATE(1113), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(535), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -89338,69 +89013,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(541)] = { - [aux_sym__repeat_newline] = STATE(612), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1187), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(816), - [sym__unquoted_with_expr] = STATE(1009), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(541), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [STATE(536)] = { + [aux_sym__repeat_newline] = STATE(656), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1244), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(875), + [sym__unquoted_with_expr] = STATE(1115), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(536), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -89410,69 +89085,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(542)] = { - [aux_sym__repeat_newline] = STATE(613), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1196), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(817), - [sym__unquoted_with_expr] = STATE(1011), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(542), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), - [sym__newline] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [STATE(537)] = { + [aux_sym__repeat_newline] = STATE(657), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1246), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(877), + [sym__unquoted_with_expr] = STATE(1117), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(537), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -89482,69 +89157,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(543)] = { - [aux_sym__repeat_newline] = STATE(614), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1206), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(819), - [sym__unquoted_with_expr] = STATE(1012), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(543), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [STATE(538)] = { + [aux_sym__repeat_newline] = STATE(658), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1248), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(879), + [sym__unquoted_with_expr] = STATE(1119), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(538), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(539)] = { + [aux_sym__repeat_newline] = STATE(660), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1254), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(882), + [sym__unquoted_with_expr] = STATE(1123), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(539), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -89554,330 +89301,474 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, + [STATE(540)] = { + [aux_sym__repeat_newline] = STATE(661), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1255), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(712), + [sym__unquoted_with_expr] = STATE(1124), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(540), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(541)] = { + [aux_sym__repeat_newline] = STATE(663), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1256), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(886), + [sym__unquoted_with_expr] = STATE(1126), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(541), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(542)] = { + [aux_sym__repeat_newline] = STATE(664), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1258), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(888), + [sym__unquoted_with_expr] = STATE(1127), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(542), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(543)] = { + [sym_comment] = STATE(543), + [anon_sym_in] = ACTIONS(2001), + [sym__newline] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_err_GT_PIPE] = ACTIONS(2001), + [anon_sym_out_GT_PIPE] = ACTIONS(2001), + [anon_sym_e_GT_PIPE] = ACTIONS(2001), + [anon_sym_o_GT_PIPE] = ACTIONS(2001), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2001), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2001), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2001), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(2001), + [anon_sym_GT2] = ACTIONS(2003), + [anon_sym_DASH2] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2001), + [anon_sym_STAR2] = ACTIONS(2003), + [anon_sym_and2] = ACTIONS(2001), + [anon_sym_xor2] = ACTIONS(2001), + [anon_sym_or2] = ACTIONS(2001), + [anon_sym_not_DASHin2] = ACTIONS(2001), + [anon_sym_has2] = ACTIONS(2001), + [anon_sym_not_DASHhas2] = ACTIONS(2001), + [anon_sym_starts_DASHwith2] = ACTIONS(2001), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2001), + [anon_sym_ends_DASHwith2] = ACTIONS(2001), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2001), + [anon_sym_EQ_EQ2] = ACTIONS(2001), + [anon_sym_BANG_EQ2] = ACTIONS(2001), + [anon_sym_LT2] = ACTIONS(2003), + [anon_sym_LT_EQ2] = ACTIONS(2001), + [anon_sym_GT_EQ2] = ACTIONS(2001), + [anon_sym_EQ_TILDE2] = ACTIONS(2001), + [anon_sym_BANG_TILDE2] = ACTIONS(2001), + [anon_sym_like2] = ACTIONS(2001), + [anon_sym_not_DASHlike2] = ACTIONS(2001), + [anon_sym_LPAREN2] = ACTIONS(2005), + [anon_sym_STAR_STAR2] = ACTIONS(2001), + [anon_sym_PLUS_PLUS2] = ACTIONS(2001), + [anon_sym_SLASH2] = ACTIONS(2003), + [anon_sym_mod2] = ACTIONS(2001), + [anon_sym_SLASH_SLASH2] = ACTIONS(2001), + [anon_sym_PLUS2] = ACTIONS(2003), + [anon_sym_bit_DASHshl2] = ACTIONS(2001), + [anon_sym_bit_DASHshr2] = ACTIONS(2001), + [anon_sym_bit_DASHand2] = ACTIONS(2001), + [anon_sym_bit_DASHxor2] = ACTIONS(2001), + [anon_sym_bit_DASHor2] = ACTIONS(2001), + [anon_sym_DOT_DOT2] = ACTIONS(2007), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2009), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2009), + [anon_sym_err_GT] = ACTIONS(2003), + [anon_sym_out_GT] = ACTIONS(2003), + [anon_sym_e_GT] = ACTIONS(2003), + [anon_sym_o_GT] = ACTIONS(2003), + [anon_sym_err_PLUSout_GT] = ACTIONS(2003), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2003), + [anon_sym_o_PLUSe_GT] = ACTIONS(2003), + [anon_sym_e_PLUSo_GT] = ACTIONS(2003), + [anon_sym_err_GT_GT] = ACTIONS(2001), + [anon_sym_out_GT_GT] = ACTIONS(2001), + [anon_sym_e_GT_GT] = ACTIONS(2001), + [anon_sym_o_GT_GT] = ACTIONS(2001), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2001), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2001), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2001), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2001), + [sym__unquoted_pattern] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(544)] = { [sym_comment] = STATE(544), - [anon_sym_in] = ACTIONS(1942), - [sym__newline] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_PIPE] = ACTIONS(1942), - [anon_sym_err_GT_PIPE] = ACTIONS(1942), - [anon_sym_out_GT_PIPE] = ACTIONS(1942), - [anon_sym_e_GT_PIPE] = ACTIONS(1942), - [anon_sym_o_GT_PIPE] = ACTIONS(1942), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1942), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1942), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1942), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1942), - [anon_sym_RPAREN] = ACTIONS(1942), - [anon_sym_GT2] = ACTIONS(1944), - [anon_sym_DASH2] = ACTIONS(1942), - [anon_sym_RBRACE] = ACTIONS(1942), - [anon_sym_STAR2] = ACTIONS(1944), - [anon_sym_and2] = ACTIONS(1942), - [anon_sym_xor2] = ACTIONS(1942), - [anon_sym_or2] = ACTIONS(1942), - [anon_sym_not_DASHin2] = ACTIONS(1942), - [anon_sym_has2] = ACTIONS(1942), - [anon_sym_not_DASHhas2] = ACTIONS(1942), - [anon_sym_starts_DASHwith2] = ACTIONS(1942), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1942), - [anon_sym_ends_DASHwith2] = ACTIONS(1942), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1942), - [anon_sym_EQ_EQ2] = ACTIONS(1942), - [anon_sym_BANG_EQ2] = ACTIONS(1942), - [anon_sym_LT2] = ACTIONS(1944), - [anon_sym_LT_EQ2] = ACTIONS(1942), - [anon_sym_GT_EQ2] = ACTIONS(1942), - [anon_sym_EQ_TILDE2] = ACTIONS(1942), - [anon_sym_BANG_TILDE2] = ACTIONS(1942), - [anon_sym_like2] = ACTIONS(1942), - [anon_sym_not_DASHlike2] = ACTIONS(1942), - [anon_sym_LPAREN2] = ACTIONS(1946), - [anon_sym_STAR_STAR2] = ACTIONS(1942), - [anon_sym_PLUS_PLUS2] = ACTIONS(1942), - [anon_sym_SLASH2] = ACTIONS(1944), - [anon_sym_mod2] = ACTIONS(1942), - [anon_sym_SLASH_SLASH2] = ACTIONS(1942), - [anon_sym_PLUS2] = ACTIONS(1944), - [anon_sym_bit_DASHshl2] = ACTIONS(1942), - [anon_sym_bit_DASHshr2] = ACTIONS(1942), - [anon_sym_bit_DASHand2] = ACTIONS(1942), - [anon_sym_bit_DASHxor2] = ACTIONS(1942), - [anon_sym_bit_DASHor2] = ACTIONS(1942), - [anon_sym_DOT_DOT2] = ACTIONS(1948), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1950), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1950), - [anon_sym_err_GT] = ACTIONS(1944), - [anon_sym_out_GT] = ACTIONS(1944), - [anon_sym_e_GT] = ACTIONS(1944), - [anon_sym_o_GT] = ACTIONS(1944), - [anon_sym_err_PLUSout_GT] = ACTIONS(1944), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1944), - [anon_sym_o_PLUSe_GT] = ACTIONS(1944), - [anon_sym_e_PLUSo_GT] = ACTIONS(1944), - [anon_sym_err_GT_GT] = ACTIONS(1942), - [anon_sym_out_GT_GT] = ACTIONS(1942), - [anon_sym_e_GT_GT] = ACTIONS(1942), - [anon_sym_o_GT_GT] = ACTIONS(1942), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1942), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1942), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1942), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1942), - [sym__unquoted_pattern] = ACTIONS(1598), + [anon_sym_in] = ACTIONS(2011), + [sym__newline] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_err_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_GT_PIPE] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [anon_sym_GT2] = ACTIONS(2013), + [anon_sym_DASH2] = ACTIONS(2011), + [anon_sym_RBRACE] = ACTIONS(2011), + [anon_sym_STAR2] = ACTIONS(2013), + [anon_sym_and2] = ACTIONS(2011), + [anon_sym_xor2] = ACTIONS(2011), + [anon_sym_or2] = ACTIONS(2011), + [anon_sym_not_DASHin2] = ACTIONS(2011), + [anon_sym_has2] = ACTIONS(2011), + [anon_sym_not_DASHhas2] = ACTIONS(2011), + [anon_sym_starts_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2011), + [anon_sym_ends_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2011), + [anon_sym_EQ_EQ2] = ACTIONS(2011), + [anon_sym_BANG_EQ2] = ACTIONS(2011), + [anon_sym_LT2] = ACTIONS(2013), + [anon_sym_LT_EQ2] = ACTIONS(2011), + [anon_sym_GT_EQ2] = ACTIONS(2011), + [anon_sym_EQ_TILDE2] = ACTIONS(2011), + [anon_sym_BANG_TILDE2] = ACTIONS(2011), + [anon_sym_like2] = ACTIONS(2011), + [anon_sym_not_DASHlike2] = ACTIONS(2011), + [anon_sym_LPAREN2] = ACTIONS(2015), + [anon_sym_STAR_STAR2] = ACTIONS(2011), + [anon_sym_PLUS_PLUS2] = ACTIONS(2011), + [anon_sym_SLASH2] = ACTIONS(2013), + [anon_sym_mod2] = ACTIONS(2011), + [anon_sym_SLASH_SLASH2] = ACTIONS(2011), + [anon_sym_PLUS2] = ACTIONS(2013), + [anon_sym_bit_DASHshl2] = ACTIONS(2011), + [anon_sym_bit_DASHshr2] = ACTIONS(2011), + [anon_sym_bit_DASHand2] = ACTIONS(2011), + [anon_sym_bit_DASHxor2] = ACTIONS(2011), + [anon_sym_bit_DASHor2] = ACTIONS(2011), + [anon_sym_DOT_DOT2] = ACTIONS(2017), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2019), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2019), + [anon_sym_err_GT] = ACTIONS(2013), + [anon_sym_out_GT] = ACTIONS(2013), + [anon_sym_e_GT] = ACTIONS(2013), + [anon_sym_o_GT] = ACTIONS(2013), + [anon_sym_err_PLUSout_GT] = ACTIONS(2013), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2013), + [anon_sym_o_PLUSe_GT] = ACTIONS(2013), + [anon_sym_e_PLUSo_GT] = ACTIONS(2013), + [anon_sym_err_GT_GT] = ACTIONS(2011), + [anon_sym_out_GT_GT] = ACTIONS(2011), + [anon_sym_e_GT_GT] = ACTIONS(2011), + [anon_sym_o_GT_GT] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), + [sym__unquoted_pattern] = ACTIONS(2021), [anon_sym_POUND] = ACTIONS(3), }, [STATE(545)] = { + [sym_path] = STATE(827), [sym_comment] = STATE(545), - [anon_sym_in] = ACTIONS(1952), - [sym__newline] = ACTIONS(1952), - [anon_sym_SEMI] = ACTIONS(1952), - [anon_sym_PIPE] = ACTIONS(1952), - [anon_sym_err_GT_PIPE] = ACTIONS(1952), - [anon_sym_out_GT_PIPE] = ACTIONS(1952), - [anon_sym_e_GT_PIPE] = ACTIONS(1952), - [anon_sym_o_GT_PIPE] = ACTIONS(1952), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1952), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1952), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1952), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1952), - [anon_sym_RPAREN] = ACTIONS(1952), - [anon_sym_GT2] = ACTIONS(1954), - [anon_sym_DASH2] = ACTIONS(1952), - [anon_sym_RBRACE] = ACTIONS(1952), - [anon_sym_STAR2] = ACTIONS(1954), - [anon_sym_and2] = ACTIONS(1952), - [anon_sym_xor2] = ACTIONS(1952), - [anon_sym_or2] = ACTIONS(1952), - [anon_sym_not_DASHin2] = ACTIONS(1952), - [anon_sym_has2] = ACTIONS(1952), - [anon_sym_not_DASHhas2] = ACTIONS(1952), - [anon_sym_starts_DASHwith2] = ACTIONS(1952), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1952), - [anon_sym_ends_DASHwith2] = ACTIONS(1952), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1952), - [anon_sym_EQ_EQ2] = ACTIONS(1952), - [anon_sym_BANG_EQ2] = ACTIONS(1952), - [anon_sym_LT2] = ACTIONS(1954), - [anon_sym_LT_EQ2] = ACTIONS(1952), - [anon_sym_GT_EQ2] = ACTIONS(1952), - [anon_sym_EQ_TILDE2] = ACTIONS(1952), - [anon_sym_BANG_TILDE2] = ACTIONS(1952), - [anon_sym_like2] = ACTIONS(1952), - [anon_sym_not_DASHlike2] = ACTIONS(1952), - [anon_sym_LPAREN2] = ACTIONS(1956), - [anon_sym_STAR_STAR2] = ACTIONS(1952), - [anon_sym_PLUS_PLUS2] = ACTIONS(1952), - [anon_sym_SLASH2] = ACTIONS(1954), - [anon_sym_mod2] = ACTIONS(1952), - [anon_sym_SLASH_SLASH2] = ACTIONS(1952), - [anon_sym_PLUS2] = ACTIONS(1954), - [anon_sym_bit_DASHshl2] = ACTIONS(1952), - [anon_sym_bit_DASHshr2] = ACTIONS(1952), - [anon_sym_bit_DASHand2] = ACTIONS(1952), - [anon_sym_bit_DASHxor2] = ACTIONS(1952), - [anon_sym_bit_DASHor2] = ACTIONS(1952), - [anon_sym_DOT_DOT2] = ACTIONS(1958), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1960), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1960), - [anon_sym_err_GT] = ACTIONS(1954), - [anon_sym_out_GT] = ACTIONS(1954), - [anon_sym_e_GT] = ACTIONS(1954), - [anon_sym_o_GT] = ACTIONS(1954), - [anon_sym_err_PLUSout_GT] = ACTIONS(1954), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1954), - [anon_sym_o_PLUSe_GT] = ACTIONS(1954), - [anon_sym_e_PLUSo_GT] = ACTIONS(1954), - [anon_sym_err_GT_GT] = ACTIONS(1952), - [anon_sym_out_GT_GT] = ACTIONS(1952), - [anon_sym_e_GT_GT] = ACTIONS(1952), - [anon_sym_o_GT_GT] = ACTIONS(1952), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1952), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1952), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1952), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1952), - [sym__unquoted_pattern] = ACTIONS(1962), + [aux_sym__where_predicate_lhs_repeat1] = STATE(545), + [ts_builtin_sym_end] = ACTIONS(1498), + [anon_sym_in] = ACTIONS(1498), + [sym__newline] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_err_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_GT_PIPE] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1498), + [anon_sym_GT2] = ACTIONS(1496), + [anon_sym_DASH2] = ACTIONS(1498), + [anon_sym_STAR2] = ACTIONS(1496), + [anon_sym_and2] = ACTIONS(1498), + [anon_sym_xor2] = ACTIONS(1498), + [anon_sym_or2] = ACTIONS(1498), + [anon_sym_not_DASHin2] = ACTIONS(1498), + [anon_sym_has2] = ACTIONS(1498), + [anon_sym_not_DASHhas2] = ACTIONS(1498), + [anon_sym_starts_DASHwith2] = ACTIONS(1498), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1498), + [anon_sym_ends_DASHwith2] = ACTIONS(1498), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1498), + [anon_sym_EQ_EQ2] = ACTIONS(1498), + [anon_sym_BANG_EQ2] = ACTIONS(1498), + [anon_sym_LT2] = ACTIONS(1496), + [anon_sym_LT_EQ2] = ACTIONS(1498), + [anon_sym_GT_EQ2] = ACTIONS(1498), + [anon_sym_EQ_TILDE2] = ACTIONS(1498), + [anon_sym_BANG_TILDE2] = ACTIONS(1498), + [anon_sym_like2] = ACTIONS(1498), + [anon_sym_not_DASHlike2] = ACTIONS(1498), + [anon_sym_STAR_STAR2] = ACTIONS(1498), + [anon_sym_PLUS_PLUS2] = ACTIONS(1498), + [anon_sym_SLASH2] = ACTIONS(1496), + [anon_sym_mod2] = ACTIONS(1498), + [anon_sym_SLASH_SLASH2] = ACTIONS(1498), + [anon_sym_PLUS2] = ACTIONS(1496), + [anon_sym_bit_DASHshl2] = ACTIONS(1498), + [anon_sym_bit_DASHshr2] = ACTIONS(1498), + [anon_sym_bit_DASHand2] = ACTIONS(1498), + [anon_sym_bit_DASHxor2] = ACTIONS(1498), + [anon_sym_bit_DASHor2] = ACTIONS(1498), + [anon_sym_DOT_DOT2] = ACTIONS(1496), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1498), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1498), + [anon_sym_DOT2] = ACTIONS(2023), + [anon_sym_err_GT] = ACTIONS(1496), + [anon_sym_out_GT] = ACTIONS(1496), + [anon_sym_e_GT] = ACTIONS(1496), + [anon_sym_o_GT] = ACTIONS(1496), + [anon_sym_err_PLUSout_GT] = ACTIONS(1496), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1496), + [anon_sym_o_PLUSe_GT] = ACTIONS(1496), + [anon_sym_e_PLUSo_GT] = ACTIONS(1496), + [anon_sym_err_GT_GT] = ACTIONS(1498), + [anon_sym_out_GT_GT] = ACTIONS(1498), + [anon_sym_e_GT_GT] = ACTIONS(1498), + [anon_sym_o_GT_GT] = ACTIONS(1498), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1498), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1498), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1498), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1498), [anon_sym_POUND] = ACTIONS(3), }, [STATE(546)] = { - [sym_comment] = STATE(546), - [ts_builtin_sym_end] = ACTIONS(1806), - [anon_sym_in] = ACTIONS(1806), - [sym__newline] = ACTIONS(1806), - [anon_sym_SEMI] = ACTIONS(1806), - [anon_sym_PIPE] = ACTIONS(1806), - [anon_sym_err_GT_PIPE] = ACTIONS(1806), - [anon_sym_out_GT_PIPE] = ACTIONS(1806), - [anon_sym_e_GT_PIPE] = ACTIONS(1806), - [anon_sym_o_GT_PIPE] = ACTIONS(1806), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1806), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1806), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1806), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1806), - [anon_sym_GT2] = ACTIONS(1808), - [anon_sym_DASH2] = ACTIONS(1806), - [anon_sym_STAR2] = ACTIONS(1808), - [anon_sym_and2] = ACTIONS(1806), - [anon_sym_xor2] = ACTIONS(1806), - [anon_sym_or2] = ACTIONS(1806), - [anon_sym_not_DASHin2] = ACTIONS(1806), - [anon_sym_has2] = ACTIONS(1806), - [anon_sym_not_DASHhas2] = ACTIONS(1806), - [anon_sym_starts_DASHwith2] = ACTIONS(1806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1806), - [anon_sym_ends_DASHwith2] = ACTIONS(1806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1806), - [anon_sym_EQ_EQ2] = ACTIONS(1806), - [anon_sym_BANG_EQ2] = ACTIONS(1806), - [anon_sym_LT2] = ACTIONS(1808), - [anon_sym_LT_EQ2] = ACTIONS(1806), - [anon_sym_GT_EQ2] = ACTIONS(1806), - [anon_sym_EQ_TILDE2] = ACTIONS(1806), - [anon_sym_BANG_TILDE2] = ACTIONS(1806), - [anon_sym_like2] = ACTIONS(1806), - [anon_sym_not_DASHlike2] = ACTIONS(1806), - [anon_sym_LPAREN2] = ACTIONS(1806), - [anon_sym_STAR_STAR2] = ACTIONS(1806), - [anon_sym_PLUS_PLUS2] = ACTIONS(1806), - [anon_sym_SLASH2] = ACTIONS(1808), - [anon_sym_mod2] = ACTIONS(1806), - [anon_sym_SLASH_SLASH2] = ACTIONS(1806), - [anon_sym_PLUS2] = ACTIONS(1808), - [anon_sym_bit_DASHshl2] = ACTIONS(1806), - [anon_sym_bit_DASHshr2] = ACTIONS(1806), - [anon_sym_bit_DASHand2] = ACTIONS(1806), - [anon_sym_bit_DASHxor2] = ACTIONS(1806), - [anon_sym_bit_DASHor2] = ACTIONS(1806), - [anon_sym_DOT_DOT2] = ACTIONS(1808), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1806), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1806), - [aux_sym__immediate_decimal_token5] = ACTIONS(1964), - [anon_sym_err_GT] = ACTIONS(1808), - [anon_sym_out_GT] = ACTIONS(1808), - [anon_sym_e_GT] = ACTIONS(1808), - [anon_sym_o_GT] = ACTIONS(1808), - [anon_sym_err_PLUSout_GT] = ACTIONS(1808), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1808), - [anon_sym_o_PLUSe_GT] = ACTIONS(1808), - [anon_sym_e_PLUSo_GT] = ACTIONS(1808), - [anon_sym_err_GT_GT] = ACTIONS(1806), - [anon_sym_out_GT_GT] = ACTIONS(1806), - [anon_sym_e_GT_GT] = ACTIONS(1806), - [anon_sym_o_GT_GT] = ACTIONS(1806), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1806), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1806), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1806), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1806), - [sym__unquoted_pattern] = ACTIONS(1808), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(547)] = { - [sym_path] = STATE(712), - [sym_comment] = STATE(547), - [aux_sym__where_predicate_lhs_repeat1] = STATE(516), - [ts_builtin_sym_end] = ACTIONS(1492), - [anon_sym_in] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_GT2] = ACTIONS(1490), - [anon_sym_DASH2] = ACTIONS(1492), - [anon_sym_STAR2] = ACTIONS(1490), - [anon_sym_and2] = ACTIONS(1492), - [anon_sym_xor2] = ACTIONS(1492), - [anon_sym_or2] = ACTIONS(1492), - [anon_sym_not_DASHin2] = ACTIONS(1492), - [anon_sym_has2] = ACTIONS(1492), - [anon_sym_not_DASHhas2] = ACTIONS(1492), - [anon_sym_starts_DASHwith2] = ACTIONS(1492), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1492), - [anon_sym_ends_DASHwith2] = ACTIONS(1492), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1492), - [anon_sym_EQ_EQ2] = ACTIONS(1492), - [anon_sym_BANG_EQ2] = ACTIONS(1492), - [anon_sym_LT2] = ACTIONS(1490), - [anon_sym_LT_EQ2] = ACTIONS(1492), - [anon_sym_GT_EQ2] = ACTIONS(1492), - [anon_sym_EQ_TILDE2] = ACTIONS(1492), - [anon_sym_BANG_TILDE2] = ACTIONS(1492), - [anon_sym_like2] = ACTIONS(1492), - [anon_sym_not_DASHlike2] = ACTIONS(1492), - [anon_sym_STAR_STAR2] = ACTIONS(1492), - [anon_sym_PLUS_PLUS2] = ACTIONS(1492), - [anon_sym_SLASH2] = ACTIONS(1490), - [anon_sym_mod2] = ACTIONS(1492), - [anon_sym_SLASH_SLASH2] = ACTIONS(1492), - [anon_sym_PLUS2] = ACTIONS(1490), - [anon_sym_bit_DASHshl2] = ACTIONS(1492), - [anon_sym_bit_DASHshr2] = ACTIONS(1492), - [anon_sym_bit_DASHand2] = ACTIONS(1492), - [anon_sym_bit_DASHxor2] = ACTIONS(1492), - [anon_sym_bit_DASHor2] = ACTIONS(1492), - [anon_sym_DOT_DOT2] = ACTIONS(1490), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1492), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1492), - [anon_sym_DOT2] = ACTIONS(1852), - [anon_sym_err_GT] = ACTIONS(1490), - [anon_sym_out_GT] = ACTIONS(1490), - [anon_sym_e_GT] = ACTIONS(1490), - [anon_sym_o_GT] = ACTIONS(1490), - [anon_sym_err_PLUSout_GT] = ACTIONS(1490), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1490), - [anon_sym_o_PLUSe_GT] = ACTIONS(1490), - [anon_sym_e_PLUSo_GT] = ACTIONS(1490), - [anon_sym_err_GT_GT] = ACTIONS(1492), - [anon_sym_out_GT_GT] = ACTIONS(1492), - [anon_sym_e_GT_GT] = ACTIONS(1492), - [anon_sym_o_GT_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(548)] = { - [sym_expr_parenthesized] = STATE(4058), - [sym__spread_parenthesized] = STATE(4700), - [sym_val_range] = STATE(4730), - [sym__val_range] = STATE(4544), - [sym__value] = STATE(4730), - [sym_val_nothing] = STATE(4604), - [sym_val_bool] = STATE(4358), - [sym__spread_variable] = STATE(4795), - [sym_val_variable] = STATE(3879), - [sym_val_cellpath] = STATE(4604), - [sym_val_number] = STATE(4604), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(4361), - [sym_val_duration] = STATE(4604), - [sym_val_filesize] = STATE(4604), - [sym_val_binary] = STATE(4604), - [sym_val_string] = STATE(4604), - [sym__raw_str] = STATE(3638), - [sym__str_double_quotes] = STATE(3638), - [sym__str_single_quotes] = STATE(3638), - [sym__str_back_ticks] = STATE(3638), - [sym_val_interpolated] = STATE(4604), - [sym__inter_single_quotes] = STATE(4595), + [sym_expr_parenthesized] = STATE(3968), + [sym__spread_parenthesized] = STATE(4806), + [sym_val_range] = STATE(4813), + [sym__val_range] = STATE(4531), + [sym__value] = STATE(4813), + [sym_val_nothing] = STATE(4601), + [sym_val_bool] = STATE(4359), + [sym__spread_variable] = STATE(4732), + [sym_val_variable] = STATE(3828), + [sym_val_cellpath] = STATE(4601), + [sym_val_number] = STATE(4601), + [sym__val_number_decimal] = STATE(3486), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4601), + [sym_val_filesize] = STATE(4601), + [sym_val_binary] = STATE(4601), + [sym_val_string] = STATE(4601), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_interpolated] = STATE(4601), + [sym__inter_single_quotes] = STATE(4592), [sym__inter_double_quotes] = STATE(4596), - [sym_val_list] = STATE(4604), - [sym__spread_list] = STATE(4700), - [sym_val_entry] = STATE(4426), - [sym_val_record] = STATE(4604), - [sym_val_table] = STATE(4604), - [sym_val_closure] = STATE(4604), + [sym_val_list] = STATE(4601), + [sym__spread_list] = STATE(4806), + [sym_val_entry] = STATE(4409), + [sym_val_record] = STATE(4601), + [sym_val_table] = STATE(4601), + [sym_val_closure] = STATE(4601), [sym__unquoted_in_list] = STATE(4171), - [sym__unquoted_in_list_with_expr] = STATE(4730), - [sym__unquoted_anonymous_prefix] = STATE(4544), - [sym_comment] = STATE(548), - [aux_sym_list_body_repeat1] = STATE(668), + [sym__unquoted_in_list_with_expr] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(4531), + [sym_comment] = STATE(546), + [aux_sym_list_body_repeat1] = STATE(530), [anon_sym_true] = ACTIONS(1462), [anon_sym_false] = ACTIONS(1462), [anon_sym_null] = ACTIONS(1464), @@ -89914,141 +89805,285 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1426), }, + [STATE(547)] = { + [aux_sym__repeat_newline] = STATE(560), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1982), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(866), + [sym__unquoted_with_expr] = STATE(1106), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(547), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2032), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2042), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(548)] = { + [aux_sym__repeat_newline] = STATE(561), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1983), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(868), + [sym__unquoted_with_expr] = STATE(1108), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(548), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2032), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2042), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, [STATE(549)] = { - [sym_cmd_identifier] = STATE(4341), - [sym_expr_parenthesized] = STATE(5062), - [sym__spread_parenthesized] = STATE(4693), - [sym__spread_variable] = STATE(4695), - [sym_val_variable] = STATE(4141), - [sym_val_number] = STATE(5062), - [sym__val_number_decimal] = STATE(1952), - [sym__val_number] = STATE(676), - [sym_val_string] = STATE(5062), - [sym__raw_str] = STATE(2243), - [sym__str_double_quotes] = STATE(2243), - [sym__str_single_quotes] = STATE(2243), - [sym__str_back_ticks] = STATE(2243), - [sym_val_interpolated] = STATE(5062), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym__spread_record] = STATE(4693), - [sym_record_entry] = STATE(4457), - [sym__record_key] = STATE(5228), + [aux_sym__repeat_newline] = STATE(562), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1984), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(870), + [sym__unquoted_with_expr] = STATE(1109), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(549), - [aux_sym__types_body_repeat1] = STATE(1500), - [aux_sym__match_pattern_record_body_repeat1] = STATE(821), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [sym__newline] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2032), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2042), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(550)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1138), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(866), - [sym__unquoted_with_expr] = STATE(1074), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(563), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1985), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(872), + [sym__unquoted_with_expr] = STATE(1111), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(550), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -90059,68 +90094,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(551)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1156), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(867), - [sym__unquoted_with_expr] = STATE(1076), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(564), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1986), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(873), + [sym__unquoted_with_expr] = STATE(1113), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(551), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -90131,68 +90166,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(552)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1161), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(868), - [sym__unquoted_with_expr] = STATE(1078), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(565), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1987), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(875), + [sym__unquoted_with_expr] = STATE(1115), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(552), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -90203,68 +90238,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(553)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1166), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(869), - [sym__unquoted_with_expr] = STATE(1081), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(566), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1988), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(877), + [sym__unquoted_with_expr] = STATE(1117), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(553), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -90275,68 +90310,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(554)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1171), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(870), - [sym__unquoted_with_expr] = STATE(1084), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(567), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1989), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(879), + [sym__unquoted_with_expr] = STATE(1119), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(554), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -90347,68 +90382,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(555)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1176), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(884), - [sym__unquoted_with_expr] = STATE(1094), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(568), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1121), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(880), + [sym__unquoted_with_expr] = STATE(1122), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(555), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -90419,68 +90454,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(556)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1194), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(885), - [sym__unquoted_with_expr] = STATE(1097), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(569), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1990), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(882), + [sym__unquoted_with_expr] = STATE(1123), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(556), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -90491,68 +90526,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(557)] = { - [aux_sym__repeat_newline] = STATE(571), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(2076), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(723), - [sym__unquoted_with_expr] = STATE(973), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(570), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1991), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(712), + [sym__unquoted_with_expr] = STATE(1124), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(557), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -90563,68 +90598,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(558)] = { - [aux_sym__repeat_newline] = STATE(572), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(2077), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(724), - [sym__unquoted_with_expr] = STATE(985), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(571), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1992), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(886), + [sym__unquoted_with_expr] = STATE(1126), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(558), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -90635,68 +90670,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(559)] = { - [aux_sym__repeat_newline] = STATE(573), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(2079), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(725), - [sym__unquoted_with_expr] = STATE(1016), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(572), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1994), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(888), + [sym__unquoted_with_expr] = STATE(1127), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(559), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -90707,68 +90742,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(560)] = { - [aux_sym__repeat_newline] = STATE(574), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(2080), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(728), - [sym__unquoted_with_expr] = STATE(1066), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1997), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(788), + [sym__unquoted_with_expr] = STATE(1112), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(560), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -90779,68 +90814,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(561)] = { - [aux_sym__repeat_newline] = STATE(575), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(2083), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(730), - [sym__unquoted_with_expr] = STATE(1096), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1999), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(792), + [sym__unquoted_with_expr] = STATE(1118), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(561), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -90851,68 +90886,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(562)] = { - [aux_sym__repeat_newline] = STATE(576), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(2088), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(732), - [sym__unquoted_with_expr] = STATE(1113), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2001), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(796), + [sym__unquoted_with_expr] = STATE(996), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(562), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -90923,68 +90958,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(563)] = { - [aux_sym__repeat_newline] = STATE(577), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(2089), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(734), - [sym__unquoted_with_expr] = STATE(967), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2003), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(894), + [sym__unquoted_with_expr] = STATE(1011), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(563), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -90995,68 +91030,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(564)] = { - [aux_sym__repeat_newline] = STATE(578), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(2098), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(737), - [sym__unquoted_with_expr] = STATE(972), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2005), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(800), + [sym__unquoted_with_expr] = STATE(1031), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(564), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -91067,68 +91102,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(565)] = { - [aux_sym__repeat_newline] = STATE(670), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(979), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(739), - [sym__unquoted_with_expr] = STATE(981), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2007), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(802), + [sym__unquoted_with_expr] = STATE(1067), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(565), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -91139,68 +91174,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(566)] = { - [aux_sym__repeat_newline] = STATE(580), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(2100), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(741), - [sym__unquoted_with_expr] = STATE(983), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2009), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(817), + [sym__unquoted_with_expr] = STATE(1074), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(566), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -91211,68 +91246,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(567)] = { - [aux_sym__repeat_newline] = STATE(581), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(2101), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(743), - [sym__unquoted_with_expr] = STATE(998), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2011), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(819), + [sym__unquoted_with_expr] = STATE(1076), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(567), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -91283,68 +91318,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(568)] = { - [aux_sym__repeat_newline] = STATE(582), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(2102), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(745), - [sym__unquoted_with_expr] = STATE(1013), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1078), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(821), + [sym__unquoted_with_expr] = STATE(1080), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(568), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -91355,68 +91390,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(569)] = { - [aux_sym__repeat_newline] = STATE(583), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(2103), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(747), - [sym__unquoted_with_expr] = STATE(1018), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2013), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(824), + [sym__unquoted_with_expr] = STATE(1084), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(569), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -91427,68 +91462,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(570)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1199), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(886), - [sym__unquoted_with_expr] = STATE(1099), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2015), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(828), + [sym__unquoted_with_expr] = STATE(1087), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(570), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -91499,68 +91534,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(571)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1967), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(763), - [sym__unquoted_with_expr] = STATE(986), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2017), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(740), + [sym__unquoted_with_expr] = STATE(1089), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(571), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -91571,68 +91606,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(572)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1969), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(764), - [sym__unquoted_with_expr] = STATE(989), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2019), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(743), + [sym__unquoted_with_expr] = STATE(1090), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(572), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -91643,68 +91678,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(573)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1971), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(765), - [sym__unquoted_with_expr] = STATE(994), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(586), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2021), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(752), + [sym__unquoted_with_expr] = STATE(1093), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(573), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -91715,68 +91750,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(574)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1973), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(767), - [sym__unquoted_with_expr] = STATE(1003), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(587), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2022), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(769), + [sym__unquoted_with_expr] = STATE(1097), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(574), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -91787,68 +91822,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(575)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1975), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(768), - [sym__unquoted_with_expr] = STATE(1008), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(588), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2023), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(771), + [sym__unquoted_with_expr] = STATE(1098), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(575), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -91859,68 +91894,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(576)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1977), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(770), - [sym__unquoted_with_expr] = STATE(1019), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(589), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2024), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(774), + [sym__unquoted_with_expr] = STATE(1099), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(576), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -91931,68 +91966,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(577)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1979), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(772), - [sym__unquoted_with_expr] = STATE(1022), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(590), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2025), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(791), + [sym__unquoted_with_expr] = STATE(1100), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(577), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -92003,68 +92038,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(578)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1981), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(773), - [sym__unquoted_with_expr] = STATE(1024), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(519), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1227), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(799), + [sym__unquoted_with_expr] = STATE(1103), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(578), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -92075,68 +92110,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(579)] = { - [aux_sym__repeat_newline] = STATE(519), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1183), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(724), - [sym__unquoted_with_expr] = STATE(985), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(592), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2027), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(797), + [sym__unquoted_with_expr] = STATE(1102), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(579), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -92147,68 +92182,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(580)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1983), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(775), - [sym__unquoted_with_expr] = STATE(1048), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(593), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2028), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(799), + [sym__unquoted_with_expr] = STATE(1103), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(580), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -92219,68 +92254,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(581)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1985), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(776), - [sym__unquoted_with_expr] = STATE(1055), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(594), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1104), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(801), + [sym__unquoted_with_expr] = STATE(1105), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(581), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -92291,68 +92326,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(582)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1987), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(777), - [sym__unquoted_with_expr] = STATE(1061), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(595), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2029), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(816), + [sym__unquoted_with_expr] = STATE(1107), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(582), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -92363,68 +92398,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(583)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1989), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(778), - [sym__unquoted_with_expr] = STATE(1062), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(596), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2030), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(818), + [sym__unquoted_with_expr] = STATE(1110), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(583), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -92435,68 +92470,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(584)] = { - [aux_sym__repeat_newline] = STATE(598), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1991), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(779), - [sym__unquoted_with_expr] = STATE(1067), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(597), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2031), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(820), + [sym__unquoted_with_expr] = STATE(1114), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(584), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -92507,68 +92542,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(585)] = { - [aux_sym__repeat_newline] = STATE(599), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1992), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(780), - [sym__unquoted_with_expr] = STATE(1071), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(598), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2032), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(823), + [sym__unquoted_with_expr] = STATE(1120), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(585), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -92579,68 +92614,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(586)] = { - [aux_sym__repeat_newline] = STATE(600), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1993), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(781), - [sym__unquoted_with_expr] = STATE(1080), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2045), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(721), + [sym__unquoted_with_expr] = STATE(984), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(586), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -92651,68 +92686,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(587)] = { - [aux_sym__repeat_newline] = STATE(601), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1994), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(782), - [sym__unquoted_with_expr] = STATE(1087), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2047), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(722), + [sym__unquoted_with_expr] = STATE(997), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(587), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -92723,68 +92758,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(588)] = { - [aux_sym__repeat_newline] = STATE(602), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1995), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(783), - [sym__unquoted_with_expr] = STATE(1090), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2049), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(723), + [sym__unquoted_with_expr] = STATE(1000), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(588), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -92795,68 +92830,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(589)] = { - [aux_sym__repeat_newline] = STATE(603), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1997), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(784), - [sym__unquoted_with_expr] = STATE(1092), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2051), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(724), + [sym__unquoted_with_expr] = STATE(1003), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(589), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -92867,68 +92902,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(590)] = { - [aux_sym__repeat_newline] = STATE(604), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1999), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(800), - [sym__unquoted_with_expr] = STATE(977), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2053), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(728), + [sym__unquoted_with_expr] = STATE(1006), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(590), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -92939,68 +92974,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(591)] = { - [aux_sym__repeat_newline] = STATE(605), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(2001), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(801), - [sym__unquoted_with_expr] = STATE(992), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2055), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(729), + [sym__unquoted_with_expr] = STATE(1009), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(591), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -93011,68 +93046,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(592)] = { - [aux_sym__repeat_newline] = STATE(606), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(993), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(810), - [sym__unquoted_with_expr] = STATE(995), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2057), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(731), + [sym__unquoted_with_expr] = STATE(1013), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(592), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -93083,68 +93118,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(593)] = { - [aux_sym__repeat_newline] = STATE(607), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(2004), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(814), - [sym__unquoted_with_expr] = STATE(1007), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2059), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(732), + [sym__unquoted_with_expr] = STATE(1017), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(593), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -93155,68 +93190,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(594)] = { - [aux_sym__repeat_newline] = STATE(608), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(2005), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(816), - [sym__unquoted_with_expr] = STATE(1009), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1019), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(733), + [sym__unquoted_with_expr] = STATE(1021), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(594), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -93227,68 +93262,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(595)] = { - [aux_sym__repeat_newline] = STATE(609), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(2007), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(817), - [sym__unquoted_with_expr] = STATE(1011), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2061), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(734), + [sym__unquoted_with_expr] = STATE(1024), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(595), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -93299,68 +93334,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(596)] = { - [aux_sym__repeat_newline] = STATE(610), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(2009), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(819), - [sym__unquoted_with_expr] = STATE(1012), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2063), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(735), + [sym__unquoted_with_expr] = STATE(1029), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(596), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -93371,68 +93406,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(597)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1101), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(887), - [sym__unquoted_with_expr] = STATE(1102), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2065), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(736), + [sym__unquoted_with_expr] = STATE(1032), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(597), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -93443,68 +93478,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(598)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(2024), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(866), - [sym__unquoted_with_expr] = STATE(1074), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2067), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(737), + [sym__unquoted_with_expr] = STATE(1045), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(598), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -93515,68 +93550,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(599)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(2026), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(867), - [sym__unquoted_with_expr] = STATE(1076), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(612), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1562), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(866), + [sym__unquoted_with_expr] = STATE(1106), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(599), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -93587,68 +93622,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(600)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(2028), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), + [aux_sym__repeat_newline] = STATE(613), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1563), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), [sym_unquoted] = STATE(868), - [sym__unquoted_with_expr] = STATE(1078), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym__unquoted_with_expr] = STATE(1108), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(600), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -93659,68 +93694,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(601)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(2030), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(869), - [sym__unquoted_with_expr] = STATE(1081), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(614), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1564), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(870), + [sym__unquoted_with_expr] = STATE(1109), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(601), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -93731,68 +93766,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(602)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(2032), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(870), - [sym__unquoted_with_expr] = STATE(1084), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(615), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1565), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(872), + [sym__unquoted_with_expr] = STATE(1111), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(602), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -93803,68 +93838,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(603)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(2034), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(884), - [sym__unquoted_with_expr] = STATE(1094), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(616), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1566), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(873), + [sym__unquoted_with_expr] = STATE(1113), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(603), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -93875,68 +93910,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(604)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1966), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(885), - [sym__unquoted_with_expr] = STATE(1097), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(617), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1567), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(875), + [sym__unquoted_with_expr] = STATE(1115), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(604), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -93947,68 +93982,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(605)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(2038), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(886), - [sym__unquoted_with_expr] = STATE(1099), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(618), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1568), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(877), + [sym__unquoted_with_expr] = STATE(1117), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(605), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -94019,68 +94054,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(606)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1101), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(887), - [sym__unquoted_with_expr] = STATE(1102), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(619), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1569), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(879), + [sym__unquoted_with_expr] = STATE(1119), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(606), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -94091,68 +94126,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(607)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(2040), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(888), - [sym__unquoted_with_expr] = STATE(1105), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(620), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1121), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(880), + [sym__unquoted_with_expr] = STATE(1122), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(607), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -94163,68 +94198,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(608)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(2042), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(889), - [sym__unquoted_with_expr] = STATE(1108), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(621), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1570), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(882), + [sym__unquoted_with_expr] = STATE(1123), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(608), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -94235,68 +94270,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(609)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(2044), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(890), - [sym__unquoted_with_expr] = STATE(1111), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(622), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1571), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(712), + [sym__unquoted_with_expr] = STATE(1124), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(609), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -94307,68 +94342,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(610)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(2046), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(891), - [sym__unquoted_with_expr] = STATE(1114), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(623), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1572), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(886), + [sym__unquoted_with_expr] = STATE(1126), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(610), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -94379,68 +94414,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(611)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1209), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), + [aux_sym__repeat_newline] = STATE(624), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1573), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), [sym_unquoted] = STATE(888), - [sym__unquoted_with_expr] = STATE(1105), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym__unquoted_with_expr] = STATE(1127), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(611), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -94451,68 +94486,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(612)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1214), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(889), - [sym__unquoted_with_expr] = STATE(1108), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1575), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(788), + [sym__unquoted_with_expr] = STATE(1112), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(612), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -94523,68 +94558,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(613)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1219), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(890), - [sym__unquoted_with_expr] = STATE(1111), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1577), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(792), + [sym__unquoted_with_expr] = STATE(1118), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(613), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -94595,68 +94630,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(614)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1224), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(891), - [sym__unquoted_with_expr] = STATE(1114), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1579), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(796), + [sym__unquoted_with_expr] = STATE(996), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(614), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -94667,140 +94702,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(615)] = { - [sym_cmd_identifier] = STATE(4341), - [sym_expr_parenthesized] = STATE(5062), - [sym__spread_parenthesized] = STATE(4693), - [sym__spread_variable] = STATE(4695), - [sym_val_variable] = STATE(5062), - [sym_val_number] = STATE(5062), - [sym__val_number_decimal] = STATE(1952), - [sym__val_number] = STATE(676), - [sym_val_string] = STATE(5062), - [sym__raw_str] = STATE(2243), - [sym__str_double_quotes] = STATE(2243), - [sym__str_single_quotes] = STATE(2243), - [sym__str_back_ticks] = STATE(2243), - [sym_val_interpolated] = STATE(5062), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym__spread_record] = STATE(4693), - [sym_record_entry] = STATE(4647), - [sym__record_key] = STATE(5228), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1581), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(894), + [sym__unquoted_with_expr] = STATE(1011), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(615), - [aux_sym__types_body_repeat1] = STATE(1500), - [aux_sym_record_body_repeat1] = STATE(721), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [sym__newline] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [sym__newline] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2060), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(616)] = { - [aux_sym__repeat_newline] = STATE(628), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1675), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(723), - [sym__unquoted_with_expr] = STATE(973), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1583), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(800), + [sym__unquoted_with_expr] = STATE(1031), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(616), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -94811,68 +94846,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(617)] = { - [aux_sym__repeat_newline] = STATE(629), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1600), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(724), - [sym__unquoted_with_expr] = STATE(985), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1585), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(802), + [sym__unquoted_with_expr] = STATE(1067), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(617), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -94883,68 +94918,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(618)] = { - [aux_sym__repeat_newline] = STATE(630), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1614), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(725), - [sym__unquoted_with_expr] = STATE(1016), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1587), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(817), + [sym__unquoted_with_expr] = STATE(1074), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(618), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -94955,68 +94990,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(619)] = { - [aux_sym__repeat_newline] = STATE(631), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1531), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(728), - [sym__unquoted_with_expr] = STATE(1066), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1589), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(819), + [sym__unquoted_with_expr] = STATE(1076), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(619), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -95027,68 +95062,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(620)] = { - [aux_sym__repeat_newline] = STATE(632), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1520), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(730), - [sym__unquoted_with_expr] = STATE(1096), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1078), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(821), + [sym__unquoted_with_expr] = STATE(1080), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(620), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -95099,68 +95134,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(621)] = { - [aux_sym__repeat_newline] = STATE(633), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1538), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(732), - [sym__unquoted_with_expr] = STATE(1113), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1508), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(824), + [sym__unquoted_with_expr] = STATE(1084), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(621), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -95171,68 +95206,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(622)] = { - [aux_sym__repeat_newline] = STATE(634), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1542), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(734), - [sym__unquoted_with_expr] = STATE(967), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1592), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(828), + [sym__unquoted_with_expr] = STATE(1087), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(622), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -95243,68 +95278,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(623)] = { - [aux_sym__repeat_newline] = STATE(635), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1596), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(737), - [sym__unquoted_with_expr] = STATE(972), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1594), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(740), + [sym__unquoted_with_expr] = STATE(1089), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(623), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -95315,68 +95350,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(624)] = { - [aux_sym__repeat_newline] = STATE(636), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(979), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(739), - [sym__unquoted_with_expr] = STATE(981), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1596), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(743), + [sym__unquoted_with_expr] = STATE(1090), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(624), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -95387,68 +95422,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(625)] = { - [aux_sym__repeat_newline] = STATE(637), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), + [aux_sym__repeat_newline] = STATE(638), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), [sym__expr_binary_expression_parenthesized] = STATE(1598), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(741), - [sym__unquoted_with_expr] = STATE(983), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(752), + [sym__unquoted_with_expr] = STATE(1093), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(625), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -95459,68 +95494,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(626)] = { - [aux_sym__repeat_newline] = STATE(638), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1613), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(743), - [sym__unquoted_with_expr] = STATE(998), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(639), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1599), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(769), + [sym__unquoted_with_expr] = STATE(1097), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(626), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -95532,67 +95567,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(627)] = { [aux_sym__repeat_newline] = STATE(640), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1522), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(747), - [sym__unquoted_with_expr] = STATE(1018), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1600), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(771), + [sym__unquoted_with_expr] = STATE(1098), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(627), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -95603,68 +95638,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(628)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1629), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(763), - [sym__unquoted_with_expr] = STATE(986), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(641), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1601), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(774), + [sym__unquoted_with_expr] = STATE(1099), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(628), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -95675,68 +95710,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(629)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1637), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(764), - [sym__unquoted_with_expr] = STATE(989), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(642), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1602), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(791), + [sym__unquoted_with_expr] = STATE(1100), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(629), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -95747,68 +95782,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(630)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1639), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(765), - [sym__unquoted_with_expr] = STATE(994), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(643), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1603), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(795), + [sym__unquoted_with_expr] = STATE(1101), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(630), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -95819,68 +95854,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(631)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1641), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(767), - [sym__unquoted_with_expr] = STATE(1003), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(644), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1604), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(797), + [sym__unquoted_with_expr] = STATE(1102), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(631), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -95891,68 +95926,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(632)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1652), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(768), - [sym__unquoted_with_expr] = STATE(1008), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(645), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1605), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(799), + [sym__unquoted_with_expr] = STATE(1103), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(632), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -95963,68 +95998,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(633)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1660), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(770), - [sym__unquoted_with_expr] = STATE(1019), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(646), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1104), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(801), + [sym__unquoted_with_expr] = STATE(1105), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(633), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -96035,68 +96070,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(634)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1662), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(772), - [sym__unquoted_with_expr] = STATE(1022), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(647), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1606), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(816), + [sym__unquoted_with_expr] = STATE(1107), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(634), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -96107,68 +96142,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(635)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1667), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(773), - [sym__unquoted_with_expr] = STATE(1024), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(648), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1607), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(818), + [sym__unquoted_with_expr] = STATE(1110), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(635), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -96179,68 +96214,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(636)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1026), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(774), - [sym__unquoted_with_expr] = STATE(1044), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(649), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1608), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(820), + [sym__unquoted_with_expr] = STATE(1114), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(636), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -96251,68 +96286,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(637)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1509), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(775), - [sym__unquoted_with_expr] = STATE(1048), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(650), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1609), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(823), + [sym__unquoted_with_expr] = STATE(1120), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(637), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -96323,68 +96358,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(638)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1511), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(776), - [sym__unquoted_with_expr] = STATE(1055), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1622), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(721), + [sym__unquoted_with_expr] = STATE(984), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(638), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -96395,68 +96430,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(639)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1513), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(777), - [sym__unquoted_with_expr] = STATE(1061), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1624), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(722), + [sym__unquoted_with_expr] = STATE(997), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(639), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -96467,68 +96502,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(640)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1515), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(778), - [sym__unquoted_with_expr] = STATE(1062), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1626), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(723), + [sym__unquoted_with_expr] = STATE(1000), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(640), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -96539,68 +96574,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(641)] = { - [aux_sym__repeat_newline] = STATE(654), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1518), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(779), - [sym__unquoted_with_expr] = STATE(1067), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1628), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(724), + [sym__unquoted_with_expr] = STATE(1003), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(641), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -96611,68 +96646,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(642)] = { - [aux_sym__repeat_newline] = STATE(655), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1519), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(780), - [sym__unquoted_with_expr] = STATE(1071), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1630), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(728), + [sym__unquoted_with_expr] = STATE(1006), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(642), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -96683,68 +96718,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(643)] = { - [aux_sym__repeat_newline] = STATE(656), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1521), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(781), - [sym__unquoted_with_expr] = STATE(1080), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1632), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(729), + [sym__unquoted_with_expr] = STATE(1009), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(643), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -96755,68 +96790,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(644)] = { - [aux_sym__repeat_newline] = STATE(657), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1523), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(782), - [sym__unquoted_with_expr] = STATE(1087), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1634), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(731), + [sym__unquoted_with_expr] = STATE(1013), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(644), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -96827,68 +96862,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(645)] = { - [aux_sym__repeat_newline] = STATE(658), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1525), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(783), - [sym__unquoted_with_expr] = STATE(1090), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1636), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(732), + [sym__unquoted_with_expr] = STATE(1017), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(645), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -96899,68 +96934,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(646)] = { - [aux_sym__repeat_newline] = STATE(659), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1527), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(784), - [sym__unquoted_with_expr] = STATE(1092), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1019), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(733), + [sym__unquoted_with_expr] = STATE(1021), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(646), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -96971,68 +97006,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(647)] = { - [aux_sym__repeat_newline] = STATE(660), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1529), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(800), - [sym__unquoted_with_expr] = STATE(977), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1638), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(734), + [sym__unquoted_with_expr] = STATE(1024), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(647), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -97043,68 +97078,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(648)] = { - [aux_sym__repeat_newline] = STATE(661), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1530), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(801), - [sym__unquoted_with_expr] = STATE(992), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1640), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(735), + [sym__unquoted_with_expr] = STATE(1029), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(648), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -97115,68 +97150,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(649)] = { - [aux_sym__repeat_newline] = STATE(662), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(993), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(810), - [sym__unquoted_with_expr] = STATE(995), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1642), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(736), + [sym__unquoted_with_expr] = STATE(1032), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(649), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -97187,68 +97222,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(650)] = { - [aux_sym__repeat_newline] = STATE(663), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1533), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(814), - [sym__unquoted_with_expr] = STATE(1007), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1644), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(737), + [sym__unquoted_with_expr] = STATE(1045), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(650), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(2050), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2060), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -97259,40 +97294,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(651)] = { - [aux_sym__repeat_newline] = STATE(664), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1535), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(816), - [sym__unquoted_with_expr] = STATE(1009), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1237), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(788), + [sym__unquoted_with_expr] = STATE(1112), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(651), [anon_sym_true] = ACTIONS(1892), [anon_sym_false] = ACTIONS(1892), @@ -97303,7 +97338,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(1900), @@ -97331,40 +97366,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(652)] = { - [aux_sym__repeat_newline] = STATE(665), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1537), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(817), - [sym__unquoted_with_expr] = STATE(1011), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1249), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(792), + [sym__unquoted_with_expr] = STATE(1118), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(652), [anon_sym_true] = ACTIONS(1892), [anon_sym_false] = ACTIONS(1892), @@ -97375,7 +97410,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(1900), @@ -97403,40 +97438,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(653)] = { - [aux_sym__repeat_newline] = STATE(666), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1539), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(819), - [sym__unquoted_with_expr] = STATE(1012), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1137), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(796), + [sym__unquoted_with_expr] = STATE(996), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(653), [anon_sym_true] = ACTIONS(1892), [anon_sym_false] = ACTIONS(1892), @@ -97447,7 +97482,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(1900), @@ -97475,40 +97510,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(654)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1556), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(866), - [sym__unquoted_with_expr] = STATE(1074), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1189), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(894), + [sym__unquoted_with_expr] = STATE(1011), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(654), [anon_sym_true] = ACTIONS(1892), [anon_sym_false] = ACTIONS(1892), @@ -97519,7 +97554,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(1900), @@ -97547,40 +97582,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(655)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1558), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(867), - [sym__unquoted_with_expr] = STATE(1076), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1251), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(800), + [sym__unquoted_with_expr] = STATE(1031), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(655), [anon_sym_true] = ACTIONS(1892), [anon_sym_false] = ACTIONS(1892), @@ -97591,7 +97626,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(1900), @@ -97619,40 +97654,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(656)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1560), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(868), - [sym__unquoted_with_expr] = STATE(1078), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1175), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(802), + [sym__unquoted_with_expr] = STATE(1067), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(656), [anon_sym_true] = ACTIONS(1892), [anon_sym_false] = ACTIONS(1892), @@ -97663,7 +97698,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(1900), @@ -97691,40 +97726,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(657)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1562), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(869), - [sym__unquoted_with_expr] = STATE(1081), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1182), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(817), + [sym__unquoted_with_expr] = STATE(1074), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(657), [anon_sym_true] = ACTIONS(1892), [anon_sym_false] = ACTIONS(1892), @@ -97735,7 +97770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(1900), @@ -97763,40 +97798,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(658)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1564), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(870), - [sym__unquoted_with_expr] = STATE(1084), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1188), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(819), + [sym__unquoted_with_expr] = STATE(1076), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(658), [anon_sym_true] = ACTIONS(1892), [anon_sym_false] = ACTIONS(1892), @@ -97807,7 +97842,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(1900), @@ -97835,40 +97870,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(659)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1566), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(884), - [sym__unquoted_with_expr] = STATE(1094), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1078), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(821), + [sym__unquoted_with_expr] = STATE(1080), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(659), [anon_sym_true] = ACTIONS(1892), [anon_sym_false] = ACTIONS(1892), @@ -97879,7 +97914,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(1900), @@ -97907,40 +97942,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(660)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1568), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(885), - [sym__unquoted_with_expr] = STATE(1097), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1196), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(824), + [sym__unquoted_with_expr] = STATE(1084), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(660), [anon_sym_true] = ACTIONS(1892), [anon_sym_false] = ACTIONS(1892), @@ -97951,7 +97986,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(1900), @@ -97979,40 +98014,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(661)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1570), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(886), - [sym__unquoted_with_expr] = STATE(1099), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1199), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(828), + [sym__unquoted_with_expr] = STATE(1087), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(661), [anon_sym_true] = ACTIONS(1892), [anon_sym_false] = ACTIONS(1892), @@ -98023,7 +98058,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(1900), @@ -98051,40 +98086,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(662)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1101), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(887), + [aux_sym__repeat_newline] = STATE(518), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1226), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(797), [sym__unquoted_with_expr] = STATE(1102), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(662), [anon_sym_true] = ACTIONS(1892), [anon_sym_false] = ACTIONS(1892), @@ -98095,7 +98130,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(1900), @@ -98123,40 +98158,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(663)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1572), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(888), - [sym__unquoted_with_expr] = STATE(1105), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1261), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(740), + [sym__unquoted_with_expr] = STATE(1089), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(663), [anon_sym_true] = ACTIONS(1892), [anon_sym_false] = ACTIONS(1892), @@ -98167,7 +98202,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(1900), @@ -98195,40 +98230,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(664)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1574), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(889), - [sym__unquoted_with_expr] = STATE(1108), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(2137), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1205), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(743), + [sym__unquoted_with_expr] = STATE(1090), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(664), [anon_sym_true] = ACTIONS(1892), [anon_sym_false] = ACTIONS(1892), @@ -98239,7 +98274,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(1900), @@ -98267,40 +98302,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(665)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1576), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(890), - [sym__unquoted_with_expr] = STATE(1111), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(512), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1210), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(752), + [sym__unquoted_with_expr] = STATE(1093), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(665), [anon_sym_true] = ACTIONS(1892), [anon_sym_false] = ACTIONS(1892), @@ -98311,7 +98346,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(1900), @@ -98339,40 +98374,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(666)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1578), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(891), - [sym__unquoted_with_expr] = STATE(1114), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(513), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1213), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(769), + [sym__unquoted_with_expr] = STATE(1097), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(666), [anon_sym_true] = ACTIONS(1892), [anon_sym_false] = ACTIONS(1892), @@ -98383,7 +98418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(1900), @@ -98411,212 +98446,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(667)] = { - [sym_expr_parenthesized] = STATE(4058), - [sym__spread_parenthesized] = STATE(4700), - [sym_val_range] = STATE(4730), - [sym__val_range] = STATE(4544), - [sym__value] = STATE(4730), - [sym_val_nothing] = STATE(4604), - [sym_val_bool] = STATE(4358), - [sym__spread_variable] = STATE(4795), - [sym_val_variable] = STATE(3879), - [sym_val_cellpath] = STATE(4604), - [sym_val_number] = STATE(4604), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(4361), - [sym_val_duration] = STATE(4604), - [sym_val_filesize] = STATE(4604), - [sym_val_binary] = STATE(4604), - [sym_val_string] = STATE(4604), - [sym__raw_str] = STATE(3638), - [sym__str_double_quotes] = STATE(3638), - [sym__str_single_quotes] = STATE(3638), - [sym__str_back_ticks] = STATE(3638), - [sym_val_interpolated] = STATE(4604), - [sym__inter_single_quotes] = STATE(4595), - [sym__inter_double_quotes] = STATE(4596), - [sym_val_list] = STATE(4604), - [sym__spread_list] = STATE(4700), - [sym_val_entry] = STATE(4427), - [sym_val_record] = STATE(4604), - [sym_val_table] = STATE(4604), - [sym_val_closure] = STATE(4604), - [sym__unquoted_in_list] = STATE(4171), - [sym__unquoted_in_list_with_expr] = STATE(4730), - [sym__unquoted_anonymous_prefix] = STATE(4544), + [aux_sym__repeat_newline] = STATE(514), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1218), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(771), + [sym__unquoted_with_expr] = STATE(1098), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(667), - [aux_sym_list_body_repeat1] = STATE(668), - [anon_sym_true] = ACTIONS(1462), - [anon_sym_false] = ACTIONS(1462), - [anon_sym_null] = ACTIONS(1464), - [aux_sym_cmd_identifier_token3] = ACTIONS(1466), - [aux_sym_cmd_identifier_token4] = ACTIONS(1466), - [aux_sym_cmd_identifier_token5] = ACTIONS(1466), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), - [anon_sym_DOT_DOT_LT] = ACTIONS(1480), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1482), - [aux_sym__val_number_decimal_token2] = ACTIONS(1484), - [aux_sym__val_number_decimal_token3] = ACTIONS(1486), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(1488), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1418), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1420), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1422), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(668)] = { - [sym_expr_parenthesized] = STATE(4058), - [sym__spread_parenthesized] = STATE(4700), - [sym_val_range] = STATE(4730), - [sym__val_range] = STATE(4544), - [sym__value] = STATE(4730), - [sym_val_nothing] = STATE(4604), - [sym_val_bool] = STATE(4358), - [sym__spread_variable] = STATE(4795), - [sym_val_variable] = STATE(3879), - [sym_val_cellpath] = STATE(4604), - [sym_val_number] = STATE(4604), - [sym__val_number_decimal] = STATE(3485), - [sym__val_number] = STATE(4361), - [sym_val_duration] = STATE(4604), - [sym_val_filesize] = STATE(4604), - [sym_val_binary] = STATE(4604), - [sym_val_string] = STATE(4604), - [sym__raw_str] = STATE(3638), - [sym__str_double_quotes] = STATE(3638), - [sym__str_single_quotes] = STATE(3638), - [sym__str_back_ticks] = STATE(3638), - [sym_val_interpolated] = STATE(4604), - [sym__inter_single_quotes] = STATE(4595), - [sym__inter_double_quotes] = STATE(4596), - [sym_val_list] = STATE(4604), - [sym__spread_list] = STATE(4700), - [sym_val_entry] = STATE(4750), - [sym_val_record] = STATE(4604), - [sym_val_table] = STATE(4604), - [sym_val_closure] = STATE(4604), - [sym__unquoted_in_list] = STATE(4171), - [sym__unquoted_in_list_with_expr] = STATE(4730), - [sym__unquoted_anonymous_prefix] = STATE(4544), + [aux_sym__repeat_newline] = STATE(515), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1220), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(774), + [sym__unquoted_with_expr] = STATE(1099), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(668), - [aux_sym_list_body_repeat1] = STATE(668), - [anon_sym_true] = ACTIONS(1984), - [anon_sym_false] = ACTIONS(1984), - [anon_sym_null] = ACTIONS(1987), - [aux_sym_cmd_identifier_token3] = ACTIONS(1990), - [aux_sym_cmd_identifier_token4] = ACTIONS(1990), - [aux_sym_cmd_identifier_token5] = ACTIONS(1990), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_LPAREN] = ACTIONS(1996), - [anon_sym_DOLLAR] = ACTIONS(1999), - [anon_sym_LBRACE] = ACTIONS(2002), - [anon_sym_DOT_DOT] = ACTIONS(2005), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2008), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2011), - [anon_sym_DOT_DOT_LT] = ACTIONS(2011), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2014), - [aux_sym__val_number_decimal_token1] = ACTIONS(2017), - [aux_sym__val_number_decimal_token2] = ACTIONS(2020), - [aux_sym__val_number_decimal_token3] = ACTIONS(2023), - [aux_sym__val_number_decimal_token4] = ACTIONS(2023), - [aux_sym__val_number_token1] = ACTIONS(2026), - [aux_sym__val_number_token2] = ACTIONS(2026), - [aux_sym__val_number_token3] = ACTIONS(2026), - [anon_sym_0b] = ACTIONS(2029), - [anon_sym_0o] = ACTIONS(2032), - [anon_sym_0x] = ACTIONS(2032), - [sym_val_date] = ACTIONS(2035), - [anon_sym_DQUOTE] = ACTIONS(2038), - [anon_sym_SQUOTE] = ACTIONS(2041), - [anon_sym_BQUOTE] = ACTIONS(2044), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2047), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2053), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2056), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2059), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [sym__newline] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(669)] = { - [aux_sym__repeat_newline] = STATE(518), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1200), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(723), - [sym__unquoted_with_expr] = STATE(973), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(516), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(1222), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(791), + [sym__unquoted_with_expr] = STATE(1100), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(669), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -98627,68 +98662,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(670)] = { - [aux_sym__repeat_newline] = STATE(2156), - [sym_expr_unary] = STATE(1190), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1190), - [sym__expr_binary_expression_parenthesized] = STATE(1026), - [sym_expr_parenthesized] = STATE(722), - [sym_val_range] = STATE(1190), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(1190), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(774), - [sym__unquoted_with_expr] = STATE(1044), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(591), + [sym_expr_unary] = STATE(1229), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1229), + [sym__expr_binary_expression_parenthesized] = STATE(2026), + [sym_expr_parenthesized] = STATE(865), + [sym_val_range] = STATE(1229), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(1229), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(795), + [sym__unquoted_with_expr] = STATE(1101), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(670), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [sym__newline] = ACTIONS(1898), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -98699,8 +98734,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(211), }, [STATE(671)] = { - [sym__expr_parenthesized_immediate] = STATE(4728), [sym_comment] = STATE(671), + [anon_sym_if] = ACTIONS(908), + [anon_sym_in] = ACTIONS(908), + [sym__newline] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_PIPE] = ACTIONS(908), + [anon_sym_err_GT_PIPE] = ACTIONS(908), + [anon_sym_out_GT_PIPE] = ACTIONS(908), + [anon_sym_e_GT_PIPE] = ACTIONS(908), + [anon_sym_o_GT_PIPE] = ACTIONS(908), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(908), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(908), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(908), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(908), + [anon_sym_RPAREN] = ACTIONS(908), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(908), + [anon_sym_RBRACE] = ACTIONS(908), + [anon_sym_EQ_GT] = ACTIONS(908), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(908), + [anon_sym_xor2] = ACTIONS(908), + [anon_sym_or2] = ACTIONS(908), + [anon_sym_not_DASHin2] = ACTIONS(908), + [anon_sym_has2] = ACTIONS(908), + [anon_sym_not_DASHhas2] = ACTIONS(908), + [anon_sym_starts_DASHwith2] = ACTIONS(908), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(908), + [anon_sym_ends_DASHwith2] = ACTIONS(908), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(908), + [anon_sym_EQ_EQ2] = ACTIONS(908), + [anon_sym_BANG_EQ2] = ACTIONS(908), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(908), + [anon_sym_GT_EQ2] = ACTIONS(908), + [anon_sym_EQ_TILDE2] = ACTIONS(908), + [anon_sym_BANG_TILDE2] = ACTIONS(908), + [anon_sym_like2] = ACTIONS(908), + [anon_sym_not_DASHlike2] = ACTIONS(908), + [anon_sym_STAR_STAR2] = ACTIONS(908), + [anon_sym_PLUS_PLUS2] = ACTIONS(908), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(908), + [anon_sym_SLASH_SLASH2] = ACTIONS(908), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(908), + [anon_sym_bit_DASHshr2] = ACTIONS(908), + [anon_sym_bit_DASHand2] = ACTIONS(908), + [anon_sym_bit_DASHxor2] = ACTIONS(908), + [anon_sym_bit_DASHor2] = ACTIONS(908), + [anon_sym_COLON2] = ACTIONS(908), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(908), + [anon_sym_out_GT_GT] = ACTIONS(908), + [anon_sym_e_GT_GT] = ACTIONS(908), + [anon_sym_o_GT_GT] = ACTIONS(908), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(908), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(908), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(908), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(908), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(672)] = { + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(672), [anon_sym_in] = ACTIONS(2062), [sym__newline] = ACTIONS(2062), [anon_sym_SEMI] = ACTIONS(2062), @@ -98739,7 +98845,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2062), [anon_sym_like2] = ACTIONS(2062), [anon_sym_not_DASHlike2] = ACTIONS(2062), - [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_LPAREN2] = ACTIONS(1714), [anon_sym_STAR_STAR2] = ACTIONS(2062), [anon_sym_PLUS_PLUS2] = ACTIONS(2062), [anon_sym_SLASH2] = ACTIONS(2064), @@ -98769,9 +98875,434 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(672)] = { - [sym__expr_parenthesized_immediate] = STATE(5243), - [sym_comment] = STATE(672), + [STATE(673)] = { + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(673), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(674)] = { + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(674), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(675)] = { + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(675), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(676)] = { + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(676), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(677)] = { + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(677), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(678)] = { + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(678), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(679)] = { + [sym_comment] = STATE(679), [anon_sym_in] = ACTIONS(2066), [sym__newline] = ACTIONS(2066), [anon_sym_SEMI] = ACTIONS(2066), @@ -98789,7 +99320,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(2066), [anon_sym_LBRACE] = ACTIONS(2066), [anon_sym_RBRACE] = ACTIONS(2066), - [anon_sym_EQ_GT] = ACTIONS(2066), [anon_sym_STAR2] = ACTIONS(2068), [anon_sym_and2] = ACTIONS(2066), [anon_sym_xor2] = ACTIONS(2066), @@ -98810,7 +99340,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2066), [anon_sym_like2] = ACTIONS(2066), [anon_sym_not_DASHlike2] = ACTIONS(2066), - [anon_sym_LPAREN2] = ACTIONS(1756), [anon_sym_STAR_STAR2] = ACTIONS(2066), [anon_sym_PLUS_PLUS2] = ACTIONS(2066), [anon_sym_SLASH2] = ACTIONS(2068), @@ -98822,6 +99351,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(2066), [anon_sym_bit_DASHxor2] = ACTIONS(2066), [anon_sym_bit_DASHor2] = ACTIONS(2066), + [anon_sym_DOT_DOT2] = ACTIONS(2070), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2072), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2072), [anon_sym_err_GT] = ACTIONS(2068), [anon_sym_out_GT] = ACTIONS(2068), [anon_sym_e_GT] = ACTIONS(2068), @@ -98840,97 +99372,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2066), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(673)] = { - [sym__expr_parenthesized_immediate] = STATE(5243), - [sym_comment] = STATE(673), - [anon_sym_in] = ACTIONS(2070), - [sym__newline] = ACTIONS(2070), - [anon_sym_SEMI] = ACTIONS(2070), - [anon_sym_PIPE] = ACTIONS(2070), - [anon_sym_err_GT_PIPE] = ACTIONS(2070), - [anon_sym_out_GT_PIPE] = ACTIONS(2070), - [anon_sym_e_GT_PIPE] = ACTIONS(2070), - [anon_sym_o_GT_PIPE] = ACTIONS(2070), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2070), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2070), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2070), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2070), - [anon_sym_RPAREN] = ACTIONS(2070), - [anon_sym_GT2] = ACTIONS(2072), - [anon_sym_DASH2] = ACTIONS(2070), - [anon_sym_LBRACE] = ACTIONS(2070), - [anon_sym_RBRACE] = ACTIONS(2070), - [anon_sym_EQ_GT] = ACTIONS(2070), - [anon_sym_STAR2] = ACTIONS(2072), - [anon_sym_and2] = ACTIONS(2070), - [anon_sym_xor2] = ACTIONS(2070), - [anon_sym_or2] = ACTIONS(2070), - [anon_sym_not_DASHin2] = ACTIONS(2070), - [anon_sym_has2] = ACTIONS(2070), - [anon_sym_not_DASHhas2] = ACTIONS(2070), - [anon_sym_starts_DASHwith2] = ACTIONS(2070), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2070), - [anon_sym_ends_DASHwith2] = ACTIONS(2070), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2070), - [anon_sym_EQ_EQ2] = ACTIONS(2070), - [anon_sym_BANG_EQ2] = ACTIONS(2070), - [anon_sym_LT2] = ACTIONS(2072), - [anon_sym_LT_EQ2] = ACTIONS(2070), - [anon_sym_GT_EQ2] = ACTIONS(2070), - [anon_sym_EQ_TILDE2] = ACTIONS(2070), - [anon_sym_BANG_TILDE2] = ACTIONS(2070), - [anon_sym_like2] = ACTIONS(2070), - [anon_sym_not_DASHlike2] = ACTIONS(2070), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2070), - [anon_sym_PLUS_PLUS2] = ACTIONS(2070), - [anon_sym_SLASH2] = ACTIONS(2072), - [anon_sym_mod2] = ACTIONS(2070), - [anon_sym_SLASH_SLASH2] = ACTIONS(2070), - [anon_sym_PLUS2] = ACTIONS(2072), - [anon_sym_bit_DASHshl2] = ACTIONS(2070), - [anon_sym_bit_DASHshr2] = ACTIONS(2070), - [anon_sym_bit_DASHand2] = ACTIONS(2070), - [anon_sym_bit_DASHxor2] = ACTIONS(2070), - [anon_sym_bit_DASHor2] = ACTIONS(2070), - [anon_sym_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(2070), - [anon_sym_out_GT_GT] = ACTIONS(2070), - [anon_sym_e_GT_GT] = ACTIONS(2070), - [anon_sym_o_GT_GT] = ACTIONS(2070), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2070), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2070), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2070), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2070), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(674)] = { - [sym_comment] = STATE(674), + [STATE(680)] = { + [sym_comment] = STATE(680), [anon_sym_in] = ACTIONS(2074), - [sym__newline] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_err_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_GT_PIPE] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2076), - [anon_sym_RPAREN] = ACTIONS(2076), - [anon_sym_GT2] = ACTIONS(2078), + [sym__newline] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_PIPE] = ACTIONS(2074), + [anon_sym_err_GT_PIPE] = ACTIONS(2074), + [anon_sym_out_GT_PIPE] = ACTIONS(2074), + [anon_sym_e_GT_PIPE] = ACTIONS(2074), + [anon_sym_o_GT_PIPE] = ACTIONS(2074), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2074), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2074), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2074), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2074), + [anon_sym_RPAREN] = ACTIONS(2074), + [anon_sym_GT2] = ACTIONS(2076), [anon_sym_DASH2] = ACTIONS(2074), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_RBRACE] = ACTIONS(2076), - [anon_sym_STAR2] = ACTIONS(2078), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_RBRACE] = ACTIONS(2074), + [anon_sym_STAR2] = ACTIONS(2076), [anon_sym_and2] = ACTIONS(2074), [anon_sym_xor2] = ACTIONS(2074), [anon_sym_or2] = ACTIONS(2074), @@ -98943,7 +99404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2074), [anon_sym_EQ_EQ2] = ACTIONS(2074), [anon_sym_BANG_EQ2] = ACTIONS(2074), - [anon_sym_LT2] = ACTIONS(2078), + [anon_sym_LT2] = ACTIONS(2076), [anon_sym_LT_EQ2] = ACTIONS(2074), [anon_sym_GT_EQ2] = ACTIONS(2074), [anon_sym_EQ_TILDE2] = ACTIONS(2074), @@ -98952,323 +99413,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHlike2] = ACTIONS(2074), [anon_sym_STAR_STAR2] = ACTIONS(2074), [anon_sym_PLUS_PLUS2] = ACTIONS(2074), - [anon_sym_SLASH2] = ACTIONS(2078), + [anon_sym_SLASH2] = ACTIONS(2076), [anon_sym_mod2] = ACTIONS(2074), [anon_sym_SLASH_SLASH2] = ACTIONS(2074), - [anon_sym_PLUS2] = ACTIONS(2078), + [anon_sym_PLUS2] = ACTIONS(2076), [anon_sym_bit_DASHshl2] = ACTIONS(2074), [anon_sym_bit_DASHshr2] = ACTIONS(2074), [anon_sym_bit_DASHand2] = ACTIONS(2074), [anon_sym_bit_DASHxor2] = ACTIONS(2074), [anon_sym_bit_DASHor2] = ACTIONS(2074), - [anon_sym_DOT_DOT2] = ACTIONS(1619), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), - [anon_sym_err_GT] = ACTIONS(2080), - [anon_sym_out_GT] = ACTIONS(2080), - [anon_sym_e_GT] = ACTIONS(2080), - [anon_sym_o_GT] = ACTIONS(2080), - [anon_sym_err_PLUSout_GT] = ACTIONS(2080), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2080), - [anon_sym_o_PLUSe_GT] = ACTIONS(2080), - [anon_sym_e_PLUSo_GT] = ACTIONS(2080), - [anon_sym_err_GT_GT] = ACTIONS(2076), - [anon_sym_out_GT_GT] = ACTIONS(2076), - [anon_sym_e_GT_GT] = ACTIONS(2076), - [anon_sym_o_GT_GT] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(675)] = { - [sym_comment] = STATE(675), - [ts_builtin_sym_end] = ACTIONS(1942), - [anon_sym_in] = ACTIONS(1942), - [sym__newline] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_PIPE] = ACTIONS(1942), - [anon_sym_err_GT_PIPE] = ACTIONS(1942), - [anon_sym_out_GT_PIPE] = ACTIONS(1942), - [anon_sym_e_GT_PIPE] = ACTIONS(1942), - [anon_sym_o_GT_PIPE] = ACTIONS(1942), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1942), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1942), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1942), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1942), - [anon_sym_GT2] = ACTIONS(1944), - [anon_sym_DASH2] = ACTIONS(1942), - [anon_sym_STAR2] = ACTIONS(1944), - [anon_sym_and2] = ACTIONS(1942), - [anon_sym_xor2] = ACTIONS(1942), - [anon_sym_or2] = ACTIONS(1942), - [anon_sym_not_DASHin2] = ACTIONS(1942), - [anon_sym_has2] = ACTIONS(1942), - [anon_sym_not_DASHhas2] = ACTIONS(1942), - [anon_sym_starts_DASHwith2] = ACTIONS(1942), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1942), - [anon_sym_ends_DASHwith2] = ACTIONS(1942), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1942), - [anon_sym_EQ_EQ2] = ACTIONS(1942), - [anon_sym_BANG_EQ2] = ACTIONS(1942), - [anon_sym_LT2] = ACTIONS(1944), - [anon_sym_LT_EQ2] = ACTIONS(1942), - [anon_sym_GT_EQ2] = ACTIONS(1942), - [anon_sym_EQ_TILDE2] = ACTIONS(1942), - [anon_sym_BANG_TILDE2] = ACTIONS(1942), - [anon_sym_like2] = ACTIONS(1942), - [anon_sym_not_DASHlike2] = ACTIONS(1942), - [anon_sym_LPAREN2] = ACTIONS(1946), - [anon_sym_STAR_STAR2] = ACTIONS(1942), - [anon_sym_PLUS_PLUS2] = ACTIONS(1942), - [anon_sym_SLASH2] = ACTIONS(1944), - [anon_sym_mod2] = ACTIONS(1942), - [anon_sym_SLASH_SLASH2] = ACTIONS(1942), - [anon_sym_PLUS2] = ACTIONS(1944), - [anon_sym_bit_DASHshl2] = ACTIONS(1942), - [anon_sym_bit_DASHshr2] = ACTIONS(1942), - [anon_sym_bit_DASHand2] = ACTIONS(1942), - [anon_sym_bit_DASHxor2] = ACTIONS(1942), - [anon_sym_bit_DASHor2] = ACTIONS(1942), - [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(1944), - [anon_sym_out_GT] = ACTIONS(1944), - [anon_sym_e_GT] = ACTIONS(1944), - [anon_sym_o_GT] = ACTIONS(1944), - [anon_sym_err_PLUSout_GT] = ACTIONS(1944), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1944), - [anon_sym_o_PLUSe_GT] = ACTIONS(1944), - [anon_sym_e_PLUSo_GT] = ACTIONS(1944), - [anon_sym_err_GT_GT] = ACTIONS(1942), - [anon_sym_out_GT_GT] = ACTIONS(1942), - [anon_sym_e_GT_GT] = ACTIONS(1942), - [anon_sym_o_GT_GT] = ACTIONS(1942), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1942), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1942), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1942), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1942), - [sym__unquoted_pattern] = ACTIONS(1598), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(676)] = { - [sym_comment] = STATE(676), - [anon_sym_if] = ACTIONS(2086), - [anon_sym_in] = ACTIONS(2086), - [sym__newline] = ACTIONS(2086), - [anon_sym_SEMI] = ACTIONS(2086), - [anon_sym_PIPE] = ACTIONS(2086), - [anon_sym_err_GT_PIPE] = ACTIONS(2086), - [anon_sym_out_GT_PIPE] = ACTIONS(2086), - [anon_sym_e_GT_PIPE] = ACTIONS(2086), - [anon_sym_o_GT_PIPE] = ACTIONS(2086), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2086), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2086), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2086), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2086), - [anon_sym_RPAREN] = ACTIONS(2086), - [anon_sym_GT2] = ACTIONS(2088), - [anon_sym_DASH2] = ACTIONS(2086), - [anon_sym_LBRACE] = ACTIONS(2086), - [anon_sym_RBRACE] = ACTIONS(2086), - [anon_sym_EQ_GT] = ACTIONS(2086), - [anon_sym_STAR2] = ACTIONS(2088), - [anon_sym_and2] = ACTIONS(2086), - [anon_sym_xor2] = ACTIONS(2086), - [anon_sym_or2] = ACTIONS(2086), - [anon_sym_not_DASHin2] = ACTIONS(2086), - [anon_sym_has2] = ACTIONS(2086), - [anon_sym_not_DASHhas2] = ACTIONS(2086), - [anon_sym_starts_DASHwith2] = ACTIONS(2086), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2086), - [anon_sym_ends_DASHwith2] = ACTIONS(2086), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2086), - [anon_sym_EQ_EQ2] = ACTIONS(2086), - [anon_sym_BANG_EQ2] = ACTIONS(2086), - [anon_sym_LT2] = ACTIONS(2088), - [anon_sym_LT_EQ2] = ACTIONS(2086), - [anon_sym_GT_EQ2] = ACTIONS(2086), - [anon_sym_EQ_TILDE2] = ACTIONS(2086), - [anon_sym_BANG_TILDE2] = ACTIONS(2086), - [anon_sym_like2] = ACTIONS(2086), - [anon_sym_not_DASHlike2] = ACTIONS(2086), - [anon_sym_STAR_STAR2] = ACTIONS(2086), - [anon_sym_PLUS_PLUS2] = ACTIONS(2086), - [anon_sym_SLASH2] = ACTIONS(2088), - [anon_sym_mod2] = ACTIONS(2086), - [anon_sym_SLASH_SLASH2] = ACTIONS(2086), - [anon_sym_PLUS2] = ACTIONS(2088), - [anon_sym_bit_DASHshl2] = ACTIONS(2086), - [anon_sym_bit_DASHshr2] = ACTIONS(2086), - [anon_sym_bit_DASHand2] = ACTIONS(2086), - [anon_sym_bit_DASHxor2] = ACTIONS(2086), - [anon_sym_bit_DASHor2] = ACTIONS(2086), - [anon_sym_COLON2] = ACTIONS(2086), - [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(2086), - [anon_sym_out_GT_GT] = ACTIONS(2086), - [anon_sym_e_GT_GT] = ACTIONS(2086), - [anon_sym_o_GT_GT] = ACTIONS(2086), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2086), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2086), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2086), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2086), + [anon_sym_DOT_DOT2] = ACTIONS(2078), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2080), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2080), + [anon_sym_err_GT] = ACTIONS(2076), + [anon_sym_out_GT] = ACTIONS(2076), + [anon_sym_e_GT] = ACTIONS(2076), + [anon_sym_o_GT] = ACTIONS(2076), + [anon_sym_err_PLUSout_GT] = ACTIONS(2076), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2076), + [anon_sym_o_PLUSe_GT] = ACTIONS(2076), + [anon_sym_e_PLUSo_GT] = ACTIONS(2076), + [anon_sym_err_GT_GT] = ACTIONS(2074), + [anon_sym_out_GT_GT] = ACTIONS(2074), + [anon_sym_e_GT_GT] = ACTIONS(2074), + [anon_sym_o_GT_GT] = ACTIONS(2074), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2074), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2074), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2074), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2074), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(677)] = { - [sym_comment] = STATE(677), - [anon_sym_in] = ACTIONS(1689), - [sym__newline] = ACTIONS(1689), - [anon_sym_SEMI] = ACTIONS(1689), - [anon_sym_PIPE] = ACTIONS(1689), - [anon_sym_err_GT_PIPE] = ACTIONS(1689), - [anon_sym_out_GT_PIPE] = ACTIONS(1689), - [anon_sym_e_GT_PIPE] = ACTIONS(1689), - [anon_sym_o_GT_PIPE] = ACTIONS(1689), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), - [anon_sym_RPAREN] = ACTIONS(1689), - [anon_sym_GT2] = ACTIONS(1615), - [anon_sym_DASH2] = ACTIONS(1689), - [anon_sym_LBRACE] = ACTIONS(1689), - [anon_sym_RBRACE] = ACTIONS(1689), - [anon_sym_STAR2] = ACTIONS(1615), - [anon_sym_and2] = ACTIONS(1689), - [anon_sym_xor2] = ACTIONS(1689), - [anon_sym_or2] = ACTIONS(1689), - [anon_sym_not_DASHin2] = ACTIONS(1689), - [anon_sym_has2] = ACTIONS(1689), - [anon_sym_not_DASHhas2] = ACTIONS(1689), - [anon_sym_starts_DASHwith2] = ACTIONS(1689), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1689), - [anon_sym_ends_DASHwith2] = ACTIONS(1689), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1689), - [anon_sym_EQ_EQ2] = ACTIONS(1689), - [anon_sym_BANG_EQ2] = ACTIONS(1689), - [anon_sym_LT2] = ACTIONS(1615), - [anon_sym_LT_EQ2] = ACTIONS(1689), - [anon_sym_GT_EQ2] = ACTIONS(1689), - [anon_sym_EQ_TILDE2] = ACTIONS(1689), - [anon_sym_BANG_TILDE2] = ACTIONS(1689), - [anon_sym_like2] = ACTIONS(1689), - [anon_sym_not_DASHlike2] = ACTIONS(1689), - [anon_sym_STAR_STAR2] = ACTIONS(1689), - [anon_sym_PLUS_PLUS2] = ACTIONS(1689), - [anon_sym_SLASH2] = ACTIONS(1615), - [anon_sym_mod2] = ACTIONS(1689), - [anon_sym_SLASH_SLASH2] = ACTIONS(1689), - [anon_sym_PLUS2] = ACTIONS(1615), - [anon_sym_bit_DASHshl2] = ACTIONS(1689), - [anon_sym_bit_DASHshr2] = ACTIONS(1689), - [anon_sym_bit_DASHand2] = ACTIONS(1689), - [anon_sym_bit_DASHxor2] = ACTIONS(1689), - [anon_sym_bit_DASHor2] = ACTIONS(1689), - [anon_sym_DOT_DOT2] = ACTIONS(1619), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), - [anon_sym_err_GT] = ACTIONS(1615), - [anon_sym_out_GT] = ACTIONS(1615), - [anon_sym_e_GT] = ACTIONS(1615), - [anon_sym_o_GT] = ACTIONS(1615), - [anon_sym_err_PLUSout_GT] = ACTIONS(1615), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), - [anon_sym_o_PLUSe_GT] = ACTIONS(1615), - [anon_sym_e_PLUSo_GT] = ACTIONS(1615), - [anon_sym_err_GT_GT] = ACTIONS(1689), - [anon_sym_out_GT_GT] = ACTIONS(1689), - [anon_sym_e_GT_GT] = ACTIONS(1689), - [anon_sym_o_GT_GT] = ACTIONS(1689), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), + [STATE(681)] = { + [sym_comment] = STATE(681), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [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(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(678)] = { - [sym_comment] = STATE(678), - [ts_builtin_sym_end] = ACTIONS(1952), - [anon_sym_in] = ACTIONS(1952), - [sym__newline] = ACTIONS(1952), - [anon_sym_SEMI] = ACTIONS(1952), - [anon_sym_PIPE] = ACTIONS(1952), - [anon_sym_err_GT_PIPE] = ACTIONS(1952), - [anon_sym_out_GT_PIPE] = ACTIONS(1952), - [anon_sym_e_GT_PIPE] = ACTIONS(1952), - [anon_sym_o_GT_PIPE] = ACTIONS(1952), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1952), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1952), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1952), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1952), - [anon_sym_GT2] = ACTIONS(1954), - [anon_sym_DASH2] = ACTIONS(1952), - [anon_sym_STAR2] = ACTIONS(1954), - [anon_sym_and2] = ACTIONS(1952), - [anon_sym_xor2] = ACTIONS(1952), - [anon_sym_or2] = ACTIONS(1952), - [anon_sym_not_DASHin2] = ACTIONS(1952), - [anon_sym_has2] = ACTIONS(1952), - [anon_sym_not_DASHhas2] = ACTIONS(1952), - [anon_sym_starts_DASHwith2] = ACTIONS(1952), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1952), - [anon_sym_ends_DASHwith2] = ACTIONS(1952), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1952), - [anon_sym_EQ_EQ2] = ACTIONS(1952), - [anon_sym_BANG_EQ2] = ACTIONS(1952), - [anon_sym_LT2] = ACTIONS(1954), - [anon_sym_LT_EQ2] = ACTIONS(1952), - [anon_sym_GT_EQ2] = ACTIONS(1952), - [anon_sym_EQ_TILDE2] = ACTIONS(1952), - [anon_sym_BANG_TILDE2] = ACTIONS(1952), - [anon_sym_like2] = ACTIONS(1952), - [anon_sym_not_DASHlike2] = ACTIONS(1952), - [anon_sym_LPAREN2] = ACTIONS(1956), - [anon_sym_STAR_STAR2] = ACTIONS(1952), - [anon_sym_PLUS_PLUS2] = ACTIONS(1952), - [anon_sym_SLASH2] = ACTIONS(1954), - [anon_sym_mod2] = ACTIONS(1952), - [anon_sym_SLASH_SLASH2] = ACTIONS(1952), - [anon_sym_PLUS2] = ACTIONS(1954), - [anon_sym_bit_DASHshl2] = ACTIONS(1952), - [anon_sym_bit_DASHshr2] = ACTIONS(1952), - [anon_sym_bit_DASHand2] = ACTIONS(1952), - [anon_sym_bit_DASHxor2] = ACTIONS(1952), - [anon_sym_bit_DASHor2] = ACTIONS(1952), + [STATE(682)] = { + [sym_comment] = STATE(682), + [anon_sym_in] = ACTIONS(2011), + [sym__newline] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_err_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_GT_PIPE] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [anon_sym_GT2] = ACTIONS(2013), + [anon_sym_DASH2] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2011), + [anon_sym_RBRACE] = ACTIONS(2011), + [anon_sym_STAR2] = ACTIONS(2013), + [anon_sym_and2] = ACTIONS(2011), + [anon_sym_xor2] = ACTIONS(2011), + [anon_sym_or2] = ACTIONS(2011), + [anon_sym_not_DASHin2] = ACTIONS(2011), + [anon_sym_has2] = ACTIONS(2011), + [anon_sym_not_DASHhas2] = ACTIONS(2011), + [anon_sym_starts_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2011), + [anon_sym_ends_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2011), + [anon_sym_EQ_EQ2] = ACTIONS(2011), + [anon_sym_BANG_EQ2] = ACTIONS(2011), + [anon_sym_LT2] = ACTIONS(2013), + [anon_sym_LT_EQ2] = ACTIONS(2011), + [anon_sym_GT_EQ2] = ACTIONS(2011), + [anon_sym_EQ_TILDE2] = ACTIONS(2011), + [anon_sym_BANG_TILDE2] = ACTIONS(2011), + [anon_sym_like2] = ACTIONS(2011), + [anon_sym_not_DASHlike2] = ACTIONS(2011), + [anon_sym_STAR_STAR2] = ACTIONS(2011), + [anon_sym_PLUS_PLUS2] = ACTIONS(2011), + [anon_sym_SLASH2] = ACTIONS(2013), + [anon_sym_mod2] = ACTIONS(2011), + [anon_sym_SLASH_SLASH2] = ACTIONS(2011), + [anon_sym_PLUS2] = ACTIONS(2013), + [anon_sym_bit_DASHshl2] = ACTIONS(2011), + [anon_sym_bit_DASHshr2] = ACTIONS(2011), + [anon_sym_bit_DASHand2] = ACTIONS(2011), + [anon_sym_bit_DASHxor2] = ACTIONS(2011), + [anon_sym_bit_DASHor2] = ACTIONS(2011), [anon_sym_DOT_DOT2] = ACTIONS(2090), [anon_sym_DOT_DOT_EQ2] = ACTIONS(2092), [anon_sym_DOT_DOT_LT2] = ACTIONS(2092), - [anon_sym_err_GT] = ACTIONS(1954), - [anon_sym_out_GT] = ACTIONS(1954), - [anon_sym_e_GT] = ACTIONS(1954), - [anon_sym_o_GT] = ACTIONS(1954), - [anon_sym_err_PLUSout_GT] = ACTIONS(1954), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1954), - [anon_sym_o_PLUSe_GT] = ACTIONS(1954), - [anon_sym_e_PLUSo_GT] = ACTIONS(1954), - [anon_sym_err_GT_GT] = ACTIONS(1952), - [anon_sym_out_GT_GT] = ACTIONS(1952), - [anon_sym_e_GT_GT] = ACTIONS(1952), - [anon_sym_o_GT_GT] = ACTIONS(1952), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1952), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1952), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1952), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1952), - [sym__unquoted_pattern] = ACTIONS(1962), + [anon_sym_err_GT] = ACTIONS(2013), + [anon_sym_out_GT] = ACTIONS(2013), + [anon_sym_e_GT] = ACTIONS(2013), + [anon_sym_o_GT] = ACTIONS(2013), + [anon_sym_err_PLUSout_GT] = ACTIONS(2013), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2013), + [anon_sym_o_PLUSe_GT] = ACTIONS(2013), + [anon_sym_e_PLUSo_GT] = ACTIONS(2013), + [anon_sym_err_GT_GT] = ACTIONS(2011), + [anon_sym_out_GT_GT] = ACTIONS(2011), + [anon_sym_e_GT_GT] = ACTIONS(2011), + [anon_sym_o_GT_GT] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(679)] = { - [sym_comment] = STATE(679), - [anon_sym_if] = ACTIONS(2094), + [STATE(683)] = { + [sym__expr_parenthesized_immediate] = STATE(5228), + [sym_comment] = STATE(683), [anon_sym_in] = ACTIONS(2094), [sym__newline] = ACTIONS(2094), [anon_sym_SEMI] = ACTIONS(2094), @@ -99307,7 +99626,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2094), [anon_sym_like2] = ACTIONS(2094), [anon_sym_not_DASHlike2] = ACTIONS(2094), - [anon_sym_LPAREN2] = ACTIONS(2094), + [anon_sym_LPAREN2] = ACTIONS(1714), [anon_sym_STAR_STAR2] = ACTIONS(2094), [anon_sym_PLUS_PLUS2] = ACTIONS(2094), [anon_sym_SLASH2] = ACTIONS(2096), @@ -99337,79 +99656,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2094), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(680)] = { - [sym_comment] = STATE(680), - [anon_sym_if] = ACTIONS(890), - [anon_sym_in] = ACTIONS(890), - [sym__newline] = ACTIONS(890), - [anon_sym_SEMI] = ACTIONS(890), - [anon_sym_PIPE] = ACTIONS(890), - [anon_sym_err_GT_PIPE] = ACTIONS(890), - [anon_sym_out_GT_PIPE] = ACTIONS(890), - [anon_sym_e_GT_PIPE] = ACTIONS(890), - [anon_sym_o_GT_PIPE] = ACTIONS(890), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(890), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(890), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(890), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(890), - [anon_sym_RPAREN] = ACTIONS(890), - [anon_sym_GT2] = ACTIONS(793), - [anon_sym_DASH2] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(890), - [anon_sym_RBRACE] = ACTIONS(890), - [anon_sym_EQ_GT] = ACTIONS(890), - [anon_sym_STAR2] = ACTIONS(793), - [anon_sym_and2] = ACTIONS(890), - [anon_sym_xor2] = ACTIONS(890), - [anon_sym_or2] = ACTIONS(890), - [anon_sym_not_DASHin2] = ACTIONS(890), - [anon_sym_has2] = ACTIONS(890), - [anon_sym_not_DASHhas2] = ACTIONS(890), - [anon_sym_starts_DASHwith2] = ACTIONS(890), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(890), - [anon_sym_ends_DASHwith2] = ACTIONS(890), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(890), - [anon_sym_EQ_EQ2] = ACTIONS(890), - [anon_sym_BANG_EQ2] = ACTIONS(890), - [anon_sym_LT2] = ACTIONS(793), - [anon_sym_LT_EQ2] = ACTIONS(890), - [anon_sym_GT_EQ2] = ACTIONS(890), - [anon_sym_EQ_TILDE2] = ACTIONS(890), - [anon_sym_BANG_TILDE2] = ACTIONS(890), - [anon_sym_like2] = ACTIONS(890), - [anon_sym_not_DASHlike2] = ACTIONS(890), - [anon_sym_STAR_STAR2] = ACTIONS(890), - [anon_sym_PLUS_PLUS2] = ACTIONS(890), - [anon_sym_SLASH2] = ACTIONS(793), - [anon_sym_mod2] = ACTIONS(890), - [anon_sym_SLASH_SLASH2] = ACTIONS(890), - [anon_sym_PLUS2] = ACTIONS(793), - [anon_sym_bit_DASHshl2] = ACTIONS(890), - [anon_sym_bit_DASHshr2] = ACTIONS(890), - [anon_sym_bit_DASHand2] = ACTIONS(890), - [anon_sym_bit_DASHxor2] = ACTIONS(890), - [anon_sym_bit_DASHor2] = ACTIONS(890), - [anon_sym_COLON2] = ACTIONS(890), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [anon_sym_err_GT_GT] = ACTIONS(890), - [anon_sym_out_GT_GT] = ACTIONS(890), - [anon_sym_e_GT_GT] = ACTIONS(890), - [anon_sym_o_GT_GT] = ACTIONS(890), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(890), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(890), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(890), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(890), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(681)] = { - [sym_comment] = STATE(681), + [STATE(684)] = { + [sym__expr_parenthesized_immediate] = STATE(5228), + [sym_comment] = STATE(684), [anon_sym_in] = ACTIONS(2098), [sym__newline] = ACTIONS(2098), [anon_sym_SEMI] = ACTIONS(2098), @@ -99427,6 +99676,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(2098), [anon_sym_LBRACE] = ACTIONS(2098), [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_EQ_GT] = ACTIONS(2098), [anon_sym_STAR2] = ACTIONS(2100), [anon_sym_and2] = ACTIONS(2098), [anon_sym_xor2] = ACTIONS(2098), @@ -99447,6 +99697,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2098), [anon_sym_like2] = ACTIONS(2098), [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_LPAREN2] = ACTIONS(1714), [anon_sym_STAR_STAR2] = ACTIONS(2098), [anon_sym_PLUS_PLUS2] = ACTIONS(2098), [anon_sym_SLASH2] = ACTIONS(2100), @@ -99458,9 +99709,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(2098), [anon_sym_bit_DASHxor2] = ACTIONS(2098), [anon_sym_bit_DASHor2] = ACTIONS(2098), - [anon_sym_DOT_DOT2] = ACTIONS(2102), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2104), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2104), [anon_sym_err_GT] = ACTIONS(2100), [anon_sym_out_GT] = ACTIONS(2100), [anon_sym_e_GT] = ACTIONS(2100), @@ -99479,719 +99727,364 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(682)] = { - [sym_comment] = STATE(682), - [anon_sym_in] = ACTIONS(1942), - [sym__newline] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_PIPE] = ACTIONS(1942), - [anon_sym_err_GT_PIPE] = ACTIONS(1942), - [anon_sym_out_GT_PIPE] = ACTIONS(1942), - [anon_sym_e_GT_PIPE] = ACTIONS(1942), - [anon_sym_o_GT_PIPE] = ACTIONS(1942), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1942), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1942), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1942), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1942), - [anon_sym_RPAREN] = ACTIONS(1942), - [anon_sym_GT2] = ACTIONS(1944), - [anon_sym_DASH2] = ACTIONS(1942), - [anon_sym_LBRACE] = ACTIONS(1942), - [anon_sym_RBRACE] = ACTIONS(1942), - [anon_sym_STAR2] = ACTIONS(1944), - [anon_sym_and2] = ACTIONS(1942), - [anon_sym_xor2] = ACTIONS(1942), - [anon_sym_or2] = ACTIONS(1942), - [anon_sym_not_DASHin2] = ACTIONS(1942), - [anon_sym_has2] = ACTIONS(1942), - [anon_sym_not_DASHhas2] = ACTIONS(1942), - [anon_sym_starts_DASHwith2] = ACTIONS(1942), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1942), - [anon_sym_ends_DASHwith2] = ACTIONS(1942), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1942), - [anon_sym_EQ_EQ2] = ACTIONS(1942), - [anon_sym_BANG_EQ2] = ACTIONS(1942), - [anon_sym_LT2] = ACTIONS(1944), - [anon_sym_LT_EQ2] = ACTIONS(1942), - [anon_sym_GT_EQ2] = ACTIONS(1942), - [anon_sym_EQ_TILDE2] = ACTIONS(1942), - [anon_sym_BANG_TILDE2] = ACTIONS(1942), - [anon_sym_like2] = ACTIONS(1942), - [anon_sym_not_DASHlike2] = ACTIONS(1942), - [anon_sym_STAR_STAR2] = ACTIONS(1942), - [anon_sym_PLUS_PLUS2] = ACTIONS(1942), - [anon_sym_SLASH2] = ACTIONS(1944), - [anon_sym_mod2] = ACTIONS(1942), - [anon_sym_SLASH_SLASH2] = ACTIONS(1942), - [anon_sym_PLUS2] = ACTIONS(1944), - [anon_sym_bit_DASHshl2] = ACTIONS(1942), - [anon_sym_bit_DASHshr2] = ACTIONS(1942), - [anon_sym_bit_DASHand2] = ACTIONS(1942), - [anon_sym_bit_DASHxor2] = ACTIONS(1942), - [anon_sym_bit_DASHor2] = ACTIONS(1942), - [anon_sym_DOT_DOT2] = ACTIONS(2106), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2108), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2108), - [anon_sym_err_GT] = ACTIONS(1944), - [anon_sym_out_GT] = ACTIONS(1944), - [anon_sym_e_GT] = ACTIONS(1944), - [anon_sym_o_GT] = ACTIONS(1944), - [anon_sym_err_PLUSout_GT] = ACTIONS(1944), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1944), - [anon_sym_o_PLUSe_GT] = ACTIONS(1944), - [anon_sym_e_PLUSo_GT] = ACTIONS(1944), - [anon_sym_err_GT_GT] = ACTIONS(1942), - [anon_sym_out_GT_GT] = ACTIONS(1942), - [anon_sym_e_GT_GT] = ACTIONS(1942), - [anon_sym_o_GT_GT] = ACTIONS(1942), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1942), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1942), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1942), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1942), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(683)] = { - [sym_comment] = STATE(683), - [anon_sym_else] = ACTIONS(2110), - [anon_sym_catch] = ACTIONS(2110), - [anon_sym_in] = ACTIONS(2110), - [sym__newline] = ACTIONS(2110), - [anon_sym_SEMI] = ACTIONS(2110), - [anon_sym_PIPE] = ACTIONS(2110), - [anon_sym_err_GT_PIPE] = ACTIONS(2110), - [anon_sym_out_GT_PIPE] = ACTIONS(2110), - [anon_sym_e_GT_PIPE] = ACTIONS(2110), - [anon_sym_o_GT_PIPE] = ACTIONS(2110), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2110), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2110), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2110), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2110), - [anon_sym_COLON] = ACTIONS(2110), - [anon_sym_LBRACK] = ACTIONS(2110), - [anon_sym_RPAREN] = ACTIONS(2110), - [anon_sym_GT2] = ACTIONS(2112), - [anon_sym_DASH2] = ACTIONS(2110), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_STAR2] = ACTIONS(2112), - [anon_sym_and2] = ACTIONS(2110), - [anon_sym_xor2] = ACTIONS(2110), - [anon_sym_or2] = ACTIONS(2110), - [anon_sym_not_DASHin2] = ACTIONS(2110), - [anon_sym_has2] = ACTIONS(2110), - [anon_sym_not_DASHhas2] = ACTIONS(2110), - [anon_sym_starts_DASHwith2] = ACTIONS(2110), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2110), - [anon_sym_ends_DASHwith2] = ACTIONS(2110), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2110), - [anon_sym_EQ_EQ2] = ACTIONS(2110), - [anon_sym_BANG_EQ2] = ACTIONS(2110), - [anon_sym_LT2] = ACTIONS(2112), - [anon_sym_LT_EQ2] = ACTIONS(2110), - [anon_sym_GT_EQ2] = ACTIONS(2110), - [anon_sym_EQ_TILDE2] = ACTIONS(2110), - [anon_sym_BANG_TILDE2] = ACTIONS(2110), - [anon_sym_like2] = ACTIONS(2110), - [anon_sym_not_DASHlike2] = ACTIONS(2110), - [anon_sym_STAR_STAR2] = ACTIONS(2110), - [anon_sym_PLUS_PLUS2] = ACTIONS(2110), - [anon_sym_SLASH2] = ACTIONS(2112), - [anon_sym_mod2] = ACTIONS(2110), - [anon_sym_SLASH_SLASH2] = ACTIONS(2110), - [anon_sym_PLUS2] = ACTIONS(2112), - [anon_sym_bit_DASHshl2] = ACTIONS(2110), - [anon_sym_bit_DASHshr2] = ACTIONS(2110), - [anon_sym_bit_DASHand2] = ACTIONS(2110), - [anon_sym_bit_DASHxor2] = ACTIONS(2110), - [anon_sym_bit_DASHor2] = ACTIONS(2110), - [anon_sym_err_GT] = ACTIONS(2112), - [anon_sym_out_GT] = ACTIONS(2112), - [anon_sym_e_GT] = ACTIONS(2112), - [anon_sym_o_GT] = ACTIONS(2112), - [anon_sym_err_PLUSout_GT] = ACTIONS(2112), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2112), - [anon_sym_o_PLUSe_GT] = ACTIONS(2112), - [anon_sym_e_PLUSo_GT] = ACTIONS(2112), - [anon_sym_err_GT_GT] = ACTIONS(2110), - [anon_sym_out_GT_GT] = ACTIONS(2110), - [anon_sym_e_GT_GT] = ACTIONS(2110), - [anon_sym_o_GT_GT] = ACTIONS(2110), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2110), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2110), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2110), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2110), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(684)] = { - [sym_comment] = STATE(684), - [anon_sym_if] = ACTIONS(2114), - [anon_sym_in] = ACTIONS(2114), - [sym__newline] = ACTIONS(2114), - [anon_sym_SEMI] = ACTIONS(2114), - [anon_sym_PIPE] = ACTIONS(2114), - [anon_sym_err_GT_PIPE] = ACTIONS(2114), - [anon_sym_out_GT_PIPE] = ACTIONS(2114), - [anon_sym_e_GT_PIPE] = ACTIONS(2114), - [anon_sym_o_GT_PIPE] = ACTIONS(2114), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2114), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2114), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2114), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2114), - [anon_sym_RPAREN] = ACTIONS(2114), - [anon_sym_GT2] = ACTIONS(2116), - [anon_sym_DASH2] = ACTIONS(2114), - [anon_sym_LBRACE] = ACTIONS(2114), - [anon_sym_RBRACE] = ACTIONS(2114), - [anon_sym_EQ_GT] = ACTIONS(2114), - [anon_sym_STAR2] = ACTIONS(2116), - [anon_sym_and2] = ACTIONS(2114), - [anon_sym_xor2] = ACTIONS(2114), - [anon_sym_or2] = ACTIONS(2114), - [anon_sym_not_DASHin2] = ACTIONS(2114), - [anon_sym_has2] = ACTIONS(2114), - [anon_sym_not_DASHhas2] = ACTIONS(2114), - [anon_sym_starts_DASHwith2] = ACTIONS(2114), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2114), - [anon_sym_ends_DASHwith2] = ACTIONS(2114), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2114), - [anon_sym_EQ_EQ2] = ACTIONS(2114), - [anon_sym_BANG_EQ2] = ACTIONS(2114), - [anon_sym_LT2] = ACTIONS(2116), - [anon_sym_LT_EQ2] = ACTIONS(2114), - [anon_sym_GT_EQ2] = ACTIONS(2114), - [anon_sym_EQ_TILDE2] = ACTIONS(2114), - [anon_sym_BANG_TILDE2] = ACTIONS(2114), - [anon_sym_like2] = ACTIONS(2114), - [anon_sym_not_DASHlike2] = ACTIONS(2114), - [anon_sym_STAR_STAR2] = ACTIONS(2114), - [anon_sym_PLUS_PLUS2] = ACTIONS(2114), - [anon_sym_SLASH2] = ACTIONS(2116), - [anon_sym_mod2] = ACTIONS(2114), - [anon_sym_SLASH_SLASH2] = ACTIONS(2114), - [anon_sym_PLUS2] = ACTIONS(2116), - [anon_sym_bit_DASHshl2] = ACTIONS(2114), - [anon_sym_bit_DASHshr2] = ACTIONS(2114), - [anon_sym_bit_DASHand2] = ACTIONS(2114), - [anon_sym_bit_DASHxor2] = ACTIONS(2114), - [anon_sym_bit_DASHor2] = ACTIONS(2114), - [anon_sym_LBRACK2] = ACTIONS(2118), - [anon_sym_err_GT] = ACTIONS(2116), - [anon_sym_out_GT] = ACTIONS(2116), - [anon_sym_e_GT] = ACTIONS(2116), - [anon_sym_o_GT] = ACTIONS(2116), - [anon_sym_err_PLUSout_GT] = ACTIONS(2116), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2116), - [anon_sym_o_PLUSe_GT] = ACTIONS(2116), - [anon_sym_e_PLUSo_GT] = ACTIONS(2116), - [anon_sym_err_GT_GT] = ACTIONS(2114), - [anon_sym_out_GT_GT] = ACTIONS(2114), - [anon_sym_e_GT_GT] = ACTIONS(2114), - [anon_sym_o_GT_GT] = ACTIONS(2114), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2114), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2114), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2114), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2114), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(685)] = { + [sym__expr_parenthesized_immediate] = STATE(5228), [sym_comment] = STATE(685), - [ts_builtin_sym_end] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [sym__newline] = ACTIONS(1738), - [anon_sym_SEMI] = ACTIONS(1738), - [anon_sym_PIPE] = ACTIONS(1738), - [anon_sym_err_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_GT_PIPE] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), - [anon_sym_GT2] = ACTIONS(1740), - [anon_sym_DASH2] = ACTIONS(1738), - [anon_sym_STAR2] = ACTIONS(1740), - [anon_sym_and2] = ACTIONS(1738), - [anon_sym_xor2] = ACTIONS(1738), - [anon_sym_or2] = ACTIONS(1738), - [anon_sym_not_DASHin2] = ACTIONS(1738), - [anon_sym_has2] = ACTIONS(1738), - [anon_sym_not_DASHhas2] = ACTIONS(1738), - [anon_sym_starts_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), - [anon_sym_ends_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), - [anon_sym_EQ_EQ2] = ACTIONS(1738), - [anon_sym_BANG_EQ2] = ACTIONS(1738), - [anon_sym_LT2] = ACTIONS(1740), - [anon_sym_LT_EQ2] = ACTIONS(1738), - [anon_sym_GT_EQ2] = ACTIONS(1738), - [anon_sym_EQ_TILDE2] = ACTIONS(1738), - [anon_sym_BANG_TILDE2] = ACTIONS(1738), - [anon_sym_like2] = ACTIONS(1738), - [anon_sym_not_DASHlike2] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1738), - [anon_sym_STAR_STAR2] = ACTIONS(1738), - [anon_sym_PLUS_PLUS2] = ACTIONS(1738), - [anon_sym_SLASH2] = ACTIONS(1740), - [anon_sym_mod2] = ACTIONS(1738), - [anon_sym_SLASH_SLASH2] = ACTIONS(1738), - [anon_sym_PLUS2] = ACTIONS(1740), - [anon_sym_bit_DASHshl2] = ACTIONS(1738), - [anon_sym_bit_DASHshr2] = ACTIONS(1738), - [anon_sym_bit_DASHand2] = ACTIONS(1738), - [anon_sym_bit_DASHxor2] = ACTIONS(1738), - [anon_sym_bit_DASHor2] = ACTIONS(1738), - [anon_sym_DOT_DOT2] = ACTIONS(1740), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1738), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1738), - [anon_sym_err_GT] = ACTIONS(1740), - [anon_sym_out_GT] = ACTIONS(1740), - [anon_sym_e_GT] = ACTIONS(1740), - [anon_sym_o_GT] = ACTIONS(1740), - [anon_sym_err_PLUSout_GT] = ACTIONS(1740), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1740), - [anon_sym_o_PLUSe_GT] = ACTIONS(1740), - [anon_sym_e_PLUSo_GT] = ACTIONS(1740), - [anon_sym_err_GT_GT] = ACTIONS(1738), - [anon_sym_out_GT_GT] = ACTIONS(1738), - [anon_sym_e_GT_GT] = ACTIONS(1738), - [anon_sym_o_GT_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), - [sym__unquoted_pattern] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(2102), + [sym__newline] = ACTIONS(2102), + [anon_sym_SEMI] = ACTIONS(2102), + [anon_sym_PIPE] = ACTIONS(2102), + [anon_sym_err_GT_PIPE] = ACTIONS(2102), + [anon_sym_out_GT_PIPE] = ACTIONS(2102), + [anon_sym_e_GT_PIPE] = ACTIONS(2102), + [anon_sym_o_GT_PIPE] = ACTIONS(2102), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2102), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2102), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2102), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2102), + [anon_sym_RPAREN] = ACTIONS(2102), + [anon_sym_GT2] = ACTIONS(2104), + [anon_sym_DASH2] = ACTIONS(2102), + [anon_sym_LBRACE] = ACTIONS(2102), + [anon_sym_RBRACE] = ACTIONS(2102), + [anon_sym_EQ_GT] = ACTIONS(2102), + [anon_sym_STAR2] = ACTIONS(2104), + [anon_sym_and2] = ACTIONS(2102), + [anon_sym_xor2] = ACTIONS(2102), + [anon_sym_or2] = ACTIONS(2102), + [anon_sym_not_DASHin2] = ACTIONS(2102), + [anon_sym_has2] = ACTIONS(2102), + [anon_sym_not_DASHhas2] = ACTIONS(2102), + [anon_sym_starts_DASHwith2] = ACTIONS(2102), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2102), + [anon_sym_ends_DASHwith2] = ACTIONS(2102), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2102), + [anon_sym_EQ_EQ2] = ACTIONS(2102), + [anon_sym_BANG_EQ2] = ACTIONS(2102), + [anon_sym_LT2] = ACTIONS(2104), + [anon_sym_LT_EQ2] = ACTIONS(2102), + [anon_sym_GT_EQ2] = ACTIONS(2102), + [anon_sym_EQ_TILDE2] = ACTIONS(2102), + [anon_sym_BANG_TILDE2] = ACTIONS(2102), + [anon_sym_like2] = ACTIONS(2102), + [anon_sym_not_DASHlike2] = ACTIONS(2102), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2102), + [anon_sym_PLUS_PLUS2] = ACTIONS(2102), + [anon_sym_SLASH2] = ACTIONS(2104), + [anon_sym_mod2] = ACTIONS(2102), + [anon_sym_SLASH_SLASH2] = ACTIONS(2102), + [anon_sym_PLUS2] = ACTIONS(2104), + [anon_sym_bit_DASHshl2] = ACTIONS(2102), + [anon_sym_bit_DASHshr2] = ACTIONS(2102), + [anon_sym_bit_DASHand2] = ACTIONS(2102), + [anon_sym_bit_DASHxor2] = ACTIONS(2102), + [anon_sym_bit_DASHor2] = ACTIONS(2102), + [anon_sym_err_GT] = ACTIONS(2104), + [anon_sym_out_GT] = ACTIONS(2104), + [anon_sym_e_GT] = ACTIONS(2104), + [anon_sym_o_GT] = ACTIONS(2104), + [anon_sym_err_PLUSout_GT] = ACTIONS(2104), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2104), + [anon_sym_o_PLUSe_GT] = ACTIONS(2104), + [anon_sym_e_PLUSo_GT] = ACTIONS(2104), + [anon_sym_err_GT_GT] = ACTIONS(2102), + [anon_sym_out_GT_GT] = ACTIONS(2102), + [anon_sym_e_GT_GT] = ACTIONS(2102), + [anon_sym_o_GT_GT] = ACTIONS(2102), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2102), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2102), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2102), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2102), [anon_sym_POUND] = ACTIONS(3), }, [STATE(686)] = { + [sym__expr_parenthesized_immediate] = STATE(5228), [sym_comment] = STATE(686), - [anon_sym_if] = ACTIONS(2120), - [anon_sym_in] = ACTIONS(2120), - [sym__newline] = ACTIONS(2120), - [anon_sym_SEMI] = ACTIONS(2120), - [anon_sym_PIPE] = ACTIONS(2120), - [anon_sym_err_GT_PIPE] = ACTIONS(2120), - [anon_sym_out_GT_PIPE] = ACTIONS(2120), - [anon_sym_e_GT_PIPE] = ACTIONS(2120), - [anon_sym_o_GT_PIPE] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2120), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2120), - [anon_sym_RPAREN] = ACTIONS(2120), - [anon_sym_GT2] = ACTIONS(2122), - [anon_sym_DASH2] = ACTIONS(2120), - [anon_sym_LBRACE] = ACTIONS(2120), - [anon_sym_RBRACE] = ACTIONS(2120), - [anon_sym_EQ_GT] = ACTIONS(2120), - [anon_sym_STAR2] = ACTIONS(2122), - [anon_sym_and2] = ACTIONS(2120), - [anon_sym_xor2] = ACTIONS(2120), - [anon_sym_or2] = ACTIONS(2120), - [anon_sym_not_DASHin2] = ACTIONS(2120), - [anon_sym_has2] = ACTIONS(2120), - [anon_sym_not_DASHhas2] = ACTIONS(2120), - [anon_sym_starts_DASHwith2] = ACTIONS(2120), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2120), - [anon_sym_ends_DASHwith2] = ACTIONS(2120), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2120), - [anon_sym_EQ_EQ2] = ACTIONS(2120), - [anon_sym_BANG_EQ2] = ACTIONS(2120), - [anon_sym_LT2] = ACTIONS(2122), - [anon_sym_LT_EQ2] = ACTIONS(2120), - [anon_sym_GT_EQ2] = ACTIONS(2120), - [anon_sym_EQ_TILDE2] = ACTIONS(2120), - [anon_sym_BANG_TILDE2] = ACTIONS(2120), - [anon_sym_like2] = ACTIONS(2120), - [anon_sym_not_DASHlike2] = ACTIONS(2120), - [anon_sym_LPAREN2] = ACTIONS(2120), - [anon_sym_STAR_STAR2] = ACTIONS(2120), - [anon_sym_PLUS_PLUS2] = ACTIONS(2120), - [anon_sym_SLASH2] = ACTIONS(2122), - [anon_sym_mod2] = ACTIONS(2120), - [anon_sym_SLASH_SLASH2] = ACTIONS(2120), - [anon_sym_PLUS2] = ACTIONS(2122), - [anon_sym_bit_DASHshl2] = ACTIONS(2120), - [anon_sym_bit_DASHshr2] = ACTIONS(2120), - [anon_sym_bit_DASHand2] = ACTIONS(2120), - [anon_sym_bit_DASHxor2] = ACTIONS(2120), - [anon_sym_bit_DASHor2] = ACTIONS(2120), - [anon_sym_err_GT] = ACTIONS(2122), - [anon_sym_out_GT] = ACTIONS(2122), - [anon_sym_e_GT] = ACTIONS(2122), - [anon_sym_o_GT] = ACTIONS(2122), - [anon_sym_err_PLUSout_GT] = ACTIONS(2122), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2122), - [anon_sym_o_PLUSe_GT] = ACTIONS(2122), - [anon_sym_e_PLUSo_GT] = ACTIONS(2122), - [anon_sym_err_GT_GT] = ACTIONS(2120), - [anon_sym_out_GT_GT] = ACTIONS(2120), - [anon_sym_e_GT_GT] = ACTIONS(2120), - [anon_sym_o_GT_GT] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2120), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2120), + [anon_sym_in] = ACTIONS(2106), + [sym__newline] = ACTIONS(2106), + [anon_sym_SEMI] = ACTIONS(2106), + [anon_sym_PIPE] = ACTIONS(2106), + [anon_sym_err_GT_PIPE] = ACTIONS(2106), + [anon_sym_out_GT_PIPE] = ACTIONS(2106), + [anon_sym_e_GT_PIPE] = ACTIONS(2106), + [anon_sym_o_GT_PIPE] = ACTIONS(2106), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2106), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2106), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2106), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2106), + [anon_sym_RPAREN] = ACTIONS(2106), + [anon_sym_GT2] = ACTIONS(2108), + [anon_sym_DASH2] = ACTIONS(2106), + [anon_sym_LBRACE] = ACTIONS(2106), + [anon_sym_RBRACE] = ACTIONS(2106), + [anon_sym_EQ_GT] = ACTIONS(2106), + [anon_sym_STAR2] = ACTIONS(2108), + [anon_sym_and2] = ACTIONS(2106), + [anon_sym_xor2] = ACTIONS(2106), + [anon_sym_or2] = ACTIONS(2106), + [anon_sym_not_DASHin2] = ACTIONS(2106), + [anon_sym_has2] = ACTIONS(2106), + [anon_sym_not_DASHhas2] = ACTIONS(2106), + [anon_sym_starts_DASHwith2] = ACTIONS(2106), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2106), + [anon_sym_ends_DASHwith2] = ACTIONS(2106), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2106), + [anon_sym_EQ_EQ2] = ACTIONS(2106), + [anon_sym_BANG_EQ2] = ACTIONS(2106), + [anon_sym_LT2] = ACTIONS(2108), + [anon_sym_LT_EQ2] = ACTIONS(2106), + [anon_sym_GT_EQ2] = ACTIONS(2106), + [anon_sym_EQ_TILDE2] = ACTIONS(2106), + [anon_sym_BANG_TILDE2] = ACTIONS(2106), + [anon_sym_like2] = ACTIONS(2106), + [anon_sym_not_DASHlike2] = ACTIONS(2106), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2106), + [anon_sym_PLUS_PLUS2] = ACTIONS(2106), + [anon_sym_SLASH2] = ACTIONS(2108), + [anon_sym_mod2] = ACTIONS(2106), + [anon_sym_SLASH_SLASH2] = ACTIONS(2106), + [anon_sym_PLUS2] = ACTIONS(2108), + [anon_sym_bit_DASHshl2] = ACTIONS(2106), + [anon_sym_bit_DASHshr2] = ACTIONS(2106), + [anon_sym_bit_DASHand2] = ACTIONS(2106), + [anon_sym_bit_DASHxor2] = ACTIONS(2106), + [anon_sym_bit_DASHor2] = ACTIONS(2106), + [anon_sym_err_GT] = ACTIONS(2108), + [anon_sym_out_GT] = ACTIONS(2108), + [anon_sym_e_GT] = ACTIONS(2108), + [anon_sym_o_GT] = ACTIONS(2108), + [anon_sym_err_PLUSout_GT] = ACTIONS(2108), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2108), + [anon_sym_o_PLUSe_GT] = ACTIONS(2108), + [anon_sym_e_PLUSo_GT] = ACTIONS(2108), + [anon_sym_err_GT_GT] = ACTIONS(2106), + [anon_sym_out_GT_GT] = ACTIONS(2106), + [anon_sym_e_GT_GT] = ACTIONS(2106), + [anon_sym_o_GT_GT] = ACTIONS(2106), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2106), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2106), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2106), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2106), [anon_sym_POUND] = ACTIONS(3), }, [STATE(687)] = { [sym_comment] = STATE(687), - [ts_builtin_sym_end] = ACTIONS(1448), - [anon_sym_in] = ACTIONS(1448), - [sym__newline] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_err_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_GT_PIPE] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), - [anon_sym_GT2] = ACTIONS(1446), - [anon_sym_DASH2] = ACTIONS(1448), - [anon_sym_STAR2] = ACTIONS(1446), - [anon_sym_and2] = ACTIONS(1448), - [anon_sym_xor2] = ACTIONS(1448), - [anon_sym_or2] = ACTIONS(1448), - [anon_sym_not_DASHin2] = ACTIONS(1448), - [anon_sym_has2] = ACTIONS(1448), - [anon_sym_not_DASHhas2] = ACTIONS(1448), - [anon_sym_starts_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1448), - [anon_sym_ends_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), - [anon_sym_EQ_EQ2] = ACTIONS(1448), - [anon_sym_BANG_EQ2] = ACTIONS(1448), - [anon_sym_LT2] = ACTIONS(1446), - [anon_sym_LT_EQ2] = ACTIONS(1448), - [anon_sym_GT_EQ2] = ACTIONS(1448), - [anon_sym_EQ_TILDE2] = ACTIONS(1448), - [anon_sym_BANG_TILDE2] = ACTIONS(1448), - [anon_sym_like2] = ACTIONS(1448), - [anon_sym_not_DASHlike2] = ACTIONS(1448), - [anon_sym_STAR_STAR2] = ACTIONS(1448), - [anon_sym_PLUS_PLUS2] = ACTIONS(1448), - [anon_sym_SLASH2] = ACTIONS(1446), - [anon_sym_mod2] = ACTIONS(1448), - [anon_sym_SLASH_SLASH2] = ACTIONS(1448), - [anon_sym_PLUS2] = ACTIONS(1446), - [anon_sym_bit_DASHshl2] = ACTIONS(1448), - [anon_sym_bit_DASHshr2] = ACTIONS(1448), - [anon_sym_bit_DASHand2] = ACTIONS(1448), - [anon_sym_bit_DASHxor2] = ACTIONS(1448), - [anon_sym_bit_DASHor2] = ACTIONS(1448), - [anon_sym_DOT_DOT2] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1446), - [anon_sym_out_GT] = ACTIONS(1446), - [anon_sym_e_GT] = ACTIONS(1446), - [anon_sym_o_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT] = ACTIONS(1446), - [anon_sym_err_GT_GT] = ACTIONS(1448), - [anon_sym_out_GT_GT] = ACTIONS(1448), - [anon_sym_e_GT_GT] = ACTIONS(1448), - [anon_sym_o_GT_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), + [ts_builtin_sym_end] = ACTIONS(2001), + [anon_sym_in] = ACTIONS(2001), + [sym__newline] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_err_GT_PIPE] = ACTIONS(2001), + [anon_sym_out_GT_PIPE] = ACTIONS(2001), + [anon_sym_e_GT_PIPE] = ACTIONS(2001), + [anon_sym_o_GT_PIPE] = ACTIONS(2001), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2001), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2001), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2001), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2001), + [anon_sym_GT2] = ACTIONS(2003), + [anon_sym_DASH2] = ACTIONS(2001), + [anon_sym_STAR2] = ACTIONS(2003), + [anon_sym_and2] = ACTIONS(2001), + [anon_sym_xor2] = ACTIONS(2001), + [anon_sym_or2] = ACTIONS(2001), + [anon_sym_not_DASHin2] = ACTIONS(2001), + [anon_sym_has2] = ACTIONS(2001), + [anon_sym_not_DASHhas2] = ACTIONS(2001), + [anon_sym_starts_DASHwith2] = ACTIONS(2001), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2001), + [anon_sym_ends_DASHwith2] = ACTIONS(2001), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2001), + [anon_sym_EQ_EQ2] = ACTIONS(2001), + [anon_sym_BANG_EQ2] = ACTIONS(2001), + [anon_sym_LT2] = ACTIONS(2003), + [anon_sym_LT_EQ2] = ACTIONS(2001), + [anon_sym_GT_EQ2] = ACTIONS(2001), + [anon_sym_EQ_TILDE2] = ACTIONS(2001), + [anon_sym_BANG_TILDE2] = ACTIONS(2001), + [anon_sym_like2] = ACTIONS(2001), + [anon_sym_not_DASHlike2] = ACTIONS(2001), + [anon_sym_LPAREN2] = ACTIONS(2005), + [anon_sym_STAR_STAR2] = ACTIONS(2001), + [anon_sym_PLUS_PLUS2] = ACTIONS(2001), + [anon_sym_SLASH2] = ACTIONS(2003), + [anon_sym_mod2] = ACTIONS(2001), + [anon_sym_SLASH_SLASH2] = ACTIONS(2001), + [anon_sym_PLUS2] = ACTIONS(2003), + [anon_sym_bit_DASHshl2] = ACTIONS(2001), + [anon_sym_bit_DASHshr2] = ACTIONS(2001), + [anon_sym_bit_DASHand2] = ACTIONS(2001), + [anon_sym_bit_DASHxor2] = ACTIONS(2001), + [anon_sym_bit_DASHor2] = ACTIONS(2001), + [anon_sym_DOT_DOT2] = ACTIONS(2110), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2112), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2112), + [anon_sym_err_GT] = ACTIONS(2003), + [anon_sym_out_GT] = ACTIONS(2003), + [anon_sym_e_GT] = ACTIONS(2003), + [anon_sym_o_GT] = ACTIONS(2003), + [anon_sym_err_PLUSout_GT] = ACTIONS(2003), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2003), + [anon_sym_o_PLUSe_GT] = ACTIONS(2003), + [anon_sym_e_PLUSo_GT] = ACTIONS(2003), + [anon_sym_err_GT_GT] = ACTIONS(2001), + [anon_sym_out_GT_GT] = ACTIONS(2001), + [anon_sym_e_GT_GT] = ACTIONS(2001), + [anon_sym_o_GT_GT] = ACTIONS(2001), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2001), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2001), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2001), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2001), + [sym__unquoted_pattern] = ACTIONS(1598), [anon_sym_POUND] = ACTIONS(3), }, [STATE(688)] = { [sym_comment] = STATE(688), - [ts_builtin_sym_end] = ACTIONS(1448), - [anon_sym_in] = ACTIONS(1448), - [sym__newline] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_err_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_GT_PIPE] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1448), - [anon_sym_GT2] = ACTIONS(1446), - [anon_sym_DASH2] = ACTIONS(1448), - [anon_sym_STAR2] = ACTIONS(1446), - [anon_sym_and2] = ACTIONS(1448), - [anon_sym_xor2] = ACTIONS(1448), - [anon_sym_or2] = ACTIONS(1448), - [anon_sym_not_DASHin2] = ACTIONS(1448), - [anon_sym_has2] = ACTIONS(1448), - [anon_sym_not_DASHhas2] = ACTIONS(1448), - [anon_sym_starts_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1448), - [anon_sym_ends_DASHwith2] = ACTIONS(1448), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1448), - [anon_sym_EQ_EQ2] = ACTIONS(1448), - [anon_sym_BANG_EQ2] = ACTIONS(1448), - [anon_sym_LT2] = ACTIONS(1446), - [anon_sym_LT_EQ2] = ACTIONS(1448), - [anon_sym_GT_EQ2] = ACTIONS(1448), - [anon_sym_EQ_TILDE2] = ACTIONS(1448), - [anon_sym_BANG_TILDE2] = ACTIONS(1448), - [anon_sym_like2] = ACTIONS(1448), - [anon_sym_not_DASHlike2] = ACTIONS(1448), - [anon_sym_STAR_STAR2] = ACTIONS(1448), - [anon_sym_PLUS_PLUS2] = ACTIONS(1448), - [anon_sym_SLASH2] = ACTIONS(1446), - [anon_sym_mod2] = ACTIONS(1448), - [anon_sym_SLASH_SLASH2] = ACTIONS(1448), - [anon_sym_PLUS2] = ACTIONS(1446), - [anon_sym_bit_DASHshl2] = ACTIONS(1448), - [anon_sym_bit_DASHshr2] = ACTIONS(1448), - [anon_sym_bit_DASHand2] = ACTIONS(1448), - [anon_sym_bit_DASHxor2] = ACTIONS(1448), - [anon_sym_bit_DASHor2] = ACTIONS(1448), - [anon_sym_DOT_DOT2] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1448), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1448), - [anon_sym_QMARK2] = ACTIONS(2126), - [anon_sym_DOT2] = ACTIONS(1446), - [anon_sym_err_GT] = ACTIONS(1446), - [anon_sym_out_GT] = ACTIONS(1446), - [anon_sym_e_GT] = ACTIONS(1446), - [anon_sym_o_GT] = ACTIONS(1446), - [anon_sym_err_PLUSout_GT] = ACTIONS(1446), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1446), - [anon_sym_o_PLUSe_GT] = ACTIONS(1446), - [anon_sym_e_PLUSo_GT] = ACTIONS(1446), - [anon_sym_err_GT_GT] = ACTIONS(1448), - [anon_sym_out_GT_GT] = ACTIONS(1448), - [anon_sym_e_GT_GT] = ACTIONS(1448), - [anon_sym_o_GT_GT] = ACTIONS(1448), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1448), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1448), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1448), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1448), + [ts_builtin_sym_end] = ACTIONS(2011), + [anon_sym_in] = ACTIONS(2011), + [sym__newline] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_err_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_GT_PIPE] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), + [anon_sym_GT2] = ACTIONS(2013), + [anon_sym_DASH2] = ACTIONS(2011), + [anon_sym_STAR2] = ACTIONS(2013), + [anon_sym_and2] = ACTIONS(2011), + [anon_sym_xor2] = ACTIONS(2011), + [anon_sym_or2] = ACTIONS(2011), + [anon_sym_not_DASHin2] = ACTIONS(2011), + [anon_sym_has2] = ACTIONS(2011), + [anon_sym_not_DASHhas2] = ACTIONS(2011), + [anon_sym_starts_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2011), + [anon_sym_ends_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2011), + [anon_sym_EQ_EQ2] = ACTIONS(2011), + [anon_sym_BANG_EQ2] = ACTIONS(2011), + [anon_sym_LT2] = ACTIONS(2013), + [anon_sym_LT_EQ2] = ACTIONS(2011), + [anon_sym_GT_EQ2] = ACTIONS(2011), + [anon_sym_EQ_TILDE2] = ACTIONS(2011), + [anon_sym_BANG_TILDE2] = ACTIONS(2011), + [anon_sym_like2] = ACTIONS(2011), + [anon_sym_not_DASHlike2] = ACTIONS(2011), + [anon_sym_LPAREN2] = ACTIONS(2015), + [anon_sym_STAR_STAR2] = ACTIONS(2011), + [anon_sym_PLUS_PLUS2] = ACTIONS(2011), + [anon_sym_SLASH2] = ACTIONS(2013), + [anon_sym_mod2] = ACTIONS(2011), + [anon_sym_SLASH_SLASH2] = ACTIONS(2011), + [anon_sym_PLUS2] = ACTIONS(2013), + [anon_sym_bit_DASHshl2] = ACTIONS(2011), + [anon_sym_bit_DASHshr2] = ACTIONS(2011), + [anon_sym_bit_DASHand2] = ACTIONS(2011), + [anon_sym_bit_DASHxor2] = ACTIONS(2011), + [anon_sym_bit_DASHor2] = ACTIONS(2011), + [anon_sym_DOT_DOT2] = ACTIONS(2114), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2116), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2116), + [anon_sym_err_GT] = ACTIONS(2013), + [anon_sym_out_GT] = ACTIONS(2013), + [anon_sym_e_GT] = ACTIONS(2013), + [anon_sym_o_GT] = ACTIONS(2013), + [anon_sym_err_PLUSout_GT] = ACTIONS(2013), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2013), + [anon_sym_o_PLUSe_GT] = ACTIONS(2013), + [anon_sym_e_PLUSo_GT] = ACTIONS(2013), + [anon_sym_err_GT_GT] = ACTIONS(2011), + [anon_sym_out_GT_GT] = ACTIONS(2011), + [anon_sym_e_GT_GT] = ACTIONS(2011), + [anon_sym_o_GT_GT] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), + [sym__unquoted_pattern] = ACTIONS(2021), [anon_sym_POUND] = ACTIONS(3), }, [STATE(689)] = { [sym_comment] = STATE(689), - [anon_sym_in] = ACTIONS(2074), - [sym__newline] = ACTIONS(2074), - [anon_sym_SEMI] = ACTIONS(2074), - [anon_sym_PIPE] = ACTIONS(2074), - [anon_sym_err_GT_PIPE] = ACTIONS(2074), - [anon_sym_out_GT_PIPE] = ACTIONS(2074), - [anon_sym_e_GT_PIPE] = ACTIONS(2074), - [anon_sym_o_GT_PIPE] = ACTIONS(2074), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2074), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2074), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2074), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2074), - [anon_sym_RPAREN] = ACTIONS(2074), - [anon_sym_GT2] = ACTIONS(2078), - [anon_sym_DASH2] = ACTIONS(2074), - [anon_sym_LBRACE] = ACTIONS(2074), - [anon_sym_RBRACE] = ACTIONS(2074), - [anon_sym_STAR2] = ACTIONS(2078), - [anon_sym_and2] = ACTIONS(2074), - [anon_sym_xor2] = ACTIONS(2074), - [anon_sym_or2] = ACTIONS(2074), - [anon_sym_not_DASHin2] = ACTIONS(2074), - [anon_sym_has2] = ACTIONS(2074), - [anon_sym_not_DASHhas2] = ACTIONS(2074), - [anon_sym_starts_DASHwith2] = ACTIONS(2074), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2074), - [anon_sym_ends_DASHwith2] = ACTIONS(2074), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2074), - [anon_sym_EQ_EQ2] = ACTIONS(2074), - [anon_sym_BANG_EQ2] = ACTIONS(2074), - [anon_sym_LT2] = ACTIONS(2078), - [anon_sym_LT_EQ2] = ACTIONS(2074), - [anon_sym_GT_EQ2] = ACTIONS(2074), - [anon_sym_EQ_TILDE2] = ACTIONS(2074), - [anon_sym_BANG_TILDE2] = ACTIONS(2074), - [anon_sym_like2] = ACTIONS(2074), - [anon_sym_not_DASHlike2] = ACTIONS(2074), - [anon_sym_STAR_STAR2] = ACTIONS(2074), - [anon_sym_PLUS_PLUS2] = ACTIONS(2074), - [anon_sym_SLASH2] = ACTIONS(2078), - [anon_sym_mod2] = ACTIONS(2074), - [anon_sym_SLASH_SLASH2] = ACTIONS(2074), - [anon_sym_PLUS2] = ACTIONS(2078), - [anon_sym_bit_DASHshl2] = ACTIONS(2074), - [anon_sym_bit_DASHshr2] = ACTIONS(2074), - [anon_sym_bit_DASHand2] = ACTIONS(2074), - [anon_sym_bit_DASHxor2] = ACTIONS(2074), - [anon_sym_bit_DASHor2] = ACTIONS(2074), - [anon_sym_DOT_DOT2] = ACTIONS(1619), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), - [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(2074), - [anon_sym_out_GT_GT] = ACTIONS(2074), - [anon_sym_e_GT_GT] = ACTIONS(2074), - [anon_sym_o_GT_GT] = ACTIONS(2074), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2074), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2074), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2074), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2074), + [ts_builtin_sym_end] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1816), + [sym__newline] = ACTIONS(1816), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_PIPE] = ACTIONS(1816), + [anon_sym_err_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_GT_PIPE] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1816), + [anon_sym_GT2] = ACTIONS(1818), + [anon_sym_DASH2] = ACTIONS(1816), + [anon_sym_STAR2] = ACTIONS(1818), + [anon_sym_and2] = ACTIONS(1816), + [anon_sym_xor2] = ACTIONS(1816), + [anon_sym_or2] = ACTIONS(1816), + [anon_sym_not_DASHin2] = ACTIONS(1816), + [anon_sym_has2] = ACTIONS(1816), + [anon_sym_not_DASHhas2] = ACTIONS(1816), + [anon_sym_starts_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1816), + [anon_sym_ends_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1816), + [anon_sym_EQ_EQ2] = ACTIONS(1816), + [anon_sym_BANG_EQ2] = ACTIONS(1816), + [anon_sym_LT2] = ACTIONS(1818), + [anon_sym_LT_EQ2] = ACTIONS(1816), + [anon_sym_GT_EQ2] = ACTIONS(1816), + [anon_sym_EQ_TILDE2] = ACTIONS(1816), + [anon_sym_BANG_TILDE2] = ACTIONS(1816), + [anon_sym_like2] = ACTIONS(1816), + [anon_sym_not_DASHlike2] = ACTIONS(1816), + [anon_sym_LPAREN2] = ACTIONS(1816), + [anon_sym_STAR_STAR2] = ACTIONS(1816), + [anon_sym_PLUS_PLUS2] = ACTIONS(1816), + [anon_sym_SLASH2] = ACTIONS(1818), + [anon_sym_mod2] = ACTIONS(1816), + [anon_sym_SLASH_SLASH2] = ACTIONS(1816), + [anon_sym_PLUS2] = ACTIONS(1818), + [anon_sym_bit_DASHshl2] = ACTIONS(1816), + [anon_sym_bit_DASHshr2] = ACTIONS(1816), + [anon_sym_bit_DASHand2] = ACTIONS(1816), + [anon_sym_bit_DASHxor2] = ACTIONS(1816), + [anon_sym_bit_DASHor2] = ACTIONS(1816), + [anon_sym_DOT_DOT2] = ACTIONS(1818), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1816), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1816), + [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(1816), + [anon_sym_out_GT_GT] = ACTIONS(1816), + [anon_sym_e_GT_GT] = ACTIONS(1816), + [anon_sym_o_GT_GT] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1816), + [sym__unquoted_pattern] = ACTIONS(1818), [anon_sym_POUND] = ACTIONS(3), }, [STATE(690)] = { + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(690), - [anon_sym_in] = ACTIONS(1728), - [sym__newline] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_err_GT_PIPE] = ACTIONS(1728), - [anon_sym_out_GT_PIPE] = ACTIONS(1728), - [anon_sym_e_GT_PIPE] = ACTIONS(1728), - [anon_sym_o_GT_PIPE] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1728), - [anon_sym_RPAREN] = ACTIONS(1728), - [anon_sym_GT2] = ACTIONS(1730), - [anon_sym_DASH2] = ACTIONS(1728), - [anon_sym_RBRACE] = ACTIONS(1728), - [anon_sym_STAR2] = ACTIONS(1730), - [anon_sym_and2] = ACTIONS(1728), - [anon_sym_xor2] = ACTIONS(1728), - [anon_sym_or2] = ACTIONS(1728), - [anon_sym_not_DASHin2] = ACTIONS(1728), - [anon_sym_has2] = ACTIONS(1728), - [anon_sym_not_DASHhas2] = ACTIONS(1728), - [anon_sym_starts_DASHwith2] = ACTIONS(1728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1728), - [anon_sym_ends_DASHwith2] = ACTIONS(1728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1728), - [anon_sym_EQ_EQ2] = ACTIONS(1728), - [anon_sym_BANG_EQ2] = ACTIONS(1728), - [anon_sym_LT2] = ACTIONS(1730), - [anon_sym_LT_EQ2] = ACTIONS(1728), - [anon_sym_GT_EQ2] = ACTIONS(1728), - [anon_sym_EQ_TILDE2] = ACTIONS(1728), - [anon_sym_BANG_TILDE2] = ACTIONS(1728), - [anon_sym_like2] = ACTIONS(1728), - [anon_sym_not_DASHlike2] = ACTIONS(1728), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_STAR_STAR2] = ACTIONS(1728), - [anon_sym_PLUS_PLUS2] = ACTIONS(1728), - [anon_sym_SLASH2] = ACTIONS(1730), - [anon_sym_mod2] = ACTIONS(1728), - [anon_sym_SLASH_SLASH2] = ACTIONS(1728), - [anon_sym_PLUS2] = ACTIONS(1730), - [anon_sym_bit_DASHshl2] = ACTIONS(1728), - [anon_sym_bit_DASHshr2] = ACTIONS(1728), - [anon_sym_bit_DASHand2] = ACTIONS(1728), - [anon_sym_bit_DASHxor2] = ACTIONS(1728), - [anon_sym_bit_DASHor2] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(2128), - [aux_sym__immediate_decimal_token5] = ACTIONS(2130), - [anon_sym_err_GT] = ACTIONS(1730), - [anon_sym_out_GT] = ACTIONS(1730), - [anon_sym_e_GT] = ACTIONS(1730), - [anon_sym_o_GT] = ACTIONS(1730), - [anon_sym_err_PLUSout_GT] = ACTIONS(1730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1730), - [anon_sym_o_PLUSe_GT] = ACTIONS(1730), - [anon_sym_e_PLUSo_GT] = ACTIONS(1730), - [anon_sym_err_GT_GT] = ACTIONS(1728), - [anon_sym_out_GT_GT] = ACTIONS(1728), - [anon_sym_e_GT_GT] = ACTIONS(1728), - [anon_sym_o_GT_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1728), - [sym__unquoted_pattern] = ACTIONS(1730), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(691)] = { - [sym__expr_parenthesized_immediate] = STATE(5243), - [sym_comment] = STATE(691), - [anon_sym_in] = ACTIONS(2132), - [sym__newline] = ACTIONS(2132), - [anon_sym_SEMI] = ACTIONS(2132), - [anon_sym_PIPE] = ACTIONS(2132), - [anon_sym_err_GT_PIPE] = ACTIONS(2132), - [anon_sym_out_GT_PIPE] = ACTIONS(2132), - [anon_sym_e_GT_PIPE] = ACTIONS(2132), - [anon_sym_o_GT_PIPE] = ACTIONS(2132), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2132), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2132), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2132), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2132), - [anon_sym_RPAREN] = ACTIONS(2132), - [anon_sym_GT2] = ACTIONS(2134), - [anon_sym_DASH2] = ACTIONS(2132), - [anon_sym_LBRACE] = ACTIONS(2132), - [anon_sym_RBRACE] = ACTIONS(2132), - [anon_sym_EQ_GT] = ACTIONS(2132), - [anon_sym_STAR2] = ACTIONS(2134), - [anon_sym_and2] = ACTIONS(2132), - [anon_sym_xor2] = ACTIONS(2132), - [anon_sym_or2] = ACTIONS(2132), - [anon_sym_not_DASHin2] = ACTIONS(2132), - [anon_sym_has2] = ACTIONS(2132), - [anon_sym_not_DASHhas2] = ACTIONS(2132), - [anon_sym_starts_DASHwith2] = ACTIONS(2132), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2132), - [anon_sym_ends_DASHwith2] = ACTIONS(2132), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2132), - [anon_sym_EQ_EQ2] = ACTIONS(2132), - [anon_sym_BANG_EQ2] = ACTIONS(2132), - [anon_sym_LT2] = ACTIONS(2134), - [anon_sym_LT_EQ2] = ACTIONS(2132), - [anon_sym_GT_EQ2] = ACTIONS(2132), - [anon_sym_EQ_TILDE2] = ACTIONS(2132), - [anon_sym_BANG_TILDE2] = ACTIONS(2132), - [anon_sym_like2] = ACTIONS(2132), - [anon_sym_not_DASHlike2] = ACTIONS(2132), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2132), - [anon_sym_PLUS_PLUS2] = ACTIONS(2132), - [anon_sym_SLASH2] = ACTIONS(2134), - [anon_sym_mod2] = ACTIONS(2132), - [anon_sym_SLASH_SLASH2] = ACTIONS(2132), - [anon_sym_PLUS2] = ACTIONS(2134), - [anon_sym_bit_DASHshl2] = ACTIONS(2132), - [anon_sym_bit_DASHshr2] = ACTIONS(2132), - [anon_sym_bit_DASHand2] = ACTIONS(2132), - [anon_sym_bit_DASHxor2] = ACTIONS(2132), - [anon_sym_bit_DASHor2] = ACTIONS(2132), - [anon_sym_err_GT] = ACTIONS(2134), - [anon_sym_out_GT] = ACTIONS(2134), - [anon_sym_e_GT] = ACTIONS(2134), - [anon_sym_o_GT] = ACTIONS(2134), - [anon_sym_err_PLUSout_GT] = ACTIONS(2134), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2134), - [anon_sym_o_PLUSe_GT] = ACTIONS(2134), - [anon_sym_e_PLUSo_GT] = ACTIONS(2134), - [anon_sym_err_GT_GT] = ACTIONS(2132), - [anon_sym_out_GT_GT] = ACTIONS(2132), - [anon_sym_e_GT_GT] = ACTIONS(2132), - [anon_sym_o_GT_GT] = ACTIONS(2132), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2132), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2132), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2132), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2132), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(692)] = { - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(692), [anon_sym_in] = ACTIONS(2062), [sym__newline] = ACTIONS(2062), [anon_sym_SEMI] = ACTIONS(2062), @@ -100230,7 +100123,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2062), [anon_sym_like2] = ACTIONS(2062), [anon_sym_not_DASHlike2] = ACTIONS(2062), - [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_LPAREN2] = ACTIONS(1714), [anon_sym_STAR_STAR2] = ACTIONS(2062), [anon_sym_PLUS_PLUS2] = ACTIONS(2062), [anon_sym_SLASH2] = ACTIONS(2064), @@ -100260,9 +100153,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(693)] = { - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(693), + [STATE(691)] = { + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(691), [anon_sym_in] = ACTIONS(2062), [sym__newline] = ACTIONS(2062), [anon_sym_SEMI] = ACTIONS(2062), @@ -100301,7 +100194,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2062), [anon_sym_like2] = ACTIONS(2062), [anon_sym_not_DASHlike2] = ACTIONS(2062), - [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_LPAREN2] = ACTIONS(1714), [anon_sym_STAR_STAR2] = ACTIONS(2062), [anon_sym_PLUS_PLUS2] = ACTIONS(2062), [anon_sym_SLASH2] = ACTIONS(2064), @@ -100331,9 +100224,790 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(692)] = { + [sym_comment] = STATE(692), + [anon_sym_in] = ACTIONS(2118), + [sym__newline] = ACTIONS(2120), + [anon_sym_SEMI] = ACTIONS(2120), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_err_GT_PIPE] = ACTIONS(2120), + [anon_sym_out_GT_PIPE] = ACTIONS(2120), + [anon_sym_e_GT_PIPE] = ACTIONS(2120), + [anon_sym_o_GT_PIPE] = ACTIONS(2120), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2120), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2120), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2120), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2120), + [anon_sym_RPAREN] = ACTIONS(2120), + [anon_sym_GT2] = ACTIONS(2122), + [anon_sym_DASH2] = ACTIONS(2118), + [anon_sym_LBRACE] = ACTIONS(2120), + [anon_sym_RBRACE] = ACTIONS(2120), + [anon_sym_STAR2] = ACTIONS(2122), + [anon_sym_and2] = ACTIONS(2118), + [anon_sym_xor2] = ACTIONS(2118), + [anon_sym_or2] = ACTIONS(2118), + [anon_sym_not_DASHin2] = ACTIONS(2118), + [anon_sym_has2] = ACTIONS(2118), + [anon_sym_not_DASHhas2] = ACTIONS(2118), + [anon_sym_starts_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2118), + [anon_sym_ends_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2118), + [anon_sym_EQ_EQ2] = ACTIONS(2118), + [anon_sym_BANG_EQ2] = ACTIONS(2118), + [anon_sym_LT2] = ACTIONS(2122), + [anon_sym_LT_EQ2] = ACTIONS(2118), + [anon_sym_GT_EQ2] = ACTIONS(2118), + [anon_sym_EQ_TILDE2] = ACTIONS(2118), + [anon_sym_BANG_TILDE2] = ACTIONS(2118), + [anon_sym_like2] = ACTIONS(2118), + [anon_sym_not_DASHlike2] = ACTIONS(2118), + [anon_sym_STAR_STAR2] = ACTIONS(2118), + [anon_sym_PLUS_PLUS2] = ACTIONS(2118), + [anon_sym_SLASH2] = ACTIONS(2122), + [anon_sym_mod2] = ACTIONS(2118), + [anon_sym_SLASH_SLASH2] = ACTIONS(2118), + [anon_sym_PLUS2] = ACTIONS(2122), + [anon_sym_bit_DASHshl2] = ACTIONS(2118), + [anon_sym_bit_DASHshr2] = ACTIONS(2118), + [anon_sym_bit_DASHand2] = ACTIONS(2118), + [anon_sym_bit_DASHxor2] = ACTIONS(2118), + [anon_sym_bit_DASHor2] = ACTIONS(2118), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), + [anon_sym_err_GT] = ACTIONS(2124), + [anon_sym_out_GT] = ACTIONS(2124), + [anon_sym_e_GT] = ACTIONS(2124), + [anon_sym_o_GT] = ACTIONS(2124), + [anon_sym_err_PLUSout_GT] = ACTIONS(2124), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2124), + [anon_sym_o_PLUSe_GT] = ACTIONS(2124), + [anon_sym_e_PLUSo_GT] = ACTIONS(2124), + [anon_sym_err_GT_GT] = ACTIONS(2120), + [anon_sym_out_GT_GT] = ACTIONS(2120), + [anon_sym_e_GT_GT] = ACTIONS(2120), + [anon_sym_o_GT_GT] = ACTIONS(2120), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2120), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2120), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2120), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2120), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(693)] = { + [sym_comment] = STATE(693), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_in] = ACTIONS(2126), + [sym__newline] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym_PIPE] = ACTIONS(2126), + [anon_sym_err_GT_PIPE] = ACTIONS(2126), + [anon_sym_out_GT_PIPE] = ACTIONS(2126), + [anon_sym_e_GT_PIPE] = ACTIONS(2126), + [anon_sym_o_GT_PIPE] = ACTIONS(2126), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2126), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2126), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2126), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2126), + [anon_sym_RPAREN] = ACTIONS(2126), + [anon_sym_GT2] = ACTIONS(2128), + [anon_sym_DASH2] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(2126), + [anon_sym_RBRACE] = ACTIONS(2126), + [anon_sym_EQ_GT] = ACTIONS(2126), + [anon_sym_STAR2] = ACTIONS(2128), + [anon_sym_and2] = ACTIONS(2126), + [anon_sym_xor2] = ACTIONS(2126), + [anon_sym_or2] = ACTIONS(2126), + [anon_sym_not_DASHin2] = ACTIONS(2126), + [anon_sym_has2] = ACTIONS(2126), + [anon_sym_not_DASHhas2] = ACTIONS(2126), + [anon_sym_starts_DASHwith2] = ACTIONS(2126), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2126), + [anon_sym_ends_DASHwith2] = ACTIONS(2126), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2126), + [anon_sym_EQ_EQ2] = ACTIONS(2126), + [anon_sym_BANG_EQ2] = ACTIONS(2126), + [anon_sym_LT2] = ACTIONS(2128), + [anon_sym_LT_EQ2] = ACTIONS(2126), + [anon_sym_GT_EQ2] = ACTIONS(2126), + [anon_sym_EQ_TILDE2] = ACTIONS(2126), + [anon_sym_BANG_TILDE2] = ACTIONS(2126), + [anon_sym_like2] = ACTIONS(2126), + [anon_sym_not_DASHlike2] = ACTIONS(2126), + [anon_sym_STAR_STAR2] = ACTIONS(2126), + [anon_sym_PLUS_PLUS2] = ACTIONS(2126), + [anon_sym_SLASH2] = ACTIONS(2128), + [anon_sym_mod2] = ACTIONS(2126), + [anon_sym_SLASH_SLASH2] = ACTIONS(2126), + [anon_sym_PLUS2] = ACTIONS(2128), + [anon_sym_bit_DASHshl2] = ACTIONS(2126), + [anon_sym_bit_DASHshr2] = ACTIONS(2126), + [anon_sym_bit_DASHand2] = ACTIONS(2126), + [anon_sym_bit_DASHxor2] = ACTIONS(2126), + [anon_sym_bit_DASHor2] = ACTIONS(2126), + [anon_sym_COLON2] = ACTIONS(2126), + [anon_sym_err_GT] = ACTIONS(2128), + [anon_sym_out_GT] = ACTIONS(2128), + [anon_sym_e_GT] = ACTIONS(2128), + [anon_sym_o_GT] = ACTIONS(2128), + [anon_sym_err_PLUSout_GT] = ACTIONS(2128), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2128), + [anon_sym_o_PLUSe_GT] = ACTIONS(2128), + [anon_sym_e_PLUSo_GT] = ACTIONS(2128), + [anon_sym_err_GT_GT] = ACTIONS(2126), + [anon_sym_out_GT_GT] = ACTIONS(2126), + [anon_sym_e_GT_GT] = ACTIONS(2126), + [anon_sym_o_GT_GT] = ACTIONS(2126), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2126), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2126), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2126), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2126), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(694)] = { - [sym__expr_parenthesized_immediate] = STATE(4728), [sym_comment] = STATE(694), + [anon_sym_if] = ACTIONS(2130), + [anon_sym_in] = ACTIONS(2130), + [sym__newline] = ACTIONS(2130), + [anon_sym_SEMI] = ACTIONS(2130), + [anon_sym_PIPE] = ACTIONS(2130), + [anon_sym_err_GT_PIPE] = ACTIONS(2130), + [anon_sym_out_GT_PIPE] = ACTIONS(2130), + [anon_sym_e_GT_PIPE] = ACTIONS(2130), + [anon_sym_o_GT_PIPE] = ACTIONS(2130), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2130), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2130), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2130), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2130), + [anon_sym_RPAREN] = ACTIONS(2130), + [anon_sym_GT2] = ACTIONS(2132), + [anon_sym_DASH2] = ACTIONS(2130), + [anon_sym_LBRACE] = ACTIONS(2130), + [anon_sym_RBRACE] = ACTIONS(2130), + [anon_sym_EQ_GT] = ACTIONS(2130), + [anon_sym_STAR2] = ACTIONS(2132), + [anon_sym_and2] = ACTIONS(2130), + [anon_sym_xor2] = ACTIONS(2130), + [anon_sym_or2] = ACTIONS(2130), + [anon_sym_not_DASHin2] = ACTIONS(2130), + [anon_sym_has2] = ACTIONS(2130), + [anon_sym_not_DASHhas2] = ACTIONS(2130), + [anon_sym_starts_DASHwith2] = ACTIONS(2130), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2130), + [anon_sym_ends_DASHwith2] = ACTIONS(2130), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2130), + [anon_sym_EQ_EQ2] = ACTIONS(2130), + [anon_sym_BANG_EQ2] = ACTIONS(2130), + [anon_sym_LT2] = ACTIONS(2132), + [anon_sym_LT_EQ2] = ACTIONS(2130), + [anon_sym_GT_EQ2] = ACTIONS(2130), + [anon_sym_EQ_TILDE2] = ACTIONS(2130), + [anon_sym_BANG_TILDE2] = ACTIONS(2130), + [anon_sym_like2] = ACTIONS(2130), + [anon_sym_not_DASHlike2] = ACTIONS(2130), + [anon_sym_LPAREN2] = ACTIONS(2130), + [anon_sym_STAR_STAR2] = ACTIONS(2130), + [anon_sym_PLUS_PLUS2] = ACTIONS(2130), + [anon_sym_SLASH2] = ACTIONS(2132), + [anon_sym_mod2] = ACTIONS(2130), + [anon_sym_SLASH_SLASH2] = ACTIONS(2130), + [anon_sym_PLUS2] = ACTIONS(2132), + [anon_sym_bit_DASHshl2] = ACTIONS(2130), + [anon_sym_bit_DASHshr2] = ACTIONS(2130), + [anon_sym_bit_DASHand2] = ACTIONS(2130), + [anon_sym_bit_DASHxor2] = ACTIONS(2130), + [anon_sym_bit_DASHor2] = ACTIONS(2130), + [anon_sym_err_GT] = ACTIONS(2132), + [anon_sym_out_GT] = ACTIONS(2132), + [anon_sym_e_GT] = ACTIONS(2132), + [anon_sym_o_GT] = ACTIONS(2132), + [anon_sym_err_PLUSout_GT] = ACTIONS(2132), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2132), + [anon_sym_o_PLUSe_GT] = ACTIONS(2132), + [anon_sym_e_PLUSo_GT] = ACTIONS(2132), + [anon_sym_err_GT_GT] = ACTIONS(2130), + [anon_sym_out_GT_GT] = ACTIONS(2130), + [anon_sym_e_GT_GT] = ACTIONS(2130), + [anon_sym_o_GT_GT] = ACTIONS(2130), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2130), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2130), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2130), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2130), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(695)] = { + [sym_comment] = STATE(695), + [anon_sym_in] = ACTIONS(2134), + [sym__newline] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_err_GT_PIPE] = ACTIONS(2134), + [anon_sym_out_GT_PIPE] = ACTIONS(2134), + [anon_sym_e_GT_PIPE] = ACTIONS(2134), + [anon_sym_o_GT_PIPE] = ACTIONS(2134), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2134), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2134), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2134), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2134), + [anon_sym_RPAREN] = ACTIONS(2134), + [anon_sym_GT2] = ACTIONS(2136), + [anon_sym_DASH2] = ACTIONS(2134), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_RBRACE] = ACTIONS(2134), + [anon_sym_STAR2] = ACTIONS(2136), + [anon_sym_and2] = ACTIONS(2134), + [anon_sym_xor2] = ACTIONS(2134), + [anon_sym_or2] = ACTIONS(2134), + [anon_sym_not_DASHin2] = ACTIONS(2134), + [anon_sym_has2] = ACTIONS(2134), + [anon_sym_not_DASHhas2] = ACTIONS(2134), + [anon_sym_starts_DASHwith2] = ACTIONS(2134), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), + [anon_sym_ends_DASHwith2] = ACTIONS(2134), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), + [anon_sym_EQ_EQ2] = ACTIONS(2134), + [anon_sym_BANG_EQ2] = ACTIONS(2134), + [anon_sym_LT2] = ACTIONS(2136), + [anon_sym_LT_EQ2] = ACTIONS(2134), + [anon_sym_GT_EQ2] = ACTIONS(2134), + [anon_sym_EQ_TILDE2] = ACTIONS(2134), + [anon_sym_BANG_TILDE2] = ACTIONS(2134), + [anon_sym_like2] = ACTIONS(2134), + [anon_sym_not_DASHlike2] = ACTIONS(2134), + [anon_sym_STAR_STAR2] = ACTIONS(2134), + [anon_sym_PLUS_PLUS2] = ACTIONS(2134), + [anon_sym_SLASH2] = ACTIONS(2136), + [anon_sym_mod2] = ACTIONS(2134), + [anon_sym_SLASH_SLASH2] = ACTIONS(2134), + [anon_sym_PLUS2] = ACTIONS(2136), + [anon_sym_bit_DASHshl2] = ACTIONS(2134), + [anon_sym_bit_DASHshr2] = ACTIONS(2134), + [anon_sym_bit_DASHand2] = ACTIONS(2134), + [anon_sym_bit_DASHxor2] = ACTIONS(2134), + [anon_sym_bit_DASHor2] = ACTIONS(2134), + [anon_sym_DOT_DOT2] = ACTIONS(2138), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2140), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2140), + [anon_sym_err_GT] = ACTIONS(2136), + [anon_sym_out_GT] = ACTIONS(2136), + [anon_sym_e_GT] = ACTIONS(2136), + [anon_sym_o_GT] = ACTIONS(2136), + [anon_sym_err_PLUSout_GT] = ACTIONS(2136), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2136), + [anon_sym_o_PLUSe_GT] = ACTIONS(2136), + [anon_sym_e_PLUSo_GT] = ACTIONS(2136), + [anon_sym_err_GT_GT] = ACTIONS(2134), + [anon_sym_out_GT_GT] = ACTIONS(2134), + [anon_sym_e_GT_GT] = ACTIONS(2134), + [anon_sym_o_GT_GT] = ACTIONS(2134), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2134), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2134), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2134), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2134), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(696)] = { + [sym_comment] = STATE(696), + [anon_sym_in] = ACTIONS(2001), + [sym__newline] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_err_GT_PIPE] = ACTIONS(2001), + [anon_sym_out_GT_PIPE] = ACTIONS(2001), + [anon_sym_e_GT_PIPE] = ACTIONS(2001), + [anon_sym_o_GT_PIPE] = ACTIONS(2001), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2001), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2001), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2001), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(2001), + [anon_sym_GT2] = ACTIONS(2003), + [anon_sym_DASH2] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2001), + [anon_sym_STAR2] = ACTIONS(2003), + [anon_sym_and2] = ACTIONS(2001), + [anon_sym_xor2] = ACTIONS(2001), + [anon_sym_or2] = ACTIONS(2001), + [anon_sym_not_DASHin2] = ACTIONS(2001), + [anon_sym_has2] = ACTIONS(2001), + [anon_sym_not_DASHhas2] = ACTIONS(2001), + [anon_sym_starts_DASHwith2] = ACTIONS(2001), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2001), + [anon_sym_ends_DASHwith2] = ACTIONS(2001), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2001), + [anon_sym_EQ_EQ2] = ACTIONS(2001), + [anon_sym_BANG_EQ2] = ACTIONS(2001), + [anon_sym_LT2] = ACTIONS(2003), + [anon_sym_LT_EQ2] = ACTIONS(2001), + [anon_sym_GT_EQ2] = ACTIONS(2001), + [anon_sym_EQ_TILDE2] = ACTIONS(2001), + [anon_sym_BANG_TILDE2] = ACTIONS(2001), + [anon_sym_like2] = ACTIONS(2001), + [anon_sym_not_DASHlike2] = ACTIONS(2001), + [anon_sym_STAR_STAR2] = ACTIONS(2001), + [anon_sym_PLUS_PLUS2] = ACTIONS(2001), + [anon_sym_SLASH2] = ACTIONS(2003), + [anon_sym_mod2] = ACTIONS(2001), + [anon_sym_SLASH_SLASH2] = ACTIONS(2001), + [anon_sym_PLUS2] = ACTIONS(2003), + [anon_sym_bit_DASHshl2] = ACTIONS(2001), + [anon_sym_bit_DASHshr2] = ACTIONS(2001), + [anon_sym_bit_DASHand2] = ACTIONS(2001), + [anon_sym_bit_DASHxor2] = ACTIONS(2001), + [anon_sym_bit_DASHor2] = ACTIONS(2001), + [anon_sym_DOT_DOT2] = ACTIONS(2142), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2144), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2144), + [anon_sym_err_GT] = ACTIONS(2003), + [anon_sym_out_GT] = ACTIONS(2003), + [anon_sym_e_GT] = ACTIONS(2003), + [anon_sym_o_GT] = ACTIONS(2003), + [anon_sym_err_PLUSout_GT] = ACTIONS(2003), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2003), + [anon_sym_o_PLUSe_GT] = ACTIONS(2003), + [anon_sym_e_PLUSo_GT] = ACTIONS(2003), + [anon_sym_err_GT_GT] = ACTIONS(2001), + [anon_sym_out_GT_GT] = ACTIONS(2001), + [anon_sym_e_GT_GT] = ACTIONS(2001), + [anon_sym_o_GT_GT] = ACTIONS(2001), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2001), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2001), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2001), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2001), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(697)] = { + [sym_comment] = STATE(697), + [anon_sym_else] = ACTIONS(2146), + [anon_sym_catch] = ACTIONS(2146), + [anon_sym_in] = ACTIONS(2146), + [sym__newline] = ACTIONS(2146), + [anon_sym_SEMI] = ACTIONS(2146), + [anon_sym_PIPE] = ACTIONS(2146), + [anon_sym_err_GT_PIPE] = ACTIONS(2146), + [anon_sym_out_GT_PIPE] = ACTIONS(2146), + [anon_sym_e_GT_PIPE] = ACTIONS(2146), + [anon_sym_o_GT_PIPE] = ACTIONS(2146), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2146), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2146), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2146), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2146), + [anon_sym_COLON] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2146), + [anon_sym_RPAREN] = ACTIONS(2146), + [anon_sym_GT2] = ACTIONS(2148), + [anon_sym_DASH2] = ACTIONS(2146), + [anon_sym_LBRACE] = ACTIONS(2146), + [anon_sym_STAR2] = ACTIONS(2148), + [anon_sym_and2] = ACTIONS(2146), + [anon_sym_xor2] = ACTIONS(2146), + [anon_sym_or2] = ACTIONS(2146), + [anon_sym_not_DASHin2] = ACTIONS(2146), + [anon_sym_has2] = ACTIONS(2146), + [anon_sym_not_DASHhas2] = ACTIONS(2146), + [anon_sym_starts_DASHwith2] = ACTIONS(2146), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2146), + [anon_sym_ends_DASHwith2] = ACTIONS(2146), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2146), + [anon_sym_EQ_EQ2] = ACTIONS(2146), + [anon_sym_BANG_EQ2] = ACTIONS(2146), + [anon_sym_LT2] = ACTIONS(2148), + [anon_sym_LT_EQ2] = ACTIONS(2146), + [anon_sym_GT_EQ2] = ACTIONS(2146), + [anon_sym_EQ_TILDE2] = ACTIONS(2146), + [anon_sym_BANG_TILDE2] = ACTIONS(2146), + [anon_sym_like2] = ACTIONS(2146), + [anon_sym_not_DASHlike2] = ACTIONS(2146), + [anon_sym_STAR_STAR2] = ACTIONS(2146), + [anon_sym_PLUS_PLUS2] = ACTIONS(2146), + [anon_sym_SLASH2] = ACTIONS(2148), + [anon_sym_mod2] = ACTIONS(2146), + [anon_sym_SLASH_SLASH2] = ACTIONS(2146), + [anon_sym_PLUS2] = ACTIONS(2148), + [anon_sym_bit_DASHshl2] = ACTIONS(2146), + [anon_sym_bit_DASHshr2] = ACTIONS(2146), + [anon_sym_bit_DASHand2] = ACTIONS(2146), + [anon_sym_bit_DASHxor2] = ACTIONS(2146), + [anon_sym_bit_DASHor2] = ACTIONS(2146), + [anon_sym_err_GT] = ACTIONS(2148), + [anon_sym_out_GT] = ACTIONS(2148), + [anon_sym_e_GT] = ACTIONS(2148), + [anon_sym_o_GT] = ACTIONS(2148), + [anon_sym_err_PLUSout_GT] = ACTIONS(2148), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2148), + [anon_sym_o_PLUSe_GT] = ACTIONS(2148), + [anon_sym_e_PLUSo_GT] = ACTIONS(2148), + [anon_sym_err_GT_GT] = ACTIONS(2146), + [anon_sym_out_GT_GT] = ACTIONS(2146), + [anon_sym_e_GT_GT] = ACTIONS(2146), + [anon_sym_o_GT_GT] = ACTIONS(2146), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2146), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2146), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2146), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2146), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(698)] = { + [sym_comment] = STATE(698), + [ts_builtin_sym_end] = ACTIONS(1854), + [anon_sym_in] = ACTIONS(1854), + [sym__newline] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1854), + [anon_sym_PIPE] = ACTIONS(1854), + [anon_sym_err_GT_PIPE] = ACTIONS(1854), + [anon_sym_out_GT_PIPE] = ACTIONS(1854), + [anon_sym_e_GT_PIPE] = ACTIONS(1854), + [anon_sym_o_GT_PIPE] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1854), + [anon_sym_GT2] = ACTIONS(1856), + [anon_sym_DASH2] = ACTIONS(1854), + [anon_sym_STAR2] = ACTIONS(1856), + [anon_sym_and2] = ACTIONS(1854), + [anon_sym_xor2] = ACTIONS(1854), + [anon_sym_or2] = ACTIONS(1854), + [anon_sym_not_DASHin2] = ACTIONS(1854), + [anon_sym_has2] = ACTIONS(1854), + [anon_sym_not_DASHhas2] = ACTIONS(1854), + [anon_sym_starts_DASHwith2] = ACTIONS(1854), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1854), + [anon_sym_ends_DASHwith2] = ACTIONS(1854), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1854), + [anon_sym_EQ_EQ2] = ACTIONS(1854), + [anon_sym_BANG_EQ2] = ACTIONS(1854), + [anon_sym_LT2] = ACTIONS(1856), + [anon_sym_LT_EQ2] = ACTIONS(1854), + [anon_sym_GT_EQ2] = ACTIONS(1854), + [anon_sym_EQ_TILDE2] = ACTIONS(1854), + [anon_sym_BANG_TILDE2] = ACTIONS(1854), + [anon_sym_like2] = ACTIONS(1854), + [anon_sym_not_DASHlike2] = ACTIONS(1854), + [anon_sym_LPAREN2] = ACTIONS(1854), + [anon_sym_STAR_STAR2] = ACTIONS(1854), + [anon_sym_PLUS_PLUS2] = ACTIONS(1854), + [anon_sym_SLASH2] = ACTIONS(1856), + [anon_sym_mod2] = ACTIONS(1854), + [anon_sym_SLASH_SLASH2] = ACTIONS(1854), + [anon_sym_PLUS2] = ACTIONS(1856), + [anon_sym_bit_DASHshl2] = ACTIONS(1854), + [anon_sym_bit_DASHshr2] = ACTIONS(1854), + [anon_sym_bit_DASHand2] = ACTIONS(1854), + [anon_sym_bit_DASHxor2] = ACTIONS(1854), + [anon_sym_bit_DASHor2] = ACTIONS(1854), + [anon_sym_DOT_DOT2] = ACTIONS(1856), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1854), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1854), + [anon_sym_err_GT] = ACTIONS(1856), + [anon_sym_out_GT] = ACTIONS(1856), + [anon_sym_e_GT] = ACTIONS(1856), + [anon_sym_o_GT] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT] = ACTIONS(1856), + [anon_sym_err_GT_GT] = ACTIONS(1854), + [anon_sym_out_GT_GT] = ACTIONS(1854), + [anon_sym_e_GT_GT] = ACTIONS(1854), + [anon_sym_o_GT_GT] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1854), + [sym__unquoted_pattern] = ACTIONS(1856), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(699)] = { + [sym_comment] = STATE(699), + [anon_sym_if] = ACTIONS(2150), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_EQ_GT] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_LPAREN2] = ACTIONS(2150), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(700)] = { + [sym_comment] = STATE(700), + [ts_builtin_sym_end] = ACTIONS(1452), + [anon_sym_in] = ACTIONS(1452), + [sym__newline] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_err_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_GT_PIPE] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1452), + [anon_sym_GT2] = ACTIONS(1450), + [anon_sym_DASH2] = ACTIONS(1452), + [anon_sym_STAR2] = ACTIONS(1450), + [anon_sym_and2] = ACTIONS(1452), + [anon_sym_xor2] = ACTIONS(1452), + [anon_sym_or2] = ACTIONS(1452), + [anon_sym_not_DASHin2] = ACTIONS(1452), + [anon_sym_has2] = ACTIONS(1452), + [anon_sym_not_DASHhas2] = ACTIONS(1452), + [anon_sym_starts_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1452), + [anon_sym_ends_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1452), + [anon_sym_EQ_EQ2] = ACTIONS(1452), + [anon_sym_BANG_EQ2] = ACTIONS(1452), + [anon_sym_LT2] = ACTIONS(1450), + [anon_sym_LT_EQ2] = ACTIONS(1452), + [anon_sym_GT_EQ2] = ACTIONS(1452), + [anon_sym_EQ_TILDE2] = ACTIONS(1452), + [anon_sym_BANG_TILDE2] = ACTIONS(1452), + [anon_sym_like2] = ACTIONS(1452), + [anon_sym_not_DASHlike2] = ACTIONS(1452), + [anon_sym_STAR_STAR2] = ACTIONS(1452), + [anon_sym_PLUS_PLUS2] = ACTIONS(1452), + [anon_sym_SLASH2] = ACTIONS(1450), + [anon_sym_mod2] = ACTIONS(1452), + [anon_sym_SLASH_SLASH2] = ACTIONS(1452), + [anon_sym_PLUS2] = ACTIONS(1450), + [anon_sym_bit_DASHshl2] = ACTIONS(1452), + [anon_sym_bit_DASHshr2] = ACTIONS(1452), + [anon_sym_bit_DASHand2] = ACTIONS(1452), + [anon_sym_bit_DASHxor2] = ACTIONS(1452), + [anon_sym_bit_DASHor2] = ACTIONS(1452), + [anon_sym_DOT_DOT2] = ACTIONS(1450), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1452), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(2154), + [anon_sym_DOT2] = ACTIONS(1450), + [anon_sym_err_GT] = ACTIONS(1450), + [anon_sym_out_GT] = ACTIONS(1450), + [anon_sym_e_GT] = ACTIONS(1450), + [anon_sym_o_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT] = ACTIONS(1450), + [anon_sym_err_GT_GT] = ACTIONS(1452), + [anon_sym_out_GT_GT] = ACTIONS(1452), + [anon_sym_e_GT_GT] = ACTIONS(1452), + [anon_sym_o_GT_GT] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(701)] = { + [sym_comment] = STATE(701), + [ts_builtin_sym_end] = ACTIONS(1452), + [anon_sym_in] = ACTIONS(1452), + [sym__newline] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_err_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_GT_PIPE] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1452), + [anon_sym_GT2] = ACTIONS(1450), + [anon_sym_DASH2] = ACTIONS(1452), + [anon_sym_STAR2] = ACTIONS(1450), + [anon_sym_and2] = ACTIONS(1452), + [anon_sym_xor2] = ACTIONS(1452), + [anon_sym_or2] = ACTIONS(1452), + [anon_sym_not_DASHin2] = ACTIONS(1452), + [anon_sym_has2] = ACTIONS(1452), + [anon_sym_not_DASHhas2] = ACTIONS(1452), + [anon_sym_starts_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1452), + [anon_sym_ends_DASHwith2] = ACTIONS(1452), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1452), + [anon_sym_EQ_EQ2] = ACTIONS(1452), + [anon_sym_BANG_EQ2] = ACTIONS(1452), + [anon_sym_LT2] = ACTIONS(1450), + [anon_sym_LT_EQ2] = ACTIONS(1452), + [anon_sym_GT_EQ2] = ACTIONS(1452), + [anon_sym_EQ_TILDE2] = ACTIONS(1452), + [anon_sym_BANG_TILDE2] = ACTIONS(1452), + [anon_sym_like2] = ACTIONS(1452), + [anon_sym_not_DASHlike2] = ACTIONS(1452), + [anon_sym_STAR_STAR2] = ACTIONS(1452), + [anon_sym_PLUS_PLUS2] = ACTIONS(1452), + [anon_sym_SLASH2] = ACTIONS(1450), + [anon_sym_mod2] = ACTIONS(1452), + [anon_sym_SLASH_SLASH2] = ACTIONS(1452), + [anon_sym_PLUS2] = ACTIONS(1450), + [anon_sym_bit_DASHshl2] = ACTIONS(1452), + [anon_sym_bit_DASHshr2] = ACTIONS(1452), + [anon_sym_bit_DASHand2] = ACTIONS(1452), + [anon_sym_bit_DASHxor2] = ACTIONS(1452), + [anon_sym_bit_DASHor2] = ACTIONS(1452), + [anon_sym_DOT_DOT2] = ACTIONS(1450), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1452), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1452), + [anon_sym_QMARK2] = ACTIONS(2156), + [anon_sym_DOT2] = ACTIONS(1450), + [anon_sym_err_GT] = ACTIONS(1450), + [anon_sym_out_GT] = ACTIONS(1450), + [anon_sym_e_GT] = ACTIONS(1450), + [anon_sym_o_GT] = ACTIONS(1450), + [anon_sym_err_PLUSout_GT] = ACTIONS(1450), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1450), + [anon_sym_o_PLUSe_GT] = ACTIONS(1450), + [anon_sym_e_PLUSo_GT] = ACTIONS(1450), + [anon_sym_err_GT_GT] = ACTIONS(1452), + [anon_sym_out_GT_GT] = ACTIONS(1452), + [anon_sym_e_GT_GT] = ACTIONS(1452), + [anon_sym_o_GT_GT] = ACTIONS(1452), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1452), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1452), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1452), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(702)] = { + [sym_comment] = STATE(702), + [anon_sym_in] = ACTIONS(2118), + [sym__newline] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_PIPE] = ACTIONS(2118), + [anon_sym_err_GT_PIPE] = ACTIONS(2118), + [anon_sym_out_GT_PIPE] = ACTIONS(2118), + [anon_sym_e_GT_PIPE] = ACTIONS(2118), + [anon_sym_o_GT_PIPE] = ACTIONS(2118), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2118), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2118), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2118), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2118), + [anon_sym_RPAREN] = ACTIONS(2118), + [anon_sym_GT2] = ACTIONS(2122), + [anon_sym_DASH2] = ACTIONS(2118), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_RBRACE] = ACTIONS(2118), + [anon_sym_STAR2] = ACTIONS(2122), + [anon_sym_and2] = ACTIONS(2118), + [anon_sym_xor2] = ACTIONS(2118), + [anon_sym_or2] = ACTIONS(2118), + [anon_sym_not_DASHin2] = ACTIONS(2118), + [anon_sym_has2] = ACTIONS(2118), + [anon_sym_not_DASHhas2] = ACTIONS(2118), + [anon_sym_starts_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2118), + [anon_sym_ends_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2118), + [anon_sym_EQ_EQ2] = ACTIONS(2118), + [anon_sym_BANG_EQ2] = ACTIONS(2118), + [anon_sym_LT2] = ACTIONS(2122), + [anon_sym_LT_EQ2] = ACTIONS(2118), + [anon_sym_GT_EQ2] = ACTIONS(2118), + [anon_sym_EQ_TILDE2] = ACTIONS(2118), + [anon_sym_BANG_TILDE2] = ACTIONS(2118), + [anon_sym_like2] = ACTIONS(2118), + [anon_sym_not_DASHlike2] = ACTIONS(2118), + [anon_sym_STAR_STAR2] = ACTIONS(2118), + [anon_sym_PLUS_PLUS2] = ACTIONS(2118), + [anon_sym_SLASH2] = ACTIONS(2122), + [anon_sym_mod2] = ACTIONS(2118), + [anon_sym_SLASH_SLASH2] = ACTIONS(2118), + [anon_sym_PLUS2] = ACTIONS(2122), + [anon_sym_bit_DASHshl2] = ACTIONS(2118), + [anon_sym_bit_DASHshr2] = ACTIONS(2118), + [anon_sym_bit_DASHand2] = ACTIONS(2118), + [anon_sym_bit_DASHxor2] = ACTIONS(2118), + [anon_sym_bit_DASHor2] = ACTIONS(2118), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), + [anon_sym_err_GT] = ACTIONS(2122), + [anon_sym_out_GT] = ACTIONS(2122), + [anon_sym_e_GT] = ACTIONS(2122), + [anon_sym_o_GT] = ACTIONS(2122), + [anon_sym_err_PLUSout_GT] = ACTIONS(2122), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2122), + [anon_sym_o_PLUSe_GT] = ACTIONS(2122), + [anon_sym_e_PLUSo_GT] = ACTIONS(2122), + [anon_sym_err_GT_GT] = ACTIONS(2118), + [anon_sym_out_GT_GT] = ACTIONS(2118), + [anon_sym_e_GT_GT] = ACTIONS(2118), + [anon_sym_o_GT_GT] = ACTIONS(2118), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2118), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2118), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2118), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2118), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(703)] = { + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(703), [anon_sym_in] = ACTIONS(2062), [sym__newline] = ACTIONS(2062), [anon_sym_SEMI] = ACTIONS(2062), @@ -100372,7 +101046,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2062), [anon_sym_like2] = ACTIONS(2062), [anon_sym_not_DASHlike2] = ACTIONS(2062), - [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_LPAREN2] = ACTIONS(1714), [anon_sym_STAR_STAR2] = ACTIONS(2062), [anon_sym_PLUS_PLUS2] = ACTIONS(2062), [anon_sym_SLASH2] = ACTIONS(2064), @@ -100402,9 +101076,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(695)] = { - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(695), + [STATE(704)] = { + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(704), [anon_sym_in] = ACTIONS(2062), [sym__newline] = ACTIONS(2062), [anon_sym_SEMI] = ACTIONS(2062), @@ -100443,7 +101117,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2062), [anon_sym_like2] = ACTIONS(2062), [anon_sym_not_DASHlike2] = ACTIONS(2062), - [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_LPAREN2] = ACTIONS(1714), [anon_sym_STAR_STAR2] = ACTIONS(2062), [anon_sym_PLUS_PLUS2] = ACTIONS(2062), [anon_sym_SLASH2] = ACTIONS(2064), @@ -100473,506 +101147,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(696)] = { - [sym_comment] = STATE(696), - [ts_builtin_sym_end] = ACTIONS(1844), - [anon_sym_in] = ACTIONS(1844), - [sym__newline] = ACTIONS(1844), - [anon_sym_SEMI] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_err_GT_PIPE] = ACTIONS(1844), - [anon_sym_out_GT_PIPE] = ACTIONS(1844), - [anon_sym_e_GT_PIPE] = ACTIONS(1844), - [anon_sym_o_GT_PIPE] = ACTIONS(1844), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1844), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1844), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1844), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1844), - [anon_sym_GT2] = ACTIONS(1846), - [anon_sym_DASH2] = ACTIONS(1844), - [anon_sym_STAR2] = ACTIONS(1846), - [anon_sym_and2] = ACTIONS(1844), - [anon_sym_xor2] = ACTIONS(1844), - [anon_sym_or2] = ACTIONS(1844), - [anon_sym_not_DASHin2] = ACTIONS(1844), - [anon_sym_has2] = ACTIONS(1844), - [anon_sym_not_DASHhas2] = ACTIONS(1844), - [anon_sym_starts_DASHwith2] = ACTIONS(1844), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1844), - [anon_sym_ends_DASHwith2] = ACTIONS(1844), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1844), - [anon_sym_EQ_EQ2] = ACTIONS(1844), - [anon_sym_BANG_EQ2] = ACTIONS(1844), - [anon_sym_LT2] = ACTIONS(1846), - [anon_sym_LT_EQ2] = ACTIONS(1844), - [anon_sym_GT_EQ2] = ACTIONS(1844), - [anon_sym_EQ_TILDE2] = ACTIONS(1844), - [anon_sym_BANG_TILDE2] = ACTIONS(1844), - [anon_sym_like2] = ACTIONS(1844), - [anon_sym_not_DASHlike2] = ACTIONS(1844), - [anon_sym_LPAREN2] = ACTIONS(1844), - [anon_sym_STAR_STAR2] = ACTIONS(1844), - [anon_sym_PLUS_PLUS2] = ACTIONS(1844), - [anon_sym_SLASH2] = ACTIONS(1846), - [anon_sym_mod2] = ACTIONS(1844), - [anon_sym_SLASH_SLASH2] = ACTIONS(1844), - [anon_sym_PLUS2] = ACTIONS(1846), - [anon_sym_bit_DASHshl2] = ACTIONS(1844), - [anon_sym_bit_DASHshr2] = ACTIONS(1844), - [anon_sym_bit_DASHand2] = ACTIONS(1844), - [anon_sym_bit_DASHxor2] = ACTIONS(1844), - [anon_sym_bit_DASHor2] = ACTIONS(1844), - [anon_sym_DOT_DOT2] = ACTIONS(1846), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1844), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1844), - [anon_sym_err_GT] = ACTIONS(1846), - [anon_sym_out_GT] = ACTIONS(1846), - [anon_sym_e_GT] = ACTIONS(1846), - [anon_sym_o_GT] = ACTIONS(1846), - [anon_sym_err_PLUSout_GT] = ACTIONS(1846), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1846), - [anon_sym_o_PLUSe_GT] = ACTIONS(1846), - [anon_sym_e_PLUSo_GT] = ACTIONS(1846), - [anon_sym_err_GT_GT] = ACTIONS(1844), - [anon_sym_out_GT_GT] = ACTIONS(1844), - [anon_sym_e_GT_GT] = ACTIONS(1844), - [anon_sym_o_GT_GT] = ACTIONS(1844), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1844), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1844), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1844), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1844), - [sym__unquoted_pattern] = ACTIONS(1846), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(697)] = { - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(697), - [anon_sym_in] = ACTIONS(2062), - [sym__newline] = ACTIONS(2062), - [anon_sym_SEMI] = ACTIONS(2062), - [anon_sym_PIPE] = ACTIONS(2062), - [anon_sym_err_GT_PIPE] = ACTIONS(2062), - [anon_sym_out_GT_PIPE] = ACTIONS(2062), - [anon_sym_e_GT_PIPE] = ACTIONS(2062), - [anon_sym_o_GT_PIPE] = ACTIONS(2062), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), - [anon_sym_RPAREN] = ACTIONS(2062), - [anon_sym_GT2] = ACTIONS(2064), - [anon_sym_DASH2] = ACTIONS(2062), - [anon_sym_LBRACE] = ACTIONS(2062), - [anon_sym_RBRACE] = ACTIONS(2062), - [anon_sym_EQ_GT] = ACTIONS(2062), - [anon_sym_STAR2] = ACTIONS(2064), - [anon_sym_and2] = ACTIONS(2062), - [anon_sym_xor2] = ACTIONS(2062), - [anon_sym_or2] = ACTIONS(2062), - [anon_sym_not_DASHin2] = ACTIONS(2062), - [anon_sym_has2] = ACTIONS(2062), - [anon_sym_not_DASHhas2] = ACTIONS(2062), - [anon_sym_starts_DASHwith2] = ACTIONS(2062), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), - [anon_sym_ends_DASHwith2] = ACTIONS(2062), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), - [anon_sym_EQ_EQ2] = ACTIONS(2062), - [anon_sym_BANG_EQ2] = ACTIONS(2062), - [anon_sym_LT2] = ACTIONS(2064), - [anon_sym_LT_EQ2] = ACTIONS(2062), - [anon_sym_GT_EQ2] = ACTIONS(2062), - [anon_sym_EQ_TILDE2] = ACTIONS(2062), - [anon_sym_BANG_TILDE2] = ACTIONS(2062), - [anon_sym_like2] = ACTIONS(2062), - [anon_sym_not_DASHlike2] = ACTIONS(2062), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2062), - [anon_sym_PLUS_PLUS2] = ACTIONS(2062), - [anon_sym_SLASH2] = ACTIONS(2064), - [anon_sym_mod2] = ACTIONS(2062), - [anon_sym_SLASH_SLASH2] = ACTIONS(2062), - [anon_sym_PLUS2] = ACTIONS(2064), - [anon_sym_bit_DASHshl2] = ACTIONS(2062), - [anon_sym_bit_DASHshr2] = ACTIONS(2062), - [anon_sym_bit_DASHand2] = ACTIONS(2062), - [anon_sym_bit_DASHxor2] = ACTIONS(2062), - [anon_sym_bit_DASHor2] = ACTIONS(2062), - [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(2062), - [anon_sym_out_GT_GT] = ACTIONS(2062), - [anon_sym_e_GT_GT] = ACTIONS(2062), - [anon_sym_o_GT_GT] = ACTIONS(2062), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(698)] = { - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(698), - [anon_sym_in] = ACTIONS(2062), - [sym__newline] = ACTIONS(2062), - [anon_sym_SEMI] = ACTIONS(2062), - [anon_sym_PIPE] = ACTIONS(2062), - [anon_sym_err_GT_PIPE] = ACTIONS(2062), - [anon_sym_out_GT_PIPE] = ACTIONS(2062), - [anon_sym_e_GT_PIPE] = ACTIONS(2062), - [anon_sym_o_GT_PIPE] = ACTIONS(2062), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), - [anon_sym_RPAREN] = ACTIONS(2062), - [anon_sym_GT2] = ACTIONS(2064), - [anon_sym_DASH2] = ACTIONS(2062), - [anon_sym_LBRACE] = ACTIONS(2062), - [anon_sym_RBRACE] = ACTIONS(2062), - [anon_sym_EQ_GT] = ACTIONS(2062), - [anon_sym_STAR2] = ACTIONS(2064), - [anon_sym_and2] = ACTIONS(2062), - [anon_sym_xor2] = ACTIONS(2062), - [anon_sym_or2] = ACTIONS(2062), - [anon_sym_not_DASHin2] = ACTIONS(2062), - [anon_sym_has2] = ACTIONS(2062), - [anon_sym_not_DASHhas2] = ACTIONS(2062), - [anon_sym_starts_DASHwith2] = ACTIONS(2062), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), - [anon_sym_ends_DASHwith2] = ACTIONS(2062), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), - [anon_sym_EQ_EQ2] = ACTIONS(2062), - [anon_sym_BANG_EQ2] = ACTIONS(2062), - [anon_sym_LT2] = ACTIONS(2064), - [anon_sym_LT_EQ2] = ACTIONS(2062), - [anon_sym_GT_EQ2] = ACTIONS(2062), - [anon_sym_EQ_TILDE2] = ACTIONS(2062), - [anon_sym_BANG_TILDE2] = ACTIONS(2062), - [anon_sym_like2] = ACTIONS(2062), - [anon_sym_not_DASHlike2] = ACTIONS(2062), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2062), - [anon_sym_PLUS_PLUS2] = ACTIONS(2062), - [anon_sym_SLASH2] = ACTIONS(2064), - [anon_sym_mod2] = ACTIONS(2062), - [anon_sym_SLASH_SLASH2] = ACTIONS(2062), - [anon_sym_PLUS2] = ACTIONS(2064), - [anon_sym_bit_DASHshl2] = ACTIONS(2062), - [anon_sym_bit_DASHshr2] = ACTIONS(2062), - [anon_sym_bit_DASHand2] = ACTIONS(2062), - [anon_sym_bit_DASHxor2] = ACTIONS(2062), - [anon_sym_bit_DASHor2] = ACTIONS(2062), - [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(2062), - [anon_sym_out_GT_GT] = ACTIONS(2062), - [anon_sym_e_GT_GT] = ACTIONS(2062), - [anon_sym_o_GT_GT] = ACTIONS(2062), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(699)] = { - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(699), - [anon_sym_in] = ACTIONS(2062), - [sym__newline] = ACTIONS(2062), - [anon_sym_SEMI] = ACTIONS(2062), - [anon_sym_PIPE] = ACTIONS(2062), - [anon_sym_err_GT_PIPE] = ACTIONS(2062), - [anon_sym_out_GT_PIPE] = ACTIONS(2062), - [anon_sym_e_GT_PIPE] = ACTIONS(2062), - [anon_sym_o_GT_PIPE] = ACTIONS(2062), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), - [anon_sym_RPAREN] = ACTIONS(2062), - [anon_sym_GT2] = ACTIONS(2064), - [anon_sym_DASH2] = ACTIONS(2062), - [anon_sym_LBRACE] = ACTIONS(2062), - [anon_sym_RBRACE] = ACTIONS(2062), - [anon_sym_EQ_GT] = ACTIONS(2062), - [anon_sym_STAR2] = ACTIONS(2064), - [anon_sym_and2] = ACTIONS(2062), - [anon_sym_xor2] = ACTIONS(2062), - [anon_sym_or2] = ACTIONS(2062), - [anon_sym_not_DASHin2] = ACTIONS(2062), - [anon_sym_has2] = ACTIONS(2062), - [anon_sym_not_DASHhas2] = ACTIONS(2062), - [anon_sym_starts_DASHwith2] = ACTIONS(2062), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), - [anon_sym_ends_DASHwith2] = ACTIONS(2062), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), - [anon_sym_EQ_EQ2] = ACTIONS(2062), - [anon_sym_BANG_EQ2] = ACTIONS(2062), - [anon_sym_LT2] = ACTIONS(2064), - [anon_sym_LT_EQ2] = ACTIONS(2062), - [anon_sym_GT_EQ2] = ACTIONS(2062), - [anon_sym_EQ_TILDE2] = ACTIONS(2062), - [anon_sym_BANG_TILDE2] = ACTIONS(2062), - [anon_sym_like2] = ACTIONS(2062), - [anon_sym_not_DASHlike2] = ACTIONS(2062), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2062), - [anon_sym_PLUS_PLUS2] = ACTIONS(2062), - [anon_sym_SLASH2] = ACTIONS(2064), - [anon_sym_mod2] = ACTIONS(2062), - [anon_sym_SLASH_SLASH2] = ACTIONS(2062), - [anon_sym_PLUS2] = ACTIONS(2064), - [anon_sym_bit_DASHshl2] = ACTIONS(2062), - [anon_sym_bit_DASHshr2] = ACTIONS(2062), - [anon_sym_bit_DASHand2] = ACTIONS(2062), - [anon_sym_bit_DASHxor2] = ACTIONS(2062), - [anon_sym_bit_DASHor2] = ACTIONS(2062), - [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(2062), - [anon_sym_out_GT_GT] = ACTIONS(2062), - [anon_sym_e_GT_GT] = ACTIONS(2062), - [anon_sym_o_GT_GT] = ACTIONS(2062), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(700)] = { - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(700), - [anon_sym_in] = ACTIONS(2062), - [sym__newline] = ACTIONS(2062), - [anon_sym_SEMI] = ACTIONS(2062), - [anon_sym_PIPE] = ACTIONS(2062), - [anon_sym_err_GT_PIPE] = ACTIONS(2062), - [anon_sym_out_GT_PIPE] = ACTIONS(2062), - [anon_sym_e_GT_PIPE] = ACTIONS(2062), - [anon_sym_o_GT_PIPE] = ACTIONS(2062), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), - [anon_sym_RPAREN] = ACTIONS(2062), - [anon_sym_GT2] = ACTIONS(2064), - [anon_sym_DASH2] = ACTIONS(2062), - [anon_sym_LBRACE] = ACTIONS(2062), - [anon_sym_RBRACE] = ACTIONS(2062), - [anon_sym_EQ_GT] = ACTIONS(2062), - [anon_sym_STAR2] = ACTIONS(2064), - [anon_sym_and2] = ACTIONS(2062), - [anon_sym_xor2] = ACTIONS(2062), - [anon_sym_or2] = ACTIONS(2062), - [anon_sym_not_DASHin2] = ACTIONS(2062), - [anon_sym_has2] = ACTIONS(2062), - [anon_sym_not_DASHhas2] = ACTIONS(2062), - [anon_sym_starts_DASHwith2] = ACTIONS(2062), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), - [anon_sym_ends_DASHwith2] = ACTIONS(2062), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), - [anon_sym_EQ_EQ2] = ACTIONS(2062), - [anon_sym_BANG_EQ2] = ACTIONS(2062), - [anon_sym_LT2] = ACTIONS(2064), - [anon_sym_LT_EQ2] = ACTIONS(2062), - [anon_sym_GT_EQ2] = ACTIONS(2062), - [anon_sym_EQ_TILDE2] = ACTIONS(2062), - [anon_sym_BANG_TILDE2] = ACTIONS(2062), - [anon_sym_like2] = ACTIONS(2062), - [anon_sym_not_DASHlike2] = ACTIONS(2062), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2062), - [anon_sym_PLUS_PLUS2] = ACTIONS(2062), - [anon_sym_SLASH2] = ACTIONS(2064), - [anon_sym_mod2] = ACTIONS(2062), - [anon_sym_SLASH_SLASH2] = ACTIONS(2062), - [anon_sym_PLUS2] = ACTIONS(2064), - [anon_sym_bit_DASHshl2] = ACTIONS(2062), - [anon_sym_bit_DASHshr2] = ACTIONS(2062), - [anon_sym_bit_DASHand2] = ACTIONS(2062), - [anon_sym_bit_DASHxor2] = ACTIONS(2062), - [anon_sym_bit_DASHor2] = ACTIONS(2062), - [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(2062), - [anon_sym_out_GT_GT] = ACTIONS(2062), - [anon_sym_e_GT_GT] = ACTIONS(2062), - [anon_sym_o_GT_GT] = ACTIONS(2062), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(701)] = { - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(701), - [anon_sym_in] = ACTIONS(2062), - [sym__newline] = ACTIONS(2062), - [anon_sym_SEMI] = ACTIONS(2062), - [anon_sym_PIPE] = ACTIONS(2062), - [anon_sym_err_GT_PIPE] = ACTIONS(2062), - [anon_sym_out_GT_PIPE] = ACTIONS(2062), - [anon_sym_e_GT_PIPE] = ACTIONS(2062), - [anon_sym_o_GT_PIPE] = ACTIONS(2062), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), - [anon_sym_RPAREN] = ACTIONS(2062), - [anon_sym_GT2] = ACTIONS(2064), - [anon_sym_DASH2] = ACTIONS(2062), - [anon_sym_LBRACE] = ACTIONS(2062), - [anon_sym_RBRACE] = ACTIONS(2062), - [anon_sym_EQ_GT] = ACTIONS(2062), - [anon_sym_STAR2] = ACTIONS(2064), - [anon_sym_and2] = ACTIONS(2062), - [anon_sym_xor2] = ACTIONS(2062), - [anon_sym_or2] = ACTIONS(2062), - [anon_sym_not_DASHin2] = ACTIONS(2062), - [anon_sym_has2] = ACTIONS(2062), - [anon_sym_not_DASHhas2] = ACTIONS(2062), - [anon_sym_starts_DASHwith2] = ACTIONS(2062), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), - [anon_sym_ends_DASHwith2] = ACTIONS(2062), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), - [anon_sym_EQ_EQ2] = ACTIONS(2062), - [anon_sym_BANG_EQ2] = ACTIONS(2062), - [anon_sym_LT2] = ACTIONS(2064), - [anon_sym_LT_EQ2] = ACTIONS(2062), - [anon_sym_GT_EQ2] = ACTIONS(2062), - [anon_sym_EQ_TILDE2] = ACTIONS(2062), - [anon_sym_BANG_TILDE2] = ACTIONS(2062), - [anon_sym_like2] = ACTIONS(2062), - [anon_sym_not_DASHlike2] = ACTIONS(2062), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2062), - [anon_sym_PLUS_PLUS2] = ACTIONS(2062), - [anon_sym_SLASH2] = ACTIONS(2064), - [anon_sym_mod2] = ACTIONS(2062), - [anon_sym_SLASH_SLASH2] = ACTIONS(2062), - [anon_sym_PLUS2] = ACTIONS(2064), - [anon_sym_bit_DASHshl2] = ACTIONS(2062), - [anon_sym_bit_DASHshr2] = ACTIONS(2062), - [anon_sym_bit_DASHand2] = ACTIONS(2062), - [anon_sym_bit_DASHxor2] = ACTIONS(2062), - [anon_sym_bit_DASHor2] = ACTIONS(2062), - [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(2062), - [anon_sym_out_GT_GT] = ACTIONS(2062), - [anon_sym_e_GT_GT] = ACTIONS(2062), - [anon_sym_o_GT_GT] = ACTIONS(2062), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(702)] = { - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(702), - [anon_sym_in] = ACTIONS(2062), - [sym__newline] = ACTIONS(2062), - [anon_sym_SEMI] = ACTIONS(2062), - [anon_sym_PIPE] = ACTIONS(2062), - [anon_sym_err_GT_PIPE] = ACTIONS(2062), - [anon_sym_out_GT_PIPE] = ACTIONS(2062), - [anon_sym_e_GT_PIPE] = ACTIONS(2062), - [anon_sym_o_GT_PIPE] = ACTIONS(2062), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), - [anon_sym_RPAREN] = ACTIONS(2062), - [anon_sym_GT2] = ACTIONS(2064), - [anon_sym_DASH2] = ACTIONS(2062), - [anon_sym_LBRACE] = ACTIONS(2062), - [anon_sym_RBRACE] = ACTIONS(2062), - [anon_sym_EQ_GT] = ACTIONS(2062), - [anon_sym_STAR2] = ACTIONS(2064), - [anon_sym_and2] = ACTIONS(2062), - [anon_sym_xor2] = ACTIONS(2062), - [anon_sym_or2] = ACTIONS(2062), - [anon_sym_not_DASHin2] = ACTIONS(2062), - [anon_sym_has2] = ACTIONS(2062), - [anon_sym_not_DASHhas2] = ACTIONS(2062), - [anon_sym_starts_DASHwith2] = ACTIONS(2062), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), - [anon_sym_ends_DASHwith2] = ACTIONS(2062), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), - [anon_sym_EQ_EQ2] = ACTIONS(2062), - [anon_sym_BANG_EQ2] = ACTIONS(2062), - [anon_sym_LT2] = ACTIONS(2064), - [anon_sym_LT_EQ2] = ACTIONS(2062), - [anon_sym_GT_EQ2] = ACTIONS(2062), - [anon_sym_EQ_TILDE2] = ACTIONS(2062), - [anon_sym_BANG_TILDE2] = ACTIONS(2062), - [anon_sym_like2] = ACTIONS(2062), - [anon_sym_not_DASHlike2] = ACTIONS(2062), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2062), - [anon_sym_PLUS_PLUS2] = ACTIONS(2062), - [anon_sym_SLASH2] = ACTIONS(2064), - [anon_sym_mod2] = ACTIONS(2062), - [anon_sym_SLASH_SLASH2] = ACTIONS(2062), - [anon_sym_PLUS2] = ACTIONS(2064), - [anon_sym_bit_DASHshl2] = ACTIONS(2062), - [anon_sym_bit_DASHshr2] = ACTIONS(2062), - [anon_sym_bit_DASHand2] = ACTIONS(2062), - [anon_sym_bit_DASHxor2] = ACTIONS(2062), - [anon_sym_bit_DASHor2] = ACTIONS(2062), - [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(2062), - [anon_sym_out_GT_GT] = ACTIONS(2062), - [anon_sym_e_GT_GT] = ACTIONS(2062), - [anon_sym_o_GT_GT] = ACTIONS(2062), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [STATE(705)] = { + [sym_comment] = STATE(705), + [anon_sym_in] = ACTIONS(1706), + [sym__newline] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1706), + [anon_sym_err_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_GT_PIPE] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), + [anon_sym_RPAREN] = ACTIONS(1706), + [anon_sym_GT2] = ACTIONS(1604), + [anon_sym_DASH2] = ACTIONS(1706), + [anon_sym_LBRACE] = ACTIONS(1706), + [anon_sym_RBRACE] = ACTIONS(1706), + [anon_sym_STAR2] = ACTIONS(1604), + [anon_sym_and2] = ACTIONS(1706), + [anon_sym_xor2] = ACTIONS(1706), + [anon_sym_or2] = ACTIONS(1706), + [anon_sym_not_DASHin2] = ACTIONS(1706), + [anon_sym_has2] = ACTIONS(1706), + [anon_sym_not_DASHhas2] = ACTIONS(1706), + [anon_sym_starts_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), + [anon_sym_ends_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), + [anon_sym_EQ_EQ2] = ACTIONS(1706), + [anon_sym_BANG_EQ2] = ACTIONS(1706), + [anon_sym_LT2] = ACTIONS(1604), + [anon_sym_LT_EQ2] = ACTIONS(1706), + [anon_sym_GT_EQ2] = ACTIONS(1706), + [anon_sym_EQ_TILDE2] = ACTIONS(1706), + [anon_sym_BANG_TILDE2] = ACTIONS(1706), + [anon_sym_like2] = ACTIONS(1706), + [anon_sym_not_DASHlike2] = ACTIONS(1706), + [anon_sym_STAR_STAR2] = ACTIONS(1706), + [anon_sym_PLUS_PLUS2] = ACTIONS(1706), + [anon_sym_SLASH2] = ACTIONS(1604), + [anon_sym_mod2] = ACTIONS(1706), + [anon_sym_SLASH_SLASH2] = ACTIONS(1706), + [anon_sym_PLUS2] = ACTIONS(1604), + [anon_sym_bit_DASHshl2] = ACTIONS(1706), + [anon_sym_bit_DASHshr2] = ACTIONS(1706), + [anon_sym_bit_DASHand2] = ACTIONS(1706), + [anon_sym_bit_DASHxor2] = ACTIONS(1706), + [anon_sym_bit_DASHor2] = ACTIONS(1706), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), + [anon_sym_err_GT] = ACTIONS(1604), + [anon_sym_out_GT] = ACTIONS(1604), + [anon_sym_e_GT] = ACTIONS(1604), + [anon_sym_o_GT] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT] = ACTIONS(1604), + [anon_sym_err_GT_GT] = ACTIONS(1706), + [anon_sym_out_GT_GT] = ACTIONS(1706), + [anon_sym_e_GT_GT] = ACTIONS(1706), + [anon_sym_o_GT_GT] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(703)] = { - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(703), + [STATE(706)] = { + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(706), [anon_sym_in] = ACTIONS(2062), [sym__newline] = ACTIONS(2062), [anon_sym_SEMI] = ACTIONS(2062), @@ -101011,7 +101259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2062), [anon_sym_like2] = ACTIONS(2062), [anon_sym_not_DASHlike2] = ACTIONS(2062), - [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_LPAREN2] = ACTIONS(1714), [anon_sym_STAR_STAR2] = ACTIONS(2062), [anon_sym_PLUS_PLUS2] = ACTIONS(2062), [anon_sym_SLASH2] = ACTIONS(2064), @@ -101041,434 +101289,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(704)] = { - [sym_comment] = STATE(704), - [anon_sym_in] = ACTIONS(2136), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_RPAREN] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2136), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2136), - [anon_sym_xor2] = ACTIONS(2136), - [anon_sym_or2] = ACTIONS(2136), - [anon_sym_not_DASHin2] = ACTIONS(2136), - [anon_sym_has2] = ACTIONS(2136), - [anon_sym_not_DASHhas2] = ACTIONS(2136), - [anon_sym_starts_DASHwith2] = ACTIONS(2136), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2136), - [anon_sym_ends_DASHwith2] = ACTIONS(2136), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2136), - [anon_sym_EQ_EQ2] = ACTIONS(2136), - [anon_sym_BANG_EQ2] = ACTIONS(2136), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2136), - [anon_sym_GT_EQ2] = ACTIONS(2136), - [anon_sym_EQ_TILDE2] = ACTIONS(2136), - [anon_sym_BANG_TILDE2] = ACTIONS(2136), - [anon_sym_like2] = ACTIONS(2136), - [anon_sym_not_DASHlike2] = ACTIONS(2136), - [anon_sym_STAR_STAR2] = ACTIONS(2136), - [anon_sym_PLUS_PLUS2] = ACTIONS(2136), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2136), - [anon_sym_SLASH_SLASH2] = ACTIONS(2136), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2136), - [anon_sym_bit_DASHshr2] = ACTIONS(2136), - [anon_sym_bit_DASHand2] = ACTIONS(2136), - [anon_sym_bit_DASHxor2] = ACTIONS(2136), - [anon_sym_bit_DASHor2] = ACTIONS(2136), - [anon_sym_DOT_DOT2] = ACTIONS(2140), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2142), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2142), - [anon_sym_err_GT] = ACTIONS(2138), - [anon_sym_out_GT] = ACTIONS(2138), - [anon_sym_e_GT] = ACTIONS(2138), - [anon_sym_o_GT] = ACTIONS(2138), - [anon_sym_err_PLUSout_GT] = ACTIONS(2138), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2138), - [anon_sym_o_PLUSe_GT] = ACTIONS(2138), - [anon_sym_e_PLUSo_GT] = ACTIONS(2138), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(705)] = { - [sym_comment] = STATE(705), - [anon_sym_in] = ACTIONS(2144), - [sym__newline] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2144), - [anon_sym_err_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_GT_PIPE] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2144), - [anon_sym_RPAREN] = ACTIONS(2144), - [anon_sym_GT2] = ACTIONS(2146), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_RBRACE] = ACTIONS(2144), - [anon_sym_STAR2] = ACTIONS(2146), - [anon_sym_and2] = ACTIONS(2144), - [anon_sym_xor2] = ACTIONS(2144), - [anon_sym_or2] = ACTIONS(2144), - [anon_sym_not_DASHin2] = ACTIONS(2144), - [anon_sym_has2] = ACTIONS(2144), - [anon_sym_not_DASHhas2] = ACTIONS(2144), - [anon_sym_starts_DASHwith2] = ACTIONS(2144), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2144), - [anon_sym_ends_DASHwith2] = ACTIONS(2144), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2144), - [anon_sym_EQ_EQ2] = ACTIONS(2144), - [anon_sym_BANG_EQ2] = ACTIONS(2144), - [anon_sym_LT2] = ACTIONS(2146), - [anon_sym_LT_EQ2] = ACTIONS(2144), - [anon_sym_GT_EQ2] = ACTIONS(2144), - [anon_sym_EQ_TILDE2] = ACTIONS(2144), - [anon_sym_BANG_TILDE2] = ACTIONS(2144), - [anon_sym_like2] = ACTIONS(2144), - [anon_sym_not_DASHlike2] = ACTIONS(2144), - [anon_sym_STAR_STAR2] = ACTIONS(2144), - [anon_sym_PLUS_PLUS2] = ACTIONS(2144), - [anon_sym_SLASH2] = ACTIONS(2146), - [anon_sym_mod2] = ACTIONS(2144), - [anon_sym_SLASH_SLASH2] = ACTIONS(2144), - [anon_sym_PLUS2] = ACTIONS(2146), - [anon_sym_bit_DASHshl2] = ACTIONS(2144), - [anon_sym_bit_DASHshr2] = ACTIONS(2144), - [anon_sym_bit_DASHand2] = ACTIONS(2144), - [anon_sym_bit_DASHxor2] = ACTIONS(2144), - [anon_sym_bit_DASHor2] = ACTIONS(2144), - [anon_sym_DOT_DOT2] = ACTIONS(2148), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2150), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2150), - [anon_sym_err_GT] = ACTIONS(2146), - [anon_sym_out_GT] = ACTIONS(2146), - [anon_sym_e_GT] = ACTIONS(2146), - [anon_sym_o_GT] = ACTIONS(2146), - [anon_sym_err_PLUSout_GT] = ACTIONS(2146), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2146), - [anon_sym_o_PLUSe_GT] = ACTIONS(2146), - [anon_sym_e_PLUSo_GT] = ACTIONS(2146), - [anon_sym_err_GT_GT] = ACTIONS(2144), - [anon_sym_out_GT_GT] = ACTIONS(2144), - [anon_sym_e_GT_GT] = ACTIONS(2144), - [anon_sym_o_GT_GT] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2144), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(706)] = { - [sym_comment] = STATE(706), - [ts_builtin_sym_end] = ACTIONS(1806), - [anon_sym_in] = ACTIONS(1806), - [sym__newline] = ACTIONS(1806), - [anon_sym_SEMI] = ACTIONS(1806), - [anon_sym_PIPE] = ACTIONS(1806), - [anon_sym_err_GT_PIPE] = ACTIONS(1806), - [anon_sym_out_GT_PIPE] = ACTIONS(1806), - [anon_sym_e_GT_PIPE] = ACTIONS(1806), - [anon_sym_o_GT_PIPE] = ACTIONS(1806), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1806), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1806), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1806), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1806), - [anon_sym_GT2] = ACTIONS(1808), - [anon_sym_DASH2] = ACTIONS(1806), - [anon_sym_STAR2] = ACTIONS(1808), - [anon_sym_and2] = ACTIONS(1806), - [anon_sym_xor2] = ACTIONS(1806), - [anon_sym_or2] = ACTIONS(1806), - [anon_sym_not_DASHin2] = ACTIONS(1806), - [anon_sym_has2] = ACTIONS(1806), - [anon_sym_not_DASHhas2] = ACTIONS(1806), - [anon_sym_starts_DASHwith2] = ACTIONS(1806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1806), - [anon_sym_ends_DASHwith2] = ACTIONS(1806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1806), - [anon_sym_EQ_EQ2] = ACTIONS(1806), - [anon_sym_BANG_EQ2] = ACTIONS(1806), - [anon_sym_LT2] = ACTIONS(1808), - [anon_sym_LT_EQ2] = ACTIONS(1806), - [anon_sym_GT_EQ2] = ACTIONS(1806), - [anon_sym_EQ_TILDE2] = ACTIONS(1806), - [anon_sym_BANG_TILDE2] = ACTIONS(1806), - [anon_sym_like2] = ACTIONS(1806), - [anon_sym_not_DASHlike2] = ACTIONS(1806), - [anon_sym_LPAREN2] = ACTIONS(1806), - [anon_sym_STAR_STAR2] = ACTIONS(1806), - [anon_sym_PLUS_PLUS2] = ACTIONS(1806), - [anon_sym_SLASH2] = ACTIONS(1808), - [anon_sym_mod2] = ACTIONS(1806), - [anon_sym_SLASH_SLASH2] = ACTIONS(1806), - [anon_sym_PLUS2] = ACTIONS(1808), - [anon_sym_bit_DASHshl2] = ACTIONS(1806), - [anon_sym_bit_DASHshr2] = ACTIONS(1806), - [anon_sym_bit_DASHand2] = ACTIONS(1806), - [anon_sym_bit_DASHxor2] = ACTIONS(1806), - [anon_sym_bit_DASHor2] = ACTIONS(1806), - [anon_sym_DOT_DOT2] = ACTIONS(1808), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1806), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1806), - [anon_sym_err_GT] = ACTIONS(1808), - [anon_sym_out_GT] = ACTIONS(1808), - [anon_sym_e_GT] = ACTIONS(1808), - [anon_sym_o_GT] = ACTIONS(1808), - [anon_sym_err_PLUSout_GT] = ACTIONS(1808), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1808), - [anon_sym_o_PLUSe_GT] = ACTIONS(1808), - [anon_sym_e_PLUSo_GT] = ACTIONS(1808), - [anon_sym_err_GT_GT] = ACTIONS(1806), - [anon_sym_out_GT_GT] = ACTIONS(1806), - [anon_sym_e_GT_GT] = ACTIONS(1806), - [anon_sym_o_GT_GT] = ACTIONS(1806), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1806), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1806), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1806), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1806), - [sym__unquoted_pattern] = ACTIONS(1808), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(707)] = { [sym_comment] = STATE(707), - [anon_sym_in] = ACTIONS(2152), - [sym__newline] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_PIPE] = ACTIONS(2152), - [anon_sym_err_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_GT_PIPE] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2152), - [anon_sym_RPAREN] = ACTIONS(2152), - [anon_sym_GT2] = ACTIONS(2154), - [anon_sym_DASH2] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_STAR2] = ACTIONS(2154), - [anon_sym_and2] = ACTIONS(2152), - [anon_sym_xor2] = ACTIONS(2152), - [anon_sym_or2] = ACTIONS(2152), - [anon_sym_not_DASHin2] = ACTIONS(2152), - [anon_sym_has2] = ACTIONS(2152), - [anon_sym_not_DASHhas2] = ACTIONS(2152), - [anon_sym_starts_DASHwith2] = ACTIONS(2152), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2152), - [anon_sym_ends_DASHwith2] = ACTIONS(2152), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2152), - [anon_sym_EQ_EQ2] = ACTIONS(2152), - [anon_sym_BANG_EQ2] = ACTIONS(2152), - [anon_sym_LT2] = ACTIONS(2154), - [anon_sym_LT_EQ2] = ACTIONS(2152), - [anon_sym_GT_EQ2] = ACTIONS(2152), - [anon_sym_EQ_TILDE2] = ACTIONS(2152), - [anon_sym_BANG_TILDE2] = ACTIONS(2152), - [anon_sym_like2] = ACTIONS(2152), - [anon_sym_not_DASHlike2] = ACTIONS(2152), - [anon_sym_STAR_STAR2] = ACTIONS(2152), - [anon_sym_PLUS_PLUS2] = ACTIONS(2152), - [anon_sym_SLASH2] = ACTIONS(2154), - [anon_sym_mod2] = ACTIONS(2152), - [anon_sym_SLASH_SLASH2] = ACTIONS(2152), - [anon_sym_PLUS2] = ACTIONS(2154), - [anon_sym_bit_DASHshl2] = ACTIONS(2152), - [anon_sym_bit_DASHshr2] = ACTIONS(2152), - [anon_sym_bit_DASHand2] = ACTIONS(2152), - [anon_sym_bit_DASHxor2] = ACTIONS(2152), - [anon_sym_bit_DASHor2] = ACTIONS(2152), - [anon_sym_DOT_DOT2] = ACTIONS(2156), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2158), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2158), - [anon_sym_err_GT] = ACTIONS(2154), - [anon_sym_out_GT] = ACTIONS(2154), - [anon_sym_e_GT] = ACTIONS(2154), - [anon_sym_o_GT] = ACTIONS(2154), - [anon_sym_err_PLUSout_GT] = ACTIONS(2154), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2154), - [anon_sym_o_PLUSe_GT] = ACTIONS(2154), - [anon_sym_e_PLUSo_GT] = ACTIONS(2154), - [anon_sym_err_GT_GT] = ACTIONS(2152), - [anon_sym_out_GT_GT] = ACTIONS(2152), - [anon_sym_e_GT_GT] = ACTIONS(2152), - [anon_sym_o_GT_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2152), + [ts_builtin_sym_end] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [sym__newline] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_err_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_GT_PIPE] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_GT2] = ACTIONS(1740), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_STAR2] = ACTIONS(1740), + [anon_sym_and2] = ACTIONS(1738), + [anon_sym_xor2] = ACTIONS(1738), + [anon_sym_or2] = ACTIONS(1738), + [anon_sym_not_DASHin2] = ACTIONS(1738), + [anon_sym_has2] = ACTIONS(1738), + [anon_sym_not_DASHhas2] = ACTIONS(1738), + [anon_sym_starts_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), + [anon_sym_ends_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), + [anon_sym_EQ_EQ2] = ACTIONS(1738), + [anon_sym_BANG_EQ2] = ACTIONS(1738), + [anon_sym_LT2] = ACTIONS(1740), + [anon_sym_LT_EQ2] = ACTIONS(1738), + [anon_sym_GT_EQ2] = ACTIONS(1738), + [anon_sym_EQ_TILDE2] = ACTIONS(1738), + [anon_sym_BANG_TILDE2] = ACTIONS(1738), + [anon_sym_like2] = ACTIONS(1738), + [anon_sym_not_DASHlike2] = ACTIONS(1738), + [anon_sym_LPAREN2] = ACTIONS(1738), + [anon_sym_STAR_STAR2] = ACTIONS(1738), + [anon_sym_PLUS_PLUS2] = ACTIONS(1738), + [anon_sym_SLASH2] = ACTIONS(1740), + [anon_sym_mod2] = ACTIONS(1738), + [anon_sym_SLASH_SLASH2] = ACTIONS(1738), + [anon_sym_PLUS2] = ACTIONS(1740), + [anon_sym_bit_DASHshl2] = ACTIONS(1738), + [anon_sym_bit_DASHshr2] = ACTIONS(1738), + [anon_sym_bit_DASHand2] = ACTIONS(1738), + [anon_sym_bit_DASHxor2] = ACTIONS(1738), + [anon_sym_bit_DASHor2] = ACTIONS(1738), + [anon_sym_DOT_DOT2] = ACTIONS(1740), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1738), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1738), + [anon_sym_err_GT] = ACTIONS(1740), + [anon_sym_out_GT] = ACTIONS(1740), + [anon_sym_e_GT] = ACTIONS(1740), + [anon_sym_o_GT] = ACTIONS(1740), + [anon_sym_err_PLUSout_GT] = ACTIONS(1740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1740), + [anon_sym_o_PLUSe_GT] = ACTIONS(1740), + [anon_sym_e_PLUSo_GT] = ACTIONS(1740), + [anon_sym_err_GT_GT] = ACTIONS(1738), + [anon_sym_out_GT_GT] = ACTIONS(1738), + [anon_sym_e_GT_GT] = ACTIONS(1738), + [anon_sym_o_GT_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), + [sym__unquoted_pattern] = ACTIONS(1740), [anon_sym_POUND] = ACTIONS(3), }, [STATE(708)] = { [sym_comment] = STATE(708), - [anon_sym_in] = ACTIONS(1952), - [sym__newline] = ACTIONS(1952), - [anon_sym_SEMI] = ACTIONS(1952), - [anon_sym_PIPE] = ACTIONS(1952), - [anon_sym_err_GT_PIPE] = ACTIONS(1952), - [anon_sym_out_GT_PIPE] = ACTIONS(1952), - [anon_sym_e_GT_PIPE] = ACTIONS(1952), - [anon_sym_o_GT_PIPE] = ACTIONS(1952), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1952), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1952), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1952), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1952), - [anon_sym_RPAREN] = ACTIONS(1952), - [anon_sym_GT2] = ACTIONS(1954), - [anon_sym_DASH2] = ACTIONS(1952), - [anon_sym_LBRACE] = ACTIONS(1952), - [anon_sym_RBRACE] = ACTIONS(1952), - [anon_sym_STAR2] = ACTIONS(1954), - [anon_sym_and2] = ACTIONS(1952), - [anon_sym_xor2] = ACTIONS(1952), - [anon_sym_or2] = ACTIONS(1952), - [anon_sym_not_DASHin2] = ACTIONS(1952), - [anon_sym_has2] = ACTIONS(1952), - [anon_sym_not_DASHhas2] = ACTIONS(1952), - [anon_sym_starts_DASHwith2] = ACTIONS(1952), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1952), - [anon_sym_ends_DASHwith2] = ACTIONS(1952), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1952), - [anon_sym_EQ_EQ2] = ACTIONS(1952), - [anon_sym_BANG_EQ2] = ACTIONS(1952), - [anon_sym_LT2] = ACTIONS(1954), - [anon_sym_LT_EQ2] = ACTIONS(1952), - [anon_sym_GT_EQ2] = ACTIONS(1952), - [anon_sym_EQ_TILDE2] = ACTIONS(1952), - [anon_sym_BANG_TILDE2] = ACTIONS(1952), - [anon_sym_like2] = ACTIONS(1952), - [anon_sym_not_DASHlike2] = ACTIONS(1952), - [anon_sym_STAR_STAR2] = ACTIONS(1952), - [anon_sym_PLUS_PLUS2] = ACTIONS(1952), - [anon_sym_SLASH2] = ACTIONS(1954), - [anon_sym_mod2] = ACTIONS(1952), - [anon_sym_SLASH_SLASH2] = ACTIONS(1952), - [anon_sym_PLUS2] = ACTIONS(1954), - [anon_sym_bit_DASHshl2] = ACTIONS(1952), - [anon_sym_bit_DASHshr2] = ACTIONS(1952), - [anon_sym_bit_DASHand2] = ACTIONS(1952), - [anon_sym_bit_DASHxor2] = ACTIONS(1952), - [anon_sym_bit_DASHor2] = ACTIONS(1952), - [anon_sym_DOT_DOT2] = ACTIONS(2160), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2162), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2162), - [anon_sym_err_GT] = ACTIONS(1954), - [anon_sym_out_GT] = ACTIONS(1954), - [anon_sym_e_GT] = ACTIONS(1954), - [anon_sym_o_GT] = ACTIONS(1954), - [anon_sym_err_PLUSout_GT] = ACTIONS(1954), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1954), - [anon_sym_o_PLUSe_GT] = ACTIONS(1954), - [anon_sym_e_PLUSo_GT] = ACTIONS(1954), - [anon_sym_err_GT_GT] = ACTIONS(1952), - [anon_sym_out_GT_GT] = ACTIONS(1952), - [anon_sym_e_GT_GT] = ACTIONS(1952), - [anon_sym_o_GT_GT] = ACTIONS(1952), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1952), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1952), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1952), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1952), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(709)] = { - [sym__expr_parenthesized_immediate] = STATE(5243), - [sym_comment] = STATE(709), - [anon_sym_in] = ACTIONS(2164), - [sym__newline] = ACTIONS(2164), - [anon_sym_SEMI] = ACTIONS(2164), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_err_GT_PIPE] = ACTIONS(2164), - [anon_sym_out_GT_PIPE] = ACTIONS(2164), - [anon_sym_e_GT_PIPE] = ACTIONS(2164), - [anon_sym_o_GT_PIPE] = ACTIONS(2164), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2164), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2164), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2164), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2164), - [anon_sym_RPAREN] = ACTIONS(2164), - [anon_sym_GT2] = ACTIONS(2166), - [anon_sym_DASH2] = ACTIONS(2164), - [anon_sym_LBRACE] = ACTIONS(2164), - [anon_sym_RBRACE] = ACTIONS(2164), - [anon_sym_EQ_GT] = ACTIONS(2164), - [anon_sym_STAR2] = ACTIONS(2166), - [anon_sym_and2] = ACTIONS(2164), - [anon_sym_xor2] = ACTIONS(2164), - [anon_sym_or2] = ACTIONS(2164), - [anon_sym_not_DASHin2] = ACTIONS(2164), - [anon_sym_has2] = ACTIONS(2164), - [anon_sym_not_DASHhas2] = ACTIONS(2164), - [anon_sym_starts_DASHwith2] = ACTIONS(2164), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2164), - [anon_sym_ends_DASHwith2] = ACTIONS(2164), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2164), - [anon_sym_EQ_EQ2] = ACTIONS(2164), - [anon_sym_BANG_EQ2] = ACTIONS(2164), - [anon_sym_LT2] = ACTIONS(2166), - [anon_sym_LT_EQ2] = ACTIONS(2164), - [anon_sym_GT_EQ2] = ACTIONS(2164), - [anon_sym_EQ_TILDE2] = ACTIONS(2164), - [anon_sym_BANG_TILDE2] = ACTIONS(2164), - [anon_sym_like2] = ACTIONS(2164), - [anon_sym_not_DASHlike2] = ACTIONS(2164), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2164), - [anon_sym_PLUS_PLUS2] = ACTIONS(2164), - [anon_sym_SLASH2] = ACTIONS(2166), - [anon_sym_mod2] = ACTIONS(2164), - [anon_sym_SLASH_SLASH2] = ACTIONS(2164), - [anon_sym_PLUS2] = ACTIONS(2166), - [anon_sym_bit_DASHshl2] = ACTIONS(2164), - [anon_sym_bit_DASHshr2] = ACTIONS(2164), - [anon_sym_bit_DASHand2] = ACTIONS(2164), - [anon_sym_bit_DASHxor2] = ACTIONS(2164), - [anon_sym_bit_DASHor2] = ACTIONS(2164), - [anon_sym_err_GT] = ACTIONS(2166), - [anon_sym_out_GT] = ACTIONS(2166), - [anon_sym_e_GT] = ACTIONS(2166), - [anon_sym_o_GT] = ACTIONS(2166), - [anon_sym_err_PLUSout_GT] = ACTIONS(2166), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2166), - [anon_sym_o_PLUSe_GT] = ACTIONS(2166), - [anon_sym_e_PLUSo_GT] = ACTIONS(2166), - [anon_sym_err_GT_GT] = ACTIONS(2164), - [anon_sym_out_GT_GT] = ACTIONS(2164), - [anon_sym_e_GT_GT] = ACTIONS(2164), - [anon_sym_o_GT_GT] = ACTIONS(2164), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2164), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2164), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2164), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2164), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(710)] = { - [sym_comment] = STATE(710), [anon_sym_in] = ACTIONS(1738), [sym__newline] = ACTIONS(1738), [anon_sym_SEMI] = ACTIONS(1738), @@ -101517,8 +101410,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1738), [anon_sym_bit_DASHxor2] = ACTIONS(1738), [anon_sym_bit_DASHor2] = ACTIONS(1738), - [aux_sym__immediate_decimal_token1] = ACTIONS(2168), - [aux_sym__immediate_decimal_token5] = ACTIONS(2170), + [aux_sym__immediate_decimal_token1] = ACTIONS(2158), + [aux_sym__immediate_decimal_token5] = ACTIONS(2160), [anon_sym_err_GT] = ACTIONS(1740), [anon_sym_out_GT] = ACTIONS(1740), [anon_sym_e_GT] = ACTIONS(1740), @@ -101538,9 +101431,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(1740), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(711)] = { - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(711), + [STATE(709)] = { + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(709), [anon_sym_in] = ACTIONS(2062), [sym__newline] = ACTIONS(2062), [anon_sym_SEMI] = ACTIONS(2062), @@ -101579,7 +101472,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2062), [anon_sym_like2] = ACTIONS(2062), [anon_sym_not_DASHlike2] = ACTIONS(2062), - [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_LPAREN2] = ACTIONS(1714), [anon_sym_STAR_STAR2] = ACTIONS(2062), [anon_sym_PLUS_PLUS2] = ACTIONS(2062), [anon_sym_SLASH2] = ACTIONS(2064), @@ -101609,658 +101502,660 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(710)] = { + [sym_comment] = STATE(710), + [anon_sym_in] = ACTIONS(1750), + [sym__newline] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1750), + [anon_sym_err_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_GT_PIPE] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1750), + [anon_sym_RPAREN] = ACTIONS(1750), + [anon_sym_GT2] = ACTIONS(1752), + [anon_sym_DASH2] = ACTIONS(1750), + [anon_sym_RBRACE] = ACTIONS(1750), + [anon_sym_STAR2] = ACTIONS(1752), + [anon_sym_and2] = ACTIONS(1750), + [anon_sym_xor2] = ACTIONS(1750), + [anon_sym_or2] = ACTIONS(1750), + [anon_sym_not_DASHin2] = ACTIONS(1750), + [anon_sym_has2] = ACTIONS(1750), + [anon_sym_not_DASHhas2] = ACTIONS(1750), + [anon_sym_starts_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1750), + [anon_sym_ends_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1750), + [anon_sym_EQ_EQ2] = ACTIONS(1750), + [anon_sym_BANG_EQ2] = ACTIONS(1750), + [anon_sym_LT2] = ACTIONS(1752), + [anon_sym_LT_EQ2] = ACTIONS(1750), + [anon_sym_GT_EQ2] = ACTIONS(1750), + [anon_sym_EQ_TILDE2] = ACTIONS(1750), + [anon_sym_BANG_TILDE2] = ACTIONS(1750), + [anon_sym_like2] = ACTIONS(1750), + [anon_sym_not_DASHlike2] = ACTIONS(1750), + [anon_sym_LPAREN2] = ACTIONS(1750), + [anon_sym_STAR_STAR2] = ACTIONS(1750), + [anon_sym_PLUS_PLUS2] = ACTIONS(1750), + [anon_sym_SLASH2] = ACTIONS(1752), + [anon_sym_mod2] = ACTIONS(1750), + [anon_sym_SLASH_SLASH2] = ACTIONS(1750), + [anon_sym_PLUS2] = ACTIONS(1752), + [anon_sym_bit_DASHshl2] = ACTIONS(1750), + [anon_sym_bit_DASHshr2] = ACTIONS(1750), + [anon_sym_bit_DASHand2] = ACTIONS(1750), + [anon_sym_bit_DASHxor2] = ACTIONS(1750), + [anon_sym_bit_DASHor2] = ACTIONS(1750), + [anon_sym_DOT] = ACTIONS(2162), + [aux_sym__immediate_decimal_token5] = ACTIONS(2164), + [anon_sym_err_GT] = ACTIONS(1752), + [anon_sym_out_GT] = ACTIONS(1752), + [anon_sym_e_GT] = ACTIONS(1752), + [anon_sym_o_GT] = ACTIONS(1752), + [anon_sym_err_PLUSout_GT] = ACTIONS(1752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1752), + [anon_sym_o_PLUSe_GT] = ACTIONS(1752), + [anon_sym_e_PLUSo_GT] = ACTIONS(1752), + [anon_sym_err_GT_GT] = ACTIONS(1750), + [anon_sym_out_GT_GT] = ACTIONS(1750), + [anon_sym_e_GT_GT] = ACTIONS(1750), + [anon_sym_o_GT_GT] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1750), + [sym__unquoted_pattern] = ACTIONS(1752), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(711)] = { + [sym_comment] = STATE(711), + [anon_sym_if] = ACTIONS(2166), + [anon_sym_in] = ACTIONS(2166), + [sym__newline] = ACTIONS(2166), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_err_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_GT_PIPE] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2166), + [anon_sym_RPAREN] = ACTIONS(2166), + [anon_sym_GT2] = ACTIONS(2168), + [anon_sym_DASH2] = ACTIONS(2166), + [anon_sym_LBRACE] = ACTIONS(2166), + [anon_sym_RBRACE] = ACTIONS(2166), + [anon_sym_EQ_GT] = ACTIONS(2166), + [anon_sym_STAR2] = ACTIONS(2168), + [anon_sym_and2] = ACTIONS(2166), + [anon_sym_xor2] = ACTIONS(2166), + [anon_sym_or2] = ACTIONS(2166), + [anon_sym_not_DASHin2] = ACTIONS(2166), + [anon_sym_has2] = ACTIONS(2166), + [anon_sym_not_DASHhas2] = ACTIONS(2166), + [anon_sym_starts_DASHwith2] = ACTIONS(2166), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2166), + [anon_sym_ends_DASHwith2] = ACTIONS(2166), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2166), + [anon_sym_EQ_EQ2] = ACTIONS(2166), + [anon_sym_BANG_EQ2] = ACTIONS(2166), + [anon_sym_LT2] = ACTIONS(2168), + [anon_sym_LT_EQ2] = ACTIONS(2166), + [anon_sym_GT_EQ2] = ACTIONS(2166), + [anon_sym_EQ_TILDE2] = ACTIONS(2166), + [anon_sym_BANG_TILDE2] = ACTIONS(2166), + [anon_sym_like2] = ACTIONS(2166), + [anon_sym_not_DASHlike2] = ACTIONS(2166), + [anon_sym_STAR_STAR2] = ACTIONS(2166), + [anon_sym_PLUS_PLUS2] = ACTIONS(2166), + [anon_sym_SLASH2] = ACTIONS(2168), + [anon_sym_mod2] = ACTIONS(2166), + [anon_sym_SLASH_SLASH2] = ACTIONS(2166), + [anon_sym_PLUS2] = ACTIONS(2168), + [anon_sym_bit_DASHshl2] = ACTIONS(2166), + [anon_sym_bit_DASHshr2] = ACTIONS(2166), + [anon_sym_bit_DASHand2] = ACTIONS(2166), + [anon_sym_bit_DASHxor2] = ACTIONS(2166), + [anon_sym_bit_DASHor2] = ACTIONS(2166), + [anon_sym_LBRACK2] = ACTIONS(2170), + [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(2166), + [anon_sym_out_GT_GT] = ACTIONS(2166), + [anon_sym_e_GT_GT] = ACTIONS(2166), + [anon_sym_o_GT_GT] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2166), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(712)] = { + [aux_sym__repeat_newline] = STATE(1088), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(712), - [ts_builtin_sym_end] = ACTIONS(1554), - [anon_sym_in] = ACTIONS(1554), - [sym__newline] = ACTIONS(1554), - [anon_sym_SEMI] = ACTIONS(1554), - [anon_sym_PIPE] = ACTIONS(1554), - [anon_sym_err_GT_PIPE] = ACTIONS(1554), - [anon_sym_out_GT_PIPE] = ACTIONS(1554), - [anon_sym_e_GT_PIPE] = ACTIONS(1554), - [anon_sym_o_GT_PIPE] = ACTIONS(1554), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1554), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1554), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1554), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1554), - [anon_sym_GT2] = ACTIONS(1552), - [anon_sym_DASH2] = ACTIONS(1554), - [anon_sym_STAR2] = ACTIONS(1552), - [anon_sym_and2] = ACTIONS(1554), - [anon_sym_xor2] = ACTIONS(1554), - [anon_sym_or2] = ACTIONS(1554), - [anon_sym_not_DASHin2] = ACTIONS(1554), - [anon_sym_has2] = ACTIONS(1554), - [anon_sym_not_DASHhas2] = ACTIONS(1554), - [anon_sym_starts_DASHwith2] = ACTIONS(1554), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1554), - [anon_sym_ends_DASHwith2] = ACTIONS(1554), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1554), - [anon_sym_EQ_EQ2] = ACTIONS(1554), - [anon_sym_BANG_EQ2] = ACTIONS(1554), - [anon_sym_LT2] = ACTIONS(1552), - [anon_sym_LT_EQ2] = ACTIONS(1554), - [anon_sym_GT_EQ2] = ACTIONS(1554), - [anon_sym_EQ_TILDE2] = ACTIONS(1554), - [anon_sym_BANG_TILDE2] = ACTIONS(1554), - [anon_sym_like2] = ACTIONS(1554), - [anon_sym_not_DASHlike2] = ACTIONS(1554), - [anon_sym_STAR_STAR2] = ACTIONS(1554), - [anon_sym_PLUS_PLUS2] = ACTIONS(1554), - [anon_sym_SLASH2] = ACTIONS(1552), - [anon_sym_mod2] = ACTIONS(1554), - [anon_sym_SLASH_SLASH2] = ACTIONS(1554), - [anon_sym_PLUS2] = ACTIONS(1552), - [anon_sym_bit_DASHshl2] = ACTIONS(1554), - [anon_sym_bit_DASHshr2] = ACTIONS(1554), - [anon_sym_bit_DASHand2] = ACTIONS(1554), - [anon_sym_bit_DASHxor2] = ACTIONS(1554), - [anon_sym_bit_DASHor2] = ACTIONS(1554), - [anon_sym_DOT_DOT2] = ACTIONS(1552), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1554), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1554), - [anon_sym_DOT2] = ACTIONS(1552), - [anon_sym_err_GT] = ACTIONS(1552), - [anon_sym_out_GT] = ACTIONS(1552), - [anon_sym_e_GT] = ACTIONS(1552), - [anon_sym_o_GT] = ACTIONS(1552), - [anon_sym_err_PLUSout_GT] = ACTIONS(1552), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1552), - [anon_sym_o_PLUSe_GT] = ACTIONS(1552), - [anon_sym_e_PLUSo_GT] = ACTIONS(1552), - [anon_sym_err_GT_GT] = ACTIONS(1554), - [anon_sym_out_GT_GT] = ACTIONS(1554), - [anon_sym_e_GT_GT] = ACTIONS(1554), - [anon_sym_o_GT_GT] = ACTIONS(1554), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1554), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1554), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1554), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1554), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(3), }, [STATE(713)] = { - [sym_expr_unary] = STATE(1282), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1282), - [sym__expr_binary_expression] = STATE(1303), - [sym_expr_parenthesized] = STATE(925), - [sym_val_range] = STATE(1282), - [sym__val_range] = STATE(4556), - [sym__value] = STATE(1282), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(968), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(472), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_unquoted] = STATE(1040), - [sym__unquoted_with_expr] = STATE(1305), - [sym__unquoted_anonymous_prefix] = STATE(4556), + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1236), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(675), + [sym__unquoted_with_expr] = STATE(934), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(713), - [anon_sym_true] = ACTIONS(2172), - [anon_sym_false] = ACTIONS(2172), - [anon_sym_null] = ACTIONS(2174), - [aux_sym_cmd_identifier_token3] = ACTIONS(2176), - [aux_sym_cmd_identifier_token4] = ACTIONS(2176), - [aux_sym_cmd_identifier_token5] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2178), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2180), - [anon_sym_DOT_DOT_LT] = ACTIONS(2180), - [aux_sym__val_number_decimal_token1] = ACTIONS(2182), - [aux_sym__val_number_decimal_token2] = ACTIONS(2184), - [aux_sym__val_number_decimal_token3] = ACTIONS(2186), - [aux_sym__val_number_decimal_token4] = ACTIONS(2186), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2188), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2190), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(714)] = { - [sym_expr_unary] = STATE(1282), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1282), - [sym__expr_binary_expression] = STATE(1306), - [sym_expr_parenthesized] = STATE(925), - [sym_val_range] = STATE(1282), - [sym__val_range] = STATE(4556), - [sym__value] = STATE(1282), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(968), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(472), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_unquoted] = STATE(1053), - [sym__unquoted_with_expr] = STATE(1308), - [sym__unquoted_anonymous_prefix] = STATE(4556), + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1245), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(676), + [sym__unquoted_with_expr] = STATE(936), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(714), - [anon_sym_true] = ACTIONS(2172), - [anon_sym_false] = ACTIONS(2172), - [anon_sym_null] = ACTIONS(2174), - [aux_sym_cmd_identifier_token3] = ACTIONS(2176), - [aux_sym_cmd_identifier_token4] = ACTIONS(2176), - [aux_sym_cmd_identifier_token5] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2178), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2180), - [anon_sym_DOT_DOT_LT] = ACTIONS(2180), - [aux_sym__val_number_decimal_token1] = ACTIONS(2182), - [aux_sym__val_number_decimal_token2] = ACTIONS(2184), - [aux_sym__val_number_decimal_token3] = ACTIONS(2186), - [aux_sym__val_number_decimal_token4] = ACTIONS(2186), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2188), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2190), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(715)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1247), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(677), + [sym__unquoted_with_expr] = STATE(939), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(715), - [anon_sym_if] = ACTIONS(2098), - [anon_sym_in] = ACTIONS(2098), - [sym__newline] = ACTIONS(2098), - [anon_sym_SEMI] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2098), - [anon_sym_err_GT_PIPE] = ACTIONS(2098), - [anon_sym_out_GT_PIPE] = ACTIONS(2098), - [anon_sym_e_GT_PIPE] = ACTIONS(2098), - [anon_sym_o_GT_PIPE] = ACTIONS(2098), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2098), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2098), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2098), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2098), - [anon_sym_RPAREN] = ACTIONS(2098), - [anon_sym_GT2] = ACTIONS(2100), - [anon_sym_DASH2] = ACTIONS(2098), - [anon_sym_LBRACE] = ACTIONS(2098), - [anon_sym_RBRACE] = ACTIONS(2098), - [anon_sym_EQ_GT] = ACTIONS(2098), - [anon_sym_STAR2] = ACTIONS(2100), - [anon_sym_and2] = ACTIONS(2098), - [anon_sym_xor2] = ACTIONS(2098), - [anon_sym_or2] = ACTIONS(2098), - [anon_sym_not_DASHin2] = ACTIONS(2098), - [anon_sym_has2] = ACTIONS(2098), - [anon_sym_not_DASHhas2] = ACTIONS(2098), - [anon_sym_starts_DASHwith2] = ACTIONS(2098), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2098), - [anon_sym_ends_DASHwith2] = ACTIONS(2098), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2098), - [anon_sym_EQ_EQ2] = ACTIONS(2098), - [anon_sym_BANG_EQ2] = ACTIONS(2098), - [anon_sym_LT2] = ACTIONS(2100), - [anon_sym_LT_EQ2] = ACTIONS(2098), - [anon_sym_GT_EQ2] = ACTIONS(2098), - [anon_sym_EQ_TILDE2] = ACTIONS(2098), - [anon_sym_BANG_TILDE2] = ACTIONS(2098), - [anon_sym_like2] = ACTIONS(2098), - [anon_sym_not_DASHlike2] = ACTIONS(2098), - [anon_sym_STAR_STAR2] = ACTIONS(2098), - [anon_sym_PLUS_PLUS2] = ACTIONS(2098), - [anon_sym_SLASH2] = ACTIONS(2100), - [anon_sym_mod2] = ACTIONS(2098), - [anon_sym_SLASH_SLASH2] = ACTIONS(2098), - [anon_sym_PLUS2] = ACTIONS(2100), - [anon_sym_bit_DASHshl2] = ACTIONS(2098), - [anon_sym_bit_DASHshr2] = ACTIONS(2098), - [anon_sym_bit_DASHand2] = ACTIONS(2098), - [anon_sym_bit_DASHxor2] = ACTIONS(2098), - [anon_sym_bit_DASHor2] = ACTIONS(2098), - [anon_sym_err_GT] = ACTIONS(2100), - [anon_sym_out_GT] = ACTIONS(2100), - [anon_sym_e_GT] = ACTIONS(2100), - [anon_sym_o_GT] = ACTIONS(2100), - [anon_sym_err_PLUSout_GT] = ACTIONS(2100), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2100), - [anon_sym_o_PLUSe_GT] = ACTIONS(2100), - [anon_sym_e_PLUSo_GT] = ACTIONS(2100), - [anon_sym_err_GT_GT] = ACTIONS(2098), - [anon_sym_out_GT_GT] = ACTIONS(2098), - [anon_sym_e_GT_GT] = ACTIONS(2098), - [anon_sym_o_GT_GT] = ACTIONS(2098), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2098), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2098), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2098), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(716)] = { - [sym_expr_unary] = STATE(1282), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1282), - [sym__expr_binary_expression] = STATE(1309), - [sym_expr_parenthesized] = STATE(925), - [sym_val_range] = STATE(1282), - [sym__val_range] = STATE(4556), - [sym__value] = STATE(1282), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(968), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(472), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_unquoted] = STATE(1056), - [sym__unquoted_with_expr] = STATE(1310), - [sym__unquoted_anonymous_prefix] = STATE(4556), + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1252), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(678), + [sym__unquoted_with_expr] = STATE(941), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(716), - [anon_sym_true] = ACTIONS(2172), - [anon_sym_false] = ACTIONS(2172), - [anon_sym_null] = ACTIONS(2174), - [aux_sym_cmd_identifier_token3] = ACTIONS(2176), - [aux_sym_cmd_identifier_token4] = ACTIONS(2176), - [aux_sym_cmd_identifier_token5] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2178), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2180), - [anon_sym_DOT_DOT_LT] = ACTIONS(2180), - [aux_sym__val_number_decimal_token1] = ACTIONS(2182), - [aux_sym__val_number_decimal_token2] = ACTIONS(2184), - [aux_sym__val_number_decimal_token3] = ACTIONS(2186), - [aux_sym__val_number_decimal_token4] = ACTIONS(2186), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2188), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2190), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [sym_raw_string_begin] = ACTIONS(211), }, [STATE(717)] = { - [sym_expr_unary] = STATE(1282), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1282), - [sym__expr_binary_expression] = STATE(1311), - [sym_expr_parenthesized] = STATE(925), - [sym_val_range] = STATE(1282), - [sym__val_range] = STATE(4556), - [sym__value] = STATE(1282), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(968), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(472), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_unquoted] = STATE(1057), - [sym__unquoted_with_expr] = STATE(1312), - [sym__unquoted_anonymous_prefix] = STATE(4556), [sym_comment] = STATE(717), - [anon_sym_true] = ACTIONS(2172), - [anon_sym_false] = ACTIONS(2172), - [anon_sym_null] = ACTIONS(2174), - [aux_sym_cmd_identifier_token3] = ACTIONS(2176), - [aux_sym_cmd_identifier_token4] = ACTIONS(2176), - [aux_sym_cmd_identifier_token5] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2178), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2180), - [anon_sym_DOT_DOT_LT] = ACTIONS(2180), - [aux_sym__val_number_decimal_token1] = ACTIONS(2182), - [aux_sym__val_number_decimal_token2] = ACTIONS(2184), - [aux_sym__val_number_decimal_token3] = ACTIONS(2186), - [aux_sym__val_number_decimal_token4] = ACTIONS(2186), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2188), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2190), + [anon_sym_in] = ACTIONS(2176), + [sym__newline] = ACTIONS(2176), + [anon_sym_SEMI] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(2176), + [anon_sym_err_GT_PIPE] = ACTIONS(2176), + [anon_sym_out_GT_PIPE] = ACTIONS(2176), + [anon_sym_e_GT_PIPE] = ACTIONS(2176), + [anon_sym_o_GT_PIPE] = ACTIONS(2176), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2176), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2176), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2176), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2176), + [anon_sym_RPAREN] = ACTIONS(2176), + [anon_sym_GT2] = ACTIONS(2178), + [anon_sym_DASH2] = ACTIONS(2176), + [anon_sym_LBRACE] = ACTIONS(2176), + [anon_sym_RBRACE] = ACTIONS(2176), + [anon_sym_EQ_GT] = ACTIONS(2176), + [anon_sym_STAR2] = ACTIONS(2178), + [anon_sym_and2] = ACTIONS(2176), + [anon_sym_xor2] = ACTIONS(2176), + [anon_sym_or2] = ACTIONS(2176), + [anon_sym_not_DASHin2] = ACTIONS(2176), + [anon_sym_has2] = ACTIONS(2176), + [anon_sym_not_DASHhas2] = ACTIONS(2176), + [anon_sym_starts_DASHwith2] = ACTIONS(2176), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2176), + [anon_sym_ends_DASHwith2] = ACTIONS(2176), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2176), + [anon_sym_EQ_EQ2] = ACTIONS(2176), + [anon_sym_BANG_EQ2] = ACTIONS(2176), + [anon_sym_LT2] = ACTIONS(2178), + [anon_sym_LT_EQ2] = ACTIONS(2176), + [anon_sym_GT_EQ2] = ACTIONS(2176), + [anon_sym_EQ_TILDE2] = ACTIONS(2176), + [anon_sym_BANG_TILDE2] = ACTIONS(2176), + [anon_sym_like2] = ACTIONS(2176), + [anon_sym_not_DASHlike2] = ACTIONS(2176), + [anon_sym_STAR_STAR2] = ACTIONS(2176), + [anon_sym_PLUS_PLUS2] = ACTIONS(2176), + [anon_sym_SLASH2] = ACTIONS(2178), + [anon_sym_mod2] = ACTIONS(2176), + [anon_sym_SLASH_SLASH2] = ACTIONS(2176), + [anon_sym_PLUS2] = ACTIONS(2178), + [anon_sym_bit_DASHshl2] = ACTIONS(2176), + [anon_sym_bit_DASHshr2] = ACTIONS(2176), + [anon_sym_bit_DASHand2] = ACTIONS(2176), + [anon_sym_bit_DASHxor2] = ACTIONS(2176), + [anon_sym_bit_DASHor2] = ACTIONS(2176), + [anon_sym_COLON2] = ACTIONS(2176), + [anon_sym_err_GT] = ACTIONS(2178), + [anon_sym_out_GT] = ACTIONS(2178), + [anon_sym_e_GT] = ACTIONS(2178), + [anon_sym_o_GT] = ACTIONS(2178), + [anon_sym_err_PLUSout_GT] = ACTIONS(2178), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2178), + [anon_sym_o_PLUSe_GT] = ACTIONS(2178), + [anon_sym_e_PLUSo_GT] = ACTIONS(2178), + [anon_sym_err_GT_GT] = ACTIONS(2176), + [anon_sym_out_GT_GT] = ACTIONS(2176), + [anon_sym_e_GT_GT] = ACTIONS(2176), + [anon_sym_o_GT_GT] = ACTIONS(2176), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2176), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2176), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2176), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2176), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(718)] = { - [sym_cell_path] = STATE(1344), - [sym_path] = STATE(712), [sym_comment] = STATE(718), - [aux_sym__where_predicate_lhs_repeat1] = STATE(547), - [ts_builtin_sym_end] = ACTIONS(1838), - [anon_sym_in] = 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_GT2] = ACTIONS(1840), - [anon_sym_DASH2] = ACTIONS(1838), - [anon_sym_STAR2] = ACTIONS(1840), - [anon_sym_and2] = ACTIONS(1838), - [anon_sym_xor2] = ACTIONS(1838), - [anon_sym_or2] = ACTIONS(1838), - [anon_sym_not_DASHin2] = ACTIONS(1838), - [anon_sym_has2] = ACTIONS(1838), - [anon_sym_not_DASHhas2] = ACTIONS(1838), - [anon_sym_starts_DASHwith2] = ACTIONS(1838), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1838), - [anon_sym_ends_DASHwith2] = ACTIONS(1838), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1838), - [anon_sym_EQ_EQ2] = ACTIONS(1838), - [anon_sym_BANG_EQ2] = ACTIONS(1838), - [anon_sym_LT2] = ACTIONS(1840), - [anon_sym_LT_EQ2] = ACTIONS(1838), - [anon_sym_GT_EQ2] = ACTIONS(1838), - [anon_sym_EQ_TILDE2] = ACTIONS(1838), - [anon_sym_BANG_TILDE2] = ACTIONS(1838), - [anon_sym_like2] = ACTIONS(1838), - [anon_sym_not_DASHlike2] = ACTIONS(1838), - [anon_sym_STAR_STAR2] = ACTIONS(1838), - [anon_sym_PLUS_PLUS2] = ACTIONS(1838), - [anon_sym_SLASH2] = ACTIONS(1840), - [anon_sym_mod2] = ACTIONS(1838), - [anon_sym_SLASH_SLASH2] = ACTIONS(1838), - [anon_sym_PLUS2] = ACTIONS(1840), - [anon_sym_bit_DASHshl2] = ACTIONS(1838), - [anon_sym_bit_DASHshr2] = ACTIONS(1838), - [anon_sym_bit_DASHand2] = ACTIONS(1838), - [anon_sym_bit_DASHxor2] = ACTIONS(1838), - [anon_sym_bit_DASHor2] = ACTIONS(1838), - [anon_sym_DOT2] = ACTIONS(2192), - [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(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), + [anon_sym_in] = ACTIONS(2180), + [sym__newline] = ACTIONS(2180), + [anon_sym_SEMI] = ACTIONS(2180), + [anon_sym_PIPE] = ACTIONS(2180), + [anon_sym_err_GT_PIPE] = ACTIONS(2180), + [anon_sym_out_GT_PIPE] = ACTIONS(2180), + [anon_sym_e_GT_PIPE] = ACTIONS(2180), + [anon_sym_o_GT_PIPE] = ACTIONS(2180), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2180), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2180), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2180), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2180), + [anon_sym_RPAREN] = ACTIONS(2180), + [anon_sym_GT2] = ACTIONS(2182), + [anon_sym_DASH2] = ACTIONS(2180), + [anon_sym_LBRACE] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(2180), + [anon_sym_EQ_GT] = ACTIONS(2180), + [anon_sym_STAR2] = ACTIONS(2182), + [anon_sym_and2] = ACTIONS(2180), + [anon_sym_xor2] = ACTIONS(2180), + [anon_sym_or2] = ACTIONS(2180), + [anon_sym_not_DASHin2] = ACTIONS(2180), + [anon_sym_has2] = ACTIONS(2180), + [anon_sym_not_DASHhas2] = ACTIONS(2180), + [anon_sym_starts_DASHwith2] = ACTIONS(2180), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2180), + [anon_sym_ends_DASHwith2] = ACTIONS(2180), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2180), + [anon_sym_EQ_EQ2] = ACTIONS(2180), + [anon_sym_BANG_EQ2] = ACTIONS(2180), + [anon_sym_LT2] = ACTIONS(2182), + [anon_sym_LT_EQ2] = ACTIONS(2180), + [anon_sym_GT_EQ2] = ACTIONS(2180), + [anon_sym_EQ_TILDE2] = ACTIONS(2180), + [anon_sym_BANG_TILDE2] = ACTIONS(2180), + [anon_sym_like2] = ACTIONS(2180), + [anon_sym_not_DASHlike2] = ACTIONS(2180), + [anon_sym_STAR_STAR2] = ACTIONS(2180), + [anon_sym_PLUS_PLUS2] = ACTIONS(2180), + [anon_sym_SLASH2] = ACTIONS(2182), + [anon_sym_mod2] = ACTIONS(2180), + [anon_sym_SLASH_SLASH2] = ACTIONS(2180), + [anon_sym_PLUS2] = ACTIONS(2182), + [anon_sym_bit_DASHshl2] = ACTIONS(2180), + [anon_sym_bit_DASHshr2] = ACTIONS(2180), + [anon_sym_bit_DASHand2] = ACTIONS(2180), + [anon_sym_bit_DASHxor2] = ACTIONS(2180), + [anon_sym_bit_DASHor2] = ACTIONS(2180), + [anon_sym_COLON2] = ACTIONS(2180), + [anon_sym_err_GT] = ACTIONS(2182), + [anon_sym_out_GT] = ACTIONS(2182), + [anon_sym_e_GT] = ACTIONS(2182), + [anon_sym_o_GT] = ACTIONS(2182), + [anon_sym_err_PLUSout_GT] = ACTIONS(2182), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2182), + [anon_sym_o_PLUSe_GT] = ACTIONS(2182), + [anon_sym_e_PLUSo_GT] = ACTIONS(2182), + [anon_sym_err_GT_GT] = ACTIONS(2180), + [anon_sym_out_GT_GT] = ACTIONS(2180), + [anon_sym_e_GT_GT] = ACTIONS(2180), + [anon_sym_o_GT_GT] = ACTIONS(2180), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2180), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2180), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2180), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2180), [anon_sym_POUND] = ACTIONS(3), }, [STATE(719)] = { - [sym_expr_unary] = STATE(1282), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1282), - [sym__expr_binary_expression] = STATE(1313), - [sym_expr_parenthesized] = STATE(925), - [sym_val_range] = STATE(1282), - [sym__val_range] = STATE(4556), - [sym__value] = STATE(1282), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(968), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(472), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_unquoted] = STATE(1059), - [sym__unquoted_with_expr] = STATE(1314), - [sym__unquoted_anonymous_prefix] = STATE(4556), + [sym_cmd_identifier] = STATE(4340), + [sym_expr_parenthesized] = STATE(5053), + [sym__spread_parenthesized] = STATE(4675), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(4360), + [sym_val_number] = STATE(5053), + [sym__val_number_decimal] = STATE(1955), + [sym__val_number] = STATE(693), + [sym_val_string] = STATE(5053), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(5053), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym__spread_record] = STATE(4675), + [sym_record_entry] = STATE(4607), + [sym__record_key] = STATE(5144), [sym_comment] = STATE(719), - [anon_sym_true] = ACTIONS(2172), - [anon_sym_false] = ACTIONS(2172), - [anon_sym_null] = ACTIONS(2174), - [aux_sym_cmd_identifier_token3] = ACTIONS(2176), - [aux_sym_cmd_identifier_token4] = ACTIONS(2176), - [aux_sym_cmd_identifier_token5] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2178), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2180), - [anon_sym_DOT_DOT_LT] = ACTIONS(2180), - [aux_sym__val_number_decimal_token1] = ACTIONS(2182), - [aux_sym__val_number_decimal_token2] = ACTIONS(2184), - [aux_sym__val_number_decimal_token3] = ACTIONS(2186), - [aux_sym__val_number_decimal_token4] = ACTIONS(2186), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2188), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2190), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(720)] = { - [sym_expr_unary] = STATE(1282), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1282), - [sym__expr_binary_expression] = STATE(1315), - [sym_expr_parenthesized] = STATE(925), - [sym_val_range] = STATE(1282), - [sym__val_range] = STATE(4556), - [sym__value] = STATE(1282), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(968), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(472), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_unquoted] = STATE(1068), - [sym__unquoted_with_expr] = STATE(1322), - [sym__unquoted_anonymous_prefix] = STATE(4556), - [sym_comment] = STATE(720), - [anon_sym_true] = ACTIONS(2172), - [anon_sym_false] = ACTIONS(2172), - [anon_sym_null] = ACTIONS(2174), - [aux_sym_cmd_identifier_token3] = ACTIONS(2176), - [aux_sym_cmd_identifier_token4] = ACTIONS(2176), - [aux_sym_cmd_identifier_token5] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2178), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2180), - [anon_sym_DOT_DOT_LT] = ACTIONS(2180), - [aux_sym__val_number_decimal_token1] = ACTIONS(2182), - [aux_sym__val_number_decimal_token2] = ACTIONS(2184), - [aux_sym__val_number_decimal_token3] = ACTIONS(2186), - [aux_sym__val_number_decimal_token4] = ACTIONS(2186), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2188), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2190), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(721)] = { - [sym_cmd_identifier] = STATE(4341), - [sym_expr_parenthesized] = STATE(5062), - [sym__spread_parenthesized] = STATE(4693), - [sym__spread_variable] = STATE(4695), - [sym_val_variable] = STATE(5062), - [sym_val_number] = STATE(5062), - [sym__val_number_decimal] = STATE(1952), - [sym__val_number] = STATE(676), - [sym_val_string] = STATE(5062), - [sym__raw_str] = STATE(2243), - [sym__str_double_quotes] = STATE(2243), - [sym__str_single_quotes] = STATE(2243), - [sym__str_back_ticks] = STATE(2243), - [sym_val_interpolated] = STATE(5062), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym__spread_record] = STATE(4693), - [sym_record_entry] = STATE(4626), - [sym__record_key] = STATE(5228), - [sym_comment] = STATE(721), - [aux_sym_record_body_repeat1] = STATE(750), + [aux_sym__match_pattern_record_body_repeat1] = STATE(720), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -102281,2346 +102176,1576 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_null] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1780), [anon_sym_DASH2] = ACTIONS(175), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_decimal_token1] = ACTIONS(1784), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), + [sym_raw_string_begin] = ACTIONS(1796), + }, + [STATE(720)] = { + [sym_cmd_identifier] = STATE(4340), + [sym_expr_parenthesized] = STATE(5053), + [sym__spread_parenthesized] = STATE(4675), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(4634), + [sym_val_number] = STATE(5053), + [sym__val_number_decimal] = STATE(1955), + [sym__val_number] = STATE(693), + [sym_val_string] = STATE(5053), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(5053), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym__spread_record] = STATE(4675), + [sym_record_entry] = STATE(4793), + [sym__record_key] = STATE(5144), + [sym_comment] = STATE(720), + [aux_sym__match_pattern_record_body_repeat1] = STATE(720), + [anon_sym_export] = ACTIONS(2184), + [anon_sym_alias] = ACTIONS(2187), + [anon_sym_let] = ACTIONS(2187), + [anon_sym_mut] = ACTIONS(2187), + [anon_sym_const] = ACTIONS(2187), + [aux_sym_cmd_identifier_token1] = ACTIONS(2190), + [anon_sym_def] = ACTIONS(2187), + [anon_sym_use] = ACTIONS(2187), + [anon_sym_export_DASHenv] = ACTIONS(2187), + [anon_sym_extern] = ACTIONS(2187), + [anon_sym_module] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_loop] = ACTIONS(2187), + [anon_sym_while] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_else] = ACTIONS(2187), + [anon_sym_try] = ACTIONS(2187), + [anon_sym_catch] = ACTIONS(2187), + [anon_sym_match] = ACTIONS(2187), + [anon_sym_in] = ACTIONS(2184), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [anon_sym_null] = ACTIONS(2193), + [aux_sym_cmd_identifier_token3] = ACTIONS(2196), + [aux_sym_cmd_identifier_token4] = ACTIONS(2196), + [aux_sym_cmd_identifier_token5] = ACTIONS(2196), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_DOLLAR] = ACTIONS(2202), + [anon_sym_DASH2] = ACTIONS(2205), + [anon_sym_PLUS2] = ACTIONS(2205), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2208), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2211), + [aux_sym__val_number_decimal_token1] = ACTIONS(2214), + [aux_sym__val_number_decimal_token2] = ACTIONS(2217), + [aux_sym__val_number_decimal_token3] = ACTIONS(2220), + [aux_sym__val_number_decimal_token4] = ACTIONS(2220), + [aux_sym__val_number_token1] = ACTIONS(2223), + [aux_sym__val_number_token2] = ACTIONS(2223), + [aux_sym__val_number_token3] = ACTIONS(2223), + [anon_sym_DQUOTE] = ACTIONS(2226), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_BQUOTE] = ACTIONS(2232), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2235), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2238), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2241), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2244), + }, + [STATE(721)] = { + [aux_sym__repeat_newline] = STATE(1050), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(721), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [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), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(722)] = { + [aux_sym__repeat_newline] = STATE(1051), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(722), - [anon_sym_in] = ACTIONS(2194), - [sym__newline] = ACTIONS(2194), - [anon_sym_SEMI] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_err_GT_PIPE] = ACTIONS(2194), - [anon_sym_out_GT_PIPE] = ACTIONS(2194), - [anon_sym_e_GT_PIPE] = ACTIONS(2194), - [anon_sym_o_GT_PIPE] = ACTIONS(2194), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2194), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2194), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2194), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2194), - [anon_sym_RPAREN] = ACTIONS(2194), - [anon_sym_GT2] = ACTIONS(2196), - [anon_sym_DASH2] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2194), - [anon_sym_STAR2] = ACTIONS(2196), - [anon_sym_and2] = ACTIONS(2194), - [anon_sym_xor2] = ACTIONS(2194), - [anon_sym_or2] = ACTIONS(2194), - [anon_sym_not_DASHin2] = ACTIONS(2194), - [anon_sym_has2] = ACTIONS(2194), - [anon_sym_not_DASHhas2] = ACTIONS(2194), - [anon_sym_starts_DASHwith2] = ACTIONS(2194), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2194), - [anon_sym_ends_DASHwith2] = ACTIONS(2194), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2194), - [anon_sym_EQ_EQ2] = ACTIONS(2194), - [anon_sym_BANG_EQ2] = ACTIONS(2194), - [anon_sym_LT2] = ACTIONS(2196), - [anon_sym_LT_EQ2] = ACTIONS(2194), - [anon_sym_GT_EQ2] = ACTIONS(2194), - [anon_sym_EQ_TILDE2] = ACTIONS(2194), - [anon_sym_BANG_TILDE2] = ACTIONS(2194), - [anon_sym_like2] = ACTIONS(2194), - [anon_sym_not_DASHlike2] = ACTIONS(2194), - [anon_sym_STAR_STAR2] = ACTIONS(2194), - [anon_sym_PLUS_PLUS2] = ACTIONS(2194), - [anon_sym_SLASH2] = ACTIONS(2196), - [anon_sym_mod2] = ACTIONS(2194), - [anon_sym_SLASH_SLASH2] = ACTIONS(2194), - [anon_sym_PLUS2] = ACTIONS(2196), - [anon_sym_bit_DASHshl2] = ACTIONS(2194), - [anon_sym_bit_DASHshr2] = ACTIONS(2194), - [anon_sym_bit_DASHand2] = ACTIONS(2194), - [anon_sym_bit_DASHxor2] = ACTIONS(2194), - [anon_sym_bit_DASHor2] = ACTIONS(2194), - [anon_sym_DOT_DOT2] = ACTIONS(1619), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), - [anon_sym_err_GT] = ACTIONS(2196), - [anon_sym_out_GT] = ACTIONS(2196), - [anon_sym_e_GT] = ACTIONS(2196), - [anon_sym_o_GT] = ACTIONS(2196), - [anon_sym_err_PLUSout_GT] = ACTIONS(2196), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2196), - [anon_sym_o_PLUSe_GT] = ACTIONS(2196), - [anon_sym_e_PLUSo_GT] = ACTIONS(2196), - [anon_sym_err_GT_GT] = ACTIONS(2194), - [anon_sym_out_GT_GT] = ACTIONS(2194), - [anon_sym_e_GT_GT] = ACTIONS(2194), - [anon_sym_o_GT_GT] = ACTIONS(2194), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [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), [anon_sym_POUND] = ACTIONS(3), }, [STATE(723)] = { - [aux_sym__repeat_newline] = STATE(987), - [sym__expr_parenthesized_immediate] = STATE(4728), + [aux_sym__repeat_newline] = STATE(1129), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(723), - [anon_sym_in] = ACTIONS(2198), - [sym__newline] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_err_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_GT_PIPE] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_GT2] = ACTIONS(2200), - [anon_sym_DASH2] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_STAR2] = ACTIONS(2200), - [anon_sym_and2] = ACTIONS(2198), - [anon_sym_xor2] = ACTIONS(2198), - [anon_sym_or2] = ACTIONS(2198), - [anon_sym_not_DASHin2] = ACTIONS(2198), - [anon_sym_has2] = ACTIONS(2198), - [anon_sym_not_DASHhas2] = ACTIONS(2198), - [anon_sym_starts_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), - [anon_sym_ends_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), - [anon_sym_EQ_EQ2] = ACTIONS(2198), - [anon_sym_BANG_EQ2] = ACTIONS(2198), - [anon_sym_LT2] = ACTIONS(2200), - [anon_sym_LT_EQ2] = ACTIONS(2198), - [anon_sym_GT_EQ2] = ACTIONS(2198), - [anon_sym_EQ_TILDE2] = ACTIONS(2198), - [anon_sym_BANG_TILDE2] = ACTIONS(2198), - [anon_sym_like2] = ACTIONS(2198), - [anon_sym_not_DASHlike2] = ACTIONS(2198), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2198), - [anon_sym_PLUS_PLUS2] = ACTIONS(2198), - [anon_sym_SLASH2] = ACTIONS(2200), - [anon_sym_mod2] = ACTIONS(2198), - [anon_sym_SLASH_SLASH2] = ACTIONS(2198), - [anon_sym_PLUS2] = ACTIONS(2200), - [anon_sym_bit_DASHshl2] = ACTIONS(2198), - [anon_sym_bit_DASHshr2] = ACTIONS(2198), - [anon_sym_bit_DASHand2] = ACTIONS(2198), - [anon_sym_bit_DASHxor2] = ACTIONS(2198), - [anon_sym_bit_DASHor2] = ACTIONS(2198), - [anon_sym_err_GT] = ACTIONS(2200), - [anon_sym_out_GT] = ACTIONS(2200), - [anon_sym_e_GT] = ACTIONS(2200), - [anon_sym_o_GT] = ACTIONS(2200), - [anon_sym_err_PLUSout_GT] = ACTIONS(2200), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), - [anon_sym_o_PLUSe_GT] = ACTIONS(2200), - [anon_sym_e_PLUSo_GT] = ACTIONS(2200), - [anon_sym_err_GT_GT] = ACTIONS(2198), - [anon_sym_out_GT_GT] = ACTIONS(2198), - [anon_sym_e_GT_GT] = ACTIONS(2198), - [anon_sym_o_GT_GT] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [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), [anon_sym_POUND] = ACTIONS(3), }, [STATE(724)] = { - [aux_sym__repeat_newline] = STATE(991), - [sym__expr_parenthesized_immediate] = STATE(4728), + [aux_sym__repeat_newline] = STATE(1053), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(724), - [anon_sym_in] = ACTIONS(2198), - [sym__newline] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_err_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_GT_PIPE] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_GT2] = ACTIONS(2200), - [anon_sym_DASH2] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_STAR2] = ACTIONS(2200), - [anon_sym_and2] = ACTIONS(2198), - [anon_sym_xor2] = ACTIONS(2198), - [anon_sym_or2] = ACTIONS(2198), - [anon_sym_not_DASHin2] = ACTIONS(2198), - [anon_sym_has2] = ACTIONS(2198), - [anon_sym_not_DASHhas2] = ACTIONS(2198), - [anon_sym_starts_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), - [anon_sym_ends_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), - [anon_sym_EQ_EQ2] = ACTIONS(2198), - [anon_sym_BANG_EQ2] = ACTIONS(2198), - [anon_sym_LT2] = ACTIONS(2200), - [anon_sym_LT_EQ2] = ACTIONS(2198), - [anon_sym_GT_EQ2] = ACTIONS(2198), - [anon_sym_EQ_TILDE2] = ACTIONS(2198), - [anon_sym_BANG_TILDE2] = ACTIONS(2198), - [anon_sym_like2] = ACTIONS(2198), - [anon_sym_not_DASHlike2] = ACTIONS(2198), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2198), - [anon_sym_PLUS_PLUS2] = ACTIONS(2198), - [anon_sym_SLASH2] = ACTIONS(2200), - [anon_sym_mod2] = ACTIONS(2198), - [anon_sym_SLASH_SLASH2] = ACTIONS(2198), - [anon_sym_PLUS2] = ACTIONS(2200), - [anon_sym_bit_DASHshl2] = ACTIONS(2198), - [anon_sym_bit_DASHshr2] = ACTIONS(2198), - [anon_sym_bit_DASHand2] = ACTIONS(2198), - [anon_sym_bit_DASHxor2] = ACTIONS(2198), - [anon_sym_bit_DASHor2] = ACTIONS(2198), - [anon_sym_err_GT] = ACTIONS(2200), - [anon_sym_out_GT] = ACTIONS(2200), - [anon_sym_e_GT] = ACTIONS(2200), - [anon_sym_o_GT] = ACTIONS(2200), - [anon_sym_err_PLUSout_GT] = ACTIONS(2200), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), - [anon_sym_o_PLUSe_GT] = ACTIONS(2200), - [anon_sym_e_PLUSo_GT] = ACTIONS(2200), - [anon_sym_err_GT_GT] = ACTIONS(2198), - [anon_sym_out_GT_GT] = ACTIONS(2198), - [anon_sym_e_GT_GT] = ACTIONS(2198), - [anon_sym_o_GT_GT] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [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), [anon_sym_POUND] = ACTIONS(3), }, [STATE(725)] = { - [aux_sym__repeat_newline] = STATE(1001), - [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_cell_path] = STATE(1310), + [sym_path] = STATE(827), [sym_comment] = STATE(725), - [anon_sym_in] = ACTIONS(2198), - [sym__newline] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_err_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_GT_PIPE] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_GT2] = ACTIONS(2200), - [anon_sym_DASH2] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_STAR2] = ACTIONS(2200), - [anon_sym_and2] = ACTIONS(2198), - [anon_sym_xor2] = ACTIONS(2198), - [anon_sym_or2] = ACTIONS(2198), - [anon_sym_not_DASHin2] = ACTIONS(2198), - [anon_sym_has2] = ACTIONS(2198), - [anon_sym_not_DASHhas2] = ACTIONS(2198), - [anon_sym_starts_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), - [anon_sym_ends_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), - [anon_sym_EQ_EQ2] = ACTIONS(2198), - [anon_sym_BANG_EQ2] = ACTIONS(2198), - [anon_sym_LT2] = ACTIONS(2200), - [anon_sym_LT_EQ2] = ACTIONS(2198), - [anon_sym_GT_EQ2] = ACTIONS(2198), - [anon_sym_EQ_TILDE2] = ACTIONS(2198), - [anon_sym_BANG_TILDE2] = ACTIONS(2198), - [anon_sym_like2] = ACTIONS(2198), - [anon_sym_not_DASHlike2] = ACTIONS(2198), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2198), - [anon_sym_PLUS_PLUS2] = ACTIONS(2198), - [anon_sym_SLASH2] = ACTIONS(2200), - [anon_sym_mod2] = ACTIONS(2198), - [anon_sym_SLASH_SLASH2] = ACTIONS(2198), - [anon_sym_PLUS2] = ACTIONS(2200), - [anon_sym_bit_DASHshl2] = ACTIONS(2198), - [anon_sym_bit_DASHshr2] = ACTIONS(2198), - [anon_sym_bit_DASHand2] = ACTIONS(2198), - [anon_sym_bit_DASHxor2] = ACTIONS(2198), - [anon_sym_bit_DASHor2] = ACTIONS(2198), - [anon_sym_err_GT] = ACTIONS(2200), - [anon_sym_out_GT] = ACTIONS(2200), - [anon_sym_e_GT] = ACTIONS(2200), - [anon_sym_o_GT] = ACTIONS(2200), - [anon_sym_err_PLUSout_GT] = ACTIONS(2200), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), - [anon_sym_o_PLUSe_GT] = ACTIONS(2200), - [anon_sym_e_PLUSo_GT] = ACTIONS(2200), - [anon_sym_err_GT_GT] = ACTIONS(2198), - [anon_sym_out_GT_GT] = ACTIONS(2198), - [anon_sym_e_GT_GT] = ACTIONS(2198), - [anon_sym_o_GT_GT] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), + [aux_sym__where_predicate_lhs_repeat1] = STATE(525), + [ts_builtin_sym_end] = ACTIONS(1872), + [anon_sym_in] = ACTIONS(1872), + [sym__newline] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1872), + [anon_sym_PIPE] = ACTIONS(1872), + [anon_sym_err_GT_PIPE] = ACTIONS(1872), + [anon_sym_out_GT_PIPE] = ACTIONS(1872), + [anon_sym_e_GT_PIPE] = ACTIONS(1872), + [anon_sym_o_GT_PIPE] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1872), + [anon_sym_GT2] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_STAR2] = ACTIONS(1874), + [anon_sym_and2] = ACTIONS(1872), + [anon_sym_xor2] = ACTIONS(1872), + [anon_sym_or2] = ACTIONS(1872), + [anon_sym_not_DASHin2] = ACTIONS(1872), + [anon_sym_has2] = ACTIONS(1872), + [anon_sym_not_DASHhas2] = ACTIONS(1872), + [anon_sym_starts_DASHwith2] = ACTIONS(1872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1872), + [anon_sym_ends_DASHwith2] = ACTIONS(1872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1872), + [anon_sym_EQ_EQ2] = ACTIONS(1872), + [anon_sym_BANG_EQ2] = ACTIONS(1872), + [anon_sym_LT2] = ACTIONS(1874), + [anon_sym_LT_EQ2] = ACTIONS(1872), + [anon_sym_GT_EQ2] = ACTIONS(1872), + [anon_sym_EQ_TILDE2] = ACTIONS(1872), + [anon_sym_BANG_TILDE2] = ACTIONS(1872), + [anon_sym_like2] = ACTIONS(1872), + [anon_sym_not_DASHlike2] = ACTIONS(1872), + [anon_sym_STAR_STAR2] = ACTIONS(1872), + [anon_sym_PLUS_PLUS2] = ACTIONS(1872), + [anon_sym_SLASH2] = ACTIONS(1874), + [anon_sym_mod2] = ACTIONS(1872), + [anon_sym_SLASH_SLASH2] = ACTIONS(1872), + [anon_sym_PLUS2] = ACTIONS(1874), + [anon_sym_bit_DASHshl2] = ACTIONS(1872), + [anon_sym_bit_DASHshr2] = ACTIONS(1872), + [anon_sym_bit_DASHand2] = ACTIONS(1872), + [anon_sym_bit_DASHxor2] = ACTIONS(1872), + [anon_sym_bit_DASHor2] = ACTIONS(1872), + [anon_sym_DOT2] = ACTIONS(2251), + [anon_sym_err_GT] = ACTIONS(1874), + [anon_sym_out_GT] = ACTIONS(1874), + [anon_sym_e_GT] = ACTIONS(1874), + [anon_sym_o_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT] = ACTIONS(1874), + [anon_sym_err_GT_GT] = ACTIONS(1872), + [anon_sym_out_GT_GT] = ACTIONS(1872), + [anon_sym_e_GT_GT] = ACTIONS(1872), + [anon_sym_o_GT_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1872), [anon_sym_POUND] = ACTIONS(3), }, [STATE(726)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(2139), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(671), - [sym__unquoted_with_expr] = STATE(959), - [sym__unquoted_anonymous_prefix] = STATE(4567), [sym_comment] = STATE(726), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_in] = ACTIONS(1750), + [sym__newline] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1750), + [anon_sym_err_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_GT_PIPE] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1750), + [anon_sym_RPAREN] = ACTIONS(1750), + [anon_sym_GT2] = ACTIONS(1752), + [anon_sym_DASH2] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1750), + [anon_sym_RBRACE] = ACTIONS(1750), + [anon_sym_STAR2] = ACTIONS(1752), + [anon_sym_and2] = ACTIONS(1750), + [anon_sym_xor2] = ACTIONS(1750), + [anon_sym_or2] = ACTIONS(1750), + [anon_sym_not_DASHin2] = ACTIONS(1750), + [anon_sym_has2] = ACTIONS(1750), + [anon_sym_not_DASHhas2] = ACTIONS(1750), + [anon_sym_starts_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1750), + [anon_sym_ends_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1750), + [anon_sym_EQ_EQ2] = ACTIONS(1750), + [anon_sym_BANG_EQ2] = ACTIONS(1750), + [anon_sym_LT2] = ACTIONS(1752), + [anon_sym_LT_EQ2] = ACTIONS(1750), + [anon_sym_GT_EQ2] = ACTIONS(1750), + [anon_sym_EQ_TILDE2] = ACTIONS(1750), + [anon_sym_BANG_TILDE2] = ACTIONS(1750), + [anon_sym_like2] = ACTIONS(1750), + [anon_sym_not_DASHlike2] = ACTIONS(1750), + [anon_sym_STAR_STAR2] = ACTIONS(1750), + [anon_sym_PLUS_PLUS2] = ACTIONS(1750), + [anon_sym_SLASH2] = ACTIONS(1752), + [anon_sym_mod2] = ACTIONS(1750), + [anon_sym_SLASH_SLASH2] = ACTIONS(1750), + [anon_sym_PLUS2] = ACTIONS(1752), + [anon_sym_bit_DASHshl2] = ACTIONS(1750), + [anon_sym_bit_DASHshr2] = ACTIONS(1750), + [anon_sym_bit_DASHand2] = ACTIONS(1750), + [anon_sym_bit_DASHxor2] = ACTIONS(1750), + [anon_sym_bit_DASHor2] = ACTIONS(1750), + [anon_sym_DOT] = ACTIONS(2253), + [aux_sym__immediate_decimal_token5] = ACTIONS(1756), + [anon_sym_err_GT] = ACTIONS(1752), + [anon_sym_out_GT] = ACTIONS(1752), + [anon_sym_e_GT] = ACTIONS(1752), + [anon_sym_o_GT] = ACTIONS(1752), + [anon_sym_err_PLUSout_GT] = ACTIONS(1752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1752), + [anon_sym_o_PLUSe_GT] = ACTIONS(1752), + [anon_sym_e_PLUSo_GT] = ACTIONS(1752), + [anon_sym_err_GT_GT] = ACTIONS(1750), + [anon_sym_out_GT_GT] = ACTIONS(1750), + [anon_sym_e_GT_GT] = ACTIONS(1750), + [anon_sym_o_GT_GT] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1750), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(727)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(2214), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(711), - [sym__unquoted_with_expr] = STATE(962), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_cell_path] = STATE(1312), + [sym_path] = STATE(827), [sym_comment] = STATE(727), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), + [aux_sym__where_predicate_lhs_repeat1] = STATE(525), + [ts_builtin_sym_end] = ACTIONS(1876), + [anon_sym_in] = ACTIONS(1876), + [sym__newline] = ACTIONS(1876), + [anon_sym_SEMI] = ACTIONS(1876), + [anon_sym_PIPE] = ACTIONS(1876), + [anon_sym_err_GT_PIPE] = ACTIONS(1876), + [anon_sym_out_GT_PIPE] = ACTIONS(1876), + [anon_sym_e_GT_PIPE] = ACTIONS(1876), + [anon_sym_o_GT_PIPE] = ACTIONS(1876), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1876), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1876), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1876), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1876), + [anon_sym_GT2] = ACTIONS(1878), + [anon_sym_DASH2] = ACTIONS(1876), + [anon_sym_STAR2] = ACTIONS(1878), + [anon_sym_and2] = ACTIONS(1876), + [anon_sym_xor2] = ACTIONS(1876), + [anon_sym_or2] = ACTIONS(1876), + [anon_sym_not_DASHin2] = ACTIONS(1876), + [anon_sym_has2] = ACTIONS(1876), + [anon_sym_not_DASHhas2] = ACTIONS(1876), + [anon_sym_starts_DASHwith2] = ACTIONS(1876), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1876), + [anon_sym_ends_DASHwith2] = ACTIONS(1876), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1876), + [anon_sym_EQ_EQ2] = ACTIONS(1876), + [anon_sym_BANG_EQ2] = ACTIONS(1876), + [anon_sym_LT2] = ACTIONS(1878), + [anon_sym_LT_EQ2] = ACTIONS(1876), + [anon_sym_GT_EQ2] = ACTIONS(1876), + [anon_sym_EQ_TILDE2] = ACTIONS(1876), + [anon_sym_BANG_TILDE2] = ACTIONS(1876), + [anon_sym_like2] = ACTIONS(1876), + [anon_sym_not_DASHlike2] = ACTIONS(1876), + [anon_sym_STAR_STAR2] = ACTIONS(1876), + [anon_sym_PLUS_PLUS2] = ACTIONS(1876), + [anon_sym_SLASH2] = ACTIONS(1878), + [anon_sym_mod2] = ACTIONS(1876), + [anon_sym_SLASH_SLASH2] = ACTIONS(1876), + [anon_sym_PLUS2] = ACTIONS(1878), + [anon_sym_bit_DASHshl2] = ACTIONS(1876), + [anon_sym_bit_DASHshr2] = ACTIONS(1876), + [anon_sym_bit_DASHand2] = ACTIONS(1876), + [anon_sym_bit_DASHxor2] = ACTIONS(1876), + [anon_sym_bit_DASHor2] = ACTIONS(1876), + [anon_sym_DOT2] = ACTIONS(2251), + [anon_sym_err_GT] = ACTIONS(1878), + [anon_sym_out_GT] = ACTIONS(1878), + [anon_sym_e_GT] = ACTIONS(1878), + [anon_sym_o_GT] = ACTIONS(1878), + [anon_sym_err_PLUSout_GT] = ACTIONS(1878), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1878), + [anon_sym_o_PLUSe_GT] = ACTIONS(1878), + [anon_sym_e_PLUSo_GT] = ACTIONS(1878), + [anon_sym_err_GT_GT] = ACTIONS(1876), + [anon_sym_out_GT_GT] = ACTIONS(1876), + [anon_sym_e_GT_GT] = ACTIONS(1876), + [anon_sym_o_GT_GT] = ACTIONS(1876), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1876), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1876), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1876), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1876), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(728)] = { - [aux_sym__repeat_newline] = STATE(1005), - [sym__expr_parenthesized_immediate] = STATE(4728), + [aux_sym__repeat_newline] = STATE(1054), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(728), - [anon_sym_in] = ACTIONS(2198), - [sym__newline] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_err_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_GT_PIPE] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_GT2] = ACTIONS(2200), - [anon_sym_DASH2] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_STAR2] = ACTIONS(2200), - [anon_sym_and2] = ACTIONS(2198), - [anon_sym_xor2] = ACTIONS(2198), - [anon_sym_or2] = ACTIONS(2198), - [anon_sym_not_DASHin2] = ACTIONS(2198), - [anon_sym_has2] = ACTIONS(2198), - [anon_sym_not_DASHhas2] = ACTIONS(2198), - [anon_sym_starts_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), - [anon_sym_ends_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), - [anon_sym_EQ_EQ2] = ACTIONS(2198), - [anon_sym_BANG_EQ2] = ACTIONS(2198), - [anon_sym_LT2] = ACTIONS(2200), - [anon_sym_LT_EQ2] = ACTIONS(2198), - [anon_sym_GT_EQ2] = ACTIONS(2198), - [anon_sym_EQ_TILDE2] = ACTIONS(2198), - [anon_sym_BANG_TILDE2] = ACTIONS(2198), - [anon_sym_like2] = ACTIONS(2198), - [anon_sym_not_DASHlike2] = ACTIONS(2198), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2198), - [anon_sym_PLUS_PLUS2] = ACTIONS(2198), - [anon_sym_SLASH2] = ACTIONS(2200), - [anon_sym_mod2] = ACTIONS(2198), - [anon_sym_SLASH_SLASH2] = ACTIONS(2198), - [anon_sym_PLUS2] = ACTIONS(2200), - [anon_sym_bit_DASHshl2] = ACTIONS(2198), - [anon_sym_bit_DASHshr2] = ACTIONS(2198), - [anon_sym_bit_DASHand2] = ACTIONS(2198), - [anon_sym_bit_DASHxor2] = ACTIONS(2198), - [anon_sym_bit_DASHor2] = ACTIONS(2198), - [anon_sym_err_GT] = ACTIONS(2200), - [anon_sym_out_GT] = ACTIONS(2200), - [anon_sym_e_GT] = ACTIONS(2200), - [anon_sym_o_GT] = ACTIONS(2200), - [anon_sym_err_PLUSout_GT] = ACTIONS(2200), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), - [anon_sym_o_PLUSe_GT] = ACTIONS(2200), - [anon_sym_e_PLUSo_GT] = ACTIONS(2200), - [anon_sym_err_GT_GT] = ACTIONS(2198), - [anon_sym_out_GT_GT] = ACTIONS(2198), - [anon_sym_e_GT_GT] = ACTIONS(2198), - [anon_sym_o_GT_GT] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [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), [anon_sym_POUND] = ACTIONS(3), }, [STATE(729)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(2141), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(692), - [sym__unquoted_with_expr] = STATE(896), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(1055), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(729), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [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), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(730)] = { - [aux_sym__repeat_newline] = STATE(1010), - [sym__expr_parenthesized_immediate] = STATE(4728), + [aux_sym__repeat_newline] = STATE(928), + [aux_sym__pipe_separator] = STATE(753), [sym_comment] = STATE(730), - [anon_sym_in] = ACTIONS(2198), - [sym__newline] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_err_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_GT_PIPE] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_GT2] = ACTIONS(2200), - [anon_sym_DASH2] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_STAR2] = ACTIONS(2200), - [anon_sym_and2] = ACTIONS(2198), - [anon_sym_xor2] = ACTIONS(2198), - [anon_sym_or2] = ACTIONS(2198), - [anon_sym_not_DASHin2] = ACTIONS(2198), - [anon_sym_has2] = ACTIONS(2198), - [anon_sym_not_DASHhas2] = ACTIONS(2198), - [anon_sym_starts_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), - [anon_sym_ends_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), - [anon_sym_EQ_EQ2] = ACTIONS(2198), - [anon_sym_BANG_EQ2] = ACTIONS(2198), - [anon_sym_LT2] = ACTIONS(2200), - [anon_sym_LT_EQ2] = ACTIONS(2198), - [anon_sym_GT_EQ2] = ACTIONS(2198), - [anon_sym_EQ_TILDE2] = ACTIONS(2198), - [anon_sym_BANG_TILDE2] = ACTIONS(2198), - [anon_sym_like2] = ACTIONS(2198), - [anon_sym_not_DASHlike2] = ACTIONS(2198), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2198), - [anon_sym_PLUS_PLUS2] = ACTIONS(2198), - [anon_sym_SLASH2] = ACTIONS(2200), - [anon_sym_mod2] = ACTIONS(2198), - [anon_sym_SLASH_SLASH2] = ACTIONS(2198), - [anon_sym_PLUS2] = ACTIONS(2200), - [anon_sym_bit_DASHshl2] = ACTIONS(2198), - [anon_sym_bit_DASHshr2] = ACTIONS(2198), - [anon_sym_bit_DASHand2] = ACTIONS(2198), - [anon_sym_bit_DASHxor2] = ACTIONS(2198), - [anon_sym_bit_DASHor2] = ACTIONS(2198), - [anon_sym_err_GT] = ACTIONS(2200), - [anon_sym_out_GT] = ACTIONS(2200), - [anon_sym_e_GT] = ACTIONS(2200), - [anon_sym_o_GT] = ACTIONS(2200), - [anon_sym_err_PLUSout_GT] = ACTIONS(2200), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), - [anon_sym_o_PLUSe_GT] = ACTIONS(2200), - [anon_sym_e_PLUSo_GT] = ACTIONS(2200), - [anon_sym_err_GT_GT] = ACTIONS(2198), - [anon_sym_out_GT_GT] = ACTIONS(2198), - [anon_sym_e_GT_GT] = ACTIONS(2198), - [anon_sym_o_GT_GT] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2255), + [anon_sym_alias] = ACTIONS(2257), + [anon_sym_let] = ACTIONS(2257), + [anon_sym_mut] = ACTIONS(2257), + [anon_sym_const] = ACTIONS(2257), + [aux_sym_cmd_identifier_token1] = ACTIONS(2255), + [anon_sym_def] = ACTIONS(2257), + [anon_sym_use] = ACTIONS(2257), + [anon_sym_export_DASHenv] = ACTIONS(2257), + [anon_sym_extern] = ACTIONS(2257), + [anon_sym_module] = ACTIONS(2257), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_loop] = ACTIONS(2257), + [anon_sym_while] = ACTIONS(2257), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_else] = ACTIONS(2257), + [anon_sym_try] = ACTIONS(2257), + [anon_sym_catch] = ACTIONS(2257), + [anon_sym_match] = ACTIONS(2257), + [anon_sym_in] = ACTIONS(2255), + [anon_sym_true] = ACTIONS(2257), + [anon_sym_false] = ACTIONS(2257), + [anon_sym_null] = ACTIONS(2257), + [aux_sym_cmd_identifier_token3] = ACTIONS(2257), + [aux_sym_cmd_identifier_token4] = ACTIONS(2257), + [aux_sym_cmd_identifier_token5] = ACTIONS(2257), + [sym__newline] = ACTIONS(2259), + [anon_sym_PIPE] = ACTIONS(2261), + [anon_sym_err_GT_PIPE] = ACTIONS(2261), + [anon_sym_out_GT_PIPE] = ACTIONS(2261), + [anon_sym_e_GT_PIPE] = ACTIONS(2261), + [anon_sym_o_GT_PIPE] = ACTIONS(2261), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2261), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2261), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2261), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2257), + [anon_sym_LPAREN] = ACTIONS(2257), + [anon_sym_DOLLAR] = ACTIONS(2255), + [anon_sym_DASH2] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(2257), + [anon_sym_DOT_DOT] = ACTIONS(2255), + [anon_sym_where] = ACTIONS(2257), + [aux_sym_expr_unary_token1] = ACTIONS(2257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2257), + [anon_sym_DOT_DOT_LT] = ACTIONS(2257), + [aux_sym__val_number_decimal_token1] = ACTIONS(2255), + [aux_sym__val_number_decimal_token2] = ACTIONS(2257), + [aux_sym__val_number_decimal_token3] = ACTIONS(2257), + [aux_sym__val_number_decimal_token4] = ACTIONS(2257), + [aux_sym__val_number_token1] = ACTIONS(2257), + [aux_sym__val_number_token2] = ACTIONS(2257), + [aux_sym__val_number_token3] = ACTIONS(2257), + [anon_sym_0b] = ACTIONS(2255), + [anon_sym_0o] = ACTIONS(2255), + [anon_sym_0x] = ACTIONS(2255), + [sym_val_date] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(2257), + [anon_sym_SQUOTE] = ACTIONS(2257), + [anon_sym_BQUOTE] = ACTIONS(2257), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2257), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2257), + [anon_sym_CARET] = ACTIONS(2257), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2257), }, [STATE(731)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(2143), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(693), - [sym__unquoted_with_expr] = STATE(897), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(1059), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(731), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [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), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(732)] = { - [aux_sym__repeat_newline] = STATE(1021), - [sym__expr_parenthesized_immediate] = STATE(4728), + [aux_sym__repeat_newline] = STATE(1060), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(732), - [anon_sym_in] = ACTIONS(2198), - [sym__newline] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_err_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_GT_PIPE] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_GT2] = ACTIONS(2200), - [anon_sym_DASH2] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_STAR2] = ACTIONS(2200), - [anon_sym_and2] = ACTIONS(2198), - [anon_sym_xor2] = ACTIONS(2198), - [anon_sym_or2] = ACTIONS(2198), - [anon_sym_not_DASHin2] = ACTIONS(2198), - [anon_sym_has2] = ACTIONS(2198), - [anon_sym_not_DASHhas2] = ACTIONS(2198), - [anon_sym_starts_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), - [anon_sym_ends_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), - [anon_sym_EQ_EQ2] = ACTIONS(2198), - [anon_sym_BANG_EQ2] = ACTIONS(2198), - [anon_sym_LT2] = ACTIONS(2200), - [anon_sym_LT_EQ2] = ACTIONS(2198), - [anon_sym_GT_EQ2] = ACTIONS(2198), - [anon_sym_EQ_TILDE2] = ACTIONS(2198), - [anon_sym_BANG_TILDE2] = ACTIONS(2198), - [anon_sym_like2] = ACTIONS(2198), - [anon_sym_not_DASHlike2] = ACTIONS(2198), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2198), - [anon_sym_PLUS_PLUS2] = ACTIONS(2198), - [anon_sym_SLASH2] = ACTIONS(2200), - [anon_sym_mod2] = ACTIONS(2198), - [anon_sym_SLASH_SLASH2] = ACTIONS(2198), - [anon_sym_PLUS2] = ACTIONS(2200), - [anon_sym_bit_DASHshl2] = ACTIONS(2198), - [anon_sym_bit_DASHshr2] = ACTIONS(2198), - [anon_sym_bit_DASHand2] = ACTIONS(2198), - [anon_sym_bit_DASHxor2] = ACTIONS(2198), - [anon_sym_bit_DASHor2] = ACTIONS(2198), - [anon_sym_err_GT] = ACTIONS(2200), - [anon_sym_out_GT] = ACTIONS(2200), - [anon_sym_e_GT] = ACTIONS(2200), - [anon_sym_o_GT] = ACTIONS(2200), - [anon_sym_err_PLUSout_GT] = ACTIONS(2200), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), - [anon_sym_o_PLUSe_GT] = ACTIONS(2200), - [anon_sym_e_PLUSo_GT] = ACTIONS(2200), - [anon_sym_err_GT_GT] = ACTIONS(2198), - [anon_sym_out_GT_GT] = ACTIONS(2198), - [anon_sym_e_GT_GT] = ACTIONS(2198), - [anon_sym_o_GT_GT] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [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), [anon_sym_POUND] = ACTIONS(3), }, [STATE(733)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(2144), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(694), - [sym__unquoted_with_expr] = STATE(898), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(1062), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(733), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [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), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(734)] = { - [aux_sym__repeat_newline] = STATE(1023), - [sym__expr_parenthesized_immediate] = STATE(4728), + [aux_sym__repeat_newline] = STATE(1063), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(734), - [anon_sym_in] = ACTIONS(2198), - [sym__newline] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_err_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_GT_PIPE] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_GT2] = ACTIONS(2200), - [anon_sym_DASH2] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_STAR2] = ACTIONS(2200), - [anon_sym_and2] = ACTIONS(2198), - [anon_sym_xor2] = ACTIONS(2198), - [anon_sym_or2] = ACTIONS(2198), - [anon_sym_not_DASHin2] = ACTIONS(2198), - [anon_sym_has2] = ACTIONS(2198), - [anon_sym_not_DASHhas2] = ACTIONS(2198), - [anon_sym_starts_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), - [anon_sym_ends_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), - [anon_sym_EQ_EQ2] = ACTIONS(2198), - [anon_sym_BANG_EQ2] = ACTIONS(2198), - [anon_sym_LT2] = ACTIONS(2200), - [anon_sym_LT_EQ2] = ACTIONS(2198), - [anon_sym_GT_EQ2] = ACTIONS(2198), - [anon_sym_EQ_TILDE2] = ACTIONS(2198), - [anon_sym_BANG_TILDE2] = ACTIONS(2198), - [anon_sym_like2] = ACTIONS(2198), - [anon_sym_not_DASHlike2] = ACTIONS(2198), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2198), - [anon_sym_PLUS_PLUS2] = ACTIONS(2198), - [anon_sym_SLASH2] = ACTIONS(2200), - [anon_sym_mod2] = ACTIONS(2198), - [anon_sym_SLASH_SLASH2] = ACTIONS(2198), - [anon_sym_PLUS2] = ACTIONS(2200), - [anon_sym_bit_DASHshl2] = ACTIONS(2198), - [anon_sym_bit_DASHshr2] = ACTIONS(2198), - [anon_sym_bit_DASHand2] = ACTIONS(2198), - [anon_sym_bit_DASHxor2] = ACTIONS(2198), - [anon_sym_bit_DASHor2] = ACTIONS(2198), - [anon_sym_err_GT] = ACTIONS(2200), - [anon_sym_out_GT] = ACTIONS(2200), - [anon_sym_e_GT] = ACTIONS(2200), - [anon_sym_o_GT] = ACTIONS(2200), - [anon_sym_err_PLUSout_GT] = ACTIONS(2200), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), - [anon_sym_o_PLUSe_GT] = ACTIONS(2200), - [anon_sym_e_PLUSo_GT] = ACTIONS(2200), - [anon_sym_err_GT_GT] = ACTIONS(2198), - [anon_sym_out_GT_GT] = ACTIONS(2198), - [anon_sym_e_GT_GT] = ACTIONS(2198), - [anon_sym_o_GT_GT] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [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), [anon_sym_POUND] = ACTIONS(3), }, [STATE(735)] = { + [aux_sym__repeat_newline] = STATE(1064), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(735), - [anon_sym_in] = ACTIONS(1728), - [sym__newline] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_err_GT_PIPE] = ACTIONS(1728), - [anon_sym_out_GT_PIPE] = ACTIONS(1728), - [anon_sym_e_GT_PIPE] = ACTIONS(1728), - [anon_sym_o_GT_PIPE] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1728), - [anon_sym_RPAREN] = ACTIONS(1728), - [anon_sym_GT2] = ACTIONS(1730), - [anon_sym_DASH2] = ACTIONS(1728), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_RBRACE] = ACTIONS(1728), - [anon_sym_STAR2] = ACTIONS(1730), - [anon_sym_and2] = ACTIONS(1728), - [anon_sym_xor2] = ACTIONS(1728), - [anon_sym_or2] = ACTIONS(1728), - [anon_sym_not_DASHin2] = ACTIONS(1728), - [anon_sym_has2] = ACTIONS(1728), - [anon_sym_not_DASHhas2] = ACTIONS(1728), - [anon_sym_starts_DASHwith2] = ACTIONS(1728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1728), - [anon_sym_ends_DASHwith2] = ACTIONS(1728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1728), - [anon_sym_EQ_EQ2] = ACTIONS(1728), - [anon_sym_BANG_EQ2] = ACTIONS(1728), - [anon_sym_LT2] = ACTIONS(1730), - [anon_sym_LT_EQ2] = ACTIONS(1728), - [anon_sym_GT_EQ2] = ACTIONS(1728), - [anon_sym_EQ_TILDE2] = ACTIONS(1728), - [anon_sym_BANG_TILDE2] = ACTIONS(1728), - [anon_sym_like2] = ACTIONS(1728), - [anon_sym_not_DASHlike2] = ACTIONS(1728), - [anon_sym_STAR_STAR2] = ACTIONS(1728), - [anon_sym_PLUS_PLUS2] = ACTIONS(1728), - [anon_sym_SLASH2] = ACTIONS(1730), - [anon_sym_mod2] = ACTIONS(1728), - [anon_sym_SLASH_SLASH2] = ACTIONS(1728), - [anon_sym_PLUS2] = ACTIONS(1730), - [anon_sym_bit_DASHshl2] = ACTIONS(1728), - [anon_sym_bit_DASHshr2] = ACTIONS(1728), - [anon_sym_bit_DASHand2] = ACTIONS(1728), - [anon_sym_bit_DASHxor2] = ACTIONS(1728), - [anon_sym_bit_DASHor2] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(2202), - [aux_sym__immediate_decimal_token5] = ACTIONS(1734), - [anon_sym_err_GT] = ACTIONS(1730), - [anon_sym_out_GT] = ACTIONS(1730), - [anon_sym_e_GT] = ACTIONS(1730), - [anon_sym_o_GT] = ACTIONS(1730), - [anon_sym_err_PLUSout_GT] = ACTIONS(1730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1730), - [anon_sym_o_PLUSe_GT] = ACTIONS(1730), - [anon_sym_e_PLUSo_GT] = ACTIONS(1730), - [anon_sym_err_GT_GT] = ACTIONS(1728), - [anon_sym_out_GT_GT] = ACTIONS(1728), - [anon_sym_e_GT_GT] = ACTIONS(1728), - [anon_sym_o_GT_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1728), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [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), [anon_sym_POUND] = ACTIONS(3), }, [STATE(736)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(2145), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(695), - [sym__unquoted_with_expr] = STATE(902), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(1065), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(736), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [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), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(737)] = { - [aux_sym__repeat_newline] = STATE(1025), - [sym__expr_parenthesized_immediate] = STATE(4728), + [aux_sym__repeat_newline] = STATE(1066), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(737), - [anon_sym_in] = ACTIONS(2198), - [sym__newline] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_err_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_GT_PIPE] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_GT2] = ACTIONS(2200), - [anon_sym_DASH2] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_STAR2] = ACTIONS(2200), - [anon_sym_and2] = ACTIONS(2198), - [anon_sym_xor2] = ACTIONS(2198), - [anon_sym_or2] = ACTIONS(2198), - [anon_sym_not_DASHin2] = ACTIONS(2198), - [anon_sym_has2] = ACTIONS(2198), - [anon_sym_not_DASHhas2] = ACTIONS(2198), - [anon_sym_starts_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), - [anon_sym_ends_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), - [anon_sym_EQ_EQ2] = ACTIONS(2198), - [anon_sym_BANG_EQ2] = ACTIONS(2198), - [anon_sym_LT2] = ACTIONS(2200), - [anon_sym_LT_EQ2] = ACTIONS(2198), - [anon_sym_GT_EQ2] = ACTIONS(2198), - [anon_sym_EQ_TILDE2] = ACTIONS(2198), - [anon_sym_BANG_TILDE2] = ACTIONS(2198), - [anon_sym_like2] = ACTIONS(2198), - [anon_sym_not_DASHlike2] = ACTIONS(2198), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2198), - [anon_sym_PLUS_PLUS2] = ACTIONS(2198), - [anon_sym_SLASH2] = ACTIONS(2200), - [anon_sym_mod2] = ACTIONS(2198), - [anon_sym_SLASH_SLASH2] = ACTIONS(2198), - [anon_sym_PLUS2] = ACTIONS(2200), - [anon_sym_bit_DASHshl2] = ACTIONS(2198), - [anon_sym_bit_DASHshr2] = ACTIONS(2198), - [anon_sym_bit_DASHand2] = ACTIONS(2198), - [anon_sym_bit_DASHxor2] = ACTIONS(2198), - [anon_sym_bit_DASHor2] = ACTIONS(2198), - [anon_sym_err_GT] = ACTIONS(2200), - [anon_sym_out_GT] = ACTIONS(2200), - [anon_sym_e_GT] = ACTIONS(2200), - [anon_sym_o_GT] = ACTIONS(2200), - [anon_sym_err_PLUSout_GT] = ACTIONS(2200), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), - [anon_sym_o_PLUSe_GT] = ACTIONS(2200), - [anon_sym_e_PLUSo_GT] = ACTIONS(2200), - [anon_sym_err_GT_GT] = ACTIONS(2198), - [anon_sym_out_GT_GT] = ACTIONS(2198), - [anon_sym_e_GT_GT] = ACTIONS(2198), - [anon_sym_o_GT_GT] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [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), [anon_sym_POUND] = ACTIONS(3), }, [STATE(738)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(2146), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(697), - [sym__unquoted_with_expr] = STATE(904), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [sym_cell_path] = STATE(1324), + [sym_path] = STATE(827), [sym_comment] = STATE(738), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), + [aux_sym__where_predicate_lhs_repeat1] = STATE(525), + [ts_builtin_sym_end] = ACTIONS(1848), + [anon_sym_in] = 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_GT2] = ACTIONS(1851), + [anon_sym_DASH2] = ACTIONS(1848), + [anon_sym_STAR2] = ACTIONS(1851), + [anon_sym_and2] = ACTIONS(1848), + [anon_sym_xor2] = ACTIONS(1848), + [anon_sym_or2] = ACTIONS(1848), + [anon_sym_not_DASHin2] = ACTIONS(1848), + [anon_sym_has2] = ACTIONS(1848), + [anon_sym_not_DASHhas2] = ACTIONS(1848), + [anon_sym_starts_DASHwith2] = ACTIONS(1848), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1848), + [anon_sym_ends_DASHwith2] = ACTIONS(1848), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1848), + [anon_sym_EQ_EQ2] = ACTIONS(1848), + [anon_sym_BANG_EQ2] = ACTIONS(1848), + [anon_sym_LT2] = ACTIONS(1851), + [anon_sym_LT_EQ2] = ACTIONS(1848), + [anon_sym_GT_EQ2] = ACTIONS(1848), + [anon_sym_EQ_TILDE2] = ACTIONS(1848), + [anon_sym_BANG_TILDE2] = ACTIONS(1848), + [anon_sym_like2] = ACTIONS(1848), + [anon_sym_not_DASHlike2] = ACTIONS(1848), + [anon_sym_STAR_STAR2] = ACTIONS(1848), + [anon_sym_PLUS_PLUS2] = ACTIONS(1848), + [anon_sym_SLASH2] = ACTIONS(1851), + [anon_sym_mod2] = ACTIONS(1848), + [anon_sym_SLASH_SLASH2] = ACTIONS(1848), + [anon_sym_PLUS2] = ACTIONS(1851), + [anon_sym_bit_DASHshl2] = ACTIONS(1848), + [anon_sym_bit_DASHshr2] = ACTIONS(1848), + [anon_sym_bit_DASHand2] = ACTIONS(1848), + [anon_sym_bit_DASHxor2] = ACTIONS(1848), + [anon_sym_bit_DASHor2] = ACTIONS(1848), + [anon_sym_DOT2] = ACTIONS(2251), + [anon_sym_err_GT] = ACTIONS(1851), + [anon_sym_out_GT] = ACTIONS(1851), + [anon_sym_e_GT] = ACTIONS(1851), + [anon_sym_o_GT] = ACTIONS(1851), + [anon_sym_err_PLUSout_GT] = ACTIONS(1851), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1851), + [anon_sym_o_PLUSe_GT] = ACTIONS(1851), + [anon_sym_e_PLUSo_GT] = ACTIONS(1851), + [anon_sym_err_GT_GT] = ACTIONS(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), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(739)] = { - [aux_sym__repeat_newline] = STATE(1046), - [sym__expr_parenthesized_immediate] = STATE(4728), [sym_comment] = STATE(739), - [anon_sym_in] = ACTIONS(2198), - [sym__newline] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_err_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_GT_PIPE] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_GT2] = ACTIONS(2200), - [anon_sym_DASH2] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_STAR2] = ACTIONS(2200), - [anon_sym_and2] = ACTIONS(2198), - [anon_sym_xor2] = ACTIONS(2198), - [anon_sym_or2] = ACTIONS(2198), - [anon_sym_not_DASHin2] = ACTIONS(2198), - [anon_sym_has2] = ACTIONS(2198), - [anon_sym_not_DASHhas2] = ACTIONS(2198), - [anon_sym_starts_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), - [anon_sym_ends_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), - [anon_sym_EQ_EQ2] = ACTIONS(2198), - [anon_sym_BANG_EQ2] = ACTIONS(2198), - [anon_sym_LT2] = ACTIONS(2200), - [anon_sym_LT_EQ2] = ACTIONS(2198), - [anon_sym_GT_EQ2] = ACTIONS(2198), - [anon_sym_EQ_TILDE2] = ACTIONS(2198), - [anon_sym_BANG_TILDE2] = ACTIONS(2198), - [anon_sym_like2] = ACTIONS(2198), - [anon_sym_not_DASHlike2] = ACTIONS(2198), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2198), - [anon_sym_PLUS_PLUS2] = ACTIONS(2198), - [anon_sym_SLASH2] = ACTIONS(2200), - [anon_sym_mod2] = ACTIONS(2198), - [anon_sym_SLASH_SLASH2] = ACTIONS(2198), - [anon_sym_PLUS2] = ACTIONS(2200), - [anon_sym_bit_DASHshl2] = ACTIONS(2198), - [anon_sym_bit_DASHshr2] = ACTIONS(2198), - [anon_sym_bit_DASHand2] = ACTIONS(2198), - [anon_sym_bit_DASHxor2] = ACTIONS(2198), - [anon_sym_bit_DASHor2] = ACTIONS(2198), - [anon_sym_err_GT] = ACTIONS(2200), - [anon_sym_out_GT] = ACTIONS(2200), - [anon_sym_e_GT] = ACTIONS(2200), - [anon_sym_o_GT] = ACTIONS(2200), - [anon_sym_err_PLUSout_GT] = ACTIONS(2200), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), - [anon_sym_o_PLUSe_GT] = ACTIONS(2200), - [anon_sym_e_PLUSo_GT] = ACTIONS(2200), - [anon_sym_err_GT_GT] = ACTIONS(2198), - [anon_sym_out_GT_GT] = ACTIONS(2198), - [anon_sym_e_GT_GT] = ACTIONS(2198), - [anon_sym_o_GT_GT] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), + [anon_sym_in] = ACTIONS(2118), + [sym__newline] = ACTIONS(2120), + [anon_sym_SEMI] = ACTIONS(2120), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_err_GT_PIPE] = ACTIONS(2120), + [anon_sym_out_GT_PIPE] = ACTIONS(2120), + [anon_sym_e_GT_PIPE] = ACTIONS(2120), + [anon_sym_o_GT_PIPE] = ACTIONS(2120), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2120), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2120), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2120), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2120), + [anon_sym_GT2] = ACTIONS(2122), + [anon_sym_DASH2] = ACTIONS(2118), + [anon_sym_RBRACE] = ACTIONS(2120), + [anon_sym_STAR2] = ACTIONS(2122), + [anon_sym_and2] = ACTIONS(2118), + [anon_sym_xor2] = ACTIONS(2118), + [anon_sym_or2] = ACTIONS(2118), + [anon_sym_not_DASHin2] = ACTIONS(2118), + [anon_sym_has2] = ACTIONS(2118), + [anon_sym_not_DASHhas2] = ACTIONS(2118), + [anon_sym_starts_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2118), + [anon_sym_ends_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2118), + [anon_sym_EQ_EQ2] = ACTIONS(2118), + [anon_sym_BANG_EQ2] = ACTIONS(2118), + [anon_sym_LT2] = ACTIONS(2122), + [anon_sym_LT_EQ2] = ACTIONS(2118), + [anon_sym_GT_EQ2] = ACTIONS(2118), + [anon_sym_EQ_TILDE2] = ACTIONS(2118), + [anon_sym_BANG_TILDE2] = ACTIONS(2118), + [anon_sym_like2] = ACTIONS(2118), + [anon_sym_not_DASHlike2] = ACTIONS(2118), + [anon_sym_STAR_STAR2] = ACTIONS(2118), + [anon_sym_PLUS_PLUS2] = ACTIONS(2118), + [anon_sym_SLASH2] = ACTIONS(2122), + [anon_sym_mod2] = ACTIONS(2118), + [anon_sym_SLASH_SLASH2] = ACTIONS(2118), + [anon_sym_PLUS2] = ACTIONS(2122), + [anon_sym_bit_DASHshl2] = ACTIONS(2118), + [anon_sym_bit_DASHshr2] = ACTIONS(2118), + [anon_sym_bit_DASHand2] = ACTIONS(2118), + [anon_sym_bit_DASHxor2] = ACTIONS(2118), + [anon_sym_bit_DASHor2] = ACTIONS(2118), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), + [anon_sym_COLON2] = ACTIONS(1708), + [anon_sym_err_GT] = ACTIONS(2124), + [anon_sym_out_GT] = ACTIONS(2124), + [anon_sym_e_GT] = ACTIONS(2124), + [anon_sym_o_GT] = ACTIONS(2124), + [anon_sym_err_PLUSout_GT] = ACTIONS(2124), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2124), + [anon_sym_o_PLUSe_GT] = ACTIONS(2124), + [anon_sym_e_PLUSo_GT] = ACTIONS(2124), + [anon_sym_err_GT_GT] = ACTIONS(2120), + [anon_sym_out_GT_GT] = ACTIONS(2120), + [anon_sym_e_GT_GT] = ACTIONS(2120), + [anon_sym_o_GT_GT] = ACTIONS(2120), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2120), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2120), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2120), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2120), [anon_sym_POUND] = ACTIONS(3), }, [STATE(740)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(2147), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(698), - [sym__unquoted_with_expr] = STATE(906), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(982), + [sym__expr_parenthesized_immediate] = STATE(4719), [sym_comment] = STATE(740), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(741)] = { - [aux_sym__repeat_newline] = STATE(1050), - [sym__expr_parenthesized_immediate] = STATE(4728), + [sym_cmd_identifier] = STATE(4340), + [sym_expr_parenthesized] = STATE(5053), + [sym__spread_parenthesized] = STATE(4675), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(5053), + [sym_val_number] = STATE(5053), + [sym__val_number_decimal] = STATE(1955), + [sym__val_number] = STATE(693), + [sym_val_string] = STATE(5053), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(5053), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym__spread_record] = STATE(4675), + [sym_record_entry] = STATE(4649), + [sym__record_key] = STATE(5144), [sym_comment] = STATE(741), - [anon_sym_in] = ACTIONS(2198), - [sym__newline] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_err_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_GT_PIPE] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_GT2] = ACTIONS(2200), - [anon_sym_DASH2] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_STAR2] = ACTIONS(2200), - [anon_sym_and2] = ACTIONS(2198), - [anon_sym_xor2] = ACTIONS(2198), - [anon_sym_or2] = ACTIONS(2198), - [anon_sym_not_DASHin2] = ACTIONS(2198), - [anon_sym_has2] = ACTIONS(2198), - [anon_sym_not_DASHhas2] = ACTIONS(2198), - [anon_sym_starts_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), - [anon_sym_ends_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), - [anon_sym_EQ_EQ2] = ACTIONS(2198), - [anon_sym_BANG_EQ2] = ACTIONS(2198), - [anon_sym_LT2] = ACTIONS(2200), - [anon_sym_LT_EQ2] = ACTIONS(2198), - [anon_sym_GT_EQ2] = ACTIONS(2198), - [anon_sym_EQ_TILDE2] = ACTIONS(2198), - [anon_sym_BANG_TILDE2] = ACTIONS(2198), - [anon_sym_like2] = ACTIONS(2198), - [anon_sym_not_DASHlike2] = ACTIONS(2198), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2198), - [anon_sym_PLUS_PLUS2] = ACTIONS(2198), - [anon_sym_SLASH2] = ACTIONS(2200), - [anon_sym_mod2] = ACTIONS(2198), - [anon_sym_SLASH_SLASH2] = ACTIONS(2198), - [anon_sym_PLUS2] = ACTIONS(2200), - [anon_sym_bit_DASHshl2] = ACTIONS(2198), - [anon_sym_bit_DASHshr2] = ACTIONS(2198), - [anon_sym_bit_DASHand2] = ACTIONS(2198), - [anon_sym_bit_DASHxor2] = ACTIONS(2198), - [anon_sym_bit_DASHor2] = ACTIONS(2198), - [anon_sym_err_GT] = ACTIONS(2200), - [anon_sym_out_GT] = ACTIONS(2200), - [anon_sym_e_GT] = ACTIONS(2200), - [anon_sym_o_GT] = ACTIONS(2200), - [anon_sym_err_PLUSout_GT] = ACTIONS(2200), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), - [anon_sym_o_PLUSe_GT] = ACTIONS(2200), - [anon_sym_e_PLUSo_GT] = ACTIONS(2200), - [anon_sym_err_GT_GT] = ACTIONS(2198), - [anon_sym_out_GT_GT] = ACTIONS(2198), - [anon_sym_e_GT_GT] = ACTIONS(2198), - [anon_sym_o_GT_GT] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(742)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(907), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(699), - [sym__unquoted_with_expr] = STATE(895), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(742), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(743)] = { - [aux_sym__repeat_newline] = STATE(1058), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(743), - [anon_sym_in] = ACTIONS(2198), - [sym__newline] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_err_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_GT_PIPE] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_GT2] = ACTIONS(2200), - [anon_sym_DASH2] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_STAR2] = ACTIONS(2200), - [anon_sym_and2] = ACTIONS(2198), - [anon_sym_xor2] = ACTIONS(2198), - [anon_sym_or2] = ACTIONS(2198), - [anon_sym_not_DASHin2] = ACTIONS(2198), - [anon_sym_has2] = ACTIONS(2198), - [anon_sym_not_DASHhas2] = ACTIONS(2198), - [anon_sym_starts_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), - [anon_sym_ends_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), - [anon_sym_EQ_EQ2] = ACTIONS(2198), - [anon_sym_BANG_EQ2] = ACTIONS(2198), - [anon_sym_LT2] = ACTIONS(2200), - [anon_sym_LT_EQ2] = ACTIONS(2198), - [anon_sym_GT_EQ2] = ACTIONS(2198), - [anon_sym_EQ_TILDE2] = ACTIONS(2198), - [anon_sym_BANG_TILDE2] = ACTIONS(2198), - [anon_sym_like2] = ACTIONS(2198), - [anon_sym_not_DASHlike2] = ACTIONS(2198), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2198), - [anon_sym_PLUS_PLUS2] = ACTIONS(2198), - [anon_sym_SLASH2] = ACTIONS(2200), - [anon_sym_mod2] = ACTIONS(2198), - [anon_sym_SLASH_SLASH2] = ACTIONS(2198), - [anon_sym_PLUS2] = ACTIONS(2200), - [anon_sym_bit_DASHshl2] = ACTIONS(2198), - [anon_sym_bit_DASHshr2] = ACTIONS(2198), - [anon_sym_bit_DASHand2] = ACTIONS(2198), - [anon_sym_bit_DASHxor2] = ACTIONS(2198), - [anon_sym_bit_DASHor2] = ACTIONS(2198), - [anon_sym_err_GT] = ACTIONS(2200), - [anon_sym_out_GT] = ACTIONS(2200), - [anon_sym_e_GT] = ACTIONS(2200), - [anon_sym_o_GT] = ACTIONS(2200), - [anon_sym_err_PLUSout_GT] = ACTIONS(2200), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), - [anon_sym_o_PLUSe_GT] = ACTIONS(2200), - [anon_sym_e_PLUSo_GT] = ACTIONS(2200), - [anon_sym_err_GT_GT] = ACTIONS(2198), - [anon_sym_out_GT_GT] = ACTIONS(2198), - [anon_sym_e_GT_GT] = ACTIONS(2198), - [anon_sym_o_GT_GT] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(744)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(2149), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(700), - [sym__unquoted_with_expr] = STATE(911), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(744), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(745)] = { - [aux_sym__repeat_newline] = STATE(1129), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(745), - [anon_sym_in] = ACTIONS(2198), - [sym__newline] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_err_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_GT_PIPE] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_GT2] = ACTIONS(2200), - [anon_sym_DASH2] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_STAR2] = ACTIONS(2200), - [anon_sym_and2] = ACTIONS(2198), - [anon_sym_xor2] = ACTIONS(2198), - [anon_sym_or2] = ACTIONS(2198), - [anon_sym_not_DASHin2] = ACTIONS(2198), - [anon_sym_has2] = ACTIONS(2198), - [anon_sym_not_DASHhas2] = ACTIONS(2198), - [anon_sym_starts_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), - [anon_sym_ends_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), - [anon_sym_EQ_EQ2] = ACTIONS(2198), - [anon_sym_BANG_EQ2] = ACTIONS(2198), - [anon_sym_LT2] = ACTIONS(2200), - [anon_sym_LT_EQ2] = ACTIONS(2198), - [anon_sym_GT_EQ2] = ACTIONS(2198), - [anon_sym_EQ_TILDE2] = ACTIONS(2198), - [anon_sym_BANG_TILDE2] = ACTIONS(2198), - [anon_sym_like2] = ACTIONS(2198), - [anon_sym_not_DASHlike2] = ACTIONS(2198), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2198), - [anon_sym_PLUS_PLUS2] = ACTIONS(2198), - [anon_sym_SLASH2] = ACTIONS(2200), - [anon_sym_mod2] = ACTIONS(2198), - [anon_sym_SLASH_SLASH2] = ACTIONS(2198), - [anon_sym_PLUS2] = ACTIONS(2200), - [anon_sym_bit_DASHshl2] = ACTIONS(2198), - [anon_sym_bit_DASHshr2] = ACTIONS(2198), - [anon_sym_bit_DASHand2] = ACTIONS(2198), - [anon_sym_bit_DASHxor2] = ACTIONS(2198), - [anon_sym_bit_DASHor2] = ACTIONS(2198), - [anon_sym_err_GT] = ACTIONS(2200), - [anon_sym_out_GT] = ACTIONS(2200), - [anon_sym_e_GT] = ACTIONS(2200), - [anon_sym_o_GT] = ACTIONS(2200), - [anon_sym_err_PLUSout_GT] = ACTIONS(2200), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), - [anon_sym_o_PLUSe_GT] = ACTIONS(2200), - [anon_sym_e_PLUSo_GT] = ACTIONS(2200), - [anon_sym_err_GT_GT] = ACTIONS(2198), - [anon_sym_out_GT_GT] = ACTIONS(2198), - [anon_sym_e_GT_GT] = ACTIONS(2198), - [anon_sym_o_GT_GT] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(746)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(2150), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(701), - [sym__unquoted_with_expr] = STATE(913), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(746), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(747)] = { - [aux_sym__repeat_newline] = STATE(1063), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(747), - [anon_sym_in] = ACTIONS(2198), - [sym__newline] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_err_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_GT_PIPE] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_GT2] = ACTIONS(2200), - [anon_sym_DASH2] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_STAR2] = ACTIONS(2200), - [anon_sym_and2] = ACTIONS(2198), - [anon_sym_xor2] = ACTIONS(2198), - [anon_sym_or2] = ACTIONS(2198), - [anon_sym_not_DASHin2] = ACTIONS(2198), - [anon_sym_has2] = ACTIONS(2198), - [anon_sym_not_DASHhas2] = ACTIONS(2198), - [anon_sym_starts_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), - [anon_sym_ends_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), - [anon_sym_EQ_EQ2] = ACTIONS(2198), - [anon_sym_BANG_EQ2] = ACTIONS(2198), - [anon_sym_LT2] = ACTIONS(2200), - [anon_sym_LT_EQ2] = ACTIONS(2198), - [anon_sym_GT_EQ2] = ACTIONS(2198), - [anon_sym_EQ_TILDE2] = ACTIONS(2198), - [anon_sym_BANG_TILDE2] = ACTIONS(2198), - [anon_sym_like2] = ACTIONS(2198), - [anon_sym_not_DASHlike2] = ACTIONS(2198), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2198), - [anon_sym_PLUS_PLUS2] = ACTIONS(2198), - [anon_sym_SLASH2] = ACTIONS(2200), - [anon_sym_mod2] = ACTIONS(2198), - [anon_sym_SLASH_SLASH2] = ACTIONS(2198), - [anon_sym_PLUS2] = ACTIONS(2200), - [anon_sym_bit_DASHshl2] = ACTIONS(2198), - [anon_sym_bit_DASHshr2] = ACTIONS(2198), - [anon_sym_bit_DASHand2] = ACTIONS(2198), - [anon_sym_bit_DASHxor2] = ACTIONS(2198), - [anon_sym_bit_DASHor2] = ACTIONS(2198), - [anon_sym_err_GT] = ACTIONS(2200), - [anon_sym_out_GT] = ACTIONS(2200), - [anon_sym_e_GT] = ACTIONS(2200), - [anon_sym_o_GT] = ACTIONS(2200), - [anon_sym_err_PLUSout_GT] = ACTIONS(2200), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), - [anon_sym_o_PLUSe_GT] = ACTIONS(2200), - [anon_sym_e_PLUSo_GT] = ACTIONS(2200), - [anon_sym_err_GT_GT] = ACTIONS(2198), - [anon_sym_out_GT_GT] = ACTIONS(2198), - [anon_sym_e_GT_GT] = ACTIONS(2198), - [anon_sym_o_GT_GT] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(748)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(2152), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(702), - [sym__unquoted_with_expr] = STATE(915), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(748), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(749)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(2159), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1947), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1714), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(703), - [sym__unquoted_with_expr] = STATE(917), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(749), - [anon_sym_true] = ACTIONS(1966), - [anon_sym_false] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1968), - [aux_sym_cmd_identifier_token3] = ACTIONS(1970), - [aux_sym_cmd_identifier_token4] = ACTIONS(1970), - [aux_sym_cmd_identifier_token5] = ACTIONS(1970), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1972), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1974), - [anon_sym_DOT_DOT_LT] = ACTIONS(1974), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [aux_sym_record_body_repeat1] = STATE(749), + [anon_sym_export] = ACTIONS(143), + [anon_sym_alias] = ACTIONS(137), + [anon_sym_let] = ACTIONS(137), + [anon_sym_mut] = ACTIONS(137), + [anon_sym_const] = ACTIONS(137), + [aux_sym_cmd_identifier_token1] = ACTIONS(117), + [anon_sym_def] = ACTIONS(137), + [anon_sym_use] = ACTIONS(137), + [anon_sym_export_DASHenv] = ACTIONS(137), + [anon_sym_extern] = ACTIONS(137), + [anon_sym_module] = ACTIONS(137), + [anon_sym_for] = ACTIONS(137), + [anon_sym_loop] = ACTIONS(137), + [anon_sym_while] = ACTIONS(137), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(137), + [anon_sym_try] = ACTIONS(137), + [anon_sym_catch] = ACTIONS(137), + [anon_sym_match] = ACTIONS(137), + [anon_sym_in] = ACTIONS(143), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_null] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1798), + [anon_sym_DASH2] = ACTIONS(175), + [anon_sym_PLUS2] = ACTIONS(175), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1784), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1982), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(750)] = { - [sym_cmd_identifier] = STATE(4341), - [sym_expr_parenthesized] = STATE(5062), - [sym__spread_parenthesized] = STATE(4693), - [sym__spread_variable] = STATE(4695), - [sym_val_variable] = STATE(5062), - [sym_val_number] = STATE(5062), - [sym__val_number_decimal] = STATE(1952), - [sym__val_number] = STATE(676), - [sym_val_string] = STATE(5062), - [sym__raw_str] = STATE(2243), - [sym__str_double_quotes] = STATE(2243), - [sym__str_single_quotes] = STATE(2243), - [sym__str_back_ticks] = STATE(2243), - [sym_val_interpolated] = STATE(5062), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym__spread_record] = STATE(4693), - [sym_record_entry] = STATE(4769), - [sym__record_key] = STATE(5228), - [sym_comment] = STATE(750), - [aux_sym_record_body_repeat1] = STATE(750), - [anon_sym_export] = ACTIONS(2204), - [anon_sym_alias] = ACTIONS(2207), - [anon_sym_let] = ACTIONS(2207), - [anon_sym_mut] = ACTIONS(2207), - [anon_sym_const] = ACTIONS(2207), - [aux_sym_cmd_identifier_token1] = ACTIONS(2210), - [anon_sym_def] = ACTIONS(2207), - [anon_sym_use] = ACTIONS(2207), - [anon_sym_export_DASHenv] = ACTIONS(2207), - [anon_sym_extern] = ACTIONS(2207), - [anon_sym_module] = ACTIONS(2207), - [anon_sym_for] = ACTIONS(2207), - [anon_sym_loop] = ACTIONS(2207), - [anon_sym_while] = ACTIONS(2207), - [anon_sym_if] = ACTIONS(2207), - [anon_sym_else] = ACTIONS(2207), - [anon_sym_try] = ACTIONS(2207), - [anon_sym_catch] = ACTIONS(2207), - [anon_sym_match] = ACTIONS(2207), - [anon_sym_in] = ACTIONS(2204), - [anon_sym_true] = ACTIONS(2213), - [anon_sym_false] = ACTIONS(2213), - [anon_sym_null] = ACTIONS(2213), - [aux_sym_cmd_identifier_token3] = ACTIONS(2216), - [aux_sym_cmd_identifier_token4] = ACTIONS(2216), - [aux_sym_cmd_identifier_token5] = ACTIONS(2216), - [anon_sym_LPAREN] = ACTIONS(2219), - [anon_sym_DOLLAR] = ACTIONS(2222), - [anon_sym_DASH2] = ACTIONS(2225), - [anon_sym_PLUS2] = ACTIONS(2225), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2228), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2231), - [aux_sym__val_number_decimal_token1] = ACTIONS(2234), - [aux_sym__val_number_decimal_token2] = ACTIONS(2237), - [aux_sym__val_number_decimal_token3] = ACTIONS(2240), - [aux_sym__val_number_decimal_token4] = ACTIONS(2240), - [aux_sym__val_number_token1] = ACTIONS(2243), - [aux_sym__val_number_token2] = ACTIONS(2243), - [aux_sym__val_number_token3] = ACTIONS(2243), - [anon_sym_DQUOTE] = ACTIONS(2246), - [anon_sym_SQUOTE] = ACTIONS(2249), - [anon_sym_BQUOTE] = ACTIONS(2252), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2255), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2258), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2261), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2264), - }, - [STATE(751)] = { - [aux_sym__repeat_newline] = STATE(3431), - [aux_sym__pipe_separator] = STATE(799), - [sym_comment] = STATE(751), - [anon_sym_export] = ACTIONS(2267), - [anon_sym_alias] = ACTIONS(2269), - [anon_sym_let] = ACTIONS(2269), - [anon_sym_mut] = ACTIONS(2269), - [anon_sym_const] = ACTIONS(2269), - [aux_sym_cmd_identifier_token1] = ACTIONS(2267), - [anon_sym_def] = ACTIONS(2269), - [anon_sym_use] = ACTIONS(2269), - [anon_sym_export_DASHenv] = ACTIONS(2269), - [anon_sym_extern] = ACTIONS(2269), - [anon_sym_module] = ACTIONS(2269), - [anon_sym_for] = ACTIONS(2269), - [anon_sym_loop] = ACTIONS(2269), - [anon_sym_while] = ACTIONS(2269), - [anon_sym_if] = ACTIONS(2269), - [anon_sym_else] = ACTIONS(2269), - [anon_sym_try] = ACTIONS(2269), - [anon_sym_catch] = ACTIONS(2269), - [anon_sym_match] = ACTIONS(2269), - [anon_sym_in] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(2269), - [anon_sym_false] = ACTIONS(2269), - [anon_sym_null] = ACTIONS(2269), - [aux_sym_cmd_identifier_token3] = ACTIONS(2269), - [aux_sym_cmd_identifier_token4] = ACTIONS(2269), - [aux_sym_cmd_identifier_token5] = ACTIONS(2269), - [sym__newline] = ACTIONS(2271), - [anon_sym_PIPE] = ACTIONS(2273), - [anon_sym_err_GT_PIPE] = ACTIONS(2273), - [anon_sym_out_GT_PIPE] = ACTIONS(2273), - [anon_sym_e_GT_PIPE] = ACTIONS(2273), - [anon_sym_o_GT_PIPE] = ACTIONS(2273), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2273), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2273), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2273), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2273), - [anon_sym_LBRACK] = ACTIONS(2269), - [anon_sym_LPAREN] = ACTIONS(2269), - [anon_sym_DOLLAR] = ACTIONS(2267), - [anon_sym_DASH2] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(2269), - [anon_sym_DOT_DOT] = ACTIONS(2267), - [anon_sym_where] = ACTIONS(2269), - [aux_sym_expr_unary_token1] = ACTIONS(2269), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2269), - [anon_sym_DOT_DOT_LT] = ACTIONS(2269), - [aux_sym__val_number_decimal_token1] = ACTIONS(2267), - [aux_sym__val_number_decimal_token2] = ACTIONS(2269), - [aux_sym__val_number_decimal_token3] = ACTIONS(2269), - [aux_sym__val_number_decimal_token4] = ACTIONS(2269), - [aux_sym__val_number_token1] = ACTIONS(2269), - [aux_sym__val_number_token2] = ACTIONS(2269), - [aux_sym__val_number_token3] = ACTIONS(2269), - [anon_sym_0b] = ACTIONS(2267), - [anon_sym_0o] = ACTIONS(2267), - [anon_sym_0x] = ACTIONS(2267), - [sym_val_date] = ACTIONS(2269), - [anon_sym_DQUOTE] = ACTIONS(2269), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_BQUOTE] = ACTIONS(2269), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2269), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2269), - [anon_sym_CARET] = ACTIONS(2269), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2269), - }, - [STATE(752)] = { - [sym_expr_unary] = STATE(1282), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1282), - [sym__expr_binary_expression] = STATE(1283), - [sym_expr_parenthesized] = STATE(925), - [sym_val_range] = STATE(1282), - [sym__val_range] = STATE(4556), - [sym__value] = STATE(1282), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(968), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(472), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_unquoted] = STATE(996), - [sym__unquoted_with_expr] = STATE(1262), - [sym__unquoted_anonymous_prefix] = STATE(4556), - [sym_comment] = STATE(752), - [anon_sym_true] = ACTIONS(2172), - [anon_sym_false] = ACTIONS(2172), - [anon_sym_null] = ACTIONS(2174), - [aux_sym_cmd_identifier_token3] = ACTIONS(2176), - [aux_sym_cmd_identifier_token4] = ACTIONS(2176), - [aux_sym_cmd_identifier_token5] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2178), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2180), - [anon_sym_DOT_DOT_LT] = ACTIONS(2180), - [aux_sym__val_number_decimal_token1] = ACTIONS(2182), - [aux_sym__val_number_decimal_token2] = ACTIONS(2184), - [aux_sym__val_number_decimal_token3] = ACTIONS(2186), - [aux_sym__val_number_decimal_token4] = ACTIONS(2186), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2188), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2190), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(753)] = { - [sym_expr_unary] = STATE(1282), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1282), - [sym__expr_binary_expression] = STATE(1285), - [sym_expr_parenthesized] = STATE(925), - [sym_val_range] = STATE(1282), - [sym__val_range] = STATE(4556), - [sym__value] = STATE(1282), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(968), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(472), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_unquoted] = STATE(999), - [sym__unquoted_with_expr] = STATE(1286), - [sym__unquoted_anonymous_prefix] = STATE(4556), - [sym_comment] = STATE(753), - [anon_sym_true] = ACTIONS(2172), - [anon_sym_false] = ACTIONS(2172), - [anon_sym_null] = ACTIONS(2174), - [aux_sym_cmd_identifier_token3] = ACTIONS(2176), - [aux_sym_cmd_identifier_token4] = ACTIONS(2176), - [aux_sym_cmd_identifier_token5] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2178), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2180), - [anon_sym_DOT_DOT_LT] = ACTIONS(2180), - [aux_sym__val_number_decimal_token1] = ACTIONS(2182), - [aux_sym__val_number_decimal_token2] = ACTIONS(2184), - [aux_sym__val_number_decimal_token3] = ACTIONS(2186), - [aux_sym__val_number_decimal_token4] = ACTIONS(2186), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2188), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2190), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(754)] = { - [sym_comment] = STATE(754), - [ts_builtin_sym_end] = ACTIONS(1527), - [anon_sym_in] = ACTIONS(1527), - [sym__newline] = ACTIONS(1527), - [anon_sym_SEMI] = ACTIONS(1527), - [anon_sym_PIPE] = ACTIONS(1527), - [anon_sym_err_GT_PIPE] = ACTIONS(1527), - [anon_sym_out_GT_PIPE] = ACTIONS(1527), - [anon_sym_e_GT_PIPE] = ACTIONS(1527), - [anon_sym_o_GT_PIPE] = ACTIONS(1527), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1527), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1527), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1527), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1527), - [anon_sym_GT2] = ACTIONS(1525), - [anon_sym_DASH2] = ACTIONS(1527), - [anon_sym_STAR2] = ACTIONS(1525), - [anon_sym_and2] = ACTIONS(1527), - [anon_sym_xor2] = ACTIONS(1527), - [anon_sym_or2] = ACTIONS(1527), - [anon_sym_not_DASHin2] = ACTIONS(1527), - [anon_sym_has2] = ACTIONS(1527), - [anon_sym_not_DASHhas2] = ACTIONS(1527), - [anon_sym_starts_DASHwith2] = ACTIONS(1527), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1527), - [anon_sym_ends_DASHwith2] = ACTIONS(1527), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1527), - [anon_sym_EQ_EQ2] = ACTIONS(1527), - [anon_sym_BANG_EQ2] = ACTIONS(1527), - [anon_sym_LT2] = ACTIONS(1525), - [anon_sym_LT_EQ2] = ACTIONS(1527), - [anon_sym_GT_EQ2] = ACTIONS(1527), - [anon_sym_EQ_TILDE2] = ACTIONS(1527), - [anon_sym_BANG_TILDE2] = ACTIONS(1527), - [anon_sym_like2] = ACTIONS(1527), - [anon_sym_not_DASHlike2] = ACTIONS(1527), - [anon_sym_STAR_STAR2] = ACTIONS(1527), - [anon_sym_PLUS_PLUS2] = ACTIONS(1527), - [anon_sym_SLASH2] = ACTIONS(1525), - [anon_sym_mod2] = ACTIONS(1527), - [anon_sym_SLASH_SLASH2] = ACTIONS(1527), - [anon_sym_PLUS2] = ACTIONS(1525), - [anon_sym_bit_DASHshl2] = ACTIONS(1527), - [anon_sym_bit_DASHshr2] = ACTIONS(1527), - [anon_sym_bit_DASHand2] = ACTIONS(1527), - [anon_sym_bit_DASHxor2] = ACTIONS(1527), - [anon_sym_bit_DASHor2] = ACTIONS(1527), - [anon_sym_DOT_DOT2] = ACTIONS(1525), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1527), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1527), - [anon_sym_DOT2] = ACTIONS(1525), - [anon_sym_err_GT] = ACTIONS(1525), - [anon_sym_out_GT] = ACTIONS(1525), - [anon_sym_e_GT] = ACTIONS(1525), - [anon_sym_o_GT] = ACTIONS(1525), - [anon_sym_err_PLUSout_GT] = ACTIONS(1525), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1525), - [anon_sym_o_PLUSe_GT] = ACTIONS(1525), - [anon_sym_e_PLUSo_GT] = ACTIONS(1525), - [anon_sym_err_GT_GT] = ACTIONS(1527), - [anon_sym_out_GT_GT] = ACTIONS(1527), - [anon_sym_e_GT_GT] = ACTIONS(1527), - [anon_sym_o_GT_GT] = ACTIONS(1527), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1527), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1527), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1527), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1527), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1796), }, - [STATE(755)] = { - [sym_comment] = STATE(755), + [STATE(742)] = { + [sym_comment] = STATE(742), [ts_builtin_sym_end] = ACTIONS(1738), [anon_sym_in] = ACTIONS(1738), [sym__newline] = ACTIONS(1738), @@ -104668,8 +103793,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1738), [anon_sym_bit_DASHxor2] = ACTIONS(1738), [anon_sym_bit_DASHor2] = ACTIONS(1738), - [aux_sym__immediate_decimal_token1] = ACTIONS(2275), - [aux_sym__immediate_decimal_token5] = ACTIONS(2277), + [aux_sym__immediate_decimal_token1] = ACTIONS(2267), + [aux_sym__immediate_decimal_token5] = ACTIONS(2269), [anon_sym_err_GT] = ACTIONS(1740), [anon_sym_out_GT] = ACTIONS(1740), [anon_sym_e_GT] = ACTIONS(1740), @@ -104689,378 +103814,378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__unquoted_pattern] = ACTIONS(1740), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(756)] = { - [sym_expr_unary] = STATE(1282), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1282), - [sym__expr_binary_expression] = STATE(1287), - [sym_expr_parenthesized] = STATE(925), - [sym_val_range] = STATE(1282), - [sym__val_range] = STATE(4556), - [sym__value] = STATE(1282), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(968), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(472), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_unquoted] = STATE(1000), - [sym__unquoted_with_expr] = STATE(1289), - [sym__unquoted_anonymous_prefix] = STATE(4556), - [sym_comment] = STATE(756), - [anon_sym_true] = ACTIONS(2172), - [anon_sym_false] = ACTIONS(2172), - [anon_sym_null] = ACTIONS(2174), - [aux_sym_cmd_identifier_token3] = ACTIONS(2176), - [aux_sym_cmd_identifier_token4] = ACTIONS(2176), - [aux_sym_cmd_identifier_token5] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2178), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2180), - [anon_sym_DOT_DOT_LT] = ACTIONS(2180), - [aux_sym__val_number_decimal_token1] = ACTIONS(2182), - [aux_sym__val_number_decimal_token2] = ACTIONS(2184), - [aux_sym__val_number_decimal_token3] = ACTIONS(2186), - [aux_sym__val_number_decimal_token4] = ACTIONS(2186), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2188), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2190), + [STATE(743)] = { + [aux_sym__repeat_newline] = STATE(983), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(743), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(757)] = { - [sym_expr_unary] = STATE(1282), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1282), - [sym__expr_binary_expression] = STATE(1290), - [sym_expr_parenthesized] = STATE(925), - [sym_val_range] = STATE(1282), - [sym__val_range] = STATE(4556), - [sym__value] = STATE(1282), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(968), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(472), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_unquoted] = STATE(1004), - [sym__unquoted_with_expr] = STATE(1292), - [sym__unquoted_anonymous_prefix] = STATE(4556), - [sym_comment] = STATE(757), - [anon_sym_true] = ACTIONS(2172), - [anon_sym_false] = ACTIONS(2172), - [anon_sym_null] = ACTIONS(2174), - [aux_sym_cmd_identifier_token3] = ACTIONS(2176), - [aux_sym_cmd_identifier_token4] = ACTIONS(2176), - [aux_sym_cmd_identifier_token5] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2178), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2180), - [anon_sym_DOT_DOT_LT] = ACTIONS(2180), - [aux_sym__val_number_decimal_token1] = ACTIONS(2182), - [aux_sym__val_number_decimal_token2] = ACTIONS(2184), - [aux_sym__val_number_decimal_token3] = ACTIONS(2186), - [aux_sym__val_number_decimal_token4] = ACTIONS(2186), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2188), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2190), + [STATE(744)] = { + [sym_comment] = STATE(744), + [ts_builtin_sym_end] = ACTIONS(1531), + [anon_sym_in] = ACTIONS(1531), + [sym__newline] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1531), + [anon_sym_err_GT_PIPE] = ACTIONS(1531), + [anon_sym_out_GT_PIPE] = ACTIONS(1531), + [anon_sym_e_GT_PIPE] = ACTIONS(1531), + [anon_sym_o_GT_PIPE] = ACTIONS(1531), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1531), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1531), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1531), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1531), + [anon_sym_GT2] = ACTIONS(1529), + [anon_sym_DASH2] = ACTIONS(1531), + [anon_sym_STAR2] = ACTIONS(1529), + [anon_sym_and2] = ACTIONS(1531), + [anon_sym_xor2] = ACTIONS(1531), + [anon_sym_or2] = ACTIONS(1531), + [anon_sym_not_DASHin2] = ACTIONS(1531), + [anon_sym_has2] = ACTIONS(1531), + [anon_sym_not_DASHhas2] = ACTIONS(1531), + [anon_sym_starts_DASHwith2] = ACTIONS(1531), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1531), + [anon_sym_ends_DASHwith2] = ACTIONS(1531), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1531), + [anon_sym_EQ_EQ2] = ACTIONS(1531), + [anon_sym_BANG_EQ2] = ACTIONS(1531), + [anon_sym_LT2] = ACTIONS(1529), + [anon_sym_LT_EQ2] = ACTIONS(1531), + [anon_sym_GT_EQ2] = ACTIONS(1531), + [anon_sym_EQ_TILDE2] = ACTIONS(1531), + [anon_sym_BANG_TILDE2] = ACTIONS(1531), + [anon_sym_like2] = ACTIONS(1531), + [anon_sym_not_DASHlike2] = ACTIONS(1531), + [anon_sym_STAR_STAR2] = ACTIONS(1531), + [anon_sym_PLUS_PLUS2] = ACTIONS(1531), + [anon_sym_SLASH2] = ACTIONS(1529), + [anon_sym_mod2] = ACTIONS(1531), + [anon_sym_SLASH_SLASH2] = ACTIONS(1531), + [anon_sym_PLUS2] = ACTIONS(1529), + [anon_sym_bit_DASHshl2] = ACTIONS(1531), + [anon_sym_bit_DASHshr2] = ACTIONS(1531), + [anon_sym_bit_DASHand2] = ACTIONS(1531), + [anon_sym_bit_DASHxor2] = ACTIONS(1531), + [anon_sym_bit_DASHor2] = ACTIONS(1531), + [anon_sym_DOT_DOT2] = ACTIONS(1529), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1531), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1531), + [anon_sym_DOT2] = ACTIONS(1529), + [anon_sym_err_GT] = ACTIONS(1529), + [anon_sym_out_GT] = ACTIONS(1529), + [anon_sym_e_GT] = ACTIONS(1529), + [anon_sym_o_GT] = ACTIONS(1529), + [anon_sym_err_PLUSout_GT] = ACTIONS(1529), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1529), + [anon_sym_o_PLUSe_GT] = ACTIONS(1529), + [anon_sym_e_PLUSo_GT] = ACTIONS(1529), + [anon_sym_err_GT_GT] = ACTIONS(1531), + [anon_sym_out_GT_GT] = ACTIONS(1531), + [anon_sym_e_GT_GT] = ACTIONS(1531), + [anon_sym_o_GT_GT] = ACTIONS(1531), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1531), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1531), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1531), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1531), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(758)] = { - [sym_expr_unary] = STATE(1282), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1282), - [sym__expr_binary_expression] = STATE(1293), - [sym_expr_parenthesized] = STATE(925), - [sym_val_range] = STATE(1282), - [sym__val_range] = STATE(4556), - [sym__value] = STATE(1282), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(968), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(472), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_unquoted] = STATE(1014), - [sym__unquoted_with_expr] = STATE(1295), - [sym__unquoted_anonymous_prefix] = STATE(4556), - [sym_comment] = STATE(758), - [anon_sym_true] = ACTIONS(2172), - [anon_sym_false] = ACTIONS(2172), - [anon_sym_null] = ACTIONS(2174), - [aux_sym_cmd_identifier_token3] = ACTIONS(2176), - [aux_sym_cmd_identifier_token4] = ACTIONS(2176), - [aux_sym_cmd_identifier_token5] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2178), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2180), - [anon_sym_DOT_DOT_LT] = ACTIONS(2180), - [aux_sym__val_number_decimal_token1] = ACTIONS(2182), - [aux_sym__val_number_decimal_token2] = ACTIONS(2184), - [aux_sym__val_number_decimal_token3] = ACTIONS(2186), - [aux_sym__val_number_decimal_token4] = ACTIONS(2186), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2188), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2190), + [STATE(745)] = { + [sym_cell_path] = STATE(1266), + [sym_path] = STATE(827), + [sym_comment] = STATE(745), + [aux_sym__where_predicate_lhs_repeat1] = STATE(525), + [ts_builtin_sym_end] = ACTIONS(1838), + [anon_sym_in] = 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_GT2] = ACTIONS(1840), + [anon_sym_DASH2] = ACTIONS(1838), + [anon_sym_STAR2] = ACTIONS(1840), + [anon_sym_and2] = ACTIONS(1838), + [anon_sym_xor2] = ACTIONS(1838), + [anon_sym_or2] = ACTIONS(1838), + [anon_sym_not_DASHin2] = ACTIONS(1838), + [anon_sym_has2] = ACTIONS(1838), + [anon_sym_not_DASHhas2] = ACTIONS(1838), + [anon_sym_starts_DASHwith2] = ACTIONS(1838), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1838), + [anon_sym_ends_DASHwith2] = ACTIONS(1838), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1838), + [anon_sym_EQ_EQ2] = ACTIONS(1838), + [anon_sym_BANG_EQ2] = ACTIONS(1838), + [anon_sym_LT2] = ACTIONS(1840), + [anon_sym_LT_EQ2] = ACTIONS(1838), + [anon_sym_GT_EQ2] = ACTIONS(1838), + [anon_sym_EQ_TILDE2] = ACTIONS(1838), + [anon_sym_BANG_TILDE2] = ACTIONS(1838), + [anon_sym_like2] = ACTIONS(1838), + [anon_sym_not_DASHlike2] = ACTIONS(1838), + [anon_sym_STAR_STAR2] = ACTIONS(1838), + [anon_sym_PLUS_PLUS2] = ACTIONS(1838), + [anon_sym_SLASH2] = ACTIONS(1840), + [anon_sym_mod2] = ACTIONS(1838), + [anon_sym_SLASH_SLASH2] = ACTIONS(1838), + [anon_sym_PLUS2] = ACTIONS(1840), + [anon_sym_bit_DASHshl2] = ACTIONS(1838), + [anon_sym_bit_DASHshr2] = ACTIONS(1838), + [anon_sym_bit_DASHand2] = ACTIONS(1838), + [anon_sym_bit_DASHxor2] = ACTIONS(1838), + [anon_sym_bit_DASHor2] = ACTIONS(1838), + [anon_sym_DOT2] = ACTIONS(2251), + [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(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), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(759)] = { - [sym_expr_unary] = STATE(1282), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1282), - [sym__expr_binary_expression] = STATE(1296), - [sym_expr_parenthesized] = STATE(925), - [sym_val_range] = STATE(1282), - [sym__val_range] = STATE(4556), - [sym__value] = STATE(1282), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(968), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(472), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_unquoted] = STATE(1038), - [sym__unquoted_with_expr] = STATE(1298), - [sym__unquoted_anonymous_prefix] = STATE(4556), - [sym_comment] = STATE(759), - [anon_sym_true] = ACTIONS(2172), - [anon_sym_false] = ACTIONS(2172), - [anon_sym_null] = ACTIONS(2174), - [aux_sym_cmd_identifier_token3] = ACTIONS(2176), - [aux_sym_cmd_identifier_token4] = ACTIONS(2176), - [aux_sym_cmd_identifier_token5] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2178), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2180), - [anon_sym_DOT_DOT_LT] = ACTIONS(2180), - [aux_sym__val_number_decimal_token1] = ACTIONS(2182), - [aux_sym__val_number_decimal_token2] = ACTIONS(2184), - [aux_sym__val_number_decimal_token3] = ACTIONS(2186), - [aux_sym__val_number_decimal_token4] = ACTIONS(2186), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2188), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2190), + [STATE(746)] = { + [sym_cell_path] = STATE(1320), + [sym_path] = STATE(827), + [sym_comment] = STATE(746), + [aux_sym__where_predicate_lhs_repeat1] = STATE(525), + [ts_builtin_sym_end] = ACTIONS(1844), + [anon_sym_in] = ACTIONS(1844), + [sym__newline] = ACTIONS(1844), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_err_GT_PIPE] = ACTIONS(1844), + [anon_sym_out_GT_PIPE] = ACTIONS(1844), + [anon_sym_e_GT_PIPE] = ACTIONS(1844), + [anon_sym_o_GT_PIPE] = ACTIONS(1844), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1844), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1844), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1844), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1844), + [anon_sym_GT2] = ACTIONS(1846), + [anon_sym_DASH2] = ACTIONS(1844), + [anon_sym_STAR2] = ACTIONS(1846), + [anon_sym_and2] = ACTIONS(1844), + [anon_sym_xor2] = ACTIONS(1844), + [anon_sym_or2] = ACTIONS(1844), + [anon_sym_not_DASHin2] = ACTIONS(1844), + [anon_sym_has2] = ACTIONS(1844), + [anon_sym_not_DASHhas2] = ACTIONS(1844), + [anon_sym_starts_DASHwith2] = ACTIONS(1844), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1844), + [anon_sym_ends_DASHwith2] = ACTIONS(1844), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1844), + [anon_sym_EQ_EQ2] = ACTIONS(1844), + [anon_sym_BANG_EQ2] = ACTIONS(1844), + [anon_sym_LT2] = ACTIONS(1846), + [anon_sym_LT_EQ2] = ACTIONS(1844), + [anon_sym_GT_EQ2] = ACTIONS(1844), + [anon_sym_EQ_TILDE2] = ACTIONS(1844), + [anon_sym_BANG_TILDE2] = ACTIONS(1844), + [anon_sym_like2] = ACTIONS(1844), + [anon_sym_not_DASHlike2] = ACTIONS(1844), + [anon_sym_STAR_STAR2] = ACTIONS(1844), + [anon_sym_PLUS_PLUS2] = ACTIONS(1844), + [anon_sym_SLASH2] = ACTIONS(1846), + [anon_sym_mod2] = ACTIONS(1844), + [anon_sym_SLASH_SLASH2] = ACTIONS(1844), + [anon_sym_PLUS2] = ACTIONS(1846), + [anon_sym_bit_DASHshl2] = ACTIONS(1844), + [anon_sym_bit_DASHshr2] = ACTIONS(1844), + [anon_sym_bit_DASHand2] = ACTIONS(1844), + [anon_sym_bit_DASHxor2] = ACTIONS(1844), + [anon_sym_bit_DASHor2] = ACTIONS(1844), + [anon_sym_DOT2] = ACTIONS(2251), + [anon_sym_err_GT] = ACTIONS(1846), + [anon_sym_out_GT] = ACTIONS(1846), + [anon_sym_e_GT] = ACTIONS(1846), + [anon_sym_o_GT] = ACTIONS(1846), + [anon_sym_err_PLUSout_GT] = ACTIONS(1846), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1846), + [anon_sym_o_PLUSe_GT] = ACTIONS(1846), + [anon_sym_e_PLUSo_GT] = ACTIONS(1846), + [anon_sym_err_GT_GT] = ACTIONS(1844), + [anon_sym_out_GT_GT] = ACTIONS(1844), + [anon_sym_e_GT_GT] = ACTIONS(1844), + [anon_sym_o_GT_GT] = ACTIONS(1844), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1844), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1844), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1844), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1844), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(760)] = { - [sym_cell_path] = STATE(1269), - [sym_path] = STATE(712), - [sym_comment] = STATE(760), - [aux_sym__where_predicate_lhs_repeat1] = STATE(547), - [ts_builtin_sym_end] = ACTIONS(1886), - [anon_sym_in] = ACTIONS(1886), - [sym__newline] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_err_GT_PIPE] = ACTIONS(1886), - [anon_sym_out_GT_PIPE] = ACTIONS(1886), - [anon_sym_e_GT_PIPE] = ACTIONS(1886), - [anon_sym_o_GT_PIPE] = ACTIONS(1886), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1886), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1886), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1886), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1886), - [anon_sym_GT2] = ACTIONS(1889), - [anon_sym_DASH2] = ACTIONS(1886), - [anon_sym_STAR2] = ACTIONS(1889), - [anon_sym_and2] = ACTIONS(1886), - [anon_sym_xor2] = ACTIONS(1886), - [anon_sym_or2] = ACTIONS(1886), - [anon_sym_not_DASHin2] = ACTIONS(1886), - [anon_sym_has2] = ACTIONS(1886), - [anon_sym_not_DASHhas2] = ACTIONS(1886), - [anon_sym_starts_DASHwith2] = ACTIONS(1886), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1886), - [anon_sym_ends_DASHwith2] = ACTIONS(1886), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1886), - [anon_sym_EQ_EQ2] = ACTIONS(1886), - [anon_sym_BANG_EQ2] = ACTIONS(1886), - [anon_sym_LT2] = ACTIONS(1889), - [anon_sym_LT_EQ2] = ACTIONS(1886), - [anon_sym_GT_EQ2] = ACTIONS(1886), - [anon_sym_EQ_TILDE2] = ACTIONS(1886), - [anon_sym_BANG_TILDE2] = ACTIONS(1886), - [anon_sym_like2] = ACTIONS(1886), - [anon_sym_not_DASHlike2] = ACTIONS(1886), - [anon_sym_STAR_STAR2] = ACTIONS(1886), - [anon_sym_PLUS_PLUS2] = ACTIONS(1886), - [anon_sym_SLASH2] = ACTIONS(1889), - [anon_sym_mod2] = ACTIONS(1886), - [anon_sym_SLASH_SLASH2] = ACTIONS(1886), - [anon_sym_PLUS2] = ACTIONS(1889), - [anon_sym_bit_DASHshl2] = ACTIONS(1886), - [anon_sym_bit_DASHshr2] = ACTIONS(1886), - [anon_sym_bit_DASHand2] = ACTIONS(1886), - [anon_sym_bit_DASHxor2] = ACTIONS(1886), - [anon_sym_bit_DASHor2] = ACTIONS(1886), - [anon_sym_DOT2] = ACTIONS(2192), - [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(1886), - [anon_sym_out_GT_GT] = ACTIONS(1886), - [anon_sym_e_GT_GT] = ACTIONS(1886), - [anon_sym_o_GT_GT] = ACTIONS(1886), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1886), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1886), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1886), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1886), + [STATE(747)] = { + [sym_comment] = STATE(747), + [ts_builtin_sym_end] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [sym__newline] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1750), + [anon_sym_err_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_GT_PIPE] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1750), + [anon_sym_GT2] = ACTIONS(1752), + [anon_sym_DASH2] = ACTIONS(1750), + [anon_sym_STAR2] = ACTIONS(1752), + [anon_sym_and2] = ACTIONS(1750), + [anon_sym_xor2] = ACTIONS(1750), + [anon_sym_or2] = ACTIONS(1750), + [anon_sym_not_DASHin2] = ACTIONS(1750), + [anon_sym_has2] = ACTIONS(1750), + [anon_sym_not_DASHhas2] = ACTIONS(1750), + [anon_sym_starts_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1750), + [anon_sym_ends_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1750), + [anon_sym_EQ_EQ2] = ACTIONS(1750), + [anon_sym_BANG_EQ2] = ACTIONS(1750), + [anon_sym_LT2] = ACTIONS(1752), + [anon_sym_LT_EQ2] = ACTIONS(1750), + [anon_sym_GT_EQ2] = ACTIONS(1750), + [anon_sym_EQ_TILDE2] = ACTIONS(1750), + [anon_sym_BANG_TILDE2] = ACTIONS(1750), + [anon_sym_like2] = ACTIONS(1750), + [anon_sym_not_DASHlike2] = ACTIONS(1750), + [anon_sym_LPAREN2] = ACTIONS(1750), + [anon_sym_STAR_STAR2] = ACTIONS(1750), + [anon_sym_PLUS_PLUS2] = ACTIONS(1750), + [anon_sym_SLASH2] = ACTIONS(1752), + [anon_sym_mod2] = ACTIONS(1750), + [anon_sym_SLASH_SLASH2] = ACTIONS(1750), + [anon_sym_PLUS2] = ACTIONS(1752), + [anon_sym_bit_DASHshl2] = ACTIONS(1750), + [anon_sym_bit_DASHshr2] = ACTIONS(1750), + [anon_sym_bit_DASHand2] = ACTIONS(1750), + [anon_sym_bit_DASHxor2] = ACTIONS(1750), + [anon_sym_bit_DASHor2] = ACTIONS(1750), + [anon_sym_DOT] = ACTIONS(2271), + [aux_sym__immediate_decimal_token5] = ACTIONS(2273), + [anon_sym_err_GT] = ACTIONS(1752), + [anon_sym_out_GT] = ACTIONS(1752), + [anon_sym_e_GT] = ACTIONS(1752), + [anon_sym_o_GT] = ACTIONS(1752), + [anon_sym_err_PLUSout_GT] = ACTIONS(1752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1752), + [anon_sym_o_PLUSe_GT] = ACTIONS(1752), + [anon_sym_e_PLUSo_GT] = ACTIONS(1752), + [anon_sym_err_GT_GT] = ACTIONS(1750), + [anon_sym_out_GT_GT] = ACTIONS(1750), + [anon_sym_e_GT_GT] = ACTIONS(1750), + [anon_sym_o_GT_GT] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1750), + [sym__unquoted_pattern] = ACTIONS(1752), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(761)] = { - [sym_cmd_identifier] = STATE(4341), - [sym_expr_parenthesized] = STATE(5062), - [sym__spread_parenthesized] = STATE(4693), - [sym__spread_variable] = STATE(4695), - [sym_val_variable] = STATE(4144), - [sym_val_number] = STATE(5062), - [sym__val_number_decimal] = STATE(1952), - [sym__val_number] = STATE(676), - [sym_val_string] = STATE(5062), - [sym__raw_str] = STATE(2243), - [sym__str_double_quotes] = STATE(2243), - [sym__str_single_quotes] = STATE(2243), - [sym__str_back_ticks] = STATE(2243), - [sym_val_interpolated] = STATE(5062), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym__spread_record] = STATE(4693), - [sym_record_entry] = STATE(4461), - [sym__record_key] = STATE(5228), - [sym_comment] = STATE(761), - [aux_sym__match_pattern_record_body_repeat1] = STATE(822), + [STATE(748)] = { + [sym_cmd_identifier] = STATE(4340), + [sym_expr_parenthesized] = STATE(5053), + [sym__spread_parenthesized] = STATE(4675), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(5053), + [sym_val_number] = STATE(5053), + [sym__val_number_decimal] = STATE(1955), + [sym__val_number] = STATE(693), + [sym_val_string] = STATE(5053), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(5053), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym__spread_record] = STATE(4675), + [sym_record_entry] = STATE(4604), + [sym__record_key] = STATE(5144), + [sym_comment] = STATE(748), + [aux_sym_record_body_repeat1] = STATE(749), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -105081,4326 +104206,1736 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_null] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1798), [anon_sym_DASH2] = ACTIONS(175), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_decimal_token1] = ACTIONS(1784), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(762)] = { - [sym_comment] = STATE(762), - [anon_sym_in] = ACTIONS(2074), - [sym__newline] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_err_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_GT_PIPE] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2076), - [anon_sym_GT2] = ACTIONS(2078), - [anon_sym_DASH2] = ACTIONS(2074), - [anon_sym_RBRACE] = ACTIONS(2076), - [anon_sym_STAR2] = ACTIONS(2078), - [anon_sym_and2] = ACTIONS(2074), - [anon_sym_xor2] = ACTIONS(2074), - [anon_sym_or2] = ACTIONS(2074), - [anon_sym_not_DASHin2] = ACTIONS(2074), - [anon_sym_has2] = ACTIONS(2074), - [anon_sym_not_DASHhas2] = ACTIONS(2074), - [anon_sym_starts_DASHwith2] = ACTIONS(2074), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2074), - [anon_sym_ends_DASHwith2] = ACTIONS(2074), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2074), - [anon_sym_EQ_EQ2] = ACTIONS(2074), - [anon_sym_BANG_EQ2] = ACTIONS(2074), - [anon_sym_LT2] = ACTIONS(2078), - [anon_sym_LT_EQ2] = ACTIONS(2074), - [anon_sym_GT_EQ2] = ACTIONS(2074), - [anon_sym_EQ_TILDE2] = ACTIONS(2074), - [anon_sym_BANG_TILDE2] = ACTIONS(2074), - [anon_sym_like2] = ACTIONS(2074), - [anon_sym_not_DASHlike2] = ACTIONS(2074), - [anon_sym_STAR_STAR2] = ACTIONS(2074), - [anon_sym_PLUS_PLUS2] = ACTIONS(2074), - [anon_sym_SLASH2] = ACTIONS(2078), - [anon_sym_mod2] = ACTIONS(2074), - [anon_sym_SLASH_SLASH2] = ACTIONS(2074), - [anon_sym_PLUS2] = ACTIONS(2078), - [anon_sym_bit_DASHshl2] = ACTIONS(2074), - [anon_sym_bit_DASHshr2] = ACTIONS(2074), - [anon_sym_bit_DASHand2] = ACTIONS(2074), - [anon_sym_bit_DASHxor2] = ACTIONS(2074), - [anon_sym_bit_DASHor2] = ACTIONS(2074), - [anon_sym_DOT_DOT2] = ACTIONS(1619), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), - [anon_sym_COLON2] = ACTIONS(1691), - [anon_sym_err_GT] = ACTIONS(2080), - [anon_sym_out_GT] = ACTIONS(2080), - [anon_sym_e_GT] = ACTIONS(2080), - [anon_sym_o_GT] = ACTIONS(2080), - [anon_sym_err_PLUSout_GT] = ACTIONS(2080), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2080), - [anon_sym_o_PLUSe_GT] = ACTIONS(2080), - [anon_sym_e_PLUSo_GT] = ACTIONS(2080), - [anon_sym_err_GT_GT] = ACTIONS(2076), - [anon_sym_out_GT_GT] = ACTIONS(2076), - [anon_sym_e_GT_GT] = ACTIONS(2076), - [anon_sym_o_GT_GT] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(763)] = { - [aux_sym__repeat_newline] = STATE(1020), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(763), - [anon_sym_in] = ACTIONS(2279), - [sym__newline] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_err_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_GT_PIPE] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_GT2] = ACTIONS(2281), - [anon_sym_DASH2] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_STAR2] = ACTIONS(2281), - [anon_sym_and2] = ACTIONS(2279), - [anon_sym_xor2] = ACTIONS(2279), - [anon_sym_or2] = ACTIONS(2279), - [anon_sym_not_DASHin2] = ACTIONS(2279), - [anon_sym_has2] = ACTIONS(2279), - [anon_sym_not_DASHhas2] = ACTIONS(2279), - [anon_sym_starts_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), - [anon_sym_ends_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), - [anon_sym_EQ_EQ2] = ACTIONS(2279), - [anon_sym_BANG_EQ2] = ACTIONS(2279), - [anon_sym_LT2] = ACTIONS(2281), - [anon_sym_LT_EQ2] = ACTIONS(2279), - [anon_sym_GT_EQ2] = ACTIONS(2279), - [anon_sym_EQ_TILDE2] = ACTIONS(2279), - [anon_sym_BANG_TILDE2] = ACTIONS(2279), - [anon_sym_like2] = ACTIONS(2279), - [anon_sym_not_DASHlike2] = ACTIONS(2279), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2279), - [anon_sym_PLUS_PLUS2] = ACTIONS(2279), - [anon_sym_SLASH2] = ACTIONS(2281), - [anon_sym_mod2] = ACTIONS(2279), - [anon_sym_SLASH_SLASH2] = ACTIONS(2279), - [anon_sym_PLUS2] = ACTIONS(2281), - [anon_sym_bit_DASHshl2] = ACTIONS(2279), - [anon_sym_bit_DASHshr2] = ACTIONS(2279), - [anon_sym_bit_DASHand2] = ACTIONS(2279), - [anon_sym_bit_DASHxor2] = ACTIONS(2279), - [anon_sym_bit_DASHor2] = ACTIONS(2279), - [anon_sym_err_GT] = ACTIONS(2281), - [anon_sym_out_GT] = ACTIONS(2281), - [anon_sym_e_GT] = ACTIONS(2281), - [anon_sym_o_GT] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT] = ACTIONS(2281), - [anon_sym_err_GT_GT] = ACTIONS(2279), - [anon_sym_out_GT_GT] = ACTIONS(2279), - [anon_sym_e_GT_GT] = ACTIONS(2279), - [anon_sym_o_GT_GT] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(764)] = { - [aux_sym__repeat_newline] = STATE(1027), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(764), - [anon_sym_in] = ACTIONS(2279), - [sym__newline] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_err_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_GT_PIPE] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_GT2] = ACTIONS(2281), - [anon_sym_DASH2] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_STAR2] = ACTIONS(2281), - [anon_sym_and2] = ACTIONS(2279), - [anon_sym_xor2] = ACTIONS(2279), - [anon_sym_or2] = ACTIONS(2279), - [anon_sym_not_DASHin2] = ACTIONS(2279), - [anon_sym_has2] = ACTIONS(2279), - [anon_sym_not_DASHhas2] = ACTIONS(2279), - [anon_sym_starts_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), - [anon_sym_ends_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), - [anon_sym_EQ_EQ2] = ACTIONS(2279), - [anon_sym_BANG_EQ2] = ACTIONS(2279), - [anon_sym_LT2] = ACTIONS(2281), - [anon_sym_LT_EQ2] = ACTIONS(2279), - [anon_sym_GT_EQ2] = ACTIONS(2279), - [anon_sym_EQ_TILDE2] = ACTIONS(2279), - [anon_sym_BANG_TILDE2] = ACTIONS(2279), - [anon_sym_like2] = ACTIONS(2279), - [anon_sym_not_DASHlike2] = ACTIONS(2279), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2279), - [anon_sym_PLUS_PLUS2] = ACTIONS(2279), - [anon_sym_SLASH2] = ACTIONS(2281), - [anon_sym_mod2] = ACTIONS(2279), - [anon_sym_SLASH_SLASH2] = ACTIONS(2279), - [anon_sym_PLUS2] = ACTIONS(2281), - [anon_sym_bit_DASHshl2] = ACTIONS(2279), - [anon_sym_bit_DASHshr2] = ACTIONS(2279), - [anon_sym_bit_DASHand2] = ACTIONS(2279), - [anon_sym_bit_DASHxor2] = ACTIONS(2279), - [anon_sym_bit_DASHor2] = ACTIONS(2279), - [anon_sym_err_GT] = ACTIONS(2281), - [anon_sym_out_GT] = ACTIONS(2281), - [anon_sym_e_GT] = ACTIONS(2281), - [anon_sym_o_GT] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT] = ACTIONS(2281), - [anon_sym_err_GT_GT] = ACTIONS(2279), - [anon_sym_out_GT_GT] = ACTIONS(2279), - [anon_sym_e_GT_GT] = ACTIONS(2279), - [anon_sym_o_GT_GT] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(765)] = { - [aux_sym__repeat_newline] = STATE(1028), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(765), - [anon_sym_in] = ACTIONS(2279), - [sym__newline] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_err_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_GT_PIPE] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_GT2] = ACTIONS(2281), - [anon_sym_DASH2] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_STAR2] = ACTIONS(2281), - [anon_sym_and2] = ACTIONS(2279), - [anon_sym_xor2] = ACTIONS(2279), - [anon_sym_or2] = ACTIONS(2279), - [anon_sym_not_DASHin2] = ACTIONS(2279), - [anon_sym_has2] = ACTIONS(2279), - [anon_sym_not_DASHhas2] = ACTIONS(2279), - [anon_sym_starts_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), - [anon_sym_ends_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), - [anon_sym_EQ_EQ2] = ACTIONS(2279), - [anon_sym_BANG_EQ2] = ACTIONS(2279), - [anon_sym_LT2] = ACTIONS(2281), - [anon_sym_LT_EQ2] = ACTIONS(2279), - [anon_sym_GT_EQ2] = ACTIONS(2279), - [anon_sym_EQ_TILDE2] = ACTIONS(2279), - [anon_sym_BANG_TILDE2] = ACTIONS(2279), - [anon_sym_like2] = ACTIONS(2279), - [anon_sym_not_DASHlike2] = ACTIONS(2279), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2279), - [anon_sym_PLUS_PLUS2] = ACTIONS(2279), - [anon_sym_SLASH2] = ACTIONS(2281), - [anon_sym_mod2] = ACTIONS(2279), - [anon_sym_SLASH_SLASH2] = ACTIONS(2279), - [anon_sym_PLUS2] = ACTIONS(2281), - [anon_sym_bit_DASHshl2] = ACTIONS(2279), - [anon_sym_bit_DASHshr2] = ACTIONS(2279), - [anon_sym_bit_DASHand2] = ACTIONS(2279), - [anon_sym_bit_DASHxor2] = ACTIONS(2279), - [anon_sym_bit_DASHor2] = ACTIONS(2279), - [anon_sym_err_GT] = ACTIONS(2281), - [anon_sym_out_GT] = ACTIONS(2281), - [anon_sym_e_GT] = ACTIONS(2281), - [anon_sym_o_GT] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT] = ACTIONS(2281), - [anon_sym_err_GT_GT] = ACTIONS(2279), - [anon_sym_out_GT_GT] = ACTIONS(2279), - [anon_sym_e_GT_GT] = ACTIONS(2279), - [anon_sym_o_GT_GT] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(766)] = { - [sym_comment] = STATE(766), - [ts_builtin_sym_end] = ACTIONS(1728), - [anon_sym_in] = ACTIONS(1728), - [sym__newline] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_err_GT_PIPE] = ACTIONS(1728), - [anon_sym_out_GT_PIPE] = ACTIONS(1728), - [anon_sym_e_GT_PIPE] = ACTIONS(1728), - [anon_sym_o_GT_PIPE] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1728), - [anon_sym_GT2] = ACTIONS(1730), - [anon_sym_DASH2] = ACTIONS(1728), - [anon_sym_STAR2] = ACTIONS(1730), - [anon_sym_and2] = ACTIONS(1728), - [anon_sym_xor2] = ACTIONS(1728), - [anon_sym_or2] = ACTIONS(1728), - [anon_sym_not_DASHin2] = ACTIONS(1728), - [anon_sym_has2] = ACTIONS(1728), - [anon_sym_not_DASHhas2] = ACTIONS(1728), - [anon_sym_starts_DASHwith2] = ACTIONS(1728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1728), - [anon_sym_ends_DASHwith2] = ACTIONS(1728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1728), - [anon_sym_EQ_EQ2] = ACTIONS(1728), - [anon_sym_BANG_EQ2] = ACTIONS(1728), - [anon_sym_LT2] = ACTIONS(1730), - [anon_sym_LT_EQ2] = ACTIONS(1728), - [anon_sym_GT_EQ2] = ACTIONS(1728), - [anon_sym_EQ_TILDE2] = ACTIONS(1728), - [anon_sym_BANG_TILDE2] = ACTIONS(1728), - [anon_sym_like2] = ACTIONS(1728), - [anon_sym_not_DASHlike2] = ACTIONS(1728), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_STAR_STAR2] = ACTIONS(1728), - [anon_sym_PLUS_PLUS2] = ACTIONS(1728), - [anon_sym_SLASH2] = ACTIONS(1730), - [anon_sym_mod2] = ACTIONS(1728), - [anon_sym_SLASH_SLASH2] = ACTIONS(1728), - [anon_sym_PLUS2] = ACTIONS(1730), - [anon_sym_bit_DASHshl2] = ACTIONS(1728), - [anon_sym_bit_DASHshr2] = ACTIONS(1728), - [anon_sym_bit_DASHand2] = ACTIONS(1728), - [anon_sym_bit_DASHxor2] = ACTIONS(1728), - [anon_sym_bit_DASHor2] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(2283), - [aux_sym__immediate_decimal_token5] = ACTIONS(2285), - [anon_sym_err_GT] = ACTIONS(1730), - [anon_sym_out_GT] = ACTIONS(1730), - [anon_sym_e_GT] = ACTIONS(1730), - [anon_sym_o_GT] = ACTIONS(1730), - [anon_sym_err_PLUSout_GT] = ACTIONS(1730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1730), - [anon_sym_o_PLUSe_GT] = ACTIONS(1730), - [anon_sym_e_PLUSo_GT] = ACTIONS(1730), - [anon_sym_err_GT_GT] = ACTIONS(1728), - [anon_sym_out_GT_GT] = ACTIONS(1728), - [anon_sym_e_GT_GT] = ACTIONS(1728), - [anon_sym_o_GT_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1728), - [sym__unquoted_pattern] = ACTIONS(1730), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(767)] = { - [aux_sym__repeat_newline] = STATE(1029), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(767), - [anon_sym_in] = ACTIONS(2279), - [sym__newline] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_err_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_GT_PIPE] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_GT2] = ACTIONS(2281), - [anon_sym_DASH2] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_STAR2] = ACTIONS(2281), - [anon_sym_and2] = ACTIONS(2279), - [anon_sym_xor2] = ACTIONS(2279), - [anon_sym_or2] = ACTIONS(2279), - [anon_sym_not_DASHin2] = ACTIONS(2279), - [anon_sym_has2] = ACTIONS(2279), - [anon_sym_not_DASHhas2] = ACTIONS(2279), - [anon_sym_starts_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), - [anon_sym_ends_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), - [anon_sym_EQ_EQ2] = ACTIONS(2279), - [anon_sym_BANG_EQ2] = ACTIONS(2279), - [anon_sym_LT2] = ACTIONS(2281), - [anon_sym_LT_EQ2] = ACTIONS(2279), - [anon_sym_GT_EQ2] = ACTIONS(2279), - [anon_sym_EQ_TILDE2] = ACTIONS(2279), - [anon_sym_BANG_TILDE2] = ACTIONS(2279), - [anon_sym_like2] = ACTIONS(2279), - [anon_sym_not_DASHlike2] = ACTIONS(2279), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2279), - [anon_sym_PLUS_PLUS2] = ACTIONS(2279), - [anon_sym_SLASH2] = ACTIONS(2281), - [anon_sym_mod2] = ACTIONS(2279), - [anon_sym_SLASH_SLASH2] = ACTIONS(2279), - [anon_sym_PLUS2] = ACTIONS(2281), - [anon_sym_bit_DASHshl2] = ACTIONS(2279), - [anon_sym_bit_DASHshr2] = ACTIONS(2279), - [anon_sym_bit_DASHand2] = ACTIONS(2279), - [anon_sym_bit_DASHxor2] = ACTIONS(2279), - [anon_sym_bit_DASHor2] = ACTIONS(2279), - [anon_sym_err_GT] = ACTIONS(2281), - [anon_sym_out_GT] = ACTIONS(2281), - [anon_sym_e_GT] = ACTIONS(2281), - [anon_sym_o_GT] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT] = ACTIONS(2281), - [anon_sym_err_GT_GT] = ACTIONS(2279), - [anon_sym_out_GT_GT] = ACTIONS(2279), - [anon_sym_e_GT_GT] = ACTIONS(2279), - [anon_sym_o_GT_GT] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(768)] = { - [aux_sym__repeat_newline] = STATE(1030), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(768), - [anon_sym_in] = ACTIONS(2279), - [sym__newline] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_err_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_GT_PIPE] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_GT2] = ACTIONS(2281), - [anon_sym_DASH2] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_STAR2] = ACTIONS(2281), - [anon_sym_and2] = ACTIONS(2279), - [anon_sym_xor2] = ACTIONS(2279), - [anon_sym_or2] = ACTIONS(2279), - [anon_sym_not_DASHin2] = ACTIONS(2279), - [anon_sym_has2] = ACTIONS(2279), - [anon_sym_not_DASHhas2] = ACTIONS(2279), - [anon_sym_starts_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), - [anon_sym_ends_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), - [anon_sym_EQ_EQ2] = ACTIONS(2279), - [anon_sym_BANG_EQ2] = ACTIONS(2279), - [anon_sym_LT2] = ACTIONS(2281), - [anon_sym_LT_EQ2] = ACTIONS(2279), - [anon_sym_GT_EQ2] = ACTIONS(2279), - [anon_sym_EQ_TILDE2] = ACTIONS(2279), - [anon_sym_BANG_TILDE2] = ACTIONS(2279), - [anon_sym_like2] = ACTIONS(2279), - [anon_sym_not_DASHlike2] = ACTIONS(2279), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2279), - [anon_sym_PLUS_PLUS2] = ACTIONS(2279), - [anon_sym_SLASH2] = ACTIONS(2281), - [anon_sym_mod2] = ACTIONS(2279), - [anon_sym_SLASH_SLASH2] = ACTIONS(2279), - [anon_sym_PLUS2] = ACTIONS(2281), - [anon_sym_bit_DASHshl2] = ACTIONS(2279), - [anon_sym_bit_DASHshr2] = ACTIONS(2279), - [anon_sym_bit_DASHand2] = ACTIONS(2279), - [anon_sym_bit_DASHxor2] = ACTIONS(2279), - [anon_sym_bit_DASHor2] = ACTIONS(2279), - [anon_sym_err_GT] = ACTIONS(2281), - [anon_sym_out_GT] = ACTIONS(2281), - [anon_sym_e_GT] = ACTIONS(2281), - [anon_sym_o_GT] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT] = ACTIONS(2281), - [anon_sym_err_GT_GT] = ACTIONS(2279), - [anon_sym_out_GT_GT] = ACTIONS(2279), - [anon_sym_e_GT_GT] = ACTIONS(2279), - [anon_sym_o_GT_GT] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(769)] = { - [sym_comment] = STATE(769), - [anon_sym_in] = ACTIONS(1728), - [sym__newline] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_err_GT_PIPE] = ACTIONS(1728), - [anon_sym_out_GT_PIPE] = ACTIONS(1728), - [anon_sym_e_GT_PIPE] = ACTIONS(1728), - [anon_sym_o_GT_PIPE] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1728), - [anon_sym_RPAREN] = ACTIONS(1728), - [anon_sym_GT2] = ACTIONS(1730), - [anon_sym_DASH2] = ACTIONS(1728), - [anon_sym_RBRACE] = ACTIONS(1728), - [anon_sym_STAR2] = ACTIONS(1730), - [anon_sym_and2] = ACTIONS(1728), - [anon_sym_xor2] = ACTIONS(1728), - [anon_sym_or2] = ACTIONS(1728), - [anon_sym_not_DASHin2] = ACTIONS(1728), - [anon_sym_has2] = ACTIONS(1728), - [anon_sym_not_DASHhas2] = ACTIONS(1728), - [anon_sym_starts_DASHwith2] = ACTIONS(1728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1728), - [anon_sym_ends_DASHwith2] = ACTIONS(1728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1728), - [anon_sym_EQ_EQ2] = ACTIONS(1728), - [anon_sym_BANG_EQ2] = ACTIONS(1728), - [anon_sym_LT2] = ACTIONS(1730), - [anon_sym_LT_EQ2] = ACTIONS(1728), - [anon_sym_GT_EQ2] = ACTIONS(1728), - [anon_sym_EQ_TILDE2] = ACTIONS(1728), - [anon_sym_BANG_TILDE2] = ACTIONS(1728), - [anon_sym_like2] = ACTIONS(1728), - [anon_sym_not_DASHlike2] = ACTIONS(1728), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_STAR_STAR2] = ACTIONS(1728), - [anon_sym_PLUS_PLUS2] = ACTIONS(1728), - [anon_sym_SLASH2] = ACTIONS(1730), - [anon_sym_mod2] = ACTIONS(1728), - [anon_sym_SLASH_SLASH2] = ACTIONS(1728), - [anon_sym_PLUS2] = ACTIONS(1730), - [anon_sym_bit_DASHshl2] = ACTIONS(1728), - [anon_sym_bit_DASHshr2] = ACTIONS(1728), - [anon_sym_bit_DASHand2] = ACTIONS(1728), - [anon_sym_bit_DASHxor2] = ACTIONS(1728), - [anon_sym_bit_DASHor2] = ACTIONS(1728), - [aux_sym__immediate_decimal_token5] = ACTIONS(2130), - [anon_sym_err_GT] = ACTIONS(1730), - [anon_sym_out_GT] = ACTIONS(1730), - [anon_sym_e_GT] = ACTIONS(1730), - [anon_sym_o_GT] = ACTIONS(1730), - [anon_sym_err_PLUSout_GT] = ACTIONS(1730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1730), - [anon_sym_o_PLUSe_GT] = ACTIONS(1730), - [anon_sym_e_PLUSo_GT] = ACTIONS(1730), - [anon_sym_err_GT_GT] = ACTIONS(1728), - [anon_sym_out_GT_GT] = ACTIONS(1728), - [anon_sym_e_GT_GT] = ACTIONS(1728), - [anon_sym_o_GT_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1728), - [sym__unquoted_pattern] = ACTIONS(1730), - [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1796), }, - [STATE(770)] = { - [aux_sym__repeat_newline] = STATE(1031), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(770), - [anon_sym_in] = ACTIONS(2279), - [sym__newline] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_err_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_GT_PIPE] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_GT2] = ACTIONS(2281), - [anon_sym_DASH2] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_STAR2] = ACTIONS(2281), - [anon_sym_and2] = ACTIONS(2279), - [anon_sym_xor2] = ACTIONS(2279), - [anon_sym_or2] = ACTIONS(2279), - [anon_sym_not_DASHin2] = ACTIONS(2279), - [anon_sym_has2] = ACTIONS(2279), - [anon_sym_not_DASHhas2] = ACTIONS(2279), - [anon_sym_starts_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), - [anon_sym_ends_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), - [anon_sym_EQ_EQ2] = ACTIONS(2279), - [anon_sym_BANG_EQ2] = ACTIONS(2279), - [anon_sym_LT2] = ACTIONS(2281), - [anon_sym_LT_EQ2] = ACTIONS(2279), - [anon_sym_GT_EQ2] = ACTIONS(2279), - [anon_sym_EQ_TILDE2] = ACTIONS(2279), - [anon_sym_BANG_TILDE2] = ACTIONS(2279), - [anon_sym_like2] = ACTIONS(2279), - [anon_sym_not_DASHlike2] = ACTIONS(2279), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2279), - [anon_sym_PLUS_PLUS2] = ACTIONS(2279), - [anon_sym_SLASH2] = ACTIONS(2281), - [anon_sym_mod2] = ACTIONS(2279), - [anon_sym_SLASH_SLASH2] = ACTIONS(2279), - [anon_sym_PLUS2] = ACTIONS(2281), - [anon_sym_bit_DASHshl2] = ACTIONS(2279), - [anon_sym_bit_DASHshr2] = ACTIONS(2279), - [anon_sym_bit_DASHand2] = ACTIONS(2279), - [anon_sym_bit_DASHxor2] = ACTIONS(2279), - [anon_sym_bit_DASHor2] = ACTIONS(2279), - [anon_sym_err_GT] = ACTIONS(2281), - [anon_sym_out_GT] = ACTIONS(2281), - [anon_sym_e_GT] = ACTIONS(2281), - [anon_sym_o_GT] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT] = ACTIONS(2281), - [anon_sym_err_GT_GT] = ACTIONS(2279), - [anon_sym_out_GT_GT] = ACTIONS(2279), - [anon_sym_e_GT_GT] = ACTIONS(2279), - [anon_sym_o_GT_GT] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(771)] = { - [sym_comment] = STATE(771), - [anon_sym_in] = ACTIONS(1806), - [sym__newline] = ACTIONS(1806), - [anon_sym_SEMI] = ACTIONS(1806), - [anon_sym_PIPE] = ACTIONS(1806), - [anon_sym_err_GT_PIPE] = ACTIONS(1806), - [anon_sym_out_GT_PIPE] = ACTIONS(1806), - [anon_sym_e_GT_PIPE] = ACTIONS(1806), - [anon_sym_o_GT_PIPE] = ACTIONS(1806), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1806), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1806), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1806), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1806), - [anon_sym_RPAREN] = ACTIONS(1806), - [anon_sym_GT2] = ACTIONS(1808), - [anon_sym_DASH2] = ACTIONS(1806), - [anon_sym_RBRACE] = ACTIONS(1806), - [anon_sym_STAR2] = ACTIONS(1808), - [anon_sym_and2] = ACTIONS(1806), - [anon_sym_xor2] = ACTIONS(1806), - [anon_sym_or2] = ACTIONS(1806), - [anon_sym_not_DASHin2] = ACTIONS(1806), - [anon_sym_has2] = ACTIONS(1806), - [anon_sym_not_DASHhas2] = ACTIONS(1806), - [anon_sym_starts_DASHwith2] = ACTIONS(1806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1806), - [anon_sym_ends_DASHwith2] = ACTIONS(1806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1806), - [anon_sym_EQ_EQ2] = ACTIONS(1806), - [anon_sym_BANG_EQ2] = ACTIONS(1806), - [anon_sym_LT2] = ACTIONS(1808), - [anon_sym_LT_EQ2] = ACTIONS(1806), - [anon_sym_GT_EQ2] = ACTIONS(1806), - [anon_sym_EQ_TILDE2] = ACTIONS(1806), - [anon_sym_BANG_TILDE2] = ACTIONS(1806), - [anon_sym_like2] = ACTIONS(1806), - [anon_sym_not_DASHlike2] = ACTIONS(1806), - [anon_sym_LPAREN2] = ACTIONS(1806), - [anon_sym_STAR_STAR2] = ACTIONS(1806), - [anon_sym_PLUS_PLUS2] = ACTIONS(1806), - [anon_sym_SLASH2] = ACTIONS(1808), - [anon_sym_mod2] = ACTIONS(1806), - [anon_sym_SLASH_SLASH2] = ACTIONS(1806), - [anon_sym_PLUS2] = ACTIONS(1808), - [anon_sym_bit_DASHshl2] = ACTIONS(1806), - [anon_sym_bit_DASHshr2] = ACTIONS(1806), - [anon_sym_bit_DASHand2] = ACTIONS(1806), - [anon_sym_bit_DASHxor2] = ACTIONS(1806), - [anon_sym_bit_DASHor2] = ACTIONS(1806), - [aux_sym__immediate_decimal_token5] = ACTIONS(2287), - [anon_sym_err_GT] = ACTIONS(1808), - [anon_sym_out_GT] = ACTIONS(1808), - [anon_sym_e_GT] = ACTIONS(1808), - [anon_sym_o_GT] = ACTIONS(1808), - [anon_sym_err_PLUSout_GT] = ACTIONS(1808), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1808), - [anon_sym_o_PLUSe_GT] = ACTIONS(1808), - [anon_sym_e_PLUSo_GT] = ACTIONS(1808), - [anon_sym_err_GT_GT] = ACTIONS(1806), - [anon_sym_out_GT_GT] = ACTIONS(1806), - [anon_sym_e_GT_GT] = ACTIONS(1806), - [anon_sym_o_GT_GT] = ACTIONS(1806), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1806), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1806), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1806), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1806), - [sym__unquoted_pattern] = ACTIONS(1808), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(772)] = { - [aux_sym__repeat_newline] = STATE(1032), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(772), - [anon_sym_in] = ACTIONS(2279), - [sym__newline] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_err_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_GT_PIPE] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_GT2] = ACTIONS(2281), - [anon_sym_DASH2] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_STAR2] = ACTIONS(2281), - [anon_sym_and2] = ACTIONS(2279), - [anon_sym_xor2] = ACTIONS(2279), - [anon_sym_or2] = ACTIONS(2279), - [anon_sym_not_DASHin2] = ACTIONS(2279), - [anon_sym_has2] = ACTIONS(2279), - [anon_sym_not_DASHhas2] = ACTIONS(2279), - [anon_sym_starts_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), - [anon_sym_ends_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), - [anon_sym_EQ_EQ2] = ACTIONS(2279), - [anon_sym_BANG_EQ2] = ACTIONS(2279), - [anon_sym_LT2] = ACTIONS(2281), - [anon_sym_LT_EQ2] = ACTIONS(2279), - [anon_sym_GT_EQ2] = ACTIONS(2279), - [anon_sym_EQ_TILDE2] = ACTIONS(2279), - [anon_sym_BANG_TILDE2] = ACTIONS(2279), - [anon_sym_like2] = ACTIONS(2279), - [anon_sym_not_DASHlike2] = ACTIONS(2279), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2279), - [anon_sym_PLUS_PLUS2] = ACTIONS(2279), - [anon_sym_SLASH2] = ACTIONS(2281), - [anon_sym_mod2] = ACTIONS(2279), - [anon_sym_SLASH_SLASH2] = ACTIONS(2279), - [anon_sym_PLUS2] = ACTIONS(2281), - [anon_sym_bit_DASHshl2] = ACTIONS(2279), - [anon_sym_bit_DASHshr2] = ACTIONS(2279), - [anon_sym_bit_DASHand2] = ACTIONS(2279), - [anon_sym_bit_DASHxor2] = ACTIONS(2279), - [anon_sym_bit_DASHor2] = ACTIONS(2279), - [anon_sym_err_GT] = ACTIONS(2281), - [anon_sym_out_GT] = ACTIONS(2281), - [anon_sym_e_GT] = ACTIONS(2281), - [anon_sym_o_GT] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT] = ACTIONS(2281), - [anon_sym_err_GT_GT] = ACTIONS(2279), - [anon_sym_out_GT_GT] = ACTIONS(2279), - [anon_sym_e_GT_GT] = ACTIONS(2279), - [anon_sym_o_GT_GT] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(773)] = { - [aux_sym__repeat_newline] = STATE(1033), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(773), - [anon_sym_in] = ACTIONS(2279), - [sym__newline] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_err_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_GT_PIPE] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_GT2] = ACTIONS(2281), - [anon_sym_DASH2] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_STAR2] = ACTIONS(2281), - [anon_sym_and2] = ACTIONS(2279), - [anon_sym_xor2] = ACTIONS(2279), - [anon_sym_or2] = ACTIONS(2279), - [anon_sym_not_DASHin2] = ACTIONS(2279), - [anon_sym_has2] = ACTIONS(2279), - [anon_sym_not_DASHhas2] = ACTIONS(2279), - [anon_sym_starts_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), - [anon_sym_ends_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), - [anon_sym_EQ_EQ2] = ACTIONS(2279), - [anon_sym_BANG_EQ2] = ACTIONS(2279), - [anon_sym_LT2] = ACTIONS(2281), - [anon_sym_LT_EQ2] = ACTIONS(2279), - [anon_sym_GT_EQ2] = ACTIONS(2279), - [anon_sym_EQ_TILDE2] = ACTIONS(2279), - [anon_sym_BANG_TILDE2] = ACTIONS(2279), - [anon_sym_like2] = ACTIONS(2279), - [anon_sym_not_DASHlike2] = ACTIONS(2279), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2279), - [anon_sym_PLUS_PLUS2] = ACTIONS(2279), - [anon_sym_SLASH2] = ACTIONS(2281), - [anon_sym_mod2] = ACTIONS(2279), - [anon_sym_SLASH_SLASH2] = ACTIONS(2279), - [anon_sym_PLUS2] = ACTIONS(2281), - [anon_sym_bit_DASHshl2] = ACTIONS(2279), - [anon_sym_bit_DASHshr2] = ACTIONS(2279), - [anon_sym_bit_DASHand2] = ACTIONS(2279), - [anon_sym_bit_DASHxor2] = ACTIONS(2279), - [anon_sym_bit_DASHor2] = ACTIONS(2279), - [anon_sym_err_GT] = ACTIONS(2281), - [anon_sym_out_GT] = ACTIONS(2281), - [anon_sym_e_GT] = ACTIONS(2281), - [anon_sym_o_GT] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT] = ACTIONS(2281), - [anon_sym_err_GT_GT] = ACTIONS(2279), - [anon_sym_out_GT_GT] = ACTIONS(2279), - [anon_sym_e_GT_GT] = ACTIONS(2279), - [anon_sym_o_GT_GT] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(774)] = { - [aux_sym__repeat_newline] = STATE(1035), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(774), - [anon_sym_in] = ACTIONS(2279), - [sym__newline] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_err_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_GT_PIPE] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_GT2] = ACTIONS(2281), - [anon_sym_DASH2] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_STAR2] = ACTIONS(2281), - [anon_sym_and2] = ACTIONS(2279), - [anon_sym_xor2] = ACTIONS(2279), - [anon_sym_or2] = ACTIONS(2279), - [anon_sym_not_DASHin2] = ACTIONS(2279), - [anon_sym_has2] = ACTIONS(2279), - [anon_sym_not_DASHhas2] = ACTIONS(2279), - [anon_sym_starts_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), - [anon_sym_ends_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), - [anon_sym_EQ_EQ2] = ACTIONS(2279), - [anon_sym_BANG_EQ2] = ACTIONS(2279), - [anon_sym_LT2] = ACTIONS(2281), - [anon_sym_LT_EQ2] = ACTIONS(2279), - [anon_sym_GT_EQ2] = ACTIONS(2279), - [anon_sym_EQ_TILDE2] = ACTIONS(2279), - [anon_sym_BANG_TILDE2] = ACTIONS(2279), - [anon_sym_like2] = ACTIONS(2279), - [anon_sym_not_DASHlike2] = ACTIONS(2279), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2279), - [anon_sym_PLUS_PLUS2] = ACTIONS(2279), - [anon_sym_SLASH2] = ACTIONS(2281), - [anon_sym_mod2] = ACTIONS(2279), - [anon_sym_SLASH_SLASH2] = ACTIONS(2279), - [anon_sym_PLUS2] = ACTIONS(2281), - [anon_sym_bit_DASHshl2] = ACTIONS(2279), - [anon_sym_bit_DASHshr2] = ACTIONS(2279), - [anon_sym_bit_DASHand2] = ACTIONS(2279), - [anon_sym_bit_DASHxor2] = ACTIONS(2279), - [anon_sym_bit_DASHor2] = ACTIONS(2279), - [anon_sym_err_GT] = ACTIONS(2281), - [anon_sym_out_GT] = ACTIONS(2281), - [anon_sym_e_GT] = ACTIONS(2281), - [anon_sym_o_GT] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT] = ACTIONS(2281), - [anon_sym_err_GT_GT] = ACTIONS(2279), - [anon_sym_out_GT_GT] = ACTIONS(2279), - [anon_sym_e_GT_GT] = ACTIONS(2279), - [anon_sym_o_GT_GT] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(775)] = { - [aux_sym__repeat_newline] = STATE(1036), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(775), - [anon_sym_in] = ACTIONS(2279), - [sym__newline] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_err_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_GT_PIPE] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_GT2] = ACTIONS(2281), - [anon_sym_DASH2] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_STAR2] = ACTIONS(2281), - [anon_sym_and2] = ACTIONS(2279), - [anon_sym_xor2] = ACTIONS(2279), - [anon_sym_or2] = ACTIONS(2279), - [anon_sym_not_DASHin2] = ACTIONS(2279), - [anon_sym_has2] = ACTIONS(2279), - [anon_sym_not_DASHhas2] = ACTIONS(2279), - [anon_sym_starts_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), - [anon_sym_ends_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), - [anon_sym_EQ_EQ2] = ACTIONS(2279), - [anon_sym_BANG_EQ2] = ACTIONS(2279), - [anon_sym_LT2] = ACTIONS(2281), - [anon_sym_LT_EQ2] = ACTIONS(2279), - [anon_sym_GT_EQ2] = ACTIONS(2279), - [anon_sym_EQ_TILDE2] = ACTIONS(2279), - [anon_sym_BANG_TILDE2] = ACTIONS(2279), - [anon_sym_like2] = ACTIONS(2279), - [anon_sym_not_DASHlike2] = ACTIONS(2279), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2279), - [anon_sym_PLUS_PLUS2] = ACTIONS(2279), - [anon_sym_SLASH2] = ACTIONS(2281), - [anon_sym_mod2] = ACTIONS(2279), - [anon_sym_SLASH_SLASH2] = ACTIONS(2279), - [anon_sym_PLUS2] = ACTIONS(2281), - [anon_sym_bit_DASHshl2] = ACTIONS(2279), - [anon_sym_bit_DASHshr2] = ACTIONS(2279), - [anon_sym_bit_DASHand2] = ACTIONS(2279), - [anon_sym_bit_DASHxor2] = ACTIONS(2279), - [anon_sym_bit_DASHor2] = ACTIONS(2279), - [anon_sym_err_GT] = ACTIONS(2281), - [anon_sym_out_GT] = ACTIONS(2281), - [anon_sym_e_GT] = ACTIONS(2281), - [anon_sym_o_GT] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT] = ACTIONS(2281), - [anon_sym_err_GT_GT] = ACTIONS(2279), - [anon_sym_out_GT_GT] = ACTIONS(2279), - [anon_sym_e_GT_GT] = ACTIONS(2279), - [anon_sym_o_GT_GT] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(776)] = { - [aux_sym__repeat_newline] = STATE(1037), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(776), - [anon_sym_in] = ACTIONS(2279), - [sym__newline] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_err_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_GT_PIPE] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_GT2] = ACTIONS(2281), - [anon_sym_DASH2] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_STAR2] = ACTIONS(2281), - [anon_sym_and2] = ACTIONS(2279), - [anon_sym_xor2] = ACTIONS(2279), - [anon_sym_or2] = ACTIONS(2279), - [anon_sym_not_DASHin2] = ACTIONS(2279), - [anon_sym_has2] = ACTIONS(2279), - [anon_sym_not_DASHhas2] = ACTIONS(2279), - [anon_sym_starts_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), - [anon_sym_ends_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), - [anon_sym_EQ_EQ2] = ACTIONS(2279), - [anon_sym_BANG_EQ2] = ACTIONS(2279), - [anon_sym_LT2] = ACTIONS(2281), - [anon_sym_LT_EQ2] = ACTIONS(2279), - [anon_sym_GT_EQ2] = ACTIONS(2279), - [anon_sym_EQ_TILDE2] = ACTIONS(2279), - [anon_sym_BANG_TILDE2] = ACTIONS(2279), - [anon_sym_like2] = ACTIONS(2279), - [anon_sym_not_DASHlike2] = ACTIONS(2279), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2279), - [anon_sym_PLUS_PLUS2] = ACTIONS(2279), - [anon_sym_SLASH2] = ACTIONS(2281), - [anon_sym_mod2] = ACTIONS(2279), - [anon_sym_SLASH_SLASH2] = ACTIONS(2279), - [anon_sym_PLUS2] = ACTIONS(2281), - [anon_sym_bit_DASHshl2] = ACTIONS(2279), - [anon_sym_bit_DASHshr2] = ACTIONS(2279), - [anon_sym_bit_DASHand2] = ACTIONS(2279), - [anon_sym_bit_DASHxor2] = ACTIONS(2279), - [anon_sym_bit_DASHor2] = ACTIONS(2279), - [anon_sym_err_GT] = ACTIONS(2281), - [anon_sym_out_GT] = ACTIONS(2281), - [anon_sym_e_GT] = ACTIONS(2281), - [anon_sym_o_GT] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT] = ACTIONS(2281), - [anon_sym_err_GT_GT] = ACTIONS(2279), - [anon_sym_out_GT_GT] = ACTIONS(2279), - [anon_sym_e_GT_GT] = ACTIONS(2279), - [anon_sym_o_GT_GT] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(777)] = { - [aux_sym__repeat_newline] = STATE(1049), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(777), - [anon_sym_in] = ACTIONS(2279), - [sym__newline] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_err_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_GT_PIPE] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_GT2] = ACTIONS(2281), - [anon_sym_DASH2] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_STAR2] = ACTIONS(2281), - [anon_sym_and2] = ACTIONS(2279), - [anon_sym_xor2] = ACTIONS(2279), - [anon_sym_or2] = ACTIONS(2279), - [anon_sym_not_DASHin2] = ACTIONS(2279), - [anon_sym_has2] = ACTIONS(2279), - [anon_sym_not_DASHhas2] = ACTIONS(2279), - [anon_sym_starts_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), - [anon_sym_ends_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), - [anon_sym_EQ_EQ2] = ACTIONS(2279), - [anon_sym_BANG_EQ2] = ACTIONS(2279), - [anon_sym_LT2] = ACTIONS(2281), - [anon_sym_LT_EQ2] = ACTIONS(2279), - [anon_sym_GT_EQ2] = ACTIONS(2279), - [anon_sym_EQ_TILDE2] = ACTIONS(2279), - [anon_sym_BANG_TILDE2] = ACTIONS(2279), - [anon_sym_like2] = ACTIONS(2279), - [anon_sym_not_DASHlike2] = ACTIONS(2279), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2279), - [anon_sym_PLUS_PLUS2] = ACTIONS(2279), - [anon_sym_SLASH2] = ACTIONS(2281), - [anon_sym_mod2] = ACTIONS(2279), - [anon_sym_SLASH_SLASH2] = ACTIONS(2279), - [anon_sym_PLUS2] = ACTIONS(2281), - [anon_sym_bit_DASHshl2] = ACTIONS(2279), - [anon_sym_bit_DASHshr2] = ACTIONS(2279), - [anon_sym_bit_DASHand2] = ACTIONS(2279), - [anon_sym_bit_DASHxor2] = ACTIONS(2279), - [anon_sym_bit_DASHor2] = ACTIONS(2279), - [anon_sym_err_GT] = ACTIONS(2281), - [anon_sym_out_GT] = ACTIONS(2281), - [anon_sym_e_GT] = ACTIONS(2281), - [anon_sym_o_GT] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT] = ACTIONS(2281), - [anon_sym_err_GT_GT] = ACTIONS(2279), - [anon_sym_out_GT_GT] = ACTIONS(2279), - [anon_sym_e_GT_GT] = ACTIONS(2279), - [anon_sym_o_GT_GT] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(778)] = { - [aux_sym__repeat_newline] = STATE(1065), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(778), - [anon_sym_in] = ACTIONS(2279), - [sym__newline] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_err_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_GT_PIPE] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_GT2] = ACTIONS(2281), - [anon_sym_DASH2] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_STAR2] = ACTIONS(2281), - [anon_sym_and2] = ACTIONS(2279), - [anon_sym_xor2] = ACTIONS(2279), - [anon_sym_or2] = ACTIONS(2279), - [anon_sym_not_DASHin2] = ACTIONS(2279), - [anon_sym_has2] = ACTIONS(2279), - [anon_sym_not_DASHhas2] = ACTIONS(2279), - [anon_sym_starts_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), - [anon_sym_ends_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), - [anon_sym_EQ_EQ2] = ACTIONS(2279), - [anon_sym_BANG_EQ2] = ACTIONS(2279), - [anon_sym_LT2] = ACTIONS(2281), - [anon_sym_LT_EQ2] = ACTIONS(2279), - [anon_sym_GT_EQ2] = ACTIONS(2279), - [anon_sym_EQ_TILDE2] = ACTIONS(2279), - [anon_sym_BANG_TILDE2] = ACTIONS(2279), - [anon_sym_like2] = ACTIONS(2279), - [anon_sym_not_DASHlike2] = ACTIONS(2279), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2279), - [anon_sym_PLUS_PLUS2] = ACTIONS(2279), - [anon_sym_SLASH2] = ACTIONS(2281), - [anon_sym_mod2] = ACTIONS(2279), - [anon_sym_SLASH_SLASH2] = ACTIONS(2279), - [anon_sym_PLUS2] = ACTIONS(2281), - [anon_sym_bit_DASHshl2] = ACTIONS(2279), - [anon_sym_bit_DASHshr2] = ACTIONS(2279), - [anon_sym_bit_DASHand2] = ACTIONS(2279), - [anon_sym_bit_DASHxor2] = ACTIONS(2279), - [anon_sym_bit_DASHor2] = ACTIONS(2279), - [anon_sym_err_GT] = ACTIONS(2281), - [anon_sym_out_GT] = ACTIONS(2281), - [anon_sym_e_GT] = ACTIONS(2281), - [anon_sym_o_GT] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT] = ACTIONS(2281), - [anon_sym_err_GT_GT] = ACTIONS(2279), - [anon_sym_out_GT_GT] = ACTIONS(2279), - [anon_sym_e_GT_GT] = ACTIONS(2279), - [anon_sym_o_GT_GT] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(779)] = { - [aux_sym__repeat_newline] = STATE(1075), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(779), - [anon_sym_in] = ACTIONS(2289), - [sym__newline] = ACTIONS(2289), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_err_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_GT_PIPE] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), - [anon_sym_RPAREN] = ACTIONS(2289), - [anon_sym_GT2] = ACTIONS(2291), - [anon_sym_DASH2] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_STAR2] = ACTIONS(2291), - [anon_sym_and2] = ACTIONS(2289), - [anon_sym_xor2] = ACTIONS(2289), - [anon_sym_or2] = ACTIONS(2289), - [anon_sym_not_DASHin2] = ACTIONS(2289), - [anon_sym_has2] = ACTIONS(2289), - [anon_sym_not_DASHhas2] = ACTIONS(2289), - [anon_sym_starts_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), - [anon_sym_ends_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), - [anon_sym_EQ_EQ2] = ACTIONS(2289), - [anon_sym_BANG_EQ2] = ACTIONS(2289), - [anon_sym_LT2] = ACTIONS(2291), - [anon_sym_LT_EQ2] = ACTIONS(2289), - [anon_sym_GT_EQ2] = ACTIONS(2289), - [anon_sym_EQ_TILDE2] = ACTIONS(2289), - [anon_sym_BANG_TILDE2] = ACTIONS(2289), - [anon_sym_like2] = ACTIONS(2289), - [anon_sym_not_DASHlike2] = ACTIONS(2289), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2289), - [anon_sym_PLUS_PLUS2] = ACTIONS(2289), - [anon_sym_SLASH2] = ACTIONS(2291), - [anon_sym_mod2] = ACTIONS(2289), - [anon_sym_SLASH_SLASH2] = ACTIONS(2289), - [anon_sym_PLUS2] = ACTIONS(2291), - [anon_sym_bit_DASHshl2] = ACTIONS(2289), - [anon_sym_bit_DASHshr2] = ACTIONS(2289), - [anon_sym_bit_DASHand2] = ACTIONS(2289), - [anon_sym_bit_DASHxor2] = ACTIONS(2289), - [anon_sym_bit_DASHor2] = ACTIONS(2289), - [anon_sym_err_GT] = ACTIONS(2291), - [anon_sym_out_GT] = ACTIONS(2291), - [anon_sym_e_GT] = ACTIONS(2291), - [anon_sym_o_GT] = ACTIONS(2291), - [anon_sym_err_PLUSout_GT] = ACTIONS(2291), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), - [anon_sym_o_PLUSe_GT] = ACTIONS(2291), - [anon_sym_e_PLUSo_GT] = ACTIONS(2291), - [anon_sym_err_GT_GT] = ACTIONS(2289), - [anon_sym_out_GT_GT] = ACTIONS(2289), - [anon_sym_e_GT_GT] = ACTIONS(2289), - [anon_sym_o_GT_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(780)] = { - [aux_sym__repeat_newline] = STATE(1077), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(780), - [anon_sym_in] = ACTIONS(2289), - [sym__newline] = ACTIONS(2289), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_err_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_GT_PIPE] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), - [anon_sym_RPAREN] = ACTIONS(2289), - [anon_sym_GT2] = ACTIONS(2291), - [anon_sym_DASH2] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_STAR2] = ACTIONS(2291), - [anon_sym_and2] = ACTIONS(2289), - [anon_sym_xor2] = ACTIONS(2289), - [anon_sym_or2] = ACTIONS(2289), - [anon_sym_not_DASHin2] = ACTIONS(2289), - [anon_sym_has2] = ACTIONS(2289), - [anon_sym_not_DASHhas2] = ACTIONS(2289), - [anon_sym_starts_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), - [anon_sym_ends_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), - [anon_sym_EQ_EQ2] = ACTIONS(2289), - [anon_sym_BANG_EQ2] = ACTIONS(2289), - [anon_sym_LT2] = ACTIONS(2291), - [anon_sym_LT_EQ2] = ACTIONS(2289), - [anon_sym_GT_EQ2] = ACTIONS(2289), - [anon_sym_EQ_TILDE2] = ACTIONS(2289), - [anon_sym_BANG_TILDE2] = ACTIONS(2289), - [anon_sym_like2] = ACTIONS(2289), - [anon_sym_not_DASHlike2] = ACTIONS(2289), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2289), - [anon_sym_PLUS_PLUS2] = ACTIONS(2289), - [anon_sym_SLASH2] = ACTIONS(2291), - [anon_sym_mod2] = ACTIONS(2289), - [anon_sym_SLASH_SLASH2] = ACTIONS(2289), - [anon_sym_PLUS2] = ACTIONS(2291), - [anon_sym_bit_DASHshl2] = ACTIONS(2289), - [anon_sym_bit_DASHshr2] = ACTIONS(2289), - [anon_sym_bit_DASHand2] = ACTIONS(2289), - [anon_sym_bit_DASHxor2] = ACTIONS(2289), - [anon_sym_bit_DASHor2] = ACTIONS(2289), - [anon_sym_err_GT] = ACTIONS(2291), - [anon_sym_out_GT] = ACTIONS(2291), - [anon_sym_e_GT] = ACTIONS(2291), - [anon_sym_o_GT] = ACTIONS(2291), - [anon_sym_err_PLUSout_GT] = ACTIONS(2291), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), - [anon_sym_o_PLUSe_GT] = ACTIONS(2291), - [anon_sym_e_PLUSo_GT] = ACTIONS(2291), - [anon_sym_err_GT_GT] = ACTIONS(2289), - [anon_sym_out_GT_GT] = ACTIONS(2289), - [anon_sym_e_GT_GT] = ACTIONS(2289), - [anon_sym_o_GT_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), + [STATE(749)] = { + [sym_cmd_identifier] = STATE(4340), + [sym_expr_parenthesized] = STATE(5053), + [sym__spread_parenthesized] = STATE(4675), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(5053), + [sym_val_number] = STATE(5053), + [sym__val_number_decimal] = STATE(1955), + [sym__val_number] = STATE(693), + [sym_val_string] = STATE(5053), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(5053), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym__spread_record] = STATE(4675), + [sym_record_entry] = STATE(4756), + [sym__record_key] = STATE(5144), + [sym_comment] = STATE(749), + [aux_sym_record_body_repeat1] = STATE(749), + [anon_sym_export] = ACTIONS(2275), + [anon_sym_alias] = ACTIONS(2278), + [anon_sym_let] = ACTIONS(2278), + [anon_sym_mut] = ACTIONS(2278), + [anon_sym_const] = ACTIONS(2278), + [aux_sym_cmd_identifier_token1] = ACTIONS(2281), + [anon_sym_def] = ACTIONS(2278), + [anon_sym_use] = ACTIONS(2278), + [anon_sym_export_DASHenv] = ACTIONS(2278), + [anon_sym_extern] = ACTIONS(2278), + [anon_sym_module] = ACTIONS(2278), + [anon_sym_for] = ACTIONS(2278), + [anon_sym_loop] = ACTIONS(2278), + [anon_sym_while] = ACTIONS(2278), + [anon_sym_if] = ACTIONS(2278), + [anon_sym_else] = ACTIONS(2278), + [anon_sym_try] = ACTIONS(2278), + [anon_sym_catch] = ACTIONS(2278), + [anon_sym_match] = ACTIONS(2278), + [anon_sym_in] = ACTIONS(2275), + [anon_sym_true] = ACTIONS(2284), + [anon_sym_false] = ACTIONS(2284), + [anon_sym_null] = ACTIONS(2284), + [aux_sym_cmd_identifier_token3] = ACTIONS(2287), + [aux_sym_cmd_identifier_token4] = ACTIONS(2287), + [aux_sym_cmd_identifier_token5] = ACTIONS(2287), + [anon_sym_LPAREN] = ACTIONS(2290), + [anon_sym_DOLLAR] = ACTIONS(2293), + [anon_sym_DASH2] = ACTIONS(2296), + [anon_sym_PLUS2] = ACTIONS(2296), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2299), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2302), + [aux_sym__val_number_decimal_token1] = ACTIONS(2305), + [aux_sym__val_number_decimal_token2] = ACTIONS(2308), + [aux_sym__val_number_decimal_token3] = ACTIONS(2311), + [aux_sym__val_number_decimal_token4] = ACTIONS(2311), + [aux_sym__val_number_token1] = ACTIONS(2314), + [aux_sym__val_number_token2] = ACTIONS(2314), + [aux_sym__val_number_token3] = ACTIONS(2314), + [anon_sym_DQUOTE] = ACTIONS(2317), + [anon_sym_SQUOTE] = ACTIONS(2320), + [anon_sym_BQUOTE] = ACTIONS(2323), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2326), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2329), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2332), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2335), }, - [STATE(781)] = { - [aux_sym__repeat_newline] = STATE(1079), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(781), - [anon_sym_in] = ACTIONS(2289), - [sym__newline] = ACTIONS(2289), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_err_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_GT_PIPE] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), - [anon_sym_RPAREN] = ACTIONS(2289), - [anon_sym_GT2] = ACTIONS(2291), - [anon_sym_DASH2] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_STAR2] = ACTIONS(2291), - [anon_sym_and2] = ACTIONS(2289), - [anon_sym_xor2] = ACTIONS(2289), - [anon_sym_or2] = ACTIONS(2289), - [anon_sym_not_DASHin2] = ACTIONS(2289), - [anon_sym_has2] = ACTIONS(2289), - [anon_sym_not_DASHhas2] = ACTIONS(2289), - [anon_sym_starts_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), - [anon_sym_ends_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), - [anon_sym_EQ_EQ2] = ACTIONS(2289), - [anon_sym_BANG_EQ2] = ACTIONS(2289), - [anon_sym_LT2] = ACTIONS(2291), - [anon_sym_LT_EQ2] = ACTIONS(2289), - [anon_sym_GT_EQ2] = ACTIONS(2289), - [anon_sym_EQ_TILDE2] = ACTIONS(2289), - [anon_sym_BANG_TILDE2] = ACTIONS(2289), - [anon_sym_like2] = ACTIONS(2289), - [anon_sym_not_DASHlike2] = ACTIONS(2289), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2289), - [anon_sym_PLUS_PLUS2] = ACTIONS(2289), - [anon_sym_SLASH2] = ACTIONS(2291), - [anon_sym_mod2] = ACTIONS(2289), - [anon_sym_SLASH_SLASH2] = ACTIONS(2289), - [anon_sym_PLUS2] = ACTIONS(2291), - [anon_sym_bit_DASHshl2] = ACTIONS(2289), - [anon_sym_bit_DASHshr2] = ACTIONS(2289), - [anon_sym_bit_DASHand2] = ACTIONS(2289), - [anon_sym_bit_DASHxor2] = ACTIONS(2289), - [anon_sym_bit_DASHor2] = ACTIONS(2289), - [anon_sym_err_GT] = ACTIONS(2291), - [anon_sym_out_GT] = ACTIONS(2291), - [anon_sym_e_GT] = ACTIONS(2291), - [anon_sym_o_GT] = ACTIONS(2291), - [anon_sym_err_PLUSout_GT] = ACTIONS(2291), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), - [anon_sym_o_PLUSe_GT] = ACTIONS(2291), - [anon_sym_e_PLUSo_GT] = ACTIONS(2291), - [anon_sym_err_GT_GT] = ACTIONS(2289), - [anon_sym_out_GT_GT] = ACTIONS(2289), - [anon_sym_e_GT_GT] = ACTIONS(2289), - [anon_sym_o_GT_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), + [STATE(750)] = { + [sym_comment] = STATE(750), + [anon_sym_in] = ACTIONS(1750), + [sym__newline] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1750), + [anon_sym_err_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_GT_PIPE] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1750), + [anon_sym_RPAREN] = ACTIONS(1750), + [anon_sym_GT2] = ACTIONS(1752), + [anon_sym_DASH2] = ACTIONS(1750), + [anon_sym_RBRACE] = ACTIONS(1750), + [anon_sym_STAR2] = ACTIONS(1752), + [anon_sym_and2] = ACTIONS(1750), + [anon_sym_xor2] = ACTIONS(1750), + [anon_sym_or2] = ACTIONS(1750), + [anon_sym_not_DASHin2] = ACTIONS(1750), + [anon_sym_has2] = ACTIONS(1750), + [anon_sym_not_DASHhas2] = ACTIONS(1750), + [anon_sym_starts_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1750), + [anon_sym_ends_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1750), + [anon_sym_EQ_EQ2] = ACTIONS(1750), + [anon_sym_BANG_EQ2] = ACTIONS(1750), + [anon_sym_LT2] = ACTIONS(1752), + [anon_sym_LT_EQ2] = ACTIONS(1750), + [anon_sym_GT_EQ2] = ACTIONS(1750), + [anon_sym_EQ_TILDE2] = ACTIONS(1750), + [anon_sym_BANG_TILDE2] = ACTIONS(1750), + [anon_sym_like2] = ACTIONS(1750), + [anon_sym_not_DASHlike2] = ACTIONS(1750), + [anon_sym_LPAREN2] = ACTIONS(1750), + [anon_sym_STAR_STAR2] = ACTIONS(1750), + [anon_sym_PLUS_PLUS2] = ACTIONS(1750), + [anon_sym_SLASH2] = ACTIONS(1752), + [anon_sym_mod2] = ACTIONS(1750), + [anon_sym_SLASH_SLASH2] = ACTIONS(1750), + [anon_sym_PLUS2] = ACTIONS(1752), + [anon_sym_bit_DASHshl2] = ACTIONS(1750), + [anon_sym_bit_DASHshr2] = ACTIONS(1750), + [anon_sym_bit_DASHand2] = ACTIONS(1750), + [anon_sym_bit_DASHxor2] = ACTIONS(1750), + [anon_sym_bit_DASHor2] = ACTIONS(1750), + [aux_sym__immediate_decimal_token5] = ACTIONS(2164), + [anon_sym_err_GT] = ACTIONS(1752), + [anon_sym_out_GT] = ACTIONS(1752), + [anon_sym_e_GT] = ACTIONS(1752), + [anon_sym_o_GT] = ACTIONS(1752), + [anon_sym_err_PLUSout_GT] = ACTIONS(1752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1752), + [anon_sym_o_PLUSe_GT] = ACTIONS(1752), + [anon_sym_e_PLUSo_GT] = ACTIONS(1752), + [anon_sym_err_GT_GT] = ACTIONS(1750), + [anon_sym_out_GT_GT] = ACTIONS(1750), + [anon_sym_e_GT_GT] = ACTIONS(1750), + [anon_sym_o_GT_GT] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1750), + [sym__unquoted_pattern] = ACTIONS(1752), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(782)] = { - [aux_sym__repeat_newline] = STATE(1082), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(782), - [anon_sym_in] = ACTIONS(2289), - [sym__newline] = ACTIONS(2289), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_err_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_GT_PIPE] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), - [anon_sym_RPAREN] = ACTIONS(2289), - [anon_sym_GT2] = ACTIONS(2291), - [anon_sym_DASH2] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_STAR2] = ACTIONS(2291), - [anon_sym_and2] = ACTIONS(2289), - [anon_sym_xor2] = ACTIONS(2289), - [anon_sym_or2] = ACTIONS(2289), - [anon_sym_not_DASHin2] = ACTIONS(2289), - [anon_sym_has2] = ACTIONS(2289), - [anon_sym_not_DASHhas2] = ACTIONS(2289), - [anon_sym_starts_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), - [anon_sym_ends_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), - [anon_sym_EQ_EQ2] = ACTIONS(2289), - [anon_sym_BANG_EQ2] = ACTIONS(2289), - [anon_sym_LT2] = ACTIONS(2291), - [anon_sym_LT_EQ2] = ACTIONS(2289), - [anon_sym_GT_EQ2] = ACTIONS(2289), - [anon_sym_EQ_TILDE2] = ACTIONS(2289), - [anon_sym_BANG_TILDE2] = ACTIONS(2289), - [anon_sym_like2] = ACTIONS(2289), - [anon_sym_not_DASHlike2] = ACTIONS(2289), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2289), - [anon_sym_PLUS_PLUS2] = ACTIONS(2289), - [anon_sym_SLASH2] = ACTIONS(2291), - [anon_sym_mod2] = ACTIONS(2289), - [anon_sym_SLASH_SLASH2] = ACTIONS(2289), - [anon_sym_PLUS2] = ACTIONS(2291), - [anon_sym_bit_DASHshl2] = ACTIONS(2289), - [anon_sym_bit_DASHshr2] = ACTIONS(2289), - [anon_sym_bit_DASHand2] = ACTIONS(2289), - [anon_sym_bit_DASHxor2] = ACTIONS(2289), - [anon_sym_bit_DASHor2] = ACTIONS(2289), - [anon_sym_err_GT] = ACTIONS(2291), - [anon_sym_out_GT] = ACTIONS(2291), - [anon_sym_e_GT] = ACTIONS(2291), - [anon_sym_o_GT] = ACTIONS(2291), - [anon_sym_err_PLUSout_GT] = ACTIONS(2291), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), - [anon_sym_o_PLUSe_GT] = ACTIONS(2291), - [anon_sym_e_PLUSo_GT] = ACTIONS(2291), - [anon_sym_err_GT_GT] = ACTIONS(2289), - [anon_sym_out_GT_GT] = ACTIONS(2289), - [anon_sym_e_GT_GT] = ACTIONS(2289), - [anon_sym_o_GT_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), + [STATE(751)] = { + [sym_comment] = STATE(751), + [anon_sym_in] = ACTIONS(1816), + [sym__newline] = ACTIONS(1816), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_PIPE] = ACTIONS(1816), + [anon_sym_err_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_GT_PIPE] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_GT2] = ACTIONS(1818), + [anon_sym_DASH2] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_STAR2] = ACTIONS(1818), + [anon_sym_and2] = ACTIONS(1816), + [anon_sym_xor2] = ACTIONS(1816), + [anon_sym_or2] = ACTIONS(1816), + [anon_sym_not_DASHin2] = ACTIONS(1816), + [anon_sym_has2] = ACTIONS(1816), + [anon_sym_not_DASHhas2] = ACTIONS(1816), + [anon_sym_starts_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1816), + [anon_sym_ends_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1816), + [anon_sym_EQ_EQ2] = ACTIONS(1816), + [anon_sym_BANG_EQ2] = ACTIONS(1816), + [anon_sym_LT2] = ACTIONS(1818), + [anon_sym_LT_EQ2] = ACTIONS(1816), + [anon_sym_GT_EQ2] = ACTIONS(1816), + [anon_sym_EQ_TILDE2] = ACTIONS(1816), + [anon_sym_BANG_TILDE2] = ACTIONS(1816), + [anon_sym_like2] = ACTIONS(1816), + [anon_sym_not_DASHlike2] = ACTIONS(1816), + [anon_sym_LPAREN2] = ACTIONS(1816), + [anon_sym_STAR_STAR2] = ACTIONS(1816), + [anon_sym_PLUS_PLUS2] = ACTIONS(1816), + [anon_sym_SLASH2] = ACTIONS(1818), + [anon_sym_mod2] = ACTIONS(1816), + [anon_sym_SLASH_SLASH2] = ACTIONS(1816), + [anon_sym_PLUS2] = ACTIONS(1818), + [anon_sym_bit_DASHshl2] = ACTIONS(1816), + [anon_sym_bit_DASHshr2] = ACTIONS(1816), + [anon_sym_bit_DASHand2] = ACTIONS(1816), + [anon_sym_bit_DASHxor2] = ACTIONS(1816), + [anon_sym_bit_DASHor2] = ACTIONS(1816), + [aux_sym__immediate_decimal_token5] = ACTIONS(2338), + [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(1816), + [anon_sym_out_GT_GT] = ACTIONS(1816), + [anon_sym_e_GT_GT] = ACTIONS(1816), + [anon_sym_o_GT_GT] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1816), + [sym__unquoted_pattern] = ACTIONS(1818), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(783)] = { - [aux_sym__repeat_newline] = STATE(1085), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(783), - [anon_sym_in] = ACTIONS(2289), - [sym__newline] = ACTIONS(2289), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_err_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_GT_PIPE] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), - [anon_sym_RPAREN] = ACTIONS(2289), - [anon_sym_GT2] = ACTIONS(2291), - [anon_sym_DASH2] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_STAR2] = ACTIONS(2291), - [anon_sym_and2] = ACTIONS(2289), - [anon_sym_xor2] = ACTIONS(2289), - [anon_sym_or2] = ACTIONS(2289), - [anon_sym_not_DASHin2] = ACTIONS(2289), - [anon_sym_has2] = ACTIONS(2289), - [anon_sym_not_DASHhas2] = ACTIONS(2289), - [anon_sym_starts_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), - [anon_sym_ends_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), - [anon_sym_EQ_EQ2] = ACTIONS(2289), - [anon_sym_BANG_EQ2] = ACTIONS(2289), - [anon_sym_LT2] = ACTIONS(2291), - [anon_sym_LT_EQ2] = ACTIONS(2289), - [anon_sym_GT_EQ2] = ACTIONS(2289), - [anon_sym_EQ_TILDE2] = ACTIONS(2289), - [anon_sym_BANG_TILDE2] = ACTIONS(2289), - [anon_sym_like2] = ACTIONS(2289), - [anon_sym_not_DASHlike2] = ACTIONS(2289), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2289), - [anon_sym_PLUS_PLUS2] = ACTIONS(2289), - [anon_sym_SLASH2] = ACTIONS(2291), - [anon_sym_mod2] = ACTIONS(2289), - [anon_sym_SLASH_SLASH2] = ACTIONS(2289), - [anon_sym_PLUS2] = ACTIONS(2291), - [anon_sym_bit_DASHshl2] = ACTIONS(2289), - [anon_sym_bit_DASHshr2] = ACTIONS(2289), - [anon_sym_bit_DASHand2] = ACTIONS(2289), - [anon_sym_bit_DASHxor2] = ACTIONS(2289), - [anon_sym_bit_DASHor2] = ACTIONS(2289), - [anon_sym_err_GT] = ACTIONS(2291), - [anon_sym_out_GT] = ACTIONS(2291), - [anon_sym_e_GT] = ACTIONS(2291), - [anon_sym_o_GT] = ACTIONS(2291), - [anon_sym_err_PLUSout_GT] = ACTIONS(2291), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), - [anon_sym_o_PLUSe_GT] = ACTIONS(2291), - [anon_sym_e_PLUSo_GT] = ACTIONS(2291), - [anon_sym_err_GT_GT] = ACTIONS(2289), - [anon_sym_out_GT_GT] = ACTIONS(2289), - [anon_sym_e_GT_GT] = ACTIONS(2289), - [anon_sym_o_GT_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), + [STATE(752)] = { + [aux_sym__repeat_newline] = STATE(988), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(752), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(784)] = { - [aux_sym__repeat_newline] = STATE(1095), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(784), - [anon_sym_in] = ACTIONS(2289), - [sym__newline] = ACTIONS(2289), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_err_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_GT_PIPE] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), - [anon_sym_RPAREN] = ACTIONS(2289), - [anon_sym_GT2] = ACTIONS(2291), - [anon_sym_DASH2] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_STAR2] = ACTIONS(2291), - [anon_sym_and2] = ACTIONS(2289), - [anon_sym_xor2] = ACTIONS(2289), - [anon_sym_or2] = ACTIONS(2289), - [anon_sym_not_DASHin2] = ACTIONS(2289), - [anon_sym_has2] = ACTIONS(2289), - [anon_sym_not_DASHhas2] = ACTIONS(2289), - [anon_sym_starts_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), - [anon_sym_ends_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), - [anon_sym_EQ_EQ2] = ACTIONS(2289), - [anon_sym_BANG_EQ2] = ACTIONS(2289), - [anon_sym_LT2] = ACTIONS(2291), - [anon_sym_LT_EQ2] = ACTIONS(2289), - [anon_sym_GT_EQ2] = ACTIONS(2289), - [anon_sym_EQ_TILDE2] = ACTIONS(2289), - [anon_sym_BANG_TILDE2] = ACTIONS(2289), - [anon_sym_like2] = ACTIONS(2289), - [anon_sym_not_DASHlike2] = ACTIONS(2289), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2289), - [anon_sym_PLUS_PLUS2] = ACTIONS(2289), - [anon_sym_SLASH2] = ACTIONS(2291), - [anon_sym_mod2] = ACTIONS(2289), - [anon_sym_SLASH_SLASH2] = ACTIONS(2289), - [anon_sym_PLUS2] = ACTIONS(2291), - [anon_sym_bit_DASHshl2] = ACTIONS(2289), - [anon_sym_bit_DASHshr2] = ACTIONS(2289), - [anon_sym_bit_DASHand2] = ACTIONS(2289), - [anon_sym_bit_DASHxor2] = ACTIONS(2289), - [anon_sym_bit_DASHor2] = ACTIONS(2289), - [anon_sym_err_GT] = ACTIONS(2291), - [anon_sym_out_GT] = ACTIONS(2291), - [anon_sym_e_GT] = ACTIONS(2291), - [anon_sym_o_GT] = ACTIONS(2291), - [anon_sym_err_PLUSout_GT] = ACTIONS(2291), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), - [anon_sym_o_PLUSe_GT] = ACTIONS(2291), - [anon_sym_e_PLUSo_GT] = ACTIONS(2291), - [anon_sym_err_GT_GT] = ACTIONS(2289), - [anon_sym_out_GT_GT] = ACTIONS(2289), - [anon_sym_e_GT_GT] = ACTIONS(2289), - [anon_sym_o_GT_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), - [anon_sym_POUND] = ACTIONS(3), + [STATE(753)] = { + [aux_sym__repeat_newline] = STATE(3433), + [aux_sym__pipe_separator] = STATE(753), + [sym_comment] = STATE(753), + [anon_sym_export] = ACTIONS(2344), + [anon_sym_alias] = ACTIONS(2346), + [anon_sym_let] = ACTIONS(2346), + [anon_sym_mut] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [aux_sym_cmd_identifier_token1] = ACTIONS(2344), + [anon_sym_def] = ACTIONS(2346), + [anon_sym_use] = ACTIONS(2346), + [anon_sym_export_DASHenv] = ACTIONS(2346), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym_module] = ACTIONS(2346), + [anon_sym_for] = ACTIONS(2346), + [anon_sym_loop] = ACTIONS(2346), + [anon_sym_while] = ACTIONS(2346), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_else] = ACTIONS(2346), + [anon_sym_try] = ACTIONS(2346), + [anon_sym_catch] = ACTIONS(2346), + [anon_sym_match] = ACTIONS(2346), + [anon_sym_in] = ACTIONS(2344), + [anon_sym_true] = ACTIONS(2346), + [anon_sym_false] = ACTIONS(2346), + [anon_sym_null] = ACTIONS(2346), + [aux_sym_cmd_identifier_token3] = ACTIONS(2346), + [aux_sym_cmd_identifier_token4] = ACTIONS(2346), + [aux_sym_cmd_identifier_token5] = ACTIONS(2346), + [sym__newline] = ACTIONS(2348), + [anon_sym_PIPE] = ACTIONS(2351), + [anon_sym_err_GT_PIPE] = ACTIONS(2351), + [anon_sym_out_GT_PIPE] = ACTIONS(2351), + [anon_sym_e_GT_PIPE] = ACTIONS(2351), + [anon_sym_o_GT_PIPE] = ACTIONS(2351), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2351), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2351), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2351), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2351), + [anon_sym_LBRACK] = ACTIONS(2346), + [anon_sym_LPAREN] = ACTIONS(2346), + [anon_sym_DOLLAR] = ACTIONS(2344), + [anon_sym_DASH2] = ACTIONS(2344), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_DOT_DOT] = ACTIONS(2344), + [anon_sym_where] = ACTIONS(2346), + [aux_sym_expr_unary_token1] = ACTIONS(2346), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2346), + [anon_sym_DOT_DOT_LT] = ACTIONS(2346), + [aux_sym__val_number_decimal_token1] = ACTIONS(2344), + [aux_sym__val_number_decimal_token2] = ACTIONS(2346), + [aux_sym__val_number_decimal_token3] = ACTIONS(2346), + [aux_sym__val_number_decimal_token4] = ACTIONS(2346), + [aux_sym__val_number_token1] = ACTIONS(2346), + [aux_sym__val_number_token2] = ACTIONS(2346), + [aux_sym__val_number_token3] = ACTIONS(2346), + [anon_sym_0b] = ACTIONS(2344), + [anon_sym_0o] = ACTIONS(2344), + [anon_sym_0x] = ACTIONS(2344), + [sym_val_date] = ACTIONS(2346), + [anon_sym_DQUOTE] = ACTIONS(2346), + [anon_sym_SQUOTE] = ACTIONS(2346), + [anon_sym_BQUOTE] = ACTIONS(2346), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2346), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2346), + [anon_sym_CARET] = ACTIONS(2346), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2346), }, - [STATE(785)] = { - [sym_expr_unary] = STATE(1282), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1282), - [sym__expr_binary_expression] = STATE(1680), - [sym_expr_parenthesized] = STATE(925), - [sym_val_range] = STATE(1282), - [sym__val_range] = STATE(4556), - [sym__value] = STATE(1282), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(1504), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(1420), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_unquoted] = STATE(996), - [sym__unquoted_with_expr] = STATE(1262), - [sym__unquoted_anonymous_prefix] = STATE(4556), - [sym_comment] = STATE(785), - [anon_sym_true] = ACTIONS(2293), - [anon_sym_false] = ACTIONS(2293), - [anon_sym_null] = ACTIONS(2295), - [aux_sym_cmd_identifier_token3] = ACTIONS(2297), - [aux_sym_cmd_identifier_token4] = ACTIONS(2297), - [aux_sym_cmd_identifier_token5] = ACTIONS(2297), + [STATE(754)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1678), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1491), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1036), + [sym__unquoted_with_expr] = STATE(1280), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(754), + [anon_sym_true] = ACTIONS(2354), + [anon_sym_false] = ACTIONS(2354), + [anon_sym_null] = ACTIONS(2356), + [aux_sym_cmd_identifier_token3] = ACTIONS(2358), + [aux_sym_cmd_identifier_token4] = ACTIONS(2358), + [aux_sym_cmd_identifier_token5] = ACTIONS(2358), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2299), + [anon_sym_DOT_DOT] = ACTIONS(2360), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2301), - [anon_sym_DOT_DOT_LT] = ACTIONS(2301), - [aux_sym__val_number_decimal_token1] = ACTIONS(2303), - [aux_sym__val_number_decimal_token2] = ACTIONS(2305), - [aux_sym__val_number_decimal_token3] = ACTIONS(2307), - [aux_sym__val_number_decimal_token4] = ACTIONS(2307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2364), + [aux_sym__val_number_decimal_token2] = ACTIONS(2366), + [aux_sym__val_number_decimal_token3] = ACTIONS(2368), + [aux_sym__val_number_decimal_token4] = ACTIONS(2368), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2309), + [sym_val_date] = ACTIONS(2370), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2190), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(786)] = { - [sym_expr_unary] = STATE(1282), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1282), - [sym__expr_binary_expression] = STATE(1682), - [sym_expr_parenthesized] = STATE(925), - [sym_val_range] = STATE(1282), - [sym__val_range] = STATE(4556), - [sym__value] = STATE(1282), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(1504), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(1420), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_unquoted] = STATE(999), - [sym__unquoted_with_expr] = STATE(1286), - [sym__unquoted_anonymous_prefix] = STATE(4556), - [sym_comment] = STATE(786), - [anon_sym_true] = ACTIONS(2293), - [anon_sym_false] = ACTIONS(2293), - [anon_sym_null] = ACTIONS(2295), - [aux_sym_cmd_identifier_token3] = ACTIONS(2297), - [aux_sym_cmd_identifier_token4] = ACTIONS(2297), - [aux_sym_cmd_identifier_token5] = ACTIONS(2297), + [STATE(755)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1679), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1491), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1037), + [sym__unquoted_with_expr] = STATE(1283), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(755), + [anon_sym_true] = ACTIONS(2354), + [anon_sym_false] = ACTIONS(2354), + [anon_sym_null] = ACTIONS(2356), + [aux_sym_cmd_identifier_token3] = ACTIONS(2358), + [aux_sym_cmd_identifier_token4] = ACTIONS(2358), + [aux_sym_cmd_identifier_token5] = ACTIONS(2358), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2299), + [anon_sym_DOT_DOT] = ACTIONS(2360), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2301), - [anon_sym_DOT_DOT_LT] = ACTIONS(2301), - [aux_sym__val_number_decimal_token1] = ACTIONS(2303), - [aux_sym__val_number_decimal_token2] = ACTIONS(2305), - [aux_sym__val_number_decimal_token3] = ACTIONS(2307), - [aux_sym__val_number_decimal_token4] = ACTIONS(2307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2364), + [aux_sym__val_number_decimal_token2] = ACTIONS(2366), + [aux_sym__val_number_decimal_token3] = ACTIONS(2368), + [aux_sym__val_number_decimal_token4] = ACTIONS(2368), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2309), + [sym_val_date] = ACTIONS(2370), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2190), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(787)] = { - [sym_expr_unary] = STATE(1282), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1282), - [sym__expr_binary_expression] = STATE(1677), - [sym_expr_parenthesized] = STATE(925), - [sym_val_range] = STATE(1282), - [sym__val_range] = STATE(4556), - [sym__value] = STATE(1282), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(1504), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(1420), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_unquoted] = STATE(1000), - [sym__unquoted_with_expr] = STATE(1289), - [sym__unquoted_anonymous_prefix] = STATE(4556), - [sym_comment] = STATE(787), - [anon_sym_true] = ACTIONS(2293), - [anon_sym_false] = ACTIONS(2293), - [anon_sym_null] = ACTIONS(2295), - [aux_sym_cmd_identifier_token3] = ACTIONS(2297), - [aux_sym_cmd_identifier_token4] = ACTIONS(2297), - [aux_sym_cmd_identifier_token5] = ACTIONS(2297), + [STATE(756)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1680), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1491), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1038), + [sym__unquoted_with_expr] = STATE(1290), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(756), + [anon_sym_true] = ACTIONS(2354), + [anon_sym_false] = ACTIONS(2354), + [anon_sym_null] = ACTIONS(2356), + [aux_sym_cmd_identifier_token3] = ACTIONS(2358), + [aux_sym_cmd_identifier_token4] = ACTIONS(2358), + [aux_sym_cmd_identifier_token5] = ACTIONS(2358), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2299), + [anon_sym_DOT_DOT] = ACTIONS(2360), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2301), - [anon_sym_DOT_DOT_LT] = ACTIONS(2301), - [aux_sym__val_number_decimal_token1] = ACTIONS(2303), - [aux_sym__val_number_decimal_token2] = ACTIONS(2305), - [aux_sym__val_number_decimal_token3] = ACTIONS(2307), - [aux_sym__val_number_decimal_token4] = ACTIONS(2307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2364), + [aux_sym__val_number_decimal_token2] = ACTIONS(2366), + [aux_sym__val_number_decimal_token3] = ACTIONS(2368), + [aux_sym__val_number_decimal_token4] = ACTIONS(2368), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2309), + [sym_val_date] = ACTIONS(2370), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2190), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(788)] = { - [sym_expr_unary] = STATE(1282), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1282), - [sym__expr_binary_expression] = STATE(1683), - [sym_expr_parenthesized] = STATE(925), - [sym_val_range] = STATE(1282), - [sym__val_range] = STATE(4556), - [sym__value] = STATE(1282), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(1504), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(1420), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_unquoted] = STATE(1004), - [sym__unquoted_with_expr] = STATE(1292), - [sym__unquoted_anonymous_prefix] = STATE(4556), - [sym_comment] = STATE(788), - [anon_sym_true] = ACTIONS(2293), - [anon_sym_false] = ACTIONS(2293), - [anon_sym_null] = ACTIONS(2295), - [aux_sym_cmd_identifier_token3] = ACTIONS(2297), - [aux_sym_cmd_identifier_token4] = ACTIONS(2297), - [aux_sym_cmd_identifier_token5] = ACTIONS(2297), + [STATE(757)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1681), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1491), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1039), + [sym__unquoted_with_expr] = STATE(1298), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(757), + [anon_sym_true] = ACTIONS(2354), + [anon_sym_false] = ACTIONS(2354), + [anon_sym_null] = ACTIONS(2356), + [aux_sym_cmd_identifier_token3] = ACTIONS(2358), + [aux_sym_cmd_identifier_token4] = ACTIONS(2358), + [aux_sym_cmd_identifier_token5] = ACTIONS(2358), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2299), + [anon_sym_DOT_DOT] = ACTIONS(2360), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2301), - [anon_sym_DOT_DOT_LT] = ACTIONS(2301), - [aux_sym__val_number_decimal_token1] = ACTIONS(2303), - [aux_sym__val_number_decimal_token2] = ACTIONS(2305), - [aux_sym__val_number_decimal_token3] = ACTIONS(2307), - [aux_sym__val_number_decimal_token4] = ACTIONS(2307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2364), + [aux_sym__val_number_decimal_token2] = ACTIONS(2366), + [aux_sym__val_number_decimal_token3] = ACTIONS(2368), + [aux_sym__val_number_decimal_token4] = ACTIONS(2368), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2309), + [sym_val_date] = ACTIONS(2370), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2190), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(789)] = { - [sym_expr_unary] = STATE(1282), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1282), - [sym__expr_binary_expression] = STATE(1684), - [sym_expr_parenthesized] = STATE(925), - [sym_val_range] = STATE(1282), - [sym__val_range] = STATE(4556), - [sym__value] = STATE(1282), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(1504), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(1420), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_unquoted] = STATE(1014), - [sym__unquoted_with_expr] = STATE(1295), - [sym__unquoted_anonymous_prefix] = STATE(4556), - [sym_comment] = STATE(789), - [anon_sym_true] = ACTIONS(2293), - [anon_sym_false] = ACTIONS(2293), - [anon_sym_null] = ACTIONS(2295), - [aux_sym_cmd_identifier_token3] = ACTIONS(2297), - [aux_sym_cmd_identifier_token4] = ACTIONS(2297), - [aux_sym_cmd_identifier_token5] = ACTIONS(2297), + [STATE(758)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1682), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1491), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1040), + [sym__unquoted_with_expr] = STATE(1318), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(758), + [anon_sym_true] = ACTIONS(2354), + [anon_sym_false] = ACTIONS(2354), + [anon_sym_null] = ACTIONS(2356), + [aux_sym_cmd_identifier_token3] = ACTIONS(2358), + [aux_sym_cmd_identifier_token4] = ACTIONS(2358), + [aux_sym_cmd_identifier_token5] = ACTIONS(2358), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2299), + [anon_sym_DOT_DOT] = ACTIONS(2360), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2301), - [anon_sym_DOT_DOT_LT] = ACTIONS(2301), - [aux_sym__val_number_decimal_token1] = ACTIONS(2303), - [aux_sym__val_number_decimal_token2] = ACTIONS(2305), - [aux_sym__val_number_decimal_token3] = ACTIONS(2307), - [aux_sym__val_number_decimal_token4] = ACTIONS(2307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2364), + [aux_sym__val_number_decimal_token2] = ACTIONS(2366), + [aux_sym__val_number_decimal_token3] = ACTIONS(2368), + [aux_sym__val_number_decimal_token4] = ACTIONS(2368), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2309), + [sym_val_date] = ACTIONS(2370), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2190), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(790)] = { - [sym_expr_unary] = STATE(1282), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1282), - [sym__expr_binary_expression] = STATE(1686), - [sym_expr_parenthesized] = STATE(925), - [sym_val_range] = STATE(1282), - [sym__val_range] = STATE(4556), - [sym__value] = STATE(1282), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(1504), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(1420), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_unquoted] = STATE(1038), - [sym__unquoted_with_expr] = STATE(1298), - [sym__unquoted_anonymous_prefix] = STATE(4556), - [sym_comment] = STATE(790), - [anon_sym_true] = ACTIONS(2293), - [anon_sym_false] = ACTIONS(2293), - [anon_sym_null] = ACTIONS(2295), - [aux_sym_cmd_identifier_token3] = ACTIONS(2297), - [aux_sym_cmd_identifier_token4] = ACTIONS(2297), - [aux_sym_cmd_identifier_token5] = ACTIONS(2297), + [STATE(759)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1683), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1491), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1041), + [sym__unquoted_with_expr] = STATE(1321), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(759), + [anon_sym_true] = ACTIONS(2354), + [anon_sym_false] = ACTIONS(2354), + [anon_sym_null] = ACTIONS(2356), + [aux_sym_cmd_identifier_token3] = ACTIONS(2358), + [aux_sym_cmd_identifier_token4] = ACTIONS(2358), + [aux_sym_cmd_identifier_token5] = ACTIONS(2358), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2299), + [anon_sym_DOT_DOT] = ACTIONS(2360), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2301), - [anon_sym_DOT_DOT_LT] = ACTIONS(2301), - [aux_sym__val_number_decimal_token1] = ACTIONS(2303), - [aux_sym__val_number_decimal_token2] = ACTIONS(2305), - [aux_sym__val_number_decimal_token3] = ACTIONS(2307), - [aux_sym__val_number_decimal_token4] = ACTIONS(2307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2364), + [aux_sym__val_number_decimal_token2] = ACTIONS(2366), + [aux_sym__val_number_decimal_token3] = ACTIONS(2368), + [aux_sym__val_number_decimal_token4] = ACTIONS(2368), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2309), + [sym_val_date] = ACTIONS(2370), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2190), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(791)] = { - [sym_expr_unary] = STATE(1282), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1282), - [sym__expr_binary_expression] = STATE(1693), - [sym_expr_parenthesized] = STATE(925), - [sym_val_range] = STATE(1282), - [sym__val_range] = STATE(4556), - [sym__value] = STATE(1282), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(1504), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(1420), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_unquoted] = STATE(1039), - [sym__unquoted_with_expr] = STATE(1302), - [sym__unquoted_anonymous_prefix] = STATE(4556), - [sym_comment] = STATE(791), - [anon_sym_true] = ACTIONS(2293), - [anon_sym_false] = ACTIONS(2293), - [anon_sym_null] = ACTIONS(2295), - [aux_sym_cmd_identifier_token3] = ACTIONS(2297), - [aux_sym_cmd_identifier_token4] = ACTIONS(2297), - [aux_sym_cmd_identifier_token5] = ACTIONS(2297), + [STATE(760)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1684), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1491), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1042), + [sym__unquoted_with_expr] = STATE(1325), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(760), + [anon_sym_true] = ACTIONS(2354), + [anon_sym_false] = ACTIONS(2354), + [anon_sym_null] = ACTIONS(2356), + [aux_sym_cmd_identifier_token3] = ACTIONS(2358), + [aux_sym_cmd_identifier_token4] = ACTIONS(2358), + [aux_sym_cmd_identifier_token5] = ACTIONS(2358), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2299), + [anon_sym_DOT_DOT] = ACTIONS(2360), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2301), - [anon_sym_DOT_DOT_LT] = ACTIONS(2301), - [aux_sym__val_number_decimal_token1] = ACTIONS(2303), - [aux_sym__val_number_decimal_token2] = ACTIONS(2305), - [aux_sym__val_number_decimal_token3] = ACTIONS(2307), - [aux_sym__val_number_decimal_token4] = ACTIONS(2307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2364), + [aux_sym__val_number_decimal_token2] = ACTIONS(2366), + [aux_sym__val_number_decimal_token3] = ACTIONS(2368), + [aux_sym__val_number_decimal_token4] = ACTIONS(2368), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2309), + [sym_val_date] = ACTIONS(2370), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2190), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(792)] = { - [sym_expr_unary] = STATE(1282), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1282), - [sym__expr_binary_expression] = STATE(1695), - [sym_expr_parenthesized] = STATE(925), - [sym_val_range] = STATE(1282), - [sym__val_range] = STATE(4556), - [sym__value] = STATE(1282), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(1504), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(1420), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_unquoted] = STATE(1040), - [sym__unquoted_with_expr] = STATE(1305), - [sym__unquoted_anonymous_prefix] = STATE(4556), - [sym_comment] = STATE(792), - [anon_sym_true] = ACTIONS(2293), - [anon_sym_false] = ACTIONS(2293), - [anon_sym_null] = ACTIONS(2295), - [aux_sym_cmd_identifier_token3] = ACTIONS(2297), - [aux_sym_cmd_identifier_token4] = ACTIONS(2297), - [aux_sym_cmd_identifier_token5] = ACTIONS(2297), + [STATE(761)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1685), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1491), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1043), + [sym__unquoted_with_expr] = STATE(1328), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(761), + [anon_sym_true] = ACTIONS(2354), + [anon_sym_false] = ACTIONS(2354), + [anon_sym_null] = ACTIONS(2356), + [aux_sym_cmd_identifier_token3] = ACTIONS(2358), + [aux_sym_cmd_identifier_token4] = ACTIONS(2358), + [aux_sym_cmd_identifier_token5] = ACTIONS(2358), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2299), + [anon_sym_DOT_DOT] = ACTIONS(2360), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2301), - [anon_sym_DOT_DOT_LT] = ACTIONS(2301), - [aux_sym__val_number_decimal_token1] = ACTIONS(2303), - [aux_sym__val_number_decimal_token2] = ACTIONS(2305), - [aux_sym__val_number_decimal_token3] = ACTIONS(2307), - [aux_sym__val_number_decimal_token4] = ACTIONS(2307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2364), + [aux_sym__val_number_decimal_token2] = ACTIONS(2366), + [aux_sym__val_number_decimal_token3] = ACTIONS(2368), + [aux_sym__val_number_decimal_token4] = ACTIONS(2368), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2309), + [sym_val_date] = ACTIONS(2370), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2190), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(793)] = { - [sym_expr_unary] = STATE(1282), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1282), - [sym__expr_binary_expression] = STATE(1306), - [sym_expr_parenthesized] = STATE(925), - [sym_val_range] = STATE(1282), - [sym__val_range] = STATE(4556), - [sym__value] = STATE(1282), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(1504), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(1420), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_unquoted] = STATE(1053), - [sym__unquoted_with_expr] = STATE(1308), - [sym__unquoted_anonymous_prefix] = STATE(4556), - [sym_comment] = STATE(793), - [anon_sym_true] = ACTIONS(2293), - [anon_sym_false] = ACTIONS(2293), - [anon_sym_null] = ACTIONS(2295), - [aux_sym_cmd_identifier_token3] = ACTIONS(2297), - [aux_sym_cmd_identifier_token4] = ACTIONS(2297), - [aux_sym_cmd_identifier_token5] = ACTIONS(2297), + [STATE(762)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1329), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1491), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1044), + [sym__unquoted_with_expr] = STATE(1264), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(762), + [anon_sym_true] = ACTIONS(2354), + [anon_sym_false] = ACTIONS(2354), + [anon_sym_null] = ACTIONS(2356), + [aux_sym_cmd_identifier_token3] = ACTIONS(2358), + [aux_sym_cmd_identifier_token4] = ACTIONS(2358), + [aux_sym_cmd_identifier_token5] = ACTIONS(2358), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2299), + [anon_sym_DOT_DOT] = ACTIONS(2360), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2301), - [anon_sym_DOT_DOT_LT] = ACTIONS(2301), - [aux_sym__val_number_decimal_token1] = ACTIONS(2303), - [aux_sym__val_number_decimal_token2] = ACTIONS(2305), - [aux_sym__val_number_decimal_token3] = ACTIONS(2307), - [aux_sym__val_number_decimal_token4] = ACTIONS(2307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2364), + [aux_sym__val_number_decimal_token2] = ACTIONS(2366), + [aux_sym__val_number_decimal_token3] = ACTIONS(2368), + [aux_sym__val_number_decimal_token4] = ACTIONS(2368), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2309), + [sym_val_date] = ACTIONS(2370), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2190), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(794)] = { - [sym_expr_unary] = STATE(1282), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1282), - [sym__expr_binary_expression] = STATE(1688), - [sym_expr_parenthesized] = STATE(925), - [sym_val_range] = STATE(1282), - [sym__val_range] = STATE(4556), - [sym__value] = STATE(1282), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(1504), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(1420), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), + [STATE(763)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1686), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1491), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), [sym_unquoted] = STATE(1056), - [sym__unquoted_with_expr] = STATE(1310), - [sym__unquoted_anonymous_prefix] = STATE(4556), - [sym_comment] = STATE(794), - [anon_sym_true] = ACTIONS(2293), - [anon_sym_false] = ACTIONS(2293), - [anon_sym_null] = ACTIONS(2295), - [aux_sym_cmd_identifier_token3] = ACTIONS(2297), - [aux_sym_cmd_identifier_token4] = ACTIONS(2297), - [aux_sym_cmd_identifier_token5] = ACTIONS(2297), + [sym__unquoted_with_expr] = STATE(1267), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(763), + [anon_sym_true] = ACTIONS(2354), + [anon_sym_false] = ACTIONS(2354), + [anon_sym_null] = ACTIONS(2356), + [aux_sym_cmd_identifier_token3] = ACTIONS(2358), + [aux_sym_cmd_identifier_token4] = ACTIONS(2358), + [aux_sym_cmd_identifier_token5] = ACTIONS(2358), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2299), + [anon_sym_DOT_DOT] = ACTIONS(2360), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2301), - [anon_sym_DOT_DOT_LT] = ACTIONS(2301), - [aux_sym__val_number_decimal_token1] = ACTIONS(2303), - [aux_sym__val_number_decimal_token2] = ACTIONS(2305), - [aux_sym__val_number_decimal_token3] = ACTIONS(2307), - [aux_sym__val_number_decimal_token4] = ACTIONS(2307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2364), + [aux_sym__val_number_decimal_token2] = ACTIONS(2366), + [aux_sym__val_number_decimal_token3] = ACTIONS(2368), + [aux_sym__val_number_decimal_token4] = ACTIONS(2368), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2309), + [sym_val_date] = ACTIONS(2370), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2190), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(795)] = { - [sym_expr_unary] = STATE(1282), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1282), - [sym__expr_binary_expression] = STATE(1689), - [sym_expr_parenthesized] = STATE(925), - [sym_val_range] = STATE(1282), - [sym__val_range] = STATE(4556), - [sym__value] = STATE(1282), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(1504), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(1420), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_unquoted] = STATE(1057), - [sym__unquoted_with_expr] = STATE(1312), - [sym__unquoted_anonymous_prefix] = STATE(4556), - [sym_comment] = STATE(795), - [anon_sym_true] = ACTIONS(2293), - [anon_sym_false] = ACTIONS(2293), - [anon_sym_null] = ACTIONS(2295), - [aux_sym_cmd_identifier_token3] = ACTIONS(2297), - [aux_sym_cmd_identifier_token4] = ACTIONS(2297), - [aux_sym_cmd_identifier_token5] = ACTIONS(2297), + [STATE(764)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1687), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1491), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1058), + [sym__unquoted_with_expr] = STATE(1269), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(764), + [anon_sym_true] = ACTIONS(2354), + [anon_sym_false] = ACTIONS(2354), + [anon_sym_null] = ACTIONS(2356), + [aux_sym_cmd_identifier_token3] = ACTIONS(2358), + [aux_sym_cmd_identifier_token4] = ACTIONS(2358), + [aux_sym_cmd_identifier_token5] = ACTIONS(2358), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2299), + [anon_sym_DOT_DOT] = ACTIONS(2360), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2301), - [anon_sym_DOT_DOT_LT] = ACTIONS(2301), - [aux_sym__val_number_decimal_token1] = ACTIONS(2303), - [aux_sym__val_number_decimal_token2] = ACTIONS(2305), - [aux_sym__val_number_decimal_token3] = ACTIONS(2307), - [aux_sym__val_number_decimal_token4] = ACTIONS(2307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2364), + [aux_sym__val_number_decimal_token2] = ACTIONS(2366), + [aux_sym__val_number_decimal_token3] = ACTIONS(2368), + [aux_sym__val_number_decimal_token4] = ACTIONS(2368), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2309), + [sym_val_date] = ACTIONS(2370), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2190), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(796)] = { - [sym_expr_unary] = STATE(1282), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1282), - [sym__expr_binary_expression] = STATE(1691), - [sym_expr_parenthesized] = STATE(925), - [sym_val_range] = STATE(1282), - [sym__val_range] = STATE(4556), - [sym__value] = STATE(1282), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(1504), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(1420), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_unquoted] = STATE(1059), - [sym__unquoted_with_expr] = STATE(1314), - [sym__unquoted_anonymous_prefix] = STATE(4556), - [sym_comment] = STATE(796), - [anon_sym_true] = ACTIONS(2293), - [anon_sym_false] = ACTIONS(2293), - [anon_sym_null] = ACTIONS(2295), - [aux_sym_cmd_identifier_token3] = ACTIONS(2297), - [aux_sym_cmd_identifier_token4] = ACTIONS(2297), - [aux_sym_cmd_identifier_token5] = ACTIONS(2297), + [STATE(765)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1688), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1491), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1069), + [sym__unquoted_with_expr] = STATE(1276), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(765), + [anon_sym_true] = ACTIONS(2354), + [anon_sym_false] = ACTIONS(2354), + [anon_sym_null] = ACTIONS(2356), + [aux_sym_cmd_identifier_token3] = ACTIONS(2358), + [aux_sym_cmd_identifier_token4] = ACTIONS(2358), + [aux_sym_cmd_identifier_token5] = ACTIONS(2358), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2299), + [anon_sym_DOT_DOT] = ACTIONS(2360), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2301), - [anon_sym_DOT_DOT_LT] = ACTIONS(2301), - [aux_sym__val_number_decimal_token1] = ACTIONS(2303), - [aux_sym__val_number_decimal_token2] = ACTIONS(2305), - [aux_sym__val_number_decimal_token3] = ACTIONS(2307), - [aux_sym__val_number_decimal_token4] = ACTIONS(2307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2364), + [aux_sym__val_number_decimal_token2] = ACTIONS(2366), + [aux_sym__val_number_decimal_token3] = ACTIONS(2368), + [aux_sym__val_number_decimal_token4] = ACTIONS(2368), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2309), + [sym_val_date] = ACTIONS(2370), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2190), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(797)] = { - [sym_expr_unary] = STATE(1282), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1282), - [sym__expr_binary_expression] = STATE(1694), - [sym_expr_parenthesized] = STATE(925), - [sym_val_range] = STATE(1282), - [sym__val_range] = STATE(4556), - [sym__value] = STATE(1282), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(1504), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(1420), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_unquoted] = STATE(1068), - [sym__unquoted_with_expr] = STATE(1322), - [sym__unquoted_anonymous_prefix] = STATE(4556), - [sym_comment] = STATE(797), - [anon_sym_true] = ACTIONS(2293), - [anon_sym_false] = ACTIONS(2293), - [anon_sym_null] = ACTIONS(2295), - [aux_sym_cmd_identifier_token3] = ACTIONS(2297), - [aux_sym_cmd_identifier_token4] = ACTIONS(2297), - [aux_sym_cmd_identifier_token5] = ACTIONS(2297), + [STATE(766)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1689), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(1491), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(1419), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1070), + [sym__unquoted_with_expr] = STATE(1285), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(766), + [anon_sym_true] = ACTIONS(2354), + [anon_sym_false] = ACTIONS(2354), + [anon_sym_null] = ACTIONS(2356), + [aux_sym_cmd_identifier_token3] = ACTIONS(2358), + [aux_sym_cmd_identifier_token4] = ACTIONS(2358), + [aux_sym_cmd_identifier_token5] = ACTIONS(2358), [anon_sym_LBRACK] = ACTIONS(59), [anon_sym_LPAREN] = ACTIONS(61), [anon_sym_DOLLAR] = ACTIONS(1030), [anon_sym_DASH2] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2299), + [anon_sym_DOT_DOT] = ACTIONS(2360), [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2301), - [anon_sym_DOT_DOT_LT] = ACTIONS(2301), - [aux_sym__val_number_decimal_token1] = ACTIONS(2303), - [aux_sym__val_number_decimal_token2] = ACTIONS(2305), - [aux_sym__val_number_decimal_token3] = ACTIONS(2307), - [aux_sym__val_number_decimal_token4] = ACTIONS(2307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2362), + [anon_sym_DOT_DOT_LT] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2364), + [aux_sym__val_number_decimal_token2] = ACTIONS(2366), + [aux_sym__val_number_decimal_token3] = ACTIONS(2368), + [aux_sym__val_number_decimal_token4] = ACTIONS(2368), [aux_sym__val_number_token1] = ACTIONS(83), [aux_sym__val_number_token2] = ACTIONS(83), [aux_sym__val_number_token3] = ACTIONS(83), [anon_sym_0b] = ACTIONS(85), [anon_sym_0o] = ACTIONS(87), [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2309), + [sym_val_date] = ACTIONS(2370), [anon_sym_DQUOTE] = ACTIONS(91), [anon_sym_SQUOTE] = ACTIONS(93), [anon_sym_BQUOTE] = ACTIONS(95), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2190), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(798)] = { - [sym_comment] = STATE(798), - [anon_sym_if] = ACTIONS(2311), - [anon_sym_in] = ACTIONS(2311), - [sym__newline] = ACTIONS(2311), - [anon_sym_SEMI] = ACTIONS(2311), - [anon_sym_PIPE] = ACTIONS(2311), - [anon_sym_err_GT_PIPE] = ACTIONS(2311), - [anon_sym_out_GT_PIPE] = ACTIONS(2311), - [anon_sym_e_GT_PIPE] = ACTIONS(2311), - [anon_sym_o_GT_PIPE] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2311), - [anon_sym_RPAREN] = ACTIONS(2311), - [anon_sym_GT2] = ACTIONS(2313), - [anon_sym_DASH2] = ACTIONS(2311), - [anon_sym_LBRACE] = ACTIONS(2311), - [anon_sym_RBRACE] = ACTIONS(2311), - [anon_sym_EQ_GT] = ACTIONS(2311), - [anon_sym_STAR2] = ACTIONS(2313), - [anon_sym_and2] = ACTIONS(2311), - [anon_sym_xor2] = ACTIONS(2311), - [anon_sym_or2] = ACTIONS(2311), - [anon_sym_not_DASHin2] = ACTIONS(2311), - [anon_sym_has2] = ACTIONS(2311), - [anon_sym_not_DASHhas2] = ACTIONS(2311), - [anon_sym_starts_DASHwith2] = ACTIONS(2311), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2311), - [anon_sym_ends_DASHwith2] = ACTIONS(2311), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2311), - [anon_sym_EQ_EQ2] = ACTIONS(2311), - [anon_sym_BANG_EQ2] = ACTIONS(2311), - [anon_sym_LT2] = ACTIONS(2313), - [anon_sym_LT_EQ2] = ACTIONS(2311), - [anon_sym_GT_EQ2] = ACTIONS(2311), - [anon_sym_EQ_TILDE2] = ACTIONS(2311), - [anon_sym_BANG_TILDE2] = ACTIONS(2311), - [anon_sym_like2] = ACTIONS(2311), - [anon_sym_not_DASHlike2] = ACTIONS(2311), - [anon_sym_STAR_STAR2] = ACTIONS(2311), - [anon_sym_PLUS_PLUS2] = ACTIONS(2311), - [anon_sym_SLASH2] = ACTIONS(2313), - [anon_sym_mod2] = ACTIONS(2311), - [anon_sym_SLASH_SLASH2] = ACTIONS(2311), - [anon_sym_PLUS2] = ACTIONS(2313), - [anon_sym_bit_DASHshl2] = ACTIONS(2311), - [anon_sym_bit_DASHshr2] = ACTIONS(2311), - [anon_sym_bit_DASHand2] = ACTIONS(2311), - [anon_sym_bit_DASHxor2] = ACTIONS(2311), - [anon_sym_bit_DASHor2] = ACTIONS(2311), - [anon_sym_err_GT] = ACTIONS(2313), - [anon_sym_out_GT] = ACTIONS(2313), - [anon_sym_e_GT] = ACTIONS(2313), - [anon_sym_o_GT] = ACTIONS(2313), - [anon_sym_err_PLUSout_GT] = ACTIONS(2313), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2313), - [anon_sym_o_PLUSe_GT] = ACTIONS(2313), - [anon_sym_e_PLUSo_GT] = ACTIONS(2313), - [anon_sym_err_GT_GT] = ACTIONS(2311), - [anon_sym_out_GT_GT] = ACTIONS(2311), - [anon_sym_e_GT_GT] = ACTIONS(2311), - [anon_sym_o_GT_GT] = ACTIONS(2311), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2311), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2311), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2311), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2311), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(799)] = { - [aux_sym__repeat_newline] = STATE(3431), - [aux_sym__pipe_separator] = STATE(799), - [sym_comment] = STATE(799), - [anon_sym_export] = ACTIONS(2315), - [anon_sym_alias] = ACTIONS(2317), - [anon_sym_let] = ACTIONS(2317), - [anon_sym_mut] = ACTIONS(2317), - [anon_sym_const] = ACTIONS(2317), - [aux_sym_cmd_identifier_token1] = ACTIONS(2315), - [anon_sym_def] = ACTIONS(2317), - [anon_sym_use] = ACTIONS(2317), - [anon_sym_export_DASHenv] = ACTIONS(2317), - [anon_sym_extern] = ACTIONS(2317), - [anon_sym_module] = ACTIONS(2317), - [anon_sym_for] = ACTIONS(2317), - [anon_sym_loop] = ACTIONS(2317), - [anon_sym_while] = ACTIONS(2317), - [anon_sym_if] = ACTIONS(2317), - [anon_sym_else] = ACTIONS(2317), - [anon_sym_try] = ACTIONS(2317), - [anon_sym_catch] = ACTIONS(2317), - [anon_sym_match] = ACTIONS(2317), - [anon_sym_in] = ACTIONS(2315), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2317), - [aux_sym_cmd_identifier_token3] = ACTIONS(2317), - [aux_sym_cmd_identifier_token4] = ACTIONS(2317), - [aux_sym_cmd_identifier_token5] = ACTIONS(2317), - [sym__newline] = ACTIONS(2319), - [anon_sym_PIPE] = ACTIONS(2322), - [anon_sym_err_GT_PIPE] = ACTIONS(2322), - [anon_sym_out_GT_PIPE] = ACTIONS(2322), - [anon_sym_e_GT_PIPE] = ACTIONS(2322), - [anon_sym_o_GT_PIPE] = ACTIONS(2322), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2322), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2322), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2322), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2322), - [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_DOLLAR] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2315), - [anon_sym_LBRACE] = ACTIONS(2317), - [anon_sym_DOT_DOT] = ACTIONS(2315), - [anon_sym_where] = ACTIONS(2317), - [aux_sym_expr_unary_token1] = ACTIONS(2317), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2317), - [anon_sym_DOT_DOT_LT] = ACTIONS(2317), - [aux_sym__val_number_decimal_token1] = ACTIONS(2315), - [aux_sym__val_number_decimal_token2] = ACTIONS(2317), - [aux_sym__val_number_decimal_token3] = ACTIONS(2317), - [aux_sym__val_number_decimal_token4] = ACTIONS(2317), - [aux_sym__val_number_token1] = ACTIONS(2317), - [aux_sym__val_number_token2] = ACTIONS(2317), - [aux_sym__val_number_token3] = ACTIONS(2317), - [anon_sym_0b] = ACTIONS(2315), - [anon_sym_0o] = ACTIONS(2315), - [anon_sym_0x] = ACTIONS(2315), - [sym_val_date] = ACTIONS(2317), - [anon_sym_DQUOTE] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2317), - [anon_sym_BQUOTE] = ACTIONS(2317), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2317), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2317), - [anon_sym_CARET] = ACTIONS(2317), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2317), - }, - [STATE(800)] = { - [aux_sym__repeat_newline] = STATE(1098), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(800), - [anon_sym_in] = ACTIONS(2289), - [sym__newline] = ACTIONS(2289), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_err_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_GT_PIPE] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), - [anon_sym_RPAREN] = ACTIONS(2289), - [anon_sym_GT2] = ACTIONS(2291), - [anon_sym_DASH2] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_STAR2] = ACTIONS(2291), - [anon_sym_and2] = ACTIONS(2289), - [anon_sym_xor2] = ACTIONS(2289), - [anon_sym_or2] = ACTIONS(2289), - [anon_sym_not_DASHin2] = ACTIONS(2289), - [anon_sym_has2] = ACTIONS(2289), - [anon_sym_not_DASHhas2] = ACTIONS(2289), - [anon_sym_starts_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), - [anon_sym_ends_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), - [anon_sym_EQ_EQ2] = ACTIONS(2289), - [anon_sym_BANG_EQ2] = ACTIONS(2289), - [anon_sym_LT2] = ACTIONS(2291), - [anon_sym_LT_EQ2] = ACTIONS(2289), - [anon_sym_GT_EQ2] = ACTIONS(2289), - [anon_sym_EQ_TILDE2] = ACTIONS(2289), - [anon_sym_BANG_TILDE2] = ACTIONS(2289), - [anon_sym_like2] = ACTIONS(2289), - [anon_sym_not_DASHlike2] = ACTIONS(2289), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2289), - [anon_sym_PLUS_PLUS2] = ACTIONS(2289), - [anon_sym_SLASH2] = ACTIONS(2291), - [anon_sym_mod2] = ACTIONS(2289), - [anon_sym_SLASH_SLASH2] = ACTIONS(2289), - [anon_sym_PLUS2] = ACTIONS(2291), - [anon_sym_bit_DASHshl2] = ACTIONS(2289), - [anon_sym_bit_DASHshr2] = ACTIONS(2289), - [anon_sym_bit_DASHand2] = ACTIONS(2289), - [anon_sym_bit_DASHxor2] = ACTIONS(2289), - [anon_sym_bit_DASHor2] = ACTIONS(2289), - [anon_sym_err_GT] = ACTIONS(2291), - [anon_sym_out_GT] = ACTIONS(2291), - [anon_sym_e_GT] = ACTIONS(2291), - [anon_sym_o_GT] = ACTIONS(2291), - [anon_sym_err_PLUSout_GT] = ACTIONS(2291), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), - [anon_sym_o_PLUSe_GT] = ACTIONS(2291), - [anon_sym_e_PLUSo_GT] = ACTIONS(2291), - [anon_sym_err_GT_GT] = ACTIONS(2289), - [anon_sym_out_GT_GT] = ACTIONS(2289), - [anon_sym_e_GT_GT] = ACTIONS(2289), - [anon_sym_o_GT_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(801)] = { - [aux_sym__repeat_newline] = STATE(1100), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(801), - [anon_sym_in] = ACTIONS(2289), - [sym__newline] = ACTIONS(2289), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_err_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_GT_PIPE] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), - [anon_sym_RPAREN] = ACTIONS(2289), - [anon_sym_GT2] = ACTIONS(2291), - [anon_sym_DASH2] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_STAR2] = ACTIONS(2291), - [anon_sym_and2] = ACTIONS(2289), - [anon_sym_xor2] = ACTIONS(2289), - [anon_sym_or2] = ACTIONS(2289), - [anon_sym_not_DASHin2] = ACTIONS(2289), - [anon_sym_has2] = ACTIONS(2289), - [anon_sym_not_DASHhas2] = ACTIONS(2289), - [anon_sym_starts_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), - [anon_sym_ends_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), - [anon_sym_EQ_EQ2] = ACTIONS(2289), - [anon_sym_BANG_EQ2] = ACTIONS(2289), - [anon_sym_LT2] = ACTIONS(2291), - [anon_sym_LT_EQ2] = ACTIONS(2289), - [anon_sym_GT_EQ2] = ACTIONS(2289), - [anon_sym_EQ_TILDE2] = ACTIONS(2289), - [anon_sym_BANG_TILDE2] = ACTIONS(2289), - [anon_sym_like2] = ACTIONS(2289), - [anon_sym_not_DASHlike2] = ACTIONS(2289), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2289), - [anon_sym_PLUS_PLUS2] = ACTIONS(2289), - [anon_sym_SLASH2] = ACTIONS(2291), - [anon_sym_mod2] = ACTIONS(2289), - [anon_sym_SLASH_SLASH2] = ACTIONS(2289), - [anon_sym_PLUS2] = ACTIONS(2291), - [anon_sym_bit_DASHshl2] = ACTIONS(2289), - [anon_sym_bit_DASHshr2] = ACTIONS(2289), - [anon_sym_bit_DASHand2] = ACTIONS(2289), - [anon_sym_bit_DASHxor2] = ACTIONS(2289), - [anon_sym_bit_DASHor2] = ACTIONS(2289), - [anon_sym_err_GT] = ACTIONS(2291), - [anon_sym_out_GT] = ACTIONS(2291), - [anon_sym_e_GT] = ACTIONS(2291), - [anon_sym_o_GT] = ACTIONS(2291), - [anon_sym_err_PLUSout_GT] = ACTIONS(2291), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), - [anon_sym_o_PLUSe_GT] = ACTIONS(2291), - [anon_sym_e_PLUSo_GT] = ACTIONS(2291), - [anon_sym_err_GT_GT] = ACTIONS(2289), - [anon_sym_out_GT_GT] = ACTIONS(2289), - [anon_sym_e_GT_GT] = ACTIONS(2289), - [anon_sym_o_GT_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(802)] = { - [sym_cell_path] = STATE(1275), - [sym_path] = STATE(712), - [sym_comment] = STATE(802), - [aux_sym__where_predicate_lhs_repeat1] = STATE(547), - [ts_builtin_sym_end] = ACTIONS(1854), - [anon_sym_in] = ACTIONS(1854), - [sym__newline] = ACTIONS(1854), - [anon_sym_SEMI] = ACTIONS(1854), - [anon_sym_PIPE] = ACTIONS(1854), - [anon_sym_err_GT_PIPE] = ACTIONS(1854), - [anon_sym_out_GT_PIPE] = ACTIONS(1854), - [anon_sym_e_GT_PIPE] = ACTIONS(1854), - [anon_sym_o_GT_PIPE] = ACTIONS(1854), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1854), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1854), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1854), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1854), - [anon_sym_GT2] = ACTIONS(1856), - [anon_sym_DASH2] = ACTIONS(1854), - [anon_sym_STAR2] = ACTIONS(1856), - [anon_sym_and2] = ACTIONS(1854), - [anon_sym_xor2] = ACTIONS(1854), - [anon_sym_or2] = ACTIONS(1854), - [anon_sym_not_DASHin2] = ACTIONS(1854), - [anon_sym_has2] = ACTIONS(1854), - [anon_sym_not_DASHhas2] = ACTIONS(1854), - [anon_sym_starts_DASHwith2] = ACTIONS(1854), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1854), - [anon_sym_ends_DASHwith2] = ACTIONS(1854), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1854), - [anon_sym_EQ_EQ2] = ACTIONS(1854), - [anon_sym_BANG_EQ2] = ACTIONS(1854), - [anon_sym_LT2] = ACTIONS(1856), - [anon_sym_LT_EQ2] = ACTIONS(1854), - [anon_sym_GT_EQ2] = ACTIONS(1854), - [anon_sym_EQ_TILDE2] = ACTIONS(1854), - [anon_sym_BANG_TILDE2] = ACTIONS(1854), - [anon_sym_like2] = ACTIONS(1854), - [anon_sym_not_DASHlike2] = ACTIONS(1854), - [anon_sym_STAR_STAR2] = ACTIONS(1854), - [anon_sym_PLUS_PLUS2] = ACTIONS(1854), - [anon_sym_SLASH2] = ACTIONS(1856), - [anon_sym_mod2] = ACTIONS(1854), - [anon_sym_SLASH_SLASH2] = ACTIONS(1854), - [anon_sym_PLUS2] = ACTIONS(1856), - [anon_sym_bit_DASHshl2] = ACTIONS(1854), - [anon_sym_bit_DASHshr2] = ACTIONS(1854), - [anon_sym_bit_DASHand2] = ACTIONS(1854), - [anon_sym_bit_DASHxor2] = ACTIONS(1854), - [anon_sym_bit_DASHor2] = ACTIONS(1854), - [anon_sym_DOT2] = ACTIONS(2192), - [anon_sym_err_GT] = ACTIONS(1856), - [anon_sym_out_GT] = ACTIONS(1856), - [anon_sym_e_GT] = ACTIONS(1856), - [anon_sym_o_GT] = ACTIONS(1856), - [anon_sym_err_PLUSout_GT] = ACTIONS(1856), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1856), - [anon_sym_o_PLUSe_GT] = ACTIONS(1856), - [anon_sym_e_PLUSo_GT] = ACTIONS(1856), - [anon_sym_err_GT_GT] = ACTIONS(1854), - [anon_sym_out_GT_GT] = ACTIONS(1854), - [anon_sym_e_GT_GT] = ACTIONS(1854), - [anon_sym_o_GT_GT] = ACTIONS(1854), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1854), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1854), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1854), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1854), + [STATE(767)] = { + [sym_comment] = STATE(767), + [anon_sym_in] = ACTIONS(2374), + [sym__newline] = ACTIONS(2376), + [anon_sym_SEMI] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(2379), + [anon_sym_err_GT_PIPE] = ACTIONS(2379), + [anon_sym_out_GT_PIPE] = ACTIONS(2379), + [anon_sym_e_GT_PIPE] = ACTIONS(2379), + [anon_sym_o_GT_PIPE] = ACTIONS(2379), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2379), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2379), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2379), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2379), + [anon_sym_RPAREN] = ACTIONS(2379), + [anon_sym_GT2] = ACTIONS(2381), + [anon_sym_DASH2] = ACTIONS(2374), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_STAR2] = ACTIONS(2381), + [anon_sym_and2] = ACTIONS(2374), + [anon_sym_xor2] = ACTIONS(2374), + [anon_sym_or2] = ACTIONS(2374), + [anon_sym_not_DASHin2] = ACTIONS(2374), + [anon_sym_has2] = ACTIONS(2374), + [anon_sym_not_DASHhas2] = ACTIONS(2374), + [anon_sym_starts_DASHwith2] = ACTIONS(2374), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2374), + [anon_sym_ends_DASHwith2] = ACTIONS(2374), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2374), + [anon_sym_EQ_EQ2] = ACTIONS(2374), + [anon_sym_BANG_EQ2] = ACTIONS(2374), + [anon_sym_LT2] = ACTIONS(2381), + [anon_sym_LT_EQ2] = ACTIONS(2374), + [anon_sym_GT_EQ2] = ACTIONS(2374), + [anon_sym_EQ_TILDE2] = ACTIONS(2374), + [anon_sym_BANG_TILDE2] = ACTIONS(2374), + [anon_sym_like2] = ACTIONS(2374), + [anon_sym_not_DASHlike2] = ACTIONS(2374), + [anon_sym_STAR_STAR2] = ACTIONS(2374), + [anon_sym_PLUS_PLUS2] = ACTIONS(2374), + [anon_sym_SLASH2] = ACTIONS(2381), + [anon_sym_mod2] = ACTIONS(2374), + [anon_sym_SLASH_SLASH2] = ACTIONS(2374), + [anon_sym_PLUS2] = ACTIONS(2381), + [anon_sym_bit_DASHshl2] = ACTIONS(2374), + [anon_sym_bit_DASHshr2] = ACTIONS(2374), + [anon_sym_bit_DASHand2] = ACTIONS(2374), + [anon_sym_bit_DASHxor2] = ACTIONS(2374), + [anon_sym_bit_DASHor2] = ACTIONS(2374), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), + [anon_sym_err_GT] = ACTIONS(2383), + [anon_sym_out_GT] = ACTIONS(2383), + [anon_sym_e_GT] = ACTIONS(2383), + [anon_sym_o_GT] = ACTIONS(2383), + [anon_sym_err_PLUSout_GT] = ACTIONS(2383), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2383), + [anon_sym_o_PLUSe_GT] = ACTIONS(2383), + [anon_sym_e_PLUSo_GT] = ACTIONS(2383), + [anon_sym_err_GT_GT] = ACTIONS(2379), + [anon_sym_out_GT_GT] = ACTIONS(2379), + [anon_sym_e_GT_GT] = ACTIONS(2379), + [anon_sym_o_GT_GT] = ACTIONS(2379), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2379), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2379), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2379), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2379), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(803)] = { - [sym_comment] = STATE(803), - [anon_sym_in] = ACTIONS(2325), - [sym__newline] = ACTIONS(2325), - [anon_sym_SEMI] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(2325), - [anon_sym_err_GT_PIPE] = ACTIONS(2325), - [anon_sym_out_GT_PIPE] = ACTIONS(2325), - [anon_sym_e_GT_PIPE] = ACTIONS(2325), - [anon_sym_o_GT_PIPE] = ACTIONS(2325), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2325), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2325), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2325), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2325), - [anon_sym_RPAREN] = ACTIONS(2325), - [anon_sym_GT2] = ACTIONS(2327), - [anon_sym_DASH2] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2325), - [anon_sym_RBRACE] = ACTIONS(2325), - [anon_sym_STAR2] = ACTIONS(2327), - [anon_sym_and2] = ACTIONS(2325), - [anon_sym_xor2] = ACTIONS(2325), - [anon_sym_or2] = ACTIONS(2325), - [anon_sym_not_DASHin2] = ACTIONS(2325), - [anon_sym_has2] = ACTIONS(2325), - [anon_sym_not_DASHhas2] = ACTIONS(2325), - [anon_sym_starts_DASHwith2] = ACTIONS(2325), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2325), - [anon_sym_ends_DASHwith2] = ACTIONS(2325), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2325), - [anon_sym_EQ_EQ2] = ACTIONS(2325), - [anon_sym_BANG_EQ2] = ACTIONS(2325), - [anon_sym_LT2] = ACTIONS(2327), - [anon_sym_LT_EQ2] = ACTIONS(2325), - [anon_sym_GT_EQ2] = ACTIONS(2325), - [anon_sym_EQ_TILDE2] = ACTIONS(2325), - [anon_sym_BANG_TILDE2] = ACTIONS(2325), - [anon_sym_like2] = ACTIONS(2325), - [anon_sym_not_DASHlike2] = ACTIONS(2325), - [anon_sym_LPAREN2] = ACTIONS(2325), - [anon_sym_STAR_STAR2] = ACTIONS(2325), - [anon_sym_PLUS_PLUS2] = ACTIONS(2325), - [anon_sym_SLASH2] = ACTIONS(2327), - [anon_sym_mod2] = ACTIONS(2325), - [anon_sym_SLASH_SLASH2] = ACTIONS(2325), - [anon_sym_PLUS2] = ACTIONS(2327), - [anon_sym_bit_DASHshl2] = ACTIONS(2325), - [anon_sym_bit_DASHshr2] = ACTIONS(2325), - [anon_sym_bit_DASHand2] = ACTIONS(2325), - [anon_sym_bit_DASHxor2] = ACTIONS(2325), - [anon_sym_bit_DASHor2] = ACTIONS(2325), - [anon_sym_err_GT] = ACTIONS(2327), - [anon_sym_out_GT] = ACTIONS(2327), - [anon_sym_e_GT] = ACTIONS(2327), - [anon_sym_o_GT] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT] = ACTIONS(2327), - [anon_sym_err_GT_GT] = ACTIONS(2325), - [anon_sym_out_GT_GT] = ACTIONS(2325), - [anon_sym_e_GT_GT] = ACTIONS(2325), - [anon_sym_o_GT_GT] = ACTIONS(2325), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2325), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2325), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2325), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2325), - [sym__unquoted_pattern] = ACTIONS(2327), + [STATE(768)] = { + [sym_comment] = STATE(768), + [anon_sym_in] = ACTIONS(2385), + [sym__newline] = ACTIONS(2385), + [anon_sym_SEMI] = ACTIONS(2385), + [anon_sym_PIPE] = ACTIONS(2385), + [anon_sym_err_GT_PIPE] = ACTIONS(2385), + [anon_sym_out_GT_PIPE] = ACTIONS(2385), + [anon_sym_e_GT_PIPE] = ACTIONS(2385), + [anon_sym_o_GT_PIPE] = ACTIONS(2385), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2385), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2385), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2385), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2385), + [anon_sym_RPAREN] = ACTIONS(2385), + [anon_sym_GT2] = ACTIONS(2387), + [anon_sym_DASH2] = ACTIONS(2385), + [anon_sym_LBRACE] = ACTIONS(2385), + [anon_sym_RBRACE] = ACTIONS(2385), + [anon_sym_STAR2] = ACTIONS(2387), + [anon_sym_and2] = ACTIONS(2385), + [anon_sym_xor2] = ACTIONS(2385), + [anon_sym_or2] = ACTIONS(2385), + [anon_sym_not_DASHin2] = ACTIONS(2385), + [anon_sym_has2] = ACTIONS(2385), + [anon_sym_not_DASHhas2] = ACTIONS(2385), + [anon_sym_starts_DASHwith2] = ACTIONS(2385), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2385), + [anon_sym_ends_DASHwith2] = ACTIONS(2385), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2385), + [anon_sym_EQ_EQ2] = ACTIONS(2385), + [anon_sym_BANG_EQ2] = ACTIONS(2385), + [anon_sym_LT2] = ACTIONS(2387), + [anon_sym_LT_EQ2] = ACTIONS(2385), + [anon_sym_GT_EQ2] = ACTIONS(2385), + [anon_sym_EQ_TILDE2] = ACTIONS(2385), + [anon_sym_BANG_TILDE2] = ACTIONS(2385), + [anon_sym_like2] = ACTIONS(2385), + [anon_sym_not_DASHlike2] = ACTIONS(2385), + [anon_sym_LPAREN2] = ACTIONS(2385), + [anon_sym_STAR_STAR2] = ACTIONS(2385), + [anon_sym_PLUS_PLUS2] = ACTIONS(2385), + [anon_sym_SLASH2] = ACTIONS(2387), + [anon_sym_mod2] = ACTIONS(2385), + [anon_sym_SLASH_SLASH2] = ACTIONS(2385), + [anon_sym_PLUS2] = ACTIONS(2387), + [anon_sym_bit_DASHshl2] = ACTIONS(2385), + [anon_sym_bit_DASHshr2] = ACTIONS(2385), + [anon_sym_bit_DASHand2] = ACTIONS(2385), + [anon_sym_bit_DASHxor2] = ACTIONS(2385), + [anon_sym_bit_DASHor2] = ACTIONS(2385), + [anon_sym_err_GT] = ACTIONS(2387), + [anon_sym_out_GT] = ACTIONS(2387), + [anon_sym_e_GT] = ACTIONS(2387), + [anon_sym_o_GT] = ACTIONS(2387), + [anon_sym_err_PLUSout_GT] = ACTIONS(2387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2387), + [anon_sym_o_PLUSe_GT] = ACTIONS(2387), + [anon_sym_e_PLUSo_GT] = ACTIONS(2387), + [anon_sym_err_GT_GT] = ACTIONS(2385), + [anon_sym_out_GT_GT] = ACTIONS(2385), + [anon_sym_e_GT_GT] = ACTIONS(2385), + [anon_sym_o_GT_GT] = ACTIONS(2385), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2385), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2385), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2385), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2385), + [sym__unquoted_pattern] = ACTIONS(2387), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(804)] = { - [sym_comment] = STATE(804), - [anon_sym_if] = ACTIONS(2329), - [anon_sym_in] = ACTIONS(2329), - [sym__newline] = ACTIONS(2329), - [anon_sym_SEMI] = ACTIONS(2329), - [anon_sym_PIPE] = ACTIONS(2329), - [anon_sym_err_GT_PIPE] = ACTIONS(2329), - [anon_sym_out_GT_PIPE] = ACTIONS(2329), - [anon_sym_e_GT_PIPE] = ACTIONS(2329), - [anon_sym_o_GT_PIPE] = ACTIONS(2329), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2329), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2329), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2329), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2329), - [anon_sym_RPAREN] = ACTIONS(2329), - [anon_sym_GT2] = ACTIONS(2331), - [anon_sym_DASH2] = ACTIONS(2329), - [anon_sym_LBRACE] = ACTIONS(2329), - [anon_sym_RBRACE] = ACTIONS(2329), - [anon_sym_EQ_GT] = ACTIONS(2329), - [anon_sym_STAR2] = ACTIONS(2331), - [anon_sym_and2] = ACTIONS(2329), - [anon_sym_xor2] = ACTIONS(2329), - [anon_sym_or2] = ACTIONS(2329), - [anon_sym_not_DASHin2] = ACTIONS(2329), - [anon_sym_has2] = ACTIONS(2329), - [anon_sym_not_DASHhas2] = ACTIONS(2329), - [anon_sym_starts_DASHwith2] = ACTIONS(2329), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2329), - [anon_sym_ends_DASHwith2] = ACTIONS(2329), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2329), - [anon_sym_EQ_EQ2] = ACTIONS(2329), - [anon_sym_BANG_EQ2] = ACTIONS(2329), - [anon_sym_LT2] = ACTIONS(2331), - [anon_sym_LT_EQ2] = ACTIONS(2329), - [anon_sym_GT_EQ2] = ACTIONS(2329), - [anon_sym_EQ_TILDE2] = ACTIONS(2329), - [anon_sym_BANG_TILDE2] = ACTIONS(2329), - [anon_sym_like2] = ACTIONS(2329), - [anon_sym_not_DASHlike2] = ACTIONS(2329), - [anon_sym_STAR_STAR2] = ACTIONS(2329), - [anon_sym_PLUS_PLUS2] = ACTIONS(2329), - [anon_sym_SLASH2] = ACTIONS(2331), - [anon_sym_mod2] = ACTIONS(2329), - [anon_sym_SLASH_SLASH2] = ACTIONS(2329), - [anon_sym_PLUS2] = ACTIONS(2331), - [anon_sym_bit_DASHshl2] = ACTIONS(2329), - [anon_sym_bit_DASHshr2] = ACTIONS(2329), - [anon_sym_bit_DASHand2] = ACTIONS(2329), - [anon_sym_bit_DASHxor2] = ACTIONS(2329), - [anon_sym_bit_DASHor2] = ACTIONS(2329), - [anon_sym_err_GT] = ACTIONS(2331), - [anon_sym_out_GT] = ACTIONS(2331), - [anon_sym_e_GT] = ACTIONS(2331), - [anon_sym_o_GT] = ACTIONS(2331), - [anon_sym_err_PLUSout_GT] = ACTIONS(2331), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2331), - [anon_sym_o_PLUSe_GT] = ACTIONS(2331), - [anon_sym_e_PLUSo_GT] = ACTIONS(2331), - [anon_sym_err_GT_GT] = ACTIONS(2329), - [anon_sym_out_GT_GT] = ACTIONS(2329), - [anon_sym_e_GT_GT] = ACTIONS(2329), - [anon_sym_o_GT_GT] = ACTIONS(2329), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2329), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2329), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2329), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2329), + [STATE(769)] = { + [aux_sym__repeat_newline] = STATE(998), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(769), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(805)] = { - [sym_comment] = STATE(805), - [anon_sym_if] = ACTIONS(2333), - [anon_sym_in] = ACTIONS(2333), - [sym__newline] = ACTIONS(2333), - [anon_sym_SEMI] = ACTIONS(2333), - [anon_sym_PIPE] = ACTIONS(2333), - [anon_sym_err_GT_PIPE] = ACTIONS(2333), - [anon_sym_out_GT_PIPE] = ACTIONS(2333), - [anon_sym_e_GT_PIPE] = ACTIONS(2333), - [anon_sym_o_GT_PIPE] = ACTIONS(2333), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2333), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2333), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2333), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2333), - [anon_sym_RPAREN] = ACTIONS(2333), - [anon_sym_GT2] = ACTIONS(2335), - [anon_sym_DASH2] = ACTIONS(2333), - [anon_sym_LBRACE] = ACTIONS(2333), - [anon_sym_RBRACE] = ACTIONS(2333), - [anon_sym_EQ_GT] = ACTIONS(2333), - [anon_sym_STAR2] = ACTIONS(2335), - [anon_sym_and2] = ACTIONS(2333), - [anon_sym_xor2] = ACTIONS(2333), - [anon_sym_or2] = ACTIONS(2333), - [anon_sym_not_DASHin2] = ACTIONS(2333), - [anon_sym_has2] = ACTIONS(2333), - [anon_sym_not_DASHhas2] = ACTIONS(2333), - [anon_sym_starts_DASHwith2] = ACTIONS(2333), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2333), - [anon_sym_ends_DASHwith2] = ACTIONS(2333), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2333), - [anon_sym_EQ_EQ2] = ACTIONS(2333), - [anon_sym_BANG_EQ2] = ACTIONS(2333), - [anon_sym_LT2] = ACTIONS(2335), - [anon_sym_LT_EQ2] = ACTIONS(2333), - [anon_sym_GT_EQ2] = ACTIONS(2333), - [anon_sym_EQ_TILDE2] = ACTIONS(2333), - [anon_sym_BANG_TILDE2] = ACTIONS(2333), - [anon_sym_like2] = ACTIONS(2333), - [anon_sym_not_DASHlike2] = ACTIONS(2333), - [anon_sym_STAR_STAR2] = ACTIONS(2333), - [anon_sym_PLUS_PLUS2] = ACTIONS(2333), - [anon_sym_SLASH2] = ACTIONS(2335), - [anon_sym_mod2] = ACTIONS(2333), - [anon_sym_SLASH_SLASH2] = ACTIONS(2333), - [anon_sym_PLUS2] = ACTIONS(2335), - [anon_sym_bit_DASHshl2] = ACTIONS(2333), - [anon_sym_bit_DASHshr2] = ACTIONS(2333), - [anon_sym_bit_DASHand2] = ACTIONS(2333), - [anon_sym_bit_DASHxor2] = ACTIONS(2333), - [anon_sym_bit_DASHor2] = ACTIONS(2333), - [anon_sym_err_GT] = ACTIONS(2335), - [anon_sym_out_GT] = ACTIONS(2335), - [anon_sym_e_GT] = ACTIONS(2335), - [anon_sym_o_GT] = ACTIONS(2335), - [anon_sym_err_PLUSout_GT] = ACTIONS(2335), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2335), - [anon_sym_o_PLUSe_GT] = ACTIONS(2335), - [anon_sym_e_PLUSo_GT] = ACTIONS(2335), - [anon_sym_err_GT_GT] = ACTIONS(2333), - [anon_sym_out_GT_GT] = ACTIONS(2333), - [anon_sym_e_GT_GT] = ACTIONS(2333), - [anon_sym_o_GT_GT] = ACTIONS(2333), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2333), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2333), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2333), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2333), + [STATE(770)] = { + [sym_comment] = STATE(770), + [anon_sym_if] = ACTIONS(2389), + [anon_sym_in] = ACTIONS(2389), + [sym__newline] = ACTIONS(2389), + [anon_sym_SEMI] = ACTIONS(2389), + [anon_sym_PIPE] = ACTIONS(2389), + [anon_sym_err_GT_PIPE] = ACTIONS(2389), + [anon_sym_out_GT_PIPE] = ACTIONS(2389), + [anon_sym_e_GT_PIPE] = ACTIONS(2389), + [anon_sym_o_GT_PIPE] = ACTIONS(2389), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2389), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2389), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2389), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2389), + [anon_sym_RPAREN] = ACTIONS(2389), + [anon_sym_GT2] = ACTIONS(2391), + [anon_sym_DASH2] = ACTIONS(2389), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_RBRACE] = ACTIONS(2389), + [anon_sym_EQ_GT] = ACTIONS(2389), + [anon_sym_STAR2] = ACTIONS(2391), + [anon_sym_and2] = ACTIONS(2389), + [anon_sym_xor2] = ACTIONS(2389), + [anon_sym_or2] = ACTIONS(2389), + [anon_sym_not_DASHin2] = ACTIONS(2389), + [anon_sym_has2] = ACTIONS(2389), + [anon_sym_not_DASHhas2] = ACTIONS(2389), + [anon_sym_starts_DASHwith2] = ACTIONS(2389), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2389), + [anon_sym_ends_DASHwith2] = ACTIONS(2389), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2389), + [anon_sym_EQ_EQ2] = ACTIONS(2389), + [anon_sym_BANG_EQ2] = ACTIONS(2389), + [anon_sym_LT2] = ACTIONS(2391), + [anon_sym_LT_EQ2] = ACTIONS(2389), + [anon_sym_GT_EQ2] = ACTIONS(2389), + [anon_sym_EQ_TILDE2] = ACTIONS(2389), + [anon_sym_BANG_TILDE2] = ACTIONS(2389), + [anon_sym_like2] = ACTIONS(2389), + [anon_sym_not_DASHlike2] = ACTIONS(2389), + [anon_sym_STAR_STAR2] = ACTIONS(2389), + [anon_sym_PLUS_PLUS2] = ACTIONS(2389), + [anon_sym_SLASH2] = ACTIONS(2391), + [anon_sym_mod2] = ACTIONS(2389), + [anon_sym_SLASH_SLASH2] = ACTIONS(2389), + [anon_sym_PLUS2] = ACTIONS(2391), + [anon_sym_bit_DASHshl2] = ACTIONS(2389), + [anon_sym_bit_DASHshr2] = ACTIONS(2389), + [anon_sym_bit_DASHand2] = ACTIONS(2389), + [anon_sym_bit_DASHxor2] = ACTIONS(2389), + [anon_sym_bit_DASHor2] = ACTIONS(2389), + [anon_sym_err_GT] = ACTIONS(2391), + [anon_sym_out_GT] = ACTIONS(2391), + [anon_sym_e_GT] = ACTIONS(2391), + [anon_sym_o_GT] = ACTIONS(2391), + [anon_sym_err_PLUSout_GT] = ACTIONS(2391), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2391), + [anon_sym_o_PLUSe_GT] = ACTIONS(2391), + [anon_sym_e_PLUSo_GT] = ACTIONS(2391), + [anon_sym_err_GT_GT] = ACTIONS(2389), + [anon_sym_out_GT_GT] = ACTIONS(2389), + [anon_sym_e_GT_GT] = ACTIONS(2389), + [anon_sym_o_GT_GT] = ACTIONS(2389), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2389), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2389), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2389), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2389), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(806)] = { - [sym_comment] = STATE(806), - [anon_sym_if] = ACTIONS(2136), - [anon_sym_in] = ACTIONS(2136), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_RPAREN] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2136), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_EQ_GT] = ACTIONS(2136), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2136), - [anon_sym_xor2] = ACTIONS(2136), - [anon_sym_or2] = ACTIONS(2136), - [anon_sym_not_DASHin2] = ACTIONS(2136), - [anon_sym_has2] = ACTIONS(2136), - [anon_sym_not_DASHhas2] = ACTIONS(2136), - [anon_sym_starts_DASHwith2] = ACTIONS(2136), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2136), - [anon_sym_ends_DASHwith2] = ACTIONS(2136), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2136), - [anon_sym_EQ_EQ2] = ACTIONS(2136), - [anon_sym_BANG_EQ2] = ACTIONS(2136), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2136), - [anon_sym_GT_EQ2] = ACTIONS(2136), - [anon_sym_EQ_TILDE2] = ACTIONS(2136), - [anon_sym_BANG_TILDE2] = ACTIONS(2136), - [anon_sym_like2] = ACTIONS(2136), - [anon_sym_not_DASHlike2] = ACTIONS(2136), - [anon_sym_STAR_STAR2] = ACTIONS(2136), - [anon_sym_PLUS_PLUS2] = ACTIONS(2136), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2136), - [anon_sym_SLASH_SLASH2] = ACTIONS(2136), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2136), - [anon_sym_bit_DASHshr2] = ACTIONS(2136), - [anon_sym_bit_DASHand2] = ACTIONS(2136), - [anon_sym_bit_DASHxor2] = ACTIONS(2136), - [anon_sym_bit_DASHor2] = ACTIONS(2136), - [anon_sym_err_GT] = ACTIONS(2138), - [anon_sym_out_GT] = ACTIONS(2138), - [anon_sym_e_GT] = ACTIONS(2138), - [anon_sym_o_GT] = ACTIONS(2138), - [anon_sym_err_PLUSout_GT] = ACTIONS(2138), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2138), - [anon_sym_o_PLUSe_GT] = ACTIONS(2138), - [anon_sym_e_PLUSo_GT] = ACTIONS(2138), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), + [STATE(771)] = { + [aux_sym__repeat_newline] = STATE(1001), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(771), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(807)] = { - [sym_comment] = STATE(807), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_in] = ACTIONS(2144), - [sym__newline] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2144), - [anon_sym_err_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_GT_PIPE] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2144), - [anon_sym_RPAREN] = ACTIONS(2144), - [anon_sym_GT2] = ACTIONS(2146), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_RBRACE] = ACTIONS(2144), - [anon_sym_EQ_GT] = ACTIONS(2144), - [anon_sym_STAR2] = ACTIONS(2146), - [anon_sym_and2] = ACTIONS(2144), - [anon_sym_xor2] = ACTIONS(2144), - [anon_sym_or2] = ACTIONS(2144), - [anon_sym_not_DASHin2] = ACTIONS(2144), - [anon_sym_has2] = ACTIONS(2144), - [anon_sym_not_DASHhas2] = ACTIONS(2144), - [anon_sym_starts_DASHwith2] = ACTIONS(2144), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2144), - [anon_sym_ends_DASHwith2] = ACTIONS(2144), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2144), - [anon_sym_EQ_EQ2] = ACTIONS(2144), - [anon_sym_BANG_EQ2] = ACTIONS(2144), - [anon_sym_LT2] = ACTIONS(2146), - [anon_sym_LT_EQ2] = ACTIONS(2144), - [anon_sym_GT_EQ2] = ACTIONS(2144), - [anon_sym_EQ_TILDE2] = ACTIONS(2144), - [anon_sym_BANG_TILDE2] = ACTIONS(2144), - [anon_sym_like2] = ACTIONS(2144), - [anon_sym_not_DASHlike2] = ACTIONS(2144), - [anon_sym_STAR_STAR2] = ACTIONS(2144), - [anon_sym_PLUS_PLUS2] = ACTIONS(2144), - [anon_sym_SLASH2] = ACTIONS(2146), - [anon_sym_mod2] = ACTIONS(2144), - [anon_sym_SLASH_SLASH2] = ACTIONS(2144), - [anon_sym_PLUS2] = ACTIONS(2146), - [anon_sym_bit_DASHshl2] = ACTIONS(2144), - [anon_sym_bit_DASHshr2] = ACTIONS(2144), - [anon_sym_bit_DASHand2] = ACTIONS(2144), - [anon_sym_bit_DASHxor2] = ACTIONS(2144), - [anon_sym_bit_DASHor2] = ACTIONS(2144), - [anon_sym_err_GT] = ACTIONS(2146), - [anon_sym_out_GT] = ACTIONS(2146), - [anon_sym_e_GT] = ACTIONS(2146), - [anon_sym_o_GT] = ACTIONS(2146), - [anon_sym_err_PLUSout_GT] = ACTIONS(2146), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2146), - [anon_sym_o_PLUSe_GT] = ACTIONS(2146), - [anon_sym_e_PLUSo_GT] = ACTIONS(2146), - [anon_sym_err_GT_GT] = ACTIONS(2144), - [anon_sym_out_GT_GT] = ACTIONS(2144), - [anon_sym_e_GT_GT] = ACTIONS(2144), - [anon_sym_o_GT_GT] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2144), + [STATE(772)] = { + [sym_comment] = STATE(772), + [anon_sym_if] = ACTIONS(2134), + [anon_sym_in] = ACTIONS(2134), + [sym__newline] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_err_GT_PIPE] = ACTIONS(2134), + [anon_sym_out_GT_PIPE] = ACTIONS(2134), + [anon_sym_e_GT_PIPE] = ACTIONS(2134), + [anon_sym_o_GT_PIPE] = ACTIONS(2134), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2134), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2134), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2134), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2134), + [anon_sym_RPAREN] = ACTIONS(2134), + [anon_sym_GT2] = ACTIONS(2136), + [anon_sym_DASH2] = ACTIONS(2134), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_RBRACE] = ACTIONS(2134), + [anon_sym_EQ_GT] = ACTIONS(2134), + [anon_sym_STAR2] = ACTIONS(2136), + [anon_sym_and2] = ACTIONS(2134), + [anon_sym_xor2] = ACTIONS(2134), + [anon_sym_or2] = ACTIONS(2134), + [anon_sym_not_DASHin2] = ACTIONS(2134), + [anon_sym_has2] = ACTIONS(2134), + [anon_sym_not_DASHhas2] = ACTIONS(2134), + [anon_sym_starts_DASHwith2] = ACTIONS(2134), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), + [anon_sym_ends_DASHwith2] = ACTIONS(2134), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), + [anon_sym_EQ_EQ2] = ACTIONS(2134), + [anon_sym_BANG_EQ2] = ACTIONS(2134), + [anon_sym_LT2] = ACTIONS(2136), + [anon_sym_LT_EQ2] = ACTIONS(2134), + [anon_sym_GT_EQ2] = ACTIONS(2134), + [anon_sym_EQ_TILDE2] = ACTIONS(2134), + [anon_sym_BANG_TILDE2] = ACTIONS(2134), + [anon_sym_like2] = ACTIONS(2134), + [anon_sym_not_DASHlike2] = ACTIONS(2134), + [anon_sym_STAR_STAR2] = ACTIONS(2134), + [anon_sym_PLUS_PLUS2] = ACTIONS(2134), + [anon_sym_SLASH2] = ACTIONS(2136), + [anon_sym_mod2] = ACTIONS(2134), + [anon_sym_SLASH_SLASH2] = ACTIONS(2134), + [anon_sym_PLUS2] = ACTIONS(2136), + [anon_sym_bit_DASHshl2] = ACTIONS(2134), + [anon_sym_bit_DASHshr2] = ACTIONS(2134), + [anon_sym_bit_DASHand2] = ACTIONS(2134), + [anon_sym_bit_DASHxor2] = ACTIONS(2134), + [anon_sym_bit_DASHor2] = ACTIONS(2134), + [anon_sym_err_GT] = ACTIONS(2136), + [anon_sym_out_GT] = ACTIONS(2136), + [anon_sym_e_GT] = ACTIONS(2136), + [anon_sym_o_GT] = ACTIONS(2136), + [anon_sym_err_PLUSout_GT] = ACTIONS(2136), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2136), + [anon_sym_o_PLUSe_GT] = ACTIONS(2136), + [anon_sym_e_PLUSo_GT] = ACTIONS(2136), + [anon_sym_err_GT_GT] = ACTIONS(2134), + [anon_sym_out_GT_GT] = ACTIONS(2134), + [anon_sym_e_GT_GT] = ACTIONS(2134), + [anon_sym_o_GT_GT] = ACTIONS(2134), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2134), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2134), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2134), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2134), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(808)] = { - [sym_expr_unary] = STATE(1282), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_binary] = STATE(1282), - [sym__expr_binary_expression] = STATE(1299), - [sym_expr_parenthesized] = STATE(925), - [sym_val_range] = STATE(1282), - [sym__val_range] = STATE(4556), - [sym__value] = STATE(1282), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(968), - [sym_val_variable] = STATE(912), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(472), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_unquoted] = STATE(1039), - [sym__unquoted_with_expr] = STATE(1302), - [sym__unquoted_anonymous_prefix] = STATE(4556), - [sym_comment] = STATE(808), - [anon_sym_true] = ACTIONS(2172), - [anon_sym_false] = ACTIONS(2172), - [anon_sym_null] = ACTIONS(2174), - [aux_sym_cmd_identifier_token3] = ACTIONS(2176), - [aux_sym_cmd_identifier_token4] = ACTIONS(2176), - [aux_sym_cmd_identifier_token5] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(59), - [anon_sym_LPAREN] = ACTIONS(61), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_DOT_DOT] = ACTIONS(2178), - [aux_sym_expr_unary_token1] = ACTIONS(73), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2180), - [anon_sym_DOT_DOT_LT] = ACTIONS(2180), - [aux_sym__val_number_decimal_token1] = ACTIONS(2182), - [aux_sym__val_number_decimal_token2] = ACTIONS(2184), - [aux_sym__val_number_decimal_token3] = ACTIONS(2186), - [aux_sym__val_number_decimal_token4] = ACTIONS(2186), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2188), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2190), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), - }, - [STATE(809)] = { - [sym_comment] = STATE(809), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_in] = ACTIONS(2152), - [sym__newline] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_PIPE] = ACTIONS(2152), - [anon_sym_err_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_GT_PIPE] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2152), - [anon_sym_RPAREN] = ACTIONS(2152), - [anon_sym_GT2] = ACTIONS(2154), - [anon_sym_DASH2] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_EQ_GT] = ACTIONS(2152), - [anon_sym_STAR2] = ACTIONS(2154), - [anon_sym_and2] = ACTIONS(2152), - [anon_sym_xor2] = ACTIONS(2152), - [anon_sym_or2] = ACTIONS(2152), - [anon_sym_not_DASHin2] = ACTIONS(2152), - [anon_sym_has2] = ACTIONS(2152), - [anon_sym_not_DASHhas2] = ACTIONS(2152), - [anon_sym_starts_DASHwith2] = ACTIONS(2152), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2152), - [anon_sym_ends_DASHwith2] = ACTIONS(2152), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2152), - [anon_sym_EQ_EQ2] = ACTIONS(2152), - [anon_sym_BANG_EQ2] = ACTIONS(2152), - [anon_sym_LT2] = ACTIONS(2154), - [anon_sym_LT_EQ2] = ACTIONS(2152), - [anon_sym_GT_EQ2] = ACTIONS(2152), - [anon_sym_EQ_TILDE2] = ACTIONS(2152), - [anon_sym_BANG_TILDE2] = ACTIONS(2152), - [anon_sym_like2] = ACTIONS(2152), - [anon_sym_not_DASHlike2] = ACTIONS(2152), - [anon_sym_STAR_STAR2] = ACTIONS(2152), - [anon_sym_PLUS_PLUS2] = ACTIONS(2152), - [anon_sym_SLASH2] = ACTIONS(2154), - [anon_sym_mod2] = ACTIONS(2152), - [anon_sym_SLASH_SLASH2] = ACTIONS(2152), - [anon_sym_PLUS2] = ACTIONS(2154), - [anon_sym_bit_DASHshl2] = ACTIONS(2152), - [anon_sym_bit_DASHshr2] = ACTIONS(2152), - [anon_sym_bit_DASHand2] = ACTIONS(2152), - [anon_sym_bit_DASHxor2] = ACTIONS(2152), - [anon_sym_bit_DASHor2] = ACTIONS(2152), - [anon_sym_err_GT] = ACTIONS(2154), - [anon_sym_out_GT] = ACTIONS(2154), - [anon_sym_e_GT] = ACTIONS(2154), - [anon_sym_o_GT] = ACTIONS(2154), - [anon_sym_err_PLUSout_GT] = ACTIONS(2154), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2154), - [anon_sym_o_PLUSe_GT] = ACTIONS(2154), - [anon_sym_e_PLUSo_GT] = ACTIONS(2154), - [anon_sym_err_GT_GT] = ACTIONS(2152), - [anon_sym_out_GT_GT] = ACTIONS(2152), - [anon_sym_e_GT_GT] = ACTIONS(2152), - [anon_sym_o_GT_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2152), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(810)] = { - [aux_sym__repeat_newline] = STATE(1104), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(810), - [anon_sym_in] = ACTIONS(2289), - [sym__newline] = ACTIONS(2289), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_err_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_GT_PIPE] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), - [anon_sym_RPAREN] = ACTIONS(2289), - [anon_sym_GT2] = ACTIONS(2291), - [anon_sym_DASH2] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_STAR2] = ACTIONS(2291), - [anon_sym_and2] = ACTIONS(2289), - [anon_sym_xor2] = ACTIONS(2289), - [anon_sym_or2] = ACTIONS(2289), - [anon_sym_not_DASHin2] = ACTIONS(2289), - [anon_sym_has2] = ACTIONS(2289), - [anon_sym_not_DASHhas2] = ACTIONS(2289), - [anon_sym_starts_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), - [anon_sym_ends_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), - [anon_sym_EQ_EQ2] = ACTIONS(2289), - [anon_sym_BANG_EQ2] = ACTIONS(2289), - [anon_sym_LT2] = ACTIONS(2291), - [anon_sym_LT_EQ2] = ACTIONS(2289), - [anon_sym_GT_EQ2] = ACTIONS(2289), - [anon_sym_EQ_TILDE2] = ACTIONS(2289), - [anon_sym_BANG_TILDE2] = ACTIONS(2289), - [anon_sym_like2] = ACTIONS(2289), - [anon_sym_not_DASHlike2] = ACTIONS(2289), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2289), - [anon_sym_PLUS_PLUS2] = ACTIONS(2289), - [anon_sym_SLASH2] = ACTIONS(2291), - [anon_sym_mod2] = ACTIONS(2289), - [anon_sym_SLASH_SLASH2] = ACTIONS(2289), - [anon_sym_PLUS2] = ACTIONS(2291), - [anon_sym_bit_DASHshl2] = ACTIONS(2289), - [anon_sym_bit_DASHshr2] = ACTIONS(2289), - [anon_sym_bit_DASHand2] = ACTIONS(2289), - [anon_sym_bit_DASHxor2] = ACTIONS(2289), - [anon_sym_bit_DASHor2] = ACTIONS(2289), - [anon_sym_err_GT] = ACTIONS(2291), - [anon_sym_out_GT] = ACTIONS(2291), - [anon_sym_e_GT] = ACTIONS(2291), - [anon_sym_o_GT] = ACTIONS(2291), - [anon_sym_err_PLUSout_GT] = ACTIONS(2291), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), - [anon_sym_o_PLUSe_GT] = ACTIONS(2291), - [anon_sym_e_PLUSo_GT] = ACTIONS(2291), - [anon_sym_err_GT_GT] = ACTIONS(2289), - [anon_sym_out_GT_GT] = ACTIONS(2289), - [anon_sym_e_GT_GT] = ACTIONS(2289), - [anon_sym_o_GT_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(811)] = { - [sym_comment] = STATE(811), - [anon_sym_if] = ACTIONS(2337), - [anon_sym_in] = ACTIONS(2337), - [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_RPAREN] = ACTIONS(2337), - [anon_sym_GT2] = ACTIONS(2339), - [anon_sym_DASH2] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_RBRACE] = ACTIONS(2337), - [anon_sym_EQ_GT] = ACTIONS(2337), - [anon_sym_STAR2] = ACTIONS(2339), - [anon_sym_and2] = ACTIONS(2337), - [anon_sym_xor2] = ACTIONS(2337), - [anon_sym_or2] = ACTIONS(2337), - [anon_sym_not_DASHin2] = ACTIONS(2337), - [anon_sym_has2] = ACTIONS(2337), - [anon_sym_not_DASHhas2] = ACTIONS(2337), - [anon_sym_starts_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2337), - [anon_sym_ends_DASHwith2] = ACTIONS(2337), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2337), - [anon_sym_EQ_EQ2] = ACTIONS(2337), - [anon_sym_BANG_EQ2] = ACTIONS(2337), - [anon_sym_LT2] = ACTIONS(2339), - [anon_sym_LT_EQ2] = ACTIONS(2337), - [anon_sym_GT_EQ2] = ACTIONS(2337), - [anon_sym_EQ_TILDE2] = ACTIONS(2337), - [anon_sym_BANG_TILDE2] = ACTIONS(2337), - [anon_sym_like2] = ACTIONS(2337), - [anon_sym_not_DASHlike2] = ACTIONS(2337), - [anon_sym_STAR_STAR2] = ACTIONS(2337), - [anon_sym_PLUS_PLUS2] = ACTIONS(2337), - [anon_sym_SLASH2] = ACTIONS(2339), - [anon_sym_mod2] = ACTIONS(2337), - [anon_sym_SLASH_SLASH2] = ACTIONS(2337), - [anon_sym_PLUS2] = ACTIONS(2339), - [anon_sym_bit_DASHshl2] = ACTIONS(2337), - [anon_sym_bit_DASHshr2] = ACTIONS(2337), - [anon_sym_bit_DASHand2] = ACTIONS(2337), - [anon_sym_bit_DASHxor2] = ACTIONS(2337), - [anon_sym_bit_DASHor2] = ACTIONS(2337), - [anon_sym_err_GT] = ACTIONS(2339), - [anon_sym_out_GT] = ACTIONS(2339), - [anon_sym_e_GT] = ACTIONS(2339), - [anon_sym_o_GT] = ACTIONS(2339), - [anon_sym_err_PLUSout_GT] = ACTIONS(2339), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2339), - [anon_sym_o_PLUSe_GT] = ACTIONS(2339), - [anon_sym_e_PLUSo_GT] = ACTIONS(2339), - [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), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(812)] = { - [sym_comment] = STATE(812), - [anon_sym_if] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(2341), - [sym__newline] = ACTIONS(2341), - [anon_sym_SEMI] = ACTIONS(2341), - [anon_sym_PIPE] = ACTIONS(2341), - [anon_sym_err_GT_PIPE] = ACTIONS(2341), - [anon_sym_out_GT_PIPE] = ACTIONS(2341), - [anon_sym_e_GT_PIPE] = ACTIONS(2341), - [anon_sym_o_GT_PIPE] = ACTIONS(2341), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2341), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2341), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2341), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2341), - [anon_sym_RPAREN] = ACTIONS(2341), - [anon_sym_GT2] = ACTIONS(2343), - [anon_sym_DASH2] = ACTIONS(2341), - [anon_sym_LBRACE] = ACTIONS(2341), - [anon_sym_RBRACE] = ACTIONS(2341), - [anon_sym_EQ_GT] = ACTIONS(2341), - [anon_sym_STAR2] = ACTIONS(2343), - [anon_sym_and2] = ACTIONS(2341), - [anon_sym_xor2] = ACTIONS(2341), - [anon_sym_or2] = ACTIONS(2341), - [anon_sym_not_DASHin2] = ACTIONS(2341), - [anon_sym_has2] = ACTIONS(2341), - [anon_sym_not_DASHhas2] = ACTIONS(2341), - [anon_sym_starts_DASHwith2] = ACTIONS(2341), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2341), - [anon_sym_ends_DASHwith2] = ACTIONS(2341), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2341), - [anon_sym_EQ_EQ2] = ACTIONS(2341), - [anon_sym_BANG_EQ2] = ACTIONS(2341), - [anon_sym_LT2] = ACTIONS(2343), - [anon_sym_LT_EQ2] = ACTIONS(2341), - [anon_sym_GT_EQ2] = ACTIONS(2341), - [anon_sym_EQ_TILDE2] = ACTIONS(2341), - [anon_sym_BANG_TILDE2] = ACTIONS(2341), - [anon_sym_like2] = ACTIONS(2341), - [anon_sym_not_DASHlike2] = ACTIONS(2341), - [anon_sym_STAR_STAR2] = ACTIONS(2341), - [anon_sym_PLUS_PLUS2] = ACTIONS(2341), - [anon_sym_SLASH2] = ACTIONS(2343), - [anon_sym_mod2] = ACTIONS(2341), - [anon_sym_SLASH_SLASH2] = ACTIONS(2341), - [anon_sym_PLUS2] = ACTIONS(2343), - [anon_sym_bit_DASHshl2] = ACTIONS(2341), - [anon_sym_bit_DASHshr2] = ACTIONS(2341), - [anon_sym_bit_DASHand2] = ACTIONS(2341), - [anon_sym_bit_DASHxor2] = ACTIONS(2341), - [anon_sym_bit_DASHor2] = ACTIONS(2341), - [anon_sym_err_GT] = ACTIONS(2343), - [anon_sym_out_GT] = ACTIONS(2343), - [anon_sym_e_GT] = ACTIONS(2343), - [anon_sym_o_GT] = ACTIONS(2343), - [anon_sym_err_PLUSout_GT] = ACTIONS(2343), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2343), - [anon_sym_o_PLUSe_GT] = ACTIONS(2343), - [anon_sym_e_PLUSo_GT] = ACTIONS(2343), - [anon_sym_err_GT_GT] = ACTIONS(2341), - [anon_sym_out_GT_GT] = ACTIONS(2341), - [anon_sym_e_GT_GT] = ACTIONS(2341), - [anon_sym_o_GT_GT] = ACTIONS(2341), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2341), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2341), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2341), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2341), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(813)] = { - [sym_comment] = STATE(813), - [anon_sym_if] = ACTIONS(2345), - [anon_sym_in] = ACTIONS(2345), - [sym__newline] = ACTIONS(2345), - [anon_sym_SEMI] = ACTIONS(2345), - [anon_sym_PIPE] = ACTIONS(2345), - [anon_sym_err_GT_PIPE] = ACTIONS(2345), - [anon_sym_out_GT_PIPE] = ACTIONS(2345), - [anon_sym_e_GT_PIPE] = ACTIONS(2345), - [anon_sym_o_GT_PIPE] = ACTIONS(2345), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2345), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2345), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2345), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2345), - [anon_sym_RPAREN] = ACTIONS(2345), - [anon_sym_GT2] = ACTIONS(2347), - [anon_sym_DASH2] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2345), - [anon_sym_RBRACE] = ACTIONS(2345), - [anon_sym_EQ_GT] = ACTIONS(2345), - [anon_sym_STAR2] = ACTIONS(2347), - [anon_sym_and2] = ACTIONS(2345), - [anon_sym_xor2] = ACTIONS(2345), - [anon_sym_or2] = ACTIONS(2345), - [anon_sym_not_DASHin2] = ACTIONS(2345), - [anon_sym_has2] = ACTIONS(2345), - [anon_sym_not_DASHhas2] = ACTIONS(2345), - [anon_sym_starts_DASHwith2] = ACTIONS(2345), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2345), - [anon_sym_ends_DASHwith2] = ACTIONS(2345), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2345), - [anon_sym_EQ_EQ2] = ACTIONS(2345), - [anon_sym_BANG_EQ2] = ACTIONS(2345), - [anon_sym_LT2] = ACTIONS(2347), - [anon_sym_LT_EQ2] = ACTIONS(2345), - [anon_sym_GT_EQ2] = ACTIONS(2345), - [anon_sym_EQ_TILDE2] = ACTIONS(2345), - [anon_sym_BANG_TILDE2] = ACTIONS(2345), - [anon_sym_like2] = ACTIONS(2345), - [anon_sym_not_DASHlike2] = ACTIONS(2345), - [anon_sym_STAR_STAR2] = ACTIONS(2345), - [anon_sym_PLUS_PLUS2] = ACTIONS(2345), - [anon_sym_SLASH2] = ACTIONS(2347), - [anon_sym_mod2] = ACTIONS(2345), - [anon_sym_SLASH_SLASH2] = ACTIONS(2345), - [anon_sym_PLUS2] = ACTIONS(2347), - [anon_sym_bit_DASHshl2] = ACTIONS(2345), - [anon_sym_bit_DASHshr2] = ACTIONS(2345), - [anon_sym_bit_DASHand2] = ACTIONS(2345), - [anon_sym_bit_DASHxor2] = ACTIONS(2345), - [anon_sym_bit_DASHor2] = ACTIONS(2345), - [anon_sym_err_GT] = ACTIONS(2347), - [anon_sym_out_GT] = ACTIONS(2347), - [anon_sym_e_GT] = ACTIONS(2347), - [anon_sym_o_GT] = ACTIONS(2347), - [anon_sym_err_PLUSout_GT] = ACTIONS(2347), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2347), - [anon_sym_o_PLUSe_GT] = ACTIONS(2347), - [anon_sym_e_PLUSo_GT] = ACTIONS(2347), - [anon_sym_err_GT_GT] = ACTIONS(2345), - [anon_sym_out_GT_GT] = ACTIONS(2345), - [anon_sym_e_GT_GT] = ACTIONS(2345), - [anon_sym_o_GT_GT] = ACTIONS(2345), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2345), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2345), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2345), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2345), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(814)] = { - [aux_sym__repeat_newline] = STATE(1106), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(814), - [anon_sym_in] = ACTIONS(2289), - [sym__newline] = ACTIONS(2289), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_err_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_GT_PIPE] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), - [anon_sym_RPAREN] = ACTIONS(2289), - [anon_sym_GT2] = ACTIONS(2291), - [anon_sym_DASH2] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_STAR2] = ACTIONS(2291), - [anon_sym_and2] = ACTIONS(2289), - [anon_sym_xor2] = ACTIONS(2289), - [anon_sym_or2] = ACTIONS(2289), - [anon_sym_not_DASHin2] = ACTIONS(2289), - [anon_sym_has2] = ACTIONS(2289), - [anon_sym_not_DASHhas2] = ACTIONS(2289), - [anon_sym_starts_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), - [anon_sym_ends_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), - [anon_sym_EQ_EQ2] = ACTIONS(2289), - [anon_sym_BANG_EQ2] = ACTIONS(2289), - [anon_sym_LT2] = ACTIONS(2291), - [anon_sym_LT_EQ2] = ACTIONS(2289), - [anon_sym_GT_EQ2] = ACTIONS(2289), - [anon_sym_EQ_TILDE2] = ACTIONS(2289), - [anon_sym_BANG_TILDE2] = ACTIONS(2289), - [anon_sym_like2] = ACTIONS(2289), - [anon_sym_not_DASHlike2] = ACTIONS(2289), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2289), - [anon_sym_PLUS_PLUS2] = ACTIONS(2289), - [anon_sym_SLASH2] = ACTIONS(2291), - [anon_sym_mod2] = ACTIONS(2289), - [anon_sym_SLASH_SLASH2] = ACTIONS(2289), - [anon_sym_PLUS2] = ACTIONS(2291), - [anon_sym_bit_DASHshl2] = ACTIONS(2289), - [anon_sym_bit_DASHshr2] = ACTIONS(2289), - [anon_sym_bit_DASHand2] = ACTIONS(2289), - [anon_sym_bit_DASHxor2] = ACTIONS(2289), - [anon_sym_bit_DASHor2] = ACTIONS(2289), - [anon_sym_err_GT] = ACTIONS(2291), - [anon_sym_out_GT] = ACTIONS(2291), - [anon_sym_e_GT] = ACTIONS(2291), - [anon_sym_o_GT] = ACTIONS(2291), - [anon_sym_err_PLUSout_GT] = ACTIONS(2291), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), - [anon_sym_o_PLUSe_GT] = ACTIONS(2291), - [anon_sym_e_PLUSo_GT] = ACTIONS(2291), - [anon_sym_err_GT_GT] = ACTIONS(2289), - [anon_sym_out_GT_GT] = ACTIONS(2289), - [anon_sym_e_GT_GT] = ACTIONS(2289), - [anon_sym_o_GT_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(815)] = { - [sym_comment] = STATE(815), - [anon_sym_if] = ACTIONS(2349), - [anon_sym_in] = ACTIONS(2349), - [sym__newline] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(2349), - [anon_sym_err_GT_PIPE] = ACTIONS(2349), - [anon_sym_out_GT_PIPE] = ACTIONS(2349), - [anon_sym_e_GT_PIPE] = ACTIONS(2349), - [anon_sym_o_GT_PIPE] = ACTIONS(2349), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2349), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2349), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2349), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2349), - [anon_sym_RPAREN] = ACTIONS(2349), - [anon_sym_GT2] = ACTIONS(2351), - [anon_sym_DASH2] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_EQ_GT] = ACTIONS(2349), - [anon_sym_STAR2] = ACTIONS(2351), - [anon_sym_and2] = ACTIONS(2349), - [anon_sym_xor2] = ACTIONS(2349), - [anon_sym_or2] = ACTIONS(2349), - [anon_sym_not_DASHin2] = ACTIONS(2349), - [anon_sym_has2] = ACTIONS(2349), - [anon_sym_not_DASHhas2] = ACTIONS(2349), - [anon_sym_starts_DASHwith2] = ACTIONS(2349), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2349), - [anon_sym_ends_DASHwith2] = ACTIONS(2349), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2349), - [anon_sym_EQ_EQ2] = ACTIONS(2349), - [anon_sym_BANG_EQ2] = ACTIONS(2349), - [anon_sym_LT2] = ACTIONS(2351), - [anon_sym_LT_EQ2] = ACTIONS(2349), - [anon_sym_GT_EQ2] = ACTIONS(2349), - [anon_sym_EQ_TILDE2] = ACTIONS(2349), - [anon_sym_BANG_TILDE2] = ACTIONS(2349), - [anon_sym_like2] = ACTIONS(2349), - [anon_sym_not_DASHlike2] = ACTIONS(2349), - [anon_sym_STAR_STAR2] = ACTIONS(2349), - [anon_sym_PLUS_PLUS2] = ACTIONS(2349), - [anon_sym_SLASH2] = ACTIONS(2351), - [anon_sym_mod2] = ACTIONS(2349), - [anon_sym_SLASH_SLASH2] = ACTIONS(2349), - [anon_sym_PLUS2] = ACTIONS(2351), - [anon_sym_bit_DASHshl2] = ACTIONS(2349), - [anon_sym_bit_DASHshr2] = ACTIONS(2349), - [anon_sym_bit_DASHand2] = ACTIONS(2349), - [anon_sym_bit_DASHxor2] = ACTIONS(2349), - [anon_sym_bit_DASHor2] = ACTIONS(2349), - [anon_sym_err_GT] = ACTIONS(2351), - [anon_sym_out_GT] = ACTIONS(2351), - [anon_sym_e_GT] = ACTIONS(2351), - [anon_sym_o_GT] = ACTIONS(2351), - [anon_sym_err_PLUSout_GT] = ACTIONS(2351), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2351), - [anon_sym_o_PLUSe_GT] = ACTIONS(2351), - [anon_sym_e_PLUSo_GT] = ACTIONS(2351), - [anon_sym_err_GT_GT] = ACTIONS(2349), - [anon_sym_out_GT_GT] = ACTIONS(2349), - [anon_sym_e_GT_GT] = ACTIONS(2349), - [anon_sym_o_GT_GT] = ACTIONS(2349), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2349), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2349), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2349), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2349), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(816)] = { - [aux_sym__repeat_newline] = STATE(1109), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(816), - [anon_sym_in] = ACTIONS(2289), - [sym__newline] = ACTIONS(2289), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_err_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_GT_PIPE] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), - [anon_sym_RPAREN] = ACTIONS(2289), - [anon_sym_GT2] = ACTIONS(2291), - [anon_sym_DASH2] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_STAR2] = ACTIONS(2291), - [anon_sym_and2] = ACTIONS(2289), - [anon_sym_xor2] = ACTIONS(2289), - [anon_sym_or2] = ACTIONS(2289), - [anon_sym_not_DASHin2] = ACTIONS(2289), - [anon_sym_has2] = ACTIONS(2289), - [anon_sym_not_DASHhas2] = ACTIONS(2289), - [anon_sym_starts_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), - [anon_sym_ends_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), - [anon_sym_EQ_EQ2] = ACTIONS(2289), - [anon_sym_BANG_EQ2] = ACTIONS(2289), - [anon_sym_LT2] = ACTIONS(2291), - [anon_sym_LT_EQ2] = ACTIONS(2289), - [anon_sym_GT_EQ2] = ACTIONS(2289), - [anon_sym_EQ_TILDE2] = ACTIONS(2289), - [anon_sym_BANG_TILDE2] = ACTIONS(2289), - [anon_sym_like2] = ACTIONS(2289), - [anon_sym_not_DASHlike2] = ACTIONS(2289), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2289), - [anon_sym_PLUS_PLUS2] = ACTIONS(2289), - [anon_sym_SLASH2] = ACTIONS(2291), - [anon_sym_mod2] = ACTIONS(2289), - [anon_sym_SLASH_SLASH2] = ACTIONS(2289), - [anon_sym_PLUS2] = ACTIONS(2291), - [anon_sym_bit_DASHshl2] = ACTIONS(2289), - [anon_sym_bit_DASHshr2] = ACTIONS(2289), - [anon_sym_bit_DASHand2] = ACTIONS(2289), - [anon_sym_bit_DASHxor2] = ACTIONS(2289), - [anon_sym_bit_DASHor2] = ACTIONS(2289), - [anon_sym_err_GT] = ACTIONS(2291), - [anon_sym_out_GT] = ACTIONS(2291), - [anon_sym_e_GT] = ACTIONS(2291), - [anon_sym_o_GT] = ACTIONS(2291), - [anon_sym_err_PLUSout_GT] = ACTIONS(2291), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), - [anon_sym_o_PLUSe_GT] = ACTIONS(2291), - [anon_sym_e_PLUSo_GT] = ACTIONS(2291), - [anon_sym_err_GT_GT] = ACTIONS(2289), - [anon_sym_out_GT_GT] = ACTIONS(2289), - [anon_sym_e_GT_GT] = ACTIONS(2289), - [anon_sym_o_GT_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(817)] = { - [aux_sym__repeat_newline] = STATE(1112), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(817), - [anon_sym_in] = ACTIONS(2289), - [sym__newline] = ACTIONS(2289), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_err_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_GT_PIPE] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), - [anon_sym_RPAREN] = ACTIONS(2289), - [anon_sym_GT2] = ACTIONS(2291), - [anon_sym_DASH2] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_STAR2] = ACTIONS(2291), - [anon_sym_and2] = ACTIONS(2289), - [anon_sym_xor2] = ACTIONS(2289), - [anon_sym_or2] = ACTIONS(2289), - [anon_sym_not_DASHin2] = ACTIONS(2289), - [anon_sym_has2] = ACTIONS(2289), - [anon_sym_not_DASHhas2] = ACTIONS(2289), - [anon_sym_starts_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), - [anon_sym_ends_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), - [anon_sym_EQ_EQ2] = ACTIONS(2289), - [anon_sym_BANG_EQ2] = ACTIONS(2289), - [anon_sym_LT2] = ACTIONS(2291), - [anon_sym_LT_EQ2] = ACTIONS(2289), - [anon_sym_GT_EQ2] = ACTIONS(2289), - [anon_sym_EQ_TILDE2] = ACTIONS(2289), - [anon_sym_BANG_TILDE2] = ACTIONS(2289), - [anon_sym_like2] = ACTIONS(2289), - [anon_sym_not_DASHlike2] = ACTIONS(2289), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2289), - [anon_sym_PLUS_PLUS2] = ACTIONS(2289), - [anon_sym_SLASH2] = ACTIONS(2291), - [anon_sym_mod2] = ACTIONS(2289), - [anon_sym_SLASH_SLASH2] = ACTIONS(2289), - [anon_sym_PLUS2] = ACTIONS(2291), - [anon_sym_bit_DASHshl2] = ACTIONS(2289), - [anon_sym_bit_DASHshr2] = ACTIONS(2289), - [anon_sym_bit_DASHand2] = ACTIONS(2289), - [anon_sym_bit_DASHxor2] = ACTIONS(2289), - [anon_sym_bit_DASHor2] = ACTIONS(2289), - [anon_sym_err_GT] = ACTIONS(2291), - [anon_sym_out_GT] = ACTIONS(2291), - [anon_sym_e_GT] = ACTIONS(2291), - [anon_sym_o_GT] = ACTIONS(2291), - [anon_sym_err_PLUSout_GT] = ACTIONS(2291), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), - [anon_sym_o_PLUSe_GT] = ACTIONS(2291), - [anon_sym_e_PLUSo_GT] = ACTIONS(2291), - [anon_sym_err_GT_GT] = ACTIONS(2289), - [anon_sym_out_GT_GT] = ACTIONS(2289), - [anon_sym_e_GT_GT] = ACTIONS(2289), - [anon_sym_o_GT_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(818)] = { - [sym_comment] = STATE(818), - [ts_builtin_sym_end] = ACTIONS(1531), - [anon_sym_in] = ACTIONS(1531), - [sym__newline] = ACTIONS(1531), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_PIPE] = ACTIONS(1531), - [anon_sym_err_GT_PIPE] = ACTIONS(1531), - [anon_sym_out_GT_PIPE] = ACTIONS(1531), - [anon_sym_e_GT_PIPE] = ACTIONS(1531), - [anon_sym_o_GT_PIPE] = ACTIONS(1531), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1531), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1531), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1531), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1531), - [anon_sym_GT2] = ACTIONS(1529), - [anon_sym_DASH2] = ACTIONS(1531), - [anon_sym_STAR2] = ACTIONS(1529), - [anon_sym_and2] = ACTIONS(1531), - [anon_sym_xor2] = ACTIONS(1531), - [anon_sym_or2] = ACTIONS(1531), - [anon_sym_not_DASHin2] = ACTIONS(1531), - [anon_sym_has2] = ACTIONS(1531), - [anon_sym_not_DASHhas2] = ACTIONS(1531), - [anon_sym_starts_DASHwith2] = ACTIONS(1531), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1531), - [anon_sym_ends_DASHwith2] = ACTIONS(1531), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1531), - [anon_sym_EQ_EQ2] = ACTIONS(1531), - [anon_sym_BANG_EQ2] = ACTIONS(1531), - [anon_sym_LT2] = ACTIONS(1529), - [anon_sym_LT_EQ2] = ACTIONS(1531), - [anon_sym_GT_EQ2] = ACTIONS(1531), - [anon_sym_EQ_TILDE2] = ACTIONS(1531), - [anon_sym_BANG_TILDE2] = ACTIONS(1531), - [anon_sym_like2] = ACTIONS(1531), - [anon_sym_not_DASHlike2] = ACTIONS(1531), - [anon_sym_STAR_STAR2] = ACTIONS(1531), - [anon_sym_PLUS_PLUS2] = ACTIONS(1531), - [anon_sym_SLASH2] = ACTIONS(1529), - [anon_sym_mod2] = ACTIONS(1531), - [anon_sym_SLASH_SLASH2] = ACTIONS(1531), - [anon_sym_PLUS2] = ACTIONS(1529), - [anon_sym_bit_DASHshl2] = ACTIONS(1531), - [anon_sym_bit_DASHshr2] = ACTIONS(1531), - [anon_sym_bit_DASHand2] = ACTIONS(1531), - [anon_sym_bit_DASHxor2] = ACTIONS(1531), - [anon_sym_bit_DASHor2] = ACTIONS(1531), - [anon_sym_DOT_DOT2] = ACTIONS(1529), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1531), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1531), - [anon_sym_DOT2] = ACTIONS(1529), - [anon_sym_err_GT] = ACTIONS(1529), - [anon_sym_out_GT] = ACTIONS(1529), - [anon_sym_e_GT] = ACTIONS(1529), - [anon_sym_o_GT] = ACTIONS(1529), - [anon_sym_err_PLUSout_GT] = ACTIONS(1529), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1529), - [anon_sym_o_PLUSe_GT] = ACTIONS(1529), - [anon_sym_e_PLUSo_GT] = ACTIONS(1529), - [anon_sym_err_GT_GT] = ACTIONS(1531), - [anon_sym_out_GT_GT] = ACTIONS(1531), - [anon_sym_e_GT_GT] = ACTIONS(1531), - [anon_sym_o_GT_GT] = ACTIONS(1531), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1531), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1531), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1531), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1531), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(819)] = { - [aux_sym__repeat_newline] = STATE(1115), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(819), - [anon_sym_in] = ACTIONS(2289), - [sym__newline] = ACTIONS(2289), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_err_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_GT_PIPE] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), - [anon_sym_RPAREN] = ACTIONS(2289), - [anon_sym_GT2] = ACTIONS(2291), - [anon_sym_DASH2] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_STAR2] = ACTIONS(2291), - [anon_sym_and2] = ACTIONS(2289), - [anon_sym_xor2] = ACTIONS(2289), - [anon_sym_or2] = ACTIONS(2289), - [anon_sym_not_DASHin2] = ACTIONS(2289), - [anon_sym_has2] = ACTIONS(2289), - [anon_sym_not_DASHhas2] = ACTIONS(2289), - [anon_sym_starts_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), - [anon_sym_ends_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), - [anon_sym_EQ_EQ2] = ACTIONS(2289), - [anon_sym_BANG_EQ2] = ACTIONS(2289), - [anon_sym_LT2] = ACTIONS(2291), - [anon_sym_LT_EQ2] = ACTIONS(2289), - [anon_sym_GT_EQ2] = ACTIONS(2289), - [anon_sym_EQ_TILDE2] = ACTIONS(2289), - [anon_sym_BANG_TILDE2] = ACTIONS(2289), - [anon_sym_like2] = ACTIONS(2289), - [anon_sym_not_DASHlike2] = ACTIONS(2289), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2289), - [anon_sym_PLUS_PLUS2] = ACTIONS(2289), - [anon_sym_SLASH2] = ACTIONS(2291), - [anon_sym_mod2] = ACTIONS(2289), - [anon_sym_SLASH_SLASH2] = ACTIONS(2289), - [anon_sym_PLUS2] = ACTIONS(2291), - [anon_sym_bit_DASHshl2] = ACTIONS(2289), - [anon_sym_bit_DASHshr2] = ACTIONS(2289), - [anon_sym_bit_DASHand2] = ACTIONS(2289), - [anon_sym_bit_DASHxor2] = ACTIONS(2289), - [anon_sym_bit_DASHor2] = ACTIONS(2289), - [anon_sym_err_GT] = ACTIONS(2291), - [anon_sym_out_GT] = ACTIONS(2291), - [anon_sym_e_GT] = ACTIONS(2291), - [anon_sym_o_GT] = ACTIONS(2291), - [anon_sym_err_PLUSout_GT] = ACTIONS(2291), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), - [anon_sym_o_PLUSe_GT] = ACTIONS(2291), - [anon_sym_e_PLUSo_GT] = ACTIONS(2291), - [anon_sym_err_GT_GT] = ACTIONS(2289), - [anon_sym_out_GT_GT] = ACTIONS(2289), - [anon_sym_e_GT_GT] = ACTIONS(2289), - [anon_sym_o_GT_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(820)] = { - [sym_comment] = STATE(820), - [anon_sym_if] = ACTIONS(2353), - [anon_sym_in] = ACTIONS(2353), - [sym__newline] = ACTIONS(2353), - [anon_sym_SEMI] = ACTIONS(2353), - [anon_sym_PIPE] = ACTIONS(2353), - [anon_sym_err_GT_PIPE] = ACTIONS(2353), - [anon_sym_out_GT_PIPE] = ACTIONS(2353), - [anon_sym_e_GT_PIPE] = ACTIONS(2353), - [anon_sym_o_GT_PIPE] = ACTIONS(2353), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2353), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2353), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2353), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2353), - [anon_sym_RPAREN] = ACTIONS(2353), - [anon_sym_GT2] = ACTIONS(2355), - [anon_sym_DASH2] = ACTIONS(2353), - [anon_sym_LBRACE] = ACTIONS(2353), - [anon_sym_RBRACE] = ACTIONS(2353), - [anon_sym_EQ_GT] = ACTIONS(2353), - [anon_sym_STAR2] = ACTIONS(2355), - [anon_sym_and2] = ACTIONS(2353), - [anon_sym_xor2] = ACTIONS(2353), - [anon_sym_or2] = ACTIONS(2353), - [anon_sym_not_DASHin2] = ACTIONS(2353), - [anon_sym_has2] = ACTIONS(2353), - [anon_sym_not_DASHhas2] = ACTIONS(2353), - [anon_sym_starts_DASHwith2] = ACTIONS(2353), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2353), - [anon_sym_ends_DASHwith2] = ACTIONS(2353), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2353), - [anon_sym_EQ_EQ2] = ACTIONS(2353), - [anon_sym_BANG_EQ2] = ACTIONS(2353), - [anon_sym_LT2] = ACTIONS(2355), - [anon_sym_LT_EQ2] = ACTIONS(2353), - [anon_sym_GT_EQ2] = ACTIONS(2353), - [anon_sym_EQ_TILDE2] = ACTIONS(2353), - [anon_sym_BANG_TILDE2] = ACTIONS(2353), - [anon_sym_like2] = ACTIONS(2353), - [anon_sym_not_DASHlike2] = ACTIONS(2353), - [anon_sym_STAR_STAR2] = ACTIONS(2353), - [anon_sym_PLUS_PLUS2] = ACTIONS(2353), - [anon_sym_SLASH2] = ACTIONS(2355), - [anon_sym_mod2] = ACTIONS(2353), - [anon_sym_SLASH_SLASH2] = ACTIONS(2353), - [anon_sym_PLUS2] = ACTIONS(2355), - [anon_sym_bit_DASHshl2] = ACTIONS(2353), - [anon_sym_bit_DASHshr2] = ACTIONS(2353), - [anon_sym_bit_DASHand2] = ACTIONS(2353), - [anon_sym_bit_DASHxor2] = ACTIONS(2353), - [anon_sym_bit_DASHor2] = ACTIONS(2353), - [anon_sym_err_GT] = ACTIONS(2355), - [anon_sym_out_GT] = ACTIONS(2355), - [anon_sym_e_GT] = ACTIONS(2355), - [anon_sym_o_GT] = ACTIONS(2355), - [anon_sym_err_PLUSout_GT] = ACTIONS(2355), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2355), - [anon_sym_o_PLUSe_GT] = ACTIONS(2355), - [anon_sym_e_PLUSo_GT] = ACTIONS(2355), - [anon_sym_err_GT_GT] = ACTIONS(2353), - [anon_sym_out_GT_GT] = ACTIONS(2353), - [anon_sym_e_GT_GT] = ACTIONS(2353), - [anon_sym_o_GT_GT] = ACTIONS(2353), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2353), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2353), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2353), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2353), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(821)] = { - [sym_cmd_identifier] = STATE(4341), - [sym_expr_parenthesized] = STATE(5062), - [sym__spread_parenthesized] = STATE(4693), - [sym__spread_variable] = STATE(4695), - [sym_val_variable] = STATE(4364), - [sym_val_number] = STATE(5062), - [sym__val_number_decimal] = STATE(1952), - [sym__val_number] = STATE(676), - [sym_val_string] = STATE(5062), - [sym__raw_str] = STATE(2243), - [sym__str_double_quotes] = STATE(2243), - [sym__str_single_quotes] = STATE(2243), - [sym__str_back_ticks] = STATE(2243), - [sym_val_interpolated] = STATE(5062), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym__spread_record] = STATE(4693), - [sym_record_entry] = STATE(4631), - [sym__record_key] = STATE(5228), - [sym_comment] = STATE(821), - [aux_sym__match_pattern_record_body_repeat1] = STATE(822), - [anon_sym_export] = ACTIONS(143), - [anon_sym_alias] = ACTIONS(137), - [anon_sym_let] = ACTIONS(137), - [anon_sym_mut] = ACTIONS(137), - [anon_sym_const] = ACTIONS(137), - [aux_sym_cmd_identifier_token1] = ACTIONS(117), - [anon_sym_def] = ACTIONS(137), - [anon_sym_use] = ACTIONS(137), - [anon_sym_export_DASHenv] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(137), - [anon_sym_module] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_loop] = ACTIONS(137), - [anon_sym_while] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(137), - [anon_sym_try] = ACTIONS(137), - [anon_sym_catch] = ACTIONS(137), - [anon_sym_match] = ACTIONS(137), - [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_DASH2] = ACTIONS(175), - [anon_sym_PLUS2] = ACTIONS(175), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(822)] = { - [sym_cmd_identifier] = STATE(4341), - [sym_expr_parenthesized] = STATE(5062), - [sym__spread_parenthesized] = STATE(4693), - [sym__spread_variable] = STATE(4695), - [sym_val_variable] = STATE(4434), - [sym_val_number] = STATE(5062), - [sym__val_number_decimal] = STATE(1952), - [sym__val_number] = STATE(676), - [sym_val_string] = STATE(5062), - [sym__raw_str] = STATE(2243), - [sym__str_double_quotes] = STATE(2243), - [sym__str_single_quotes] = STATE(2243), - [sym__str_back_ticks] = STATE(2243), - [sym_val_interpolated] = STATE(5062), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym__spread_record] = STATE(4693), - [sym_record_entry] = STATE(4775), - [sym__record_key] = STATE(5228), - [sym_comment] = STATE(822), - [aux_sym__match_pattern_record_body_repeat1] = STATE(822), - [anon_sym_export] = ACTIONS(2357), - [anon_sym_alias] = ACTIONS(2360), - [anon_sym_let] = ACTIONS(2360), - [anon_sym_mut] = ACTIONS(2360), - [anon_sym_const] = ACTIONS(2360), - [aux_sym_cmd_identifier_token1] = ACTIONS(2363), - [anon_sym_def] = ACTIONS(2360), - [anon_sym_use] = ACTIONS(2360), - [anon_sym_export_DASHenv] = ACTIONS(2360), - [anon_sym_extern] = ACTIONS(2360), - [anon_sym_module] = ACTIONS(2360), - [anon_sym_for] = ACTIONS(2360), - [anon_sym_loop] = ACTIONS(2360), - [anon_sym_while] = ACTIONS(2360), - [anon_sym_if] = ACTIONS(2360), - [anon_sym_else] = ACTIONS(2360), - [anon_sym_try] = ACTIONS(2360), - [anon_sym_catch] = ACTIONS(2360), - [anon_sym_match] = ACTIONS(2360), - [anon_sym_in] = ACTIONS(2357), - [anon_sym_true] = ACTIONS(2366), - [anon_sym_false] = ACTIONS(2366), - [anon_sym_null] = ACTIONS(2366), - [aux_sym_cmd_identifier_token3] = ACTIONS(2369), - [aux_sym_cmd_identifier_token4] = ACTIONS(2369), - [aux_sym_cmd_identifier_token5] = ACTIONS(2369), - [anon_sym_LPAREN] = ACTIONS(2372), - [anon_sym_DOLLAR] = ACTIONS(2375), - [anon_sym_DASH2] = ACTIONS(2378), - [anon_sym_PLUS2] = ACTIONS(2378), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2381), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2384), - [aux_sym__val_number_decimal_token1] = ACTIONS(2387), - [aux_sym__val_number_decimal_token2] = ACTIONS(2390), - [aux_sym__val_number_decimal_token3] = ACTIONS(2393), - [aux_sym__val_number_decimal_token4] = ACTIONS(2393), - [aux_sym__val_number_token1] = ACTIONS(2396), - [aux_sym__val_number_token2] = ACTIONS(2396), - [aux_sym__val_number_token3] = ACTIONS(2396), - [anon_sym_DQUOTE] = ACTIONS(2399), - [anon_sym_SQUOTE] = ACTIONS(2402), - [anon_sym_BQUOTE] = ACTIONS(2405), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2408), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2411), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2414), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2417), - }, - [STATE(823)] = { - [sym_cmd_identifier] = STATE(4341), - [sym_expr_parenthesized] = STATE(5062), - [sym__spread_parenthesized] = STATE(4693), - [sym__spread_variable] = STATE(4695), - [sym_val_variable] = STATE(5062), - [sym_val_number] = STATE(5062), - [sym__val_number_decimal] = STATE(1952), - [sym__val_number] = STATE(676), - [sym_val_string] = STATE(5062), - [sym__raw_str] = STATE(2243), - [sym__str_double_quotes] = STATE(2243), - [sym__str_single_quotes] = STATE(2243), - [sym__str_back_ticks] = STATE(2243), - [sym_val_interpolated] = STATE(5062), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym__spread_record] = STATE(4693), - [sym_record_entry] = STATE(4653), - [sym__record_key] = STATE(5228), - [sym_comment] = STATE(823), - [aux_sym_record_body_repeat1] = STATE(750), + [STATE(773)] = { + [sym_cmd_identifier] = STATE(4340), + [sym_expr_parenthesized] = STATE(5053), + [sym__spread_parenthesized] = STATE(4675), + [sym__spread_variable] = STATE(4677), + [sym_val_variable] = STATE(4143), + [sym_val_number] = STATE(5053), + [sym__val_number_decimal] = STATE(1955), + [sym__val_number] = STATE(693), + [sym_val_string] = STATE(5053), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(5053), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym__spread_record] = STATE(4675), + [sym_record_entry] = STATE(4454), + [sym__record_key] = STATE(5144), + [sym_comment] = STATE(773), + [aux_sym__match_pattern_record_body_repeat1] = STATE(720), [anon_sym_export] = ACTIONS(143), [anon_sym_alias] = ACTIONS(137), [anon_sym_let] = ACTIONS(137), @@ -109421,305 +105956,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_catch] = ACTIONS(137), [anon_sym_match] = ACTIONS(137), [anon_sym_in] = ACTIONS(143), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [anon_sym_null] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1770), - [aux_sym_cmd_identifier_token4] = ACTIONS(1770), - [aux_sym_cmd_identifier_token5] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1794), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_null] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1780), [anon_sym_DASH2] = ACTIONS(175), [anon_sym_PLUS2] = ACTIONS(175), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(181), - [aux_sym__val_number_decimal_token1] = ACTIONS(1780), - [aux_sym__val_number_decimal_token2] = ACTIONS(1782), - [aux_sym__val_number_decimal_token3] = ACTIONS(1784), - [aux_sym__val_number_decimal_token4] = ACTIONS(1784), + [aux_sym__val_number_decimal_token1] = ACTIONS(1784), + [aux_sym__val_number_decimal_token2] = ACTIONS(1786), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(207), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(824)] = { - [sym_comment] = STATE(824), - [anon_sym_in] = ACTIONS(2194), - [sym__newline] = ACTIONS(2420), - [anon_sym_SEMI] = ACTIONS(2423), - [anon_sym_PIPE] = ACTIONS(2423), - [anon_sym_err_GT_PIPE] = ACTIONS(2423), - [anon_sym_out_GT_PIPE] = ACTIONS(2423), - [anon_sym_e_GT_PIPE] = ACTIONS(2423), - [anon_sym_o_GT_PIPE] = ACTIONS(2423), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2423), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2423), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2423), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2423), - [anon_sym_RPAREN] = ACTIONS(2423), - [anon_sym_GT2] = ACTIONS(2196), - [anon_sym_DASH2] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_STAR2] = ACTIONS(2196), - [anon_sym_and2] = ACTIONS(2194), - [anon_sym_xor2] = ACTIONS(2194), - [anon_sym_or2] = ACTIONS(2194), - [anon_sym_not_DASHin2] = ACTIONS(2194), - [anon_sym_has2] = ACTIONS(2194), - [anon_sym_not_DASHhas2] = ACTIONS(2194), - [anon_sym_starts_DASHwith2] = ACTIONS(2194), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2194), - [anon_sym_ends_DASHwith2] = ACTIONS(2194), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2194), - [anon_sym_EQ_EQ2] = ACTIONS(2194), - [anon_sym_BANG_EQ2] = ACTIONS(2194), - [anon_sym_LT2] = ACTIONS(2196), - [anon_sym_LT_EQ2] = ACTIONS(2194), - [anon_sym_GT_EQ2] = ACTIONS(2194), - [anon_sym_EQ_TILDE2] = ACTIONS(2194), - [anon_sym_BANG_TILDE2] = ACTIONS(2194), - [anon_sym_like2] = ACTIONS(2194), - [anon_sym_not_DASHlike2] = ACTIONS(2194), - [anon_sym_STAR_STAR2] = ACTIONS(2194), - [anon_sym_PLUS_PLUS2] = ACTIONS(2194), - [anon_sym_SLASH2] = ACTIONS(2196), - [anon_sym_mod2] = ACTIONS(2194), - [anon_sym_SLASH_SLASH2] = ACTIONS(2194), - [anon_sym_PLUS2] = ACTIONS(2196), - [anon_sym_bit_DASHshl2] = ACTIONS(2194), - [anon_sym_bit_DASHshr2] = ACTIONS(2194), - [anon_sym_bit_DASHand2] = ACTIONS(2194), - [anon_sym_bit_DASHxor2] = ACTIONS(2194), - [anon_sym_bit_DASHor2] = ACTIONS(2194), - [anon_sym_DOT_DOT2] = ACTIONS(1619), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1621), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1621), - [anon_sym_err_GT] = ACTIONS(2425), - [anon_sym_out_GT] = ACTIONS(2425), - [anon_sym_e_GT] = ACTIONS(2425), - [anon_sym_o_GT] = ACTIONS(2425), - [anon_sym_err_PLUSout_GT] = ACTIONS(2425), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2425), - [anon_sym_o_PLUSe_GT] = ACTIONS(2425), - [anon_sym_e_PLUSo_GT] = ACTIONS(2425), - [anon_sym_err_GT_GT] = ACTIONS(2423), - [anon_sym_out_GT_GT] = ACTIONS(2423), - [anon_sym_e_GT_GT] = ACTIONS(2423), - [anon_sym_o_GT_GT] = ACTIONS(2423), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2423), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2423), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2423), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2423), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(825)] = { - [sym_cell_path] = STATE(1267), - [sym_path] = STATE(712), - [sym_comment] = STATE(825), - [aux_sym__where_predicate_lhs_repeat1] = STATE(547), - [ts_builtin_sym_end] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [sym__newline] = ACTIONS(1862), - [anon_sym_SEMI] = ACTIONS(1862), - [anon_sym_PIPE] = ACTIONS(1862), - [anon_sym_err_GT_PIPE] = ACTIONS(1862), - [anon_sym_out_GT_PIPE] = ACTIONS(1862), - [anon_sym_e_GT_PIPE] = ACTIONS(1862), - [anon_sym_o_GT_PIPE] = ACTIONS(1862), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1862), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1862), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1862), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1862), - [anon_sym_GT2] = ACTIONS(1864), - [anon_sym_DASH2] = ACTIONS(1862), - [anon_sym_STAR2] = ACTIONS(1864), - [anon_sym_and2] = ACTIONS(1862), - [anon_sym_xor2] = ACTIONS(1862), - [anon_sym_or2] = ACTIONS(1862), - [anon_sym_not_DASHin2] = ACTIONS(1862), - [anon_sym_has2] = ACTIONS(1862), - [anon_sym_not_DASHhas2] = ACTIONS(1862), - [anon_sym_starts_DASHwith2] = ACTIONS(1862), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1862), - [anon_sym_ends_DASHwith2] = ACTIONS(1862), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1862), - [anon_sym_EQ_EQ2] = ACTIONS(1862), - [anon_sym_BANG_EQ2] = ACTIONS(1862), - [anon_sym_LT2] = ACTIONS(1864), - [anon_sym_LT_EQ2] = ACTIONS(1862), - [anon_sym_GT_EQ2] = ACTIONS(1862), - [anon_sym_EQ_TILDE2] = ACTIONS(1862), - [anon_sym_BANG_TILDE2] = ACTIONS(1862), - [anon_sym_like2] = ACTIONS(1862), - [anon_sym_not_DASHlike2] = ACTIONS(1862), - [anon_sym_STAR_STAR2] = ACTIONS(1862), - [anon_sym_PLUS_PLUS2] = ACTIONS(1862), - [anon_sym_SLASH2] = ACTIONS(1864), - [anon_sym_mod2] = ACTIONS(1862), - [anon_sym_SLASH_SLASH2] = ACTIONS(1862), - [anon_sym_PLUS2] = ACTIONS(1864), - [anon_sym_bit_DASHshl2] = ACTIONS(1862), - [anon_sym_bit_DASHshr2] = ACTIONS(1862), - [anon_sym_bit_DASHand2] = ACTIONS(1862), - [anon_sym_bit_DASHxor2] = ACTIONS(1862), - [anon_sym_bit_DASHor2] = ACTIONS(1862), - [anon_sym_DOT2] = ACTIONS(2192), - [anon_sym_err_GT] = ACTIONS(1864), - [anon_sym_out_GT] = ACTIONS(1864), - [anon_sym_e_GT] = ACTIONS(1864), - [anon_sym_o_GT] = ACTIONS(1864), - [anon_sym_err_PLUSout_GT] = ACTIONS(1864), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1864), - [anon_sym_o_PLUSe_GT] = ACTIONS(1864), - [anon_sym_e_PLUSo_GT] = ACTIONS(1864), - [anon_sym_err_GT_GT] = ACTIONS(1862), - [anon_sym_out_GT_GT] = ACTIONS(1862), - [anon_sym_e_GT_GT] = ACTIONS(1862), - [anon_sym_o_GT_GT] = ACTIONS(1862), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1862), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1862), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1862), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1862), - [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1796), }, - [STATE(826)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(2170), - [sym_expr_parenthesized] = STATE(1939), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(2010), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(671), - [sym__unquoted_with_expr] = STATE(959), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(826), - [anon_sym_true] = ACTIONS(2427), - [anon_sym_false] = ACTIONS(2427), - [anon_sym_null] = ACTIONS(2429), - [aux_sym_cmd_identifier_token3] = ACTIONS(2431), - [aux_sym_cmd_identifier_token4] = ACTIONS(2431), - [aux_sym_cmd_identifier_token5] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2433), - [aux_sym_expr_unary_token1] = ACTIONS(2435), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2439), - [aux_sym__val_number_decimal_token2] = ACTIONS(2441), - [aux_sym__val_number_decimal_token3] = ACTIONS(2443), - [aux_sym__val_number_decimal_token4] = ACTIONS(2443), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2445), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), + [STATE(774)] = { + [aux_sym__repeat_newline] = STATE(1004), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(774), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(827)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(2171), - [sym_expr_parenthesized] = STATE(1939), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(2010), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(711), - [sym__unquoted_with_expr] = STATE(962), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(827), - [anon_sym_true] = ACTIONS(2427), - [anon_sym_false] = ACTIONS(2427), - [anon_sym_null] = ACTIONS(2429), - [aux_sym_cmd_identifier_token3] = ACTIONS(2431), - [aux_sym_cmd_identifier_token4] = ACTIONS(2431), - [aux_sym_cmd_identifier_token5] = ACTIONS(2431), + [STATE(775)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2182), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(703), + [sym__unquoted_with_expr] = STATE(957), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(775), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2433), - [aux_sym_expr_unary_token1] = ACTIONS(2435), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2439), - [aux_sym__val_number_decimal_token2] = ACTIONS(2441), - [aux_sym__val_number_decimal_token3] = ACTIONS(2443), - [aux_sym__val_number_decimal_token4] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2032), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2445), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -109729,67 +106124,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(828)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(2172), - [sym_expr_parenthesized] = STATE(1939), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(2010), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(692), - [sym__unquoted_with_expr] = STATE(896), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(828), - [anon_sym_true] = ACTIONS(2427), - [anon_sym_false] = ACTIONS(2427), - [anon_sym_null] = ACTIONS(2429), - [aux_sym_cmd_identifier_token3] = ACTIONS(2431), - [aux_sym_cmd_identifier_token4] = ACTIONS(2431), - [aux_sym_cmd_identifier_token5] = ACTIONS(2431), + [STATE(776)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2184), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(704), + [sym__unquoted_with_expr] = STATE(959), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(776), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2433), - [aux_sym_expr_unary_token1] = ACTIONS(2435), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2439), - [aux_sym__val_number_decimal_token2] = ACTIONS(2441), - [aux_sym__val_number_decimal_token3] = ACTIONS(2443), - [aux_sym__val_number_decimal_token4] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2032), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2445), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -109799,67 +106194,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(829)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(2173), - [sym_expr_parenthesized] = STATE(1939), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(2010), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(693), - [sym__unquoted_with_expr] = STATE(897), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(829), - [anon_sym_true] = ACTIONS(2427), - [anon_sym_false] = ACTIONS(2427), - [anon_sym_null] = ACTIONS(2429), - [aux_sym_cmd_identifier_token3] = ACTIONS(2431), - [aux_sym_cmd_identifier_token4] = ACTIONS(2431), - [aux_sym_cmd_identifier_token5] = ACTIONS(2431), + [STATE(777)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2186), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(706), + [sym__unquoted_with_expr] = STATE(899), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(777), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2433), - [aux_sym_expr_unary_token1] = ACTIONS(2435), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2439), - [aux_sym__val_number_decimal_token2] = ACTIONS(2441), - [aux_sym__val_number_decimal_token3] = ACTIONS(2443), - [aux_sym__val_number_decimal_token4] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2032), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2445), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -109869,67 +106264,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(830)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(2174), - [sym_expr_parenthesized] = STATE(1939), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(2010), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(694), - [sym__unquoted_with_expr] = STATE(898), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(830), - [anon_sym_true] = ACTIONS(2427), - [anon_sym_false] = ACTIONS(2427), - [anon_sym_null] = ACTIONS(2429), - [aux_sym_cmd_identifier_token3] = ACTIONS(2431), - [aux_sym_cmd_identifier_token4] = ACTIONS(2431), - [aux_sym_cmd_identifier_token5] = ACTIONS(2431), + [STATE(778)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2200), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(709), + [sym__unquoted_with_expr] = STATE(901), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(778), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2433), - [aux_sym_expr_unary_token1] = ACTIONS(2435), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2439), - [aux_sym__val_number_decimal_token2] = ACTIONS(2441), - [aux_sym__val_number_decimal_token3] = ACTIONS(2443), - [aux_sym__val_number_decimal_token4] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2032), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2445), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -109939,137 +106334,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(831)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), + [STATE(779)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), [sym__expr_binary_expression] = STATE(2175), - [sym_expr_parenthesized] = STATE(1939), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(2010), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(695), - [sym__unquoted_with_expr] = STATE(902), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(831), - [anon_sym_true] = ACTIONS(2427), - [anon_sym_false] = ACTIONS(2427), - [anon_sym_null] = ACTIONS(2429), - [aux_sym_cmd_identifier_token3] = ACTIONS(2431), - [aux_sym_cmd_identifier_token4] = ACTIONS(2431), - [aux_sym_cmd_identifier_token5] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2433), - [aux_sym_expr_unary_token1] = ACTIONS(2435), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2439), - [aux_sym__val_number_decimal_token2] = ACTIONS(2441), - [aux_sym__val_number_decimal_token3] = ACTIONS(2443), - [aux_sym__val_number_decimal_token4] = ACTIONS(2443), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2445), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(832)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(2176), - [sym_expr_parenthesized] = STATE(1939), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(2010), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(697), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(690), [sym__unquoted_with_expr] = STATE(904), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(832), - [anon_sym_true] = ACTIONS(2427), - [anon_sym_false] = ACTIONS(2427), - [anon_sym_null] = ACTIONS(2429), - [aux_sym_cmd_identifier_token3] = ACTIONS(2431), - [aux_sym_cmd_identifier_token4] = ACTIONS(2431), - [aux_sym_cmd_identifier_token5] = ACTIONS(2431), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(779), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2433), - [aux_sym_expr_unary_token1] = ACTIONS(2435), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2439), - [aux_sym__val_number_decimal_token2] = ACTIONS(2441), - [aux_sym__val_number_decimal_token3] = ACTIONS(2443), - [aux_sym__val_number_decimal_token4] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2032), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2445), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -110079,137 +106404,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(833)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(2177), - [sym_expr_parenthesized] = STATE(1939), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(2010), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(698), + [STATE(780)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2205), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(691), [sym__unquoted_with_expr] = STATE(906), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(833), - [anon_sym_true] = ACTIONS(2427), - [anon_sym_false] = ACTIONS(2427), - [anon_sym_null] = ACTIONS(2429), - [aux_sym_cmd_identifier_token3] = ACTIONS(2431), - [aux_sym_cmd_identifier_token4] = ACTIONS(2431), - [aux_sym_cmd_identifier_token5] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2433), - [aux_sym_expr_unary_token1] = ACTIONS(2435), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2439), - [aux_sym__val_number_decimal_token2] = ACTIONS(2441), - [aux_sym__val_number_decimal_token3] = ACTIONS(2443), - [aux_sym__val_number_decimal_token4] = ACTIONS(2443), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2445), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(834)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(907), - [sym_expr_parenthesized] = STATE(1939), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(2010), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(699), - [sym__unquoted_with_expr] = STATE(895), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(834), - [anon_sym_true] = ACTIONS(2427), - [anon_sym_false] = ACTIONS(2427), - [anon_sym_null] = ACTIONS(2429), - [aux_sym_cmd_identifier_token3] = ACTIONS(2431), - [aux_sym_cmd_identifier_token4] = ACTIONS(2431), - [aux_sym_cmd_identifier_token5] = ACTIONS(2431), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(780), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2433), - [aux_sym_expr_unary_token1] = ACTIONS(2435), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2439), - [aux_sym__val_number_decimal_token2] = ACTIONS(2441), - [aux_sym__val_number_decimal_token3] = ACTIONS(2443), - [aux_sym__val_number_decimal_token4] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2032), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2445), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -110219,67 +106474,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(835)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(2178), - [sym_expr_parenthesized] = STATE(1939), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(2010), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(700), - [sym__unquoted_with_expr] = STATE(911), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(835), - [anon_sym_true] = ACTIONS(2427), - [anon_sym_false] = ACTIONS(2427), - [anon_sym_null] = ACTIONS(2429), - [aux_sym_cmd_identifier_token3] = ACTIONS(2431), - [aux_sym_cmd_identifier_token4] = ACTIONS(2431), - [aux_sym_cmd_identifier_token5] = ACTIONS(2431), + [STATE(781)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2193), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(672), + [sym__unquoted_with_expr] = STATE(926), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(781), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2433), - [aux_sym_expr_unary_token1] = ACTIONS(2435), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2439), - [aux_sym__val_number_decimal_token2] = ACTIONS(2441), - [aux_sym__val_number_decimal_token3] = ACTIONS(2443), - [aux_sym__val_number_decimal_token4] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2032), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2445), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -110289,67 +106544,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(836)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(2179), - [sym_expr_parenthesized] = STATE(1939), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(2010), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(701), - [sym__unquoted_with_expr] = STATE(913), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(836), - [anon_sym_true] = ACTIONS(2427), - [anon_sym_false] = ACTIONS(2427), - [anon_sym_null] = ACTIONS(2429), - [aux_sym_cmd_identifier_token3] = ACTIONS(2431), - [aux_sym_cmd_identifier_token4] = ACTIONS(2431), - [aux_sym_cmd_identifier_token5] = ACTIONS(2431), + [STATE(782)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2195), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(673), + [sym__unquoted_with_expr] = STATE(929), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(782), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2433), - [aux_sym_expr_unary_token1] = ACTIONS(2435), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2439), - [aux_sym__val_number_decimal_token2] = ACTIONS(2441), - [aux_sym__val_number_decimal_token3] = ACTIONS(2443), - [aux_sym__val_number_decimal_token4] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2032), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2445), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -110359,67 +106614,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(837)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(2180), - [sym_expr_parenthesized] = STATE(1939), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(2010), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(702), - [sym__unquoted_with_expr] = STATE(915), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(837), - [anon_sym_true] = ACTIONS(2427), - [anon_sym_false] = ACTIONS(2427), - [anon_sym_null] = ACTIONS(2429), - [aux_sym_cmd_identifier_token3] = ACTIONS(2431), - [aux_sym_cmd_identifier_token4] = ACTIONS(2431), - [aux_sym_cmd_identifier_token5] = ACTIONS(2431), + [STATE(783)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(895), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(674), + [sym__unquoted_with_expr] = STATE(932), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(783), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2433), - [aux_sym_expr_unary_token1] = ACTIONS(2435), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2439), - [aux_sym__val_number_decimal_token2] = ACTIONS(2441), - [aux_sym__val_number_decimal_token3] = ACTIONS(2443), - [aux_sym__val_number_decimal_token4] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2032), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2445), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -110429,67 +106684,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(838)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(2181), - [sym_expr_parenthesized] = STATE(1939), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(2010), - [sym_val_variable] = STATE(1959), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1739), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(703), - [sym__unquoted_with_expr] = STATE(917), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(838), - [anon_sym_true] = ACTIONS(2427), - [anon_sym_false] = ACTIONS(2427), - [anon_sym_null] = ACTIONS(2429), - [aux_sym_cmd_identifier_token3] = ACTIONS(2431), - [aux_sym_cmd_identifier_token4] = ACTIONS(2431), - [aux_sym_cmd_identifier_token5] = ACTIONS(2431), + [STATE(784)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2139), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(675), + [sym__unquoted_with_expr] = STATE(934), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(784), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(2433), - [aux_sym_expr_unary_token1] = ACTIONS(2435), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2437), - [anon_sym_DOT_DOT_LT] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2439), - [aux_sym__val_number_decimal_token2] = ACTIONS(2441), - [aux_sym__val_number_decimal_token3] = ACTIONS(2443), - [aux_sym__val_number_decimal_token4] = ACTIONS(2443), + [anon_sym_DOT_DOT] = ACTIONS(2032), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2445), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -110499,907 +106754,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(839)] = { - [sym_comment] = STATE(839), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_in] = ACTIONS(2447), - [sym__newline] = ACTIONS(2447), - [anon_sym_SEMI] = ACTIONS(2447), - [anon_sym_PIPE] = ACTIONS(2447), - [anon_sym_err_GT_PIPE] = ACTIONS(2447), - [anon_sym_out_GT_PIPE] = ACTIONS(2447), - [anon_sym_e_GT_PIPE] = ACTIONS(2447), - [anon_sym_o_GT_PIPE] = ACTIONS(2447), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2447), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2447), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2447), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2447), - [anon_sym_RPAREN] = ACTIONS(2447), - [anon_sym_GT2] = ACTIONS(2449), - [anon_sym_DASH2] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2447), - [anon_sym_RBRACE] = ACTIONS(2447), - [anon_sym_EQ_GT] = ACTIONS(2447), - [anon_sym_STAR2] = ACTIONS(2449), - [anon_sym_and2] = ACTIONS(2447), - [anon_sym_xor2] = ACTIONS(2447), - [anon_sym_or2] = ACTIONS(2447), - [anon_sym_not_DASHin2] = ACTIONS(2447), - [anon_sym_has2] = ACTIONS(2447), - [anon_sym_not_DASHhas2] = ACTIONS(2447), - [anon_sym_starts_DASHwith2] = ACTIONS(2447), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2447), - [anon_sym_ends_DASHwith2] = ACTIONS(2447), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2447), - [anon_sym_EQ_EQ2] = ACTIONS(2447), - [anon_sym_BANG_EQ2] = ACTIONS(2447), - [anon_sym_LT2] = ACTIONS(2449), - [anon_sym_LT_EQ2] = ACTIONS(2447), - [anon_sym_GT_EQ2] = ACTIONS(2447), - [anon_sym_EQ_TILDE2] = ACTIONS(2447), - [anon_sym_BANG_TILDE2] = ACTIONS(2447), - [anon_sym_like2] = ACTIONS(2447), - [anon_sym_not_DASHlike2] = ACTIONS(2447), - [anon_sym_STAR_STAR2] = ACTIONS(2447), - [anon_sym_PLUS_PLUS2] = ACTIONS(2447), - [anon_sym_SLASH2] = ACTIONS(2449), - [anon_sym_mod2] = ACTIONS(2447), - [anon_sym_SLASH_SLASH2] = ACTIONS(2447), - [anon_sym_PLUS2] = ACTIONS(2449), - [anon_sym_bit_DASHshl2] = ACTIONS(2447), - [anon_sym_bit_DASHshr2] = ACTIONS(2447), - [anon_sym_bit_DASHand2] = ACTIONS(2447), - [anon_sym_bit_DASHxor2] = ACTIONS(2447), - [anon_sym_bit_DASHor2] = ACTIONS(2447), - [anon_sym_err_GT] = ACTIONS(2449), - [anon_sym_out_GT] = ACTIONS(2449), - [anon_sym_e_GT] = ACTIONS(2449), - [anon_sym_o_GT] = ACTIONS(2449), - [anon_sym_err_PLUSout_GT] = ACTIONS(2449), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2449), - [anon_sym_o_PLUSe_GT] = ACTIONS(2449), - [anon_sym_e_PLUSo_GT] = ACTIONS(2449), - [anon_sym_err_GT_GT] = ACTIONS(2447), - [anon_sym_out_GT_GT] = ACTIONS(2447), - [anon_sym_e_GT_GT] = ACTIONS(2447), - [anon_sym_o_GT_GT] = ACTIONS(2447), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2447), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2447), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2447), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2447), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(840)] = { - [sym_comment] = STATE(840), - [anon_sym_if] = ACTIONS(2451), - [anon_sym_in] = ACTIONS(2451), - [sym__newline] = ACTIONS(2451), - [anon_sym_SEMI] = ACTIONS(2451), - [anon_sym_PIPE] = ACTIONS(2451), - [anon_sym_err_GT_PIPE] = ACTIONS(2451), - [anon_sym_out_GT_PIPE] = ACTIONS(2451), - [anon_sym_e_GT_PIPE] = ACTIONS(2451), - [anon_sym_o_GT_PIPE] = ACTIONS(2451), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2451), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2451), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2451), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2451), - [anon_sym_RPAREN] = ACTIONS(2451), - [anon_sym_GT2] = ACTIONS(2453), - [anon_sym_DASH2] = ACTIONS(2451), - [anon_sym_LBRACE] = ACTIONS(2451), - [anon_sym_RBRACE] = ACTIONS(2451), - [anon_sym_EQ_GT] = ACTIONS(2451), - [anon_sym_STAR2] = ACTIONS(2453), - [anon_sym_and2] = ACTIONS(2451), - [anon_sym_xor2] = ACTIONS(2451), - [anon_sym_or2] = ACTIONS(2451), - [anon_sym_not_DASHin2] = ACTIONS(2451), - [anon_sym_has2] = ACTIONS(2451), - [anon_sym_not_DASHhas2] = ACTIONS(2451), - [anon_sym_starts_DASHwith2] = ACTIONS(2451), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2451), - [anon_sym_ends_DASHwith2] = ACTIONS(2451), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2451), - [anon_sym_EQ_EQ2] = ACTIONS(2451), - [anon_sym_BANG_EQ2] = ACTIONS(2451), - [anon_sym_LT2] = ACTIONS(2453), - [anon_sym_LT_EQ2] = ACTIONS(2451), - [anon_sym_GT_EQ2] = ACTIONS(2451), - [anon_sym_EQ_TILDE2] = ACTIONS(2451), - [anon_sym_BANG_TILDE2] = ACTIONS(2451), - [anon_sym_like2] = ACTIONS(2451), - [anon_sym_not_DASHlike2] = ACTIONS(2451), - [anon_sym_STAR_STAR2] = ACTIONS(2451), - [anon_sym_PLUS_PLUS2] = ACTIONS(2451), - [anon_sym_SLASH2] = ACTIONS(2453), - [anon_sym_mod2] = ACTIONS(2451), - [anon_sym_SLASH_SLASH2] = ACTIONS(2451), - [anon_sym_PLUS2] = ACTIONS(2453), - [anon_sym_bit_DASHshl2] = ACTIONS(2451), - [anon_sym_bit_DASHshr2] = ACTIONS(2451), - [anon_sym_bit_DASHand2] = ACTIONS(2451), - [anon_sym_bit_DASHxor2] = ACTIONS(2451), - [anon_sym_bit_DASHor2] = ACTIONS(2451), - [anon_sym_err_GT] = ACTIONS(2453), - [anon_sym_out_GT] = ACTIONS(2453), - [anon_sym_e_GT] = ACTIONS(2453), - [anon_sym_o_GT] = ACTIONS(2453), - [anon_sym_err_PLUSout_GT] = ACTIONS(2453), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2453), - [anon_sym_o_PLUSe_GT] = ACTIONS(2453), - [anon_sym_e_PLUSo_GT] = ACTIONS(2453), - [anon_sym_err_GT_GT] = ACTIONS(2451), - [anon_sym_out_GT_GT] = ACTIONS(2451), - [anon_sym_e_GT_GT] = ACTIONS(2451), - [anon_sym_o_GT_GT] = ACTIONS(2451), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2451), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2451), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2451), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2451), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(841)] = { - [sym_comment] = STATE(841), - [anon_sym_if] = ACTIONS(2455), - [anon_sym_in] = ACTIONS(2455), - [sym__newline] = ACTIONS(2455), - [anon_sym_SEMI] = ACTIONS(2455), - [anon_sym_PIPE] = ACTIONS(2455), - [anon_sym_err_GT_PIPE] = ACTIONS(2455), - [anon_sym_out_GT_PIPE] = ACTIONS(2455), - [anon_sym_e_GT_PIPE] = ACTIONS(2455), - [anon_sym_o_GT_PIPE] = ACTIONS(2455), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2455), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2455), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2455), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2455), - [anon_sym_RPAREN] = ACTIONS(2455), - [anon_sym_GT2] = ACTIONS(2457), - [anon_sym_DASH2] = ACTIONS(2455), - [anon_sym_LBRACE] = ACTIONS(2455), - [anon_sym_RBRACE] = ACTIONS(2455), - [anon_sym_EQ_GT] = ACTIONS(2455), - [anon_sym_STAR2] = ACTIONS(2457), - [anon_sym_and2] = ACTIONS(2455), - [anon_sym_xor2] = ACTIONS(2455), - [anon_sym_or2] = ACTIONS(2455), - [anon_sym_not_DASHin2] = ACTIONS(2455), - [anon_sym_has2] = ACTIONS(2455), - [anon_sym_not_DASHhas2] = ACTIONS(2455), - [anon_sym_starts_DASHwith2] = ACTIONS(2455), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2455), - [anon_sym_ends_DASHwith2] = ACTIONS(2455), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2455), - [anon_sym_EQ_EQ2] = ACTIONS(2455), - [anon_sym_BANG_EQ2] = ACTIONS(2455), - [anon_sym_LT2] = ACTIONS(2457), - [anon_sym_LT_EQ2] = ACTIONS(2455), - [anon_sym_GT_EQ2] = ACTIONS(2455), - [anon_sym_EQ_TILDE2] = ACTIONS(2455), - [anon_sym_BANG_TILDE2] = ACTIONS(2455), - [anon_sym_like2] = ACTIONS(2455), - [anon_sym_not_DASHlike2] = ACTIONS(2455), - [anon_sym_STAR_STAR2] = ACTIONS(2455), - [anon_sym_PLUS_PLUS2] = ACTIONS(2455), - [anon_sym_SLASH2] = ACTIONS(2457), - [anon_sym_mod2] = ACTIONS(2455), - [anon_sym_SLASH_SLASH2] = ACTIONS(2455), - [anon_sym_PLUS2] = ACTIONS(2457), - [anon_sym_bit_DASHshl2] = ACTIONS(2455), - [anon_sym_bit_DASHshr2] = ACTIONS(2455), - [anon_sym_bit_DASHand2] = ACTIONS(2455), - [anon_sym_bit_DASHxor2] = ACTIONS(2455), - [anon_sym_bit_DASHor2] = ACTIONS(2455), - [anon_sym_err_GT] = ACTIONS(2457), - [anon_sym_out_GT] = ACTIONS(2457), - [anon_sym_e_GT] = ACTIONS(2457), - [anon_sym_o_GT] = ACTIONS(2457), - [anon_sym_err_PLUSout_GT] = ACTIONS(2457), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2457), - [anon_sym_o_PLUSe_GT] = ACTIONS(2457), - [anon_sym_e_PLUSo_GT] = ACTIONS(2457), - [anon_sym_err_GT_GT] = ACTIONS(2455), - [anon_sym_out_GT_GT] = ACTIONS(2455), - [anon_sym_e_GT_GT] = ACTIONS(2455), - [anon_sym_o_GT_GT] = ACTIONS(2455), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2455), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2455), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2455), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2455), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(842)] = { - [sym_comment] = STATE(842), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_in] = ACTIONS(2459), - [sym__newline] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2459), - [anon_sym_PIPE] = ACTIONS(2459), - [anon_sym_err_GT_PIPE] = ACTIONS(2459), - [anon_sym_out_GT_PIPE] = ACTIONS(2459), - [anon_sym_e_GT_PIPE] = ACTIONS(2459), - [anon_sym_o_GT_PIPE] = ACTIONS(2459), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2459), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2459), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2459), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2459), - [anon_sym_RPAREN] = ACTIONS(2459), - [anon_sym_GT2] = ACTIONS(2461), - [anon_sym_DASH2] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2459), - [anon_sym_RBRACE] = ACTIONS(2459), - [anon_sym_EQ_GT] = ACTIONS(2459), - [anon_sym_STAR2] = ACTIONS(2461), - [anon_sym_and2] = ACTIONS(2459), - [anon_sym_xor2] = ACTIONS(2459), - [anon_sym_or2] = ACTIONS(2459), - [anon_sym_not_DASHin2] = ACTIONS(2459), - [anon_sym_has2] = ACTIONS(2459), - [anon_sym_not_DASHhas2] = ACTIONS(2459), - [anon_sym_starts_DASHwith2] = ACTIONS(2459), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2459), - [anon_sym_ends_DASHwith2] = ACTIONS(2459), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2459), - [anon_sym_EQ_EQ2] = ACTIONS(2459), - [anon_sym_BANG_EQ2] = ACTIONS(2459), - [anon_sym_LT2] = ACTIONS(2461), - [anon_sym_LT_EQ2] = ACTIONS(2459), - [anon_sym_GT_EQ2] = ACTIONS(2459), - [anon_sym_EQ_TILDE2] = ACTIONS(2459), - [anon_sym_BANG_TILDE2] = ACTIONS(2459), - [anon_sym_like2] = ACTIONS(2459), - [anon_sym_not_DASHlike2] = ACTIONS(2459), - [anon_sym_STAR_STAR2] = ACTIONS(2459), - [anon_sym_PLUS_PLUS2] = ACTIONS(2459), - [anon_sym_SLASH2] = ACTIONS(2461), - [anon_sym_mod2] = ACTIONS(2459), - [anon_sym_SLASH_SLASH2] = ACTIONS(2459), - [anon_sym_PLUS2] = ACTIONS(2461), - [anon_sym_bit_DASHshl2] = ACTIONS(2459), - [anon_sym_bit_DASHshr2] = ACTIONS(2459), - [anon_sym_bit_DASHand2] = ACTIONS(2459), - [anon_sym_bit_DASHxor2] = ACTIONS(2459), - [anon_sym_bit_DASHor2] = ACTIONS(2459), - [anon_sym_err_GT] = ACTIONS(2461), - [anon_sym_out_GT] = ACTIONS(2461), - [anon_sym_e_GT] = ACTIONS(2461), - [anon_sym_o_GT] = ACTIONS(2461), - [anon_sym_err_PLUSout_GT] = ACTIONS(2461), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2461), - [anon_sym_o_PLUSe_GT] = ACTIONS(2461), - [anon_sym_e_PLUSo_GT] = ACTIONS(2461), - [anon_sym_err_GT_GT] = ACTIONS(2459), - [anon_sym_out_GT_GT] = ACTIONS(2459), - [anon_sym_e_GT_GT] = ACTIONS(2459), - [anon_sym_o_GT_GT] = ACTIONS(2459), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2459), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2459), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2459), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2459), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(843)] = { - [sym_comment] = STATE(843), - [anon_sym_if] = ACTIONS(2463), - [anon_sym_in] = ACTIONS(2463), - [sym__newline] = ACTIONS(2463), - [anon_sym_SEMI] = ACTIONS(2463), - [anon_sym_PIPE] = ACTIONS(2463), - [anon_sym_err_GT_PIPE] = ACTIONS(2463), - [anon_sym_out_GT_PIPE] = ACTIONS(2463), - [anon_sym_e_GT_PIPE] = ACTIONS(2463), - [anon_sym_o_GT_PIPE] = ACTIONS(2463), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2463), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2463), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2463), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2463), - [anon_sym_RPAREN] = ACTIONS(2463), - [anon_sym_GT2] = ACTIONS(2465), - [anon_sym_DASH2] = ACTIONS(2463), - [anon_sym_LBRACE] = ACTIONS(2463), - [anon_sym_RBRACE] = ACTIONS(2463), - [anon_sym_EQ_GT] = ACTIONS(2463), - [anon_sym_STAR2] = ACTIONS(2465), - [anon_sym_and2] = ACTIONS(2463), - [anon_sym_xor2] = ACTIONS(2463), - [anon_sym_or2] = ACTIONS(2463), - [anon_sym_not_DASHin2] = ACTIONS(2463), - [anon_sym_has2] = ACTIONS(2463), - [anon_sym_not_DASHhas2] = ACTIONS(2463), - [anon_sym_starts_DASHwith2] = ACTIONS(2463), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2463), - [anon_sym_ends_DASHwith2] = ACTIONS(2463), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2463), - [anon_sym_EQ_EQ2] = ACTIONS(2463), - [anon_sym_BANG_EQ2] = ACTIONS(2463), - [anon_sym_LT2] = ACTIONS(2465), - [anon_sym_LT_EQ2] = ACTIONS(2463), - [anon_sym_GT_EQ2] = ACTIONS(2463), - [anon_sym_EQ_TILDE2] = ACTIONS(2463), - [anon_sym_BANG_TILDE2] = ACTIONS(2463), - [anon_sym_like2] = ACTIONS(2463), - [anon_sym_not_DASHlike2] = ACTIONS(2463), - [anon_sym_STAR_STAR2] = ACTIONS(2463), - [anon_sym_PLUS_PLUS2] = ACTIONS(2463), - [anon_sym_SLASH2] = ACTIONS(2465), - [anon_sym_mod2] = ACTIONS(2463), - [anon_sym_SLASH_SLASH2] = ACTIONS(2463), - [anon_sym_PLUS2] = ACTIONS(2465), - [anon_sym_bit_DASHshl2] = ACTIONS(2463), - [anon_sym_bit_DASHshr2] = ACTIONS(2463), - [anon_sym_bit_DASHand2] = ACTIONS(2463), - [anon_sym_bit_DASHxor2] = ACTIONS(2463), - [anon_sym_bit_DASHor2] = ACTIONS(2463), - [anon_sym_err_GT] = ACTIONS(2465), - [anon_sym_out_GT] = ACTIONS(2465), - [anon_sym_e_GT] = ACTIONS(2465), - [anon_sym_o_GT] = ACTIONS(2465), - [anon_sym_err_PLUSout_GT] = ACTIONS(2465), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2465), - [anon_sym_o_PLUSe_GT] = ACTIONS(2465), - [anon_sym_e_PLUSo_GT] = ACTIONS(2465), - [anon_sym_err_GT_GT] = ACTIONS(2463), - [anon_sym_out_GT_GT] = ACTIONS(2463), - [anon_sym_e_GT_GT] = ACTIONS(2463), - [anon_sym_o_GT_GT] = ACTIONS(2463), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2463), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2463), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2463), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2463), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(844)] = { - [sym_comment] = STATE(844), - [anon_sym_if] = ACTIONS(2467), - [anon_sym_in] = ACTIONS(2467), - [sym__newline] = ACTIONS(2467), - [anon_sym_SEMI] = ACTIONS(2467), - [anon_sym_PIPE] = ACTIONS(2467), - [anon_sym_err_GT_PIPE] = ACTIONS(2467), - [anon_sym_out_GT_PIPE] = ACTIONS(2467), - [anon_sym_e_GT_PIPE] = ACTIONS(2467), - [anon_sym_o_GT_PIPE] = ACTIONS(2467), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2467), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2467), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2467), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2467), - [anon_sym_RPAREN] = ACTIONS(2467), - [anon_sym_GT2] = ACTIONS(2469), - [anon_sym_DASH2] = ACTIONS(2467), - [anon_sym_LBRACE] = ACTIONS(2467), - [anon_sym_RBRACE] = ACTIONS(2467), - [anon_sym_EQ_GT] = ACTIONS(2467), - [anon_sym_STAR2] = ACTIONS(2469), - [anon_sym_and2] = ACTIONS(2467), - [anon_sym_xor2] = ACTIONS(2467), - [anon_sym_or2] = ACTIONS(2467), - [anon_sym_not_DASHin2] = ACTIONS(2467), - [anon_sym_has2] = ACTIONS(2467), - [anon_sym_not_DASHhas2] = ACTIONS(2467), - [anon_sym_starts_DASHwith2] = ACTIONS(2467), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2467), - [anon_sym_ends_DASHwith2] = ACTIONS(2467), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2467), - [anon_sym_EQ_EQ2] = ACTIONS(2467), - [anon_sym_BANG_EQ2] = ACTIONS(2467), - [anon_sym_LT2] = ACTIONS(2469), - [anon_sym_LT_EQ2] = ACTIONS(2467), - [anon_sym_GT_EQ2] = ACTIONS(2467), - [anon_sym_EQ_TILDE2] = ACTIONS(2467), - [anon_sym_BANG_TILDE2] = ACTIONS(2467), - [anon_sym_like2] = ACTIONS(2467), - [anon_sym_not_DASHlike2] = ACTIONS(2467), - [anon_sym_STAR_STAR2] = ACTIONS(2467), - [anon_sym_PLUS_PLUS2] = ACTIONS(2467), - [anon_sym_SLASH2] = ACTIONS(2469), - [anon_sym_mod2] = ACTIONS(2467), - [anon_sym_SLASH_SLASH2] = ACTIONS(2467), - [anon_sym_PLUS2] = ACTIONS(2469), - [anon_sym_bit_DASHshl2] = ACTIONS(2467), - [anon_sym_bit_DASHshr2] = ACTIONS(2467), - [anon_sym_bit_DASHand2] = ACTIONS(2467), - [anon_sym_bit_DASHxor2] = ACTIONS(2467), - [anon_sym_bit_DASHor2] = ACTIONS(2467), - [anon_sym_err_GT] = ACTIONS(2469), - [anon_sym_out_GT] = ACTIONS(2469), - [anon_sym_e_GT] = ACTIONS(2469), - [anon_sym_o_GT] = ACTIONS(2469), - [anon_sym_err_PLUSout_GT] = ACTIONS(2469), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2469), - [anon_sym_o_PLUSe_GT] = ACTIONS(2469), - [anon_sym_e_PLUSo_GT] = ACTIONS(2469), - [anon_sym_err_GT_GT] = ACTIONS(2467), - [anon_sym_out_GT_GT] = ACTIONS(2467), - [anon_sym_e_GT_GT] = ACTIONS(2467), - [anon_sym_o_GT_GT] = ACTIONS(2467), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2467), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2467), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2467), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2467), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(845)] = { - [sym_comment] = STATE(845), - [anon_sym_if] = ACTIONS(2471), - [anon_sym_in] = ACTIONS(2471), - [sym__newline] = ACTIONS(2471), - [anon_sym_SEMI] = ACTIONS(2471), - [anon_sym_PIPE] = ACTIONS(2471), - [anon_sym_err_GT_PIPE] = ACTIONS(2471), - [anon_sym_out_GT_PIPE] = ACTIONS(2471), - [anon_sym_e_GT_PIPE] = ACTIONS(2471), - [anon_sym_o_GT_PIPE] = ACTIONS(2471), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2471), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2471), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2471), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2471), - [anon_sym_RPAREN] = ACTIONS(2471), - [anon_sym_GT2] = ACTIONS(2473), - [anon_sym_DASH2] = ACTIONS(2471), - [anon_sym_LBRACE] = ACTIONS(2471), - [anon_sym_RBRACE] = ACTIONS(2471), - [anon_sym_EQ_GT] = ACTIONS(2471), - [anon_sym_STAR2] = ACTIONS(2473), - [anon_sym_and2] = ACTIONS(2471), - [anon_sym_xor2] = ACTIONS(2471), - [anon_sym_or2] = ACTIONS(2471), - [anon_sym_not_DASHin2] = ACTIONS(2471), - [anon_sym_has2] = ACTIONS(2471), - [anon_sym_not_DASHhas2] = ACTIONS(2471), - [anon_sym_starts_DASHwith2] = ACTIONS(2471), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2471), - [anon_sym_ends_DASHwith2] = ACTIONS(2471), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2471), - [anon_sym_EQ_EQ2] = ACTIONS(2471), - [anon_sym_BANG_EQ2] = ACTIONS(2471), - [anon_sym_LT2] = ACTIONS(2473), - [anon_sym_LT_EQ2] = ACTIONS(2471), - [anon_sym_GT_EQ2] = ACTIONS(2471), - [anon_sym_EQ_TILDE2] = ACTIONS(2471), - [anon_sym_BANG_TILDE2] = ACTIONS(2471), - [anon_sym_like2] = ACTIONS(2471), - [anon_sym_not_DASHlike2] = ACTIONS(2471), - [anon_sym_STAR_STAR2] = ACTIONS(2471), - [anon_sym_PLUS_PLUS2] = ACTIONS(2471), - [anon_sym_SLASH2] = ACTIONS(2473), - [anon_sym_mod2] = ACTIONS(2471), - [anon_sym_SLASH_SLASH2] = ACTIONS(2471), - [anon_sym_PLUS2] = ACTIONS(2473), - [anon_sym_bit_DASHshl2] = ACTIONS(2471), - [anon_sym_bit_DASHshr2] = ACTIONS(2471), - [anon_sym_bit_DASHand2] = ACTIONS(2471), - [anon_sym_bit_DASHxor2] = ACTIONS(2471), - [anon_sym_bit_DASHor2] = ACTIONS(2471), - [anon_sym_err_GT] = ACTIONS(2473), - [anon_sym_out_GT] = ACTIONS(2473), - [anon_sym_e_GT] = ACTIONS(2473), - [anon_sym_o_GT] = ACTIONS(2473), - [anon_sym_err_PLUSout_GT] = ACTIONS(2473), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2473), - [anon_sym_o_PLUSe_GT] = ACTIONS(2473), - [anon_sym_e_PLUSo_GT] = ACTIONS(2473), - [anon_sym_err_GT_GT] = ACTIONS(2471), - [anon_sym_out_GT_GT] = ACTIONS(2471), - [anon_sym_e_GT_GT] = ACTIONS(2471), - [anon_sym_o_GT_GT] = ACTIONS(2471), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2471), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2471), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2471), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2471), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(846)] = { - [sym_comment] = STATE(846), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_in] = ACTIONS(2475), - [sym__newline] = ACTIONS(2475), - [anon_sym_SEMI] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(2475), - [anon_sym_err_GT_PIPE] = ACTIONS(2475), - [anon_sym_out_GT_PIPE] = ACTIONS(2475), - [anon_sym_e_GT_PIPE] = ACTIONS(2475), - [anon_sym_o_GT_PIPE] = ACTIONS(2475), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2475), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2475), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2475), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2475), - [anon_sym_RPAREN] = ACTIONS(2475), - [anon_sym_GT2] = ACTIONS(2477), - [anon_sym_DASH2] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_RBRACE] = ACTIONS(2475), - [anon_sym_EQ_GT] = ACTIONS(2475), - [anon_sym_STAR2] = ACTIONS(2477), - [anon_sym_and2] = ACTIONS(2475), - [anon_sym_xor2] = ACTIONS(2475), - [anon_sym_or2] = ACTIONS(2475), - [anon_sym_not_DASHin2] = ACTIONS(2475), - [anon_sym_has2] = ACTIONS(2475), - [anon_sym_not_DASHhas2] = ACTIONS(2475), - [anon_sym_starts_DASHwith2] = ACTIONS(2475), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2475), - [anon_sym_ends_DASHwith2] = ACTIONS(2475), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2475), - [anon_sym_EQ_EQ2] = ACTIONS(2475), - [anon_sym_BANG_EQ2] = ACTIONS(2475), - [anon_sym_LT2] = ACTIONS(2477), - [anon_sym_LT_EQ2] = ACTIONS(2475), - [anon_sym_GT_EQ2] = ACTIONS(2475), - [anon_sym_EQ_TILDE2] = ACTIONS(2475), - [anon_sym_BANG_TILDE2] = ACTIONS(2475), - [anon_sym_like2] = ACTIONS(2475), - [anon_sym_not_DASHlike2] = ACTIONS(2475), - [anon_sym_STAR_STAR2] = ACTIONS(2475), - [anon_sym_PLUS_PLUS2] = ACTIONS(2475), - [anon_sym_SLASH2] = ACTIONS(2477), - [anon_sym_mod2] = ACTIONS(2475), - [anon_sym_SLASH_SLASH2] = ACTIONS(2475), - [anon_sym_PLUS2] = ACTIONS(2477), - [anon_sym_bit_DASHshl2] = ACTIONS(2475), - [anon_sym_bit_DASHshr2] = ACTIONS(2475), - [anon_sym_bit_DASHand2] = ACTIONS(2475), - [anon_sym_bit_DASHxor2] = ACTIONS(2475), - [anon_sym_bit_DASHor2] = ACTIONS(2475), - [anon_sym_err_GT] = ACTIONS(2477), - [anon_sym_out_GT] = ACTIONS(2477), - [anon_sym_e_GT] = ACTIONS(2477), - [anon_sym_o_GT] = ACTIONS(2477), - [anon_sym_err_PLUSout_GT] = ACTIONS(2477), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2477), - [anon_sym_o_PLUSe_GT] = ACTIONS(2477), - [anon_sym_e_PLUSo_GT] = ACTIONS(2477), - [anon_sym_err_GT_GT] = ACTIONS(2475), - [anon_sym_out_GT_GT] = ACTIONS(2475), - [anon_sym_e_GT_GT] = ACTIONS(2475), - [anon_sym_o_GT_GT] = ACTIONS(2475), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2475), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2475), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2475), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2475), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(847)] = { - [sym_comment] = STATE(847), - [anon_sym_in] = ACTIONS(2479), - [sym__newline] = ACTIONS(2479), - [anon_sym_SEMI] = ACTIONS(2479), - [anon_sym_PIPE] = ACTIONS(2479), - [anon_sym_err_GT_PIPE] = ACTIONS(2479), - [anon_sym_out_GT_PIPE] = ACTIONS(2479), - [anon_sym_e_GT_PIPE] = ACTIONS(2479), - [anon_sym_o_GT_PIPE] = ACTIONS(2479), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2479), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2479), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2479), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2479), - [anon_sym_RPAREN] = ACTIONS(2479), - [anon_sym_GT2] = ACTIONS(2481), - [anon_sym_DASH2] = ACTIONS(2479), - [anon_sym_LBRACE] = ACTIONS(2479), - [anon_sym_RBRACE] = ACTIONS(2479), - [anon_sym_EQ_GT] = ACTIONS(2479), - [anon_sym_STAR2] = ACTIONS(2481), - [anon_sym_and2] = ACTIONS(2479), - [anon_sym_xor2] = ACTIONS(2479), - [anon_sym_or2] = ACTIONS(2479), - [anon_sym_not_DASHin2] = ACTIONS(2479), - [anon_sym_has2] = ACTIONS(2479), - [anon_sym_not_DASHhas2] = ACTIONS(2479), - [anon_sym_starts_DASHwith2] = ACTIONS(2479), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2479), - [anon_sym_ends_DASHwith2] = ACTIONS(2479), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2479), - [anon_sym_EQ_EQ2] = ACTIONS(2479), - [anon_sym_BANG_EQ2] = ACTIONS(2479), - [anon_sym_LT2] = ACTIONS(2481), - [anon_sym_LT_EQ2] = ACTIONS(2479), - [anon_sym_GT_EQ2] = ACTIONS(2479), - [anon_sym_EQ_TILDE2] = ACTIONS(2479), - [anon_sym_BANG_TILDE2] = ACTIONS(2479), - [anon_sym_like2] = ACTIONS(2479), - [anon_sym_not_DASHlike2] = ACTIONS(2479), - [anon_sym_STAR_STAR2] = ACTIONS(2479), - [anon_sym_PLUS_PLUS2] = ACTIONS(2479), - [anon_sym_SLASH2] = ACTIONS(2481), - [anon_sym_mod2] = ACTIONS(2479), - [anon_sym_SLASH_SLASH2] = ACTIONS(2479), - [anon_sym_PLUS2] = ACTIONS(2481), - [anon_sym_bit_DASHshl2] = ACTIONS(2479), - [anon_sym_bit_DASHshr2] = ACTIONS(2479), - [anon_sym_bit_DASHand2] = ACTIONS(2479), - [anon_sym_bit_DASHxor2] = ACTIONS(2479), - [anon_sym_bit_DASHor2] = ACTIONS(2479), - [anon_sym_COLON2] = ACTIONS(2479), - [anon_sym_err_GT] = ACTIONS(2481), - [anon_sym_out_GT] = ACTIONS(2481), - [anon_sym_e_GT] = ACTIONS(2481), - [anon_sym_o_GT] = ACTIONS(2481), - [anon_sym_err_PLUSout_GT] = ACTIONS(2481), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2481), - [anon_sym_o_PLUSe_GT] = ACTIONS(2481), - [anon_sym_e_PLUSo_GT] = ACTIONS(2481), - [anon_sym_err_GT_GT] = ACTIONS(2479), - [anon_sym_out_GT_GT] = ACTIONS(2479), - [anon_sym_e_GT_GT] = ACTIONS(2479), - [anon_sym_o_GT_GT] = ACTIONS(2479), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2479), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2479), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2479), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2479), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(848)] = { - [sym_comment] = STATE(848), - [anon_sym_in] = ACTIONS(2479), - [sym__newline] = ACTIONS(2479), - [anon_sym_SEMI] = ACTIONS(2479), - [anon_sym_PIPE] = ACTIONS(2479), - [anon_sym_err_GT_PIPE] = ACTIONS(2479), - [anon_sym_out_GT_PIPE] = ACTIONS(2479), - [anon_sym_e_GT_PIPE] = ACTIONS(2479), - [anon_sym_o_GT_PIPE] = ACTIONS(2479), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2479), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2479), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2479), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2479), - [anon_sym_RPAREN] = ACTIONS(2479), - [anon_sym_GT2] = ACTIONS(2481), - [anon_sym_DASH2] = ACTIONS(2479), - [anon_sym_LBRACE] = ACTIONS(2479), - [anon_sym_RBRACE] = ACTIONS(2479), - [anon_sym_EQ_GT] = ACTIONS(2479), - [anon_sym_STAR2] = ACTIONS(2481), - [anon_sym_and2] = ACTIONS(2479), - [anon_sym_xor2] = ACTIONS(2479), - [anon_sym_or2] = ACTIONS(2479), - [anon_sym_not_DASHin2] = ACTIONS(2479), - [anon_sym_has2] = ACTIONS(2479), - [anon_sym_not_DASHhas2] = ACTIONS(2479), - [anon_sym_starts_DASHwith2] = ACTIONS(2479), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2479), - [anon_sym_ends_DASHwith2] = ACTIONS(2479), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2479), - [anon_sym_EQ_EQ2] = ACTIONS(2479), - [anon_sym_BANG_EQ2] = ACTIONS(2479), - [anon_sym_LT2] = ACTIONS(2481), - [anon_sym_LT_EQ2] = ACTIONS(2479), - [anon_sym_GT_EQ2] = ACTIONS(2479), - [anon_sym_EQ_TILDE2] = ACTIONS(2479), - [anon_sym_BANG_TILDE2] = ACTIONS(2479), - [anon_sym_like2] = ACTIONS(2479), - [anon_sym_not_DASHlike2] = ACTIONS(2479), - [anon_sym_STAR_STAR2] = ACTIONS(2479), - [anon_sym_PLUS_PLUS2] = ACTIONS(2479), - [anon_sym_SLASH2] = ACTIONS(2481), - [anon_sym_mod2] = ACTIONS(2479), - [anon_sym_SLASH_SLASH2] = ACTIONS(2479), - [anon_sym_PLUS2] = ACTIONS(2481), - [anon_sym_bit_DASHshl2] = ACTIONS(2479), - [anon_sym_bit_DASHshr2] = ACTIONS(2479), - [anon_sym_bit_DASHand2] = ACTIONS(2479), - [anon_sym_bit_DASHxor2] = ACTIONS(2479), - [anon_sym_bit_DASHor2] = ACTIONS(2479), - [anon_sym_COLON2] = ACTIONS(2479), - [anon_sym_err_GT] = ACTIONS(2481), - [anon_sym_out_GT] = ACTIONS(2481), - [anon_sym_e_GT] = ACTIONS(2481), - [anon_sym_o_GT] = ACTIONS(2481), - [anon_sym_err_PLUSout_GT] = ACTIONS(2481), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2481), - [anon_sym_o_PLUSe_GT] = ACTIONS(2481), - [anon_sym_e_PLUSo_GT] = ACTIONS(2481), - [anon_sym_err_GT_GT] = ACTIONS(2479), - [anon_sym_out_GT_GT] = ACTIONS(2479), - [anon_sym_e_GT_GT] = ACTIONS(2479), - [anon_sym_o_GT_GT] = ACTIONS(2479), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2479), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2479), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2479), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2479), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(849)] = { - [sym_comment] = STATE(849), - [anon_sym_in] = ACTIONS(2483), - [sym__newline] = ACTIONS(2483), - [anon_sym_SEMI] = ACTIONS(2483), - [anon_sym_PIPE] = ACTIONS(2483), - [anon_sym_err_GT_PIPE] = ACTIONS(2483), - [anon_sym_out_GT_PIPE] = ACTIONS(2483), - [anon_sym_e_GT_PIPE] = ACTIONS(2483), - [anon_sym_o_GT_PIPE] = ACTIONS(2483), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2483), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2483), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2483), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2483), - [anon_sym_RPAREN] = ACTIONS(2483), - [anon_sym_GT2] = ACTIONS(2485), - [anon_sym_DASH2] = ACTIONS(2483), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_RBRACE] = ACTIONS(2483), - [anon_sym_EQ_GT] = ACTIONS(2483), - [anon_sym_STAR2] = ACTIONS(2485), - [anon_sym_and2] = ACTIONS(2483), - [anon_sym_xor2] = ACTIONS(2483), - [anon_sym_or2] = ACTIONS(2483), - [anon_sym_not_DASHin2] = ACTIONS(2483), - [anon_sym_has2] = ACTIONS(2483), - [anon_sym_not_DASHhas2] = ACTIONS(2483), - [anon_sym_starts_DASHwith2] = ACTIONS(2483), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2483), - [anon_sym_ends_DASHwith2] = ACTIONS(2483), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2483), - [anon_sym_EQ_EQ2] = ACTIONS(2483), - [anon_sym_BANG_EQ2] = ACTIONS(2483), - [anon_sym_LT2] = ACTIONS(2485), - [anon_sym_LT_EQ2] = ACTIONS(2483), - [anon_sym_GT_EQ2] = ACTIONS(2483), - [anon_sym_EQ_TILDE2] = ACTIONS(2483), - [anon_sym_BANG_TILDE2] = ACTIONS(2483), - [anon_sym_like2] = ACTIONS(2483), - [anon_sym_not_DASHlike2] = ACTIONS(2483), - [anon_sym_STAR_STAR2] = ACTIONS(2483), - [anon_sym_PLUS_PLUS2] = ACTIONS(2483), - [anon_sym_SLASH2] = ACTIONS(2485), - [anon_sym_mod2] = ACTIONS(2483), - [anon_sym_SLASH_SLASH2] = ACTIONS(2483), - [anon_sym_PLUS2] = ACTIONS(2485), - [anon_sym_bit_DASHshl2] = ACTIONS(2483), - [anon_sym_bit_DASHshr2] = ACTIONS(2483), - [anon_sym_bit_DASHand2] = ACTIONS(2483), - [anon_sym_bit_DASHxor2] = ACTIONS(2483), - [anon_sym_bit_DASHor2] = ACTIONS(2483), - [anon_sym_COLON2] = ACTIONS(2483), - [anon_sym_err_GT] = ACTIONS(2485), - [anon_sym_out_GT] = ACTIONS(2485), - [anon_sym_e_GT] = ACTIONS(2485), - [anon_sym_o_GT] = ACTIONS(2485), - [anon_sym_err_PLUSout_GT] = ACTIONS(2485), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2485), - [anon_sym_o_PLUSe_GT] = ACTIONS(2485), - [anon_sym_e_PLUSo_GT] = ACTIONS(2485), - [anon_sym_err_GT_GT] = ACTIONS(2483), - [anon_sym_out_GT_GT] = ACTIONS(2483), - [anon_sym_e_GT_GT] = ACTIONS(2483), - [anon_sym_o_GT_GT] = ACTIONS(2483), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2483), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2483), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2483), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2483), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(850)] = { - [sym_comment] = STATE(850), - [anon_sym_in] = ACTIONS(2487), - [sym__newline] = ACTIONS(2487), - [anon_sym_SEMI] = ACTIONS(2487), - [anon_sym_PIPE] = ACTIONS(2487), - [anon_sym_err_GT_PIPE] = ACTIONS(2487), - [anon_sym_out_GT_PIPE] = ACTIONS(2487), - [anon_sym_e_GT_PIPE] = ACTIONS(2487), - [anon_sym_o_GT_PIPE] = ACTIONS(2487), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2487), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2487), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2487), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2487), - [anon_sym_RPAREN] = ACTIONS(2487), - [anon_sym_GT2] = ACTIONS(2489), - [anon_sym_DASH2] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2487), - [anon_sym_RBRACE] = ACTIONS(2487), - [anon_sym_EQ_GT] = ACTIONS(2487), - [anon_sym_STAR2] = ACTIONS(2489), - [anon_sym_and2] = ACTIONS(2487), - [anon_sym_xor2] = ACTIONS(2487), - [anon_sym_or2] = ACTIONS(2487), - [anon_sym_not_DASHin2] = ACTIONS(2487), - [anon_sym_has2] = ACTIONS(2487), - [anon_sym_not_DASHhas2] = ACTIONS(2487), - [anon_sym_starts_DASHwith2] = ACTIONS(2487), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2487), - [anon_sym_ends_DASHwith2] = ACTIONS(2487), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2487), - [anon_sym_EQ_EQ2] = ACTIONS(2487), - [anon_sym_BANG_EQ2] = ACTIONS(2487), - [anon_sym_LT2] = ACTIONS(2489), - [anon_sym_LT_EQ2] = ACTIONS(2487), - [anon_sym_GT_EQ2] = ACTIONS(2487), - [anon_sym_EQ_TILDE2] = ACTIONS(2487), - [anon_sym_BANG_TILDE2] = ACTIONS(2487), - [anon_sym_like2] = ACTIONS(2487), - [anon_sym_not_DASHlike2] = ACTIONS(2487), - [anon_sym_STAR_STAR2] = ACTIONS(2487), - [anon_sym_PLUS_PLUS2] = ACTIONS(2487), - [anon_sym_SLASH2] = ACTIONS(2489), - [anon_sym_mod2] = ACTIONS(2487), - [anon_sym_SLASH_SLASH2] = ACTIONS(2487), - [anon_sym_PLUS2] = ACTIONS(2489), - [anon_sym_bit_DASHshl2] = ACTIONS(2487), - [anon_sym_bit_DASHshr2] = ACTIONS(2487), - [anon_sym_bit_DASHand2] = ACTIONS(2487), - [anon_sym_bit_DASHxor2] = ACTIONS(2487), - [anon_sym_bit_DASHor2] = ACTIONS(2487), - [anon_sym_COLON2] = ACTIONS(2487), - [anon_sym_err_GT] = ACTIONS(2489), - [anon_sym_out_GT] = ACTIONS(2489), - [anon_sym_e_GT] = ACTIONS(2489), - [anon_sym_o_GT] = ACTIONS(2489), - [anon_sym_err_PLUSout_GT] = ACTIONS(2489), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2489), - [anon_sym_o_PLUSe_GT] = ACTIONS(2489), - [anon_sym_e_PLUSo_GT] = ACTIONS(2489), - [anon_sym_err_GT_GT] = ACTIONS(2487), - [anon_sym_out_GT_GT] = ACTIONS(2487), - [anon_sym_e_GT_GT] = ACTIONS(2487), - [anon_sym_o_GT_GT] = ACTIONS(2487), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2487), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2487), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2487), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2487), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(851)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(1148), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(671), - [sym__unquoted_with_expr] = STATE(959), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(851), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [STATE(785)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2142), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(676), + [sym__unquoted_with_expr] = STATE(936), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(785), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -111409,67 +106824,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(852)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(1149), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(711), - [sym__unquoted_with_expr] = STATE(962), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(852), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [STATE(786)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2143), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(677), + [sym__unquoted_with_expr] = STATE(939), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(786), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -111479,67 +106894,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(853)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(1150), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(692), - [sym__unquoted_with_expr] = STATE(896), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(853), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [STATE(787)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2144), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1935), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1717), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(678), + [sym__unquoted_with_expr] = STATE(941), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(787), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(2032), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2034), + [anon_sym_DOT_DOT_LT] = ACTIONS(2034), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(2042), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -111549,697 +106964,767 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(854)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(1151), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(693), - [sym__unquoted_with_expr] = STATE(897), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(854), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), + [STATE(788)] = { + [aux_sym__repeat_newline] = STATE(968), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(788), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(855)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(1230), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(694), - [sym__unquoted_with_expr] = STATE(898), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(855), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), + [STATE(789)] = { + [aux_sym__repeat_newline] = STATE(3433), + [aux_sym__pipe_separator] = STATE(753), + [sym_comment] = STATE(789), + [anon_sym_export] = ACTIONS(2393), + [anon_sym_alias] = ACTIONS(2395), + [anon_sym_let] = ACTIONS(2395), + [anon_sym_mut] = ACTIONS(2395), + [anon_sym_const] = ACTIONS(2395), + [aux_sym_cmd_identifier_token1] = ACTIONS(2393), + [anon_sym_def] = ACTIONS(2395), + [anon_sym_use] = ACTIONS(2395), + [anon_sym_export_DASHenv] = ACTIONS(2395), + [anon_sym_extern] = ACTIONS(2395), + [anon_sym_module] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2395), + [anon_sym_loop] = ACTIONS(2395), + [anon_sym_while] = ACTIONS(2395), + [anon_sym_if] = ACTIONS(2395), + [anon_sym_else] = ACTIONS(2395), + [anon_sym_try] = ACTIONS(2395), + [anon_sym_catch] = ACTIONS(2395), + [anon_sym_match] = ACTIONS(2395), + [anon_sym_in] = ACTIONS(2393), + [anon_sym_true] = ACTIONS(2395), + [anon_sym_false] = ACTIONS(2395), + [anon_sym_null] = ACTIONS(2395), + [aux_sym_cmd_identifier_token3] = ACTIONS(2395), + [aux_sym_cmd_identifier_token4] = ACTIONS(2395), + [aux_sym_cmd_identifier_token5] = ACTIONS(2395), + [sym__newline] = ACTIONS(2397), + [anon_sym_PIPE] = ACTIONS(2261), + [anon_sym_err_GT_PIPE] = ACTIONS(2261), + [anon_sym_out_GT_PIPE] = ACTIONS(2261), + [anon_sym_e_GT_PIPE] = ACTIONS(2261), + [anon_sym_o_GT_PIPE] = ACTIONS(2261), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2261), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2261), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2261), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym_DOLLAR] = ACTIONS(2393), + [anon_sym_DASH2] = ACTIONS(2393), + [anon_sym_LBRACE] = ACTIONS(2395), + [anon_sym_DOT_DOT] = ACTIONS(2393), + [anon_sym_where] = ACTIONS(2395), + [aux_sym_expr_unary_token1] = ACTIONS(2395), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2395), + [anon_sym_DOT_DOT_LT] = ACTIONS(2395), + [aux_sym__val_number_decimal_token1] = ACTIONS(2393), + [aux_sym__val_number_decimal_token2] = ACTIONS(2395), + [aux_sym__val_number_decimal_token3] = ACTIONS(2395), + [aux_sym__val_number_decimal_token4] = ACTIONS(2395), + [aux_sym__val_number_token1] = ACTIONS(2395), + [aux_sym__val_number_token2] = ACTIONS(2395), + [aux_sym__val_number_token3] = ACTIONS(2395), + [anon_sym_0b] = ACTIONS(2393), + [anon_sym_0o] = ACTIONS(2393), + [anon_sym_0x] = ACTIONS(2393), + [sym_val_date] = ACTIONS(2395), + [anon_sym_DQUOTE] = ACTIONS(2395), + [anon_sym_SQUOTE] = ACTIONS(2395), + [anon_sym_BQUOTE] = ACTIONS(2395), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2395), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2395), + [anon_sym_CARET] = ACTIONS(2395), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2395), + }, + [STATE(790)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1279), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(987), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(459), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1036), + [sym__unquoted_with_expr] = STATE(1280), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(790), + [anon_sym_true] = ACTIONS(2399), + [anon_sym_false] = ACTIONS(2399), + [anon_sym_null] = ACTIONS(2401), + [aux_sym_cmd_identifier_token3] = ACTIONS(2403), + [aux_sym_cmd_identifier_token4] = ACTIONS(2403), + [aux_sym_cmd_identifier_token5] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2405), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2407), + [anon_sym_DOT_DOT_LT] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2409), + [aux_sym__val_number_decimal_token2] = ACTIONS(2411), + [aux_sym__val_number_decimal_token3] = ACTIONS(2413), + [aux_sym__val_number_decimal_token4] = ACTIONS(2413), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2415), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(856)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(1231), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(695), - [sym__unquoted_with_expr] = STATE(902), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(856), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), + [STATE(791)] = { + [aux_sym__repeat_newline] = STATE(1007), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(791), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(857)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(1236), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(697), - [sym__unquoted_with_expr] = STATE(904), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(857), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), + [STATE(792)] = { + [aux_sym__repeat_newline] = STATE(969), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(792), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(858)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(1237), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(698), - [sym__unquoted_with_expr] = STATE(906), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(858), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), + [STATE(793)] = { + [sym_comment] = STATE(793), + [anon_sym_if] = ACTIONS(2417), + [anon_sym_in] = ACTIONS(2417), + [sym__newline] = ACTIONS(2417), + [anon_sym_SEMI] = ACTIONS(2417), + [anon_sym_PIPE] = ACTIONS(2417), + [anon_sym_err_GT_PIPE] = ACTIONS(2417), + [anon_sym_out_GT_PIPE] = ACTIONS(2417), + [anon_sym_e_GT_PIPE] = ACTIONS(2417), + [anon_sym_o_GT_PIPE] = ACTIONS(2417), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2417), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2417), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2417), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2417), + [anon_sym_RPAREN] = ACTIONS(2417), + [anon_sym_GT2] = ACTIONS(2419), + [anon_sym_DASH2] = ACTIONS(2417), + [anon_sym_LBRACE] = ACTIONS(2417), + [anon_sym_RBRACE] = ACTIONS(2417), + [anon_sym_EQ_GT] = ACTIONS(2417), + [anon_sym_STAR2] = ACTIONS(2419), + [anon_sym_and2] = ACTIONS(2417), + [anon_sym_xor2] = ACTIONS(2417), + [anon_sym_or2] = ACTIONS(2417), + [anon_sym_not_DASHin2] = ACTIONS(2417), + [anon_sym_has2] = ACTIONS(2417), + [anon_sym_not_DASHhas2] = ACTIONS(2417), + [anon_sym_starts_DASHwith2] = ACTIONS(2417), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2417), + [anon_sym_ends_DASHwith2] = ACTIONS(2417), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2417), + [anon_sym_EQ_EQ2] = ACTIONS(2417), + [anon_sym_BANG_EQ2] = ACTIONS(2417), + [anon_sym_LT2] = ACTIONS(2419), + [anon_sym_LT_EQ2] = ACTIONS(2417), + [anon_sym_GT_EQ2] = ACTIONS(2417), + [anon_sym_EQ_TILDE2] = ACTIONS(2417), + [anon_sym_BANG_TILDE2] = ACTIONS(2417), + [anon_sym_like2] = ACTIONS(2417), + [anon_sym_not_DASHlike2] = ACTIONS(2417), + [anon_sym_STAR_STAR2] = ACTIONS(2417), + [anon_sym_PLUS_PLUS2] = ACTIONS(2417), + [anon_sym_SLASH2] = ACTIONS(2419), + [anon_sym_mod2] = ACTIONS(2417), + [anon_sym_SLASH_SLASH2] = ACTIONS(2417), + [anon_sym_PLUS2] = ACTIONS(2419), + [anon_sym_bit_DASHshl2] = ACTIONS(2417), + [anon_sym_bit_DASHshr2] = ACTIONS(2417), + [anon_sym_bit_DASHand2] = ACTIONS(2417), + [anon_sym_bit_DASHxor2] = ACTIONS(2417), + [anon_sym_bit_DASHor2] = ACTIONS(2417), + [anon_sym_err_GT] = ACTIONS(2419), + [anon_sym_out_GT] = ACTIONS(2419), + [anon_sym_e_GT] = ACTIONS(2419), + [anon_sym_o_GT] = ACTIONS(2419), + [anon_sym_err_PLUSout_GT] = ACTIONS(2419), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2419), + [anon_sym_o_PLUSe_GT] = ACTIONS(2419), + [anon_sym_e_PLUSo_GT] = ACTIONS(2419), + [anon_sym_err_GT_GT] = ACTIONS(2417), + [anon_sym_out_GT_GT] = ACTIONS(2417), + [anon_sym_e_GT_GT] = ACTIONS(2417), + [anon_sym_o_GT_GT] = ACTIONS(2417), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2417), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2417), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2417), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2417), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(859)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(907), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(699), - [sym__unquoted_with_expr] = STATE(895), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(859), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), + [STATE(794)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1282), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(987), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(459), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1037), + [sym__unquoted_with_expr] = STATE(1283), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(794), + [anon_sym_true] = ACTIONS(2399), + [anon_sym_false] = ACTIONS(2399), + [anon_sym_null] = ACTIONS(2401), + [aux_sym_cmd_identifier_token3] = ACTIONS(2403), + [aux_sym_cmd_identifier_token4] = ACTIONS(2403), + [aux_sym_cmd_identifier_token5] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2405), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2407), + [anon_sym_DOT_DOT_LT] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2409), + [aux_sym__val_number_decimal_token2] = ACTIONS(2411), + [aux_sym__val_number_decimal_token3] = ACTIONS(2413), + [aux_sym__val_number_decimal_token4] = ACTIONS(2413), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2415), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(860)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(1255), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(700), - [sym__unquoted_with_expr] = STATE(911), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(860), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), + [STATE(795)] = { + [aux_sym__repeat_newline] = STATE(1010), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(795), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(861)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(1207), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(701), - [sym__unquoted_with_expr] = STATE(913), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(861), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), + [STATE(796)] = { + [aux_sym__repeat_newline] = STATE(972), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(796), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(862)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(1137), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(702), - [sym__unquoted_with_expr] = STATE(915), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(862), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), + [STATE(797)] = { + [aux_sym__repeat_newline] = STATE(1014), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(797), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(863)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(1130), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(914), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(450), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(703), - [sym__unquoted_with_expr] = STATE(917), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(863), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1916), - [aux_sym_cmd_identifier_token3] = ACTIONS(1918), - [aux_sym_cmd_identifier_token4] = ACTIONS(1918), - [aux_sym_cmd_identifier_token5] = ACTIONS(1918), + [STATE(798)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(895), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(674), + [sym__unquoted_with_expr] = STATE(932), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(798), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1900), [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1924), - [aux_sym__val_number_decimal_token2] = ACTIONS(1926), - [aux_sym__val_number_decimal_token3] = ACTIONS(1928), - [aux_sym__val_number_decimal_token4] = ACTIONS(1928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1930), + [sym_val_date] = ACTIONS(1910), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -112249,557 +107734,347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(864)] = { - [sym_comment] = STATE(864), - [anon_sym_in] = ACTIONS(2491), - [sym__newline] = ACTIONS(2491), - [anon_sym_SEMI] = ACTIONS(2491), - [anon_sym_PIPE] = ACTIONS(2491), - [anon_sym_err_GT_PIPE] = ACTIONS(2491), - [anon_sym_out_GT_PIPE] = ACTIONS(2491), - [anon_sym_e_GT_PIPE] = ACTIONS(2491), - [anon_sym_o_GT_PIPE] = ACTIONS(2491), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2491), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2491), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2491), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2491), - [anon_sym_RPAREN] = ACTIONS(2491), - [anon_sym_GT2] = ACTIONS(2493), - [anon_sym_DASH2] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_RBRACE] = ACTIONS(2491), - [anon_sym_EQ_GT] = ACTIONS(2491), - [anon_sym_STAR2] = ACTIONS(2493), - [anon_sym_and2] = ACTIONS(2491), - [anon_sym_xor2] = ACTIONS(2491), - [anon_sym_or2] = ACTIONS(2491), - [anon_sym_not_DASHin2] = ACTIONS(2491), - [anon_sym_has2] = ACTIONS(2491), - [anon_sym_not_DASHhas2] = ACTIONS(2491), - [anon_sym_starts_DASHwith2] = ACTIONS(2491), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2491), - [anon_sym_ends_DASHwith2] = ACTIONS(2491), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2491), - [anon_sym_EQ_EQ2] = ACTIONS(2491), - [anon_sym_BANG_EQ2] = ACTIONS(2491), - [anon_sym_LT2] = ACTIONS(2493), - [anon_sym_LT_EQ2] = ACTIONS(2491), - [anon_sym_GT_EQ2] = ACTIONS(2491), - [anon_sym_EQ_TILDE2] = ACTIONS(2491), - [anon_sym_BANG_TILDE2] = ACTIONS(2491), - [anon_sym_like2] = ACTIONS(2491), - [anon_sym_not_DASHlike2] = ACTIONS(2491), - [anon_sym_STAR_STAR2] = ACTIONS(2491), - [anon_sym_PLUS_PLUS2] = ACTIONS(2491), - [anon_sym_SLASH2] = ACTIONS(2493), - [anon_sym_mod2] = ACTIONS(2491), - [anon_sym_SLASH_SLASH2] = ACTIONS(2491), - [anon_sym_PLUS2] = ACTIONS(2493), - [anon_sym_bit_DASHshl2] = ACTIONS(2491), - [anon_sym_bit_DASHshr2] = ACTIONS(2491), - [anon_sym_bit_DASHand2] = ACTIONS(2491), - [anon_sym_bit_DASHxor2] = ACTIONS(2491), - [anon_sym_bit_DASHor2] = ACTIONS(2491), - [anon_sym_COLON2] = ACTIONS(2491), - [anon_sym_err_GT] = ACTIONS(2493), - [anon_sym_out_GT] = ACTIONS(2493), - [anon_sym_e_GT] = ACTIONS(2493), - [anon_sym_o_GT] = ACTIONS(2493), - [anon_sym_err_PLUSout_GT] = ACTIONS(2493), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2493), - [anon_sym_o_PLUSe_GT] = ACTIONS(2493), - [anon_sym_e_PLUSo_GT] = ACTIONS(2493), - [anon_sym_err_GT_GT] = ACTIONS(2491), - [anon_sym_out_GT_GT] = ACTIONS(2491), - [anon_sym_e_GT_GT] = ACTIONS(2491), - [anon_sym_o_GT_GT] = ACTIONS(2491), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2491), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2491), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2491), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2491), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(865)] = { - [sym_comment] = STATE(865), - [anon_sym_in] = ACTIONS(2495), - [sym__newline] = ACTIONS(2495), - [anon_sym_SEMI] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2495), - [anon_sym_err_GT_PIPE] = ACTIONS(2495), - [anon_sym_out_GT_PIPE] = ACTIONS(2495), - [anon_sym_e_GT_PIPE] = ACTIONS(2495), - [anon_sym_o_GT_PIPE] = ACTIONS(2495), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2495), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2495), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2495), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2495), - [anon_sym_RPAREN] = ACTIONS(2495), - [anon_sym_GT2] = ACTIONS(2497), - [anon_sym_DASH2] = ACTIONS(2495), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_RBRACE] = ACTIONS(2495), - [anon_sym_EQ_GT] = ACTIONS(2495), - [anon_sym_STAR2] = ACTIONS(2497), - [anon_sym_and2] = ACTIONS(2495), - [anon_sym_xor2] = ACTIONS(2495), - [anon_sym_or2] = ACTIONS(2495), - [anon_sym_not_DASHin2] = ACTIONS(2495), - [anon_sym_has2] = ACTIONS(2495), - [anon_sym_not_DASHhas2] = ACTIONS(2495), - [anon_sym_starts_DASHwith2] = ACTIONS(2495), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2495), - [anon_sym_ends_DASHwith2] = ACTIONS(2495), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2495), - [anon_sym_EQ_EQ2] = ACTIONS(2495), - [anon_sym_BANG_EQ2] = ACTIONS(2495), - [anon_sym_LT2] = ACTIONS(2497), - [anon_sym_LT_EQ2] = ACTIONS(2495), - [anon_sym_GT_EQ2] = ACTIONS(2495), - [anon_sym_EQ_TILDE2] = ACTIONS(2495), - [anon_sym_BANG_TILDE2] = ACTIONS(2495), - [anon_sym_like2] = ACTIONS(2495), - [anon_sym_not_DASHlike2] = ACTIONS(2495), - [anon_sym_STAR_STAR2] = ACTIONS(2495), - [anon_sym_PLUS_PLUS2] = ACTIONS(2495), - [anon_sym_SLASH2] = ACTIONS(2497), - [anon_sym_mod2] = ACTIONS(2495), - [anon_sym_SLASH_SLASH2] = ACTIONS(2495), - [anon_sym_PLUS2] = ACTIONS(2497), - [anon_sym_bit_DASHshl2] = ACTIONS(2495), - [anon_sym_bit_DASHshr2] = ACTIONS(2495), - [anon_sym_bit_DASHand2] = ACTIONS(2495), - [anon_sym_bit_DASHxor2] = ACTIONS(2495), - [anon_sym_bit_DASHor2] = ACTIONS(2495), - [anon_sym_COLON2] = ACTIONS(2495), - [anon_sym_err_GT] = ACTIONS(2497), - [anon_sym_out_GT] = ACTIONS(2497), - [anon_sym_e_GT] = ACTIONS(2497), - [anon_sym_o_GT] = ACTIONS(2497), - [anon_sym_err_PLUSout_GT] = ACTIONS(2497), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2497), - [anon_sym_o_PLUSe_GT] = ACTIONS(2497), - [anon_sym_e_PLUSo_GT] = ACTIONS(2497), - [anon_sym_err_GT_GT] = ACTIONS(2495), - [anon_sym_out_GT_GT] = ACTIONS(2495), - [anon_sym_e_GT_GT] = ACTIONS(2495), - [anon_sym_o_GT_GT] = ACTIONS(2495), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2495), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2495), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2495), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2495), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(866)] = { - [aux_sym__repeat_newline] = STATE(1119), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(866), - [anon_sym_in] = ACTIONS(2499), - [sym__newline] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(2499), - [anon_sym_err_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_GT_PIPE] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), - [anon_sym_RPAREN] = ACTIONS(2499), - [anon_sym_GT2] = ACTIONS(2501), - [anon_sym_DASH2] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_STAR2] = ACTIONS(2501), - [anon_sym_and2] = ACTIONS(2499), - [anon_sym_xor2] = ACTIONS(2499), - [anon_sym_or2] = ACTIONS(2499), - [anon_sym_not_DASHin2] = ACTIONS(2499), - [anon_sym_has2] = ACTIONS(2499), - [anon_sym_not_DASHhas2] = ACTIONS(2499), - [anon_sym_starts_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), - [anon_sym_ends_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), - [anon_sym_EQ_EQ2] = ACTIONS(2499), - [anon_sym_BANG_EQ2] = ACTIONS(2499), - [anon_sym_LT2] = ACTIONS(2501), - [anon_sym_LT_EQ2] = ACTIONS(2499), - [anon_sym_GT_EQ2] = ACTIONS(2499), - [anon_sym_EQ_TILDE2] = ACTIONS(2499), - [anon_sym_BANG_TILDE2] = ACTIONS(2499), - [anon_sym_like2] = ACTIONS(2499), - [anon_sym_not_DASHlike2] = ACTIONS(2499), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2499), - [anon_sym_PLUS_PLUS2] = ACTIONS(2499), - [anon_sym_SLASH2] = ACTIONS(2501), - [anon_sym_mod2] = ACTIONS(2499), - [anon_sym_SLASH_SLASH2] = ACTIONS(2499), - [anon_sym_PLUS2] = ACTIONS(2501), - [anon_sym_bit_DASHshl2] = ACTIONS(2499), - [anon_sym_bit_DASHshr2] = ACTIONS(2499), - [anon_sym_bit_DASHand2] = ACTIONS(2499), - [anon_sym_bit_DASHxor2] = ACTIONS(2499), - [anon_sym_bit_DASHor2] = ACTIONS(2499), - [anon_sym_err_GT] = ACTIONS(2501), - [anon_sym_out_GT] = ACTIONS(2501), - [anon_sym_e_GT] = ACTIONS(2501), - [anon_sym_o_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT] = ACTIONS(2501), - [anon_sym_err_GT_GT] = ACTIONS(2499), - [anon_sym_out_GT_GT] = ACTIONS(2499), - [anon_sym_e_GT_GT] = ACTIONS(2499), - [anon_sym_o_GT_GT] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(867)] = { - [aux_sym__repeat_newline] = STATE(1120), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(867), - [anon_sym_in] = ACTIONS(2499), - [sym__newline] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(2499), - [anon_sym_err_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_GT_PIPE] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), - [anon_sym_RPAREN] = ACTIONS(2499), - [anon_sym_GT2] = ACTIONS(2501), - [anon_sym_DASH2] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_STAR2] = ACTIONS(2501), - [anon_sym_and2] = ACTIONS(2499), - [anon_sym_xor2] = ACTIONS(2499), - [anon_sym_or2] = ACTIONS(2499), - [anon_sym_not_DASHin2] = ACTIONS(2499), - [anon_sym_has2] = ACTIONS(2499), - [anon_sym_not_DASHhas2] = ACTIONS(2499), - [anon_sym_starts_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), - [anon_sym_ends_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), - [anon_sym_EQ_EQ2] = ACTIONS(2499), - [anon_sym_BANG_EQ2] = ACTIONS(2499), - [anon_sym_LT2] = ACTIONS(2501), - [anon_sym_LT_EQ2] = ACTIONS(2499), - [anon_sym_GT_EQ2] = ACTIONS(2499), - [anon_sym_EQ_TILDE2] = ACTIONS(2499), - [anon_sym_BANG_TILDE2] = ACTIONS(2499), - [anon_sym_like2] = ACTIONS(2499), - [anon_sym_not_DASHlike2] = ACTIONS(2499), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2499), - [anon_sym_PLUS_PLUS2] = ACTIONS(2499), - [anon_sym_SLASH2] = ACTIONS(2501), - [anon_sym_mod2] = ACTIONS(2499), - [anon_sym_SLASH_SLASH2] = ACTIONS(2499), - [anon_sym_PLUS2] = ACTIONS(2501), - [anon_sym_bit_DASHshl2] = ACTIONS(2499), - [anon_sym_bit_DASHshr2] = ACTIONS(2499), - [anon_sym_bit_DASHand2] = ACTIONS(2499), - [anon_sym_bit_DASHxor2] = ACTIONS(2499), - [anon_sym_bit_DASHor2] = ACTIONS(2499), - [anon_sym_err_GT] = ACTIONS(2501), - [anon_sym_out_GT] = ACTIONS(2501), - [anon_sym_e_GT] = ACTIONS(2501), - [anon_sym_o_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT] = ACTIONS(2501), - [anon_sym_err_GT_GT] = ACTIONS(2499), - [anon_sym_out_GT_GT] = ACTIONS(2499), - [anon_sym_e_GT_GT] = ACTIONS(2499), - [anon_sym_o_GT_GT] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [STATE(799)] = { + [aux_sym__repeat_newline] = STATE(1018), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(799), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(868)] = { - [aux_sym__repeat_newline] = STATE(1121), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(868), - [anon_sym_in] = ACTIONS(2499), - [sym__newline] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(2499), - [anon_sym_err_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_GT_PIPE] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), - [anon_sym_RPAREN] = ACTIONS(2499), - [anon_sym_GT2] = ACTIONS(2501), - [anon_sym_DASH2] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_STAR2] = ACTIONS(2501), - [anon_sym_and2] = ACTIONS(2499), - [anon_sym_xor2] = ACTIONS(2499), - [anon_sym_or2] = ACTIONS(2499), - [anon_sym_not_DASHin2] = ACTIONS(2499), - [anon_sym_has2] = ACTIONS(2499), - [anon_sym_not_DASHhas2] = ACTIONS(2499), - [anon_sym_starts_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), - [anon_sym_ends_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), - [anon_sym_EQ_EQ2] = ACTIONS(2499), - [anon_sym_BANG_EQ2] = ACTIONS(2499), - [anon_sym_LT2] = ACTIONS(2501), - [anon_sym_LT_EQ2] = ACTIONS(2499), - [anon_sym_GT_EQ2] = ACTIONS(2499), - [anon_sym_EQ_TILDE2] = ACTIONS(2499), - [anon_sym_BANG_TILDE2] = ACTIONS(2499), - [anon_sym_like2] = ACTIONS(2499), - [anon_sym_not_DASHlike2] = ACTIONS(2499), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2499), - [anon_sym_PLUS_PLUS2] = ACTIONS(2499), - [anon_sym_SLASH2] = ACTIONS(2501), - [anon_sym_mod2] = ACTIONS(2499), - [anon_sym_SLASH_SLASH2] = ACTIONS(2499), - [anon_sym_PLUS2] = ACTIONS(2501), - [anon_sym_bit_DASHshl2] = ACTIONS(2499), - [anon_sym_bit_DASHshr2] = ACTIONS(2499), - [anon_sym_bit_DASHand2] = ACTIONS(2499), - [anon_sym_bit_DASHxor2] = ACTIONS(2499), - [anon_sym_bit_DASHor2] = ACTIONS(2499), - [anon_sym_err_GT] = ACTIONS(2501), - [anon_sym_out_GT] = ACTIONS(2501), - [anon_sym_e_GT] = ACTIONS(2501), - [anon_sym_o_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT] = ACTIONS(2501), - [anon_sym_err_GT_GT] = ACTIONS(2499), - [anon_sym_out_GT_GT] = ACTIONS(2499), - [anon_sym_e_GT_GT] = ACTIONS(2499), - [anon_sym_o_GT_GT] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [STATE(800)] = { + [aux_sym__repeat_newline] = STATE(974), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(800), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(869)] = { - [aux_sym__repeat_newline] = STATE(1123), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(869), - [anon_sym_in] = ACTIONS(2499), - [sym__newline] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(2499), - [anon_sym_err_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_GT_PIPE] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), - [anon_sym_RPAREN] = ACTIONS(2499), - [anon_sym_GT2] = ACTIONS(2501), - [anon_sym_DASH2] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_STAR2] = ACTIONS(2501), - [anon_sym_and2] = ACTIONS(2499), - [anon_sym_xor2] = ACTIONS(2499), - [anon_sym_or2] = ACTIONS(2499), - [anon_sym_not_DASHin2] = ACTIONS(2499), - [anon_sym_has2] = ACTIONS(2499), - [anon_sym_not_DASHhas2] = ACTIONS(2499), - [anon_sym_starts_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), - [anon_sym_ends_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), - [anon_sym_EQ_EQ2] = ACTIONS(2499), - [anon_sym_BANG_EQ2] = ACTIONS(2499), - [anon_sym_LT2] = ACTIONS(2501), - [anon_sym_LT_EQ2] = ACTIONS(2499), - [anon_sym_GT_EQ2] = ACTIONS(2499), - [anon_sym_EQ_TILDE2] = ACTIONS(2499), - [anon_sym_BANG_TILDE2] = ACTIONS(2499), - [anon_sym_like2] = ACTIONS(2499), - [anon_sym_not_DASHlike2] = ACTIONS(2499), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2499), - [anon_sym_PLUS_PLUS2] = ACTIONS(2499), - [anon_sym_SLASH2] = ACTIONS(2501), - [anon_sym_mod2] = ACTIONS(2499), - [anon_sym_SLASH_SLASH2] = ACTIONS(2499), - [anon_sym_PLUS2] = ACTIONS(2501), - [anon_sym_bit_DASHshl2] = ACTIONS(2499), - [anon_sym_bit_DASHshr2] = ACTIONS(2499), - [anon_sym_bit_DASHand2] = ACTIONS(2499), - [anon_sym_bit_DASHxor2] = ACTIONS(2499), - [anon_sym_bit_DASHor2] = ACTIONS(2499), - [anon_sym_err_GT] = ACTIONS(2501), - [anon_sym_out_GT] = ACTIONS(2501), - [anon_sym_e_GT] = ACTIONS(2501), - [anon_sym_o_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT] = ACTIONS(2501), - [anon_sym_err_GT_GT] = ACTIONS(2499), - [anon_sym_out_GT_GT] = ACTIONS(2499), - [anon_sym_e_GT_GT] = ACTIONS(2499), - [anon_sym_o_GT_GT] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [STATE(801)] = { + [aux_sym__repeat_newline] = STATE(1023), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(801), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(870)] = { - [aux_sym__repeat_newline] = STATE(1124), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(870), - [anon_sym_in] = ACTIONS(2499), - [sym__newline] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(2499), - [anon_sym_err_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_GT_PIPE] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), - [anon_sym_RPAREN] = ACTIONS(2499), - [anon_sym_GT2] = ACTIONS(2501), - [anon_sym_DASH2] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_STAR2] = ACTIONS(2501), - [anon_sym_and2] = ACTIONS(2499), - [anon_sym_xor2] = ACTIONS(2499), - [anon_sym_or2] = ACTIONS(2499), - [anon_sym_not_DASHin2] = ACTIONS(2499), - [anon_sym_has2] = ACTIONS(2499), - [anon_sym_not_DASHhas2] = ACTIONS(2499), - [anon_sym_starts_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), - [anon_sym_ends_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), - [anon_sym_EQ_EQ2] = ACTIONS(2499), - [anon_sym_BANG_EQ2] = ACTIONS(2499), - [anon_sym_LT2] = ACTIONS(2501), - [anon_sym_LT_EQ2] = ACTIONS(2499), - [anon_sym_GT_EQ2] = ACTIONS(2499), - [anon_sym_EQ_TILDE2] = ACTIONS(2499), - [anon_sym_BANG_TILDE2] = ACTIONS(2499), - [anon_sym_like2] = ACTIONS(2499), - [anon_sym_not_DASHlike2] = ACTIONS(2499), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2499), - [anon_sym_PLUS_PLUS2] = ACTIONS(2499), - [anon_sym_SLASH2] = ACTIONS(2501), - [anon_sym_mod2] = ACTIONS(2499), - [anon_sym_SLASH_SLASH2] = ACTIONS(2499), - [anon_sym_PLUS2] = ACTIONS(2501), - [anon_sym_bit_DASHshl2] = ACTIONS(2499), - [anon_sym_bit_DASHshr2] = ACTIONS(2499), - [anon_sym_bit_DASHand2] = ACTIONS(2499), - [anon_sym_bit_DASHxor2] = ACTIONS(2499), - [anon_sym_bit_DASHor2] = ACTIONS(2499), - [anon_sym_err_GT] = ACTIONS(2501), - [anon_sym_out_GT] = ACTIONS(2501), - [anon_sym_e_GT] = ACTIONS(2501), - [anon_sym_o_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT] = ACTIONS(2501), - [anon_sym_err_GT_GT] = ACTIONS(2499), - [anon_sym_out_GT_GT] = ACTIONS(2499), - [anon_sym_e_GT_GT] = ACTIONS(2499), - [anon_sym_o_GT_GT] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [STATE(802)] = { + [aux_sym__repeat_newline] = STATE(975), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(802), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(871)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(1617), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(671), - [sym__unquoted_with_expr] = STATE(959), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(871), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [STATE(803)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2145), + [sym_expr_parenthesized] = STATE(1942), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1969), + [sym_val_variable] = STATE(1960), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1762), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(703), + [sym__unquoted_with_expr] = STATE(957), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(803), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_null] = ACTIONS(2423), + [aux_sym_cmd_identifier_token3] = ACTIONS(2425), + [aux_sym_cmd_identifier_token4] = ACTIONS(2425), + [aux_sym_cmd_identifier_token5] = ACTIONS(2425), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT] = ACTIONS(2427), + [aux_sym_expr_unary_token1] = ACTIONS(2429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2439), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -112809,67 +108084,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(872)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(1618), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(711), - [sym__unquoted_with_expr] = STATE(962), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(872), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [STATE(804)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2146), + [sym_expr_parenthesized] = STATE(1942), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1969), + [sym_val_variable] = STATE(1960), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1762), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(704), + [sym__unquoted_with_expr] = STATE(959), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(804), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_null] = ACTIONS(2423), + [aux_sym_cmd_identifier_token3] = ACTIONS(2425), + [aux_sym_cmd_identifier_token4] = ACTIONS(2425), + [aux_sym_cmd_identifier_token5] = ACTIONS(2425), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT] = ACTIONS(2427), + [aux_sym_expr_unary_token1] = ACTIONS(2429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2439), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -112879,67 +108154,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(873)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(1619), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(692), - [sym__unquoted_with_expr] = STATE(896), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(873), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [STATE(805)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2147), + [sym_expr_parenthesized] = STATE(1942), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1969), + [sym_val_variable] = STATE(1960), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1762), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(706), + [sym__unquoted_with_expr] = STATE(899), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(805), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_null] = ACTIONS(2423), + [aux_sym_cmd_identifier_token3] = ACTIONS(2425), + [aux_sym_cmd_identifier_token4] = ACTIONS(2425), + [aux_sym_cmd_identifier_token5] = ACTIONS(2425), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT] = ACTIONS(2427), + [aux_sym_expr_unary_token1] = ACTIONS(2429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2439), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -112949,67 +108224,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(874)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(1620), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(693), - [sym__unquoted_with_expr] = STATE(897), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(874), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [STATE(806)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2148), + [sym_expr_parenthesized] = STATE(1942), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1969), + [sym_val_variable] = STATE(1960), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1762), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(709), + [sym__unquoted_with_expr] = STATE(901), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(806), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_null] = ACTIONS(2423), + [aux_sym_cmd_identifier_token3] = ACTIONS(2425), + [aux_sym_cmd_identifier_token4] = ACTIONS(2425), + [aux_sym_cmd_identifier_token5] = ACTIONS(2425), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT] = ACTIONS(2427), + [aux_sym_expr_unary_token1] = ACTIONS(2429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2439), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -113019,67 +108294,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(875)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(1621), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(694), - [sym__unquoted_with_expr] = STATE(898), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(875), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [STATE(807)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2149), + [sym_expr_parenthesized] = STATE(1942), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1969), + [sym_val_variable] = STATE(1960), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1762), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(690), + [sym__unquoted_with_expr] = STATE(904), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(807), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_null] = ACTIONS(2423), + [aux_sym_cmd_identifier_token3] = ACTIONS(2425), + [aux_sym_cmd_identifier_token4] = ACTIONS(2425), + [aux_sym_cmd_identifier_token5] = ACTIONS(2425), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT] = ACTIONS(2427), + [aux_sym_expr_unary_token1] = ACTIONS(2429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2439), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -113089,67 +108364,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(876)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(1622), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(695), - [sym__unquoted_with_expr] = STATE(902), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(876), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [STATE(808)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2150), + [sym_expr_parenthesized] = STATE(1942), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1969), + [sym_val_variable] = STATE(1960), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1762), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(691), + [sym__unquoted_with_expr] = STATE(906), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(808), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_null] = ACTIONS(2423), + [aux_sym_cmd_identifier_token3] = ACTIONS(2425), + [aux_sym_cmd_identifier_token4] = ACTIONS(2425), + [aux_sym_cmd_identifier_token5] = ACTIONS(2425), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT] = ACTIONS(2427), + [aux_sym_expr_unary_token1] = ACTIONS(2429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2439), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -113159,67 +108434,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(877)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(1623), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(697), - [sym__unquoted_with_expr] = STATE(904), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(877), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [STATE(809)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2151), + [sym_expr_parenthesized] = STATE(1942), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1969), + [sym_val_variable] = STATE(1960), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1762), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(672), + [sym__unquoted_with_expr] = STATE(926), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(809), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_null] = ACTIONS(2423), + [aux_sym_cmd_identifier_token3] = ACTIONS(2425), + [aux_sym_cmd_identifier_token4] = ACTIONS(2425), + [aux_sym_cmd_identifier_token5] = ACTIONS(2425), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT] = ACTIONS(2427), + [aux_sym_expr_unary_token1] = ACTIONS(2429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2439), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -113229,67 +108504,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(878)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(1624), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(698), - [sym__unquoted_with_expr] = STATE(906), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(878), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [STATE(810)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2152), + [sym_expr_parenthesized] = STATE(1942), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1969), + [sym_val_variable] = STATE(1960), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1762), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(673), + [sym__unquoted_with_expr] = STATE(929), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(810), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_null] = ACTIONS(2423), + [aux_sym_cmd_identifier_token3] = ACTIONS(2425), + [aux_sym_cmd_identifier_token4] = ACTIONS(2425), + [aux_sym_cmd_identifier_token5] = ACTIONS(2425), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT] = ACTIONS(2427), + [aux_sym_expr_unary_token1] = ACTIONS(2429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2439), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -113299,67 +108574,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(879)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(907), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(699), - [sym__unquoted_with_expr] = STATE(895), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(879), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [STATE(811)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(895), + [sym_expr_parenthesized] = STATE(1942), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1969), + [sym_val_variable] = STATE(1960), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1762), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(674), + [sym__unquoted_with_expr] = STATE(932), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(811), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_null] = ACTIONS(2423), + [aux_sym_cmd_identifier_token3] = ACTIONS(2425), + [aux_sym_cmd_identifier_token4] = ACTIONS(2425), + [aux_sym_cmd_identifier_token5] = ACTIONS(2425), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT] = ACTIONS(2427), + [aux_sym_expr_unary_token1] = ACTIONS(2429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2439), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -113369,67 +108644,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(880)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(1625), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(700), - [sym__unquoted_with_expr] = STATE(911), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(880), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [STATE(812)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2153), + [sym_expr_parenthesized] = STATE(1942), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1969), + [sym_val_variable] = STATE(1960), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1762), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(675), + [sym__unquoted_with_expr] = STATE(934), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(812), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_null] = ACTIONS(2423), + [aux_sym_cmd_identifier_token3] = ACTIONS(2425), + [aux_sym_cmd_identifier_token4] = ACTIONS(2425), + [aux_sym_cmd_identifier_token5] = ACTIONS(2425), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT] = ACTIONS(2427), + [aux_sym_expr_unary_token1] = ACTIONS(2429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2439), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -113439,67 +108714,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(881)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(1626), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(701), - [sym__unquoted_with_expr] = STATE(913), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(881), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [STATE(813)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2154), + [sym_expr_parenthesized] = STATE(1942), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1969), + [sym_val_variable] = STATE(1960), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1762), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(676), + [sym__unquoted_with_expr] = STATE(936), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(813), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_null] = ACTIONS(2423), + [aux_sym_cmd_identifier_token3] = ACTIONS(2425), + [aux_sym_cmd_identifier_token4] = ACTIONS(2425), + [aux_sym_cmd_identifier_token5] = ACTIONS(2425), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT] = ACTIONS(2427), + [aux_sym_expr_unary_token1] = ACTIONS(2429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2439), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -113509,67 +108784,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(882)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(1627), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(702), - [sym__unquoted_with_expr] = STATE(915), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(882), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [STATE(814)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2155), + [sym_expr_parenthesized] = STATE(1942), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1969), + [sym_val_variable] = STATE(1960), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1762), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(677), + [sym__unquoted_with_expr] = STATE(939), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(814), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_null] = ACTIONS(2423), + [aux_sym_cmd_identifier_token3] = ACTIONS(2425), + [aux_sym_cmd_identifier_token4] = ACTIONS(2425), + [aux_sym_cmd_identifier_token5] = ACTIONS(2425), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT] = ACTIONS(2427), + [aux_sym_expr_unary_token1] = ACTIONS(2429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2439), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -113579,67 +108854,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(883)] = { - [sym_expr_unary] = STATE(957), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(957), - [sym__expr_binary_expression] = STATE(1628), - [sym_expr_parenthesized] = STATE(689), - [sym_val_range] = STATE(957), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(957), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(1461), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(703), - [sym__unquoted_with_expr] = STATE(917), - [sym__unquoted_anonymous_prefix] = STATE(4567), - [sym_comment] = STATE(883), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [STATE(815)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(2156), + [sym_expr_parenthesized] = STATE(1942), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1969), + [sym_val_variable] = STATE(1960), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1762), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(678), + [sym__unquoted_with_expr] = STATE(941), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(815), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_null] = ACTIONS(2423), + [aux_sym_cmd_identifier_token3] = ACTIONS(2425), + [aux_sym_cmd_identifier_token4] = ACTIONS(2425), + [aux_sym_cmd_identifier_token5] = ACTIONS(2425), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(1900), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1908), - [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [anon_sym_DOT_DOT] = ACTIONS(2427), + [aux_sym_expr_unary_token1] = ACTIONS(2429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2431), + [anon_sym_DOT_DOT_LT] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2437), + [aux_sym__val_number_decimal_token4] = ACTIONS(2437), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(1910), + [sym_val_date] = ACTIONS(2439), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -113649,779 +108924,5815 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(884)] = { - [aux_sym__repeat_newline] = STATE(1125), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(884), - [anon_sym_in] = ACTIONS(2499), - [sym__newline] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(2499), - [anon_sym_err_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_GT_PIPE] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), - [anon_sym_RPAREN] = ACTIONS(2499), - [anon_sym_GT2] = ACTIONS(2501), - [anon_sym_DASH2] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_STAR2] = ACTIONS(2501), - [anon_sym_and2] = ACTIONS(2499), - [anon_sym_xor2] = ACTIONS(2499), - [anon_sym_or2] = ACTIONS(2499), - [anon_sym_not_DASHin2] = ACTIONS(2499), - [anon_sym_has2] = ACTIONS(2499), - [anon_sym_not_DASHhas2] = ACTIONS(2499), - [anon_sym_starts_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), - [anon_sym_ends_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), - [anon_sym_EQ_EQ2] = ACTIONS(2499), - [anon_sym_BANG_EQ2] = ACTIONS(2499), - [anon_sym_LT2] = ACTIONS(2501), - [anon_sym_LT_EQ2] = ACTIONS(2499), - [anon_sym_GT_EQ2] = ACTIONS(2499), - [anon_sym_EQ_TILDE2] = ACTIONS(2499), - [anon_sym_BANG_TILDE2] = ACTIONS(2499), - [anon_sym_like2] = ACTIONS(2499), - [anon_sym_not_DASHlike2] = ACTIONS(2499), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2499), - [anon_sym_PLUS_PLUS2] = ACTIONS(2499), - [anon_sym_SLASH2] = ACTIONS(2501), - [anon_sym_mod2] = ACTIONS(2499), - [anon_sym_SLASH_SLASH2] = ACTIONS(2499), - [anon_sym_PLUS2] = ACTIONS(2501), - [anon_sym_bit_DASHshl2] = ACTIONS(2499), - [anon_sym_bit_DASHshr2] = ACTIONS(2499), - [anon_sym_bit_DASHand2] = ACTIONS(2499), - [anon_sym_bit_DASHxor2] = ACTIONS(2499), - [anon_sym_bit_DASHor2] = ACTIONS(2499), - [anon_sym_err_GT] = ACTIONS(2501), - [anon_sym_out_GT] = ACTIONS(2501), - [anon_sym_e_GT] = ACTIONS(2501), - [anon_sym_o_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT] = ACTIONS(2501), - [anon_sym_err_GT_GT] = ACTIONS(2499), - [anon_sym_out_GT_GT] = ACTIONS(2499), - [anon_sym_e_GT_GT] = ACTIONS(2499), - [anon_sym_o_GT_GT] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(885)] = { - [aux_sym__repeat_newline] = STATE(1126), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(885), - [anon_sym_in] = ACTIONS(2499), - [sym__newline] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(2499), - [anon_sym_err_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_GT_PIPE] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), - [anon_sym_RPAREN] = ACTIONS(2499), - [anon_sym_GT2] = ACTIONS(2501), - [anon_sym_DASH2] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_STAR2] = ACTIONS(2501), - [anon_sym_and2] = ACTIONS(2499), - [anon_sym_xor2] = ACTIONS(2499), - [anon_sym_or2] = ACTIONS(2499), - [anon_sym_not_DASHin2] = ACTIONS(2499), - [anon_sym_has2] = ACTIONS(2499), - [anon_sym_not_DASHhas2] = ACTIONS(2499), - [anon_sym_starts_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), - [anon_sym_ends_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), - [anon_sym_EQ_EQ2] = ACTIONS(2499), - [anon_sym_BANG_EQ2] = ACTIONS(2499), - [anon_sym_LT2] = ACTIONS(2501), - [anon_sym_LT_EQ2] = ACTIONS(2499), - [anon_sym_GT_EQ2] = ACTIONS(2499), - [anon_sym_EQ_TILDE2] = ACTIONS(2499), - [anon_sym_BANG_TILDE2] = ACTIONS(2499), - [anon_sym_like2] = ACTIONS(2499), - [anon_sym_not_DASHlike2] = ACTIONS(2499), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2499), - [anon_sym_PLUS_PLUS2] = ACTIONS(2499), - [anon_sym_SLASH2] = ACTIONS(2501), - [anon_sym_mod2] = ACTIONS(2499), - [anon_sym_SLASH_SLASH2] = ACTIONS(2499), - [anon_sym_PLUS2] = ACTIONS(2501), - [anon_sym_bit_DASHshl2] = ACTIONS(2499), - [anon_sym_bit_DASHshr2] = ACTIONS(2499), - [anon_sym_bit_DASHand2] = ACTIONS(2499), - [anon_sym_bit_DASHxor2] = ACTIONS(2499), - [anon_sym_bit_DASHor2] = ACTIONS(2499), - [anon_sym_err_GT] = ACTIONS(2501), - [anon_sym_out_GT] = ACTIONS(2501), - [anon_sym_e_GT] = ACTIONS(2501), - [anon_sym_o_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT] = ACTIONS(2501), - [anon_sym_err_GT_GT] = ACTIONS(2499), - [anon_sym_out_GT_GT] = ACTIONS(2499), - [anon_sym_e_GT_GT] = ACTIONS(2499), - [anon_sym_o_GT_GT] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [STATE(816)] = { + [aux_sym__repeat_newline] = STATE(1025), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(816), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(886)] = { - [aux_sym__repeat_newline] = STATE(1127), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(886), - [anon_sym_in] = ACTIONS(2499), - [sym__newline] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(2499), - [anon_sym_err_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_GT_PIPE] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), - [anon_sym_RPAREN] = ACTIONS(2499), - [anon_sym_GT2] = ACTIONS(2501), - [anon_sym_DASH2] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_STAR2] = ACTIONS(2501), - [anon_sym_and2] = ACTIONS(2499), - [anon_sym_xor2] = ACTIONS(2499), - [anon_sym_or2] = ACTIONS(2499), - [anon_sym_not_DASHin2] = ACTIONS(2499), - [anon_sym_has2] = ACTIONS(2499), - [anon_sym_not_DASHhas2] = ACTIONS(2499), - [anon_sym_starts_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), - [anon_sym_ends_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), - [anon_sym_EQ_EQ2] = ACTIONS(2499), - [anon_sym_BANG_EQ2] = ACTIONS(2499), - [anon_sym_LT2] = ACTIONS(2501), - [anon_sym_LT_EQ2] = ACTIONS(2499), - [anon_sym_GT_EQ2] = ACTIONS(2499), - [anon_sym_EQ_TILDE2] = ACTIONS(2499), - [anon_sym_BANG_TILDE2] = ACTIONS(2499), - [anon_sym_like2] = ACTIONS(2499), - [anon_sym_not_DASHlike2] = ACTIONS(2499), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2499), - [anon_sym_PLUS_PLUS2] = ACTIONS(2499), - [anon_sym_SLASH2] = ACTIONS(2501), - [anon_sym_mod2] = ACTIONS(2499), - [anon_sym_SLASH_SLASH2] = ACTIONS(2499), - [anon_sym_PLUS2] = ACTIONS(2501), - [anon_sym_bit_DASHshl2] = ACTIONS(2499), - [anon_sym_bit_DASHshr2] = ACTIONS(2499), - [anon_sym_bit_DASHand2] = ACTIONS(2499), - [anon_sym_bit_DASHxor2] = ACTIONS(2499), - [anon_sym_bit_DASHor2] = ACTIONS(2499), - [anon_sym_err_GT] = ACTIONS(2501), - [anon_sym_out_GT] = ACTIONS(2501), - [anon_sym_e_GT] = ACTIONS(2501), - [anon_sym_o_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT] = ACTIONS(2501), - [anon_sym_err_GT_GT] = ACTIONS(2499), - [anon_sym_out_GT_GT] = ACTIONS(2499), - [anon_sym_e_GT_GT] = ACTIONS(2499), - [anon_sym_o_GT_GT] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [STATE(817)] = { + [aux_sym__repeat_newline] = STATE(976), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(817), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(887)] = { - [aux_sym__repeat_newline] = STATE(1122), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(887), - [anon_sym_in] = ACTIONS(2499), - [sym__newline] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(2499), - [anon_sym_err_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_GT_PIPE] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), - [anon_sym_RPAREN] = ACTIONS(2499), - [anon_sym_GT2] = ACTIONS(2501), - [anon_sym_DASH2] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_STAR2] = ACTIONS(2501), - [anon_sym_and2] = ACTIONS(2499), - [anon_sym_xor2] = ACTIONS(2499), - [anon_sym_or2] = ACTIONS(2499), - [anon_sym_not_DASHin2] = ACTIONS(2499), - [anon_sym_has2] = ACTIONS(2499), - [anon_sym_not_DASHhas2] = ACTIONS(2499), - [anon_sym_starts_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), - [anon_sym_ends_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), - [anon_sym_EQ_EQ2] = ACTIONS(2499), - [anon_sym_BANG_EQ2] = ACTIONS(2499), - [anon_sym_LT2] = ACTIONS(2501), - [anon_sym_LT_EQ2] = ACTIONS(2499), - [anon_sym_GT_EQ2] = ACTIONS(2499), - [anon_sym_EQ_TILDE2] = ACTIONS(2499), - [anon_sym_BANG_TILDE2] = ACTIONS(2499), - [anon_sym_like2] = ACTIONS(2499), - [anon_sym_not_DASHlike2] = ACTIONS(2499), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2499), - [anon_sym_PLUS_PLUS2] = ACTIONS(2499), - [anon_sym_SLASH2] = ACTIONS(2501), - [anon_sym_mod2] = ACTIONS(2499), - [anon_sym_SLASH_SLASH2] = ACTIONS(2499), - [anon_sym_PLUS2] = ACTIONS(2501), - [anon_sym_bit_DASHshl2] = ACTIONS(2499), - [anon_sym_bit_DASHshr2] = ACTIONS(2499), - [anon_sym_bit_DASHand2] = ACTIONS(2499), - [anon_sym_bit_DASHxor2] = ACTIONS(2499), - [anon_sym_bit_DASHor2] = ACTIONS(2499), - [anon_sym_err_GT] = ACTIONS(2501), - [anon_sym_out_GT] = ACTIONS(2501), - [anon_sym_e_GT] = ACTIONS(2501), - [anon_sym_o_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT] = ACTIONS(2501), - [anon_sym_err_GT_GT] = ACTIONS(2499), - [anon_sym_out_GT_GT] = ACTIONS(2499), - [anon_sym_e_GT_GT] = ACTIONS(2499), - [anon_sym_o_GT_GT] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [STATE(818)] = { + [aux_sym__repeat_newline] = STATE(1030), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(818), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(888)] = { - [aux_sym__repeat_newline] = STATE(984), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(888), - [anon_sym_in] = ACTIONS(2499), - [sym__newline] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(2499), - [anon_sym_err_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_GT_PIPE] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), - [anon_sym_RPAREN] = ACTIONS(2499), - [anon_sym_GT2] = ACTIONS(2501), - [anon_sym_DASH2] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_STAR2] = ACTIONS(2501), - [anon_sym_and2] = ACTIONS(2499), - [anon_sym_xor2] = ACTIONS(2499), - [anon_sym_or2] = ACTIONS(2499), - [anon_sym_not_DASHin2] = ACTIONS(2499), - [anon_sym_has2] = ACTIONS(2499), - [anon_sym_not_DASHhas2] = ACTIONS(2499), - [anon_sym_starts_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), - [anon_sym_ends_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), - [anon_sym_EQ_EQ2] = ACTIONS(2499), - [anon_sym_BANG_EQ2] = ACTIONS(2499), - [anon_sym_LT2] = ACTIONS(2501), - [anon_sym_LT_EQ2] = ACTIONS(2499), - [anon_sym_GT_EQ2] = ACTIONS(2499), - [anon_sym_EQ_TILDE2] = ACTIONS(2499), - [anon_sym_BANG_TILDE2] = ACTIONS(2499), - [anon_sym_like2] = ACTIONS(2499), - [anon_sym_not_DASHlike2] = ACTIONS(2499), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2499), - [anon_sym_PLUS_PLUS2] = ACTIONS(2499), - [anon_sym_SLASH2] = ACTIONS(2501), - [anon_sym_mod2] = ACTIONS(2499), - [anon_sym_SLASH_SLASH2] = ACTIONS(2499), - [anon_sym_PLUS2] = ACTIONS(2501), - [anon_sym_bit_DASHshl2] = ACTIONS(2499), - [anon_sym_bit_DASHshr2] = ACTIONS(2499), - [anon_sym_bit_DASHand2] = ACTIONS(2499), - [anon_sym_bit_DASHxor2] = ACTIONS(2499), - [anon_sym_bit_DASHor2] = ACTIONS(2499), - [anon_sym_err_GT] = ACTIONS(2501), - [anon_sym_out_GT] = ACTIONS(2501), - [anon_sym_e_GT] = ACTIONS(2501), - [anon_sym_o_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT] = ACTIONS(2501), - [anon_sym_err_GT_GT] = ACTIONS(2499), - [anon_sym_out_GT_GT] = ACTIONS(2499), - [anon_sym_e_GT_GT] = ACTIONS(2499), - [anon_sym_o_GT_GT] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [STATE(819)] = { + [aux_sym__repeat_newline] = STATE(977), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(819), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(889)] = { - [aux_sym__repeat_newline] = STATE(982), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(889), - [anon_sym_in] = ACTIONS(2499), - [sym__newline] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(2499), - [anon_sym_err_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_GT_PIPE] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), - [anon_sym_RPAREN] = ACTIONS(2499), - [anon_sym_GT2] = ACTIONS(2501), - [anon_sym_DASH2] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_STAR2] = ACTIONS(2501), - [anon_sym_and2] = ACTIONS(2499), - [anon_sym_xor2] = ACTIONS(2499), - [anon_sym_or2] = ACTIONS(2499), - [anon_sym_not_DASHin2] = ACTIONS(2499), - [anon_sym_has2] = ACTIONS(2499), - [anon_sym_not_DASHhas2] = ACTIONS(2499), - [anon_sym_starts_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), - [anon_sym_ends_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), - [anon_sym_EQ_EQ2] = ACTIONS(2499), - [anon_sym_BANG_EQ2] = ACTIONS(2499), - [anon_sym_LT2] = ACTIONS(2501), - [anon_sym_LT_EQ2] = ACTIONS(2499), - [anon_sym_GT_EQ2] = ACTIONS(2499), - [anon_sym_EQ_TILDE2] = ACTIONS(2499), - [anon_sym_BANG_TILDE2] = ACTIONS(2499), - [anon_sym_like2] = ACTIONS(2499), - [anon_sym_not_DASHlike2] = ACTIONS(2499), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2499), - [anon_sym_PLUS_PLUS2] = ACTIONS(2499), - [anon_sym_SLASH2] = ACTIONS(2501), - [anon_sym_mod2] = ACTIONS(2499), - [anon_sym_SLASH_SLASH2] = ACTIONS(2499), - [anon_sym_PLUS2] = ACTIONS(2501), - [anon_sym_bit_DASHshl2] = ACTIONS(2499), - [anon_sym_bit_DASHshr2] = ACTIONS(2499), - [anon_sym_bit_DASHand2] = ACTIONS(2499), - [anon_sym_bit_DASHxor2] = ACTIONS(2499), - [anon_sym_bit_DASHor2] = ACTIONS(2499), - [anon_sym_err_GT] = ACTIONS(2501), - [anon_sym_out_GT] = ACTIONS(2501), - [anon_sym_e_GT] = ACTIONS(2501), - [anon_sym_o_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT] = ACTIONS(2501), - [anon_sym_err_GT_GT] = ACTIONS(2499), - [anon_sym_out_GT_GT] = ACTIONS(2499), - [anon_sym_e_GT_GT] = ACTIONS(2499), - [anon_sym_o_GT_GT] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [STATE(820)] = { + [aux_sym__repeat_newline] = STATE(1035), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(820), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(890)] = { - [aux_sym__repeat_newline] = STATE(1093), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(890), - [anon_sym_in] = ACTIONS(2499), - [sym__newline] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(2499), - [anon_sym_err_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_GT_PIPE] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), - [anon_sym_RPAREN] = ACTIONS(2499), - [anon_sym_GT2] = ACTIONS(2501), - [anon_sym_DASH2] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_STAR2] = ACTIONS(2501), - [anon_sym_and2] = ACTIONS(2499), - [anon_sym_xor2] = ACTIONS(2499), - [anon_sym_or2] = ACTIONS(2499), - [anon_sym_not_DASHin2] = ACTIONS(2499), - [anon_sym_has2] = ACTIONS(2499), - [anon_sym_not_DASHhas2] = ACTIONS(2499), - [anon_sym_starts_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), - [anon_sym_ends_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), - [anon_sym_EQ_EQ2] = ACTIONS(2499), - [anon_sym_BANG_EQ2] = ACTIONS(2499), - [anon_sym_LT2] = ACTIONS(2501), - [anon_sym_LT_EQ2] = ACTIONS(2499), - [anon_sym_GT_EQ2] = ACTIONS(2499), - [anon_sym_EQ_TILDE2] = ACTIONS(2499), - [anon_sym_BANG_TILDE2] = ACTIONS(2499), - [anon_sym_like2] = ACTIONS(2499), - [anon_sym_not_DASHlike2] = ACTIONS(2499), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2499), - [anon_sym_PLUS_PLUS2] = ACTIONS(2499), - [anon_sym_SLASH2] = ACTIONS(2501), - [anon_sym_mod2] = ACTIONS(2499), - [anon_sym_SLASH_SLASH2] = ACTIONS(2499), - [anon_sym_PLUS2] = ACTIONS(2501), - [anon_sym_bit_DASHshl2] = ACTIONS(2499), - [anon_sym_bit_DASHshr2] = ACTIONS(2499), - [anon_sym_bit_DASHand2] = ACTIONS(2499), - [anon_sym_bit_DASHxor2] = ACTIONS(2499), - [anon_sym_bit_DASHor2] = ACTIONS(2499), - [anon_sym_err_GT] = ACTIONS(2501), - [anon_sym_out_GT] = ACTIONS(2501), - [anon_sym_e_GT] = ACTIONS(2501), - [anon_sym_o_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT] = ACTIONS(2501), - [anon_sym_err_GT_GT] = ACTIONS(2499), - [anon_sym_out_GT_GT] = ACTIONS(2499), - [anon_sym_e_GT_GT] = ACTIONS(2499), - [anon_sym_o_GT_GT] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [STATE(821)] = { + [aux_sym__repeat_newline] = STATE(979), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(821), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(891)] = { - [aux_sym__repeat_newline] = STATE(974), - [sym__expr_parenthesized_immediate] = STATE(4728), - [sym_comment] = STATE(891), - [anon_sym_in] = ACTIONS(2499), - [sym__newline] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(2499), - [anon_sym_err_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_GT_PIPE] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), - [anon_sym_RPAREN] = ACTIONS(2499), - [anon_sym_GT2] = ACTIONS(2501), - [anon_sym_DASH2] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_STAR2] = ACTIONS(2501), - [anon_sym_and2] = ACTIONS(2499), - [anon_sym_xor2] = ACTIONS(2499), - [anon_sym_or2] = ACTIONS(2499), - [anon_sym_not_DASHin2] = ACTIONS(2499), - [anon_sym_has2] = ACTIONS(2499), - [anon_sym_not_DASHhas2] = ACTIONS(2499), - [anon_sym_starts_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), - [anon_sym_ends_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), - [anon_sym_EQ_EQ2] = ACTIONS(2499), - [anon_sym_BANG_EQ2] = ACTIONS(2499), - [anon_sym_LT2] = ACTIONS(2501), - [anon_sym_LT_EQ2] = ACTIONS(2499), - [anon_sym_GT_EQ2] = ACTIONS(2499), - [anon_sym_EQ_TILDE2] = ACTIONS(2499), - [anon_sym_BANG_TILDE2] = ACTIONS(2499), - [anon_sym_like2] = ACTIONS(2499), - [anon_sym_not_DASHlike2] = ACTIONS(2499), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2499), - [anon_sym_PLUS_PLUS2] = ACTIONS(2499), - [anon_sym_SLASH2] = ACTIONS(2501), - [anon_sym_mod2] = ACTIONS(2499), - [anon_sym_SLASH_SLASH2] = ACTIONS(2499), - [anon_sym_PLUS2] = ACTIONS(2501), - [anon_sym_bit_DASHshl2] = ACTIONS(2499), - [anon_sym_bit_DASHshr2] = ACTIONS(2499), - [anon_sym_bit_DASHand2] = ACTIONS(2499), - [anon_sym_bit_DASHxor2] = ACTIONS(2499), - [anon_sym_bit_DASHor2] = ACTIONS(2499), - [anon_sym_err_GT] = ACTIONS(2501), - [anon_sym_out_GT] = ACTIONS(2501), - [anon_sym_e_GT] = ACTIONS(2501), - [anon_sym_o_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT] = ACTIONS(2501), - [anon_sym_err_GT_GT] = ACTIONS(2499), - [anon_sym_out_GT_GT] = ACTIONS(2499), - [anon_sym_e_GT_GT] = ACTIONS(2499), - [anon_sym_o_GT_GT] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [STATE(822)] = { + [sym_comment] = STATE(822), + [anon_sym_if] = ACTIONS(2441), + [anon_sym_in] = ACTIONS(2441), + [sym__newline] = ACTIONS(2441), + [anon_sym_SEMI] = ACTIONS(2441), + [anon_sym_PIPE] = ACTIONS(2441), + [anon_sym_err_GT_PIPE] = ACTIONS(2441), + [anon_sym_out_GT_PIPE] = ACTIONS(2441), + [anon_sym_e_GT_PIPE] = ACTIONS(2441), + [anon_sym_o_GT_PIPE] = ACTIONS(2441), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2441), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2441), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2441), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2441), + [anon_sym_RPAREN] = ACTIONS(2441), + [anon_sym_GT2] = ACTIONS(2443), + [anon_sym_DASH2] = ACTIONS(2441), + [anon_sym_LBRACE] = ACTIONS(2441), + [anon_sym_RBRACE] = ACTIONS(2441), + [anon_sym_EQ_GT] = ACTIONS(2441), + [anon_sym_STAR2] = ACTIONS(2443), + [anon_sym_and2] = ACTIONS(2441), + [anon_sym_xor2] = ACTIONS(2441), + [anon_sym_or2] = ACTIONS(2441), + [anon_sym_not_DASHin2] = ACTIONS(2441), + [anon_sym_has2] = ACTIONS(2441), + [anon_sym_not_DASHhas2] = ACTIONS(2441), + [anon_sym_starts_DASHwith2] = ACTIONS(2441), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2441), + [anon_sym_ends_DASHwith2] = ACTIONS(2441), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2441), + [anon_sym_EQ_EQ2] = ACTIONS(2441), + [anon_sym_BANG_EQ2] = ACTIONS(2441), + [anon_sym_LT2] = ACTIONS(2443), + [anon_sym_LT_EQ2] = ACTIONS(2441), + [anon_sym_GT_EQ2] = ACTIONS(2441), + [anon_sym_EQ_TILDE2] = ACTIONS(2441), + [anon_sym_BANG_TILDE2] = ACTIONS(2441), + [anon_sym_like2] = ACTIONS(2441), + [anon_sym_not_DASHlike2] = ACTIONS(2441), + [anon_sym_STAR_STAR2] = ACTIONS(2441), + [anon_sym_PLUS_PLUS2] = ACTIONS(2441), + [anon_sym_SLASH2] = ACTIONS(2443), + [anon_sym_mod2] = ACTIONS(2441), + [anon_sym_SLASH_SLASH2] = ACTIONS(2441), + [anon_sym_PLUS2] = ACTIONS(2443), + [anon_sym_bit_DASHshl2] = ACTIONS(2441), + [anon_sym_bit_DASHshr2] = ACTIONS(2441), + [anon_sym_bit_DASHand2] = ACTIONS(2441), + [anon_sym_bit_DASHxor2] = ACTIONS(2441), + [anon_sym_bit_DASHor2] = ACTIONS(2441), + [anon_sym_err_GT] = ACTIONS(2443), + [anon_sym_out_GT] = ACTIONS(2443), + [anon_sym_e_GT] = ACTIONS(2443), + [anon_sym_o_GT] = ACTIONS(2443), + [anon_sym_err_PLUSout_GT] = ACTIONS(2443), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2443), + [anon_sym_o_PLUSe_GT] = ACTIONS(2443), + [anon_sym_e_PLUSo_GT] = ACTIONS(2443), + [anon_sym_err_GT_GT] = ACTIONS(2441), + [anon_sym_out_GT_GT] = ACTIONS(2441), + [anon_sym_e_GT_GT] = ACTIONS(2441), + [anon_sym_o_GT_GT] = ACTIONS(2441), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2441), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2441), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2441), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2441), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(892)] = { - [sym_cell_path] = STATE(1268), - [sym_path] = STATE(712), - [sym_comment] = STATE(892), - [aux_sym__where_predicate_lhs_repeat1] = STATE(547), - [ts_builtin_sym_end] = ACTIONS(1882), - [anon_sym_in] = ACTIONS(1882), - [sym__newline] = ACTIONS(1882), - [anon_sym_SEMI] = ACTIONS(1882), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_err_GT_PIPE] = ACTIONS(1882), - [anon_sym_out_GT_PIPE] = ACTIONS(1882), - [anon_sym_e_GT_PIPE] = ACTIONS(1882), - [anon_sym_o_GT_PIPE] = ACTIONS(1882), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1882), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1882), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1882), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1882), - [anon_sym_GT2] = ACTIONS(1884), - [anon_sym_DASH2] = ACTIONS(1882), - [anon_sym_STAR2] = ACTIONS(1884), - [anon_sym_and2] = ACTIONS(1882), - [anon_sym_xor2] = ACTIONS(1882), - [anon_sym_or2] = ACTIONS(1882), - [anon_sym_not_DASHin2] = ACTIONS(1882), - [anon_sym_has2] = ACTIONS(1882), - [anon_sym_not_DASHhas2] = ACTIONS(1882), - [anon_sym_starts_DASHwith2] = ACTIONS(1882), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1882), - [anon_sym_ends_DASHwith2] = ACTIONS(1882), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1882), - [anon_sym_EQ_EQ2] = ACTIONS(1882), - [anon_sym_BANG_EQ2] = ACTIONS(1882), - [anon_sym_LT2] = ACTIONS(1884), - [anon_sym_LT_EQ2] = ACTIONS(1882), - [anon_sym_GT_EQ2] = ACTIONS(1882), - [anon_sym_EQ_TILDE2] = ACTIONS(1882), - [anon_sym_BANG_TILDE2] = ACTIONS(1882), - [anon_sym_like2] = ACTIONS(1882), - [anon_sym_not_DASHlike2] = ACTIONS(1882), - [anon_sym_STAR_STAR2] = ACTIONS(1882), - [anon_sym_PLUS_PLUS2] = ACTIONS(1882), - [anon_sym_SLASH2] = ACTIONS(1884), - [anon_sym_mod2] = ACTIONS(1882), - [anon_sym_SLASH_SLASH2] = ACTIONS(1882), - [anon_sym_PLUS2] = ACTIONS(1884), - [anon_sym_bit_DASHshl2] = ACTIONS(1882), - [anon_sym_bit_DASHshr2] = ACTIONS(1882), - [anon_sym_bit_DASHand2] = ACTIONS(1882), - [anon_sym_bit_DASHxor2] = ACTIONS(1882), - [anon_sym_bit_DASHor2] = ACTIONS(1882), - [anon_sym_DOT2] = ACTIONS(2192), - [anon_sym_err_GT] = ACTIONS(1884), - [anon_sym_out_GT] = ACTIONS(1884), - [anon_sym_e_GT] = ACTIONS(1884), - [anon_sym_o_GT] = ACTIONS(1884), - [anon_sym_err_PLUSout_GT] = ACTIONS(1884), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1884), - [anon_sym_o_PLUSe_GT] = ACTIONS(1884), - [anon_sym_e_PLUSo_GT] = ACTIONS(1884), - [anon_sym_err_GT_GT] = ACTIONS(1882), - [anon_sym_out_GT_GT] = ACTIONS(1882), - [anon_sym_e_GT_GT] = ACTIONS(1882), - [anon_sym_o_GT_GT] = ACTIONS(1882), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1882), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1882), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1882), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1882), + [STATE(823)] = { + [aux_sym__repeat_newline] = STATE(1046), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(823), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(893)] = { - [aux_sym__repeat_newline] = STATE(901), - [aux_sym__pipe_separator] = STATE(799), - [sym_comment] = STATE(893), - [anon_sym_export] = ACTIONS(2503), - [anon_sym_alias] = ACTIONS(2505), - [anon_sym_let] = ACTIONS(2505), - [anon_sym_mut] = ACTIONS(2505), - [anon_sym_const] = ACTIONS(2505), - [aux_sym_cmd_identifier_token1] = ACTIONS(2503), - [anon_sym_def] = ACTIONS(2505), - [anon_sym_use] = ACTIONS(2505), - [anon_sym_export_DASHenv] = ACTIONS(2505), - [anon_sym_extern] = ACTIONS(2505), - [anon_sym_module] = ACTIONS(2505), - [anon_sym_for] = ACTIONS(2505), - [anon_sym_loop] = ACTIONS(2505), - [anon_sym_while] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_else] = ACTIONS(2505), - [anon_sym_try] = ACTIONS(2505), - [anon_sym_catch] = ACTIONS(2505), - [anon_sym_match] = ACTIONS(2505), - [anon_sym_in] = ACTIONS(2503), - [anon_sym_true] = ACTIONS(2505), - [anon_sym_false] = ACTIONS(2505), - [anon_sym_null] = ACTIONS(2505), - [aux_sym_cmd_identifier_token3] = ACTIONS(2505), - [aux_sym_cmd_identifier_token4] = ACTIONS(2505), - [aux_sym_cmd_identifier_token5] = ACTIONS(2505), - [sym__newline] = ACTIONS(2507), - [anon_sym_PIPE] = ACTIONS(2273), - [anon_sym_err_GT_PIPE] = ACTIONS(2273), - [anon_sym_out_GT_PIPE] = ACTIONS(2273), - [anon_sym_e_GT_PIPE] = ACTIONS(2273), - [anon_sym_o_GT_PIPE] = ACTIONS(2273), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2273), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2273), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2273), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2273), - [anon_sym_LBRACK] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2505), - [anon_sym_DOLLAR] = ACTIONS(2503), - [anon_sym_DASH2] = ACTIONS(2503), - [anon_sym_LBRACE] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2503), - [anon_sym_where] = ACTIONS(2505), - [aux_sym_expr_unary_token1] = ACTIONS(2505), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2505), - [anon_sym_DOT_DOT_LT] = ACTIONS(2505), - [aux_sym__val_number_decimal_token1] = ACTIONS(2503), - [aux_sym__val_number_decimal_token2] = ACTIONS(2505), - [aux_sym__val_number_decimal_token3] = ACTIONS(2505), - [aux_sym__val_number_decimal_token4] = ACTIONS(2505), - [aux_sym__val_number_token1] = ACTIONS(2505), - [aux_sym__val_number_token2] = ACTIONS(2505), - [aux_sym__val_number_token3] = ACTIONS(2505), - [anon_sym_0b] = ACTIONS(2503), - [anon_sym_0o] = ACTIONS(2503), - [anon_sym_0x] = ACTIONS(2503), - [sym_val_date] = ACTIONS(2505), - [anon_sym_DQUOTE] = ACTIONS(2505), - [anon_sym_SQUOTE] = ACTIONS(2505), - [anon_sym_BQUOTE] = ACTIONS(2505), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2505), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2505), - [anon_sym_CARET] = ACTIONS(2505), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2505), - }, - [STATE(894)] = { - [sym_cell_path] = STATE(1321), - [sym_path] = STATE(712), - [sym_comment] = STATE(894), - [aux_sym__where_predicate_lhs_repeat1] = STATE(547), - [ts_builtin_sym_end] = ACTIONS(1848), - [anon_sym_in] = 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_GT2] = ACTIONS(1850), - [anon_sym_DASH2] = ACTIONS(1848), - [anon_sym_STAR2] = ACTIONS(1850), - [anon_sym_and2] = ACTIONS(1848), - [anon_sym_xor2] = ACTIONS(1848), - [anon_sym_or2] = ACTIONS(1848), - [anon_sym_not_DASHin2] = ACTIONS(1848), - [anon_sym_has2] = ACTIONS(1848), - [anon_sym_not_DASHhas2] = ACTIONS(1848), - [anon_sym_starts_DASHwith2] = ACTIONS(1848), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1848), - [anon_sym_ends_DASHwith2] = ACTIONS(1848), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1848), - [anon_sym_EQ_EQ2] = ACTIONS(1848), - [anon_sym_BANG_EQ2] = ACTIONS(1848), - [anon_sym_LT2] = ACTIONS(1850), - [anon_sym_LT_EQ2] = ACTIONS(1848), - [anon_sym_GT_EQ2] = ACTIONS(1848), - [anon_sym_EQ_TILDE2] = ACTIONS(1848), - [anon_sym_BANG_TILDE2] = ACTIONS(1848), - [anon_sym_like2] = ACTIONS(1848), - [anon_sym_not_DASHlike2] = ACTIONS(1848), - [anon_sym_STAR_STAR2] = ACTIONS(1848), - [anon_sym_PLUS_PLUS2] = ACTIONS(1848), - [anon_sym_SLASH2] = ACTIONS(1850), - [anon_sym_mod2] = ACTIONS(1848), - [anon_sym_SLASH_SLASH2] = ACTIONS(1848), - [anon_sym_PLUS2] = ACTIONS(1850), - [anon_sym_bit_DASHshl2] = ACTIONS(1848), - [anon_sym_bit_DASHshr2] = ACTIONS(1848), - [anon_sym_bit_DASHand2] = ACTIONS(1848), - [anon_sym_bit_DASHxor2] = ACTIONS(1848), - [anon_sym_bit_DASHor2] = ACTIONS(1848), - [anon_sym_DOT2] = ACTIONS(2192), - [anon_sym_err_GT] = ACTIONS(1850), - [anon_sym_out_GT] = ACTIONS(1850), - [anon_sym_e_GT] = ACTIONS(1850), - [anon_sym_o_GT] = ACTIONS(1850), - [anon_sym_err_PLUSout_GT] = ACTIONS(1850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1850), - [anon_sym_o_PLUSe_GT] = ACTIONS(1850), - [anon_sym_e_PLUSo_GT] = ACTIONS(1850), - [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), + [STATE(824)] = { + [aux_sym__repeat_newline] = STATE(980), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(824), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(895)] = { - [sym_comment] = STATE(895), - [anon_sym_in] = ACTIONS(2062), + [STATE(825)] = { + [sym_comment] = STATE(825), + [anon_sym_if] = ACTIONS(2066), + [anon_sym_in] = 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_RPAREN] = ACTIONS(2066), + [anon_sym_GT2] = ACTIONS(2068), + [anon_sym_DASH2] = ACTIONS(2066), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_RBRACE] = ACTIONS(2066), + [anon_sym_EQ_GT] = ACTIONS(2066), + [anon_sym_STAR2] = ACTIONS(2068), + [anon_sym_and2] = ACTIONS(2066), + [anon_sym_xor2] = ACTIONS(2066), + [anon_sym_or2] = ACTIONS(2066), + [anon_sym_not_DASHin2] = ACTIONS(2066), + [anon_sym_has2] = ACTIONS(2066), + [anon_sym_not_DASHhas2] = ACTIONS(2066), + [anon_sym_starts_DASHwith2] = ACTIONS(2066), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2066), + [anon_sym_ends_DASHwith2] = ACTIONS(2066), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2066), + [anon_sym_EQ_EQ2] = ACTIONS(2066), + [anon_sym_BANG_EQ2] = ACTIONS(2066), + [anon_sym_LT2] = ACTIONS(2068), + [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_like2] = ACTIONS(2066), + [anon_sym_not_DASHlike2] = ACTIONS(2066), + [anon_sym_STAR_STAR2] = ACTIONS(2066), + [anon_sym_PLUS_PLUS2] = ACTIONS(2066), + [anon_sym_SLASH2] = ACTIONS(2068), + [anon_sym_mod2] = ACTIONS(2066), + [anon_sym_SLASH_SLASH2] = ACTIONS(2066), + [anon_sym_PLUS2] = ACTIONS(2068), + [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_err_GT] = ACTIONS(2068), + [anon_sym_out_GT] = ACTIONS(2068), + [anon_sym_e_GT] = ACTIONS(2068), + [anon_sym_o_GT] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT] = ACTIONS(2068), + [anon_sym_err_GT_GT] = ACTIONS(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(3), + }, + [STATE(826)] = { + [sym_comment] = STATE(826), + [anon_sym_if] = ACTIONS(2074), + [anon_sym_in] = ACTIONS(2074), + [sym__newline] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_PIPE] = ACTIONS(2074), + [anon_sym_err_GT_PIPE] = ACTIONS(2074), + [anon_sym_out_GT_PIPE] = ACTIONS(2074), + [anon_sym_e_GT_PIPE] = ACTIONS(2074), + [anon_sym_o_GT_PIPE] = ACTIONS(2074), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2074), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2074), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2074), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2074), + [anon_sym_RPAREN] = ACTIONS(2074), + [anon_sym_GT2] = ACTIONS(2076), + [anon_sym_DASH2] = ACTIONS(2074), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_RBRACE] = ACTIONS(2074), + [anon_sym_EQ_GT] = ACTIONS(2074), + [anon_sym_STAR2] = ACTIONS(2076), + [anon_sym_and2] = ACTIONS(2074), + [anon_sym_xor2] = ACTIONS(2074), + [anon_sym_or2] = ACTIONS(2074), + [anon_sym_not_DASHin2] = ACTIONS(2074), + [anon_sym_has2] = ACTIONS(2074), + [anon_sym_not_DASHhas2] = ACTIONS(2074), + [anon_sym_starts_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2074), + [anon_sym_ends_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2074), + [anon_sym_EQ_EQ2] = ACTIONS(2074), + [anon_sym_BANG_EQ2] = ACTIONS(2074), + [anon_sym_LT2] = ACTIONS(2076), + [anon_sym_LT_EQ2] = ACTIONS(2074), + [anon_sym_GT_EQ2] = ACTIONS(2074), + [anon_sym_EQ_TILDE2] = ACTIONS(2074), + [anon_sym_BANG_TILDE2] = ACTIONS(2074), + [anon_sym_like2] = ACTIONS(2074), + [anon_sym_not_DASHlike2] = ACTIONS(2074), + [anon_sym_STAR_STAR2] = ACTIONS(2074), + [anon_sym_PLUS_PLUS2] = ACTIONS(2074), + [anon_sym_SLASH2] = ACTIONS(2076), + [anon_sym_mod2] = ACTIONS(2074), + [anon_sym_SLASH_SLASH2] = ACTIONS(2074), + [anon_sym_PLUS2] = ACTIONS(2076), + [anon_sym_bit_DASHshl2] = ACTIONS(2074), + [anon_sym_bit_DASHshr2] = ACTIONS(2074), + [anon_sym_bit_DASHand2] = ACTIONS(2074), + [anon_sym_bit_DASHxor2] = ACTIONS(2074), + [anon_sym_bit_DASHor2] = ACTIONS(2074), + [anon_sym_err_GT] = ACTIONS(2076), + [anon_sym_out_GT] = ACTIONS(2076), + [anon_sym_e_GT] = ACTIONS(2076), + [anon_sym_o_GT] = ACTIONS(2076), + [anon_sym_err_PLUSout_GT] = ACTIONS(2076), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2076), + [anon_sym_o_PLUSe_GT] = ACTIONS(2076), + [anon_sym_e_PLUSo_GT] = ACTIONS(2076), + [anon_sym_err_GT_GT] = ACTIONS(2074), + [anon_sym_out_GT_GT] = ACTIONS(2074), + [anon_sym_e_GT_GT] = ACTIONS(2074), + [anon_sym_o_GT_GT] = ACTIONS(2074), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2074), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2074), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2074), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2074), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(827)] = { + [sym_comment] = STATE(827), + [ts_builtin_sym_end] = ACTIONS(1515), + [anon_sym_in] = ACTIONS(1515), + [sym__newline] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_err_GT_PIPE] = ACTIONS(1515), + [anon_sym_out_GT_PIPE] = ACTIONS(1515), + [anon_sym_e_GT_PIPE] = ACTIONS(1515), + [anon_sym_o_GT_PIPE] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1515), + [anon_sym_GT2] = ACTIONS(1513), + [anon_sym_DASH2] = ACTIONS(1515), + [anon_sym_STAR2] = ACTIONS(1513), + [anon_sym_and2] = ACTIONS(1515), + [anon_sym_xor2] = ACTIONS(1515), + [anon_sym_or2] = ACTIONS(1515), + [anon_sym_not_DASHin2] = ACTIONS(1515), + [anon_sym_has2] = ACTIONS(1515), + [anon_sym_not_DASHhas2] = ACTIONS(1515), + [anon_sym_starts_DASHwith2] = ACTIONS(1515), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1515), + [anon_sym_ends_DASHwith2] = ACTIONS(1515), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1515), + [anon_sym_EQ_EQ2] = ACTIONS(1515), + [anon_sym_BANG_EQ2] = ACTIONS(1515), + [anon_sym_LT2] = ACTIONS(1513), + [anon_sym_LT_EQ2] = ACTIONS(1515), + [anon_sym_GT_EQ2] = ACTIONS(1515), + [anon_sym_EQ_TILDE2] = ACTIONS(1515), + [anon_sym_BANG_TILDE2] = ACTIONS(1515), + [anon_sym_like2] = ACTIONS(1515), + [anon_sym_not_DASHlike2] = ACTIONS(1515), + [anon_sym_STAR_STAR2] = ACTIONS(1515), + [anon_sym_PLUS_PLUS2] = ACTIONS(1515), + [anon_sym_SLASH2] = ACTIONS(1513), + [anon_sym_mod2] = ACTIONS(1515), + [anon_sym_SLASH_SLASH2] = ACTIONS(1515), + [anon_sym_PLUS2] = ACTIONS(1513), + [anon_sym_bit_DASHshl2] = ACTIONS(1515), + [anon_sym_bit_DASHshr2] = ACTIONS(1515), + [anon_sym_bit_DASHand2] = ACTIONS(1515), + [anon_sym_bit_DASHxor2] = ACTIONS(1515), + [anon_sym_bit_DASHor2] = ACTIONS(1515), + [anon_sym_DOT_DOT2] = ACTIONS(1513), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1515), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1515), + [anon_sym_DOT2] = ACTIONS(1513), + [anon_sym_err_GT] = ACTIONS(1513), + [anon_sym_out_GT] = ACTIONS(1513), + [anon_sym_e_GT] = ACTIONS(1513), + [anon_sym_o_GT] = ACTIONS(1513), + [anon_sym_err_PLUSout_GT] = ACTIONS(1513), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1513), + [anon_sym_o_PLUSe_GT] = ACTIONS(1513), + [anon_sym_e_PLUSo_GT] = ACTIONS(1513), + [anon_sym_err_GT_GT] = ACTIONS(1515), + [anon_sym_out_GT_GT] = ACTIONS(1515), + [anon_sym_e_GT_GT] = ACTIONS(1515), + [anon_sym_o_GT_GT] = ACTIONS(1515), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1515), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1515), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1515), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1515), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(828)] = { + [aux_sym__repeat_newline] = STATE(981), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(828), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(829)] = { + [sym_comment] = STATE(829), + [anon_sym_if] = ACTIONS(2082), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_EQ_GT] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(830)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1284), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(987), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(459), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1038), + [sym__unquoted_with_expr] = STATE(1290), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(830), + [anon_sym_true] = ACTIONS(2399), + [anon_sym_false] = ACTIONS(2399), + [anon_sym_null] = ACTIONS(2401), + [aux_sym_cmd_identifier_token3] = ACTIONS(2403), + [aux_sym_cmd_identifier_token4] = ACTIONS(2403), + [aux_sym_cmd_identifier_token5] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2405), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2407), + [anon_sym_DOT_DOT_LT] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2409), + [aux_sym__val_number_decimal_token2] = ACTIONS(2411), + [aux_sym__val_number_decimal_token3] = ACTIONS(2413), + [aux_sym__val_number_decimal_token4] = ACTIONS(2413), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2415), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2372), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(831)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1294), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(987), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(459), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1039), + [sym__unquoted_with_expr] = STATE(1298), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(831), + [anon_sym_true] = ACTIONS(2399), + [anon_sym_false] = ACTIONS(2399), + [anon_sym_null] = ACTIONS(2401), + [aux_sym_cmd_identifier_token3] = ACTIONS(2403), + [aux_sym_cmd_identifier_token4] = ACTIONS(2403), + [aux_sym_cmd_identifier_token5] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2405), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2407), + [anon_sym_DOT_DOT_LT] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2409), + [aux_sym__val_number_decimal_token2] = ACTIONS(2411), + [aux_sym__val_number_decimal_token3] = ACTIONS(2413), + [aux_sym__val_number_decimal_token4] = ACTIONS(2413), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2415), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2372), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(832)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1301), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(987), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(459), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1040), + [sym__unquoted_with_expr] = STATE(1318), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(832), + [anon_sym_true] = ACTIONS(2399), + [anon_sym_false] = ACTIONS(2399), + [anon_sym_null] = ACTIONS(2401), + [aux_sym_cmd_identifier_token3] = ACTIONS(2403), + [aux_sym_cmd_identifier_token4] = ACTIONS(2403), + [aux_sym_cmd_identifier_token5] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2405), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2407), + [anon_sym_DOT_DOT_LT] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2409), + [aux_sym__val_number_decimal_token2] = ACTIONS(2411), + [aux_sym__val_number_decimal_token3] = ACTIONS(2413), + [aux_sym__val_number_decimal_token4] = ACTIONS(2413), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2415), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2372), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(833)] = { + [sym_comment] = STATE(833), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_in] = ACTIONS(2445), + [sym__newline] = ACTIONS(2445), + [anon_sym_SEMI] = ACTIONS(2445), + [anon_sym_PIPE] = ACTIONS(2445), + [anon_sym_err_GT_PIPE] = ACTIONS(2445), + [anon_sym_out_GT_PIPE] = ACTIONS(2445), + [anon_sym_e_GT_PIPE] = ACTIONS(2445), + [anon_sym_o_GT_PIPE] = ACTIONS(2445), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2445), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2445), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2445), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2445), + [anon_sym_RPAREN] = ACTIONS(2445), + [anon_sym_GT2] = ACTIONS(2447), + [anon_sym_DASH2] = ACTIONS(2445), + [anon_sym_LBRACE] = ACTIONS(2445), + [anon_sym_RBRACE] = ACTIONS(2445), + [anon_sym_EQ_GT] = ACTIONS(2445), + [anon_sym_STAR2] = ACTIONS(2447), + [anon_sym_and2] = ACTIONS(2445), + [anon_sym_xor2] = ACTIONS(2445), + [anon_sym_or2] = ACTIONS(2445), + [anon_sym_not_DASHin2] = ACTIONS(2445), + [anon_sym_has2] = ACTIONS(2445), + [anon_sym_not_DASHhas2] = ACTIONS(2445), + [anon_sym_starts_DASHwith2] = ACTIONS(2445), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2445), + [anon_sym_ends_DASHwith2] = ACTIONS(2445), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2445), + [anon_sym_EQ_EQ2] = ACTIONS(2445), + [anon_sym_BANG_EQ2] = ACTIONS(2445), + [anon_sym_LT2] = ACTIONS(2447), + [anon_sym_LT_EQ2] = ACTIONS(2445), + [anon_sym_GT_EQ2] = ACTIONS(2445), + [anon_sym_EQ_TILDE2] = ACTIONS(2445), + [anon_sym_BANG_TILDE2] = ACTIONS(2445), + [anon_sym_like2] = ACTIONS(2445), + [anon_sym_not_DASHlike2] = ACTIONS(2445), + [anon_sym_STAR_STAR2] = ACTIONS(2445), + [anon_sym_PLUS_PLUS2] = ACTIONS(2445), + [anon_sym_SLASH2] = ACTIONS(2447), + [anon_sym_mod2] = ACTIONS(2445), + [anon_sym_SLASH_SLASH2] = ACTIONS(2445), + [anon_sym_PLUS2] = ACTIONS(2447), + [anon_sym_bit_DASHshl2] = ACTIONS(2445), + [anon_sym_bit_DASHshr2] = ACTIONS(2445), + [anon_sym_bit_DASHand2] = ACTIONS(2445), + [anon_sym_bit_DASHxor2] = ACTIONS(2445), + [anon_sym_bit_DASHor2] = ACTIONS(2445), + [anon_sym_err_GT] = ACTIONS(2447), + [anon_sym_out_GT] = ACTIONS(2447), + [anon_sym_e_GT] = ACTIONS(2447), + [anon_sym_o_GT] = ACTIONS(2447), + [anon_sym_err_PLUSout_GT] = ACTIONS(2447), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2447), + [anon_sym_o_PLUSe_GT] = ACTIONS(2447), + [anon_sym_e_PLUSo_GT] = ACTIONS(2447), + [anon_sym_err_GT_GT] = ACTIONS(2445), + [anon_sym_out_GT_GT] = ACTIONS(2445), + [anon_sym_e_GT_GT] = ACTIONS(2445), + [anon_sym_o_GT_GT] = ACTIONS(2445), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2445), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2445), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2445), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2445), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(834)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1319), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(987), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(459), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1041), + [sym__unquoted_with_expr] = STATE(1321), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(834), + [anon_sym_true] = ACTIONS(2399), + [anon_sym_false] = ACTIONS(2399), + [anon_sym_null] = ACTIONS(2401), + [aux_sym_cmd_identifier_token3] = ACTIONS(2403), + [aux_sym_cmd_identifier_token4] = ACTIONS(2403), + [aux_sym_cmd_identifier_token5] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2405), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2407), + [anon_sym_DOT_DOT_LT] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2409), + [aux_sym__val_number_decimal_token2] = ACTIONS(2411), + [aux_sym__val_number_decimal_token3] = ACTIONS(2413), + [aux_sym__val_number_decimal_token4] = ACTIONS(2413), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2415), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2372), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(835)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1322), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(987), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(459), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1042), + [sym__unquoted_with_expr] = STATE(1325), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(835), + [anon_sym_true] = ACTIONS(2399), + [anon_sym_false] = ACTIONS(2399), + [anon_sym_null] = ACTIONS(2401), + [aux_sym_cmd_identifier_token3] = ACTIONS(2403), + [aux_sym_cmd_identifier_token4] = ACTIONS(2403), + [aux_sym_cmd_identifier_token5] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2405), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2407), + [anon_sym_DOT_DOT_LT] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2409), + [aux_sym__val_number_decimal_token2] = ACTIONS(2411), + [aux_sym__val_number_decimal_token3] = ACTIONS(2413), + [aux_sym__val_number_decimal_token4] = ACTIONS(2413), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2415), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2372), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(836)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1326), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(987), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(459), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1043), + [sym__unquoted_with_expr] = STATE(1328), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(836), + [anon_sym_true] = ACTIONS(2399), + [anon_sym_false] = ACTIONS(2399), + [anon_sym_null] = ACTIONS(2401), + [aux_sym_cmd_identifier_token3] = ACTIONS(2403), + [aux_sym_cmd_identifier_token4] = ACTIONS(2403), + [aux_sym_cmd_identifier_token5] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2405), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2407), + [anon_sym_DOT_DOT_LT] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2409), + [aux_sym__val_number_decimal_token2] = ACTIONS(2411), + [aux_sym__val_number_decimal_token3] = ACTIONS(2413), + [aux_sym__val_number_decimal_token4] = ACTIONS(2413), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2415), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2372), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(837)] = { + [sym_comment] = STATE(837), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_in] = ACTIONS(2449), + [sym__newline] = ACTIONS(2449), + [anon_sym_SEMI] = ACTIONS(2449), + [anon_sym_PIPE] = ACTIONS(2449), + [anon_sym_err_GT_PIPE] = ACTIONS(2449), + [anon_sym_out_GT_PIPE] = ACTIONS(2449), + [anon_sym_e_GT_PIPE] = ACTIONS(2449), + [anon_sym_o_GT_PIPE] = ACTIONS(2449), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2449), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2449), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2449), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2449), + [anon_sym_RPAREN] = ACTIONS(2449), + [anon_sym_GT2] = ACTIONS(2451), + [anon_sym_DASH2] = ACTIONS(2449), + [anon_sym_LBRACE] = ACTIONS(2449), + [anon_sym_RBRACE] = ACTIONS(2449), + [anon_sym_EQ_GT] = ACTIONS(2449), + [anon_sym_STAR2] = ACTIONS(2451), + [anon_sym_and2] = ACTIONS(2449), + [anon_sym_xor2] = ACTIONS(2449), + [anon_sym_or2] = ACTIONS(2449), + [anon_sym_not_DASHin2] = ACTIONS(2449), + [anon_sym_has2] = ACTIONS(2449), + [anon_sym_not_DASHhas2] = ACTIONS(2449), + [anon_sym_starts_DASHwith2] = ACTIONS(2449), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2449), + [anon_sym_ends_DASHwith2] = ACTIONS(2449), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2449), + [anon_sym_EQ_EQ2] = ACTIONS(2449), + [anon_sym_BANG_EQ2] = ACTIONS(2449), + [anon_sym_LT2] = ACTIONS(2451), + [anon_sym_LT_EQ2] = ACTIONS(2449), + [anon_sym_GT_EQ2] = ACTIONS(2449), + [anon_sym_EQ_TILDE2] = ACTIONS(2449), + [anon_sym_BANG_TILDE2] = ACTIONS(2449), + [anon_sym_like2] = ACTIONS(2449), + [anon_sym_not_DASHlike2] = ACTIONS(2449), + [anon_sym_STAR_STAR2] = ACTIONS(2449), + [anon_sym_PLUS_PLUS2] = ACTIONS(2449), + [anon_sym_SLASH2] = ACTIONS(2451), + [anon_sym_mod2] = ACTIONS(2449), + [anon_sym_SLASH_SLASH2] = ACTIONS(2449), + [anon_sym_PLUS2] = ACTIONS(2451), + [anon_sym_bit_DASHshl2] = ACTIONS(2449), + [anon_sym_bit_DASHshr2] = ACTIONS(2449), + [anon_sym_bit_DASHand2] = ACTIONS(2449), + [anon_sym_bit_DASHxor2] = ACTIONS(2449), + [anon_sym_bit_DASHor2] = ACTIONS(2449), + [anon_sym_err_GT] = ACTIONS(2451), + [anon_sym_out_GT] = ACTIONS(2451), + [anon_sym_e_GT] = ACTIONS(2451), + [anon_sym_o_GT] = ACTIONS(2451), + [anon_sym_err_PLUSout_GT] = ACTIONS(2451), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2451), + [anon_sym_o_PLUSe_GT] = ACTIONS(2451), + [anon_sym_e_PLUSo_GT] = ACTIONS(2451), + [anon_sym_err_GT_GT] = ACTIONS(2449), + [anon_sym_out_GT_GT] = ACTIONS(2449), + [anon_sym_e_GT_GT] = ACTIONS(2449), + [anon_sym_o_GT_GT] = ACTIONS(2449), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2449), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2449), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2449), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2449), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(838)] = { + [sym_comment] = STATE(838), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_in] = ACTIONS(2453), + [sym__newline] = ACTIONS(2453), + [anon_sym_SEMI] = ACTIONS(2453), + [anon_sym_PIPE] = ACTIONS(2453), + [anon_sym_err_GT_PIPE] = ACTIONS(2453), + [anon_sym_out_GT_PIPE] = ACTIONS(2453), + [anon_sym_e_GT_PIPE] = ACTIONS(2453), + [anon_sym_o_GT_PIPE] = ACTIONS(2453), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2453), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2453), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2453), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2453), + [anon_sym_RPAREN] = ACTIONS(2453), + [anon_sym_GT2] = ACTIONS(2455), + [anon_sym_DASH2] = ACTIONS(2453), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2453), + [anon_sym_EQ_GT] = ACTIONS(2453), + [anon_sym_STAR2] = ACTIONS(2455), + [anon_sym_and2] = ACTIONS(2453), + [anon_sym_xor2] = ACTIONS(2453), + [anon_sym_or2] = ACTIONS(2453), + [anon_sym_not_DASHin2] = ACTIONS(2453), + [anon_sym_has2] = ACTIONS(2453), + [anon_sym_not_DASHhas2] = ACTIONS(2453), + [anon_sym_starts_DASHwith2] = ACTIONS(2453), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2453), + [anon_sym_ends_DASHwith2] = ACTIONS(2453), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2453), + [anon_sym_EQ_EQ2] = ACTIONS(2453), + [anon_sym_BANG_EQ2] = ACTIONS(2453), + [anon_sym_LT2] = ACTIONS(2455), + [anon_sym_LT_EQ2] = ACTIONS(2453), + [anon_sym_GT_EQ2] = ACTIONS(2453), + [anon_sym_EQ_TILDE2] = ACTIONS(2453), + [anon_sym_BANG_TILDE2] = ACTIONS(2453), + [anon_sym_like2] = ACTIONS(2453), + [anon_sym_not_DASHlike2] = ACTIONS(2453), + [anon_sym_STAR_STAR2] = ACTIONS(2453), + [anon_sym_PLUS_PLUS2] = ACTIONS(2453), + [anon_sym_SLASH2] = ACTIONS(2455), + [anon_sym_mod2] = ACTIONS(2453), + [anon_sym_SLASH_SLASH2] = ACTIONS(2453), + [anon_sym_PLUS2] = ACTIONS(2455), + [anon_sym_bit_DASHshl2] = ACTIONS(2453), + [anon_sym_bit_DASHshr2] = ACTIONS(2453), + [anon_sym_bit_DASHand2] = ACTIONS(2453), + [anon_sym_bit_DASHxor2] = ACTIONS(2453), + [anon_sym_bit_DASHor2] = ACTIONS(2453), + [anon_sym_err_GT] = ACTIONS(2455), + [anon_sym_out_GT] = ACTIONS(2455), + [anon_sym_e_GT] = ACTIONS(2455), + [anon_sym_o_GT] = ACTIONS(2455), + [anon_sym_err_PLUSout_GT] = ACTIONS(2455), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2455), + [anon_sym_o_PLUSe_GT] = ACTIONS(2455), + [anon_sym_e_PLUSo_GT] = ACTIONS(2455), + [anon_sym_err_GT_GT] = ACTIONS(2453), + [anon_sym_out_GT_GT] = ACTIONS(2453), + [anon_sym_e_GT_GT] = ACTIONS(2453), + [anon_sym_o_GT_GT] = ACTIONS(2453), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2453), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2453), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2453), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2453), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(839)] = { + [sym_comment] = STATE(839), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_in] = ACTIONS(2457), + [sym__newline] = ACTIONS(2457), + [anon_sym_SEMI] = ACTIONS(2457), + [anon_sym_PIPE] = ACTIONS(2457), + [anon_sym_err_GT_PIPE] = ACTIONS(2457), + [anon_sym_out_GT_PIPE] = ACTIONS(2457), + [anon_sym_e_GT_PIPE] = ACTIONS(2457), + [anon_sym_o_GT_PIPE] = ACTIONS(2457), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2457), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2457), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2457), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2457), + [anon_sym_RPAREN] = ACTIONS(2457), + [anon_sym_GT2] = ACTIONS(2459), + [anon_sym_DASH2] = ACTIONS(2457), + [anon_sym_LBRACE] = ACTIONS(2457), + [anon_sym_RBRACE] = ACTIONS(2457), + [anon_sym_EQ_GT] = ACTIONS(2457), + [anon_sym_STAR2] = ACTIONS(2459), + [anon_sym_and2] = ACTIONS(2457), + [anon_sym_xor2] = ACTIONS(2457), + [anon_sym_or2] = ACTIONS(2457), + [anon_sym_not_DASHin2] = ACTIONS(2457), + [anon_sym_has2] = ACTIONS(2457), + [anon_sym_not_DASHhas2] = ACTIONS(2457), + [anon_sym_starts_DASHwith2] = ACTIONS(2457), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2457), + [anon_sym_ends_DASHwith2] = ACTIONS(2457), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2457), + [anon_sym_EQ_EQ2] = ACTIONS(2457), + [anon_sym_BANG_EQ2] = ACTIONS(2457), + [anon_sym_LT2] = ACTIONS(2459), + [anon_sym_LT_EQ2] = ACTIONS(2457), + [anon_sym_GT_EQ2] = ACTIONS(2457), + [anon_sym_EQ_TILDE2] = ACTIONS(2457), + [anon_sym_BANG_TILDE2] = ACTIONS(2457), + [anon_sym_like2] = ACTIONS(2457), + [anon_sym_not_DASHlike2] = ACTIONS(2457), + [anon_sym_STAR_STAR2] = ACTIONS(2457), + [anon_sym_PLUS_PLUS2] = ACTIONS(2457), + [anon_sym_SLASH2] = ACTIONS(2459), + [anon_sym_mod2] = ACTIONS(2457), + [anon_sym_SLASH_SLASH2] = ACTIONS(2457), + [anon_sym_PLUS2] = ACTIONS(2459), + [anon_sym_bit_DASHshl2] = ACTIONS(2457), + [anon_sym_bit_DASHshr2] = ACTIONS(2457), + [anon_sym_bit_DASHand2] = ACTIONS(2457), + [anon_sym_bit_DASHxor2] = ACTIONS(2457), + [anon_sym_bit_DASHor2] = ACTIONS(2457), + [anon_sym_err_GT] = ACTIONS(2459), + [anon_sym_out_GT] = ACTIONS(2459), + [anon_sym_e_GT] = ACTIONS(2459), + [anon_sym_o_GT] = ACTIONS(2459), + [anon_sym_err_PLUSout_GT] = ACTIONS(2459), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2459), + [anon_sym_o_PLUSe_GT] = ACTIONS(2459), + [anon_sym_e_PLUSo_GT] = ACTIONS(2459), + [anon_sym_err_GT_GT] = ACTIONS(2457), + [anon_sym_out_GT_GT] = ACTIONS(2457), + [anon_sym_e_GT_GT] = ACTIONS(2457), + [anon_sym_o_GT_GT] = ACTIONS(2457), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2457), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2457), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2457), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2457), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(840)] = { + [sym_comment] = STATE(840), + [ts_builtin_sym_end] = ACTIONS(1535), + [anon_sym_in] = ACTIONS(1535), + [sym__newline] = ACTIONS(1535), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_PIPE] = ACTIONS(1535), + [anon_sym_err_GT_PIPE] = ACTIONS(1535), + [anon_sym_out_GT_PIPE] = ACTIONS(1535), + [anon_sym_e_GT_PIPE] = ACTIONS(1535), + [anon_sym_o_GT_PIPE] = ACTIONS(1535), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1535), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1535), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1535), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1535), + [anon_sym_GT2] = ACTIONS(1533), + [anon_sym_DASH2] = ACTIONS(1535), + [anon_sym_STAR2] = ACTIONS(1533), + [anon_sym_and2] = ACTIONS(1535), + [anon_sym_xor2] = ACTIONS(1535), + [anon_sym_or2] = ACTIONS(1535), + [anon_sym_not_DASHin2] = ACTIONS(1535), + [anon_sym_has2] = ACTIONS(1535), + [anon_sym_not_DASHhas2] = ACTIONS(1535), + [anon_sym_starts_DASHwith2] = ACTIONS(1535), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1535), + [anon_sym_ends_DASHwith2] = ACTIONS(1535), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1535), + [anon_sym_EQ_EQ2] = ACTIONS(1535), + [anon_sym_BANG_EQ2] = ACTIONS(1535), + [anon_sym_LT2] = ACTIONS(1533), + [anon_sym_LT_EQ2] = ACTIONS(1535), + [anon_sym_GT_EQ2] = ACTIONS(1535), + [anon_sym_EQ_TILDE2] = ACTIONS(1535), + [anon_sym_BANG_TILDE2] = ACTIONS(1535), + [anon_sym_like2] = ACTIONS(1535), + [anon_sym_not_DASHlike2] = ACTIONS(1535), + [anon_sym_STAR_STAR2] = ACTIONS(1535), + [anon_sym_PLUS_PLUS2] = ACTIONS(1535), + [anon_sym_SLASH2] = ACTIONS(1533), + [anon_sym_mod2] = ACTIONS(1535), + [anon_sym_SLASH_SLASH2] = ACTIONS(1535), + [anon_sym_PLUS2] = ACTIONS(1533), + [anon_sym_bit_DASHshl2] = ACTIONS(1535), + [anon_sym_bit_DASHshr2] = ACTIONS(1535), + [anon_sym_bit_DASHand2] = ACTIONS(1535), + [anon_sym_bit_DASHxor2] = ACTIONS(1535), + [anon_sym_bit_DASHor2] = ACTIONS(1535), + [anon_sym_DOT_DOT2] = ACTIONS(1533), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1535), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1535), + [anon_sym_DOT2] = ACTIONS(1533), + [anon_sym_err_GT] = ACTIONS(1533), + [anon_sym_out_GT] = ACTIONS(1533), + [anon_sym_e_GT] = ACTIONS(1533), + [anon_sym_o_GT] = ACTIONS(1533), + [anon_sym_err_PLUSout_GT] = ACTIONS(1533), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1533), + [anon_sym_o_PLUSe_GT] = ACTIONS(1533), + [anon_sym_e_PLUSo_GT] = ACTIONS(1533), + [anon_sym_err_GT_GT] = ACTIONS(1535), + [anon_sym_out_GT_GT] = ACTIONS(1535), + [anon_sym_e_GT_GT] = ACTIONS(1535), + [anon_sym_o_GT_GT] = ACTIONS(1535), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1535), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1535), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1535), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1535), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(841)] = { + [sym_comment] = STATE(841), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_in] = ACTIONS(2461), + [sym__newline] = ACTIONS(2461), + [anon_sym_SEMI] = ACTIONS(2461), + [anon_sym_PIPE] = ACTIONS(2461), + [anon_sym_err_GT_PIPE] = ACTIONS(2461), + [anon_sym_out_GT_PIPE] = ACTIONS(2461), + [anon_sym_e_GT_PIPE] = ACTIONS(2461), + [anon_sym_o_GT_PIPE] = ACTIONS(2461), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2461), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2461), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2461), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2461), + [anon_sym_RPAREN] = ACTIONS(2461), + [anon_sym_GT2] = ACTIONS(2463), + [anon_sym_DASH2] = ACTIONS(2461), + [anon_sym_LBRACE] = ACTIONS(2461), + [anon_sym_RBRACE] = ACTIONS(2461), + [anon_sym_EQ_GT] = ACTIONS(2461), + [anon_sym_STAR2] = ACTIONS(2463), + [anon_sym_and2] = ACTIONS(2461), + [anon_sym_xor2] = ACTIONS(2461), + [anon_sym_or2] = ACTIONS(2461), + [anon_sym_not_DASHin2] = ACTIONS(2461), + [anon_sym_has2] = ACTIONS(2461), + [anon_sym_not_DASHhas2] = ACTIONS(2461), + [anon_sym_starts_DASHwith2] = ACTIONS(2461), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2461), + [anon_sym_ends_DASHwith2] = ACTIONS(2461), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2461), + [anon_sym_EQ_EQ2] = ACTIONS(2461), + [anon_sym_BANG_EQ2] = ACTIONS(2461), + [anon_sym_LT2] = ACTIONS(2463), + [anon_sym_LT_EQ2] = ACTIONS(2461), + [anon_sym_GT_EQ2] = ACTIONS(2461), + [anon_sym_EQ_TILDE2] = ACTIONS(2461), + [anon_sym_BANG_TILDE2] = ACTIONS(2461), + [anon_sym_like2] = ACTIONS(2461), + [anon_sym_not_DASHlike2] = ACTIONS(2461), + [anon_sym_STAR_STAR2] = ACTIONS(2461), + [anon_sym_PLUS_PLUS2] = ACTIONS(2461), + [anon_sym_SLASH2] = ACTIONS(2463), + [anon_sym_mod2] = ACTIONS(2461), + [anon_sym_SLASH_SLASH2] = ACTIONS(2461), + [anon_sym_PLUS2] = ACTIONS(2463), + [anon_sym_bit_DASHshl2] = ACTIONS(2461), + [anon_sym_bit_DASHshr2] = ACTIONS(2461), + [anon_sym_bit_DASHand2] = ACTIONS(2461), + [anon_sym_bit_DASHxor2] = ACTIONS(2461), + [anon_sym_bit_DASHor2] = ACTIONS(2461), + [anon_sym_err_GT] = ACTIONS(2463), + [anon_sym_out_GT] = ACTIONS(2463), + [anon_sym_e_GT] = ACTIONS(2463), + [anon_sym_o_GT] = ACTIONS(2463), + [anon_sym_err_PLUSout_GT] = ACTIONS(2463), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2463), + [anon_sym_o_PLUSe_GT] = ACTIONS(2463), + [anon_sym_e_PLUSo_GT] = ACTIONS(2463), + [anon_sym_err_GT_GT] = ACTIONS(2461), + [anon_sym_out_GT_GT] = ACTIONS(2461), + [anon_sym_e_GT_GT] = ACTIONS(2461), + [anon_sym_o_GT_GT] = ACTIONS(2461), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2461), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2461), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2461), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2461), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(842)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1329), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(987), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(459), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1044), + [sym__unquoted_with_expr] = STATE(1264), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(842), + [anon_sym_true] = ACTIONS(2399), + [anon_sym_false] = ACTIONS(2399), + [anon_sym_null] = ACTIONS(2401), + [aux_sym_cmd_identifier_token3] = ACTIONS(2403), + [aux_sym_cmd_identifier_token4] = ACTIONS(2403), + [aux_sym_cmd_identifier_token5] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2405), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2407), + [anon_sym_DOT_DOT_LT] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2409), + [aux_sym__val_number_decimal_token2] = ACTIONS(2411), + [aux_sym__val_number_decimal_token3] = ACTIONS(2413), + [aux_sym__val_number_decimal_token4] = ACTIONS(2413), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2415), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2372), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(843)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1265), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(987), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(459), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1056), + [sym__unquoted_with_expr] = STATE(1267), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(843), + [anon_sym_true] = ACTIONS(2399), + [anon_sym_false] = ACTIONS(2399), + [anon_sym_null] = ACTIONS(2401), + [aux_sym_cmd_identifier_token3] = ACTIONS(2403), + [aux_sym_cmd_identifier_token4] = ACTIONS(2403), + [aux_sym_cmd_identifier_token5] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2405), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2407), + [anon_sym_DOT_DOT_LT] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2409), + [aux_sym__val_number_decimal_token2] = ACTIONS(2411), + [aux_sym__val_number_decimal_token3] = ACTIONS(2413), + [aux_sym__val_number_decimal_token4] = ACTIONS(2413), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2415), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2372), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(844)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1268), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(987), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(459), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1058), + [sym__unquoted_with_expr] = STATE(1269), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(844), + [anon_sym_true] = ACTIONS(2399), + [anon_sym_false] = ACTIONS(2399), + [anon_sym_null] = ACTIONS(2401), + [aux_sym_cmd_identifier_token3] = ACTIONS(2403), + [aux_sym_cmd_identifier_token4] = ACTIONS(2403), + [aux_sym_cmd_identifier_token5] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2405), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2407), + [anon_sym_DOT_DOT_LT] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2409), + [aux_sym__val_number_decimal_token2] = ACTIONS(2411), + [aux_sym__val_number_decimal_token3] = ACTIONS(2413), + [aux_sym__val_number_decimal_token4] = ACTIONS(2413), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2415), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2372), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(845)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1275), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(987), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(459), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1069), + [sym__unquoted_with_expr] = STATE(1276), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(845), + [anon_sym_true] = ACTIONS(2399), + [anon_sym_false] = ACTIONS(2399), + [anon_sym_null] = ACTIONS(2401), + [aux_sym_cmd_identifier_token3] = ACTIONS(2403), + [aux_sym_cmd_identifier_token4] = ACTIONS(2403), + [aux_sym_cmd_identifier_token5] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2405), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2407), + [anon_sym_DOT_DOT_LT] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2409), + [aux_sym__val_number_decimal_token2] = ACTIONS(2411), + [aux_sym__val_number_decimal_token3] = ACTIONS(2413), + [aux_sym__val_number_decimal_token4] = ACTIONS(2413), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2415), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2372), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(846)] = { + [sym_comment] = STATE(846), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(2465), + [sym__newline] = ACTIONS(2465), + [anon_sym_SEMI] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(2465), + [anon_sym_err_GT_PIPE] = ACTIONS(2465), + [anon_sym_out_GT_PIPE] = ACTIONS(2465), + [anon_sym_e_GT_PIPE] = ACTIONS(2465), + [anon_sym_o_GT_PIPE] = ACTIONS(2465), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2465), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2465), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2465), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2465), + [anon_sym_RPAREN] = ACTIONS(2465), + [anon_sym_GT2] = ACTIONS(2467), + [anon_sym_DASH2] = ACTIONS(2465), + [anon_sym_LBRACE] = ACTIONS(2465), + [anon_sym_RBRACE] = ACTIONS(2465), + [anon_sym_EQ_GT] = ACTIONS(2465), + [anon_sym_STAR2] = ACTIONS(2467), + [anon_sym_and2] = ACTIONS(2465), + [anon_sym_xor2] = ACTIONS(2465), + [anon_sym_or2] = ACTIONS(2465), + [anon_sym_not_DASHin2] = ACTIONS(2465), + [anon_sym_has2] = ACTIONS(2465), + [anon_sym_not_DASHhas2] = ACTIONS(2465), + [anon_sym_starts_DASHwith2] = ACTIONS(2465), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2465), + [anon_sym_ends_DASHwith2] = ACTIONS(2465), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2465), + [anon_sym_EQ_EQ2] = ACTIONS(2465), + [anon_sym_BANG_EQ2] = ACTIONS(2465), + [anon_sym_LT2] = ACTIONS(2467), + [anon_sym_LT_EQ2] = ACTIONS(2465), + [anon_sym_GT_EQ2] = ACTIONS(2465), + [anon_sym_EQ_TILDE2] = ACTIONS(2465), + [anon_sym_BANG_TILDE2] = ACTIONS(2465), + [anon_sym_like2] = ACTIONS(2465), + [anon_sym_not_DASHlike2] = ACTIONS(2465), + [anon_sym_STAR_STAR2] = ACTIONS(2465), + [anon_sym_PLUS_PLUS2] = ACTIONS(2465), + [anon_sym_SLASH2] = ACTIONS(2467), + [anon_sym_mod2] = ACTIONS(2465), + [anon_sym_SLASH_SLASH2] = ACTIONS(2465), + [anon_sym_PLUS2] = ACTIONS(2467), + [anon_sym_bit_DASHshl2] = ACTIONS(2465), + [anon_sym_bit_DASHshr2] = ACTIONS(2465), + [anon_sym_bit_DASHand2] = ACTIONS(2465), + [anon_sym_bit_DASHxor2] = ACTIONS(2465), + [anon_sym_bit_DASHor2] = ACTIONS(2465), + [anon_sym_err_GT] = ACTIONS(2467), + [anon_sym_out_GT] = ACTIONS(2467), + [anon_sym_e_GT] = ACTIONS(2467), + [anon_sym_o_GT] = ACTIONS(2467), + [anon_sym_err_PLUSout_GT] = ACTIONS(2467), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2467), + [anon_sym_o_PLUSe_GT] = ACTIONS(2467), + [anon_sym_e_PLUSo_GT] = ACTIONS(2467), + [anon_sym_err_GT_GT] = ACTIONS(2465), + [anon_sym_out_GT_GT] = ACTIONS(2465), + [anon_sym_e_GT_GT] = ACTIONS(2465), + [anon_sym_o_GT_GT] = ACTIONS(2465), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2465), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2465), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2465), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2465), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(847)] = { + [sym_comment] = STATE(847), + [anon_sym_if] = ACTIONS(2469), + [anon_sym_in] = ACTIONS(2469), + [sym__newline] = ACTIONS(2469), + [anon_sym_SEMI] = ACTIONS(2469), + [anon_sym_PIPE] = ACTIONS(2469), + [anon_sym_err_GT_PIPE] = ACTIONS(2469), + [anon_sym_out_GT_PIPE] = ACTIONS(2469), + [anon_sym_e_GT_PIPE] = ACTIONS(2469), + [anon_sym_o_GT_PIPE] = ACTIONS(2469), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2469), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2469), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2469), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2469), + [anon_sym_RPAREN] = ACTIONS(2469), + [anon_sym_GT2] = ACTIONS(2471), + [anon_sym_DASH2] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2469), + [anon_sym_RBRACE] = ACTIONS(2469), + [anon_sym_EQ_GT] = ACTIONS(2469), + [anon_sym_STAR2] = ACTIONS(2471), + [anon_sym_and2] = ACTIONS(2469), + [anon_sym_xor2] = ACTIONS(2469), + [anon_sym_or2] = ACTIONS(2469), + [anon_sym_not_DASHin2] = ACTIONS(2469), + [anon_sym_has2] = ACTIONS(2469), + [anon_sym_not_DASHhas2] = ACTIONS(2469), + [anon_sym_starts_DASHwith2] = ACTIONS(2469), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2469), + [anon_sym_ends_DASHwith2] = ACTIONS(2469), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2469), + [anon_sym_EQ_EQ2] = ACTIONS(2469), + [anon_sym_BANG_EQ2] = ACTIONS(2469), + [anon_sym_LT2] = ACTIONS(2471), + [anon_sym_LT_EQ2] = ACTIONS(2469), + [anon_sym_GT_EQ2] = ACTIONS(2469), + [anon_sym_EQ_TILDE2] = ACTIONS(2469), + [anon_sym_BANG_TILDE2] = ACTIONS(2469), + [anon_sym_like2] = ACTIONS(2469), + [anon_sym_not_DASHlike2] = ACTIONS(2469), + [anon_sym_STAR_STAR2] = ACTIONS(2469), + [anon_sym_PLUS_PLUS2] = ACTIONS(2469), + [anon_sym_SLASH2] = ACTIONS(2471), + [anon_sym_mod2] = ACTIONS(2469), + [anon_sym_SLASH_SLASH2] = ACTIONS(2469), + [anon_sym_PLUS2] = ACTIONS(2471), + [anon_sym_bit_DASHshl2] = ACTIONS(2469), + [anon_sym_bit_DASHshr2] = ACTIONS(2469), + [anon_sym_bit_DASHand2] = ACTIONS(2469), + [anon_sym_bit_DASHxor2] = ACTIONS(2469), + [anon_sym_bit_DASHor2] = ACTIONS(2469), + [anon_sym_err_GT] = ACTIONS(2471), + [anon_sym_out_GT] = ACTIONS(2471), + [anon_sym_e_GT] = ACTIONS(2471), + [anon_sym_o_GT] = ACTIONS(2471), + [anon_sym_err_PLUSout_GT] = ACTIONS(2471), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2471), + [anon_sym_o_PLUSe_GT] = ACTIONS(2471), + [anon_sym_e_PLUSo_GT] = ACTIONS(2471), + [anon_sym_err_GT_GT] = ACTIONS(2469), + [anon_sym_out_GT_GT] = ACTIONS(2469), + [anon_sym_e_GT_GT] = ACTIONS(2469), + [anon_sym_o_GT_GT] = ACTIONS(2469), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2469), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2469), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2469), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2469), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(848)] = { + [sym_comment] = STATE(848), + [anon_sym_if] = ACTIONS(2473), + [anon_sym_in] = ACTIONS(2473), + [sym__newline] = ACTIONS(2473), + [anon_sym_SEMI] = ACTIONS(2473), + [anon_sym_PIPE] = ACTIONS(2473), + [anon_sym_err_GT_PIPE] = ACTIONS(2473), + [anon_sym_out_GT_PIPE] = ACTIONS(2473), + [anon_sym_e_GT_PIPE] = ACTIONS(2473), + [anon_sym_o_GT_PIPE] = ACTIONS(2473), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2473), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2473), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2473), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2473), + [anon_sym_RPAREN] = ACTIONS(2473), + [anon_sym_GT2] = ACTIONS(2475), + [anon_sym_DASH2] = ACTIONS(2473), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_EQ_GT] = ACTIONS(2473), + [anon_sym_STAR2] = ACTIONS(2475), + [anon_sym_and2] = ACTIONS(2473), + [anon_sym_xor2] = ACTIONS(2473), + [anon_sym_or2] = ACTIONS(2473), + [anon_sym_not_DASHin2] = ACTIONS(2473), + [anon_sym_has2] = ACTIONS(2473), + [anon_sym_not_DASHhas2] = ACTIONS(2473), + [anon_sym_starts_DASHwith2] = ACTIONS(2473), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2473), + [anon_sym_ends_DASHwith2] = ACTIONS(2473), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2473), + [anon_sym_EQ_EQ2] = ACTIONS(2473), + [anon_sym_BANG_EQ2] = ACTIONS(2473), + [anon_sym_LT2] = ACTIONS(2475), + [anon_sym_LT_EQ2] = ACTIONS(2473), + [anon_sym_GT_EQ2] = ACTIONS(2473), + [anon_sym_EQ_TILDE2] = ACTIONS(2473), + [anon_sym_BANG_TILDE2] = ACTIONS(2473), + [anon_sym_like2] = ACTIONS(2473), + [anon_sym_not_DASHlike2] = ACTIONS(2473), + [anon_sym_STAR_STAR2] = ACTIONS(2473), + [anon_sym_PLUS_PLUS2] = ACTIONS(2473), + [anon_sym_SLASH2] = ACTIONS(2475), + [anon_sym_mod2] = ACTIONS(2473), + [anon_sym_SLASH_SLASH2] = ACTIONS(2473), + [anon_sym_PLUS2] = ACTIONS(2475), + [anon_sym_bit_DASHshl2] = ACTIONS(2473), + [anon_sym_bit_DASHshr2] = ACTIONS(2473), + [anon_sym_bit_DASHand2] = ACTIONS(2473), + [anon_sym_bit_DASHxor2] = ACTIONS(2473), + [anon_sym_bit_DASHor2] = ACTIONS(2473), + [anon_sym_err_GT] = ACTIONS(2475), + [anon_sym_out_GT] = ACTIONS(2475), + [anon_sym_e_GT] = ACTIONS(2475), + [anon_sym_o_GT] = ACTIONS(2475), + [anon_sym_err_PLUSout_GT] = ACTIONS(2475), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2475), + [anon_sym_o_PLUSe_GT] = ACTIONS(2475), + [anon_sym_e_PLUSo_GT] = ACTIONS(2475), + [anon_sym_err_GT_GT] = ACTIONS(2473), + [anon_sym_out_GT_GT] = ACTIONS(2473), + [anon_sym_e_GT_GT] = ACTIONS(2473), + [anon_sym_o_GT_GT] = ACTIONS(2473), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2473), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2473), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2473), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2473), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(849)] = { + [sym_comment] = STATE(849), + [anon_sym_if] = ACTIONS(2477), + [anon_sym_in] = ACTIONS(2477), + [sym__newline] = ACTIONS(2477), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_PIPE] = ACTIONS(2477), + [anon_sym_err_GT_PIPE] = ACTIONS(2477), + [anon_sym_out_GT_PIPE] = ACTIONS(2477), + [anon_sym_e_GT_PIPE] = ACTIONS(2477), + [anon_sym_o_GT_PIPE] = ACTIONS(2477), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2477), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2477), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2477), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2477), + [anon_sym_RPAREN] = ACTIONS(2477), + [anon_sym_GT2] = ACTIONS(2479), + [anon_sym_DASH2] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2477), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_EQ_GT] = ACTIONS(2477), + [anon_sym_STAR2] = ACTIONS(2479), + [anon_sym_and2] = ACTIONS(2477), + [anon_sym_xor2] = ACTIONS(2477), + [anon_sym_or2] = ACTIONS(2477), + [anon_sym_not_DASHin2] = ACTIONS(2477), + [anon_sym_has2] = ACTIONS(2477), + [anon_sym_not_DASHhas2] = ACTIONS(2477), + [anon_sym_starts_DASHwith2] = ACTIONS(2477), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2477), + [anon_sym_ends_DASHwith2] = ACTIONS(2477), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2477), + [anon_sym_EQ_EQ2] = ACTIONS(2477), + [anon_sym_BANG_EQ2] = ACTIONS(2477), + [anon_sym_LT2] = ACTIONS(2479), + [anon_sym_LT_EQ2] = ACTIONS(2477), + [anon_sym_GT_EQ2] = ACTIONS(2477), + [anon_sym_EQ_TILDE2] = ACTIONS(2477), + [anon_sym_BANG_TILDE2] = ACTIONS(2477), + [anon_sym_like2] = ACTIONS(2477), + [anon_sym_not_DASHlike2] = ACTIONS(2477), + [anon_sym_STAR_STAR2] = ACTIONS(2477), + [anon_sym_PLUS_PLUS2] = ACTIONS(2477), + [anon_sym_SLASH2] = ACTIONS(2479), + [anon_sym_mod2] = ACTIONS(2477), + [anon_sym_SLASH_SLASH2] = ACTIONS(2477), + [anon_sym_PLUS2] = ACTIONS(2479), + [anon_sym_bit_DASHshl2] = ACTIONS(2477), + [anon_sym_bit_DASHshr2] = ACTIONS(2477), + [anon_sym_bit_DASHand2] = ACTIONS(2477), + [anon_sym_bit_DASHxor2] = ACTIONS(2477), + [anon_sym_bit_DASHor2] = ACTIONS(2477), + [anon_sym_err_GT] = ACTIONS(2479), + [anon_sym_out_GT] = ACTIONS(2479), + [anon_sym_e_GT] = ACTIONS(2479), + [anon_sym_o_GT] = ACTIONS(2479), + [anon_sym_err_PLUSout_GT] = ACTIONS(2479), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2479), + [anon_sym_o_PLUSe_GT] = ACTIONS(2479), + [anon_sym_e_PLUSo_GT] = ACTIONS(2479), + [anon_sym_err_GT_GT] = ACTIONS(2477), + [anon_sym_out_GT_GT] = ACTIONS(2477), + [anon_sym_e_GT_GT] = ACTIONS(2477), + [anon_sym_o_GT_GT] = ACTIONS(2477), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2477), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2477), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2477), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2477), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(850)] = { + [sym_cell_path] = STATE(1315), + [sym_path] = STATE(827), + [sym_comment] = STATE(850), + [aux_sym__where_predicate_lhs_repeat1] = STATE(525), + [ts_builtin_sym_end] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1868), + [sym__newline] = ACTIONS(1868), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1868), + [anon_sym_err_GT_PIPE] = ACTIONS(1868), + [anon_sym_out_GT_PIPE] = ACTIONS(1868), + [anon_sym_e_GT_PIPE] = ACTIONS(1868), + [anon_sym_o_GT_PIPE] = ACTIONS(1868), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1868), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1868), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1868), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1868), + [anon_sym_GT2] = ACTIONS(1870), + [anon_sym_DASH2] = ACTIONS(1868), + [anon_sym_STAR2] = ACTIONS(1870), + [anon_sym_and2] = ACTIONS(1868), + [anon_sym_xor2] = ACTIONS(1868), + [anon_sym_or2] = ACTIONS(1868), + [anon_sym_not_DASHin2] = ACTIONS(1868), + [anon_sym_has2] = ACTIONS(1868), + [anon_sym_not_DASHhas2] = ACTIONS(1868), + [anon_sym_starts_DASHwith2] = ACTIONS(1868), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1868), + [anon_sym_ends_DASHwith2] = ACTIONS(1868), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1868), + [anon_sym_EQ_EQ2] = ACTIONS(1868), + [anon_sym_BANG_EQ2] = ACTIONS(1868), + [anon_sym_LT2] = ACTIONS(1870), + [anon_sym_LT_EQ2] = ACTIONS(1868), + [anon_sym_GT_EQ2] = ACTIONS(1868), + [anon_sym_EQ_TILDE2] = ACTIONS(1868), + [anon_sym_BANG_TILDE2] = ACTIONS(1868), + [anon_sym_like2] = ACTIONS(1868), + [anon_sym_not_DASHlike2] = ACTIONS(1868), + [anon_sym_STAR_STAR2] = ACTIONS(1868), + [anon_sym_PLUS_PLUS2] = ACTIONS(1868), + [anon_sym_SLASH2] = ACTIONS(1870), + [anon_sym_mod2] = ACTIONS(1868), + [anon_sym_SLASH_SLASH2] = ACTIONS(1868), + [anon_sym_PLUS2] = ACTIONS(1870), + [anon_sym_bit_DASHshl2] = ACTIONS(1868), + [anon_sym_bit_DASHshr2] = ACTIONS(1868), + [anon_sym_bit_DASHand2] = ACTIONS(1868), + [anon_sym_bit_DASHxor2] = ACTIONS(1868), + [anon_sym_bit_DASHor2] = ACTIONS(1868), + [anon_sym_DOT2] = ACTIONS(2251), + [anon_sym_err_GT] = ACTIONS(1870), + [anon_sym_out_GT] = ACTIONS(1870), + [anon_sym_e_GT] = ACTIONS(1870), + [anon_sym_o_GT] = ACTIONS(1870), + [anon_sym_err_PLUSout_GT] = ACTIONS(1870), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1870), + [anon_sym_o_PLUSe_GT] = ACTIONS(1870), + [anon_sym_e_PLUSo_GT] = ACTIONS(1870), + [anon_sym_err_GT_GT] = ACTIONS(1868), + [anon_sym_out_GT_GT] = ACTIONS(1868), + [anon_sym_e_GT_GT] = ACTIONS(1868), + [anon_sym_o_GT_GT] = ACTIONS(1868), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1868), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1868), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1868), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1868), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(851)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1658), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(703), + [sym__unquoted_with_expr] = STATE(957), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(851), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2060), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(852)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1659), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(704), + [sym__unquoted_with_expr] = STATE(959), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(852), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2060), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(853)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1660), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(706), + [sym__unquoted_with_expr] = STATE(899), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(853), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2060), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(854)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1661), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(709), + [sym__unquoted_with_expr] = STATE(901), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(854), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2060), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(855)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1662), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(690), + [sym__unquoted_with_expr] = STATE(904), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(855), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2060), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(856)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1663), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(691), + [sym__unquoted_with_expr] = STATE(906), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(856), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2060), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(857)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1664), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(672), + [sym__unquoted_with_expr] = STATE(926), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(857), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2060), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(858)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1665), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(673), + [sym__unquoted_with_expr] = STATE(929), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(858), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2060), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(859)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(895), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(674), + [sym__unquoted_with_expr] = STATE(932), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(859), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2060), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(860)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1666), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(675), + [sym__unquoted_with_expr] = STATE(934), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(860), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2060), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(861)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1667), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(676), + [sym__unquoted_with_expr] = STATE(936), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(861), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2060), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(862)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1668), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(677), + [sym__unquoted_with_expr] = STATE(939), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(862), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2060), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(863)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1669), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(1481), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1405), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(678), + [sym__unquoted_with_expr] = STATE(941), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(863), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_null] = ACTIONS(2046), + [aux_sym_cmd_identifier_token3] = ACTIONS(2048), + [aux_sym_cmd_identifier_token4] = ACTIONS(2048), + [aux_sym_cmd_identifier_token5] = ACTIONS(2048), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2052), + [anon_sym_DOT_DOT_LT] = ACTIONS(2052), + [aux_sym__val_number_decimal_token1] = ACTIONS(2054), + [aux_sym__val_number_decimal_token2] = ACTIONS(2056), + [aux_sym__val_number_decimal_token3] = ACTIONS(2058), + [aux_sym__val_number_decimal_token4] = ACTIONS(2058), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2060), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(864)] = { + [sym_comment] = STATE(864), + [anon_sym_if] = ACTIONS(2481), + [anon_sym_in] = ACTIONS(2481), + [sym__newline] = ACTIONS(2481), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_PIPE] = ACTIONS(2481), + [anon_sym_err_GT_PIPE] = ACTIONS(2481), + [anon_sym_out_GT_PIPE] = ACTIONS(2481), + [anon_sym_e_GT_PIPE] = ACTIONS(2481), + [anon_sym_o_GT_PIPE] = ACTIONS(2481), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2481), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2481), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2481), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2481), + [anon_sym_RPAREN] = ACTIONS(2481), + [anon_sym_GT2] = ACTIONS(2483), + [anon_sym_DASH2] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(2481), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_EQ_GT] = ACTIONS(2481), + [anon_sym_STAR2] = ACTIONS(2483), + [anon_sym_and2] = ACTIONS(2481), + [anon_sym_xor2] = ACTIONS(2481), + [anon_sym_or2] = ACTIONS(2481), + [anon_sym_not_DASHin2] = ACTIONS(2481), + [anon_sym_has2] = ACTIONS(2481), + [anon_sym_not_DASHhas2] = ACTIONS(2481), + [anon_sym_starts_DASHwith2] = ACTIONS(2481), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2481), + [anon_sym_ends_DASHwith2] = ACTIONS(2481), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2481), + [anon_sym_EQ_EQ2] = ACTIONS(2481), + [anon_sym_BANG_EQ2] = ACTIONS(2481), + [anon_sym_LT2] = ACTIONS(2483), + [anon_sym_LT_EQ2] = ACTIONS(2481), + [anon_sym_GT_EQ2] = ACTIONS(2481), + [anon_sym_EQ_TILDE2] = ACTIONS(2481), + [anon_sym_BANG_TILDE2] = ACTIONS(2481), + [anon_sym_like2] = ACTIONS(2481), + [anon_sym_not_DASHlike2] = ACTIONS(2481), + [anon_sym_STAR_STAR2] = ACTIONS(2481), + [anon_sym_PLUS_PLUS2] = ACTIONS(2481), + [anon_sym_SLASH2] = ACTIONS(2483), + [anon_sym_mod2] = ACTIONS(2481), + [anon_sym_SLASH_SLASH2] = ACTIONS(2481), + [anon_sym_PLUS2] = ACTIONS(2483), + [anon_sym_bit_DASHshl2] = ACTIONS(2481), + [anon_sym_bit_DASHshr2] = ACTIONS(2481), + [anon_sym_bit_DASHand2] = ACTIONS(2481), + [anon_sym_bit_DASHxor2] = ACTIONS(2481), + [anon_sym_bit_DASHor2] = ACTIONS(2481), + [anon_sym_err_GT] = ACTIONS(2483), + [anon_sym_out_GT] = ACTIONS(2483), + [anon_sym_e_GT] = ACTIONS(2483), + [anon_sym_o_GT] = ACTIONS(2483), + [anon_sym_err_PLUSout_GT] = ACTIONS(2483), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2483), + [anon_sym_o_PLUSe_GT] = ACTIONS(2483), + [anon_sym_e_PLUSo_GT] = ACTIONS(2483), + [anon_sym_err_GT_GT] = ACTIONS(2481), + [anon_sym_out_GT_GT] = ACTIONS(2481), + [anon_sym_e_GT_GT] = ACTIONS(2481), + [anon_sym_o_GT_GT] = ACTIONS(2481), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2481), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2481), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2481), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2481), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(865)] = { + [sym_comment] = STATE(865), + [anon_sym_in] = ACTIONS(2374), + [sym__newline] = ACTIONS(2374), + [anon_sym_SEMI] = ACTIONS(2374), + [anon_sym_PIPE] = ACTIONS(2374), + [anon_sym_err_GT_PIPE] = ACTIONS(2374), + [anon_sym_out_GT_PIPE] = ACTIONS(2374), + [anon_sym_e_GT_PIPE] = ACTIONS(2374), + [anon_sym_o_GT_PIPE] = ACTIONS(2374), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2374), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2374), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2374), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2374), + [anon_sym_RPAREN] = ACTIONS(2374), + [anon_sym_GT2] = ACTIONS(2381), + [anon_sym_DASH2] = ACTIONS(2374), + [anon_sym_LBRACE] = ACTIONS(2374), + [anon_sym_STAR2] = ACTIONS(2381), + [anon_sym_and2] = ACTIONS(2374), + [anon_sym_xor2] = ACTIONS(2374), + [anon_sym_or2] = ACTIONS(2374), + [anon_sym_not_DASHin2] = ACTIONS(2374), + [anon_sym_has2] = ACTIONS(2374), + [anon_sym_not_DASHhas2] = ACTIONS(2374), + [anon_sym_starts_DASHwith2] = ACTIONS(2374), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2374), + [anon_sym_ends_DASHwith2] = ACTIONS(2374), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2374), + [anon_sym_EQ_EQ2] = ACTIONS(2374), + [anon_sym_BANG_EQ2] = ACTIONS(2374), + [anon_sym_LT2] = ACTIONS(2381), + [anon_sym_LT_EQ2] = ACTIONS(2374), + [anon_sym_GT_EQ2] = ACTIONS(2374), + [anon_sym_EQ_TILDE2] = ACTIONS(2374), + [anon_sym_BANG_TILDE2] = ACTIONS(2374), + [anon_sym_like2] = ACTIONS(2374), + [anon_sym_not_DASHlike2] = ACTIONS(2374), + [anon_sym_STAR_STAR2] = ACTIONS(2374), + [anon_sym_PLUS_PLUS2] = ACTIONS(2374), + [anon_sym_SLASH2] = ACTIONS(2381), + [anon_sym_mod2] = ACTIONS(2374), + [anon_sym_SLASH_SLASH2] = ACTIONS(2374), + [anon_sym_PLUS2] = ACTIONS(2381), + [anon_sym_bit_DASHshl2] = ACTIONS(2374), + [anon_sym_bit_DASHshr2] = ACTIONS(2374), + [anon_sym_bit_DASHand2] = ACTIONS(2374), + [anon_sym_bit_DASHxor2] = ACTIONS(2374), + [anon_sym_bit_DASHor2] = ACTIONS(2374), + [anon_sym_DOT_DOT2] = ACTIONS(1608), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1610), + [anon_sym_err_GT] = ACTIONS(2381), + [anon_sym_out_GT] = ACTIONS(2381), + [anon_sym_e_GT] = ACTIONS(2381), + [anon_sym_o_GT] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT] = ACTIONS(2381), + [anon_sym_err_GT_GT] = ACTIONS(2374), + [anon_sym_out_GT_GT] = ACTIONS(2374), + [anon_sym_e_GT_GT] = ACTIONS(2374), + [anon_sym_o_GT_GT] = ACTIONS(2374), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2374), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2374), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2374), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2374), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(866)] = { + [aux_sym__repeat_newline] = STATE(1116), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(866), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(867)] = { + [sym_comment] = STATE(867), + [anon_sym_if] = ACTIONS(2485), + [anon_sym_in] = ACTIONS(2485), + [sym__newline] = ACTIONS(2485), + [anon_sym_SEMI] = ACTIONS(2485), + [anon_sym_PIPE] = ACTIONS(2485), + [anon_sym_err_GT_PIPE] = ACTIONS(2485), + [anon_sym_out_GT_PIPE] = ACTIONS(2485), + [anon_sym_e_GT_PIPE] = ACTIONS(2485), + [anon_sym_o_GT_PIPE] = ACTIONS(2485), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2485), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2485), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2485), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2485), + [anon_sym_RPAREN] = ACTIONS(2485), + [anon_sym_GT2] = ACTIONS(2487), + [anon_sym_DASH2] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2485), + [anon_sym_RBRACE] = ACTIONS(2485), + [anon_sym_EQ_GT] = ACTIONS(2485), + [anon_sym_STAR2] = ACTIONS(2487), + [anon_sym_and2] = ACTIONS(2485), + [anon_sym_xor2] = ACTIONS(2485), + [anon_sym_or2] = ACTIONS(2485), + [anon_sym_not_DASHin2] = ACTIONS(2485), + [anon_sym_has2] = ACTIONS(2485), + [anon_sym_not_DASHhas2] = ACTIONS(2485), + [anon_sym_starts_DASHwith2] = ACTIONS(2485), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2485), + [anon_sym_ends_DASHwith2] = ACTIONS(2485), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2485), + [anon_sym_EQ_EQ2] = ACTIONS(2485), + [anon_sym_BANG_EQ2] = ACTIONS(2485), + [anon_sym_LT2] = ACTIONS(2487), + [anon_sym_LT_EQ2] = ACTIONS(2485), + [anon_sym_GT_EQ2] = ACTIONS(2485), + [anon_sym_EQ_TILDE2] = ACTIONS(2485), + [anon_sym_BANG_TILDE2] = ACTIONS(2485), + [anon_sym_like2] = ACTIONS(2485), + [anon_sym_not_DASHlike2] = ACTIONS(2485), + [anon_sym_STAR_STAR2] = ACTIONS(2485), + [anon_sym_PLUS_PLUS2] = ACTIONS(2485), + [anon_sym_SLASH2] = ACTIONS(2487), + [anon_sym_mod2] = ACTIONS(2485), + [anon_sym_SLASH_SLASH2] = ACTIONS(2485), + [anon_sym_PLUS2] = ACTIONS(2487), + [anon_sym_bit_DASHshl2] = ACTIONS(2485), + [anon_sym_bit_DASHshr2] = ACTIONS(2485), + [anon_sym_bit_DASHand2] = ACTIONS(2485), + [anon_sym_bit_DASHxor2] = ACTIONS(2485), + [anon_sym_bit_DASHor2] = ACTIONS(2485), + [anon_sym_err_GT] = ACTIONS(2487), + [anon_sym_out_GT] = ACTIONS(2487), + [anon_sym_e_GT] = ACTIONS(2487), + [anon_sym_o_GT] = ACTIONS(2487), + [anon_sym_err_PLUSout_GT] = ACTIONS(2487), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2487), + [anon_sym_o_PLUSe_GT] = ACTIONS(2487), + [anon_sym_e_PLUSo_GT] = ACTIONS(2487), + [anon_sym_err_GT_GT] = ACTIONS(2485), + [anon_sym_out_GT_GT] = ACTIONS(2485), + [anon_sym_e_GT_GT] = ACTIONS(2485), + [anon_sym_o_GT_GT] = ACTIONS(2485), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2485), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2485), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2485), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2485), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(868)] = { + [aux_sym__repeat_newline] = STATE(967), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(868), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(869)] = { + [sym_comment] = STATE(869), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_in] = ACTIONS(2489), + [sym__newline] = ACTIONS(2489), + [anon_sym_SEMI] = ACTIONS(2489), + [anon_sym_PIPE] = ACTIONS(2489), + [anon_sym_err_GT_PIPE] = ACTIONS(2489), + [anon_sym_out_GT_PIPE] = ACTIONS(2489), + [anon_sym_e_GT_PIPE] = ACTIONS(2489), + [anon_sym_o_GT_PIPE] = ACTIONS(2489), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2489), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2489), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2489), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2489), + [anon_sym_RPAREN] = ACTIONS(2489), + [anon_sym_GT2] = ACTIONS(2491), + [anon_sym_DASH2] = ACTIONS(2489), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_RBRACE] = ACTIONS(2489), + [anon_sym_EQ_GT] = ACTIONS(2489), + [anon_sym_STAR2] = ACTIONS(2491), + [anon_sym_and2] = ACTIONS(2489), + [anon_sym_xor2] = ACTIONS(2489), + [anon_sym_or2] = ACTIONS(2489), + [anon_sym_not_DASHin2] = ACTIONS(2489), + [anon_sym_has2] = ACTIONS(2489), + [anon_sym_not_DASHhas2] = ACTIONS(2489), + [anon_sym_starts_DASHwith2] = ACTIONS(2489), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2489), + [anon_sym_ends_DASHwith2] = ACTIONS(2489), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2489), + [anon_sym_EQ_EQ2] = ACTIONS(2489), + [anon_sym_BANG_EQ2] = ACTIONS(2489), + [anon_sym_LT2] = ACTIONS(2491), + [anon_sym_LT_EQ2] = ACTIONS(2489), + [anon_sym_GT_EQ2] = ACTIONS(2489), + [anon_sym_EQ_TILDE2] = ACTIONS(2489), + [anon_sym_BANG_TILDE2] = ACTIONS(2489), + [anon_sym_like2] = ACTIONS(2489), + [anon_sym_not_DASHlike2] = ACTIONS(2489), + [anon_sym_STAR_STAR2] = ACTIONS(2489), + [anon_sym_PLUS_PLUS2] = ACTIONS(2489), + [anon_sym_SLASH2] = ACTIONS(2491), + [anon_sym_mod2] = ACTIONS(2489), + [anon_sym_SLASH_SLASH2] = ACTIONS(2489), + [anon_sym_PLUS2] = ACTIONS(2491), + [anon_sym_bit_DASHshl2] = ACTIONS(2489), + [anon_sym_bit_DASHshr2] = ACTIONS(2489), + [anon_sym_bit_DASHand2] = ACTIONS(2489), + [anon_sym_bit_DASHxor2] = ACTIONS(2489), + [anon_sym_bit_DASHor2] = ACTIONS(2489), + [anon_sym_err_GT] = ACTIONS(2491), + [anon_sym_out_GT] = ACTIONS(2491), + [anon_sym_e_GT] = ACTIONS(2491), + [anon_sym_o_GT] = ACTIONS(2491), + [anon_sym_err_PLUSout_GT] = ACTIONS(2491), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2491), + [anon_sym_o_PLUSe_GT] = ACTIONS(2491), + [anon_sym_e_PLUSo_GT] = ACTIONS(2491), + [anon_sym_err_GT_GT] = ACTIONS(2489), + [anon_sym_out_GT_GT] = ACTIONS(2489), + [anon_sym_e_GT_GT] = ACTIONS(2489), + [anon_sym_o_GT_GT] = ACTIONS(2489), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2489), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2489), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2489), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2489), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(870)] = { + [aux_sym__repeat_newline] = STATE(1002), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(870), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(871)] = { + [sym_comment] = STATE(871), + [anon_sym_if] = ACTIONS(2493), + [anon_sym_in] = ACTIONS(2493), + [sym__newline] = ACTIONS(2493), + [anon_sym_SEMI] = ACTIONS(2493), + [anon_sym_PIPE] = ACTIONS(2493), + [anon_sym_err_GT_PIPE] = ACTIONS(2493), + [anon_sym_out_GT_PIPE] = ACTIONS(2493), + [anon_sym_e_GT_PIPE] = ACTIONS(2493), + [anon_sym_o_GT_PIPE] = ACTIONS(2493), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2493), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2493), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2493), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2493), + [anon_sym_RPAREN] = ACTIONS(2493), + [anon_sym_GT2] = ACTIONS(2495), + [anon_sym_DASH2] = ACTIONS(2493), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_RBRACE] = ACTIONS(2493), + [anon_sym_EQ_GT] = ACTIONS(2493), + [anon_sym_STAR2] = ACTIONS(2495), + [anon_sym_and2] = ACTIONS(2493), + [anon_sym_xor2] = ACTIONS(2493), + [anon_sym_or2] = ACTIONS(2493), + [anon_sym_not_DASHin2] = ACTIONS(2493), + [anon_sym_has2] = ACTIONS(2493), + [anon_sym_not_DASHhas2] = ACTIONS(2493), + [anon_sym_starts_DASHwith2] = ACTIONS(2493), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2493), + [anon_sym_ends_DASHwith2] = ACTIONS(2493), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2493), + [anon_sym_EQ_EQ2] = ACTIONS(2493), + [anon_sym_BANG_EQ2] = ACTIONS(2493), + [anon_sym_LT2] = ACTIONS(2495), + [anon_sym_LT_EQ2] = ACTIONS(2493), + [anon_sym_GT_EQ2] = ACTIONS(2493), + [anon_sym_EQ_TILDE2] = ACTIONS(2493), + [anon_sym_BANG_TILDE2] = ACTIONS(2493), + [anon_sym_like2] = ACTIONS(2493), + [anon_sym_not_DASHlike2] = ACTIONS(2493), + [anon_sym_STAR_STAR2] = ACTIONS(2493), + [anon_sym_PLUS_PLUS2] = ACTIONS(2493), + [anon_sym_SLASH2] = ACTIONS(2495), + [anon_sym_mod2] = ACTIONS(2493), + [anon_sym_SLASH_SLASH2] = ACTIONS(2493), + [anon_sym_PLUS2] = ACTIONS(2495), + [anon_sym_bit_DASHshl2] = ACTIONS(2493), + [anon_sym_bit_DASHshr2] = ACTIONS(2493), + [anon_sym_bit_DASHand2] = ACTIONS(2493), + [anon_sym_bit_DASHxor2] = ACTIONS(2493), + [anon_sym_bit_DASHor2] = ACTIONS(2493), + [anon_sym_err_GT] = ACTIONS(2495), + [anon_sym_out_GT] = ACTIONS(2495), + [anon_sym_e_GT] = ACTIONS(2495), + [anon_sym_o_GT] = ACTIONS(2495), + [anon_sym_err_PLUSout_GT] = ACTIONS(2495), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2495), + [anon_sym_o_PLUSe_GT] = ACTIONS(2495), + [anon_sym_e_PLUSo_GT] = ACTIONS(2495), + [anon_sym_err_GT_GT] = ACTIONS(2493), + [anon_sym_out_GT_GT] = ACTIONS(2493), + [anon_sym_e_GT_GT] = ACTIONS(2493), + [anon_sym_o_GT_GT] = ACTIONS(2493), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2493), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2493), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2493), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(872)] = { + [aux_sym__repeat_newline] = STATE(1020), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(872), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(873)] = { + [aux_sym__repeat_newline] = STATE(1049), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(873), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(874)] = { + [sym_expr_unary] = STATE(1278), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_binary] = STATE(1278), + [sym__expr_binary_expression] = STATE(1277), + [sym_expr_parenthesized] = STATE(920), + [sym_val_range] = STATE(1278), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(1278), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(987), + [sym_val_variable] = STATE(946), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(459), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(1070), + [sym__unquoted_with_expr] = STATE(1285), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(874), + [anon_sym_true] = ACTIONS(2399), + [anon_sym_false] = ACTIONS(2399), + [anon_sym_null] = ACTIONS(2401), + [aux_sym_cmd_identifier_token3] = ACTIONS(2403), + [aux_sym_cmd_identifier_token4] = ACTIONS(2403), + [aux_sym_cmd_identifier_token5] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(1030), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_DOT_DOT] = ACTIONS(2405), + [aux_sym_expr_unary_token1] = ACTIONS(73), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2407), + [anon_sym_DOT_DOT_LT] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2409), + [aux_sym__val_number_decimal_token2] = ACTIONS(2411), + [aux_sym__val_number_decimal_token3] = ACTIONS(2413), + [aux_sym__val_number_decimal_token4] = ACTIONS(2413), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2415), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2372), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), + }, + [STATE(875)] = { + [aux_sym__repeat_newline] = STATE(1068), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(875), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(876)] = { + [sym_comment] = STATE(876), + [anon_sym_in] = ACTIONS(2497), + [sym__newline] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2497), + [anon_sym_err_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_GT_PIPE] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2497), + [anon_sym_RPAREN] = ACTIONS(2497), + [anon_sym_GT2] = ACTIONS(2499), + [anon_sym_DASH2] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_RBRACE] = ACTIONS(2497), + [anon_sym_EQ_GT] = ACTIONS(2497), + [anon_sym_STAR2] = ACTIONS(2499), + [anon_sym_and2] = ACTIONS(2497), + [anon_sym_xor2] = ACTIONS(2497), + [anon_sym_or2] = ACTIONS(2497), + [anon_sym_not_DASHin2] = ACTIONS(2497), + [anon_sym_has2] = ACTIONS(2497), + [anon_sym_not_DASHhas2] = ACTIONS(2497), + [anon_sym_starts_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2497), + [anon_sym_ends_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2497), + [anon_sym_EQ_EQ2] = ACTIONS(2497), + [anon_sym_BANG_EQ2] = ACTIONS(2497), + [anon_sym_LT2] = ACTIONS(2499), + [anon_sym_LT_EQ2] = ACTIONS(2497), + [anon_sym_GT_EQ2] = ACTIONS(2497), + [anon_sym_EQ_TILDE2] = ACTIONS(2497), + [anon_sym_BANG_TILDE2] = ACTIONS(2497), + [anon_sym_like2] = ACTIONS(2497), + [anon_sym_not_DASHlike2] = ACTIONS(2497), + [anon_sym_STAR_STAR2] = ACTIONS(2497), + [anon_sym_PLUS_PLUS2] = ACTIONS(2497), + [anon_sym_SLASH2] = ACTIONS(2499), + [anon_sym_mod2] = ACTIONS(2497), + [anon_sym_SLASH_SLASH2] = ACTIONS(2497), + [anon_sym_PLUS2] = ACTIONS(2499), + [anon_sym_bit_DASHshl2] = ACTIONS(2497), + [anon_sym_bit_DASHshr2] = ACTIONS(2497), + [anon_sym_bit_DASHand2] = ACTIONS(2497), + [anon_sym_bit_DASHxor2] = ACTIONS(2497), + [anon_sym_bit_DASHor2] = ACTIONS(2497), + [anon_sym_COLON2] = ACTIONS(2497), + [anon_sym_err_GT] = ACTIONS(2499), + [anon_sym_out_GT] = ACTIONS(2499), + [anon_sym_e_GT] = ACTIONS(2499), + [anon_sym_o_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT] = ACTIONS(2499), + [anon_sym_err_GT_GT] = ACTIONS(2497), + [anon_sym_out_GT_GT] = ACTIONS(2497), + [anon_sym_e_GT_GT] = ACTIONS(2497), + [anon_sym_o_GT_GT] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(877)] = { + [aux_sym__repeat_newline] = STATE(1075), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(877), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(878)] = { + [sym_comment] = STATE(878), + [anon_sym_in] = ACTIONS(2497), + [sym__newline] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2497), + [anon_sym_err_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_GT_PIPE] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2497), + [anon_sym_RPAREN] = ACTIONS(2497), + [anon_sym_GT2] = ACTIONS(2499), + [anon_sym_DASH2] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_RBRACE] = ACTIONS(2497), + [anon_sym_EQ_GT] = ACTIONS(2497), + [anon_sym_STAR2] = ACTIONS(2499), + [anon_sym_and2] = ACTIONS(2497), + [anon_sym_xor2] = ACTIONS(2497), + [anon_sym_or2] = ACTIONS(2497), + [anon_sym_not_DASHin2] = ACTIONS(2497), + [anon_sym_has2] = ACTIONS(2497), + [anon_sym_not_DASHhas2] = ACTIONS(2497), + [anon_sym_starts_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2497), + [anon_sym_ends_DASHwith2] = ACTIONS(2497), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2497), + [anon_sym_EQ_EQ2] = ACTIONS(2497), + [anon_sym_BANG_EQ2] = ACTIONS(2497), + [anon_sym_LT2] = ACTIONS(2499), + [anon_sym_LT_EQ2] = ACTIONS(2497), + [anon_sym_GT_EQ2] = ACTIONS(2497), + [anon_sym_EQ_TILDE2] = ACTIONS(2497), + [anon_sym_BANG_TILDE2] = ACTIONS(2497), + [anon_sym_like2] = ACTIONS(2497), + [anon_sym_not_DASHlike2] = ACTIONS(2497), + [anon_sym_STAR_STAR2] = ACTIONS(2497), + [anon_sym_PLUS_PLUS2] = ACTIONS(2497), + [anon_sym_SLASH2] = ACTIONS(2499), + [anon_sym_mod2] = ACTIONS(2497), + [anon_sym_SLASH_SLASH2] = ACTIONS(2497), + [anon_sym_PLUS2] = ACTIONS(2499), + [anon_sym_bit_DASHshl2] = ACTIONS(2497), + [anon_sym_bit_DASHshr2] = ACTIONS(2497), + [anon_sym_bit_DASHand2] = ACTIONS(2497), + [anon_sym_bit_DASHxor2] = ACTIONS(2497), + [anon_sym_bit_DASHor2] = ACTIONS(2497), + [anon_sym_COLON2] = ACTIONS(2497), + [anon_sym_err_GT] = ACTIONS(2499), + [anon_sym_out_GT] = ACTIONS(2499), + [anon_sym_e_GT] = ACTIONS(2499), + [anon_sym_o_GT] = ACTIONS(2499), + [anon_sym_err_PLUSout_GT] = ACTIONS(2499), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2499), + [anon_sym_o_PLUSe_GT] = ACTIONS(2499), + [anon_sym_e_PLUSo_GT] = ACTIONS(2499), + [anon_sym_err_GT_GT] = ACTIONS(2497), + [anon_sym_out_GT_GT] = ACTIONS(2497), + [anon_sym_e_GT_GT] = ACTIONS(2497), + [anon_sym_o_GT_GT] = ACTIONS(2497), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2497), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2497), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2497), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(879)] = { + [aux_sym__repeat_newline] = STATE(1077), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(879), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(880)] = { + [aux_sym__repeat_newline] = STATE(1083), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(880), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(881)] = { + [sym_comment] = STATE(881), + [anon_sym_in] = ACTIONS(2501), + [sym__newline] = ACTIONS(2501), + [anon_sym_SEMI] = ACTIONS(2501), + [anon_sym_PIPE] = ACTIONS(2501), + [anon_sym_err_GT_PIPE] = ACTIONS(2501), + [anon_sym_out_GT_PIPE] = ACTIONS(2501), + [anon_sym_e_GT_PIPE] = ACTIONS(2501), + [anon_sym_o_GT_PIPE] = ACTIONS(2501), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2501), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2501), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2501), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2501), + [anon_sym_RPAREN] = ACTIONS(2501), + [anon_sym_GT2] = ACTIONS(2503), + [anon_sym_DASH2] = ACTIONS(2501), + [anon_sym_LBRACE] = ACTIONS(2501), + [anon_sym_RBRACE] = ACTIONS(2501), + [anon_sym_EQ_GT] = ACTIONS(2501), + [anon_sym_STAR2] = ACTIONS(2503), + [anon_sym_and2] = ACTIONS(2501), + [anon_sym_xor2] = ACTIONS(2501), + [anon_sym_or2] = ACTIONS(2501), + [anon_sym_not_DASHin2] = ACTIONS(2501), + [anon_sym_has2] = ACTIONS(2501), + [anon_sym_not_DASHhas2] = ACTIONS(2501), + [anon_sym_starts_DASHwith2] = ACTIONS(2501), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2501), + [anon_sym_ends_DASHwith2] = ACTIONS(2501), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2501), + [anon_sym_EQ_EQ2] = ACTIONS(2501), + [anon_sym_BANG_EQ2] = ACTIONS(2501), + [anon_sym_LT2] = ACTIONS(2503), + [anon_sym_LT_EQ2] = ACTIONS(2501), + [anon_sym_GT_EQ2] = ACTIONS(2501), + [anon_sym_EQ_TILDE2] = ACTIONS(2501), + [anon_sym_BANG_TILDE2] = ACTIONS(2501), + [anon_sym_like2] = ACTIONS(2501), + [anon_sym_not_DASHlike2] = ACTIONS(2501), + [anon_sym_STAR_STAR2] = ACTIONS(2501), + [anon_sym_PLUS_PLUS2] = ACTIONS(2501), + [anon_sym_SLASH2] = ACTIONS(2503), + [anon_sym_mod2] = ACTIONS(2501), + [anon_sym_SLASH_SLASH2] = ACTIONS(2501), + [anon_sym_PLUS2] = ACTIONS(2503), + [anon_sym_bit_DASHshl2] = ACTIONS(2501), + [anon_sym_bit_DASHshr2] = ACTIONS(2501), + [anon_sym_bit_DASHand2] = ACTIONS(2501), + [anon_sym_bit_DASHxor2] = ACTIONS(2501), + [anon_sym_bit_DASHor2] = ACTIONS(2501), + [anon_sym_COLON2] = ACTIONS(2501), + [anon_sym_err_GT] = ACTIONS(2503), + [anon_sym_out_GT] = ACTIONS(2503), + [anon_sym_e_GT] = ACTIONS(2503), + [anon_sym_o_GT] = ACTIONS(2503), + [anon_sym_err_PLUSout_GT] = ACTIONS(2503), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2503), + [anon_sym_o_PLUSe_GT] = ACTIONS(2503), + [anon_sym_e_PLUSo_GT] = ACTIONS(2503), + [anon_sym_err_GT_GT] = ACTIONS(2501), + [anon_sym_out_GT_GT] = ACTIONS(2501), + [anon_sym_e_GT_GT] = ACTIONS(2501), + [anon_sym_o_GT_GT] = ACTIONS(2501), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2501), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2501), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2501), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2501), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(882)] = { + [aux_sym__repeat_newline] = STATE(1085), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(882), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(883)] = { + [sym_comment] = STATE(883), + [anon_sym_in] = ACTIONS(2505), + [sym__newline] = ACTIONS(2505), + [anon_sym_SEMI] = ACTIONS(2505), + [anon_sym_PIPE] = ACTIONS(2505), + [anon_sym_err_GT_PIPE] = ACTIONS(2505), + [anon_sym_out_GT_PIPE] = ACTIONS(2505), + [anon_sym_e_GT_PIPE] = ACTIONS(2505), + [anon_sym_o_GT_PIPE] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2505), + [anon_sym_RPAREN] = ACTIONS(2505), + [anon_sym_GT2] = ACTIONS(2507), + [anon_sym_DASH2] = ACTIONS(2505), + [anon_sym_LBRACE] = ACTIONS(2505), + [anon_sym_RBRACE] = ACTIONS(2505), + [anon_sym_EQ_GT] = ACTIONS(2505), + [anon_sym_STAR2] = ACTIONS(2507), + [anon_sym_and2] = ACTIONS(2505), + [anon_sym_xor2] = ACTIONS(2505), + [anon_sym_or2] = ACTIONS(2505), + [anon_sym_not_DASHin2] = ACTIONS(2505), + [anon_sym_has2] = ACTIONS(2505), + [anon_sym_not_DASHhas2] = ACTIONS(2505), + [anon_sym_starts_DASHwith2] = ACTIONS(2505), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2505), + [anon_sym_ends_DASHwith2] = ACTIONS(2505), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2505), + [anon_sym_EQ_EQ2] = ACTIONS(2505), + [anon_sym_BANG_EQ2] = ACTIONS(2505), + [anon_sym_LT2] = ACTIONS(2507), + [anon_sym_LT_EQ2] = ACTIONS(2505), + [anon_sym_GT_EQ2] = ACTIONS(2505), + [anon_sym_EQ_TILDE2] = ACTIONS(2505), + [anon_sym_BANG_TILDE2] = ACTIONS(2505), + [anon_sym_like2] = ACTIONS(2505), + [anon_sym_not_DASHlike2] = ACTIONS(2505), + [anon_sym_STAR_STAR2] = ACTIONS(2505), + [anon_sym_PLUS_PLUS2] = ACTIONS(2505), + [anon_sym_SLASH2] = ACTIONS(2507), + [anon_sym_mod2] = ACTIONS(2505), + [anon_sym_SLASH_SLASH2] = ACTIONS(2505), + [anon_sym_PLUS2] = ACTIONS(2507), + [anon_sym_bit_DASHshl2] = ACTIONS(2505), + [anon_sym_bit_DASHshr2] = ACTIONS(2505), + [anon_sym_bit_DASHand2] = ACTIONS(2505), + [anon_sym_bit_DASHxor2] = ACTIONS(2505), + [anon_sym_bit_DASHor2] = ACTIONS(2505), + [anon_sym_COLON2] = ACTIONS(2505), + [anon_sym_err_GT] = ACTIONS(2507), + [anon_sym_out_GT] = ACTIONS(2507), + [anon_sym_e_GT] = ACTIONS(2507), + [anon_sym_o_GT] = ACTIONS(2507), + [anon_sym_err_PLUSout_GT] = ACTIONS(2507), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2507), + [anon_sym_o_PLUSe_GT] = ACTIONS(2507), + [anon_sym_e_PLUSo_GT] = ACTIONS(2507), + [anon_sym_err_GT_GT] = ACTIONS(2505), + [anon_sym_out_GT_GT] = ACTIONS(2505), + [anon_sym_e_GT_GT] = ACTIONS(2505), + [anon_sym_o_GT_GT] = ACTIONS(2505), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2505), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2505), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2505), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2505), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(884)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1211), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(703), + [sym__unquoted_with_expr] = STATE(957), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(884), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(885)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1215), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(704), + [sym__unquoted_with_expr] = STATE(959), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(885), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(886)] = { + [aux_sym__repeat_newline] = STATE(964), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(886), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(887)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1217), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(706), + [sym__unquoted_with_expr] = STATE(899), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(887), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(888)] = { + [aux_sym__repeat_newline] = STATE(1091), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(888), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(889)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1221), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(709), + [sym__unquoted_with_expr] = STATE(901), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(889), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(890)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1223), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(690), + [sym__unquoted_with_expr] = STATE(904), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(890), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(891)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1228), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(691), + [sym__unquoted_with_expr] = STATE(906), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(891), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(892)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1233), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(672), + [sym__unquoted_with_expr] = STATE(926), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(892), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(893)] = { + [sym_expr_unary] = STATE(953), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(953), + [sym__expr_binary_expression] = STATE(1235), + [sym_expr_parenthesized] = STATE(702), + [sym_val_range] = STATE(953), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(953), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(940), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(436), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(673), + [sym__unquoted_with_expr] = STATE(929), + [sym__unquoted_anonymous_prefix] = STATE(4569), + [sym_comment] = STATE(893), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(1894), + [aux_sym_cmd_identifier_token3] = ACTIONS(1896), + [aux_sym_cmd_identifier_token4] = ACTIONS(1896), + [aux_sym_cmd_identifier_token5] = ACTIONS(1896), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), + [anon_sym_DOT_DOT_LT] = ACTIONS(1902), + [aux_sym__val_number_decimal_token1] = ACTIONS(1904), + [aux_sym__val_number_decimal_token2] = ACTIONS(1906), + [aux_sym__val_number_decimal_token3] = ACTIONS(1908), + [aux_sym__val_number_decimal_token4] = ACTIONS(1908), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(894)] = { + [aux_sym__repeat_newline] = STATE(973), + [sym__expr_parenthesized_immediate] = STATE(4719), + [sym_comment] = STATE(894), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(895)] = { + [sym_comment] = STATE(895), + [anon_sym_in] = ACTIONS(2509), + [sym__newline] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_err_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_GT_PIPE] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2509), + [anon_sym_RPAREN] = ACTIONS(2509), + [anon_sym_GT2] = ACTIONS(2511), + [anon_sym_DASH2] = ACTIONS(2509), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_EQ_GT] = ACTIONS(2509), + [anon_sym_STAR2] = ACTIONS(2511), + [anon_sym_and2] = ACTIONS(2509), + [anon_sym_xor2] = ACTIONS(2509), + [anon_sym_or2] = ACTIONS(2509), + [anon_sym_not_DASHin2] = ACTIONS(2509), + [anon_sym_has2] = ACTIONS(2509), + [anon_sym_not_DASHhas2] = ACTIONS(2509), + [anon_sym_starts_DASHwith2] = ACTIONS(2509), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2509), + [anon_sym_ends_DASHwith2] = ACTIONS(2509), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2509), + [anon_sym_EQ_EQ2] = ACTIONS(2509), + [anon_sym_BANG_EQ2] = ACTIONS(2509), + [anon_sym_LT2] = ACTIONS(2511), + [anon_sym_LT_EQ2] = ACTIONS(2509), + [anon_sym_GT_EQ2] = ACTIONS(2509), + [anon_sym_EQ_TILDE2] = ACTIONS(2509), + [anon_sym_BANG_TILDE2] = ACTIONS(2509), + [anon_sym_like2] = ACTIONS(2509), + [anon_sym_not_DASHlike2] = ACTIONS(2509), + [anon_sym_STAR_STAR2] = ACTIONS(2509), + [anon_sym_PLUS_PLUS2] = ACTIONS(2509), + [anon_sym_SLASH2] = ACTIONS(2511), + [anon_sym_mod2] = ACTIONS(2509), + [anon_sym_SLASH_SLASH2] = ACTIONS(2509), + [anon_sym_PLUS2] = ACTIONS(2511), + [anon_sym_bit_DASHshl2] = ACTIONS(2509), + [anon_sym_bit_DASHshr2] = ACTIONS(2509), + [anon_sym_bit_DASHand2] = ACTIONS(2509), + [anon_sym_bit_DASHxor2] = ACTIONS(2509), + [anon_sym_bit_DASHor2] = ACTIONS(2509), + [anon_sym_err_GT] = ACTIONS(2511), + [anon_sym_out_GT] = ACTIONS(2511), + [anon_sym_e_GT] = ACTIONS(2511), + [anon_sym_o_GT] = ACTIONS(2511), + [anon_sym_err_PLUSout_GT] = ACTIONS(2511), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2511), + [anon_sym_o_PLUSe_GT] = ACTIONS(2511), + [anon_sym_e_PLUSo_GT] = ACTIONS(2511), + [anon_sym_err_GT_GT] = ACTIONS(2509), + [anon_sym_out_GT_GT] = ACTIONS(2509), + [anon_sym_e_GT_GT] = ACTIONS(2509), + [anon_sym_o_GT_GT] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2509), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(896)] = { + [sym_comment] = STATE(896), + [anon_sym_in] = ACTIONS(2513), + [sym__newline] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2513), + [anon_sym_PIPE] = ACTIONS(2513), + [anon_sym_err_GT_PIPE] = ACTIONS(2513), + [anon_sym_out_GT_PIPE] = ACTIONS(2513), + [anon_sym_e_GT_PIPE] = ACTIONS(2513), + [anon_sym_o_GT_PIPE] = ACTIONS(2513), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2513), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2513), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2513), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2513), + [anon_sym_RPAREN] = ACTIONS(2513), + [anon_sym_GT2] = ACTIONS(2515), + [anon_sym_DASH2] = ACTIONS(2513), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_EQ_GT] = ACTIONS(2513), + [anon_sym_STAR2] = ACTIONS(2515), + [anon_sym_and2] = ACTIONS(2513), + [anon_sym_xor2] = ACTIONS(2513), + [anon_sym_or2] = ACTIONS(2513), + [anon_sym_not_DASHin2] = ACTIONS(2513), + [anon_sym_has2] = ACTIONS(2513), + [anon_sym_not_DASHhas2] = ACTIONS(2513), + [anon_sym_starts_DASHwith2] = ACTIONS(2513), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2513), + [anon_sym_ends_DASHwith2] = ACTIONS(2513), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2513), + [anon_sym_EQ_EQ2] = ACTIONS(2513), + [anon_sym_BANG_EQ2] = ACTIONS(2513), + [anon_sym_LT2] = ACTIONS(2515), + [anon_sym_LT_EQ2] = ACTIONS(2513), + [anon_sym_GT_EQ2] = ACTIONS(2513), + [anon_sym_EQ_TILDE2] = ACTIONS(2513), + [anon_sym_BANG_TILDE2] = ACTIONS(2513), + [anon_sym_like2] = ACTIONS(2513), + [anon_sym_not_DASHlike2] = ACTIONS(2513), + [anon_sym_STAR_STAR2] = ACTIONS(2513), + [anon_sym_PLUS_PLUS2] = ACTIONS(2513), + [anon_sym_SLASH2] = ACTIONS(2515), + [anon_sym_mod2] = ACTIONS(2513), + [anon_sym_SLASH_SLASH2] = ACTIONS(2513), + [anon_sym_PLUS2] = ACTIONS(2515), + [anon_sym_bit_DASHshl2] = ACTIONS(2513), + [anon_sym_bit_DASHshr2] = ACTIONS(2513), + [anon_sym_bit_DASHand2] = ACTIONS(2513), + [anon_sym_bit_DASHxor2] = ACTIONS(2513), + [anon_sym_bit_DASHor2] = ACTIONS(2513), + [anon_sym_err_GT] = ACTIONS(2515), + [anon_sym_out_GT] = ACTIONS(2515), + [anon_sym_e_GT] = ACTIONS(2515), + [anon_sym_o_GT] = ACTIONS(2515), + [anon_sym_err_PLUSout_GT] = ACTIONS(2515), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2515), + [anon_sym_o_PLUSe_GT] = ACTIONS(2515), + [anon_sym_e_PLUSo_GT] = ACTIONS(2515), + [anon_sym_err_GT_GT] = ACTIONS(2513), + [anon_sym_out_GT_GT] = ACTIONS(2513), + [anon_sym_e_GT_GT] = ACTIONS(2513), + [anon_sym_o_GT_GT] = ACTIONS(2513), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2513), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2513), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2513), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2513), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(897)] = { + [sym_comment] = STATE(897), + [anon_sym_in] = ACTIONS(2517), + [sym__newline] = ACTIONS(2517), + [anon_sym_SEMI] = ACTIONS(2517), + [anon_sym_PIPE] = ACTIONS(2517), + [anon_sym_err_GT_PIPE] = ACTIONS(2517), + [anon_sym_out_GT_PIPE] = ACTIONS(2517), + [anon_sym_e_GT_PIPE] = ACTIONS(2517), + [anon_sym_o_GT_PIPE] = ACTIONS(2517), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2517), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2517), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2517), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2517), + [anon_sym_RPAREN] = ACTIONS(2517), + [anon_sym_GT2] = ACTIONS(2519), + [anon_sym_DASH2] = ACTIONS(2517), + [anon_sym_LBRACE] = ACTIONS(2517), + [anon_sym_RBRACE] = ACTIONS(2517), + [anon_sym_EQ_GT] = ACTIONS(2517), + [anon_sym_STAR2] = ACTIONS(2519), + [anon_sym_and2] = ACTIONS(2517), + [anon_sym_xor2] = ACTIONS(2517), + [anon_sym_or2] = ACTIONS(2517), + [anon_sym_not_DASHin2] = ACTIONS(2517), + [anon_sym_has2] = ACTIONS(2517), + [anon_sym_not_DASHhas2] = ACTIONS(2517), + [anon_sym_starts_DASHwith2] = ACTIONS(2517), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2517), + [anon_sym_ends_DASHwith2] = ACTIONS(2517), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2517), + [anon_sym_EQ_EQ2] = ACTIONS(2517), + [anon_sym_BANG_EQ2] = ACTIONS(2517), + [anon_sym_LT2] = ACTIONS(2519), + [anon_sym_LT_EQ2] = ACTIONS(2517), + [anon_sym_GT_EQ2] = ACTIONS(2517), + [anon_sym_EQ_TILDE2] = ACTIONS(2517), + [anon_sym_BANG_TILDE2] = ACTIONS(2517), + [anon_sym_like2] = ACTIONS(2517), + [anon_sym_not_DASHlike2] = ACTIONS(2517), + [anon_sym_STAR_STAR2] = ACTIONS(2517), + [anon_sym_PLUS_PLUS2] = ACTIONS(2517), + [anon_sym_SLASH2] = ACTIONS(2519), + [anon_sym_mod2] = ACTIONS(2517), + [anon_sym_SLASH_SLASH2] = ACTIONS(2517), + [anon_sym_PLUS2] = ACTIONS(2519), + [anon_sym_bit_DASHshl2] = ACTIONS(2517), + [anon_sym_bit_DASHshr2] = ACTIONS(2517), + [anon_sym_bit_DASHand2] = ACTIONS(2517), + [anon_sym_bit_DASHxor2] = ACTIONS(2517), + [anon_sym_bit_DASHor2] = ACTIONS(2517), + [anon_sym_err_GT] = ACTIONS(2519), + [anon_sym_out_GT] = ACTIONS(2519), + [anon_sym_e_GT] = ACTIONS(2519), + [anon_sym_o_GT] = ACTIONS(2519), + [anon_sym_err_PLUSout_GT] = ACTIONS(2519), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2519), + [anon_sym_o_PLUSe_GT] = ACTIONS(2519), + [anon_sym_e_PLUSo_GT] = ACTIONS(2519), + [anon_sym_err_GT_GT] = ACTIONS(2517), + [anon_sym_out_GT_GT] = ACTIONS(2517), + [anon_sym_e_GT_GT] = ACTIONS(2517), + [anon_sym_o_GT_GT] = ACTIONS(2517), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2517), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2517), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2517), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2517), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(898)] = { + [sym_comment] = STATE(898), + [anon_sym_in] = ACTIONS(2521), + [sym__newline] = ACTIONS(2521), + [anon_sym_SEMI] = ACTIONS(2521), + [anon_sym_PIPE] = ACTIONS(2521), + [anon_sym_err_GT_PIPE] = ACTIONS(2521), + [anon_sym_out_GT_PIPE] = ACTIONS(2521), + [anon_sym_e_GT_PIPE] = ACTIONS(2521), + [anon_sym_o_GT_PIPE] = ACTIONS(2521), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2521), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2521), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2521), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2521), + [anon_sym_RPAREN] = ACTIONS(2521), + [anon_sym_GT2] = ACTIONS(2523), + [anon_sym_DASH2] = ACTIONS(2521), + [anon_sym_LBRACE] = ACTIONS(2521), + [anon_sym_RBRACE] = ACTIONS(2521), + [anon_sym_EQ_GT] = ACTIONS(2521), + [anon_sym_STAR2] = ACTIONS(2523), + [anon_sym_and2] = ACTIONS(2521), + [anon_sym_xor2] = ACTIONS(2521), + [anon_sym_or2] = ACTIONS(2521), + [anon_sym_not_DASHin2] = ACTIONS(2521), + [anon_sym_has2] = ACTIONS(2521), + [anon_sym_not_DASHhas2] = ACTIONS(2521), + [anon_sym_starts_DASHwith2] = ACTIONS(2521), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2521), + [anon_sym_ends_DASHwith2] = ACTIONS(2521), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2521), + [anon_sym_EQ_EQ2] = ACTIONS(2521), + [anon_sym_BANG_EQ2] = ACTIONS(2521), + [anon_sym_LT2] = ACTIONS(2523), + [anon_sym_LT_EQ2] = ACTIONS(2521), + [anon_sym_GT_EQ2] = ACTIONS(2521), + [anon_sym_EQ_TILDE2] = ACTIONS(2521), + [anon_sym_BANG_TILDE2] = ACTIONS(2521), + [anon_sym_like2] = ACTIONS(2521), + [anon_sym_not_DASHlike2] = ACTIONS(2521), + [anon_sym_STAR_STAR2] = ACTIONS(2521), + [anon_sym_PLUS_PLUS2] = ACTIONS(2521), + [anon_sym_SLASH2] = ACTIONS(2523), + [anon_sym_mod2] = ACTIONS(2521), + [anon_sym_SLASH_SLASH2] = ACTIONS(2521), + [anon_sym_PLUS2] = ACTIONS(2523), + [anon_sym_bit_DASHshl2] = ACTIONS(2521), + [anon_sym_bit_DASHshr2] = ACTIONS(2521), + [anon_sym_bit_DASHand2] = ACTIONS(2521), + [anon_sym_bit_DASHxor2] = ACTIONS(2521), + [anon_sym_bit_DASHor2] = ACTIONS(2521), + [anon_sym_err_GT] = ACTIONS(2523), + [anon_sym_out_GT] = ACTIONS(2523), + [anon_sym_e_GT] = ACTIONS(2523), + [anon_sym_o_GT] = ACTIONS(2523), + [anon_sym_err_PLUSout_GT] = ACTIONS(2523), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2523), + [anon_sym_o_PLUSe_GT] = ACTIONS(2523), + [anon_sym_e_PLUSo_GT] = ACTIONS(2523), + [anon_sym_err_GT_GT] = ACTIONS(2521), + [anon_sym_out_GT_GT] = ACTIONS(2521), + [anon_sym_e_GT_GT] = ACTIONS(2521), + [anon_sym_o_GT_GT] = ACTIONS(2521), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2521), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2521), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2521), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2521), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(899)] = { + [sym_comment] = STATE(899), + [anon_sym_in] = ACTIONS(2062), [sym__newline] = ACTIONS(2062), [anon_sym_SEMI] = ACTIONS(2062), [anon_sym_PIPE] = ACTIONS(2062), @@ -114488,8 +114799,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(896)] = { - [sym_comment] = STATE(896), + [STATE(900)] = { + [sym_comment] = STATE(900), + [ts_builtin_sym_end] = ACTIONS(1880), + [anon_sym_in] = ACTIONS(1880), + [sym__newline] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1880), + [anon_sym_err_GT_PIPE] = ACTIONS(1880), + [anon_sym_out_GT_PIPE] = ACTIONS(1880), + [anon_sym_e_GT_PIPE] = ACTIONS(1880), + [anon_sym_o_GT_PIPE] = ACTIONS(1880), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1880), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1880), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1880), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1880), + [anon_sym_GT2] = ACTIONS(1882), + [anon_sym_DASH2] = ACTIONS(1880), + [anon_sym_STAR2] = ACTIONS(1882), + [anon_sym_and2] = ACTIONS(1880), + [anon_sym_xor2] = ACTIONS(1880), + [anon_sym_or2] = ACTIONS(1880), + [anon_sym_not_DASHin2] = ACTIONS(1880), + [anon_sym_has2] = ACTIONS(1880), + [anon_sym_not_DASHhas2] = ACTIONS(1880), + [anon_sym_starts_DASHwith2] = ACTIONS(1880), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1880), + [anon_sym_ends_DASHwith2] = ACTIONS(1880), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1880), + [anon_sym_EQ_EQ2] = ACTIONS(1880), + [anon_sym_BANG_EQ2] = ACTIONS(1880), + [anon_sym_LT2] = ACTIONS(1882), + [anon_sym_LT_EQ2] = ACTIONS(1880), + [anon_sym_GT_EQ2] = ACTIONS(1880), + [anon_sym_EQ_TILDE2] = ACTIONS(1880), + [anon_sym_BANG_TILDE2] = ACTIONS(1880), + [anon_sym_like2] = ACTIONS(1880), + [anon_sym_not_DASHlike2] = ACTIONS(1880), + [anon_sym_STAR_STAR2] = ACTIONS(1880), + [anon_sym_PLUS_PLUS2] = ACTIONS(1880), + [anon_sym_SLASH2] = ACTIONS(1882), + [anon_sym_mod2] = ACTIONS(1880), + [anon_sym_SLASH_SLASH2] = ACTIONS(1880), + [anon_sym_PLUS2] = ACTIONS(1882), + [anon_sym_bit_DASHshl2] = ACTIONS(1880), + [anon_sym_bit_DASHshr2] = ACTIONS(1880), + [anon_sym_bit_DASHand2] = ACTIONS(1880), + [anon_sym_bit_DASHxor2] = ACTIONS(1880), + [anon_sym_bit_DASHor2] = ACTIONS(1880), + [anon_sym_DOT_DOT2] = ACTIONS(1882), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1880), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1880), + [anon_sym_err_GT] = ACTIONS(1882), + [anon_sym_out_GT] = ACTIONS(1882), + [anon_sym_e_GT] = ACTIONS(1882), + [anon_sym_o_GT] = ACTIONS(1882), + [anon_sym_err_PLUSout_GT] = ACTIONS(1882), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1882), + [anon_sym_o_PLUSe_GT] = ACTIONS(1882), + [anon_sym_e_PLUSo_GT] = ACTIONS(1882), + [anon_sym_err_GT_GT] = ACTIONS(1880), + [anon_sym_out_GT_GT] = ACTIONS(1880), + [anon_sym_e_GT_GT] = ACTIONS(1880), + [anon_sym_o_GT_GT] = ACTIONS(1880), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1880), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1880), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1880), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1880), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(901)] = { + [sym_comment] = STATE(901), [anon_sym_in] = ACTIONS(2062), [sym__newline] = ACTIONS(2062), [anon_sym_SEMI] = ACTIONS(2062), @@ -114557,8 +114937,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(897)] = { - [sym_comment] = STATE(897), + [STATE(902)] = { + [sym_comment] = STATE(902), + [anon_sym_in] = ACTIONS(2525), + [sym__newline] = ACTIONS(2525), + [anon_sym_SEMI] = ACTIONS(2525), + [anon_sym_PIPE] = ACTIONS(2525), + [anon_sym_err_GT_PIPE] = ACTIONS(2525), + [anon_sym_out_GT_PIPE] = ACTIONS(2525), + [anon_sym_e_GT_PIPE] = ACTIONS(2525), + [anon_sym_o_GT_PIPE] = ACTIONS(2525), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2525), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2525), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2525), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2525), + [anon_sym_RPAREN] = ACTIONS(2525), + [anon_sym_GT2] = ACTIONS(2527), + [anon_sym_DASH2] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2525), + [anon_sym_RBRACE] = ACTIONS(2525), + [anon_sym_EQ_GT] = ACTIONS(2525), + [anon_sym_STAR2] = ACTIONS(2527), + [anon_sym_and2] = ACTIONS(2525), + [anon_sym_xor2] = ACTIONS(2525), + [anon_sym_or2] = ACTIONS(2525), + [anon_sym_not_DASHin2] = ACTIONS(2525), + [anon_sym_has2] = ACTIONS(2525), + [anon_sym_not_DASHhas2] = ACTIONS(2525), + [anon_sym_starts_DASHwith2] = ACTIONS(2525), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2525), + [anon_sym_ends_DASHwith2] = ACTIONS(2525), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2525), + [anon_sym_EQ_EQ2] = ACTIONS(2525), + [anon_sym_BANG_EQ2] = ACTIONS(2525), + [anon_sym_LT2] = ACTIONS(2527), + [anon_sym_LT_EQ2] = ACTIONS(2525), + [anon_sym_GT_EQ2] = ACTIONS(2525), + [anon_sym_EQ_TILDE2] = ACTIONS(2525), + [anon_sym_BANG_TILDE2] = ACTIONS(2525), + [anon_sym_like2] = ACTIONS(2525), + [anon_sym_not_DASHlike2] = ACTIONS(2525), + [anon_sym_STAR_STAR2] = ACTIONS(2525), + [anon_sym_PLUS_PLUS2] = ACTIONS(2525), + [anon_sym_SLASH2] = ACTIONS(2527), + [anon_sym_mod2] = ACTIONS(2525), + [anon_sym_SLASH_SLASH2] = ACTIONS(2525), + [anon_sym_PLUS2] = ACTIONS(2527), + [anon_sym_bit_DASHshl2] = ACTIONS(2525), + [anon_sym_bit_DASHshr2] = ACTIONS(2525), + [anon_sym_bit_DASHand2] = ACTIONS(2525), + [anon_sym_bit_DASHxor2] = ACTIONS(2525), + [anon_sym_bit_DASHor2] = ACTIONS(2525), + [anon_sym_err_GT] = ACTIONS(2527), + [anon_sym_out_GT] = ACTIONS(2527), + [anon_sym_e_GT] = ACTIONS(2527), + [anon_sym_o_GT] = ACTIONS(2527), + [anon_sym_err_PLUSout_GT] = ACTIONS(2527), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2527), + [anon_sym_o_PLUSe_GT] = ACTIONS(2527), + [anon_sym_e_PLUSo_GT] = ACTIONS(2527), + [anon_sym_err_GT_GT] = ACTIONS(2525), + [anon_sym_out_GT_GT] = ACTIONS(2525), + [anon_sym_e_GT_GT] = ACTIONS(2525), + [anon_sym_o_GT_GT] = ACTIONS(2525), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2525), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2525), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2525), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2525), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(903)] = { + [sym_comment] = STATE(903), + [anon_sym_in] = ACTIONS(1738), + [sym__newline] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_err_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_GT_PIPE] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_RPAREN] = ACTIONS(1738), + [anon_sym_GT2] = ACTIONS(1740), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1738), + [anon_sym_STAR2] = ACTIONS(1740), + [anon_sym_and2] = ACTIONS(1738), + [anon_sym_xor2] = ACTIONS(1738), + [anon_sym_or2] = ACTIONS(1738), + [anon_sym_not_DASHin2] = ACTIONS(1738), + [anon_sym_has2] = ACTIONS(1738), + [anon_sym_not_DASHhas2] = ACTIONS(1738), + [anon_sym_starts_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), + [anon_sym_ends_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), + [anon_sym_EQ_EQ2] = ACTIONS(1738), + [anon_sym_BANG_EQ2] = ACTIONS(1738), + [anon_sym_LT2] = ACTIONS(1740), + [anon_sym_LT_EQ2] = ACTIONS(1738), + [anon_sym_GT_EQ2] = ACTIONS(1738), + [anon_sym_EQ_TILDE2] = ACTIONS(1738), + [anon_sym_BANG_TILDE2] = ACTIONS(1738), + [anon_sym_like2] = ACTIONS(1738), + [anon_sym_not_DASHlike2] = ACTIONS(1738), + [anon_sym_LPAREN2] = ACTIONS(1738), + [anon_sym_STAR_STAR2] = ACTIONS(1738), + [anon_sym_PLUS_PLUS2] = ACTIONS(1738), + [anon_sym_SLASH2] = ACTIONS(1740), + [anon_sym_mod2] = ACTIONS(1738), + [anon_sym_SLASH_SLASH2] = ACTIONS(1738), + [anon_sym_PLUS2] = ACTIONS(1740), + [anon_sym_bit_DASHshl2] = ACTIONS(1738), + [anon_sym_bit_DASHshr2] = ACTIONS(1738), + [anon_sym_bit_DASHand2] = ACTIONS(1738), + [anon_sym_bit_DASHxor2] = ACTIONS(1738), + [anon_sym_bit_DASHor2] = ACTIONS(1738), + [anon_sym_err_GT] = ACTIONS(1740), + [anon_sym_out_GT] = ACTIONS(1740), + [anon_sym_e_GT] = ACTIONS(1740), + [anon_sym_o_GT] = ACTIONS(1740), + [anon_sym_err_PLUSout_GT] = ACTIONS(1740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1740), + [anon_sym_o_PLUSe_GT] = ACTIONS(1740), + [anon_sym_e_PLUSo_GT] = ACTIONS(1740), + [anon_sym_err_GT_GT] = ACTIONS(1738), + [anon_sym_out_GT_GT] = ACTIONS(1738), + [anon_sym_e_GT_GT] = ACTIONS(1738), + [anon_sym_o_GT_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), + [sym__unquoted_pattern] = ACTIONS(1740), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(904)] = { + [sym_comment] = STATE(904), [anon_sym_in] = ACTIONS(2062), [sym__newline] = ACTIONS(2062), [anon_sym_SEMI] = ACTIONS(2062), @@ -114626,8 +115144,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(898)] = { - [sym_comment] = STATE(898), + [STATE(905)] = { + [sym_comment] = STATE(905), + [anon_sym_in] = ACTIONS(2529), + [sym__newline] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_PIPE] = ACTIONS(2529), + [anon_sym_err_GT_PIPE] = ACTIONS(2529), + [anon_sym_out_GT_PIPE] = ACTIONS(2529), + [anon_sym_e_GT_PIPE] = ACTIONS(2529), + [anon_sym_o_GT_PIPE] = ACTIONS(2529), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2529), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2529), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2529), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2529), + [anon_sym_RPAREN] = ACTIONS(2529), + [anon_sym_GT2] = ACTIONS(2531), + [anon_sym_DASH2] = ACTIONS(2529), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_EQ_GT] = ACTIONS(2529), + [anon_sym_STAR2] = ACTIONS(2531), + [anon_sym_and2] = ACTIONS(2529), + [anon_sym_xor2] = ACTIONS(2529), + [anon_sym_or2] = ACTIONS(2529), + [anon_sym_not_DASHin2] = ACTIONS(2529), + [anon_sym_has2] = ACTIONS(2529), + [anon_sym_not_DASHhas2] = ACTIONS(2529), + [anon_sym_starts_DASHwith2] = ACTIONS(2529), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2529), + [anon_sym_ends_DASHwith2] = ACTIONS(2529), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2529), + [anon_sym_EQ_EQ2] = ACTIONS(2529), + [anon_sym_BANG_EQ2] = ACTIONS(2529), + [anon_sym_LT2] = ACTIONS(2531), + [anon_sym_LT_EQ2] = ACTIONS(2529), + [anon_sym_GT_EQ2] = ACTIONS(2529), + [anon_sym_EQ_TILDE2] = ACTIONS(2529), + [anon_sym_BANG_TILDE2] = ACTIONS(2529), + [anon_sym_like2] = ACTIONS(2529), + [anon_sym_not_DASHlike2] = ACTIONS(2529), + [anon_sym_STAR_STAR2] = ACTIONS(2529), + [anon_sym_PLUS_PLUS2] = ACTIONS(2529), + [anon_sym_SLASH2] = ACTIONS(2531), + [anon_sym_mod2] = ACTIONS(2529), + [anon_sym_SLASH_SLASH2] = ACTIONS(2529), + [anon_sym_PLUS2] = ACTIONS(2531), + [anon_sym_bit_DASHshl2] = ACTIONS(2529), + [anon_sym_bit_DASHshr2] = ACTIONS(2529), + [anon_sym_bit_DASHand2] = ACTIONS(2529), + [anon_sym_bit_DASHxor2] = ACTIONS(2529), + [anon_sym_bit_DASHor2] = ACTIONS(2529), + [anon_sym_err_GT] = ACTIONS(2531), + [anon_sym_out_GT] = ACTIONS(2531), + [anon_sym_e_GT] = ACTIONS(2531), + [anon_sym_o_GT] = ACTIONS(2531), + [anon_sym_err_PLUSout_GT] = ACTIONS(2531), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2531), + [anon_sym_o_PLUSe_GT] = ACTIONS(2531), + [anon_sym_e_PLUSo_GT] = ACTIONS(2531), + [anon_sym_err_GT_GT] = ACTIONS(2529), + [anon_sym_out_GT_GT] = ACTIONS(2529), + [anon_sym_e_GT_GT] = ACTIONS(2529), + [anon_sym_o_GT_GT] = ACTIONS(2529), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2529), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2529), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2529), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2529), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(906)] = { + [sym_comment] = STATE(906), [anon_sym_in] = ACTIONS(2062), [sym__newline] = ACTIONS(2062), [anon_sym_SEMI] = ACTIONS(2062), @@ -114695,284 +115282,1043 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(899)] = { - [sym_comment] = STATE(899), - [anon_sym_in] = ACTIONS(2509), - [sym__newline] = ACTIONS(2509), - [anon_sym_SEMI] = ACTIONS(2509), - [anon_sym_PIPE] = ACTIONS(2509), - [anon_sym_err_GT_PIPE] = ACTIONS(2509), - [anon_sym_out_GT_PIPE] = ACTIONS(2509), - [anon_sym_e_GT_PIPE] = ACTIONS(2509), - [anon_sym_o_GT_PIPE] = ACTIONS(2509), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2509), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2509), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2509), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2509), - [anon_sym_RPAREN] = ACTIONS(2509), - [anon_sym_GT2] = ACTIONS(2511), - [anon_sym_DASH2] = ACTIONS(2509), - [anon_sym_RBRACE] = ACTIONS(2509), - [anon_sym_STAR2] = ACTIONS(2511), - [anon_sym_and2] = ACTIONS(2509), - [anon_sym_xor2] = ACTIONS(2509), - [anon_sym_or2] = ACTIONS(2509), - [anon_sym_not_DASHin2] = ACTIONS(2509), - [anon_sym_has2] = ACTIONS(2509), - [anon_sym_not_DASHhas2] = ACTIONS(2509), - [anon_sym_starts_DASHwith2] = ACTIONS(2509), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2509), - [anon_sym_ends_DASHwith2] = ACTIONS(2509), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2509), - [anon_sym_EQ_EQ2] = ACTIONS(2509), - [anon_sym_BANG_EQ2] = ACTIONS(2509), - [anon_sym_LT2] = ACTIONS(2511), - [anon_sym_LT_EQ2] = ACTIONS(2509), - [anon_sym_GT_EQ2] = ACTIONS(2509), - [anon_sym_EQ_TILDE2] = ACTIONS(2509), - [anon_sym_BANG_TILDE2] = ACTIONS(2509), - [anon_sym_like2] = ACTIONS(2509), - [anon_sym_not_DASHlike2] = ACTIONS(2509), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_STAR_STAR2] = ACTIONS(2509), - [anon_sym_PLUS_PLUS2] = ACTIONS(2509), - [anon_sym_SLASH2] = ACTIONS(2511), - [anon_sym_mod2] = ACTIONS(2509), - [anon_sym_SLASH_SLASH2] = ACTIONS(2509), - [anon_sym_PLUS2] = ACTIONS(2511), - [anon_sym_bit_DASHshl2] = ACTIONS(2509), - [anon_sym_bit_DASHshr2] = ACTIONS(2509), - [anon_sym_bit_DASHand2] = ACTIONS(2509), - [anon_sym_bit_DASHxor2] = ACTIONS(2509), - [anon_sym_bit_DASHor2] = ACTIONS(2509), - [anon_sym_err_GT] = ACTIONS(2511), - [anon_sym_out_GT] = ACTIONS(2511), - [anon_sym_e_GT] = ACTIONS(2511), - [anon_sym_o_GT] = ACTIONS(2511), - [anon_sym_err_PLUSout_GT] = ACTIONS(2511), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2511), - [anon_sym_o_PLUSe_GT] = ACTIONS(2511), - [anon_sym_e_PLUSo_GT] = ACTIONS(2511), - [anon_sym_err_GT_GT] = ACTIONS(2509), - [anon_sym_out_GT_GT] = ACTIONS(2509), - [anon_sym_e_GT_GT] = ACTIONS(2509), - [anon_sym_o_GT_GT] = ACTIONS(2509), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2509), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2509), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2509), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2509), - [sym__unquoted_pattern] = ACTIONS(1641), + [STATE(907)] = { + [sym_comment] = STATE(907), + [anon_sym_in] = ACTIONS(2533), + [sym__newline] = ACTIONS(2533), + [anon_sym_SEMI] = ACTIONS(2533), + [anon_sym_PIPE] = ACTIONS(2533), + [anon_sym_err_GT_PIPE] = ACTIONS(2533), + [anon_sym_out_GT_PIPE] = ACTIONS(2533), + [anon_sym_e_GT_PIPE] = ACTIONS(2533), + [anon_sym_o_GT_PIPE] = ACTIONS(2533), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), + [anon_sym_RPAREN] = ACTIONS(2533), + [anon_sym_GT2] = ACTIONS(2535), + [anon_sym_DASH2] = ACTIONS(2533), + [anon_sym_RBRACE] = ACTIONS(2533), + [anon_sym_STAR2] = ACTIONS(2535), + [anon_sym_and2] = ACTIONS(2533), + [anon_sym_xor2] = ACTIONS(2533), + [anon_sym_or2] = ACTIONS(2533), + [anon_sym_not_DASHin2] = ACTIONS(2533), + [anon_sym_has2] = ACTIONS(2533), + [anon_sym_not_DASHhas2] = ACTIONS(2533), + [anon_sym_starts_DASHwith2] = ACTIONS(2533), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), + [anon_sym_ends_DASHwith2] = ACTIONS(2533), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), + [anon_sym_EQ_EQ2] = ACTIONS(2533), + [anon_sym_BANG_EQ2] = ACTIONS(2533), + [anon_sym_LT2] = ACTIONS(2535), + [anon_sym_LT_EQ2] = ACTIONS(2533), + [anon_sym_GT_EQ2] = ACTIONS(2533), + [anon_sym_EQ_TILDE2] = ACTIONS(2533), + [anon_sym_BANG_TILDE2] = ACTIONS(2533), + [anon_sym_like2] = ACTIONS(2533), + [anon_sym_not_DASHlike2] = ACTIONS(2533), + [anon_sym_LPAREN2] = ACTIONS(2015), + [anon_sym_STAR_STAR2] = ACTIONS(2533), + [anon_sym_PLUS_PLUS2] = ACTIONS(2533), + [anon_sym_SLASH2] = ACTIONS(2535), + [anon_sym_mod2] = ACTIONS(2533), + [anon_sym_SLASH_SLASH2] = ACTIONS(2533), + [anon_sym_PLUS2] = ACTIONS(2535), + [anon_sym_bit_DASHshl2] = ACTIONS(2533), + [anon_sym_bit_DASHshr2] = ACTIONS(2533), + [anon_sym_bit_DASHand2] = ACTIONS(2533), + [anon_sym_bit_DASHxor2] = ACTIONS(2533), + [anon_sym_bit_DASHor2] = ACTIONS(2533), + [anon_sym_err_GT] = ACTIONS(2535), + [anon_sym_out_GT] = ACTIONS(2535), + [anon_sym_e_GT] = ACTIONS(2535), + [anon_sym_o_GT] = ACTIONS(2535), + [anon_sym_err_PLUSout_GT] = ACTIONS(2535), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), + [anon_sym_o_PLUSe_GT] = ACTIONS(2535), + [anon_sym_e_PLUSo_GT] = ACTIONS(2535), + [anon_sym_err_GT_GT] = ACTIONS(2533), + [anon_sym_out_GT_GT] = ACTIONS(2533), + [anon_sym_e_GT_GT] = ACTIONS(2533), + [anon_sym_o_GT_GT] = ACTIONS(2533), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [sym__unquoted_pattern] = ACTIONS(2021), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(900)] = { - [sym_comment] = STATE(900), - [anon_sym_in] = ACTIONS(2515), - [sym__newline] = ACTIONS(2515), - [anon_sym_SEMI] = ACTIONS(2515), - [anon_sym_PIPE] = ACTIONS(2515), - [anon_sym_err_GT_PIPE] = ACTIONS(2515), - [anon_sym_out_GT_PIPE] = ACTIONS(2515), - [anon_sym_e_GT_PIPE] = ACTIONS(2515), - [anon_sym_o_GT_PIPE] = ACTIONS(2515), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2515), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2515), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2515), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2515), - [anon_sym_RPAREN] = ACTIONS(2515), - [anon_sym_GT2] = ACTIONS(2517), - [anon_sym_DASH2] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2515), - [anon_sym_RBRACE] = ACTIONS(2515), - [anon_sym_EQ_GT] = ACTIONS(2515), - [anon_sym_STAR2] = ACTIONS(2517), - [anon_sym_and2] = ACTIONS(2515), - [anon_sym_xor2] = ACTIONS(2515), - [anon_sym_or2] = ACTIONS(2515), - [anon_sym_not_DASHin2] = ACTIONS(2515), - [anon_sym_has2] = ACTIONS(2515), - [anon_sym_not_DASHhas2] = ACTIONS(2515), - [anon_sym_starts_DASHwith2] = ACTIONS(2515), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2515), - [anon_sym_ends_DASHwith2] = ACTIONS(2515), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2515), - [anon_sym_EQ_EQ2] = ACTIONS(2515), - [anon_sym_BANG_EQ2] = ACTIONS(2515), - [anon_sym_LT2] = ACTIONS(2517), - [anon_sym_LT_EQ2] = ACTIONS(2515), - [anon_sym_GT_EQ2] = ACTIONS(2515), - [anon_sym_EQ_TILDE2] = ACTIONS(2515), - [anon_sym_BANG_TILDE2] = ACTIONS(2515), - [anon_sym_like2] = ACTIONS(2515), - [anon_sym_not_DASHlike2] = ACTIONS(2515), - [anon_sym_STAR_STAR2] = ACTIONS(2515), - [anon_sym_PLUS_PLUS2] = ACTIONS(2515), - [anon_sym_SLASH2] = ACTIONS(2517), - [anon_sym_mod2] = ACTIONS(2515), - [anon_sym_SLASH_SLASH2] = ACTIONS(2515), - [anon_sym_PLUS2] = ACTIONS(2517), - [anon_sym_bit_DASHshl2] = ACTIONS(2515), - [anon_sym_bit_DASHshr2] = ACTIONS(2515), - [anon_sym_bit_DASHand2] = ACTIONS(2515), - [anon_sym_bit_DASHxor2] = ACTIONS(2515), - [anon_sym_bit_DASHor2] = ACTIONS(2515), - [anon_sym_err_GT] = ACTIONS(2517), - [anon_sym_out_GT] = ACTIONS(2517), - [anon_sym_e_GT] = ACTIONS(2517), - [anon_sym_o_GT] = ACTIONS(2517), - [anon_sym_err_PLUSout_GT] = ACTIONS(2517), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2517), - [anon_sym_o_PLUSe_GT] = ACTIONS(2517), - [anon_sym_e_PLUSo_GT] = ACTIONS(2517), - [anon_sym_err_GT_GT] = ACTIONS(2515), - [anon_sym_out_GT_GT] = ACTIONS(2515), - [anon_sym_e_GT_GT] = ACTIONS(2515), - [anon_sym_o_GT_GT] = ACTIONS(2515), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2515), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2515), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2515), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2515), + [STATE(908)] = { + [sym_comment] = STATE(908), + [ts_builtin_sym_end] = ACTIONS(2066), + [anon_sym_in] = 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_GT2] = ACTIONS(2068), + [anon_sym_DASH2] = ACTIONS(2066), + [anon_sym_STAR2] = ACTIONS(2068), + [anon_sym_and2] = ACTIONS(2066), + [anon_sym_xor2] = ACTIONS(2066), + [anon_sym_or2] = ACTIONS(2066), + [anon_sym_not_DASHin2] = ACTIONS(2066), + [anon_sym_has2] = ACTIONS(2066), + [anon_sym_not_DASHhas2] = ACTIONS(2066), + [anon_sym_starts_DASHwith2] = ACTIONS(2066), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2066), + [anon_sym_ends_DASHwith2] = ACTIONS(2066), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2066), + [anon_sym_EQ_EQ2] = ACTIONS(2066), + [anon_sym_BANG_EQ2] = ACTIONS(2066), + [anon_sym_LT2] = ACTIONS(2068), + [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_like2] = ACTIONS(2066), + [anon_sym_not_DASHlike2] = ACTIONS(2066), + [anon_sym_STAR_STAR2] = ACTIONS(2066), + [anon_sym_PLUS_PLUS2] = ACTIONS(2066), + [anon_sym_SLASH2] = ACTIONS(2068), + [anon_sym_mod2] = ACTIONS(2066), + [anon_sym_SLASH_SLASH2] = ACTIONS(2066), + [anon_sym_PLUS2] = ACTIONS(2068), + [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_DOT2] = ACTIONS(2537), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2539), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2539), + [anon_sym_err_GT] = ACTIONS(2068), + [anon_sym_out_GT] = ACTIONS(2068), + [anon_sym_e_GT] = ACTIONS(2068), + [anon_sym_o_GT] = ACTIONS(2068), + [anon_sym_err_PLUSout_GT] = ACTIONS(2068), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2068), + [anon_sym_o_PLUSe_GT] = ACTIONS(2068), + [anon_sym_e_PLUSo_GT] = ACTIONS(2068), + [anon_sym_err_GT_GT] = ACTIONS(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(3), + }, + [STATE(909)] = { + [sym_comment] = STATE(909), + [ts_builtin_sym_end] = ACTIONS(2074), + [anon_sym_in] = ACTIONS(2074), + [sym__newline] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_PIPE] = ACTIONS(2074), + [anon_sym_err_GT_PIPE] = ACTIONS(2074), + [anon_sym_out_GT_PIPE] = ACTIONS(2074), + [anon_sym_e_GT_PIPE] = ACTIONS(2074), + [anon_sym_o_GT_PIPE] = ACTIONS(2074), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2074), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2074), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2074), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2074), + [anon_sym_GT2] = ACTIONS(2076), + [anon_sym_DASH2] = ACTIONS(2074), + [anon_sym_STAR2] = ACTIONS(2076), + [anon_sym_and2] = ACTIONS(2074), + [anon_sym_xor2] = ACTIONS(2074), + [anon_sym_or2] = ACTIONS(2074), + [anon_sym_not_DASHin2] = ACTIONS(2074), + [anon_sym_has2] = ACTIONS(2074), + [anon_sym_not_DASHhas2] = ACTIONS(2074), + [anon_sym_starts_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2074), + [anon_sym_ends_DASHwith2] = ACTIONS(2074), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2074), + [anon_sym_EQ_EQ2] = ACTIONS(2074), + [anon_sym_BANG_EQ2] = ACTIONS(2074), + [anon_sym_LT2] = ACTIONS(2076), + [anon_sym_LT_EQ2] = ACTIONS(2074), + [anon_sym_GT_EQ2] = ACTIONS(2074), + [anon_sym_EQ_TILDE2] = ACTIONS(2074), + [anon_sym_BANG_TILDE2] = ACTIONS(2074), + [anon_sym_like2] = ACTIONS(2074), + [anon_sym_not_DASHlike2] = ACTIONS(2074), + [anon_sym_STAR_STAR2] = ACTIONS(2074), + [anon_sym_PLUS_PLUS2] = ACTIONS(2074), + [anon_sym_SLASH2] = ACTIONS(2076), + [anon_sym_mod2] = ACTIONS(2074), + [anon_sym_SLASH_SLASH2] = ACTIONS(2074), + [anon_sym_PLUS2] = ACTIONS(2076), + [anon_sym_bit_DASHshl2] = ACTIONS(2074), + [anon_sym_bit_DASHshr2] = ACTIONS(2074), + [anon_sym_bit_DASHand2] = ACTIONS(2074), + [anon_sym_bit_DASHxor2] = ACTIONS(2074), + [anon_sym_bit_DASHor2] = ACTIONS(2074), + [anon_sym_DOT_DOT2] = ACTIONS(2541), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2543), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2543), + [anon_sym_err_GT] = ACTIONS(2076), + [anon_sym_out_GT] = ACTIONS(2076), + [anon_sym_e_GT] = ACTIONS(2076), + [anon_sym_o_GT] = ACTIONS(2076), + [anon_sym_err_PLUSout_GT] = ACTIONS(2076), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2076), + [anon_sym_o_PLUSe_GT] = ACTIONS(2076), + [anon_sym_e_PLUSo_GT] = ACTIONS(2076), + [anon_sym_err_GT_GT] = ACTIONS(2074), + [anon_sym_out_GT_GT] = ACTIONS(2074), + [anon_sym_e_GT_GT] = ACTIONS(2074), + [anon_sym_o_GT_GT] = ACTIONS(2074), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2074), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2074), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2074), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2074), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(910)] = { + [sym_comment] = STATE(910), + [anon_sym_in] = ACTIONS(2545), + [sym__newline] = ACTIONS(2545), + [anon_sym_SEMI] = ACTIONS(2545), + [anon_sym_PIPE] = ACTIONS(2545), + [anon_sym_err_GT_PIPE] = ACTIONS(2545), + [anon_sym_out_GT_PIPE] = ACTIONS(2545), + [anon_sym_e_GT_PIPE] = ACTIONS(2545), + [anon_sym_o_GT_PIPE] = ACTIONS(2545), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2545), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2545), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2545), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2545), + [anon_sym_RPAREN] = ACTIONS(2545), + [anon_sym_GT2] = ACTIONS(2547), + [anon_sym_DASH2] = ACTIONS(2545), + [anon_sym_LBRACE] = ACTIONS(2545), + [anon_sym_RBRACE] = ACTIONS(2545), + [anon_sym_EQ_GT] = ACTIONS(2545), + [anon_sym_STAR2] = ACTIONS(2547), + [anon_sym_and2] = ACTIONS(2545), + [anon_sym_xor2] = ACTIONS(2545), + [anon_sym_or2] = ACTIONS(2545), + [anon_sym_not_DASHin2] = ACTIONS(2545), + [anon_sym_has2] = ACTIONS(2545), + [anon_sym_not_DASHhas2] = ACTIONS(2545), + [anon_sym_starts_DASHwith2] = ACTIONS(2545), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2545), + [anon_sym_ends_DASHwith2] = ACTIONS(2545), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2545), + [anon_sym_EQ_EQ2] = ACTIONS(2545), + [anon_sym_BANG_EQ2] = ACTIONS(2545), + [anon_sym_LT2] = ACTIONS(2547), + [anon_sym_LT_EQ2] = ACTIONS(2545), + [anon_sym_GT_EQ2] = ACTIONS(2545), + [anon_sym_EQ_TILDE2] = ACTIONS(2545), + [anon_sym_BANG_TILDE2] = ACTIONS(2545), + [anon_sym_like2] = ACTIONS(2545), + [anon_sym_not_DASHlike2] = ACTIONS(2545), + [anon_sym_STAR_STAR2] = ACTIONS(2545), + [anon_sym_PLUS_PLUS2] = ACTIONS(2545), + [anon_sym_SLASH2] = ACTIONS(2547), + [anon_sym_mod2] = ACTIONS(2545), + [anon_sym_SLASH_SLASH2] = ACTIONS(2545), + [anon_sym_PLUS2] = ACTIONS(2547), + [anon_sym_bit_DASHshl2] = ACTIONS(2545), + [anon_sym_bit_DASHshr2] = ACTIONS(2545), + [anon_sym_bit_DASHand2] = ACTIONS(2545), + [anon_sym_bit_DASHxor2] = ACTIONS(2545), + [anon_sym_bit_DASHor2] = ACTIONS(2545), + [anon_sym_err_GT] = ACTIONS(2547), + [anon_sym_out_GT] = ACTIONS(2547), + [anon_sym_e_GT] = ACTIONS(2547), + [anon_sym_o_GT] = ACTIONS(2547), + [anon_sym_err_PLUSout_GT] = ACTIONS(2547), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2547), + [anon_sym_o_PLUSe_GT] = ACTIONS(2547), + [anon_sym_e_PLUSo_GT] = ACTIONS(2547), + [anon_sym_err_GT_GT] = ACTIONS(2545), + [anon_sym_out_GT_GT] = ACTIONS(2545), + [anon_sym_e_GT_GT] = ACTIONS(2545), + [anon_sym_o_GT_GT] = ACTIONS(2545), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2545), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2545), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2545), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2545), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(911)] = { + [sym_comment] = STATE(911), + [ts_builtin_sym_end] = ACTIONS(2082), + [anon_sym_in] = ACTIONS(2082), + [sym__newline] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_err_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_GT_PIPE] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2082), + [anon_sym_GT2] = ACTIONS(2084), + [anon_sym_DASH2] = ACTIONS(2082), + [anon_sym_STAR2] = ACTIONS(2084), + [anon_sym_and2] = ACTIONS(2082), + [anon_sym_xor2] = ACTIONS(2082), + [anon_sym_or2] = ACTIONS(2082), + [anon_sym_not_DASHin2] = ACTIONS(2082), + [anon_sym_has2] = ACTIONS(2082), + [anon_sym_not_DASHhas2] = ACTIONS(2082), + [anon_sym_starts_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2082), + [anon_sym_ends_DASHwith2] = ACTIONS(2082), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2082), + [anon_sym_EQ_EQ2] = ACTIONS(2082), + [anon_sym_BANG_EQ2] = ACTIONS(2082), + [anon_sym_LT2] = ACTIONS(2084), + [anon_sym_LT_EQ2] = ACTIONS(2082), + [anon_sym_GT_EQ2] = ACTIONS(2082), + [anon_sym_EQ_TILDE2] = ACTIONS(2082), + [anon_sym_BANG_TILDE2] = ACTIONS(2082), + [anon_sym_like2] = ACTIONS(2082), + [anon_sym_not_DASHlike2] = ACTIONS(2082), + [anon_sym_STAR_STAR2] = ACTIONS(2082), + [anon_sym_PLUS_PLUS2] = ACTIONS(2082), + [anon_sym_SLASH2] = ACTIONS(2084), + [anon_sym_mod2] = ACTIONS(2082), + [anon_sym_SLASH_SLASH2] = ACTIONS(2082), + [anon_sym_PLUS2] = ACTIONS(2084), + [anon_sym_bit_DASHshl2] = ACTIONS(2082), + [anon_sym_bit_DASHshr2] = ACTIONS(2082), + [anon_sym_bit_DASHand2] = ACTIONS(2082), + [anon_sym_bit_DASHxor2] = ACTIONS(2082), + [anon_sym_bit_DASHor2] = ACTIONS(2082), + [anon_sym_DOT_DOT2] = ACTIONS(2549), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2551), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2551), + [anon_sym_err_GT] = ACTIONS(2084), + [anon_sym_out_GT] = ACTIONS(2084), + [anon_sym_e_GT] = ACTIONS(2084), + [anon_sym_o_GT] = ACTIONS(2084), + [anon_sym_err_PLUSout_GT] = ACTIONS(2084), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2084), + [anon_sym_o_PLUSe_GT] = ACTIONS(2084), + [anon_sym_e_PLUSo_GT] = ACTIONS(2084), + [anon_sym_err_GT_GT] = ACTIONS(2082), + [anon_sym_out_GT_GT] = ACTIONS(2082), + [anon_sym_e_GT_GT] = ACTIONS(2082), + [anon_sym_o_GT_GT] = ACTIONS(2082), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2082), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2082), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2082), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2082), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(912)] = { + [sym_comment] = STATE(912), + [ts_builtin_sym_end] = ACTIONS(2011), + [anon_sym_in] = ACTIONS(2011), + [sym__newline] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_err_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_GT_PIPE] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), + [anon_sym_GT2] = ACTIONS(2013), + [anon_sym_DASH2] = ACTIONS(2011), + [anon_sym_STAR2] = ACTIONS(2013), + [anon_sym_and2] = ACTIONS(2011), + [anon_sym_xor2] = ACTIONS(2011), + [anon_sym_or2] = ACTIONS(2011), + [anon_sym_not_DASHin2] = ACTIONS(2011), + [anon_sym_has2] = ACTIONS(2011), + [anon_sym_not_DASHhas2] = ACTIONS(2011), + [anon_sym_starts_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2011), + [anon_sym_ends_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2011), + [anon_sym_EQ_EQ2] = ACTIONS(2011), + [anon_sym_BANG_EQ2] = ACTIONS(2011), + [anon_sym_LT2] = ACTIONS(2013), + [anon_sym_LT_EQ2] = ACTIONS(2011), + [anon_sym_GT_EQ2] = ACTIONS(2011), + [anon_sym_EQ_TILDE2] = ACTIONS(2011), + [anon_sym_BANG_TILDE2] = ACTIONS(2011), + [anon_sym_like2] = ACTIONS(2011), + [anon_sym_not_DASHlike2] = ACTIONS(2011), + [anon_sym_STAR_STAR2] = ACTIONS(2011), + [anon_sym_PLUS_PLUS2] = ACTIONS(2011), + [anon_sym_SLASH2] = ACTIONS(2013), + [anon_sym_mod2] = ACTIONS(2011), + [anon_sym_SLASH_SLASH2] = ACTIONS(2011), + [anon_sym_PLUS2] = ACTIONS(2013), + [anon_sym_bit_DASHshl2] = ACTIONS(2011), + [anon_sym_bit_DASHshr2] = ACTIONS(2011), + [anon_sym_bit_DASHand2] = ACTIONS(2011), + [anon_sym_bit_DASHxor2] = ACTIONS(2011), + [anon_sym_bit_DASHor2] = ACTIONS(2011), + [anon_sym_DOT_DOT2] = ACTIONS(2553), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2555), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2555), + [anon_sym_err_GT] = ACTIONS(2013), + [anon_sym_out_GT] = ACTIONS(2013), + [anon_sym_e_GT] = ACTIONS(2013), + [anon_sym_o_GT] = ACTIONS(2013), + [anon_sym_err_PLUSout_GT] = ACTIONS(2013), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2013), + [anon_sym_o_PLUSe_GT] = ACTIONS(2013), + [anon_sym_e_PLUSo_GT] = ACTIONS(2013), + [anon_sym_err_GT_GT] = ACTIONS(2011), + [anon_sym_out_GT_GT] = ACTIONS(2011), + [anon_sym_e_GT_GT] = ACTIONS(2011), + [anon_sym_o_GT_GT] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(913)] = { + [sym_comment] = STATE(913), + [anon_sym_in] = ACTIONS(2001), + [sym__newline] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_err_GT_PIPE] = ACTIONS(2001), + [anon_sym_out_GT_PIPE] = ACTIONS(2001), + [anon_sym_e_GT_PIPE] = ACTIONS(2001), + [anon_sym_o_GT_PIPE] = ACTIONS(2001), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2001), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2001), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2001), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(2001), + [anon_sym_GT2] = ACTIONS(2003), + [anon_sym_DASH2] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2001), + [anon_sym_EQ_GT] = ACTIONS(2001), + [anon_sym_STAR2] = ACTIONS(2003), + [anon_sym_and2] = ACTIONS(2001), + [anon_sym_xor2] = ACTIONS(2001), + [anon_sym_or2] = ACTIONS(2001), + [anon_sym_not_DASHin2] = ACTIONS(2001), + [anon_sym_has2] = ACTIONS(2001), + [anon_sym_not_DASHhas2] = ACTIONS(2001), + [anon_sym_starts_DASHwith2] = ACTIONS(2001), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2001), + [anon_sym_ends_DASHwith2] = ACTIONS(2001), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2001), + [anon_sym_EQ_EQ2] = ACTIONS(2001), + [anon_sym_BANG_EQ2] = ACTIONS(2001), + [anon_sym_LT2] = ACTIONS(2003), + [anon_sym_LT_EQ2] = ACTIONS(2001), + [anon_sym_GT_EQ2] = ACTIONS(2001), + [anon_sym_EQ_TILDE2] = ACTIONS(2001), + [anon_sym_BANG_TILDE2] = ACTIONS(2001), + [anon_sym_like2] = ACTIONS(2001), + [anon_sym_not_DASHlike2] = ACTIONS(2001), + [anon_sym_STAR_STAR2] = ACTIONS(2001), + [anon_sym_PLUS_PLUS2] = ACTIONS(2001), + [anon_sym_SLASH2] = ACTIONS(2003), + [anon_sym_mod2] = ACTIONS(2001), + [anon_sym_SLASH_SLASH2] = ACTIONS(2001), + [anon_sym_PLUS2] = ACTIONS(2003), + [anon_sym_bit_DASHshl2] = ACTIONS(2001), + [anon_sym_bit_DASHshr2] = ACTIONS(2001), + [anon_sym_bit_DASHand2] = ACTIONS(2001), + [anon_sym_bit_DASHxor2] = ACTIONS(2001), + [anon_sym_bit_DASHor2] = ACTIONS(2001), + [anon_sym_err_GT] = ACTIONS(2003), + [anon_sym_out_GT] = ACTIONS(2003), + [anon_sym_e_GT] = ACTIONS(2003), + [anon_sym_o_GT] = ACTIONS(2003), + [anon_sym_err_PLUSout_GT] = ACTIONS(2003), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2003), + [anon_sym_o_PLUSe_GT] = ACTIONS(2003), + [anon_sym_e_PLUSo_GT] = ACTIONS(2003), + [anon_sym_err_GT_GT] = ACTIONS(2001), + [anon_sym_out_GT_GT] = ACTIONS(2001), + [anon_sym_e_GT_GT] = ACTIONS(2001), + [anon_sym_o_GT_GT] = ACTIONS(2001), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2001), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2001), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2001), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2001), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(914)] = { + [sym_comment] = STATE(914), + [anon_sym_in] = ACTIONS(1816), + [sym__newline] = ACTIONS(1816), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_PIPE] = ACTIONS(1816), + [anon_sym_err_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_GT_PIPE] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1816), + [anon_sym_RPAREN] = ACTIONS(1816), + [anon_sym_GT2] = ACTIONS(1818), + [anon_sym_DASH2] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_STAR2] = ACTIONS(1818), + [anon_sym_and2] = ACTIONS(1816), + [anon_sym_xor2] = ACTIONS(1816), + [anon_sym_or2] = ACTIONS(1816), + [anon_sym_not_DASHin2] = ACTIONS(1816), + [anon_sym_has2] = ACTIONS(1816), + [anon_sym_not_DASHhas2] = ACTIONS(1816), + [anon_sym_starts_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1816), + [anon_sym_ends_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1816), + [anon_sym_EQ_EQ2] = ACTIONS(1816), + [anon_sym_BANG_EQ2] = ACTIONS(1816), + [anon_sym_LT2] = ACTIONS(1818), + [anon_sym_LT_EQ2] = ACTIONS(1816), + [anon_sym_GT_EQ2] = ACTIONS(1816), + [anon_sym_EQ_TILDE2] = ACTIONS(1816), + [anon_sym_BANG_TILDE2] = ACTIONS(1816), + [anon_sym_like2] = ACTIONS(1816), + [anon_sym_not_DASHlike2] = ACTIONS(1816), + [anon_sym_LPAREN2] = ACTIONS(1816), + [anon_sym_STAR_STAR2] = ACTIONS(1816), + [anon_sym_PLUS_PLUS2] = ACTIONS(1816), + [anon_sym_SLASH2] = ACTIONS(1818), + [anon_sym_mod2] = ACTIONS(1816), + [anon_sym_SLASH_SLASH2] = ACTIONS(1816), + [anon_sym_PLUS2] = ACTIONS(1818), + [anon_sym_bit_DASHshl2] = ACTIONS(1816), + [anon_sym_bit_DASHshr2] = ACTIONS(1816), + [anon_sym_bit_DASHand2] = ACTIONS(1816), + [anon_sym_bit_DASHxor2] = ACTIONS(1816), + [anon_sym_bit_DASHor2] = ACTIONS(1816), + [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(1816), + [anon_sym_out_GT_GT] = ACTIONS(1816), + [anon_sym_e_GT_GT] = ACTIONS(1816), + [anon_sym_o_GT_GT] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1816), + [sym__unquoted_pattern] = ACTIONS(1818), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(915)] = { + [sym_comment] = STATE(915), + [anon_sym_in] = ACTIONS(1854), + [sym__newline] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1854), + [anon_sym_PIPE] = ACTIONS(1854), + [anon_sym_err_GT_PIPE] = ACTIONS(1854), + [anon_sym_out_GT_PIPE] = ACTIONS(1854), + [anon_sym_e_GT_PIPE] = ACTIONS(1854), + [anon_sym_o_GT_PIPE] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1854), + [anon_sym_RPAREN] = ACTIONS(1854), + [anon_sym_GT2] = ACTIONS(1856), + [anon_sym_DASH2] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(1854), + [anon_sym_STAR2] = ACTIONS(1856), + [anon_sym_and2] = ACTIONS(1854), + [anon_sym_xor2] = ACTIONS(1854), + [anon_sym_or2] = ACTIONS(1854), + [anon_sym_not_DASHin2] = ACTIONS(1854), + [anon_sym_has2] = ACTIONS(1854), + [anon_sym_not_DASHhas2] = ACTIONS(1854), + [anon_sym_starts_DASHwith2] = ACTIONS(1854), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1854), + [anon_sym_ends_DASHwith2] = ACTIONS(1854), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1854), + [anon_sym_EQ_EQ2] = ACTIONS(1854), + [anon_sym_BANG_EQ2] = ACTIONS(1854), + [anon_sym_LT2] = ACTIONS(1856), + [anon_sym_LT_EQ2] = ACTIONS(1854), + [anon_sym_GT_EQ2] = ACTIONS(1854), + [anon_sym_EQ_TILDE2] = ACTIONS(1854), + [anon_sym_BANG_TILDE2] = ACTIONS(1854), + [anon_sym_like2] = ACTIONS(1854), + [anon_sym_not_DASHlike2] = ACTIONS(1854), + [anon_sym_LPAREN2] = ACTIONS(1854), + [anon_sym_STAR_STAR2] = ACTIONS(1854), + [anon_sym_PLUS_PLUS2] = ACTIONS(1854), + [anon_sym_SLASH2] = ACTIONS(1856), + [anon_sym_mod2] = ACTIONS(1854), + [anon_sym_SLASH_SLASH2] = ACTIONS(1854), + [anon_sym_PLUS2] = ACTIONS(1856), + [anon_sym_bit_DASHshl2] = ACTIONS(1854), + [anon_sym_bit_DASHshr2] = ACTIONS(1854), + [anon_sym_bit_DASHand2] = ACTIONS(1854), + [anon_sym_bit_DASHxor2] = ACTIONS(1854), + [anon_sym_bit_DASHor2] = ACTIONS(1854), + [anon_sym_err_GT] = ACTIONS(1856), + [anon_sym_out_GT] = ACTIONS(1856), + [anon_sym_e_GT] = ACTIONS(1856), + [anon_sym_o_GT] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT] = ACTIONS(1856), + [anon_sym_err_GT_GT] = ACTIONS(1854), + [anon_sym_out_GT_GT] = ACTIONS(1854), + [anon_sym_e_GT_GT] = ACTIONS(1854), + [anon_sym_o_GT_GT] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1854), + [sym__unquoted_pattern] = ACTIONS(1856), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(916)] = { + [sym_comment] = STATE(916), + [anon_sym_in] = ACTIONS(2557), + [sym__newline] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_PIPE] = ACTIONS(2557), + [anon_sym_err_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_GT_PIPE] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2557), + [anon_sym_RPAREN] = ACTIONS(2557), + [anon_sym_GT2] = ACTIONS(2559), + [anon_sym_DASH2] = ACTIONS(2557), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_RBRACE] = ACTIONS(2557), + [anon_sym_EQ_GT] = ACTIONS(2557), + [anon_sym_STAR2] = ACTIONS(2559), + [anon_sym_and2] = ACTIONS(2557), + [anon_sym_xor2] = ACTIONS(2557), + [anon_sym_or2] = ACTIONS(2557), + [anon_sym_not_DASHin2] = ACTIONS(2557), + [anon_sym_has2] = ACTIONS(2557), + [anon_sym_not_DASHhas2] = ACTIONS(2557), + [anon_sym_starts_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2557), + [anon_sym_ends_DASHwith2] = ACTIONS(2557), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2557), + [anon_sym_EQ_EQ2] = ACTIONS(2557), + [anon_sym_BANG_EQ2] = ACTIONS(2557), + [anon_sym_LT2] = ACTIONS(2559), + [anon_sym_LT_EQ2] = ACTIONS(2557), + [anon_sym_GT_EQ2] = ACTIONS(2557), + [anon_sym_EQ_TILDE2] = ACTIONS(2557), + [anon_sym_BANG_TILDE2] = ACTIONS(2557), + [anon_sym_like2] = ACTIONS(2557), + [anon_sym_not_DASHlike2] = ACTIONS(2557), + [anon_sym_STAR_STAR2] = ACTIONS(2557), + [anon_sym_PLUS_PLUS2] = ACTIONS(2557), + [anon_sym_SLASH2] = ACTIONS(2559), + [anon_sym_mod2] = ACTIONS(2557), + [anon_sym_SLASH_SLASH2] = ACTIONS(2557), + [anon_sym_PLUS2] = ACTIONS(2559), + [anon_sym_bit_DASHshl2] = ACTIONS(2557), + [anon_sym_bit_DASHshr2] = ACTIONS(2557), + [anon_sym_bit_DASHand2] = ACTIONS(2557), + [anon_sym_bit_DASHxor2] = ACTIONS(2557), + [anon_sym_bit_DASHor2] = ACTIONS(2557), + [anon_sym_err_GT] = ACTIONS(2559), + [anon_sym_out_GT] = ACTIONS(2559), + [anon_sym_e_GT] = ACTIONS(2559), + [anon_sym_o_GT] = ACTIONS(2559), + [anon_sym_err_PLUSout_GT] = ACTIONS(2559), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2559), + [anon_sym_o_PLUSe_GT] = ACTIONS(2559), + [anon_sym_e_PLUSo_GT] = ACTIONS(2559), + [anon_sym_err_GT_GT] = ACTIONS(2557), + [anon_sym_out_GT_GT] = ACTIONS(2557), + [anon_sym_e_GT_GT] = ACTIONS(2557), + [anon_sym_o_GT_GT] = ACTIONS(2557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(917)] = { + [aux_sym__repeat_newline] = STATE(999), + [sym__expression_parenthesized] = STATE(4197), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2126), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1831), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_comment] = STATE(917), + [aux_sym_cmd_identifier_token2] = ACTIONS(2561), + [anon_sym_true] = ACTIONS(2563), + [anon_sym_false] = ACTIONS(2563), + [anon_sym_null] = ACTIONS(2565), + [aux_sym_cmd_identifier_token3] = ACTIONS(2567), + [aux_sym_cmd_identifier_token4] = ACTIONS(2567), + [aux_sym_cmd_identifier_token5] = ACTIONS(2567), + [sym__newline] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2036), + [aux_sym__val_number_decimal_token3] = ACTIONS(2571), + [aux_sym__val_number_decimal_token4] = ACTIONS(2571), + [aux_sym__val_number_token1] = ACTIONS(2567), + [aux_sym__val_number_token2] = ACTIONS(2567), + [aux_sym__val_number_token3] = ACTIONS(2567), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2573), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(918)] = { + [sym_comment] = STATE(918), + [ts_builtin_sym_end] = ACTIONS(2001), + [anon_sym_in] = ACTIONS(2001), + [sym__newline] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_err_GT_PIPE] = ACTIONS(2001), + [anon_sym_out_GT_PIPE] = ACTIONS(2001), + [anon_sym_e_GT_PIPE] = ACTIONS(2001), + [anon_sym_o_GT_PIPE] = ACTIONS(2001), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2001), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2001), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2001), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2001), + [anon_sym_GT2] = ACTIONS(2003), + [anon_sym_DASH2] = ACTIONS(2001), + [anon_sym_STAR2] = ACTIONS(2003), + [anon_sym_and2] = ACTIONS(2001), + [anon_sym_xor2] = ACTIONS(2001), + [anon_sym_or2] = ACTIONS(2001), + [anon_sym_not_DASHin2] = ACTIONS(2001), + [anon_sym_has2] = ACTIONS(2001), + [anon_sym_not_DASHhas2] = ACTIONS(2001), + [anon_sym_starts_DASHwith2] = ACTIONS(2001), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2001), + [anon_sym_ends_DASHwith2] = ACTIONS(2001), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2001), + [anon_sym_EQ_EQ2] = ACTIONS(2001), + [anon_sym_BANG_EQ2] = ACTIONS(2001), + [anon_sym_LT2] = ACTIONS(2003), + [anon_sym_LT_EQ2] = ACTIONS(2001), + [anon_sym_GT_EQ2] = ACTIONS(2001), + [anon_sym_EQ_TILDE2] = ACTIONS(2001), + [anon_sym_BANG_TILDE2] = ACTIONS(2001), + [anon_sym_like2] = ACTIONS(2001), + [anon_sym_not_DASHlike2] = ACTIONS(2001), + [anon_sym_STAR_STAR2] = ACTIONS(2001), + [anon_sym_PLUS_PLUS2] = ACTIONS(2001), + [anon_sym_SLASH2] = ACTIONS(2003), + [anon_sym_mod2] = ACTIONS(2001), + [anon_sym_SLASH_SLASH2] = ACTIONS(2001), + [anon_sym_PLUS2] = ACTIONS(2003), + [anon_sym_bit_DASHshl2] = ACTIONS(2001), + [anon_sym_bit_DASHshr2] = ACTIONS(2001), + [anon_sym_bit_DASHand2] = ACTIONS(2001), + [anon_sym_bit_DASHxor2] = ACTIONS(2001), + [anon_sym_bit_DASHor2] = ACTIONS(2001), + [anon_sym_DOT_DOT2] = ACTIONS(2575), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2577), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2577), + [anon_sym_err_GT] = ACTIONS(2003), + [anon_sym_out_GT] = ACTIONS(2003), + [anon_sym_e_GT] = ACTIONS(2003), + [anon_sym_o_GT] = ACTIONS(2003), + [anon_sym_err_PLUSout_GT] = ACTIONS(2003), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2003), + [anon_sym_o_PLUSe_GT] = ACTIONS(2003), + [anon_sym_e_PLUSo_GT] = ACTIONS(2003), + [anon_sym_err_GT_GT] = ACTIONS(2001), + [anon_sym_out_GT_GT] = ACTIONS(2001), + [anon_sym_e_GT_GT] = ACTIONS(2001), + [anon_sym_o_GT_GT] = ACTIONS(2001), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2001), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2001), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2001), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2001), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(919)] = { + [sym_comment] = STATE(919), + [anon_sym_in] = ACTIONS(2011), + [sym__newline] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_err_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_GT_PIPE] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [anon_sym_GT2] = ACTIONS(2013), + [anon_sym_DASH2] = ACTIONS(2011), + [anon_sym_RBRACE] = ACTIONS(2011), + [anon_sym_STAR2] = ACTIONS(2013), + [anon_sym_and2] = ACTIONS(2011), + [anon_sym_xor2] = ACTIONS(2011), + [anon_sym_or2] = ACTIONS(2011), + [anon_sym_not_DASHin2] = ACTIONS(2011), + [anon_sym_has2] = ACTIONS(2011), + [anon_sym_not_DASHhas2] = ACTIONS(2011), + [anon_sym_starts_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2011), + [anon_sym_ends_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2011), + [anon_sym_EQ_EQ2] = ACTIONS(2011), + [anon_sym_BANG_EQ2] = ACTIONS(2011), + [anon_sym_LT2] = ACTIONS(2013), + [anon_sym_LT_EQ2] = ACTIONS(2011), + [anon_sym_GT_EQ2] = ACTIONS(2011), + [anon_sym_EQ_TILDE2] = ACTIONS(2011), + [anon_sym_BANG_TILDE2] = ACTIONS(2011), + [anon_sym_like2] = ACTIONS(2011), + [anon_sym_not_DASHlike2] = ACTIONS(2011), + [anon_sym_LPAREN2] = ACTIONS(2015), + [anon_sym_STAR_STAR2] = ACTIONS(2011), + [anon_sym_PLUS_PLUS2] = ACTIONS(2011), + [anon_sym_SLASH2] = ACTIONS(2013), + [anon_sym_mod2] = ACTIONS(2011), + [anon_sym_SLASH_SLASH2] = ACTIONS(2011), + [anon_sym_PLUS2] = ACTIONS(2013), + [anon_sym_bit_DASHshl2] = ACTIONS(2011), + [anon_sym_bit_DASHshr2] = ACTIONS(2011), + [anon_sym_bit_DASHand2] = ACTIONS(2011), + [anon_sym_bit_DASHxor2] = ACTIONS(2011), + [anon_sym_bit_DASHor2] = ACTIONS(2011), + [anon_sym_err_GT] = ACTIONS(2013), + [anon_sym_out_GT] = ACTIONS(2013), + [anon_sym_e_GT] = ACTIONS(2013), + [anon_sym_o_GT] = ACTIONS(2013), + [anon_sym_err_PLUSout_GT] = ACTIONS(2013), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2013), + [anon_sym_o_PLUSe_GT] = ACTIONS(2013), + [anon_sym_e_PLUSo_GT] = ACTIONS(2013), + [anon_sym_err_GT_GT] = ACTIONS(2011), + [anon_sym_out_GT_GT] = ACTIONS(2011), + [anon_sym_e_GT_GT] = ACTIONS(2011), + [anon_sym_o_GT_GT] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), + [sym__unquoted_pattern] = ACTIONS(2021), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(920)] = { + [sym_comment] = STATE(920), + [ts_builtin_sym_end] = ACTIONS(2118), + [anon_sym_in] = ACTIONS(2118), + [sym__newline] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_PIPE] = ACTIONS(2118), + [anon_sym_err_GT_PIPE] = ACTIONS(2118), + [anon_sym_out_GT_PIPE] = ACTIONS(2118), + [anon_sym_e_GT_PIPE] = ACTIONS(2118), + [anon_sym_o_GT_PIPE] = ACTIONS(2118), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2118), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2118), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2118), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2118), + [anon_sym_GT2] = ACTIONS(2122), + [anon_sym_DASH2] = ACTIONS(2118), + [anon_sym_STAR2] = ACTIONS(2122), + [anon_sym_and2] = ACTIONS(2118), + [anon_sym_xor2] = ACTIONS(2118), + [anon_sym_or2] = ACTIONS(2118), + [anon_sym_not_DASHin2] = ACTIONS(2118), + [anon_sym_has2] = ACTIONS(2118), + [anon_sym_not_DASHhas2] = ACTIONS(2118), + [anon_sym_starts_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2118), + [anon_sym_ends_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2118), + [anon_sym_EQ_EQ2] = ACTIONS(2118), + [anon_sym_BANG_EQ2] = ACTIONS(2118), + [anon_sym_LT2] = ACTIONS(2122), + [anon_sym_LT_EQ2] = ACTIONS(2118), + [anon_sym_GT_EQ2] = ACTIONS(2118), + [anon_sym_EQ_TILDE2] = ACTIONS(2118), + [anon_sym_BANG_TILDE2] = ACTIONS(2118), + [anon_sym_like2] = ACTIONS(2118), + [anon_sym_not_DASHlike2] = ACTIONS(2118), + [anon_sym_STAR_STAR2] = ACTIONS(2118), + [anon_sym_PLUS_PLUS2] = ACTIONS(2118), + [anon_sym_SLASH2] = ACTIONS(2122), + [anon_sym_mod2] = ACTIONS(2118), + [anon_sym_SLASH_SLASH2] = ACTIONS(2118), + [anon_sym_PLUS2] = ACTIONS(2122), + [anon_sym_bit_DASHshl2] = ACTIONS(2118), + [anon_sym_bit_DASHshr2] = ACTIONS(2118), + [anon_sym_bit_DASHand2] = ACTIONS(2118), + [anon_sym_bit_DASHxor2] = ACTIONS(2118), + [anon_sym_bit_DASHor2] = ACTIONS(2118), + [anon_sym_DOT_DOT2] = ACTIONS(1734), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1736), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1736), + [anon_sym_err_GT] = ACTIONS(2122), + [anon_sym_out_GT] = ACTIONS(2122), + [anon_sym_e_GT] = ACTIONS(2122), + [anon_sym_o_GT] = ACTIONS(2122), + [anon_sym_err_PLUSout_GT] = ACTIONS(2122), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2122), + [anon_sym_o_PLUSe_GT] = ACTIONS(2122), + [anon_sym_e_PLUSo_GT] = ACTIONS(2122), + [anon_sym_err_GT_GT] = ACTIONS(2118), + [anon_sym_out_GT_GT] = ACTIONS(2118), + [anon_sym_e_GT_GT] = ACTIONS(2118), + [anon_sym_o_GT_GT] = ACTIONS(2118), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2118), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2118), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2118), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2118), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(901)] = { - [aux_sym__repeat_newline] = STATE(908), - [sym_comment] = STATE(901), - [anon_sym_export] = ACTIONS(2519), - [anon_sym_alias] = ACTIONS(2521), - [anon_sym_let] = ACTIONS(2521), - [anon_sym_mut] = ACTIONS(2521), - [anon_sym_const] = ACTIONS(2521), - [aux_sym_cmd_identifier_token1] = ACTIONS(2519), - [anon_sym_def] = ACTIONS(2521), - [anon_sym_use] = ACTIONS(2521), - [anon_sym_export_DASHenv] = ACTIONS(2521), - [anon_sym_extern] = ACTIONS(2521), - [anon_sym_module] = ACTIONS(2521), - [anon_sym_for] = ACTIONS(2521), - [anon_sym_loop] = ACTIONS(2521), - [anon_sym_while] = ACTIONS(2521), - [anon_sym_if] = ACTIONS(2521), - [anon_sym_else] = ACTIONS(2521), - [anon_sym_try] = ACTIONS(2521), - [anon_sym_catch] = ACTIONS(2521), - [anon_sym_match] = ACTIONS(2521), - [anon_sym_in] = ACTIONS(2519), - [anon_sym_true] = ACTIONS(2521), - [anon_sym_false] = ACTIONS(2521), - [anon_sym_null] = ACTIONS(2521), - [aux_sym_cmd_identifier_token3] = ACTIONS(2521), - [aux_sym_cmd_identifier_token4] = ACTIONS(2521), - [aux_sym_cmd_identifier_token5] = ACTIONS(2521), - [sym__newline] = ACTIONS(2507), - [anon_sym_PIPE] = ACTIONS(2523), - [anon_sym_err_GT_PIPE] = ACTIONS(2523), - [anon_sym_out_GT_PIPE] = ACTIONS(2523), - [anon_sym_e_GT_PIPE] = ACTIONS(2523), - [anon_sym_o_GT_PIPE] = ACTIONS(2523), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2523), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2523), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2523), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2523), - [anon_sym_LBRACK] = ACTIONS(2521), - [anon_sym_LPAREN] = ACTIONS(2521), - [anon_sym_DOLLAR] = ACTIONS(2519), - [anon_sym_DASH2] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_DOT_DOT] = ACTIONS(2519), - [anon_sym_where] = ACTIONS(2521), - [aux_sym_expr_unary_token1] = ACTIONS(2521), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2521), - [anon_sym_DOT_DOT_LT] = ACTIONS(2521), - [aux_sym__val_number_decimal_token1] = ACTIONS(2519), - [aux_sym__val_number_decimal_token2] = ACTIONS(2521), - [aux_sym__val_number_decimal_token3] = ACTIONS(2521), - [aux_sym__val_number_decimal_token4] = ACTIONS(2521), - [aux_sym__val_number_token1] = ACTIONS(2521), - [aux_sym__val_number_token2] = ACTIONS(2521), - [aux_sym__val_number_token3] = ACTIONS(2521), - [anon_sym_0b] = ACTIONS(2519), - [anon_sym_0o] = ACTIONS(2519), - [anon_sym_0x] = ACTIONS(2519), - [sym_val_date] = ACTIONS(2521), - [anon_sym_DQUOTE] = ACTIONS(2521), - [anon_sym_SQUOTE] = ACTIONS(2521), - [anon_sym_BQUOTE] = ACTIONS(2521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2521), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2521), - [anon_sym_CARET] = ACTIONS(2521), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2521), - }, - [STATE(902)] = { - [sym_comment] = STATE(902), - [anon_sym_in] = ACTIONS(2062), - [sym__newline] = ACTIONS(2062), - [anon_sym_SEMI] = ACTIONS(2062), - [anon_sym_PIPE] = ACTIONS(2062), - [anon_sym_err_GT_PIPE] = ACTIONS(2062), - [anon_sym_out_GT_PIPE] = ACTIONS(2062), - [anon_sym_e_GT_PIPE] = ACTIONS(2062), - [anon_sym_o_GT_PIPE] = ACTIONS(2062), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), - [anon_sym_RPAREN] = ACTIONS(2062), - [anon_sym_GT2] = ACTIONS(2064), - [anon_sym_DASH2] = ACTIONS(2062), - [anon_sym_LBRACE] = ACTIONS(2062), - [anon_sym_RBRACE] = ACTIONS(2062), - [anon_sym_EQ_GT] = ACTIONS(2062), - [anon_sym_STAR2] = ACTIONS(2064), - [anon_sym_and2] = ACTIONS(2062), - [anon_sym_xor2] = ACTIONS(2062), - [anon_sym_or2] = ACTIONS(2062), - [anon_sym_not_DASHin2] = ACTIONS(2062), - [anon_sym_has2] = ACTIONS(2062), - [anon_sym_not_DASHhas2] = ACTIONS(2062), - [anon_sym_starts_DASHwith2] = ACTIONS(2062), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), - [anon_sym_ends_DASHwith2] = ACTIONS(2062), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), - [anon_sym_EQ_EQ2] = ACTIONS(2062), - [anon_sym_BANG_EQ2] = ACTIONS(2062), - [anon_sym_LT2] = ACTIONS(2064), - [anon_sym_LT_EQ2] = ACTIONS(2062), - [anon_sym_GT_EQ2] = ACTIONS(2062), - [anon_sym_EQ_TILDE2] = ACTIONS(2062), - [anon_sym_BANG_TILDE2] = ACTIONS(2062), - [anon_sym_like2] = ACTIONS(2062), - [anon_sym_not_DASHlike2] = ACTIONS(2062), - [anon_sym_STAR_STAR2] = ACTIONS(2062), - [anon_sym_PLUS_PLUS2] = ACTIONS(2062), - [anon_sym_SLASH2] = ACTIONS(2064), - [anon_sym_mod2] = ACTIONS(2062), - [anon_sym_SLASH_SLASH2] = ACTIONS(2062), - [anon_sym_PLUS2] = ACTIONS(2064), - [anon_sym_bit_DASHshl2] = ACTIONS(2062), - [anon_sym_bit_DASHshr2] = ACTIONS(2062), - [anon_sym_bit_DASHand2] = ACTIONS(2062), - [anon_sym_bit_DASHxor2] = ACTIONS(2062), - [anon_sym_bit_DASHor2] = ACTIONS(2062), - [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(2062), - [anon_sym_out_GT_GT] = ACTIONS(2062), - [anon_sym_e_GT_GT] = ACTIONS(2062), - [anon_sym_o_GT_GT] = ACTIONS(2062), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [STATE(921)] = { + [sym_comment] = STATE(921), + [ts_builtin_sym_end] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1816), + [sym__newline] = ACTIONS(1816), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_PIPE] = ACTIONS(1816), + [anon_sym_err_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_GT_PIPE] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1816), + [anon_sym_GT2] = ACTIONS(1818), + [anon_sym_DASH2] = ACTIONS(1816), + [anon_sym_STAR2] = ACTIONS(1818), + [anon_sym_and2] = ACTIONS(1816), + [anon_sym_xor2] = ACTIONS(1816), + [anon_sym_or2] = ACTIONS(1816), + [anon_sym_not_DASHin2] = ACTIONS(1816), + [anon_sym_has2] = ACTIONS(1816), + [anon_sym_not_DASHhas2] = ACTIONS(1816), + [anon_sym_starts_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1816), + [anon_sym_ends_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1816), + [anon_sym_EQ_EQ2] = ACTIONS(1816), + [anon_sym_BANG_EQ2] = ACTIONS(1816), + [anon_sym_LT2] = ACTIONS(1818), + [anon_sym_LT_EQ2] = ACTIONS(1816), + [anon_sym_GT_EQ2] = ACTIONS(1816), + [anon_sym_EQ_TILDE2] = ACTIONS(1816), + [anon_sym_BANG_TILDE2] = ACTIONS(1816), + [anon_sym_like2] = ACTIONS(1816), + [anon_sym_not_DASHlike2] = ACTIONS(1816), + [anon_sym_LPAREN2] = ACTIONS(1816), + [anon_sym_STAR_STAR2] = ACTIONS(1816), + [anon_sym_PLUS_PLUS2] = ACTIONS(1816), + [anon_sym_SLASH2] = ACTIONS(1818), + [anon_sym_mod2] = ACTIONS(1816), + [anon_sym_SLASH_SLASH2] = ACTIONS(1816), + [anon_sym_PLUS2] = ACTIONS(1818), + [anon_sym_bit_DASHshl2] = ACTIONS(1816), + [anon_sym_bit_DASHshr2] = ACTIONS(1816), + [anon_sym_bit_DASHand2] = ACTIONS(1816), + [anon_sym_bit_DASHxor2] = ACTIONS(1816), + [anon_sym_bit_DASHor2] = ACTIONS(1816), + [aux_sym__immediate_decimal_token5] = ACTIONS(2579), + [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(1816), + [anon_sym_out_GT_GT] = ACTIONS(1816), + [anon_sym_e_GT_GT] = ACTIONS(1816), + [anon_sym_o_GT_GT] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1816), + [sym__unquoted_pattern] = ACTIONS(1818), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(903)] = { - [sym_comment] = STATE(903), + [STATE(922)] = { + [sym_comment] = STATE(922), [anon_sym_in] = ACTIONS(2525), [sym__newline] = ACTIONS(2525), [anon_sym_SEMI] = ACTIONS(2525), @@ -115009,7 +116355,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2525), [anon_sym_like2] = ACTIONS(2525), [anon_sym_not_DASHlike2] = ACTIONS(2525), - [anon_sym_LPAREN2] = ACTIONS(2529), + [anon_sym_LPAREN2] = ACTIONS(2581), [anon_sym_STAR_STAR2] = ACTIONS(2525), [anon_sym_PLUS_PLUS2] = ACTIONS(2525), [anon_sym_SLASH2] = ACTIONS(2527), @@ -115037,11 +116383,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2525), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2525), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2525), - [sym__unquoted_pattern] = ACTIONS(2531), + [sym__unquoted_pattern] = ACTIONS(1641), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(904)] = { - [sym_comment] = STATE(904), + [STATE(923)] = { + [sym_comment] = STATE(923), + [anon_sym_in] = ACTIONS(2583), + [sym__newline] = ACTIONS(2583), + [anon_sym_SEMI] = ACTIONS(2583), + [anon_sym_PIPE] = ACTIONS(2583), + [anon_sym_err_GT_PIPE] = ACTIONS(2583), + [anon_sym_out_GT_PIPE] = ACTIONS(2583), + [anon_sym_e_GT_PIPE] = ACTIONS(2583), + [anon_sym_o_GT_PIPE] = ACTIONS(2583), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2583), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2583), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2583), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2583), + [anon_sym_RPAREN] = ACTIONS(2583), + [anon_sym_GT2] = ACTIONS(2585), + [anon_sym_DASH2] = ACTIONS(2583), + [anon_sym_RBRACE] = ACTIONS(2583), + [anon_sym_STAR2] = ACTIONS(2585), + [anon_sym_and2] = ACTIONS(2583), + [anon_sym_xor2] = ACTIONS(2583), + [anon_sym_or2] = ACTIONS(2583), + [anon_sym_not_DASHin2] = ACTIONS(2583), + [anon_sym_has2] = ACTIONS(2583), + [anon_sym_not_DASHhas2] = ACTIONS(2583), + [anon_sym_starts_DASHwith2] = ACTIONS(2583), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2583), + [anon_sym_ends_DASHwith2] = ACTIONS(2583), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2583), + [anon_sym_EQ_EQ2] = ACTIONS(2583), + [anon_sym_BANG_EQ2] = ACTIONS(2583), + [anon_sym_LT2] = ACTIONS(2585), + [anon_sym_LT_EQ2] = ACTIONS(2583), + [anon_sym_GT_EQ2] = ACTIONS(2583), + [anon_sym_EQ_TILDE2] = ACTIONS(2583), + [anon_sym_BANG_TILDE2] = ACTIONS(2583), + [anon_sym_like2] = ACTIONS(2583), + [anon_sym_not_DASHlike2] = ACTIONS(2583), + [anon_sym_LPAREN2] = ACTIONS(2587), + [anon_sym_STAR_STAR2] = ACTIONS(2583), + [anon_sym_PLUS_PLUS2] = ACTIONS(2583), + [anon_sym_SLASH2] = ACTIONS(2585), + [anon_sym_mod2] = ACTIONS(2583), + [anon_sym_SLASH_SLASH2] = ACTIONS(2583), + [anon_sym_PLUS2] = ACTIONS(2585), + [anon_sym_bit_DASHshl2] = ACTIONS(2583), + [anon_sym_bit_DASHshr2] = ACTIONS(2583), + [anon_sym_bit_DASHand2] = ACTIONS(2583), + [anon_sym_bit_DASHxor2] = ACTIONS(2583), + [anon_sym_bit_DASHor2] = ACTIONS(2583), + [anon_sym_err_GT] = ACTIONS(2585), + [anon_sym_out_GT] = ACTIONS(2585), + [anon_sym_e_GT] = ACTIONS(2585), + [anon_sym_o_GT] = ACTIONS(2585), + [anon_sym_err_PLUSout_GT] = ACTIONS(2585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2585), + [anon_sym_o_PLUSe_GT] = ACTIONS(2585), + [anon_sym_e_PLUSo_GT] = ACTIONS(2585), + [anon_sym_err_GT_GT] = ACTIONS(2583), + [anon_sym_out_GT_GT] = ACTIONS(2583), + [anon_sym_e_GT_GT] = ACTIONS(2583), + [anon_sym_o_GT_GT] = ACTIONS(2583), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2583), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2583), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2583), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2583), + [sym__unquoted_pattern] = ACTIONS(2589), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(924)] = { + [sym_comment] = STATE(924), + [anon_sym_in] = ACTIONS(2591), + [sym__newline] = ACTIONS(2591), + [anon_sym_SEMI] = ACTIONS(2591), + [anon_sym_PIPE] = ACTIONS(2591), + [anon_sym_err_GT_PIPE] = ACTIONS(2591), + [anon_sym_out_GT_PIPE] = ACTIONS(2591), + [anon_sym_e_GT_PIPE] = ACTIONS(2591), + [anon_sym_o_GT_PIPE] = ACTIONS(2591), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2591), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2591), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2591), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2591), + [anon_sym_RPAREN] = ACTIONS(2591), + [anon_sym_GT2] = ACTIONS(2593), + [anon_sym_DASH2] = ACTIONS(2591), + [anon_sym_RBRACE] = ACTIONS(2591), + [anon_sym_STAR2] = ACTIONS(2593), + [anon_sym_and2] = ACTIONS(2591), + [anon_sym_xor2] = ACTIONS(2591), + [anon_sym_or2] = ACTIONS(2591), + [anon_sym_not_DASHin2] = ACTIONS(2591), + [anon_sym_has2] = ACTIONS(2591), + [anon_sym_not_DASHhas2] = ACTIONS(2591), + [anon_sym_starts_DASHwith2] = ACTIONS(2591), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2591), + [anon_sym_ends_DASHwith2] = ACTIONS(2591), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2591), + [anon_sym_EQ_EQ2] = ACTIONS(2591), + [anon_sym_BANG_EQ2] = ACTIONS(2591), + [anon_sym_LT2] = ACTIONS(2593), + [anon_sym_LT_EQ2] = ACTIONS(2591), + [anon_sym_GT_EQ2] = ACTIONS(2591), + [anon_sym_EQ_TILDE2] = ACTIONS(2591), + [anon_sym_BANG_TILDE2] = ACTIONS(2591), + [anon_sym_like2] = ACTIONS(2591), + [anon_sym_not_DASHlike2] = ACTIONS(2591), + [anon_sym_LPAREN2] = ACTIONS(2595), + [anon_sym_STAR_STAR2] = ACTIONS(2591), + [anon_sym_PLUS_PLUS2] = ACTIONS(2591), + [anon_sym_SLASH2] = ACTIONS(2593), + [anon_sym_mod2] = ACTIONS(2591), + [anon_sym_SLASH_SLASH2] = ACTIONS(2591), + [anon_sym_PLUS2] = ACTIONS(2593), + [anon_sym_bit_DASHshl2] = ACTIONS(2591), + [anon_sym_bit_DASHshr2] = ACTIONS(2591), + [anon_sym_bit_DASHand2] = ACTIONS(2591), + [anon_sym_bit_DASHxor2] = ACTIONS(2591), + [anon_sym_bit_DASHor2] = ACTIONS(2591), + [anon_sym_err_GT] = ACTIONS(2593), + [anon_sym_out_GT] = ACTIONS(2593), + [anon_sym_e_GT] = ACTIONS(2593), + [anon_sym_o_GT] = ACTIONS(2593), + [anon_sym_err_PLUSout_GT] = ACTIONS(2593), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2593), + [anon_sym_o_PLUSe_GT] = ACTIONS(2593), + [anon_sym_e_PLUSo_GT] = ACTIONS(2593), + [anon_sym_err_GT_GT] = ACTIONS(2591), + [anon_sym_out_GT_GT] = ACTIONS(2591), + [anon_sym_e_GT_GT] = ACTIONS(2591), + [anon_sym_o_GT_GT] = ACTIONS(2591), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2591), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2591), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2591), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2591), + [sym__unquoted_pattern] = ACTIONS(2597), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(925)] = { + [aux_sym__repeat_newline] = STATE(925), + [sym_comment] = STATE(925), + [anon_sym_export] = ACTIONS(1921), + [anon_sym_alias] = ACTIONS(1916), + [anon_sym_let] = ACTIONS(1916), + [anon_sym_mut] = ACTIONS(1916), + [anon_sym_const] = ACTIONS(1916), + [aux_sym_cmd_identifier_token1] = ACTIONS(1921), + [anon_sym_def] = ACTIONS(1916), + [anon_sym_use] = ACTIONS(1916), + [anon_sym_export_DASHenv] = ACTIONS(1916), + [anon_sym_extern] = ACTIONS(1916), + [anon_sym_module] = ACTIONS(1916), + [anon_sym_for] = ACTIONS(1916), + [anon_sym_loop] = ACTIONS(1916), + [anon_sym_while] = ACTIONS(1916), + [anon_sym_if] = ACTIONS(1916), + [anon_sym_else] = ACTIONS(1916), + [anon_sym_try] = ACTIONS(1916), + [anon_sym_catch] = ACTIONS(1916), + [anon_sym_match] = ACTIONS(1916), + [anon_sym_in] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_null] = ACTIONS(1916), + [aux_sym_cmd_identifier_token3] = ACTIONS(1916), + [aux_sym_cmd_identifier_token4] = ACTIONS(1916), + [aux_sym_cmd_identifier_token5] = ACTIONS(1916), + [sym__newline] = ACTIONS(2599), + [anon_sym_PIPE] = ACTIONS(1916), + [anon_sym_err_GT_PIPE] = ACTIONS(1916), + [anon_sym_out_GT_PIPE] = ACTIONS(1916), + [anon_sym_e_GT_PIPE] = ACTIONS(1916), + [anon_sym_o_GT_PIPE] = ACTIONS(1916), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1916), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1916), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1916), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1921), + [anon_sym_DASH2] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1916), + [anon_sym_DOT_DOT] = ACTIONS(1921), + [anon_sym_where] = ACTIONS(1916), + [aux_sym_expr_unary_token1] = ACTIONS(1916), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1916), + [anon_sym_DOT_DOT_LT] = ACTIONS(1916), + [aux_sym__val_number_decimal_token1] = ACTIONS(1921), + [aux_sym__val_number_decimal_token2] = ACTIONS(1916), + [aux_sym__val_number_decimal_token3] = ACTIONS(1916), + [aux_sym__val_number_decimal_token4] = ACTIONS(1916), + [aux_sym__val_number_token1] = ACTIONS(1916), + [aux_sym__val_number_token2] = ACTIONS(1916), + [aux_sym__val_number_token3] = ACTIONS(1916), + [anon_sym_0b] = ACTIONS(1921), + [anon_sym_0o] = ACTIONS(1921), + [anon_sym_0x] = ACTIONS(1921), + [sym_val_date] = ACTIONS(1916), + [anon_sym_DQUOTE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_BQUOTE] = ACTIONS(1916), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1916), + [anon_sym_CARET] = ACTIONS(1916), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1916), + }, + [STATE(926)] = { + [sym_comment] = STATE(926), [anon_sym_in] = ACTIONS(2062), [sym__newline] = ACTIONS(2062), [anon_sym_SEMI] = ACTIONS(2062), @@ -115109,77 +116662,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(905)] = { - [aux_sym__repeat_newline] = STATE(997), - [sym__expression_parenthesized] = STATE(4395), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2115), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1826), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_comment] = STATE(905), - [aux_sym_cmd_identifier_token2] = ACTIONS(2533), - [anon_sym_true] = ACTIONS(2535), - [anon_sym_false] = ACTIONS(2535), - [anon_sym_null] = ACTIONS(2537), - [aux_sym_cmd_identifier_token3] = ACTIONS(2539), - [aux_sym_cmd_identifier_token4] = ACTIONS(2539), - [aux_sym_cmd_identifier_token5] = ACTIONS(2539), - [sym__newline] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1976), - [aux_sym__val_number_decimal_token3] = ACTIONS(2543), - [aux_sym__val_number_decimal_token4] = ACTIONS(2543), - [aux_sym__val_number_token1] = ACTIONS(2539), - [aux_sym__val_number_token2] = ACTIONS(2539), - [aux_sym__val_number_token3] = ACTIONS(2539), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2545), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [STATE(927)] = { + [sym_comment] = STATE(927), + [anon_sym_in] = ACTIONS(1018), + [sym__newline] = ACTIONS(1018), + [anon_sym_SEMI] = ACTIONS(1018), + [anon_sym_PIPE] = ACTIONS(1018), + [anon_sym_err_GT_PIPE] = ACTIONS(1018), + [anon_sym_out_GT_PIPE] = ACTIONS(1018), + [anon_sym_e_GT_PIPE] = ACTIONS(1018), + [anon_sym_o_GT_PIPE] = ACTIONS(1018), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1018), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1018), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1018), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1018), + [anon_sym_RPAREN] = ACTIONS(1018), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1018), + [anon_sym_RBRACE] = ACTIONS(1018), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(1018), + [anon_sym_xor2] = ACTIONS(1018), + [anon_sym_or2] = ACTIONS(1018), + [anon_sym_not_DASHin2] = ACTIONS(1018), + [anon_sym_has2] = ACTIONS(1018), + [anon_sym_not_DASHhas2] = ACTIONS(1018), + [anon_sym_starts_DASHwith2] = ACTIONS(1018), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1018), + [anon_sym_ends_DASHwith2] = ACTIONS(1018), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1018), + [anon_sym_EQ_EQ2] = ACTIONS(1018), + [anon_sym_BANG_EQ2] = ACTIONS(1018), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1018), + [anon_sym_GT_EQ2] = ACTIONS(1018), + [anon_sym_EQ_TILDE2] = ACTIONS(1018), + [anon_sym_BANG_TILDE2] = ACTIONS(1018), + [anon_sym_like2] = ACTIONS(1018), + [anon_sym_not_DASHlike2] = ACTIONS(1018), + [anon_sym_LPAREN2] = ACTIONS(2602), + [anon_sym_STAR_STAR2] = ACTIONS(1018), + [anon_sym_PLUS_PLUS2] = ACTIONS(1018), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1018), + [anon_sym_SLASH_SLASH2] = ACTIONS(1018), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1018), + [anon_sym_bit_DASHshr2] = ACTIONS(1018), + [anon_sym_bit_DASHand2] = ACTIONS(1018), + [anon_sym_bit_DASHxor2] = ACTIONS(1018), + [anon_sym_bit_DASHor2] = ACTIONS(1018), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(1018), + [anon_sym_out_GT_GT] = ACTIONS(1018), + [anon_sym_e_GT_GT] = ACTIONS(1018), + [anon_sym_o_GT_GT] = ACTIONS(1018), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1018), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1018), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1018), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1018), + [sym__unquoted_pattern] = ACTIONS(2604), + [anon_sym_POUND] = ACTIONS(3), }, - [STATE(906)] = { - [sym_comment] = STATE(906), + [STATE(928)] = { + [aux_sym__repeat_newline] = STATE(925), + [sym_comment] = STATE(928), + [anon_sym_export] = ACTIONS(2606), + [anon_sym_alias] = ACTIONS(2608), + [anon_sym_let] = ACTIONS(2608), + [anon_sym_mut] = ACTIONS(2608), + [anon_sym_const] = ACTIONS(2608), + [aux_sym_cmd_identifier_token1] = ACTIONS(2606), + [anon_sym_def] = ACTIONS(2608), + [anon_sym_use] = ACTIONS(2608), + [anon_sym_export_DASHenv] = ACTIONS(2608), + [anon_sym_extern] = ACTIONS(2608), + [anon_sym_module] = ACTIONS(2608), + [anon_sym_for] = ACTIONS(2608), + [anon_sym_loop] = ACTIONS(2608), + [anon_sym_while] = ACTIONS(2608), + [anon_sym_if] = ACTIONS(2608), + [anon_sym_else] = ACTIONS(2608), + [anon_sym_try] = ACTIONS(2608), + [anon_sym_catch] = ACTIONS(2608), + [anon_sym_match] = ACTIONS(2608), + [anon_sym_in] = ACTIONS(2606), + [anon_sym_true] = ACTIONS(2608), + [anon_sym_false] = ACTIONS(2608), + [anon_sym_null] = ACTIONS(2608), + [aux_sym_cmd_identifier_token3] = ACTIONS(2608), + [aux_sym_cmd_identifier_token4] = ACTIONS(2608), + [aux_sym_cmd_identifier_token5] = ACTIONS(2608), + [sym__newline] = ACTIONS(2259), + [anon_sym_PIPE] = ACTIONS(2610), + [anon_sym_err_GT_PIPE] = ACTIONS(2610), + [anon_sym_out_GT_PIPE] = ACTIONS(2610), + [anon_sym_e_GT_PIPE] = ACTIONS(2610), + [anon_sym_o_GT_PIPE] = ACTIONS(2610), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2610), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2610), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2610), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2610), + [anon_sym_LBRACK] = ACTIONS(2608), + [anon_sym_LPAREN] = ACTIONS(2608), + [anon_sym_DOLLAR] = ACTIONS(2606), + [anon_sym_DASH2] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_DOT_DOT] = ACTIONS(2606), + [anon_sym_where] = ACTIONS(2608), + [aux_sym_expr_unary_token1] = ACTIONS(2608), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2608), + [anon_sym_DOT_DOT_LT] = ACTIONS(2608), + [aux_sym__val_number_decimal_token1] = ACTIONS(2606), + [aux_sym__val_number_decimal_token2] = ACTIONS(2608), + [aux_sym__val_number_decimal_token3] = ACTIONS(2608), + [aux_sym__val_number_decimal_token4] = ACTIONS(2608), + [aux_sym__val_number_token1] = ACTIONS(2608), + [aux_sym__val_number_token2] = ACTIONS(2608), + [aux_sym__val_number_token3] = ACTIONS(2608), + [anon_sym_0b] = ACTIONS(2606), + [anon_sym_0o] = ACTIONS(2606), + [anon_sym_0x] = ACTIONS(2606), + [sym_val_date] = ACTIONS(2608), + [anon_sym_DQUOTE] = ACTIONS(2608), + [anon_sym_SQUOTE] = ACTIONS(2608), + [anon_sym_BQUOTE] = ACTIONS(2608), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2608), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2608), + [anon_sym_CARET] = ACTIONS(2608), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2608), + }, + [STATE(929)] = { + [sym_comment] = STATE(929), [anon_sym_in] = ACTIONS(2062), [sym__newline] = ACTIONS(2062), [anon_sym_SEMI] = ACTIONS(2062), @@ -115247,284 +116869,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(907)] = { - [sym_comment] = STATE(907), - [anon_sym_in] = ACTIONS(2547), - [sym__newline] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [anon_sym_PIPE] = ACTIONS(2547), - [anon_sym_err_GT_PIPE] = ACTIONS(2547), - [anon_sym_out_GT_PIPE] = ACTIONS(2547), - [anon_sym_e_GT_PIPE] = ACTIONS(2547), - [anon_sym_o_GT_PIPE] = ACTIONS(2547), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2547), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2547), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2547), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2547), - [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_GT2] = ACTIONS(2549), - [anon_sym_DASH2] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_EQ_GT] = ACTIONS(2547), - [anon_sym_STAR2] = ACTIONS(2549), - [anon_sym_and2] = ACTIONS(2547), - [anon_sym_xor2] = ACTIONS(2547), - [anon_sym_or2] = ACTIONS(2547), - [anon_sym_not_DASHin2] = ACTIONS(2547), - [anon_sym_has2] = ACTIONS(2547), - [anon_sym_not_DASHhas2] = ACTIONS(2547), - [anon_sym_starts_DASHwith2] = ACTIONS(2547), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2547), - [anon_sym_ends_DASHwith2] = ACTIONS(2547), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2547), - [anon_sym_EQ_EQ2] = ACTIONS(2547), - [anon_sym_BANG_EQ2] = ACTIONS(2547), - [anon_sym_LT2] = ACTIONS(2549), - [anon_sym_LT_EQ2] = ACTIONS(2547), - [anon_sym_GT_EQ2] = ACTIONS(2547), - [anon_sym_EQ_TILDE2] = ACTIONS(2547), - [anon_sym_BANG_TILDE2] = ACTIONS(2547), - [anon_sym_like2] = ACTIONS(2547), - [anon_sym_not_DASHlike2] = ACTIONS(2547), - [anon_sym_STAR_STAR2] = ACTIONS(2547), - [anon_sym_PLUS_PLUS2] = ACTIONS(2547), - [anon_sym_SLASH2] = ACTIONS(2549), - [anon_sym_mod2] = ACTIONS(2547), - [anon_sym_SLASH_SLASH2] = ACTIONS(2547), - [anon_sym_PLUS2] = ACTIONS(2549), - [anon_sym_bit_DASHshl2] = ACTIONS(2547), - [anon_sym_bit_DASHshr2] = ACTIONS(2547), - [anon_sym_bit_DASHand2] = ACTIONS(2547), - [anon_sym_bit_DASHxor2] = ACTIONS(2547), - [anon_sym_bit_DASHor2] = ACTIONS(2547), - [anon_sym_err_GT] = ACTIONS(2549), - [anon_sym_out_GT] = ACTIONS(2549), - [anon_sym_e_GT] = ACTIONS(2549), - [anon_sym_o_GT] = ACTIONS(2549), - [anon_sym_err_PLUSout_GT] = ACTIONS(2549), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2549), - [anon_sym_o_PLUSe_GT] = ACTIONS(2549), - [anon_sym_e_PLUSo_GT] = ACTIONS(2549), - [anon_sym_err_GT_GT] = ACTIONS(2547), - [anon_sym_out_GT_GT] = ACTIONS(2547), - [anon_sym_e_GT_GT] = ACTIONS(2547), - [anon_sym_o_GT_GT] = ACTIONS(2547), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2547), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2547), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2547), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2547), + [STATE(930)] = { + [sym_comment] = STATE(930), + [anon_sym_in] = ACTIONS(2612), + [sym__newline] = ACTIONS(2612), + [anon_sym_SEMI] = ACTIONS(2612), + [anon_sym_PIPE] = ACTIONS(2612), + [anon_sym_err_GT_PIPE] = ACTIONS(2612), + [anon_sym_out_GT_PIPE] = ACTIONS(2612), + [anon_sym_e_GT_PIPE] = ACTIONS(2612), + [anon_sym_o_GT_PIPE] = ACTIONS(2612), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2612), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2612), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2612), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2612), + [anon_sym_RPAREN] = ACTIONS(2612), + [anon_sym_GT2] = ACTIONS(2614), + [anon_sym_DASH2] = ACTIONS(2612), + [anon_sym_LBRACE] = ACTIONS(2612), + [anon_sym_RBRACE] = ACTIONS(2612), + [anon_sym_EQ_GT] = ACTIONS(2612), + [anon_sym_STAR2] = ACTIONS(2614), + [anon_sym_and2] = ACTIONS(2612), + [anon_sym_xor2] = ACTIONS(2612), + [anon_sym_or2] = ACTIONS(2612), + [anon_sym_not_DASHin2] = ACTIONS(2612), + [anon_sym_has2] = ACTIONS(2612), + [anon_sym_not_DASHhas2] = ACTIONS(2612), + [anon_sym_starts_DASHwith2] = ACTIONS(2612), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2612), + [anon_sym_ends_DASHwith2] = ACTIONS(2612), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2612), + [anon_sym_EQ_EQ2] = ACTIONS(2612), + [anon_sym_BANG_EQ2] = ACTIONS(2612), + [anon_sym_LT2] = ACTIONS(2614), + [anon_sym_LT_EQ2] = ACTIONS(2612), + [anon_sym_GT_EQ2] = ACTIONS(2612), + [anon_sym_EQ_TILDE2] = ACTIONS(2612), + [anon_sym_BANG_TILDE2] = ACTIONS(2612), + [anon_sym_like2] = ACTIONS(2612), + [anon_sym_not_DASHlike2] = ACTIONS(2612), + [anon_sym_STAR_STAR2] = ACTIONS(2612), + [anon_sym_PLUS_PLUS2] = ACTIONS(2612), + [anon_sym_SLASH2] = ACTIONS(2614), + [anon_sym_mod2] = ACTIONS(2612), + [anon_sym_SLASH_SLASH2] = ACTIONS(2612), + [anon_sym_PLUS2] = ACTIONS(2614), + [anon_sym_bit_DASHshl2] = ACTIONS(2612), + [anon_sym_bit_DASHshr2] = ACTIONS(2612), + [anon_sym_bit_DASHand2] = ACTIONS(2612), + [anon_sym_bit_DASHxor2] = ACTIONS(2612), + [anon_sym_bit_DASHor2] = ACTIONS(2612), + [anon_sym_err_GT] = ACTIONS(2614), + [anon_sym_out_GT] = ACTIONS(2614), + [anon_sym_e_GT] = ACTIONS(2614), + [anon_sym_o_GT] = ACTIONS(2614), + [anon_sym_err_PLUSout_GT] = ACTIONS(2614), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2614), + [anon_sym_o_PLUSe_GT] = ACTIONS(2614), + [anon_sym_e_PLUSo_GT] = ACTIONS(2614), + [anon_sym_err_GT_GT] = ACTIONS(2612), + [anon_sym_out_GT_GT] = ACTIONS(2612), + [anon_sym_e_GT_GT] = ACTIONS(2612), + [anon_sym_o_GT_GT] = ACTIONS(2612), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2612), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2612), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2612), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2612), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(908)] = { - [aux_sym__repeat_newline] = STATE(908), - [sym_comment] = STATE(908), - [anon_sym_export] = ACTIONS(1940), - [anon_sym_alias] = ACTIONS(1935), - [anon_sym_let] = ACTIONS(1935), - [anon_sym_mut] = ACTIONS(1935), - [anon_sym_const] = ACTIONS(1935), - [aux_sym_cmd_identifier_token1] = ACTIONS(1940), - [anon_sym_def] = ACTIONS(1935), - [anon_sym_use] = ACTIONS(1935), - [anon_sym_export_DASHenv] = ACTIONS(1935), - [anon_sym_extern] = ACTIONS(1935), - [anon_sym_module] = ACTIONS(1935), - [anon_sym_for] = ACTIONS(1935), - [anon_sym_loop] = ACTIONS(1935), - [anon_sym_while] = ACTIONS(1935), - [anon_sym_if] = ACTIONS(1935), - [anon_sym_else] = ACTIONS(1935), - [anon_sym_try] = ACTIONS(1935), - [anon_sym_catch] = ACTIONS(1935), - [anon_sym_match] = ACTIONS(1935), - [anon_sym_in] = ACTIONS(1940), - [anon_sym_true] = ACTIONS(1935), - [anon_sym_false] = ACTIONS(1935), - [anon_sym_null] = ACTIONS(1935), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [sym__newline] = ACTIONS(2551), - [anon_sym_PIPE] = ACTIONS(1935), - [anon_sym_err_GT_PIPE] = ACTIONS(1935), - [anon_sym_out_GT_PIPE] = ACTIONS(1935), - [anon_sym_e_GT_PIPE] = ACTIONS(1935), - [anon_sym_o_GT_PIPE] = ACTIONS(1935), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1935), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1935), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1935), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1935), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_DOLLAR] = ACTIONS(1940), - [anon_sym_DASH2] = ACTIONS(1940), - [anon_sym_LBRACE] = ACTIONS(1935), - [anon_sym_DOT_DOT] = ACTIONS(1940), - [anon_sym_where] = ACTIONS(1935), - [aux_sym_expr_unary_token1] = ACTIONS(1935), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1935), - [anon_sym_DOT_DOT_LT] = ACTIONS(1935), - [aux_sym__val_number_decimal_token1] = ACTIONS(1940), - [aux_sym__val_number_decimal_token2] = ACTIONS(1935), - [aux_sym__val_number_decimal_token3] = ACTIONS(1935), - [aux_sym__val_number_decimal_token4] = ACTIONS(1935), - [aux_sym__val_number_token1] = ACTIONS(1935), - [aux_sym__val_number_token2] = ACTIONS(1935), - [aux_sym__val_number_token3] = ACTIONS(1935), - [anon_sym_0b] = ACTIONS(1940), - [anon_sym_0o] = ACTIONS(1940), - [anon_sym_0x] = ACTIONS(1940), - [sym_val_date] = ACTIONS(1935), - [anon_sym_DQUOTE] = ACTIONS(1935), - [anon_sym_SQUOTE] = ACTIONS(1935), - [anon_sym_BQUOTE] = ACTIONS(1935), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1935), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1935), - [anon_sym_CARET] = ACTIONS(1935), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1935), - }, - [STATE(909)] = { - [sym_comment] = STATE(909), - [anon_sym_in] = ACTIONS(2525), - [sym__newline] = ACTIONS(2525), - [anon_sym_SEMI] = ACTIONS(2525), - [anon_sym_PIPE] = ACTIONS(2525), - [anon_sym_err_GT_PIPE] = ACTIONS(2525), - [anon_sym_out_GT_PIPE] = ACTIONS(2525), - [anon_sym_e_GT_PIPE] = ACTIONS(2525), - [anon_sym_o_GT_PIPE] = ACTIONS(2525), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2525), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2525), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2525), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2525), - [anon_sym_RPAREN] = ACTIONS(2525), - [anon_sym_GT2] = ACTIONS(2527), - [anon_sym_DASH2] = ACTIONS(2525), - [anon_sym_LBRACE] = ACTIONS(2525), - [anon_sym_RBRACE] = ACTIONS(2525), - [anon_sym_EQ_GT] = ACTIONS(2525), - [anon_sym_STAR2] = ACTIONS(2527), - [anon_sym_and2] = ACTIONS(2525), - [anon_sym_xor2] = ACTIONS(2525), - [anon_sym_or2] = ACTIONS(2525), - [anon_sym_not_DASHin2] = ACTIONS(2525), - [anon_sym_has2] = ACTIONS(2525), - [anon_sym_not_DASHhas2] = ACTIONS(2525), - [anon_sym_starts_DASHwith2] = ACTIONS(2525), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2525), - [anon_sym_ends_DASHwith2] = ACTIONS(2525), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2525), - [anon_sym_EQ_EQ2] = ACTIONS(2525), - [anon_sym_BANG_EQ2] = ACTIONS(2525), - [anon_sym_LT2] = ACTIONS(2527), - [anon_sym_LT_EQ2] = ACTIONS(2525), - [anon_sym_GT_EQ2] = ACTIONS(2525), - [anon_sym_EQ_TILDE2] = ACTIONS(2525), - [anon_sym_BANG_TILDE2] = ACTIONS(2525), - [anon_sym_like2] = ACTIONS(2525), - [anon_sym_not_DASHlike2] = ACTIONS(2525), - [anon_sym_STAR_STAR2] = ACTIONS(2525), - [anon_sym_PLUS_PLUS2] = ACTIONS(2525), - [anon_sym_SLASH2] = ACTIONS(2527), - [anon_sym_mod2] = ACTIONS(2525), - [anon_sym_SLASH_SLASH2] = ACTIONS(2525), - [anon_sym_PLUS2] = ACTIONS(2527), - [anon_sym_bit_DASHshl2] = ACTIONS(2525), - [anon_sym_bit_DASHshr2] = ACTIONS(2525), - [anon_sym_bit_DASHand2] = ACTIONS(2525), - [anon_sym_bit_DASHxor2] = ACTIONS(2525), - [anon_sym_bit_DASHor2] = ACTIONS(2525), - [anon_sym_err_GT] = ACTIONS(2527), - [anon_sym_out_GT] = ACTIONS(2527), - [anon_sym_e_GT] = ACTIONS(2527), - [anon_sym_o_GT] = ACTIONS(2527), - [anon_sym_err_PLUSout_GT] = ACTIONS(2527), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2527), - [anon_sym_o_PLUSe_GT] = ACTIONS(2527), - [anon_sym_e_PLUSo_GT] = ACTIONS(2527), - [anon_sym_err_GT_GT] = ACTIONS(2525), - [anon_sym_out_GT_GT] = ACTIONS(2525), - [anon_sym_e_GT_GT] = ACTIONS(2525), - [anon_sym_o_GT_GT] = ACTIONS(2525), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2525), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2525), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2525), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2525), + [STATE(931)] = { + [sym_comment] = STATE(931), + [anon_sym_in] = ACTIONS(2616), + [sym__newline] = ACTIONS(2616), + [anon_sym_SEMI] = ACTIONS(2616), + [anon_sym_PIPE] = ACTIONS(2616), + [anon_sym_err_GT_PIPE] = ACTIONS(2616), + [anon_sym_out_GT_PIPE] = ACTIONS(2616), + [anon_sym_e_GT_PIPE] = ACTIONS(2616), + [anon_sym_o_GT_PIPE] = ACTIONS(2616), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2616), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2616), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2616), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2616), + [anon_sym_RPAREN] = ACTIONS(2616), + [anon_sym_GT2] = ACTIONS(2618), + [anon_sym_DASH2] = ACTIONS(2616), + [anon_sym_LBRACE] = ACTIONS(2616), + [anon_sym_RBRACE] = ACTIONS(2616), + [anon_sym_EQ_GT] = ACTIONS(2616), + [anon_sym_STAR2] = ACTIONS(2618), + [anon_sym_and2] = ACTIONS(2616), + [anon_sym_xor2] = ACTIONS(2616), + [anon_sym_or2] = ACTIONS(2616), + [anon_sym_not_DASHin2] = ACTIONS(2616), + [anon_sym_has2] = ACTIONS(2616), + [anon_sym_not_DASHhas2] = ACTIONS(2616), + [anon_sym_starts_DASHwith2] = ACTIONS(2616), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2616), + [anon_sym_ends_DASHwith2] = ACTIONS(2616), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2616), + [anon_sym_EQ_EQ2] = ACTIONS(2616), + [anon_sym_BANG_EQ2] = ACTIONS(2616), + [anon_sym_LT2] = ACTIONS(2618), + [anon_sym_LT_EQ2] = ACTIONS(2616), + [anon_sym_GT_EQ2] = ACTIONS(2616), + [anon_sym_EQ_TILDE2] = ACTIONS(2616), + [anon_sym_BANG_TILDE2] = ACTIONS(2616), + [anon_sym_like2] = ACTIONS(2616), + [anon_sym_not_DASHlike2] = ACTIONS(2616), + [anon_sym_STAR_STAR2] = ACTIONS(2616), + [anon_sym_PLUS_PLUS2] = ACTIONS(2616), + [anon_sym_SLASH2] = ACTIONS(2618), + [anon_sym_mod2] = ACTIONS(2616), + [anon_sym_SLASH_SLASH2] = ACTIONS(2616), + [anon_sym_PLUS2] = ACTIONS(2618), + [anon_sym_bit_DASHshl2] = ACTIONS(2616), + [anon_sym_bit_DASHshr2] = ACTIONS(2616), + [anon_sym_bit_DASHand2] = ACTIONS(2616), + [anon_sym_bit_DASHxor2] = ACTIONS(2616), + [anon_sym_bit_DASHor2] = ACTIONS(2616), + [anon_sym_err_GT] = ACTIONS(2618), + [anon_sym_out_GT] = ACTIONS(2618), + [anon_sym_e_GT] = ACTIONS(2618), + [anon_sym_o_GT] = ACTIONS(2618), + [anon_sym_err_PLUSout_GT] = ACTIONS(2618), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2618), + [anon_sym_o_PLUSe_GT] = ACTIONS(2618), + [anon_sym_e_PLUSo_GT] = ACTIONS(2618), + [anon_sym_err_GT_GT] = ACTIONS(2616), + [anon_sym_out_GT_GT] = ACTIONS(2616), + [anon_sym_e_GT_GT] = ACTIONS(2616), + [anon_sym_o_GT_GT] = ACTIONS(2616), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2616), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2616), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2616), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2616), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(910)] = { - [aux_sym__repeat_newline] = STATE(965), - [sym__expression_parenthesized] = STATE(4386), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2115), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1826), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_comment] = STATE(910), - [aux_sym_cmd_identifier_token2] = ACTIONS(2533), - [anon_sym_true] = ACTIONS(2535), - [anon_sym_false] = ACTIONS(2535), - [anon_sym_null] = ACTIONS(2537), - [aux_sym_cmd_identifier_token3] = ACTIONS(2539), - [aux_sym_cmd_identifier_token4] = ACTIONS(2539), - [aux_sym_cmd_identifier_token5] = ACTIONS(2539), - [sym__newline] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1976), - [aux_sym__val_number_decimal_token3] = ACTIONS(2543), - [aux_sym__val_number_decimal_token4] = ACTIONS(2543), - [aux_sym__val_number_token1] = ACTIONS(2539), - [aux_sym__val_number_token2] = ACTIONS(2539), - [aux_sym__val_number_token3] = ACTIONS(2539), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2545), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(911)] = { - [sym_comment] = STATE(911), + [STATE(932)] = { + [sym_comment] = STATE(932), [anon_sym_in] = ACTIONS(2062), [sym__newline] = ACTIONS(2062), [anon_sym_SEMI] = ACTIONS(2062), @@ -115592,77 +117076,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(912)] = { - [sym_comment] = STATE(912), - [ts_builtin_sym_end] = ACTIONS(1689), - [anon_sym_in] = ACTIONS(1689), - [sym__newline] = ACTIONS(1689), - [anon_sym_SEMI] = ACTIONS(1689), - [anon_sym_PIPE] = ACTIONS(1689), - [anon_sym_err_GT_PIPE] = ACTIONS(1689), - [anon_sym_out_GT_PIPE] = ACTIONS(1689), - [anon_sym_e_GT_PIPE] = ACTIONS(1689), - [anon_sym_o_GT_PIPE] = ACTIONS(1689), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), - [anon_sym_GT2] = ACTIONS(1615), - [anon_sym_DASH2] = ACTIONS(1689), - [anon_sym_STAR2] = ACTIONS(1615), - [anon_sym_and2] = ACTIONS(1689), - [anon_sym_xor2] = ACTIONS(1689), - [anon_sym_or2] = ACTIONS(1689), - [anon_sym_not_DASHin2] = ACTIONS(1689), - [anon_sym_has2] = ACTIONS(1689), - [anon_sym_not_DASHhas2] = ACTIONS(1689), - [anon_sym_starts_DASHwith2] = ACTIONS(1689), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1689), - [anon_sym_ends_DASHwith2] = ACTIONS(1689), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1689), - [anon_sym_EQ_EQ2] = ACTIONS(1689), - [anon_sym_BANG_EQ2] = ACTIONS(1689), - [anon_sym_LT2] = ACTIONS(1615), - [anon_sym_LT_EQ2] = ACTIONS(1689), - [anon_sym_GT_EQ2] = ACTIONS(1689), - [anon_sym_EQ_TILDE2] = ACTIONS(1689), - [anon_sym_BANG_TILDE2] = ACTIONS(1689), - [anon_sym_like2] = ACTIONS(1689), - [anon_sym_not_DASHlike2] = ACTIONS(1689), - [anon_sym_STAR_STAR2] = ACTIONS(1689), - [anon_sym_PLUS_PLUS2] = ACTIONS(1689), - [anon_sym_SLASH2] = ACTIONS(1615), - [anon_sym_mod2] = ACTIONS(1689), - [anon_sym_SLASH_SLASH2] = ACTIONS(1689), - [anon_sym_PLUS2] = ACTIONS(1615), - [anon_sym_bit_DASHshl2] = ACTIONS(1689), - [anon_sym_bit_DASHshr2] = ACTIONS(1689), - [anon_sym_bit_DASHand2] = ACTIONS(1689), - [anon_sym_bit_DASHxor2] = ACTIONS(1689), - [anon_sym_bit_DASHor2] = ACTIONS(1689), - [anon_sym_DOT_DOT2] = ACTIONS(1720), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1722), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1722), - [anon_sym_err_GT] = ACTIONS(1615), - [anon_sym_out_GT] = ACTIONS(1615), - [anon_sym_e_GT] = ACTIONS(1615), - [anon_sym_o_GT] = ACTIONS(1615), - [anon_sym_err_PLUSout_GT] = ACTIONS(1615), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), - [anon_sym_o_PLUSe_GT] = ACTIONS(1615), - [anon_sym_e_PLUSo_GT] = ACTIONS(1615), - [anon_sym_err_GT_GT] = ACTIONS(1689), - [anon_sym_out_GT_GT] = ACTIONS(1689), - [anon_sym_e_GT_GT] = ACTIONS(1689), - [anon_sym_o_GT_GT] = ACTIONS(1689), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), + [STATE(933)] = { + [sym_comment] = STATE(933), + [ts_builtin_sym_end] = ACTIONS(1574), + [anon_sym_in] = ACTIONS(1574), + [sym__newline] = ACTIONS(1574), + [anon_sym_SEMI] = ACTIONS(1574), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_err_GT_PIPE] = ACTIONS(1574), + [anon_sym_out_GT_PIPE] = ACTIONS(1574), + [anon_sym_e_GT_PIPE] = ACTIONS(1574), + [anon_sym_o_GT_PIPE] = ACTIONS(1574), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1574), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1574), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1574), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1574), + [anon_sym_GT2] = ACTIONS(1572), + [anon_sym_DASH2] = ACTIONS(1574), + [anon_sym_STAR2] = ACTIONS(1572), + [anon_sym_and2] = ACTIONS(1574), + [anon_sym_xor2] = ACTIONS(1574), + [anon_sym_or2] = ACTIONS(1574), + [anon_sym_not_DASHin2] = ACTIONS(1574), + [anon_sym_has2] = ACTIONS(1574), + [anon_sym_not_DASHhas2] = ACTIONS(1574), + [anon_sym_starts_DASHwith2] = ACTIONS(1574), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1574), + [anon_sym_ends_DASHwith2] = ACTIONS(1574), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1574), + [anon_sym_EQ_EQ2] = ACTIONS(1574), + [anon_sym_BANG_EQ2] = ACTIONS(1574), + [anon_sym_LT2] = ACTIONS(1572), + [anon_sym_LT_EQ2] = ACTIONS(1574), + [anon_sym_GT_EQ2] = ACTIONS(1574), + [anon_sym_EQ_TILDE2] = ACTIONS(1574), + [anon_sym_BANG_TILDE2] = ACTIONS(1574), + [anon_sym_like2] = ACTIONS(1574), + [anon_sym_not_DASHlike2] = ACTIONS(1574), + [anon_sym_STAR_STAR2] = ACTIONS(1574), + [anon_sym_PLUS_PLUS2] = ACTIONS(1574), + [anon_sym_SLASH2] = ACTIONS(1572), + [anon_sym_mod2] = ACTIONS(1574), + [anon_sym_SLASH_SLASH2] = ACTIONS(1574), + [anon_sym_PLUS2] = ACTIONS(1572), + [anon_sym_bit_DASHshl2] = ACTIONS(1574), + [anon_sym_bit_DASHshr2] = ACTIONS(1574), + [anon_sym_bit_DASHand2] = ACTIONS(1574), + [anon_sym_bit_DASHxor2] = ACTIONS(1574), + [anon_sym_bit_DASHor2] = ACTIONS(1574), + [anon_sym_DOT_DOT2] = ACTIONS(1572), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1574), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1574), + [anon_sym_err_GT] = ACTIONS(1572), + [anon_sym_out_GT] = ACTIONS(1572), + [anon_sym_e_GT] = ACTIONS(1572), + [anon_sym_o_GT] = ACTIONS(1572), + [anon_sym_err_PLUSout_GT] = ACTIONS(1572), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1572), + [anon_sym_o_PLUSe_GT] = ACTIONS(1572), + [anon_sym_e_PLUSo_GT] = ACTIONS(1572), + [anon_sym_err_GT_GT] = ACTIONS(1574), + [anon_sym_out_GT_GT] = ACTIONS(1574), + [anon_sym_e_GT_GT] = ACTIONS(1574), + [anon_sym_o_GT_GT] = ACTIONS(1574), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1574), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1574), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1574), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1574), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(913)] = { - [sym_comment] = STATE(913), + [STATE(934)] = { + [sym_comment] = STATE(934), [anon_sym_in] = ACTIONS(2062), [sym__newline] = ACTIONS(2062), [anon_sym_SEMI] = ACTIONS(2062), @@ -115730,77 +117214,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(914)] = { - [sym_comment] = STATE(914), - [anon_sym_in] = ACTIONS(1689), - [sym__newline] = ACTIONS(1689), - [anon_sym_SEMI] = ACTIONS(1689), - [anon_sym_PIPE] = ACTIONS(1689), - [anon_sym_err_GT_PIPE] = ACTIONS(1689), - [anon_sym_out_GT_PIPE] = ACTIONS(1689), - [anon_sym_e_GT_PIPE] = ACTIONS(1689), - [anon_sym_o_GT_PIPE] = ACTIONS(1689), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), - [anon_sym_RPAREN] = ACTIONS(1689), - [anon_sym_GT2] = ACTIONS(1615), - [anon_sym_DASH2] = ACTIONS(1689), - [anon_sym_RBRACE] = ACTIONS(1689), - [anon_sym_STAR2] = ACTIONS(1615), - [anon_sym_and2] = ACTIONS(1689), - [anon_sym_xor2] = ACTIONS(1689), - [anon_sym_or2] = ACTIONS(1689), - [anon_sym_not_DASHin2] = ACTIONS(1689), - [anon_sym_has2] = ACTIONS(1689), - [anon_sym_not_DASHhas2] = ACTIONS(1689), - [anon_sym_starts_DASHwith2] = ACTIONS(1689), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1689), - [anon_sym_ends_DASHwith2] = ACTIONS(1689), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1689), - [anon_sym_EQ_EQ2] = ACTIONS(1689), - [anon_sym_BANG_EQ2] = ACTIONS(1689), - [anon_sym_LT2] = ACTIONS(1615), - [anon_sym_LT_EQ2] = ACTIONS(1689), - [anon_sym_GT_EQ2] = ACTIONS(1689), - [anon_sym_EQ_TILDE2] = ACTIONS(1689), - [anon_sym_BANG_TILDE2] = ACTIONS(1689), - [anon_sym_like2] = ACTIONS(1689), - [anon_sym_not_DASHlike2] = ACTIONS(1689), - [anon_sym_LPAREN2] = ACTIONS(2554), - [anon_sym_STAR_STAR2] = ACTIONS(1689), - [anon_sym_PLUS_PLUS2] = ACTIONS(1689), - [anon_sym_SLASH2] = ACTIONS(1615), - [anon_sym_mod2] = ACTIONS(1689), - [anon_sym_SLASH_SLASH2] = ACTIONS(1689), - [anon_sym_PLUS2] = ACTIONS(1615), - [anon_sym_bit_DASHshl2] = ACTIONS(1689), - [anon_sym_bit_DASHshr2] = ACTIONS(1689), - [anon_sym_bit_DASHand2] = ACTIONS(1689), - [anon_sym_bit_DASHxor2] = ACTIONS(1689), - [anon_sym_bit_DASHor2] = ACTIONS(1689), - [anon_sym_err_GT] = ACTIONS(1615), - [anon_sym_out_GT] = ACTIONS(1615), - [anon_sym_e_GT] = ACTIONS(1615), - [anon_sym_o_GT] = ACTIONS(1615), - [anon_sym_err_PLUSout_GT] = ACTIONS(1615), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), - [anon_sym_o_PLUSe_GT] = ACTIONS(1615), - [anon_sym_e_PLUSo_GT] = ACTIONS(1615), - [anon_sym_err_GT_GT] = ACTIONS(1689), - [anon_sym_out_GT_GT] = ACTIONS(1689), - [anon_sym_e_GT_GT] = ACTIONS(1689), - [anon_sym_o_GT_GT] = ACTIONS(1689), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), - [sym__unquoted_pattern] = ACTIONS(2556), + [STATE(935)] = { + [sym_comment] = STATE(935), + [ts_builtin_sym_end] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [sym__newline] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_err_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_GT_PIPE] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1768), + [anon_sym_GT2] = ACTIONS(1770), + [anon_sym_DASH2] = ACTIONS(1768), + [anon_sym_STAR2] = ACTIONS(1770), + [anon_sym_and2] = ACTIONS(1768), + [anon_sym_xor2] = ACTIONS(1768), + [anon_sym_or2] = ACTIONS(1768), + [anon_sym_not_DASHin2] = ACTIONS(1768), + [anon_sym_has2] = ACTIONS(1768), + [anon_sym_not_DASHhas2] = ACTIONS(1768), + [anon_sym_starts_DASHwith2] = ACTIONS(1768), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1768), + [anon_sym_ends_DASHwith2] = ACTIONS(1768), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1768), + [anon_sym_EQ_EQ2] = ACTIONS(1768), + [anon_sym_BANG_EQ2] = ACTIONS(1768), + [anon_sym_LT2] = ACTIONS(1770), + [anon_sym_LT_EQ2] = ACTIONS(1768), + [anon_sym_GT_EQ2] = ACTIONS(1768), + [anon_sym_EQ_TILDE2] = ACTIONS(1768), + [anon_sym_BANG_TILDE2] = ACTIONS(1768), + [anon_sym_like2] = ACTIONS(1768), + [anon_sym_not_DASHlike2] = ACTIONS(1768), + [anon_sym_STAR_STAR2] = ACTIONS(1768), + [anon_sym_PLUS_PLUS2] = ACTIONS(1768), + [anon_sym_SLASH2] = ACTIONS(1770), + [anon_sym_mod2] = ACTIONS(1768), + [anon_sym_SLASH_SLASH2] = ACTIONS(1768), + [anon_sym_PLUS2] = ACTIONS(1770), + [anon_sym_bit_DASHshl2] = ACTIONS(1768), + [anon_sym_bit_DASHshr2] = ACTIONS(1768), + [anon_sym_bit_DASHand2] = ACTIONS(1768), + [anon_sym_bit_DASHxor2] = ACTIONS(1768), + [anon_sym_bit_DASHor2] = ACTIONS(1768), + [anon_sym_DOT_DOT2] = ACTIONS(1770), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1768), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1768), + [anon_sym_err_GT] = ACTIONS(1770), + [anon_sym_out_GT] = ACTIONS(1770), + [anon_sym_e_GT] = ACTIONS(1770), + [anon_sym_o_GT] = ACTIONS(1770), + [anon_sym_err_PLUSout_GT] = ACTIONS(1770), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1770), + [anon_sym_o_PLUSe_GT] = ACTIONS(1770), + [anon_sym_e_PLUSo_GT] = ACTIONS(1770), + [anon_sym_err_GT_GT] = ACTIONS(1768), + [anon_sym_out_GT_GT] = ACTIONS(1768), + [anon_sym_e_GT_GT] = ACTIONS(1768), + [anon_sym_o_GT_GT] = ACTIONS(1768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1768), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(915)] = { - [sym_comment] = STATE(915), + [STATE(936)] = { + [sym_comment] = STATE(936), [anon_sym_in] = ACTIONS(2062), [sym__newline] = ACTIONS(2062), [anon_sym_SEMI] = ACTIONS(2062), @@ -115868,77 +117352,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(916)] = { - [sym_comment] = STATE(916), - [anon_sym_in] = ACTIONS(2558), - [sym__newline] = ACTIONS(2558), - [anon_sym_SEMI] = ACTIONS(2558), - [anon_sym_PIPE] = ACTIONS(2558), - [anon_sym_err_GT_PIPE] = ACTIONS(2558), - [anon_sym_out_GT_PIPE] = ACTIONS(2558), - [anon_sym_e_GT_PIPE] = ACTIONS(2558), - [anon_sym_o_GT_PIPE] = ACTIONS(2558), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2558), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2558), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2558), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2558), - [anon_sym_RPAREN] = ACTIONS(2558), - [anon_sym_GT2] = ACTIONS(2560), - [anon_sym_DASH2] = ACTIONS(2558), - [anon_sym_LBRACE] = ACTIONS(2558), - [anon_sym_RBRACE] = ACTIONS(2558), - [anon_sym_EQ_GT] = ACTIONS(2558), - [anon_sym_STAR2] = ACTIONS(2560), - [anon_sym_and2] = ACTIONS(2558), - [anon_sym_xor2] = ACTIONS(2558), - [anon_sym_or2] = ACTIONS(2558), - [anon_sym_not_DASHin2] = ACTIONS(2558), - [anon_sym_has2] = ACTIONS(2558), - [anon_sym_not_DASHhas2] = ACTIONS(2558), - [anon_sym_starts_DASHwith2] = ACTIONS(2558), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2558), - [anon_sym_ends_DASHwith2] = ACTIONS(2558), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2558), - [anon_sym_EQ_EQ2] = ACTIONS(2558), - [anon_sym_BANG_EQ2] = ACTIONS(2558), - [anon_sym_LT2] = ACTIONS(2560), - [anon_sym_LT_EQ2] = ACTIONS(2558), - [anon_sym_GT_EQ2] = ACTIONS(2558), - [anon_sym_EQ_TILDE2] = ACTIONS(2558), - [anon_sym_BANG_TILDE2] = ACTIONS(2558), - [anon_sym_like2] = ACTIONS(2558), - [anon_sym_not_DASHlike2] = ACTIONS(2558), - [anon_sym_STAR_STAR2] = ACTIONS(2558), - [anon_sym_PLUS_PLUS2] = ACTIONS(2558), - [anon_sym_SLASH2] = ACTIONS(2560), - [anon_sym_mod2] = ACTIONS(2558), - [anon_sym_SLASH_SLASH2] = ACTIONS(2558), - [anon_sym_PLUS2] = ACTIONS(2560), - [anon_sym_bit_DASHshl2] = ACTIONS(2558), - [anon_sym_bit_DASHshr2] = ACTIONS(2558), - [anon_sym_bit_DASHand2] = ACTIONS(2558), - [anon_sym_bit_DASHxor2] = ACTIONS(2558), - [anon_sym_bit_DASHor2] = ACTIONS(2558), - [anon_sym_err_GT] = ACTIONS(2560), - [anon_sym_out_GT] = ACTIONS(2560), - [anon_sym_e_GT] = ACTIONS(2560), - [anon_sym_o_GT] = ACTIONS(2560), - [anon_sym_err_PLUSout_GT] = ACTIONS(2560), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2560), - [anon_sym_o_PLUSe_GT] = ACTIONS(2560), - [anon_sym_e_PLUSo_GT] = ACTIONS(2560), - [anon_sym_err_GT_GT] = ACTIONS(2558), - [anon_sym_out_GT_GT] = ACTIONS(2558), - [anon_sym_e_GT_GT] = ACTIONS(2558), - [anon_sym_o_GT_GT] = ACTIONS(2558), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2558), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2558), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2558), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2558), + [STATE(937)] = { + [sym_comment] = STATE(937), + [anon_sym_in] = ACTIONS(1872), + [sym__newline] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1872), + [anon_sym_PIPE] = ACTIONS(1872), + [anon_sym_err_GT_PIPE] = ACTIONS(1872), + [anon_sym_out_GT_PIPE] = ACTIONS(1872), + [anon_sym_e_GT_PIPE] = ACTIONS(1872), + [anon_sym_o_GT_PIPE] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1872), + [anon_sym_RPAREN] = ACTIONS(1872), + [anon_sym_GT2] = ACTIONS(1874), + [anon_sym_DASH2] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_EQ_GT] = ACTIONS(1872), + [anon_sym_STAR2] = ACTIONS(1874), + [anon_sym_and2] = ACTIONS(1872), + [anon_sym_xor2] = ACTIONS(1872), + [anon_sym_or2] = ACTIONS(1872), + [anon_sym_not_DASHin2] = ACTIONS(1872), + [anon_sym_has2] = ACTIONS(1872), + [anon_sym_not_DASHhas2] = ACTIONS(1872), + [anon_sym_starts_DASHwith2] = ACTIONS(1872), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1872), + [anon_sym_ends_DASHwith2] = ACTIONS(1872), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1872), + [anon_sym_EQ_EQ2] = ACTIONS(1872), + [anon_sym_BANG_EQ2] = ACTIONS(1872), + [anon_sym_LT2] = ACTIONS(1874), + [anon_sym_LT_EQ2] = ACTIONS(1872), + [anon_sym_GT_EQ2] = ACTIONS(1872), + [anon_sym_EQ_TILDE2] = ACTIONS(1872), + [anon_sym_BANG_TILDE2] = ACTIONS(1872), + [anon_sym_like2] = ACTIONS(1872), + [anon_sym_not_DASHlike2] = ACTIONS(1872), + [anon_sym_STAR_STAR2] = ACTIONS(1872), + [anon_sym_PLUS_PLUS2] = ACTIONS(1872), + [anon_sym_SLASH2] = ACTIONS(1874), + [anon_sym_mod2] = ACTIONS(1872), + [anon_sym_SLASH_SLASH2] = ACTIONS(1872), + [anon_sym_PLUS2] = ACTIONS(1874), + [anon_sym_bit_DASHshl2] = ACTIONS(1872), + [anon_sym_bit_DASHshr2] = ACTIONS(1872), + [anon_sym_bit_DASHand2] = ACTIONS(1872), + [anon_sym_bit_DASHxor2] = ACTIONS(1872), + [anon_sym_bit_DASHor2] = ACTIONS(1872), + [anon_sym_err_GT] = ACTIONS(1874), + [anon_sym_out_GT] = ACTIONS(1874), + [anon_sym_e_GT] = ACTIONS(1874), + [anon_sym_o_GT] = ACTIONS(1874), + [anon_sym_err_PLUSout_GT] = ACTIONS(1874), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1874), + [anon_sym_o_PLUSe_GT] = ACTIONS(1874), + [anon_sym_e_PLUSo_GT] = ACTIONS(1874), + [anon_sym_err_GT_GT] = ACTIONS(1872), + [anon_sym_out_GT_GT] = ACTIONS(1872), + [anon_sym_e_GT_GT] = ACTIONS(1872), + [anon_sym_o_GT_GT] = ACTIONS(1872), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1872), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1872), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1872), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1872), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(917)] = { - [sym_comment] = STATE(917), + [STATE(938)] = { + [sym_comment] = STATE(938), + [anon_sym_in] = ACTIONS(2583), + [sym__newline] = ACTIONS(2583), + [anon_sym_SEMI] = ACTIONS(2583), + [anon_sym_PIPE] = ACTIONS(2583), + [anon_sym_err_GT_PIPE] = ACTIONS(2583), + [anon_sym_out_GT_PIPE] = ACTIONS(2583), + [anon_sym_e_GT_PIPE] = ACTIONS(2583), + [anon_sym_o_GT_PIPE] = ACTIONS(2583), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2583), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2583), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2583), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2583), + [anon_sym_RPAREN] = ACTIONS(2583), + [anon_sym_GT2] = ACTIONS(2585), + [anon_sym_DASH2] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2583), + [anon_sym_RBRACE] = ACTIONS(2583), + [anon_sym_EQ_GT] = ACTIONS(2583), + [anon_sym_STAR2] = ACTIONS(2585), + [anon_sym_and2] = ACTIONS(2583), + [anon_sym_xor2] = ACTIONS(2583), + [anon_sym_or2] = ACTIONS(2583), + [anon_sym_not_DASHin2] = ACTIONS(2583), + [anon_sym_has2] = ACTIONS(2583), + [anon_sym_not_DASHhas2] = ACTIONS(2583), + [anon_sym_starts_DASHwith2] = ACTIONS(2583), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2583), + [anon_sym_ends_DASHwith2] = ACTIONS(2583), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2583), + [anon_sym_EQ_EQ2] = ACTIONS(2583), + [anon_sym_BANG_EQ2] = ACTIONS(2583), + [anon_sym_LT2] = ACTIONS(2585), + [anon_sym_LT_EQ2] = ACTIONS(2583), + [anon_sym_GT_EQ2] = ACTIONS(2583), + [anon_sym_EQ_TILDE2] = ACTIONS(2583), + [anon_sym_BANG_TILDE2] = ACTIONS(2583), + [anon_sym_like2] = ACTIONS(2583), + [anon_sym_not_DASHlike2] = ACTIONS(2583), + [anon_sym_STAR_STAR2] = ACTIONS(2583), + [anon_sym_PLUS_PLUS2] = ACTIONS(2583), + [anon_sym_SLASH2] = ACTIONS(2585), + [anon_sym_mod2] = ACTIONS(2583), + [anon_sym_SLASH_SLASH2] = ACTIONS(2583), + [anon_sym_PLUS2] = ACTIONS(2585), + [anon_sym_bit_DASHshl2] = ACTIONS(2583), + [anon_sym_bit_DASHshr2] = ACTIONS(2583), + [anon_sym_bit_DASHand2] = ACTIONS(2583), + [anon_sym_bit_DASHxor2] = ACTIONS(2583), + [anon_sym_bit_DASHor2] = ACTIONS(2583), + [anon_sym_err_GT] = ACTIONS(2585), + [anon_sym_out_GT] = ACTIONS(2585), + [anon_sym_e_GT] = ACTIONS(2585), + [anon_sym_o_GT] = ACTIONS(2585), + [anon_sym_err_PLUSout_GT] = ACTIONS(2585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2585), + [anon_sym_o_PLUSe_GT] = ACTIONS(2585), + [anon_sym_e_PLUSo_GT] = ACTIONS(2585), + [anon_sym_err_GT_GT] = ACTIONS(2583), + [anon_sym_out_GT_GT] = ACTIONS(2583), + [anon_sym_e_GT_GT] = ACTIONS(2583), + [anon_sym_o_GT_GT] = ACTIONS(2583), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2583), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2583), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2583), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2583), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(939)] = { + [sym_comment] = STATE(939), [anon_sym_in] = ACTIONS(2062), [sym__newline] = ACTIONS(2062), [anon_sym_SEMI] = ACTIONS(2062), @@ -116006,2833 +117559,1315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(918)] = { - [sym_comment] = STATE(918), - [anon_sym_in] = ACTIONS(2562), - [sym__newline] = ACTIONS(2562), - [anon_sym_SEMI] = ACTIONS(2562), - [anon_sym_PIPE] = ACTIONS(2562), - [anon_sym_err_GT_PIPE] = ACTIONS(2562), - [anon_sym_out_GT_PIPE] = ACTIONS(2562), - [anon_sym_e_GT_PIPE] = ACTIONS(2562), - [anon_sym_o_GT_PIPE] = ACTIONS(2562), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2562), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2562), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2562), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2562), - [anon_sym_RPAREN] = ACTIONS(2562), - [anon_sym_GT2] = ACTIONS(2564), - [anon_sym_DASH2] = ACTIONS(2562), - [anon_sym_RBRACE] = ACTIONS(2562), - [anon_sym_STAR2] = ACTIONS(2564), - [anon_sym_and2] = ACTIONS(2562), - [anon_sym_xor2] = ACTIONS(2562), - [anon_sym_or2] = ACTIONS(2562), - [anon_sym_not_DASHin2] = ACTIONS(2562), - [anon_sym_has2] = ACTIONS(2562), - [anon_sym_not_DASHhas2] = ACTIONS(2562), - [anon_sym_starts_DASHwith2] = ACTIONS(2562), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2562), - [anon_sym_ends_DASHwith2] = ACTIONS(2562), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2562), - [anon_sym_EQ_EQ2] = ACTIONS(2562), - [anon_sym_BANG_EQ2] = ACTIONS(2562), - [anon_sym_LT2] = ACTIONS(2564), - [anon_sym_LT_EQ2] = ACTIONS(2562), - [anon_sym_GT_EQ2] = ACTIONS(2562), - [anon_sym_EQ_TILDE2] = ACTIONS(2562), - [anon_sym_BANG_TILDE2] = ACTIONS(2562), - [anon_sym_like2] = ACTIONS(2562), - [anon_sym_not_DASHlike2] = ACTIONS(2562), - [anon_sym_LPAREN2] = ACTIONS(2566), - [anon_sym_STAR_STAR2] = ACTIONS(2562), - [anon_sym_PLUS_PLUS2] = ACTIONS(2562), - [anon_sym_SLASH2] = ACTIONS(2564), - [anon_sym_mod2] = ACTIONS(2562), - [anon_sym_SLASH_SLASH2] = ACTIONS(2562), - [anon_sym_PLUS2] = ACTIONS(2564), - [anon_sym_bit_DASHshl2] = ACTIONS(2562), - [anon_sym_bit_DASHshr2] = ACTIONS(2562), - [anon_sym_bit_DASHand2] = ACTIONS(2562), - [anon_sym_bit_DASHxor2] = ACTIONS(2562), - [anon_sym_bit_DASHor2] = ACTIONS(2562), - [anon_sym_err_GT] = ACTIONS(2564), - [anon_sym_out_GT] = ACTIONS(2564), - [anon_sym_e_GT] = ACTIONS(2564), - [anon_sym_o_GT] = ACTIONS(2564), - [anon_sym_err_PLUSout_GT] = ACTIONS(2564), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2564), - [anon_sym_o_PLUSe_GT] = ACTIONS(2564), - [anon_sym_e_PLUSo_GT] = ACTIONS(2564), - [anon_sym_err_GT_GT] = ACTIONS(2562), - [anon_sym_out_GT_GT] = ACTIONS(2562), - [anon_sym_e_GT_GT] = ACTIONS(2562), - [anon_sym_o_GT_GT] = ACTIONS(2562), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2562), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2562), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2562), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2562), - [sym__unquoted_pattern] = ACTIONS(2568), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(919)] = { - [sym_comment] = STATE(919), - [ts_builtin_sym_end] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(2074), - [sym__newline] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_err_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_GT_PIPE] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2076), - [anon_sym_GT2] = ACTIONS(2078), - [anon_sym_DASH2] = ACTIONS(2074), - [anon_sym_STAR2] = ACTIONS(2078), - [anon_sym_and2] = ACTIONS(2074), - [anon_sym_xor2] = ACTIONS(2074), - [anon_sym_or2] = ACTIONS(2074), - [anon_sym_not_DASHin2] = ACTIONS(2074), - [anon_sym_has2] = ACTIONS(2074), - [anon_sym_not_DASHhas2] = ACTIONS(2074), - [anon_sym_starts_DASHwith2] = ACTIONS(2074), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2074), - [anon_sym_ends_DASHwith2] = ACTIONS(2074), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2074), - [anon_sym_EQ_EQ2] = ACTIONS(2074), - [anon_sym_BANG_EQ2] = ACTIONS(2074), - [anon_sym_LT2] = ACTIONS(2078), - [anon_sym_LT_EQ2] = ACTIONS(2074), - [anon_sym_GT_EQ2] = ACTIONS(2074), - [anon_sym_EQ_TILDE2] = ACTIONS(2074), - [anon_sym_BANG_TILDE2] = ACTIONS(2074), - [anon_sym_like2] = ACTIONS(2074), - [anon_sym_not_DASHlike2] = ACTIONS(2074), - [anon_sym_STAR_STAR2] = ACTIONS(2074), - [anon_sym_PLUS_PLUS2] = ACTIONS(2074), - [anon_sym_SLASH2] = ACTIONS(2078), - [anon_sym_mod2] = ACTIONS(2074), - [anon_sym_SLASH_SLASH2] = ACTIONS(2074), - [anon_sym_PLUS2] = ACTIONS(2078), - [anon_sym_bit_DASHshl2] = ACTIONS(2074), - [anon_sym_bit_DASHshr2] = ACTIONS(2074), - [anon_sym_bit_DASHand2] = ACTIONS(2074), - [anon_sym_bit_DASHxor2] = ACTIONS(2074), - [anon_sym_bit_DASHor2] = ACTIONS(2074), - [anon_sym_DOT_DOT2] = ACTIONS(1720), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1722), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1722), - [anon_sym_err_GT] = ACTIONS(2080), - [anon_sym_out_GT] = ACTIONS(2080), - [anon_sym_e_GT] = ACTIONS(2080), - [anon_sym_o_GT] = ACTIONS(2080), - [anon_sym_err_PLUSout_GT] = ACTIONS(2080), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2080), - [anon_sym_o_PLUSe_GT] = ACTIONS(2080), - [anon_sym_e_PLUSo_GT] = ACTIONS(2080), - [anon_sym_err_GT_GT] = ACTIONS(2076), - [anon_sym_out_GT_GT] = ACTIONS(2076), - [anon_sym_e_GT_GT] = ACTIONS(2076), - [anon_sym_o_GT_GT] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(920)] = { - [sym_comment] = STATE(920), - [anon_sym_in] = ACTIONS(994), - [sym__newline] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(994), - [anon_sym_err_GT_PIPE] = ACTIONS(994), - [anon_sym_out_GT_PIPE] = ACTIONS(994), - [anon_sym_e_GT_PIPE] = ACTIONS(994), - [anon_sym_o_GT_PIPE] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), - [anon_sym_RPAREN] = ACTIONS(994), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(994), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(994), - [anon_sym_xor2] = ACTIONS(994), - [anon_sym_or2] = ACTIONS(994), - [anon_sym_not_DASHin2] = ACTIONS(994), - [anon_sym_has2] = ACTIONS(994), - [anon_sym_not_DASHhas2] = ACTIONS(994), - [anon_sym_starts_DASHwith2] = ACTIONS(994), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), - [anon_sym_ends_DASHwith2] = ACTIONS(994), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), - [anon_sym_EQ_EQ2] = ACTIONS(994), - [anon_sym_BANG_EQ2] = ACTIONS(994), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(994), - [anon_sym_GT_EQ2] = ACTIONS(994), - [anon_sym_EQ_TILDE2] = ACTIONS(994), - [anon_sym_BANG_TILDE2] = ACTIONS(994), - [anon_sym_like2] = ACTIONS(994), - [anon_sym_not_DASHlike2] = ACTIONS(994), - [anon_sym_LPAREN2] = ACTIONS(2570), - [anon_sym_STAR_STAR2] = ACTIONS(994), - [anon_sym_PLUS_PLUS2] = ACTIONS(994), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(994), - [anon_sym_SLASH_SLASH2] = ACTIONS(994), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(994), - [anon_sym_bit_DASHshr2] = ACTIONS(994), - [anon_sym_bit_DASHand2] = ACTIONS(994), - [anon_sym_bit_DASHxor2] = ACTIONS(994), - [anon_sym_bit_DASHor2] = ACTIONS(994), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(994), - [anon_sym_out_GT_GT] = ACTIONS(994), - [anon_sym_e_GT_GT] = ACTIONS(994), - [anon_sym_o_GT_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), - [sym__unquoted_pattern] = ACTIONS(2572), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(921)] = { - [sym_comment] = STATE(921), - [anon_sym_in] = ACTIONS(2574), - [sym__newline] = ACTIONS(2574), - [anon_sym_SEMI] = ACTIONS(2574), - [anon_sym_PIPE] = ACTIONS(2574), - [anon_sym_err_GT_PIPE] = ACTIONS(2574), - [anon_sym_out_GT_PIPE] = ACTIONS(2574), - [anon_sym_e_GT_PIPE] = ACTIONS(2574), - [anon_sym_o_GT_PIPE] = ACTIONS(2574), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2574), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2574), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2574), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2574), - [anon_sym_RPAREN] = ACTIONS(2574), - [anon_sym_GT2] = ACTIONS(2576), - [anon_sym_DASH2] = ACTIONS(2574), - [anon_sym_LBRACE] = ACTIONS(2574), - [anon_sym_RBRACE] = ACTIONS(2574), - [anon_sym_EQ_GT] = ACTIONS(2574), - [anon_sym_STAR2] = ACTIONS(2576), - [anon_sym_and2] = ACTIONS(2574), - [anon_sym_xor2] = ACTIONS(2574), - [anon_sym_or2] = ACTIONS(2574), - [anon_sym_not_DASHin2] = ACTIONS(2574), - [anon_sym_has2] = ACTIONS(2574), - [anon_sym_not_DASHhas2] = ACTIONS(2574), - [anon_sym_starts_DASHwith2] = ACTIONS(2574), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2574), - [anon_sym_ends_DASHwith2] = ACTIONS(2574), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2574), - [anon_sym_EQ_EQ2] = ACTIONS(2574), - [anon_sym_BANG_EQ2] = ACTIONS(2574), - [anon_sym_LT2] = ACTIONS(2576), - [anon_sym_LT_EQ2] = ACTIONS(2574), - [anon_sym_GT_EQ2] = ACTIONS(2574), - [anon_sym_EQ_TILDE2] = ACTIONS(2574), - [anon_sym_BANG_TILDE2] = ACTIONS(2574), - [anon_sym_like2] = ACTIONS(2574), - [anon_sym_not_DASHlike2] = ACTIONS(2574), - [anon_sym_STAR_STAR2] = ACTIONS(2574), - [anon_sym_PLUS_PLUS2] = ACTIONS(2574), - [anon_sym_SLASH2] = ACTIONS(2576), - [anon_sym_mod2] = ACTIONS(2574), - [anon_sym_SLASH_SLASH2] = ACTIONS(2574), - [anon_sym_PLUS2] = ACTIONS(2576), - [anon_sym_bit_DASHshl2] = ACTIONS(2574), - [anon_sym_bit_DASHshr2] = ACTIONS(2574), - [anon_sym_bit_DASHand2] = ACTIONS(2574), - [anon_sym_bit_DASHxor2] = ACTIONS(2574), - [anon_sym_bit_DASHor2] = ACTIONS(2574), - [anon_sym_err_GT] = ACTIONS(2576), - [anon_sym_out_GT] = ACTIONS(2576), - [anon_sym_e_GT] = ACTIONS(2576), - [anon_sym_o_GT] = ACTIONS(2576), - [anon_sym_err_PLUSout_GT] = ACTIONS(2576), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2576), - [anon_sym_o_PLUSe_GT] = ACTIONS(2576), - [anon_sym_e_PLUSo_GT] = ACTIONS(2576), - [anon_sym_err_GT_GT] = ACTIONS(2574), - [anon_sym_out_GT_GT] = ACTIONS(2574), - [anon_sym_e_GT_GT] = ACTIONS(2574), - [anon_sym_o_GT_GT] = ACTIONS(2574), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2574), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2574), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2574), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2574), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(922)] = { - [sym_comment] = STATE(922), - [anon_sym_in] = ACTIONS(1689), - [sym__newline] = ACTIONS(1689), - [anon_sym_SEMI] = ACTIONS(1689), - [anon_sym_PIPE] = ACTIONS(1689), - [anon_sym_err_GT_PIPE] = ACTIONS(1689), - [anon_sym_out_GT_PIPE] = ACTIONS(1689), - [anon_sym_e_GT_PIPE] = ACTIONS(1689), - [anon_sym_o_GT_PIPE] = ACTIONS(1689), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), - [anon_sym_RPAREN] = ACTIONS(1689), - [anon_sym_GT2] = ACTIONS(1615), - [anon_sym_DASH2] = ACTIONS(1689), - [anon_sym_LBRACE] = ACTIONS(1689), - [anon_sym_RBRACE] = ACTIONS(1689), - [anon_sym_EQ_GT] = ACTIONS(1689), - [anon_sym_STAR2] = ACTIONS(1615), - [anon_sym_and2] = ACTIONS(1689), - [anon_sym_xor2] = ACTIONS(1689), - [anon_sym_or2] = ACTIONS(1689), - [anon_sym_not_DASHin2] = ACTIONS(1689), - [anon_sym_has2] = ACTIONS(1689), - [anon_sym_not_DASHhas2] = ACTIONS(1689), - [anon_sym_starts_DASHwith2] = ACTIONS(1689), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1689), - [anon_sym_ends_DASHwith2] = ACTIONS(1689), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1689), - [anon_sym_EQ_EQ2] = ACTIONS(1689), - [anon_sym_BANG_EQ2] = ACTIONS(1689), - [anon_sym_LT2] = ACTIONS(1615), - [anon_sym_LT_EQ2] = ACTIONS(1689), - [anon_sym_GT_EQ2] = ACTIONS(1689), - [anon_sym_EQ_TILDE2] = ACTIONS(1689), - [anon_sym_BANG_TILDE2] = ACTIONS(1689), - [anon_sym_like2] = ACTIONS(1689), - [anon_sym_not_DASHlike2] = ACTIONS(1689), - [anon_sym_STAR_STAR2] = ACTIONS(1689), - [anon_sym_PLUS_PLUS2] = ACTIONS(1689), - [anon_sym_SLASH2] = ACTIONS(1615), - [anon_sym_mod2] = ACTIONS(1689), - [anon_sym_SLASH_SLASH2] = ACTIONS(1689), - [anon_sym_PLUS2] = ACTIONS(1615), - [anon_sym_bit_DASHshl2] = ACTIONS(1689), - [anon_sym_bit_DASHshr2] = ACTIONS(1689), - [anon_sym_bit_DASHand2] = ACTIONS(1689), - [anon_sym_bit_DASHxor2] = ACTIONS(1689), - [anon_sym_bit_DASHor2] = ACTIONS(1689), - [anon_sym_err_GT] = ACTIONS(1615), - [anon_sym_out_GT] = ACTIONS(1615), - [anon_sym_e_GT] = ACTIONS(1615), - [anon_sym_o_GT] = ACTIONS(1615), - [anon_sym_err_PLUSout_GT] = ACTIONS(1615), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), - [anon_sym_o_PLUSe_GT] = ACTIONS(1615), - [anon_sym_e_PLUSo_GT] = ACTIONS(1615), - [anon_sym_err_GT_GT] = ACTIONS(1689), - [anon_sym_out_GT_GT] = ACTIONS(1689), - [anon_sym_e_GT_GT] = ACTIONS(1689), - [anon_sym_o_GT_GT] = ACTIONS(1689), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(923)] = { - [sym_comment] = STATE(923), - [anon_sym_in] = ACTIONS(1012), - [sym__newline] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1012), - [anon_sym_PIPE] = ACTIONS(1012), - [anon_sym_err_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_GT_PIPE] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), - [anon_sym_RPAREN] = ACTIONS(1012), - [anon_sym_GT2] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1012), - [anon_sym_RBRACE] = ACTIONS(1012), - [anon_sym_STAR2] = ACTIONS(1004), - [anon_sym_and2] = ACTIONS(1012), - [anon_sym_xor2] = ACTIONS(1012), - [anon_sym_or2] = ACTIONS(1012), - [anon_sym_not_DASHin2] = ACTIONS(1012), - [anon_sym_has2] = ACTIONS(1012), - [anon_sym_not_DASHhas2] = ACTIONS(1012), - [anon_sym_starts_DASHwith2] = ACTIONS(1012), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1012), - [anon_sym_ends_DASHwith2] = ACTIONS(1012), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1012), - [anon_sym_EQ_EQ2] = ACTIONS(1012), - [anon_sym_BANG_EQ2] = ACTIONS(1012), - [anon_sym_LT2] = ACTIONS(1004), - [anon_sym_LT_EQ2] = ACTIONS(1012), - [anon_sym_GT_EQ2] = ACTIONS(1012), - [anon_sym_EQ_TILDE2] = ACTIONS(1012), - [anon_sym_BANG_TILDE2] = ACTIONS(1012), - [anon_sym_like2] = ACTIONS(1012), - [anon_sym_not_DASHlike2] = ACTIONS(1012), - [anon_sym_LPAREN2] = ACTIONS(2570), - [anon_sym_STAR_STAR2] = ACTIONS(1012), - [anon_sym_PLUS_PLUS2] = ACTIONS(1012), - [anon_sym_SLASH2] = ACTIONS(1004), - [anon_sym_mod2] = ACTIONS(1012), - [anon_sym_SLASH_SLASH2] = ACTIONS(1012), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_bit_DASHshl2] = ACTIONS(1012), - [anon_sym_bit_DASHshr2] = ACTIONS(1012), - [anon_sym_bit_DASHand2] = ACTIONS(1012), - [anon_sym_bit_DASHxor2] = ACTIONS(1012), - [anon_sym_bit_DASHor2] = ACTIONS(1012), - [anon_sym_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(1012), - [anon_sym_out_GT_GT] = ACTIONS(1012), - [anon_sym_e_GT_GT] = ACTIONS(1012), - [anon_sym_o_GT_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), - [sym__unquoted_pattern] = ACTIONS(2572), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(924)] = { - [sym_comment] = STATE(924), - [anon_sym_in] = ACTIONS(1952), - [sym__newline] = ACTIONS(1952), - [anon_sym_SEMI] = ACTIONS(1952), - [anon_sym_PIPE] = ACTIONS(1952), - [anon_sym_err_GT_PIPE] = ACTIONS(1952), - [anon_sym_out_GT_PIPE] = ACTIONS(1952), - [anon_sym_e_GT_PIPE] = ACTIONS(1952), - [anon_sym_o_GT_PIPE] = ACTIONS(1952), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1952), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1952), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1952), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1952), - [anon_sym_RPAREN] = ACTIONS(1952), - [anon_sym_GT2] = ACTIONS(1954), - [anon_sym_DASH2] = ACTIONS(1952), - [anon_sym_LBRACE] = ACTIONS(1952), - [anon_sym_RBRACE] = ACTIONS(1952), - [anon_sym_EQ_GT] = ACTIONS(1952), - [anon_sym_STAR2] = ACTIONS(1954), - [anon_sym_and2] = ACTIONS(1952), - [anon_sym_xor2] = ACTIONS(1952), - [anon_sym_or2] = ACTIONS(1952), - [anon_sym_not_DASHin2] = ACTIONS(1952), - [anon_sym_has2] = ACTIONS(1952), - [anon_sym_not_DASHhas2] = ACTIONS(1952), - [anon_sym_starts_DASHwith2] = ACTIONS(1952), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1952), - [anon_sym_ends_DASHwith2] = ACTIONS(1952), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1952), - [anon_sym_EQ_EQ2] = ACTIONS(1952), - [anon_sym_BANG_EQ2] = ACTIONS(1952), - [anon_sym_LT2] = ACTIONS(1954), - [anon_sym_LT_EQ2] = ACTIONS(1952), - [anon_sym_GT_EQ2] = ACTIONS(1952), - [anon_sym_EQ_TILDE2] = ACTIONS(1952), - [anon_sym_BANG_TILDE2] = ACTIONS(1952), - [anon_sym_like2] = ACTIONS(1952), - [anon_sym_not_DASHlike2] = ACTIONS(1952), - [anon_sym_STAR_STAR2] = ACTIONS(1952), - [anon_sym_PLUS_PLUS2] = ACTIONS(1952), - [anon_sym_SLASH2] = ACTIONS(1954), - [anon_sym_mod2] = ACTIONS(1952), - [anon_sym_SLASH_SLASH2] = ACTIONS(1952), - [anon_sym_PLUS2] = ACTIONS(1954), - [anon_sym_bit_DASHshl2] = ACTIONS(1952), - [anon_sym_bit_DASHshr2] = ACTIONS(1952), - [anon_sym_bit_DASHand2] = ACTIONS(1952), - [anon_sym_bit_DASHxor2] = ACTIONS(1952), - [anon_sym_bit_DASHor2] = ACTIONS(1952), - [anon_sym_err_GT] = ACTIONS(1954), - [anon_sym_out_GT] = ACTIONS(1954), - [anon_sym_e_GT] = ACTIONS(1954), - [anon_sym_o_GT] = ACTIONS(1954), - [anon_sym_err_PLUSout_GT] = ACTIONS(1954), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1954), - [anon_sym_o_PLUSe_GT] = ACTIONS(1954), - [anon_sym_e_PLUSo_GT] = ACTIONS(1954), - [anon_sym_err_GT_GT] = ACTIONS(1952), - [anon_sym_out_GT_GT] = ACTIONS(1952), - [anon_sym_e_GT_GT] = ACTIONS(1952), - [anon_sym_o_GT_GT] = ACTIONS(1952), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1952), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1952), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1952), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1952), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(925)] = { - [sym_comment] = STATE(925), - [ts_builtin_sym_end] = ACTIONS(2074), - [anon_sym_in] = ACTIONS(2074), - [sym__newline] = ACTIONS(2074), - [anon_sym_SEMI] = ACTIONS(2074), - [anon_sym_PIPE] = ACTIONS(2074), - [anon_sym_err_GT_PIPE] = ACTIONS(2074), - [anon_sym_out_GT_PIPE] = ACTIONS(2074), - [anon_sym_e_GT_PIPE] = ACTIONS(2074), - [anon_sym_o_GT_PIPE] = ACTIONS(2074), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2074), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2074), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2074), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2074), - [anon_sym_GT2] = ACTIONS(2078), - [anon_sym_DASH2] = ACTIONS(2074), - [anon_sym_STAR2] = ACTIONS(2078), - [anon_sym_and2] = ACTIONS(2074), - [anon_sym_xor2] = ACTIONS(2074), - [anon_sym_or2] = ACTIONS(2074), - [anon_sym_not_DASHin2] = ACTIONS(2074), - [anon_sym_has2] = ACTIONS(2074), - [anon_sym_not_DASHhas2] = ACTIONS(2074), - [anon_sym_starts_DASHwith2] = ACTIONS(2074), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2074), - [anon_sym_ends_DASHwith2] = ACTIONS(2074), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2074), - [anon_sym_EQ_EQ2] = ACTIONS(2074), - [anon_sym_BANG_EQ2] = ACTIONS(2074), - [anon_sym_LT2] = ACTIONS(2078), - [anon_sym_LT_EQ2] = ACTIONS(2074), - [anon_sym_GT_EQ2] = ACTIONS(2074), - [anon_sym_EQ_TILDE2] = ACTIONS(2074), - [anon_sym_BANG_TILDE2] = ACTIONS(2074), - [anon_sym_like2] = ACTIONS(2074), - [anon_sym_not_DASHlike2] = ACTIONS(2074), - [anon_sym_STAR_STAR2] = ACTIONS(2074), - [anon_sym_PLUS_PLUS2] = ACTIONS(2074), - [anon_sym_SLASH2] = ACTIONS(2078), - [anon_sym_mod2] = ACTIONS(2074), - [anon_sym_SLASH_SLASH2] = ACTIONS(2074), - [anon_sym_PLUS2] = ACTIONS(2078), - [anon_sym_bit_DASHshl2] = ACTIONS(2074), - [anon_sym_bit_DASHshr2] = ACTIONS(2074), - [anon_sym_bit_DASHand2] = ACTIONS(2074), - [anon_sym_bit_DASHxor2] = ACTIONS(2074), - [anon_sym_bit_DASHor2] = ACTIONS(2074), - [anon_sym_DOT_DOT2] = ACTIONS(1720), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1722), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1722), - [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(2074), - [anon_sym_out_GT_GT] = ACTIONS(2074), - [anon_sym_e_GT_GT] = ACTIONS(2074), - [anon_sym_o_GT_GT] = ACTIONS(2074), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2074), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2074), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2074), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2074), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(926)] = { - [sym_comment] = STATE(926), - [anon_sym_in] = ACTIONS(2074), - [sym__newline] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_err_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_GT_PIPE] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2076), - [anon_sym_RPAREN] = ACTIONS(2076), - [anon_sym_GT2] = ACTIONS(2078), - [anon_sym_DASH2] = ACTIONS(2074), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_RBRACE] = ACTIONS(2076), - [anon_sym_EQ_GT] = ACTIONS(2076), - [anon_sym_STAR2] = ACTIONS(2078), - [anon_sym_and2] = ACTIONS(2074), - [anon_sym_xor2] = ACTIONS(2074), - [anon_sym_or2] = ACTIONS(2074), - [anon_sym_not_DASHin2] = ACTIONS(2074), - [anon_sym_has2] = ACTIONS(2074), - [anon_sym_not_DASHhas2] = ACTIONS(2074), - [anon_sym_starts_DASHwith2] = ACTIONS(2074), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2074), - [anon_sym_ends_DASHwith2] = ACTIONS(2074), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2074), - [anon_sym_EQ_EQ2] = ACTIONS(2074), - [anon_sym_BANG_EQ2] = ACTIONS(2074), - [anon_sym_LT2] = ACTIONS(2078), - [anon_sym_LT_EQ2] = ACTIONS(2074), - [anon_sym_GT_EQ2] = ACTIONS(2074), - [anon_sym_EQ_TILDE2] = ACTIONS(2074), - [anon_sym_BANG_TILDE2] = ACTIONS(2074), - [anon_sym_like2] = ACTIONS(2074), - [anon_sym_not_DASHlike2] = ACTIONS(2074), - [anon_sym_STAR_STAR2] = ACTIONS(2074), - [anon_sym_PLUS_PLUS2] = ACTIONS(2074), - [anon_sym_SLASH2] = ACTIONS(2078), - [anon_sym_mod2] = ACTIONS(2074), - [anon_sym_SLASH_SLASH2] = ACTIONS(2074), - [anon_sym_PLUS2] = ACTIONS(2078), - [anon_sym_bit_DASHshl2] = ACTIONS(2074), - [anon_sym_bit_DASHshr2] = ACTIONS(2074), - [anon_sym_bit_DASHand2] = ACTIONS(2074), - [anon_sym_bit_DASHxor2] = ACTIONS(2074), - [anon_sym_bit_DASHor2] = ACTIONS(2074), - [anon_sym_err_GT] = ACTIONS(2080), - [anon_sym_out_GT] = ACTIONS(2080), - [anon_sym_e_GT] = ACTIONS(2080), - [anon_sym_o_GT] = ACTIONS(2080), - [anon_sym_err_PLUSout_GT] = ACTIONS(2080), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2080), - [anon_sym_o_PLUSe_GT] = ACTIONS(2080), - [anon_sym_e_PLUSo_GT] = ACTIONS(2080), - [anon_sym_err_GT_GT] = ACTIONS(2076), - [anon_sym_out_GT_GT] = ACTIONS(2076), - [anon_sym_e_GT_GT] = ACTIONS(2076), - [anon_sym_o_GT_GT] = ACTIONS(2076), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2076), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2076), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2076), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(927)] = { - [sym_comment] = STATE(927), - [anon_sym_in] = ACTIONS(2578), - [sym__newline] = ACTIONS(2578), - [anon_sym_SEMI] = ACTIONS(2578), - [anon_sym_PIPE] = ACTIONS(2578), - [anon_sym_err_GT_PIPE] = ACTIONS(2578), - [anon_sym_out_GT_PIPE] = ACTIONS(2578), - [anon_sym_e_GT_PIPE] = ACTIONS(2578), - [anon_sym_o_GT_PIPE] = ACTIONS(2578), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2578), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2578), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2578), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2578), - [anon_sym_RPAREN] = ACTIONS(2578), - [anon_sym_GT2] = ACTIONS(2580), - [anon_sym_DASH2] = ACTIONS(2578), - [anon_sym_LBRACE] = ACTIONS(2578), - [anon_sym_RBRACE] = ACTIONS(2578), - [anon_sym_EQ_GT] = ACTIONS(2578), - [anon_sym_STAR2] = ACTIONS(2580), - [anon_sym_and2] = ACTIONS(2578), - [anon_sym_xor2] = ACTIONS(2578), - [anon_sym_or2] = ACTIONS(2578), - [anon_sym_not_DASHin2] = ACTIONS(2578), - [anon_sym_has2] = ACTIONS(2578), - [anon_sym_not_DASHhas2] = ACTIONS(2578), - [anon_sym_starts_DASHwith2] = ACTIONS(2578), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2578), - [anon_sym_ends_DASHwith2] = ACTIONS(2578), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2578), - [anon_sym_EQ_EQ2] = ACTIONS(2578), - [anon_sym_BANG_EQ2] = ACTIONS(2578), - [anon_sym_LT2] = ACTIONS(2580), - [anon_sym_LT_EQ2] = ACTIONS(2578), - [anon_sym_GT_EQ2] = ACTIONS(2578), - [anon_sym_EQ_TILDE2] = ACTIONS(2578), - [anon_sym_BANG_TILDE2] = ACTIONS(2578), - [anon_sym_like2] = ACTIONS(2578), - [anon_sym_not_DASHlike2] = ACTIONS(2578), - [anon_sym_STAR_STAR2] = ACTIONS(2578), - [anon_sym_PLUS_PLUS2] = ACTIONS(2578), - [anon_sym_SLASH2] = ACTIONS(2580), - [anon_sym_mod2] = ACTIONS(2578), - [anon_sym_SLASH_SLASH2] = ACTIONS(2578), - [anon_sym_PLUS2] = ACTIONS(2580), - [anon_sym_bit_DASHshl2] = ACTIONS(2578), - [anon_sym_bit_DASHshr2] = ACTIONS(2578), - [anon_sym_bit_DASHand2] = ACTIONS(2578), - [anon_sym_bit_DASHxor2] = ACTIONS(2578), - [anon_sym_bit_DASHor2] = ACTIONS(2578), - [anon_sym_err_GT] = ACTIONS(2580), - [anon_sym_out_GT] = ACTIONS(2580), - [anon_sym_e_GT] = ACTIONS(2580), - [anon_sym_o_GT] = ACTIONS(2580), - [anon_sym_err_PLUSout_GT] = ACTIONS(2580), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2580), - [anon_sym_o_PLUSe_GT] = ACTIONS(2580), - [anon_sym_e_PLUSo_GT] = ACTIONS(2580), - [anon_sym_err_GT_GT] = ACTIONS(2578), - [anon_sym_out_GT_GT] = ACTIONS(2578), - [anon_sym_e_GT_GT] = ACTIONS(2578), - [anon_sym_o_GT_GT] = ACTIONS(2578), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2578), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2578), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2578), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2578), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(928)] = { - [sym_comment] = STATE(928), - [ts_builtin_sym_end] = ACTIONS(2136), - [anon_sym_in] = ACTIONS(2136), - [sym__newline] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_err_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_GT_PIPE] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2136), - [anon_sym_GT2] = ACTIONS(2138), - [anon_sym_DASH2] = ACTIONS(2136), - [anon_sym_STAR2] = ACTIONS(2138), - [anon_sym_and2] = ACTIONS(2136), - [anon_sym_xor2] = ACTIONS(2136), - [anon_sym_or2] = ACTIONS(2136), - [anon_sym_not_DASHin2] = ACTIONS(2136), - [anon_sym_has2] = ACTIONS(2136), - [anon_sym_not_DASHhas2] = ACTIONS(2136), - [anon_sym_starts_DASHwith2] = ACTIONS(2136), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2136), - [anon_sym_ends_DASHwith2] = ACTIONS(2136), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2136), - [anon_sym_EQ_EQ2] = ACTIONS(2136), - [anon_sym_BANG_EQ2] = ACTIONS(2136), - [anon_sym_LT2] = ACTIONS(2138), - [anon_sym_LT_EQ2] = ACTIONS(2136), - [anon_sym_GT_EQ2] = ACTIONS(2136), - [anon_sym_EQ_TILDE2] = ACTIONS(2136), - [anon_sym_BANG_TILDE2] = ACTIONS(2136), - [anon_sym_like2] = ACTIONS(2136), - [anon_sym_not_DASHlike2] = ACTIONS(2136), - [anon_sym_STAR_STAR2] = ACTIONS(2136), - [anon_sym_PLUS_PLUS2] = ACTIONS(2136), - [anon_sym_SLASH2] = ACTIONS(2138), - [anon_sym_mod2] = ACTIONS(2136), - [anon_sym_SLASH_SLASH2] = ACTIONS(2136), - [anon_sym_PLUS2] = ACTIONS(2138), - [anon_sym_bit_DASHshl2] = ACTIONS(2136), - [anon_sym_bit_DASHshr2] = ACTIONS(2136), - [anon_sym_bit_DASHand2] = ACTIONS(2136), - [anon_sym_bit_DASHxor2] = ACTIONS(2136), - [anon_sym_bit_DASHor2] = ACTIONS(2136), - [anon_sym_DOT_DOT2] = ACTIONS(2582), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2584), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2584), - [anon_sym_err_GT] = ACTIONS(2138), - [anon_sym_out_GT] = ACTIONS(2138), - [anon_sym_e_GT] = ACTIONS(2138), - [anon_sym_o_GT] = ACTIONS(2138), - [anon_sym_err_PLUSout_GT] = ACTIONS(2138), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2138), - [anon_sym_o_PLUSe_GT] = ACTIONS(2138), - [anon_sym_e_PLUSo_GT] = ACTIONS(2138), - [anon_sym_err_GT_GT] = ACTIONS(2136), - [anon_sym_out_GT_GT] = ACTIONS(2136), - [anon_sym_e_GT_GT] = ACTIONS(2136), - [anon_sym_o_GT_GT] = ACTIONS(2136), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2136), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2136), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2136), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2136), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(929)] = { - [sym_comment] = STATE(929), - [ts_builtin_sym_end] = ACTIONS(2144), - [anon_sym_in] = ACTIONS(2144), - [sym__newline] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2144), - [anon_sym_err_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_GT_PIPE] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2144), - [anon_sym_GT2] = ACTIONS(2146), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_STAR2] = ACTIONS(2146), - [anon_sym_and2] = ACTIONS(2144), - [anon_sym_xor2] = ACTIONS(2144), - [anon_sym_or2] = ACTIONS(2144), - [anon_sym_not_DASHin2] = ACTIONS(2144), - [anon_sym_has2] = ACTIONS(2144), - [anon_sym_not_DASHhas2] = ACTIONS(2144), - [anon_sym_starts_DASHwith2] = ACTIONS(2144), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2144), - [anon_sym_ends_DASHwith2] = ACTIONS(2144), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2144), - [anon_sym_EQ_EQ2] = ACTIONS(2144), - [anon_sym_BANG_EQ2] = ACTIONS(2144), - [anon_sym_LT2] = ACTIONS(2146), - [anon_sym_LT_EQ2] = ACTIONS(2144), - [anon_sym_GT_EQ2] = ACTIONS(2144), - [anon_sym_EQ_TILDE2] = ACTIONS(2144), - [anon_sym_BANG_TILDE2] = ACTIONS(2144), - [anon_sym_like2] = ACTIONS(2144), - [anon_sym_not_DASHlike2] = ACTIONS(2144), - [anon_sym_STAR_STAR2] = ACTIONS(2144), - [anon_sym_PLUS_PLUS2] = ACTIONS(2144), - [anon_sym_SLASH2] = ACTIONS(2146), - [anon_sym_mod2] = ACTIONS(2144), - [anon_sym_SLASH_SLASH2] = ACTIONS(2144), - [anon_sym_PLUS2] = ACTIONS(2146), - [anon_sym_bit_DASHshl2] = ACTIONS(2144), - [anon_sym_bit_DASHshr2] = ACTIONS(2144), - [anon_sym_bit_DASHand2] = ACTIONS(2144), - [anon_sym_bit_DASHxor2] = ACTIONS(2144), - [anon_sym_bit_DASHor2] = ACTIONS(2144), - [anon_sym_DOT_DOT2] = ACTIONS(2586), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2588), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2588), - [anon_sym_err_GT] = ACTIONS(2146), - [anon_sym_out_GT] = ACTIONS(2146), - [anon_sym_e_GT] = ACTIONS(2146), - [anon_sym_o_GT] = ACTIONS(2146), - [anon_sym_err_PLUSout_GT] = ACTIONS(2146), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2146), - [anon_sym_o_PLUSe_GT] = ACTIONS(2146), - [anon_sym_e_PLUSo_GT] = ACTIONS(2146), - [anon_sym_err_GT_GT] = ACTIONS(2144), - [anon_sym_out_GT_GT] = ACTIONS(2144), - [anon_sym_e_GT_GT] = ACTIONS(2144), - [anon_sym_o_GT_GT] = ACTIONS(2144), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2144), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2144), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2144), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2144), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(930)] = { - [sym_comment] = STATE(930), - [ts_builtin_sym_end] = ACTIONS(2152), - [anon_sym_in] = ACTIONS(2152), - [sym__newline] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_PIPE] = ACTIONS(2152), - [anon_sym_err_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_GT_PIPE] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2152), - [anon_sym_GT2] = ACTIONS(2154), - [anon_sym_DASH2] = ACTIONS(2152), - [anon_sym_STAR2] = ACTIONS(2154), - [anon_sym_and2] = ACTIONS(2152), - [anon_sym_xor2] = ACTIONS(2152), - [anon_sym_or2] = ACTIONS(2152), - [anon_sym_not_DASHin2] = ACTIONS(2152), - [anon_sym_has2] = ACTIONS(2152), - [anon_sym_not_DASHhas2] = ACTIONS(2152), - [anon_sym_starts_DASHwith2] = ACTIONS(2152), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2152), - [anon_sym_ends_DASHwith2] = ACTIONS(2152), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2152), - [anon_sym_EQ_EQ2] = ACTIONS(2152), - [anon_sym_BANG_EQ2] = ACTIONS(2152), - [anon_sym_LT2] = ACTIONS(2154), - [anon_sym_LT_EQ2] = ACTIONS(2152), - [anon_sym_GT_EQ2] = ACTIONS(2152), - [anon_sym_EQ_TILDE2] = ACTIONS(2152), - [anon_sym_BANG_TILDE2] = ACTIONS(2152), - [anon_sym_like2] = ACTIONS(2152), - [anon_sym_not_DASHlike2] = ACTIONS(2152), - [anon_sym_STAR_STAR2] = ACTIONS(2152), - [anon_sym_PLUS_PLUS2] = ACTIONS(2152), - [anon_sym_SLASH2] = ACTIONS(2154), - [anon_sym_mod2] = ACTIONS(2152), - [anon_sym_SLASH_SLASH2] = ACTIONS(2152), - [anon_sym_PLUS2] = ACTIONS(2154), - [anon_sym_bit_DASHshl2] = ACTIONS(2152), - [anon_sym_bit_DASHshr2] = ACTIONS(2152), - [anon_sym_bit_DASHand2] = ACTIONS(2152), - [anon_sym_bit_DASHxor2] = ACTIONS(2152), - [anon_sym_bit_DASHor2] = ACTIONS(2152), - [anon_sym_DOT_DOT2] = ACTIONS(2590), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2592), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2592), - [anon_sym_err_GT] = ACTIONS(2154), - [anon_sym_out_GT] = ACTIONS(2154), - [anon_sym_e_GT] = ACTIONS(2154), - [anon_sym_o_GT] = ACTIONS(2154), - [anon_sym_err_PLUSout_GT] = ACTIONS(2154), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2154), - [anon_sym_o_PLUSe_GT] = ACTIONS(2154), - [anon_sym_e_PLUSo_GT] = ACTIONS(2154), - [anon_sym_err_GT_GT] = ACTIONS(2152), - [anon_sym_out_GT_GT] = ACTIONS(2152), - [anon_sym_e_GT_GT] = ACTIONS(2152), - [anon_sym_o_GT_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2152), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(931)] = { - [sym_comment] = STATE(931), - [ts_builtin_sym_end] = ACTIONS(1942), - [anon_sym_in] = ACTIONS(1942), - [sym__newline] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_PIPE] = ACTIONS(1942), - [anon_sym_err_GT_PIPE] = ACTIONS(1942), - [anon_sym_out_GT_PIPE] = ACTIONS(1942), - [anon_sym_e_GT_PIPE] = ACTIONS(1942), - [anon_sym_o_GT_PIPE] = ACTIONS(1942), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1942), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1942), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1942), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1942), - [anon_sym_GT2] = ACTIONS(1944), - [anon_sym_DASH2] = ACTIONS(1942), - [anon_sym_STAR2] = ACTIONS(1944), - [anon_sym_and2] = ACTIONS(1942), - [anon_sym_xor2] = ACTIONS(1942), - [anon_sym_or2] = ACTIONS(1942), - [anon_sym_not_DASHin2] = ACTIONS(1942), - [anon_sym_has2] = ACTIONS(1942), - [anon_sym_not_DASHhas2] = ACTIONS(1942), - [anon_sym_starts_DASHwith2] = ACTIONS(1942), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1942), - [anon_sym_ends_DASHwith2] = ACTIONS(1942), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1942), - [anon_sym_EQ_EQ2] = ACTIONS(1942), - [anon_sym_BANG_EQ2] = ACTIONS(1942), - [anon_sym_LT2] = ACTIONS(1944), - [anon_sym_LT_EQ2] = ACTIONS(1942), - [anon_sym_GT_EQ2] = ACTIONS(1942), - [anon_sym_EQ_TILDE2] = ACTIONS(1942), - [anon_sym_BANG_TILDE2] = ACTIONS(1942), - [anon_sym_like2] = ACTIONS(1942), - [anon_sym_not_DASHlike2] = ACTIONS(1942), - [anon_sym_STAR_STAR2] = ACTIONS(1942), - [anon_sym_PLUS_PLUS2] = ACTIONS(1942), - [anon_sym_SLASH2] = ACTIONS(1944), - [anon_sym_mod2] = ACTIONS(1942), - [anon_sym_SLASH_SLASH2] = ACTIONS(1942), - [anon_sym_PLUS2] = ACTIONS(1944), - [anon_sym_bit_DASHshl2] = ACTIONS(1942), - [anon_sym_bit_DASHshr2] = ACTIONS(1942), - [anon_sym_bit_DASHand2] = ACTIONS(1942), - [anon_sym_bit_DASHxor2] = ACTIONS(1942), - [anon_sym_bit_DASHor2] = ACTIONS(1942), - [anon_sym_DOT_DOT2] = ACTIONS(2594), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2596), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2596), - [anon_sym_err_GT] = ACTIONS(1944), - [anon_sym_out_GT] = ACTIONS(1944), - [anon_sym_e_GT] = ACTIONS(1944), - [anon_sym_o_GT] = ACTIONS(1944), - [anon_sym_err_PLUSout_GT] = ACTIONS(1944), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1944), - [anon_sym_o_PLUSe_GT] = ACTIONS(1944), - [anon_sym_e_PLUSo_GT] = ACTIONS(1944), - [anon_sym_err_GT_GT] = ACTIONS(1942), - [anon_sym_out_GT_GT] = ACTIONS(1942), - [anon_sym_e_GT_GT] = ACTIONS(1942), - [anon_sym_o_GT_GT] = ACTIONS(1942), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1942), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1942), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1942), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1942), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(932)] = { - [sym_comment] = STATE(932), - [ts_builtin_sym_end] = ACTIONS(1728), - [anon_sym_in] = ACTIONS(1728), - [sym__newline] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_err_GT_PIPE] = ACTIONS(1728), - [anon_sym_out_GT_PIPE] = ACTIONS(1728), - [anon_sym_e_GT_PIPE] = ACTIONS(1728), - [anon_sym_o_GT_PIPE] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1728), - [anon_sym_GT2] = ACTIONS(1730), - [anon_sym_DASH2] = ACTIONS(1728), - [anon_sym_STAR2] = ACTIONS(1730), - [anon_sym_and2] = ACTIONS(1728), - [anon_sym_xor2] = ACTIONS(1728), - [anon_sym_or2] = ACTIONS(1728), - [anon_sym_not_DASHin2] = ACTIONS(1728), - [anon_sym_has2] = ACTIONS(1728), - [anon_sym_not_DASHhas2] = ACTIONS(1728), - [anon_sym_starts_DASHwith2] = ACTIONS(1728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1728), - [anon_sym_ends_DASHwith2] = ACTIONS(1728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1728), - [anon_sym_EQ_EQ2] = ACTIONS(1728), - [anon_sym_BANG_EQ2] = ACTIONS(1728), - [anon_sym_LT2] = ACTIONS(1730), - [anon_sym_LT_EQ2] = ACTIONS(1728), - [anon_sym_GT_EQ2] = ACTIONS(1728), - [anon_sym_EQ_TILDE2] = ACTIONS(1728), - [anon_sym_BANG_TILDE2] = ACTIONS(1728), - [anon_sym_like2] = ACTIONS(1728), - [anon_sym_not_DASHlike2] = ACTIONS(1728), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_STAR_STAR2] = ACTIONS(1728), - [anon_sym_PLUS_PLUS2] = ACTIONS(1728), - [anon_sym_SLASH2] = ACTIONS(1730), - [anon_sym_mod2] = ACTIONS(1728), - [anon_sym_SLASH_SLASH2] = ACTIONS(1728), - [anon_sym_PLUS2] = ACTIONS(1730), - [anon_sym_bit_DASHshl2] = ACTIONS(1728), - [anon_sym_bit_DASHshr2] = ACTIONS(1728), - [anon_sym_bit_DASHand2] = ACTIONS(1728), - [anon_sym_bit_DASHxor2] = ACTIONS(1728), - [anon_sym_bit_DASHor2] = ACTIONS(1728), - [aux_sym__immediate_decimal_token5] = ACTIONS(2285), - [anon_sym_err_GT] = ACTIONS(1730), - [anon_sym_out_GT] = ACTIONS(1730), - [anon_sym_e_GT] = ACTIONS(1730), - [anon_sym_o_GT] = ACTIONS(1730), - [anon_sym_err_PLUSout_GT] = ACTIONS(1730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1730), - [anon_sym_o_PLUSe_GT] = ACTIONS(1730), - [anon_sym_e_PLUSo_GT] = ACTIONS(1730), - [anon_sym_err_GT_GT] = ACTIONS(1728), - [anon_sym_out_GT_GT] = ACTIONS(1728), - [anon_sym_e_GT_GT] = ACTIONS(1728), - [anon_sym_o_GT_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1728), - [sym__unquoted_pattern] = ACTIONS(1730), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(933)] = { - [sym_comment] = STATE(933), - [anon_sym_in] = ACTIONS(2598), - [sym__newline] = ACTIONS(2598), - [anon_sym_SEMI] = ACTIONS(2598), - [anon_sym_PIPE] = ACTIONS(2598), - [anon_sym_err_GT_PIPE] = ACTIONS(2598), - [anon_sym_out_GT_PIPE] = ACTIONS(2598), - [anon_sym_e_GT_PIPE] = ACTIONS(2598), - [anon_sym_o_GT_PIPE] = ACTIONS(2598), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2598), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2598), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2598), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2598), - [anon_sym_RPAREN] = ACTIONS(2598), - [anon_sym_GT2] = ACTIONS(2600), - [anon_sym_DASH2] = ACTIONS(2598), - [anon_sym_LBRACE] = ACTIONS(2598), - [anon_sym_RBRACE] = ACTIONS(2598), - [anon_sym_EQ_GT] = ACTIONS(2598), - [anon_sym_STAR2] = ACTIONS(2600), - [anon_sym_and2] = ACTIONS(2598), - [anon_sym_xor2] = ACTIONS(2598), - [anon_sym_or2] = ACTIONS(2598), - [anon_sym_not_DASHin2] = ACTIONS(2598), - [anon_sym_has2] = ACTIONS(2598), - [anon_sym_not_DASHhas2] = ACTIONS(2598), - [anon_sym_starts_DASHwith2] = ACTIONS(2598), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2598), - [anon_sym_ends_DASHwith2] = ACTIONS(2598), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2598), - [anon_sym_EQ_EQ2] = ACTIONS(2598), - [anon_sym_BANG_EQ2] = ACTIONS(2598), - [anon_sym_LT2] = ACTIONS(2600), - [anon_sym_LT_EQ2] = ACTIONS(2598), - [anon_sym_GT_EQ2] = ACTIONS(2598), - [anon_sym_EQ_TILDE2] = ACTIONS(2598), - [anon_sym_BANG_TILDE2] = ACTIONS(2598), - [anon_sym_like2] = ACTIONS(2598), - [anon_sym_not_DASHlike2] = ACTIONS(2598), - [anon_sym_STAR_STAR2] = ACTIONS(2598), - [anon_sym_PLUS_PLUS2] = ACTIONS(2598), - [anon_sym_SLASH2] = ACTIONS(2600), - [anon_sym_mod2] = ACTIONS(2598), - [anon_sym_SLASH_SLASH2] = ACTIONS(2598), - [anon_sym_PLUS2] = ACTIONS(2600), - [anon_sym_bit_DASHshl2] = ACTIONS(2598), - [anon_sym_bit_DASHshr2] = ACTIONS(2598), - [anon_sym_bit_DASHand2] = ACTIONS(2598), - [anon_sym_bit_DASHxor2] = ACTIONS(2598), - [anon_sym_bit_DASHor2] = ACTIONS(2598), - [anon_sym_err_GT] = ACTIONS(2600), - [anon_sym_out_GT] = ACTIONS(2600), - [anon_sym_e_GT] = ACTIONS(2600), - [anon_sym_o_GT] = ACTIONS(2600), - [anon_sym_err_PLUSout_GT] = ACTIONS(2600), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2600), - [anon_sym_o_PLUSe_GT] = ACTIONS(2600), - [anon_sym_e_PLUSo_GT] = ACTIONS(2600), - [anon_sym_err_GT_GT] = ACTIONS(2598), - [anon_sym_out_GT_GT] = ACTIONS(2598), - [anon_sym_e_GT_GT] = ACTIONS(2598), - [anon_sym_o_GT_GT] = ACTIONS(2598), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2598), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2598), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2598), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2598), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(934)] = { - [sym_comment] = STATE(934), - [anon_sym_in] = ACTIONS(2602), - [sym__newline] = ACTIONS(2602), - [anon_sym_SEMI] = ACTIONS(2602), - [anon_sym_PIPE] = ACTIONS(2602), - [anon_sym_err_GT_PIPE] = ACTIONS(2602), - [anon_sym_out_GT_PIPE] = ACTIONS(2602), - [anon_sym_e_GT_PIPE] = ACTIONS(2602), - [anon_sym_o_GT_PIPE] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2602), - [anon_sym_RPAREN] = ACTIONS(2602), - [anon_sym_GT2] = ACTIONS(2604), - [anon_sym_DASH2] = ACTIONS(2602), - [anon_sym_LBRACE] = ACTIONS(2602), - [anon_sym_RBRACE] = ACTIONS(2602), - [anon_sym_EQ_GT] = ACTIONS(2602), - [anon_sym_STAR2] = ACTIONS(2604), - [anon_sym_and2] = ACTIONS(2602), - [anon_sym_xor2] = ACTIONS(2602), - [anon_sym_or2] = ACTIONS(2602), - [anon_sym_not_DASHin2] = ACTIONS(2602), - [anon_sym_has2] = ACTIONS(2602), - [anon_sym_not_DASHhas2] = ACTIONS(2602), - [anon_sym_starts_DASHwith2] = ACTIONS(2602), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2602), - [anon_sym_ends_DASHwith2] = ACTIONS(2602), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2602), - [anon_sym_EQ_EQ2] = ACTIONS(2602), - [anon_sym_BANG_EQ2] = ACTIONS(2602), - [anon_sym_LT2] = ACTIONS(2604), - [anon_sym_LT_EQ2] = ACTIONS(2602), - [anon_sym_GT_EQ2] = ACTIONS(2602), - [anon_sym_EQ_TILDE2] = ACTIONS(2602), - [anon_sym_BANG_TILDE2] = ACTIONS(2602), - [anon_sym_like2] = ACTIONS(2602), - [anon_sym_not_DASHlike2] = ACTIONS(2602), - [anon_sym_STAR_STAR2] = ACTIONS(2602), - [anon_sym_PLUS_PLUS2] = ACTIONS(2602), - [anon_sym_SLASH2] = ACTIONS(2604), - [anon_sym_mod2] = ACTIONS(2602), - [anon_sym_SLASH_SLASH2] = ACTIONS(2602), - [anon_sym_PLUS2] = ACTIONS(2604), - [anon_sym_bit_DASHshl2] = ACTIONS(2602), - [anon_sym_bit_DASHshr2] = ACTIONS(2602), - [anon_sym_bit_DASHand2] = ACTIONS(2602), - [anon_sym_bit_DASHxor2] = ACTIONS(2602), - [anon_sym_bit_DASHor2] = ACTIONS(2602), - [anon_sym_err_GT] = ACTIONS(2604), - [anon_sym_out_GT] = ACTIONS(2604), - [anon_sym_e_GT] = ACTIONS(2604), - [anon_sym_o_GT] = ACTIONS(2604), - [anon_sym_err_PLUSout_GT] = ACTIONS(2604), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2604), - [anon_sym_o_PLUSe_GT] = ACTIONS(2604), - [anon_sym_e_PLUSo_GT] = ACTIONS(2604), - [anon_sym_err_GT_GT] = ACTIONS(2602), - [anon_sym_out_GT_GT] = ACTIONS(2602), - [anon_sym_e_GT_GT] = ACTIONS(2602), - [anon_sym_o_GT_GT] = ACTIONS(2602), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2602), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2602), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2602), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2602), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(935)] = { - [sym_comment] = STATE(935), - [anon_sym_in] = ACTIONS(2606), - [sym__newline] = ACTIONS(2606), - [anon_sym_SEMI] = ACTIONS(2606), - [anon_sym_PIPE] = ACTIONS(2606), - [anon_sym_err_GT_PIPE] = ACTIONS(2606), - [anon_sym_out_GT_PIPE] = ACTIONS(2606), - [anon_sym_e_GT_PIPE] = ACTIONS(2606), - [anon_sym_o_GT_PIPE] = ACTIONS(2606), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2606), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2606), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2606), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2606), - [anon_sym_RPAREN] = ACTIONS(2606), - [anon_sym_GT2] = ACTIONS(2608), - [anon_sym_DASH2] = ACTIONS(2606), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_RBRACE] = ACTIONS(2606), - [anon_sym_EQ_GT] = ACTIONS(2606), - [anon_sym_STAR2] = ACTIONS(2608), - [anon_sym_and2] = ACTIONS(2606), - [anon_sym_xor2] = ACTIONS(2606), - [anon_sym_or2] = ACTIONS(2606), - [anon_sym_not_DASHin2] = ACTIONS(2606), - [anon_sym_has2] = ACTIONS(2606), - [anon_sym_not_DASHhas2] = ACTIONS(2606), - [anon_sym_starts_DASHwith2] = ACTIONS(2606), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2606), - [anon_sym_ends_DASHwith2] = ACTIONS(2606), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2606), - [anon_sym_EQ_EQ2] = ACTIONS(2606), - [anon_sym_BANG_EQ2] = ACTIONS(2606), - [anon_sym_LT2] = ACTIONS(2608), - [anon_sym_LT_EQ2] = ACTIONS(2606), - [anon_sym_GT_EQ2] = ACTIONS(2606), - [anon_sym_EQ_TILDE2] = ACTIONS(2606), - [anon_sym_BANG_TILDE2] = ACTIONS(2606), - [anon_sym_like2] = ACTIONS(2606), - [anon_sym_not_DASHlike2] = ACTIONS(2606), - [anon_sym_STAR_STAR2] = ACTIONS(2606), - [anon_sym_PLUS_PLUS2] = ACTIONS(2606), - [anon_sym_SLASH2] = ACTIONS(2608), - [anon_sym_mod2] = ACTIONS(2606), - [anon_sym_SLASH_SLASH2] = ACTIONS(2606), - [anon_sym_PLUS2] = ACTIONS(2608), - [anon_sym_bit_DASHshl2] = ACTIONS(2606), - [anon_sym_bit_DASHshr2] = ACTIONS(2606), - [anon_sym_bit_DASHand2] = ACTIONS(2606), - [anon_sym_bit_DASHxor2] = ACTIONS(2606), - [anon_sym_bit_DASHor2] = ACTIONS(2606), - [anon_sym_err_GT] = ACTIONS(2608), - [anon_sym_out_GT] = ACTIONS(2608), - [anon_sym_e_GT] = ACTIONS(2608), - [anon_sym_o_GT] = ACTIONS(2608), - [anon_sym_err_PLUSout_GT] = ACTIONS(2608), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2608), - [anon_sym_o_PLUSe_GT] = ACTIONS(2608), - [anon_sym_e_PLUSo_GT] = ACTIONS(2608), - [anon_sym_err_GT_GT] = ACTIONS(2606), - [anon_sym_out_GT_GT] = ACTIONS(2606), - [anon_sym_e_GT_GT] = ACTIONS(2606), - [anon_sym_o_GT_GT] = ACTIONS(2606), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2606), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2606), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2606), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2606), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(936)] = { - [sym_comment] = STATE(936), - [anon_sym_in] = ACTIONS(2610), - [sym__newline] = ACTIONS(2610), - [anon_sym_SEMI] = ACTIONS(2610), - [anon_sym_PIPE] = ACTIONS(2610), - [anon_sym_err_GT_PIPE] = ACTIONS(2610), - [anon_sym_out_GT_PIPE] = ACTIONS(2610), - [anon_sym_e_GT_PIPE] = ACTIONS(2610), - [anon_sym_o_GT_PIPE] = ACTIONS(2610), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2610), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2610), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2610), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2610), - [anon_sym_RPAREN] = ACTIONS(2610), - [anon_sym_GT2] = ACTIONS(2612), - [anon_sym_DASH2] = ACTIONS(2610), - [anon_sym_LBRACE] = ACTIONS(2610), - [anon_sym_RBRACE] = ACTIONS(2610), - [anon_sym_EQ_GT] = ACTIONS(2610), - [anon_sym_STAR2] = ACTIONS(2612), - [anon_sym_and2] = ACTIONS(2610), - [anon_sym_xor2] = ACTIONS(2610), - [anon_sym_or2] = ACTIONS(2610), - [anon_sym_not_DASHin2] = ACTIONS(2610), - [anon_sym_has2] = ACTIONS(2610), - [anon_sym_not_DASHhas2] = ACTIONS(2610), - [anon_sym_starts_DASHwith2] = ACTIONS(2610), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2610), - [anon_sym_ends_DASHwith2] = ACTIONS(2610), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2610), - [anon_sym_EQ_EQ2] = ACTIONS(2610), - [anon_sym_BANG_EQ2] = ACTIONS(2610), - [anon_sym_LT2] = ACTIONS(2612), - [anon_sym_LT_EQ2] = ACTIONS(2610), - [anon_sym_GT_EQ2] = ACTIONS(2610), - [anon_sym_EQ_TILDE2] = ACTIONS(2610), - [anon_sym_BANG_TILDE2] = ACTIONS(2610), - [anon_sym_like2] = ACTIONS(2610), - [anon_sym_not_DASHlike2] = ACTIONS(2610), - [anon_sym_STAR_STAR2] = ACTIONS(2610), - [anon_sym_PLUS_PLUS2] = ACTIONS(2610), - [anon_sym_SLASH2] = ACTIONS(2612), - [anon_sym_mod2] = ACTIONS(2610), - [anon_sym_SLASH_SLASH2] = ACTIONS(2610), - [anon_sym_PLUS2] = ACTIONS(2612), - [anon_sym_bit_DASHshl2] = ACTIONS(2610), - [anon_sym_bit_DASHshr2] = ACTIONS(2610), - [anon_sym_bit_DASHand2] = ACTIONS(2610), - [anon_sym_bit_DASHxor2] = ACTIONS(2610), - [anon_sym_bit_DASHor2] = ACTIONS(2610), - [anon_sym_err_GT] = ACTIONS(2612), - [anon_sym_out_GT] = ACTIONS(2612), - [anon_sym_e_GT] = ACTIONS(2612), - [anon_sym_o_GT] = ACTIONS(2612), - [anon_sym_err_PLUSout_GT] = ACTIONS(2612), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2612), - [anon_sym_o_PLUSe_GT] = ACTIONS(2612), - [anon_sym_e_PLUSo_GT] = ACTIONS(2612), - [anon_sym_err_GT_GT] = ACTIONS(2610), - [anon_sym_out_GT_GT] = ACTIONS(2610), - [anon_sym_e_GT_GT] = ACTIONS(2610), - [anon_sym_o_GT_GT] = ACTIONS(2610), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2610), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2610), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2610), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2610), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(937)] = { - [sym_comment] = STATE(937), - [anon_sym_in] = ACTIONS(2614), - [sym__newline] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2614), - [anon_sym_PIPE] = ACTIONS(2614), - [anon_sym_err_GT_PIPE] = ACTIONS(2614), - [anon_sym_out_GT_PIPE] = ACTIONS(2614), - [anon_sym_e_GT_PIPE] = ACTIONS(2614), - [anon_sym_o_GT_PIPE] = ACTIONS(2614), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2614), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2614), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2614), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2614), - [anon_sym_RPAREN] = ACTIONS(2614), - [anon_sym_GT2] = ACTIONS(2616), - [anon_sym_DASH2] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2614), - [anon_sym_RBRACE] = ACTIONS(2614), - [anon_sym_EQ_GT] = ACTIONS(2614), - [anon_sym_STAR2] = ACTIONS(2616), - [anon_sym_and2] = ACTIONS(2614), - [anon_sym_xor2] = ACTIONS(2614), - [anon_sym_or2] = ACTIONS(2614), - [anon_sym_not_DASHin2] = ACTIONS(2614), - [anon_sym_has2] = ACTIONS(2614), - [anon_sym_not_DASHhas2] = ACTIONS(2614), - [anon_sym_starts_DASHwith2] = ACTIONS(2614), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2614), - [anon_sym_ends_DASHwith2] = ACTIONS(2614), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2614), - [anon_sym_EQ_EQ2] = ACTIONS(2614), - [anon_sym_BANG_EQ2] = ACTIONS(2614), - [anon_sym_LT2] = ACTIONS(2616), - [anon_sym_LT_EQ2] = ACTIONS(2614), - [anon_sym_GT_EQ2] = ACTIONS(2614), - [anon_sym_EQ_TILDE2] = ACTIONS(2614), - [anon_sym_BANG_TILDE2] = ACTIONS(2614), - [anon_sym_like2] = ACTIONS(2614), - [anon_sym_not_DASHlike2] = ACTIONS(2614), - [anon_sym_STAR_STAR2] = ACTIONS(2614), - [anon_sym_PLUS_PLUS2] = ACTIONS(2614), - [anon_sym_SLASH2] = ACTIONS(2616), - [anon_sym_mod2] = ACTIONS(2614), - [anon_sym_SLASH_SLASH2] = ACTIONS(2614), - [anon_sym_PLUS2] = ACTIONS(2616), - [anon_sym_bit_DASHshl2] = ACTIONS(2614), - [anon_sym_bit_DASHshr2] = ACTIONS(2614), - [anon_sym_bit_DASHand2] = ACTIONS(2614), - [anon_sym_bit_DASHxor2] = ACTIONS(2614), - [anon_sym_bit_DASHor2] = ACTIONS(2614), - [anon_sym_err_GT] = ACTIONS(2616), - [anon_sym_out_GT] = ACTIONS(2616), - [anon_sym_e_GT] = ACTIONS(2616), - [anon_sym_o_GT] = ACTIONS(2616), - [anon_sym_err_PLUSout_GT] = ACTIONS(2616), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2616), - [anon_sym_o_PLUSe_GT] = ACTIONS(2616), - [anon_sym_e_PLUSo_GT] = ACTIONS(2616), - [anon_sym_err_GT_GT] = ACTIONS(2614), - [anon_sym_out_GT_GT] = ACTIONS(2614), - [anon_sym_e_GT_GT] = ACTIONS(2614), - [anon_sym_o_GT_GT] = ACTIONS(2614), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2614), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2614), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2614), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2614), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(938)] = { - [sym_comment] = STATE(938), - [anon_sym_in] = 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_RPAREN] = ACTIONS(1848), - [anon_sym_GT2] = ACTIONS(1850), - [anon_sym_DASH2] = ACTIONS(1848), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_RBRACE] = ACTIONS(1848), - [anon_sym_EQ_GT] = ACTIONS(1848), - [anon_sym_STAR2] = ACTIONS(1850), - [anon_sym_and2] = ACTIONS(1848), - [anon_sym_xor2] = ACTIONS(1848), - [anon_sym_or2] = ACTIONS(1848), - [anon_sym_not_DASHin2] = ACTIONS(1848), - [anon_sym_has2] = ACTIONS(1848), - [anon_sym_not_DASHhas2] = ACTIONS(1848), - [anon_sym_starts_DASHwith2] = ACTIONS(1848), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1848), - [anon_sym_ends_DASHwith2] = ACTIONS(1848), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1848), - [anon_sym_EQ_EQ2] = ACTIONS(1848), - [anon_sym_BANG_EQ2] = ACTIONS(1848), - [anon_sym_LT2] = ACTIONS(1850), - [anon_sym_LT_EQ2] = ACTIONS(1848), - [anon_sym_GT_EQ2] = ACTIONS(1848), - [anon_sym_EQ_TILDE2] = ACTIONS(1848), - [anon_sym_BANG_TILDE2] = ACTIONS(1848), - [anon_sym_like2] = ACTIONS(1848), - [anon_sym_not_DASHlike2] = ACTIONS(1848), - [anon_sym_STAR_STAR2] = ACTIONS(1848), - [anon_sym_PLUS_PLUS2] = ACTIONS(1848), - [anon_sym_SLASH2] = ACTIONS(1850), - [anon_sym_mod2] = ACTIONS(1848), - [anon_sym_SLASH_SLASH2] = ACTIONS(1848), - [anon_sym_PLUS2] = ACTIONS(1850), - [anon_sym_bit_DASHshl2] = ACTIONS(1848), - [anon_sym_bit_DASHshr2] = ACTIONS(1848), - [anon_sym_bit_DASHand2] = ACTIONS(1848), - [anon_sym_bit_DASHxor2] = ACTIONS(1848), - [anon_sym_bit_DASHor2] = ACTIONS(1848), - [anon_sym_err_GT] = ACTIONS(1850), - [anon_sym_out_GT] = ACTIONS(1850), - [anon_sym_e_GT] = ACTIONS(1850), - [anon_sym_o_GT] = ACTIONS(1850), - [anon_sym_err_PLUSout_GT] = ACTIONS(1850), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1850), - [anon_sym_o_PLUSe_GT] = ACTIONS(1850), - [anon_sym_e_PLUSo_GT] = ACTIONS(1850), - [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), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(939)] = { - [aux_sym__repeat_newline] = STATE(1117), - [sym__expression_parenthesized] = STATE(4198), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2115), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1826), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_comment] = STATE(939), - [aux_sym_cmd_identifier_token2] = ACTIONS(2533), - [anon_sym_true] = ACTIONS(2535), - [anon_sym_false] = ACTIONS(2535), - [anon_sym_null] = ACTIONS(2537), - [aux_sym_cmd_identifier_token3] = ACTIONS(2539), - [aux_sym_cmd_identifier_token4] = ACTIONS(2539), - [aux_sym_cmd_identifier_token5] = ACTIONS(2539), - [sym__newline] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1976), - [aux_sym__val_number_decimal_token3] = ACTIONS(2543), - [aux_sym__val_number_decimal_token4] = ACTIONS(2543), - [aux_sym__val_number_token1] = ACTIONS(2539), - [aux_sym__val_number_token2] = ACTIONS(2539), - [aux_sym__val_number_token3] = ACTIONS(2539), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2545), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), - }, [STATE(940)] = { [sym_comment] = STATE(940), - [anon_sym_in] = ACTIONS(2618), - [sym__newline] = ACTIONS(2618), - [anon_sym_SEMI] = ACTIONS(2618), - [anon_sym_PIPE] = ACTIONS(2618), - [anon_sym_err_GT_PIPE] = ACTIONS(2618), - [anon_sym_out_GT_PIPE] = ACTIONS(2618), - [anon_sym_e_GT_PIPE] = ACTIONS(2618), - [anon_sym_o_GT_PIPE] = ACTIONS(2618), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2618), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2618), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2618), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2618), - [anon_sym_RPAREN] = ACTIONS(2618), - [anon_sym_GT2] = ACTIONS(2620), - [anon_sym_DASH2] = ACTIONS(2618), - [anon_sym_LBRACE] = ACTIONS(2618), - [anon_sym_RBRACE] = ACTIONS(2618), - [anon_sym_EQ_GT] = ACTIONS(2618), - [anon_sym_STAR2] = ACTIONS(2620), - [anon_sym_and2] = ACTIONS(2618), - [anon_sym_xor2] = ACTIONS(2618), - [anon_sym_or2] = ACTIONS(2618), - [anon_sym_not_DASHin2] = ACTIONS(2618), - [anon_sym_has2] = ACTIONS(2618), - [anon_sym_not_DASHhas2] = ACTIONS(2618), - [anon_sym_starts_DASHwith2] = ACTIONS(2618), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2618), - [anon_sym_ends_DASHwith2] = ACTIONS(2618), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2618), - [anon_sym_EQ_EQ2] = ACTIONS(2618), - [anon_sym_BANG_EQ2] = ACTIONS(2618), - [anon_sym_LT2] = ACTIONS(2620), - [anon_sym_LT_EQ2] = ACTIONS(2618), - [anon_sym_GT_EQ2] = ACTIONS(2618), - [anon_sym_EQ_TILDE2] = ACTIONS(2618), - [anon_sym_BANG_TILDE2] = ACTIONS(2618), - [anon_sym_like2] = ACTIONS(2618), - [anon_sym_not_DASHlike2] = ACTIONS(2618), - [anon_sym_STAR_STAR2] = ACTIONS(2618), - [anon_sym_PLUS_PLUS2] = ACTIONS(2618), - [anon_sym_SLASH2] = ACTIONS(2620), - [anon_sym_mod2] = ACTIONS(2618), - [anon_sym_SLASH_SLASH2] = ACTIONS(2618), - [anon_sym_PLUS2] = ACTIONS(2620), - [anon_sym_bit_DASHshl2] = ACTIONS(2618), - [anon_sym_bit_DASHshr2] = ACTIONS(2618), - [anon_sym_bit_DASHand2] = ACTIONS(2618), - [anon_sym_bit_DASHxor2] = ACTIONS(2618), - [anon_sym_bit_DASHor2] = ACTIONS(2618), - [anon_sym_err_GT] = ACTIONS(2620), - [anon_sym_out_GT] = ACTIONS(2620), - [anon_sym_e_GT] = ACTIONS(2620), - [anon_sym_o_GT] = ACTIONS(2620), - [anon_sym_err_PLUSout_GT] = ACTIONS(2620), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2620), - [anon_sym_o_PLUSe_GT] = ACTIONS(2620), - [anon_sym_e_PLUSo_GT] = ACTIONS(2620), - [anon_sym_err_GT_GT] = ACTIONS(2618), - [anon_sym_out_GT_GT] = ACTIONS(2618), - [anon_sym_e_GT_GT] = ACTIONS(2618), - [anon_sym_o_GT_GT] = ACTIONS(2618), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2618), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2618), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2618), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2618), + [anon_sym_in] = ACTIONS(1706), + [sym__newline] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1706), + [anon_sym_err_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_GT_PIPE] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), + [anon_sym_RPAREN] = ACTIONS(1706), + [anon_sym_GT2] = ACTIONS(1604), + [anon_sym_DASH2] = ACTIONS(1706), + [anon_sym_RBRACE] = ACTIONS(1706), + [anon_sym_STAR2] = ACTIONS(1604), + [anon_sym_and2] = ACTIONS(1706), + [anon_sym_xor2] = ACTIONS(1706), + [anon_sym_or2] = ACTIONS(1706), + [anon_sym_not_DASHin2] = ACTIONS(1706), + [anon_sym_has2] = ACTIONS(1706), + [anon_sym_not_DASHhas2] = ACTIONS(1706), + [anon_sym_starts_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), + [anon_sym_ends_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), + [anon_sym_EQ_EQ2] = ACTIONS(1706), + [anon_sym_BANG_EQ2] = ACTIONS(1706), + [anon_sym_LT2] = ACTIONS(1604), + [anon_sym_LT_EQ2] = ACTIONS(1706), + [anon_sym_GT_EQ2] = ACTIONS(1706), + [anon_sym_EQ_TILDE2] = ACTIONS(1706), + [anon_sym_BANG_TILDE2] = ACTIONS(1706), + [anon_sym_like2] = ACTIONS(1706), + [anon_sym_not_DASHlike2] = ACTIONS(1706), + [anon_sym_LPAREN2] = ACTIONS(2620), + [anon_sym_STAR_STAR2] = ACTIONS(1706), + [anon_sym_PLUS_PLUS2] = ACTIONS(1706), + [anon_sym_SLASH2] = ACTIONS(1604), + [anon_sym_mod2] = ACTIONS(1706), + [anon_sym_SLASH_SLASH2] = ACTIONS(1706), + [anon_sym_PLUS2] = ACTIONS(1604), + [anon_sym_bit_DASHshl2] = ACTIONS(1706), + [anon_sym_bit_DASHshr2] = ACTIONS(1706), + [anon_sym_bit_DASHand2] = ACTIONS(1706), + [anon_sym_bit_DASHxor2] = ACTIONS(1706), + [anon_sym_bit_DASHor2] = ACTIONS(1706), + [anon_sym_err_GT] = ACTIONS(1604), + [anon_sym_out_GT] = ACTIONS(1604), + [anon_sym_e_GT] = ACTIONS(1604), + [anon_sym_o_GT] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT] = ACTIONS(1604), + [anon_sym_err_GT_GT] = ACTIONS(1706), + [anon_sym_out_GT_GT] = ACTIONS(1706), + [anon_sym_e_GT_GT] = ACTIONS(1706), + [anon_sym_o_GT_GT] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [sym__unquoted_pattern] = ACTIONS(2622), [anon_sym_POUND] = ACTIONS(3), }, [STATE(941)] = { [sym_comment] = STATE(941), - [anon_sym_in] = ACTIONS(1942), - [sym__newline] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_PIPE] = ACTIONS(1942), - [anon_sym_err_GT_PIPE] = ACTIONS(1942), - [anon_sym_out_GT_PIPE] = ACTIONS(1942), - [anon_sym_e_GT_PIPE] = ACTIONS(1942), - [anon_sym_o_GT_PIPE] = ACTIONS(1942), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1942), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1942), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1942), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1942), - [anon_sym_RPAREN] = ACTIONS(1942), - [anon_sym_GT2] = ACTIONS(1944), - [anon_sym_DASH2] = ACTIONS(1942), - [anon_sym_LBRACE] = ACTIONS(1942), - [anon_sym_RBRACE] = ACTIONS(1942), - [anon_sym_EQ_GT] = ACTIONS(1942), - [anon_sym_STAR2] = ACTIONS(1944), - [anon_sym_and2] = ACTIONS(1942), - [anon_sym_xor2] = ACTIONS(1942), - [anon_sym_or2] = ACTIONS(1942), - [anon_sym_not_DASHin2] = ACTIONS(1942), - [anon_sym_has2] = ACTIONS(1942), - [anon_sym_not_DASHhas2] = ACTIONS(1942), - [anon_sym_starts_DASHwith2] = ACTIONS(1942), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1942), - [anon_sym_ends_DASHwith2] = ACTIONS(1942), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1942), - [anon_sym_EQ_EQ2] = ACTIONS(1942), - [anon_sym_BANG_EQ2] = ACTIONS(1942), - [anon_sym_LT2] = ACTIONS(1944), - [anon_sym_LT_EQ2] = ACTIONS(1942), - [anon_sym_GT_EQ2] = ACTIONS(1942), - [anon_sym_EQ_TILDE2] = ACTIONS(1942), - [anon_sym_BANG_TILDE2] = ACTIONS(1942), - [anon_sym_like2] = ACTIONS(1942), - [anon_sym_not_DASHlike2] = ACTIONS(1942), - [anon_sym_STAR_STAR2] = ACTIONS(1942), - [anon_sym_PLUS_PLUS2] = ACTIONS(1942), - [anon_sym_SLASH2] = ACTIONS(1944), - [anon_sym_mod2] = ACTIONS(1942), - [anon_sym_SLASH_SLASH2] = ACTIONS(1942), - [anon_sym_PLUS2] = ACTIONS(1944), - [anon_sym_bit_DASHshl2] = ACTIONS(1942), - [anon_sym_bit_DASHshr2] = ACTIONS(1942), - [anon_sym_bit_DASHand2] = ACTIONS(1942), - [anon_sym_bit_DASHxor2] = ACTIONS(1942), - [anon_sym_bit_DASHor2] = ACTIONS(1942), - [anon_sym_err_GT] = ACTIONS(1944), - [anon_sym_out_GT] = ACTIONS(1944), - [anon_sym_e_GT] = ACTIONS(1944), - [anon_sym_o_GT] = ACTIONS(1944), - [anon_sym_err_PLUSout_GT] = ACTIONS(1944), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1944), - [anon_sym_o_PLUSe_GT] = ACTIONS(1944), - [anon_sym_e_PLUSo_GT] = ACTIONS(1944), - [anon_sym_err_GT_GT] = ACTIONS(1942), - [anon_sym_out_GT_GT] = ACTIONS(1942), - [anon_sym_e_GT_GT] = ACTIONS(1942), - [anon_sym_o_GT_GT] = ACTIONS(1942), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1942), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1942), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1942), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1942), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(942)] = { [sym_comment] = STATE(942), - [anon_sym_in] = ACTIONS(1862), - [sym__newline] = ACTIONS(1862), - [anon_sym_SEMI] = ACTIONS(1862), - [anon_sym_PIPE] = ACTIONS(1862), - [anon_sym_err_GT_PIPE] = ACTIONS(1862), - [anon_sym_out_GT_PIPE] = ACTIONS(1862), - [anon_sym_e_GT_PIPE] = ACTIONS(1862), - [anon_sym_o_GT_PIPE] = ACTIONS(1862), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1862), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1862), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1862), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1862), - [anon_sym_RPAREN] = ACTIONS(1862), - [anon_sym_GT2] = ACTIONS(1864), - [anon_sym_DASH2] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1862), - [anon_sym_RBRACE] = ACTIONS(1862), - [anon_sym_EQ_GT] = ACTIONS(1862), - [anon_sym_STAR2] = ACTIONS(1864), - [anon_sym_and2] = ACTIONS(1862), - [anon_sym_xor2] = ACTIONS(1862), - [anon_sym_or2] = ACTIONS(1862), - [anon_sym_not_DASHin2] = ACTIONS(1862), - [anon_sym_has2] = ACTIONS(1862), - [anon_sym_not_DASHhas2] = ACTIONS(1862), - [anon_sym_starts_DASHwith2] = ACTIONS(1862), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1862), - [anon_sym_ends_DASHwith2] = ACTIONS(1862), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1862), - [anon_sym_EQ_EQ2] = ACTIONS(1862), - [anon_sym_BANG_EQ2] = ACTIONS(1862), - [anon_sym_LT2] = ACTIONS(1864), - [anon_sym_LT_EQ2] = ACTIONS(1862), - [anon_sym_GT_EQ2] = ACTIONS(1862), - [anon_sym_EQ_TILDE2] = ACTIONS(1862), - [anon_sym_BANG_TILDE2] = ACTIONS(1862), - [anon_sym_like2] = ACTIONS(1862), - [anon_sym_not_DASHlike2] = ACTIONS(1862), - [anon_sym_STAR_STAR2] = ACTIONS(1862), - [anon_sym_PLUS_PLUS2] = ACTIONS(1862), - [anon_sym_SLASH2] = ACTIONS(1864), - [anon_sym_mod2] = ACTIONS(1862), - [anon_sym_SLASH_SLASH2] = ACTIONS(1862), - [anon_sym_PLUS2] = ACTIONS(1864), - [anon_sym_bit_DASHshl2] = ACTIONS(1862), - [anon_sym_bit_DASHshr2] = ACTIONS(1862), - [anon_sym_bit_DASHand2] = ACTIONS(1862), - [anon_sym_bit_DASHxor2] = ACTIONS(1862), - [anon_sym_bit_DASHor2] = ACTIONS(1862), - [anon_sym_err_GT] = ACTIONS(1864), - [anon_sym_out_GT] = ACTIONS(1864), - [anon_sym_e_GT] = ACTIONS(1864), - [anon_sym_o_GT] = ACTIONS(1864), - [anon_sym_err_PLUSout_GT] = ACTIONS(1864), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1864), - [anon_sym_o_PLUSe_GT] = ACTIONS(1864), - [anon_sym_e_PLUSo_GT] = ACTIONS(1864), - [anon_sym_err_GT_GT] = ACTIONS(1862), - [anon_sym_out_GT_GT] = ACTIONS(1862), - [anon_sym_e_GT_GT] = ACTIONS(1862), - [anon_sym_o_GT_GT] = ACTIONS(1862), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1862), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1862), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1862), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1862), + [anon_sym_in] = ACTIONS(1844), + [sym__newline] = ACTIONS(1844), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_PIPE] = ACTIONS(1844), + [anon_sym_err_GT_PIPE] = ACTIONS(1844), + [anon_sym_out_GT_PIPE] = ACTIONS(1844), + [anon_sym_e_GT_PIPE] = ACTIONS(1844), + [anon_sym_o_GT_PIPE] = ACTIONS(1844), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1844), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1844), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1844), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1844), + [anon_sym_RPAREN] = ACTIONS(1844), + [anon_sym_GT2] = ACTIONS(1846), + [anon_sym_DASH2] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1844), + [anon_sym_RBRACE] = ACTIONS(1844), + [anon_sym_EQ_GT] = ACTIONS(1844), + [anon_sym_STAR2] = ACTIONS(1846), + [anon_sym_and2] = ACTIONS(1844), + [anon_sym_xor2] = ACTIONS(1844), + [anon_sym_or2] = ACTIONS(1844), + [anon_sym_not_DASHin2] = ACTIONS(1844), + [anon_sym_has2] = ACTIONS(1844), + [anon_sym_not_DASHhas2] = ACTIONS(1844), + [anon_sym_starts_DASHwith2] = ACTIONS(1844), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1844), + [anon_sym_ends_DASHwith2] = ACTIONS(1844), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1844), + [anon_sym_EQ_EQ2] = ACTIONS(1844), + [anon_sym_BANG_EQ2] = ACTIONS(1844), + [anon_sym_LT2] = ACTIONS(1846), + [anon_sym_LT_EQ2] = ACTIONS(1844), + [anon_sym_GT_EQ2] = ACTIONS(1844), + [anon_sym_EQ_TILDE2] = ACTIONS(1844), + [anon_sym_BANG_TILDE2] = ACTIONS(1844), + [anon_sym_like2] = ACTIONS(1844), + [anon_sym_not_DASHlike2] = ACTIONS(1844), + [anon_sym_STAR_STAR2] = ACTIONS(1844), + [anon_sym_PLUS_PLUS2] = ACTIONS(1844), + [anon_sym_SLASH2] = ACTIONS(1846), + [anon_sym_mod2] = ACTIONS(1844), + [anon_sym_SLASH_SLASH2] = ACTIONS(1844), + [anon_sym_PLUS2] = ACTIONS(1846), + [anon_sym_bit_DASHshl2] = ACTIONS(1844), + [anon_sym_bit_DASHshr2] = ACTIONS(1844), + [anon_sym_bit_DASHand2] = ACTIONS(1844), + [anon_sym_bit_DASHxor2] = ACTIONS(1844), + [anon_sym_bit_DASHor2] = ACTIONS(1844), + [anon_sym_err_GT] = ACTIONS(1846), + [anon_sym_out_GT] = ACTIONS(1846), + [anon_sym_e_GT] = ACTIONS(1846), + [anon_sym_o_GT] = ACTIONS(1846), + [anon_sym_err_PLUSout_GT] = ACTIONS(1846), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1846), + [anon_sym_o_PLUSe_GT] = ACTIONS(1846), + [anon_sym_e_PLUSo_GT] = ACTIONS(1846), + [anon_sym_err_GT_GT] = ACTIONS(1844), + [anon_sym_out_GT_GT] = ACTIONS(1844), + [anon_sym_e_GT_GT] = ACTIONS(1844), + [anon_sym_o_GT_GT] = ACTIONS(1844), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1844), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1844), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1844), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1844), [anon_sym_POUND] = ACTIONS(3), }, [STATE(943)] = { [sym_comment] = STATE(943), - [anon_sym_in] = ACTIONS(2509), - [sym__newline] = ACTIONS(2509), - [anon_sym_SEMI] = ACTIONS(2509), - [anon_sym_PIPE] = ACTIONS(2509), - [anon_sym_err_GT_PIPE] = ACTIONS(2509), - [anon_sym_out_GT_PIPE] = ACTIONS(2509), - [anon_sym_e_GT_PIPE] = ACTIONS(2509), - [anon_sym_o_GT_PIPE] = ACTIONS(2509), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2509), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2509), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2509), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2509), - [anon_sym_RPAREN] = ACTIONS(2509), - [anon_sym_GT2] = ACTIONS(2511), - [anon_sym_DASH2] = ACTIONS(2509), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_RBRACE] = ACTIONS(2509), - [anon_sym_EQ_GT] = ACTIONS(2509), - [anon_sym_STAR2] = ACTIONS(2511), - [anon_sym_and2] = ACTIONS(2509), - [anon_sym_xor2] = ACTIONS(2509), - [anon_sym_or2] = ACTIONS(2509), - [anon_sym_not_DASHin2] = ACTIONS(2509), - [anon_sym_has2] = ACTIONS(2509), - [anon_sym_not_DASHhas2] = ACTIONS(2509), - [anon_sym_starts_DASHwith2] = ACTIONS(2509), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2509), - [anon_sym_ends_DASHwith2] = ACTIONS(2509), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2509), - [anon_sym_EQ_EQ2] = ACTIONS(2509), - [anon_sym_BANG_EQ2] = ACTIONS(2509), - [anon_sym_LT2] = ACTIONS(2511), - [anon_sym_LT_EQ2] = ACTIONS(2509), - [anon_sym_GT_EQ2] = ACTIONS(2509), - [anon_sym_EQ_TILDE2] = ACTIONS(2509), - [anon_sym_BANG_TILDE2] = ACTIONS(2509), - [anon_sym_like2] = ACTIONS(2509), - [anon_sym_not_DASHlike2] = ACTIONS(2509), - [anon_sym_STAR_STAR2] = ACTIONS(2509), - [anon_sym_PLUS_PLUS2] = ACTIONS(2509), - [anon_sym_SLASH2] = ACTIONS(2511), - [anon_sym_mod2] = ACTIONS(2509), - [anon_sym_SLASH_SLASH2] = ACTIONS(2509), - [anon_sym_PLUS2] = ACTIONS(2511), - [anon_sym_bit_DASHshl2] = ACTIONS(2509), - [anon_sym_bit_DASHshr2] = ACTIONS(2509), - [anon_sym_bit_DASHand2] = ACTIONS(2509), - [anon_sym_bit_DASHxor2] = ACTIONS(2509), - [anon_sym_bit_DASHor2] = ACTIONS(2509), - [anon_sym_err_GT] = ACTIONS(2511), - [anon_sym_out_GT] = ACTIONS(2511), - [anon_sym_e_GT] = ACTIONS(2511), - [anon_sym_o_GT] = ACTIONS(2511), - [anon_sym_err_PLUSout_GT] = ACTIONS(2511), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2511), - [anon_sym_o_PLUSe_GT] = ACTIONS(2511), - [anon_sym_e_PLUSo_GT] = ACTIONS(2511), - [anon_sym_err_GT_GT] = ACTIONS(2509), - [anon_sym_out_GT_GT] = ACTIONS(2509), - [anon_sym_e_GT_GT] = ACTIONS(2509), - [anon_sym_o_GT_GT] = ACTIONS(2509), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2509), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2509), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2509), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2509), + [anon_sym_in] = ACTIONS(2624), + [sym__newline] = ACTIONS(2624), + [anon_sym_SEMI] = ACTIONS(2624), + [anon_sym_PIPE] = ACTIONS(2624), + [anon_sym_err_GT_PIPE] = ACTIONS(2624), + [anon_sym_out_GT_PIPE] = ACTIONS(2624), + [anon_sym_e_GT_PIPE] = ACTIONS(2624), + [anon_sym_o_GT_PIPE] = ACTIONS(2624), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2624), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2624), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2624), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2624), + [anon_sym_RPAREN] = ACTIONS(2624), + [anon_sym_GT2] = ACTIONS(2626), + [anon_sym_DASH2] = ACTIONS(2624), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_RBRACE] = ACTIONS(2624), + [anon_sym_EQ_GT] = ACTIONS(2624), + [anon_sym_STAR2] = ACTIONS(2626), + [anon_sym_and2] = ACTIONS(2624), + [anon_sym_xor2] = ACTIONS(2624), + [anon_sym_or2] = ACTIONS(2624), + [anon_sym_not_DASHin2] = ACTIONS(2624), + [anon_sym_has2] = ACTIONS(2624), + [anon_sym_not_DASHhas2] = ACTIONS(2624), + [anon_sym_starts_DASHwith2] = ACTIONS(2624), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2624), + [anon_sym_ends_DASHwith2] = ACTIONS(2624), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2624), + [anon_sym_EQ_EQ2] = ACTIONS(2624), + [anon_sym_BANG_EQ2] = ACTIONS(2624), + [anon_sym_LT2] = ACTIONS(2626), + [anon_sym_LT_EQ2] = ACTIONS(2624), + [anon_sym_GT_EQ2] = ACTIONS(2624), + [anon_sym_EQ_TILDE2] = ACTIONS(2624), + [anon_sym_BANG_TILDE2] = ACTIONS(2624), + [anon_sym_like2] = ACTIONS(2624), + [anon_sym_not_DASHlike2] = ACTIONS(2624), + [anon_sym_STAR_STAR2] = ACTIONS(2624), + [anon_sym_PLUS_PLUS2] = ACTIONS(2624), + [anon_sym_SLASH2] = ACTIONS(2626), + [anon_sym_mod2] = ACTIONS(2624), + [anon_sym_SLASH_SLASH2] = ACTIONS(2624), + [anon_sym_PLUS2] = ACTIONS(2626), + [anon_sym_bit_DASHshl2] = ACTIONS(2624), + [anon_sym_bit_DASHshr2] = ACTIONS(2624), + [anon_sym_bit_DASHand2] = ACTIONS(2624), + [anon_sym_bit_DASHxor2] = ACTIONS(2624), + [anon_sym_bit_DASHor2] = ACTIONS(2624), + [anon_sym_err_GT] = ACTIONS(2626), + [anon_sym_out_GT] = ACTIONS(2626), + [anon_sym_e_GT] = ACTIONS(2626), + [anon_sym_o_GT] = ACTIONS(2626), + [anon_sym_err_PLUSout_GT] = ACTIONS(2626), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2626), + [anon_sym_o_PLUSe_GT] = ACTIONS(2626), + [anon_sym_e_PLUSo_GT] = ACTIONS(2626), + [anon_sym_err_GT_GT] = ACTIONS(2624), + [anon_sym_out_GT_GT] = ACTIONS(2624), + [anon_sym_e_GT_GT] = ACTIONS(2624), + [anon_sym_o_GT_GT] = ACTIONS(2624), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2624), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2624), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2624), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2624), [anon_sym_POUND] = ACTIONS(3), }, [STATE(944)] = { [sym_comment] = STATE(944), - [anon_sym_in] = ACTIONS(1942), - [sym__newline] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_PIPE] = ACTIONS(1942), - [anon_sym_err_GT_PIPE] = ACTIONS(1942), - [anon_sym_out_GT_PIPE] = ACTIONS(1942), - [anon_sym_e_GT_PIPE] = ACTIONS(1942), - [anon_sym_o_GT_PIPE] = ACTIONS(1942), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1942), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1942), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1942), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1942), - [anon_sym_RPAREN] = ACTIONS(1942), - [anon_sym_GT2] = ACTIONS(1944), - [anon_sym_DASH2] = ACTIONS(1942), - [anon_sym_RBRACE] = ACTIONS(1942), - [anon_sym_STAR2] = ACTIONS(1944), - [anon_sym_and2] = ACTIONS(1942), - [anon_sym_xor2] = ACTIONS(1942), - [anon_sym_or2] = ACTIONS(1942), - [anon_sym_not_DASHin2] = ACTIONS(1942), - [anon_sym_has2] = ACTIONS(1942), - [anon_sym_not_DASHhas2] = ACTIONS(1942), - [anon_sym_starts_DASHwith2] = ACTIONS(1942), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1942), - [anon_sym_ends_DASHwith2] = ACTIONS(1942), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1942), - [anon_sym_EQ_EQ2] = ACTIONS(1942), - [anon_sym_BANG_EQ2] = ACTIONS(1942), - [anon_sym_LT2] = ACTIONS(1944), - [anon_sym_LT_EQ2] = ACTIONS(1942), - [anon_sym_GT_EQ2] = ACTIONS(1942), - [anon_sym_EQ_TILDE2] = ACTIONS(1942), - [anon_sym_BANG_TILDE2] = ACTIONS(1942), - [anon_sym_like2] = ACTIONS(1942), - [anon_sym_not_DASHlike2] = ACTIONS(1942), - [anon_sym_LPAREN2] = ACTIONS(1946), - [anon_sym_STAR_STAR2] = ACTIONS(1942), - [anon_sym_PLUS_PLUS2] = ACTIONS(1942), - [anon_sym_SLASH2] = ACTIONS(1944), - [anon_sym_mod2] = ACTIONS(1942), - [anon_sym_SLASH_SLASH2] = ACTIONS(1942), - [anon_sym_PLUS2] = ACTIONS(1944), - [anon_sym_bit_DASHshl2] = ACTIONS(1942), - [anon_sym_bit_DASHshr2] = ACTIONS(1942), - [anon_sym_bit_DASHand2] = ACTIONS(1942), - [anon_sym_bit_DASHxor2] = ACTIONS(1942), - [anon_sym_bit_DASHor2] = ACTIONS(1942), - [anon_sym_err_GT] = ACTIONS(1944), - [anon_sym_out_GT] = ACTIONS(1944), - [anon_sym_e_GT] = ACTIONS(1944), - [anon_sym_o_GT] = ACTIONS(1944), - [anon_sym_err_PLUSout_GT] = ACTIONS(1944), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1944), - [anon_sym_o_PLUSe_GT] = ACTIONS(1944), - [anon_sym_e_PLUSo_GT] = ACTIONS(1944), - [anon_sym_err_GT_GT] = ACTIONS(1942), - [anon_sym_out_GT_GT] = ACTIONS(1942), - [anon_sym_e_GT_GT] = ACTIONS(1942), - [anon_sym_o_GT_GT] = ACTIONS(1942), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1942), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1942), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1942), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1942), - [sym__unquoted_pattern] = ACTIONS(1598), + [anon_sym_in] = ACTIONS(2628), + [sym__newline] = ACTIONS(2628), + [anon_sym_SEMI] = ACTIONS(2628), + [anon_sym_PIPE] = ACTIONS(2628), + [anon_sym_err_GT_PIPE] = ACTIONS(2628), + [anon_sym_out_GT_PIPE] = ACTIONS(2628), + [anon_sym_e_GT_PIPE] = ACTIONS(2628), + [anon_sym_o_GT_PIPE] = ACTIONS(2628), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2628), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2628), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2628), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2628), + [anon_sym_RPAREN] = ACTIONS(2628), + [anon_sym_GT2] = ACTIONS(2630), + [anon_sym_DASH2] = ACTIONS(2628), + [anon_sym_LBRACE] = ACTIONS(2628), + [anon_sym_RBRACE] = ACTIONS(2628), + [anon_sym_EQ_GT] = ACTIONS(2628), + [anon_sym_STAR2] = ACTIONS(2630), + [anon_sym_and2] = ACTIONS(2628), + [anon_sym_xor2] = ACTIONS(2628), + [anon_sym_or2] = ACTIONS(2628), + [anon_sym_not_DASHin2] = ACTIONS(2628), + [anon_sym_has2] = ACTIONS(2628), + [anon_sym_not_DASHhas2] = ACTIONS(2628), + [anon_sym_starts_DASHwith2] = ACTIONS(2628), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2628), + [anon_sym_ends_DASHwith2] = ACTIONS(2628), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2628), + [anon_sym_EQ_EQ2] = ACTIONS(2628), + [anon_sym_BANG_EQ2] = ACTIONS(2628), + [anon_sym_LT2] = ACTIONS(2630), + [anon_sym_LT_EQ2] = ACTIONS(2628), + [anon_sym_GT_EQ2] = ACTIONS(2628), + [anon_sym_EQ_TILDE2] = ACTIONS(2628), + [anon_sym_BANG_TILDE2] = ACTIONS(2628), + [anon_sym_like2] = ACTIONS(2628), + [anon_sym_not_DASHlike2] = ACTIONS(2628), + [anon_sym_STAR_STAR2] = ACTIONS(2628), + [anon_sym_PLUS_PLUS2] = ACTIONS(2628), + [anon_sym_SLASH2] = ACTIONS(2630), + [anon_sym_mod2] = ACTIONS(2628), + [anon_sym_SLASH_SLASH2] = ACTIONS(2628), + [anon_sym_PLUS2] = ACTIONS(2630), + [anon_sym_bit_DASHshl2] = ACTIONS(2628), + [anon_sym_bit_DASHshr2] = ACTIONS(2628), + [anon_sym_bit_DASHand2] = ACTIONS(2628), + [anon_sym_bit_DASHxor2] = ACTIONS(2628), + [anon_sym_bit_DASHor2] = ACTIONS(2628), + [anon_sym_err_GT] = ACTIONS(2630), + [anon_sym_out_GT] = ACTIONS(2630), + [anon_sym_e_GT] = ACTIONS(2630), + [anon_sym_o_GT] = ACTIONS(2630), + [anon_sym_err_PLUSout_GT] = ACTIONS(2630), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2630), + [anon_sym_o_PLUSe_GT] = ACTIONS(2630), + [anon_sym_e_PLUSo_GT] = ACTIONS(2630), + [anon_sym_err_GT_GT] = ACTIONS(2628), + [anon_sym_out_GT_GT] = ACTIONS(2628), + [anon_sym_e_GT_GT] = ACTIONS(2628), + [anon_sym_o_GT_GT] = ACTIONS(2628), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2628), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2628), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2628), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2628), [anon_sym_POUND] = ACTIONS(3), }, [STATE(945)] = { [sym_comment] = STATE(945), - [ts_builtin_sym_end] = ACTIONS(1800), - [anon_sym_in] = ACTIONS(1800), - [sym__newline] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_PIPE] = ACTIONS(1800), - [anon_sym_err_GT_PIPE] = ACTIONS(1800), - [anon_sym_out_GT_PIPE] = ACTIONS(1800), - [anon_sym_e_GT_PIPE] = ACTIONS(1800), - [anon_sym_o_GT_PIPE] = ACTIONS(1800), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1800), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1800), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1800), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1800), - [anon_sym_GT2] = ACTIONS(1802), - [anon_sym_DASH2] = ACTIONS(1800), - [anon_sym_STAR2] = ACTIONS(1802), - [anon_sym_and2] = ACTIONS(1800), - [anon_sym_xor2] = ACTIONS(1800), - [anon_sym_or2] = ACTIONS(1800), - [anon_sym_not_DASHin2] = ACTIONS(1800), - [anon_sym_has2] = ACTIONS(1800), - [anon_sym_not_DASHhas2] = ACTIONS(1800), - [anon_sym_starts_DASHwith2] = ACTIONS(1800), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1800), - [anon_sym_ends_DASHwith2] = ACTIONS(1800), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1800), - [anon_sym_EQ_EQ2] = ACTIONS(1800), - [anon_sym_BANG_EQ2] = ACTIONS(1800), - [anon_sym_LT2] = ACTIONS(1802), - [anon_sym_LT_EQ2] = ACTIONS(1800), - [anon_sym_GT_EQ2] = ACTIONS(1800), - [anon_sym_EQ_TILDE2] = ACTIONS(1800), - [anon_sym_BANG_TILDE2] = ACTIONS(1800), - [anon_sym_like2] = ACTIONS(1800), - [anon_sym_not_DASHlike2] = ACTIONS(1800), - [anon_sym_STAR_STAR2] = ACTIONS(1800), - [anon_sym_PLUS_PLUS2] = ACTIONS(1800), - [anon_sym_SLASH2] = ACTIONS(1802), - [anon_sym_mod2] = ACTIONS(1800), - [anon_sym_SLASH_SLASH2] = ACTIONS(1800), - [anon_sym_PLUS2] = ACTIONS(1802), - [anon_sym_bit_DASHshl2] = ACTIONS(1800), - [anon_sym_bit_DASHshr2] = ACTIONS(1800), - [anon_sym_bit_DASHand2] = ACTIONS(1800), - [anon_sym_bit_DASHxor2] = ACTIONS(1800), - [anon_sym_bit_DASHor2] = ACTIONS(1800), - [anon_sym_DOT_DOT2] = ACTIONS(1802), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1800), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1800), - [anon_sym_err_GT] = ACTIONS(1802), - [anon_sym_out_GT] = ACTIONS(1802), - [anon_sym_e_GT] = ACTIONS(1802), - [anon_sym_o_GT] = ACTIONS(1802), - [anon_sym_err_PLUSout_GT] = ACTIONS(1802), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1802), - [anon_sym_o_PLUSe_GT] = ACTIONS(1802), - [anon_sym_e_PLUSo_GT] = ACTIONS(1802), - [anon_sym_err_GT_GT] = ACTIONS(1800), - [anon_sym_out_GT_GT] = ACTIONS(1800), - [anon_sym_e_GT_GT] = ACTIONS(1800), - [anon_sym_o_GT_GT] = ACTIONS(1800), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1800), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1800), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1800), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1800), + [ts_builtin_sym_end] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [sym__newline] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1750), + [anon_sym_err_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_GT_PIPE] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1750), + [anon_sym_GT2] = ACTIONS(1752), + [anon_sym_DASH2] = ACTIONS(1750), + [anon_sym_STAR2] = ACTIONS(1752), + [anon_sym_and2] = ACTIONS(1750), + [anon_sym_xor2] = ACTIONS(1750), + [anon_sym_or2] = ACTIONS(1750), + [anon_sym_not_DASHin2] = ACTIONS(1750), + [anon_sym_has2] = ACTIONS(1750), + [anon_sym_not_DASHhas2] = ACTIONS(1750), + [anon_sym_starts_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1750), + [anon_sym_ends_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1750), + [anon_sym_EQ_EQ2] = ACTIONS(1750), + [anon_sym_BANG_EQ2] = ACTIONS(1750), + [anon_sym_LT2] = ACTIONS(1752), + [anon_sym_LT_EQ2] = ACTIONS(1750), + [anon_sym_GT_EQ2] = ACTIONS(1750), + [anon_sym_EQ_TILDE2] = ACTIONS(1750), + [anon_sym_BANG_TILDE2] = ACTIONS(1750), + [anon_sym_like2] = ACTIONS(1750), + [anon_sym_not_DASHlike2] = ACTIONS(1750), + [anon_sym_LPAREN2] = ACTIONS(1750), + [anon_sym_STAR_STAR2] = ACTIONS(1750), + [anon_sym_PLUS_PLUS2] = ACTIONS(1750), + [anon_sym_SLASH2] = ACTIONS(1752), + [anon_sym_mod2] = ACTIONS(1750), + [anon_sym_SLASH_SLASH2] = ACTIONS(1750), + [anon_sym_PLUS2] = ACTIONS(1752), + [anon_sym_bit_DASHshl2] = ACTIONS(1750), + [anon_sym_bit_DASHshr2] = ACTIONS(1750), + [anon_sym_bit_DASHand2] = ACTIONS(1750), + [anon_sym_bit_DASHxor2] = ACTIONS(1750), + [anon_sym_bit_DASHor2] = ACTIONS(1750), + [aux_sym__immediate_decimal_token5] = ACTIONS(2273), + [anon_sym_err_GT] = ACTIONS(1752), + [anon_sym_out_GT] = ACTIONS(1752), + [anon_sym_e_GT] = ACTIONS(1752), + [anon_sym_o_GT] = ACTIONS(1752), + [anon_sym_err_PLUSout_GT] = ACTIONS(1752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1752), + [anon_sym_o_PLUSe_GT] = ACTIONS(1752), + [anon_sym_e_PLUSo_GT] = ACTIONS(1752), + [anon_sym_err_GT_GT] = ACTIONS(1750), + [anon_sym_out_GT_GT] = ACTIONS(1750), + [anon_sym_e_GT_GT] = ACTIONS(1750), + [anon_sym_o_GT_GT] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1750), + [sym__unquoted_pattern] = ACTIONS(1752), [anon_sym_POUND] = ACTIONS(3), }, [STATE(946)] = { [sym_comment] = STATE(946), - [ts_builtin_sym_end] = ACTIONS(1574), - [anon_sym_in] = ACTIONS(1574), - [sym__newline] = ACTIONS(1574), - [anon_sym_SEMI] = ACTIONS(1574), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_err_GT_PIPE] = ACTIONS(1574), - [anon_sym_out_GT_PIPE] = ACTIONS(1574), - [anon_sym_e_GT_PIPE] = ACTIONS(1574), - [anon_sym_o_GT_PIPE] = ACTIONS(1574), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1574), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1574), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1574), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1574), - [anon_sym_GT2] = ACTIONS(1572), - [anon_sym_DASH2] = ACTIONS(1574), - [anon_sym_STAR2] = ACTIONS(1572), - [anon_sym_and2] = ACTIONS(1574), - [anon_sym_xor2] = ACTIONS(1574), - [anon_sym_or2] = ACTIONS(1574), - [anon_sym_not_DASHin2] = ACTIONS(1574), - [anon_sym_has2] = ACTIONS(1574), - [anon_sym_not_DASHhas2] = ACTIONS(1574), - [anon_sym_starts_DASHwith2] = ACTIONS(1574), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1574), - [anon_sym_ends_DASHwith2] = ACTIONS(1574), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1574), - [anon_sym_EQ_EQ2] = ACTIONS(1574), - [anon_sym_BANG_EQ2] = ACTIONS(1574), - [anon_sym_LT2] = ACTIONS(1572), - [anon_sym_LT_EQ2] = ACTIONS(1574), - [anon_sym_GT_EQ2] = ACTIONS(1574), - [anon_sym_EQ_TILDE2] = ACTIONS(1574), - [anon_sym_BANG_TILDE2] = ACTIONS(1574), - [anon_sym_like2] = ACTIONS(1574), - [anon_sym_not_DASHlike2] = ACTIONS(1574), - [anon_sym_STAR_STAR2] = ACTIONS(1574), - [anon_sym_PLUS_PLUS2] = ACTIONS(1574), - [anon_sym_SLASH2] = ACTIONS(1572), - [anon_sym_mod2] = ACTIONS(1574), - [anon_sym_SLASH_SLASH2] = ACTIONS(1574), - [anon_sym_PLUS2] = ACTIONS(1572), - [anon_sym_bit_DASHshl2] = ACTIONS(1574), - [anon_sym_bit_DASHshr2] = ACTIONS(1574), - [anon_sym_bit_DASHand2] = ACTIONS(1574), - [anon_sym_bit_DASHxor2] = ACTIONS(1574), - [anon_sym_bit_DASHor2] = ACTIONS(1574), - [anon_sym_DOT_DOT2] = ACTIONS(1572), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1574), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1574), - [anon_sym_err_GT] = ACTIONS(1572), - [anon_sym_out_GT] = ACTIONS(1572), - [anon_sym_e_GT] = ACTIONS(1572), - [anon_sym_o_GT] = ACTIONS(1572), - [anon_sym_err_PLUSout_GT] = ACTIONS(1572), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1572), - [anon_sym_o_PLUSe_GT] = ACTIONS(1572), - [anon_sym_e_PLUSo_GT] = ACTIONS(1572), - [anon_sym_err_GT_GT] = ACTIONS(1574), - [anon_sym_out_GT_GT] = ACTIONS(1574), - [anon_sym_e_GT_GT] = ACTIONS(1574), - [anon_sym_o_GT_GT] = ACTIONS(1574), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1574), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1574), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1574), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1574), + [ts_builtin_sym_end] = ACTIONS(1706), + [anon_sym_in] = ACTIONS(1706), + [sym__newline] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1706), + [anon_sym_err_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_GT_PIPE] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), + [anon_sym_GT2] = ACTIONS(1604), + [anon_sym_DASH2] = ACTIONS(1706), + [anon_sym_STAR2] = ACTIONS(1604), + [anon_sym_and2] = ACTIONS(1706), + [anon_sym_xor2] = ACTIONS(1706), + [anon_sym_or2] = ACTIONS(1706), + [anon_sym_not_DASHin2] = ACTIONS(1706), + [anon_sym_has2] = ACTIONS(1706), + [anon_sym_not_DASHhas2] = ACTIONS(1706), + [anon_sym_starts_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), + [anon_sym_ends_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), + [anon_sym_EQ_EQ2] = ACTIONS(1706), + [anon_sym_BANG_EQ2] = ACTIONS(1706), + [anon_sym_LT2] = ACTIONS(1604), + [anon_sym_LT_EQ2] = ACTIONS(1706), + [anon_sym_GT_EQ2] = ACTIONS(1706), + [anon_sym_EQ_TILDE2] = ACTIONS(1706), + [anon_sym_BANG_TILDE2] = ACTIONS(1706), + [anon_sym_like2] = ACTIONS(1706), + [anon_sym_not_DASHlike2] = ACTIONS(1706), + [anon_sym_STAR_STAR2] = ACTIONS(1706), + [anon_sym_PLUS_PLUS2] = ACTIONS(1706), + [anon_sym_SLASH2] = ACTIONS(1604), + [anon_sym_mod2] = ACTIONS(1706), + [anon_sym_SLASH_SLASH2] = ACTIONS(1706), + [anon_sym_PLUS2] = ACTIONS(1604), + [anon_sym_bit_DASHshl2] = ACTIONS(1706), + [anon_sym_bit_DASHshr2] = ACTIONS(1706), + [anon_sym_bit_DASHand2] = ACTIONS(1706), + [anon_sym_bit_DASHxor2] = ACTIONS(1706), + [anon_sym_bit_DASHor2] = ACTIONS(1706), + [anon_sym_DOT_DOT2] = ACTIONS(1734), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1736), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1736), + [anon_sym_err_GT] = ACTIONS(1604), + [anon_sym_out_GT] = ACTIONS(1604), + [anon_sym_e_GT] = ACTIONS(1604), + [anon_sym_o_GT] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT] = ACTIONS(1604), + [anon_sym_err_GT_GT] = ACTIONS(1706), + [anon_sym_out_GT_GT] = ACTIONS(1706), + [anon_sym_e_GT_GT] = ACTIONS(1706), + [anon_sym_o_GT_GT] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), [anon_sym_POUND] = ACTIONS(3), }, [STATE(947)] = { [sym_comment] = STATE(947), - [ts_builtin_sym_end] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [sym__newline] = ACTIONS(1866), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_err_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_GT_PIPE] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), - [anon_sym_GT2] = ACTIONS(1868), - [anon_sym_DASH2] = ACTIONS(1866), - [anon_sym_STAR2] = ACTIONS(1868), - [anon_sym_and2] = ACTIONS(1866), - [anon_sym_xor2] = ACTIONS(1866), - [anon_sym_or2] = ACTIONS(1866), - [anon_sym_not_DASHin2] = ACTIONS(1866), - [anon_sym_has2] = ACTIONS(1866), - [anon_sym_not_DASHhas2] = ACTIONS(1866), - [anon_sym_starts_DASHwith2] = ACTIONS(1866), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1866), - [anon_sym_ends_DASHwith2] = ACTIONS(1866), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1866), - [anon_sym_EQ_EQ2] = ACTIONS(1866), - [anon_sym_BANG_EQ2] = ACTIONS(1866), - [anon_sym_LT2] = ACTIONS(1868), - [anon_sym_LT_EQ2] = ACTIONS(1866), - [anon_sym_GT_EQ2] = ACTIONS(1866), - [anon_sym_EQ_TILDE2] = ACTIONS(1866), - [anon_sym_BANG_TILDE2] = ACTIONS(1866), - [anon_sym_like2] = ACTIONS(1866), - [anon_sym_not_DASHlike2] = ACTIONS(1866), - [anon_sym_STAR_STAR2] = ACTIONS(1866), - [anon_sym_PLUS_PLUS2] = ACTIONS(1866), - [anon_sym_SLASH2] = ACTIONS(1868), - [anon_sym_mod2] = ACTIONS(1866), - [anon_sym_SLASH_SLASH2] = ACTIONS(1866), - [anon_sym_PLUS2] = ACTIONS(1868), - [anon_sym_bit_DASHshl2] = ACTIONS(1866), - [anon_sym_bit_DASHshr2] = ACTIONS(1866), - [anon_sym_bit_DASHand2] = ACTIONS(1866), - [anon_sym_bit_DASHxor2] = ACTIONS(1866), - [anon_sym_bit_DASHor2] = ACTIONS(1866), - [anon_sym_DOT_DOT2] = ACTIONS(1868), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1866), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1866), - [anon_sym_err_GT] = ACTIONS(1868), - [anon_sym_out_GT] = ACTIONS(1868), - [anon_sym_e_GT] = ACTIONS(1868), - [anon_sym_o_GT] = ACTIONS(1868), - [anon_sym_err_PLUSout_GT] = ACTIONS(1868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1868), - [anon_sym_o_PLUSe_GT] = ACTIONS(1868), - [anon_sym_e_PLUSo_GT] = ACTIONS(1868), - [anon_sym_err_GT_GT] = ACTIONS(1866), - [anon_sym_out_GT_GT] = ACTIONS(1866), - [anon_sym_e_GT_GT] = ACTIONS(1866), - [anon_sym_o_GT_GT] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), + [ts_builtin_sym_end] = ACTIONS(2134), + [anon_sym_in] = ACTIONS(2134), + [sym__newline] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_err_GT_PIPE] = ACTIONS(2134), + [anon_sym_out_GT_PIPE] = ACTIONS(2134), + [anon_sym_e_GT_PIPE] = ACTIONS(2134), + [anon_sym_o_GT_PIPE] = ACTIONS(2134), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2134), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2134), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2134), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2134), + [anon_sym_GT2] = ACTIONS(2136), + [anon_sym_DASH2] = ACTIONS(2134), + [anon_sym_STAR2] = ACTIONS(2136), + [anon_sym_and2] = ACTIONS(2134), + [anon_sym_xor2] = ACTIONS(2134), + [anon_sym_or2] = ACTIONS(2134), + [anon_sym_not_DASHin2] = ACTIONS(2134), + [anon_sym_has2] = ACTIONS(2134), + [anon_sym_not_DASHhas2] = ACTIONS(2134), + [anon_sym_starts_DASHwith2] = ACTIONS(2134), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2134), + [anon_sym_ends_DASHwith2] = ACTIONS(2134), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2134), + [anon_sym_EQ_EQ2] = ACTIONS(2134), + [anon_sym_BANG_EQ2] = ACTIONS(2134), + [anon_sym_LT2] = ACTIONS(2136), + [anon_sym_LT_EQ2] = ACTIONS(2134), + [anon_sym_GT_EQ2] = ACTIONS(2134), + [anon_sym_EQ_TILDE2] = ACTIONS(2134), + [anon_sym_BANG_TILDE2] = ACTIONS(2134), + [anon_sym_like2] = ACTIONS(2134), + [anon_sym_not_DASHlike2] = ACTIONS(2134), + [anon_sym_STAR_STAR2] = ACTIONS(2134), + [anon_sym_PLUS_PLUS2] = ACTIONS(2134), + [anon_sym_SLASH2] = ACTIONS(2136), + [anon_sym_mod2] = ACTIONS(2134), + [anon_sym_SLASH_SLASH2] = ACTIONS(2134), + [anon_sym_PLUS2] = ACTIONS(2136), + [anon_sym_bit_DASHshl2] = ACTIONS(2134), + [anon_sym_bit_DASHshr2] = ACTIONS(2134), + [anon_sym_bit_DASHand2] = ACTIONS(2134), + [anon_sym_bit_DASHxor2] = ACTIONS(2134), + [anon_sym_bit_DASHor2] = ACTIONS(2134), + [anon_sym_DOT_DOT2] = ACTIONS(2632), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2634), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2634), + [anon_sym_err_GT] = ACTIONS(2136), + [anon_sym_out_GT] = ACTIONS(2136), + [anon_sym_e_GT] = ACTIONS(2136), + [anon_sym_o_GT] = ACTIONS(2136), + [anon_sym_err_PLUSout_GT] = ACTIONS(2136), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2136), + [anon_sym_o_PLUSe_GT] = ACTIONS(2136), + [anon_sym_e_PLUSo_GT] = ACTIONS(2136), + [anon_sym_err_GT_GT] = ACTIONS(2134), + [anon_sym_out_GT_GT] = ACTIONS(2134), + [anon_sym_e_GT_GT] = ACTIONS(2134), + [anon_sym_o_GT_GT] = ACTIONS(2134), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2134), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2134), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2134), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2134), [anon_sym_POUND] = ACTIONS(3), }, [STATE(948)] = { [sym_comment] = STATE(948), - [anon_sym_in] = ACTIONS(2622), - [sym__newline] = ACTIONS(2622), - [anon_sym_SEMI] = ACTIONS(2622), - [anon_sym_PIPE] = ACTIONS(2622), - [anon_sym_err_GT_PIPE] = ACTIONS(2622), - [anon_sym_out_GT_PIPE] = ACTIONS(2622), - [anon_sym_e_GT_PIPE] = ACTIONS(2622), - [anon_sym_o_GT_PIPE] = ACTIONS(2622), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2622), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2622), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2622), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2622), - [anon_sym_RPAREN] = ACTIONS(2622), - [anon_sym_GT2] = ACTIONS(2624), - [anon_sym_DASH2] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2622), - [anon_sym_RBRACE] = ACTIONS(2622), - [anon_sym_EQ_GT] = ACTIONS(2622), - [anon_sym_STAR2] = ACTIONS(2624), - [anon_sym_and2] = ACTIONS(2622), - [anon_sym_xor2] = ACTIONS(2622), - [anon_sym_or2] = ACTIONS(2622), - [anon_sym_not_DASHin2] = ACTIONS(2622), - [anon_sym_has2] = ACTIONS(2622), - [anon_sym_not_DASHhas2] = ACTIONS(2622), - [anon_sym_starts_DASHwith2] = ACTIONS(2622), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2622), - [anon_sym_ends_DASHwith2] = ACTIONS(2622), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2622), - [anon_sym_EQ_EQ2] = ACTIONS(2622), - [anon_sym_BANG_EQ2] = ACTIONS(2622), - [anon_sym_LT2] = ACTIONS(2624), - [anon_sym_LT_EQ2] = ACTIONS(2622), - [anon_sym_GT_EQ2] = ACTIONS(2622), - [anon_sym_EQ_TILDE2] = ACTIONS(2622), - [anon_sym_BANG_TILDE2] = ACTIONS(2622), - [anon_sym_like2] = ACTIONS(2622), - [anon_sym_not_DASHlike2] = ACTIONS(2622), - [anon_sym_STAR_STAR2] = ACTIONS(2622), - [anon_sym_PLUS_PLUS2] = ACTIONS(2622), - [anon_sym_SLASH2] = ACTIONS(2624), - [anon_sym_mod2] = ACTIONS(2622), - [anon_sym_SLASH_SLASH2] = ACTIONS(2622), - [anon_sym_PLUS2] = ACTIONS(2624), - [anon_sym_bit_DASHshl2] = ACTIONS(2622), - [anon_sym_bit_DASHshr2] = ACTIONS(2622), - [anon_sym_bit_DASHand2] = ACTIONS(2622), - [anon_sym_bit_DASHxor2] = ACTIONS(2622), - [anon_sym_bit_DASHor2] = ACTIONS(2622), - [anon_sym_err_GT] = ACTIONS(2624), - [anon_sym_out_GT] = ACTIONS(2624), - [anon_sym_e_GT] = ACTIONS(2624), - [anon_sym_o_GT] = ACTIONS(2624), - [anon_sym_err_PLUSout_GT] = ACTIONS(2624), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2624), - [anon_sym_o_PLUSe_GT] = ACTIONS(2624), - [anon_sym_e_PLUSo_GT] = ACTIONS(2624), - [anon_sym_err_GT_GT] = ACTIONS(2622), - [anon_sym_out_GT_GT] = ACTIONS(2622), - [anon_sym_e_GT_GT] = ACTIONS(2622), - [anon_sym_o_GT_GT] = ACTIONS(2622), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2622), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2622), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2622), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2622), + [anon_sym_in] = ACTIONS(2533), + [sym__newline] = ACTIONS(2533), + [anon_sym_SEMI] = ACTIONS(2533), + [anon_sym_PIPE] = ACTIONS(2533), + [anon_sym_err_GT_PIPE] = ACTIONS(2533), + [anon_sym_out_GT_PIPE] = ACTIONS(2533), + [anon_sym_e_GT_PIPE] = ACTIONS(2533), + [anon_sym_o_GT_PIPE] = ACTIONS(2533), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), + [anon_sym_RPAREN] = ACTIONS(2533), + [anon_sym_GT2] = ACTIONS(2535), + [anon_sym_DASH2] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2533), + [anon_sym_RBRACE] = ACTIONS(2533), + [anon_sym_EQ_GT] = ACTIONS(2533), + [anon_sym_STAR2] = ACTIONS(2535), + [anon_sym_and2] = ACTIONS(2533), + [anon_sym_xor2] = ACTIONS(2533), + [anon_sym_or2] = ACTIONS(2533), + [anon_sym_not_DASHin2] = ACTIONS(2533), + [anon_sym_has2] = ACTIONS(2533), + [anon_sym_not_DASHhas2] = ACTIONS(2533), + [anon_sym_starts_DASHwith2] = ACTIONS(2533), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), + [anon_sym_ends_DASHwith2] = ACTIONS(2533), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), + [anon_sym_EQ_EQ2] = ACTIONS(2533), + [anon_sym_BANG_EQ2] = ACTIONS(2533), + [anon_sym_LT2] = ACTIONS(2535), + [anon_sym_LT_EQ2] = ACTIONS(2533), + [anon_sym_GT_EQ2] = ACTIONS(2533), + [anon_sym_EQ_TILDE2] = ACTIONS(2533), + [anon_sym_BANG_TILDE2] = ACTIONS(2533), + [anon_sym_like2] = ACTIONS(2533), + [anon_sym_not_DASHlike2] = ACTIONS(2533), + [anon_sym_STAR_STAR2] = ACTIONS(2533), + [anon_sym_PLUS_PLUS2] = ACTIONS(2533), + [anon_sym_SLASH2] = ACTIONS(2535), + [anon_sym_mod2] = ACTIONS(2533), + [anon_sym_SLASH_SLASH2] = ACTIONS(2533), + [anon_sym_PLUS2] = ACTIONS(2535), + [anon_sym_bit_DASHshl2] = ACTIONS(2533), + [anon_sym_bit_DASHshr2] = ACTIONS(2533), + [anon_sym_bit_DASHand2] = ACTIONS(2533), + [anon_sym_bit_DASHxor2] = ACTIONS(2533), + [anon_sym_bit_DASHor2] = ACTIONS(2533), + [anon_sym_err_GT] = ACTIONS(2535), + [anon_sym_out_GT] = ACTIONS(2535), + [anon_sym_e_GT] = ACTIONS(2535), + [anon_sym_o_GT] = ACTIONS(2535), + [anon_sym_err_PLUSout_GT] = ACTIONS(2535), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), + [anon_sym_o_PLUSe_GT] = ACTIONS(2535), + [anon_sym_e_PLUSo_GT] = ACTIONS(2535), + [anon_sym_err_GT_GT] = ACTIONS(2533), + [anon_sym_out_GT_GT] = ACTIONS(2533), + [anon_sym_e_GT_GT] = ACTIONS(2533), + [anon_sym_o_GT_GT] = ACTIONS(2533), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), [anon_sym_POUND] = ACTIONS(3), }, [STATE(949)] = { [sym_comment] = STATE(949), - [anon_sym_in] = ACTIONS(2574), - [sym__newline] = ACTIONS(2574), - [anon_sym_SEMI] = ACTIONS(2574), - [anon_sym_PIPE] = ACTIONS(2574), - [anon_sym_err_GT_PIPE] = ACTIONS(2574), - [anon_sym_out_GT_PIPE] = ACTIONS(2574), - [anon_sym_e_GT_PIPE] = ACTIONS(2574), - [anon_sym_o_GT_PIPE] = ACTIONS(2574), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2574), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2574), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2574), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2574), - [anon_sym_RPAREN] = ACTIONS(2574), - [anon_sym_GT2] = ACTIONS(2576), - [anon_sym_DASH2] = ACTIONS(2574), - [anon_sym_RBRACE] = ACTIONS(2574), - [anon_sym_STAR2] = ACTIONS(2576), - [anon_sym_and2] = ACTIONS(2574), - [anon_sym_xor2] = ACTIONS(2574), - [anon_sym_or2] = ACTIONS(2574), - [anon_sym_not_DASHin2] = ACTIONS(2574), - [anon_sym_has2] = ACTIONS(2574), - [anon_sym_not_DASHhas2] = ACTIONS(2574), - [anon_sym_starts_DASHwith2] = ACTIONS(2574), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2574), - [anon_sym_ends_DASHwith2] = ACTIONS(2574), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2574), - [anon_sym_EQ_EQ2] = ACTIONS(2574), - [anon_sym_BANG_EQ2] = ACTIONS(2574), - [anon_sym_LT2] = ACTIONS(2576), - [anon_sym_LT_EQ2] = ACTIONS(2574), - [anon_sym_GT_EQ2] = ACTIONS(2574), - [anon_sym_EQ_TILDE2] = ACTIONS(2574), - [anon_sym_BANG_TILDE2] = ACTIONS(2574), - [anon_sym_like2] = ACTIONS(2574), - [anon_sym_not_DASHlike2] = ACTIONS(2574), - [anon_sym_LPAREN2] = ACTIONS(1956), - [anon_sym_STAR_STAR2] = ACTIONS(2574), - [anon_sym_PLUS_PLUS2] = ACTIONS(2574), - [anon_sym_SLASH2] = ACTIONS(2576), - [anon_sym_mod2] = ACTIONS(2574), - [anon_sym_SLASH_SLASH2] = ACTIONS(2574), - [anon_sym_PLUS2] = ACTIONS(2576), - [anon_sym_bit_DASHshl2] = ACTIONS(2574), - [anon_sym_bit_DASHshr2] = ACTIONS(2574), - [anon_sym_bit_DASHand2] = ACTIONS(2574), - [anon_sym_bit_DASHxor2] = ACTIONS(2574), - [anon_sym_bit_DASHor2] = ACTIONS(2574), - [anon_sym_err_GT] = ACTIONS(2576), - [anon_sym_out_GT] = ACTIONS(2576), - [anon_sym_e_GT] = ACTIONS(2576), - [anon_sym_o_GT] = ACTIONS(2576), - [anon_sym_err_PLUSout_GT] = ACTIONS(2576), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2576), - [anon_sym_o_PLUSe_GT] = ACTIONS(2576), - [anon_sym_e_PLUSo_GT] = ACTIONS(2576), - [anon_sym_err_GT_GT] = ACTIONS(2574), - [anon_sym_out_GT_GT] = ACTIONS(2574), - [anon_sym_e_GT_GT] = ACTIONS(2574), - [anon_sym_o_GT_GT] = ACTIONS(2574), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2574), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2574), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2574), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2574), - [sym__unquoted_pattern] = ACTIONS(1962), + [anon_sym_in] = ACTIONS(2001), + [sym__newline] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_err_GT_PIPE] = ACTIONS(2001), + [anon_sym_out_GT_PIPE] = ACTIONS(2001), + [anon_sym_e_GT_PIPE] = ACTIONS(2001), + [anon_sym_o_GT_PIPE] = ACTIONS(2001), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2001), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2001), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2001), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2001), + [anon_sym_RPAREN] = ACTIONS(2001), + [anon_sym_GT2] = ACTIONS(2003), + [anon_sym_DASH2] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2001), + [anon_sym_STAR2] = ACTIONS(2003), + [anon_sym_and2] = ACTIONS(2001), + [anon_sym_xor2] = ACTIONS(2001), + [anon_sym_or2] = ACTIONS(2001), + [anon_sym_not_DASHin2] = ACTIONS(2001), + [anon_sym_has2] = ACTIONS(2001), + [anon_sym_not_DASHhas2] = ACTIONS(2001), + [anon_sym_starts_DASHwith2] = ACTIONS(2001), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2001), + [anon_sym_ends_DASHwith2] = ACTIONS(2001), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2001), + [anon_sym_EQ_EQ2] = ACTIONS(2001), + [anon_sym_BANG_EQ2] = ACTIONS(2001), + [anon_sym_LT2] = ACTIONS(2003), + [anon_sym_LT_EQ2] = ACTIONS(2001), + [anon_sym_GT_EQ2] = ACTIONS(2001), + [anon_sym_EQ_TILDE2] = ACTIONS(2001), + [anon_sym_BANG_TILDE2] = ACTIONS(2001), + [anon_sym_like2] = ACTIONS(2001), + [anon_sym_not_DASHlike2] = ACTIONS(2001), + [anon_sym_LPAREN2] = ACTIONS(2005), + [anon_sym_STAR_STAR2] = ACTIONS(2001), + [anon_sym_PLUS_PLUS2] = ACTIONS(2001), + [anon_sym_SLASH2] = ACTIONS(2003), + [anon_sym_mod2] = ACTIONS(2001), + [anon_sym_SLASH_SLASH2] = ACTIONS(2001), + [anon_sym_PLUS2] = ACTIONS(2003), + [anon_sym_bit_DASHshl2] = ACTIONS(2001), + [anon_sym_bit_DASHshr2] = ACTIONS(2001), + [anon_sym_bit_DASHand2] = ACTIONS(2001), + [anon_sym_bit_DASHxor2] = ACTIONS(2001), + [anon_sym_bit_DASHor2] = ACTIONS(2001), + [anon_sym_err_GT] = ACTIONS(2003), + [anon_sym_out_GT] = ACTIONS(2003), + [anon_sym_e_GT] = ACTIONS(2003), + [anon_sym_o_GT] = ACTIONS(2003), + [anon_sym_err_PLUSout_GT] = ACTIONS(2003), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2003), + [anon_sym_o_PLUSe_GT] = ACTIONS(2003), + [anon_sym_e_PLUSo_GT] = ACTIONS(2003), + [anon_sym_err_GT_GT] = ACTIONS(2001), + [anon_sym_out_GT_GT] = ACTIONS(2001), + [anon_sym_e_GT_GT] = ACTIONS(2001), + [anon_sym_o_GT_GT] = ACTIONS(2001), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2001), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2001), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2001), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2001), + [sym__unquoted_pattern] = ACTIONS(1598), [anon_sym_POUND] = ACTIONS(3), }, [STATE(950)] = { [sym_comment] = STATE(950), - [ts_builtin_sym_end] = ACTIONS(1870), - [anon_sym_in] = ACTIONS(1870), - [sym__newline] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_err_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_GT_PIPE] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1870), - [anon_sym_GT2] = ACTIONS(1872), - [anon_sym_DASH2] = ACTIONS(1870), - [anon_sym_STAR2] = ACTIONS(1872), - [anon_sym_and2] = ACTIONS(1870), - [anon_sym_xor2] = ACTIONS(1870), - [anon_sym_or2] = ACTIONS(1870), - [anon_sym_not_DASHin2] = ACTIONS(1870), - [anon_sym_has2] = ACTIONS(1870), - [anon_sym_not_DASHhas2] = ACTIONS(1870), - [anon_sym_starts_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1870), - [anon_sym_ends_DASHwith2] = ACTIONS(1870), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1870), - [anon_sym_EQ_EQ2] = ACTIONS(1870), - [anon_sym_BANG_EQ2] = ACTIONS(1870), - [anon_sym_LT2] = ACTIONS(1872), - [anon_sym_LT_EQ2] = ACTIONS(1870), - [anon_sym_GT_EQ2] = ACTIONS(1870), - [anon_sym_EQ_TILDE2] = ACTIONS(1870), - [anon_sym_BANG_TILDE2] = ACTIONS(1870), - [anon_sym_like2] = ACTIONS(1870), - [anon_sym_not_DASHlike2] = ACTIONS(1870), - [anon_sym_STAR_STAR2] = ACTIONS(1870), - [anon_sym_PLUS_PLUS2] = ACTIONS(1870), - [anon_sym_SLASH2] = ACTIONS(1872), - [anon_sym_mod2] = ACTIONS(1870), - [anon_sym_SLASH_SLASH2] = ACTIONS(1870), - [anon_sym_PLUS2] = ACTIONS(1872), - [anon_sym_bit_DASHshl2] = ACTIONS(1870), - [anon_sym_bit_DASHshr2] = ACTIONS(1870), - [anon_sym_bit_DASHand2] = ACTIONS(1870), - [anon_sym_bit_DASHxor2] = ACTIONS(1870), - [anon_sym_bit_DASHor2] = ACTIONS(1870), - [anon_sym_DOT_DOT2] = ACTIONS(1872), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1870), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1870), - [anon_sym_err_GT] = ACTIONS(1872), - [anon_sym_out_GT] = ACTIONS(1872), - [anon_sym_e_GT] = ACTIONS(1872), - [anon_sym_o_GT] = ACTIONS(1872), - [anon_sym_err_PLUSout_GT] = ACTIONS(1872), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), - [anon_sym_o_PLUSe_GT] = ACTIONS(1872), - [anon_sym_e_PLUSo_GT] = ACTIONS(1872), - [anon_sym_err_GT_GT] = ACTIONS(1870), - [anon_sym_out_GT_GT] = ACTIONS(1870), - [anon_sym_e_GT_GT] = ACTIONS(1870), - [anon_sym_o_GT_GT] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1870), + [ts_builtin_sym_end] = ACTIONS(2120), + [anon_sym_in] = ACTIONS(2118), + [sym__newline] = ACTIONS(2120), + [anon_sym_SEMI] = ACTIONS(2120), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_err_GT_PIPE] = ACTIONS(2120), + [anon_sym_out_GT_PIPE] = ACTIONS(2120), + [anon_sym_e_GT_PIPE] = ACTIONS(2120), + [anon_sym_o_GT_PIPE] = ACTIONS(2120), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2120), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2120), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2120), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2120), + [anon_sym_GT2] = ACTIONS(2122), + [anon_sym_DASH2] = ACTIONS(2118), + [anon_sym_STAR2] = ACTIONS(2122), + [anon_sym_and2] = ACTIONS(2118), + [anon_sym_xor2] = ACTIONS(2118), + [anon_sym_or2] = ACTIONS(2118), + [anon_sym_not_DASHin2] = ACTIONS(2118), + [anon_sym_has2] = ACTIONS(2118), + [anon_sym_not_DASHhas2] = ACTIONS(2118), + [anon_sym_starts_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2118), + [anon_sym_ends_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2118), + [anon_sym_EQ_EQ2] = ACTIONS(2118), + [anon_sym_BANG_EQ2] = ACTIONS(2118), + [anon_sym_LT2] = ACTIONS(2122), + [anon_sym_LT_EQ2] = ACTIONS(2118), + [anon_sym_GT_EQ2] = ACTIONS(2118), + [anon_sym_EQ_TILDE2] = ACTIONS(2118), + [anon_sym_BANG_TILDE2] = ACTIONS(2118), + [anon_sym_like2] = ACTIONS(2118), + [anon_sym_not_DASHlike2] = ACTIONS(2118), + [anon_sym_STAR_STAR2] = ACTIONS(2118), + [anon_sym_PLUS_PLUS2] = ACTIONS(2118), + [anon_sym_SLASH2] = ACTIONS(2122), + [anon_sym_mod2] = ACTIONS(2118), + [anon_sym_SLASH_SLASH2] = ACTIONS(2118), + [anon_sym_PLUS2] = ACTIONS(2122), + [anon_sym_bit_DASHshl2] = ACTIONS(2118), + [anon_sym_bit_DASHshr2] = ACTIONS(2118), + [anon_sym_bit_DASHand2] = ACTIONS(2118), + [anon_sym_bit_DASHxor2] = ACTIONS(2118), + [anon_sym_bit_DASHor2] = ACTIONS(2118), + [anon_sym_DOT_DOT2] = ACTIONS(1734), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1736), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1736), + [anon_sym_err_GT] = ACTIONS(2124), + [anon_sym_out_GT] = ACTIONS(2124), + [anon_sym_e_GT] = ACTIONS(2124), + [anon_sym_o_GT] = ACTIONS(2124), + [anon_sym_err_PLUSout_GT] = ACTIONS(2124), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2124), + [anon_sym_o_PLUSe_GT] = ACTIONS(2124), + [anon_sym_e_PLUSo_GT] = ACTIONS(2124), + [anon_sym_err_GT_GT] = ACTIONS(2120), + [anon_sym_out_GT_GT] = ACTIONS(2120), + [anon_sym_e_GT_GT] = ACTIONS(2120), + [anon_sym_o_GT_GT] = ACTIONS(2120), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2120), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2120), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2120), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2120), [anon_sym_POUND] = ACTIONS(3), }, [STATE(951)] = { [sym_comment] = STATE(951), - [anon_sym_in] = ACTIONS(1952), - [sym__newline] = ACTIONS(1952), - [anon_sym_SEMI] = ACTIONS(1952), - [anon_sym_PIPE] = ACTIONS(1952), - [anon_sym_err_GT_PIPE] = ACTIONS(1952), - [anon_sym_out_GT_PIPE] = ACTIONS(1952), - [anon_sym_e_GT_PIPE] = ACTIONS(1952), - [anon_sym_o_GT_PIPE] = ACTIONS(1952), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1952), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1952), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1952), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1952), - [anon_sym_RPAREN] = ACTIONS(1952), - [anon_sym_GT2] = ACTIONS(1954), - [anon_sym_DASH2] = ACTIONS(1952), - [anon_sym_RBRACE] = ACTIONS(1952), - [anon_sym_STAR2] = ACTIONS(1954), - [anon_sym_and2] = ACTIONS(1952), - [anon_sym_xor2] = ACTIONS(1952), - [anon_sym_or2] = ACTIONS(1952), - [anon_sym_not_DASHin2] = ACTIONS(1952), - [anon_sym_has2] = ACTIONS(1952), - [anon_sym_not_DASHhas2] = ACTIONS(1952), - [anon_sym_starts_DASHwith2] = ACTIONS(1952), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1952), - [anon_sym_ends_DASHwith2] = ACTIONS(1952), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1952), - [anon_sym_EQ_EQ2] = ACTIONS(1952), - [anon_sym_BANG_EQ2] = ACTIONS(1952), - [anon_sym_LT2] = ACTIONS(1954), - [anon_sym_LT_EQ2] = ACTIONS(1952), - [anon_sym_GT_EQ2] = ACTIONS(1952), - [anon_sym_EQ_TILDE2] = ACTIONS(1952), - [anon_sym_BANG_TILDE2] = ACTIONS(1952), - [anon_sym_like2] = ACTIONS(1952), - [anon_sym_not_DASHlike2] = ACTIONS(1952), - [anon_sym_LPAREN2] = ACTIONS(1956), - [anon_sym_STAR_STAR2] = ACTIONS(1952), - [anon_sym_PLUS_PLUS2] = ACTIONS(1952), - [anon_sym_SLASH2] = ACTIONS(1954), - [anon_sym_mod2] = ACTIONS(1952), - [anon_sym_SLASH_SLASH2] = ACTIONS(1952), - [anon_sym_PLUS2] = ACTIONS(1954), - [anon_sym_bit_DASHshl2] = ACTIONS(1952), - [anon_sym_bit_DASHshr2] = ACTIONS(1952), - [anon_sym_bit_DASHand2] = ACTIONS(1952), - [anon_sym_bit_DASHxor2] = ACTIONS(1952), - [anon_sym_bit_DASHor2] = ACTIONS(1952), - [anon_sym_err_GT] = ACTIONS(1954), - [anon_sym_out_GT] = ACTIONS(1954), - [anon_sym_e_GT] = ACTIONS(1954), - [anon_sym_o_GT] = ACTIONS(1954), - [anon_sym_err_PLUSout_GT] = ACTIONS(1954), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1954), - [anon_sym_o_PLUSe_GT] = ACTIONS(1954), - [anon_sym_e_PLUSo_GT] = ACTIONS(1954), - [anon_sym_err_GT_GT] = ACTIONS(1952), - [anon_sym_out_GT_GT] = ACTIONS(1952), - [anon_sym_e_GT_GT] = ACTIONS(1952), - [anon_sym_o_GT_GT] = ACTIONS(1952), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1952), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1952), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1952), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1952), - [sym__unquoted_pattern] = ACTIONS(1962), + [ts_builtin_sym_end] = ACTIONS(1858), + [anon_sym_in] = ACTIONS(1858), + [sym__newline] = ACTIONS(1858), + [anon_sym_SEMI] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(1858), + [anon_sym_err_GT_PIPE] = ACTIONS(1858), + [anon_sym_out_GT_PIPE] = ACTIONS(1858), + [anon_sym_e_GT_PIPE] = ACTIONS(1858), + [anon_sym_o_GT_PIPE] = ACTIONS(1858), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1858), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1858), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1858), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1858), + [anon_sym_GT2] = ACTIONS(1860), + [anon_sym_DASH2] = ACTIONS(1858), + [anon_sym_STAR2] = ACTIONS(1860), + [anon_sym_and2] = ACTIONS(1858), + [anon_sym_xor2] = ACTIONS(1858), + [anon_sym_or2] = ACTIONS(1858), + [anon_sym_not_DASHin2] = ACTIONS(1858), + [anon_sym_has2] = ACTIONS(1858), + [anon_sym_not_DASHhas2] = ACTIONS(1858), + [anon_sym_starts_DASHwith2] = ACTIONS(1858), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1858), + [anon_sym_ends_DASHwith2] = ACTIONS(1858), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1858), + [anon_sym_EQ_EQ2] = ACTIONS(1858), + [anon_sym_BANG_EQ2] = ACTIONS(1858), + [anon_sym_LT2] = ACTIONS(1860), + [anon_sym_LT_EQ2] = ACTIONS(1858), + [anon_sym_GT_EQ2] = ACTIONS(1858), + [anon_sym_EQ_TILDE2] = ACTIONS(1858), + [anon_sym_BANG_TILDE2] = ACTIONS(1858), + [anon_sym_like2] = ACTIONS(1858), + [anon_sym_not_DASHlike2] = ACTIONS(1858), + [anon_sym_STAR_STAR2] = ACTIONS(1858), + [anon_sym_PLUS_PLUS2] = ACTIONS(1858), + [anon_sym_SLASH2] = ACTIONS(1860), + [anon_sym_mod2] = ACTIONS(1858), + [anon_sym_SLASH_SLASH2] = ACTIONS(1858), + [anon_sym_PLUS2] = ACTIONS(1860), + [anon_sym_bit_DASHshl2] = ACTIONS(1858), + [anon_sym_bit_DASHshr2] = ACTIONS(1858), + [anon_sym_bit_DASHand2] = ACTIONS(1858), + [anon_sym_bit_DASHxor2] = ACTIONS(1858), + [anon_sym_bit_DASHor2] = ACTIONS(1858), + [anon_sym_DOT_DOT2] = ACTIONS(1860), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1858), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1858), + [anon_sym_err_GT] = ACTIONS(1860), + [anon_sym_out_GT] = ACTIONS(1860), + [anon_sym_e_GT] = ACTIONS(1860), + [anon_sym_o_GT] = ACTIONS(1860), + [anon_sym_err_PLUSout_GT] = ACTIONS(1860), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1860), + [anon_sym_o_PLUSe_GT] = ACTIONS(1860), + [anon_sym_e_PLUSo_GT] = ACTIONS(1860), + [anon_sym_err_GT_GT] = ACTIONS(1858), + [anon_sym_out_GT_GT] = ACTIONS(1858), + [anon_sym_e_GT_GT] = ACTIONS(1858), + [anon_sym_o_GT_GT] = ACTIONS(1858), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1858), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1858), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1858), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1858), [anon_sym_POUND] = ACTIONS(3), }, [STATE(952)] = { [sym_comment] = STATE(952), - [anon_sym_in] = ACTIONS(2626), - [sym__newline] = ACTIONS(2626), - [anon_sym_SEMI] = ACTIONS(2626), - [anon_sym_PIPE] = ACTIONS(2626), - [anon_sym_err_GT_PIPE] = ACTIONS(2626), - [anon_sym_out_GT_PIPE] = ACTIONS(2626), - [anon_sym_e_GT_PIPE] = ACTIONS(2626), - [anon_sym_o_GT_PIPE] = ACTIONS(2626), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2626), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2626), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2626), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2626), - [anon_sym_RPAREN] = ACTIONS(2626), - [anon_sym_GT2] = ACTIONS(2628), - [anon_sym_DASH2] = ACTIONS(2626), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_RBRACE] = ACTIONS(2626), - [anon_sym_EQ_GT] = ACTIONS(2626), - [anon_sym_STAR2] = ACTIONS(2628), - [anon_sym_and2] = ACTIONS(2626), - [anon_sym_xor2] = ACTIONS(2626), - [anon_sym_or2] = ACTIONS(2626), - [anon_sym_not_DASHin2] = ACTIONS(2626), - [anon_sym_has2] = ACTIONS(2626), - [anon_sym_not_DASHhas2] = ACTIONS(2626), - [anon_sym_starts_DASHwith2] = ACTIONS(2626), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2626), - [anon_sym_ends_DASHwith2] = ACTIONS(2626), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2626), - [anon_sym_EQ_EQ2] = ACTIONS(2626), - [anon_sym_BANG_EQ2] = ACTIONS(2626), - [anon_sym_LT2] = ACTIONS(2628), - [anon_sym_LT_EQ2] = ACTIONS(2626), - [anon_sym_GT_EQ2] = ACTIONS(2626), - [anon_sym_EQ_TILDE2] = ACTIONS(2626), - [anon_sym_BANG_TILDE2] = ACTIONS(2626), - [anon_sym_like2] = ACTIONS(2626), - [anon_sym_not_DASHlike2] = ACTIONS(2626), - [anon_sym_STAR_STAR2] = ACTIONS(2626), - [anon_sym_PLUS_PLUS2] = ACTIONS(2626), - [anon_sym_SLASH2] = ACTIONS(2628), - [anon_sym_mod2] = ACTIONS(2626), - [anon_sym_SLASH_SLASH2] = ACTIONS(2626), - [anon_sym_PLUS2] = ACTIONS(2628), - [anon_sym_bit_DASHshl2] = ACTIONS(2626), - [anon_sym_bit_DASHshr2] = ACTIONS(2626), - [anon_sym_bit_DASHand2] = ACTIONS(2626), - [anon_sym_bit_DASHxor2] = ACTIONS(2626), - [anon_sym_bit_DASHor2] = ACTIONS(2626), - [anon_sym_err_GT] = ACTIONS(2628), - [anon_sym_out_GT] = ACTIONS(2628), - [anon_sym_e_GT] = ACTIONS(2628), - [anon_sym_o_GT] = ACTIONS(2628), - [anon_sym_err_PLUSout_GT] = ACTIONS(2628), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2628), - [anon_sym_o_PLUSe_GT] = ACTIONS(2628), - [anon_sym_e_PLUSo_GT] = ACTIONS(2628), - [anon_sym_err_GT_GT] = ACTIONS(2626), - [anon_sym_out_GT_GT] = ACTIONS(2626), - [anon_sym_e_GT_GT] = ACTIONS(2626), - [anon_sym_o_GT_GT] = ACTIONS(2626), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2626), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2626), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2626), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2626), + [anon_sym_in] = ACTIONS(2011), + [sym__newline] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_err_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_GT_PIPE] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [anon_sym_GT2] = ACTIONS(2013), + [anon_sym_DASH2] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2011), + [anon_sym_RBRACE] = ACTIONS(2011), + [anon_sym_EQ_GT] = ACTIONS(2011), + [anon_sym_STAR2] = ACTIONS(2013), + [anon_sym_and2] = ACTIONS(2011), + [anon_sym_xor2] = ACTIONS(2011), + [anon_sym_or2] = ACTIONS(2011), + [anon_sym_not_DASHin2] = ACTIONS(2011), + [anon_sym_has2] = ACTIONS(2011), + [anon_sym_not_DASHhas2] = ACTIONS(2011), + [anon_sym_starts_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2011), + [anon_sym_ends_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2011), + [anon_sym_EQ_EQ2] = ACTIONS(2011), + [anon_sym_BANG_EQ2] = ACTIONS(2011), + [anon_sym_LT2] = ACTIONS(2013), + [anon_sym_LT_EQ2] = ACTIONS(2011), + [anon_sym_GT_EQ2] = ACTIONS(2011), + [anon_sym_EQ_TILDE2] = ACTIONS(2011), + [anon_sym_BANG_TILDE2] = ACTIONS(2011), + [anon_sym_like2] = ACTIONS(2011), + [anon_sym_not_DASHlike2] = ACTIONS(2011), + [anon_sym_STAR_STAR2] = ACTIONS(2011), + [anon_sym_PLUS_PLUS2] = ACTIONS(2011), + [anon_sym_SLASH2] = ACTIONS(2013), + [anon_sym_mod2] = ACTIONS(2011), + [anon_sym_SLASH_SLASH2] = ACTIONS(2011), + [anon_sym_PLUS2] = ACTIONS(2013), + [anon_sym_bit_DASHshl2] = ACTIONS(2011), + [anon_sym_bit_DASHshr2] = ACTIONS(2011), + [anon_sym_bit_DASHand2] = ACTIONS(2011), + [anon_sym_bit_DASHxor2] = ACTIONS(2011), + [anon_sym_bit_DASHor2] = ACTIONS(2011), + [anon_sym_err_GT] = ACTIONS(2013), + [anon_sym_out_GT] = ACTIONS(2013), + [anon_sym_e_GT] = ACTIONS(2013), + [anon_sym_o_GT] = ACTIONS(2013), + [anon_sym_err_PLUSout_GT] = ACTIONS(2013), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2013), + [anon_sym_o_PLUSe_GT] = ACTIONS(2013), + [anon_sym_e_PLUSo_GT] = ACTIONS(2013), + [anon_sym_err_GT_GT] = ACTIONS(2011), + [anon_sym_out_GT_GT] = ACTIONS(2011), + [anon_sym_e_GT_GT] = ACTIONS(2011), + [anon_sym_o_GT_GT] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(953)] = { - [sym_comment] = STATE(953), - [anon_sym_in] = ACTIONS(1738), - [sym__newline] = ACTIONS(1738), - [anon_sym_SEMI] = ACTIONS(1738), - [anon_sym_PIPE] = ACTIONS(1738), - [anon_sym_err_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_GT_PIPE] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), - [anon_sym_RPAREN] = ACTIONS(1738), - [anon_sym_GT2] = ACTIONS(1740), - [anon_sym_DASH2] = ACTIONS(1738), - [anon_sym_RBRACE] = ACTIONS(1738), - [anon_sym_STAR2] = ACTIONS(1740), - [anon_sym_and2] = ACTIONS(1738), - [anon_sym_xor2] = ACTIONS(1738), - [anon_sym_or2] = ACTIONS(1738), - [anon_sym_not_DASHin2] = ACTIONS(1738), - [anon_sym_has2] = ACTIONS(1738), - [anon_sym_not_DASHhas2] = ACTIONS(1738), - [anon_sym_starts_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), - [anon_sym_ends_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), - [anon_sym_EQ_EQ2] = ACTIONS(1738), - [anon_sym_BANG_EQ2] = ACTIONS(1738), - [anon_sym_LT2] = ACTIONS(1740), - [anon_sym_LT_EQ2] = ACTIONS(1738), - [anon_sym_GT_EQ2] = ACTIONS(1738), - [anon_sym_EQ_TILDE2] = ACTIONS(1738), - [anon_sym_BANG_TILDE2] = ACTIONS(1738), - [anon_sym_like2] = ACTIONS(1738), - [anon_sym_not_DASHlike2] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1738), - [anon_sym_STAR_STAR2] = ACTIONS(1738), - [anon_sym_PLUS_PLUS2] = ACTIONS(1738), - [anon_sym_SLASH2] = ACTIONS(1740), - [anon_sym_mod2] = ACTIONS(1738), - [anon_sym_SLASH_SLASH2] = ACTIONS(1738), - [anon_sym_PLUS2] = ACTIONS(1740), - [anon_sym_bit_DASHshl2] = ACTIONS(1738), - [anon_sym_bit_DASHshr2] = ACTIONS(1738), - [anon_sym_bit_DASHand2] = ACTIONS(1738), - [anon_sym_bit_DASHxor2] = ACTIONS(1738), - [anon_sym_bit_DASHor2] = ACTIONS(1738), - [anon_sym_err_GT] = ACTIONS(1740), - [anon_sym_out_GT] = ACTIONS(1740), - [anon_sym_e_GT] = ACTIONS(1740), - [anon_sym_o_GT] = ACTIONS(1740), - [anon_sym_err_PLUSout_GT] = ACTIONS(1740), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1740), - [anon_sym_o_PLUSe_GT] = ACTIONS(1740), - [anon_sym_e_PLUSo_GT] = ACTIONS(1740), - [anon_sym_err_GT_GT] = ACTIONS(1738), - [anon_sym_out_GT_GT] = ACTIONS(1738), - [anon_sym_e_GT_GT] = ACTIONS(1738), - [anon_sym_o_GT_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), - [sym__unquoted_pattern] = ACTIONS(1740), + }, + [STATE(953)] = { + [sym_comment] = STATE(953), + [anon_sym_in] = ACTIONS(2118), + [sym__newline] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_PIPE] = ACTIONS(2118), + [anon_sym_err_GT_PIPE] = ACTIONS(2118), + [anon_sym_out_GT_PIPE] = ACTIONS(2118), + [anon_sym_e_GT_PIPE] = ACTIONS(2118), + [anon_sym_o_GT_PIPE] = ACTIONS(2118), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2118), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2118), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2118), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2118), + [anon_sym_RPAREN] = ACTIONS(2118), + [anon_sym_GT2] = ACTIONS(2122), + [anon_sym_DASH2] = ACTIONS(2118), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_RBRACE] = ACTIONS(2118), + [anon_sym_EQ_GT] = ACTIONS(2118), + [anon_sym_STAR2] = ACTIONS(2122), + [anon_sym_and2] = ACTIONS(2118), + [anon_sym_xor2] = ACTIONS(2118), + [anon_sym_or2] = ACTIONS(2118), + [anon_sym_not_DASHin2] = ACTIONS(2118), + [anon_sym_has2] = ACTIONS(2118), + [anon_sym_not_DASHhas2] = ACTIONS(2118), + [anon_sym_starts_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2118), + [anon_sym_ends_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2118), + [anon_sym_EQ_EQ2] = ACTIONS(2118), + [anon_sym_BANG_EQ2] = ACTIONS(2118), + [anon_sym_LT2] = ACTIONS(2122), + [anon_sym_LT_EQ2] = ACTIONS(2118), + [anon_sym_GT_EQ2] = ACTIONS(2118), + [anon_sym_EQ_TILDE2] = ACTIONS(2118), + [anon_sym_BANG_TILDE2] = ACTIONS(2118), + [anon_sym_like2] = ACTIONS(2118), + [anon_sym_not_DASHlike2] = ACTIONS(2118), + [anon_sym_STAR_STAR2] = ACTIONS(2118), + [anon_sym_PLUS_PLUS2] = ACTIONS(2118), + [anon_sym_SLASH2] = ACTIONS(2122), + [anon_sym_mod2] = ACTIONS(2118), + [anon_sym_SLASH_SLASH2] = ACTIONS(2118), + [anon_sym_PLUS2] = ACTIONS(2122), + [anon_sym_bit_DASHshl2] = ACTIONS(2118), + [anon_sym_bit_DASHshr2] = ACTIONS(2118), + [anon_sym_bit_DASHand2] = ACTIONS(2118), + [anon_sym_bit_DASHxor2] = ACTIONS(2118), + [anon_sym_bit_DASHor2] = ACTIONS(2118), + [anon_sym_err_GT] = ACTIONS(2122), + [anon_sym_out_GT] = ACTIONS(2122), + [anon_sym_e_GT] = ACTIONS(2122), + [anon_sym_o_GT] = ACTIONS(2122), + [anon_sym_err_PLUSout_GT] = ACTIONS(2122), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2122), + [anon_sym_o_PLUSe_GT] = ACTIONS(2122), + [anon_sym_e_PLUSo_GT] = ACTIONS(2122), + [anon_sym_err_GT_GT] = ACTIONS(2118), + [anon_sym_out_GT_GT] = ACTIONS(2118), + [anon_sym_e_GT_GT] = ACTIONS(2118), + [anon_sym_o_GT_GT] = ACTIONS(2118), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2118), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2118), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2118), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2118), [anon_sym_POUND] = ACTIONS(3), }, [STATE(954)] = { [sym_comment] = STATE(954), - [ts_builtin_sym_end] = ACTIONS(1806), - [anon_sym_in] = ACTIONS(1806), - [sym__newline] = ACTIONS(1806), - [anon_sym_SEMI] = ACTIONS(1806), - [anon_sym_PIPE] = ACTIONS(1806), - [anon_sym_err_GT_PIPE] = ACTIONS(1806), - [anon_sym_out_GT_PIPE] = ACTIONS(1806), - [anon_sym_e_GT_PIPE] = ACTIONS(1806), - [anon_sym_o_GT_PIPE] = ACTIONS(1806), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1806), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1806), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1806), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1806), - [anon_sym_GT2] = ACTIONS(1808), - [anon_sym_DASH2] = ACTIONS(1806), - [anon_sym_STAR2] = ACTIONS(1808), - [anon_sym_and2] = ACTIONS(1806), - [anon_sym_xor2] = ACTIONS(1806), - [anon_sym_or2] = ACTIONS(1806), - [anon_sym_not_DASHin2] = ACTIONS(1806), - [anon_sym_has2] = ACTIONS(1806), - [anon_sym_not_DASHhas2] = ACTIONS(1806), - [anon_sym_starts_DASHwith2] = ACTIONS(1806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1806), - [anon_sym_ends_DASHwith2] = ACTIONS(1806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1806), - [anon_sym_EQ_EQ2] = ACTIONS(1806), - [anon_sym_BANG_EQ2] = ACTIONS(1806), - [anon_sym_LT2] = ACTIONS(1808), - [anon_sym_LT_EQ2] = ACTIONS(1806), - [anon_sym_GT_EQ2] = ACTIONS(1806), - [anon_sym_EQ_TILDE2] = ACTIONS(1806), - [anon_sym_BANG_TILDE2] = ACTIONS(1806), - [anon_sym_like2] = ACTIONS(1806), - [anon_sym_not_DASHlike2] = ACTIONS(1806), - [anon_sym_LPAREN2] = ACTIONS(1806), - [anon_sym_STAR_STAR2] = ACTIONS(1806), - [anon_sym_PLUS_PLUS2] = ACTIONS(1806), - [anon_sym_SLASH2] = ACTIONS(1808), - [anon_sym_mod2] = ACTIONS(1806), - [anon_sym_SLASH_SLASH2] = ACTIONS(1806), - [anon_sym_PLUS2] = ACTIONS(1808), - [anon_sym_bit_DASHshl2] = ACTIONS(1806), - [anon_sym_bit_DASHshr2] = ACTIONS(1806), - [anon_sym_bit_DASHand2] = ACTIONS(1806), - [anon_sym_bit_DASHxor2] = ACTIONS(1806), - [anon_sym_bit_DASHor2] = ACTIONS(1806), - [aux_sym__immediate_decimal_token5] = ACTIONS(2630), - [anon_sym_err_GT] = ACTIONS(1808), - [anon_sym_out_GT] = ACTIONS(1808), - [anon_sym_e_GT] = ACTIONS(1808), - [anon_sym_o_GT] = ACTIONS(1808), - [anon_sym_err_PLUSout_GT] = ACTIONS(1808), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1808), - [anon_sym_o_PLUSe_GT] = ACTIONS(1808), - [anon_sym_e_PLUSo_GT] = ACTIONS(1808), - [anon_sym_err_GT_GT] = ACTIONS(1806), - [anon_sym_out_GT_GT] = ACTIONS(1806), - [anon_sym_e_GT_GT] = ACTIONS(1806), - [anon_sym_o_GT_GT] = ACTIONS(1806), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1806), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1806), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1806), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1806), - [sym__unquoted_pattern] = ACTIONS(1808), + [anon_sym_in] = ACTIONS(1706), + [sym__newline] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1706), + [anon_sym_err_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_GT_PIPE] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), + [anon_sym_RPAREN] = ACTIONS(1706), + [anon_sym_GT2] = ACTIONS(1604), + [anon_sym_DASH2] = ACTIONS(1706), + [anon_sym_LBRACE] = ACTIONS(1706), + [anon_sym_RBRACE] = ACTIONS(1706), + [anon_sym_EQ_GT] = ACTIONS(1706), + [anon_sym_STAR2] = ACTIONS(1604), + [anon_sym_and2] = ACTIONS(1706), + [anon_sym_xor2] = ACTIONS(1706), + [anon_sym_or2] = ACTIONS(1706), + [anon_sym_not_DASHin2] = ACTIONS(1706), + [anon_sym_has2] = ACTIONS(1706), + [anon_sym_not_DASHhas2] = ACTIONS(1706), + [anon_sym_starts_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), + [anon_sym_ends_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), + [anon_sym_EQ_EQ2] = ACTIONS(1706), + [anon_sym_BANG_EQ2] = ACTIONS(1706), + [anon_sym_LT2] = ACTIONS(1604), + [anon_sym_LT_EQ2] = ACTIONS(1706), + [anon_sym_GT_EQ2] = ACTIONS(1706), + [anon_sym_EQ_TILDE2] = ACTIONS(1706), + [anon_sym_BANG_TILDE2] = ACTIONS(1706), + [anon_sym_like2] = ACTIONS(1706), + [anon_sym_not_DASHlike2] = ACTIONS(1706), + [anon_sym_STAR_STAR2] = ACTIONS(1706), + [anon_sym_PLUS_PLUS2] = ACTIONS(1706), + [anon_sym_SLASH2] = ACTIONS(1604), + [anon_sym_mod2] = ACTIONS(1706), + [anon_sym_SLASH_SLASH2] = ACTIONS(1706), + [anon_sym_PLUS2] = ACTIONS(1604), + [anon_sym_bit_DASHshl2] = ACTIONS(1706), + [anon_sym_bit_DASHshr2] = ACTIONS(1706), + [anon_sym_bit_DASHand2] = ACTIONS(1706), + [anon_sym_bit_DASHxor2] = ACTIONS(1706), + [anon_sym_bit_DASHor2] = ACTIONS(1706), + [anon_sym_err_GT] = ACTIONS(1604), + [anon_sym_out_GT] = ACTIONS(1604), + [anon_sym_e_GT] = ACTIONS(1604), + [anon_sym_o_GT] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT] = ACTIONS(1604), + [anon_sym_err_GT_GT] = ACTIONS(1706), + [anon_sym_out_GT_GT] = ACTIONS(1706), + [anon_sym_e_GT_GT] = ACTIONS(1706), + [anon_sym_o_GT_GT] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), [anon_sym_POUND] = ACTIONS(3), }, [STATE(955)] = { [sym_comment] = STATE(955), - [anon_sym_in] = ACTIONS(1806), - [sym__newline] = ACTIONS(1806), - [anon_sym_SEMI] = ACTIONS(1806), - [anon_sym_PIPE] = ACTIONS(1806), - [anon_sym_err_GT_PIPE] = ACTIONS(1806), - [anon_sym_out_GT_PIPE] = ACTIONS(1806), - [anon_sym_e_GT_PIPE] = ACTIONS(1806), - [anon_sym_o_GT_PIPE] = ACTIONS(1806), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1806), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1806), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1806), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1806), - [anon_sym_RPAREN] = ACTIONS(1806), - [anon_sym_GT2] = ACTIONS(1808), - [anon_sym_DASH2] = ACTIONS(1806), - [anon_sym_RBRACE] = ACTIONS(1806), - [anon_sym_STAR2] = ACTIONS(1808), - [anon_sym_and2] = ACTIONS(1806), - [anon_sym_xor2] = ACTIONS(1806), - [anon_sym_or2] = ACTIONS(1806), - [anon_sym_not_DASHin2] = ACTIONS(1806), - [anon_sym_has2] = ACTIONS(1806), - [anon_sym_not_DASHhas2] = ACTIONS(1806), - [anon_sym_starts_DASHwith2] = ACTIONS(1806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1806), - [anon_sym_ends_DASHwith2] = ACTIONS(1806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1806), - [anon_sym_EQ_EQ2] = ACTIONS(1806), - [anon_sym_BANG_EQ2] = ACTIONS(1806), - [anon_sym_LT2] = ACTIONS(1808), - [anon_sym_LT_EQ2] = ACTIONS(1806), - [anon_sym_GT_EQ2] = ACTIONS(1806), - [anon_sym_EQ_TILDE2] = ACTIONS(1806), - [anon_sym_BANG_TILDE2] = ACTIONS(1806), - [anon_sym_like2] = ACTIONS(1806), - [anon_sym_not_DASHlike2] = ACTIONS(1806), - [anon_sym_LPAREN2] = ACTIONS(1806), - [anon_sym_STAR_STAR2] = ACTIONS(1806), - [anon_sym_PLUS_PLUS2] = ACTIONS(1806), - [anon_sym_SLASH2] = ACTIONS(1808), - [anon_sym_mod2] = ACTIONS(1806), - [anon_sym_SLASH_SLASH2] = ACTIONS(1806), - [anon_sym_PLUS2] = ACTIONS(1808), - [anon_sym_bit_DASHshl2] = ACTIONS(1806), - [anon_sym_bit_DASHshr2] = ACTIONS(1806), - [anon_sym_bit_DASHand2] = ACTIONS(1806), - [anon_sym_bit_DASHxor2] = ACTIONS(1806), - [anon_sym_bit_DASHor2] = ACTIONS(1806), - [anon_sym_err_GT] = ACTIONS(1808), - [anon_sym_out_GT] = ACTIONS(1808), - [anon_sym_e_GT] = ACTIONS(1808), - [anon_sym_o_GT] = ACTIONS(1808), - [anon_sym_err_PLUSout_GT] = ACTIONS(1808), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1808), - [anon_sym_o_PLUSe_GT] = ACTIONS(1808), - [anon_sym_e_PLUSo_GT] = ACTIONS(1808), - [anon_sym_err_GT_GT] = ACTIONS(1806), - [anon_sym_out_GT_GT] = ACTIONS(1806), - [anon_sym_e_GT_GT] = ACTIONS(1806), - [anon_sym_o_GT_GT] = ACTIONS(1806), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1806), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1806), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1806), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1806), - [sym__unquoted_pattern] = ACTIONS(1808), + [ts_builtin_sym_end] = ACTIONS(1647), + [anon_sym_in] = 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(1649), + [anon_sym_DASH2] = ACTIONS(1647), + [anon_sym_STAR2] = ACTIONS(1649), + [anon_sym_and2] = ACTIONS(1647), + [anon_sym_xor2] = ACTIONS(1647), + [anon_sym_or2] = ACTIONS(1647), + [anon_sym_not_DASHin2] = ACTIONS(1647), + [anon_sym_has2] = ACTIONS(1647), + [anon_sym_not_DASHhas2] = ACTIONS(1647), + [anon_sym_starts_DASHwith2] = ACTIONS(1647), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1647), + [anon_sym_ends_DASHwith2] = ACTIONS(1647), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1647), + [anon_sym_EQ_EQ2] = ACTIONS(1647), + [anon_sym_BANG_EQ2] = ACTIONS(1647), + [anon_sym_LT2] = ACTIONS(1649), + [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_like2] = ACTIONS(1647), + [anon_sym_not_DASHlike2] = ACTIONS(1647), + [anon_sym_STAR_STAR2] = ACTIONS(1647), + [anon_sym_PLUS_PLUS2] = ACTIONS(1647), + [anon_sym_SLASH2] = ACTIONS(1649), + [anon_sym_mod2] = ACTIONS(1647), + [anon_sym_SLASH_SLASH2] = ACTIONS(1647), + [anon_sym_PLUS2] = ACTIONS(1649), + [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(1649), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1647), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1647), + [anon_sym_err_GT] = ACTIONS(1649), + [anon_sym_out_GT] = ACTIONS(1649), + [anon_sym_e_GT] = ACTIONS(1649), + [anon_sym_o_GT] = ACTIONS(1649), + [anon_sym_err_PLUSout_GT] = ACTIONS(1649), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1649), + [anon_sym_o_PLUSe_GT] = ACTIONS(1649), + [anon_sym_e_PLUSo_GT] = ACTIONS(1649), + [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_POUND] = ACTIONS(3), }, [STATE(956)] = { [sym_comment] = STATE(956), - [anon_sym_in] = ACTIONS(1844), - [sym__newline] = ACTIONS(1844), - [anon_sym_SEMI] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_err_GT_PIPE] = ACTIONS(1844), - [anon_sym_out_GT_PIPE] = ACTIONS(1844), - [anon_sym_e_GT_PIPE] = ACTIONS(1844), - [anon_sym_o_GT_PIPE] = ACTIONS(1844), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1844), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1844), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1844), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1844), - [anon_sym_RPAREN] = ACTIONS(1844), - [anon_sym_GT2] = ACTIONS(1846), - [anon_sym_DASH2] = ACTIONS(1844), - [anon_sym_RBRACE] = ACTIONS(1844), - [anon_sym_STAR2] = ACTIONS(1846), - [anon_sym_and2] = ACTIONS(1844), - [anon_sym_xor2] = ACTIONS(1844), - [anon_sym_or2] = ACTIONS(1844), - [anon_sym_not_DASHin2] = ACTIONS(1844), - [anon_sym_has2] = ACTIONS(1844), - [anon_sym_not_DASHhas2] = ACTIONS(1844), - [anon_sym_starts_DASHwith2] = ACTIONS(1844), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1844), - [anon_sym_ends_DASHwith2] = ACTIONS(1844), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1844), - [anon_sym_EQ_EQ2] = ACTIONS(1844), - [anon_sym_BANG_EQ2] = ACTIONS(1844), - [anon_sym_LT2] = ACTIONS(1846), - [anon_sym_LT_EQ2] = ACTIONS(1844), - [anon_sym_GT_EQ2] = ACTIONS(1844), - [anon_sym_EQ_TILDE2] = ACTIONS(1844), - [anon_sym_BANG_TILDE2] = ACTIONS(1844), - [anon_sym_like2] = ACTIONS(1844), - [anon_sym_not_DASHlike2] = ACTIONS(1844), - [anon_sym_LPAREN2] = ACTIONS(1844), - [anon_sym_STAR_STAR2] = ACTIONS(1844), - [anon_sym_PLUS_PLUS2] = ACTIONS(1844), - [anon_sym_SLASH2] = ACTIONS(1846), - [anon_sym_mod2] = ACTIONS(1844), - [anon_sym_SLASH_SLASH2] = ACTIONS(1844), - [anon_sym_PLUS2] = ACTIONS(1846), - [anon_sym_bit_DASHshl2] = ACTIONS(1844), - [anon_sym_bit_DASHshr2] = ACTIONS(1844), - [anon_sym_bit_DASHand2] = ACTIONS(1844), - [anon_sym_bit_DASHxor2] = ACTIONS(1844), - [anon_sym_bit_DASHor2] = ACTIONS(1844), - [anon_sym_err_GT] = ACTIONS(1846), - [anon_sym_out_GT] = ACTIONS(1846), - [anon_sym_e_GT] = ACTIONS(1846), - [anon_sym_o_GT] = ACTIONS(1846), - [anon_sym_err_PLUSout_GT] = ACTIONS(1846), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1846), - [anon_sym_o_PLUSe_GT] = ACTIONS(1846), - [anon_sym_e_PLUSo_GT] = ACTIONS(1846), - [anon_sym_err_GT_GT] = ACTIONS(1844), - [anon_sym_out_GT_GT] = ACTIONS(1844), - [anon_sym_e_GT_GT] = ACTIONS(1844), - [anon_sym_o_GT_GT] = ACTIONS(1844), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1844), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1844), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1844), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1844), - [sym__unquoted_pattern] = ACTIONS(1846), + [anon_sym_in] = ACTIONS(2636), + [sym__newline] = ACTIONS(2636), + [anon_sym_SEMI] = ACTIONS(2636), + [anon_sym_PIPE] = ACTIONS(2636), + [anon_sym_err_GT_PIPE] = ACTIONS(2636), + [anon_sym_out_GT_PIPE] = ACTIONS(2636), + [anon_sym_e_GT_PIPE] = ACTIONS(2636), + [anon_sym_o_GT_PIPE] = ACTIONS(2636), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2636), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2636), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2636), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2636), + [anon_sym_RPAREN] = ACTIONS(2636), + [anon_sym_GT2] = ACTIONS(2638), + [anon_sym_DASH2] = ACTIONS(2636), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_RBRACE] = ACTIONS(2636), + [anon_sym_EQ_GT] = ACTIONS(2636), + [anon_sym_STAR2] = ACTIONS(2638), + [anon_sym_and2] = ACTIONS(2636), + [anon_sym_xor2] = ACTIONS(2636), + [anon_sym_or2] = ACTIONS(2636), + [anon_sym_not_DASHin2] = ACTIONS(2636), + [anon_sym_has2] = ACTIONS(2636), + [anon_sym_not_DASHhas2] = ACTIONS(2636), + [anon_sym_starts_DASHwith2] = ACTIONS(2636), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2636), + [anon_sym_ends_DASHwith2] = ACTIONS(2636), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2636), + [anon_sym_EQ_EQ2] = ACTIONS(2636), + [anon_sym_BANG_EQ2] = ACTIONS(2636), + [anon_sym_LT2] = ACTIONS(2638), + [anon_sym_LT_EQ2] = ACTIONS(2636), + [anon_sym_GT_EQ2] = ACTIONS(2636), + [anon_sym_EQ_TILDE2] = ACTIONS(2636), + [anon_sym_BANG_TILDE2] = ACTIONS(2636), + [anon_sym_like2] = ACTIONS(2636), + [anon_sym_not_DASHlike2] = ACTIONS(2636), + [anon_sym_STAR_STAR2] = ACTIONS(2636), + [anon_sym_PLUS_PLUS2] = ACTIONS(2636), + [anon_sym_SLASH2] = ACTIONS(2638), + [anon_sym_mod2] = ACTIONS(2636), + [anon_sym_SLASH_SLASH2] = ACTIONS(2636), + [anon_sym_PLUS2] = ACTIONS(2638), + [anon_sym_bit_DASHshl2] = ACTIONS(2636), + [anon_sym_bit_DASHshr2] = ACTIONS(2636), + [anon_sym_bit_DASHand2] = ACTIONS(2636), + [anon_sym_bit_DASHxor2] = ACTIONS(2636), + [anon_sym_bit_DASHor2] = ACTIONS(2636), + [anon_sym_err_GT] = ACTIONS(2638), + [anon_sym_out_GT] = ACTIONS(2638), + [anon_sym_e_GT] = ACTIONS(2638), + [anon_sym_o_GT] = ACTIONS(2638), + [anon_sym_err_PLUSout_GT] = ACTIONS(2638), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2638), + [anon_sym_o_PLUSe_GT] = ACTIONS(2638), + [anon_sym_e_PLUSo_GT] = ACTIONS(2638), + [anon_sym_err_GT_GT] = ACTIONS(2636), + [anon_sym_out_GT_GT] = ACTIONS(2636), + [anon_sym_e_GT_GT] = ACTIONS(2636), + [anon_sym_o_GT_GT] = ACTIONS(2636), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2636), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2636), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2636), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2636), [anon_sym_POUND] = ACTIONS(3), }, [STATE(957)] = { [sym_comment] = STATE(957), - [anon_sym_in] = ACTIONS(2074), - [sym__newline] = ACTIONS(2074), - [anon_sym_SEMI] = ACTIONS(2074), - [anon_sym_PIPE] = ACTIONS(2074), - [anon_sym_err_GT_PIPE] = ACTIONS(2074), - [anon_sym_out_GT_PIPE] = ACTIONS(2074), - [anon_sym_e_GT_PIPE] = ACTIONS(2074), - [anon_sym_o_GT_PIPE] = ACTIONS(2074), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2074), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2074), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2074), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2074), - [anon_sym_RPAREN] = ACTIONS(2074), - [anon_sym_GT2] = ACTIONS(2078), - [anon_sym_DASH2] = ACTIONS(2074), - [anon_sym_LBRACE] = ACTIONS(2074), - [anon_sym_RBRACE] = ACTIONS(2074), - [anon_sym_EQ_GT] = ACTIONS(2074), - [anon_sym_STAR2] = ACTIONS(2078), - [anon_sym_and2] = ACTIONS(2074), - [anon_sym_xor2] = ACTIONS(2074), - [anon_sym_or2] = ACTIONS(2074), - [anon_sym_not_DASHin2] = ACTIONS(2074), - [anon_sym_has2] = ACTIONS(2074), - [anon_sym_not_DASHhas2] = ACTIONS(2074), - [anon_sym_starts_DASHwith2] = ACTIONS(2074), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2074), - [anon_sym_ends_DASHwith2] = ACTIONS(2074), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2074), - [anon_sym_EQ_EQ2] = ACTIONS(2074), - [anon_sym_BANG_EQ2] = ACTIONS(2074), - [anon_sym_LT2] = ACTIONS(2078), - [anon_sym_LT_EQ2] = ACTIONS(2074), - [anon_sym_GT_EQ2] = ACTIONS(2074), - [anon_sym_EQ_TILDE2] = ACTIONS(2074), - [anon_sym_BANG_TILDE2] = ACTIONS(2074), - [anon_sym_like2] = ACTIONS(2074), - [anon_sym_not_DASHlike2] = ACTIONS(2074), - [anon_sym_STAR_STAR2] = ACTIONS(2074), - [anon_sym_PLUS_PLUS2] = ACTIONS(2074), - [anon_sym_SLASH2] = ACTIONS(2078), - [anon_sym_mod2] = ACTIONS(2074), - [anon_sym_SLASH_SLASH2] = ACTIONS(2074), - [anon_sym_PLUS2] = ACTIONS(2078), - [anon_sym_bit_DASHshl2] = ACTIONS(2074), - [anon_sym_bit_DASHshr2] = ACTIONS(2074), - [anon_sym_bit_DASHand2] = ACTIONS(2074), - [anon_sym_bit_DASHxor2] = ACTIONS(2074), - [anon_sym_bit_DASHor2] = ACTIONS(2074), - [anon_sym_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(2074), - [anon_sym_out_GT_GT] = ACTIONS(2074), - [anon_sym_e_GT_GT] = ACTIONS(2074), - [anon_sym_o_GT_GT] = ACTIONS(2074), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2074), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2074), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2074), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2074), + [anon_sym_in] = ACTIONS(2062), + [sym__newline] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_err_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_GT_PIPE] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_GT2] = ACTIONS(2064), + [anon_sym_DASH2] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_EQ_GT] = ACTIONS(2062), + [anon_sym_STAR2] = ACTIONS(2064), + [anon_sym_and2] = ACTIONS(2062), + [anon_sym_xor2] = ACTIONS(2062), + [anon_sym_or2] = ACTIONS(2062), + [anon_sym_not_DASHin2] = ACTIONS(2062), + [anon_sym_has2] = ACTIONS(2062), + [anon_sym_not_DASHhas2] = ACTIONS(2062), + [anon_sym_starts_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), + [anon_sym_ends_DASHwith2] = ACTIONS(2062), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), + [anon_sym_EQ_EQ2] = ACTIONS(2062), + [anon_sym_BANG_EQ2] = ACTIONS(2062), + [anon_sym_LT2] = ACTIONS(2064), + [anon_sym_LT_EQ2] = ACTIONS(2062), + [anon_sym_GT_EQ2] = ACTIONS(2062), + [anon_sym_EQ_TILDE2] = ACTIONS(2062), + [anon_sym_BANG_TILDE2] = ACTIONS(2062), + [anon_sym_like2] = ACTIONS(2062), + [anon_sym_not_DASHlike2] = ACTIONS(2062), + [anon_sym_STAR_STAR2] = ACTIONS(2062), + [anon_sym_PLUS_PLUS2] = ACTIONS(2062), + [anon_sym_SLASH2] = ACTIONS(2064), + [anon_sym_mod2] = ACTIONS(2062), + [anon_sym_SLASH_SLASH2] = ACTIONS(2062), + [anon_sym_PLUS2] = ACTIONS(2064), + [anon_sym_bit_DASHshl2] = ACTIONS(2062), + [anon_sym_bit_DASHshr2] = ACTIONS(2062), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, [STATE(958)] = { [sym_comment] = STATE(958), - [anon_sym_in] = ACTIONS(2632), - [sym__newline] = ACTIONS(2632), - [anon_sym_SEMI] = ACTIONS(2632), - [anon_sym_PIPE] = ACTIONS(2632), - [anon_sym_err_GT_PIPE] = ACTIONS(2632), - [anon_sym_out_GT_PIPE] = ACTIONS(2632), - [anon_sym_e_GT_PIPE] = ACTIONS(2632), - [anon_sym_o_GT_PIPE] = ACTIONS(2632), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2632), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2632), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2632), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2632), - [anon_sym_RPAREN] = ACTIONS(2632), - [anon_sym_GT2] = ACTIONS(2634), - [anon_sym_DASH2] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2632), - [anon_sym_RBRACE] = ACTIONS(2632), - [anon_sym_EQ_GT] = ACTIONS(2632), - [anon_sym_STAR2] = ACTIONS(2634), - [anon_sym_and2] = ACTIONS(2632), - [anon_sym_xor2] = ACTIONS(2632), - [anon_sym_or2] = ACTIONS(2632), - [anon_sym_not_DASHin2] = ACTIONS(2632), - [anon_sym_has2] = ACTIONS(2632), - [anon_sym_not_DASHhas2] = ACTIONS(2632), - [anon_sym_starts_DASHwith2] = ACTIONS(2632), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2632), - [anon_sym_ends_DASHwith2] = ACTIONS(2632), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2632), - [anon_sym_EQ_EQ2] = ACTIONS(2632), - [anon_sym_BANG_EQ2] = ACTIONS(2632), - [anon_sym_LT2] = ACTIONS(2634), - [anon_sym_LT_EQ2] = ACTIONS(2632), - [anon_sym_GT_EQ2] = ACTIONS(2632), - [anon_sym_EQ_TILDE2] = ACTIONS(2632), - [anon_sym_BANG_TILDE2] = ACTIONS(2632), - [anon_sym_like2] = ACTIONS(2632), - [anon_sym_not_DASHlike2] = ACTIONS(2632), - [anon_sym_STAR_STAR2] = ACTIONS(2632), - [anon_sym_PLUS_PLUS2] = ACTIONS(2632), - [anon_sym_SLASH2] = ACTIONS(2634), - [anon_sym_mod2] = ACTIONS(2632), - [anon_sym_SLASH_SLASH2] = ACTIONS(2632), - [anon_sym_PLUS2] = ACTIONS(2634), - [anon_sym_bit_DASHshl2] = ACTIONS(2632), - [anon_sym_bit_DASHshr2] = ACTIONS(2632), - [anon_sym_bit_DASHand2] = ACTIONS(2632), - [anon_sym_bit_DASHxor2] = ACTIONS(2632), - [anon_sym_bit_DASHor2] = ACTIONS(2632), - [anon_sym_err_GT] = ACTIONS(2634), - [anon_sym_out_GT] = ACTIONS(2634), - [anon_sym_e_GT] = ACTIONS(2634), - [anon_sym_o_GT] = ACTIONS(2634), - [anon_sym_err_PLUSout_GT] = ACTIONS(2634), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2634), - [anon_sym_o_PLUSe_GT] = ACTIONS(2634), - [anon_sym_e_PLUSo_GT] = ACTIONS(2634), - [anon_sym_err_GT_GT] = ACTIONS(2632), - [anon_sym_out_GT_GT] = ACTIONS(2632), - [anon_sym_e_GT_GT] = ACTIONS(2632), - [anon_sym_o_GT_GT] = ACTIONS(2632), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2632), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2632), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2632), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2632), + [anon_sym_in] = ACTIONS(2118), + [sym__newline] = ACTIONS(2120), + [anon_sym_SEMI] = ACTIONS(2120), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_err_GT_PIPE] = ACTIONS(2120), + [anon_sym_out_GT_PIPE] = ACTIONS(2120), + [anon_sym_e_GT_PIPE] = ACTIONS(2120), + [anon_sym_o_GT_PIPE] = ACTIONS(2120), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2120), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2120), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2120), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2120), + [anon_sym_RPAREN] = ACTIONS(2120), + [anon_sym_GT2] = ACTIONS(2122), + [anon_sym_DASH2] = ACTIONS(2118), + [anon_sym_LBRACE] = ACTIONS(2120), + [anon_sym_RBRACE] = ACTIONS(2120), + [anon_sym_EQ_GT] = ACTIONS(2120), + [anon_sym_STAR2] = ACTIONS(2122), + [anon_sym_and2] = ACTIONS(2118), + [anon_sym_xor2] = ACTIONS(2118), + [anon_sym_or2] = ACTIONS(2118), + [anon_sym_not_DASHin2] = ACTIONS(2118), + [anon_sym_has2] = ACTIONS(2118), + [anon_sym_not_DASHhas2] = ACTIONS(2118), + [anon_sym_starts_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2118), + [anon_sym_ends_DASHwith2] = ACTIONS(2118), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2118), + [anon_sym_EQ_EQ2] = ACTIONS(2118), + [anon_sym_BANG_EQ2] = ACTIONS(2118), + [anon_sym_LT2] = ACTIONS(2122), + [anon_sym_LT_EQ2] = ACTIONS(2118), + [anon_sym_GT_EQ2] = ACTIONS(2118), + [anon_sym_EQ_TILDE2] = ACTIONS(2118), + [anon_sym_BANG_TILDE2] = ACTIONS(2118), + [anon_sym_like2] = ACTIONS(2118), + [anon_sym_not_DASHlike2] = ACTIONS(2118), + [anon_sym_STAR_STAR2] = ACTIONS(2118), + [anon_sym_PLUS_PLUS2] = ACTIONS(2118), + [anon_sym_SLASH2] = ACTIONS(2122), + [anon_sym_mod2] = ACTIONS(2118), + [anon_sym_SLASH_SLASH2] = ACTIONS(2118), + [anon_sym_PLUS2] = ACTIONS(2122), + [anon_sym_bit_DASHshl2] = ACTIONS(2118), + [anon_sym_bit_DASHshr2] = ACTIONS(2118), + [anon_sym_bit_DASHand2] = ACTIONS(2118), + [anon_sym_bit_DASHxor2] = ACTIONS(2118), + [anon_sym_bit_DASHor2] = ACTIONS(2118), + [anon_sym_err_GT] = ACTIONS(2124), + [anon_sym_out_GT] = ACTIONS(2124), + [anon_sym_e_GT] = ACTIONS(2124), + [anon_sym_o_GT] = ACTIONS(2124), + [anon_sym_err_PLUSout_GT] = ACTIONS(2124), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2124), + [anon_sym_o_PLUSe_GT] = ACTIONS(2124), + [anon_sym_e_PLUSo_GT] = ACTIONS(2124), + [anon_sym_err_GT_GT] = ACTIONS(2120), + [anon_sym_out_GT_GT] = ACTIONS(2120), + [anon_sym_e_GT_GT] = ACTIONS(2120), + [anon_sym_o_GT_GT] = ACTIONS(2120), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2120), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2120), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2120), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2120), [anon_sym_POUND] = ACTIONS(3), }, [STATE(959)] = { @@ -118906,6 +118941,419 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(960)] = { [sym_comment] = STATE(960), + [anon_sym_in] = ACTIONS(2640), + [sym__newline] = ACTIONS(2640), + [anon_sym_SEMI] = ACTIONS(2640), + [anon_sym_PIPE] = ACTIONS(2640), + [anon_sym_err_GT_PIPE] = ACTIONS(2640), + [anon_sym_out_GT_PIPE] = ACTIONS(2640), + [anon_sym_e_GT_PIPE] = ACTIONS(2640), + [anon_sym_o_GT_PIPE] = ACTIONS(2640), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2640), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2640), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2640), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2640), + [anon_sym_RPAREN] = ACTIONS(2640), + [anon_sym_GT2] = ACTIONS(2642), + [anon_sym_DASH2] = ACTIONS(2640), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_RBRACE] = ACTIONS(2640), + [anon_sym_EQ_GT] = ACTIONS(2640), + [anon_sym_STAR2] = ACTIONS(2642), + [anon_sym_and2] = ACTIONS(2640), + [anon_sym_xor2] = ACTIONS(2640), + [anon_sym_or2] = ACTIONS(2640), + [anon_sym_not_DASHin2] = ACTIONS(2640), + [anon_sym_has2] = ACTIONS(2640), + [anon_sym_not_DASHhas2] = ACTIONS(2640), + [anon_sym_starts_DASHwith2] = ACTIONS(2640), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2640), + [anon_sym_ends_DASHwith2] = ACTIONS(2640), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2640), + [anon_sym_EQ_EQ2] = ACTIONS(2640), + [anon_sym_BANG_EQ2] = ACTIONS(2640), + [anon_sym_LT2] = ACTIONS(2642), + [anon_sym_LT_EQ2] = ACTIONS(2640), + [anon_sym_GT_EQ2] = ACTIONS(2640), + [anon_sym_EQ_TILDE2] = ACTIONS(2640), + [anon_sym_BANG_TILDE2] = ACTIONS(2640), + [anon_sym_like2] = ACTIONS(2640), + [anon_sym_not_DASHlike2] = ACTIONS(2640), + [anon_sym_STAR_STAR2] = ACTIONS(2640), + [anon_sym_PLUS_PLUS2] = ACTIONS(2640), + [anon_sym_SLASH2] = ACTIONS(2642), + [anon_sym_mod2] = ACTIONS(2640), + [anon_sym_SLASH_SLASH2] = ACTIONS(2640), + [anon_sym_PLUS2] = ACTIONS(2642), + [anon_sym_bit_DASHshl2] = ACTIONS(2640), + [anon_sym_bit_DASHshr2] = ACTIONS(2640), + [anon_sym_bit_DASHand2] = ACTIONS(2640), + [anon_sym_bit_DASHxor2] = ACTIONS(2640), + [anon_sym_bit_DASHor2] = ACTIONS(2640), + [anon_sym_err_GT] = ACTIONS(2642), + [anon_sym_out_GT] = ACTIONS(2642), + [anon_sym_e_GT] = ACTIONS(2642), + [anon_sym_o_GT] = ACTIONS(2642), + [anon_sym_err_PLUSout_GT] = ACTIONS(2642), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2642), + [anon_sym_o_PLUSe_GT] = ACTIONS(2642), + [anon_sym_e_PLUSo_GT] = ACTIONS(2642), + [anon_sym_err_GT_GT] = ACTIONS(2640), + [anon_sym_out_GT_GT] = ACTIONS(2640), + [anon_sym_e_GT_GT] = ACTIONS(2640), + [anon_sym_o_GT_GT] = ACTIONS(2640), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2640), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2640), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2640), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2640), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(961)] = { + [aux_sym__repeat_newline] = STATE(1128), + [sym__expression_parenthesized] = STATE(4391), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2126), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1831), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_comment] = STATE(961), + [aux_sym_cmd_identifier_token2] = ACTIONS(2561), + [anon_sym_true] = ACTIONS(2563), + [anon_sym_false] = ACTIONS(2563), + [anon_sym_null] = ACTIONS(2565), + [aux_sym_cmd_identifier_token3] = ACTIONS(2567), + [aux_sym_cmd_identifier_token4] = ACTIONS(2567), + [aux_sym_cmd_identifier_token5] = ACTIONS(2567), + [sym__newline] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2036), + [aux_sym__val_number_decimal_token3] = ACTIONS(2571), + [aux_sym__val_number_decimal_token4] = ACTIONS(2571), + [aux_sym__val_number_token1] = ACTIONS(2567), + [aux_sym__val_number_token2] = ACTIONS(2567), + [aux_sym__val_number_token3] = ACTIONS(2567), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2573), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(962)] = { + [aux_sym__repeat_newline] = STATE(1052), + [sym__expression_parenthesized] = STATE(4397), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2126), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1831), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_comment] = STATE(962), + [aux_sym_cmd_identifier_token2] = ACTIONS(2561), + [anon_sym_true] = ACTIONS(2563), + [anon_sym_false] = ACTIONS(2563), + [anon_sym_null] = ACTIONS(2565), + [aux_sym_cmd_identifier_token3] = ACTIONS(2567), + [aux_sym_cmd_identifier_token4] = ACTIONS(2567), + [aux_sym_cmd_identifier_token5] = ACTIONS(2567), + [sym__newline] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2036), + [aux_sym__val_number_decimal_token3] = ACTIONS(2571), + [aux_sym__val_number_decimal_token4] = ACTIONS(2571), + [aux_sym__val_number_token1] = ACTIONS(2567), + [aux_sym__val_number_token2] = ACTIONS(2567), + [aux_sym__val_number_token3] = ACTIONS(2567), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2573), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(963)] = { + [sym_comment] = STATE(963), + [anon_sym_in] = ACTIONS(1004), + [sym__newline] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1004), + [anon_sym_err_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_GT_PIPE] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), + [anon_sym_RPAREN] = ACTIONS(1004), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(1004), + [anon_sym_xor2] = ACTIONS(1004), + [anon_sym_or2] = ACTIONS(1004), + [anon_sym_not_DASHin2] = ACTIONS(1004), + [anon_sym_has2] = ACTIONS(1004), + [anon_sym_not_DASHhas2] = ACTIONS(1004), + [anon_sym_starts_DASHwith2] = ACTIONS(1004), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1004), + [anon_sym_ends_DASHwith2] = ACTIONS(1004), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1004), + [anon_sym_EQ_EQ2] = ACTIONS(1004), + [anon_sym_BANG_EQ2] = ACTIONS(1004), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(1004), + [anon_sym_GT_EQ2] = ACTIONS(1004), + [anon_sym_EQ_TILDE2] = ACTIONS(1004), + [anon_sym_BANG_TILDE2] = ACTIONS(1004), + [anon_sym_like2] = ACTIONS(1004), + [anon_sym_not_DASHlike2] = ACTIONS(1004), + [anon_sym_LPAREN2] = ACTIONS(2602), + [anon_sym_STAR_STAR2] = ACTIONS(1004), + [anon_sym_PLUS_PLUS2] = ACTIONS(1004), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(1004), + [anon_sym_SLASH_SLASH2] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(1004), + [anon_sym_bit_DASHshr2] = ACTIONS(1004), + [anon_sym_bit_DASHand2] = ACTIONS(1004), + [anon_sym_bit_DASHxor2] = ACTIONS(1004), + [anon_sym_bit_DASHor2] = ACTIONS(1004), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(1004), + [anon_sym_out_GT_GT] = ACTIONS(1004), + [anon_sym_e_GT_GT] = ACTIONS(1004), + [anon_sym_o_GT_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), + [sym__unquoted_pattern] = ACTIONS(2604), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(964)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(964), + [anon_sym_in] = ACTIONS(2644), + [sym__newline] = ACTIONS(2644), + [anon_sym_SEMI] = ACTIONS(2644), + [anon_sym_PIPE] = ACTIONS(2644), + [anon_sym_err_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_GT_PIPE] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2644), + [anon_sym_RPAREN] = ACTIONS(2644), + [anon_sym_GT2] = ACTIONS(2646), + [anon_sym_DASH2] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_STAR2] = ACTIONS(2646), + [anon_sym_and2] = ACTIONS(2644), + [anon_sym_xor2] = ACTIONS(2644), + [anon_sym_or2] = ACTIONS(2644), + [anon_sym_not_DASHin2] = ACTIONS(2644), + [anon_sym_has2] = ACTIONS(2644), + [anon_sym_not_DASHhas2] = ACTIONS(2644), + [anon_sym_starts_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2644), + [anon_sym_ends_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2644), + [anon_sym_EQ_EQ2] = ACTIONS(2644), + [anon_sym_BANG_EQ2] = ACTIONS(2644), + [anon_sym_LT2] = ACTIONS(2646), + [anon_sym_LT_EQ2] = ACTIONS(2644), + [anon_sym_GT_EQ2] = ACTIONS(2644), + [anon_sym_EQ_TILDE2] = ACTIONS(2644), + [anon_sym_BANG_TILDE2] = ACTIONS(2644), + [anon_sym_like2] = ACTIONS(2644), + [anon_sym_not_DASHlike2] = ACTIONS(2644), + [anon_sym_STAR_STAR2] = ACTIONS(2644), + [anon_sym_PLUS_PLUS2] = ACTIONS(2644), + [anon_sym_SLASH2] = ACTIONS(2646), + [anon_sym_mod2] = ACTIONS(2644), + [anon_sym_SLASH_SLASH2] = ACTIONS(2644), + [anon_sym_PLUS2] = ACTIONS(2646), + [anon_sym_bit_DASHshl2] = ACTIONS(2644), + [anon_sym_bit_DASHshr2] = ACTIONS(2644), + [anon_sym_bit_DASHand2] = ACTIONS(2644), + [anon_sym_bit_DASHxor2] = ACTIONS(2644), + [anon_sym_bit_DASHor2] = ACTIONS(2644), + [anon_sym_err_GT] = ACTIONS(2646), + [anon_sym_out_GT] = ACTIONS(2646), + [anon_sym_e_GT] = ACTIONS(2646), + [anon_sym_o_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT] = ACTIONS(2646), + [anon_sym_err_GT_GT] = ACTIONS(2644), + [anon_sym_out_GT_GT] = ACTIONS(2644), + [anon_sym_e_GT_GT] = ACTIONS(2644), + [anon_sym_o_GT_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2644), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(965)] = { + [sym__expr_parenthesized_immediate] = STATE(5228), + [sym_comment] = STATE(965), + [ts_builtin_sym_end] = ACTIONS(2094), + [anon_sym_in] = ACTIONS(2094), + [sym__newline] = ACTIONS(2094), + [anon_sym_SEMI] = ACTIONS(2094), + [anon_sym_PIPE] = ACTIONS(2094), + [anon_sym_err_GT_PIPE] = ACTIONS(2094), + [anon_sym_out_GT_PIPE] = ACTIONS(2094), + [anon_sym_e_GT_PIPE] = ACTIONS(2094), + [anon_sym_o_GT_PIPE] = ACTIONS(2094), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2094), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2094), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2094), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2094), + [anon_sym_GT2] = ACTIONS(2096), + [anon_sym_DASH2] = ACTIONS(2094), + [anon_sym_STAR2] = ACTIONS(2096), + [anon_sym_and2] = ACTIONS(2094), + [anon_sym_xor2] = ACTIONS(2094), + [anon_sym_or2] = ACTIONS(2094), + [anon_sym_not_DASHin2] = ACTIONS(2094), + [anon_sym_has2] = ACTIONS(2094), + [anon_sym_not_DASHhas2] = ACTIONS(2094), + [anon_sym_starts_DASHwith2] = ACTIONS(2094), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2094), + [anon_sym_ends_DASHwith2] = ACTIONS(2094), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2094), + [anon_sym_EQ_EQ2] = ACTIONS(2094), + [anon_sym_BANG_EQ2] = ACTIONS(2094), + [anon_sym_LT2] = ACTIONS(2096), + [anon_sym_LT_EQ2] = ACTIONS(2094), + [anon_sym_GT_EQ2] = ACTIONS(2094), + [anon_sym_EQ_TILDE2] = ACTIONS(2094), + [anon_sym_BANG_TILDE2] = ACTIONS(2094), + [anon_sym_like2] = ACTIONS(2094), + [anon_sym_not_DASHlike2] = ACTIONS(2094), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2094), + [anon_sym_PLUS_PLUS2] = ACTIONS(2094), + [anon_sym_SLASH2] = ACTIONS(2096), + [anon_sym_mod2] = ACTIONS(2094), + [anon_sym_SLASH_SLASH2] = ACTIONS(2094), + [anon_sym_PLUS2] = ACTIONS(2096), + [anon_sym_bit_DASHshl2] = ACTIONS(2094), + [anon_sym_bit_DASHshr2] = ACTIONS(2094), + [anon_sym_bit_DASHand2] = ACTIONS(2094), + [anon_sym_bit_DASHxor2] = ACTIONS(2094), + [anon_sym_bit_DASHor2] = ACTIONS(2094), + [anon_sym_err_GT] = ACTIONS(2096), + [anon_sym_out_GT] = ACTIONS(2096), + [anon_sym_e_GT] = ACTIONS(2096), + [anon_sym_o_GT] = ACTIONS(2096), + [anon_sym_err_PLUSout_GT] = ACTIONS(2096), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2096), + [anon_sym_o_PLUSe_GT] = ACTIONS(2096), + [anon_sym_e_PLUSo_GT] = ACTIONS(2096), + [anon_sym_err_GT_GT] = ACTIONS(2094), + [anon_sym_out_GT_GT] = ACTIONS(2094), + [anon_sym_e_GT_GT] = ACTIONS(2094), + [anon_sym_o_GT_GT] = ACTIONS(2094), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2094), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2094), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2094), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2094), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(966)] = { + [sym__expr_parenthesized_immediate] = STATE(5228), + [sym_comment] = STATE(966), [ts_builtin_sym_end] = ACTIONS(2098), [anon_sym_in] = ACTIONS(2098), [sym__newline] = ACTIONS(2098), @@ -118941,6 +119389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2098), [anon_sym_like2] = ACTIONS(2098), [anon_sym_not_DASHlike2] = ACTIONS(2098), + [anon_sym_LPAREN2] = ACTIONS(1714), [anon_sym_STAR_STAR2] = ACTIONS(2098), [anon_sym_PLUS_PLUS2] = ACTIONS(2098), [anon_sym_SLASH2] = ACTIONS(2100), @@ -118952,9 +119401,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(2098), [anon_sym_bit_DASHxor2] = ACTIONS(2098), [anon_sym_bit_DASHor2] = ACTIONS(2098), - [anon_sym_DOT_DOT2] = ACTIONS(2636), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2638), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2638), [anon_sym_err_GT] = ACTIONS(2100), [anon_sym_out_GT] = ACTIONS(2100), [anon_sym_e_GT] = ACTIONS(2100), @@ -118973,334 +119419,2235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2098), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(961)] = { - [sym_comment] = STATE(961), - [ts_builtin_sym_end] = ACTIONS(1661), - [anon_sym_in] = 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(1663), - [anon_sym_DASH2] = ACTIONS(1661), - [anon_sym_STAR2] = ACTIONS(1663), - [anon_sym_and2] = ACTIONS(1661), - [anon_sym_xor2] = ACTIONS(1661), - [anon_sym_or2] = ACTIONS(1661), - [anon_sym_not_DASHin2] = ACTIONS(1661), - [anon_sym_has2] = ACTIONS(1661), - [anon_sym_not_DASHhas2] = ACTIONS(1661), - [anon_sym_starts_DASHwith2] = ACTIONS(1661), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1661), - [anon_sym_ends_DASHwith2] = ACTIONS(1661), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1661), - [anon_sym_EQ_EQ2] = ACTIONS(1661), - [anon_sym_BANG_EQ2] = ACTIONS(1661), - [anon_sym_LT2] = ACTIONS(1663), - [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_like2] = ACTIONS(1661), - [anon_sym_not_DASHlike2] = ACTIONS(1661), - [anon_sym_STAR_STAR2] = ACTIONS(1661), - [anon_sym_PLUS_PLUS2] = ACTIONS(1661), - [anon_sym_SLASH2] = ACTIONS(1663), - [anon_sym_mod2] = ACTIONS(1661), - [anon_sym_SLASH_SLASH2] = ACTIONS(1661), - [anon_sym_PLUS2] = ACTIONS(1663), - [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(1663), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), - [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(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), + [STATE(967)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(967), + [anon_sym_in] = ACTIONS(2644), + [sym__newline] = ACTIONS(2644), + [anon_sym_SEMI] = ACTIONS(2644), + [anon_sym_PIPE] = ACTIONS(2644), + [anon_sym_err_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_GT_PIPE] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2644), + [anon_sym_RPAREN] = ACTIONS(2644), + [anon_sym_GT2] = ACTIONS(2646), + [anon_sym_DASH2] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_STAR2] = ACTIONS(2646), + [anon_sym_and2] = ACTIONS(2644), + [anon_sym_xor2] = ACTIONS(2644), + [anon_sym_or2] = ACTIONS(2644), + [anon_sym_not_DASHin2] = ACTIONS(2644), + [anon_sym_has2] = ACTIONS(2644), + [anon_sym_not_DASHhas2] = ACTIONS(2644), + [anon_sym_starts_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2644), + [anon_sym_ends_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2644), + [anon_sym_EQ_EQ2] = ACTIONS(2644), + [anon_sym_BANG_EQ2] = ACTIONS(2644), + [anon_sym_LT2] = ACTIONS(2646), + [anon_sym_LT_EQ2] = ACTIONS(2644), + [anon_sym_GT_EQ2] = ACTIONS(2644), + [anon_sym_EQ_TILDE2] = ACTIONS(2644), + [anon_sym_BANG_TILDE2] = ACTIONS(2644), + [anon_sym_like2] = ACTIONS(2644), + [anon_sym_not_DASHlike2] = ACTIONS(2644), + [anon_sym_STAR_STAR2] = ACTIONS(2644), + [anon_sym_PLUS_PLUS2] = ACTIONS(2644), + [anon_sym_SLASH2] = ACTIONS(2646), + [anon_sym_mod2] = ACTIONS(2644), + [anon_sym_SLASH_SLASH2] = ACTIONS(2644), + [anon_sym_PLUS2] = ACTIONS(2646), + [anon_sym_bit_DASHshl2] = ACTIONS(2644), + [anon_sym_bit_DASHshr2] = ACTIONS(2644), + [anon_sym_bit_DASHand2] = ACTIONS(2644), + [anon_sym_bit_DASHxor2] = ACTIONS(2644), + [anon_sym_bit_DASHor2] = ACTIONS(2644), + [anon_sym_err_GT] = ACTIONS(2646), + [anon_sym_out_GT] = ACTIONS(2646), + [anon_sym_e_GT] = ACTIONS(2646), + [anon_sym_o_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT] = ACTIONS(2646), + [anon_sym_err_GT_GT] = ACTIONS(2644), + [anon_sym_out_GT_GT] = ACTIONS(2644), + [anon_sym_e_GT_GT] = ACTIONS(2644), + [anon_sym_o_GT_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2644), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(962)] = { - [sym_comment] = STATE(962), - [anon_sym_in] = ACTIONS(2062), - [sym__newline] = ACTIONS(2062), - [anon_sym_SEMI] = ACTIONS(2062), - [anon_sym_PIPE] = ACTIONS(2062), - [anon_sym_err_GT_PIPE] = ACTIONS(2062), - [anon_sym_out_GT_PIPE] = ACTIONS(2062), - [anon_sym_e_GT_PIPE] = ACTIONS(2062), - [anon_sym_o_GT_PIPE] = ACTIONS(2062), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2062), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2062), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2062), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2062), - [anon_sym_RPAREN] = ACTIONS(2062), - [anon_sym_GT2] = ACTIONS(2064), - [anon_sym_DASH2] = ACTIONS(2062), - [anon_sym_LBRACE] = ACTIONS(2062), - [anon_sym_RBRACE] = ACTIONS(2062), - [anon_sym_EQ_GT] = ACTIONS(2062), - [anon_sym_STAR2] = ACTIONS(2064), - [anon_sym_and2] = ACTIONS(2062), - [anon_sym_xor2] = ACTIONS(2062), - [anon_sym_or2] = ACTIONS(2062), - [anon_sym_not_DASHin2] = ACTIONS(2062), - [anon_sym_has2] = ACTIONS(2062), - [anon_sym_not_DASHhas2] = ACTIONS(2062), - [anon_sym_starts_DASHwith2] = ACTIONS(2062), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2062), - [anon_sym_ends_DASHwith2] = ACTIONS(2062), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2062), - [anon_sym_EQ_EQ2] = ACTIONS(2062), - [anon_sym_BANG_EQ2] = ACTIONS(2062), - [anon_sym_LT2] = ACTIONS(2064), - [anon_sym_LT_EQ2] = ACTIONS(2062), - [anon_sym_GT_EQ2] = ACTIONS(2062), - [anon_sym_EQ_TILDE2] = ACTIONS(2062), - [anon_sym_BANG_TILDE2] = ACTIONS(2062), - [anon_sym_like2] = ACTIONS(2062), - [anon_sym_not_DASHlike2] = ACTIONS(2062), - [anon_sym_STAR_STAR2] = ACTIONS(2062), - [anon_sym_PLUS_PLUS2] = ACTIONS(2062), - [anon_sym_SLASH2] = ACTIONS(2064), - [anon_sym_mod2] = ACTIONS(2062), - [anon_sym_SLASH_SLASH2] = ACTIONS(2062), - [anon_sym_PLUS2] = ACTIONS(2064), - [anon_sym_bit_DASHshl2] = ACTIONS(2062), - [anon_sym_bit_DASHshr2] = ACTIONS(2062), - [anon_sym_bit_DASHand2] = ACTIONS(2062), - [anon_sym_bit_DASHxor2] = ACTIONS(2062), - [anon_sym_bit_DASHor2] = ACTIONS(2062), - [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(2062), - [anon_sym_out_GT_GT] = ACTIONS(2062), - [anon_sym_e_GT_GT] = ACTIONS(2062), - [anon_sym_o_GT_GT] = ACTIONS(2062), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), + [STATE(968)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(968), + [anon_sym_in] = ACTIONS(2648), + [sym__newline] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_err_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_GT_PIPE] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), + [anon_sym_RPAREN] = ACTIONS(2648), + [anon_sym_GT2] = ACTIONS(2650), + [anon_sym_DASH2] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2650), + [anon_sym_and2] = ACTIONS(2648), + [anon_sym_xor2] = ACTIONS(2648), + [anon_sym_or2] = ACTIONS(2648), + [anon_sym_not_DASHin2] = ACTIONS(2648), + [anon_sym_has2] = ACTIONS(2648), + [anon_sym_not_DASHhas2] = ACTIONS(2648), + [anon_sym_starts_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2648), + [anon_sym_ends_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2648), + [anon_sym_EQ_EQ2] = ACTIONS(2648), + [anon_sym_BANG_EQ2] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2650), + [anon_sym_LT_EQ2] = ACTIONS(2648), + [anon_sym_GT_EQ2] = ACTIONS(2648), + [anon_sym_EQ_TILDE2] = ACTIONS(2648), + [anon_sym_BANG_TILDE2] = ACTIONS(2648), + [anon_sym_like2] = ACTIONS(2648), + [anon_sym_not_DASHlike2] = ACTIONS(2648), + [anon_sym_STAR_STAR2] = ACTIONS(2648), + [anon_sym_PLUS_PLUS2] = ACTIONS(2648), + [anon_sym_SLASH2] = ACTIONS(2650), + [anon_sym_mod2] = ACTIONS(2648), + [anon_sym_SLASH_SLASH2] = ACTIONS(2648), + [anon_sym_PLUS2] = ACTIONS(2650), + [anon_sym_bit_DASHshl2] = ACTIONS(2648), + [anon_sym_bit_DASHshr2] = ACTIONS(2648), + [anon_sym_bit_DASHand2] = ACTIONS(2648), + [anon_sym_bit_DASHxor2] = ACTIONS(2648), + [anon_sym_bit_DASHor2] = ACTIONS(2648), + [anon_sym_err_GT] = ACTIONS(2650), + [anon_sym_out_GT] = ACTIONS(2650), + [anon_sym_e_GT] = ACTIONS(2650), + [anon_sym_o_GT] = ACTIONS(2650), + [anon_sym_err_PLUSout_GT] = ACTIONS(2650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2650), + [anon_sym_o_PLUSe_GT] = ACTIONS(2650), + [anon_sym_e_PLUSo_GT] = ACTIONS(2650), + [anon_sym_err_GT_GT] = ACTIONS(2648), + [anon_sym_out_GT_GT] = ACTIONS(2648), + [anon_sym_e_GT_GT] = ACTIONS(2648), + [anon_sym_o_GT_GT] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2648), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(963)] = { - [sym_comment] = STATE(963), - [ts_builtin_sym_end] = ACTIONS(1952), - [anon_sym_in] = ACTIONS(1952), - [sym__newline] = ACTIONS(1952), - [anon_sym_SEMI] = ACTIONS(1952), - [anon_sym_PIPE] = ACTIONS(1952), - [anon_sym_err_GT_PIPE] = ACTIONS(1952), - [anon_sym_out_GT_PIPE] = ACTIONS(1952), - [anon_sym_e_GT_PIPE] = ACTIONS(1952), - [anon_sym_o_GT_PIPE] = ACTIONS(1952), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1952), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1952), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1952), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1952), - [anon_sym_GT2] = ACTIONS(1954), - [anon_sym_DASH2] = ACTIONS(1952), - [anon_sym_STAR2] = ACTIONS(1954), - [anon_sym_and2] = ACTIONS(1952), - [anon_sym_xor2] = ACTIONS(1952), - [anon_sym_or2] = ACTIONS(1952), - [anon_sym_not_DASHin2] = ACTIONS(1952), - [anon_sym_has2] = ACTIONS(1952), - [anon_sym_not_DASHhas2] = ACTIONS(1952), - [anon_sym_starts_DASHwith2] = ACTIONS(1952), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1952), - [anon_sym_ends_DASHwith2] = ACTIONS(1952), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1952), - [anon_sym_EQ_EQ2] = ACTIONS(1952), - [anon_sym_BANG_EQ2] = ACTIONS(1952), - [anon_sym_LT2] = ACTIONS(1954), - [anon_sym_LT_EQ2] = ACTIONS(1952), - [anon_sym_GT_EQ2] = ACTIONS(1952), - [anon_sym_EQ_TILDE2] = ACTIONS(1952), - [anon_sym_BANG_TILDE2] = ACTIONS(1952), - [anon_sym_like2] = ACTIONS(1952), - [anon_sym_not_DASHlike2] = ACTIONS(1952), - [anon_sym_STAR_STAR2] = ACTIONS(1952), - [anon_sym_PLUS_PLUS2] = ACTIONS(1952), - [anon_sym_SLASH2] = ACTIONS(1954), - [anon_sym_mod2] = ACTIONS(1952), - [anon_sym_SLASH_SLASH2] = ACTIONS(1952), - [anon_sym_PLUS2] = ACTIONS(1954), - [anon_sym_bit_DASHshl2] = ACTIONS(1952), - [anon_sym_bit_DASHshr2] = ACTIONS(1952), - [anon_sym_bit_DASHand2] = ACTIONS(1952), - [anon_sym_bit_DASHxor2] = ACTIONS(1952), - [anon_sym_bit_DASHor2] = ACTIONS(1952), - [anon_sym_DOT_DOT2] = ACTIONS(2640), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2642), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2642), - [anon_sym_err_GT] = ACTIONS(1954), - [anon_sym_out_GT] = ACTIONS(1954), - [anon_sym_e_GT] = ACTIONS(1954), - [anon_sym_o_GT] = ACTIONS(1954), - [anon_sym_err_PLUSout_GT] = ACTIONS(1954), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1954), - [anon_sym_o_PLUSe_GT] = ACTIONS(1954), - [anon_sym_e_PLUSo_GT] = ACTIONS(1954), - [anon_sym_err_GT_GT] = ACTIONS(1952), - [anon_sym_out_GT_GT] = ACTIONS(1952), - [anon_sym_e_GT_GT] = ACTIONS(1952), - [anon_sym_o_GT_GT] = ACTIONS(1952), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1952), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1952), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1952), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1952), + [STATE(969)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(969), + [anon_sym_in] = ACTIONS(2648), + [sym__newline] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_err_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_GT_PIPE] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), + [anon_sym_RPAREN] = ACTIONS(2648), + [anon_sym_GT2] = ACTIONS(2650), + [anon_sym_DASH2] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2650), + [anon_sym_and2] = ACTIONS(2648), + [anon_sym_xor2] = ACTIONS(2648), + [anon_sym_or2] = ACTIONS(2648), + [anon_sym_not_DASHin2] = ACTIONS(2648), + [anon_sym_has2] = ACTIONS(2648), + [anon_sym_not_DASHhas2] = ACTIONS(2648), + [anon_sym_starts_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2648), + [anon_sym_ends_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2648), + [anon_sym_EQ_EQ2] = ACTIONS(2648), + [anon_sym_BANG_EQ2] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2650), + [anon_sym_LT_EQ2] = ACTIONS(2648), + [anon_sym_GT_EQ2] = ACTIONS(2648), + [anon_sym_EQ_TILDE2] = ACTIONS(2648), + [anon_sym_BANG_TILDE2] = ACTIONS(2648), + [anon_sym_like2] = ACTIONS(2648), + [anon_sym_not_DASHlike2] = ACTIONS(2648), + [anon_sym_STAR_STAR2] = ACTIONS(2648), + [anon_sym_PLUS_PLUS2] = ACTIONS(2648), + [anon_sym_SLASH2] = ACTIONS(2650), + [anon_sym_mod2] = ACTIONS(2648), + [anon_sym_SLASH_SLASH2] = ACTIONS(2648), + [anon_sym_PLUS2] = ACTIONS(2650), + [anon_sym_bit_DASHshl2] = ACTIONS(2648), + [anon_sym_bit_DASHshr2] = ACTIONS(2648), + [anon_sym_bit_DASHand2] = ACTIONS(2648), + [anon_sym_bit_DASHxor2] = ACTIONS(2648), + [anon_sym_bit_DASHor2] = ACTIONS(2648), + [anon_sym_err_GT] = ACTIONS(2650), + [anon_sym_out_GT] = ACTIONS(2650), + [anon_sym_e_GT] = ACTIONS(2650), + [anon_sym_o_GT] = ACTIONS(2650), + [anon_sym_err_PLUSout_GT] = ACTIONS(2650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2650), + [anon_sym_o_PLUSe_GT] = ACTIONS(2650), + [anon_sym_e_PLUSo_GT] = ACTIONS(2650), + [anon_sym_err_GT_GT] = ACTIONS(2648), + [anon_sym_out_GT_GT] = ACTIONS(2648), + [anon_sym_e_GT_GT] = ACTIONS(2648), + [anon_sym_o_GT_GT] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2648), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(964)] = { - [aux_sym__repeat_newline] = STATE(4123), - [sym__match_pattern_expression] = STATE(4388), - [sym__match_pattern_value] = STATE(4618), - [sym__match_pattern_list_body] = STATE(4640), - [sym__match_pattern_list] = STATE(4619), - [sym__match_pattern_rest] = STATE(5232), - [sym__match_pattern_record] = STATE(4622), - [sym_expr_parenthesized] = STATE(3839), - [sym_val_range] = STATE(4618), - [sym__val_range] = STATE(5078), - [sym_val_nothing] = STATE(4622), - [sym_val_bool] = STATE(4190), - [sym_val_variable] = STATE(3841), - [sym_val_number] = STATE(4622), - [sym__val_number_decimal] = STATE(3591), - [sym__val_number] = STATE(4361), - [sym_val_duration] = STATE(4622), - [sym_val_filesize] = STATE(4622), - [sym_val_binary] = STATE(4622), - [sym_val_string] = STATE(4622), - [sym__raw_str] = STATE(3638), - [sym__str_double_quotes] = STATE(3638), - [sym__str_single_quotes] = STATE(3638), - [sym__str_back_ticks] = STATE(3638), - [sym_val_list] = STATE(4890), - [sym__table_head] = STATE(3691), - [sym_val_table] = STATE(4622), - [sym__unquoted_in_list] = STATE(4388), - [sym__unquoted_anonymous_prefix] = STATE(5078), - [sym_comment] = STATE(964), - [aux_sym__types_body_repeat1] = STATE(1395), - [aux_sym_parameter_repeat2] = STATE(4037), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1423), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [anon_sym_null] = ACTIONS(1376), - [aux_sym_cmd_identifier_token3] = ACTIONS(1378), - [aux_sym_cmd_identifier_token4] = ACTIONS(1378), - [aux_sym_cmd_identifier_token5] = ACTIONS(1378), - [sym__newline] = ACTIONS(2644), - [anon_sym_LBRACK] = ACTIONS(2646), - [anon_sym_RBRACK] = ACTIONS(2648), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_DOLLAR] = ACTIONS(2650), + [STATE(970)] = { + [sym__expr_parenthesized_immediate] = STATE(5228), + [sym_comment] = STATE(970), + [ts_builtin_sym_end] = ACTIONS(2102), + [anon_sym_in] = ACTIONS(2102), + [sym__newline] = ACTIONS(2102), + [anon_sym_SEMI] = ACTIONS(2102), + [anon_sym_PIPE] = ACTIONS(2102), + [anon_sym_err_GT_PIPE] = ACTIONS(2102), + [anon_sym_out_GT_PIPE] = ACTIONS(2102), + [anon_sym_e_GT_PIPE] = ACTIONS(2102), + [anon_sym_o_GT_PIPE] = ACTIONS(2102), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2102), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2102), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2102), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2102), + [anon_sym_GT2] = ACTIONS(2104), + [anon_sym_DASH2] = ACTIONS(2102), + [anon_sym_STAR2] = ACTIONS(2104), + [anon_sym_and2] = ACTIONS(2102), + [anon_sym_xor2] = ACTIONS(2102), + [anon_sym_or2] = ACTIONS(2102), + [anon_sym_not_DASHin2] = ACTIONS(2102), + [anon_sym_has2] = ACTIONS(2102), + [anon_sym_not_DASHhas2] = ACTIONS(2102), + [anon_sym_starts_DASHwith2] = ACTIONS(2102), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2102), + [anon_sym_ends_DASHwith2] = ACTIONS(2102), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2102), + [anon_sym_EQ_EQ2] = ACTIONS(2102), + [anon_sym_BANG_EQ2] = ACTIONS(2102), + [anon_sym_LT2] = ACTIONS(2104), + [anon_sym_LT_EQ2] = ACTIONS(2102), + [anon_sym_GT_EQ2] = ACTIONS(2102), + [anon_sym_EQ_TILDE2] = ACTIONS(2102), + [anon_sym_BANG_TILDE2] = ACTIONS(2102), + [anon_sym_like2] = ACTIONS(2102), + [anon_sym_not_DASHlike2] = ACTIONS(2102), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2102), + [anon_sym_PLUS_PLUS2] = ACTIONS(2102), + [anon_sym_SLASH2] = ACTIONS(2104), + [anon_sym_mod2] = ACTIONS(2102), + [anon_sym_SLASH_SLASH2] = ACTIONS(2102), + [anon_sym_PLUS2] = ACTIONS(2104), + [anon_sym_bit_DASHshl2] = ACTIONS(2102), + [anon_sym_bit_DASHshr2] = ACTIONS(2102), + [anon_sym_bit_DASHand2] = ACTIONS(2102), + [anon_sym_bit_DASHxor2] = ACTIONS(2102), + [anon_sym_bit_DASHor2] = ACTIONS(2102), + [anon_sym_err_GT] = ACTIONS(2104), + [anon_sym_out_GT] = ACTIONS(2104), + [anon_sym_e_GT] = ACTIONS(2104), + [anon_sym_o_GT] = ACTIONS(2104), + [anon_sym_err_PLUSout_GT] = ACTIONS(2104), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2104), + [anon_sym_o_PLUSe_GT] = ACTIONS(2104), + [anon_sym_e_PLUSo_GT] = ACTIONS(2104), + [anon_sym_err_GT_GT] = ACTIONS(2102), + [anon_sym_out_GT_GT] = ACTIONS(2102), + [anon_sym_e_GT_GT] = ACTIONS(2102), + [anon_sym_o_GT_GT] = ACTIONS(2102), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2102), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2102), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2102), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2102), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(971)] = { + [sym__expr_parenthesized_immediate] = STATE(5228), + [sym_comment] = STATE(971), + [ts_builtin_sym_end] = ACTIONS(2106), + [anon_sym_in] = ACTIONS(2106), + [sym__newline] = ACTIONS(2106), + [anon_sym_SEMI] = ACTIONS(2106), + [anon_sym_PIPE] = ACTIONS(2106), + [anon_sym_err_GT_PIPE] = ACTIONS(2106), + [anon_sym_out_GT_PIPE] = ACTIONS(2106), + [anon_sym_e_GT_PIPE] = ACTIONS(2106), + [anon_sym_o_GT_PIPE] = ACTIONS(2106), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2106), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2106), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2106), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2106), + [anon_sym_GT2] = ACTIONS(2108), + [anon_sym_DASH2] = ACTIONS(2106), + [anon_sym_STAR2] = ACTIONS(2108), + [anon_sym_and2] = ACTIONS(2106), + [anon_sym_xor2] = ACTIONS(2106), + [anon_sym_or2] = ACTIONS(2106), + [anon_sym_not_DASHin2] = ACTIONS(2106), + [anon_sym_has2] = ACTIONS(2106), + [anon_sym_not_DASHhas2] = ACTIONS(2106), + [anon_sym_starts_DASHwith2] = ACTIONS(2106), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2106), + [anon_sym_ends_DASHwith2] = ACTIONS(2106), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2106), + [anon_sym_EQ_EQ2] = ACTIONS(2106), + [anon_sym_BANG_EQ2] = ACTIONS(2106), + [anon_sym_LT2] = ACTIONS(2108), + [anon_sym_LT_EQ2] = ACTIONS(2106), + [anon_sym_GT_EQ2] = ACTIONS(2106), + [anon_sym_EQ_TILDE2] = ACTIONS(2106), + [anon_sym_BANG_TILDE2] = ACTIONS(2106), + [anon_sym_like2] = ACTIONS(2106), + [anon_sym_not_DASHlike2] = ACTIONS(2106), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_STAR_STAR2] = ACTIONS(2106), + [anon_sym_PLUS_PLUS2] = ACTIONS(2106), + [anon_sym_SLASH2] = ACTIONS(2108), + [anon_sym_mod2] = ACTIONS(2106), + [anon_sym_SLASH_SLASH2] = ACTIONS(2106), + [anon_sym_PLUS2] = ACTIONS(2108), + [anon_sym_bit_DASHshl2] = ACTIONS(2106), + [anon_sym_bit_DASHshr2] = ACTIONS(2106), + [anon_sym_bit_DASHand2] = ACTIONS(2106), + [anon_sym_bit_DASHxor2] = ACTIONS(2106), + [anon_sym_bit_DASHor2] = ACTIONS(2106), + [anon_sym_err_GT] = ACTIONS(2108), + [anon_sym_out_GT] = ACTIONS(2108), + [anon_sym_e_GT] = ACTIONS(2108), + [anon_sym_o_GT] = ACTIONS(2108), + [anon_sym_err_PLUSout_GT] = ACTIONS(2108), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2108), + [anon_sym_o_PLUSe_GT] = ACTIONS(2108), + [anon_sym_e_PLUSo_GT] = ACTIONS(2108), + [anon_sym_err_GT_GT] = ACTIONS(2106), + [anon_sym_out_GT_GT] = ACTIONS(2106), + [anon_sym_e_GT_GT] = ACTIONS(2106), + [anon_sym_o_GT_GT] = ACTIONS(2106), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2106), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2106), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2106), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2106), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(972)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(972), + [anon_sym_in] = ACTIONS(2648), + [sym__newline] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_err_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_GT_PIPE] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), + [anon_sym_RPAREN] = ACTIONS(2648), + [anon_sym_GT2] = ACTIONS(2650), + [anon_sym_DASH2] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2650), + [anon_sym_and2] = ACTIONS(2648), + [anon_sym_xor2] = ACTIONS(2648), + [anon_sym_or2] = ACTIONS(2648), + [anon_sym_not_DASHin2] = ACTIONS(2648), + [anon_sym_has2] = ACTIONS(2648), + [anon_sym_not_DASHhas2] = ACTIONS(2648), + [anon_sym_starts_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2648), + [anon_sym_ends_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2648), + [anon_sym_EQ_EQ2] = ACTIONS(2648), + [anon_sym_BANG_EQ2] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2650), + [anon_sym_LT_EQ2] = ACTIONS(2648), + [anon_sym_GT_EQ2] = ACTIONS(2648), + [anon_sym_EQ_TILDE2] = ACTIONS(2648), + [anon_sym_BANG_TILDE2] = ACTIONS(2648), + [anon_sym_like2] = ACTIONS(2648), + [anon_sym_not_DASHlike2] = ACTIONS(2648), + [anon_sym_STAR_STAR2] = ACTIONS(2648), + [anon_sym_PLUS_PLUS2] = ACTIONS(2648), + [anon_sym_SLASH2] = ACTIONS(2650), + [anon_sym_mod2] = ACTIONS(2648), + [anon_sym_SLASH_SLASH2] = ACTIONS(2648), + [anon_sym_PLUS2] = ACTIONS(2650), + [anon_sym_bit_DASHshl2] = ACTIONS(2648), + [anon_sym_bit_DASHshr2] = ACTIONS(2648), + [anon_sym_bit_DASHand2] = ACTIONS(2648), + [anon_sym_bit_DASHxor2] = ACTIONS(2648), + [anon_sym_bit_DASHor2] = ACTIONS(2648), + [anon_sym_err_GT] = ACTIONS(2650), + [anon_sym_out_GT] = ACTIONS(2650), + [anon_sym_e_GT] = ACTIONS(2650), + [anon_sym_o_GT] = ACTIONS(2650), + [anon_sym_err_PLUSout_GT] = ACTIONS(2650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2650), + [anon_sym_o_PLUSe_GT] = ACTIONS(2650), + [anon_sym_e_PLUSo_GT] = ACTIONS(2650), + [anon_sym_err_GT_GT] = ACTIONS(2648), + [anon_sym_out_GT_GT] = ACTIONS(2648), + [anon_sym_e_GT_GT] = ACTIONS(2648), + [anon_sym_o_GT_GT] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2648), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(973)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(973), + [anon_sym_in] = ACTIONS(2648), + [sym__newline] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_err_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_GT_PIPE] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), + [anon_sym_RPAREN] = ACTIONS(2648), + [anon_sym_GT2] = ACTIONS(2650), + [anon_sym_DASH2] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2650), + [anon_sym_and2] = ACTIONS(2648), + [anon_sym_xor2] = ACTIONS(2648), + [anon_sym_or2] = ACTIONS(2648), + [anon_sym_not_DASHin2] = ACTIONS(2648), + [anon_sym_has2] = ACTIONS(2648), + [anon_sym_not_DASHhas2] = ACTIONS(2648), + [anon_sym_starts_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2648), + [anon_sym_ends_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2648), + [anon_sym_EQ_EQ2] = ACTIONS(2648), + [anon_sym_BANG_EQ2] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2650), + [anon_sym_LT_EQ2] = ACTIONS(2648), + [anon_sym_GT_EQ2] = ACTIONS(2648), + [anon_sym_EQ_TILDE2] = ACTIONS(2648), + [anon_sym_BANG_TILDE2] = ACTIONS(2648), + [anon_sym_like2] = ACTIONS(2648), + [anon_sym_not_DASHlike2] = ACTIONS(2648), + [anon_sym_STAR_STAR2] = ACTIONS(2648), + [anon_sym_PLUS_PLUS2] = ACTIONS(2648), + [anon_sym_SLASH2] = ACTIONS(2650), + [anon_sym_mod2] = ACTIONS(2648), + [anon_sym_SLASH_SLASH2] = ACTIONS(2648), + [anon_sym_PLUS2] = ACTIONS(2650), + [anon_sym_bit_DASHshl2] = ACTIONS(2648), + [anon_sym_bit_DASHshr2] = ACTIONS(2648), + [anon_sym_bit_DASHand2] = ACTIONS(2648), + [anon_sym_bit_DASHxor2] = ACTIONS(2648), + [anon_sym_bit_DASHor2] = ACTIONS(2648), + [anon_sym_err_GT] = ACTIONS(2650), + [anon_sym_out_GT] = ACTIONS(2650), + [anon_sym_e_GT] = ACTIONS(2650), + [anon_sym_o_GT] = ACTIONS(2650), + [anon_sym_err_PLUSout_GT] = ACTIONS(2650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2650), + [anon_sym_o_PLUSe_GT] = ACTIONS(2650), + [anon_sym_e_PLUSo_GT] = ACTIONS(2650), + [anon_sym_err_GT_GT] = ACTIONS(2648), + [anon_sym_out_GT_GT] = ACTIONS(2648), + [anon_sym_e_GT_GT] = ACTIONS(2648), + [anon_sym_o_GT_GT] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2648), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(974)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(974), + [anon_sym_in] = ACTIONS(2648), + [sym__newline] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_err_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_GT_PIPE] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), + [anon_sym_RPAREN] = ACTIONS(2648), + [anon_sym_GT2] = ACTIONS(2650), + [anon_sym_DASH2] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2650), + [anon_sym_and2] = ACTIONS(2648), + [anon_sym_xor2] = ACTIONS(2648), + [anon_sym_or2] = ACTIONS(2648), + [anon_sym_not_DASHin2] = ACTIONS(2648), + [anon_sym_has2] = ACTIONS(2648), + [anon_sym_not_DASHhas2] = ACTIONS(2648), + [anon_sym_starts_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2648), + [anon_sym_ends_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2648), + [anon_sym_EQ_EQ2] = ACTIONS(2648), + [anon_sym_BANG_EQ2] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2650), + [anon_sym_LT_EQ2] = ACTIONS(2648), + [anon_sym_GT_EQ2] = ACTIONS(2648), + [anon_sym_EQ_TILDE2] = ACTIONS(2648), + [anon_sym_BANG_TILDE2] = ACTIONS(2648), + [anon_sym_like2] = ACTIONS(2648), + [anon_sym_not_DASHlike2] = ACTIONS(2648), + [anon_sym_STAR_STAR2] = ACTIONS(2648), + [anon_sym_PLUS_PLUS2] = ACTIONS(2648), + [anon_sym_SLASH2] = ACTIONS(2650), + [anon_sym_mod2] = ACTIONS(2648), + [anon_sym_SLASH_SLASH2] = ACTIONS(2648), + [anon_sym_PLUS2] = ACTIONS(2650), + [anon_sym_bit_DASHshl2] = ACTIONS(2648), + [anon_sym_bit_DASHshr2] = ACTIONS(2648), + [anon_sym_bit_DASHand2] = ACTIONS(2648), + [anon_sym_bit_DASHxor2] = ACTIONS(2648), + [anon_sym_bit_DASHor2] = ACTIONS(2648), + [anon_sym_err_GT] = ACTIONS(2650), + [anon_sym_out_GT] = ACTIONS(2650), + [anon_sym_e_GT] = ACTIONS(2650), + [anon_sym_o_GT] = ACTIONS(2650), + [anon_sym_err_PLUSout_GT] = ACTIONS(2650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2650), + [anon_sym_o_PLUSe_GT] = ACTIONS(2650), + [anon_sym_e_PLUSo_GT] = ACTIONS(2650), + [anon_sym_err_GT_GT] = ACTIONS(2648), + [anon_sym_out_GT_GT] = ACTIONS(2648), + [anon_sym_e_GT_GT] = ACTIONS(2648), + [anon_sym_o_GT_GT] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2648), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(975)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(975), + [anon_sym_in] = ACTIONS(2648), + [sym__newline] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_err_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_GT_PIPE] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), + [anon_sym_RPAREN] = ACTIONS(2648), + [anon_sym_GT2] = ACTIONS(2650), + [anon_sym_DASH2] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2650), + [anon_sym_and2] = ACTIONS(2648), + [anon_sym_xor2] = ACTIONS(2648), + [anon_sym_or2] = ACTIONS(2648), + [anon_sym_not_DASHin2] = ACTIONS(2648), + [anon_sym_has2] = ACTIONS(2648), + [anon_sym_not_DASHhas2] = ACTIONS(2648), + [anon_sym_starts_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2648), + [anon_sym_ends_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2648), + [anon_sym_EQ_EQ2] = ACTIONS(2648), + [anon_sym_BANG_EQ2] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2650), + [anon_sym_LT_EQ2] = ACTIONS(2648), + [anon_sym_GT_EQ2] = ACTIONS(2648), + [anon_sym_EQ_TILDE2] = ACTIONS(2648), + [anon_sym_BANG_TILDE2] = ACTIONS(2648), + [anon_sym_like2] = ACTIONS(2648), + [anon_sym_not_DASHlike2] = ACTIONS(2648), + [anon_sym_STAR_STAR2] = ACTIONS(2648), + [anon_sym_PLUS_PLUS2] = ACTIONS(2648), + [anon_sym_SLASH2] = ACTIONS(2650), + [anon_sym_mod2] = ACTIONS(2648), + [anon_sym_SLASH_SLASH2] = ACTIONS(2648), + [anon_sym_PLUS2] = ACTIONS(2650), + [anon_sym_bit_DASHshl2] = ACTIONS(2648), + [anon_sym_bit_DASHshr2] = ACTIONS(2648), + [anon_sym_bit_DASHand2] = ACTIONS(2648), + [anon_sym_bit_DASHxor2] = ACTIONS(2648), + [anon_sym_bit_DASHor2] = ACTIONS(2648), + [anon_sym_err_GT] = ACTIONS(2650), + [anon_sym_out_GT] = ACTIONS(2650), + [anon_sym_e_GT] = ACTIONS(2650), + [anon_sym_o_GT] = ACTIONS(2650), + [anon_sym_err_PLUSout_GT] = ACTIONS(2650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2650), + [anon_sym_o_PLUSe_GT] = ACTIONS(2650), + [anon_sym_e_PLUSo_GT] = ACTIONS(2650), + [anon_sym_err_GT_GT] = ACTIONS(2648), + [anon_sym_out_GT_GT] = ACTIONS(2648), + [anon_sym_e_GT_GT] = ACTIONS(2648), + [anon_sym_o_GT_GT] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2648), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(976)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(976), + [anon_sym_in] = ACTIONS(2648), + [sym__newline] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_err_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_GT_PIPE] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), + [anon_sym_RPAREN] = ACTIONS(2648), + [anon_sym_GT2] = ACTIONS(2650), + [anon_sym_DASH2] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2650), + [anon_sym_and2] = ACTIONS(2648), + [anon_sym_xor2] = ACTIONS(2648), + [anon_sym_or2] = ACTIONS(2648), + [anon_sym_not_DASHin2] = ACTIONS(2648), + [anon_sym_has2] = ACTIONS(2648), + [anon_sym_not_DASHhas2] = ACTIONS(2648), + [anon_sym_starts_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2648), + [anon_sym_ends_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2648), + [anon_sym_EQ_EQ2] = ACTIONS(2648), + [anon_sym_BANG_EQ2] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2650), + [anon_sym_LT_EQ2] = ACTIONS(2648), + [anon_sym_GT_EQ2] = ACTIONS(2648), + [anon_sym_EQ_TILDE2] = ACTIONS(2648), + [anon_sym_BANG_TILDE2] = ACTIONS(2648), + [anon_sym_like2] = ACTIONS(2648), + [anon_sym_not_DASHlike2] = ACTIONS(2648), + [anon_sym_STAR_STAR2] = ACTIONS(2648), + [anon_sym_PLUS_PLUS2] = ACTIONS(2648), + [anon_sym_SLASH2] = ACTIONS(2650), + [anon_sym_mod2] = ACTIONS(2648), + [anon_sym_SLASH_SLASH2] = ACTIONS(2648), + [anon_sym_PLUS2] = ACTIONS(2650), + [anon_sym_bit_DASHshl2] = ACTIONS(2648), + [anon_sym_bit_DASHshr2] = ACTIONS(2648), + [anon_sym_bit_DASHand2] = ACTIONS(2648), + [anon_sym_bit_DASHxor2] = ACTIONS(2648), + [anon_sym_bit_DASHor2] = ACTIONS(2648), + [anon_sym_err_GT] = ACTIONS(2650), + [anon_sym_out_GT] = ACTIONS(2650), + [anon_sym_e_GT] = ACTIONS(2650), + [anon_sym_o_GT] = ACTIONS(2650), + [anon_sym_err_PLUSout_GT] = ACTIONS(2650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2650), + [anon_sym_o_PLUSe_GT] = ACTIONS(2650), + [anon_sym_e_PLUSo_GT] = ACTIONS(2650), + [anon_sym_err_GT_GT] = ACTIONS(2648), + [anon_sym_out_GT_GT] = ACTIONS(2648), + [anon_sym_e_GT_GT] = ACTIONS(2648), + [anon_sym_o_GT_GT] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2648), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(977)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(977), + [anon_sym_in] = ACTIONS(2648), + [sym__newline] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_err_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_GT_PIPE] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), + [anon_sym_RPAREN] = ACTIONS(2648), + [anon_sym_GT2] = ACTIONS(2650), + [anon_sym_DASH2] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2650), + [anon_sym_and2] = ACTIONS(2648), + [anon_sym_xor2] = ACTIONS(2648), + [anon_sym_or2] = ACTIONS(2648), + [anon_sym_not_DASHin2] = ACTIONS(2648), + [anon_sym_has2] = ACTIONS(2648), + [anon_sym_not_DASHhas2] = ACTIONS(2648), + [anon_sym_starts_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2648), + [anon_sym_ends_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2648), + [anon_sym_EQ_EQ2] = ACTIONS(2648), + [anon_sym_BANG_EQ2] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2650), + [anon_sym_LT_EQ2] = ACTIONS(2648), + [anon_sym_GT_EQ2] = ACTIONS(2648), + [anon_sym_EQ_TILDE2] = ACTIONS(2648), + [anon_sym_BANG_TILDE2] = ACTIONS(2648), + [anon_sym_like2] = ACTIONS(2648), + [anon_sym_not_DASHlike2] = ACTIONS(2648), + [anon_sym_STAR_STAR2] = ACTIONS(2648), + [anon_sym_PLUS_PLUS2] = ACTIONS(2648), + [anon_sym_SLASH2] = ACTIONS(2650), + [anon_sym_mod2] = ACTIONS(2648), + [anon_sym_SLASH_SLASH2] = ACTIONS(2648), + [anon_sym_PLUS2] = ACTIONS(2650), + [anon_sym_bit_DASHshl2] = ACTIONS(2648), + [anon_sym_bit_DASHshr2] = ACTIONS(2648), + [anon_sym_bit_DASHand2] = ACTIONS(2648), + [anon_sym_bit_DASHxor2] = ACTIONS(2648), + [anon_sym_bit_DASHor2] = ACTIONS(2648), + [anon_sym_err_GT] = ACTIONS(2650), + [anon_sym_out_GT] = ACTIONS(2650), + [anon_sym_e_GT] = ACTIONS(2650), + [anon_sym_o_GT] = ACTIONS(2650), + [anon_sym_err_PLUSout_GT] = ACTIONS(2650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2650), + [anon_sym_o_PLUSe_GT] = ACTIONS(2650), + [anon_sym_e_PLUSo_GT] = ACTIONS(2650), + [anon_sym_err_GT_GT] = ACTIONS(2648), + [anon_sym_out_GT_GT] = ACTIONS(2648), + [anon_sym_e_GT_GT] = ACTIONS(2648), + [anon_sym_o_GT_GT] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2648), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(978)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(978), + [anon_sym_in] = ACTIONS(2652), + [sym__newline] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_PIPE] = ACTIONS(2652), + [anon_sym_err_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_GT_PIPE] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2652), + [anon_sym_RPAREN] = ACTIONS(2652), + [anon_sym_GT2] = ACTIONS(2654), + [anon_sym_DASH2] = ACTIONS(2652), [anon_sym_LBRACE] = ACTIONS(2652), - [anon_sym_DOT_DOT] = ACTIONS(1394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), - [anon_sym_DOT_DOT_LT] = ACTIONS(1396), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [aux_sym__val_number_decimal_token3] = ACTIONS(1402), - [aux_sym__val_number_decimal_token4] = ACTIONS(1402), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(2654), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), + [anon_sym_STAR2] = ACTIONS(2654), + [anon_sym_and2] = ACTIONS(2652), + [anon_sym_xor2] = ACTIONS(2652), + [anon_sym_or2] = ACTIONS(2652), + [anon_sym_not_DASHin2] = ACTIONS(2652), + [anon_sym_has2] = ACTIONS(2652), + [anon_sym_not_DASHhas2] = ACTIONS(2652), + [anon_sym_starts_DASHwith2] = ACTIONS(2652), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2652), + [anon_sym_ends_DASHwith2] = ACTIONS(2652), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2652), + [anon_sym_EQ_EQ2] = ACTIONS(2652), + [anon_sym_BANG_EQ2] = ACTIONS(2652), + [anon_sym_LT2] = ACTIONS(2654), + [anon_sym_LT_EQ2] = ACTIONS(2652), + [anon_sym_GT_EQ2] = ACTIONS(2652), + [anon_sym_EQ_TILDE2] = ACTIONS(2652), + [anon_sym_BANG_TILDE2] = ACTIONS(2652), + [anon_sym_like2] = ACTIONS(2652), + [anon_sym_not_DASHlike2] = ACTIONS(2652), + [anon_sym_STAR_STAR2] = ACTIONS(2652), + [anon_sym_PLUS_PLUS2] = ACTIONS(2652), + [anon_sym_SLASH2] = ACTIONS(2654), + [anon_sym_mod2] = ACTIONS(2652), + [anon_sym_SLASH_SLASH2] = ACTIONS(2652), + [anon_sym_PLUS2] = ACTIONS(2654), + [anon_sym_bit_DASHshl2] = ACTIONS(2652), + [anon_sym_bit_DASHshr2] = ACTIONS(2652), + [anon_sym_bit_DASHand2] = ACTIONS(2652), + [anon_sym_bit_DASHxor2] = ACTIONS(2652), + [anon_sym_bit_DASHor2] = ACTIONS(2652), + [anon_sym_err_GT] = ACTIONS(2654), + [anon_sym_out_GT] = ACTIONS(2654), + [anon_sym_e_GT] = ACTIONS(2654), + [anon_sym_o_GT] = ACTIONS(2654), + [anon_sym_err_PLUSout_GT] = ACTIONS(2654), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2654), + [anon_sym_o_PLUSe_GT] = ACTIONS(2654), + [anon_sym_e_PLUSo_GT] = ACTIONS(2654), + [anon_sym_err_GT_GT] = ACTIONS(2652), + [anon_sym_out_GT_GT] = ACTIONS(2652), + [anon_sym_e_GT_GT] = ACTIONS(2652), + [anon_sym_o_GT_GT] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2652), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(965)] = { - [aux_sym__repeat_newline] = STATE(1353), - [sym__expression_parenthesized] = STATE(4390), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2115), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1826), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_comment] = STATE(965), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(2656), + [STATE(979)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(979), + [anon_sym_in] = ACTIONS(2648), + [sym__newline] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_err_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_GT_PIPE] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), + [anon_sym_RPAREN] = ACTIONS(2648), + [anon_sym_GT2] = ACTIONS(2650), + [anon_sym_DASH2] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2650), + [anon_sym_and2] = ACTIONS(2648), + [anon_sym_xor2] = ACTIONS(2648), + [anon_sym_or2] = ACTIONS(2648), + [anon_sym_not_DASHin2] = ACTIONS(2648), + [anon_sym_has2] = ACTIONS(2648), + [anon_sym_not_DASHhas2] = ACTIONS(2648), + [anon_sym_starts_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2648), + [anon_sym_ends_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2648), + [anon_sym_EQ_EQ2] = ACTIONS(2648), + [anon_sym_BANG_EQ2] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2650), + [anon_sym_LT_EQ2] = ACTIONS(2648), + [anon_sym_GT_EQ2] = ACTIONS(2648), + [anon_sym_EQ_TILDE2] = ACTIONS(2648), + [anon_sym_BANG_TILDE2] = ACTIONS(2648), + [anon_sym_like2] = ACTIONS(2648), + [anon_sym_not_DASHlike2] = ACTIONS(2648), + [anon_sym_STAR_STAR2] = ACTIONS(2648), + [anon_sym_PLUS_PLUS2] = ACTIONS(2648), + [anon_sym_SLASH2] = ACTIONS(2650), + [anon_sym_mod2] = ACTIONS(2648), + [anon_sym_SLASH_SLASH2] = ACTIONS(2648), + [anon_sym_PLUS2] = ACTIONS(2650), + [anon_sym_bit_DASHshl2] = ACTIONS(2648), + [anon_sym_bit_DASHshr2] = ACTIONS(2648), + [anon_sym_bit_DASHand2] = ACTIONS(2648), + [anon_sym_bit_DASHxor2] = ACTIONS(2648), + [anon_sym_bit_DASHor2] = ACTIONS(2648), + [anon_sym_err_GT] = ACTIONS(2650), + [anon_sym_out_GT] = ACTIONS(2650), + [anon_sym_e_GT] = ACTIONS(2650), + [anon_sym_o_GT] = ACTIONS(2650), + [anon_sym_err_PLUSout_GT] = ACTIONS(2650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2650), + [anon_sym_o_PLUSe_GT] = ACTIONS(2650), + [anon_sym_e_PLUSo_GT] = ACTIONS(2650), + [anon_sym_err_GT_GT] = ACTIONS(2648), + [anon_sym_out_GT_GT] = ACTIONS(2648), + [anon_sym_e_GT_GT] = ACTIONS(2648), + [anon_sym_o_GT_GT] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2648), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(980)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(980), + [anon_sym_in] = ACTIONS(2648), + [sym__newline] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_err_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_GT_PIPE] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), + [anon_sym_RPAREN] = ACTIONS(2648), + [anon_sym_GT2] = ACTIONS(2650), + [anon_sym_DASH2] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2650), + [anon_sym_and2] = ACTIONS(2648), + [anon_sym_xor2] = ACTIONS(2648), + [anon_sym_or2] = ACTIONS(2648), + [anon_sym_not_DASHin2] = ACTIONS(2648), + [anon_sym_has2] = ACTIONS(2648), + [anon_sym_not_DASHhas2] = ACTIONS(2648), + [anon_sym_starts_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2648), + [anon_sym_ends_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2648), + [anon_sym_EQ_EQ2] = ACTIONS(2648), + [anon_sym_BANG_EQ2] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2650), + [anon_sym_LT_EQ2] = ACTIONS(2648), + [anon_sym_GT_EQ2] = ACTIONS(2648), + [anon_sym_EQ_TILDE2] = ACTIONS(2648), + [anon_sym_BANG_TILDE2] = ACTIONS(2648), + [anon_sym_like2] = ACTIONS(2648), + [anon_sym_not_DASHlike2] = ACTIONS(2648), + [anon_sym_STAR_STAR2] = ACTIONS(2648), + [anon_sym_PLUS_PLUS2] = ACTIONS(2648), + [anon_sym_SLASH2] = ACTIONS(2650), + [anon_sym_mod2] = ACTIONS(2648), + [anon_sym_SLASH_SLASH2] = ACTIONS(2648), + [anon_sym_PLUS2] = ACTIONS(2650), + [anon_sym_bit_DASHshl2] = ACTIONS(2648), + [anon_sym_bit_DASHshr2] = ACTIONS(2648), + [anon_sym_bit_DASHand2] = ACTIONS(2648), + [anon_sym_bit_DASHxor2] = ACTIONS(2648), + [anon_sym_bit_DASHor2] = ACTIONS(2648), + [anon_sym_err_GT] = ACTIONS(2650), + [anon_sym_out_GT] = ACTIONS(2650), + [anon_sym_e_GT] = ACTIONS(2650), + [anon_sym_o_GT] = ACTIONS(2650), + [anon_sym_err_PLUSout_GT] = ACTIONS(2650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2650), + [anon_sym_o_PLUSe_GT] = ACTIONS(2650), + [anon_sym_e_PLUSo_GT] = ACTIONS(2650), + [anon_sym_err_GT_GT] = ACTIONS(2648), + [anon_sym_out_GT_GT] = ACTIONS(2648), + [anon_sym_e_GT_GT] = ACTIONS(2648), + [anon_sym_o_GT_GT] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2648), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(981)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(981), + [anon_sym_in] = ACTIONS(2648), + [sym__newline] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_err_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_GT_PIPE] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), + [anon_sym_RPAREN] = ACTIONS(2648), + [anon_sym_GT2] = ACTIONS(2650), + [anon_sym_DASH2] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2650), + [anon_sym_and2] = ACTIONS(2648), + [anon_sym_xor2] = ACTIONS(2648), + [anon_sym_or2] = ACTIONS(2648), + [anon_sym_not_DASHin2] = ACTIONS(2648), + [anon_sym_has2] = ACTIONS(2648), + [anon_sym_not_DASHhas2] = ACTIONS(2648), + [anon_sym_starts_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2648), + [anon_sym_ends_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2648), + [anon_sym_EQ_EQ2] = ACTIONS(2648), + [anon_sym_BANG_EQ2] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2650), + [anon_sym_LT_EQ2] = ACTIONS(2648), + [anon_sym_GT_EQ2] = ACTIONS(2648), + [anon_sym_EQ_TILDE2] = ACTIONS(2648), + [anon_sym_BANG_TILDE2] = ACTIONS(2648), + [anon_sym_like2] = ACTIONS(2648), + [anon_sym_not_DASHlike2] = ACTIONS(2648), + [anon_sym_STAR_STAR2] = ACTIONS(2648), + [anon_sym_PLUS_PLUS2] = ACTIONS(2648), + [anon_sym_SLASH2] = ACTIONS(2650), + [anon_sym_mod2] = ACTIONS(2648), + [anon_sym_SLASH_SLASH2] = ACTIONS(2648), + [anon_sym_PLUS2] = ACTIONS(2650), + [anon_sym_bit_DASHshl2] = ACTIONS(2648), + [anon_sym_bit_DASHshr2] = ACTIONS(2648), + [anon_sym_bit_DASHand2] = ACTIONS(2648), + [anon_sym_bit_DASHxor2] = ACTIONS(2648), + [anon_sym_bit_DASHor2] = ACTIONS(2648), + [anon_sym_err_GT] = ACTIONS(2650), + [anon_sym_out_GT] = ACTIONS(2650), + [anon_sym_e_GT] = ACTIONS(2650), + [anon_sym_o_GT] = ACTIONS(2650), + [anon_sym_err_PLUSout_GT] = ACTIONS(2650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2650), + [anon_sym_o_PLUSe_GT] = ACTIONS(2650), + [anon_sym_e_PLUSo_GT] = ACTIONS(2650), + [anon_sym_err_GT_GT] = ACTIONS(2648), + [anon_sym_out_GT_GT] = ACTIONS(2648), + [anon_sym_e_GT_GT] = ACTIONS(2648), + [anon_sym_o_GT_GT] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2648), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(982)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(982), + [anon_sym_in] = ACTIONS(2648), + [sym__newline] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_err_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_GT_PIPE] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), + [anon_sym_RPAREN] = ACTIONS(2648), + [anon_sym_GT2] = ACTIONS(2650), + [anon_sym_DASH2] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2650), + [anon_sym_and2] = ACTIONS(2648), + [anon_sym_xor2] = ACTIONS(2648), + [anon_sym_or2] = ACTIONS(2648), + [anon_sym_not_DASHin2] = ACTIONS(2648), + [anon_sym_has2] = ACTIONS(2648), + [anon_sym_not_DASHhas2] = ACTIONS(2648), + [anon_sym_starts_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2648), + [anon_sym_ends_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2648), + [anon_sym_EQ_EQ2] = ACTIONS(2648), + [anon_sym_BANG_EQ2] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2650), + [anon_sym_LT_EQ2] = ACTIONS(2648), + [anon_sym_GT_EQ2] = ACTIONS(2648), + [anon_sym_EQ_TILDE2] = ACTIONS(2648), + [anon_sym_BANG_TILDE2] = ACTIONS(2648), + [anon_sym_like2] = ACTIONS(2648), + [anon_sym_not_DASHlike2] = ACTIONS(2648), + [anon_sym_STAR_STAR2] = ACTIONS(2648), + [anon_sym_PLUS_PLUS2] = ACTIONS(2648), + [anon_sym_SLASH2] = ACTIONS(2650), + [anon_sym_mod2] = ACTIONS(2648), + [anon_sym_SLASH_SLASH2] = ACTIONS(2648), + [anon_sym_PLUS2] = ACTIONS(2650), + [anon_sym_bit_DASHshl2] = ACTIONS(2648), + [anon_sym_bit_DASHshr2] = ACTIONS(2648), + [anon_sym_bit_DASHand2] = ACTIONS(2648), + [anon_sym_bit_DASHxor2] = ACTIONS(2648), + [anon_sym_bit_DASHor2] = ACTIONS(2648), + [anon_sym_err_GT] = ACTIONS(2650), + [anon_sym_out_GT] = ACTIONS(2650), + [anon_sym_e_GT] = ACTIONS(2650), + [anon_sym_o_GT] = ACTIONS(2650), + [anon_sym_err_PLUSout_GT] = ACTIONS(2650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2650), + [anon_sym_o_PLUSe_GT] = ACTIONS(2650), + [anon_sym_e_PLUSo_GT] = ACTIONS(2650), + [anon_sym_err_GT_GT] = ACTIONS(2648), + [anon_sym_out_GT_GT] = ACTIONS(2648), + [anon_sym_e_GT_GT] = ACTIONS(2648), + [anon_sym_o_GT_GT] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2648), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(983)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(983), + [anon_sym_in] = ACTIONS(2648), + [sym__newline] = ACTIONS(2648), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_err_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_GT_PIPE] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2648), + [anon_sym_RPAREN] = ACTIONS(2648), + [anon_sym_GT2] = ACTIONS(2650), + [anon_sym_DASH2] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_STAR2] = ACTIONS(2650), + [anon_sym_and2] = ACTIONS(2648), + [anon_sym_xor2] = ACTIONS(2648), + [anon_sym_or2] = ACTIONS(2648), + [anon_sym_not_DASHin2] = ACTIONS(2648), + [anon_sym_has2] = ACTIONS(2648), + [anon_sym_not_DASHhas2] = ACTIONS(2648), + [anon_sym_starts_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2648), + [anon_sym_ends_DASHwith2] = ACTIONS(2648), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2648), + [anon_sym_EQ_EQ2] = ACTIONS(2648), + [anon_sym_BANG_EQ2] = ACTIONS(2648), + [anon_sym_LT2] = ACTIONS(2650), + [anon_sym_LT_EQ2] = ACTIONS(2648), + [anon_sym_GT_EQ2] = ACTIONS(2648), + [anon_sym_EQ_TILDE2] = ACTIONS(2648), + [anon_sym_BANG_TILDE2] = ACTIONS(2648), + [anon_sym_like2] = ACTIONS(2648), + [anon_sym_not_DASHlike2] = ACTIONS(2648), + [anon_sym_STAR_STAR2] = ACTIONS(2648), + [anon_sym_PLUS_PLUS2] = ACTIONS(2648), + [anon_sym_SLASH2] = ACTIONS(2650), + [anon_sym_mod2] = ACTIONS(2648), + [anon_sym_SLASH_SLASH2] = ACTIONS(2648), + [anon_sym_PLUS2] = ACTIONS(2650), + [anon_sym_bit_DASHshl2] = ACTIONS(2648), + [anon_sym_bit_DASHshr2] = ACTIONS(2648), + [anon_sym_bit_DASHand2] = ACTIONS(2648), + [anon_sym_bit_DASHxor2] = ACTIONS(2648), + [anon_sym_bit_DASHor2] = ACTIONS(2648), + [anon_sym_err_GT] = ACTIONS(2650), + [anon_sym_out_GT] = ACTIONS(2650), + [anon_sym_e_GT] = ACTIONS(2650), + [anon_sym_o_GT] = ACTIONS(2650), + [anon_sym_err_PLUSout_GT] = ACTIONS(2650), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2650), + [anon_sym_o_PLUSe_GT] = ACTIONS(2650), + [anon_sym_e_PLUSo_GT] = ACTIONS(2650), + [anon_sym_err_GT_GT] = ACTIONS(2648), + [anon_sym_out_GT_GT] = ACTIONS(2648), + [anon_sym_e_GT_GT] = ACTIONS(2648), + [anon_sym_o_GT_GT] = ACTIONS(2648), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2648), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2648), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2648), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2648), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(984)] = { + [aux_sym__repeat_newline] = STATE(1050), + [sym_comment] = STATE(984), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(985)] = { + [sym_comment] = STATE(985), + [ts_builtin_sym_end] = ACTIONS(2385), + [anon_sym_in] = ACTIONS(2385), + [sym__newline] = ACTIONS(2385), + [anon_sym_SEMI] = ACTIONS(2385), + [anon_sym_PIPE] = ACTIONS(2385), + [anon_sym_err_GT_PIPE] = ACTIONS(2385), + [anon_sym_out_GT_PIPE] = ACTIONS(2385), + [anon_sym_e_GT_PIPE] = ACTIONS(2385), + [anon_sym_o_GT_PIPE] = ACTIONS(2385), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2385), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2385), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2385), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2385), + [anon_sym_GT2] = ACTIONS(2387), + [anon_sym_DASH2] = ACTIONS(2385), + [anon_sym_STAR2] = ACTIONS(2387), + [anon_sym_and2] = ACTIONS(2385), + [anon_sym_xor2] = ACTIONS(2385), + [anon_sym_or2] = ACTIONS(2385), + [anon_sym_not_DASHin2] = ACTIONS(2385), + [anon_sym_has2] = ACTIONS(2385), + [anon_sym_not_DASHhas2] = ACTIONS(2385), + [anon_sym_starts_DASHwith2] = ACTIONS(2385), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2385), + [anon_sym_ends_DASHwith2] = ACTIONS(2385), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2385), + [anon_sym_EQ_EQ2] = ACTIONS(2385), + [anon_sym_BANG_EQ2] = ACTIONS(2385), + [anon_sym_LT2] = ACTIONS(2387), + [anon_sym_LT_EQ2] = ACTIONS(2385), + [anon_sym_GT_EQ2] = ACTIONS(2385), + [anon_sym_EQ_TILDE2] = ACTIONS(2385), + [anon_sym_BANG_TILDE2] = ACTIONS(2385), + [anon_sym_like2] = ACTIONS(2385), + [anon_sym_not_DASHlike2] = ACTIONS(2385), + [anon_sym_LPAREN2] = ACTIONS(2385), + [anon_sym_STAR_STAR2] = ACTIONS(2385), + [anon_sym_PLUS_PLUS2] = ACTIONS(2385), + [anon_sym_SLASH2] = ACTIONS(2387), + [anon_sym_mod2] = ACTIONS(2385), + [anon_sym_SLASH_SLASH2] = ACTIONS(2385), + [anon_sym_PLUS2] = ACTIONS(2387), + [anon_sym_bit_DASHshl2] = ACTIONS(2385), + [anon_sym_bit_DASHshr2] = ACTIONS(2385), + [anon_sym_bit_DASHand2] = ACTIONS(2385), + [anon_sym_bit_DASHxor2] = ACTIONS(2385), + [anon_sym_bit_DASHor2] = ACTIONS(2385), + [anon_sym_err_GT] = ACTIONS(2387), + [anon_sym_out_GT] = ACTIONS(2387), + [anon_sym_e_GT] = ACTIONS(2387), + [anon_sym_o_GT] = ACTIONS(2387), + [anon_sym_err_PLUSout_GT] = ACTIONS(2387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2387), + [anon_sym_o_PLUSe_GT] = ACTIONS(2387), + [anon_sym_e_PLUSo_GT] = ACTIONS(2387), + [anon_sym_err_GT_GT] = ACTIONS(2385), + [anon_sym_out_GT_GT] = ACTIONS(2385), + [anon_sym_e_GT_GT] = ACTIONS(2385), + [anon_sym_o_GT_GT] = ACTIONS(2385), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2385), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2385), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2385), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2385), + [sym__unquoted_pattern] = ACTIONS(2387), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(986)] = { + [sym_comment] = STATE(986), + [ts_builtin_sym_end] = ACTIONS(2591), + [anon_sym_in] = ACTIONS(2591), + [sym__newline] = ACTIONS(2591), + [anon_sym_SEMI] = ACTIONS(2591), + [anon_sym_PIPE] = ACTIONS(2591), + [anon_sym_err_GT_PIPE] = ACTIONS(2591), + [anon_sym_out_GT_PIPE] = ACTIONS(2591), + [anon_sym_e_GT_PIPE] = ACTIONS(2591), + [anon_sym_o_GT_PIPE] = ACTIONS(2591), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2591), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2591), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2591), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2591), + [anon_sym_GT2] = ACTIONS(2593), + [anon_sym_DASH2] = ACTIONS(2591), + [anon_sym_STAR2] = ACTIONS(2593), + [anon_sym_and2] = ACTIONS(2591), + [anon_sym_xor2] = ACTIONS(2591), + [anon_sym_or2] = ACTIONS(2591), + [anon_sym_not_DASHin2] = ACTIONS(2591), + [anon_sym_has2] = ACTIONS(2591), + [anon_sym_not_DASHhas2] = ACTIONS(2591), + [anon_sym_starts_DASHwith2] = ACTIONS(2591), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2591), + [anon_sym_ends_DASHwith2] = ACTIONS(2591), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2591), + [anon_sym_EQ_EQ2] = ACTIONS(2591), + [anon_sym_BANG_EQ2] = ACTIONS(2591), + [anon_sym_LT2] = ACTIONS(2593), + [anon_sym_LT_EQ2] = ACTIONS(2591), + [anon_sym_GT_EQ2] = ACTIONS(2591), + [anon_sym_EQ_TILDE2] = ACTIONS(2591), + [anon_sym_BANG_TILDE2] = ACTIONS(2591), + [anon_sym_like2] = ACTIONS(2591), + [anon_sym_not_DASHlike2] = ACTIONS(2591), + [anon_sym_LPAREN2] = ACTIONS(2595), + [anon_sym_STAR_STAR2] = ACTIONS(2591), + [anon_sym_PLUS_PLUS2] = ACTIONS(2591), + [anon_sym_SLASH2] = ACTIONS(2593), + [anon_sym_mod2] = ACTIONS(2591), + [anon_sym_SLASH_SLASH2] = ACTIONS(2591), + [anon_sym_PLUS2] = ACTIONS(2593), + [anon_sym_bit_DASHshl2] = ACTIONS(2591), + [anon_sym_bit_DASHshr2] = ACTIONS(2591), + [anon_sym_bit_DASHand2] = ACTIONS(2591), + [anon_sym_bit_DASHxor2] = ACTIONS(2591), + [anon_sym_bit_DASHor2] = ACTIONS(2591), + [anon_sym_err_GT] = ACTIONS(2593), + [anon_sym_out_GT] = ACTIONS(2593), + [anon_sym_e_GT] = ACTIONS(2593), + [anon_sym_o_GT] = ACTIONS(2593), + [anon_sym_err_PLUSout_GT] = ACTIONS(2593), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2593), + [anon_sym_o_PLUSe_GT] = ACTIONS(2593), + [anon_sym_e_PLUSo_GT] = ACTIONS(2593), + [anon_sym_err_GT_GT] = ACTIONS(2591), + [anon_sym_out_GT_GT] = ACTIONS(2591), + [anon_sym_e_GT_GT] = ACTIONS(2591), + [anon_sym_o_GT_GT] = ACTIONS(2591), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2591), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2591), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2591), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2591), + [sym__unquoted_pattern] = ACTIONS(2597), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(987)] = { + [sym_comment] = STATE(987), + [ts_builtin_sym_end] = ACTIONS(1706), + [anon_sym_in] = ACTIONS(1706), + [sym__newline] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1706), + [anon_sym_err_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_GT_PIPE] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), + [anon_sym_GT2] = ACTIONS(1604), + [anon_sym_DASH2] = ACTIONS(1706), + [anon_sym_STAR2] = ACTIONS(1604), + [anon_sym_and2] = ACTIONS(1706), + [anon_sym_xor2] = ACTIONS(1706), + [anon_sym_or2] = ACTIONS(1706), + [anon_sym_not_DASHin2] = ACTIONS(1706), + [anon_sym_has2] = ACTIONS(1706), + [anon_sym_not_DASHhas2] = ACTIONS(1706), + [anon_sym_starts_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), + [anon_sym_ends_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), + [anon_sym_EQ_EQ2] = ACTIONS(1706), + [anon_sym_BANG_EQ2] = ACTIONS(1706), + [anon_sym_LT2] = ACTIONS(1604), + [anon_sym_LT_EQ2] = ACTIONS(1706), + [anon_sym_GT_EQ2] = ACTIONS(1706), + [anon_sym_EQ_TILDE2] = ACTIONS(1706), + [anon_sym_BANG_TILDE2] = ACTIONS(1706), + [anon_sym_like2] = ACTIONS(1706), + [anon_sym_not_DASHlike2] = ACTIONS(1706), + [anon_sym_LPAREN2] = ACTIONS(2620), + [anon_sym_STAR_STAR2] = ACTIONS(1706), + [anon_sym_PLUS_PLUS2] = ACTIONS(1706), + [anon_sym_SLASH2] = ACTIONS(1604), + [anon_sym_mod2] = ACTIONS(1706), + [anon_sym_SLASH_SLASH2] = ACTIONS(1706), + [anon_sym_PLUS2] = ACTIONS(1604), + [anon_sym_bit_DASHshl2] = ACTIONS(1706), + [anon_sym_bit_DASHshr2] = ACTIONS(1706), + [anon_sym_bit_DASHand2] = ACTIONS(1706), + [anon_sym_bit_DASHxor2] = ACTIONS(1706), + [anon_sym_bit_DASHor2] = ACTIONS(1706), + [anon_sym_err_GT] = ACTIONS(1604), + [anon_sym_out_GT] = ACTIONS(1604), + [anon_sym_e_GT] = ACTIONS(1604), + [anon_sym_o_GT] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT] = ACTIONS(1604), + [anon_sym_err_GT_GT] = ACTIONS(1706), + [anon_sym_out_GT_GT] = ACTIONS(1706), + [anon_sym_e_GT_GT] = ACTIONS(1706), + [anon_sym_o_GT_GT] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), + [sym__unquoted_pattern] = ACTIONS(2622), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(988)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(988), + [anon_sym_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(989)] = { + [sym_comment] = STATE(989), + [ts_builtin_sym_end] = ACTIONS(2001), + [anon_sym_in] = ACTIONS(2001), + [sym__newline] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_err_GT_PIPE] = ACTIONS(2001), + [anon_sym_out_GT_PIPE] = ACTIONS(2001), + [anon_sym_e_GT_PIPE] = ACTIONS(2001), + [anon_sym_o_GT_PIPE] = ACTIONS(2001), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2001), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2001), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2001), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2001), + [anon_sym_GT2] = ACTIONS(2003), + [anon_sym_DASH2] = ACTIONS(2001), + [anon_sym_STAR2] = ACTIONS(2003), + [anon_sym_and2] = ACTIONS(2001), + [anon_sym_xor2] = ACTIONS(2001), + [anon_sym_or2] = ACTIONS(2001), + [anon_sym_not_DASHin2] = ACTIONS(2001), + [anon_sym_has2] = ACTIONS(2001), + [anon_sym_not_DASHhas2] = ACTIONS(2001), + [anon_sym_starts_DASHwith2] = ACTIONS(2001), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2001), + [anon_sym_ends_DASHwith2] = ACTIONS(2001), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2001), + [anon_sym_EQ_EQ2] = ACTIONS(2001), + [anon_sym_BANG_EQ2] = ACTIONS(2001), + [anon_sym_LT2] = ACTIONS(2003), + [anon_sym_LT_EQ2] = ACTIONS(2001), + [anon_sym_GT_EQ2] = ACTIONS(2001), + [anon_sym_EQ_TILDE2] = ACTIONS(2001), + [anon_sym_BANG_TILDE2] = ACTIONS(2001), + [anon_sym_like2] = ACTIONS(2001), + [anon_sym_not_DASHlike2] = ACTIONS(2001), + [anon_sym_LPAREN2] = ACTIONS(2005), + [anon_sym_STAR_STAR2] = ACTIONS(2001), + [anon_sym_PLUS_PLUS2] = ACTIONS(2001), + [anon_sym_SLASH2] = ACTIONS(2003), + [anon_sym_mod2] = ACTIONS(2001), + [anon_sym_SLASH_SLASH2] = ACTIONS(2001), + [anon_sym_PLUS2] = ACTIONS(2003), + [anon_sym_bit_DASHshl2] = ACTIONS(2001), + [anon_sym_bit_DASHshr2] = ACTIONS(2001), + [anon_sym_bit_DASHand2] = ACTIONS(2001), + [anon_sym_bit_DASHxor2] = ACTIONS(2001), + [anon_sym_bit_DASHor2] = ACTIONS(2001), + [anon_sym_err_GT] = ACTIONS(2003), + [anon_sym_out_GT] = ACTIONS(2003), + [anon_sym_e_GT] = ACTIONS(2003), + [anon_sym_o_GT] = ACTIONS(2003), + [anon_sym_err_PLUSout_GT] = ACTIONS(2003), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2003), + [anon_sym_o_PLUSe_GT] = ACTIONS(2003), + [anon_sym_e_PLUSo_GT] = ACTIONS(2003), + [anon_sym_err_GT_GT] = ACTIONS(2001), + [anon_sym_out_GT_GT] = ACTIONS(2001), + [anon_sym_e_GT_GT] = ACTIONS(2001), + [anon_sym_o_GT_GT] = ACTIONS(2001), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2001), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2001), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2001), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2001), + [sym__unquoted_pattern] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(990)] = { + [sym_comment] = STATE(990), + [ts_builtin_sym_end] = ACTIONS(1018), + [anon_sym_in] = ACTIONS(1018), + [sym__newline] = ACTIONS(1018), + [anon_sym_SEMI] = ACTIONS(1018), + [anon_sym_PIPE] = ACTIONS(1018), + [anon_sym_err_GT_PIPE] = ACTIONS(1018), + [anon_sym_out_GT_PIPE] = ACTIONS(1018), + [anon_sym_e_GT_PIPE] = ACTIONS(1018), + [anon_sym_o_GT_PIPE] = ACTIONS(1018), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1018), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1018), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1018), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1018), + [anon_sym_GT2] = ACTIONS(1002), + [anon_sym_DASH2] = ACTIONS(1018), + [anon_sym_STAR2] = ACTIONS(1002), + [anon_sym_and2] = ACTIONS(1018), + [anon_sym_xor2] = ACTIONS(1018), + [anon_sym_or2] = ACTIONS(1018), + [anon_sym_not_DASHin2] = ACTIONS(1018), + [anon_sym_has2] = ACTIONS(1018), + [anon_sym_not_DASHhas2] = ACTIONS(1018), + [anon_sym_starts_DASHwith2] = ACTIONS(1018), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1018), + [anon_sym_ends_DASHwith2] = ACTIONS(1018), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1018), + [anon_sym_EQ_EQ2] = ACTIONS(1018), + [anon_sym_BANG_EQ2] = ACTIONS(1018), + [anon_sym_LT2] = ACTIONS(1002), + [anon_sym_LT_EQ2] = ACTIONS(1018), + [anon_sym_GT_EQ2] = ACTIONS(1018), + [anon_sym_EQ_TILDE2] = ACTIONS(1018), + [anon_sym_BANG_TILDE2] = ACTIONS(1018), + [anon_sym_like2] = ACTIONS(1018), + [anon_sym_not_DASHlike2] = ACTIONS(1018), + [anon_sym_LPAREN2] = ACTIONS(2602), + [anon_sym_STAR_STAR2] = ACTIONS(1018), + [anon_sym_PLUS_PLUS2] = ACTIONS(1018), + [anon_sym_SLASH2] = ACTIONS(1002), + [anon_sym_mod2] = ACTIONS(1018), + [anon_sym_SLASH_SLASH2] = ACTIONS(1018), + [anon_sym_PLUS2] = ACTIONS(1002), + [anon_sym_bit_DASHshl2] = ACTIONS(1018), + [anon_sym_bit_DASHshr2] = ACTIONS(1018), + [anon_sym_bit_DASHand2] = ACTIONS(1018), + [anon_sym_bit_DASHxor2] = ACTIONS(1018), + [anon_sym_bit_DASHor2] = ACTIONS(1018), + [anon_sym_err_GT] = ACTIONS(1002), + [anon_sym_out_GT] = ACTIONS(1002), + [anon_sym_e_GT] = ACTIONS(1002), + [anon_sym_o_GT] = ACTIONS(1002), + [anon_sym_err_PLUSout_GT] = ACTIONS(1002), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1002), + [anon_sym_o_PLUSe_GT] = ACTIONS(1002), + [anon_sym_e_PLUSo_GT] = ACTIONS(1002), + [anon_sym_err_GT_GT] = ACTIONS(1018), + [anon_sym_out_GT_GT] = ACTIONS(1018), + [anon_sym_e_GT_GT] = ACTIONS(1018), + [anon_sym_o_GT_GT] = ACTIONS(1018), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1018), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1018), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1018), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1018), + [sym__unquoted_pattern] = ACTIONS(2604), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(991)] = { + [sym_comment] = STATE(991), + [ts_builtin_sym_end] = ACTIONS(1004), + [anon_sym_in] = ACTIONS(1004), + [sym__newline] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1004), + [anon_sym_err_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_GT_PIPE] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1004), + [anon_sym_GT2] = ACTIONS(994), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_STAR2] = ACTIONS(994), + [anon_sym_and2] = ACTIONS(1004), + [anon_sym_xor2] = ACTIONS(1004), + [anon_sym_or2] = ACTIONS(1004), + [anon_sym_not_DASHin2] = ACTIONS(1004), + [anon_sym_has2] = ACTIONS(1004), + [anon_sym_not_DASHhas2] = ACTIONS(1004), + [anon_sym_starts_DASHwith2] = ACTIONS(1004), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1004), + [anon_sym_ends_DASHwith2] = ACTIONS(1004), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1004), + [anon_sym_EQ_EQ2] = ACTIONS(1004), + [anon_sym_BANG_EQ2] = ACTIONS(1004), + [anon_sym_LT2] = ACTIONS(994), + [anon_sym_LT_EQ2] = ACTIONS(1004), + [anon_sym_GT_EQ2] = ACTIONS(1004), + [anon_sym_EQ_TILDE2] = ACTIONS(1004), + [anon_sym_BANG_TILDE2] = ACTIONS(1004), + [anon_sym_like2] = ACTIONS(1004), + [anon_sym_not_DASHlike2] = ACTIONS(1004), + [anon_sym_LPAREN2] = ACTIONS(2602), + [anon_sym_STAR_STAR2] = ACTIONS(1004), + [anon_sym_PLUS_PLUS2] = ACTIONS(1004), + [anon_sym_SLASH2] = ACTIONS(994), + [anon_sym_mod2] = ACTIONS(1004), + [anon_sym_SLASH_SLASH2] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(994), + [anon_sym_bit_DASHshl2] = ACTIONS(1004), + [anon_sym_bit_DASHshr2] = ACTIONS(1004), + [anon_sym_bit_DASHand2] = ACTIONS(1004), + [anon_sym_bit_DASHxor2] = ACTIONS(1004), + [anon_sym_bit_DASHor2] = ACTIONS(1004), + [anon_sym_err_GT] = ACTIONS(994), + [anon_sym_out_GT] = ACTIONS(994), + [anon_sym_e_GT] = ACTIONS(994), + [anon_sym_o_GT] = ACTIONS(994), + [anon_sym_err_PLUSout_GT] = ACTIONS(994), + [anon_sym_out_PLUSerr_GT] = ACTIONS(994), + [anon_sym_o_PLUSe_GT] = ACTIONS(994), + [anon_sym_e_PLUSo_GT] = ACTIONS(994), + [anon_sym_err_GT_GT] = ACTIONS(1004), + [anon_sym_out_GT_GT] = ACTIONS(1004), + [anon_sym_e_GT_GT] = ACTIONS(1004), + [anon_sym_o_GT_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), + [sym__unquoted_pattern] = ACTIONS(2604), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(992)] = { + [sym_comment] = STATE(992), + [ts_builtin_sym_end] = ACTIONS(2533), + [anon_sym_in] = ACTIONS(2533), + [sym__newline] = ACTIONS(2533), + [anon_sym_SEMI] = ACTIONS(2533), + [anon_sym_PIPE] = ACTIONS(2533), + [anon_sym_err_GT_PIPE] = ACTIONS(2533), + [anon_sym_out_GT_PIPE] = ACTIONS(2533), + [anon_sym_e_GT_PIPE] = ACTIONS(2533), + [anon_sym_o_GT_PIPE] = ACTIONS(2533), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2533), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2533), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2533), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2533), + [anon_sym_GT2] = ACTIONS(2535), + [anon_sym_DASH2] = ACTIONS(2533), + [anon_sym_STAR2] = ACTIONS(2535), + [anon_sym_and2] = ACTIONS(2533), + [anon_sym_xor2] = ACTIONS(2533), + [anon_sym_or2] = ACTIONS(2533), + [anon_sym_not_DASHin2] = ACTIONS(2533), + [anon_sym_has2] = ACTIONS(2533), + [anon_sym_not_DASHhas2] = ACTIONS(2533), + [anon_sym_starts_DASHwith2] = ACTIONS(2533), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2533), + [anon_sym_ends_DASHwith2] = ACTIONS(2533), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2533), + [anon_sym_EQ_EQ2] = ACTIONS(2533), + [anon_sym_BANG_EQ2] = ACTIONS(2533), + [anon_sym_LT2] = ACTIONS(2535), + [anon_sym_LT_EQ2] = ACTIONS(2533), + [anon_sym_GT_EQ2] = ACTIONS(2533), + [anon_sym_EQ_TILDE2] = ACTIONS(2533), + [anon_sym_BANG_TILDE2] = ACTIONS(2533), + [anon_sym_like2] = ACTIONS(2533), + [anon_sym_not_DASHlike2] = ACTIONS(2533), + [anon_sym_LPAREN2] = ACTIONS(2015), + [anon_sym_STAR_STAR2] = ACTIONS(2533), + [anon_sym_PLUS_PLUS2] = ACTIONS(2533), + [anon_sym_SLASH2] = ACTIONS(2535), + [anon_sym_mod2] = ACTIONS(2533), + [anon_sym_SLASH_SLASH2] = ACTIONS(2533), + [anon_sym_PLUS2] = ACTIONS(2535), + [anon_sym_bit_DASHshl2] = ACTIONS(2533), + [anon_sym_bit_DASHshr2] = ACTIONS(2533), + [anon_sym_bit_DASHand2] = ACTIONS(2533), + [anon_sym_bit_DASHxor2] = ACTIONS(2533), + [anon_sym_bit_DASHor2] = ACTIONS(2533), + [anon_sym_err_GT] = ACTIONS(2535), + [anon_sym_out_GT] = ACTIONS(2535), + [anon_sym_e_GT] = ACTIONS(2535), + [anon_sym_o_GT] = ACTIONS(2535), + [anon_sym_err_PLUSout_GT] = ACTIONS(2535), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2535), + [anon_sym_o_PLUSe_GT] = ACTIONS(2535), + [anon_sym_e_PLUSo_GT] = ACTIONS(2535), + [anon_sym_err_GT_GT] = ACTIONS(2533), + [anon_sym_out_GT_GT] = ACTIONS(2533), + [anon_sym_e_GT_GT] = ACTIONS(2533), + [anon_sym_o_GT_GT] = ACTIONS(2533), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2533), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2533), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2533), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2533), + [sym__unquoted_pattern] = ACTIONS(2021), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(993)] = { + [sym_comment] = STATE(993), + [ts_builtin_sym_end] = ACTIONS(2011), + [anon_sym_in] = ACTIONS(2011), + [sym__newline] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_err_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_GT_PIPE] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), + [anon_sym_GT2] = ACTIONS(2013), + [anon_sym_DASH2] = ACTIONS(2011), + [anon_sym_STAR2] = ACTIONS(2013), + [anon_sym_and2] = ACTIONS(2011), + [anon_sym_xor2] = ACTIONS(2011), + [anon_sym_or2] = ACTIONS(2011), + [anon_sym_not_DASHin2] = ACTIONS(2011), + [anon_sym_has2] = ACTIONS(2011), + [anon_sym_not_DASHhas2] = ACTIONS(2011), + [anon_sym_starts_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2011), + [anon_sym_ends_DASHwith2] = ACTIONS(2011), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2011), + [anon_sym_EQ_EQ2] = ACTIONS(2011), + [anon_sym_BANG_EQ2] = ACTIONS(2011), + [anon_sym_LT2] = ACTIONS(2013), + [anon_sym_LT_EQ2] = ACTIONS(2011), + [anon_sym_GT_EQ2] = ACTIONS(2011), + [anon_sym_EQ_TILDE2] = ACTIONS(2011), + [anon_sym_BANG_TILDE2] = ACTIONS(2011), + [anon_sym_like2] = ACTIONS(2011), + [anon_sym_not_DASHlike2] = ACTIONS(2011), + [anon_sym_LPAREN2] = ACTIONS(2015), + [anon_sym_STAR_STAR2] = ACTIONS(2011), + [anon_sym_PLUS_PLUS2] = ACTIONS(2011), + [anon_sym_SLASH2] = ACTIONS(2013), + [anon_sym_mod2] = ACTIONS(2011), + [anon_sym_SLASH_SLASH2] = ACTIONS(2011), + [anon_sym_PLUS2] = ACTIONS(2013), + [anon_sym_bit_DASHshl2] = ACTIONS(2011), + [anon_sym_bit_DASHshr2] = ACTIONS(2011), + [anon_sym_bit_DASHand2] = ACTIONS(2011), + [anon_sym_bit_DASHxor2] = ACTIONS(2011), + [anon_sym_bit_DASHor2] = ACTIONS(2011), + [anon_sym_err_GT] = ACTIONS(2013), + [anon_sym_out_GT] = ACTIONS(2013), + [anon_sym_e_GT] = ACTIONS(2013), + [anon_sym_o_GT] = ACTIONS(2013), + [anon_sym_err_PLUSout_GT] = ACTIONS(2013), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2013), + [anon_sym_o_PLUSe_GT] = ACTIONS(2013), + [anon_sym_e_PLUSo_GT] = ACTIONS(2013), + [anon_sym_err_GT_GT] = ACTIONS(2011), + [anon_sym_out_GT_GT] = ACTIONS(2011), + [anon_sym_e_GT_GT] = ACTIONS(2011), + [anon_sym_o_GT_GT] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), + [sym__unquoted_pattern] = ACTIONS(2021), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(994)] = { + [sym_comment] = STATE(994), + [ts_builtin_sym_end] = ACTIONS(2525), + [anon_sym_in] = ACTIONS(2525), + [sym__newline] = ACTIONS(2525), + [anon_sym_SEMI] = ACTIONS(2525), + [anon_sym_PIPE] = ACTIONS(2525), + [anon_sym_err_GT_PIPE] = ACTIONS(2525), + [anon_sym_out_GT_PIPE] = ACTIONS(2525), + [anon_sym_e_GT_PIPE] = ACTIONS(2525), + [anon_sym_o_GT_PIPE] = ACTIONS(2525), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2525), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2525), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2525), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2525), + [anon_sym_GT2] = ACTIONS(2527), + [anon_sym_DASH2] = ACTIONS(2525), + [anon_sym_STAR2] = ACTIONS(2527), + [anon_sym_and2] = ACTIONS(2525), + [anon_sym_xor2] = ACTIONS(2525), + [anon_sym_or2] = ACTIONS(2525), + [anon_sym_not_DASHin2] = ACTIONS(2525), + [anon_sym_has2] = ACTIONS(2525), + [anon_sym_not_DASHhas2] = ACTIONS(2525), + [anon_sym_starts_DASHwith2] = ACTIONS(2525), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2525), + [anon_sym_ends_DASHwith2] = ACTIONS(2525), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2525), + [anon_sym_EQ_EQ2] = ACTIONS(2525), + [anon_sym_BANG_EQ2] = ACTIONS(2525), + [anon_sym_LT2] = ACTIONS(2527), + [anon_sym_LT_EQ2] = ACTIONS(2525), + [anon_sym_GT_EQ2] = ACTIONS(2525), + [anon_sym_EQ_TILDE2] = ACTIONS(2525), + [anon_sym_BANG_TILDE2] = ACTIONS(2525), + [anon_sym_like2] = ACTIONS(2525), + [anon_sym_not_DASHlike2] = ACTIONS(2525), + [anon_sym_LPAREN2] = ACTIONS(2581), + [anon_sym_STAR_STAR2] = ACTIONS(2525), + [anon_sym_PLUS_PLUS2] = ACTIONS(2525), + [anon_sym_SLASH2] = ACTIONS(2527), + [anon_sym_mod2] = ACTIONS(2525), + [anon_sym_SLASH_SLASH2] = ACTIONS(2525), + [anon_sym_PLUS2] = ACTIONS(2527), + [anon_sym_bit_DASHshl2] = ACTIONS(2525), + [anon_sym_bit_DASHshr2] = ACTIONS(2525), + [anon_sym_bit_DASHand2] = ACTIONS(2525), + [anon_sym_bit_DASHxor2] = ACTIONS(2525), + [anon_sym_bit_DASHor2] = ACTIONS(2525), + [anon_sym_err_GT] = ACTIONS(2527), + [anon_sym_out_GT] = ACTIONS(2527), + [anon_sym_e_GT] = ACTIONS(2527), + [anon_sym_o_GT] = ACTIONS(2527), + [anon_sym_err_PLUSout_GT] = ACTIONS(2527), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2527), + [anon_sym_o_PLUSe_GT] = ACTIONS(2527), + [anon_sym_e_PLUSo_GT] = ACTIONS(2527), + [anon_sym_err_GT_GT] = ACTIONS(2525), + [anon_sym_out_GT_GT] = ACTIONS(2525), + [anon_sym_e_GT_GT] = ACTIONS(2525), + [anon_sym_o_GT_GT] = ACTIONS(2525), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2525), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2525), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2525), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2525), + [sym__unquoted_pattern] = ACTIONS(1641), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(995)] = { + [sym_comment] = STATE(995), + [ts_builtin_sym_end] = ACTIONS(2583), + [anon_sym_in] = ACTIONS(2583), + [sym__newline] = ACTIONS(2583), + [anon_sym_SEMI] = ACTIONS(2583), + [anon_sym_PIPE] = ACTIONS(2583), + [anon_sym_err_GT_PIPE] = ACTIONS(2583), + [anon_sym_out_GT_PIPE] = ACTIONS(2583), + [anon_sym_e_GT_PIPE] = ACTIONS(2583), + [anon_sym_o_GT_PIPE] = ACTIONS(2583), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2583), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2583), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2583), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2583), + [anon_sym_GT2] = ACTIONS(2585), + [anon_sym_DASH2] = ACTIONS(2583), + [anon_sym_STAR2] = ACTIONS(2585), + [anon_sym_and2] = ACTIONS(2583), + [anon_sym_xor2] = ACTIONS(2583), + [anon_sym_or2] = ACTIONS(2583), + [anon_sym_not_DASHin2] = ACTIONS(2583), + [anon_sym_has2] = ACTIONS(2583), + [anon_sym_not_DASHhas2] = ACTIONS(2583), + [anon_sym_starts_DASHwith2] = ACTIONS(2583), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2583), + [anon_sym_ends_DASHwith2] = ACTIONS(2583), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2583), + [anon_sym_EQ_EQ2] = ACTIONS(2583), + [anon_sym_BANG_EQ2] = ACTIONS(2583), + [anon_sym_LT2] = ACTIONS(2585), + [anon_sym_LT_EQ2] = ACTIONS(2583), + [anon_sym_GT_EQ2] = ACTIONS(2583), + [anon_sym_EQ_TILDE2] = ACTIONS(2583), + [anon_sym_BANG_TILDE2] = ACTIONS(2583), + [anon_sym_like2] = ACTIONS(2583), + [anon_sym_not_DASHlike2] = ACTIONS(2583), + [anon_sym_LPAREN2] = ACTIONS(2587), + [anon_sym_STAR_STAR2] = ACTIONS(2583), + [anon_sym_PLUS_PLUS2] = ACTIONS(2583), + [anon_sym_SLASH2] = ACTIONS(2585), + [anon_sym_mod2] = ACTIONS(2583), + [anon_sym_SLASH_SLASH2] = ACTIONS(2583), + [anon_sym_PLUS2] = ACTIONS(2585), + [anon_sym_bit_DASHshl2] = ACTIONS(2583), + [anon_sym_bit_DASHshr2] = ACTIONS(2583), + [anon_sym_bit_DASHand2] = ACTIONS(2583), + [anon_sym_bit_DASHxor2] = ACTIONS(2583), + [anon_sym_bit_DASHor2] = ACTIONS(2583), + [anon_sym_err_GT] = ACTIONS(2585), + [anon_sym_out_GT] = ACTIONS(2585), + [anon_sym_e_GT] = ACTIONS(2585), + [anon_sym_o_GT] = ACTIONS(2585), + [anon_sym_err_PLUSout_GT] = ACTIONS(2585), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2585), + [anon_sym_o_PLUSe_GT] = ACTIONS(2585), + [anon_sym_e_PLUSo_GT] = ACTIONS(2585), + [anon_sym_err_GT_GT] = ACTIONS(2583), + [anon_sym_out_GT_GT] = ACTIONS(2583), + [anon_sym_e_GT_GT] = ACTIONS(2583), + [anon_sym_o_GT_GT] = ACTIONS(2583), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2583), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2583), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2583), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2583), + [sym__unquoted_pattern] = ACTIONS(2589), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(996)] = { + [aux_sym__repeat_newline] = STATE(972), + [sym_comment] = STATE(996), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(997)] = { + [aux_sym__repeat_newline] = STATE(1051), + [sym_comment] = STATE(997), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(998)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(998), + [anon_sym_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(999)] = { + [aux_sym__repeat_newline] = STATE(1356), + [sym__expression_parenthesized] = STATE(4230), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2126), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1831), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_comment] = STATE(999), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(2660), [aux_sym_cmd_identifier_token3] = ACTIONS(189), [aux_sym_cmd_identifier_token4] = ACTIONS(189), [aux_sym_cmd_identifier_token5] = ACTIONS(189), - [sym__newline] = ACTIONS(2541), + [sym__newline] = ACTIONS(2569), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), [aux_sym__val_number_token1] = ACTIONS(189), [aux_sym__val_number_token2] = ACTIONS(189), [aux_sym__val_number_token3] = ACTIONS(189), @@ -119316,893 +121663,1505 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(966)] = { - [sym_comment] = STATE(966), - [ts_builtin_sym_end] = ACTIONS(1806), - [anon_sym_in] = ACTIONS(1806), - [sym__newline] = ACTIONS(1806), - [anon_sym_SEMI] = ACTIONS(1806), - [anon_sym_PIPE] = ACTIONS(1806), - [anon_sym_err_GT_PIPE] = ACTIONS(1806), - [anon_sym_out_GT_PIPE] = ACTIONS(1806), - [anon_sym_e_GT_PIPE] = ACTIONS(1806), - [anon_sym_o_GT_PIPE] = ACTIONS(1806), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1806), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1806), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1806), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1806), - [anon_sym_GT2] = ACTIONS(1808), - [anon_sym_DASH2] = ACTIONS(1806), - [anon_sym_STAR2] = ACTIONS(1808), - [anon_sym_and2] = ACTIONS(1806), - [anon_sym_xor2] = ACTIONS(1806), - [anon_sym_or2] = ACTIONS(1806), - [anon_sym_not_DASHin2] = ACTIONS(1806), - [anon_sym_has2] = ACTIONS(1806), - [anon_sym_not_DASHhas2] = ACTIONS(1806), - [anon_sym_starts_DASHwith2] = ACTIONS(1806), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1806), - [anon_sym_ends_DASHwith2] = ACTIONS(1806), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1806), - [anon_sym_EQ_EQ2] = ACTIONS(1806), - [anon_sym_BANG_EQ2] = ACTIONS(1806), - [anon_sym_LT2] = ACTIONS(1808), - [anon_sym_LT_EQ2] = ACTIONS(1806), - [anon_sym_GT_EQ2] = ACTIONS(1806), - [anon_sym_EQ_TILDE2] = ACTIONS(1806), - [anon_sym_BANG_TILDE2] = ACTIONS(1806), - [anon_sym_like2] = ACTIONS(1806), - [anon_sym_not_DASHlike2] = ACTIONS(1806), - [anon_sym_LPAREN2] = ACTIONS(1806), - [anon_sym_STAR_STAR2] = ACTIONS(1806), - [anon_sym_PLUS_PLUS2] = ACTIONS(1806), - [anon_sym_SLASH2] = ACTIONS(1808), - [anon_sym_mod2] = ACTIONS(1806), - [anon_sym_SLASH_SLASH2] = ACTIONS(1806), - [anon_sym_PLUS2] = ACTIONS(1808), - [anon_sym_bit_DASHshl2] = ACTIONS(1806), - [anon_sym_bit_DASHshr2] = ACTIONS(1806), - [anon_sym_bit_DASHand2] = ACTIONS(1806), - [anon_sym_bit_DASHxor2] = ACTIONS(1806), - [anon_sym_bit_DASHor2] = ACTIONS(1806), - [anon_sym_err_GT] = ACTIONS(1808), - [anon_sym_out_GT] = ACTIONS(1808), - [anon_sym_e_GT] = ACTIONS(1808), - [anon_sym_o_GT] = ACTIONS(1808), - [anon_sym_err_PLUSout_GT] = ACTIONS(1808), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1808), - [anon_sym_o_PLUSe_GT] = ACTIONS(1808), - [anon_sym_e_PLUSo_GT] = ACTIONS(1808), - [anon_sym_err_GT_GT] = ACTIONS(1806), - [anon_sym_out_GT_GT] = ACTIONS(1806), - [anon_sym_e_GT_GT] = ACTIONS(1806), - [anon_sym_o_GT_GT] = ACTIONS(1806), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1806), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1806), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1806), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1806), - [sym__unquoted_pattern] = ACTIONS(1808), + [STATE(1000)] = { + [aux_sym__repeat_newline] = STATE(1129), + [sym_comment] = STATE(1000), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [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), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(967)] = { - [aux_sym__repeat_newline] = STATE(1023), - [sym_comment] = STATE(967), - [anon_sym_in] = ACTIONS(2198), - [sym__newline] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_err_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_GT_PIPE] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_GT2] = ACTIONS(2200), - [anon_sym_DASH2] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_STAR2] = ACTIONS(2200), - [anon_sym_and2] = ACTIONS(2198), - [anon_sym_xor2] = ACTIONS(2198), - [anon_sym_or2] = ACTIONS(2198), - [anon_sym_not_DASHin2] = ACTIONS(2198), - [anon_sym_has2] = ACTIONS(2198), - [anon_sym_not_DASHhas2] = ACTIONS(2198), - [anon_sym_starts_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), - [anon_sym_ends_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), - [anon_sym_EQ_EQ2] = ACTIONS(2198), - [anon_sym_BANG_EQ2] = ACTIONS(2198), - [anon_sym_LT2] = ACTIONS(2200), - [anon_sym_LT_EQ2] = ACTIONS(2198), - [anon_sym_GT_EQ2] = ACTIONS(2198), - [anon_sym_EQ_TILDE2] = ACTIONS(2198), - [anon_sym_BANG_TILDE2] = ACTIONS(2198), - [anon_sym_like2] = ACTIONS(2198), - [anon_sym_not_DASHlike2] = ACTIONS(2198), - [anon_sym_STAR_STAR2] = ACTIONS(2198), - [anon_sym_PLUS_PLUS2] = ACTIONS(2198), - [anon_sym_SLASH2] = ACTIONS(2200), - [anon_sym_mod2] = ACTIONS(2198), - [anon_sym_SLASH_SLASH2] = ACTIONS(2198), - [anon_sym_PLUS2] = ACTIONS(2200), - [anon_sym_bit_DASHshl2] = ACTIONS(2198), - [anon_sym_bit_DASHshr2] = ACTIONS(2198), - [anon_sym_bit_DASHand2] = ACTIONS(2198), - [anon_sym_bit_DASHxor2] = ACTIONS(2198), - [anon_sym_bit_DASHor2] = ACTIONS(2198), - [anon_sym_err_GT] = ACTIONS(2200), - [anon_sym_out_GT] = ACTIONS(2200), - [anon_sym_e_GT] = ACTIONS(2200), - [anon_sym_o_GT] = ACTIONS(2200), - [anon_sym_err_PLUSout_GT] = ACTIONS(2200), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), - [anon_sym_o_PLUSe_GT] = ACTIONS(2200), - [anon_sym_e_PLUSo_GT] = ACTIONS(2200), - [anon_sym_err_GT_GT] = ACTIONS(2198), - [anon_sym_out_GT_GT] = ACTIONS(2198), - [anon_sym_e_GT_GT] = ACTIONS(2198), - [anon_sym_o_GT_GT] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), + [STATE(1001)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1001), + [anon_sym_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(968)] = { - [sym_comment] = STATE(968), - [ts_builtin_sym_end] = ACTIONS(1689), - [anon_sym_in] = ACTIONS(1689), - [sym__newline] = ACTIONS(1689), - [anon_sym_SEMI] = ACTIONS(1689), - [anon_sym_PIPE] = ACTIONS(1689), - [anon_sym_err_GT_PIPE] = ACTIONS(1689), - [anon_sym_out_GT_PIPE] = ACTIONS(1689), - [anon_sym_e_GT_PIPE] = ACTIONS(1689), - [anon_sym_o_GT_PIPE] = ACTIONS(1689), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), - [anon_sym_GT2] = ACTIONS(1615), - [anon_sym_DASH2] = ACTIONS(1689), - [anon_sym_STAR2] = ACTIONS(1615), - [anon_sym_and2] = ACTIONS(1689), - [anon_sym_xor2] = ACTIONS(1689), - [anon_sym_or2] = ACTIONS(1689), - [anon_sym_not_DASHin2] = ACTIONS(1689), - [anon_sym_has2] = ACTIONS(1689), - [anon_sym_not_DASHhas2] = ACTIONS(1689), - [anon_sym_starts_DASHwith2] = ACTIONS(1689), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1689), - [anon_sym_ends_DASHwith2] = ACTIONS(1689), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1689), - [anon_sym_EQ_EQ2] = ACTIONS(1689), - [anon_sym_BANG_EQ2] = ACTIONS(1689), - [anon_sym_LT2] = ACTIONS(1615), - [anon_sym_LT_EQ2] = ACTIONS(1689), - [anon_sym_GT_EQ2] = ACTIONS(1689), - [anon_sym_EQ_TILDE2] = ACTIONS(1689), - [anon_sym_BANG_TILDE2] = ACTIONS(1689), - [anon_sym_like2] = ACTIONS(1689), - [anon_sym_not_DASHlike2] = ACTIONS(1689), - [anon_sym_LPAREN2] = ACTIONS(2554), - [anon_sym_STAR_STAR2] = ACTIONS(1689), - [anon_sym_PLUS_PLUS2] = ACTIONS(1689), - [anon_sym_SLASH2] = ACTIONS(1615), - [anon_sym_mod2] = ACTIONS(1689), - [anon_sym_SLASH_SLASH2] = ACTIONS(1689), - [anon_sym_PLUS2] = ACTIONS(1615), - [anon_sym_bit_DASHshl2] = ACTIONS(1689), - [anon_sym_bit_DASHshr2] = ACTIONS(1689), - [anon_sym_bit_DASHand2] = ACTIONS(1689), - [anon_sym_bit_DASHxor2] = ACTIONS(1689), - [anon_sym_bit_DASHor2] = ACTIONS(1689), - [anon_sym_err_GT] = ACTIONS(1615), - [anon_sym_out_GT] = ACTIONS(1615), - [anon_sym_e_GT] = ACTIONS(1615), - [anon_sym_o_GT] = ACTIONS(1615), - [anon_sym_err_PLUSout_GT] = ACTIONS(1615), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), - [anon_sym_o_PLUSe_GT] = ACTIONS(1615), - [anon_sym_e_PLUSo_GT] = ACTIONS(1615), - [anon_sym_err_GT_GT] = ACTIONS(1689), - [anon_sym_out_GT_GT] = ACTIONS(1689), - [anon_sym_e_GT_GT] = ACTIONS(1689), - [anon_sym_o_GT_GT] = ACTIONS(1689), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), - [sym__unquoted_pattern] = ACTIONS(2556), + [STATE(1002)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1002), + [anon_sym_in] = ACTIONS(2644), + [sym__newline] = ACTIONS(2644), + [anon_sym_SEMI] = ACTIONS(2644), + [anon_sym_PIPE] = ACTIONS(2644), + [anon_sym_err_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_GT_PIPE] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2644), + [anon_sym_RPAREN] = ACTIONS(2644), + [anon_sym_GT2] = ACTIONS(2646), + [anon_sym_DASH2] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_STAR2] = ACTIONS(2646), + [anon_sym_and2] = ACTIONS(2644), + [anon_sym_xor2] = ACTIONS(2644), + [anon_sym_or2] = ACTIONS(2644), + [anon_sym_not_DASHin2] = ACTIONS(2644), + [anon_sym_has2] = ACTIONS(2644), + [anon_sym_not_DASHhas2] = ACTIONS(2644), + [anon_sym_starts_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2644), + [anon_sym_ends_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2644), + [anon_sym_EQ_EQ2] = ACTIONS(2644), + [anon_sym_BANG_EQ2] = ACTIONS(2644), + [anon_sym_LT2] = ACTIONS(2646), + [anon_sym_LT_EQ2] = ACTIONS(2644), + [anon_sym_GT_EQ2] = ACTIONS(2644), + [anon_sym_EQ_TILDE2] = ACTIONS(2644), + [anon_sym_BANG_TILDE2] = ACTIONS(2644), + [anon_sym_like2] = ACTIONS(2644), + [anon_sym_not_DASHlike2] = ACTIONS(2644), + [anon_sym_STAR_STAR2] = ACTIONS(2644), + [anon_sym_PLUS_PLUS2] = ACTIONS(2644), + [anon_sym_SLASH2] = ACTIONS(2646), + [anon_sym_mod2] = ACTIONS(2644), + [anon_sym_SLASH_SLASH2] = ACTIONS(2644), + [anon_sym_PLUS2] = ACTIONS(2646), + [anon_sym_bit_DASHshl2] = ACTIONS(2644), + [anon_sym_bit_DASHshr2] = ACTIONS(2644), + [anon_sym_bit_DASHand2] = ACTIONS(2644), + [anon_sym_bit_DASHxor2] = ACTIONS(2644), + [anon_sym_bit_DASHor2] = ACTIONS(2644), + [anon_sym_err_GT] = ACTIONS(2646), + [anon_sym_out_GT] = ACTIONS(2646), + [anon_sym_e_GT] = ACTIONS(2646), + [anon_sym_o_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT] = ACTIONS(2646), + [anon_sym_err_GT_GT] = ACTIONS(2644), + [anon_sym_out_GT_GT] = ACTIONS(2644), + [anon_sym_e_GT_GT] = ACTIONS(2644), + [anon_sym_o_GT_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2644), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(969)] = { - [sym_comment] = STATE(969), - [ts_builtin_sym_end] = ACTIONS(1844), - [anon_sym_in] = ACTIONS(1844), - [sym__newline] = ACTIONS(1844), - [anon_sym_SEMI] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_err_GT_PIPE] = ACTIONS(1844), - [anon_sym_out_GT_PIPE] = ACTIONS(1844), - [anon_sym_e_GT_PIPE] = ACTIONS(1844), - [anon_sym_o_GT_PIPE] = ACTIONS(1844), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1844), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1844), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1844), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1844), - [anon_sym_GT2] = ACTIONS(1846), - [anon_sym_DASH2] = ACTIONS(1844), - [anon_sym_STAR2] = ACTIONS(1846), - [anon_sym_and2] = ACTIONS(1844), - [anon_sym_xor2] = ACTIONS(1844), - [anon_sym_or2] = ACTIONS(1844), - [anon_sym_not_DASHin2] = ACTIONS(1844), - [anon_sym_has2] = ACTIONS(1844), - [anon_sym_not_DASHhas2] = ACTIONS(1844), - [anon_sym_starts_DASHwith2] = ACTIONS(1844), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1844), - [anon_sym_ends_DASHwith2] = ACTIONS(1844), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1844), - [anon_sym_EQ_EQ2] = ACTIONS(1844), - [anon_sym_BANG_EQ2] = ACTIONS(1844), - [anon_sym_LT2] = ACTIONS(1846), - [anon_sym_LT_EQ2] = ACTIONS(1844), - [anon_sym_GT_EQ2] = ACTIONS(1844), - [anon_sym_EQ_TILDE2] = ACTIONS(1844), - [anon_sym_BANG_TILDE2] = ACTIONS(1844), - [anon_sym_like2] = ACTIONS(1844), - [anon_sym_not_DASHlike2] = ACTIONS(1844), - [anon_sym_LPAREN2] = ACTIONS(1844), - [anon_sym_STAR_STAR2] = ACTIONS(1844), - [anon_sym_PLUS_PLUS2] = ACTIONS(1844), - [anon_sym_SLASH2] = ACTIONS(1846), - [anon_sym_mod2] = ACTIONS(1844), - [anon_sym_SLASH_SLASH2] = ACTIONS(1844), - [anon_sym_PLUS2] = ACTIONS(1846), - [anon_sym_bit_DASHshl2] = ACTIONS(1844), - [anon_sym_bit_DASHshr2] = ACTIONS(1844), - [anon_sym_bit_DASHand2] = ACTIONS(1844), - [anon_sym_bit_DASHxor2] = ACTIONS(1844), - [anon_sym_bit_DASHor2] = ACTIONS(1844), - [anon_sym_err_GT] = ACTIONS(1846), - [anon_sym_out_GT] = ACTIONS(1846), - [anon_sym_e_GT] = ACTIONS(1846), - [anon_sym_o_GT] = ACTIONS(1846), - [anon_sym_err_PLUSout_GT] = ACTIONS(1846), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1846), - [anon_sym_o_PLUSe_GT] = ACTIONS(1846), - [anon_sym_e_PLUSo_GT] = ACTIONS(1846), - [anon_sym_err_GT_GT] = ACTIONS(1844), - [anon_sym_out_GT_GT] = ACTIONS(1844), - [anon_sym_e_GT_GT] = ACTIONS(1844), - [anon_sym_o_GT_GT] = ACTIONS(1844), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1844), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1844), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1844), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1844), - [sym__unquoted_pattern] = ACTIONS(1846), + [STATE(1003)] = { + [aux_sym__repeat_newline] = STATE(1053), + [sym_comment] = STATE(1003), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [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), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(970)] = { - [sym_comment] = STATE(970), - [ts_builtin_sym_end] = ACTIONS(994), - [anon_sym_in] = ACTIONS(994), - [sym__newline] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(994), - [anon_sym_err_GT_PIPE] = ACTIONS(994), - [anon_sym_out_GT_PIPE] = ACTIONS(994), - [anon_sym_e_GT_PIPE] = ACTIONS(994), - [anon_sym_o_GT_PIPE] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(994), - [anon_sym_GT2] = ACTIONS(996), - [anon_sym_DASH2] = ACTIONS(994), - [anon_sym_STAR2] = ACTIONS(996), - [anon_sym_and2] = ACTIONS(994), - [anon_sym_xor2] = ACTIONS(994), - [anon_sym_or2] = ACTIONS(994), - [anon_sym_not_DASHin2] = ACTIONS(994), - [anon_sym_has2] = ACTIONS(994), - [anon_sym_not_DASHhas2] = ACTIONS(994), - [anon_sym_starts_DASHwith2] = ACTIONS(994), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(994), - [anon_sym_ends_DASHwith2] = ACTIONS(994), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(994), - [anon_sym_EQ_EQ2] = ACTIONS(994), - [anon_sym_BANG_EQ2] = ACTIONS(994), - [anon_sym_LT2] = ACTIONS(996), - [anon_sym_LT_EQ2] = ACTIONS(994), - [anon_sym_GT_EQ2] = ACTIONS(994), - [anon_sym_EQ_TILDE2] = ACTIONS(994), - [anon_sym_BANG_TILDE2] = ACTIONS(994), - [anon_sym_like2] = ACTIONS(994), - [anon_sym_not_DASHlike2] = ACTIONS(994), - [anon_sym_LPAREN2] = ACTIONS(2570), - [anon_sym_STAR_STAR2] = ACTIONS(994), - [anon_sym_PLUS_PLUS2] = ACTIONS(994), - [anon_sym_SLASH2] = ACTIONS(996), - [anon_sym_mod2] = ACTIONS(994), - [anon_sym_SLASH_SLASH2] = ACTIONS(994), - [anon_sym_PLUS2] = ACTIONS(996), - [anon_sym_bit_DASHshl2] = ACTIONS(994), - [anon_sym_bit_DASHshr2] = ACTIONS(994), - [anon_sym_bit_DASHand2] = ACTIONS(994), - [anon_sym_bit_DASHxor2] = ACTIONS(994), - [anon_sym_bit_DASHor2] = ACTIONS(994), - [anon_sym_err_GT] = ACTIONS(996), - [anon_sym_out_GT] = ACTIONS(996), - [anon_sym_e_GT] = ACTIONS(996), - [anon_sym_o_GT] = ACTIONS(996), - [anon_sym_err_PLUSout_GT] = ACTIONS(996), - [anon_sym_out_PLUSerr_GT] = ACTIONS(996), - [anon_sym_o_PLUSe_GT] = ACTIONS(996), - [anon_sym_e_PLUSo_GT] = ACTIONS(996), - [anon_sym_err_GT_GT] = ACTIONS(994), - [anon_sym_out_GT_GT] = ACTIONS(994), - [anon_sym_e_GT_GT] = ACTIONS(994), - [anon_sym_o_GT_GT] = ACTIONS(994), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(994), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(994), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(994), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(994), - [sym__unquoted_pattern] = ACTIONS(2572), + [STATE(1004)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1004), + [anon_sym_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1005)] = { + [sym_comment] = STATE(1005), + [anon_sym_export] = ACTIONS(2148), + [anon_sym_alias] = ACTIONS(2146), + [anon_sym_let] = ACTIONS(2146), + [anon_sym_mut] = ACTIONS(2146), + [anon_sym_const] = ACTIONS(2146), + [aux_sym_cmd_identifier_token1] = ACTIONS(2148), + [anon_sym_def] = ACTIONS(2146), + [anon_sym_use] = ACTIONS(2146), + [anon_sym_export_DASHenv] = ACTIONS(2146), + [anon_sym_extern] = ACTIONS(2146), + [anon_sym_module] = ACTIONS(2146), + [anon_sym_for] = ACTIONS(2146), + [anon_sym_loop] = ACTIONS(2146), + [anon_sym_while] = ACTIONS(2146), + [anon_sym_if] = ACTIONS(2146), + [anon_sym_else] = ACTIONS(2146), + [anon_sym_try] = ACTIONS(2146), + [anon_sym_catch] = ACTIONS(2146), + [anon_sym_match] = ACTIONS(2146), + [anon_sym_in] = ACTIONS(2148), + [anon_sym_true] = ACTIONS(2146), + [anon_sym_false] = ACTIONS(2146), + [anon_sym_null] = ACTIONS(2146), + [aux_sym_cmd_identifier_token3] = ACTIONS(2146), + [aux_sym_cmd_identifier_token4] = ACTIONS(2146), + [aux_sym_cmd_identifier_token5] = ACTIONS(2146), + [sym__newline] = ACTIONS(2146), + [anon_sym_PIPE] = ACTIONS(2146), + [anon_sym_err_GT_PIPE] = ACTIONS(2146), + [anon_sym_out_GT_PIPE] = ACTIONS(2146), + [anon_sym_e_GT_PIPE] = ACTIONS(2146), + [anon_sym_o_GT_PIPE] = ACTIONS(2146), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2146), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2146), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2146), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2146), + [anon_sym_LPAREN] = ACTIONS(2146), + [anon_sym_DOLLAR] = ACTIONS(2148), + [anon_sym_DASH2] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2146), + [anon_sym_DOT_DOT] = ACTIONS(2148), + [anon_sym_where] = ACTIONS(2146), + [aux_sym_expr_unary_token1] = ACTIONS(2146), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2146), + [anon_sym_DOT_DOT_LT] = ACTIONS(2146), + [aux_sym__val_number_decimal_token1] = ACTIONS(2148), + [aux_sym__val_number_decimal_token2] = ACTIONS(2146), + [aux_sym__val_number_decimal_token3] = ACTIONS(2146), + [aux_sym__val_number_decimal_token4] = ACTIONS(2146), + [aux_sym__val_number_token1] = ACTIONS(2146), + [aux_sym__val_number_token2] = ACTIONS(2146), + [aux_sym__val_number_token3] = ACTIONS(2146), + [anon_sym_0b] = ACTIONS(2148), + [anon_sym_0o] = ACTIONS(2148), + [anon_sym_0x] = ACTIONS(2148), + [sym_val_date] = ACTIONS(2146), + [anon_sym_DQUOTE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2146), + [anon_sym_BQUOTE] = ACTIONS(2146), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2146), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2146), + [anon_sym_CARET] = ACTIONS(2146), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2146), + }, + [STATE(1006)] = { + [aux_sym__repeat_newline] = STATE(1054), + [sym_comment] = STATE(1006), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1007)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1007), + [anon_sym_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1008)] = { + [sym_comment] = STATE(1008), + [anon_sym_in] = ACTIONS(908), + [sym__newline] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_PIPE] = ACTIONS(908), + [anon_sym_err_GT_PIPE] = ACTIONS(908), + [anon_sym_out_GT_PIPE] = ACTIONS(908), + [anon_sym_e_GT_PIPE] = ACTIONS(908), + [anon_sym_o_GT_PIPE] = ACTIONS(908), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(908), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(908), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(908), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(908), + [anon_sym_RPAREN] = ACTIONS(908), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(908), + [anon_sym_RBRACE] = ACTIONS(908), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(908), + [anon_sym_xor2] = ACTIONS(908), + [anon_sym_or2] = ACTIONS(908), + [anon_sym_not_DASHin2] = ACTIONS(908), + [anon_sym_has2] = ACTIONS(908), + [anon_sym_not_DASHhas2] = ACTIONS(908), + [anon_sym_starts_DASHwith2] = ACTIONS(908), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(908), + [anon_sym_ends_DASHwith2] = ACTIONS(908), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(908), + [anon_sym_EQ_EQ2] = ACTIONS(908), + [anon_sym_BANG_EQ2] = ACTIONS(908), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(908), + [anon_sym_GT_EQ2] = ACTIONS(908), + [anon_sym_EQ_TILDE2] = ACTIONS(908), + [anon_sym_BANG_TILDE2] = ACTIONS(908), + [anon_sym_like2] = ACTIONS(908), + [anon_sym_not_DASHlike2] = ACTIONS(908), + [anon_sym_STAR_STAR2] = ACTIONS(908), + [anon_sym_PLUS_PLUS2] = ACTIONS(908), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(908), + [anon_sym_SLASH_SLASH2] = ACTIONS(908), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(908), + [anon_sym_bit_DASHshr2] = ACTIONS(908), + [anon_sym_bit_DASHand2] = ACTIONS(908), + [anon_sym_bit_DASHxor2] = ACTIONS(908), + [anon_sym_bit_DASHor2] = ACTIONS(908), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(908), + [anon_sym_out_GT_GT] = ACTIONS(908), + [anon_sym_e_GT_GT] = ACTIONS(908), + [anon_sym_o_GT_GT] = ACTIONS(908), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(908), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(908), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(908), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(908), + [sym__unquoted_pattern] = ACTIONS(1724), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1009)] = { + [aux_sym__repeat_newline] = STATE(1055), + [sym_comment] = STATE(1009), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1010)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1010), + [anon_sym_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1011)] = { + [aux_sym__repeat_newline] = STATE(973), + [sym_comment] = STATE(1011), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1012)] = { + [sym_comment] = STATE(1012), + [ts_builtin_sym_end] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [sym__newline] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_err_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_GT_PIPE] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), + [anon_sym_GT2] = ACTIONS(1740), + [anon_sym_DASH2] = ACTIONS(1738), + [anon_sym_STAR2] = ACTIONS(1740), + [anon_sym_and2] = ACTIONS(1738), + [anon_sym_xor2] = ACTIONS(1738), + [anon_sym_or2] = ACTIONS(1738), + [anon_sym_not_DASHin2] = ACTIONS(1738), + [anon_sym_has2] = ACTIONS(1738), + [anon_sym_not_DASHhas2] = ACTIONS(1738), + [anon_sym_starts_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), + [anon_sym_ends_DASHwith2] = ACTIONS(1738), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), + [anon_sym_EQ_EQ2] = ACTIONS(1738), + [anon_sym_BANG_EQ2] = ACTIONS(1738), + [anon_sym_LT2] = ACTIONS(1740), + [anon_sym_LT_EQ2] = ACTIONS(1738), + [anon_sym_GT_EQ2] = ACTIONS(1738), + [anon_sym_EQ_TILDE2] = ACTIONS(1738), + [anon_sym_BANG_TILDE2] = ACTIONS(1738), + [anon_sym_like2] = ACTIONS(1738), + [anon_sym_not_DASHlike2] = ACTIONS(1738), + [anon_sym_LPAREN2] = ACTIONS(1738), + [anon_sym_STAR_STAR2] = ACTIONS(1738), + [anon_sym_PLUS_PLUS2] = ACTIONS(1738), + [anon_sym_SLASH2] = ACTIONS(1740), + [anon_sym_mod2] = ACTIONS(1738), + [anon_sym_SLASH_SLASH2] = ACTIONS(1738), + [anon_sym_PLUS2] = ACTIONS(1740), + [anon_sym_bit_DASHshl2] = ACTIONS(1738), + [anon_sym_bit_DASHshr2] = ACTIONS(1738), + [anon_sym_bit_DASHand2] = ACTIONS(1738), + [anon_sym_bit_DASHxor2] = ACTIONS(1738), + [anon_sym_bit_DASHor2] = ACTIONS(1738), + [anon_sym_err_GT] = ACTIONS(1740), + [anon_sym_out_GT] = ACTIONS(1740), + [anon_sym_e_GT] = ACTIONS(1740), + [anon_sym_o_GT] = ACTIONS(1740), + [anon_sym_err_PLUSout_GT] = ACTIONS(1740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1740), + [anon_sym_o_PLUSe_GT] = ACTIONS(1740), + [anon_sym_e_PLUSo_GT] = ACTIONS(1740), + [anon_sym_err_GT_GT] = ACTIONS(1738), + [anon_sym_out_GT_GT] = ACTIONS(1738), + [anon_sym_e_GT_GT] = ACTIONS(1738), + [anon_sym_o_GT_GT] = ACTIONS(1738), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), + [sym__unquoted_pattern] = ACTIONS(1740), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(971)] = { - [sym_comment] = STATE(971), - [ts_builtin_sym_end] = ACTIONS(1012), - [anon_sym_in] = ACTIONS(1012), - [sym__newline] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1012), - [anon_sym_PIPE] = ACTIONS(1012), - [anon_sym_err_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_GT_PIPE] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1012), - [anon_sym_GT2] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1012), - [anon_sym_STAR2] = ACTIONS(1004), - [anon_sym_and2] = ACTIONS(1012), - [anon_sym_xor2] = ACTIONS(1012), - [anon_sym_or2] = ACTIONS(1012), - [anon_sym_not_DASHin2] = ACTIONS(1012), - [anon_sym_has2] = ACTIONS(1012), - [anon_sym_not_DASHhas2] = ACTIONS(1012), - [anon_sym_starts_DASHwith2] = ACTIONS(1012), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1012), - [anon_sym_ends_DASHwith2] = ACTIONS(1012), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1012), - [anon_sym_EQ_EQ2] = ACTIONS(1012), - [anon_sym_BANG_EQ2] = ACTIONS(1012), - [anon_sym_LT2] = ACTIONS(1004), - [anon_sym_LT_EQ2] = ACTIONS(1012), - [anon_sym_GT_EQ2] = ACTIONS(1012), - [anon_sym_EQ_TILDE2] = ACTIONS(1012), - [anon_sym_BANG_TILDE2] = ACTIONS(1012), - [anon_sym_like2] = ACTIONS(1012), - [anon_sym_not_DASHlike2] = ACTIONS(1012), - [anon_sym_LPAREN2] = ACTIONS(2570), - [anon_sym_STAR_STAR2] = ACTIONS(1012), - [anon_sym_PLUS_PLUS2] = ACTIONS(1012), - [anon_sym_SLASH2] = ACTIONS(1004), - [anon_sym_mod2] = ACTIONS(1012), - [anon_sym_SLASH_SLASH2] = ACTIONS(1012), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_bit_DASHshl2] = ACTIONS(1012), - [anon_sym_bit_DASHshr2] = ACTIONS(1012), - [anon_sym_bit_DASHand2] = ACTIONS(1012), - [anon_sym_bit_DASHxor2] = ACTIONS(1012), - [anon_sym_bit_DASHor2] = ACTIONS(1012), - [anon_sym_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(1012), - [anon_sym_out_GT_GT] = ACTIONS(1012), - [anon_sym_e_GT_GT] = ACTIONS(1012), - [anon_sym_o_GT_GT] = ACTIONS(1012), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1012), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1012), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1012), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1012), - [sym__unquoted_pattern] = ACTIONS(2572), + [STATE(1013)] = { + [aux_sym__repeat_newline] = STATE(1059), + [sym_comment] = STATE(1013), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [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), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(972)] = { - [aux_sym__repeat_newline] = STATE(1025), - [sym_comment] = STATE(972), - [anon_sym_in] = ACTIONS(2198), - [sym__newline] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_err_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_GT_PIPE] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_GT2] = ACTIONS(2200), - [anon_sym_DASH2] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_STAR2] = ACTIONS(2200), - [anon_sym_and2] = ACTIONS(2198), - [anon_sym_xor2] = ACTIONS(2198), - [anon_sym_or2] = ACTIONS(2198), - [anon_sym_not_DASHin2] = ACTIONS(2198), - [anon_sym_has2] = ACTIONS(2198), - [anon_sym_not_DASHhas2] = ACTIONS(2198), - [anon_sym_starts_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), - [anon_sym_ends_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), - [anon_sym_EQ_EQ2] = ACTIONS(2198), - [anon_sym_BANG_EQ2] = ACTIONS(2198), - [anon_sym_LT2] = ACTIONS(2200), - [anon_sym_LT_EQ2] = ACTIONS(2198), - [anon_sym_GT_EQ2] = ACTIONS(2198), - [anon_sym_EQ_TILDE2] = ACTIONS(2198), - [anon_sym_BANG_TILDE2] = ACTIONS(2198), - [anon_sym_like2] = ACTIONS(2198), - [anon_sym_not_DASHlike2] = ACTIONS(2198), - [anon_sym_STAR_STAR2] = ACTIONS(2198), - [anon_sym_PLUS_PLUS2] = ACTIONS(2198), - [anon_sym_SLASH2] = ACTIONS(2200), - [anon_sym_mod2] = ACTIONS(2198), - [anon_sym_SLASH_SLASH2] = ACTIONS(2198), - [anon_sym_PLUS2] = ACTIONS(2200), - [anon_sym_bit_DASHshl2] = ACTIONS(2198), - [anon_sym_bit_DASHshr2] = ACTIONS(2198), - [anon_sym_bit_DASHand2] = ACTIONS(2198), - [anon_sym_bit_DASHxor2] = ACTIONS(2198), - [anon_sym_bit_DASHor2] = ACTIONS(2198), - [anon_sym_err_GT] = ACTIONS(2200), - [anon_sym_out_GT] = ACTIONS(2200), - [anon_sym_e_GT] = ACTIONS(2200), - [anon_sym_o_GT] = ACTIONS(2200), - [anon_sym_err_PLUSout_GT] = ACTIONS(2200), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), - [anon_sym_o_PLUSe_GT] = ACTIONS(2200), - [anon_sym_e_PLUSo_GT] = ACTIONS(2200), - [anon_sym_err_GT_GT] = ACTIONS(2198), - [anon_sym_out_GT_GT] = ACTIONS(2198), - [anon_sym_e_GT_GT] = ACTIONS(2198), - [anon_sym_o_GT_GT] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), + [STATE(1014)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1014), + [anon_sym_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(973)] = { - [aux_sym__repeat_newline] = STATE(987), - [sym_comment] = STATE(973), - [anon_sym_in] = ACTIONS(2198), - [sym__newline] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_err_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_GT_PIPE] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_GT2] = ACTIONS(2200), - [anon_sym_DASH2] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_STAR2] = ACTIONS(2200), - [anon_sym_and2] = ACTIONS(2198), - [anon_sym_xor2] = ACTIONS(2198), - [anon_sym_or2] = ACTIONS(2198), - [anon_sym_not_DASHin2] = ACTIONS(2198), - [anon_sym_has2] = ACTIONS(2198), - [anon_sym_not_DASHhas2] = ACTIONS(2198), - [anon_sym_starts_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), - [anon_sym_ends_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), - [anon_sym_EQ_EQ2] = ACTIONS(2198), - [anon_sym_BANG_EQ2] = ACTIONS(2198), - [anon_sym_LT2] = ACTIONS(2200), - [anon_sym_LT_EQ2] = ACTIONS(2198), - [anon_sym_GT_EQ2] = ACTIONS(2198), - [anon_sym_EQ_TILDE2] = ACTIONS(2198), - [anon_sym_BANG_TILDE2] = ACTIONS(2198), - [anon_sym_like2] = ACTIONS(2198), - [anon_sym_not_DASHlike2] = ACTIONS(2198), - [anon_sym_STAR_STAR2] = ACTIONS(2198), - [anon_sym_PLUS_PLUS2] = ACTIONS(2198), - [anon_sym_SLASH2] = ACTIONS(2200), - [anon_sym_mod2] = ACTIONS(2198), - [anon_sym_SLASH_SLASH2] = ACTIONS(2198), - [anon_sym_PLUS2] = ACTIONS(2200), - [anon_sym_bit_DASHshl2] = ACTIONS(2198), - [anon_sym_bit_DASHshr2] = ACTIONS(2198), - [anon_sym_bit_DASHand2] = ACTIONS(2198), - [anon_sym_bit_DASHxor2] = ACTIONS(2198), - [anon_sym_bit_DASHor2] = ACTIONS(2198), - [anon_sym_err_GT] = ACTIONS(2200), - [anon_sym_out_GT] = ACTIONS(2200), - [anon_sym_e_GT] = ACTIONS(2200), - [anon_sym_o_GT] = ACTIONS(2200), - [anon_sym_err_PLUSout_GT] = ACTIONS(2200), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), - [anon_sym_o_PLUSe_GT] = ACTIONS(2200), - [anon_sym_e_PLUSo_GT] = ACTIONS(2200), - [anon_sym_err_GT_GT] = ACTIONS(2198), - [anon_sym_out_GT_GT] = ACTIONS(2198), - [anon_sym_e_GT_GT] = ACTIONS(2198), - [anon_sym_o_GT_GT] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), + [STATE(1015)] = { + [sym_comment] = STATE(1015), + [ts_builtin_sym_end] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1816), + [sym__newline] = ACTIONS(1816), + [anon_sym_SEMI] = ACTIONS(1816), + [anon_sym_PIPE] = ACTIONS(1816), + [anon_sym_err_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_GT_PIPE] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1816), + [anon_sym_GT2] = ACTIONS(1818), + [anon_sym_DASH2] = ACTIONS(1816), + [anon_sym_STAR2] = ACTIONS(1818), + [anon_sym_and2] = ACTIONS(1816), + [anon_sym_xor2] = ACTIONS(1816), + [anon_sym_or2] = ACTIONS(1816), + [anon_sym_not_DASHin2] = ACTIONS(1816), + [anon_sym_has2] = ACTIONS(1816), + [anon_sym_not_DASHhas2] = ACTIONS(1816), + [anon_sym_starts_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1816), + [anon_sym_ends_DASHwith2] = ACTIONS(1816), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1816), + [anon_sym_EQ_EQ2] = ACTIONS(1816), + [anon_sym_BANG_EQ2] = ACTIONS(1816), + [anon_sym_LT2] = ACTIONS(1818), + [anon_sym_LT_EQ2] = ACTIONS(1816), + [anon_sym_GT_EQ2] = ACTIONS(1816), + [anon_sym_EQ_TILDE2] = ACTIONS(1816), + [anon_sym_BANG_TILDE2] = ACTIONS(1816), + [anon_sym_like2] = ACTIONS(1816), + [anon_sym_not_DASHlike2] = ACTIONS(1816), + [anon_sym_LPAREN2] = ACTIONS(1816), + [anon_sym_STAR_STAR2] = ACTIONS(1816), + [anon_sym_PLUS_PLUS2] = ACTIONS(1816), + [anon_sym_SLASH2] = ACTIONS(1818), + [anon_sym_mod2] = ACTIONS(1816), + [anon_sym_SLASH_SLASH2] = ACTIONS(1816), + [anon_sym_PLUS2] = ACTIONS(1818), + [anon_sym_bit_DASHshl2] = ACTIONS(1816), + [anon_sym_bit_DASHshr2] = ACTIONS(1816), + [anon_sym_bit_DASHand2] = ACTIONS(1816), + [anon_sym_bit_DASHxor2] = ACTIONS(1816), + [anon_sym_bit_DASHor2] = ACTIONS(1816), + [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(1816), + [anon_sym_out_GT_GT] = ACTIONS(1816), + [anon_sym_e_GT_GT] = ACTIONS(1816), + [anon_sym_o_GT_GT] = ACTIONS(1816), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1816), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1816), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1816), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1816), + [sym__unquoted_pattern] = ACTIONS(1818), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(974)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(974), - [anon_sym_in] = ACTIONS(2658), - [sym__newline] = ACTIONS(2658), - [anon_sym_SEMI] = ACTIONS(2658), - [anon_sym_PIPE] = ACTIONS(2658), - [anon_sym_err_GT_PIPE] = ACTIONS(2658), - [anon_sym_out_GT_PIPE] = ACTIONS(2658), - [anon_sym_e_GT_PIPE] = ACTIONS(2658), - [anon_sym_o_GT_PIPE] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2658), - [anon_sym_RPAREN] = ACTIONS(2658), - [anon_sym_GT2] = ACTIONS(2660), - [anon_sym_DASH2] = ACTIONS(2658), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_STAR2] = ACTIONS(2660), - [anon_sym_and2] = ACTIONS(2658), - [anon_sym_xor2] = ACTIONS(2658), - [anon_sym_or2] = ACTIONS(2658), - [anon_sym_not_DASHin2] = ACTIONS(2658), - [anon_sym_has2] = ACTIONS(2658), - [anon_sym_not_DASHhas2] = ACTIONS(2658), - [anon_sym_starts_DASHwith2] = ACTIONS(2658), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2658), - [anon_sym_ends_DASHwith2] = ACTIONS(2658), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2658), - [anon_sym_EQ_EQ2] = ACTIONS(2658), - [anon_sym_BANG_EQ2] = ACTIONS(2658), - [anon_sym_LT2] = ACTIONS(2660), - [anon_sym_LT_EQ2] = ACTIONS(2658), - [anon_sym_GT_EQ2] = ACTIONS(2658), - [anon_sym_EQ_TILDE2] = ACTIONS(2658), - [anon_sym_BANG_TILDE2] = ACTIONS(2658), - [anon_sym_like2] = ACTIONS(2658), - [anon_sym_not_DASHlike2] = ACTIONS(2658), - [anon_sym_STAR_STAR2] = ACTIONS(2658), - [anon_sym_PLUS_PLUS2] = ACTIONS(2658), - [anon_sym_SLASH2] = ACTIONS(2660), - [anon_sym_mod2] = ACTIONS(2658), - [anon_sym_SLASH_SLASH2] = ACTIONS(2658), - [anon_sym_PLUS2] = ACTIONS(2660), - [anon_sym_bit_DASHshl2] = ACTIONS(2658), - [anon_sym_bit_DASHshr2] = ACTIONS(2658), - [anon_sym_bit_DASHand2] = ACTIONS(2658), - [anon_sym_bit_DASHxor2] = ACTIONS(2658), - [anon_sym_bit_DASHor2] = ACTIONS(2658), - [anon_sym_err_GT] = ACTIONS(2660), - [anon_sym_out_GT] = ACTIONS(2660), - [anon_sym_e_GT] = ACTIONS(2660), - [anon_sym_o_GT] = ACTIONS(2660), - [anon_sym_err_PLUSout_GT] = ACTIONS(2660), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2660), - [anon_sym_o_PLUSe_GT] = ACTIONS(2660), - [anon_sym_e_PLUSo_GT] = ACTIONS(2660), - [anon_sym_err_GT_GT] = ACTIONS(2658), - [anon_sym_out_GT_GT] = ACTIONS(2658), - [anon_sym_e_GT_GT] = ACTIONS(2658), - [anon_sym_o_GT_GT] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2658), + [STATE(1016)] = { + [sym_comment] = STATE(1016), + [ts_builtin_sym_end] = ACTIONS(1854), + [anon_sym_in] = ACTIONS(1854), + [sym__newline] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1854), + [anon_sym_PIPE] = ACTIONS(1854), + [anon_sym_err_GT_PIPE] = ACTIONS(1854), + [anon_sym_out_GT_PIPE] = ACTIONS(1854), + [anon_sym_e_GT_PIPE] = ACTIONS(1854), + [anon_sym_o_GT_PIPE] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1854), + [anon_sym_GT2] = ACTIONS(1856), + [anon_sym_DASH2] = ACTIONS(1854), + [anon_sym_STAR2] = ACTIONS(1856), + [anon_sym_and2] = ACTIONS(1854), + [anon_sym_xor2] = ACTIONS(1854), + [anon_sym_or2] = ACTIONS(1854), + [anon_sym_not_DASHin2] = ACTIONS(1854), + [anon_sym_has2] = ACTIONS(1854), + [anon_sym_not_DASHhas2] = ACTIONS(1854), + [anon_sym_starts_DASHwith2] = ACTIONS(1854), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1854), + [anon_sym_ends_DASHwith2] = ACTIONS(1854), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1854), + [anon_sym_EQ_EQ2] = ACTIONS(1854), + [anon_sym_BANG_EQ2] = ACTIONS(1854), + [anon_sym_LT2] = ACTIONS(1856), + [anon_sym_LT_EQ2] = ACTIONS(1854), + [anon_sym_GT_EQ2] = ACTIONS(1854), + [anon_sym_EQ_TILDE2] = ACTIONS(1854), + [anon_sym_BANG_TILDE2] = ACTIONS(1854), + [anon_sym_like2] = ACTIONS(1854), + [anon_sym_not_DASHlike2] = ACTIONS(1854), + [anon_sym_LPAREN2] = ACTIONS(1854), + [anon_sym_STAR_STAR2] = ACTIONS(1854), + [anon_sym_PLUS_PLUS2] = ACTIONS(1854), + [anon_sym_SLASH2] = ACTIONS(1856), + [anon_sym_mod2] = ACTIONS(1854), + [anon_sym_SLASH_SLASH2] = ACTIONS(1854), + [anon_sym_PLUS2] = ACTIONS(1856), + [anon_sym_bit_DASHshl2] = ACTIONS(1854), + [anon_sym_bit_DASHshr2] = ACTIONS(1854), + [anon_sym_bit_DASHand2] = ACTIONS(1854), + [anon_sym_bit_DASHxor2] = ACTIONS(1854), + [anon_sym_bit_DASHor2] = ACTIONS(1854), + [anon_sym_err_GT] = ACTIONS(1856), + [anon_sym_out_GT] = ACTIONS(1856), + [anon_sym_e_GT] = ACTIONS(1856), + [anon_sym_o_GT] = ACTIONS(1856), + [anon_sym_err_PLUSout_GT] = ACTIONS(1856), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1856), + [anon_sym_o_PLUSe_GT] = ACTIONS(1856), + [anon_sym_e_PLUSo_GT] = ACTIONS(1856), + [anon_sym_err_GT_GT] = ACTIONS(1854), + [anon_sym_out_GT_GT] = ACTIONS(1854), + [anon_sym_e_GT_GT] = ACTIONS(1854), + [anon_sym_o_GT_GT] = ACTIONS(1854), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1854), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1854), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1854), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1854), + [sym__unquoted_pattern] = ACTIONS(1856), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(975)] = { - [sym__expression] = STATE(4806), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2216), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1826), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_comment] = STATE(975), - [aux_sym_cmd_identifier_token2] = ACTIONS(2662), - [anon_sym_true] = ACTIONS(2535), - [anon_sym_false] = ACTIONS(2535), - [anon_sym_null] = ACTIONS(2537), - [aux_sym_cmd_identifier_token3] = ACTIONS(2539), - [aux_sym_cmd_identifier_token4] = ACTIONS(2539), - [aux_sym_cmd_identifier_token5] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1976), - [aux_sym__val_number_decimal_token3] = ACTIONS(2543), - [aux_sym__val_number_decimal_token4] = ACTIONS(2543), - [aux_sym__val_number_token1] = ACTIONS(2539), - [aux_sym__val_number_token2] = ACTIONS(2539), - [aux_sym__val_number_token3] = ACTIONS(2539), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2545), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_COLON2] = ACTIONS(2664), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [STATE(1017)] = { + [aux_sym__repeat_newline] = STATE(1060), + [sym_comment] = STATE(1017), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [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), + [anon_sym_POUND] = ACTIONS(3), }, - [STATE(976)] = { - [sym__expression] = STATE(4809), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2216), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1826), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_comment] = STATE(976), - [aux_sym_cmd_identifier_token2] = ACTIONS(2662), - [anon_sym_true] = ACTIONS(2535), - [anon_sym_false] = ACTIONS(2535), - [anon_sym_null] = ACTIONS(2537), - [aux_sym_cmd_identifier_token3] = ACTIONS(2539), - [aux_sym_cmd_identifier_token4] = ACTIONS(2539), - [aux_sym_cmd_identifier_token5] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1976), - [aux_sym__val_number_decimal_token3] = ACTIONS(2543), - [aux_sym__val_number_decimal_token4] = ACTIONS(2543), - [aux_sym__val_number_token1] = ACTIONS(2539), - [aux_sym__val_number_token2] = ACTIONS(2539), - [aux_sym__val_number_token3] = ACTIONS(2539), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2545), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_COLON2] = ACTIONS(2664), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [STATE(1018)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1018), + [anon_sym_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), + [anon_sym_POUND] = ACTIONS(3), }, - [STATE(977)] = { - [aux_sym__repeat_newline] = STATE(1098), - [sym_comment] = STATE(977), - [anon_sym_in] = ACTIONS(2289), - [sym__newline] = ACTIONS(2289), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_err_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_GT_PIPE] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), - [anon_sym_RPAREN] = ACTIONS(2289), - [anon_sym_GT2] = ACTIONS(2291), - [anon_sym_DASH2] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_STAR2] = ACTIONS(2291), - [anon_sym_and2] = ACTIONS(2289), - [anon_sym_xor2] = ACTIONS(2289), - [anon_sym_or2] = ACTIONS(2289), - [anon_sym_not_DASHin2] = ACTIONS(2289), - [anon_sym_has2] = ACTIONS(2289), - [anon_sym_not_DASHhas2] = ACTIONS(2289), - [anon_sym_starts_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), - [anon_sym_ends_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), - [anon_sym_EQ_EQ2] = ACTIONS(2289), - [anon_sym_BANG_EQ2] = ACTIONS(2289), - [anon_sym_LT2] = ACTIONS(2291), - [anon_sym_LT_EQ2] = ACTIONS(2289), - [anon_sym_GT_EQ2] = ACTIONS(2289), - [anon_sym_EQ_TILDE2] = ACTIONS(2289), - [anon_sym_BANG_TILDE2] = ACTIONS(2289), - [anon_sym_like2] = ACTIONS(2289), - [anon_sym_not_DASHlike2] = ACTIONS(2289), - [anon_sym_STAR_STAR2] = ACTIONS(2289), - [anon_sym_PLUS_PLUS2] = ACTIONS(2289), - [anon_sym_SLASH2] = ACTIONS(2291), - [anon_sym_mod2] = ACTIONS(2289), - [anon_sym_SLASH_SLASH2] = ACTIONS(2289), - [anon_sym_PLUS2] = ACTIONS(2291), - [anon_sym_bit_DASHshl2] = ACTIONS(2289), - [anon_sym_bit_DASHshr2] = ACTIONS(2289), - [anon_sym_bit_DASHand2] = ACTIONS(2289), - [anon_sym_bit_DASHxor2] = ACTIONS(2289), - [anon_sym_bit_DASHor2] = ACTIONS(2289), - [anon_sym_err_GT] = ACTIONS(2291), - [anon_sym_out_GT] = ACTIONS(2291), - [anon_sym_e_GT] = ACTIONS(2291), - [anon_sym_o_GT] = ACTIONS(2291), - [anon_sym_err_PLUSout_GT] = ACTIONS(2291), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), - [anon_sym_o_PLUSe_GT] = ACTIONS(2291), - [anon_sym_e_PLUSo_GT] = ACTIONS(2291), - [anon_sym_err_GT_GT] = ACTIONS(2289), - [anon_sym_out_GT_GT] = ACTIONS(2289), - [anon_sym_e_GT_GT] = ACTIONS(2289), - [anon_sym_o_GT_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), + [STATE(1019)] = { + [aux_sym__repeat_newline] = STATE(1061), + [sym_comment] = STATE(1019), + [anon_sym_in] = ACTIONS(2662), + [sym__newline] = ACTIONS(2662), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2664), + [anon_sym_DASH2] = ACTIONS(2662), + [anon_sym_LBRACE] = ACTIONS(2662), + [anon_sym_STAR2] = ACTIONS(2664), + [anon_sym_and2] = ACTIONS(2662), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2662), + [anon_sym_has2] = ACTIONS(2662), + [anon_sym_not_DASHhas2] = ACTIONS(2662), + [anon_sym_starts_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2662), + [anon_sym_ends_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2662), + [anon_sym_EQ_EQ2] = ACTIONS(2662), + [anon_sym_BANG_EQ2] = ACTIONS(2662), + [anon_sym_LT2] = ACTIONS(2664), + [anon_sym_LT_EQ2] = ACTIONS(2662), + [anon_sym_GT_EQ2] = ACTIONS(2662), + [anon_sym_EQ_TILDE2] = ACTIONS(2662), + [anon_sym_BANG_TILDE2] = ACTIONS(2662), + [anon_sym_like2] = ACTIONS(2662), + [anon_sym_not_DASHlike2] = ACTIONS(2662), + [anon_sym_STAR_STAR2] = ACTIONS(2662), + [anon_sym_PLUS_PLUS2] = ACTIONS(2662), + [anon_sym_SLASH2] = ACTIONS(2664), + [anon_sym_mod2] = ACTIONS(2662), + [anon_sym_SLASH_SLASH2] = ACTIONS(2662), + [anon_sym_PLUS2] = ACTIONS(2664), + [anon_sym_bit_DASHshl2] = ACTIONS(2662), + [anon_sym_bit_DASHshr2] = ACTIONS(2662), + [anon_sym_bit_DASHand2] = ACTIONS(2662), + [anon_sym_bit_DASHxor2] = ACTIONS(2662), + [anon_sym_bit_DASHor2] = ACTIONS(2662), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(978)] = { - [aux_sym__repeat_newline] = STATE(4123), - [sym__match_pattern_expression] = STATE(4388), - [sym__match_pattern_value] = STATE(4618), - [sym__match_pattern_list_body] = STATE(4640), - [sym__match_pattern_list] = STATE(4619), - [sym__match_pattern_rest] = STATE(5232), - [sym__match_pattern_record] = STATE(4622), - [sym_expr_parenthesized] = STATE(3839), - [sym_val_range] = STATE(4618), - [sym__val_range] = STATE(5078), - [sym_val_nothing] = STATE(4622), - [sym_val_bool] = STATE(4190), - [sym_val_variable] = STATE(3841), - [sym_val_number] = STATE(4622), - [sym__val_number_decimal] = STATE(3591), - [sym__val_number] = STATE(4361), - [sym_val_duration] = STATE(4622), - [sym_val_filesize] = STATE(4622), - [sym_val_binary] = STATE(4622), - [sym_val_string] = STATE(4622), - [sym__raw_str] = STATE(3638), - [sym__str_double_quotes] = STATE(3638), - [sym__str_single_quotes] = STATE(3638), - [sym__str_back_ticks] = STATE(3638), - [sym_val_list] = STATE(4890), - [sym__table_head] = STATE(3730), - [sym_val_table] = STATE(4622), - [sym__unquoted_in_list] = STATE(4388), - [sym__unquoted_anonymous_prefix] = STATE(5078), - [sym_comment] = STATE(978), - [aux_sym__types_body_repeat1] = STATE(1395), - [aux_sym_parameter_repeat2] = STATE(4037), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1423), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [anon_sym_null] = ACTIONS(1376), - [aux_sym_cmd_identifier_token3] = ACTIONS(1378), - [aux_sym_cmd_identifier_token4] = ACTIONS(1378), - [aux_sym_cmd_identifier_token5] = ACTIONS(1378), + [STATE(1020)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1020), + [anon_sym_in] = ACTIONS(2644), [sym__newline] = ACTIONS(2644), - [anon_sym_LBRACK] = ACTIONS(2646), - [anon_sym_RBRACK] = ACTIONS(2648), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_DOLLAR] = ACTIONS(2650), - [anon_sym_LBRACE] = ACTIONS(2652), - [anon_sym_DOT_DOT] = ACTIONS(1394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), - [anon_sym_DOT_DOT_LT] = ACTIONS(1396), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [aux_sym__val_number_decimal_token3] = ACTIONS(1402), - [aux_sym__val_number_decimal_token4] = ACTIONS(1402), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(2654), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(2644), + [anon_sym_PIPE] = ACTIONS(2644), + [anon_sym_err_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_GT_PIPE] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2644), + [anon_sym_RPAREN] = ACTIONS(2644), + [anon_sym_GT2] = ACTIONS(2646), + [anon_sym_DASH2] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_STAR2] = ACTIONS(2646), + [anon_sym_and2] = ACTIONS(2644), + [anon_sym_xor2] = ACTIONS(2644), + [anon_sym_or2] = ACTIONS(2644), + [anon_sym_not_DASHin2] = ACTIONS(2644), + [anon_sym_has2] = ACTIONS(2644), + [anon_sym_not_DASHhas2] = ACTIONS(2644), + [anon_sym_starts_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2644), + [anon_sym_ends_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2644), + [anon_sym_EQ_EQ2] = ACTIONS(2644), + [anon_sym_BANG_EQ2] = ACTIONS(2644), + [anon_sym_LT2] = ACTIONS(2646), + [anon_sym_LT_EQ2] = ACTIONS(2644), + [anon_sym_GT_EQ2] = ACTIONS(2644), + [anon_sym_EQ_TILDE2] = ACTIONS(2644), + [anon_sym_BANG_TILDE2] = ACTIONS(2644), + [anon_sym_like2] = ACTIONS(2644), + [anon_sym_not_DASHlike2] = ACTIONS(2644), + [anon_sym_STAR_STAR2] = ACTIONS(2644), + [anon_sym_PLUS_PLUS2] = ACTIONS(2644), + [anon_sym_SLASH2] = ACTIONS(2646), + [anon_sym_mod2] = ACTIONS(2644), + [anon_sym_SLASH_SLASH2] = ACTIONS(2644), + [anon_sym_PLUS2] = ACTIONS(2646), + [anon_sym_bit_DASHshl2] = ACTIONS(2644), + [anon_sym_bit_DASHshr2] = ACTIONS(2644), + [anon_sym_bit_DASHand2] = ACTIONS(2644), + [anon_sym_bit_DASHxor2] = ACTIONS(2644), + [anon_sym_bit_DASHor2] = ACTIONS(2644), + [anon_sym_err_GT] = ACTIONS(2646), + [anon_sym_out_GT] = ACTIONS(2646), + [anon_sym_e_GT] = ACTIONS(2646), + [anon_sym_o_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT] = ACTIONS(2646), + [anon_sym_err_GT_GT] = ACTIONS(2644), + [anon_sym_out_GT_GT] = ACTIONS(2644), + [anon_sym_e_GT_GT] = ACTIONS(2644), + [anon_sym_o_GT_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2644), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(979)] = { - [aux_sym__repeat_newline] = STATE(1045), - [sym_comment] = STATE(979), + [STATE(1021)] = { + [aux_sym__repeat_newline] = STATE(1062), + [sym_comment] = STATE(1021), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1022)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1022), [anon_sym_in] = ACTIONS(2666), [sym__newline] = ACTIONS(2666), [anon_sym_SEMI] = ACTIONS(2666), @@ -120268,1097 +123227,893 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(980)] = { - [sym_comment] = STATE(980), - [aux_sym_cmd_identifier_token2] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(2564), - [sym__newline] = ACTIONS(2562), - [anon_sym_SEMI] = ACTIONS(2562), - [anon_sym_PIPE] = ACTIONS(2562), - [anon_sym_err_GT_PIPE] = ACTIONS(2562), - [anon_sym_out_GT_PIPE] = ACTIONS(2562), - [anon_sym_e_GT_PIPE] = ACTIONS(2562), - [anon_sym_o_GT_PIPE] = ACTIONS(2562), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2562), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2562), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2562), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2562), - [anon_sym_RPAREN] = ACTIONS(2562), - [anon_sym_GT2] = ACTIONS(2564), - [anon_sym_DASH2] = ACTIONS(2564), - [anon_sym_RBRACE] = ACTIONS(2562), - [anon_sym_STAR2] = ACTIONS(2564), - [anon_sym_and2] = ACTIONS(2564), - [anon_sym_xor2] = ACTIONS(2564), - [anon_sym_or2] = ACTIONS(2564), - [anon_sym_not_DASHin2] = ACTIONS(2564), - [anon_sym_has2] = ACTIONS(2564), - [anon_sym_not_DASHhas2] = ACTIONS(2564), - [anon_sym_starts_DASHwith2] = ACTIONS(2564), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2564), - [anon_sym_ends_DASHwith2] = ACTIONS(2564), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2564), - [anon_sym_EQ_EQ2] = ACTIONS(2562), - [anon_sym_BANG_EQ2] = ACTIONS(2562), - [anon_sym_LT2] = ACTIONS(2564), - [anon_sym_LT_EQ2] = ACTIONS(2562), - [anon_sym_GT_EQ2] = ACTIONS(2562), - [anon_sym_EQ_TILDE2] = ACTIONS(2562), - [anon_sym_BANG_TILDE2] = ACTIONS(2564), - [anon_sym_like2] = ACTIONS(2564), - [anon_sym_not_DASHlike2] = ACTIONS(2564), - [anon_sym_STAR_STAR2] = ACTIONS(2564), - [anon_sym_PLUS_PLUS2] = ACTIONS(2564), - [anon_sym_SLASH2] = ACTIONS(2564), - [anon_sym_mod2] = ACTIONS(2564), - [anon_sym_SLASH_SLASH2] = ACTIONS(2564), - [anon_sym_PLUS2] = ACTIONS(2564), - [anon_sym_bit_DASHshl2] = ACTIONS(2564), - [anon_sym_bit_DASHshr2] = ACTIONS(2564), - [anon_sym_bit_DASHand2] = ACTIONS(2564), - [anon_sym_bit_DASHxor2] = ACTIONS(2564), - [anon_sym_bit_DASHor2] = ACTIONS(2564), - [anon_sym_err_GT] = ACTIONS(2564), - [anon_sym_out_GT] = ACTIONS(2564), - [anon_sym_e_GT] = ACTIONS(2564), - [anon_sym_o_GT] = ACTIONS(2564), - [anon_sym_err_PLUSout_GT] = ACTIONS(2564), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2564), - [anon_sym_o_PLUSe_GT] = ACTIONS(2564), - [anon_sym_e_PLUSo_GT] = ACTIONS(2564), - [anon_sym_err_GT_GT] = ACTIONS(2562), - [anon_sym_out_GT_GT] = ACTIONS(2562), - [anon_sym_e_GT_GT] = ACTIONS(2562), - [anon_sym_o_GT_GT] = ACTIONS(2562), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2562), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2562), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2562), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2562), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(981)] = { - [aux_sym__repeat_newline] = STATE(1046), - [sym_comment] = STATE(981), - [anon_sym_in] = ACTIONS(2198), - [sym__newline] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_err_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_GT_PIPE] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_GT2] = ACTIONS(2200), - [anon_sym_DASH2] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_STAR2] = ACTIONS(2200), - [anon_sym_and2] = ACTIONS(2198), - [anon_sym_xor2] = ACTIONS(2198), - [anon_sym_or2] = ACTIONS(2198), - [anon_sym_not_DASHin2] = ACTIONS(2198), - [anon_sym_has2] = ACTIONS(2198), - [anon_sym_not_DASHhas2] = ACTIONS(2198), - [anon_sym_starts_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), - [anon_sym_ends_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), - [anon_sym_EQ_EQ2] = ACTIONS(2198), - [anon_sym_BANG_EQ2] = ACTIONS(2198), - [anon_sym_LT2] = ACTIONS(2200), - [anon_sym_LT_EQ2] = ACTIONS(2198), - [anon_sym_GT_EQ2] = ACTIONS(2198), - [anon_sym_EQ_TILDE2] = ACTIONS(2198), - [anon_sym_BANG_TILDE2] = ACTIONS(2198), - [anon_sym_like2] = ACTIONS(2198), - [anon_sym_not_DASHlike2] = ACTIONS(2198), - [anon_sym_STAR_STAR2] = ACTIONS(2198), - [anon_sym_PLUS_PLUS2] = ACTIONS(2198), - [anon_sym_SLASH2] = ACTIONS(2200), - [anon_sym_mod2] = ACTIONS(2198), - [anon_sym_SLASH_SLASH2] = ACTIONS(2198), - [anon_sym_PLUS2] = ACTIONS(2200), - [anon_sym_bit_DASHshl2] = ACTIONS(2198), - [anon_sym_bit_DASHshr2] = ACTIONS(2198), - [anon_sym_bit_DASHand2] = ACTIONS(2198), - [anon_sym_bit_DASHxor2] = ACTIONS(2198), - [anon_sym_bit_DASHor2] = ACTIONS(2198), - [anon_sym_err_GT] = ACTIONS(2200), - [anon_sym_out_GT] = ACTIONS(2200), - [anon_sym_e_GT] = ACTIONS(2200), - [anon_sym_o_GT] = ACTIONS(2200), - [anon_sym_err_PLUSout_GT] = ACTIONS(2200), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), - [anon_sym_o_PLUSe_GT] = ACTIONS(2200), - [anon_sym_e_PLUSo_GT] = ACTIONS(2200), - [anon_sym_err_GT_GT] = ACTIONS(2198), - [anon_sym_out_GT_GT] = ACTIONS(2198), - [anon_sym_e_GT_GT] = ACTIONS(2198), - [anon_sym_o_GT_GT] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(982)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(982), - [anon_sym_in] = ACTIONS(2658), - [sym__newline] = ACTIONS(2658), - [anon_sym_SEMI] = ACTIONS(2658), - [anon_sym_PIPE] = ACTIONS(2658), - [anon_sym_err_GT_PIPE] = ACTIONS(2658), - [anon_sym_out_GT_PIPE] = ACTIONS(2658), - [anon_sym_e_GT_PIPE] = ACTIONS(2658), - [anon_sym_o_GT_PIPE] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2658), - [anon_sym_RPAREN] = ACTIONS(2658), - [anon_sym_GT2] = ACTIONS(2660), - [anon_sym_DASH2] = ACTIONS(2658), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_STAR2] = ACTIONS(2660), - [anon_sym_and2] = ACTIONS(2658), - [anon_sym_xor2] = ACTIONS(2658), - [anon_sym_or2] = ACTIONS(2658), - [anon_sym_not_DASHin2] = ACTIONS(2658), - [anon_sym_has2] = ACTIONS(2658), - [anon_sym_not_DASHhas2] = ACTIONS(2658), - [anon_sym_starts_DASHwith2] = ACTIONS(2658), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2658), - [anon_sym_ends_DASHwith2] = ACTIONS(2658), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2658), - [anon_sym_EQ_EQ2] = ACTIONS(2658), - [anon_sym_BANG_EQ2] = ACTIONS(2658), - [anon_sym_LT2] = ACTIONS(2660), - [anon_sym_LT_EQ2] = ACTIONS(2658), - [anon_sym_GT_EQ2] = ACTIONS(2658), - [anon_sym_EQ_TILDE2] = ACTIONS(2658), - [anon_sym_BANG_TILDE2] = ACTIONS(2658), - [anon_sym_like2] = ACTIONS(2658), - [anon_sym_not_DASHlike2] = ACTIONS(2658), - [anon_sym_STAR_STAR2] = ACTIONS(2658), - [anon_sym_PLUS_PLUS2] = ACTIONS(2658), - [anon_sym_SLASH2] = ACTIONS(2660), - [anon_sym_mod2] = ACTIONS(2658), - [anon_sym_SLASH_SLASH2] = ACTIONS(2658), - [anon_sym_PLUS2] = ACTIONS(2660), - [anon_sym_bit_DASHshl2] = ACTIONS(2658), - [anon_sym_bit_DASHshr2] = ACTIONS(2658), - [anon_sym_bit_DASHand2] = ACTIONS(2658), - [anon_sym_bit_DASHxor2] = ACTIONS(2658), - [anon_sym_bit_DASHor2] = ACTIONS(2658), - [anon_sym_err_GT] = ACTIONS(2660), - [anon_sym_out_GT] = ACTIONS(2660), - [anon_sym_e_GT] = ACTIONS(2660), - [anon_sym_o_GT] = ACTIONS(2660), - [anon_sym_err_PLUSout_GT] = ACTIONS(2660), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2660), - [anon_sym_o_PLUSe_GT] = ACTIONS(2660), - [anon_sym_e_PLUSo_GT] = ACTIONS(2660), - [anon_sym_err_GT_GT] = ACTIONS(2658), - [anon_sym_out_GT_GT] = ACTIONS(2658), - [anon_sym_e_GT_GT] = ACTIONS(2658), - [anon_sym_o_GT_GT] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2658), + [STATE(1023)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1023), + [anon_sym_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(983)] = { - [aux_sym__repeat_newline] = STATE(1050), - [sym_comment] = STATE(983), - [anon_sym_in] = ACTIONS(2198), - [sym__newline] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_err_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_GT_PIPE] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_GT2] = ACTIONS(2200), - [anon_sym_DASH2] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_STAR2] = ACTIONS(2200), - [anon_sym_and2] = ACTIONS(2198), - [anon_sym_xor2] = ACTIONS(2198), - [anon_sym_or2] = ACTIONS(2198), - [anon_sym_not_DASHin2] = ACTIONS(2198), - [anon_sym_has2] = ACTIONS(2198), - [anon_sym_not_DASHhas2] = ACTIONS(2198), - [anon_sym_starts_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), - [anon_sym_ends_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), - [anon_sym_EQ_EQ2] = ACTIONS(2198), - [anon_sym_BANG_EQ2] = ACTIONS(2198), - [anon_sym_LT2] = ACTIONS(2200), - [anon_sym_LT_EQ2] = ACTIONS(2198), - [anon_sym_GT_EQ2] = ACTIONS(2198), - [anon_sym_EQ_TILDE2] = ACTIONS(2198), - [anon_sym_BANG_TILDE2] = ACTIONS(2198), - [anon_sym_like2] = ACTIONS(2198), - [anon_sym_not_DASHlike2] = ACTIONS(2198), - [anon_sym_STAR_STAR2] = ACTIONS(2198), - [anon_sym_PLUS_PLUS2] = ACTIONS(2198), - [anon_sym_SLASH2] = ACTIONS(2200), - [anon_sym_mod2] = ACTIONS(2198), - [anon_sym_SLASH_SLASH2] = ACTIONS(2198), - [anon_sym_PLUS2] = ACTIONS(2200), - [anon_sym_bit_DASHshl2] = ACTIONS(2198), - [anon_sym_bit_DASHshr2] = ACTIONS(2198), - [anon_sym_bit_DASHand2] = ACTIONS(2198), - [anon_sym_bit_DASHxor2] = ACTIONS(2198), - [anon_sym_bit_DASHor2] = ACTIONS(2198), - [anon_sym_err_GT] = ACTIONS(2200), - [anon_sym_out_GT] = ACTIONS(2200), - [anon_sym_e_GT] = ACTIONS(2200), - [anon_sym_o_GT] = ACTIONS(2200), - [anon_sym_err_PLUSout_GT] = ACTIONS(2200), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), - [anon_sym_o_PLUSe_GT] = ACTIONS(2200), - [anon_sym_e_PLUSo_GT] = ACTIONS(2200), - [anon_sym_err_GT_GT] = ACTIONS(2198), - [anon_sym_out_GT_GT] = ACTIONS(2198), - [anon_sym_e_GT_GT] = ACTIONS(2198), - [anon_sym_o_GT_GT] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), + [STATE(1024)] = { + [aux_sym__repeat_newline] = STATE(1063), + [sym_comment] = STATE(1024), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [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), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(984)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(984), - [anon_sym_in] = ACTIONS(2658), - [sym__newline] = ACTIONS(2658), - [anon_sym_SEMI] = ACTIONS(2658), - [anon_sym_PIPE] = ACTIONS(2658), - [anon_sym_err_GT_PIPE] = ACTIONS(2658), - [anon_sym_out_GT_PIPE] = ACTIONS(2658), - [anon_sym_e_GT_PIPE] = ACTIONS(2658), - [anon_sym_o_GT_PIPE] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2658), - [anon_sym_RPAREN] = ACTIONS(2658), - [anon_sym_GT2] = ACTIONS(2660), - [anon_sym_DASH2] = ACTIONS(2658), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_STAR2] = ACTIONS(2660), - [anon_sym_and2] = ACTIONS(2658), - [anon_sym_xor2] = ACTIONS(2658), - [anon_sym_or2] = ACTIONS(2658), - [anon_sym_not_DASHin2] = ACTIONS(2658), - [anon_sym_has2] = ACTIONS(2658), - [anon_sym_not_DASHhas2] = ACTIONS(2658), - [anon_sym_starts_DASHwith2] = ACTIONS(2658), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2658), - [anon_sym_ends_DASHwith2] = ACTIONS(2658), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2658), - [anon_sym_EQ_EQ2] = ACTIONS(2658), - [anon_sym_BANG_EQ2] = ACTIONS(2658), - [anon_sym_LT2] = ACTIONS(2660), - [anon_sym_LT_EQ2] = ACTIONS(2658), - [anon_sym_GT_EQ2] = ACTIONS(2658), - [anon_sym_EQ_TILDE2] = ACTIONS(2658), - [anon_sym_BANG_TILDE2] = ACTIONS(2658), - [anon_sym_like2] = ACTIONS(2658), - [anon_sym_not_DASHlike2] = ACTIONS(2658), - [anon_sym_STAR_STAR2] = ACTIONS(2658), - [anon_sym_PLUS_PLUS2] = ACTIONS(2658), - [anon_sym_SLASH2] = ACTIONS(2660), - [anon_sym_mod2] = ACTIONS(2658), - [anon_sym_SLASH_SLASH2] = ACTIONS(2658), - [anon_sym_PLUS2] = ACTIONS(2660), - [anon_sym_bit_DASHshl2] = ACTIONS(2658), - [anon_sym_bit_DASHshr2] = ACTIONS(2658), - [anon_sym_bit_DASHand2] = ACTIONS(2658), - [anon_sym_bit_DASHxor2] = ACTIONS(2658), - [anon_sym_bit_DASHor2] = ACTIONS(2658), - [anon_sym_err_GT] = ACTIONS(2660), - [anon_sym_out_GT] = ACTIONS(2660), - [anon_sym_e_GT] = ACTIONS(2660), - [anon_sym_o_GT] = ACTIONS(2660), - [anon_sym_err_PLUSout_GT] = ACTIONS(2660), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2660), - [anon_sym_o_PLUSe_GT] = ACTIONS(2660), - [anon_sym_e_PLUSo_GT] = ACTIONS(2660), - [anon_sym_err_GT_GT] = ACTIONS(2658), - [anon_sym_out_GT_GT] = ACTIONS(2658), - [anon_sym_e_GT_GT] = ACTIONS(2658), - [anon_sym_o_GT_GT] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2658), + [STATE(1025)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1025), + [anon_sym_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(985)] = { - [aux_sym__repeat_newline] = STATE(991), - [sym_comment] = STATE(985), - [anon_sym_in] = ACTIONS(2198), - [sym__newline] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_err_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_GT_PIPE] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_GT2] = ACTIONS(2200), - [anon_sym_DASH2] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_STAR2] = ACTIONS(2200), - [anon_sym_and2] = ACTIONS(2198), - [anon_sym_xor2] = ACTIONS(2198), - [anon_sym_or2] = ACTIONS(2198), - [anon_sym_not_DASHin2] = ACTIONS(2198), - [anon_sym_has2] = ACTIONS(2198), - [anon_sym_not_DASHhas2] = ACTIONS(2198), - [anon_sym_starts_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), - [anon_sym_ends_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), - [anon_sym_EQ_EQ2] = ACTIONS(2198), - [anon_sym_BANG_EQ2] = ACTIONS(2198), - [anon_sym_LT2] = ACTIONS(2200), - [anon_sym_LT_EQ2] = ACTIONS(2198), - [anon_sym_GT_EQ2] = ACTIONS(2198), - [anon_sym_EQ_TILDE2] = ACTIONS(2198), - [anon_sym_BANG_TILDE2] = ACTIONS(2198), - [anon_sym_like2] = ACTIONS(2198), - [anon_sym_not_DASHlike2] = ACTIONS(2198), - [anon_sym_STAR_STAR2] = ACTIONS(2198), - [anon_sym_PLUS_PLUS2] = ACTIONS(2198), - [anon_sym_SLASH2] = ACTIONS(2200), - [anon_sym_mod2] = ACTIONS(2198), - [anon_sym_SLASH_SLASH2] = ACTIONS(2198), - [anon_sym_PLUS2] = ACTIONS(2200), - [anon_sym_bit_DASHshl2] = ACTIONS(2198), - [anon_sym_bit_DASHshr2] = ACTIONS(2198), - [anon_sym_bit_DASHand2] = ACTIONS(2198), - [anon_sym_bit_DASHxor2] = ACTIONS(2198), - [anon_sym_bit_DASHor2] = ACTIONS(2198), - [anon_sym_err_GT] = ACTIONS(2200), - [anon_sym_out_GT] = ACTIONS(2200), - [anon_sym_e_GT] = ACTIONS(2200), - [anon_sym_o_GT] = ACTIONS(2200), - [anon_sym_err_PLUSout_GT] = ACTIONS(2200), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), - [anon_sym_o_PLUSe_GT] = ACTIONS(2200), - [anon_sym_e_PLUSo_GT] = ACTIONS(2200), - [anon_sym_err_GT_GT] = ACTIONS(2198), - [anon_sym_out_GT_GT] = ACTIONS(2198), - [anon_sym_e_GT_GT] = ACTIONS(2198), - [anon_sym_o_GT_GT] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), + [STATE(1026)] = { + [sym_expr_unary] = STATE(2870), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_parenthesized] = STATE(2624), + [sym_val_range] = STATE(2870), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(2870), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(2692), + [sym_val_variable] = STATE(2606), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(2371), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(2679), + [sym__unquoted_with_expr] = STATE(2872), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(1026), + [anon_sym_true] = ACTIONS(2670), + [anon_sym_false] = ACTIONS(2670), + [anon_sym_null] = ACTIONS(2672), + [aux_sym_cmd_identifier_token3] = ACTIONS(2674), + [aux_sym_cmd_identifier_token4] = ACTIONS(2674), + [aux_sym_cmd_identifier_token5] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2676), + [anon_sym_LPAREN] = ACTIONS(2678), + [anon_sym_DOLLAR] = ACTIONS(2680), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(2682), + [anon_sym_DOT_DOT] = ACTIONS(2684), + [aux_sym_expr_unary_token1] = ACTIONS(2686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2688), + [anon_sym_DOT_DOT_LT] = ACTIONS(2688), + [aux_sym__val_number_decimal_token1] = ACTIONS(2690), + [aux_sym__val_number_decimal_token2] = ACTIONS(2692), + [aux_sym__val_number_decimal_token3] = ACTIONS(2694), + [aux_sym__val_number_decimal_token4] = ACTIONS(2694), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2696), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(986)] = { - [aux_sym__repeat_newline] = STATE(1020), - [sym_comment] = STATE(986), - [anon_sym_in] = ACTIONS(2279), - [sym__newline] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_err_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_GT_PIPE] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_GT2] = ACTIONS(2281), - [anon_sym_DASH2] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_STAR2] = ACTIONS(2281), - [anon_sym_and2] = ACTIONS(2279), - [anon_sym_xor2] = ACTIONS(2279), - [anon_sym_or2] = ACTIONS(2279), - [anon_sym_not_DASHin2] = ACTIONS(2279), - [anon_sym_has2] = ACTIONS(2279), - [anon_sym_not_DASHhas2] = ACTIONS(2279), - [anon_sym_starts_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), - [anon_sym_ends_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), - [anon_sym_EQ_EQ2] = ACTIONS(2279), - [anon_sym_BANG_EQ2] = ACTIONS(2279), - [anon_sym_LT2] = ACTIONS(2281), - [anon_sym_LT_EQ2] = ACTIONS(2279), - [anon_sym_GT_EQ2] = ACTIONS(2279), - [anon_sym_EQ_TILDE2] = ACTIONS(2279), - [anon_sym_BANG_TILDE2] = ACTIONS(2279), - [anon_sym_like2] = ACTIONS(2279), - [anon_sym_not_DASHlike2] = ACTIONS(2279), - [anon_sym_STAR_STAR2] = ACTIONS(2279), - [anon_sym_PLUS_PLUS2] = ACTIONS(2279), - [anon_sym_SLASH2] = ACTIONS(2281), - [anon_sym_mod2] = ACTIONS(2279), - [anon_sym_SLASH_SLASH2] = ACTIONS(2279), - [anon_sym_PLUS2] = ACTIONS(2281), - [anon_sym_bit_DASHshl2] = ACTIONS(2279), - [anon_sym_bit_DASHshr2] = ACTIONS(2279), - [anon_sym_bit_DASHand2] = ACTIONS(2279), - [anon_sym_bit_DASHxor2] = ACTIONS(2279), - [anon_sym_bit_DASHor2] = ACTIONS(2279), - [anon_sym_err_GT] = ACTIONS(2281), - [anon_sym_out_GT] = ACTIONS(2281), - [anon_sym_e_GT] = ACTIONS(2281), - [anon_sym_o_GT] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT] = ACTIONS(2281), - [anon_sym_err_GT_GT] = ACTIONS(2279), - [anon_sym_out_GT_GT] = ACTIONS(2279), - [anon_sym_e_GT_GT] = ACTIONS(2279), - [anon_sym_o_GT_GT] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), + [STATE(1027)] = { + [sym_expr_unary] = STATE(2918), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_parenthesized] = STATE(2616), + [sym_val_range] = STATE(2918), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(2918), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(2692), + [sym_val_variable] = STATE(2606), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(2371), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(2673), + [sym__unquoted_with_expr] = STATE(2894), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(1027), + [anon_sym_true] = ACTIONS(2670), + [anon_sym_false] = ACTIONS(2670), + [anon_sym_null] = ACTIONS(2672), + [aux_sym_cmd_identifier_token3] = ACTIONS(2674), + [aux_sym_cmd_identifier_token4] = ACTIONS(2674), + [aux_sym_cmd_identifier_token5] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2676), + [anon_sym_LPAREN] = ACTIONS(2678), + [anon_sym_DOLLAR] = ACTIONS(2680), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(2682), + [anon_sym_DOT_DOT] = ACTIONS(2684), + [aux_sym_expr_unary_token1] = ACTIONS(2686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2688), + [anon_sym_DOT_DOT_LT] = ACTIONS(2688), + [aux_sym__val_number_decimal_token1] = ACTIONS(2690), + [aux_sym__val_number_decimal_token2] = ACTIONS(2692), + [aux_sym__val_number_decimal_token3] = ACTIONS(2694), + [aux_sym__val_number_decimal_token4] = ACTIONS(2694), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2696), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(987)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(987), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [STATE(1028)] = { + [sym_expr_unary] = STATE(2895), + [sym__expr_unary_minus] = STATE(1274), + [sym_expr_parenthesized] = STATE(2586), + [sym_val_range] = STATE(2895), + [sym__val_range] = STATE(4564), + [sym__value] = STATE(2895), + [sym_val_nothing] = STATE(1311), + [sym_val_bool] = STATE(2692), + [sym_val_variable] = STATE(2606), + [sym_val_cellpath] = STATE(1311), + [sym_val_number] = STATE(1311), + [sym__val_number_decimal] = STATE(2371), + [sym__val_number] = STATE(1305), + [sym_val_duration] = STATE(1311), + [sym_val_filesize] = STATE(1311), + [sym_val_binary] = STATE(1311), + [sym_val_string] = STATE(1311), + [sym__raw_str] = STATE(501), + [sym__str_double_quotes] = STATE(501), + [sym__str_single_quotes] = STATE(501), + [sym__str_back_ticks] = STATE(501), + [sym_val_interpolated] = STATE(1311), + [sym__inter_single_quotes] = STATE(1308), + [sym__inter_double_quotes] = STATE(1317), + [sym_val_list] = STATE(1311), + [sym_val_record] = STATE(1311), + [sym_val_table] = STATE(1311), + [sym_val_closure] = STATE(1311), + [sym_unquoted] = STATE(2637), + [sym__unquoted_with_expr] = STATE(2896), + [sym__unquoted_anonymous_prefix] = STATE(4564), + [sym_comment] = STATE(1028), + [anon_sym_true] = ACTIONS(2670), + [anon_sym_false] = ACTIONS(2670), + [anon_sym_null] = ACTIONS(2672), + [aux_sym_cmd_identifier_token3] = ACTIONS(2674), + [aux_sym_cmd_identifier_token4] = ACTIONS(2674), + [aux_sym_cmd_identifier_token5] = ACTIONS(2674), + [anon_sym_LBRACK] = ACTIONS(2676), + [anon_sym_LPAREN] = ACTIONS(2678), + [anon_sym_DOLLAR] = ACTIONS(2680), + [anon_sym_DASH2] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(2682), + [anon_sym_DOT_DOT] = ACTIONS(2684), + [aux_sym_expr_unary_token1] = ACTIONS(2686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2688), + [anon_sym_DOT_DOT_LT] = ACTIONS(2688), + [aux_sym__val_number_decimal_token1] = ACTIONS(2690), + [aux_sym__val_number_decimal_token2] = ACTIONS(2692), + [aux_sym__val_number_decimal_token3] = ACTIONS(2694), + [aux_sym__val_number_decimal_token4] = ACTIONS(2694), + [aux_sym__val_number_token1] = ACTIONS(83), + [aux_sym__val_number_token2] = ACTIONS(83), + [aux_sym__val_number_token3] = ACTIONS(83), + [anon_sym_0b] = ACTIONS(85), + [anon_sym_0o] = ACTIONS(87), + [anon_sym_0x] = ACTIONS(87), + [sym_val_date] = ACTIONS(2696), + [anon_sym_DQUOTE] = ACTIONS(91), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [aux_sym_unquoted_token1] = ACTIONS(2372), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(105), }, - [STATE(988)] = { - [sym_comment] = STATE(988), - [aux_sym_cmd_identifier_token2] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(793), - [sym__newline] = ACTIONS(890), - [anon_sym_SEMI] = ACTIONS(890), - [anon_sym_PIPE] = ACTIONS(890), - [anon_sym_err_GT_PIPE] = ACTIONS(890), - [anon_sym_out_GT_PIPE] = ACTIONS(890), - [anon_sym_e_GT_PIPE] = ACTIONS(890), - [anon_sym_o_GT_PIPE] = ACTIONS(890), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(890), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(890), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(890), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(890), - [anon_sym_RPAREN] = ACTIONS(890), - [anon_sym_GT2] = ACTIONS(793), - [anon_sym_DASH2] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(890), - [anon_sym_STAR2] = ACTIONS(793), - [anon_sym_and2] = ACTIONS(793), - [anon_sym_xor2] = ACTIONS(793), - [anon_sym_or2] = ACTIONS(793), - [anon_sym_not_DASHin2] = ACTIONS(793), - [anon_sym_has2] = ACTIONS(793), - [anon_sym_not_DASHhas2] = ACTIONS(793), - [anon_sym_starts_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), - [anon_sym_ends_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), - [anon_sym_EQ_EQ2] = ACTIONS(890), - [anon_sym_BANG_EQ2] = ACTIONS(890), - [anon_sym_LT2] = ACTIONS(793), - [anon_sym_LT_EQ2] = ACTIONS(890), - [anon_sym_GT_EQ2] = ACTIONS(890), - [anon_sym_EQ_TILDE2] = ACTIONS(890), - [anon_sym_BANG_TILDE2] = ACTIONS(793), - [anon_sym_like2] = ACTIONS(793), - [anon_sym_not_DASHlike2] = ACTIONS(793), - [anon_sym_STAR_STAR2] = ACTIONS(793), - [anon_sym_PLUS_PLUS2] = ACTIONS(793), - [anon_sym_SLASH2] = ACTIONS(793), - [anon_sym_mod2] = ACTIONS(793), - [anon_sym_SLASH_SLASH2] = ACTIONS(793), - [anon_sym_PLUS2] = ACTIONS(793), - [anon_sym_bit_DASHshl2] = ACTIONS(793), - [anon_sym_bit_DASHshr2] = ACTIONS(793), - [anon_sym_bit_DASHand2] = ACTIONS(793), - [anon_sym_bit_DASHxor2] = ACTIONS(793), - [anon_sym_bit_DASHor2] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [anon_sym_err_GT_GT] = ACTIONS(890), - [anon_sym_out_GT_GT] = ACTIONS(890), - [anon_sym_e_GT_GT] = ACTIONS(890), - [anon_sym_o_GT_GT] = ACTIONS(890), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(890), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(890), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(890), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(890), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(989)] = { - [aux_sym__repeat_newline] = STATE(1027), - [sym_comment] = STATE(989), - [anon_sym_in] = ACTIONS(2279), - [sym__newline] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_err_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_GT_PIPE] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_GT2] = ACTIONS(2281), - [anon_sym_DASH2] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_STAR2] = ACTIONS(2281), - [anon_sym_and2] = ACTIONS(2279), - [anon_sym_xor2] = ACTIONS(2279), - [anon_sym_or2] = ACTIONS(2279), - [anon_sym_not_DASHin2] = ACTIONS(2279), - [anon_sym_has2] = ACTIONS(2279), - [anon_sym_not_DASHhas2] = ACTIONS(2279), - [anon_sym_starts_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), - [anon_sym_ends_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), - [anon_sym_EQ_EQ2] = ACTIONS(2279), - [anon_sym_BANG_EQ2] = ACTIONS(2279), - [anon_sym_LT2] = ACTIONS(2281), - [anon_sym_LT_EQ2] = ACTIONS(2279), - [anon_sym_GT_EQ2] = ACTIONS(2279), - [anon_sym_EQ_TILDE2] = ACTIONS(2279), - [anon_sym_BANG_TILDE2] = ACTIONS(2279), - [anon_sym_like2] = ACTIONS(2279), - [anon_sym_not_DASHlike2] = ACTIONS(2279), - [anon_sym_STAR_STAR2] = ACTIONS(2279), - [anon_sym_PLUS_PLUS2] = ACTIONS(2279), - [anon_sym_SLASH2] = ACTIONS(2281), - [anon_sym_mod2] = ACTIONS(2279), - [anon_sym_SLASH_SLASH2] = ACTIONS(2279), - [anon_sym_PLUS2] = ACTIONS(2281), - [anon_sym_bit_DASHshl2] = ACTIONS(2279), - [anon_sym_bit_DASHshr2] = ACTIONS(2279), - [anon_sym_bit_DASHand2] = ACTIONS(2279), - [anon_sym_bit_DASHxor2] = ACTIONS(2279), - [anon_sym_bit_DASHor2] = ACTIONS(2279), - [anon_sym_err_GT] = ACTIONS(2281), - [anon_sym_out_GT] = ACTIONS(2281), - [anon_sym_e_GT] = ACTIONS(2281), - [anon_sym_o_GT] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT] = ACTIONS(2281), - [anon_sym_err_GT_GT] = ACTIONS(2279), - [anon_sym_out_GT_GT] = ACTIONS(2279), - [anon_sym_e_GT_GT] = ACTIONS(2279), - [anon_sym_o_GT_GT] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), + [STATE(1029)] = { + [aux_sym__repeat_newline] = STATE(1064), + [sym_comment] = STATE(1029), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [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), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(990)] = { - [sym_comment] = STATE(990), - [ts_builtin_sym_end] = ACTIONS(1728), - [anon_sym_in] = ACTIONS(1728), - [sym__newline] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_err_GT_PIPE] = ACTIONS(1728), - [anon_sym_out_GT_PIPE] = ACTIONS(1728), - [anon_sym_e_GT_PIPE] = ACTIONS(1728), - [anon_sym_o_GT_PIPE] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1728), - [anon_sym_GT2] = ACTIONS(1730), - [anon_sym_DASH2] = ACTIONS(1728), - [anon_sym_STAR2] = ACTIONS(1730), - [anon_sym_and2] = ACTIONS(1728), - [anon_sym_xor2] = ACTIONS(1728), - [anon_sym_or2] = ACTIONS(1728), - [anon_sym_not_DASHin2] = ACTIONS(1728), - [anon_sym_has2] = ACTIONS(1728), - [anon_sym_not_DASHhas2] = ACTIONS(1728), - [anon_sym_starts_DASHwith2] = ACTIONS(1728), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1728), - [anon_sym_ends_DASHwith2] = ACTIONS(1728), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1728), - [anon_sym_EQ_EQ2] = ACTIONS(1728), - [anon_sym_BANG_EQ2] = ACTIONS(1728), - [anon_sym_LT2] = ACTIONS(1730), - [anon_sym_LT_EQ2] = ACTIONS(1728), - [anon_sym_GT_EQ2] = ACTIONS(1728), - [anon_sym_EQ_TILDE2] = ACTIONS(1728), - [anon_sym_BANG_TILDE2] = ACTIONS(1728), - [anon_sym_like2] = ACTIONS(1728), - [anon_sym_not_DASHlike2] = ACTIONS(1728), - [anon_sym_STAR_STAR2] = ACTIONS(1728), - [anon_sym_PLUS_PLUS2] = ACTIONS(1728), - [anon_sym_SLASH2] = ACTIONS(1730), - [anon_sym_mod2] = ACTIONS(1728), - [anon_sym_SLASH_SLASH2] = ACTIONS(1728), - [anon_sym_PLUS2] = ACTIONS(1730), - [anon_sym_bit_DASHshl2] = ACTIONS(1728), - [anon_sym_bit_DASHshr2] = ACTIONS(1728), - [anon_sym_bit_DASHand2] = ACTIONS(1728), - [anon_sym_bit_DASHxor2] = ACTIONS(1728), - [anon_sym_bit_DASHor2] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(2674), - [aux_sym__immediate_decimal_token5] = ACTIONS(1876), - [anon_sym_err_GT] = ACTIONS(1730), - [anon_sym_out_GT] = ACTIONS(1730), - [anon_sym_e_GT] = ACTIONS(1730), - [anon_sym_o_GT] = ACTIONS(1730), - [anon_sym_err_PLUSout_GT] = ACTIONS(1730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1730), - [anon_sym_o_PLUSe_GT] = ACTIONS(1730), - [anon_sym_e_PLUSo_GT] = ACTIONS(1730), - [anon_sym_err_GT_GT] = ACTIONS(1728), - [anon_sym_out_GT_GT] = ACTIONS(1728), - [anon_sym_e_GT_GT] = ACTIONS(1728), - [anon_sym_o_GT_GT] = ACTIONS(1728), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1728), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1728), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1728), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1728), + [STATE(1030)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1030), + [anon_sym_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(991)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(991), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [STATE(1031)] = { + [aux_sym__repeat_newline] = STATE(974), + [sym_comment] = STATE(1031), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(992)] = { - [aux_sym__repeat_newline] = STATE(1100), - [sym_comment] = STATE(992), - [anon_sym_in] = ACTIONS(2289), - [sym__newline] = ACTIONS(2289), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_err_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_GT_PIPE] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), - [anon_sym_RPAREN] = ACTIONS(2289), - [anon_sym_GT2] = ACTIONS(2291), - [anon_sym_DASH2] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_STAR2] = ACTIONS(2291), - [anon_sym_and2] = ACTIONS(2289), - [anon_sym_xor2] = ACTIONS(2289), - [anon_sym_or2] = ACTIONS(2289), - [anon_sym_not_DASHin2] = ACTIONS(2289), - [anon_sym_has2] = ACTIONS(2289), - [anon_sym_not_DASHhas2] = ACTIONS(2289), - [anon_sym_starts_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), - [anon_sym_ends_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), - [anon_sym_EQ_EQ2] = ACTIONS(2289), - [anon_sym_BANG_EQ2] = ACTIONS(2289), - [anon_sym_LT2] = ACTIONS(2291), - [anon_sym_LT_EQ2] = ACTIONS(2289), - [anon_sym_GT_EQ2] = ACTIONS(2289), - [anon_sym_EQ_TILDE2] = ACTIONS(2289), - [anon_sym_BANG_TILDE2] = ACTIONS(2289), - [anon_sym_like2] = ACTIONS(2289), - [anon_sym_not_DASHlike2] = ACTIONS(2289), - [anon_sym_STAR_STAR2] = ACTIONS(2289), - [anon_sym_PLUS_PLUS2] = ACTIONS(2289), - [anon_sym_SLASH2] = ACTIONS(2291), - [anon_sym_mod2] = ACTIONS(2289), - [anon_sym_SLASH_SLASH2] = ACTIONS(2289), - [anon_sym_PLUS2] = ACTIONS(2291), - [anon_sym_bit_DASHshl2] = ACTIONS(2289), - [anon_sym_bit_DASHshr2] = ACTIONS(2289), - [anon_sym_bit_DASHand2] = ACTIONS(2289), - [anon_sym_bit_DASHxor2] = ACTIONS(2289), - [anon_sym_bit_DASHor2] = ACTIONS(2289), - [anon_sym_err_GT] = ACTIONS(2291), - [anon_sym_out_GT] = ACTIONS(2291), - [anon_sym_e_GT] = ACTIONS(2291), - [anon_sym_o_GT] = ACTIONS(2291), - [anon_sym_err_PLUSout_GT] = ACTIONS(2291), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), - [anon_sym_o_PLUSe_GT] = ACTIONS(2291), - [anon_sym_e_PLUSo_GT] = ACTIONS(2291), - [anon_sym_err_GT_GT] = ACTIONS(2289), - [anon_sym_out_GT_GT] = ACTIONS(2289), - [anon_sym_e_GT_GT] = ACTIONS(2289), - [anon_sym_o_GT_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), + [STATE(1032)] = { + [aux_sym__repeat_newline] = STATE(1065), + [sym_comment] = STATE(1032), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [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), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(993)] = { - [aux_sym__repeat_newline] = STATE(1103), - [sym_comment] = STATE(993), - [anon_sym_in] = ACTIONS(2676), - [sym__newline] = ACTIONS(2676), - [anon_sym_SEMI] = ACTIONS(2676), - [anon_sym_PIPE] = ACTIONS(2676), - [anon_sym_err_GT_PIPE] = ACTIONS(2676), - [anon_sym_out_GT_PIPE] = ACTIONS(2676), - [anon_sym_e_GT_PIPE] = ACTIONS(2676), - [anon_sym_o_GT_PIPE] = ACTIONS(2676), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), - [anon_sym_RPAREN] = ACTIONS(2676), - [anon_sym_GT2] = ACTIONS(2678), - [anon_sym_DASH2] = ACTIONS(2676), - [anon_sym_LBRACE] = ACTIONS(2676), - [anon_sym_STAR2] = ACTIONS(2678), - [anon_sym_and2] = ACTIONS(2676), - [anon_sym_xor2] = ACTIONS(2676), - [anon_sym_or2] = ACTIONS(2676), - [anon_sym_not_DASHin2] = ACTIONS(2676), - [anon_sym_has2] = ACTIONS(2676), - [anon_sym_not_DASHhas2] = ACTIONS(2676), - [anon_sym_starts_DASHwith2] = ACTIONS(2676), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2676), - [anon_sym_ends_DASHwith2] = ACTIONS(2676), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2676), - [anon_sym_EQ_EQ2] = ACTIONS(2676), - [anon_sym_BANG_EQ2] = ACTIONS(2676), - [anon_sym_LT2] = ACTIONS(2678), - [anon_sym_LT_EQ2] = ACTIONS(2676), - [anon_sym_GT_EQ2] = ACTIONS(2676), - [anon_sym_EQ_TILDE2] = ACTIONS(2676), - [anon_sym_BANG_TILDE2] = ACTIONS(2676), - [anon_sym_like2] = ACTIONS(2676), - [anon_sym_not_DASHlike2] = ACTIONS(2676), - [anon_sym_STAR_STAR2] = ACTIONS(2676), - [anon_sym_PLUS_PLUS2] = ACTIONS(2676), - [anon_sym_SLASH2] = ACTIONS(2678), - [anon_sym_mod2] = ACTIONS(2676), - [anon_sym_SLASH_SLASH2] = ACTIONS(2676), - [anon_sym_PLUS2] = ACTIONS(2678), - [anon_sym_bit_DASHshl2] = ACTIONS(2676), - [anon_sym_bit_DASHshr2] = ACTIONS(2676), - [anon_sym_bit_DASHand2] = ACTIONS(2676), - [anon_sym_bit_DASHxor2] = ACTIONS(2676), - [anon_sym_bit_DASHor2] = ACTIONS(2676), - [anon_sym_err_GT] = ACTIONS(2678), - [anon_sym_out_GT] = ACTIONS(2678), - [anon_sym_e_GT] = ACTIONS(2678), - [anon_sym_o_GT] = ACTIONS(2678), - [anon_sym_err_PLUSout_GT] = ACTIONS(2678), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), - [anon_sym_o_PLUSe_GT] = ACTIONS(2678), - [anon_sym_e_PLUSo_GT] = ACTIONS(2678), - [anon_sym_err_GT_GT] = ACTIONS(2676), - [anon_sym_out_GT_GT] = ACTIONS(2676), - [anon_sym_e_GT_GT] = ACTIONS(2676), - [anon_sym_o_GT_GT] = ACTIONS(2676), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), - [anon_sym_POUND] = ACTIONS(3), + [STATE(1033)] = { + [sym_comment] = STATE(1033), + [anon_sym_export] = ACTIONS(2344), + [anon_sym_alias] = ACTIONS(2346), + [anon_sym_let] = ACTIONS(2346), + [anon_sym_mut] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [aux_sym_cmd_identifier_token1] = ACTIONS(2344), + [anon_sym_def] = ACTIONS(2346), + [anon_sym_use] = ACTIONS(2346), + [anon_sym_export_DASHenv] = ACTIONS(2346), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym_module] = ACTIONS(2346), + [anon_sym_for] = ACTIONS(2346), + [anon_sym_loop] = ACTIONS(2346), + [anon_sym_while] = ACTIONS(2346), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_else] = ACTIONS(2346), + [anon_sym_try] = ACTIONS(2346), + [anon_sym_catch] = ACTIONS(2346), + [anon_sym_match] = ACTIONS(2346), + [anon_sym_in] = ACTIONS(2344), + [anon_sym_true] = ACTIONS(2346), + [anon_sym_false] = ACTIONS(2346), + [anon_sym_null] = ACTIONS(2346), + [aux_sym_cmd_identifier_token3] = ACTIONS(2346), + [aux_sym_cmd_identifier_token4] = ACTIONS(2346), + [aux_sym_cmd_identifier_token5] = ACTIONS(2346), + [sym__newline] = ACTIONS(2346), + [anon_sym_PIPE] = ACTIONS(2346), + [anon_sym_err_GT_PIPE] = ACTIONS(2346), + [anon_sym_out_GT_PIPE] = ACTIONS(2346), + [anon_sym_e_GT_PIPE] = ACTIONS(2346), + [anon_sym_o_GT_PIPE] = ACTIONS(2346), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2346), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2346), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2346), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2346), + [anon_sym_LBRACK] = ACTIONS(2346), + [anon_sym_LPAREN] = ACTIONS(2346), + [anon_sym_DOLLAR] = ACTIONS(2344), + [anon_sym_DASH2] = ACTIONS(2344), + [anon_sym_LBRACE] = ACTIONS(2346), + [anon_sym_DOT_DOT] = ACTIONS(2344), + [anon_sym_where] = ACTIONS(2346), + [aux_sym_expr_unary_token1] = ACTIONS(2346), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2346), + [anon_sym_DOT_DOT_LT] = ACTIONS(2346), + [aux_sym__val_number_decimal_token1] = ACTIONS(2344), + [aux_sym__val_number_decimal_token2] = ACTIONS(2346), + [aux_sym__val_number_decimal_token3] = ACTIONS(2346), + [aux_sym__val_number_decimal_token4] = ACTIONS(2346), + [aux_sym__val_number_token1] = ACTIONS(2346), + [aux_sym__val_number_token2] = ACTIONS(2346), + [aux_sym__val_number_token3] = ACTIONS(2346), + [anon_sym_0b] = ACTIONS(2344), + [anon_sym_0o] = ACTIONS(2344), + [anon_sym_0x] = ACTIONS(2344), + [sym_val_date] = ACTIONS(2346), + [anon_sym_DQUOTE] = ACTIONS(2346), + [anon_sym_SQUOTE] = ACTIONS(2346), + [anon_sym_BQUOTE] = ACTIONS(2346), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2346), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2346), + [anon_sym_CARET] = ACTIONS(2346), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2346), }, - [STATE(994)] = { - [aux_sym__repeat_newline] = STATE(1028), - [sym_comment] = STATE(994), - [anon_sym_in] = ACTIONS(2279), - [sym__newline] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_err_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_GT_PIPE] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_GT2] = ACTIONS(2281), - [anon_sym_DASH2] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_STAR2] = ACTIONS(2281), - [anon_sym_and2] = ACTIONS(2279), - [anon_sym_xor2] = ACTIONS(2279), - [anon_sym_or2] = ACTIONS(2279), - [anon_sym_not_DASHin2] = ACTIONS(2279), - [anon_sym_has2] = ACTIONS(2279), - [anon_sym_not_DASHhas2] = ACTIONS(2279), - [anon_sym_starts_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), - [anon_sym_ends_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), - [anon_sym_EQ_EQ2] = ACTIONS(2279), - [anon_sym_BANG_EQ2] = ACTIONS(2279), - [anon_sym_LT2] = ACTIONS(2281), - [anon_sym_LT_EQ2] = ACTIONS(2279), - [anon_sym_GT_EQ2] = ACTIONS(2279), - [anon_sym_EQ_TILDE2] = ACTIONS(2279), - [anon_sym_BANG_TILDE2] = ACTIONS(2279), - [anon_sym_like2] = ACTIONS(2279), - [anon_sym_not_DASHlike2] = ACTIONS(2279), - [anon_sym_STAR_STAR2] = ACTIONS(2279), - [anon_sym_PLUS_PLUS2] = ACTIONS(2279), - [anon_sym_SLASH2] = ACTIONS(2281), - [anon_sym_mod2] = ACTIONS(2279), - [anon_sym_SLASH_SLASH2] = ACTIONS(2279), - [anon_sym_PLUS2] = ACTIONS(2281), - [anon_sym_bit_DASHshl2] = ACTIONS(2279), - [anon_sym_bit_DASHshr2] = ACTIONS(2279), - [anon_sym_bit_DASHand2] = ACTIONS(2279), - [anon_sym_bit_DASHxor2] = ACTIONS(2279), - [anon_sym_bit_DASHor2] = ACTIONS(2279), - [anon_sym_err_GT] = ACTIONS(2281), - [anon_sym_out_GT] = ACTIONS(2281), - [anon_sym_e_GT] = ACTIONS(2281), - [anon_sym_o_GT] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT] = ACTIONS(2281), - [anon_sym_err_GT_GT] = ACTIONS(2279), - [anon_sym_out_GT_GT] = ACTIONS(2279), - [anon_sym_e_GT_GT] = ACTIONS(2279), - [anon_sym_o_GT_GT] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), - [anon_sym_POUND] = ACTIONS(3), + [STATE(1034)] = { + [sym_comment] = STATE(1034), + [anon_sym_export] = ACTIONS(2698), + [anon_sym_alias] = ACTIONS(2700), + [anon_sym_let] = ACTIONS(2700), + [anon_sym_mut] = ACTIONS(2700), + [anon_sym_const] = ACTIONS(2700), + [aux_sym_cmd_identifier_token1] = ACTIONS(2698), + [anon_sym_def] = ACTIONS(2700), + [anon_sym_use] = ACTIONS(2700), + [anon_sym_export_DASHenv] = ACTIONS(2700), + [anon_sym_extern] = ACTIONS(2700), + [anon_sym_module] = ACTIONS(2700), + [anon_sym_for] = ACTIONS(2700), + [anon_sym_loop] = ACTIONS(2700), + [anon_sym_while] = ACTIONS(2700), + [anon_sym_if] = ACTIONS(2700), + [anon_sym_else] = ACTIONS(2700), + [anon_sym_try] = ACTIONS(2700), + [anon_sym_catch] = ACTIONS(2700), + [anon_sym_match] = ACTIONS(2700), + [anon_sym_in] = ACTIONS(2698), + [anon_sym_true] = ACTIONS(2700), + [anon_sym_false] = ACTIONS(2700), + [anon_sym_null] = ACTIONS(2700), + [aux_sym_cmd_identifier_token3] = ACTIONS(2700), + [aux_sym_cmd_identifier_token4] = ACTIONS(2700), + [aux_sym_cmd_identifier_token5] = ACTIONS(2700), + [sym__newline] = ACTIONS(2146), + [anon_sym_PIPE] = ACTIONS(2146), + [anon_sym_err_GT_PIPE] = ACTIONS(2146), + [anon_sym_out_GT_PIPE] = ACTIONS(2146), + [anon_sym_e_GT_PIPE] = ACTIONS(2146), + [anon_sym_o_GT_PIPE] = ACTIONS(2146), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2146), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2146), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2146), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2700), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_DOLLAR] = ACTIONS(2698), + [anon_sym_DASH2] = ACTIONS(2698), + [anon_sym_LBRACE] = ACTIONS(2700), + [anon_sym_DOT_DOT] = ACTIONS(2698), + [anon_sym_where] = ACTIONS(2700), + [aux_sym_expr_unary_token1] = ACTIONS(2700), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2700), + [anon_sym_DOT_DOT_LT] = ACTIONS(2700), + [aux_sym__val_number_decimal_token1] = ACTIONS(2698), + [aux_sym__val_number_decimal_token2] = ACTIONS(2700), + [aux_sym__val_number_decimal_token3] = ACTIONS(2700), + [aux_sym__val_number_decimal_token4] = ACTIONS(2700), + [aux_sym__val_number_token1] = ACTIONS(2700), + [aux_sym__val_number_token2] = ACTIONS(2700), + [aux_sym__val_number_token3] = ACTIONS(2700), + [anon_sym_0b] = ACTIONS(2698), + [anon_sym_0o] = ACTIONS(2698), + [anon_sym_0x] = ACTIONS(2698), + [sym_val_date] = ACTIONS(2700), + [anon_sym_DQUOTE] = ACTIONS(2700), + [anon_sym_SQUOTE] = ACTIONS(2700), + [anon_sym_BQUOTE] = ACTIONS(2700), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2700), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2700), + [anon_sym_CARET] = ACTIONS(2700), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2700), }, - [STATE(995)] = { - [aux_sym__repeat_newline] = STATE(1104), - [sym_comment] = STATE(995), - [anon_sym_in] = ACTIONS(2289), - [sym__newline] = ACTIONS(2289), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_err_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_GT_PIPE] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), - [anon_sym_RPAREN] = ACTIONS(2289), - [anon_sym_GT2] = ACTIONS(2291), - [anon_sym_DASH2] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_STAR2] = ACTIONS(2291), - [anon_sym_and2] = ACTIONS(2289), - [anon_sym_xor2] = ACTIONS(2289), - [anon_sym_or2] = ACTIONS(2289), - [anon_sym_not_DASHin2] = ACTIONS(2289), - [anon_sym_has2] = ACTIONS(2289), - [anon_sym_not_DASHhas2] = ACTIONS(2289), - [anon_sym_starts_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), - [anon_sym_ends_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), - [anon_sym_EQ_EQ2] = ACTIONS(2289), - [anon_sym_BANG_EQ2] = ACTIONS(2289), - [anon_sym_LT2] = ACTIONS(2291), - [anon_sym_LT_EQ2] = ACTIONS(2289), - [anon_sym_GT_EQ2] = ACTIONS(2289), - [anon_sym_EQ_TILDE2] = ACTIONS(2289), - [anon_sym_BANG_TILDE2] = ACTIONS(2289), - [anon_sym_like2] = ACTIONS(2289), - [anon_sym_not_DASHlike2] = ACTIONS(2289), - [anon_sym_STAR_STAR2] = ACTIONS(2289), - [anon_sym_PLUS_PLUS2] = ACTIONS(2289), - [anon_sym_SLASH2] = ACTIONS(2291), - [anon_sym_mod2] = ACTIONS(2289), - [anon_sym_SLASH_SLASH2] = ACTIONS(2289), - [anon_sym_PLUS2] = ACTIONS(2291), - [anon_sym_bit_DASHshl2] = ACTIONS(2289), - [anon_sym_bit_DASHshr2] = ACTIONS(2289), - [anon_sym_bit_DASHand2] = ACTIONS(2289), - [anon_sym_bit_DASHxor2] = ACTIONS(2289), - [anon_sym_bit_DASHor2] = ACTIONS(2289), - [anon_sym_err_GT] = ACTIONS(2291), - [anon_sym_out_GT] = ACTIONS(2291), - [anon_sym_e_GT] = ACTIONS(2291), - [anon_sym_o_GT] = ACTIONS(2291), - [anon_sym_err_PLUSout_GT] = ACTIONS(2291), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), - [anon_sym_o_PLUSe_GT] = ACTIONS(2291), - [anon_sym_e_PLUSo_GT] = ACTIONS(2291), - [anon_sym_err_GT_GT] = ACTIONS(2289), - [anon_sym_out_GT_GT] = ACTIONS(2289), - [anon_sym_e_GT_GT] = ACTIONS(2289), - [anon_sym_o_GT_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), + [STATE(1035)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1035), + [anon_sym_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(996)] = { - [sym__expr_parenthesized_immediate] = STATE(4759), - [sym_comment] = STATE(996), + [STATE(1036)] = { + [sym__expr_parenthesized_immediate] = STATE(4755), + [sym_comment] = STATE(1036), [ts_builtin_sym_end] = ACTIONS(2062), [anon_sym_in] = ACTIONS(2062), [sym__newline] = ACTIONS(2062), @@ -121394,7 +124149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2062), [anon_sym_like2] = ACTIONS(2062), [anon_sym_not_DASHlike2] = ACTIONS(2062), - [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_LPAREN2] = ACTIONS(1714), [anon_sym_STAR_STAR2] = ACTIONS(2062), [anon_sym_PLUS_PLUS2] = ACTIONS(2062), [anon_sym_SLASH2] = ACTIONS(2064), @@ -121424,145 +124179,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(997)] = { - [aux_sym__repeat_newline] = STATE(1353), - [sym__expression_parenthesized] = STATE(4396), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2115), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1826), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_comment] = STATE(997), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(2656), - [aux_sym_cmd_identifier_token3] = ACTIONS(189), - [aux_sym_cmd_identifier_token4] = ACTIONS(189), - [aux_sym_cmd_identifier_token5] = ACTIONS(189), - [sym__newline] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(998)] = { - [aux_sym__repeat_newline] = STATE(1058), - [sym_comment] = STATE(998), - [anon_sym_in] = ACTIONS(2198), - [sym__newline] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_err_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_GT_PIPE] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_GT2] = ACTIONS(2200), - [anon_sym_DASH2] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_STAR2] = ACTIONS(2200), - [anon_sym_and2] = ACTIONS(2198), - [anon_sym_xor2] = ACTIONS(2198), - [anon_sym_or2] = ACTIONS(2198), - [anon_sym_not_DASHin2] = ACTIONS(2198), - [anon_sym_has2] = ACTIONS(2198), - [anon_sym_not_DASHhas2] = ACTIONS(2198), - [anon_sym_starts_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), - [anon_sym_ends_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), - [anon_sym_EQ_EQ2] = ACTIONS(2198), - [anon_sym_BANG_EQ2] = ACTIONS(2198), - [anon_sym_LT2] = ACTIONS(2200), - [anon_sym_LT_EQ2] = ACTIONS(2198), - [anon_sym_GT_EQ2] = ACTIONS(2198), - [anon_sym_EQ_TILDE2] = ACTIONS(2198), - [anon_sym_BANG_TILDE2] = ACTIONS(2198), - [anon_sym_like2] = ACTIONS(2198), - [anon_sym_not_DASHlike2] = ACTIONS(2198), - [anon_sym_STAR_STAR2] = ACTIONS(2198), - [anon_sym_PLUS_PLUS2] = ACTIONS(2198), - [anon_sym_SLASH2] = ACTIONS(2200), - [anon_sym_mod2] = ACTIONS(2198), - [anon_sym_SLASH_SLASH2] = ACTIONS(2198), - [anon_sym_PLUS2] = ACTIONS(2200), - [anon_sym_bit_DASHshl2] = ACTIONS(2198), - [anon_sym_bit_DASHshr2] = ACTIONS(2198), - [anon_sym_bit_DASHand2] = ACTIONS(2198), - [anon_sym_bit_DASHxor2] = ACTIONS(2198), - [anon_sym_bit_DASHor2] = ACTIONS(2198), - [anon_sym_err_GT] = ACTIONS(2200), - [anon_sym_out_GT] = ACTIONS(2200), - [anon_sym_e_GT] = ACTIONS(2200), - [anon_sym_o_GT] = ACTIONS(2200), - [anon_sym_err_PLUSout_GT] = ACTIONS(2200), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), - [anon_sym_o_PLUSe_GT] = ACTIONS(2200), - [anon_sym_e_PLUSo_GT] = ACTIONS(2200), - [anon_sym_err_GT_GT] = ACTIONS(2198), - [anon_sym_out_GT_GT] = ACTIONS(2198), - [anon_sym_e_GT_GT] = ACTIONS(2198), - [anon_sym_o_GT_GT] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(999)] = { - [sym__expr_parenthesized_immediate] = STATE(4759), - [sym_comment] = STATE(999), + [STATE(1037)] = { + [sym__expr_parenthesized_immediate] = STATE(4755), + [sym_comment] = STATE(1037), [ts_builtin_sym_end] = ACTIONS(2062), [anon_sym_in] = ACTIONS(2062), [sym__newline] = ACTIONS(2062), @@ -121598,7 +124217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2062), [anon_sym_like2] = ACTIONS(2062), [anon_sym_not_DASHlike2] = ACTIONS(2062), - [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_LPAREN2] = ACTIONS(1714), [anon_sym_STAR_STAR2] = ACTIONS(2062), [anon_sym_PLUS_PLUS2] = ACTIONS(2062), [anon_sym_SLASH2] = ACTIONS(2064), @@ -121628,9 +124247,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1000)] = { - [sym__expr_parenthesized_immediate] = STATE(4759), - [sym_comment] = STATE(1000), + [STATE(1038)] = { + [sym__expr_parenthesized_immediate] = STATE(4755), + [sym_comment] = STATE(1038), [ts_builtin_sym_end] = ACTIONS(2062), [anon_sym_in] = ACTIONS(2062), [sym__newline] = ACTIONS(2062), @@ -121666,7 +124285,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2062), [anon_sym_like2] = ACTIONS(2062), [anon_sym_not_DASHlike2] = ACTIONS(2062), - [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_LPAREN2] = ACTIONS(1714), [anon_sym_STAR_STAR2] = ACTIONS(2062), [anon_sym_PLUS_PLUS2] = ACTIONS(2062), [anon_sym_SLASH2] = ACTIONS(2064), @@ -121696,213 +124315,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1001)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1001), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1002)] = { - [sym_comment] = STATE(1002), - [aux_sym_cmd_identifier_token2] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(2327), - [sym__newline] = ACTIONS(2325), - [anon_sym_SEMI] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(2325), - [anon_sym_err_GT_PIPE] = ACTIONS(2325), - [anon_sym_out_GT_PIPE] = ACTIONS(2325), - [anon_sym_e_GT_PIPE] = ACTIONS(2325), - [anon_sym_o_GT_PIPE] = ACTIONS(2325), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2325), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2325), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2325), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2325), - [anon_sym_RPAREN] = ACTIONS(2325), - [anon_sym_GT2] = ACTIONS(2327), - [anon_sym_DASH2] = ACTIONS(2327), - [anon_sym_RBRACE] = ACTIONS(2325), - [anon_sym_STAR2] = ACTIONS(2327), - [anon_sym_and2] = ACTIONS(2327), - [anon_sym_xor2] = ACTIONS(2327), - [anon_sym_or2] = ACTIONS(2327), - [anon_sym_not_DASHin2] = ACTIONS(2327), - [anon_sym_has2] = ACTIONS(2327), - [anon_sym_not_DASHhas2] = ACTIONS(2327), - [anon_sym_starts_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), - [anon_sym_ends_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), - [anon_sym_EQ_EQ2] = ACTIONS(2325), - [anon_sym_BANG_EQ2] = ACTIONS(2325), - [anon_sym_LT2] = ACTIONS(2327), - [anon_sym_LT_EQ2] = ACTIONS(2325), - [anon_sym_GT_EQ2] = ACTIONS(2325), - [anon_sym_EQ_TILDE2] = ACTIONS(2325), - [anon_sym_BANG_TILDE2] = ACTIONS(2327), - [anon_sym_like2] = ACTIONS(2327), - [anon_sym_not_DASHlike2] = ACTIONS(2327), - [anon_sym_STAR_STAR2] = ACTIONS(2327), - [anon_sym_PLUS_PLUS2] = ACTIONS(2327), - [anon_sym_SLASH2] = ACTIONS(2327), - [anon_sym_mod2] = ACTIONS(2327), - [anon_sym_SLASH_SLASH2] = ACTIONS(2327), - [anon_sym_PLUS2] = ACTIONS(2327), - [anon_sym_bit_DASHshl2] = ACTIONS(2327), - [anon_sym_bit_DASHshr2] = ACTIONS(2327), - [anon_sym_bit_DASHand2] = ACTIONS(2327), - [anon_sym_bit_DASHxor2] = ACTIONS(2327), - [anon_sym_bit_DASHor2] = ACTIONS(2327), - [anon_sym_err_GT] = ACTIONS(2327), - [anon_sym_out_GT] = ACTIONS(2327), - [anon_sym_e_GT] = ACTIONS(2327), - [anon_sym_o_GT] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT] = ACTIONS(2327), - [anon_sym_err_GT_GT] = ACTIONS(2325), - [anon_sym_out_GT_GT] = ACTIONS(2325), - [anon_sym_e_GT_GT] = ACTIONS(2325), - [anon_sym_o_GT_GT] = ACTIONS(2325), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2325), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2325), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2325), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2325), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(1003)] = { - [aux_sym__repeat_newline] = STATE(1029), - [sym_comment] = STATE(1003), - [anon_sym_in] = ACTIONS(2279), - [sym__newline] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_err_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_GT_PIPE] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_GT2] = ACTIONS(2281), - [anon_sym_DASH2] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_STAR2] = ACTIONS(2281), - [anon_sym_and2] = ACTIONS(2279), - [anon_sym_xor2] = ACTIONS(2279), - [anon_sym_or2] = ACTIONS(2279), - [anon_sym_not_DASHin2] = ACTIONS(2279), - [anon_sym_has2] = ACTIONS(2279), - [anon_sym_not_DASHhas2] = ACTIONS(2279), - [anon_sym_starts_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), - [anon_sym_ends_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), - [anon_sym_EQ_EQ2] = ACTIONS(2279), - [anon_sym_BANG_EQ2] = ACTIONS(2279), - [anon_sym_LT2] = ACTIONS(2281), - [anon_sym_LT_EQ2] = ACTIONS(2279), - [anon_sym_GT_EQ2] = ACTIONS(2279), - [anon_sym_EQ_TILDE2] = ACTIONS(2279), - [anon_sym_BANG_TILDE2] = ACTIONS(2279), - [anon_sym_like2] = ACTIONS(2279), - [anon_sym_not_DASHlike2] = ACTIONS(2279), - [anon_sym_STAR_STAR2] = ACTIONS(2279), - [anon_sym_PLUS_PLUS2] = ACTIONS(2279), - [anon_sym_SLASH2] = ACTIONS(2281), - [anon_sym_mod2] = ACTIONS(2279), - [anon_sym_SLASH_SLASH2] = ACTIONS(2279), - [anon_sym_PLUS2] = ACTIONS(2281), - [anon_sym_bit_DASHshl2] = ACTIONS(2279), - [anon_sym_bit_DASHshr2] = ACTIONS(2279), - [anon_sym_bit_DASHand2] = ACTIONS(2279), - [anon_sym_bit_DASHxor2] = ACTIONS(2279), - [anon_sym_bit_DASHor2] = ACTIONS(2279), - [anon_sym_err_GT] = ACTIONS(2281), - [anon_sym_out_GT] = ACTIONS(2281), - [anon_sym_e_GT] = ACTIONS(2281), - [anon_sym_o_GT] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT] = ACTIONS(2281), - [anon_sym_err_GT_GT] = ACTIONS(2279), - [anon_sym_out_GT_GT] = ACTIONS(2279), - [anon_sym_e_GT_GT] = ACTIONS(2279), - [anon_sym_o_GT_GT] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1004)] = { - [sym__expr_parenthesized_immediate] = STATE(4759), - [sym_comment] = STATE(1004), + [STATE(1039)] = { + [sym__expr_parenthesized_immediate] = STATE(4755), + [sym_comment] = STATE(1039), [ts_builtin_sym_end] = ACTIONS(2062), [anon_sym_in] = ACTIONS(2062), [sym__newline] = ACTIONS(2062), @@ -121938,7 +124353,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2062), [anon_sym_like2] = ACTIONS(2062), [anon_sym_not_DASHlike2] = ACTIONS(2062), - [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_LPAREN2] = ACTIONS(1714), [anon_sym_STAR_STAR2] = ACTIONS(2062), [anon_sym_PLUS_PLUS2] = ACTIONS(2062), [anon_sym_SLASH2] = ACTIONS(2064), @@ -121968,621 +124383,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1005)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1005), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1006)] = { - [sym_comment] = STATE(1006), - [ts_builtin_sym_end] = ACTIONS(2574), - [anon_sym_in] = ACTIONS(2574), - [sym__newline] = ACTIONS(2574), - [anon_sym_SEMI] = ACTIONS(2574), - [anon_sym_PIPE] = ACTIONS(2574), - [anon_sym_err_GT_PIPE] = ACTIONS(2574), - [anon_sym_out_GT_PIPE] = ACTIONS(2574), - [anon_sym_e_GT_PIPE] = ACTIONS(2574), - [anon_sym_o_GT_PIPE] = ACTIONS(2574), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2574), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2574), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2574), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2574), - [anon_sym_GT2] = ACTIONS(2576), - [anon_sym_DASH2] = ACTIONS(2574), - [anon_sym_STAR2] = ACTIONS(2576), - [anon_sym_and2] = ACTIONS(2574), - [anon_sym_xor2] = ACTIONS(2574), - [anon_sym_or2] = ACTIONS(2574), - [anon_sym_not_DASHin2] = ACTIONS(2574), - [anon_sym_has2] = ACTIONS(2574), - [anon_sym_not_DASHhas2] = ACTIONS(2574), - [anon_sym_starts_DASHwith2] = ACTIONS(2574), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2574), - [anon_sym_ends_DASHwith2] = ACTIONS(2574), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2574), - [anon_sym_EQ_EQ2] = ACTIONS(2574), - [anon_sym_BANG_EQ2] = ACTIONS(2574), - [anon_sym_LT2] = ACTIONS(2576), - [anon_sym_LT_EQ2] = ACTIONS(2574), - [anon_sym_GT_EQ2] = ACTIONS(2574), - [anon_sym_EQ_TILDE2] = ACTIONS(2574), - [anon_sym_BANG_TILDE2] = ACTIONS(2574), - [anon_sym_like2] = ACTIONS(2574), - [anon_sym_not_DASHlike2] = ACTIONS(2574), - [anon_sym_LPAREN2] = ACTIONS(1956), - [anon_sym_STAR_STAR2] = ACTIONS(2574), - [anon_sym_PLUS_PLUS2] = ACTIONS(2574), - [anon_sym_SLASH2] = ACTIONS(2576), - [anon_sym_mod2] = ACTIONS(2574), - [anon_sym_SLASH_SLASH2] = ACTIONS(2574), - [anon_sym_PLUS2] = ACTIONS(2576), - [anon_sym_bit_DASHshl2] = ACTIONS(2574), - [anon_sym_bit_DASHshr2] = ACTIONS(2574), - [anon_sym_bit_DASHand2] = ACTIONS(2574), - [anon_sym_bit_DASHxor2] = ACTIONS(2574), - [anon_sym_bit_DASHor2] = ACTIONS(2574), - [anon_sym_err_GT] = ACTIONS(2576), - [anon_sym_out_GT] = ACTIONS(2576), - [anon_sym_e_GT] = ACTIONS(2576), - [anon_sym_o_GT] = ACTIONS(2576), - [anon_sym_err_PLUSout_GT] = ACTIONS(2576), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2576), - [anon_sym_o_PLUSe_GT] = ACTIONS(2576), - [anon_sym_e_PLUSo_GT] = ACTIONS(2576), - [anon_sym_err_GT_GT] = ACTIONS(2574), - [anon_sym_out_GT_GT] = ACTIONS(2574), - [anon_sym_e_GT_GT] = ACTIONS(2574), - [anon_sym_o_GT_GT] = ACTIONS(2574), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2574), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2574), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2574), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2574), - [sym__unquoted_pattern] = ACTIONS(1962), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1007)] = { - [aux_sym__repeat_newline] = STATE(1106), - [sym_comment] = STATE(1007), - [anon_sym_in] = ACTIONS(2289), - [sym__newline] = ACTIONS(2289), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_err_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_GT_PIPE] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), - [anon_sym_RPAREN] = ACTIONS(2289), - [anon_sym_GT2] = ACTIONS(2291), - [anon_sym_DASH2] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_STAR2] = ACTIONS(2291), - [anon_sym_and2] = ACTIONS(2289), - [anon_sym_xor2] = ACTIONS(2289), - [anon_sym_or2] = ACTIONS(2289), - [anon_sym_not_DASHin2] = ACTIONS(2289), - [anon_sym_has2] = ACTIONS(2289), - [anon_sym_not_DASHhas2] = ACTIONS(2289), - [anon_sym_starts_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), - [anon_sym_ends_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), - [anon_sym_EQ_EQ2] = ACTIONS(2289), - [anon_sym_BANG_EQ2] = ACTIONS(2289), - [anon_sym_LT2] = ACTIONS(2291), - [anon_sym_LT_EQ2] = ACTIONS(2289), - [anon_sym_GT_EQ2] = ACTIONS(2289), - [anon_sym_EQ_TILDE2] = ACTIONS(2289), - [anon_sym_BANG_TILDE2] = ACTIONS(2289), - [anon_sym_like2] = ACTIONS(2289), - [anon_sym_not_DASHlike2] = ACTIONS(2289), - [anon_sym_STAR_STAR2] = ACTIONS(2289), - [anon_sym_PLUS_PLUS2] = ACTIONS(2289), - [anon_sym_SLASH2] = ACTIONS(2291), - [anon_sym_mod2] = ACTIONS(2289), - [anon_sym_SLASH_SLASH2] = ACTIONS(2289), - [anon_sym_PLUS2] = ACTIONS(2291), - [anon_sym_bit_DASHshl2] = ACTIONS(2289), - [anon_sym_bit_DASHshr2] = ACTIONS(2289), - [anon_sym_bit_DASHand2] = ACTIONS(2289), - [anon_sym_bit_DASHxor2] = ACTIONS(2289), - [anon_sym_bit_DASHor2] = ACTIONS(2289), - [anon_sym_err_GT] = ACTIONS(2291), - [anon_sym_out_GT] = ACTIONS(2291), - [anon_sym_e_GT] = ACTIONS(2291), - [anon_sym_o_GT] = ACTIONS(2291), - [anon_sym_err_PLUSout_GT] = ACTIONS(2291), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), - [anon_sym_o_PLUSe_GT] = ACTIONS(2291), - [anon_sym_e_PLUSo_GT] = ACTIONS(2291), - [anon_sym_err_GT_GT] = ACTIONS(2289), - [anon_sym_out_GT_GT] = ACTIONS(2289), - [anon_sym_e_GT_GT] = ACTIONS(2289), - [anon_sym_o_GT_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1008)] = { - [aux_sym__repeat_newline] = STATE(1030), - [sym_comment] = STATE(1008), - [anon_sym_in] = ACTIONS(2279), - [sym__newline] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_err_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_GT_PIPE] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_GT2] = ACTIONS(2281), - [anon_sym_DASH2] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_STAR2] = ACTIONS(2281), - [anon_sym_and2] = ACTIONS(2279), - [anon_sym_xor2] = ACTIONS(2279), - [anon_sym_or2] = ACTIONS(2279), - [anon_sym_not_DASHin2] = ACTIONS(2279), - [anon_sym_has2] = ACTIONS(2279), - [anon_sym_not_DASHhas2] = ACTIONS(2279), - [anon_sym_starts_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), - [anon_sym_ends_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), - [anon_sym_EQ_EQ2] = ACTIONS(2279), - [anon_sym_BANG_EQ2] = ACTIONS(2279), - [anon_sym_LT2] = ACTIONS(2281), - [anon_sym_LT_EQ2] = ACTIONS(2279), - [anon_sym_GT_EQ2] = ACTIONS(2279), - [anon_sym_EQ_TILDE2] = ACTIONS(2279), - [anon_sym_BANG_TILDE2] = ACTIONS(2279), - [anon_sym_like2] = ACTIONS(2279), - [anon_sym_not_DASHlike2] = ACTIONS(2279), - [anon_sym_STAR_STAR2] = ACTIONS(2279), - [anon_sym_PLUS_PLUS2] = ACTIONS(2279), - [anon_sym_SLASH2] = ACTIONS(2281), - [anon_sym_mod2] = ACTIONS(2279), - [anon_sym_SLASH_SLASH2] = ACTIONS(2279), - [anon_sym_PLUS2] = ACTIONS(2281), - [anon_sym_bit_DASHshl2] = ACTIONS(2279), - [anon_sym_bit_DASHshr2] = ACTIONS(2279), - [anon_sym_bit_DASHand2] = ACTIONS(2279), - [anon_sym_bit_DASHxor2] = ACTIONS(2279), - [anon_sym_bit_DASHor2] = ACTIONS(2279), - [anon_sym_err_GT] = ACTIONS(2281), - [anon_sym_out_GT] = ACTIONS(2281), - [anon_sym_e_GT] = ACTIONS(2281), - [anon_sym_o_GT] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT] = ACTIONS(2281), - [anon_sym_err_GT_GT] = ACTIONS(2279), - [anon_sym_out_GT_GT] = ACTIONS(2279), - [anon_sym_e_GT_GT] = ACTIONS(2279), - [anon_sym_o_GT_GT] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1009)] = { - [aux_sym__repeat_newline] = STATE(1109), - [sym_comment] = STATE(1009), - [anon_sym_in] = ACTIONS(2289), - [sym__newline] = ACTIONS(2289), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_err_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_GT_PIPE] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), - [anon_sym_RPAREN] = ACTIONS(2289), - [anon_sym_GT2] = ACTIONS(2291), - [anon_sym_DASH2] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_STAR2] = ACTIONS(2291), - [anon_sym_and2] = ACTIONS(2289), - [anon_sym_xor2] = ACTIONS(2289), - [anon_sym_or2] = ACTIONS(2289), - [anon_sym_not_DASHin2] = ACTIONS(2289), - [anon_sym_has2] = ACTIONS(2289), - [anon_sym_not_DASHhas2] = ACTIONS(2289), - [anon_sym_starts_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), - [anon_sym_ends_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), - [anon_sym_EQ_EQ2] = ACTIONS(2289), - [anon_sym_BANG_EQ2] = ACTIONS(2289), - [anon_sym_LT2] = ACTIONS(2291), - [anon_sym_LT_EQ2] = ACTIONS(2289), - [anon_sym_GT_EQ2] = ACTIONS(2289), - [anon_sym_EQ_TILDE2] = ACTIONS(2289), - [anon_sym_BANG_TILDE2] = ACTIONS(2289), - [anon_sym_like2] = ACTIONS(2289), - [anon_sym_not_DASHlike2] = ACTIONS(2289), - [anon_sym_STAR_STAR2] = ACTIONS(2289), - [anon_sym_PLUS_PLUS2] = ACTIONS(2289), - [anon_sym_SLASH2] = ACTIONS(2291), - [anon_sym_mod2] = ACTIONS(2289), - [anon_sym_SLASH_SLASH2] = ACTIONS(2289), - [anon_sym_PLUS2] = ACTIONS(2291), - [anon_sym_bit_DASHshl2] = ACTIONS(2289), - [anon_sym_bit_DASHshr2] = ACTIONS(2289), - [anon_sym_bit_DASHand2] = ACTIONS(2289), - [anon_sym_bit_DASHxor2] = ACTIONS(2289), - [anon_sym_bit_DASHor2] = ACTIONS(2289), - [anon_sym_err_GT] = ACTIONS(2291), - [anon_sym_out_GT] = ACTIONS(2291), - [anon_sym_e_GT] = ACTIONS(2291), - [anon_sym_o_GT] = ACTIONS(2291), - [anon_sym_err_PLUSout_GT] = ACTIONS(2291), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), - [anon_sym_o_PLUSe_GT] = ACTIONS(2291), - [anon_sym_e_PLUSo_GT] = ACTIONS(2291), - [anon_sym_err_GT_GT] = ACTIONS(2289), - [anon_sym_out_GT_GT] = ACTIONS(2289), - [anon_sym_e_GT_GT] = ACTIONS(2289), - [anon_sym_o_GT_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1010)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1010), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1011)] = { - [aux_sym__repeat_newline] = STATE(1112), - [sym_comment] = STATE(1011), - [anon_sym_in] = ACTIONS(2289), - [sym__newline] = ACTIONS(2289), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_err_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_GT_PIPE] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), - [anon_sym_RPAREN] = ACTIONS(2289), - [anon_sym_GT2] = ACTIONS(2291), - [anon_sym_DASH2] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_STAR2] = ACTIONS(2291), - [anon_sym_and2] = ACTIONS(2289), - [anon_sym_xor2] = ACTIONS(2289), - [anon_sym_or2] = ACTIONS(2289), - [anon_sym_not_DASHin2] = ACTIONS(2289), - [anon_sym_has2] = ACTIONS(2289), - [anon_sym_not_DASHhas2] = ACTIONS(2289), - [anon_sym_starts_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), - [anon_sym_ends_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), - [anon_sym_EQ_EQ2] = ACTIONS(2289), - [anon_sym_BANG_EQ2] = ACTIONS(2289), - [anon_sym_LT2] = ACTIONS(2291), - [anon_sym_LT_EQ2] = ACTIONS(2289), - [anon_sym_GT_EQ2] = ACTIONS(2289), - [anon_sym_EQ_TILDE2] = ACTIONS(2289), - [anon_sym_BANG_TILDE2] = ACTIONS(2289), - [anon_sym_like2] = ACTIONS(2289), - [anon_sym_not_DASHlike2] = ACTIONS(2289), - [anon_sym_STAR_STAR2] = ACTIONS(2289), - [anon_sym_PLUS_PLUS2] = ACTIONS(2289), - [anon_sym_SLASH2] = ACTIONS(2291), - [anon_sym_mod2] = ACTIONS(2289), - [anon_sym_SLASH_SLASH2] = ACTIONS(2289), - [anon_sym_PLUS2] = ACTIONS(2291), - [anon_sym_bit_DASHshl2] = ACTIONS(2289), - [anon_sym_bit_DASHshr2] = ACTIONS(2289), - [anon_sym_bit_DASHand2] = ACTIONS(2289), - [anon_sym_bit_DASHxor2] = ACTIONS(2289), - [anon_sym_bit_DASHor2] = ACTIONS(2289), - [anon_sym_err_GT] = ACTIONS(2291), - [anon_sym_out_GT] = ACTIONS(2291), - [anon_sym_e_GT] = ACTIONS(2291), - [anon_sym_o_GT] = ACTIONS(2291), - [anon_sym_err_PLUSout_GT] = ACTIONS(2291), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), - [anon_sym_o_PLUSe_GT] = ACTIONS(2291), - [anon_sym_e_PLUSo_GT] = ACTIONS(2291), - [anon_sym_err_GT_GT] = ACTIONS(2289), - [anon_sym_out_GT_GT] = ACTIONS(2289), - [anon_sym_e_GT_GT] = ACTIONS(2289), - [anon_sym_o_GT_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1012)] = { - [aux_sym__repeat_newline] = STATE(1115), - [sym_comment] = STATE(1012), - [anon_sym_in] = ACTIONS(2289), - [sym__newline] = ACTIONS(2289), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_err_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_GT_PIPE] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), - [anon_sym_RPAREN] = ACTIONS(2289), - [anon_sym_GT2] = ACTIONS(2291), - [anon_sym_DASH2] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_STAR2] = ACTIONS(2291), - [anon_sym_and2] = ACTIONS(2289), - [anon_sym_xor2] = ACTIONS(2289), - [anon_sym_or2] = ACTIONS(2289), - [anon_sym_not_DASHin2] = ACTIONS(2289), - [anon_sym_has2] = ACTIONS(2289), - [anon_sym_not_DASHhas2] = ACTIONS(2289), - [anon_sym_starts_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), - [anon_sym_ends_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), - [anon_sym_EQ_EQ2] = ACTIONS(2289), - [anon_sym_BANG_EQ2] = ACTIONS(2289), - [anon_sym_LT2] = ACTIONS(2291), - [anon_sym_LT_EQ2] = ACTIONS(2289), - [anon_sym_GT_EQ2] = ACTIONS(2289), - [anon_sym_EQ_TILDE2] = ACTIONS(2289), - [anon_sym_BANG_TILDE2] = ACTIONS(2289), - [anon_sym_like2] = ACTIONS(2289), - [anon_sym_not_DASHlike2] = ACTIONS(2289), - [anon_sym_STAR_STAR2] = ACTIONS(2289), - [anon_sym_PLUS_PLUS2] = ACTIONS(2289), - [anon_sym_SLASH2] = ACTIONS(2291), - [anon_sym_mod2] = ACTIONS(2289), - [anon_sym_SLASH_SLASH2] = ACTIONS(2289), - [anon_sym_PLUS2] = ACTIONS(2291), - [anon_sym_bit_DASHshl2] = ACTIONS(2289), - [anon_sym_bit_DASHshr2] = ACTIONS(2289), - [anon_sym_bit_DASHand2] = ACTIONS(2289), - [anon_sym_bit_DASHxor2] = ACTIONS(2289), - [anon_sym_bit_DASHor2] = ACTIONS(2289), - [anon_sym_err_GT] = ACTIONS(2291), - [anon_sym_out_GT] = ACTIONS(2291), - [anon_sym_e_GT] = ACTIONS(2291), - [anon_sym_o_GT] = ACTIONS(2291), - [anon_sym_err_PLUSout_GT] = ACTIONS(2291), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), - [anon_sym_o_PLUSe_GT] = ACTIONS(2291), - [anon_sym_e_PLUSo_GT] = ACTIONS(2291), - [anon_sym_err_GT_GT] = ACTIONS(2289), - [anon_sym_out_GT_GT] = ACTIONS(2289), - [anon_sym_e_GT_GT] = ACTIONS(2289), - [anon_sym_o_GT_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1013)] = { - [aux_sym__repeat_newline] = STATE(1129), - [sym_comment] = STATE(1013), - [anon_sym_in] = ACTIONS(2198), - [sym__newline] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_err_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_GT_PIPE] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_GT2] = ACTIONS(2200), - [anon_sym_DASH2] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_STAR2] = ACTIONS(2200), - [anon_sym_and2] = ACTIONS(2198), - [anon_sym_xor2] = ACTIONS(2198), - [anon_sym_or2] = ACTIONS(2198), - [anon_sym_not_DASHin2] = ACTIONS(2198), - [anon_sym_has2] = ACTIONS(2198), - [anon_sym_not_DASHhas2] = ACTIONS(2198), - [anon_sym_starts_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), - [anon_sym_ends_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), - [anon_sym_EQ_EQ2] = ACTIONS(2198), - [anon_sym_BANG_EQ2] = ACTIONS(2198), - [anon_sym_LT2] = ACTIONS(2200), - [anon_sym_LT_EQ2] = ACTIONS(2198), - [anon_sym_GT_EQ2] = ACTIONS(2198), - [anon_sym_EQ_TILDE2] = ACTIONS(2198), - [anon_sym_BANG_TILDE2] = ACTIONS(2198), - [anon_sym_like2] = ACTIONS(2198), - [anon_sym_not_DASHlike2] = ACTIONS(2198), - [anon_sym_STAR_STAR2] = ACTIONS(2198), - [anon_sym_PLUS_PLUS2] = ACTIONS(2198), - [anon_sym_SLASH2] = ACTIONS(2200), - [anon_sym_mod2] = ACTIONS(2198), - [anon_sym_SLASH_SLASH2] = ACTIONS(2198), - [anon_sym_PLUS2] = ACTIONS(2200), - [anon_sym_bit_DASHshl2] = ACTIONS(2198), - [anon_sym_bit_DASHshr2] = ACTIONS(2198), - [anon_sym_bit_DASHand2] = ACTIONS(2198), - [anon_sym_bit_DASHxor2] = ACTIONS(2198), - [anon_sym_bit_DASHor2] = ACTIONS(2198), - [anon_sym_err_GT] = ACTIONS(2200), - [anon_sym_out_GT] = ACTIONS(2200), - [anon_sym_e_GT] = ACTIONS(2200), - [anon_sym_o_GT] = ACTIONS(2200), - [anon_sym_err_PLUSout_GT] = ACTIONS(2200), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), - [anon_sym_o_PLUSe_GT] = ACTIONS(2200), - [anon_sym_e_PLUSo_GT] = ACTIONS(2200), - [anon_sym_err_GT_GT] = ACTIONS(2198), - [anon_sym_out_GT_GT] = ACTIONS(2198), - [anon_sym_e_GT_GT] = ACTIONS(2198), - [anon_sym_o_GT_GT] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1014)] = { - [sym__expr_parenthesized_immediate] = STATE(4759), - [sym_comment] = STATE(1014), + [STATE(1040)] = { + [sym__expr_parenthesized_immediate] = STATE(4755), + [sym_comment] = STATE(1040), [ts_builtin_sym_end] = ACTIONS(2062), [anon_sym_in] = ACTIONS(2062), [sym__newline] = ACTIONS(2062), @@ -122618,7 +124421,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2062), [anon_sym_like2] = ACTIONS(2062), [anon_sym_not_DASHlike2] = ACTIONS(2062), - [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_LPAREN2] = ACTIONS(1714), [anon_sym_STAR_STAR2] = ACTIONS(2062), [anon_sym_PLUS_PLUS2] = ACTIONS(2062), [anon_sym_SLASH2] = ACTIONS(2064), @@ -122648,1573 +124451,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1015)] = { - [sym_comment] = STATE(1015), - [ts_builtin_sym_end] = ACTIONS(1952), - [anon_sym_in] = ACTIONS(1952), - [sym__newline] = ACTIONS(1952), - [anon_sym_SEMI] = ACTIONS(1952), - [anon_sym_PIPE] = ACTIONS(1952), - [anon_sym_err_GT_PIPE] = ACTIONS(1952), - [anon_sym_out_GT_PIPE] = ACTIONS(1952), - [anon_sym_e_GT_PIPE] = ACTIONS(1952), - [anon_sym_o_GT_PIPE] = ACTIONS(1952), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1952), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1952), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1952), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1952), - [anon_sym_GT2] = ACTIONS(1954), - [anon_sym_DASH2] = ACTIONS(1952), - [anon_sym_STAR2] = ACTIONS(1954), - [anon_sym_and2] = ACTIONS(1952), - [anon_sym_xor2] = ACTIONS(1952), - [anon_sym_or2] = ACTIONS(1952), - [anon_sym_not_DASHin2] = ACTIONS(1952), - [anon_sym_has2] = ACTIONS(1952), - [anon_sym_not_DASHhas2] = ACTIONS(1952), - [anon_sym_starts_DASHwith2] = ACTIONS(1952), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1952), - [anon_sym_ends_DASHwith2] = ACTIONS(1952), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1952), - [anon_sym_EQ_EQ2] = ACTIONS(1952), - [anon_sym_BANG_EQ2] = ACTIONS(1952), - [anon_sym_LT2] = ACTIONS(1954), - [anon_sym_LT_EQ2] = ACTIONS(1952), - [anon_sym_GT_EQ2] = ACTIONS(1952), - [anon_sym_EQ_TILDE2] = ACTIONS(1952), - [anon_sym_BANG_TILDE2] = ACTIONS(1952), - [anon_sym_like2] = ACTIONS(1952), - [anon_sym_not_DASHlike2] = ACTIONS(1952), - [anon_sym_LPAREN2] = ACTIONS(1956), - [anon_sym_STAR_STAR2] = ACTIONS(1952), - [anon_sym_PLUS_PLUS2] = ACTIONS(1952), - [anon_sym_SLASH2] = ACTIONS(1954), - [anon_sym_mod2] = ACTIONS(1952), - [anon_sym_SLASH_SLASH2] = ACTIONS(1952), - [anon_sym_PLUS2] = ACTIONS(1954), - [anon_sym_bit_DASHshl2] = ACTIONS(1952), - [anon_sym_bit_DASHshr2] = ACTIONS(1952), - [anon_sym_bit_DASHand2] = ACTIONS(1952), - [anon_sym_bit_DASHxor2] = ACTIONS(1952), - [anon_sym_bit_DASHor2] = ACTIONS(1952), - [anon_sym_err_GT] = ACTIONS(1954), - [anon_sym_out_GT] = ACTIONS(1954), - [anon_sym_e_GT] = ACTIONS(1954), - [anon_sym_o_GT] = ACTIONS(1954), - [anon_sym_err_PLUSout_GT] = ACTIONS(1954), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1954), - [anon_sym_o_PLUSe_GT] = ACTIONS(1954), - [anon_sym_e_PLUSo_GT] = ACTIONS(1954), - [anon_sym_err_GT_GT] = ACTIONS(1952), - [anon_sym_out_GT_GT] = ACTIONS(1952), - [anon_sym_e_GT_GT] = ACTIONS(1952), - [anon_sym_o_GT_GT] = ACTIONS(1952), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1952), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1952), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1952), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1952), - [sym__unquoted_pattern] = ACTIONS(1962), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1016)] = { - [aux_sym__repeat_newline] = STATE(1001), - [sym_comment] = STATE(1016), - [anon_sym_in] = ACTIONS(2198), - [sym__newline] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_err_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_GT_PIPE] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_GT2] = ACTIONS(2200), - [anon_sym_DASH2] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_STAR2] = ACTIONS(2200), - [anon_sym_and2] = ACTIONS(2198), - [anon_sym_xor2] = ACTIONS(2198), - [anon_sym_or2] = ACTIONS(2198), - [anon_sym_not_DASHin2] = ACTIONS(2198), - [anon_sym_has2] = ACTIONS(2198), - [anon_sym_not_DASHhas2] = ACTIONS(2198), - [anon_sym_starts_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), - [anon_sym_ends_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), - [anon_sym_EQ_EQ2] = ACTIONS(2198), - [anon_sym_BANG_EQ2] = ACTIONS(2198), - [anon_sym_LT2] = ACTIONS(2200), - [anon_sym_LT_EQ2] = ACTIONS(2198), - [anon_sym_GT_EQ2] = ACTIONS(2198), - [anon_sym_EQ_TILDE2] = ACTIONS(2198), - [anon_sym_BANG_TILDE2] = ACTIONS(2198), - [anon_sym_like2] = ACTIONS(2198), - [anon_sym_not_DASHlike2] = ACTIONS(2198), - [anon_sym_STAR_STAR2] = ACTIONS(2198), - [anon_sym_PLUS_PLUS2] = ACTIONS(2198), - [anon_sym_SLASH2] = ACTIONS(2200), - [anon_sym_mod2] = ACTIONS(2198), - [anon_sym_SLASH_SLASH2] = ACTIONS(2198), - [anon_sym_PLUS2] = ACTIONS(2200), - [anon_sym_bit_DASHshl2] = ACTIONS(2198), - [anon_sym_bit_DASHshr2] = ACTIONS(2198), - [anon_sym_bit_DASHand2] = ACTIONS(2198), - [anon_sym_bit_DASHxor2] = ACTIONS(2198), - [anon_sym_bit_DASHor2] = ACTIONS(2198), - [anon_sym_err_GT] = ACTIONS(2200), - [anon_sym_out_GT] = ACTIONS(2200), - [anon_sym_e_GT] = ACTIONS(2200), - [anon_sym_o_GT] = ACTIONS(2200), - [anon_sym_err_PLUSout_GT] = ACTIONS(2200), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), - [anon_sym_o_PLUSe_GT] = ACTIONS(2200), - [anon_sym_e_PLUSo_GT] = ACTIONS(2200), - [anon_sym_err_GT_GT] = ACTIONS(2198), - [anon_sym_out_GT_GT] = ACTIONS(2198), - [anon_sym_e_GT_GT] = ACTIONS(2198), - [anon_sym_o_GT_GT] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1017)] = { - [sym_comment] = STATE(1017), - [aux_sym_cmd_identifier_token2] = ACTIONS(2662), - [anon_sym_in] = ACTIONS(793), - [sym__newline] = ACTIONS(890), - [anon_sym_SEMI] = ACTIONS(890), - [anon_sym_PIPE] = ACTIONS(890), - [anon_sym_err_GT_PIPE] = ACTIONS(890), - [anon_sym_out_GT_PIPE] = ACTIONS(890), - [anon_sym_e_GT_PIPE] = ACTIONS(890), - [anon_sym_o_GT_PIPE] = ACTIONS(890), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(890), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(890), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(890), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(890), - [anon_sym_GT2] = ACTIONS(793), - [anon_sym_DASH2] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(890), - [anon_sym_STAR2] = ACTIONS(793), - [anon_sym_and2] = ACTIONS(793), - [anon_sym_xor2] = ACTIONS(793), - [anon_sym_or2] = ACTIONS(793), - [anon_sym_not_DASHin2] = ACTIONS(793), - [anon_sym_has2] = ACTIONS(793), - [anon_sym_not_DASHhas2] = ACTIONS(793), - [anon_sym_starts_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), - [anon_sym_ends_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), - [anon_sym_EQ_EQ2] = ACTIONS(890), - [anon_sym_BANG_EQ2] = ACTIONS(890), - [anon_sym_LT2] = ACTIONS(793), - [anon_sym_LT_EQ2] = ACTIONS(890), - [anon_sym_GT_EQ2] = ACTIONS(890), - [anon_sym_EQ_TILDE2] = ACTIONS(890), - [anon_sym_BANG_TILDE2] = ACTIONS(793), - [anon_sym_like2] = ACTIONS(793), - [anon_sym_not_DASHlike2] = ACTIONS(793), - [anon_sym_STAR_STAR2] = ACTIONS(793), - [anon_sym_PLUS_PLUS2] = ACTIONS(793), - [anon_sym_SLASH2] = ACTIONS(793), - [anon_sym_mod2] = ACTIONS(793), - [anon_sym_SLASH_SLASH2] = ACTIONS(793), - [anon_sym_PLUS2] = ACTIONS(793), - [anon_sym_bit_DASHshl2] = ACTIONS(793), - [anon_sym_bit_DASHshr2] = ACTIONS(793), - [anon_sym_bit_DASHand2] = ACTIONS(793), - [anon_sym_bit_DASHxor2] = ACTIONS(793), - [anon_sym_bit_DASHor2] = ACTIONS(793), - [anon_sym_COLON2] = ACTIONS(890), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [anon_sym_err_GT_GT] = ACTIONS(890), - [anon_sym_out_GT_GT] = ACTIONS(890), - [anon_sym_e_GT_GT] = ACTIONS(890), - [anon_sym_o_GT_GT] = ACTIONS(890), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(890), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(890), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(890), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(890), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(1018)] = { - [aux_sym__repeat_newline] = STATE(1063), - [sym_comment] = STATE(1018), - [anon_sym_in] = ACTIONS(2198), - [sym__newline] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_err_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_GT_PIPE] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_GT2] = ACTIONS(2200), - [anon_sym_DASH2] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_STAR2] = ACTIONS(2200), - [anon_sym_and2] = ACTIONS(2198), - [anon_sym_xor2] = ACTIONS(2198), - [anon_sym_or2] = ACTIONS(2198), - [anon_sym_not_DASHin2] = ACTIONS(2198), - [anon_sym_has2] = ACTIONS(2198), - [anon_sym_not_DASHhas2] = ACTIONS(2198), - [anon_sym_starts_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), - [anon_sym_ends_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), - [anon_sym_EQ_EQ2] = ACTIONS(2198), - [anon_sym_BANG_EQ2] = ACTIONS(2198), - [anon_sym_LT2] = ACTIONS(2200), - [anon_sym_LT_EQ2] = ACTIONS(2198), - [anon_sym_GT_EQ2] = ACTIONS(2198), - [anon_sym_EQ_TILDE2] = ACTIONS(2198), - [anon_sym_BANG_TILDE2] = ACTIONS(2198), - [anon_sym_like2] = ACTIONS(2198), - [anon_sym_not_DASHlike2] = ACTIONS(2198), - [anon_sym_STAR_STAR2] = ACTIONS(2198), - [anon_sym_PLUS_PLUS2] = ACTIONS(2198), - [anon_sym_SLASH2] = ACTIONS(2200), - [anon_sym_mod2] = ACTIONS(2198), - [anon_sym_SLASH_SLASH2] = ACTIONS(2198), - [anon_sym_PLUS2] = ACTIONS(2200), - [anon_sym_bit_DASHshl2] = ACTIONS(2198), - [anon_sym_bit_DASHshr2] = ACTIONS(2198), - [anon_sym_bit_DASHand2] = ACTIONS(2198), - [anon_sym_bit_DASHxor2] = ACTIONS(2198), - [anon_sym_bit_DASHor2] = ACTIONS(2198), - [anon_sym_err_GT] = ACTIONS(2200), - [anon_sym_out_GT] = ACTIONS(2200), - [anon_sym_e_GT] = ACTIONS(2200), - [anon_sym_o_GT] = ACTIONS(2200), - [anon_sym_err_PLUSout_GT] = ACTIONS(2200), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), - [anon_sym_o_PLUSe_GT] = ACTIONS(2200), - [anon_sym_e_PLUSo_GT] = ACTIONS(2200), - [anon_sym_err_GT_GT] = ACTIONS(2198), - [anon_sym_out_GT_GT] = ACTIONS(2198), - [anon_sym_e_GT_GT] = ACTIONS(2198), - [anon_sym_o_GT_GT] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1019)] = { - [aux_sym__repeat_newline] = STATE(1031), - [sym_comment] = STATE(1019), - [anon_sym_in] = ACTIONS(2279), - [sym__newline] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_err_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_GT_PIPE] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_GT2] = ACTIONS(2281), - [anon_sym_DASH2] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_STAR2] = ACTIONS(2281), - [anon_sym_and2] = ACTIONS(2279), - [anon_sym_xor2] = ACTIONS(2279), - [anon_sym_or2] = ACTIONS(2279), - [anon_sym_not_DASHin2] = ACTIONS(2279), - [anon_sym_has2] = ACTIONS(2279), - [anon_sym_not_DASHhas2] = ACTIONS(2279), - [anon_sym_starts_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), - [anon_sym_ends_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), - [anon_sym_EQ_EQ2] = ACTIONS(2279), - [anon_sym_BANG_EQ2] = ACTIONS(2279), - [anon_sym_LT2] = ACTIONS(2281), - [anon_sym_LT_EQ2] = ACTIONS(2279), - [anon_sym_GT_EQ2] = ACTIONS(2279), - [anon_sym_EQ_TILDE2] = ACTIONS(2279), - [anon_sym_BANG_TILDE2] = ACTIONS(2279), - [anon_sym_like2] = ACTIONS(2279), - [anon_sym_not_DASHlike2] = ACTIONS(2279), - [anon_sym_STAR_STAR2] = ACTIONS(2279), - [anon_sym_PLUS_PLUS2] = ACTIONS(2279), - [anon_sym_SLASH2] = ACTIONS(2281), - [anon_sym_mod2] = ACTIONS(2279), - [anon_sym_SLASH_SLASH2] = ACTIONS(2279), - [anon_sym_PLUS2] = ACTIONS(2281), - [anon_sym_bit_DASHshl2] = ACTIONS(2279), - [anon_sym_bit_DASHshr2] = ACTIONS(2279), - [anon_sym_bit_DASHand2] = ACTIONS(2279), - [anon_sym_bit_DASHxor2] = ACTIONS(2279), - [anon_sym_bit_DASHor2] = ACTIONS(2279), - [anon_sym_err_GT] = ACTIONS(2281), - [anon_sym_out_GT] = ACTIONS(2281), - [anon_sym_e_GT] = ACTIONS(2281), - [anon_sym_o_GT] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT] = ACTIONS(2281), - [anon_sym_err_GT_GT] = ACTIONS(2279), - [anon_sym_out_GT_GT] = ACTIONS(2279), - [anon_sym_e_GT_GT] = ACTIONS(2279), - [anon_sym_o_GT_GT] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1020)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1020), - [anon_sym_in] = ACTIONS(2680), - [sym__newline] = ACTIONS(2680), - [anon_sym_SEMI] = ACTIONS(2680), - [anon_sym_PIPE] = ACTIONS(2680), - [anon_sym_err_GT_PIPE] = ACTIONS(2680), - [anon_sym_out_GT_PIPE] = ACTIONS(2680), - [anon_sym_e_GT_PIPE] = ACTIONS(2680), - [anon_sym_o_GT_PIPE] = ACTIONS(2680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2680), - [anon_sym_RPAREN] = ACTIONS(2680), - [anon_sym_GT2] = ACTIONS(2682), - [anon_sym_DASH2] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_STAR2] = ACTIONS(2682), - [anon_sym_and2] = ACTIONS(2680), - [anon_sym_xor2] = ACTIONS(2680), - [anon_sym_or2] = ACTIONS(2680), - [anon_sym_not_DASHin2] = ACTIONS(2680), - [anon_sym_has2] = ACTIONS(2680), - [anon_sym_not_DASHhas2] = ACTIONS(2680), - [anon_sym_starts_DASHwith2] = ACTIONS(2680), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2680), - [anon_sym_ends_DASHwith2] = ACTIONS(2680), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2680), - [anon_sym_EQ_EQ2] = ACTIONS(2680), - [anon_sym_BANG_EQ2] = ACTIONS(2680), - [anon_sym_LT2] = ACTIONS(2682), - [anon_sym_LT_EQ2] = ACTIONS(2680), - [anon_sym_GT_EQ2] = ACTIONS(2680), - [anon_sym_EQ_TILDE2] = ACTIONS(2680), - [anon_sym_BANG_TILDE2] = ACTIONS(2680), - [anon_sym_like2] = ACTIONS(2680), - [anon_sym_not_DASHlike2] = ACTIONS(2680), - [anon_sym_STAR_STAR2] = ACTIONS(2680), - [anon_sym_PLUS_PLUS2] = ACTIONS(2680), - [anon_sym_SLASH2] = ACTIONS(2682), - [anon_sym_mod2] = ACTIONS(2680), - [anon_sym_SLASH_SLASH2] = ACTIONS(2680), - [anon_sym_PLUS2] = ACTIONS(2682), - [anon_sym_bit_DASHshl2] = ACTIONS(2680), - [anon_sym_bit_DASHshr2] = ACTIONS(2680), - [anon_sym_bit_DASHand2] = ACTIONS(2680), - [anon_sym_bit_DASHxor2] = ACTIONS(2680), - [anon_sym_bit_DASHor2] = ACTIONS(2680), - [anon_sym_err_GT] = ACTIONS(2682), - [anon_sym_out_GT] = ACTIONS(2682), - [anon_sym_e_GT] = ACTIONS(2682), - [anon_sym_o_GT] = ACTIONS(2682), - [anon_sym_err_PLUSout_GT] = ACTIONS(2682), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2682), - [anon_sym_o_PLUSe_GT] = ACTIONS(2682), - [anon_sym_e_PLUSo_GT] = ACTIONS(2682), - [anon_sym_err_GT_GT] = ACTIONS(2680), - [anon_sym_out_GT_GT] = ACTIONS(2680), - [anon_sym_e_GT_GT] = ACTIONS(2680), - [anon_sym_o_GT_GT] = ACTIONS(2680), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2680), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2680), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2680), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2680), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1021)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1021), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1022)] = { - [aux_sym__repeat_newline] = STATE(1032), - [sym_comment] = STATE(1022), - [anon_sym_in] = ACTIONS(2279), - [sym__newline] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_err_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_GT_PIPE] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_GT2] = ACTIONS(2281), - [anon_sym_DASH2] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_STAR2] = ACTIONS(2281), - [anon_sym_and2] = ACTIONS(2279), - [anon_sym_xor2] = ACTIONS(2279), - [anon_sym_or2] = ACTIONS(2279), - [anon_sym_not_DASHin2] = ACTIONS(2279), - [anon_sym_has2] = ACTIONS(2279), - [anon_sym_not_DASHhas2] = ACTIONS(2279), - [anon_sym_starts_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), - [anon_sym_ends_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), - [anon_sym_EQ_EQ2] = ACTIONS(2279), - [anon_sym_BANG_EQ2] = ACTIONS(2279), - [anon_sym_LT2] = ACTIONS(2281), - [anon_sym_LT_EQ2] = ACTIONS(2279), - [anon_sym_GT_EQ2] = ACTIONS(2279), - [anon_sym_EQ_TILDE2] = ACTIONS(2279), - [anon_sym_BANG_TILDE2] = ACTIONS(2279), - [anon_sym_like2] = ACTIONS(2279), - [anon_sym_not_DASHlike2] = ACTIONS(2279), - [anon_sym_STAR_STAR2] = ACTIONS(2279), - [anon_sym_PLUS_PLUS2] = ACTIONS(2279), - [anon_sym_SLASH2] = ACTIONS(2281), - [anon_sym_mod2] = ACTIONS(2279), - [anon_sym_SLASH_SLASH2] = ACTIONS(2279), - [anon_sym_PLUS2] = ACTIONS(2281), - [anon_sym_bit_DASHshl2] = ACTIONS(2279), - [anon_sym_bit_DASHshr2] = ACTIONS(2279), - [anon_sym_bit_DASHand2] = ACTIONS(2279), - [anon_sym_bit_DASHxor2] = ACTIONS(2279), - [anon_sym_bit_DASHor2] = ACTIONS(2279), - [anon_sym_err_GT] = ACTIONS(2281), - [anon_sym_out_GT] = ACTIONS(2281), - [anon_sym_e_GT] = ACTIONS(2281), - [anon_sym_o_GT] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT] = ACTIONS(2281), - [anon_sym_err_GT_GT] = ACTIONS(2279), - [anon_sym_out_GT_GT] = ACTIONS(2279), - [anon_sym_e_GT_GT] = ACTIONS(2279), - [anon_sym_o_GT_GT] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1023)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1023), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1024)] = { - [aux_sym__repeat_newline] = STATE(1033), - [sym_comment] = STATE(1024), - [anon_sym_in] = ACTIONS(2279), - [sym__newline] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_err_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_GT_PIPE] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_GT2] = ACTIONS(2281), - [anon_sym_DASH2] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_STAR2] = ACTIONS(2281), - [anon_sym_and2] = ACTIONS(2279), - [anon_sym_xor2] = ACTIONS(2279), - [anon_sym_or2] = ACTIONS(2279), - [anon_sym_not_DASHin2] = ACTIONS(2279), - [anon_sym_has2] = ACTIONS(2279), - [anon_sym_not_DASHhas2] = ACTIONS(2279), - [anon_sym_starts_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), - [anon_sym_ends_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), - [anon_sym_EQ_EQ2] = ACTIONS(2279), - [anon_sym_BANG_EQ2] = ACTIONS(2279), - [anon_sym_LT2] = ACTIONS(2281), - [anon_sym_LT_EQ2] = ACTIONS(2279), - [anon_sym_GT_EQ2] = ACTIONS(2279), - [anon_sym_EQ_TILDE2] = ACTIONS(2279), - [anon_sym_BANG_TILDE2] = ACTIONS(2279), - [anon_sym_like2] = ACTIONS(2279), - [anon_sym_not_DASHlike2] = ACTIONS(2279), - [anon_sym_STAR_STAR2] = ACTIONS(2279), - [anon_sym_PLUS_PLUS2] = ACTIONS(2279), - [anon_sym_SLASH2] = ACTIONS(2281), - [anon_sym_mod2] = ACTIONS(2279), - [anon_sym_SLASH_SLASH2] = ACTIONS(2279), - [anon_sym_PLUS2] = ACTIONS(2281), - [anon_sym_bit_DASHshl2] = ACTIONS(2279), - [anon_sym_bit_DASHshr2] = ACTIONS(2279), - [anon_sym_bit_DASHand2] = ACTIONS(2279), - [anon_sym_bit_DASHxor2] = ACTIONS(2279), - [anon_sym_bit_DASHor2] = ACTIONS(2279), - [anon_sym_err_GT] = ACTIONS(2281), - [anon_sym_out_GT] = ACTIONS(2281), - [anon_sym_e_GT] = ACTIONS(2281), - [anon_sym_o_GT] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT] = ACTIONS(2281), - [anon_sym_err_GT_GT] = ACTIONS(2279), - [anon_sym_out_GT_GT] = ACTIONS(2279), - [anon_sym_e_GT_GT] = ACTIONS(2279), - [anon_sym_o_GT_GT] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1025)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1025), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1026)] = { - [aux_sym__repeat_newline] = STATE(1034), - [sym_comment] = STATE(1026), - [anon_sym_in] = ACTIONS(2684), - [sym__newline] = ACTIONS(2684), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_err_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_GT_PIPE] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2684), - [anon_sym_GT2] = ACTIONS(2686), - [anon_sym_DASH2] = ACTIONS(2684), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_STAR2] = ACTIONS(2686), - [anon_sym_and2] = ACTIONS(2684), - [anon_sym_xor2] = ACTIONS(2684), - [anon_sym_or2] = ACTIONS(2684), - [anon_sym_not_DASHin2] = ACTIONS(2684), - [anon_sym_has2] = ACTIONS(2684), - [anon_sym_not_DASHhas2] = ACTIONS(2684), - [anon_sym_starts_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2684), - [anon_sym_ends_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2684), - [anon_sym_EQ_EQ2] = ACTIONS(2684), - [anon_sym_BANG_EQ2] = ACTIONS(2684), - [anon_sym_LT2] = ACTIONS(2686), - [anon_sym_LT_EQ2] = ACTIONS(2684), - [anon_sym_GT_EQ2] = ACTIONS(2684), - [anon_sym_EQ_TILDE2] = ACTIONS(2684), - [anon_sym_BANG_TILDE2] = ACTIONS(2684), - [anon_sym_like2] = ACTIONS(2684), - [anon_sym_not_DASHlike2] = ACTIONS(2684), - [anon_sym_STAR_STAR2] = ACTIONS(2684), - [anon_sym_PLUS_PLUS2] = ACTIONS(2684), - [anon_sym_SLASH2] = ACTIONS(2686), - [anon_sym_mod2] = ACTIONS(2684), - [anon_sym_SLASH_SLASH2] = ACTIONS(2684), - [anon_sym_PLUS2] = ACTIONS(2686), - [anon_sym_bit_DASHshl2] = ACTIONS(2684), - [anon_sym_bit_DASHshr2] = ACTIONS(2684), - [anon_sym_bit_DASHand2] = ACTIONS(2684), - [anon_sym_bit_DASHxor2] = ACTIONS(2684), - [anon_sym_bit_DASHor2] = ACTIONS(2684), - [anon_sym_err_GT] = ACTIONS(2686), - [anon_sym_out_GT] = ACTIONS(2686), - [anon_sym_e_GT] = ACTIONS(2686), - [anon_sym_o_GT] = ACTIONS(2686), - [anon_sym_err_PLUSout_GT] = ACTIONS(2686), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), - [anon_sym_o_PLUSe_GT] = ACTIONS(2686), - [anon_sym_e_PLUSo_GT] = ACTIONS(2686), - [anon_sym_err_GT_GT] = ACTIONS(2684), - [anon_sym_out_GT_GT] = ACTIONS(2684), - [anon_sym_e_GT_GT] = ACTIONS(2684), - [anon_sym_o_GT_GT] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1027)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1027), - [anon_sym_in] = ACTIONS(2680), - [sym__newline] = ACTIONS(2680), - [anon_sym_SEMI] = ACTIONS(2680), - [anon_sym_PIPE] = ACTIONS(2680), - [anon_sym_err_GT_PIPE] = ACTIONS(2680), - [anon_sym_out_GT_PIPE] = ACTIONS(2680), - [anon_sym_e_GT_PIPE] = ACTIONS(2680), - [anon_sym_o_GT_PIPE] = ACTIONS(2680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2680), - [anon_sym_RPAREN] = ACTIONS(2680), - [anon_sym_GT2] = ACTIONS(2682), - [anon_sym_DASH2] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_STAR2] = ACTIONS(2682), - [anon_sym_and2] = ACTIONS(2680), - [anon_sym_xor2] = ACTIONS(2680), - [anon_sym_or2] = ACTIONS(2680), - [anon_sym_not_DASHin2] = ACTIONS(2680), - [anon_sym_has2] = ACTIONS(2680), - [anon_sym_not_DASHhas2] = ACTIONS(2680), - [anon_sym_starts_DASHwith2] = ACTIONS(2680), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2680), - [anon_sym_ends_DASHwith2] = ACTIONS(2680), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2680), - [anon_sym_EQ_EQ2] = ACTIONS(2680), - [anon_sym_BANG_EQ2] = ACTIONS(2680), - [anon_sym_LT2] = ACTIONS(2682), - [anon_sym_LT_EQ2] = ACTIONS(2680), - [anon_sym_GT_EQ2] = ACTIONS(2680), - [anon_sym_EQ_TILDE2] = ACTIONS(2680), - [anon_sym_BANG_TILDE2] = ACTIONS(2680), - [anon_sym_like2] = ACTIONS(2680), - [anon_sym_not_DASHlike2] = ACTIONS(2680), - [anon_sym_STAR_STAR2] = ACTIONS(2680), - [anon_sym_PLUS_PLUS2] = ACTIONS(2680), - [anon_sym_SLASH2] = ACTIONS(2682), - [anon_sym_mod2] = ACTIONS(2680), - [anon_sym_SLASH_SLASH2] = ACTIONS(2680), - [anon_sym_PLUS2] = ACTIONS(2682), - [anon_sym_bit_DASHshl2] = ACTIONS(2680), - [anon_sym_bit_DASHshr2] = ACTIONS(2680), - [anon_sym_bit_DASHand2] = ACTIONS(2680), - [anon_sym_bit_DASHxor2] = ACTIONS(2680), - [anon_sym_bit_DASHor2] = ACTIONS(2680), - [anon_sym_err_GT] = ACTIONS(2682), - [anon_sym_out_GT] = ACTIONS(2682), - [anon_sym_e_GT] = ACTIONS(2682), - [anon_sym_o_GT] = ACTIONS(2682), - [anon_sym_err_PLUSout_GT] = ACTIONS(2682), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2682), - [anon_sym_o_PLUSe_GT] = ACTIONS(2682), - [anon_sym_e_PLUSo_GT] = ACTIONS(2682), - [anon_sym_err_GT_GT] = ACTIONS(2680), - [anon_sym_out_GT_GT] = ACTIONS(2680), - [anon_sym_e_GT_GT] = ACTIONS(2680), - [anon_sym_o_GT_GT] = ACTIONS(2680), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2680), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2680), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2680), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2680), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1028)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1028), - [anon_sym_in] = ACTIONS(2680), - [sym__newline] = ACTIONS(2680), - [anon_sym_SEMI] = ACTIONS(2680), - [anon_sym_PIPE] = ACTIONS(2680), - [anon_sym_err_GT_PIPE] = ACTIONS(2680), - [anon_sym_out_GT_PIPE] = ACTIONS(2680), - [anon_sym_e_GT_PIPE] = ACTIONS(2680), - [anon_sym_o_GT_PIPE] = ACTIONS(2680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2680), - [anon_sym_RPAREN] = ACTIONS(2680), - [anon_sym_GT2] = ACTIONS(2682), - [anon_sym_DASH2] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_STAR2] = ACTIONS(2682), - [anon_sym_and2] = ACTIONS(2680), - [anon_sym_xor2] = ACTIONS(2680), - [anon_sym_or2] = ACTIONS(2680), - [anon_sym_not_DASHin2] = ACTIONS(2680), - [anon_sym_has2] = ACTIONS(2680), - [anon_sym_not_DASHhas2] = ACTIONS(2680), - [anon_sym_starts_DASHwith2] = ACTIONS(2680), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2680), - [anon_sym_ends_DASHwith2] = ACTIONS(2680), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2680), - [anon_sym_EQ_EQ2] = ACTIONS(2680), - [anon_sym_BANG_EQ2] = ACTIONS(2680), - [anon_sym_LT2] = ACTIONS(2682), - [anon_sym_LT_EQ2] = ACTIONS(2680), - [anon_sym_GT_EQ2] = ACTIONS(2680), - [anon_sym_EQ_TILDE2] = ACTIONS(2680), - [anon_sym_BANG_TILDE2] = ACTIONS(2680), - [anon_sym_like2] = ACTIONS(2680), - [anon_sym_not_DASHlike2] = ACTIONS(2680), - [anon_sym_STAR_STAR2] = ACTIONS(2680), - [anon_sym_PLUS_PLUS2] = ACTIONS(2680), - [anon_sym_SLASH2] = ACTIONS(2682), - [anon_sym_mod2] = ACTIONS(2680), - [anon_sym_SLASH_SLASH2] = ACTIONS(2680), - [anon_sym_PLUS2] = ACTIONS(2682), - [anon_sym_bit_DASHshl2] = ACTIONS(2680), - [anon_sym_bit_DASHshr2] = ACTIONS(2680), - [anon_sym_bit_DASHand2] = ACTIONS(2680), - [anon_sym_bit_DASHxor2] = ACTIONS(2680), - [anon_sym_bit_DASHor2] = ACTIONS(2680), - [anon_sym_err_GT] = ACTIONS(2682), - [anon_sym_out_GT] = ACTIONS(2682), - [anon_sym_e_GT] = ACTIONS(2682), - [anon_sym_o_GT] = ACTIONS(2682), - [anon_sym_err_PLUSout_GT] = ACTIONS(2682), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2682), - [anon_sym_o_PLUSe_GT] = ACTIONS(2682), - [anon_sym_e_PLUSo_GT] = ACTIONS(2682), - [anon_sym_err_GT_GT] = ACTIONS(2680), - [anon_sym_out_GT_GT] = ACTIONS(2680), - [anon_sym_e_GT_GT] = ACTIONS(2680), - [anon_sym_o_GT_GT] = ACTIONS(2680), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2680), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2680), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2680), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2680), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1029)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1029), - [anon_sym_in] = ACTIONS(2680), - [sym__newline] = ACTIONS(2680), - [anon_sym_SEMI] = ACTIONS(2680), - [anon_sym_PIPE] = ACTIONS(2680), - [anon_sym_err_GT_PIPE] = ACTIONS(2680), - [anon_sym_out_GT_PIPE] = ACTIONS(2680), - [anon_sym_e_GT_PIPE] = ACTIONS(2680), - [anon_sym_o_GT_PIPE] = ACTIONS(2680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2680), - [anon_sym_RPAREN] = ACTIONS(2680), - [anon_sym_GT2] = ACTIONS(2682), - [anon_sym_DASH2] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_STAR2] = ACTIONS(2682), - [anon_sym_and2] = ACTIONS(2680), - [anon_sym_xor2] = ACTIONS(2680), - [anon_sym_or2] = ACTIONS(2680), - [anon_sym_not_DASHin2] = ACTIONS(2680), - [anon_sym_has2] = ACTIONS(2680), - [anon_sym_not_DASHhas2] = ACTIONS(2680), - [anon_sym_starts_DASHwith2] = ACTIONS(2680), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2680), - [anon_sym_ends_DASHwith2] = ACTIONS(2680), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2680), - [anon_sym_EQ_EQ2] = ACTIONS(2680), - [anon_sym_BANG_EQ2] = ACTIONS(2680), - [anon_sym_LT2] = ACTIONS(2682), - [anon_sym_LT_EQ2] = ACTIONS(2680), - [anon_sym_GT_EQ2] = ACTIONS(2680), - [anon_sym_EQ_TILDE2] = ACTIONS(2680), - [anon_sym_BANG_TILDE2] = ACTIONS(2680), - [anon_sym_like2] = ACTIONS(2680), - [anon_sym_not_DASHlike2] = ACTIONS(2680), - [anon_sym_STAR_STAR2] = ACTIONS(2680), - [anon_sym_PLUS_PLUS2] = ACTIONS(2680), - [anon_sym_SLASH2] = ACTIONS(2682), - [anon_sym_mod2] = ACTIONS(2680), - [anon_sym_SLASH_SLASH2] = ACTIONS(2680), - [anon_sym_PLUS2] = ACTIONS(2682), - [anon_sym_bit_DASHshl2] = ACTIONS(2680), - [anon_sym_bit_DASHshr2] = ACTIONS(2680), - [anon_sym_bit_DASHand2] = ACTIONS(2680), - [anon_sym_bit_DASHxor2] = ACTIONS(2680), - [anon_sym_bit_DASHor2] = ACTIONS(2680), - [anon_sym_err_GT] = ACTIONS(2682), - [anon_sym_out_GT] = ACTIONS(2682), - [anon_sym_e_GT] = ACTIONS(2682), - [anon_sym_o_GT] = ACTIONS(2682), - [anon_sym_err_PLUSout_GT] = ACTIONS(2682), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2682), - [anon_sym_o_PLUSe_GT] = ACTIONS(2682), - [anon_sym_e_PLUSo_GT] = ACTIONS(2682), - [anon_sym_err_GT_GT] = ACTIONS(2680), - [anon_sym_out_GT_GT] = ACTIONS(2680), - [anon_sym_e_GT_GT] = ACTIONS(2680), - [anon_sym_o_GT_GT] = ACTIONS(2680), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2680), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2680), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2680), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2680), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1030)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1030), - [anon_sym_in] = ACTIONS(2680), - [sym__newline] = ACTIONS(2680), - [anon_sym_SEMI] = ACTIONS(2680), - [anon_sym_PIPE] = ACTIONS(2680), - [anon_sym_err_GT_PIPE] = ACTIONS(2680), - [anon_sym_out_GT_PIPE] = ACTIONS(2680), - [anon_sym_e_GT_PIPE] = ACTIONS(2680), - [anon_sym_o_GT_PIPE] = ACTIONS(2680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2680), - [anon_sym_RPAREN] = ACTIONS(2680), - [anon_sym_GT2] = ACTIONS(2682), - [anon_sym_DASH2] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_STAR2] = ACTIONS(2682), - [anon_sym_and2] = ACTIONS(2680), - [anon_sym_xor2] = ACTIONS(2680), - [anon_sym_or2] = ACTIONS(2680), - [anon_sym_not_DASHin2] = ACTIONS(2680), - [anon_sym_has2] = ACTIONS(2680), - [anon_sym_not_DASHhas2] = ACTIONS(2680), - [anon_sym_starts_DASHwith2] = ACTIONS(2680), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2680), - [anon_sym_ends_DASHwith2] = ACTIONS(2680), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2680), - [anon_sym_EQ_EQ2] = ACTIONS(2680), - [anon_sym_BANG_EQ2] = ACTIONS(2680), - [anon_sym_LT2] = ACTIONS(2682), - [anon_sym_LT_EQ2] = ACTIONS(2680), - [anon_sym_GT_EQ2] = ACTIONS(2680), - [anon_sym_EQ_TILDE2] = ACTIONS(2680), - [anon_sym_BANG_TILDE2] = ACTIONS(2680), - [anon_sym_like2] = ACTIONS(2680), - [anon_sym_not_DASHlike2] = ACTIONS(2680), - [anon_sym_STAR_STAR2] = ACTIONS(2680), - [anon_sym_PLUS_PLUS2] = ACTIONS(2680), - [anon_sym_SLASH2] = ACTIONS(2682), - [anon_sym_mod2] = ACTIONS(2680), - [anon_sym_SLASH_SLASH2] = ACTIONS(2680), - [anon_sym_PLUS2] = ACTIONS(2682), - [anon_sym_bit_DASHshl2] = ACTIONS(2680), - [anon_sym_bit_DASHshr2] = ACTIONS(2680), - [anon_sym_bit_DASHand2] = ACTIONS(2680), - [anon_sym_bit_DASHxor2] = ACTIONS(2680), - [anon_sym_bit_DASHor2] = ACTIONS(2680), - [anon_sym_err_GT] = ACTIONS(2682), - [anon_sym_out_GT] = ACTIONS(2682), - [anon_sym_e_GT] = ACTIONS(2682), - [anon_sym_o_GT] = ACTIONS(2682), - [anon_sym_err_PLUSout_GT] = ACTIONS(2682), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2682), - [anon_sym_o_PLUSe_GT] = ACTIONS(2682), - [anon_sym_e_PLUSo_GT] = ACTIONS(2682), - [anon_sym_err_GT_GT] = ACTIONS(2680), - [anon_sym_out_GT_GT] = ACTIONS(2680), - [anon_sym_e_GT_GT] = ACTIONS(2680), - [anon_sym_o_GT_GT] = ACTIONS(2680), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2680), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2680), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2680), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2680), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1031)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1031), - [anon_sym_in] = ACTIONS(2680), - [sym__newline] = ACTIONS(2680), - [anon_sym_SEMI] = ACTIONS(2680), - [anon_sym_PIPE] = ACTIONS(2680), - [anon_sym_err_GT_PIPE] = ACTIONS(2680), - [anon_sym_out_GT_PIPE] = ACTIONS(2680), - [anon_sym_e_GT_PIPE] = ACTIONS(2680), - [anon_sym_o_GT_PIPE] = ACTIONS(2680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2680), - [anon_sym_RPAREN] = ACTIONS(2680), - [anon_sym_GT2] = ACTIONS(2682), - [anon_sym_DASH2] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_STAR2] = ACTIONS(2682), - [anon_sym_and2] = ACTIONS(2680), - [anon_sym_xor2] = ACTIONS(2680), - [anon_sym_or2] = ACTIONS(2680), - [anon_sym_not_DASHin2] = ACTIONS(2680), - [anon_sym_has2] = ACTIONS(2680), - [anon_sym_not_DASHhas2] = ACTIONS(2680), - [anon_sym_starts_DASHwith2] = ACTIONS(2680), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2680), - [anon_sym_ends_DASHwith2] = ACTIONS(2680), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2680), - [anon_sym_EQ_EQ2] = ACTIONS(2680), - [anon_sym_BANG_EQ2] = ACTIONS(2680), - [anon_sym_LT2] = ACTIONS(2682), - [anon_sym_LT_EQ2] = ACTIONS(2680), - [anon_sym_GT_EQ2] = ACTIONS(2680), - [anon_sym_EQ_TILDE2] = ACTIONS(2680), - [anon_sym_BANG_TILDE2] = ACTIONS(2680), - [anon_sym_like2] = ACTIONS(2680), - [anon_sym_not_DASHlike2] = ACTIONS(2680), - [anon_sym_STAR_STAR2] = ACTIONS(2680), - [anon_sym_PLUS_PLUS2] = ACTIONS(2680), - [anon_sym_SLASH2] = ACTIONS(2682), - [anon_sym_mod2] = ACTIONS(2680), - [anon_sym_SLASH_SLASH2] = ACTIONS(2680), - [anon_sym_PLUS2] = ACTIONS(2682), - [anon_sym_bit_DASHshl2] = ACTIONS(2680), - [anon_sym_bit_DASHshr2] = ACTIONS(2680), - [anon_sym_bit_DASHand2] = ACTIONS(2680), - [anon_sym_bit_DASHxor2] = ACTIONS(2680), - [anon_sym_bit_DASHor2] = ACTIONS(2680), - [anon_sym_err_GT] = ACTIONS(2682), - [anon_sym_out_GT] = ACTIONS(2682), - [anon_sym_e_GT] = ACTIONS(2682), - [anon_sym_o_GT] = ACTIONS(2682), - [anon_sym_err_PLUSout_GT] = ACTIONS(2682), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2682), - [anon_sym_o_PLUSe_GT] = ACTIONS(2682), - [anon_sym_e_PLUSo_GT] = ACTIONS(2682), - [anon_sym_err_GT_GT] = ACTIONS(2680), - [anon_sym_out_GT_GT] = ACTIONS(2680), - [anon_sym_e_GT_GT] = ACTIONS(2680), - [anon_sym_o_GT_GT] = ACTIONS(2680), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2680), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2680), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2680), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2680), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1032)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1032), - [anon_sym_in] = ACTIONS(2680), - [sym__newline] = ACTIONS(2680), - [anon_sym_SEMI] = ACTIONS(2680), - [anon_sym_PIPE] = ACTIONS(2680), - [anon_sym_err_GT_PIPE] = ACTIONS(2680), - [anon_sym_out_GT_PIPE] = ACTIONS(2680), - [anon_sym_e_GT_PIPE] = ACTIONS(2680), - [anon_sym_o_GT_PIPE] = ACTIONS(2680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2680), - [anon_sym_RPAREN] = ACTIONS(2680), - [anon_sym_GT2] = ACTIONS(2682), - [anon_sym_DASH2] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_STAR2] = ACTIONS(2682), - [anon_sym_and2] = ACTIONS(2680), - [anon_sym_xor2] = ACTIONS(2680), - [anon_sym_or2] = ACTIONS(2680), - [anon_sym_not_DASHin2] = ACTIONS(2680), - [anon_sym_has2] = ACTIONS(2680), - [anon_sym_not_DASHhas2] = ACTIONS(2680), - [anon_sym_starts_DASHwith2] = ACTIONS(2680), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2680), - [anon_sym_ends_DASHwith2] = ACTIONS(2680), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2680), - [anon_sym_EQ_EQ2] = ACTIONS(2680), - [anon_sym_BANG_EQ2] = ACTIONS(2680), - [anon_sym_LT2] = ACTIONS(2682), - [anon_sym_LT_EQ2] = ACTIONS(2680), - [anon_sym_GT_EQ2] = ACTIONS(2680), - [anon_sym_EQ_TILDE2] = ACTIONS(2680), - [anon_sym_BANG_TILDE2] = ACTIONS(2680), - [anon_sym_like2] = ACTIONS(2680), - [anon_sym_not_DASHlike2] = ACTIONS(2680), - [anon_sym_STAR_STAR2] = ACTIONS(2680), - [anon_sym_PLUS_PLUS2] = ACTIONS(2680), - [anon_sym_SLASH2] = ACTIONS(2682), - [anon_sym_mod2] = ACTIONS(2680), - [anon_sym_SLASH_SLASH2] = ACTIONS(2680), - [anon_sym_PLUS2] = ACTIONS(2682), - [anon_sym_bit_DASHshl2] = ACTIONS(2680), - [anon_sym_bit_DASHshr2] = ACTIONS(2680), - [anon_sym_bit_DASHand2] = ACTIONS(2680), - [anon_sym_bit_DASHxor2] = ACTIONS(2680), - [anon_sym_bit_DASHor2] = ACTIONS(2680), - [anon_sym_err_GT] = ACTIONS(2682), - [anon_sym_out_GT] = ACTIONS(2682), - [anon_sym_e_GT] = ACTIONS(2682), - [anon_sym_o_GT] = ACTIONS(2682), - [anon_sym_err_PLUSout_GT] = ACTIONS(2682), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2682), - [anon_sym_o_PLUSe_GT] = ACTIONS(2682), - [anon_sym_e_PLUSo_GT] = ACTIONS(2682), - [anon_sym_err_GT_GT] = ACTIONS(2680), - [anon_sym_out_GT_GT] = ACTIONS(2680), - [anon_sym_e_GT_GT] = ACTIONS(2680), - [anon_sym_o_GT_GT] = ACTIONS(2680), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2680), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2680), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2680), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2680), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1033)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1033), - [anon_sym_in] = ACTIONS(2680), - [sym__newline] = ACTIONS(2680), - [anon_sym_SEMI] = ACTIONS(2680), - [anon_sym_PIPE] = ACTIONS(2680), - [anon_sym_err_GT_PIPE] = ACTIONS(2680), - [anon_sym_out_GT_PIPE] = ACTIONS(2680), - [anon_sym_e_GT_PIPE] = ACTIONS(2680), - [anon_sym_o_GT_PIPE] = ACTIONS(2680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2680), - [anon_sym_RPAREN] = ACTIONS(2680), - [anon_sym_GT2] = ACTIONS(2682), - [anon_sym_DASH2] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_STAR2] = ACTIONS(2682), - [anon_sym_and2] = ACTIONS(2680), - [anon_sym_xor2] = ACTIONS(2680), - [anon_sym_or2] = ACTIONS(2680), - [anon_sym_not_DASHin2] = ACTIONS(2680), - [anon_sym_has2] = ACTIONS(2680), - [anon_sym_not_DASHhas2] = ACTIONS(2680), - [anon_sym_starts_DASHwith2] = ACTIONS(2680), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2680), - [anon_sym_ends_DASHwith2] = ACTIONS(2680), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2680), - [anon_sym_EQ_EQ2] = ACTIONS(2680), - [anon_sym_BANG_EQ2] = ACTIONS(2680), - [anon_sym_LT2] = ACTIONS(2682), - [anon_sym_LT_EQ2] = ACTIONS(2680), - [anon_sym_GT_EQ2] = ACTIONS(2680), - [anon_sym_EQ_TILDE2] = ACTIONS(2680), - [anon_sym_BANG_TILDE2] = ACTIONS(2680), - [anon_sym_like2] = ACTIONS(2680), - [anon_sym_not_DASHlike2] = ACTIONS(2680), - [anon_sym_STAR_STAR2] = ACTIONS(2680), - [anon_sym_PLUS_PLUS2] = ACTIONS(2680), - [anon_sym_SLASH2] = ACTIONS(2682), - [anon_sym_mod2] = ACTIONS(2680), - [anon_sym_SLASH_SLASH2] = ACTIONS(2680), - [anon_sym_PLUS2] = ACTIONS(2682), - [anon_sym_bit_DASHshl2] = ACTIONS(2680), - [anon_sym_bit_DASHshr2] = ACTIONS(2680), - [anon_sym_bit_DASHand2] = ACTIONS(2680), - [anon_sym_bit_DASHxor2] = ACTIONS(2680), - [anon_sym_bit_DASHor2] = ACTIONS(2680), - [anon_sym_err_GT] = ACTIONS(2682), - [anon_sym_out_GT] = ACTIONS(2682), - [anon_sym_e_GT] = ACTIONS(2682), - [anon_sym_o_GT] = ACTIONS(2682), - [anon_sym_err_PLUSout_GT] = ACTIONS(2682), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2682), - [anon_sym_o_PLUSe_GT] = ACTIONS(2682), - [anon_sym_e_PLUSo_GT] = ACTIONS(2682), - [anon_sym_err_GT_GT] = ACTIONS(2680), - [anon_sym_out_GT_GT] = ACTIONS(2680), - [anon_sym_e_GT_GT] = ACTIONS(2680), - [anon_sym_o_GT_GT] = ACTIONS(2680), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2680), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2680), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2680), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2680), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1034)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1034), - [anon_sym_in] = ACTIONS(2688), - [sym__newline] = ACTIONS(2688), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2690), - [anon_sym_DASH2] = ACTIONS(2688), - [anon_sym_LBRACE] = ACTIONS(2688), - [anon_sym_STAR2] = ACTIONS(2690), - [anon_sym_and2] = ACTIONS(2688), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2688), - [anon_sym_has2] = ACTIONS(2688), - [anon_sym_not_DASHhas2] = ACTIONS(2688), - [anon_sym_starts_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2688), - [anon_sym_ends_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2688), - [anon_sym_EQ_EQ2] = ACTIONS(2688), - [anon_sym_BANG_EQ2] = ACTIONS(2688), - [anon_sym_LT2] = ACTIONS(2690), - [anon_sym_LT_EQ2] = ACTIONS(2688), - [anon_sym_GT_EQ2] = ACTIONS(2688), - [anon_sym_EQ_TILDE2] = ACTIONS(2688), - [anon_sym_BANG_TILDE2] = ACTIONS(2688), - [anon_sym_like2] = ACTIONS(2688), - [anon_sym_not_DASHlike2] = ACTIONS(2688), - [anon_sym_STAR_STAR2] = ACTIONS(2688), - [anon_sym_PLUS_PLUS2] = ACTIONS(2688), - [anon_sym_SLASH2] = ACTIONS(2690), - [anon_sym_mod2] = ACTIONS(2688), - [anon_sym_SLASH_SLASH2] = ACTIONS(2688), - [anon_sym_PLUS2] = ACTIONS(2690), - [anon_sym_bit_DASHshl2] = ACTIONS(2688), - [anon_sym_bit_DASHshr2] = ACTIONS(2688), - [anon_sym_bit_DASHand2] = ACTIONS(2688), - [anon_sym_bit_DASHxor2] = ACTIONS(2688), - [anon_sym_bit_DASHor2] = ACTIONS(2688), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1035)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1035), - [anon_sym_in] = ACTIONS(2680), - [sym__newline] = ACTIONS(2680), - [anon_sym_SEMI] = ACTIONS(2680), - [anon_sym_PIPE] = ACTIONS(2680), - [anon_sym_err_GT_PIPE] = ACTIONS(2680), - [anon_sym_out_GT_PIPE] = ACTIONS(2680), - [anon_sym_e_GT_PIPE] = ACTIONS(2680), - [anon_sym_o_GT_PIPE] = ACTIONS(2680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2680), - [anon_sym_RPAREN] = ACTIONS(2680), - [anon_sym_GT2] = ACTIONS(2682), - [anon_sym_DASH2] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_STAR2] = ACTIONS(2682), - [anon_sym_and2] = ACTIONS(2680), - [anon_sym_xor2] = ACTIONS(2680), - [anon_sym_or2] = ACTIONS(2680), - [anon_sym_not_DASHin2] = ACTIONS(2680), - [anon_sym_has2] = ACTIONS(2680), - [anon_sym_not_DASHhas2] = ACTIONS(2680), - [anon_sym_starts_DASHwith2] = ACTIONS(2680), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2680), - [anon_sym_ends_DASHwith2] = ACTIONS(2680), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2680), - [anon_sym_EQ_EQ2] = ACTIONS(2680), - [anon_sym_BANG_EQ2] = ACTIONS(2680), - [anon_sym_LT2] = ACTIONS(2682), - [anon_sym_LT_EQ2] = ACTIONS(2680), - [anon_sym_GT_EQ2] = ACTIONS(2680), - [anon_sym_EQ_TILDE2] = ACTIONS(2680), - [anon_sym_BANG_TILDE2] = ACTIONS(2680), - [anon_sym_like2] = ACTIONS(2680), - [anon_sym_not_DASHlike2] = ACTIONS(2680), - [anon_sym_STAR_STAR2] = ACTIONS(2680), - [anon_sym_PLUS_PLUS2] = ACTIONS(2680), - [anon_sym_SLASH2] = ACTIONS(2682), - [anon_sym_mod2] = ACTIONS(2680), - [anon_sym_SLASH_SLASH2] = ACTIONS(2680), - [anon_sym_PLUS2] = ACTIONS(2682), - [anon_sym_bit_DASHshl2] = ACTIONS(2680), - [anon_sym_bit_DASHshr2] = ACTIONS(2680), - [anon_sym_bit_DASHand2] = ACTIONS(2680), - [anon_sym_bit_DASHxor2] = ACTIONS(2680), - [anon_sym_bit_DASHor2] = ACTIONS(2680), - [anon_sym_err_GT] = ACTIONS(2682), - [anon_sym_out_GT] = ACTIONS(2682), - [anon_sym_e_GT] = ACTIONS(2682), - [anon_sym_o_GT] = ACTIONS(2682), - [anon_sym_err_PLUSout_GT] = ACTIONS(2682), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2682), - [anon_sym_o_PLUSe_GT] = ACTIONS(2682), - [anon_sym_e_PLUSo_GT] = ACTIONS(2682), - [anon_sym_err_GT_GT] = ACTIONS(2680), - [anon_sym_out_GT_GT] = ACTIONS(2680), - [anon_sym_e_GT_GT] = ACTIONS(2680), - [anon_sym_o_GT_GT] = ACTIONS(2680), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2680), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2680), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2680), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2680), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1036)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1036), - [anon_sym_in] = ACTIONS(2680), - [sym__newline] = ACTIONS(2680), - [anon_sym_SEMI] = ACTIONS(2680), - [anon_sym_PIPE] = ACTIONS(2680), - [anon_sym_err_GT_PIPE] = ACTIONS(2680), - [anon_sym_out_GT_PIPE] = ACTIONS(2680), - [anon_sym_e_GT_PIPE] = ACTIONS(2680), - [anon_sym_o_GT_PIPE] = ACTIONS(2680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2680), - [anon_sym_RPAREN] = ACTIONS(2680), - [anon_sym_GT2] = ACTIONS(2682), - [anon_sym_DASH2] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_STAR2] = ACTIONS(2682), - [anon_sym_and2] = ACTIONS(2680), - [anon_sym_xor2] = ACTIONS(2680), - [anon_sym_or2] = ACTIONS(2680), - [anon_sym_not_DASHin2] = ACTIONS(2680), - [anon_sym_has2] = ACTIONS(2680), - [anon_sym_not_DASHhas2] = ACTIONS(2680), - [anon_sym_starts_DASHwith2] = ACTIONS(2680), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2680), - [anon_sym_ends_DASHwith2] = ACTIONS(2680), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2680), - [anon_sym_EQ_EQ2] = ACTIONS(2680), - [anon_sym_BANG_EQ2] = ACTIONS(2680), - [anon_sym_LT2] = ACTIONS(2682), - [anon_sym_LT_EQ2] = ACTIONS(2680), - [anon_sym_GT_EQ2] = ACTIONS(2680), - [anon_sym_EQ_TILDE2] = ACTIONS(2680), - [anon_sym_BANG_TILDE2] = ACTIONS(2680), - [anon_sym_like2] = ACTIONS(2680), - [anon_sym_not_DASHlike2] = ACTIONS(2680), - [anon_sym_STAR_STAR2] = ACTIONS(2680), - [anon_sym_PLUS_PLUS2] = ACTIONS(2680), - [anon_sym_SLASH2] = ACTIONS(2682), - [anon_sym_mod2] = ACTIONS(2680), - [anon_sym_SLASH_SLASH2] = ACTIONS(2680), - [anon_sym_PLUS2] = ACTIONS(2682), - [anon_sym_bit_DASHshl2] = ACTIONS(2680), - [anon_sym_bit_DASHshr2] = ACTIONS(2680), - [anon_sym_bit_DASHand2] = ACTIONS(2680), - [anon_sym_bit_DASHxor2] = ACTIONS(2680), - [anon_sym_bit_DASHor2] = ACTIONS(2680), - [anon_sym_err_GT] = ACTIONS(2682), - [anon_sym_out_GT] = ACTIONS(2682), - [anon_sym_e_GT] = ACTIONS(2682), - [anon_sym_o_GT] = ACTIONS(2682), - [anon_sym_err_PLUSout_GT] = ACTIONS(2682), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2682), - [anon_sym_o_PLUSe_GT] = ACTIONS(2682), - [anon_sym_e_PLUSo_GT] = ACTIONS(2682), - [anon_sym_err_GT_GT] = ACTIONS(2680), - [anon_sym_out_GT_GT] = ACTIONS(2680), - [anon_sym_e_GT_GT] = ACTIONS(2680), - [anon_sym_o_GT_GT] = ACTIONS(2680), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2680), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2680), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2680), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2680), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1037)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1037), - [anon_sym_in] = ACTIONS(2680), - [sym__newline] = ACTIONS(2680), - [anon_sym_SEMI] = ACTIONS(2680), - [anon_sym_PIPE] = ACTIONS(2680), - [anon_sym_err_GT_PIPE] = ACTIONS(2680), - [anon_sym_out_GT_PIPE] = ACTIONS(2680), - [anon_sym_e_GT_PIPE] = ACTIONS(2680), - [anon_sym_o_GT_PIPE] = ACTIONS(2680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2680), - [anon_sym_RPAREN] = ACTIONS(2680), - [anon_sym_GT2] = ACTIONS(2682), - [anon_sym_DASH2] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_STAR2] = ACTIONS(2682), - [anon_sym_and2] = ACTIONS(2680), - [anon_sym_xor2] = ACTIONS(2680), - [anon_sym_or2] = ACTIONS(2680), - [anon_sym_not_DASHin2] = ACTIONS(2680), - [anon_sym_has2] = ACTIONS(2680), - [anon_sym_not_DASHhas2] = ACTIONS(2680), - [anon_sym_starts_DASHwith2] = ACTIONS(2680), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2680), - [anon_sym_ends_DASHwith2] = ACTIONS(2680), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2680), - [anon_sym_EQ_EQ2] = ACTIONS(2680), - [anon_sym_BANG_EQ2] = ACTIONS(2680), - [anon_sym_LT2] = ACTIONS(2682), - [anon_sym_LT_EQ2] = ACTIONS(2680), - [anon_sym_GT_EQ2] = ACTIONS(2680), - [anon_sym_EQ_TILDE2] = ACTIONS(2680), - [anon_sym_BANG_TILDE2] = ACTIONS(2680), - [anon_sym_like2] = ACTIONS(2680), - [anon_sym_not_DASHlike2] = ACTIONS(2680), - [anon_sym_STAR_STAR2] = ACTIONS(2680), - [anon_sym_PLUS_PLUS2] = ACTIONS(2680), - [anon_sym_SLASH2] = ACTIONS(2682), - [anon_sym_mod2] = ACTIONS(2680), - [anon_sym_SLASH_SLASH2] = ACTIONS(2680), - [anon_sym_PLUS2] = ACTIONS(2682), - [anon_sym_bit_DASHshl2] = ACTIONS(2680), - [anon_sym_bit_DASHshr2] = ACTIONS(2680), - [anon_sym_bit_DASHand2] = ACTIONS(2680), - [anon_sym_bit_DASHxor2] = ACTIONS(2680), - [anon_sym_bit_DASHor2] = ACTIONS(2680), - [anon_sym_err_GT] = ACTIONS(2682), - [anon_sym_out_GT] = ACTIONS(2682), - [anon_sym_e_GT] = ACTIONS(2682), - [anon_sym_o_GT] = ACTIONS(2682), - [anon_sym_err_PLUSout_GT] = ACTIONS(2682), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2682), - [anon_sym_o_PLUSe_GT] = ACTIONS(2682), - [anon_sym_e_PLUSo_GT] = ACTIONS(2682), - [anon_sym_err_GT_GT] = ACTIONS(2680), - [anon_sym_out_GT_GT] = ACTIONS(2680), - [anon_sym_e_GT_GT] = ACTIONS(2680), - [anon_sym_o_GT_GT] = ACTIONS(2680), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2680), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2680), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2680), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2680), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1038)] = { - [sym__expr_parenthesized_immediate] = STATE(4759), - [sym_comment] = STATE(1038), + [STATE(1041)] = { + [sym__expr_parenthesized_immediate] = STATE(4755), + [sym_comment] = STATE(1041), [ts_builtin_sym_end] = ACTIONS(2062), [anon_sym_in] = ACTIONS(2062), [sym__newline] = ACTIONS(2062), @@ -124250,7 +124489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2062), [anon_sym_like2] = ACTIONS(2062), [anon_sym_not_DASHlike2] = ACTIONS(2062), - [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_LPAREN2] = ACTIONS(1714), [anon_sym_STAR_STAR2] = ACTIONS(2062), [anon_sym_PLUS_PLUS2] = ACTIONS(2062), [anon_sym_SLASH2] = ACTIONS(2064), @@ -124280,9 +124519,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1039)] = { - [sym__expr_parenthesized_immediate] = STATE(4759), - [sym_comment] = STATE(1039), + [STATE(1042)] = { + [sym__expr_parenthesized_immediate] = STATE(4755), + [sym_comment] = STATE(1042), [ts_builtin_sym_end] = ACTIONS(2062), [anon_sym_in] = ACTIONS(2062), [sym__newline] = ACTIONS(2062), @@ -124318,7 +124557,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2062), [anon_sym_like2] = ACTIONS(2062), [anon_sym_not_DASHlike2] = ACTIONS(2062), - [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_LPAREN2] = ACTIONS(1714), [anon_sym_STAR_STAR2] = ACTIONS(2062), [anon_sym_PLUS_PLUS2] = ACTIONS(2062), [anon_sym_SLASH2] = ACTIONS(2064), @@ -124348,9 +124587,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1040)] = { - [sym__expr_parenthesized_immediate] = STATE(4759), - [sym_comment] = STATE(1040), + [STATE(1043)] = { + [sym__expr_parenthesized_immediate] = STATE(4755), + [sym_comment] = STATE(1043), [ts_builtin_sym_end] = ACTIONS(2062), [anon_sym_in] = ACTIONS(2062), [sym__newline] = ACTIONS(2062), @@ -124386,7 +124625,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2062), [anon_sym_like2] = ACTIONS(2062), [anon_sym_not_DASHlike2] = ACTIONS(2062), - [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_LPAREN2] = ACTIONS(1714), [anon_sym_STAR_STAR2] = ACTIONS(2062), [anon_sym_PLUS_PLUS2] = ACTIONS(2062), [anon_sym_SLASH2] = ACTIONS(2064), @@ -124416,825 +124655,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1041)] = { - [sym_comment] = STATE(1041), - [anon_sym_export] = ACTIONS(2315), - [anon_sym_alias] = ACTIONS(2317), - [anon_sym_let] = ACTIONS(2317), - [anon_sym_mut] = ACTIONS(2317), - [anon_sym_const] = ACTIONS(2317), - [aux_sym_cmd_identifier_token1] = ACTIONS(2315), - [anon_sym_def] = ACTIONS(2317), - [anon_sym_use] = ACTIONS(2317), - [anon_sym_export_DASHenv] = ACTIONS(2317), - [anon_sym_extern] = ACTIONS(2317), - [anon_sym_module] = ACTIONS(2317), - [anon_sym_for] = ACTIONS(2317), - [anon_sym_loop] = ACTIONS(2317), - [anon_sym_while] = ACTIONS(2317), - [anon_sym_if] = ACTIONS(2317), - [anon_sym_else] = ACTIONS(2317), - [anon_sym_try] = ACTIONS(2317), - [anon_sym_catch] = ACTIONS(2317), - [anon_sym_match] = ACTIONS(2317), - [anon_sym_in] = ACTIONS(2315), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2317), - [aux_sym_cmd_identifier_token3] = ACTIONS(2317), - [aux_sym_cmd_identifier_token4] = ACTIONS(2317), - [aux_sym_cmd_identifier_token5] = ACTIONS(2317), - [sym__newline] = ACTIONS(2317), - [anon_sym_PIPE] = ACTIONS(2317), - [anon_sym_err_GT_PIPE] = ACTIONS(2317), - [anon_sym_out_GT_PIPE] = ACTIONS(2317), - [anon_sym_e_GT_PIPE] = ACTIONS(2317), - [anon_sym_o_GT_PIPE] = ACTIONS(2317), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2317), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2317), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2317), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2317), - [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_DOLLAR] = ACTIONS(2315), - [anon_sym_DASH2] = ACTIONS(2315), - [anon_sym_LBRACE] = ACTIONS(2317), - [anon_sym_DOT_DOT] = ACTIONS(2315), - [anon_sym_where] = ACTIONS(2317), - [aux_sym_expr_unary_token1] = ACTIONS(2317), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2317), - [anon_sym_DOT_DOT_LT] = ACTIONS(2317), - [aux_sym__val_number_decimal_token1] = ACTIONS(2315), - [aux_sym__val_number_decimal_token2] = ACTIONS(2317), - [aux_sym__val_number_decimal_token3] = ACTIONS(2317), - [aux_sym__val_number_decimal_token4] = ACTIONS(2317), - [aux_sym__val_number_token1] = ACTIONS(2317), - [aux_sym__val_number_token2] = ACTIONS(2317), - [aux_sym__val_number_token3] = ACTIONS(2317), - [anon_sym_0b] = ACTIONS(2315), - [anon_sym_0o] = ACTIONS(2315), - [anon_sym_0x] = ACTIONS(2315), - [sym_val_date] = ACTIONS(2317), - [anon_sym_DQUOTE] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2317), - [anon_sym_BQUOTE] = ACTIONS(2317), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2317), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2317), - [anon_sym_CARET] = ACTIONS(2317), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2317), - }, - [STATE(1042)] = { - [sym__expr_parenthesized_immediate] = STATE(5243), - [sym_comment] = STATE(1042), - [ts_builtin_sym_end] = ACTIONS(2164), - [anon_sym_in] = ACTIONS(2164), - [sym__newline] = ACTIONS(2164), - [anon_sym_SEMI] = ACTIONS(2164), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_err_GT_PIPE] = ACTIONS(2164), - [anon_sym_out_GT_PIPE] = ACTIONS(2164), - [anon_sym_e_GT_PIPE] = ACTIONS(2164), - [anon_sym_o_GT_PIPE] = ACTIONS(2164), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2164), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2164), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2164), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2164), - [anon_sym_GT2] = ACTIONS(2166), - [anon_sym_DASH2] = ACTIONS(2164), - [anon_sym_STAR2] = ACTIONS(2166), - [anon_sym_and2] = ACTIONS(2164), - [anon_sym_xor2] = ACTIONS(2164), - [anon_sym_or2] = ACTIONS(2164), - [anon_sym_not_DASHin2] = ACTIONS(2164), - [anon_sym_has2] = ACTIONS(2164), - [anon_sym_not_DASHhas2] = ACTIONS(2164), - [anon_sym_starts_DASHwith2] = ACTIONS(2164), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2164), - [anon_sym_ends_DASHwith2] = ACTIONS(2164), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2164), - [anon_sym_EQ_EQ2] = ACTIONS(2164), - [anon_sym_BANG_EQ2] = ACTIONS(2164), - [anon_sym_LT2] = ACTIONS(2166), - [anon_sym_LT_EQ2] = ACTIONS(2164), - [anon_sym_GT_EQ2] = ACTIONS(2164), - [anon_sym_EQ_TILDE2] = ACTIONS(2164), - [anon_sym_BANG_TILDE2] = ACTIONS(2164), - [anon_sym_like2] = ACTIONS(2164), - [anon_sym_not_DASHlike2] = ACTIONS(2164), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2164), - [anon_sym_PLUS_PLUS2] = ACTIONS(2164), - [anon_sym_SLASH2] = ACTIONS(2166), - [anon_sym_mod2] = ACTIONS(2164), - [anon_sym_SLASH_SLASH2] = ACTIONS(2164), - [anon_sym_PLUS2] = ACTIONS(2166), - [anon_sym_bit_DASHshl2] = ACTIONS(2164), - [anon_sym_bit_DASHshr2] = ACTIONS(2164), - [anon_sym_bit_DASHand2] = ACTIONS(2164), - [anon_sym_bit_DASHxor2] = ACTIONS(2164), - [anon_sym_bit_DASHor2] = ACTIONS(2164), - [anon_sym_err_GT] = ACTIONS(2166), - [anon_sym_out_GT] = ACTIONS(2166), - [anon_sym_e_GT] = ACTIONS(2166), - [anon_sym_o_GT] = ACTIONS(2166), - [anon_sym_err_PLUSout_GT] = ACTIONS(2166), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2166), - [anon_sym_o_PLUSe_GT] = ACTIONS(2166), - [anon_sym_e_PLUSo_GT] = ACTIONS(2166), - [anon_sym_err_GT_GT] = ACTIONS(2164), - [anon_sym_out_GT_GT] = ACTIONS(2164), - [anon_sym_e_GT_GT] = ACTIONS(2164), - [anon_sym_o_GT_GT] = ACTIONS(2164), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2164), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2164), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2164), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2164), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1043)] = { - [sym__expr_parenthesized_immediate] = STATE(5243), - [sym_comment] = STATE(1043), - [ts_builtin_sym_end] = ACTIONS(2132), - [anon_sym_in] = ACTIONS(2132), - [sym__newline] = ACTIONS(2132), - [anon_sym_SEMI] = ACTIONS(2132), - [anon_sym_PIPE] = ACTIONS(2132), - [anon_sym_err_GT_PIPE] = ACTIONS(2132), - [anon_sym_out_GT_PIPE] = ACTIONS(2132), - [anon_sym_e_GT_PIPE] = ACTIONS(2132), - [anon_sym_o_GT_PIPE] = ACTIONS(2132), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2132), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2132), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2132), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2132), - [anon_sym_GT2] = ACTIONS(2134), - [anon_sym_DASH2] = ACTIONS(2132), - [anon_sym_STAR2] = ACTIONS(2134), - [anon_sym_and2] = ACTIONS(2132), - [anon_sym_xor2] = ACTIONS(2132), - [anon_sym_or2] = ACTIONS(2132), - [anon_sym_not_DASHin2] = ACTIONS(2132), - [anon_sym_has2] = ACTIONS(2132), - [anon_sym_not_DASHhas2] = ACTIONS(2132), - [anon_sym_starts_DASHwith2] = ACTIONS(2132), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2132), - [anon_sym_ends_DASHwith2] = ACTIONS(2132), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2132), - [anon_sym_EQ_EQ2] = ACTIONS(2132), - [anon_sym_BANG_EQ2] = ACTIONS(2132), - [anon_sym_LT2] = ACTIONS(2134), - [anon_sym_LT_EQ2] = ACTIONS(2132), - [anon_sym_GT_EQ2] = ACTIONS(2132), - [anon_sym_EQ_TILDE2] = ACTIONS(2132), - [anon_sym_BANG_TILDE2] = ACTIONS(2132), - [anon_sym_like2] = ACTIONS(2132), - [anon_sym_not_DASHlike2] = ACTIONS(2132), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2132), - [anon_sym_PLUS_PLUS2] = ACTIONS(2132), - [anon_sym_SLASH2] = ACTIONS(2134), - [anon_sym_mod2] = ACTIONS(2132), - [anon_sym_SLASH_SLASH2] = ACTIONS(2132), - [anon_sym_PLUS2] = ACTIONS(2134), - [anon_sym_bit_DASHshl2] = ACTIONS(2132), - [anon_sym_bit_DASHshr2] = ACTIONS(2132), - [anon_sym_bit_DASHand2] = ACTIONS(2132), - [anon_sym_bit_DASHxor2] = ACTIONS(2132), - [anon_sym_bit_DASHor2] = ACTIONS(2132), - [anon_sym_err_GT] = ACTIONS(2134), - [anon_sym_out_GT] = ACTIONS(2134), - [anon_sym_e_GT] = ACTIONS(2134), - [anon_sym_o_GT] = ACTIONS(2134), - [anon_sym_err_PLUSout_GT] = ACTIONS(2134), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2134), - [anon_sym_o_PLUSe_GT] = ACTIONS(2134), - [anon_sym_e_PLUSo_GT] = ACTIONS(2134), - [anon_sym_err_GT_GT] = ACTIONS(2132), - [anon_sym_out_GT_GT] = ACTIONS(2132), - [anon_sym_e_GT_GT] = ACTIONS(2132), - [anon_sym_o_GT_GT] = ACTIONS(2132), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2132), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2132), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2132), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2132), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(1044)] = { - [aux_sym__repeat_newline] = STATE(1035), + [sym__expr_parenthesized_immediate] = STATE(4755), [sym_comment] = STATE(1044), - [anon_sym_in] = ACTIONS(2279), - [sym__newline] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_err_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_GT_PIPE] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_GT2] = ACTIONS(2281), - [anon_sym_DASH2] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_STAR2] = ACTIONS(2281), - [anon_sym_and2] = ACTIONS(2279), - [anon_sym_xor2] = ACTIONS(2279), - [anon_sym_or2] = ACTIONS(2279), - [anon_sym_not_DASHin2] = ACTIONS(2279), - [anon_sym_has2] = ACTIONS(2279), - [anon_sym_not_DASHhas2] = ACTIONS(2279), - [anon_sym_starts_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), - [anon_sym_ends_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), - [anon_sym_EQ_EQ2] = ACTIONS(2279), - [anon_sym_BANG_EQ2] = ACTIONS(2279), - [anon_sym_LT2] = ACTIONS(2281), - [anon_sym_LT_EQ2] = ACTIONS(2279), - [anon_sym_GT_EQ2] = ACTIONS(2279), - [anon_sym_EQ_TILDE2] = ACTIONS(2279), - [anon_sym_BANG_TILDE2] = ACTIONS(2279), - [anon_sym_like2] = ACTIONS(2279), - [anon_sym_not_DASHlike2] = ACTIONS(2279), - [anon_sym_STAR_STAR2] = ACTIONS(2279), - [anon_sym_PLUS_PLUS2] = ACTIONS(2279), - [anon_sym_SLASH2] = ACTIONS(2281), - [anon_sym_mod2] = ACTIONS(2279), - [anon_sym_SLASH_SLASH2] = ACTIONS(2279), - [anon_sym_PLUS2] = ACTIONS(2281), - [anon_sym_bit_DASHshl2] = ACTIONS(2279), - [anon_sym_bit_DASHshr2] = ACTIONS(2279), - [anon_sym_bit_DASHand2] = ACTIONS(2279), - [anon_sym_bit_DASHxor2] = ACTIONS(2279), - [anon_sym_bit_DASHor2] = ACTIONS(2279), - [anon_sym_err_GT] = ACTIONS(2281), - [anon_sym_out_GT] = ACTIONS(2281), - [anon_sym_e_GT] = ACTIONS(2281), - [anon_sym_o_GT] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT] = ACTIONS(2281), - [anon_sym_err_GT_GT] = ACTIONS(2279), - [anon_sym_out_GT_GT] = ACTIONS(2279), - [anon_sym_e_GT_GT] = ACTIONS(2279), - [anon_sym_o_GT_GT] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1045)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1045), - [anon_sym_in] = ACTIONS(2692), - [sym__newline] = ACTIONS(2692), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2694), - [anon_sym_DASH2] = ACTIONS(2692), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_STAR2] = ACTIONS(2694), - [anon_sym_and2] = ACTIONS(2692), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2692), - [anon_sym_has2] = ACTIONS(2692), - [anon_sym_not_DASHhas2] = ACTIONS(2692), - [anon_sym_starts_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2692), - [anon_sym_ends_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2692), - [anon_sym_EQ_EQ2] = ACTIONS(2692), - [anon_sym_BANG_EQ2] = ACTIONS(2692), - [anon_sym_LT2] = ACTIONS(2694), - [anon_sym_LT_EQ2] = ACTIONS(2692), - [anon_sym_GT_EQ2] = ACTIONS(2692), - [anon_sym_EQ_TILDE2] = ACTIONS(2692), - [anon_sym_BANG_TILDE2] = ACTIONS(2692), - [anon_sym_like2] = ACTIONS(2692), - [anon_sym_not_DASHlike2] = ACTIONS(2692), - [anon_sym_STAR_STAR2] = ACTIONS(2692), - [anon_sym_PLUS_PLUS2] = ACTIONS(2692), - [anon_sym_SLASH2] = ACTIONS(2694), - [anon_sym_mod2] = ACTIONS(2692), - [anon_sym_SLASH_SLASH2] = ACTIONS(2692), - [anon_sym_PLUS2] = ACTIONS(2694), - [anon_sym_bit_DASHshl2] = ACTIONS(2692), - [anon_sym_bit_DASHshr2] = ACTIONS(2692), - [anon_sym_bit_DASHand2] = ACTIONS(2692), - [anon_sym_bit_DASHxor2] = ACTIONS(2692), - [anon_sym_bit_DASHor2] = ACTIONS(2692), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1046)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1046), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1047)] = { - [sym_comment] = STATE(1047), - [anon_sym_export] = ACTIONS(2112), - [anon_sym_alias] = ACTIONS(2110), - [anon_sym_let] = ACTIONS(2110), - [anon_sym_mut] = ACTIONS(2110), - [anon_sym_const] = ACTIONS(2110), - [aux_sym_cmd_identifier_token1] = ACTIONS(2112), - [anon_sym_def] = ACTIONS(2110), - [anon_sym_use] = ACTIONS(2110), - [anon_sym_export_DASHenv] = ACTIONS(2110), - [anon_sym_extern] = ACTIONS(2110), - [anon_sym_module] = ACTIONS(2110), - [anon_sym_for] = ACTIONS(2110), - [anon_sym_loop] = ACTIONS(2110), - [anon_sym_while] = ACTIONS(2110), - [anon_sym_if] = ACTIONS(2110), - [anon_sym_else] = ACTIONS(2110), - [anon_sym_try] = ACTIONS(2110), - [anon_sym_catch] = ACTIONS(2110), - [anon_sym_match] = ACTIONS(2110), - [anon_sym_in] = ACTIONS(2112), - [anon_sym_true] = ACTIONS(2110), - [anon_sym_false] = ACTIONS(2110), - [anon_sym_null] = ACTIONS(2110), - [aux_sym_cmd_identifier_token3] = ACTIONS(2110), - [aux_sym_cmd_identifier_token4] = ACTIONS(2110), - [aux_sym_cmd_identifier_token5] = ACTIONS(2110), - [sym__newline] = ACTIONS(2110), - [anon_sym_PIPE] = ACTIONS(2110), - [anon_sym_err_GT_PIPE] = ACTIONS(2110), - [anon_sym_out_GT_PIPE] = ACTIONS(2110), - [anon_sym_e_GT_PIPE] = ACTIONS(2110), - [anon_sym_o_GT_PIPE] = ACTIONS(2110), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2110), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2110), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2110), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2110), - [anon_sym_LBRACK] = ACTIONS(2110), - [anon_sym_LPAREN] = ACTIONS(2110), - [anon_sym_DOLLAR] = ACTIONS(2112), - [anon_sym_DASH2] = ACTIONS(2112), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_DOT_DOT] = ACTIONS(2112), - [anon_sym_where] = ACTIONS(2110), - [aux_sym_expr_unary_token1] = ACTIONS(2110), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2110), - [anon_sym_DOT_DOT_LT] = ACTIONS(2110), - [aux_sym__val_number_decimal_token1] = ACTIONS(2112), - [aux_sym__val_number_decimal_token2] = ACTIONS(2110), - [aux_sym__val_number_decimal_token3] = ACTIONS(2110), - [aux_sym__val_number_decimal_token4] = ACTIONS(2110), - [aux_sym__val_number_token1] = ACTIONS(2110), - [aux_sym__val_number_token2] = ACTIONS(2110), - [aux_sym__val_number_token3] = ACTIONS(2110), - [anon_sym_0b] = ACTIONS(2112), - [anon_sym_0o] = ACTIONS(2112), - [anon_sym_0x] = ACTIONS(2112), - [sym_val_date] = ACTIONS(2110), - [anon_sym_DQUOTE] = ACTIONS(2110), - [anon_sym_SQUOTE] = ACTIONS(2110), - [anon_sym_BQUOTE] = ACTIONS(2110), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2110), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2110), - [anon_sym_CARET] = ACTIONS(2110), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2110), - }, - [STATE(1048)] = { - [aux_sym__repeat_newline] = STATE(1036), - [sym_comment] = STATE(1048), - [anon_sym_in] = ACTIONS(2279), - [sym__newline] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_err_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_GT_PIPE] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_GT2] = ACTIONS(2281), - [anon_sym_DASH2] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_STAR2] = ACTIONS(2281), - [anon_sym_and2] = ACTIONS(2279), - [anon_sym_xor2] = ACTIONS(2279), - [anon_sym_or2] = ACTIONS(2279), - [anon_sym_not_DASHin2] = ACTIONS(2279), - [anon_sym_has2] = ACTIONS(2279), - [anon_sym_not_DASHhas2] = ACTIONS(2279), - [anon_sym_starts_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), - [anon_sym_ends_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), - [anon_sym_EQ_EQ2] = ACTIONS(2279), - [anon_sym_BANG_EQ2] = ACTIONS(2279), - [anon_sym_LT2] = ACTIONS(2281), - [anon_sym_LT_EQ2] = ACTIONS(2279), - [anon_sym_GT_EQ2] = ACTIONS(2279), - [anon_sym_EQ_TILDE2] = ACTIONS(2279), - [anon_sym_BANG_TILDE2] = ACTIONS(2279), - [anon_sym_like2] = ACTIONS(2279), - [anon_sym_not_DASHlike2] = ACTIONS(2279), - [anon_sym_STAR_STAR2] = ACTIONS(2279), - [anon_sym_PLUS_PLUS2] = ACTIONS(2279), - [anon_sym_SLASH2] = ACTIONS(2281), - [anon_sym_mod2] = ACTIONS(2279), - [anon_sym_SLASH_SLASH2] = ACTIONS(2279), - [anon_sym_PLUS2] = ACTIONS(2281), - [anon_sym_bit_DASHshl2] = ACTIONS(2279), - [anon_sym_bit_DASHshr2] = ACTIONS(2279), - [anon_sym_bit_DASHand2] = ACTIONS(2279), - [anon_sym_bit_DASHxor2] = ACTIONS(2279), - [anon_sym_bit_DASHor2] = ACTIONS(2279), - [anon_sym_err_GT] = ACTIONS(2281), - [anon_sym_out_GT] = ACTIONS(2281), - [anon_sym_e_GT] = ACTIONS(2281), - [anon_sym_o_GT] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT] = ACTIONS(2281), - [anon_sym_err_GT_GT] = ACTIONS(2279), - [anon_sym_out_GT_GT] = ACTIONS(2279), - [anon_sym_e_GT_GT] = ACTIONS(2279), - [anon_sym_o_GT_GT] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1049)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1049), - [anon_sym_in] = ACTIONS(2680), - [sym__newline] = ACTIONS(2680), - [anon_sym_SEMI] = ACTIONS(2680), - [anon_sym_PIPE] = ACTIONS(2680), - [anon_sym_err_GT_PIPE] = ACTIONS(2680), - [anon_sym_out_GT_PIPE] = ACTIONS(2680), - [anon_sym_e_GT_PIPE] = ACTIONS(2680), - [anon_sym_o_GT_PIPE] = ACTIONS(2680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2680), - [anon_sym_RPAREN] = ACTIONS(2680), - [anon_sym_GT2] = ACTIONS(2682), - [anon_sym_DASH2] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_STAR2] = ACTIONS(2682), - [anon_sym_and2] = ACTIONS(2680), - [anon_sym_xor2] = ACTIONS(2680), - [anon_sym_or2] = ACTIONS(2680), - [anon_sym_not_DASHin2] = ACTIONS(2680), - [anon_sym_has2] = ACTIONS(2680), - [anon_sym_not_DASHhas2] = ACTIONS(2680), - [anon_sym_starts_DASHwith2] = ACTIONS(2680), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2680), - [anon_sym_ends_DASHwith2] = ACTIONS(2680), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2680), - [anon_sym_EQ_EQ2] = ACTIONS(2680), - [anon_sym_BANG_EQ2] = ACTIONS(2680), - [anon_sym_LT2] = ACTIONS(2682), - [anon_sym_LT_EQ2] = ACTIONS(2680), - [anon_sym_GT_EQ2] = ACTIONS(2680), - [anon_sym_EQ_TILDE2] = ACTIONS(2680), - [anon_sym_BANG_TILDE2] = ACTIONS(2680), - [anon_sym_like2] = ACTIONS(2680), - [anon_sym_not_DASHlike2] = ACTIONS(2680), - [anon_sym_STAR_STAR2] = ACTIONS(2680), - [anon_sym_PLUS_PLUS2] = ACTIONS(2680), - [anon_sym_SLASH2] = ACTIONS(2682), - [anon_sym_mod2] = ACTIONS(2680), - [anon_sym_SLASH_SLASH2] = ACTIONS(2680), - [anon_sym_PLUS2] = ACTIONS(2682), - [anon_sym_bit_DASHshl2] = ACTIONS(2680), - [anon_sym_bit_DASHshr2] = ACTIONS(2680), - [anon_sym_bit_DASHand2] = ACTIONS(2680), - [anon_sym_bit_DASHxor2] = ACTIONS(2680), - [anon_sym_bit_DASHor2] = ACTIONS(2680), - [anon_sym_err_GT] = ACTIONS(2682), - [anon_sym_out_GT] = ACTIONS(2682), - [anon_sym_e_GT] = ACTIONS(2682), - [anon_sym_o_GT] = ACTIONS(2682), - [anon_sym_err_PLUSout_GT] = ACTIONS(2682), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2682), - [anon_sym_o_PLUSe_GT] = ACTIONS(2682), - [anon_sym_e_PLUSo_GT] = ACTIONS(2682), - [anon_sym_err_GT_GT] = ACTIONS(2680), - [anon_sym_out_GT_GT] = ACTIONS(2680), - [anon_sym_e_GT_GT] = ACTIONS(2680), - [anon_sym_o_GT_GT] = ACTIONS(2680), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2680), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2680), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2680), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2680), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1050)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1050), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1051)] = { - [sym__expr_parenthesized_immediate] = STATE(5243), - [sym_comment] = STATE(1051), - [ts_builtin_sym_end] = ACTIONS(2066), - [anon_sym_in] = 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_GT2] = ACTIONS(2068), - [anon_sym_DASH2] = ACTIONS(2066), - [anon_sym_STAR2] = ACTIONS(2068), - [anon_sym_and2] = ACTIONS(2066), - [anon_sym_xor2] = ACTIONS(2066), - [anon_sym_or2] = ACTIONS(2066), - [anon_sym_not_DASHin2] = ACTIONS(2066), - [anon_sym_has2] = ACTIONS(2066), - [anon_sym_not_DASHhas2] = ACTIONS(2066), - [anon_sym_starts_DASHwith2] = ACTIONS(2066), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2066), - [anon_sym_ends_DASHwith2] = ACTIONS(2066), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2066), - [anon_sym_EQ_EQ2] = ACTIONS(2066), - [anon_sym_BANG_EQ2] = ACTIONS(2066), - [anon_sym_LT2] = ACTIONS(2068), - [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_like2] = ACTIONS(2066), - [anon_sym_not_DASHlike2] = ACTIONS(2066), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2066), - [anon_sym_PLUS_PLUS2] = ACTIONS(2066), - [anon_sym_SLASH2] = ACTIONS(2068), - [anon_sym_mod2] = ACTIONS(2066), - [anon_sym_SLASH_SLASH2] = ACTIONS(2066), - [anon_sym_PLUS2] = ACTIONS(2068), - [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_err_GT] = ACTIONS(2068), - [anon_sym_out_GT] = ACTIONS(2068), - [anon_sym_e_GT] = ACTIONS(2068), - [anon_sym_o_GT] = ACTIONS(2068), - [anon_sym_err_PLUSout_GT] = ACTIONS(2068), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2068), - [anon_sym_o_PLUSe_GT] = ACTIONS(2068), - [anon_sym_e_PLUSo_GT] = ACTIONS(2068), - [anon_sym_err_GT_GT] = ACTIONS(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(3), - }, - [STATE(1052)] = { - [sym__expr_parenthesized_immediate] = STATE(5243), - [sym_comment] = STATE(1052), - [ts_builtin_sym_end] = ACTIONS(2070), - [anon_sym_in] = ACTIONS(2070), - [sym__newline] = ACTIONS(2070), - [anon_sym_SEMI] = ACTIONS(2070), - [anon_sym_PIPE] = ACTIONS(2070), - [anon_sym_err_GT_PIPE] = ACTIONS(2070), - [anon_sym_out_GT_PIPE] = ACTIONS(2070), - [anon_sym_e_GT_PIPE] = ACTIONS(2070), - [anon_sym_o_GT_PIPE] = ACTIONS(2070), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2070), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2070), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2070), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2070), - [anon_sym_GT2] = ACTIONS(2072), - [anon_sym_DASH2] = ACTIONS(2070), - [anon_sym_STAR2] = ACTIONS(2072), - [anon_sym_and2] = ACTIONS(2070), - [anon_sym_xor2] = ACTIONS(2070), - [anon_sym_or2] = ACTIONS(2070), - [anon_sym_not_DASHin2] = ACTIONS(2070), - [anon_sym_has2] = ACTIONS(2070), - [anon_sym_not_DASHhas2] = ACTIONS(2070), - [anon_sym_starts_DASHwith2] = ACTIONS(2070), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2070), - [anon_sym_ends_DASHwith2] = ACTIONS(2070), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2070), - [anon_sym_EQ_EQ2] = ACTIONS(2070), - [anon_sym_BANG_EQ2] = ACTIONS(2070), - [anon_sym_LT2] = ACTIONS(2072), - [anon_sym_LT_EQ2] = ACTIONS(2070), - [anon_sym_GT_EQ2] = ACTIONS(2070), - [anon_sym_EQ_TILDE2] = ACTIONS(2070), - [anon_sym_BANG_TILDE2] = ACTIONS(2070), - [anon_sym_like2] = ACTIONS(2070), - [anon_sym_not_DASHlike2] = ACTIONS(2070), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_STAR_STAR2] = ACTIONS(2070), - [anon_sym_PLUS_PLUS2] = ACTIONS(2070), - [anon_sym_SLASH2] = ACTIONS(2072), - [anon_sym_mod2] = ACTIONS(2070), - [anon_sym_SLASH_SLASH2] = ACTIONS(2070), - [anon_sym_PLUS2] = ACTIONS(2072), - [anon_sym_bit_DASHshl2] = ACTIONS(2070), - [anon_sym_bit_DASHshr2] = ACTIONS(2070), - [anon_sym_bit_DASHand2] = ACTIONS(2070), - [anon_sym_bit_DASHxor2] = ACTIONS(2070), - [anon_sym_bit_DASHor2] = ACTIONS(2070), - [anon_sym_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(2070), - [anon_sym_out_GT_GT] = ACTIONS(2070), - [anon_sym_e_GT_GT] = ACTIONS(2070), - [anon_sym_o_GT_GT] = ACTIONS(2070), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2070), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2070), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2070), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2070), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1053)] = { - [sym__expr_parenthesized_immediate] = STATE(4759), - [sym_comment] = STATE(1053), [ts_builtin_sym_end] = ACTIONS(2062), [anon_sym_in] = ACTIONS(2062), [sym__newline] = ACTIONS(2062), @@ -125270,7 +124693,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2062), [anon_sym_like2] = ACTIONS(2062), [anon_sym_not_DASHlike2] = ACTIONS(2062), - [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_LPAREN2] = ACTIONS(1714), [anon_sym_STAR_STAR2] = ACTIONS(2062), [anon_sym_PLUS_PLUS2] = ACTIONS(2062), [anon_sym_SLASH2] = ACTIONS(2064), @@ -125300,144 +124723,756 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(1045)] = { + [aux_sym__repeat_newline] = STATE(1066), + [sym_comment] = STATE(1045), + [anon_sym_in] = ACTIONS(2247), + [sym__newline] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_err_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_GT_PIPE] = ACTIONS(2247), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_GT2] = ACTIONS(2249), + [anon_sym_DASH2] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_STAR2] = ACTIONS(2249), + [anon_sym_and2] = ACTIONS(2247), + [anon_sym_xor2] = ACTIONS(2247), + [anon_sym_or2] = ACTIONS(2247), + [anon_sym_not_DASHin2] = ACTIONS(2247), + [anon_sym_has2] = ACTIONS(2247), + [anon_sym_not_DASHhas2] = ACTIONS(2247), + [anon_sym_starts_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2247), + [anon_sym_ends_DASHwith2] = ACTIONS(2247), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2247), + [anon_sym_EQ_EQ2] = ACTIONS(2247), + [anon_sym_BANG_EQ2] = ACTIONS(2247), + [anon_sym_LT2] = ACTIONS(2249), + [anon_sym_LT_EQ2] = ACTIONS(2247), + [anon_sym_GT_EQ2] = ACTIONS(2247), + [anon_sym_EQ_TILDE2] = ACTIONS(2247), + [anon_sym_BANG_TILDE2] = ACTIONS(2247), + [anon_sym_like2] = ACTIONS(2247), + [anon_sym_not_DASHlike2] = ACTIONS(2247), + [anon_sym_STAR_STAR2] = ACTIONS(2247), + [anon_sym_PLUS_PLUS2] = ACTIONS(2247), + [anon_sym_SLASH2] = ACTIONS(2249), + [anon_sym_mod2] = ACTIONS(2247), + [anon_sym_SLASH_SLASH2] = ACTIONS(2247), + [anon_sym_PLUS2] = ACTIONS(2249), + [anon_sym_bit_DASHshl2] = ACTIONS(2247), + [anon_sym_bit_DASHshr2] = ACTIONS(2247), + [anon_sym_bit_DASHand2] = ACTIONS(2247), + [anon_sym_bit_DASHxor2] = ACTIONS(2247), + [anon_sym_bit_DASHor2] = ACTIONS(2247), + [anon_sym_err_GT] = ACTIONS(2249), + [anon_sym_out_GT] = ACTIONS(2249), + [anon_sym_e_GT] = ACTIONS(2249), + [anon_sym_o_GT] = ACTIONS(2249), + [anon_sym_err_PLUSout_GT] = ACTIONS(2249), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2249), + [anon_sym_o_PLUSe_GT] = ACTIONS(2249), + [anon_sym_e_PLUSo_GT] = ACTIONS(2249), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1046)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1046), + [anon_sym_in] = ACTIONS(2656), + [sym__newline] = ACTIONS(2656), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_err_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_GT_PIPE] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [anon_sym_GT2] = ACTIONS(2658), + [anon_sym_DASH2] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_STAR2] = ACTIONS(2658), + [anon_sym_and2] = ACTIONS(2656), + [anon_sym_xor2] = ACTIONS(2656), + [anon_sym_or2] = ACTIONS(2656), + [anon_sym_not_DASHin2] = ACTIONS(2656), + [anon_sym_has2] = ACTIONS(2656), + [anon_sym_not_DASHhas2] = ACTIONS(2656), + [anon_sym_starts_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2656), + [anon_sym_ends_DASHwith2] = ACTIONS(2656), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2656), + [anon_sym_EQ_EQ2] = ACTIONS(2656), + [anon_sym_BANG_EQ2] = ACTIONS(2656), + [anon_sym_LT2] = ACTIONS(2658), + [anon_sym_LT_EQ2] = ACTIONS(2656), + [anon_sym_GT_EQ2] = ACTIONS(2656), + [anon_sym_EQ_TILDE2] = ACTIONS(2656), + [anon_sym_BANG_TILDE2] = ACTIONS(2656), + [anon_sym_like2] = ACTIONS(2656), + [anon_sym_not_DASHlike2] = ACTIONS(2656), + [anon_sym_STAR_STAR2] = ACTIONS(2656), + [anon_sym_PLUS_PLUS2] = ACTIONS(2656), + [anon_sym_SLASH2] = ACTIONS(2658), + [anon_sym_mod2] = ACTIONS(2656), + [anon_sym_SLASH_SLASH2] = ACTIONS(2656), + [anon_sym_PLUS2] = ACTIONS(2658), + [anon_sym_bit_DASHshl2] = ACTIONS(2656), + [anon_sym_bit_DASHshr2] = ACTIONS(2656), + [anon_sym_bit_DASHand2] = ACTIONS(2656), + [anon_sym_bit_DASHxor2] = ACTIONS(2656), + [anon_sym_bit_DASHor2] = ACTIONS(2656), + [anon_sym_err_GT] = ACTIONS(2658), + [anon_sym_out_GT] = ACTIONS(2658), + [anon_sym_e_GT] = ACTIONS(2658), + [anon_sym_o_GT] = ACTIONS(2658), + [anon_sym_err_PLUSout_GT] = ACTIONS(2658), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2658), + [anon_sym_o_PLUSe_GT] = ACTIONS(2658), + [anon_sym_e_PLUSo_GT] = ACTIONS(2658), + [anon_sym_err_GT_GT] = ACTIONS(2656), + [anon_sym_out_GT_GT] = ACTIONS(2656), + [anon_sym_e_GT_GT] = ACTIONS(2656), + [anon_sym_o_GT_GT] = ACTIONS(2656), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2656), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2656), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2656), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2656), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1047)] = { + [sym__expression] = STATE(4770), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2225), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1831), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_comment] = STATE(1047), + [aux_sym_cmd_identifier_token2] = ACTIONS(2702), + [anon_sym_true] = ACTIONS(2563), + [anon_sym_false] = ACTIONS(2563), + [anon_sym_null] = ACTIONS(2565), + [aux_sym_cmd_identifier_token3] = ACTIONS(2567), + [aux_sym_cmd_identifier_token4] = ACTIONS(2567), + [aux_sym_cmd_identifier_token5] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2036), + [aux_sym__val_number_decimal_token3] = ACTIONS(2571), + [aux_sym__val_number_decimal_token4] = ACTIONS(2571), + [aux_sym__val_number_token1] = ACTIONS(2567), + [aux_sym__val_number_token2] = ACTIONS(2567), + [aux_sym__val_number_token3] = ACTIONS(2567), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2573), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_COLON2] = ACTIONS(2704), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(1048)] = { + [sym__expression] = STATE(4787), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2225), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1831), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_comment] = STATE(1048), + [aux_sym_cmd_identifier_token2] = ACTIONS(2702), + [anon_sym_true] = ACTIONS(2563), + [anon_sym_false] = ACTIONS(2563), + [anon_sym_null] = ACTIONS(2565), + [aux_sym_cmd_identifier_token3] = ACTIONS(2567), + [aux_sym_cmd_identifier_token4] = ACTIONS(2567), + [aux_sym_cmd_identifier_token5] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2036), + [aux_sym__val_number_decimal_token3] = ACTIONS(2571), + [aux_sym__val_number_decimal_token4] = ACTIONS(2571), + [aux_sym__val_number_token1] = ACTIONS(2567), + [aux_sym__val_number_token2] = ACTIONS(2567), + [aux_sym__val_number_token3] = ACTIONS(2567), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2573), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_COLON2] = ACTIONS(2704), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(1049)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1049), + [anon_sym_in] = ACTIONS(2644), + [sym__newline] = ACTIONS(2644), + [anon_sym_SEMI] = ACTIONS(2644), + [anon_sym_PIPE] = ACTIONS(2644), + [anon_sym_err_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_GT_PIPE] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2644), + [anon_sym_RPAREN] = ACTIONS(2644), + [anon_sym_GT2] = ACTIONS(2646), + [anon_sym_DASH2] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_STAR2] = ACTIONS(2646), + [anon_sym_and2] = ACTIONS(2644), + [anon_sym_xor2] = ACTIONS(2644), + [anon_sym_or2] = ACTIONS(2644), + [anon_sym_not_DASHin2] = ACTIONS(2644), + [anon_sym_has2] = ACTIONS(2644), + [anon_sym_not_DASHhas2] = ACTIONS(2644), + [anon_sym_starts_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2644), + [anon_sym_ends_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2644), + [anon_sym_EQ_EQ2] = ACTIONS(2644), + [anon_sym_BANG_EQ2] = ACTIONS(2644), + [anon_sym_LT2] = ACTIONS(2646), + [anon_sym_LT_EQ2] = ACTIONS(2644), + [anon_sym_GT_EQ2] = ACTIONS(2644), + [anon_sym_EQ_TILDE2] = ACTIONS(2644), + [anon_sym_BANG_TILDE2] = ACTIONS(2644), + [anon_sym_like2] = ACTIONS(2644), + [anon_sym_not_DASHlike2] = ACTIONS(2644), + [anon_sym_STAR_STAR2] = ACTIONS(2644), + [anon_sym_PLUS_PLUS2] = ACTIONS(2644), + [anon_sym_SLASH2] = ACTIONS(2646), + [anon_sym_mod2] = ACTIONS(2644), + [anon_sym_SLASH_SLASH2] = ACTIONS(2644), + [anon_sym_PLUS2] = ACTIONS(2646), + [anon_sym_bit_DASHshl2] = ACTIONS(2644), + [anon_sym_bit_DASHshr2] = ACTIONS(2644), + [anon_sym_bit_DASHand2] = ACTIONS(2644), + [anon_sym_bit_DASHxor2] = ACTIONS(2644), + [anon_sym_bit_DASHor2] = ACTIONS(2644), + [anon_sym_err_GT] = ACTIONS(2646), + [anon_sym_out_GT] = ACTIONS(2646), + [anon_sym_e_GT] = ACTIONS(2646), + [anon_sym_o_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT] = ACTIONS(2646), + [anon_sym_err_GT_GT] = ACTIONS(2644), + [anon_sym_out_GT_GT] = ACTIONS(2644), + [anon_sym_e_GT_GT] = ACTIONS(2644), + [anon_sym_o_GT_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2644), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1050)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1050), + [anon_sym_in] = ACTIONS(2706), + [sym__newline] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_err_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_GT_PIPE] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2708), + [anon_sym_DASH2] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_STAR2] = ACTIONS(2708), + [anon_sym_and2] = ACTIONS(2706), + [anon_sym_xor2] = ACTIONS(2706), + [anon_sym_or2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2706), + [anon_sym_has2] = ACTIONS(2706), + [anon_sym_not_DASHhas2] = ACTIONS(2706), + [anon_sym_starts_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), + [anon_sym_ends_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), + [anon_sym_EQ_EQ2] = ACTIONS(2706), + [anon_sym_BANG_EQ2] = ACTIONS(2706), + [anon_sym_LT2] = ACTIONS(2708), + [anon_sym_LT_EQ2] = ACTIONS(2706), + [anon_sym_GT_EQ2] = ACTIONS(2706), + [anon_sym_EQ_TILDE2] = ACTIONS(2706), + [anon_sym_BANG_TILDE2] = ACTIONS(2706), + [anon_sym_like2] = ACTIONS(2706), + [anon_sym_not_DASHlike2] = ACTIONS(2706), + [anon_sym_STAR_STAR2] = ACTIONS(2706), + [anon_sym_PLUS_PLUS2] = ACTIONS(2706), + [anon_sym_SLASH2] = ACTIONS(2708), + [anon_sym_mod2] = ACTIONS(2706), + [anon_sym_SLASH_SLASH2] = ACTIONS(2706), + [anon_sym_PLUS2] = ACTIONS(2708), + [anon_sym_bit_DASHshl2] = ACTIONS(2706), + [anon_sym_bit_DASHshr2] = ACTIONS(2706), + [anon_sym_bit_DASHand2] = ACTIONS(2706), + [anon_sym_bit_DASHxor2] = ACTIONS(2706), + [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_err_GT] = ACTIONS(2708), + [anon_sym_out_GT] = ACTIONS(2708), + [anon_sym_e_GT] = ACTIONS(2708), + [anon_sym_o_GT] = ACTIONS(2708), + [anon_sym_err_PLUSout_GT] = ACTIONS(2708), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), + [anon_sym_o_PLUSe_GT] = ACTIONS(2708), + [anon_sym_e_PLUSo_GT] = ACTIONS(2708), + [anon_sym_err_GT_GT] = ACTIONS(2706), + [anon_sym_out_GT_GT] = ACTIONS(2706), + [anon_sym_e_GT_GT] = ACTIONS(2706), + [anon_sym_o_GT_GT] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1051)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1051), + [anon_sym_in] = ACTIONS(2706), + [sym__newline] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_err_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_GT_PIPE] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2708), + [anon_sym_DASH2] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_STAR2] = ACTIONS(2708), + [anon_sym_and2] = ACTIONS(2706), + [anon_sym_xor2] = ACTIONS(2706), + [anon_sym_or2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2706), + [anon_sym_has2] = ACTIONS(2706), + [anon_sym_not_DASHhas2] = ACTIONS(2706), + [anon_sym_starts_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), + [anon_sym_ends_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), + [anon_sym_EQ_EQ2] = ACTIONS(2706), + [anon_sym_BANG_EQ2] = ACTIONS(2706), + [anon_sym_LT2] = ACTIONS(2708), + [anon_sym_LT_EQ2] = ACTIONS(2706), + [anon_sym_GT_EQ2] = ACTIONS(2706), + [anon_sym_EQ_TILDE2] = ACTIONS(2706), + [anon_sym_BANG_TILDE2] = ACTIONS(2706), + [anon_sym_like2] = ACTIONS(2706), + [anon_sym_not_DASHlike2] = ACTIONS(2706), + [anon_sym_STAR_STAR2] = ACTIONS(2706), + [anon_sym_PLUS_PLUS2] = ACTIONS(2706), + [anon_sym_SLASH2] = ACTIONS(2708), + [anon_sym_mod2] = ACTIONS(2706), + [anon_sym_SLASH_SLASH2] = ACTIONS(2706), + [anon_sym_PLUS2] = ACTIONS(2708), + [anon_sym_bit_DASHshl2] = ACTIONS(2706), + [anon_sym_bit_DASHshr2] = ACTIONS(2706), + [anon_sym_bit_DASHand2] = ACTIONS(2706), + [anon_sym_bit_DASHxor2] = ACTIONS(2706), + [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_err_GT] = ACTIONS(2708), + [anon_sym_out_GT] = ACTIONS(2708), + [anon_sym_e_GT] = ACTIONS(2708), + [anon_sym_o_GT] = ACTIONS(2708), + [anon_sym_err_PLUSout_GT] = ACTIONS(2708), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), + [anon_sym_o_PLUSe_GT] = ACTIONS(2708), + [anon_sym_e_PLUSo_GT] = ACTIONS(2708), + [anon_sym_err_GT_GT] = ACTIONS(2706), + [anon_sym_out_GT_GT] = ACTIONS(2706), + [anon_sym_e_GT_GT] = ACTIONS(2706), + [anon_sym_o_GT_GT] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1052)] = { + [aux_sym__repeat_newline] = STATE(1356), + [sym__expression_parenthesized] = STATE(4398), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2126), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1831), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_comment] = STATE(1052), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(2660), + [aux_sym_cmd_identifier_token3] = ACTIONS(189), + [aux_sym_cmd_identifier_token4] = ACTIONS(189), + [aux_sym_cmd_identifier_token5] = ACTIONS(189), + [sym__newline] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(1053)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1053), + [anon_sym_in] = ACTIONS(2706), + [sym__newline] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_err_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_GT_PIPE] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2708), + [anon_sym_DASH2] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_STAR2] = ACTIONS(2708), + [anon_sym_and2] = ACTIONS(2706), + [anon_sym_xor2] = ACTIONS(2706), + [anon_sym_or2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2706), + [anon_sym_has2] = ACTIONS(2706), + [anon_sym_not_DASHhas2] = ACTIONS(2706), + [anon_sym_starts_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), + [anon_sym_ends_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), + [anon_sym_EQ_EQ2] = ACTIONS(2706), + [anon_sym_BANG_EQ2] = ACTIONS(2706), + [anon_sym_LT2] = ACTIONS(2708), + [anon_sym_LT_EQ2] = ACTIONS(2706), + [anon_sym_GT_EQ2] = ACTIONS(2706), + [anon_sym_EQ_TILDE2] = ACTIONS(2706), + [anon_sym_BANG_TILDE2] = ACTIONS(2706), + [anon_sym_like2] = ACTIONS(2706), + [anon_sym_not_DASHlike2] = ACTIONS(2706), + [anon_sym_STAR_STAR2] = ACTIONS(2706), + [anon_sym_PLUS_PLUS2] = ACTIONS(2706), + [anon_sym_SLASH2] = ACTIONS(2708), + [anon_sym_mod2] = ACTIONS(2706), + [anon_sym_SLASH_SLASH2] = ACTIONS(2706), + [anon_sym_PLUS2] = ACTIONS(2708), + [anon_sym_bit_DASHshl2] = ACTIONS(2706), + [anon_sym_bit_DASHshr2] = ACTIONS(2706), + [anon_sym_bit_DASHand2] = ACTIONS(2706), + [anon_sym_bit_DASHxor2] = ACTIONS(2706), + [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_err_GT] = ACTIONS(2708), + [anon_sym_out_GT] = ACTIONS(2708), + [anon_sym_e_GT] = ACTIONS(2708), + [anon_sym_o_GT] = ACTIONS(2708), + [anon_sym_err_PLUSout_GT] = ACTIONS(2708), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), + [anon_sym_o_PLUSe_GT] = ACTIONS(2708), + [anon_sym_e_PLUSo_GT] = ACTIONS(2708), + [anon_sym_err_GT_GT] = ACTIONS(2706), + [anon_sym_out_GT_GT] = ACTIONS(2706), + [anon_sym_e_GT_GT] = ACTIONS(2706), + [anon_sym_o_GT_GT] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(1054)] = { + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1054), - [ts_builtin_sym_end] = ACTIONS(2509), - [anon_sym_in] = ACTIONS(2509), - [sym__newline] = ACTIONS(2509), - [anon_sym_SEMI] = ACTIONS(2509), - [anon_sym_PIPE] = ACTIONS(2509), - [anon_sym_err_GT_PIPE] = ACTIONS(2509), - [anon_sym_out_GT_PIPE] = ACTIONS(2509), - [anon_sym_e_GT_PIPE] = ACTIONS(2509), - [anon_sym_o_GT_PIPE] = ACTIONS(2509), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2509), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2509), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2509), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2509), - [anon_sym_GT2] = ACTIONS(2511), - [anon_sym_DASH2] = ACTIONS(2509), - [anon_sym_STAR2] = ACTIONS(2511), - [anon_sym_and2] = ACTIONS(2509), - [anon_sym_xor2] = ACTIONS(2509), - [anon_sym_or2] = ACTIONS(2509), - [anon_sym_not_DASHin2] = ACTIONS(2509), - [anon_sym_has2] = ACTIONS(2509), - [anon_sym_not_DASHhas2] = ACTIONS(2509), - [anon_sym_starts_DASHwith2] = ACTIONS(2509), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2509), - [anon_sym_ends_DASHwith2] = ACTIONS(2509), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2509), - [anon_sym_EQ_EQ2] = ACTIONS(2509), - [anon_sym_BANG_EQ2] = ACTIONS(2509), - [anon_sym_LT2] = ACTIONS(2511), - [anon_sym_LT_EQ2] = ACTIONS(2509), - [anon_sym_GT_EQ2] = ACTIONS(2509), - [anon_sym_EQ_TILDE2] = ACTIONS(2509), - [anon_sym_BANG_TILDE2] = ACTIONS(2509), - [anon_sym_like2] = ACTIONS(2509), - [anon_sym_not_DASHlike2] = ACTIONS(2509), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_STAR_STAR2] = ACTIONS(2509), - [anon_sym_PLUS_PLUS2] = ACTIONS(2509), - [anon_sym_SLASH2] = ACTIONS(2511), - [anon_sym_mod2] = ACTIONS(2509), - [anon_sym_SLASH_SLASH2] = ACTIONS(2509), - [anon_sym_PLUS2] = ACTIONS(2511), - [anon_sym_bit_DASHshl2] = ACTIONS(2509), - [anon_sym_bit_DASHshr2] = ACTIONS(2509), - [anon_sym_bit_DASHand2] = ACTIONS(2509), - [anon_sym_bit_DASHxor2] = ACTIONS(2509), - [anon_sym_bit_DASHor2] = ACTIONS(2509), - [anon_sym_err_GT] = ACTIONS(2511), - [anon_sym_out_GT] = ACTIONS(2511), - [anon_sym_e_GT] = ACTIONS(2511), - [anon_sym_o_GT] = ACTIONS(2511), - [anon_sym_err_PLUSout_GT] = ACTIONS(2511), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2511), - [anon_sym_o_PLUSe_GT] = ACTIONS(2511), - [anon_sym_e_PLUSo_GT] = ACTIONS(2511), - [anon_sym_err_GT_GT] = ACTIONS(2509), - [anon_sym_out_GT_GT] = ACTIONS(2509), - [anon_sym_e_GT_GT] = ACTIONS(2509), - [anon_sym_o_GT_GT] = ACTIONS(2509), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2509), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2509), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2509), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2509), - [sym__unquoted_pattern] = ACTIONS(1641), + [anon_sym_in] = ACTIONS(2706), + [sym__newline] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_err_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_GT_PIPE] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2708), + [anon_sym_DASH2] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_STAR2] = ACTIONS(2708), + [anon_sym_and2] = ACTIONS(2706), + [anon_sym_xor2] = ACTIONS(2706), + [anon_sym_or2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2706), + [anon_sym_has2] = ACTIONS(2706), + [anon_sym_not_DASHhas2] = ACTIONS(2706), + [anon_sym_starts_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), + [anon_sym_ends_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), + [anon_sym_EQ_EQ2] = ACTIONS(2706), + [anon_sym_BANG_EQ2] = ACTIONS(2706), + [anon_sym_LT2] = ACTIONS(2708), + [anon_sym_LT_EQ2] = ACTIONS(2706), + [anon_sym_GT_EQ2] = ACTIONS(2706), + [anon_sym_EQ_TILDE2] = ACTIONS(2706), + [anon_sym_BANG_TILDE2] = ACTIONS(2706), + [anon_sym_like2] = ACTIONS(2706), + [anon_sym_not_DASHlike2] = ACTIONS(2706), + [anon_sym_STAR_STAR2] = ACTIONS(2706), + [anon_sym_PLUS_PLUS2] = ACTIONS(2706), + [anon_sym_SLASH2] = ACTIONS(2708), + [anon_sym_mod2] = ACTIONS(2706), + [anon_sym_SLASH_SLASH2] = ACTIONS(2706), + [anon_sym_PLUS2] = ACTIONS(2708), + [anon_sym_bit_DASHshl2] = ACTIONS(2706), + [anon_sym_bit_DASHshr2] = ACTIONS(2706), + [anon_sym_bit_DASHand2] = ACTIONS(2706), + [anon_sym_bit_DASHxor2] = ACTIONS(2706), + [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_err_GT] = ACTIONS(2708), + [anon_sym_out_GT] = ACTIONS(2708), + [anon_sym_e_GT] = ACTIONS(2708), + [anon_sym_o_GT] = ACTIONS(2708), + [anon_sym_err_PLUSout_GT] = ACTIONS(2708), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), + [anon_sym_o_PLUSe_GT] = ACTIONS(2708), + [anon_sym_e_PLUSo_GT] = ACTIONS(2708), + [anon_sym_err_GT_GT] = ACTIONS(2706), + [anon_sym_out_GT_GT] = ACTIONS(2706), + [anon_sym_e_GT_GT] = ACTIONS(2706), + [anon_sym_o_GT_GT] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1055)] = { - [aux_sym__repeat_newline] = STATE(1037), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1055), - [anon_sym_in] = ACTIONS(2279), - [sym__newline] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_err_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_GT_PIPE] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_GT2] = ACTIONS(2281), - [anon_sym_DASH2] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_STAR2] = ACTIONS(2281), - [anon_sym_and2] = ACTIONS(2279), - [anon_sym_xor2] = ACTIONS(2279), - [anon_sym_or2] = ACTIONS(2279), - [anon_sym_not_DASHin2] = ACTIONS(2279), - [anon_sym_has2] = ACTIONS(2279), - [anon_sym_not_DASHhas2] = ACTIONS(2279), - [anon_sym_starts_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), - [anon_sym_ends_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), - [anon_sym_EQ_EQ2] = ACTIONS(2279), - [anon_sym_BANG_EQ2] = ACTIONS(2279), - [anon_sym_LT2] = ACTIONS(2281), - [anon_sym_LT_EQ2] = ACTIONS(2279), - [anon_sym_GT_EQ2] = ACTIONS(2279), - [anon_sym_EQ_TILDE2] = ACTIONS(2279), - [anon_sym_BANG_TILDE2] = ACTIONS(2279), - [anon_sym_like2] = ACTIONS(2279), - [anon_sym_not_DASHlike2] = ACTIONS(2279), - [anon_sym_STAR_STAR2] = ACTIONS(2279), - [anon_sym_PLUS_PLUS2] = ACTIONS(2279), - [anon_sym_SLASH2] = ACTIONS(2281), - [anon_sym_mod2] = ACTIONS(2279), - [anon_sym_SLASH_SLASH2] = ACTIONS(2279), - [anon_sym_PLUS2] = ACTIONS(2281), - [anon_sym_bit_DASHshl2] = ACTIONS(2279), - [anon_sym_bit_DASHshr2] = ACTIONS(2279), - [anon_sym_bit_DASHand2] = ACTIONS(2279), - [anon_sym_bit_DASHxor2] = ACTIONS(2279), - [anon_sym_bit_DASHor2] = ACTIONS(2279), - [anon_sym_err_GT] = ACTIONS(2281), - [anon_sym_out_GT] = ACTIONS(2281), - [anon_sym_e_GT] = ACTIONS(2281), - [anon_sym_o_GT] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT] = ACTIONS(2281), - [anon_sym_err_GT_GT] = ACTIONS(2279), - [anon_sym_out_GT_GT] = ACTIONS(2279), - [anon_sym_e_GT_GT] = ACTIONS(2279), - [anon_sym_o_GT_GT] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), + [anon_sym_in] = ACTIONS(2706), + [sym__newline] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_err_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_GT_PIPE] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2708), + [anon_sym_DASH2] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_STAR2] = ACTIONS(2708), + [anon_sym_and2] = ACTIONS(2706), + [anon_sym_xor2] = ACTIONS(2706), + [anon_sym_or2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2706), + [anon_sym_has2] = ACTIONS(2706), + [anon_sym_not_DASHhas2] = ACTIONS(2706), + [anon_sym_starts_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), + [anon_sym_ends_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), + [anon_sym_EQ_EQ2] = ACTIONS(2706), + [anon_sym_BANG_EQ2] = ACTIONS(2706), + [anon_sym_LT2] = ACTIONS(2708), + [anon_sym_LT_EQ2] = ACTIONS(2706), + [anon_sym_GT_EQ2] = ACTIONS(2706), + [anon_sym_EQ_TILDE2] = ACTIONS(2706), + [anon_sym_BANG_TILDE2] = ACTIONS(2706), + [anon_sym_like2] = ACTIONS(2706), + [anon_sym_not_DASHlike2] = ACTIONS(2706), + [anon_sym_STAR_STAR2] = ACTIONS(2706), + [anon_sym_PLUS_PLUS2] = ACTIONS(2706), + [anon_sym_SLASH2] = ACTIONS(2708), + [anon_sym_mod2] = ACTIONS(2706), + [anon_sym_SLASH_SLASH2] = ACTIONS(2706), + [anon_sym_PLUS2] = ACTIONS(2708), + [anon_sym_bit_DASHshl2] = ACTIONS(2706), + [anon_sym_bit_DASHshr2] = ACTIONS(2706), + [anon_sym_bit_DASHand2] = ACTIONS(2706), + [anon_sym_bit_DASHxor2] = ACTIONS(2706), + [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_err_GT] = ACTIONS(2708), + [anon_sym_out_GT] = ACTIONS(2708), + [anon_sym_e_GT] = ACTIONS(2708), + [anon_sym_o_GT] = ACTIONS(2708), + [anon_sym_err_PLUSout_GT] = ACTIONS(2708), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), + [anon_sym_o_PLUSe_GT] = ACTIONS(2708), + [anon_sym_e_PLUSo_GT] = ACTIONS(2708), + [anon_sym_err_GT_GT] = ACTIONS(2706), + [anon_sym_out_GT_GT] = ACTIONS(2706), + [anon_sym_e_GT_GT] = ACTIONS(2706), + [anon_sym_o_GT_GT] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1056)] = { - [sym__expr_parenthesized_immediate] = STATE(4759), + [sym__expr_parenthesized_immediate] = STATE(4755), [sym_comment] = STATE(1056), [ts_builtin_sym_end] = ACTIONS(2062), [anon_sym_in] = ACTIONS(2062), @@ -125474,7 +125509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2062), [anon_sym_like2] = ACTIONS(2062), [anon_sym_not_DASHlike2] = ACTIONS(2062), - [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_LPAREN2] = ACTIONS(1714), [anon_sym_STAR_STAR2] = ACTIONS(2062), [anon_sym_PLUS_PLUS2] = ACTIONS(2062), [anon_sym_SLASH2] = ACTIONS(2064), @@ -125505,8 +125540,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [STATE(1057)] = { - [sym__expr_parenthesized_immediate] = STATE(4759), + [aux_sym__repeat_newline] = STATE(4124), + [sym__match_pattern_expression] = STATE(4389), + [sym__match_pattern_value] = STATE(4609), + [sym__match_pattern_list_body] = STATE(4642), + [sym__match_pattern_list] = STATE(4610), + [sym__match_pattern_rest] = STATE(5226), + [sym__match_pattern_record] = STATE(4611), + [sym_expr_parenthesized] = STATE(3790), + [sym_val_range] = STATE(4609), + [sym__val_range] = STATE(5020), + [sym_val_nothing] = STATE(4611), + [sym_val_bool] = STATE(4191), + [sym_val_variable] = STATE(3791), + [sym_val_number] = STATE(4611), + [sym__val_number_decimal] = STATE(3574), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4611), + [sym_val_filesize] = STATE(4611), + [sym_val_binary] = STATE(4611), + [sym_val_string] = STATE(4611), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_list] = STATE(5150), + [sym__table_head] = STATE(3675), + [sym_val_table] = STATE(4611), + [sym__unquoted_in_list] = STATE(4389), + [sym__unquoted_anonymous_prefix] = STATE(5020), [sym_comment] = STATE(1057), + [aux_sym__types_body_repeat1] = STATE(1396), + [aux_sym_parameter_repeat2] = STATE(4020), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1412), + [anon_sym_true] = ACTIONS(1374), + [anon_sym_false] = ACTIONS(1374), + [anon_sym_null] = ACTIONS(1376), + [aux_sym_cmd_identifier_token3] = ACTIONS(1378), + [aux_sym_cmd_identifier_token4] = ACTIONS(1378), + [aux_sym_cmd_identifier_token5] = ACTIONS(1378), + [sym__newline] = ACTIONS(2710), + [anon_sym_LBRACK] = ACTIONS(2712), + [anon_sym_RBRACK] = ACTIONS(2714), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_COMMA] = ACTIONS(1388), + [anon_sym_DOLLAR] = ACTIONS(2716), + [anon_sym_LBRACE] = ACTIONS(2718), + [anon_sym_DOT_DOT] = ACTIONS(1394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), + [anon_sym_DOT_DOT_LT] = ACTIONS(1396), + [aux_sym__val_number_decimal_token1] = ACTIONS(1398), + [aux_sym__val_number_decimal_token2] = ACTIONS(1400), + [aux_sym__val_number_decimal_token3] = ACTIONS(1402), + [aux_sym__val_number_decimal_token4] = ACTIONS(1402), + [aux_sym__val_number_token1] = ACTIONS(1404), + [aux_sym__val_number_token2] = ACTIONS(1404), + [aux_sym__val_number_token3] = ACTIONS(1404), + [anon_sym_0b] = ACTIONS(1406), + [anon_sym_0o] = ACTIONS(1408), + [anon_sym_0x] = ACTIONS(1408), + [sym_val_date] = ACTIONS(2720), + [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_BQUOTE] = ACTIONS(1416), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1426), + }, + [STATE(1058)] = { + [sym__expr_parenthesized_immediate] = STATE(4755), + [sym_comment] = STATE(1058), [ts_builtin_sym_end] = ACTIONS(2062), [anon_sym_in] = ACTIONS(2062), [sym__newline] = ACTIONS(2062), @@ -125542,7 +125645,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2062), [anon_sym_like2] = ACTIONS(2062), [anon_sym_not_DASHlike2] = ACTIONS(2062), - [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_LPAREN2] = ACTIONS(1714), [anon_sym_STAR_STAR2] = ACTIONS(2062), [anon_sym_PLUS_PLUS2] = ACTIONS(2062), [anon_sym_SLASH2] = ACTIONS(2064), @@ -125572,77 +125675,689 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1058)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1058), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(1059)] = { - [sym__expr_parenthesized_immediate] = STATE(4759), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1059), + [anon_sym_in] = ACTIONS(2706), + [sym__newline] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_err_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_GT_PIPE] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2708), + [anon_sym_DASH2] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_STAR2] = ACTIONS(2708), + [anon_sym_and2] = ACTIONS(2706), + [anon_sym_xor2] = ACTIONS(2706), + [anon_sym_or2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2706), + [anon_sym_has2] = ACTIONS(2706), + [anon_sym_not_DASHhas2] = ACTIONS(2706), + [anon_sym_starts_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), + [anon_sym_ends_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), + [anon_sym_EQ_EQ2] = ACTIONS(2706), + [anon_sym_BANG_EQ2] = ACTIONS(2706), + [anon_sym_LT2] = ACTIONS(2708), + [anon_sym_LT_EQ2] = ACTIONS(2706), + [anon_sym_GT_EQ2] = ACTIONS(2706), + [anon_sym_EQ_TILDE2] = ACTIONS(2706), + [anon_sym_BANG_TILDE2] = ACTIONS(2706), + [anon_sym_like2] = ACTIONS(2706), + [anon_sym_not_DASHlike2] = ACTIONS(2706), + [anon_sym_STAR_STAR2] = ACTIONS(2706), + [anon_sym_PLUS_PLUS2] = ACTIONS(2706), + [anon_sym_SLASH2] = ACTIONS(2708), + [anon_sym_mod2] = ACTIONS(2706), + [anon_sym_SLASH_SLASH2] = ACTIONS(2706), + [anon_sym_PLUS2] = ACTIONS(2708), + [anon_sym_bit_DASHshl2] = ACTIONS(2706), + [anon_sym_bit_DASHshr2] = ACTIONS(2706), + [anon_sym_bit_DASHand2] = ACTIONS(2706), + [anon_sym_bit_DASHxor2] = ACTIONS(2706), + [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_err_GT] = ACTIONS(2708), + [anon_sym_out_GT] = ACTIONS(2708), + [anon_sym_e_GT] = ACTIONS(2708), + [anon_sym_o_GT] = ACTIONS(2708), + [anon_sym_err_PLUSout_GT] = ACTIONS(2708), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), + [anon_sym_o_PLUSe_GT] = ACTIONS(2708), + [anon_sym_e_PLUSo_GT] = ACTIONS(2708), + [anon_sym_err_GT_GT] = ACTIONS(2706), + [anon_sym_out_GT_GT] = ACTIONS(2706), + [anon_sym_e_GT_GT] = ACTIONS(2706), + [anon_sym_o_GT_GT] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1060)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1060), + [anon_sym_in] = ACTIONS(2706), + [sym__newline] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_err_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_GT_PIPE] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2708), + [anon_sym_DASH2] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_STAR2] = ACTIONS(2708), + [anon_sym_and2] = ACTIONS(2706), + [anon_sym_xor2] = ACTIONS(2706), + [anon_sym_or2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2706), + [anon_sym_has2] = ACTIONS(2706), + [anon_sym_not_DASHhas2] = ACTIONS(2706), + [anon_sym_starts_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), + [anon_sym_ends_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), + [anon_sym_EQ_EQ2] = ACTIONS(2706), + [anon_sym_BANG_EQ2] = ACTIONS(2706), + [anon_sym_LT2] = ACTIONS(2708), + [anon_sym_LT_EQ2] = ACTIONS(2706), + [anon_sym_GT_EQ2] = ACTIONS(2706), + [anon_sym_EQ_TILDE2] = ACTIONS(2706), + [anon_sym_BANG_TILDE2] = ACTIONS(2706), + [anon_sym_like2] = ACTIONS(2706), + [anon_sym_not_DASHlike2] = ACTIONS(2706), + [anon_sym_STAR_STAR2] = ACTIONS(2706), + [anon_sym_PLUS_PLUS2] = ACTIONS(2706), + [anon_sym_SLASH2] = ACTIONS(2708), + [anon_sym_mod2] = ACTIONS(2706), + [anon_sym_SLASH_SLASH2] = ACTIONS(2706), + [anon_sym_PLUS2] = ACTIONS(2708), + [anon_sym_bit_DASHshl2] = ACTIONS(2706), + [anon_sym_bit_DASHshr2] = ACTIONS(2706), + [anon_sym_bit_DASHand2] = ACTIONS(2706), + [anon_sym_bit_DASHxor2] = ACTIONS(2706), + [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_err_GT] = ACTIONS(2708), + [anon_sym_out_GT] = ACTIONS(2708), + [anon_sym_e_GT] = ACTIONS(2708), + [anon_sym_o_GT] = ACTIONS(2708), + [anon_sym_err_PLUSout_GT] = ACTIONS(2708), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), + [anon_sym_o_PLUSe_GT] = ACTIONS(2708), + [anon_sym_e_PLUSo_GT] = ACTIONS(2708), + [anon_sym_err_GT_GT] = ACTIONS(2706), + [anon_sym_out_GT_GT] = ACTIONS(2706), + [anon_sym_e_GT_GT] = ACTIONS(2706), + [anon_sym_o_GT_GT] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1061)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1061), + [anon_sym_in] = ACTIONS(2722), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2724), + [anon_sym_DASH2] = ACTIONS(2722), + [anon_sym_LBRACE] = ACTIONS(2722), + [anon_sym_STAR2] = ACTIONS(2724), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2722), + [anon_sym_has2] = ACTIONS(2722), + [anon_sym_not_DASHhas2] = ACTIONS(2722), + [anon_sym_starts_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), + [anon_sym_ends_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), + [anon_sym_EQ_EQ2] = ACTIONS(2722), + [anon_sym_BANG_EQ2] = ACTIONS(2722), + [anon_sym_LT2] = ACTIONS(2724), + [anon_sym_LT_EQ2] = ACTIONS(2722), + [anon_sym_GT_EQ2] = ACTIONS(2722), + [anon_sym_EQ_TILDE2] = ACTIONS(2722), + [anon_sym_BANG_TILDE2] = ACTIONS(2722), + [anon_sym_like2] = ACTIONS(2722), + [anon_sym_not_DASHlike2] = ACTIONS(2722), + [anon_sym_STAR_STAR2] = ACTIONS(2722), + [anon_sym_PLUS_PLUS2] = ACTIONS(2722), + [anon_sym_SLASH2] = ACTIONS(2724), + [anon_sym_mod2] = ACTIONS(2722), + [anon_sym_SLASH_SLASH2] = ACTIONS(2722), + [anon_sym_PLUS2] = ACTIONS(2724), + [anon_sym_bit_DASHshl2] = ACTIONS(2722), + [anon_sym_bit_DASHshr2] = ACTIONS(2722), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1062)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1062), + [anon_sym_in] = ACTIONS(2706), + [sym__newline] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_err_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_GT_PIPE] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2708), + [anon_sym_DASH2] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_STAR2] = ACTIONS(2708), + [anon_sym_and2] = ACTIONS(2706), + [anon_sym_xor2] = ACTIONS(2706), + [anon_sym_or2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2706), + [anon_sym_has2] = ACTIONS(2706), + [anon_sym_not_DASHhas2] = ACTIONS(2706), + [anon_sym_starts_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), + [anon_sym_ends_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), + [anon_sym_EQ_EQ2] = ACTIONS(2706), + [anon_sym_BANG_EQ2] = ACTIONS(2706), + [anon_sym_LT2] = ACTIONS(2708), + [anon_sym_LT_EQ2] = ACTIONS(2706), + [anon_sym_GT_EQ2] = ACTIONS(2706), + [anon_sym_EQ_TILDE2] = ACTIONS(2706), + [anon_sym_BANG_TILDE2] = ACTIONS(2706), + [anon_sym_like2] = ACTIONS(2706), + [anon_sym_not_DASHlike2] = ACTIONS(2706), + [anon_sym_STAR_STAR2] = ACTIONS(2706), + [anon_sym_PLUS_PLUS2] = ACTIONS(2706), + [anon_sym_SLASH2] = ACTIONS(2708), + [anon_sym_mod2] = ACTIONS(2706), + [anon_sym_SLASH_SLASH2] = ACTIONS(2706), + [anon_sym_PLUS2] = ACTIONS(2708), + [anon_sym_bit_DASHshl2] = ACTIONS(2706), + [anon_sym_bit_DASHshr2] = ACTIONS(2706), + [anon_sym_bit_DASHand2] = ACTIONS(2706), + [anon_sym_bit_DASHxor2] = ACTIONS(2706), + [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_err_GT] = ACTIONS(2708), + [anon_sym_out_GT] = ACTIONS(2708), + [anon_sym_e_GT] = ACTIONS(2708), + [anon_sym_o_GT] = ACTIONS(2708), + [anon_sym_err_PLUSout_GT] = ACTIONS(2708), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), + [anon_sym_o_PLUSe_GT] = ACTIONS(2708), + [anon_sym_e_PLUSo_GT] = ACTIONS(2708), + [anon_sym_err_GT_GT] = ACTIONS(2706), + [anon_sym_out_GT_GT] = ACTIONS(2706), + [anon_sym_e_GT_GT] = ACTIONS(2706), + [anon_sym_o_GT_GT] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1063)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1063), + [anon_sym_in] = ACTIONS(2706), + [sym__newline] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_err_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_GT_PIPE] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2708), + [anon_sym_DASH2] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_STAR2] = ACTIONS(2708), + [anon_sym_and2] = ACTIONS(2706), + [anon_sym_xor2] = ACTIONS(2706), + [anon_sym_or2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2706), + [anon_sym_has2] = ACTIONS(2706), + [anon_sym_not_DASHhas2] = ACTIONS(2706), + [anon_sym_starts_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), + [anon_sym_ends_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), + [anon_sym_EQ_EQ2] = ACTIONS(2706), + [anon_sym_BANG_EQ2] = ACTIONS(2706), + [anon_sym_LT2] = ACTIONS(2708), + [anon_sym_LT_EQ2] = ACTIONS(2706), + [anon_sym_GT_EQ2] = ACTIONS(2706), + [anon_sym_EQ_TILDE2] = ACTIONS(2706), + [anon_sym_BANG_TILDE2] = ACTIONS(2706), + [anon_sym_like2] = ACTIONS(2706), + [anon_sym_not_DASHlike2] = ACTIONS(2706), + [anon_sym_STAR_STAR2] = ACTIONS(2706), + [anon_sym_PLUS_PLUS2] = ACTIONS(2706), + [anon_sym_SLASH2] = ACTIONS(2708), + [anon_sym_mod2] = ACTIONS(2706), + [anon_sym_SLASH_SLASH2] = ACTIONS(2706), + [anon_sym_PLUS2] = ACTIONS(2708), + [anon_sym_bit_DASHshl2] = ACTIONS(2706), + [anon_sym_bit_DASHshr2] = ACTIONS(2706), + [anon_sym_bit_DASHand2] = ACTIONS(2706), + [anon_sym_bit_DASHxor2] = ACTIONS(2706), + [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_err_GT] = ACTIONS(2708), + [anon_sym_out_GT] = ACTIONS(2708), + [anon_sym_e_GT] = ACTIONS(2708), + [anon_sym_o_GT] = ACTIONS(2708), + [anon_sym_err_PLUSout_GT] = ACTIONS(2708), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), + [anon_sym_o_PLUSe_GT] = ACTIONS(2708), + [anon_sym_e_PLUSo_GT] = ACTIONS(2708), + [anon_sym_err_GT_GT] = ACTIONS(2706), + [anon_sym_out_GT_GT] = ACTIONS(2706), + [anon_sym_e_GT_GT] = ACTIONS(2706), + [anon_sym_o_GT_GT] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1064)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1064), + [anon_sym_in] = ACTIONS(2706), + [sym__newline] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_err_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_GT_PIPE] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2708), + [anon_sym_DASH2] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_STAR2] = ACTIONS(2708), + [anon_sym_and2] = ACTIONS(2706), + [anon_sym_xor2] = ACTIONS(2706), + [anon_sym_or2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2706), + [anon_sym_has2] = ACTIONS(2706), + [anon_sym_not_DASHhas2] = ACTIONS(2706), + [anon_sym_starts_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), + [anon_sym_ends_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), + [anon_sym_EQ_EQ2] = ACTIONS(2706), + [anon_sym_BANG_EQ2] = ACTIONS(2706), + [anon_sym_LT2] = ACTIONS(2708), + [anon_sym_LT_EQ2] = ACTIONS(2706), + [anon_sym_GT_EQ2] = ACTIONS(2706), + [anon_sym_EQ_TILDE2] = ACTIONS(2706), + [anon_sym_BANG_TILDE2] = ACTIONS(2706), + [anon_sym_like2] = ACTIONS(2706), + [anon_sym_not_DASHlike2] = ACTIONS(2706), + [anon_sym_STAR_STAR2] = ACTIONS(2706), + [anon_sym_PLUS_PLUS2] = ACTIONS(2706), + [anon_sym_SLASH2] = ACTIONS(2708), + [anon_sym_mod2] = ACTIONS(2706), + [anon_sym_SLASH_SLASH2] = ACTIONS(2706), + [anon_sym_PLUS2] = ACTIONS(2708), + [anon_sym_bit_DASHshl2] = ACTIONS(2706), + [anon_sym_bit_DASHshr2] = ACTIONS(2706), + [anon_sym_bit_DASHand2] = ACTIONS(2706), + [anon_sym_bit_DASHxor2] = ACTIONS(2706), + [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_err_GT] = ACTIONS(2708), + [anon_sym_out_GT] = ACTIONS(2708), + [anon_sym_e_GT] = ACTIONS(2708), + [anon_sym_o_GT] = ACTIONS(2708), + [anon_sym_err_PLUSout_GT] = ACTIONS(2708), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), + [anon_sym_o_PLUSe_GT] = ACTIONS(2708), + [anon_sym_e_PLUSo_GT] = ACTIONS(2708), + [anon_sym_err_GT_GT] = ACTIONS(2706), + [anon_sym_out_GT_GT] = ACTIONS(2706), + [anon_sym_e_GT_GT] = ACTIONS(2706), + [anon_sym_o_GT_GT] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1065)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1065), + [anon_sym_in] = ACTIONS(2706), + [sym__newline] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_err_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_GT_PIPE] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2708), + [anon_sym_DASH2] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_STAR2] = ACTIONS(2708), + [anon_sym_and2] = ACTIONS(2706), + [anon_sym_xor2] = ACTIONS(2706), + [anon_sym_or2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2706), + [anon_sym_has2] = ACTIONS(2706), + [anon_sym_not_DASHhas2] = ACTIONS(2706), + [anon_sym_starts_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), + [anon_sym_ends_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), + [anon_sym_EQ_EQ2] = ACTIONS(2706), + [anon_sym_BANG_EQ2] = ACTIONS(2706), + [anon_sym_LT2] = ACTIONS(2708), + [anon_sym_LT_EQ2] = ACTIONS(2706), + [anon_sym_GT_EQ2] = ACTIONS(2706), + [anon_sym_EQ_TILDE2] = ACTIONS(2706), + [anon_sym_BANG_TILDE2] = ACTIONS(2706), + [anon_sym_like2] = ACTIONS(2706), + [anon_sym_not_DASHlike2] = ACTIONS(2706), + [anon_sym_STAR_STAR2] = ACTIONS(2706), + [anon_sym_PLUS_PLUS2] = ACTIONS(2706), + [anon_sym_SLASH2] = ACTIONS(2708), + [anon_sym_mod2] = ACTIONS(2706), + [anon_sym_SLASH_SLASH2] = ACTIONS(2706), + [anon_sym_PLUS2] = ACTIONS(2708), + [anon_sym_bit_DASHshl2] = ACTIONS(2706), + [anon_sym_bit_DASHshr2] = ACTIONS(2706), + [anon_sym_bit_DASHand2] = ACTIONS(2706), + [anon_sym_bit_DASHxor2] = ACTIONS(2706), + [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_err_GT] = ACTIONS(2708), + [anon_sym_out_GT] = ACTIONS(2708), + [anon_sym_e_GT] = ACTIONS(2708), + [anon_sym_o_GT] = ACTIONS(2708), + [anon_sym_err_PLUSout_GT] = ACTIONS(2708), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), + [anon_sym_o_PLUSe_GT] = ACTIONS(2708), + [anon_sym_e_PLUSo_GT] = ACTIONS(2708), + [anon_sym_err_GT_GT] = ACTIONS(2706), + [anon_sym_out_GT_GT] = ACTIONS(2706), + [anon_sym_e_GT_GT] = ACTIONS(2706), + [anon_sym_o_GT_GT] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1066)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1066), + [anon_sym_in] = ACTIONS(2706), + [sym__newline] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_err_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_GT_PIPE] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2708), + [anon_sym_DASH2] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_STAR2] = ACTIONS(2708), + [anon_sym_and2] = ACTIONS(2706), + [anon_sym_xor2] = ACTIONS(2706), + [anon_sym_or2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2706), + [anon_sym_has2] = ACTIONS(2706), + [anon_sym_not_DASHhas2] = ACTIONS(2706), + [anon_sym_starts_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), + [anon_sym_ends_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), + [anon_sym_EQ_EQ2] = ACTIONS(2706), + [anon_sym_BANG_EQ2] = ACTIONS(2706), + [anon_sym_LT2] = ACTIONS(2708), + [anon_sym_LT_EQ2] = ACTIONS(2706), + [anon_sym_GT_EQ2] = ACTIONS(2706), + [anon_sym_EQ_TILDE2] = ACTIONS(2706), + [anon_sym_BANG_TILDE2] = ACTIONS(2706), + [anon_sym_like2] = ACTIONS(2706), + [anon_sym_not_DASHlike2] = ACTIONS(2706), + [anon_sym_STAR_STAR2] = ACTIONS(2706), + [anon_sym_PLUS_PLUS2] = ACTIONS(2706), + [anon_sym_SLASH2] = ACTIONS(2708), + [anon_sym_mod2] = ACTIONS(2706), + [anon_sym_SLASH_SLASH2] = ACTIONS(2706), + [anon_sym_PLUS2] = ACTIONS(2708), + [anon_sym_bit_DASHshl2] = ACTIONS(2706), + [anon_sym_bit_DASHshr2] = ACTIONS(2706), + [anon_sym_bit_DASHand2] = ACTIONS(2706), + [anon_sym_bit_DASHxor2] = ACTIONS(2706), + [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_err_GT] = ACTIONS(2708), + [anon_sym_out_GT] = ACTIONS(2708), + [anon_sym_e_GT] = ACTIONS(2708), + [anon_sym_o_GT] = ACTIONS(2708), + [anon_sym_err_PLUSout_GT] = ACTIONS(2708), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), + [anon_sym_o_PLUSe_GT] = ACTIONS(2708), + [anon_sym_e_PLUSo_GT] = ACTIONS(2708), + [anon_sym_err_GT_GT] = ACTIONS(2706), + [anon_sym_out_GT_GT] = ACTIONS(2706), + [anon_sym_e_GT_GT] = ACTIONS(2706), + [anon_sym_o_GT_GT] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1067)] = { + [aux_sym__repeat_newline] = STATE(975), + [sym_comment] = STATE(1067), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1068)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1068), + [anon_sym_in] = ACTIONS(2644), + [sym__newline] = ACTIONS(2644), + [anon_sym_SEMI] = ACTIONS(2644), + [anon_sym_PIPE] = ACTIONS(2644), + [anon_sym_err_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_GT_PIPE] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2644), + [anon_sym_RPAREN] = ACTIONS(2644), + [anon_sym_GT2] = ACTIONS(2646), + [anon_sym_DASH2] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_STAR2] = ACTIONS(2646), + [anon_sym_and2] = ACTIONS(2644), + [anon_sym_xor2] = ACTIONS(2644), + [anon_sym_or2] = ACTIONS(2644), + [anon_sym_not_DASHin2] = ACTIONS(2644), + [anon_sym_has2] = ACTIONS(2644), + [anon_sym_not_DASHhas2] = ACTIONS(2644), + [anon_sym_starts_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2644), + [anon_sym_ends_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2644), + [anon_sym_EQ_EQ2] = ACTIONS(2644), + [anon_sym_BANG_EQ2] = ACTIONS(2644), + [anon_sym_LT2] = ACTIONS(2646), + [anon_sym_LT_EQ2] = ACTIONS(2644), + [anon_sym_GT_EQ2] = ACTIONS(2644), + [anon_sym_EQ_TILDE2] = ACTIONS(2644), + [anon_sym_BANG_TILDE2] = ACTIONS(2644), + [anon_sym_like2] = ACTIONS(2644), + [anon_sym_not_DASHlike2] = ACTIONS(2644), + [anon_sym_STAR_STAR2] = ACTIONS(2644), + [anon_sym_PLUS_PLUS2] = ACTIONS(2644), + [anon_sym_SLASH2] = ACTIONS(2646), + [anon_sym_mod2] = ACTIONS(2644), + [anon_sym_SLASH_SLASH2] = ACTIONS(2644), + [anon_sym_PLUS2] = ACTIONS(2646), + [anon_sym_bit_DASHshl2] = ACTIONS(2644), + [anon_sym_bit_DASHshr2] = ACTIONS(2644), + [anon_sym_bit_DASHand2] = ACTIONS(2644), + [anon_sym_bit_DASHxor2] = ACTIONS(2644), + [anon_sym_bit_DASHor2] = ACTIONS(2644), + [anon_sym_err_GT] = ACTIONS(2646), + [anon_sym_out_GT] = ACTIONS(2646), + [anon_sym_e_GT] = ACTIONS(2646), + [anon_sym_o_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT] = ACTIONS(2646), + [anon_sym_err_GT_GT] = ACTIONS(2644), + [anon_sym_out_GT_GT] = ACTIONS(2644), + [anon_sym_e_GT_GT] = ACTIONS(2644), + [anon_sym_o_GT_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2644), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1069)] = { + [sym__expr_parenthesized_immediate] = STATE(4755), + [sym_comment] = STATE(1069), [ts_builtin_sym_end] = ACTIONS(2062), [anon_sym_in] = ACTIONS(2062), [sym__newline] = ACTIONS(2062), @@ -125678,7 +126393,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2062), [anon_sym_like2] = ACTIONS(2062), [anon_sym_not_DASHlike2] = ACTIONS(2062), - [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_LPAREN2] = ACTIONS(1714), [anon_sym_STAR_STAR2] = ACTIONS(2062), [anon_sym_PLUS_PLUS2] = ACTIONS(2062), [anon_sym_SLASH2] = ACTIONS(2064), @@ -125708,553 +126423,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1060)] = { - [sym_comment] = STATE(1060), - [anon_sym_export] = ACTIONS(2696), - [anon_sym_alias] = ACTIONS(2698), - [anon_sym_let] = ACTIONS(2698), - [anon_sym_mut] = ACTIONS(2698), - [anon_sym_const] = ACTIONS(2698), - [aux_sym_cmd_identifier_token1] = ACTIONS(2696), - [anon_sym_def] = ACTIONS(2698), - [anon_sym_use] = ACTIONS(2698), - [anon_sym_export_DASHenv] = ACTIONS(2698), - [anon_sym_extern] = ACTIONS(2698), - [anon_sym_module] = ACTIONS(2698), - [anon_sym_for] = ACTIONS(2698), - [anon_sym_loop] = ACTIONS(2698), - [anon_sym_while] = ACTIONS(2698), - [anon_sym_if] = ACTIONS(2698), - [anon_sym_else] = ACTIONS(2698), - [anon_sym_try] = ACTIONS(2698), - [anon_sym_catch] = ACTIONS(2698), - [anon_sym_match] = ACTIONS(2698), - [anon_sym_in] = ACTIONS(2696), - [anon_sym_true] = ACTIONS(2698), - [anon_sym_false] = ACTIONS(2698), - [anon_sym_null] = ACTIONS(2698), - [aux_sym_cmd_identifier_token3] = ACTIONS(2698), - [aux_sym_cmd_identifier_token4] = ACTIONS(2698), - [aux_sym_cmd_identifier_token5] = ACTIONS(2698), - [sym__newline] = ACTIONS(2698), - [anon_sym_PIPE] = ACTIONS(2698), - [anon_sym_err_GT_PIPE] = ACTIONS(2698), - [anon_sym_out_GT_PIPE] = ACTIONS(2698), - [anon_sym_e_GT_PIPE] = ACTIONS(2698), - [anon_sym_o_GT_PIPE] = ACTIONS(2698), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2698), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2698), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2698), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2698), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_LPAREN] = ACTIONS(2698), - [anon_sym_DOLLAR] = ACTIONS(2696), - [anon_sym_DASH2] = ACTIONS(2696), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_DOT_DOT] = ACTIONS(2696), - [anon_sym_where] = ACTIONS(2698), - [aux_sym_expr_unary_token1] = ACTIONS(2698), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2698), - [anon_sym_DOT_DOT_LT] = ACTIONS(2698), - [aux_sym__val_number_decimal_token1] = ACTIONS(2696), - [aux_sym__val_number_decimal_token2] = ACTIONS(2698), - [aux_sym__val_number_decimal_token3] = ACTIONS(2698), - [aux_sym__val_number_decimal_token4] = ACTIONS(2698), - [aux_sym__val_number_token1] = ACTIONS(2698), - [aux_sym__val_number_token2] = ACTIONS(2698), - [aux_sym__val_number_token3] = ACTIONS(2698), - [anon_sym_0b] = ACTIONS(2696), - [anon_sym_0o] = ACTIONS(2696), - [anon_sym_0x] = ACTIONS(2696), - [sym_val_date] = ACTIONS(2698), - [anon_sym_DQUOTE] = ACTIONS(2698), - [anon_sym_SQUOTE] = ACTIONS(2698), - [anon_sym_BQUOTE] = ACTIONS(2698), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2698), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2698), - [anon_sym_CARET] = ACTIONS(2698), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2698), - }, - [STATE(1061)] = { - [aux_sym__repeat_newline] = STATE(1049), - [sym_comment] = STATE(1061), - [anon_sym_in] = ACTIONS(2279), - [sym__newline] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_err_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_GT_PIPE] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_GT2] = ACTIONS(2281), - [anon_sym_DASH2] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_STAR2] = ACTIONS(2281), - [anon_sym_and2] = ACTIONS(2279), - [anon_sym_xor2] = ACTIONS(2279), - [anon_sym_or2] = ACTIONS(2279), - [anon_sym_not_DASHin2] = ACTIONS(2279), - [anon_sym_has2] = ACTIONS(2279), - [anon_sym_not_DASHhas2] = ACTIONS(2279), - [anon_sym_starts_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), - [anon_sym_ends_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), - [anon_sym_EQ_EQ2] = ACTIONS(2279), - [anon_sym_BANG_EQ2] = ACTIONS(2279), - [anon_sym_LT2] = ACTIONS(2281), - [anon_sym_LT_EQ2] = ACTIONS(2279), - [anon_sym_GT_EQ2] = ACTIONS(2279), - [anon_sym_EQ_TILDE2] = ACTIONS(2279), - [anon_sym_BANG_TILDE2] = ACTIONS(2279), - [anon_sym_like2] = ACTIONS(2279), - [anon_sym_not_DASHlike2] = ACTIONS(2279), - [anon_sym_STAR_STAR2] = ACTIONS(2279), - [anon_sym_PLUS_PLUS2] = ACTIONS(2279), - [anon_sym_SLASH2] = ACTIONS(2281), - [anon_sym_mod2] = ACTIONS(2279), - [anon_sym_SLASH_SLASH2] = ACTIONS(2279), - [anon_sym_PLUS2] = ACTIONS(2281), - [anon_sym_bit_DASHshl2] = ACTIONS(2279), - [anon_sym_bit_DASHshr2] = ACTIONS(2279), - [anon_sym_bit_DASHand2] = ACTIONS(2279), - [anon_sym_bit_DASHxor2] = ACTIONS(2279), - [anon_sym_bit_DASHor2] = ACTIONS(2279), - [anon_sym_err_GT] = ACTIONS(2281), - [anon_sym_out_GT] = ACTIONS(2281), - [anon_sym_e_GT] = ACTIONS(2281), - [anon_sym_o_GT] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT] = ACTIONS(2281), - [anon_sym_err_GT_GT] = ACTIONS(2279), - [anon_sym_out_GT_GT] = ACTIONS(2279), - [anon_sym_e_GT_GT] = ACTIONS(2279), - [anon_sym_o_GT_GT] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1062)] = { - [aux_sym__repeat_newline] = STATE(1065), - [sym_comment] = STATE(1062), - [anon_sym_in] = ACTIONS(2279), - [sym__newline] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_err_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_GT_PIPE] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2279), - [anon_sym_GT2] = ACTIONS(2281), - [anon_sym_DASH2] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_STAR2] = ACTIONS(2281), - [anon_sym_and2] = ACTIONS(2279), - [anon_sym_xor2] = ACTIONS(2279), - [anon_sym_or2] = ACTIONS(2279), - [anon_sym_not_DASHin2] = ACTIONS(2279), - [anon_sym_has2] = ACTIONS(2279), - [anon_sym_not_DASHhas2] = ACTIONS(2279), - [anon_sym_starts_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2279), - [anon_sym_ends_DASHwith2] = ACTIONS(2279), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2279), - [anon_sym_EQ_EQ2] = ACTIONS(2279), - [anon_sym_BANG_EQ2] = ACTIONS(2279), - [anon_sym_LT2] = ACTIONS(2281), - [anon_sym_LT_EQ2] = ACTIONS(2279), - [anon_sym_GT_EQ2] = ACTIONS(2279), - [anon_sym_EQ_TILDE2] = ACTIONS(2279), - [anon_sym_BANG_TILDE2] = ACTIONS(2279), - [anon_sym_like2] = ACTIONS(2279), - [anon_sym_not_DASHlike2] = ACTIONS(2279), - [anon_sym_STAR_STAR2] = ACTIONS(2279), - [anon_sym_PLUS_PLUS2] = ACTIONS(2279), - [anon_sym_SLASH2] = ACTIONS(2281), - [anon_sym_mod2] = ACTIONS(2279), - [anon_sym_SLASH_SLASH2] = ACTIONS(2279), - [anon_sym_PLUS2] = ACTIONS(2281), - [anon_sym_bit_DASHshl2] = ACTIONS(2279), - [anon_sym_bit_DASHshr2] = ACTIONS(2279), - [anon_sym_bit_DASHand2] = ACTIONS(2279), - [anon_sym_bit_DASHxor2] = ACTIONS(2279), - [anon_sym_bit_DASHor2] = ACTIONS(2279), - [anon_sym_err_GT] = ACTIONS(2281), - [anon_sym_out_GT] = ACTIONS(2281), - [anon_sym_e_GT] = ACTIONS(2281), - [anon_sym_o_GT] = ACTIONS(2281), - [anon_sym_err_PLUSout_GT] = ACTIONS(2281), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), - [anon_sym_o_PLUSe_GT] = ACTIONS(2281), - [anon_sym_e_PLUSo_GT] = ACTIONS(2281), - [anon_sym_err_GT_GT] = ACTIONS(2279), - [anon_sym_out_GT_GT] = ACTIONS(2279), - [anon_sym_e_GT_GT] = ACTIONS(2279), - [anon_sym_o_GT_GT] = ACTIONS(2279), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1063)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1063), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1064)] = { - [sym_comment] = STATE(1064), - [anon_sym_export] = ACTIONS(2700), - [anon_sym_alias] = ACTIONS(2702), - [anon_sym_let] = ACTIONS(2702), - [anon_sym_mut] = ACTIONS(2702), - [anon_sym_const] = ACTIONS(2702), - [aux_sym_cmd_identifier_token1] = ACTIONS(2700), - [anon_sym_def] = ACTIONS(2702), - [anon_sym_use] = ACTIONS(2702), - [anon_sym_export_DASHenv] = ACTIONS(2702), - [anon_sym_extern] = ACTIONS(2702), - [anon_sym_module] = ACTIONS(2702), - [anon_sym_for] = ACTIONS(2702), - [anon_sym_loop] = ACTIONS(2702), - [anon_sym_while] = ACTIONS(2702), - [anon_sym_if] = ACTIONS(2702), - [anon_sym_else] = ACTIONS(2702), - [anon_sym_try] = ACTIONS(2702), - [anon_sym_catch] = ACTIONS(2702), - [anon_sym_match] = ACTIONS(2702), - [anon_sym_in] = ACTIONS(2700), - [anon_sym_true] = ACTIONS(2702), - [anon_sym_false] = ACTIONS(2702), - [anon_sym_null] = ACTIONS(2702), - [aux_sym_cmd_identifier_token3] = ACTIONS(2702), - [aux_sym_cmd_identifier_token4] = ACTIONS(2702), - [aux_sym_cmd_identifier_token5] = ACTIONS(2702), - [sym__newline] = ACTIONS(2110), - [anon_sym_PIPE] = ACTIONS(2110), - [anon_sym_err_GT_PIPE] = ACTIONS(2110), - [anon_sym_out_GT_PIPE] = ACTIONS(2110), - [anon_sym_e_GT_PIPE] = ACTIONS(2110), - [anon_sym_o_GT_PIPE] = ACTIONS(2110), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2110), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2110), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2110), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2110), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_LPAREN] = ACTIONS(2702), - [anon_sym_DOLLAR] = ACTIONS(2700), - [anon_sym_DASH2] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2702), - [anon_sym_DOT_DOT] = ACTIONS(2700), - [anon_sym_where] = ACTIONS(2702), - [aux_sym_expr_unary_token1] = ACTIONS(2702), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2702), - [anon_sym_DOT_DOT_LT] = ACTIONS(2702), - [aux_sym__val_number_decimal_token1] = ACTIONS(2700), - [aux_sym__val_number_decimal_token2] = ACTIONS(2702), - [aux_sym__val_number_decimal_token3] = ACTIONS(2702), - [aux_sym__val_number_decimal_token4] = ACTIONS(2702), - [aux_sym__val_number_token1] = ACTIONS(2702), - [aux_sym__val_number_token2] = ACTIONS(2702), - [aux_sym__val_number_token3] = ACTIONS(2702), - [anon_sym_0b] = ACTIONS(2700), - [anon_sym_0o] = ACTIONS(2700), - [anon_sym_0x] = ACTIONS(2700), - [sym_val_date] = ACTIONS(2702), - [anon_sym_DQUOTE] = ACTIONS(2702), - [anon_sym_SQUOTE] = ACTIONS(2702), - [anon_sym_BQUOTE] = ACTIONS(2702), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2702), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2702), - [anon_sym_CARET] = ACTIONS(2702), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2702), - }, - [STATE(1065)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1065), - [anon_sym_in] = ACTIONS(2680), - [sym__newline] = ACTIONS(2680), - [anon_sym_SEMI] = ACTIONS(2680), - [anon_sym_PIPE] = ACTIONS(2680), - [anon_sym_err_GT_PIPE] = ACTIONS(2680), - [anon_sym_out_GT_PIPE] = ACTIONS(2680), - [anon_sym_e_GT_PIPE] = ACTIONS(2680), - [anon_sym_o_GT_PIPE] = ACTIONS(2680), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2680), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2680), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2680), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2680), - [anon_sym_RPAREN] = ACTIONS(2680), - [anon_sym_GT2] = ACTIONS(2682), - [anon_sym_DASH2] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_STAR2] = ACTIONS(2682), - [anon_sym_and2] = ACTIONS(2680), - [anon_sym_xor2] = ACTIONS(2680), - [anon_sym_or2] = ACTIONS(2680), - [anon_sym_not_DASHin2] = ACTIONS(2680), - [anon_sym_has2] = ACTIONS(2680), - [anon_sym_not_DASHhas2] = ACTIONS(2680), - [anon_sym_starts_DASHwith2] = ACTIONS(2680), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2680), - [anon_sym_ends_DASHwith2] = ACTIONS(2680), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2680), - [anon_sym_EQ_EQ2] = ACTIONS(2680), - [anon_sym_BANG_EQ2] = ACTIONS(2680), - [anon_sym_LT2] = ACTIONS(2682), - [anon_sym_LT_EQ2] = ACTIONS(2680), - [anon_sym_GT_EQ2] = ACTIONS(2680), - [anon_sym_EQ_TILDE2] = ACTIONS(2680), - [anon_sym_BANG_TILDE2] = ACTIONS(2680), - [anon_sym_like2] = ACTIONS(2680), - [anon_sym_not_DASHlike2] = ACTIONS(2680), - [anon_sym_STAR_STAR2] = ACTIONS(2680), - [anon_sym_PLUS_PLUS2] = ACTIONS(2680), - [anon_sym_SLASH2] = ACTIONS(2682), - [anon_sym_mod2] = ACTIONS(2680), - [anon_sym_SLASH_SLASH2] = ACTIONS(2680), - [anon_sym_PLUS2] = ACTIONS(2682), - [anon_sym_bit_DASHshl2] = ACTIONS(2680), - [anon_sym_bit_DASHshr2] = ACTIONS(2680), - [anon_sym_bit_DASHand2] = ACTIONS(2680), - [anon_sym_bit_DASHxor2] = ACTIONS(2680), - [anon_sym_bit_DASHor2] = ACTIONS(2680), - [anon_sym_err_GT] = ACTIONS(2682), - [anon_sym_out_GT] = ACTIONS(2682), - [anon_sym_e_GT] = ACTIONS(2682), - [anon_sym_o_GT] = ACTIONS(2682), - [anon_sym_err_PLUSout_GT] = ACTIONS(2682), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2682), - [anon_sym_o_PLUSe_GT] = ACTIONS(2682), - [anon_sym_e_PLUSo_GT] = ACTIONS(2682), - [anon_sym_err_GT_GT] = ACTIONS(2680), - [anon_sym_out_GT_GT] = ACTIONS(2680), - [anon_sym_e_GT_GT] = ACTIONS(2680), - [anon_sym_o_GT_GT] = ACTIONS(2680), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2680), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2680), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2680), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2680), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1066)] = { - [aux_sym__repeat_newline] = STATE(1005), - [sym_comment] = STATE(1066), - [anon_sym_in] = ACTIONS(2198), - [sym__newline] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_err_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_GT_PIPE] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_GT2] = ACTIONS(2200), - [anon_sym_DASH2] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_STAR2] = ACTIONS(2200), - [anon_sym_and2] = ACTIONS(2198), - [anon_sym_xor2] = ACTIONS(2198), - [anon_sym_or2] = ACTIONS(2198), - [anon_sym_not_DASHin2] = ACTIONS(2198), - [anon_sym_has2] = ACTIONS(2198), - [anon_sym_not_DASHhas2] = ACTIONS(2198), - [anon_sym_starts_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), - [anon_sym_ends_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), - [anon_sym_EQ_EQ2] = ACTIONS(2198), - [anon_sym_BANG_EQ2] = ACTIONS(2198), - [anon_sym_LT2] = ACTIONS(2200), - [anon_sym_LT_EQ2] = ACTIONS(2198), - [anon_sym_GT_EQ2] = ACTIONS(2198), - [anon_sym_EQ_TILDE2] = ACTIONS(2198), - [anon_sym_BANG_TILDE2] = ACTIONS(2198), - [anon_sym_like2] = ACTIONS(2198), - [anon_sym_not_DASHlike2] = ACTIONS(2198), - [anon_sym_STAR_STAR2] = ACTIONS(2198), - [anon_sym_PLUS_PLUS2] = ACTIONS(2198), - [anon_sym_SLASH2] = ACTIONS(2200), - [anon_sym_mod2] = ACTIONS(2198), - [anon_sym_SLASH_SLASH2] = ACTIONS(2198), - [anon_sym_PLUS2] = ACTIONS(2200), - [anon_sym_bit_DASHshl2] = ACTIONS(2198), - [anon_sym_bit_DASHshr2] = ACTIONS(2198), - [anon_sym_bit_DASHand2] = ACTIONS(2198), - [anon_sym_bit_DASHxor2] = ACTIONS(2198), - [anon_sym_bit_DASHor2] = ACTIONS(2198), - [anon_sym_err_GT] = ACTIONS(2200), - [anon_sym_out_GT] = ACTIONS(2200), - [anon_sym_e_GT] = ACTIONS(2200), - [anon_sym_o_GT] = ACTIONS(2200), - [anon_sym_err_PLUSout_GT] = ACTIONS(2200), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), - [anon_sym_o_PLUSe_GT] = ACTIONS(2200), - [anon_sym_e_PLUSo_GT] = ACTIONS(2200), - [anon_sym_err_GT_GT] = ACTIONS(2198), - [anon_sym_out_GT_GT] = ACTIONS(2198), - [anon_sym_e_GT_GT] = ACTIONS(2198), - [anon_sym_o_GT_GT] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1067)] = { - [aux_sym__repeat_newline] = STATE(1075), - [sym_comment] = STATE(1067), - [anon_sym_in] = ACTIONS(2289), - [sym__newline] = ACTIONS(2289), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_err_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_GT_PIPE] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), - [anon_sym_RPAREN] = ACTIONS(2289), - [anon_sym_GT2] = ACTIONS(2291), - [anon_sym_DASH2] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_STAR2] = ACTIONS(2291), - [anon_sym_and2] = ACTIONS(2289), - [anon_sym_xor2] = ACTIONS(2289), - [anon_sym_or2] = ACTIONS(2289), - [anon_sym_not_DASHin2] = ACTIONS(2289), - [anon_sym_has2] = ACTIONS(2289), - [anon_sym_not_DASHhas2] = ACTIONS(2289), - [anon_sym_starts_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), - [anon_sym_ends_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), - [anon_sym_EQ_EQ2] = ACTIONS(2289), - [anon_sym_BANG_EQ2] = ACTIONS(2289), - [anon_sym_LT2] = ACTIONS(2291), - [anon_sym_LT_EQ2] = ACTIONS(2289), - [anon_sym_GT_EQ2] = ACTIONS(2289), - [anon_sym_EQ_TILDE2] = ACTIONS(2289), - [anon_sym_BANG_TILDE2] = ACTIONS(2289), - [anon_sym_like2] = ACTIONS(2289), - [anon_sym_not_DASHlike2] = ACTIONS(2289), - [anon_sym_STAR_STAR2] = ACTIONS(2289), - [anon_sym_PLUS_PLUS2] = ACTIONS(2289), - [anon_sym_SLASH2] = ACTIONS(2291), - [anon_sym_mod2] = ACTIONS(2289), - [anon_sym_SLASH_SLASH2] = ACTIONS(2289), - [anon_sym_PLUS2] = ACTIONS(2291), - [anon_sym_bit_DASHshl2] = ACTIONS(2289), - [anon_sym_bit_DASHshr2] = ACTIONS(2289), - [anon_sym_bit_DASHand2] = ACTIONS(2289), - [anon_sym_bit_DASHxor2] = ACTIONS(2289), - [anon_sym_bit_DASHor2] = ACTIONS(2289), - [anon_sym_err_GT] = ACTIONS(2291), - [anon_sym_out_GT] = ACTIONS(2291), - [anon_sym_e_GT] = ACTIONS(2291), - [anon_sym_o_GT] = ACTIONS(2291), - [anon_sym_err_PLUSout_GT] = ACTIONS(2291), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), - [anon_sym_o_PLUSe_GT] = ACTIONS(2291), - [anon_sym_e_PLUSo_GT] = ACTIONS(2291), - [anon_sym_err_GT_GT] = ACTIONS(2289), - [anon_sym_out_GT_GT] = ACTIONS(2289), - [anon_sym_e_GT_GT] = ACTIONS(2289), - [anon_sym_o_GT_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1068)] = { - [sym__expr_parenthesized_immediate] = STATE(4759), - [sym_comment] = STATE(1068), + [STATE(1070)] = { + [sym__expr_parenthesized_immediate] = STATE(4755), + [sym_comment] = STATE(1070), [ts_builtin_sym_end] = ACTIONS(2062), [anon_sym_in] = ACTIONS(2062), [sym__newline] = ACTIONS(2062), @@ -126290,7 +126461,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2062), [anon_sym_like2] = ACTIONS(2062), [anon_sym_not_DASHlike2] = ACTIONS(2062), - [anon_sym_LPAREN2] = ACTIONS(1756), + [anon_sym_LPAREN2] = ACTIONS(1714), [anon_sym_STAR_STAR2] = ACTIONS(2062), [anon_sym_PLUS_PLUS2] = ACTIONS(2062), [anon_sym_SLASH2] = ACTIONS(2064), @@ -126299,2342 +126470,2274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(2064), [anon_sym_bit_DASHshl2] = ACTIONS(2062), [anon_sym_bit_DASHshr2] = ACTIONS(2062), - [anon_sym_bit_DASHand2] = ACTIONS(2062), - [anon_sym_bit_DASHxor2] = ACTIONS(2062), - [anon_sym_bit_DASHor2] = ACTIONS(2062), - [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(2062), - [anon_sym_out_GT_GT] = ACTIONS(2062), - [anon_sym_e_GT_GT] = ACTIONS(2062), - [anon_sym_o_GT_GT] = ACTIONS(2062), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1069)] = { - [aux_sym__repeat_newline] = STATE(4123), - [sym__match_pattern_expression] = STATE(4388), - [sym__match_pattern_value] = STATE(4618), - [sym__match_pattern_list_body] = STATE(4652), - [sym__match_pattern_list] = STATE(4619), - [sym__match_pattern_rest] = STATE(5257), - [sym__match_pattern_record] = STATE(4622), - [sym_expr_parenthesized] = STATE(3839), - [sym_val_range] = STATE(4618), - [sym__val_range] = STATE(5078), - [sym_val_nothing] = STATE(4622), - [sym_val_bool] = STATE(4190), - [sym_val_variable] = STATE(3841), - [sym_val_number] = STATE(4622), - [sym__val_number_decimal] = STATE(3591), - [sym__val_number] = STATE(4361), - [sym_val_duration] = STATE(4622), - [sym_val_filesize] = STATE(4622), - [sym_val_binary] = STATE(4622), - [sym_val_string] = STATE(4622), - [sym__raw_str] = STATE(3638), - [sym__str_double_quotes] = STATE(3638), - [sym__str_single_quotes] = STATE(3638), - [sym__str_back_ticks] = STATE(3638), - [sym_val_list] = STATE(4890), - [sym__table_head] = STATE(3767), - [sym_val_table] = STATE(4622), - [sym__unquoted_in_list] = STATE(4388), - [sym__unquoted_anonymous_prefix] = STATE(5078), - [sym_comment] = STATE(1069), - [aux_sym__types_body_repeat1] = STATE(1395), - [aux_sym_parameter_repeat2] = STATE(4037), - [aux_sym__match_pattern_list_body_repeat1] = STATE(1423), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [anon_sym_null] = ACTIONS(1376), - [aux_sym_cmd_identifier_token3] = ACTIONS(1378), - [aux_sym_cmd_identifier_token4] = ACTIONS(1378), - [aux_sym_cmd_identifier_token5] = ACTIONS(1378), - [sym__newline] = ACTIONS(2644), - [anon_sym_LBRACK] = ACTIONS(2646), - [anon_sym_RBRACK] = ACTIONS(2704), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_DOLLAR] = ACTIONS(2650), - [anon_sym_LBRACE] = ACTIONS(2652), - [anon_sym_DOT_DOT] = ACTIONS(2706), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), - [anon_sym_DOT_DOT_LT] = ACTIONS(1396), - [aux_sym__val_number_decimal_token1] = ACTIONS(1398), - [aux_sym__val_number_decimal_token2] = ACTIONS(1400), - [aux_sym__val_number_decimal_token3] = ACTIONS(1402), - [aux_sym__val_number_decimal_token4] = ACTIONS(1402), - [aux_sym__val_number_token1] = ACTIONS(1404), - [aux_sym__val_number_token2] = ACTIONS(1404), - [aux_sym__val_number_token3] = ACTIONS(1404), - [anon_sym_0b] = ACTIONS(1406), - [anon_sym_0o] = ACTIONS(1408), - [anon_sym_0x] = ACTIONS(1408), - [sym_val_date] = ACTIONS(2654), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_BQUOTE] = ACTIONS(1416), - [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1426), - }, - [STATE(1070)] = { - [sym_expr_unary] = STATE(2953), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_parenthesized] = STATE(2571), - [sym_val_range] = STATE(2953), - [sym__val_range] = STATE(4556), - [sym__value] = STATE(2953), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(2632), - [sym_val_variable] = STATE(2620), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(2366), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_unquoted] = STATE(2657), - [sym__unquoted_with_expr] = STATE(2873), - [sym__unquoted_anonymous_prefix] = STATE(4556), - [sym_comment] = STATE(1070), - [anon_sym_true] = ACTIONS(2708), - [anon_sym_false] = ACTIONS(2708), - [anon_sym_null] = ACTIONS(2710), - [aux_sym_cmd_identifier_token3] = ACTIONS(2712), - [aux_sym_cmd_identifier_token4] = ACTIONS(2712), - [aux_sym_cmd_identifier_token5] = ACTIONS(2712), - [anon_sym_LBRACK] = ACTIONS(2714), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_DOLLAR] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(2720), - [anon_sym_DOT_DOT] = ACTIONS(2722), - [aux_sym_expr_unary_token1] = ACTIONS(2724), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2726), - [anon_sym_DOT_DOT_LT] = ACTIONS(2726), - [aux_sym__val_number_decimal_token1] = ACTIONS(2728), - [aux_sym__val_number_decimal_token2] = ACTIONS(2730), - [aux_sym__val_number_decimal_token3] = ACTIONS(2732), - [aux_sym__val_number_decimal_token4] = ACTIONS(2732), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2734), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2190), + [anon_sym_bit_DASHand2] = ACTIONS(2062), + [anon_sym_bit_DASHxor2] = ACTIONS(2062), + [anon_sym_bit_DASHor2] = ACTIONS(2062), + [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(2062), + [anon_sym_out_GT_GT] = ACTIONS(2062), + [anon_sym_e_GT_GT] = ACTIONS(2062), + [anon_sym_o_GT_GT] = ACTIONS(2062), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2062), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2062), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2062), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2062), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), }, [STATE(1071)] = { - [aux_sym__repeat_newline] = STATE(1077), [sym_comment] = STATE(1071), - [anon_sym_in] = ACTIONS(2289), - [sym__newline] = ACTIONS(2289), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_err_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_GT_PIPE] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), - [anon_sym_RPAREN] = ACTIONS(2289), - [anon_sym_GT2] = ACTIONS(2291), - [anon_sym_DASH2] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_STAR2] = ACTIONS(2291), - [anon_sym_and2] = ACTIONS(2289), - [anon_sym_xor2] = ACTIONS(2289), - [anon_sym_or2] = ACTIONS(2289), - [anon_sym_not_DASHin2] = ACTIONS(2289), - [anon_sym_has2] = ACTIONS(2289), - [anon_sym_not_DASHhas2] = ACTIONS(2289), - [anon_sym_starts_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), - [anon_sym_ends_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), - [anon_sym_EQ_EQ2] = ACTIONS(2289), - [anon_sym_BANG_EQ2] = ACTIONS(2289), - [anon_sym_LT2] = ACTIONS(2291), - [anon_sym_LT_EQ2] = ACTIONS(2289), - [anon_sym_GT_EQ2] = ACTIONS(2289), - [anon_sym_EQ_TILDE2] = ACTIONS(2289), - [anon_sym_BANG_TILDE2] = ACTIONS(2289), - [anon_sym_like2] = ACTIONS(2289), - [anon_sym_not_DASHlike2] = ACTIONS(2289), - [anon_sym_STAR_STAR2] = ACTIONS(2289), - [anon_sym_PLUS_PLUS2] = ACTIONS(2289), - [anon_sym_SLASH2] = ACTIONS(2291), - [anon_sym_mod2] = ACTIONS(2289), - [anon_sym_SLASH_SLASH2] = ACTIONS(2289), - [anon_sym_PLUS2] = ACTIONS(2291), - [anon_sym_bit_DASHshl2] = ACTIONS(2289), - [anon_sym_bit_DASHshr2] = ACTIONS(2289), - [anon_sym_bit_DASHand2] = ACTIONS(2289), - [anon_sym_bit_DASHxor2] = ACTIONS(2289), - [anon_sym_bit_DASHor2] = ACTIONS(2289), - [anon_sym_err_GT] = ACTIONS(2291), - [anon_sym_out_GT] = ACTIONS(2291), - [anon_sym_e_GT] = ACTIONS(2291), - [anon_sym_o_GT] = ACTIONS(2291), - [anon_sym_err_PLUSout_GT] = ACTIONS(2291), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), - [anon_sym_o_PLUSe_GT] = ACTIONS(2291), - [anon_sym_e_PLUSo_GT] = ACTIONS(2291), - [anon_sym_err_GT_GT] = ACTIONS(2289), - [anon_sym_out_GT_GT] = ACTIONS(2289), - [anon_sym_e_GT_GT] = ACTIONS(2289), - [anon_sym_o_GT_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2561), + [anon_sym_in] = ACTIONS(2387), + [sym__newline] = ACTIONS(2385), + [anon_sym_SEMI] = ACTIONS(2385), + [anon_sym_PIPE] = ACTIONS(2385), + [anon_sym_err_GT_PIPE] = ACTIONS(2385), + [anon_sym_out_GT_PIPE] = ACTIONS(2385), + [anon_sym_e_GT_PIPE] = ACTIONS(2385), + [anon_sym_o_GT_PIPE] = ACTIONS(2385), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2385), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2385), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2385), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2385), + [anon_sym_RPAREN] = ACTIONS(2385), + [anon_sym_GT2] = ACTIONS(2387), + [anon_sym_DASH2] = ACTIONS(2387), + [anon_sym_RBRACE] = ACTIONS(2385), + [anon_sym_STAR2] = ACTIONS(2387), + [anon_sym_and2] = ACTIONS(2387), + [anon_sym_xor2] = ACTIONS(2387), + [anon_sym_or2] = ACTIONS(2387), + [anon_sym_not_DASHin2] = ACTIONS(2387), + [anon_sym_has2] = ACTIONS(2387), + [anon_sym_not_DASHhas2] = ACTIONS(2387), + [anon_sym_starts_DASHwith2] = ACTIONS(2387), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2387), + [anon_sym_ends_DASHwith2] = ACTIONS(2387), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2387), + [anon_sym_EQ_EQ2] = ACTIONS(2385), + [anon_sym_BANG_EQ2] = ACTIONS(2385), + [anon_sym_LT2] = ACTIONS(2387), + [anon_sym_LT_EQ2] = ACTIONS(2385), + [anon_sym_GT_EQ2] = ACTIONS(2385), + [anon_sym_EQ_TILDE2] = ACTIONS(2385), + [anon_sym_BANG_TILDE2] = ACTIONS(2387), + [anon_sym_like2] = ACTIONS(2387), + [anon_sym_not_DASHlike2] = ACTIONS(2387), + [anon_sym_STAR_STAR2] = ACTIONS(2387), + [anon_sym_PLUS_PLUS2] = ACTIONS(2387), + [anon_sym_SLASH2] = ACTIONS(2387), + [anon_sym_mod2] = ACTIONS(2387), + [anon_sym_SLASH_SLASH2] = ACTIONS(2387), + [anon_sym_PLUS2] = ACTIONS(2387), + [anon_sym_bit_DASHshl2] = ACTIONS(2387), + [anon_sym_bit_DASHshr2] = ACTIONS(2387), + [anon_sym_bit_DASHand2] = ACTIONS(2387), + [anon_sym_bit_DASHxor2] = ACTIONS(2387), + [anon_sym_bit_DASHor2] = ACTIONS(2387), + [anon_sym_err_GT] = ACTIONS(2387), + [anon_sym_out_GT] = ACTIONS(2387), + [anon_sym_e_GT] = ACTIONS(2387), + [anon_sym_o_GT] = ACTIONS(2387), + [anon_sym_err_PLUSout_GT] = ACTIONS(2387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2387), + [anon_sym_o_PLUSe_GT] = ACTIONS(2387), + [anon_sym_e_PLUSo_GT] = ACTIONS(2387), + [anon_sym_err_GT_GT] = ACTIONS(2385), + [anon_sym_out_GT_GT] = ACTIONS(2385), + [anon_sym_e_GT_GT] = ACTIONS(2385), + [anon_sym_o_GT_GT] = ACTIONS(2385), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2385), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2385), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2385), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2385), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1072)] = { - [sym_expr_unary] = STATE(2874), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_parenthesized] = STATE(2575), - [sym_val_range] = STATE(2874), - [sym__val_range] = STATE(4556), - [sym__value] = STATE(2874), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(2632), - [sym_val_variable] = STATE(2620), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(2366), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_unquoted] = STATE(2645), - [sym__unquoted_with_expr] = STATE(2876), - [sym__unquoted_anonymous_prefix] = STATE(4556), [sym_comment] = STATE(1072), - [anon_sym_true] = ACTIONS(2708), - [anon_sym_false] = ACTIONS(2708), - [anon_sym_null] = ACTIONS(2710), - [aux_sym_cmd_identifier_token3] = ACTIONS(2712), - [aux_sym_cmd_identifier_token4] = ACTIONS(2712), - [aux_sym_cmd_identifier_token5] = ACTIONS(2712), - [anon_sym_LBRACK] = ACTIONS(2714), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_DOLLAR] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(2720), - [anon_sym_DOT_DOT] = ACTIONS(2722), - [aux_sym_expr_unary_token1] = ACTIONS(2724), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2726), - [anon_sym_DOT_DOT_LT] = ACTIONS(2726), - [aux_sym__val_number_decimal_token1] = ACTIONS(2728), - [aux_sym__val_number_decimal_token2] = ACTIONS(2730), - [aux_sym__val_number_decimal_token3] = ACTIONS(2732), - [aux_sym__val_number_decimal_token4] = ACTIONS(2732), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2734), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2190), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [aux_sym_cmd_identifier_token2] = ACTIONS(2561), + [anon_sym_in] = ACTIONS(2593), + [sym__newline] = ACTIONS(2591), + [anon_sym_SEMI] = ACTIONS(2591), + [anon_sym_PIPE] = ACTIONS(2591), + [anon_sym_err_GT_PIPE] = ACTIONS(2591), + [anon_sym_out_GT_PIPE] = ACTIONS(2591), + [anon_sym_e_GT_PIPE] = ACTIONS(2591), + [anon_sym_o_GT_PIPE] = ACTIONS(2591), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2591), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2591), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2591), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2591), + [anon_sym_RPAREN] = ACTIONS(2591), + [anon_sym_GT2] = ACTIONS(2593), + [anon_sym_DASH2] = ACTIONS(2593), + [anon_sym_RBRACE] = ACTIONS(2591), + [anon_sym_STAR2] = ACTIONS(2593), + [anon_sym_and2] = ACTIONS(2593), + [anon_sym_xor2] = ACTIONS(2593), + [anon_sym_or2] = ACTIONS(2593), + [anon_sym_not_DASHin2] = ACTIONS(2593), + [anon_sym_has2] = ACTIONS(2593), + [anon_sym_not_DASHhas2] = ACTIONS(2593), + [anon_sym_starts_DASHwith2] = ACTIONS(2593), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2593), + [anon_sym_ends_DASHwith2] = ACTIONS(2593), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2593), + [anon_sym_EQ_EQ2] = ACTIONS(2591), + [anon_sym_BANG_EQ2] = ACTIONS(2591), + [anon_sym_LT2] = ACTIONS(2593), + [anon_sym_LT_EQ2] = ACTIONS(2591), + [anon_sym_GT_EQ2] = ACTIONS(2591), + [anon_sym_EQ_TILDE2] = ACTIONS(2591), + [anon_sym_BANG_TILDE2] = ACTIONS(2593), + [anon_sym_like2] = ACTIONS(2593), + [anon_sym_not_DASHlike2] = ACTIONS(2593), + [anon_sym_STAR_STAR2] = ACTIONS(2593), + [anon_sym_PLUS_PLUS2] = ACTIONS(2593), + [anon_sym_SLASH2] = ACTIONS(2593), + [anon_sym_mod2] = ACTIONS(2593), + [anon_sym_SLASH_SLASH2] = ACTIONS(2593), + [anon_sym_PLUS2] = ACTIONS(2593), + [anon_sym_bit_DASHshl2] = ACTIONS(2593), + [anon_sym_bit_DASHshr2] = ACTIONS(2593), + [anon_sym_bit_DASHand2] = ACTIONS(2593), + [anon_sym_bit_DASHxor2] = ACTIONS(2593), + [anon_sym_bit_DASHor2] = ACTIONS(2593), + [anon_sym_err_GT] = ACTIONS(2593), + [anon_sym_out_GT] = ACTIONS(2593), + [anon_sym_e_GT] = ACTIONS(2593), + [anon_sym_o_GT] = ACTIONS(2593), + [anon_sym_err_PLUSout_GT] = ACTIONS(2593), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2593), + [anon_sym_o_PLUSe_GT] = ACTIONS(2593), + [anon_sym_e_PLUSo_GT] = ACTIONS(2593), + [anon_sym_err_GT_GT] = ACTIONS(2591), + [anon_sym_out_GT_GT] = ACTIONS(2591), + [anon_sym_e_GT_GT] = ACTIONS(2591), + [anon_sym_o_GT_GT] = ACTIONS(2591), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2591), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2591), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2591), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2591), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1073)] = { - [sym_expr_unary] = STATE(2877), - [sym__expr_unary_minus] = STATE(1279), - [sym_expr_parenthesized] = STATE(2577), - [sym_val_range] = STATE(2877), - [sym__val_range] = STATE(4556), - [sym__value] = STATE(2877), - [sym_val_nothing] = STATE(1294), - [sym_val_bool] = STATE(2632), - [sym_val_variable] = STATE(2620), - [sym_val_cellpath] = STATE(1294), - [sym_val_number] = STATE(1294), - [sym__val_number_decimal] = STATE(2366), - [sym__val_number] = STATE(1291), - [sym_val_duration] = STATE(1294), - [sym_val_filesize] = STATE(1294), - [sym_val_binary] = STATE(1294), - [sym_val_string] = STATE(1294), - [sym__raw_str] = STATE(490), - [sym__str_double_quotes] = STATE(490), - [sym__str_single_quotes] = STATE(490), - [sym__str_back_ticks] = STATE(490), - [sym_val_interpolated] = STATE(1294), - [sym__inter_single_quotes] = STATE(1297), - [sym__inter_double_quotes] = STATE(1274), - [sym_val_list] = STATE(1294), - [sym_val_record] = STATE(1294), - [sym_val_table] = STATE(1294), - [sym_val_closure] = STATE(1294), - [sym_unquoted] = STATE(2654), - [sym__unquoted_with_expr] = STATE(2902), - [sym__unquoted_anonymous_prefix] = STATE(4556), [sym_comment] = STATE(1073), - [anon_sym_true] = ACTIONS(2708), - [anon_sym_false] = ACTIONS(2708), - [anon_sym_null] = ACTIONS(2710), - [aux_sym_cmd_identifier_token3] = ACTIONS(2712), - [aux_sym_cmd_identifier_token4] = ACTIONS(2712), - [aux_sym_cmd_identifier_token5] = ACTIONS(2712), - [anon_sym_LBRACK] = ACTIONS(2714), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_DOLLAR] = ACTIONS(2718), - [anon_sym_DASH2] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(2720), - [anon_sym_DOT_DOT] = ACTIONS(2722), - [aux_sym_expr_unary_token1] = ACTIONS(2724), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2726), - [anon_sym_DOT_DOT_LT] = ACTIONS(2726), - [aux_sym__val_number_decimal_token1] = ACTIONS(2728), - [aux_sym__val_number_decimal_token2] = ACTIONS(2730), - [aux_sym__val_number_decimal_token3] = ACTIONS(2732), - [aux_sym__val_number_decimal_token4] = ACTIONS(2732), - [aux_sym__val_number_token1] = ACTIONS(83), - [aux_sym__val_number_token2] = ACTIONS(83), - [aux_sym__val_number_token3] = ACTIONS(83), - [anon_sym_0b] = ACTIONS(85), - [anon_sym_0o] = ACTIONS(87), - [anon_sym_0x] = ACTIONS(87), - [sym_val_date] = ACTIONS(2734), - [anon_sym_DQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_BQUOTE] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [aux_sym_unquoted_token1] = ACTIONS(2190), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(105), + [aux_sym_cmd_identifier_token2] = ACTIONS(2561), + [anon_sym_in] = ACTIONS(866), + [sym__newline] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_PIPE] = ACTIONS(908), + [anon_sym_err_GT_PIPE] = ACTIONS(908), + [anon_sym_out_GT_PIPE] = ACTIONS(908), + [anon_sym_e_GT_PIPE] = ACTIONS(908), + [anon_sym_o_GT_PIPE] = ACTIONS(908), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(908), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(908), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(908), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(908), + [anon_sym_RPAREN] = ACTIONS(908), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_RBRACE] = ACTIONS(908), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(908), + [anon_sym_BANG_EQ2] = ACTIONS(908), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(908), + [anon_sym_GT_EQ2] = ACTIONS(908), + [anon_sym_EQ_TILDE2] = ACTIONS(908), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(908), + [anon_sym_out_GT_GT] = ACTIONS(908), + [anon_sym_e_GT_GT] = ACTIONS(908), + [anon_sym_o_GT_GT] = ACTIONS(908), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(908), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(908), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(908), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(908), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1074)] = { - [aux_sym__repeat_newline] = STATE(1119), + [aux_sym__repeat_newline] = STATE(976), [sym_comment] = STATE(1074), - [anon_sym_in] = ACTIONS(2499), - [sym__newline] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(2499), - [anon_sym_err_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_GT_PIPE] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), - [anon_sym_RPAREN] = ACTIONS(2499), - [anon_sym_GT2] = ACTIONS(2501), - [anon_sym_DASH2] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_STAR2] = ACTIONS(2501), - [anon_sym_and2] = ACTIONS(2499), - [anon_sym_xor2] = ACTIONS(2499), - [anon_sym_or2] = ACTIONS(2499), - [anon_sym_not_DASHin2] = ACTIONS(2499), - [anon_sym_has2] = ACTIONS(2499), - [anon_sym_not_DASHhas2] = ACTIONS(2499), - [anon_sym_starts_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), - [anon_sym_ends_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), - [anon_sym_EQ_EQ2] = ACTIONS(2499), - [anon_sym_BANG_EQ2] = ACTIONS(2499), - [anon_sym_LT2] = ACTIONS(2501), - [anon_sym_LT_EQ2] = ACTIONS(2499), - [anon_sym_GT_EQ2] = ACTIONS(2499), - [anon_sym_EQ_TILDE2] = ACTIONS(2499), - [anon_sym_BANG_TILDE2] = ACTIONS(2499), - [anon_sym_like2] = ACTIONS(2499), - [anon_sym_not_DASHlike2] = ACTIONS(2499), - [anon_sym_STAR_STAR2] = ACTIONS(2499), - [anon_sym_PLUS_PLUS2] = ACTIONS(2499), - [anon_sym_SLASH2] = ACTIONS(2501), - [anon_sym_mod2] = ACTIONS(2499), - [anon_sym_SLASH_SLASH2] = ACTIONS(2499), - [anon_sym_PLUS2] = ACTIONS(2501), - [anon_sym_bit_DASHshl2] = ACTIONS(2499), - [anon_sym_bit_DASHshr2] = ACTIONS(2499), - [anon_sym_bit_DASHand2] = ACTIONS(2499), - [anon_sym_bit_DASHxor2] = ACTIONS(2499), - [anon_sym_bit_DASHor2] = ACTIONS(2499), - [anon_sym_err_GT] = ACTIONS(2501), - [anon_sym_out_GT] = ACTIONS(2501), - [anon_sym_e_GT] = ACTIONS(2501), - [anon_sym_o_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT] = ACTIONS(2501), - [anon_sym_err_GT_GT] = ACTIONS(2499), - [anon_sym_out_GT_GT] = ACTIONS(2499), - [anon_sym_e_GT_GT] = ACTIONS(2499), - [anon_sym_o_GT_GT] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1075)] = { - [aux_sym__repeat_newline] = STATE(517), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1075), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2644), + [sym__newline] = ACTIONS(2644), + [anon_sym_SEMI] = ACTIONS(2644), + [anon_sym_PIPE] = ACTIONS(2644), + [anon_sym_err_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_GT_PIPE] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2644), + [anon_sym_RPAREN] = ACTIONS(2644), + [anon_sym_GT2] = ACTIONS(2646), + [anon_sym_DASH2] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_STAR2] = ACTIONS(2646), + [anon_sym_and2] = ACTIONS(2644), + [anon_sym_xor2] = ACTIONS(2644), + [anon_sym_or2] = ACTIONS(2644), + [anon_sym_not_DASHin2] = ACTIONS(2644), + [anon_sym_has2] = ACTIONS(2644), + [anon_sym_not_DASHhas2] = ACTIONS(2644), + [anon_sym_starts_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2644), + [anon_sym_ends_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2644), + [anon_sym_EQ_EQ2] = ACTIONS(2644), + [anon_sym_BANG_EQ2] = ACTIONS(2644), + [anon_sym_LT2] = ACTIONS(2646), + [anon_sym_LT_EQ2] = ACTIONS(2644), + [anon_sym_GT_EQ2] = ACTIONS(2644), + [anon_sym_EQ_TILDE2] = ACTIONS(2644), + [anon_sym_BANG_TILDE2] = ACTIONS(2644), + [anon_sym_like2] = ACTIONS(2644), + [anon_sym_not_DASHlike2] = ACTIONS(2644), + [anon_sym_STAR_STAR2] = ACTIONS(2644), + [anon_sym_PLUS_PLUS2] = ACTIONS(2644), + [anon_sym_SLASH2] = ACTIONS(2646), + [anon_sym_mod2] = ACTIONS(2644), + [anon_sym_SLASH_SLASH2] = ACTIONS(2644), + [anon_sym_PLUS2] = ACTIONS(2646), + [anon_sym_bit_DASHshl2] = ACTIONS(2644), + [anon_sym_bit_DASHshr2] = ACTIONS(2644), + [anon_sym_bit_DASHand2] = ACTIONS(2644), + [anon_sym_bit_DASHxor2] = ACTIONS(2644), + [anon_sym_bit_DASHor2] = ACTIONS(2644), + [anon_sym_err_GT] = ACTIONS(2646), + [anon_sym_out_GT] = ACTIONS(2646), + [anon_sym_e_GT] = ACTIONS(2646), + [anon_sym_o_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT] = ACTIONS(2646), + [anon_sym_err_GT_GT] = ACTIONS(2644), + [anon_sym_out_GT_GT] = ACTIONS(2644), + [anon_sym_e_GT_GT] = ACTIONS(2644), + [anon_sym_o_GT_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2644), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1076)] = { - [aux_sym__repeat_newline] = STATE(1120), + [aux_sym__repeat_newline] = STATE(977), [sym_comment] = STATE(1076), - [anon_sym_in] = ACTIONS(2499), - [sym__newline] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(2499), - [anon_sym_err_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_GT_PIPE] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), - [anon_sym_RPAREN] = ACTIONS(2499), - [anon_sym_GT2] = ACTIONS(2501), - [anon_sym_DASH2] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_STAR2] = ACTIONS(2501), - [anon_sym_and2] = ACTIONS(2499), - [anon_sym_xor2] = ACTIONS(2499), - [anon_sym_or2] = ACTIONS(2499), - [anon_sym_not_DASHin2] = ACTIONS(2499), - [anon_sym_has2] = ACTIONS(2499), - [anon_sym_not_DASHhas2] = ACTIONS(2499), - [anon_sym_starts_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), - [anon_sym_ends_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), - [anon_sym_EQ_EQ2] = ACTIONS(2499), - [anon_sym_BANG_EQ2] = ACTIONS(2499), - [anon_sym_LT2] = ACTIONS(2501), - [anon_sym_LT_EQ2] = ACTIONS(2499), - [anon_sym_GT_EQ2] = ACTIONS(2499), - [anon_sym_EQ_TILDE2] = ACTIONS(2499), - [anon_sym_BANG_TILDE2] = ACTIONS(2499), - [anon_sym_like2] = ACTIONS(2499), - [anon_sym_not_DASHlike2] = ACTIONS(2499), - [anon_sym_STAR_STAR2] = ACTIONS(2499), - [anon_sym_PLUS_PLUS2] = ACTIONS(2499), - [anon_sym_SLASH2] = ACTIONS(2501), - [anon_sym_mod2] = ACTIONS(2499), - [anon_sym_SLASH_SLASH2] = ACTIONS(2499), - [anon_sym_PLUS2] = ACTIONS(2501), - [anon_sym_bit_DASHshl2] = ACTIONS(2499), - [anon_sym_bit_DASHshr2] = ACTIONS(2499), - [anon_sym_bit_DASHand2] = ACTIONS(2499), - [anon_sym_bit_DASHxor2] = ACTIONS(2499), - [anon_sym_bit_DASHor2] = ACTIONS(2499), - [anon_sym_err_GT] = ACTIONS(2501), - [anon_sym_out_GT] = ACTIONS(2501), - [anon_sym_e_GT] = ACTIONS(2501), - [anon_sym_o_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT] = ACTIONS(2501), - [anon_sym_err_GT_GT] = ACTIONS(2499), - [anon_sym_out_GT_GT] = ACTIONS(2499), - [anon_sym_e_GT_GT] = ACTIONS(2499), - [anon_sym_o_GT_GT] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1077)] = { - [aux_sym__repeat_newline] = STATE(517), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1077), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2644), + [sym__newline] = ACTIONS(2644), + [anon_sym_SEMI] = ACTIONS(2644), + [anon_sym_PIPE] = ACTIONS(2644), + [anon_sym_err_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_GT_PIPE] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2644), + [anon_sym_RPAREN] = ACTIONS(2644), + [anon_sym_GT2] = ACTIONS(2646), + [anon_sym_DASH2] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_STAR2] = ACTIONS(2646), + [anon_sym_and2] = ACTIONS(2644), + [anon_sym_xor2] = ACTIONS(2644), + [anon_sym_or2] = ACTIONS(2644), + [anon_sym_not_DASHin2] = ACTIONS(2644), + [anon_sym_has2] = ACTIONS(2644), + [anon_sym_not_DASHhas2] = ACTIONS(2644), + [anon_sym_starts_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2644), + [anon_sym_ends_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2644), + [anon_sym_EQ_EQ2] = ACTIONS(2644), + [anon_sym_BANG_EQ2] = ACTIONS(2644), + [anon_sym_LT2] = ACTIONS(2646), + [anon_sym_LT_EQ2] = ACTIONS(2644), + [anon_sym_GT_EQ2] = ACTIONS(2644), + [anon_sym_EQ_TILDE2] = ACTIONS(2644), + [anon_sym_BANG_TILDE2] = ACTIONS(2644), + [anon_sym_like2] = ACTIONS(2644), + [anon_sym_not_DASHlike2] = ACTIONS(2644), + [anon_sym_STAR_STAR2] = ACTIONS(2644), + [anon_sym_PLUS_PLUS2] = ACTIONS(2644), + [anon_sym_SLASH2] = ACTIONS(2646), + [anon_sym_mod2] = ACTIONS(2644), + [anon_sym_SLASH_SLASH2] = ACTIONS(2644), + [anon_sym_PLUS2] = ACTIONS(2646), + [anon_sym_bit_DASHshl2] = ACTIONS(2644), + [anon_sym_bit_DASHshr2] = ACTIONS(2644), + [anon_sym_bit_DASHand2] = ACTIONS(2644), + [anon_sym_bit_DASHxor2] = ACTIONS(2644), + [anon_sym_bit_DASHor2] = ACTIONS(2644), + [anon_sym_err_GT] = ACTIONS(2646), + [anon_sym_out_GT] = ACTIONS(2646), + [anon_sym_e_GT] = ACTIONS(2646), + [anon_sym_o_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT] = ACTIONS(2646), + [anon_sym_err_GT_GT] = ACTIONS(2644), + [anon_sym_out_GT_GT] = ACTIONS(2644), + [anon_sym_e_GT_GT] = ACTIONS(2644), + [anon_sym_o_GT_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2644), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1078)] = { - [aux_sym__repeat_newline] = STATE(1121), + [aux_sym__repeat_newline] = STATE(978), [sym_comment] = STATE(1078), - [anon_sym_in] = ACTIONS(2499), - [sym__newline] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(2499), - [anon_sym_err_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_GT_PIPE] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), - [anon_sym_RPAREN] = ACTIONS(2499), - [anon_sym_GT2] = ACTIONS(2501), - [anon_sym_DASH2] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_STAR2] = ACTIONS(2501), - [anon_sym_and2] = ACTIONS(2499), - [anon_sym_xor2] = ACTIONS(2499), - [anon_sym_or2] = ACTIONS(2499), - [anon_sym_not_DASHin2] = ACTIONS(2499), - [anon_sym_has2] = ACTIONS(2499), - [anon_sym_not_DASHhas2] = ACTIONS(2499), - [anon_sym_starts_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), - [anon_sym_ends_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), - [anon_sym_EQ_EQ2] = ACTIONS(2499), - [anon_sym_BANG_EQ2] = ACTIONS(2499), - [anon_sym_LT2] = ACTIONS(2501), - [anon_sym_LT_EQ2] = ACTIONS(2499), - [anon_sym_GT_EQ2] = ACTIONS(2499), - [anon_sym_EQ_TILDE2] = ACTIONS(2499), - [anon_sym_BANG_TILDE2] = ACTIONS(2499), - [anon_sym_like2] = ACTIONS(2499), - [anon_sym_not_DASHlike2] = ACTIONS(2499), - [anon_sym_STAR_STAR2] = ACTIONS(2499), - [anon_sym_PLUS_PLUS2] = ACTIONS(2499), - [anon_sym_SLASH2] = ACTIONS(2501), - [anon_sym_mod2] = ACTIONS(2499), - [anon_sym_SLASH_SLASH2] = ACTIONS(2499), - [anon_sym_PLUS2] = ACTIONS(2501), - [anon_sym_bit_DASHshl2] = ACTIONS(2499), - [anon_sym_bit_DASHshr2] = ACTIONS(2499), - [anon_sym_bit_DASHand2] = ACTIONS(2499), - [anon_sym_bit_DASHxor2] = ACTIONS(2499), - [anon_sym_bit_DASHor2] = ACTIONS(2499), - [anon_sym_err_GT] = ACTIONS(2501), - [anon_sym_out_GT] = ACTIONS(2501), - [anon_sym_e_GT] = ACTIONS(2501), - [anon_sym_o_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT] = ACTIONS(2501), - [anon_sym_err_GT_GT] = ACTIONS(2499), - [anon_sym_out_GT_GT] = ACTIONS(2499), - [anon_sym_e_GT_GT] = ACTIONS(2499), - [anon_sym_o_GT_GT] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_in] = ACTIONS(2726), + [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_RPAREN] = ACTIONS(2726), + [anon_sym_GT2] = ACTIONS(2728), + [anon_sym_DASH2] = ACTIONS(2726), + [anon_sym_LBRACE] = ACTIONS(2726), + [anon_sym_STAR2] = ACTIONS(2728), + [anon_sym_and2] = ACTIONS(2726), + [anon_sym_xor2] = ACTIONS(2726), + [anon_sym_or2] = ACTIONS(2726), + [anon_sym_not_DASHin2] = ACTIONS(2726), + [anon_sym_has2] = ACTIONS(2726), + [anon_sym_not_DASHhas2] = ACTIONS(2726), + [anon_sym_starts_DASHwith2] = ACTIONS(2726), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2726), + [anon_sym_ends_DASHwith2] = ACTIONS(2726), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2726), + [anon_sym_EQ_EQ2] = ACTIONS(2726), + [anon_sym_BANG_EQ2] = ACTIONS(2726), + [anon_sym_LT2] = ACTIONS(2728), + [anon_sym_LT_EQ2] = ACTIONS(2726), + [anon_sym_GT_EQ2] = ACTIONS(2726), + [anon_sym_EQ_TILDE2] = ACTIONS(2726), + [anon_sym_BANG_TILDE2] = ACTIONS(2726), + [anon_sym_like2] = ACTIONS(2726), + [anon_sym_not_DASHlike2] = ACTIONS(2726), + [anon_sym_STAR_STAR2] = ACTIONS(2726), + [anon_sym_PLUS_PLUS2] = ACTIONS(2726), + [anon_sym_SLASH2] = ACTIONS(2728), + [anon_sym_mod2] = ACTIONS(2726), + [anon_sym_SLASH_SLASH2] = ACTIONS(2726), + [anon_sym_PLUS2] = ACTIONS(2728), + [anon_sym_bit_DASHshl2] = ACTIONS(2726), + [anon_sym_bit_DASHshr2] = ACTIONS(2726), + [anon_sym_bit_DASHand2] = ACTIONS(2726), + [anon_sym_bit_DASHxor2] = ACTIONS(2726), + [anon_sym_bit_DASHor2] = ACTIONS(2726), + [anon_sym_err_GT] = ACTIONS(2728), + [anon_sym_out_GT] = ACTIONS(2728), + [anon_sym_e_GT] = ACTIONS(2728), + [anon_sym_o_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT] = ACTIONS(2728), + [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), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1079)] = { - [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1079), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token2] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(866), + [sym__newline] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_PIPE] = ACTIONS(908), + [anon_sym_err_GT_PIPE] = ACTIONS(908), + [anon_sym_out_GT_PIPE] = ACTIONS(908), + [anon_sym_e_GT_PIPE] = ACTIONS(908), + [anon_sym_o_GT_PIPE] = ACTIONS(908), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(908), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(908), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(908), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(908), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_RBRACE] = ACTIONS(908), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(908), + [anon_sym_BANG_EQ2] = ACTIONS(908), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(908), + [anon_sym_GT_EQ2] = ACTIONS(908), + [anon_sym_EQ_TILDE2] = ACTIONS(908), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_COLON2] = ACTIONS(908), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(908), + [anon_sym_out_GT_GT] = ACTIONS(908), + [anon_sym_e_GT_GT] = ACTIONS(908), + [anon_sym_o_GT_GT] = ACTIONS(908), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(908), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(908), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(908), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(908), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1080)] = { - [aux_sym__repeat_newline] = STATE(1079), + [aux_sym__repeat_newline] = STATE(979), [sym_comment] = STATE(1080), - [anon_sym_in] = ACTIONS(2289), - [sym__newline] = ACTIONS(2289), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_err_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_GT_PIPE] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), - [anon_sym_RPAREN] = ACTIONS(2289), - [anon_sym_GT2] = ACTIONS(2291), - [anon_sym_DASH2] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_STAR2] = ACTIONS(2291), - [anon_sym_and2] = ACTIONS(2289), - [anon_sym_xor2] = ACTIONS(2289), - [anon_sym_or2] = ACTIONS(2289), - [anon_sym_not_DASHin2] = ACTIONS(2289), - [anon_sym_has2] = ACTIONS(2289), - [anon_sym_not_DASHhas2] = ACTIONS(2289), - [anon_sym_starts_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), - [anon_sym_ends_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), - [anon_sym_EQ_EQ2] = ACTIONS(2289), - [anon_sym_BANG_EQ2] = ACTIONS(2289), - [anon_sym_LT2] = ACTIONS(2291), - [anon_sym_LT_EQ2] = ACTIONS(2289), - [anon_sym_GT_EQ2] = ACTIONS(2289), - [anon_sym_EQ_TILDE2] = ACTIONS(2289), - [anon_sym_BANG_TILDE2] = ACTIONS(2289), - [anon_sym_like2] = ACTIONS(2289), - [anon_sym_not_DASHlike2] = ACTIONS(2289), - [anon_sym_STAR_STAR2] = ACTIONS(2289), - [anon_sym_PLUS_PLUS2] = ACTIONS(2289), - [anon_sym_SLASH2] = ACTIONS(2291), - [anon_sym_mod2] = ACTIONS(2289), - [anon_sym_SLASH_SLASH2] = ACTIONS(2289), - [anon_sym_PLUS2] = ACTIONS(2291), - [anon_sym_bit_DASHshl2] = ACTIONS(2289), - [anon_sym_bit_DASHshr2] = ACTIONS(2289), - [anon_sym_bit_DASHand2] = ACTIONS(2289), - [anon_sym_bit_DASHxor2] = ACTIONS(2289), - [anon_sym_bit_DASHor2] = ACTIONS(2289), - [anon_sym_err_GT] = ACTIONS(2291), - [anon_sym_out_GT] = ACTIONS(2291), - [anon_sym_e_GT] = ACTIONS(2291), - [anon_sym_o_GT] = ACTIONS(2291), - [anon_sym_err_PLUSout_GT] = ACTIONS(2291), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), - [anon_sym_o_PLUSe_GT] = ACTIONS(2291), - [anon_sym_e_PLUSo_GT] = ACTIONS(2291), - [anon_sym_err_GT_GT] = ACTIONS(2289), - [anon_sym_out_GT_GT] = ACTIONS(2289), - [anon_sym_e_GT_GT] = ACTIONS(2289), - [anon_sym_o_GT_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1081)] = { - [aux_sym__repeat_newline] = STATE(1123), [sym_comment] = STATE(1081), - [anon_sym_in] = ACTIONS(2499), - [sym__newline] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(2499), - [anon_sym_err_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_GT_PIPE] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), - [anon_sym_RPAREN] = ACTIONS(2499), - [anon_sym_GT2] = ACTIONS(2501), - [anon_sym_DASH2] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_STAR2] = ACTIONS(2501), - [anon_sym_and2] = ACTIONS(2499), - [anon_sym_xor2] = ACTIONS(2499), - [anon_sym_or2] = ACTIONS(2499), - [anon_sym_not_DASHin2] = ACTIONS(2499), - [anon_sym_has2] = ACTIONS(2499), - [anon_sym_not_DASHhas2] = ACTIONS(2499), - [anon_sym_starts_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), - [anon_sym_ends_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), - [anon_sym_EQ_EQ2] = ACTIONS(2499), - [anon_sym_BANG_EQ2] = ACTIONS(2499), - [anon_sym_LT2] = ACTIONS(2501), - [anon_sym_LT_EQ2] = ACTIONS(2499), - [anon_sym_GT_EQ2] = ACTIONS(2499), - [anon_sym_EQ_TILDE2] = ACTIONS(2499), - [anon_sym_BANG_TILDE2] = ACTIONS(2499), - [anon_sym_like2] = ACTIONS(2499), - [anon_sym_not_DASHlike2] = ACTIONS(2499), - [anon_sym_STAR_STAR2] = ACTIONS(2499), - [anon_sym_PLUS_PLUS2] = ACTIONS(2499), - [anon_sym_SLASH2] = ACTIONS(2501), - [anon_sym_mod2] = ACTIONS(2499), - [anon_sym_SLASH_SLASH2] = ACTIONS(2499), - [anon_sym_PLUS2] = ACTIONS(2501), - [anon_sym_bit_DASHshl2] = ACTIONS(2499), - [anon_sym_bit_DASHshr2] = ACTIONS(2499), - [anon_sym_bit_DASHand2] = ACTIONS(2499), - [anon_sym_bit_DASHxor2] = ACTIONS(2499), - [anon_sym_bit_DASHor2] = ACTIONS(2499), - [anon_sym_err_GT] = ACTIONS(2501), - [anon_sym_out_GT] = ACTIONS(2501), - [anon_sym_e_GT] = ACTIONS(2501), - [anon_sym_o_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT] = ACTIONS(2501), - [anon_sym_err_GT_GT] = ACTIONS(2499), - [anon_sym_out_GT_GT] = ACTIONS(2499), - [anon_sym_e_GT_GT] = ACTIONS(2499), - [anon_sym_o_GT_GT] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [ts_builtin_sym_end] = ACTIONS(1750), + [anon_sym_in] = ACTIONS(1750), + [sym__newline] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1750), + [anon_sym_err_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_GT_PIPE] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1750), + [anon_sym_GT2] = ACTIONS(1752), + [anon_sym_DASH2] = ACTIONS(1750), + [anon_sym_STAR2] = ACTIONS(1752), + [anon_sym_and2] = ACTIONS(1750), + [anon_sym_xor2] = ACTIONS(1750), + [anon_sym_or2] = ACTIONS(1750), + [anon_sym_not_DASHin2] = ACTIONS(1750), + [anon_sym_has2] = ACTIONS(1750), + [anon_sym_not_DASHhas2] = ACTIONS(1750), + [anon_sym_starts_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1750), + [anon_sym_ends_DASHwith2] = ACTIONS(1750), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1750), + [anon_sym_EQ_EQ2] = ACTIONS(1750), + [anon_sym_BANG_EQ2] = ACTIONS(1750), + [anon_sym_LT2] = ACTIONS(1752), + [anon_sym_LT_EQ2] = ACTIONS(1750), + [anon_sym_GT_EQ2] = ACTIONS(1750), + [anon_sym_EQ_TILDE2] = ACTIONS(1750), + [anon_sym_BANG_TILDE2] = ACTIONS(1750), + [anon_sym_like2] = ACTIONS(1750), + [anon_sym_not_DASHlike2] = ACTIONS(1750), + [anon_sym_STAR_STAR2] = ACTIONS(1750), + [anon_sym_PLUS_PLUS2] = ACTIONS(1750), + [anon_sym_SLASH2] = ACTIONS(1752), + [anon_sym_mod2] = ACTIONS(1750), + [anon_sym_SLASH_SLASH2] = ACTIONS(1750), + [anon_sym_PLUS2] = ACTIONS(1752), + [anon_sym_bit_DASHshl2] = ACTIONS(1750), + [anon_sym_bit_DASHshr2] = ACTIONS(1750), + [anon_sym_bit_DASHand2] = ACTIONS(1750), + [anon_sym_bit_DASHxor2] = ACTIONS(1750), + [anon_sym_bit_DASHor2] = ACTIONS(1750), + [anon_sym_DOT] = ACTIONS(2730), + [aux_sym__immediate_decimal_token5] = ACTIONS(1886), + [anon_sym_err_GT] = ACTIONS(1752), + [anon_sym_out_GT] = ACTIONS(1752), + [anon_sym_e_GT] = ACTIONS(1752), + [anon_sym_o_GT] = ACTIONS(1752), + [anon_sym_err_PLUSout_GT] = ACTIONS(1752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1752), + [anon_sym_o_PLUSe_GT] = ACTIONS(1752), + [anon_sym_e_PLUSo_GT] = ACTIONS(1752), + [anon_sym_err_GT_GT] = ACTIONS(1750), + [anon_sym_out_GT_GT] = ACTIONS(1750), + [anon_sym_e_GT_GT] = ACTIONS(1750), + [anon_sym_o_GT_GT] = ACTIONS(1750), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1750), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1750), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1750), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1750), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1082)] = { - [aux_sym__repeat_newline] = STATE(517), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1082), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2732), + [sym__newline] = ACTIONS(2732), + [anon_sym_SEMI] = ACTIONS(2732), + [anon_sym_PIPE] = ACTIONS(2732), + [anon_sym_err_GT_PIPE] = ACTIONS(2732), + [anon_sym_out_GT_PIPE] = ACTIONS(2732), + [anon_sym_e_GT_PIPE] = ACTIONS(2732), + [anon_sym_o_GT_PIPE] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), + [anon_sym_RPAREN] = ACTIONS(2732), + [anon_sym_GT2] = ACTIONS(2734), + [anon_sym_DASH2] = ACTIONS(2732), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_STAR2] = ACTIONS(2734), + [anon_sym_and2] = ACTIONS(2732), + [anon_sym_xor2] = ACTIONS(2732), + [anon_sym_or2] = ACTIONS(2732), + [anon_sym_not_DASHin2] = ACTIONS(2732), + [anon_sym_has2] = ACTIONS(2732), + [anon_sym_not_DASHhas2] = ACTIONS(2732), + [anon_sym_starts_DASHwith2] = ACTIONS(2732), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2732), + [anon_sym_ends_DASHwith2] = ACTIONS(2732), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2732), + [anon_sym_EQ_EQ2] = ACTIONS(2732), + [anon_sym_BANG_EQ2] = ACTIONS(2732), + [anon_sym_LT2] = ACTIONS(2734), + [anon_sym_LT_EQ2] = ACTIONS(2732), + [anon_sym_GT_EQ2] = ACTIONS(2732), + [anon_sym_EQ_TILDE2] = ACTIONS(2732), + [anon_sym_BANG_TILDE2] = ACTIONS(2732), + [anon_sym_like2] = ACTIONS(2732), + [anon_sym_not_DASHlike2] = ACTIONS(2732), + [anon_sym_STAR_STAR2] = ACTIONS(2732), + [anon_sym_PLUS_PLUS2] = ACTIONS(2732), + [anon_sym_SLASH2] = ACTIONS(2734), + [anon_sym_mod2] = ACTIONS(2732), + [anon_sym_SLASH_SLASH2] = ACTIONS(2732), + [anon_sym_PLUS2] = ACTIONS(2734), + [anon_sym_bit_DASHshl2] = ACTIONS(2732), + [anon_sym_bit_DASHshr2] = ACTIONS(2732), + [anon_sym_bit_DASHand2] = ACTIONS(2732), + [anon_sym_bit_DASHxor2] = ACTIONS(2732), + [anon_sym_bit_DASHor2] = ACTIONS(2732), + [anon_sym_err_GT] = ACTIONS(2734), + [anon_sym_out_GT] = ACTIONS(2734), + [anon_sym_e_GT] = ACTIONS(2734), + [anon_sym_o_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT] = ACTIONS(2734), + [anon_sym_err_GT_GT] = ACTIONS(2732), + [anon_sym_out_GT_GT] = ACTIONS(2732), + [anon_sym_e_GT_GT] = ACTIONS(2732), + [anon_sym_o_GT_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1083)] = { - [sym_expr_unary] = STATE(2746), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_parenthesized] = STATE(2531), - [sym_val_range] = STATE(2746), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(2746), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(2568), - [sym_val_variable] = STATE(2555), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(2344), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(2243), - [sym__str_double_quotes] = STATE(2243), - [sym__str_single_quotes] = STATE(2243), - [sym__str_back_ticks] = STATE(2243), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(2578), - [sym__unquoted_with_expr] = STATE(2748), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1083), - [anon_sym_true] = ACTIONS(2740), - [anon_sym_false] = ACTIONS(2740), - [anon_sym_null] = ACTIONS(2742), - [aux_sym_cmd_identifier_token3] = ACTIONS(2744), - [aux_sym_cmd_identifier_token4] = ACTIONS(2744), - [aux_sym_cmd_identifier_token5] = ACTIONS(2744), - [anon_sym_LBRACK] = ACTIONS(2746), - [anon_sym_LPAREN] = ACTIONS(2748), - [anon_sym_DOLLAR] = ACTIONS(2750), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(2752), - [anon_sym_DOT_DOT] = ACTIONS(2754), - [aux_sym_expr_unary_token1] = ACTIONS(2756), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2758), - [anon_sym_DOT_DOT_LT] = ACTIONS(2758), - [aux_sym__val_number_decimal_token1] = ACTIONS(2760), - [aux_sym__val_number_decimal_token2] = ACTIONS(2762), - [aux_sym__val_number_decimal_token3] = ACTIONS(2764), - [aux_sym__val_number_decimal_token4] = ACTIONS(2764), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2766), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_in] = ACTIONS(2644), + [sym__newline] = ACTIONS(2644), + [anon_sym_SEMI] = ACTIONS(2644), + [anon_sym_PIPE] = ACTIONS(2644), + [anon_sym_err_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_GT_PIPE] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2644), + [anon_sym_RPAREN] = ACTIONS(2644), + [anon_sym_GT2] = ACTIONS(2646), + [anon_sym_DASH2] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_STAR2] = ACTIONS(2646), + [anon_sym_and2] = ACTIONS(2644), + [anon_sym_xor2] = ACTIONS(2644), + [anon_sym_or2] = ACTIONS(2644), + [anon_sym_not_DASHin2] = ACTIONS(2644), + [anon_sym_has2] = ACTIONS(2644), + [anon_sym_not_DASHhas2] = ACTIONS(2644), + [anon_sym_starts_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2644), + [anon_sym_ends_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2644), + [anon_sym_EQ_EQ2] = ACTIONS(2644), + [anon_sym_BANG_EQ2] = ACTIONS(2644), + [anon_sym_LT2] = ACTIONS(2646), + [anon_sym_LT_EQ2] = ACTIONS(2644), + [anon_sym_GT_EQ2] = ACTIONS(2644), + [anon_sym_EQ_TILDE2] = ACTIONS(2644), + [anon_sym_BANG_TILDE2] = ACTIONS(2644), + [anon_sym_like2] = ACTIONS(2644), + [anon_sym_not_DASHlike2] = ACTIONS(2644), + [anon_sym_STAR_STAR2] = ACTIONS(2644), + [anon_sym_PLUS_PLUS2] = ACTIONS(2644), + [anon_sym_SLASH2] = ACTIONS(2646), + [anon_sym_mod2] = ACTIONS(2644), + [anon_sym_SLASH_SLASH2] = ACTIONS(2644), + [anon_sym_PLUS2] = ACTIONS(2646), + [anon_sym_bit_DASHshl2] = ACTIONS(2644), + [anon_sym_bit_DASHshr2] = ACTIONS(2644), + [anon_sym_bit_DASHand2] = ACTIONS(2644), + [anon_sym_bit_DASHxor2] = ACTIONS(2644), + [anon_sym_bit_DASHor2] = ACTIONS(2644), + [anon_sym_err_GT] = ACTIONS(2646), + [anon_sym_out_GT] = ACTIONS(2646), + [anon_sym_e_GT] = ACTIONS(2646), + [anon_sym_o_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT] = ACTIONS(2646), + [anon_sym_err_GT_GT] = ACTIONS(2644), + [anon_sym_out_GT_GT] = ACTIONS(2644), + [anon_sym_e_GT_GT] = ACTIONS(2644), + [anon_sym_o_GT_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2644), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(1084)] = { - [aux_sym__repeat_newline] = STATE(1124), + [aux_sym__repeat_newline] = STATE(980), [sym_comment] = STATE(1084), - [anon_sym_in] = ACTIONS(2499), - [sym__newline] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(2499), - [anon_sym_err_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_GT_PIPE] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), - [anon_sym_RPAREN] = ACTIONS(2499), - [anon_sym_GT2] = ACTIONS(2501), - [anon_sym_DASH2] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_STAR2] = ACTIONS(2501), - [anon_sym_and2] = ACTIONS(2499), - [anon_sym_xor2] = ACTIONS(2499), - [anon_sym_or2] = ACTIONS(2499), - [anon_sym_not_DASHin2] = ACTIONS(2499), - [anon_sym_has2] = ACTIONS(2499), - [anon_sym_not_DASHhas2] = ACTIONS(2499), - [anon_sym_starts_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), - [anon_sym_ends_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), - [anon_sym_EQ_EQ2] = ACTIONS(2499), - [anon_sym_BANG_EQ2] = ACTIONS(2499), - [anon_sym_LT2] = ACTIONS(2501), - [anon_sym_LT_EQ2] = ACTIONS(2499), - [anon_sym_GT_EQ2] = ACTIONS(2499), - [anon_sym_EQ_TILDE2] = ACTIONS(2499), - [anon_sym_BANG_TILDE2] = ACTIONS(2499), - [anon_sym_like2] = ACTIONS(2499), - [anon_sym_not_DASHlike2] = ACTIONS(2499), - [anon_sym_STAR_STAR2] = ACTIONS(2499), - [anon_sym_PLUS_PLUS2] = ACTIONS(2499), - [anon_sym_SLASH2] = ACTIONS(2501), - [anon_sym_mod2] = ACTIONS(2499), - [anon_sym_SLASH_SLASH2] = ACTIONS(2499), - [anon_sym_PLUS2] = ACTIONS(2501), - [anon_sym_bit_DASHshl2] = ACTIONS(2499), - [anon_sym_bit_DASHshr2] = ACTIONS(2499), - [anon_sym_bit_DASHand2] = ACTIONS(2499), - [anon_sym_bit_DASHxor2] = ACTIONS(2499), - [anon_sym_bit_DASHor2] = ACTIONS(2499), - [anon_sym_err_GT] = ACTIONS(2501), - [anon_sym_out_GT] = ACTIONS(2501), - [anon_sym_e_GT] = ACTIONS(2501), - [anon_sym_o_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT] = ACTIONS(2501), - [anon_sym_err_GT_GT] = ACTIONS(2499), - [anon_sym_out_GT_GT] = ACTIONS(2499), - [anon_sym_e_GT_GT] = ACTIONS(2499), - [anon_sym_o_GT_GT] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1085)] = { - [aux_sym__repeat_newline] = STATE(517), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1085), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2644), + [sym__newline] = ACTIONS(2644), + [anon_sym_SEMI] = ACTIONS(2644), + [anon_sym_PIPE] = ACTIONS(2644), + [anon_sym_err_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_GT_PIPE] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2644), + [anon_sym_RPAREN] = ACTIONS(2644), + [anon_sym_GT2] = ACTIONS(2646), + [anon_sym_DASH2] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_STAR2] = ACTIONS(2646), + [anon_sym_and2] = ACTIONS(2644), + [anon_sym_xor2] = ACTIONS(2644), + [anon_sym_or2] = ACTIONS(2644), + [anon_sym_not_DASHin2] = ACTIONS(2644), + [anon_sym_has2] = ACTIONS(2644), + [anon_sym_not_DASHhas2] = ACTIONS(2644), + [anon_sym_starts_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2644), + [anon_sym_ends_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2644), + [anon_sym_EQ_EQ2] = ACTIONS(2644), + [anon_sym_BANG_EQ2] = ACTIONS(2644), + [anon_sym_LT2] = ACTIONS(2646), + [anon_sym_LT_EQ2] = ACTIONS(2644), + [anon_sym_GT_EQ2] = ACTIONS(2644), + [anon_sym_EQ_TILDE2] = ACTIONS(2644), + [anon_sym_BANG_TILDE2] = ACTIONS(2644), + [anon_sym_like2] = ACTIONS(2644), + [anon_sym_not_DASHlike2] = ACTIONS(2644), + [anon_sym_STAR_STAR2] = ACTIONS(2644), + [anon_sym_PLUS_PLUS2] = ACTIONS(2644), + [anon_sym_SLASH2] = ACTIONS(2646), + [anon_sym_mod2] = ACTIONS(2644), + [anon_sym_SLASH_SLASH2] = ACTIONS(2644), + [anon_sym_PLUS2] = ACTIONS(2646), + [anon_sym_bit_DASHshl2] = ACTIONS(2644), + [anon_sym_bit_DASHshr2] = ACTIONS(2644), + [anon_sym_bit_DASHand2] = ACTIONS(2644), + [anon_sym_bit_DASHxor2] = ACTIONS(2644), + [anon_sym_bit_DASHor2] = ACTIONS(2644), + [anon_sym_err_GT] = ACTIONS(2646), + [anon_sym_out_GT] = ACTIONS(2646), + [anon_sym_e_GT] = ACTIONS(2646), + [anon_sym_o_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT] = ACTIONS(2646), + [anon_sym_err_GT_GT] = ACTIONS(2644), + [anon_sym_out_GT_GT] = ACTIONS(2644), + [anon_sym_e_GT_GT] = ACTIONS(2644), + [anon_sym_o_GT_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2644), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1086)] = { + [aux_sym__repeat_newline] = STATE(4124), + [sym__match_pattern_expression] = STATE(4389), + [sym__match_pattern_value] = STATE(4609), + [sym__match_pattern_list_body] = STATE(4644), + [sym__match_pattern_list] = STATE(4610), + [sym__match_pattern_rest] = STATE(5237), + [sym__match_pattern_record] = STATE(4611), + [sym_expr_parenthesized] = STATE(3790), + [sym_val_range] = STATE(4609), + [sym__val_range] = STATE(5020), + [sym_val_nothing] = STATE(4611), + [sym_val_bool] = STATE(4191), + [sym_val_variable] = STATE(3791), + [sym_val_number] = STATE(4611), + [sym__val_number_decimal] = STATE(3574), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4611), + [sym_val_filesize] = STATE(4611), + [sym_val_binary] = STATE(4611), + [sym_val_string] = STATE(4611), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_list] = STATE(5150), + [sym__table_head] = STATE(3764), + [sym_val_table] = STATE(4611), + [sym__unquoted_in_list] = STATE(4389), + [sym__unquoted_anonymous_prefix] = STATE(5020), [sym_comment] = STATE(1086), - [anon_sym_in] = ACTIONS(890), - [sym__newline] = ACTIONS(890), - [anon_sym_SEMI] = ACTIONS(890), - [anon_sym_PIPE] = ACTIONS(890), - [anon_sym_err_GT_PIPE] = ACTIONS(890), - [anon_sym_out_GT_PIPE] = ACTIONS(890), - [anon_sym_e_GT_PIPE] = ACTIONS(890), - [anon_sym_o_GT_PIPE] = ACTIONS(890), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(890), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(890), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(890), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(890), - [anon_sym_RPAREN] = ACTIONS(890), - [anon_sym_GT2] = ACTIONS(793), - [anon_sym_DASH2] = ACTIONS(890), - [anon_sym_RBRACE] = ACTIONS(890), - [anon_sym_STAR2] = ACTIONS(793), - [anon_sym_and2] = ACTIONS(890), - [anon_sym_xor2] = ACTIONS(890), - [anon_sym_or2] = ACTIONS(890), - [anon_sym_not_DASHin2] = ACTIONS(890), - [anon_sym_has2] = ACTIONS(890), - [anon_sym_not_DASHhas2] = ACTIONS(890), - [anon_sym_starts_DASHwith2] = ACTIONS(890), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(890), - [anon_sym_ends_DASHwith2] = ACTIONS(890), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(890), - [anon_sym_EQ_EQ2] = ACTIONS(890), - [anon_sym_BANG_EQ2] = ACTIONS(890), - [anon_sym_LT2] = ACTIONS(793), - [anon_sym_LT_EQ2] = ACTIONS(890), - [anon_sym_GT_EQ2] = ACTIONS(890), - [anon_sym_EQ_TILDE2] = ACTIONS(890), - [anon_sym_BANG_TILDE2] = ACTIONS(890), - [anon_sym_like2] = ACTIONS(890), - [anon_sym_not_DASHlike2] = ACTIONS(890), - [anon_sym_STAR_STAR2] = ACTIONS(890), - [anon_sym_PLUS_PLUS2] = ACTIONS(890), - [anon_sym_SLASH2] = ACTIONS(793), - [anon_sym_mod2] = ACTIONS(890), - [anon_sym_SLASH_SLASH2] = ACTIONS(890), - [anon_sym_PLUS2] = ACTIONS(793), - [anon_sym_bit_DASHshl2] = ACTIONS(890), - [anon_sym_bit_DASHshr2] = ACTIONS(890), - [anon_sym_bit_DASHand2] = ACTIONS(890), - [anon_sym_bit_DASHxor2] = ACTIONS(890), - [anon_sym_bit_DASHor2] = ACTIONS(890), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [anon_sym_err_GT_GT] = ACTIONS(890), - [anon_sym_out_GT_GT] = ACTIONS(890), - [anon_sym_e_GT_GT] = ACTIONS(890), - [anon_sym_o_GT_GT] = ACTIONS(890), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(890), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(890), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(890), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(890), - [sym__unquoted_pattern] = ACTIONS(1766), + [aux_sym__types_body_repeat1] = STATE(1396), + [aux_sym_parameter_repeat2] = STATE(4020), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1412), + [anon_sym_true] = ACTIONS(1374), + [anon_sym_false] = ACTIONS(1374), + [anon_sym_null] = ACTIONS(1376), + [aux_sym_cmd_identifier_token3] = ACTIONS(1378), + [aux_sym_cmd_identifier_token4] = ACTIONS(1378), + [aux_sym_cmd_identifier_token5] = ACTIONS(1378), + [sym__newline] = ACTIONS(2710), + [anon_sym_LBRACK] = ACTIONS(2712), + [anon_sym_RBRACK] = ACTIONS(2736), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_COMMA] = ACTIONS(1388), + [anon_sym_DOLLAR] = ACTIONS(2716), + [anon_sym_LBRACE] = ACTIONS(2718), + [anon_sym_DOT_DOT] = ACTIONS(2738), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), + [anon_sym_DOT_DOT_LT] = ACTIONS(1396), + [aux_sym__val_number_decimal_token1] = ACTIONS(1398), + [aux_sym__val_number_decimal_token2] = ACTIONS(1400), + [aux_sym__val_number_decimal_token3] = ACTIONS(1402), + [aux_sym__val_number_decimal_token4] = ACTIONS(1402), + [aux_sym__val_number_token1] = ACTIONS(1404), + [aux_sym__val_number_token2] = ACTIONS(1404), + [aux_sym__val_number_token3] = ACTIONS(1404), + [anon_sym_0b] = ACTIONS(1406), + [anon_sym_0o] = ACTIONS(1408), + [anon_sym_0x] = ACTIONS(1408), + [sym_val_date] = ACTIONS(2720), + [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_BQUOTE] = ACTIONS(1416), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1426), }, [STATE(1087)] = { - [aux_sym__repeat_newline] = STATE(1082), + [aux_sym__repeat_newline] = STATE(981), [sym_comment] = STATE(1087), - [anon_sym_in] = ACTIONS(2289), - [sym__newline] = ACTIONS(2289), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_err_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_GT_PIPE] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), - [anon_sym_RPAREN] = ACTIONS(2289), - [anon_sym_GT2] = ACTIONS(2291), - [anon_sym_DASH2] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_STAR2] = ACTIONS(2291), - [anon_sym_and2] = ACTIONS(2289), - [anon_sym_xor2] = ACTIONS(2289), - [anon_sym_or2] = ACTIONS(2289), - [anon_sym_not_DASHin2] = ACTIONS(2289), - [anon_sym_has2] = ACTIONS(2289), - [anon_sym_not_DASHhas2] = ACTIONS(2289), - [anon_sym_starts_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), - [anon_sym_ends_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), - [anon_sym_EQ_EQ2] = ACTIONS(2289), - [anon_sym_BANG_EQ2] = ACTIONS(2289), - [anon_sym_LT2] = ACTIONS(2291), - [anon_sym_LT_EQ2] = ACTIONS(2289), - [anon_sym_GT_EQ2] = ACTIONS(2289), - [anon_sym_EQ_TILDE2] = ACTIONS(2289), - [anon_sym_BANG_TILDE2] = ACTIONS(2289), - [anon_sym_like2] = ACTIONS(2289), - [anon_sym_not_DASHlike2] = ACTIONS(2289), - [anon_sym_STAR_STAR2] = ACTIONS(2289), - [anon_sym_PLUS_PLUS2] = ACTIONS(2289), - [anon_sym_SLASH2] = ACTIONS(2291), - [anon_sym_mod2] = ACTIONS(2289), - [anon_sym_SLASH_SLASH2] = ACTIONS(2289), - [anon_sym_PLUS2] = ACTIONS(2291), - [anon_sym_bit_DASHshl2] = ACTIONS(2289), - [anon_sym_bit_DASHshr2] = ACTIONS(2289), - [anon_sym_bit_DASHand2] = ACTIONS(2289), - [anon_sym_bit_DASHxor2] = ACTIONS(2289), - [anon_sym_bit_DASHor2] = ACTIONS(2289), - [anon_sym_err_GT] = ACTIONS(2291), - [anon_sym_out_GT] = ACTIONS(2291), - [anon_sym_e_GT] = ACTIONS(2291), - [anon_sym_o_GT] = ACTIONS(2291), - [anon_sym_err_PLUSout_GT] = ACTIONS(2291), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), - [anon_sym_o_PLUSe_GT] = ACTIONS(2291), - [anon_sym_e_PLUSo_GT] = ACTIONS(2291), - [anon_sym_err_GT_GT] = ACTIONS(2289), - [anon_sym_out_GT_GT] = ACTIONS(2289), - [anon_sym_e_GT_GT] = ACTIONS(2289), - [anon_sym_o_GT_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1088)] = { - [sym_expr_unary] = STATE(2749), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_parenthesized] = STATE(2532), - [sym_val_range] = STATE(2749), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(2749), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(2568), - [sym_val_variable] = STATE(2555), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(2344), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(2243), - [sym__str_double_quotes] = STATE(2243), - [sym__str_single_quotes] = STATE(2243), - [sym__str_back_ticks] = STATE(2243), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(2579), - [sym__unquoted_with_expr] = STATE(2751), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1088), - [anon_sym_true] = ACTIONS(2740), - [anon_sym_false] = ACTIONS(2740), - [anon_sym_null] = ACTIONS(2742), - [aux_sym_cmd_identifier_token3] = ACTIONS(2744), - [aux_sym_cmd_identifier_token4] = ACTIONS(2744), - [aux_sym_cmd_identifier_token5] = ACTIONS(2744), - [anon_sym_LBRACK] = ACTIONS(2746), - [anon_sym_LPAREN] = ACTIONS(2748), - [anon_sym_DOLLAR] = ACTIONS(2750), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(2752), - [anon_sym_DOT_DOT] = ACTIONS(2754), - [aux_sym_expr_unary_token1] = ACTIONS(2756), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2758), - [anon_sym_DOT_DOT_LT] = ACTIONS(2758), - [aux_sym__val_number_decimal_token1] = ACTIONS(2760), - [aux_sym__val_number_decimal_token2] = ACTIONS(2762), - [aux_sym__val_number_decimal_token3] = ACTIONS(2764), - [aux_sym__val_number_decimal_token4] = ACTIONS(2764), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2766), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_in] = ACTIONS(2644), + [sym__newline] = ACTIONS(2644), + [anon_sym_SEMI] = ACTIONS(2644), + [anon_sym_PIPE] = ACTIONS(2644), + [anon_sym_err_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_GT_PIPE] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2644), + [anon_sym_RPAREN] = ACTIONS(2644), + [anon_sym_GT2] = ACTIONS(2646), + [anon_sym_DASH2] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_STAR2] = ACTIONS(2646), + [anon_sym_and2] = ACTIONS(2644), + [anon_sym_xor2] = ACTIONS(2644), + [anon_sym_or2] = ACTIONS(2644), + [anon_sym_not_DASHin2] = ACTIONS(2644), + [anon_sym_has2] = ACTIONS(2644), + [anon_sym_not_DASHhas2] = ACTIONS(2644), + [anon_sym_starts_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2644), + [anon_sym_ends_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2644), + [anon_sym_EQ_EQ2] = ACTIONS(2644), + [anon_sym_BANG_EQ2] = ACTIONS(2644), + [anon_sym_LT2] = ACTIONS(2646), + [anon_sym_LT_EQ2] = ACTIONS(2644), + [anon_sym_GT_EQ2] = ACTIONS(2644), + [anon_sym_EQ_TILDE2] = ACTIONS(2644), + [anon_sym_BANG_TILDE2] = ACTIONS(2644), + [anon_sym_like2] = ACTIONS(2644), + [anon_sym_not_DASHlike2] = ACTIONS(2644), + [anon_sym_STAR_STAR2] = ACTIONS(2644), + [anon_sym_PLUS_PLUS2] = ACTIONS(2644), + [anon_sym_SLASH2] = ACTIONS(2646), + [anon_sym_mod2] = ACTIONS(2644), + [anon_sym_SLASH_SLASH2] = ACTIONS(2644), + [anon_sym_PLUS2] = ACTIONS(2646), + [anon_sym_bit_DASHshl2] = ACTIONS(2644), + [anon_sym_bit_DASHshr2] = ACTIONS(2644), + [anon_sym_bit_DASHand2] = ACTIONS(2644), + [anon_sym_bit_DASHxor2] = ACTIONS(2644), + [anon_sym_bit_DASHor2] = ACTIONS(2644), + [anon_sym_err_GT] = ACTIONS(2646), + [anon_sym_out_GT] = ACTIONS(2646), + [anon_sym_e_GT] = ACTIONS(2646), + [anon_sym_o_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT] = ACTIONS(2646), + [anon_sym_err_GT_GT] = ACTIONS(2644), + [anon_sym_out_GT_GT] = ACTIONS(2644), + [anon_sym_e_GT_GT] = ACTIONS(2644), + [anon_sym_o_GT_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2644), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(1089)] = { + [aux_sym__repeat_newline] = STATE(982), [sym_comment] = STATE(1089), - [ts_builtin_sym_end] = ACTIONS(2525), - [anon_sym_in] = ACTIONS(2525), - [sym__newline] = ACTIONS(2525), - [anon_sym_SEMI] = ACTIONS(2525), - [anon_sym_PIPE] = ACTIONS(2525), - [anon_sym_err_GT_PIPE] = ACTIONS(2525), - [anon_sym_out_GT_PIPE] = ACTIONS(2525), - [anon_sym_e_GT_PIPE] = ACTIONS(2525), - [anon_sym_o_GT_PIPE] = ACTIONS(2525), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2525), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2525), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2525), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2525), - [anon_sym_GT2] = ACTIONS(2527), - [anon_sym_DASH2] = ACTIONS(2525), - [anon_sym_STAR2] = ACTIONS(2527), - [anon_sym_and2] = ACTIONS(2525), - [anon_sym_xor2] = ACTIONS(2525), - [anon_sym_or2] = ACTIONS(2525), - [anon_sym_not_DASHin2] = ACTIONS(2525), - [anon_sym_has2] = ACTIONS(2525), - [anon_sym_not_DASHhas2] = ACTIONS(2525), - [anon_sym_starts_DASHwith2] = ACTIONS(2525), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2525), - [anon_sym_ends_DASHwith2] = ACTIONS(2525), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2525), - [anon_sym_EQ_EQ2] = ACTIONS(2525), - [anon_sym_BANG_EQ2] = ACTIONS(2525), - [anon_sym_LT2] = ACTIONS(2527), - [anon_sym_LT_EQ2] = ACTIONS(2525), - [anon_sym_GT_EQ2] = ACTIONS(2525), - [anon_sym_EQ_TILDE2] = ACTIONS(2525), - [anon_sym_BANG_TILDE2] = ACTIONS(2525), - [anon_sym_like2] = ACTIONS(2525), - [anon_sym_not_DASHlike2] = ACTIONS(2525), - [anon_sym_LPAREN2] = ACTIONS(2529), - [anon_sym_STAR_STAR2] = ACTIONS(2525), - [anon_sym_PLUS_PLUS2] = ACTIONS(2525), - [anon_sym_SLASH2] = ACTIONS(2527), - [anon_sym_mod2] = ACTIONS(2525), - [anon_sym_SLASH_SLASH2] = ACTIONS(2525), - [anon_sym_PLUS2] = ACTIONS(2527), - [anon_sym_bit_DASHshl2] = ACTIONS(2525), - [anon_sym_bit_DASHshr2] = ACTIONS(2525), - [anon_sym_bit_DASHand2] = ACTIONS(2525), - [anon_sym_bit_DASHxor2] = ACTIONS(2525), - [anon_sym_bit_DASHor2] = ACTIONS(2525), - [anon_sym_err_GT] = ACTIONS(2527), - [anon_sym_out_GT] = ACTIONS(2527), - [anon_sym_e_GT] = ACTIONS(2527), - [anon_sym_o_GT] = ACTIONS(2527), - [anon_sym_err_PLUSout_GT] = ACTIONS(2527), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2527), - [anon_sym_o_PLUSe_GT] = ACTIONS(2527), - [anon_sym_e_PLUSo_GT] = ACTIONS(2527), - [anon_sym_err_GT_GT] = ACTIONS(2525), - [anon_sym_out_GT_GT] = ACTIONS(2525), - [anon_sym_e_GT_GT] = ACTIONS(2525), - [anon_sym_o_GT_GT] = ACTIONS(2525), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2525), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2525), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2525), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2525), - [sym__unquoted_pattern] = ACTIONS(2531), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1090)] = { - [aux_sym__repeat_newline] = STATE(1085), + [aux_sym__repeat_newline] = STATE(983), [sym_comment] = STATE(1090), - [anon_sym_in] = ACTIONS(2289), - [sym__newline] = ACTIONS(2289), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_err_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_GT_PIPE] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), - [anon_sym_RPAREN] = ACTIONS(2289), - [anon_sym_GT2] = ACTIONS(2291), - [anon_sym_DASH2] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_STAR2] = ACTIONS(2291), - [anon_sym_and2] = ACTIONS(2289), - [anon_sym_xor2] = ACTIONS(2289), - [anon_sym_or2] = ACTIONS(2289), - [anon_sym_not_DASHin2] = ACTIONS(2289), - [anon_sym_has2] = ACTIONS(2289), - [anon_sym_not_DASHhas2] = ACTIONS(2289), - [anon_sym_starts_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), - [anon_sym_ends_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), - [anon_sym_EQ_EQ2] = ACTIONS(2289), - [anon_sym_BANG_EQ2] = ACTIONS(2289), - [anon_sym_LT2] = ACTIONS(2291), - [anon_sym_LT_EQ2] = ACTIONS(2289), - [anon_sym_GT_EQ2] = ACTIONS(2289), - [anon_sym_EQ_TILDE2] = ACTIONS(2289), - [anon_sym_BANG_TILDE2] = ACTIONS(2289), - [anon_sym_like2] = ACTIONS(2289), - [anon_sym_not_DASHlike2] = ACTIONS(2289), - [anon_sym_STAR_STAR2] = ACTIONS(2289), - [anon_sym_PLUS_PLUS2] = ACTIONS(2289), - [anon_sym_SLASH2] = ACTIONS(2291), - [anon_sym_mod2] = ACTIONS(2289), - [anon_sym_SLASH_SLASH2] = ACTIONS(2289), - [anon_sym_PLUS2] = ACTIONS(2291), - [anon_sym_bit_DASHshl2] = ACTIONS(2289), - [anon_sym_bit_DASHshr2] = ACTIONS(2289), - [anon_sym_bit_DASHand2] = ACTIONS(2289), - [anon_sym_bit_DASHxor2] = ACTIONS(2289), - [anon_sym_bit_DASHor2] = ACTIONS(2289), - [anon_sym_err_GT] = ACTIONS(2291), - [anon_sym_out_GT] = ACTIONS(2291), - [anon_sym_e_GT] = ACTIONS(2291), - [anon_sym_o_GT] = ACTIONS(2291), - [anon_sym_err_PLUSout_GT] = ACTIONS(2291), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), - [anon_sym_o_PLUSe_GT] = ACTIONS(2291), - [anon_sym_e_PLUSo_GT] = ACTIONS(2291), - [anon_sym_err_GT_GT] = ACTIONS(2289), - [anon_sym_out_GT_GT] = ACTIONS(2289), - [anon_sym_e_GT_GT] = ACTIONS(2289), - [anon_sym_o_GT_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1091)] = { - [sym_expr_unary] = STATE(2752), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_parenthesized] = STATE(2533), - [sym_val_range] = STATE(2752), - [sym__val_range] = STATE(4567), - [sym__value] = STATE(2752), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(2568), - [sym_val_variable] = STATE(2555), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(2344), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(2243), - [sym__str_double_quotes] = STATE(2243), - [sym__str_single_quotes] = STATE(2243), - [sym__str_back_ticks] = STATE(2243), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_unquoted] = STATE(2580), - [sym__unquoted_with_expr] = STATE(2754), - [sym__unquoted_anonymous_prefix] = STATE(4567), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1091), - [anon_sym_true] = ACTIONS(2740), - [anon_sym_false] = ACTIONS(2740), - [anon_sym_null] = ACTIONS(2742), - [aux_sym_cmd_identifier_token3] = ACTIONS(2744), - [aux_sym_cmd_identifier_token4] = ACTIONS(2744), - [aux_sym_cmd_identifier_token5] = ACTIONS(2744), - [anon_sym_LBRACK] = ACTIONS(2746), - [anon_sym_LPAREN] = ACTIONS(2748), - [anon_sym_DOLLAR] = ACTIONS(2750), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(2752), - [anon_sym_DOT_DOT] = ACTIONS(2754), - [aux_sym_expr_unary_token1] = ACTIONS(2756), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2758), - [anon_sym_DOT_DOT_LT] = ACTIONS(2758), - [aux_sym__val_number_decimal_token1] = ACTIONS(2760), - [aux_sym__val_number_decimal_token2] = ACTIONS(2762), - [aux_sym__val_number_decimal_token3] = ACTIONS(2764), - [aux_sym__val_number_decimal_token4] = ACTIONS(2764), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2766), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_in] = ACTIONS(2644), + [sym__newline] = ACTIONS(2644), + [anon_sym_SEMI] = ACTIONS(2644), + [anon_sym_PIPE] = ACTIONS(2644), + [anon_sym_err_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_GT_PIPE] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2644), + [anon_sym_RPAREN] = ACTIONS(2644), + [anon_sym_GT2] = ACTIONS(2646), + [anon_sym_DASH2] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_STAR2] = ACTIONS(2646), + [anon_sym_and2] = ACTIONS(2644), + [anon_sym_xor2] = ACTIONS(2644), + [anon_sym_or2] = ACTIONS(2644), + [anon_sym_not_DASHin2] = ACTIONS(2644), + [anon_sym_has2] = ACTIONS(2644), + [anon_sym_not_DASHhas2] = ACTIONS(2644), + [anon_sym_starts_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2644), + [anon_sym_ends_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2644), + [anon_sym_EQ_EQ2] = ACTIONS(2644), + [anon_sym_BANG_EQ2] = ACTIONS(2644), + [anon_sym_LT2] = ACTIONS(2646), + [anon_sym_LT_EQ2] = ACTIONS(2644), + [anon_sym_GT_EQ2] = ACTIONS(2644), + [anon_sym_EQ_TILDE2] = ACTIONS(2644), + [anon_sym_BANG_TILDE2] = ACTIONS(2644), + [anon_sym_like2] = ACTIONS(2644), + [anon_sym_not_DASHlike2] = ACTIONS(2644), + [anon_sym_STAR_STAR2] = ACTIONS(2644), + [anon_sym_PLUS_PLUS2] = ACTIONS(2644), + [anon_sym_SLASH2] = ACTIONS(2646), + [anon_sym_mod2] = ACTIONS(2644), + [anon_sym_SLASH_SLASH2] = ACTIONS(2644), + [anon_sym_PLUS2] = ACTIONS(2646), + [anon_sym_bit_DASHshl2] = ACTIONS(2644), + [anon_sym_bit_DASHshr2] = ACTIONS(2644), + [anon_sym_bit_DASHand2] = ACTIONS(2644), + [anon_sym_bit_DASHxor2] = ACTIONS(2644), + [anon_sym_bit_DASHor2] = ACTIONS(2644), + [anon_sym_err_GT] = ACTIONS(2646), + [anon_sym_out_GT] = ACTIONS(2646), + [anon_sym_e_GT] = ACTIONS(2646), + [anon_sym_o_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT] = ACTIONS(2646), + [anon_sym_err_GT_GT] = ACTIONS(2644), + [anon_sym_out_GT_GT] = ACTIONS(2644), + [anon_sym_e_GT_GT] = ACTIONS(2644), + [anon_sym_o_GT_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2644), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, [STATE(1092)] = { - [aux_sym__repeat_newline] = STATE(1095), [sym_comment] = STATE(1092), - [anon_sym_in] = ACTIONS(2289), - [sym__newline] = ACTIONS(2289), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_err_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_GT_PIPE] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), - [anon_sym_RPAREN] = ACTIONS(2289), - [anon_sym_GT2] = ACTIONS(2291), - [anon_sym_DASH2] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_STAR2] = ACTIONS(2291), - [anon_sym_and2] = ACTIONS(2289), - [anon_sym_xor2] = ACTIONS(2289), - [anon_sym_or2] = ACTIONS(2289), - [anon_sym_not_DASHin2] = ACTIONS(2289), - [anon_sym_has2] = ACTIONS(2289), - [anon_sym_not_DASHhas2] = ACTIONS(2289), - [anon_sym_starts_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2289), - [anon_sym_ends_DASHwith2] = ACTIONS(2289), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2289), - [anon_sym_EQ_EQ2] = ACTIONS(2289), - [anon_sym_BANG_EQ2] = ACTIONS(2289), - [anon_sym_LT2] = ACTIONS(2291), - [anon_sym_LT_EQ2] = ACTIONS(2289), - [anon_sym_GT_EQ2] = ACTIONS(2289), - [anon_sym_EQ_TILDE2] = ACTIONS(2289), - [anon_sym_BANG_TILDE2] = ACTIONS(2289), - [anon_sym_like2] = ACTIONS(2289), - [anon_sym_not_DASHlike2] = ACTIONS(2289), - [anon_sym_STAR_STAR2] = ACTIONS(2289), - [anon_sym_PLUS_PLUS2] = ACTIONS(2289), - [anon_sym_SLASH2] = ACTIONS(2291), - [anon_sym_mod2] = ACTIONS(2289), - [anon_sym_SLASH_SLASH2] = ACTIONS(2289), - [anon_sym_PLUS2] = ACTIONS(2291), - [anon_sym_bit_DASHshl2] = ACTIONS(2289), - [anon_sym_bit_DASHshr2] = ACTIONS(2289), - [anon_sym_bit_DASHand2] = ACTIONS(2289), - [anon_sym_bit_DASHxor2] = ACTIONS(2289), - [anon_sym_bit_DASHor2] = ACTIONS(2289), - [anon_sym_err_GT] = ACTIONS(2291), - [anon_sym_out_GT] = ACTIONS(2291), - [anon_sym_e_GT] = ACTIONS(2291), - [anon_sym_o_GT] = ACTIONS(2291), - [anon_sym_err_PLUSout_GT] = ACTIONS(2291), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), - [anon_sym_o_PLUSe_GT] = ACTIONS(2291), - [anon_sym_e_PLUSo_GT] = ACTIONS(2291), - [anon_sym_err_GT_GT] = ACTIONS(2289), - [anon_sym_out_GT_GT] = ACTIONS(2289), - [anon_sym_e_GT_GT] = ACTIONS(2289), - [anon_sym_o_GT_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2740), + [anon_sym_alias] = ACTIONS(2742), + [anon_sym_let] = ACTIONS(2742), + [anon_sym_mut] = ACTIONS(2742), + [anon_sym_const] = ACTIONS(2742), + [aux_sym_cmd_identifier_token1] = ACTIONS(2740), + [anon_sym_def] = ACTIONS(2742), + [anon_sym_use] = ACTIONS(2742), + [anon_sym_export_DASHenv] = ACTIONS(2742), + [anon_sym_extern] = ACTIONS(2742), + [anon_sym_module] = ACTIONS(2742), + [anon_sym_for] = ACTIONS(2742), + [anon_sym_loop] = ACTIONS(2742), + [anon_sym_while] = ACTIONS(2742), + [anon_sym_if] = ACTIONS(2742), + [anon_sym_else] = ACTIONS(2742), + [anon_sym_try] = ACTIONS(2742), + [anon_sym_catch] = ACTIONS(2742), + [anon_sym_match] = ACTIONS(2742), + [anon_sym_in] = ACTIONS(2740), + [anon_sym_true] = ACTIONS(2742), + [anon_sym_false] = ACTIONS(2742), + [anon_sym_null] = ACTIONS(2742), + [aux_sym_cmd_identifier_token3] = ACTIONS(2742), + [aux_sym_cmd_identifier_token4] = ACTIONS(2742), + [aux_sym_cmd_identifier_token5] = ACTIONS(2742), + [sym__newline] = ACTIONS(2742), + [anon_sym_PIPE] = ACTIONS(2742), + [anon_sym_err_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_GT_PIPE] = ACTIONS(2742), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2742), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2742), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2742), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2742), + [anon_sym_LBRACK] = ACTIONS(2742), + [anon_sym_LPAREN] = ACTIONS(2742), + [anon_sym_DOLLAR] = ACTIONS(2740), + [anon_sym_DASH2] = ACTIONS(2740), + [anon_sym_LBRACE] = ACTIONS(2742), + [anon_sym_DOT_DOT] = ACTIONS(2740), + [anon_sym_where] = ACTIONS(2742), + [aux_sym_expr_unary_token1] = ACTIONS(2742), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2742), + [anon_sym_DOT_DOT_LT] = ACTIONS(2742), + [aux_sym__val_number_decimal_token1] = ACTIONS(2740), + [aux_sym__val_number_decimal_token2] = ACTIONS(2742), + [aux_sym__val_number_decimal_token3] = ACTIONS(2742), + [aux_sym__val_number_decimal_token4] = ACTIONS(2742), + [aux_sym__val_number_token1] = ACTIONS(2742), + [aux_sym__val_number_token2] = ACTIONS(2742), + [aux_sym__val_number_token3] = ACTIONS(2742), + [anon_sym_0b] = ACTIONS(2740), + [anon_sym_0o] = ACTIONS(2740), + [anon_sym_0x] = ACTIONS(2740), + [sym_val_date] = ACTIONS(2742), + [anon_sym_DQUOTE] = ACTIONS(2742), + [anon_sym_SQUOTE] = ACTIONS(2742), + [anon_sym_BQUOTE] = ACTIONS(2742), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2742), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2742), + [anon_sym_CARET] = ACTIONS(2742), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2742), }, [STATE(1093)] = { - [aux_sym__repeat_newline] = STATE(517), + [aux_sym__repeat_newline] = STATE(988), [sym_comment] = STATE(1093), - [anon_sym_in] = ACTIONS(2658), - [sym__newline] = ACTIONS(2658), - [anon_sym_SEMI] = ACTIONS(2658), - [anon_sym_PIPE] = ACTIONS(2658), - [anon_sym_err_GT_PIPE] = ACTIONS(2658), - [anon_sym_out_GT_PIPE] = ACTIONS(2658), - [anon_sym_e_GT_PIPE] = ACTIONS(2658), - [anon_sym_o_GT_PIPE] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2658), - [anon_sym_RPAREN] = ACTIONS(2658), - [anon_sym_GT2] = ACTIONS(2660), - [anon_sym_DASH2] = ACTIONS(2658), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_STAR2] = ACTIONS(2660), - [anon_sym_and2] = ACTIONS(2658), - [anon_sym_xor2] = ACTIONS(2658), - [anon_sym_or2] = ACTIONS(2658), - [anon_sym_not_DASHin2] = ACTIONS(2658), - [anon_sym_has2] = ACTIONS(2658), - [anon_sym_not_DASHhas2] = ACTIONS(2658), - [anon_sym_starts_DASHwith2] = ACTIONS(2658), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2658), - [anon_sym_ends_DASHwith2] = ACTIONS(2658), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2658), - [anon_sym_EQ_EQ2] = ACTIONS(2658), - [anon_sym_BANG_EQ2] = ACTIONS(2658), - [anon_sym_LT2] = ACTIONS(2660), - [anon_sym_LT_EQ2] = ACTIONS(2658), - [anon_sym_GT_EQ2] = ACTIONS(2658), - [anon_sym_EQ_TILDE2] = ACTIONS(2658), - [anon_sym_BANG_TILDE2] = ACTIONS(2658), - [anon_sym_like2] = ACTIONS(2658), - [anon_sym_not_DASHlike2] = ACTIONS(2658), - [anon_sym_STAR_STAR2] = ACTIONS(2658), - [anon_sym_PLUS_PLUS2] = ACTIONS(2658), - [anon_sym_SLASH2] = ACTIONS(2660), - [anon_sym_mod2] = ACTIONS(2658), - [anon_sym_SLASH_SLASH2] = ACTIONS(2658), - [anon_sym_PLUS2] = ACTIONS(2660), - [anon_sym_bit_DASHshl2] = ACTIONS(2658), - [anon_sym_bit_DASHshr2] = ACTIONS(2658), - [anon_sym_bit_DASHand2] = ACTIONS(2658), - [anon_sym_bit_DASHxor2] = ACTIONS(2658), - [anon_sym_bit_DASHor2] = ACTIONS(2658), - [anon_sym_err_GT] = ACTIONS(2660), - [anon_sym_out_GT] = ACTIONS(2660), - [anon_sym_e_GT] = ACTIONS(2660), - [anon_sym_o_GT] = ACTIONS(2660), - [anon_sym_err_PLUSout_GT] = ACTIONS(2660), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2660), - [anon_sym_o_PLUSe_GT] = ACTIONS(2660), - [anon_sym_e_PLUSo_GT] = ACTIONS(2660), - [anon_sym_err_GT_GT] = ACTIONS(2658), - [anon_sym_out_GT_GT] = ACTIONS(2658), - [anon_sym_e_GT_GT] = ACTIONS(2658), - [anon_sym_o_GT_GT] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2658), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1094)] = { - [aux_sym__repeat_newline] = STATE(1125), + [sym_expr_unary] = STATE(2767), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_parenthesized] = STATE(2518), + [sym_val_range] = STATE(2767), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(2767), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(2568), + [sym_val_variable] = STATE(2530), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(2349), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(2577), + [sym__unquoted_with_expr] = STATE(2769), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(1094), - [anon_sym_in] = ACTIONS(2499), - [sym__newline] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(2499), - [anon_sym_err_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_GT_PIPE] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), - [anon_sym_RPAREN] = ACTIONS(2499), - [anon_sym_GT2] = ACTIONS(2501), - [anon_sym_DASH2] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_STAR2] = ACTIONS(2501), - [anon_sym_and2] = ACTIONS(2499), - [anon_sym_xor2] = ACTIONS(2499), - [anon_sym_or2] = ACTIONS(2499), - [anon_sym_not_DASHin2] = ACTIONS(2499), - [anon_sym_has2] = ACTIONS(2499), - [anon_sym_not_DASHhas2] = ACTIONS(2499), - [anon_sym_starts_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), - [anon_sym_ends_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), - [anon_sym_EQ_EQ2] = ACTIONS(2499), - [anon_sym_BANG_EQ2] = ACTIONS(2499), - [anon_sym_LT2] = ACTIONS(2501), - [anon_sym_LT_EQ2] = ACTIONS(2499), - [anon_sym_GT_EQ2] = ACTIONS(2499), - [anon_sym_EQ_TILDE2] = ACTIONS(2499), - [anon_sym_BANG_TILDE2] = ACTIONS(2499), - [anon_sym_like2] = ACTIONS(2499), - [anon_sym_not_DASHlike2] = ACTIONS(2499), - [anon_sym_STAR_STAR2] = ACTIONS(2499), - [anon_sym_PLUS_PLUS2] = ACTIONS(2499), - [anon_sym_SLASH2] = ACTIONS(2501), - [anon_sym_mod2] = ACTIONS(2499), - [anon_sym_SLASH_SLASH2] = ACTIONS(2499), - [anon_sym_PLUS2] = ACTIONS(2501), - [anon_sym_bit_DASHshl2] = ACTIONS(2499), - [anon_sym_bit_DASHshr2] = ACTIONS(2499), - [anon_sym_bit_DASHand2] = ACTIONS(2499), - [anon_sym_bit_DASHxor2] = ACTIONS(2499), - [anon_sym_bit_DASHor2] = ACTIONS(2499), - [anon_sym_err_GT] = ACTIONS(2501), - [anon_sym_out_GT] = ACTIONS(2501), - [anon_sym_e_GT] = ACTIONS(2501), - [anon_sym_o_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT] = ACTIONS(2501), - [anon_sym_err_GT_GT] = ACTIONS(2499), - [anon_sym_out_GT_GT] = ACTIONS(2499), - [anon_sym_e_GT_GT] = ACTIONS(2499), - [anon_sym_o_GT_GT] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_true] = ACTIONS(2744), + [anon_sym_false] = ACTIONS(2744), + [anon_sym_null] = ACTIONS(2746), + [aux_sym_cmd_identifier_token3] = ACTIONS(2748), + [aux_sym_cmd_identifier_token4] = ACTIONS(2748), + [aux_sym_cmd_identifier_token5] = ACTIONS(2748), + [anon_sym_LBRACK] = ACTIONS(2750), + [anon_sym_LPAREN] = ACTIONS(2752), + [anon_sym_DOLLAR] = ACTIONS(2754), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_DOT_DOT] = ACTIONS(2758), + [aux_sym_expr_unary_token1] = ACTIONS(2760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2762), + [anon_sym_DOT_DOT_LT] = ACTIONS(2762), + [aux_sym__val_number_decimal_token1] = ACTIONS(2764), + [aux_sym__val_number_decimal_token2] = ACTIONS(2766), + [aux_sym__val_number_decimal_token3] = ACTIONS(2768), + [aux_sym__val_number_decimal_token4] = ACTIONS(2768), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2770), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1796), }, [STATE(1095)] = { - [aux_sym__repeat_newline] = STATE(517), + [sym_expr_unary] = STATE(2771), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_parenthesized] = STATE(2525), + [sym_val_range] = STATE(2771), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(2771), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(2568), + [sym_val_variable] = STATE(2530), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(2349), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(2594), + [sym__unquoted_with_expr] = STATE(2775), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(1095), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_true] = ACTIONS(2744), + [anon_sym_false] = ACTIONS(2744), + [anon_sym_null] = ACTIONS(2746), + [aux_sym_cmd_identifier_token3] = ACTIONS(2748), + [aux_sym_cmd_identifier_token4] = ACTIONS(2748), + [aux_sym_cmd_identifier_token5] = ACTIONS(2748), + [anon_sym_LBRACK] = ACTIONS(2750), + [anon_sym_LPAREN] = ACTIONS(2752), + [anon_sym_DOLLAR] = ACTIONS(2754), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_DOT_DOT] = ACTIONS(2758), + [aux_sym_expr_unary_token1] = ACTIONS(2760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2762), + [anon_sym_DOT_DOT_LT] = ACTIONS(2762), + [aux_sym__val_number_decimal_token1] = ACTIONS(2764), + [aux_sym__val_number_decimal_token2] = ACTIONS(2766), + [aux_sym__val_number_decimal_token3] = ACTIONS(2768), + [aux_sym__val_number_decimal_token4] = ACTIONS(2768), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2770), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1796), }, [STATE(1096)] = { - [aux_sym__repeat_newline] = STATE(1010), + [sym_expr_unary] = STATE(2776), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_parenthesized] = STATE(2526), + [sym_val_range] = STATE(2776), + [sym__val_range] = STATE(4569), + [sym__value] = STATE(2776), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(2568), + [sym_val_variable] = STATE(2530), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(2349), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_unquoted] = STATE(2604), + [sym__unquoted_with_expr] = STATE(2780), + [sym__unquoted_anonymous_prefix] = STATE(4569), [sym_comment] = STATE(1096), - [anon_sym_in] = ACTIONS(2198), - [sym__newline] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_err_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_GT_PIPE] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_GT2] = ACTIONS(2200), - [anon_sym_DASH2] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_STAR2] = ACTIONS(2200), - [anon_sym_and2] = ACTIONS(2198), - [anon_sym_xor2] = ACTIONS(2198), - [anon_sym_or2] = ACTIONS(2198), - [anon_sym_not_DASHin2] = ACTIONS(2198), - [anon_sym_has2] = ACTIONS(2198), - [anon_sym_not_DASHhas2] = ACTIONS(2198), - [anon_sym_starts_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), - [anon_sym_ends_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), - [anon_sym_EQ_EQ2] = ACTIONS(2198), - [anon_sym_BANG_EQ2] = ACTIONS(2198), - [anon_sym_LT2] = ACTIONS(2200), - [anon_sym_LT_EQ2] = ACTIONS(2198), - [anon_sym_GT_EQ2] = ACTIONS(2198), - [anon_sym_EQ_TILDE2] = ACTIONS(2198), - [anon_sym_BANG_TILDE2] = ACTIONS(2198), - [anon_sym_like2] = ACTIONS(2198), - [anon_sym_not_DASHlike2] = ACTIONS(2198), - [anon_sym_STAR_STAR2] = ACTIONS(2198), - [anon_sym_PLUS_PLUS2] = ACTIONS(2198), - [anon_sym_SLASH2] = ACTIONS(2200), - [anon_sym_mod2] = ACTIONS(2198), - [anon_sym_SLASH_SLASH2] = ACTIONS(2198), - [anon_sym_PLUS2] = ACTIONS(2200), - [anon_sym_bit_DASHshl2] = ACTIONS(2198), - [anon_sym_bit_DASHshr2] = ACTIONS(2198), - [anon_sym_bit_DASHand2] = ACTIONS(2198), - [anon_sym_bit_DASHxor2] = ACTIONS(2198), - [anon_sym_bit_DASHor2] = ACTIONS(2198), - [anon_sym_err_GT] = ACTIONS(2200), - [anon_sym_out_GT] = ACTIONS(2200), - [anon_sym_e_GT] = ACTIONS(2200), - [anon_sym_o_GT] = ACTIONS(2200), - [anon_sym_err_PLUSout_GT] = ACTIONS(2200), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), - [anon_sym_o_PLUSe_GT] = ACTIONS(2200), - [anon_sym_e_PLUSo_GT] = ACTIONS(2200), - [anon_sym_err_GT_GT] = ACTIONS(2198), - [anon_sym_out_GT_GT] = ACTIONS(2198), - [anon_sym_e_GT_GT] = ACTIONS(2198), - [anon_sym_o_GT_GT] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), + [anon_sym_true] = ACTIONS(2744), + [anon_sym_false] = ACTIONS(2744), + [anon_sym_null] = ACTIONS(2746), + [aux_sym_cmd_identifier_token3] = ACTIONS(2748), + [aux_sym_cmd_identifier_token4] = ACTIONS(2748), + [aux_sym_cmd_identifier_token5] = ACTIONS(2748), + [anon_sym_LBRACK] = ACTIONS(2750), + [anon_sym_LPAREN] = ACTIONS(2752), + [anon_sym_DOLLAR] = ACTIONS(2754), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_DOT_DOT] = ACTIONS(2758), + [aux_sym_expr_unary_token1] = ACTIONS(2760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2762), + [anon_sym_DOT_DOT_LT] = ACTIONS(2762), + [aux_sym__val_number_decimal_token1] = ACTIONS(2764), + [aux_sym__val_number_decimal_token2] = ACTIONS(2766), + [aux_sym__val_number_decimal_token3] = ACTIONS(2768), + [aux_sym__val_number_decimal_token4] = ACTIONS(2768), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2770), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1796), }, [STATE(1097)] = { - [aux_sym__repeat_newline] = STATE(1126), + [aux_sym__repeat_newline] = STATE(998), [sym_comment] = STATE(1097), - [anon_sym_in] = ACTIONS(2499), - [sym__newline] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(2499), - [anon_sym_err_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_GT_PIPE] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), - [anon_sym_RPAREN] = ACTIONS(2499), - [anon_sym_GT2] = ACTIONS(2501), - [anon_sym_DASH2] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_STAR2] = ACTIONS(2501), - [anon_sym_and2] = ACTIONS(2499), - [anon_sym_xor2] = ACTIONS(2499), - [anon_sym_or2] = ACTIONS(2499), - [anon_sym_not_DASHin2] = ACTIONS(2499), - [anon_sym_has2] = ACTIONS(2499), - [anon_sym_not_DASHhas2] = ACTIONS(2499), - [anon_sym_starts_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), - [anon_sym_ends_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), - [anon_sym_EQ_EQ2] = ACTIONS(2499), - [anon_sym_BANG_EQ2] = ACTIONS(2499), - [anon_sym_LT2] = ACTIONS(2501), - [anon_sym_LT_EQ2] = ACTIONS(2499), - [anon_sym_GT_EQ2] = ACTIONS(2499), - [anon_sym_EQ_TILDE2] = ACTIONS(2499), - [anon_sym_BANG_TILDE2] = ACTIONS(2499), - [anon_sym_like2] = ACTIONS(2499), - [anon_sym_not_DASHlike2] = ACTIONS(2499), - [anon_sym_STAR_STAR2] = ACTIONS(2499), - [anon_sym_PLUS_PLUS2] = ACTIONS(2499), - [anon_sym_SLASH2] = ACTIONS(2501), - [anon_sym_mod2] = ACTIONS(2499), - [anon_sym_SLASH_SLASH2] = ACTIONS(2499), - [anon_sym_PLUS2] = ACTIONS(2501), - [anon_sym_bit_DASHshl2] = ACTIONS(2499), - [anon_sym_bit_DASHshr2] = ACTIONS(2499), - [anon_sym_bit_DASHand2] = ACTIONS(2499), - [anon_sym_bit_DASHxor2] = ACTIONS(2499), - [anon_sym_bit_DASHor2] = ACTIONS(2499), - [anon_sym_err_GT] = ACTIONS(2501), - [anon_sym_out_GT] = ACTIONS(2501), - [anon_sym_e_GT] = ACTIONS(2501), - [anon_sym_o_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT] = ACTIONS(2501), - [anon_sym_err_GT_GT] = ACTIONS(2499), - [anon_sym_out_GT_GT] = ACTIONS(2499), - [anon_sym_e_GT_GT] = ACTIONS(2499), - [anon_sym_o_GT_GT] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1098)] = { - [aux_sym__repeat_newline] = STATE(517), + [aux_sym__repeat_newline] = STATE(1001), [sym_comment] = STATE(1098), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1099)] = { - [aux_sym__repeat_newline] = STATE(1127), + [aux_sym__repeat_newline] = STATE(1004), [sym_comment] = STATE(1099), - [anon_sym_in] = ACTIONS(2499), - [sym__newline] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(2499), - [anon_sym_err_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_GT_PIPE] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), - [anon_sym_RPAREN] = ACTIONS(2499), - [anon_sym_GT2] = ACTIONS(2501), - [anon_sym_DASH2] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_STAR2] = ACTIONS(2501), - [anon_sym_and2] = ACTIONS(2499), - [anon_sym_xor2] = ACTIONS(2499), - [anon_sym_or2] = ACTIONS(2499), - [anon_sym_not_DASHin2] = ACTIONS(2499), - [anon_sym_has2] = ACTIONS(2499), - [anon_sym_not_DASHhas2] = ACTIONS(2499), - [anon_sym_starts_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), - [anon_sym_ends_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), - [anon_sym_EQ_EQ2] = ACTIONS(2499), - [anon_sym_BANG_EQ2] = ACTIONS(2499), - [anon_sym_LT2] = ACTIONS(2501), - [anon_sym_LT_EQ2] = ACTIONS(2499), - [anon_sym_GT_EQ2] = ACTIONS(2499), - [anon_sym_EQ_TILDE2] = ACTIONS(2499), - [anon_sym_BANG_TILDE2] = ACTIONS(2499), - [anon_sym_like2] = ACTIONS(2499), - [anon_sym_not_DASHlike2] = ACTIONS(2499), - [anon_sym_STAR_STAR2] = ACTIONS(2499), - [anon_sym_PLUS_PLUS2] = ACTIONS(2499), - [anon_sym_SLASH2] = ACTIONS(2501), - [anon_sym_mod2] = ACTIONS(2499), - [anon_sym_SLASH_SLASH2] = ACTIONS(2499), - [anon_sym_PLUS2] = ACTIONS(2501), - [anon_sym_bit_DASHshl2] = ACTIONS(2499), - [anon_sym_bit_DASHshr2] = ACTIONS(2499), - [anon_sym_bit_DASHand2] = ACTIONS(2499), - [anon_sym_bit_DASHxor2] = ACTIONS(2499), - [anon_sym_bit_DASHor2] = ACTIONS(2499), - [anon_sym_err_GT] = ACTIONS(2501), - [anon_sym_out_GT] = ACTIONS(2501), - [anon_sym_e_GT] = ACTIONS(2501), - [anon_sym_o_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT] = ACTIONS(2501), - [anon_sym_err_GT_GT] = ACTIONS(2499), - [anon_sym_out_GT_GT] = ACTIONS(2499), - [anon_sym_e_GT_GT] = ACTIONS(2499), - [anon_sym_o_GT_GT] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1100)] = { - [aux_sym__repeat_newline] = STATE(517), + [aux_sym__repeat_newline] = STATE(1007), [sym_comment] = STATE(1100), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1101)] = { - [aux_sym__repeat_newline] = STATE(1128), + [aux_sym__repeat_newline] = STATE(1010), [sym_comment] = STATE(1101), - [anon_sym_in] = ACTIONS(2768), - [sym__newline] = ACTIONS(2768), - [anon_sym_SEMI] = ACTIONS(2768), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_err_GT_PIPE] = ACTIONS(2768), - [anon_sym_out_GT_PIPE] = ACTIONS(2768), - [anon_sym_e_GT_PIPE] = ACTIONS(2768), - [anon_sym_o_GT_PIPE] = ACTIONS(2768), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2768), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2768), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2768), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2768), - [anon_sym_RPAREN] = ACTIONS(2768), - [anon_sym_GT2] = ACTIONS(2770), - [anon_sym_DASH2] = ACTIONS(2768), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_STAR2] = ACTIONS(2770), - [anon_sym_and2] = ACTIONS(2768), - [anon_sym_xor2] = ACTIONS(2768), - [anon_sym_or2] = ACTIONS(2768), - [anon_sym_not_DASHin2] = ACTIONS(2768), - [anon_sym_has2] = ACTIONS(2768), - [anon_sym_not_DASHhas2] = ACTIONS(2768), - [anon_sym_starts_DASHwith2] = ACTIONS(2768), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2768), - [anon_sym_ends_DASHwith2] = ACTIONS(2768), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2768), - [anon_sym_EQ_EQ2] = ACTIONS(2768), - [anon_sym_BANG_EQ2] = ACTIONS(2768), - [anon_sym_LT2] = ACTIONS(2770), - [anon_sym_LT_EQ2] = ACTIONS(2768), - [anon_sym_GT_EQ2] = ACTIONS(2768), - [anon_sym_EQ_TILDE2] = ACTIONS(2768), - [anon_sym_BANG_TILDE2] = ACTIONS(2768), - [anon_sym_like2] = ACTIONS(2768), - [anon_sym_not_DASHlike2] = ACTIONS(2768), - [anon_sym_STAR_STAR2] = ACTIONS(2768), - [anon_sym_PLUS_PLUS2] = ACTIONS(2768), - [anon_sym_SLASH2] = ACTIONS(2770), - [anon_sym_mod2] = ACTIONS(2768), - [anon_sym_SLASH_SLASH2] = ACTIONS(2768), - [anon_sym_PLUS2] = ACTIONS(2770), - [anon_sym_bit_DASHshl2] = ACTIONS(2768), - [anon_sym_bit_DASHshr2] = ACTIONS(2768), - [anon_sym_bit_DASHand2] = ACTIONS(2768), - [anon_sym_bit_DASHxor2] = ACTIONS(2768), - [anon_sym_bit_DASHor2] = ACTIONS(2768), - [anon_sym_err_GT] = ACTIONS(2770), - [anon_sym_out_GT] = ACTIONS(2770), - [anon_sym_e_GT] = ACTIONS(2770), - [anon_sym_o_GT] = ACTIONS(2770), - [anon_sym_err_PLUSout_GT] = ACTIONS(2770), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2770), - [anon_sym_o_PLUSe_GT] = ACTIONS(2770), - [anon_sym_e_PLUSo_GT] = ACTIONS(2770), - [anon_sym_err_GT_GT] = ACTIONS(2768), - [anon_sym_out_GT_GT] = ACTIONS(2768), - [anon_sym_e_GT_GT] = ACTIONS(2768), - [anon_sym_o_GT_GT] = ACTIONS(2768), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2768), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2768), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2768), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2768), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1102)] = { - [aux_sym__repeat_newline] = STATE(1122), + [aux_sym__repeat_newline] = STATE(1014), [sym_comment] = STATE(1102), - [anon_sym_in] = ACTIONS(2499), - [sym__newline] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(2499), - [anon_sym_err_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_GT_PIPE] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), - [anon_sym_RPAREN] = ACTIONS(2499), - [anon_sym_GT2] = ACTIONS(2501), - [anon_sym_DASH2] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_STAR2] = ACTIONS(2501), - [anon_sym_and2] = ACTIONS(2499), - [anon_sym_xor2] = ACTIONS(2499), - [anon_sym_or2] = ACTIONS(2499), - [anon_sym_not_DASHin2] = ACTIONS(2499), - [anon_sym_has2] = ACTIONS(2499), - [anon_sym_not_DASHhas2] = ACTIONS(2499), - [anon_sym_starts_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), - [anon_sym_ends_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), - [anon_sym_EQ_EQ2] = ACTIONS(2499), - [anon_sym_BANG_EQ2] = ACTIONS(2499), - [anon_sym_LT2] = ACTIONS(2501), - [anon_sym_LT_EQ2] = ACTIONS(2499), - [anon_sym_GT_EQ2] = ACTIONS(2499), - [anon_sym_EQ_TILDE2] = ACTIONS(2499), - [anon_sym_BANG_TILDE2] = ACTIONS(2499), - [anon_sym_like2] = ACTIONS(2499), - [anon_sym_not_DASHlike2] = ACTIONS(2499), - [anon_sym_STAR_STAR2] = ACTIONS(2499), - [anon_sym_PLUS_PLUS2] = ACTIONS(2499), - [anon_sym_SLASH2] = ACTIONS(2501), - [anon_sym_mod2] = ACTIONS(2499), - [anon_sym_SLASH_SLASH2] = ACTIONS(2499), - [anon_sym_PLUS2] = ACTIONS(2501), - [anon_sym_bit_DASHshl2] = ACTIONS(2499), - [anon_sym_bit_DASHshr2] = ACTIONS(2499), - [anon_sym_bit_DASHand2] = ACTIONS(2499), - [anon_sym_bit_DASHxor2] = ACTIONS(2499), - [anon_sym_bit_DASHor2] = ACTIONS(2499), - [anon_sym_err_GT] = ACTIONS(2501), - [anon_sym_out_GT] = ACTIONS(2501), - [anon_sym_e_GT] = ACTIONS(2501), - [anon_sym_o_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT] = ACTIONS(2501), - [anon_sym_err_GT_GT] = ACTIONS(2499), - [anon_sym_out_GT_GT] = ACTIONS(2499), - [anon_sym_e_GT_GT] = ACTIONS(2499), - [anon_sym_o_GT_GT] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1103)] = { - [aux_sym__repeat_newline] = STATE(517), + [aux_sym__repeat_newline] = STATE(1018), [sym_comment] = STATE(1103), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1104)] = { + [aux_sym__repeat_newline] = STATE(1022), + [sym_comment] = STATE(1104), [anon_sym_in] = ACTIONS(2772), [sym__newline] = ACTIONS(2772), [anon_sym_SEMI] = ACTIONS(2772), @@ -128700,1641 +128803,1097 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1104)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1104), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(1105)] = { - [aux_sym__repeat_newline] = STATE(984), + [aux_sym__repeat_newline] = STATE(1023), [sym_comment] = STATE(1105), - [anon_sym_in] = ACTIONS(2499), - [sym__newline] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(2499), - [anon_sym_err_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_GT_PIPE] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), - [anon_sym_RPAREN] = ACTIONS(2499), - [anon_sym_GT2] = ACTIONS(2501), - [anon_sym_DASH2] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_STAR2] = ACTIONS(2501), - [anon_sym_and2] = ACTIONS(2499), - [anon_sym_xor2] = ACTIONS(2499), - [anon_sym_or2] = ACTIONS(2499), - [anon_sym_not_DASHin2] = ACTIONS(2499), - [anon_sym_has2] = ACTIONS(2499), - [anon_sym_not_DASHhas2] = ACTIONS(2499), - [anon_sym_starts_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), - [anon_sym_ends_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), - [anon_sym_EQ_EQ2] = ACTIONS(2499), - [anon_sym_BANG_EQ2] = ACTIONS(2499), - [anon_sym_LT2] = ACTIONS(2501), - [anon_sym_LT_EQ2] = ACTIONS(2499), - [anon_sym_GT_EQ2] = ACTIONS(2499), - [anon_sym_EQ_TILDE2] = ACTIONS(2499), - [anon_sym_BANG_TILDE2] = ACTIONS(2499), - [anon_sym_like2] = ACTIONS(2499), - [anon_sym_not_DASHlike2] = ACTIONS(2499), - [anon_sym_STAR_STAR2] = ACTIONS(2499), - [anon_sym_PLUS_PLUS2] = ACTIONS(2499), - [anon_sym_SLASH2] = ACTIONS(2501), - [anon_sym_mod2] = ACTIONS(2499), - [anon_sym_SLASH_SLASH2] = ACTIONS(2499), - [anon_sym_PLUS2] = ACTIONS(2501), - [anon_sym_bit_DASHshl2] = ACTIONS(2499), - [anon_sym_bit_DASHshr2] = ACTIONS(2499), - [anon_sym_bit_DASHand2] = ACTIONS(2499), - [anon_sym_bit_DASHxor2] = ACTIONS(2499), - [anon_sym_bit_DASHor2] = ACTIONS(2499), - [anon_sym_err_GT] = ACTIONS(2501), - [anon_sym_out_GT] = ACTIONS(2501), - [anon_sym_e_GT] = ACTIONS(2501), - [anon_sym_o_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT] = ACTIONS(2501), - [anon_sym_err_GT_GT] = ACTIONS(2499), - [anon_sym_out_GT_GT] = ACTIONS(2499), - [anon_sym_e_GT_GT] = ACTIONS(2499), - [anon_sym_o_GT_GT] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1106)] = { - [aux_sym__repeat_newline] = STATE(517), + [aux_sym__repeat_newline] = STATE(1116), [sym_comment] = STATE(1106), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1107)] = { + [aux_sym__repeat_newline] = STATE(1025), [sym_comment] = STATE(1107), - [ts_builtin_sym_end] = ACTIONS(2325), - [anon_sym_in] = ACTIONS(2325), - [sym__newline] = ACTIONS(2325), - [anon_sym_SEMI] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(2325), - [anon_sym_err_GT_PIPE] = ACTIONS(2325), - [anon_sym_out_GT_PIPE] = ACTIONS(2325), - [anon_sym_e_GT_PIPE] = ACTIONS(2325), - [anon_sym_o_GT_PIPE] = ACTIONS(2325), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2325), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2325), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2325), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2325), - [anon_sym_GT2] = ACTIONS(2327), - [anon_sym_DASH2] = ACTIONS(2325), - [anon_sym_STAR2] = ACTIONS(2327), - [anon_sym_and2] = ACTIONS(2325), - [anon_sym_xor2] = ACTIONS(2325), - [anon_sym_or2] = ACTIONS(2325), - [anon_sym_not_DASHin2] = ACTIONS(2325), - [anon_sym_has2] = ACTIONS(2325), - [anon_sym_not_DASHhas2] = ACTIONS(2325), - [anon_sym_starts_DASHwith2] = ACTIONS(2325), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2325), - [anon_sym_ends_DASHwith2] = ACTIONS(2325), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2325), - [anon_sym_EQ_EQ2] = ACTIONS(2325), - [anon_sym_BANG_EQ2] = ACTIONS(2325), - [anon_sym_LT2] = ACTIONS(2327), - [anon_sym_LT_EQ2] = ACTIONS(2325), - [anon_sym_GT_EQ2] = ACTIONS(2325), - [anon_sym_EQ_TILDE2] = ACTIONS(2325), - [anon_sym_BANG_TILDE2] = ACTIONS(2325), - [anon_sym_like2] = ACTIONS(2325), - [anon_sym_not_DASHlike2] = ACTIONS(2325), - [anon_sym_LPAREN2] = ACTIONS(2325), - [anon_sym_STAR_STAR2] = ACTIONS(2325), - [anon_sym_PLUS_PLUS2] = ACTIONS(2325), - [anon_sym_SLASH2] = ACTIONS(2327), - [anon_sym_mod2] = ACTIONS(2325), - [anon_sym_SLASH_SLASH2] = ACTIONS(2325), - [anon_sym_PLUS2] = ACTIONS(2327), - [anon_sym_bit_DASHshl2] = ACTIONS(2325), - [anon_sym_bit_DASHshr2] = ACTIONS(2325), - [anon_sym_bit_DASHand2] = ACTIONS(2325), - [anon_sym_bit_DASHxor2] = ACTIONS(2325), - [anon_sym_bit_DASHor2] = ACTIONS(2325), - [anon_sym_err_GT] = ACTIONS(2327), - [anon_sym_out_GT] = ACTIONS(2327), - [anon_sym_e_GT] = ACTIONS(2327), - [anon_sym_o_GT] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT] = ACTIONS(2327), - [anon_sym_err_GT_GT] = ACTIONS(2325), - [anon_sym_out_GT_GT] = ACTIONS(2325), - [anon_sym_e_GT_GT] = ACTIONS(2325), - [anon_sym_o_GT_GT] = ACTIONS(2325), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2325), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2325), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2325), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2325), - [sym__unquoted_pattern] = ACTIONS(2327), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1108)] = { - [aux_sym__repeat_newline] = STATE(982), + [aux_sym__repeat_newline] = STATE(967), [sym_comment] = STATE(1108), - [anon_sym_in] = ACTIONS(2499), - [sym__newline] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(2499), - [anon_sym_err_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_GT_PIPE] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), - [anon_sym_RPAREN] = ACTIONS(2499), - [anon_sym_GT2] = ACTIONS(2501), - [anon_sym_DASH2] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_STAR2] = ACTIONS(2501), - [anon_sym_and2] = ACTIONS(2499), - [anon_sym_xor2] = ACTIONS(2499), - [anon_sym_or2] = ACTIONS(2499), - [anon_sym_not_DASHin2] = ACTIONS(2499), - [anon_sym_has2] = ACTIONS(2499), - [anon_sym_not_DASHhas2] = ACTIONS(2499), - [anon_sym_starts_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), - [anon_sym_ends_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), - [anon_sym_EQ_EQ2] = ACTIONS(2499), - [anon_sym_BANG_EQ2] = ACTIONS(2499), - [anon_sym_LT2] = ACTIONS(2501), - [anon_sym_LT_EQ2] = ACTIONS(2499), - [anon_sym_GT_EQ2] = ACTIONS(2499), - [anon_sym_EQ_TILDE2] = ACTIONS(2499), - [anon_sym_BANG_TILDE2] = ACTIONS(2499), - [anon_sym_like2] = ACTIONS(2499), - [anon_sym_not_DASHlike2] = ACTIONS(2499), - [anon_sym_STAR_STAR2] = ACTIONS(2499), - [anon_sym_PLUS_PLUS2] = ACTIONS(2499), - [anon_sym_SLASH2] = ACTIONS(2501), - [anon_sym_mod2] = ACTIONS(2499), - [anon_sym_SLASH_SLASH2] = ACTIONS(2499), - [anon_sym_PLUS2] = ACTIONS(2501), - [anon_sym_bit_DASHshl2] = ACTIONS(2499), - [anon_sym_bit_DASHshr2] = ACTIONS(2499), - [anon_sym_bit_DASHand2] = ACTIONS(2499), - [anon_sym_bit_DASHxor2] = ACTIONS(2499), - [anon_sym_bit_DASHor2] = ACTIONS(2499), - [anon_sym_err_GT] = ACTIONS(2501), - [anon_sym_out_GT] = ACTIONS(2501), - [anon_sym_e_GT] = ACTIONS(2501), - [anon_sym_o_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT] = ACTIONS(2501), - [anon_sym_err_GT_GT] = ACTIONS(2499), - [anon_sym_out_GT_GT] = ACTIONS(2499), - [anon_sym_e_GT_GT] = ACTIONS(2499), - [anon_sym_o_GT_GT] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1109)] = { - [aux_sym__repeat_newline] = STATE(517), + [aux_sym__repeat_newline] = STATE(1002), [sym_comment] = STATE(1109), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1110)] = { + [aux_sym__repeat_newline] = STATE(1030), [sym_comment] = STATE(1110), - [ts_builtin_sym_end] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [sym__newline] = ACTIONS(1738), - [anon_sym_SEMI] = ACTIONS(1738), - [anon_sym_PIPE] = ACTIONS(1738), - [anon_sym_err_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_GT_PIPE] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1738), - [anon_sym_GT2] = ACTIONS(1740), - [anon_sym_DASH2] = ACTIONS(1738), - [anon_sym_STAR2] = ACTIONS(1740), - [anon_sym_and2] = ACTIONS(1738), - [anon_sym_xor2] = ACTIONS(1738), - [anon_sym_or2] = ACTIONS(1738), - [anon_sym_not_DASHin2] = ACTIONS(1738), - [anon_sym_has2] = ACTIONS(1738), - [anon_sym_not_DASHhas2] = ACTIONS(1738), - [anon_sym_starts_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1738), - [anon_sym_ends_DASHwith2] = ACTIONS(1738), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1738), - [anon_sym_EQ_EQ2] = ACTIONS(1738), - [anon_sym_BANG_EQ2] = ACTIONS(1738), - [anon_sym_LT2] = ACTIONS(1740), - [anon_sym_LT_EQ2] = ACTIONS(1738), - [anon_sym_GT_EQ2] = ACTIONS(1738), - [anon_sym_EQ_TILDE2] = ACTIONS(1738), - [anon_sym_BANG_TILDE2] = ACTIONS(1738), - [anon_sym_like2] = ACTIONS(1738), - [anon_sym_not_DASHlike2] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1738), - [anon_sym_STAR_STAR2] = ACTIONS(1738), - [anon_sym_PLUS_PLUS2] = ACTIONS(1738), - [anon_sym_SLASH2] = ACTIONS(1740), - [anon_sym_mod2] = ACTIONS(1738), - [anon_sym_SLASH_SLASH2] = ACTIONS(1738), - [anon_sym_PLUS2] = ACTIONS(1740), - [anon_sym_bit_DASHshl2] = ACTIONS(1738), - [anon_sym_bit_DASHshr2] = ACTIONS(1738), - [anon_sym_bit_DASHand2] = ACTIONS(1738), - [anon_sym_bit_DASHxor2] = ACTIONS(1738), - [anon_sym_bit_DASHor2] = ACTIONS(1738), - [anon_sym_err_GT] = ACTIONS(1740), - [anon_sym_out_GT] = ACTIONS(1740), - [anon_sym_e_GT] = ACTIONS(1740), - [anon_sym_o_GT] = ACTIONS(1740), - [anon_sym_err_PLUSout_GT] = ACTIONS(1740), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1740), - [anon_sym_o_PLUSe_GT] = ACTIONS(1740), - [anon_sym_e_PLUSo_GT] = ACTIONS(1740), - [anon_sym_err_GT_GT] = ACTIONS(1738), - [anon_sym_out_GT_GT] = ACTIONS(1738), - [anon_sym_e_GT_GT] = ACTIONS(1738), - [anon_sym_o_GT_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1738), - [sym__unquoted_pattern] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1111)] = { - [aux_sym__repeat_newline] = STATE(1093), + [aux_sym__repeat_newline] = STATE(1020), [sym_comment] = STATE(1111), - [anon_sym_in] = ACTIONS(2499), - [sym__newline] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(2499), - [anon_sym_err_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_GT_PIPE] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), - [anon_sym_RPAREN] = ACTIONS(2499), - [anon_sym_GT2] = ACTIONS(2501), - [anon_sym_DASH2] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_STAR2] = ACTIONS(2501), - [anon_sym_and2] = ACTIONS(2499), - [anon_sym_xor2] = ACTIONS(2499), - [anon_sym_or2] = ACTIONS(2499), - [anon_sym_not_DASHin2] = ACTIONS(2499), - [anon_sym_has2] = ACTIONS(2499), - [anon_sym_not_DASHhas2] = ACTIONS(2499), - [anon_sym_starts_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), - [anon_sym_ends_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), - [anon_sym_EQ_EQ2] = ACTIONS(2499), - [anon_sym_BANG_EQ2] = ACTIONS(2499), - [anon_sym_LT2] = ACTIONS(2501), - [anon_sym_LT_EQ2] = ACTIONS(2499), - [anon_sym_GT_EQ2] = ACTIONS(2499), - [anon_sym_EQ_TILDE2] = ACTIONS(2499), - [anon_sym_BANG_TILDE2] = ACTIONS(2499), - [anon_sym_like2] = ACTIONS(2499), - [anon_sym_not_DASHlike2] = ACTIONS(2499), - [anon_sym_STAR_STAR2] = ACTIONS(2499), - [anon_sym_PLUS_PLUS2] = ACTIONS(2499), - [anon_sym_SLASH2] = ACTIONS(2501), - [anon_sym_mod2] = ACTIONS(2499), - [anon_sym_SLASH_SLASH2] = ACTIONS(2499), - [anon_sym_PLUS2] = ACTIONS(2501), - [anon_sym_bit_DASHshl2] = ACTIONS(2499), - [anon_sym_bit_DASHshr2] = ACTIONS(2499), - [anon_sym_bit_DASHand2] = ACTIONS(2499), - [anon_sym_bit_DASHxor2] = ACTIONS(2499), - [anon_sym_bit_DASHor2] = ACTIONS(2499), - [anon_sym_err_GT] = ACTIONS(2501), - [anon_sym_out_GT] = ACTIONS(2501), - [anon_sym_e_GT] = ACTIONS(2501), - [anon_sym_o_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT] = ACTIONS(2501), - [anon_sym_err_GT_GT] = ACTIONS(2499), - [anon_sym_out_GT_GT] = ACTIONS(2499), - [anon_sym_e_GT_GT] = ACTIONS(2499), - [anon_sym_o_GT_GT] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1112)] = { - [aux_sym__repeat_newline] = STATE(517), + [aux_sym__repeat_newline] = STATE(968), [sym_comment] = STATE(1112), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1113)] = { - [aux_sym__repeat_newline] = STATE(1021), + [aux_sym__repeat_newline] = STATE(1049), [sym_comment] = STATE(1113), - [anon_sym_in] = ACTIONS(2198), - [sym__newline] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2198), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_err_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_GT_PIPE] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2198), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_GT2] = ACTIONS(2200), - [anon_sym_DASH2] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_STAR2] = ACTIONS(2200), - [anon_sym_and2] = ACTIONS(2198), - [anon_sym_xor2] = ACTIONS(2198), - [anon_sym_or2] = ACTIONS(2198), - [anon_sym_not_DASHin2] = ACTIONS(2198), - [anon_sym_has2] = ACTIONS(2198), - [anon_sym_not_DASHhas2] = ACTIONS(2198), - [anon_sym_starts_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2198), - [anon_sym_ends_DASHwith2] = ACTIONS(2198), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2198), - [anon_sym_EQ_EQ2] = ACTIONS(2198), - [anon_sym_BANG_EQ2] = ACTIONS(2198), - [anon_sym_LT2] = ACTIONS(2200), - [anon_sym_LT_EQ2] = ACTIONS(2198), - [anon_sym_GT_EQ2] = ACTIONS(2198), - [anon_sym_EQ_TILDE2] = ACTIONS(2198), - [anon_sym_BANG_TILDE2] = ACTIONS(2198), - [anon_sym_like2] = ACTIONS(2198), - [anon_sym_not_DASHlike2] = ACTIONS(2198), - [anon_sym_STAR_STAR2] = ACTIONS(2198), - [anon_sym_PLUS_PLUS2] = ACTIONS(2198), - [anon_sym_SLASH2] = ACTIONS(2200), - [anon_sym_mod2] = ACTIONS(2198), - [anon_sym_SLASH_SLASH2] = ACTIONS(2198), - [anon_sym_PLUS2] = ACTIONS(2200), - [anon_sym_bit_DASHshl2] = ACTIONS(2198), - [anon_sym_bit_DASHshr2] = ACTIONS(2198), - [anon_sym_bit_DASHand2] = ACTIONS(2198), - [anon_sym_bit_DASHxor2] = ACTIONS(2198), - [anon_sym_bit_DASHor2] = ACTIONS(2198), - [anon_sym_err_GT] = ACTIONS(2200), - [anon_sym_out_GT] = ACTIONS(2200), - [anon_sym_e_GT] = ACTIONS(2200), - [anon_sym_o_GT] = ACTIONS(2200), - [anon_sym_err_PLUSout_GT] = ACTIONS(2200), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2200), - [anon_sym_o_PLUSe_GT] = ACTIONS(2200), - [anon_sym_e_PLUSo_GT] = ACTIONS(2200), - [anon_sym_err_GT_GT] = ACTIONS(2198), - [anon_sym_out_GT_GT] = ACTIONS(2198), - [anon_sym_e_GT_GT] = ACTIONS(2198), - [anon_sym_o_GT_GT] = ACTIONS(2198), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2198), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2198), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2198), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2198), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1114)] = { - [aux_sym__repeat_newline] = STATE(974), + [aux_sym__repeat_newline] = STATE(1035), [sym_comment] = STATE(1114), - [anon_sym_in] = ACTIONS(2499), - [sym__newline] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2499), - [anon_sym_PIPE] = ACTIONS(2499), - [anon_sym_err_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_GT_PIPE] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2499), - [anon_sym_RPAREN] = ACTIONS(2499), - [anon_sym_GT2] = ACTIONS(2501), - [anon_sym_DASH2] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2499), - [anon_sym_STAR2] = ACTIONS(2501), - [anon_sym_and2] = ACTIONS(2499), - [anon_sym_xor2] = ACTIONS(2499), - [anon_sym_or2] = ACTIONS(2499), - [anon_sym_not_DASHin2] = ACTIONS(2499), - [anon_sym_has2] = ACTIONS(2499), - [anon_sym_not_DASHhas2] = ACTIONS(2499), - [anon_sym_starts_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2499), - [anon_sym_ends_DASHwith2] = ACTIONS(2499), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2499), - [anon_sym_EQ_EQ2] = ACTIONS(2499), - [anon_sym_BANG_EQ2] = ACTIONS(2499), - [anon_sym_LT2] = ACTIONS(2501), - [anon_sym_LT_EQ2] = ACTIONS(2499), - [anon_sym_GT_EQ2] = ACTIONS(2499), - [anon_sym_EQ_TILDE2] = ACTIONS(2499), - [anon_sym_BANG_TILDE2] = ACTIONS(2499), - [anon_sym_like2] = ACTIONS(2499), - [anon_sym_not_DASHlike2] = ACTIONS(2499), - [anon_sym_STAR_STAR2] = ACTIONS(2499), - [anon_sym_PLUS_PLUS2] = ACTIONS(2499), - [anon_sym_SLASH2] = ACTIONS(2501), - [anon_sym_mod2] = ACTIONS(2499), - [anon_sym_SLASH_SLASH2] = ACTIONS(2499), - [anon_sym_PLUS2] = ACTIONS(2501), - [anon_sym_bit_DASHshl2] = ACTIONS(2499), - [anon_sym_bit_DASHshr2] = ACTIONS(2499), - [anon_sym_bit_DASHand2] = ACTIONS(2499), - [anon_sym_bit_DASHxor2] = ACTIONS(2499), - [anon_sym_bit_DASHor2] = ACTIONS(2499), - [anon_sym_err_GT] = ACTIONS(2501), - [anon_sym_out_GT] = ACTIONS(2501), - [anon_sym_e_GT] = ACTIONS(2501), - [anon_sym_o_GT] = ACTIONS(2501), - [anon_sym_err_PLUSout_GT] = ACTIONS(2501), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2501), - [anon_sym_o_PLUSe_GT] = ACTIONS(2501), - [anon_sym_e_PLUSo_GT] = ACTIONS(2501), - [anon_sym_err_GT_GT] = ACTIONS(2499), - [anon_sym_out_GT_GT] = ACTIONS(2499), - [anon_sym_e_GT_GT] = ACTIONS(2499), - [anon_sym_o_GT_GT] = ACTIONS(2499), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2499), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2499), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2499), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2499), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1115)] = { - [aux_sym__repeat_newline] = STATE(517), + [aux_sym__repeat_newline] = STATE(1068), [sym_comment] = STATE(1115), - [anon_sym_in] = ACTIONS(2736), - [sym__newline] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_err_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_GT_PIPE] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_GT2] = ACTIONS(2738), - [anon_sym_DASH2] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_STAR2] = ACTIONS(2738), - [anon_sym_and2] = ACTIONS(2736), - [anon_sym_xor2] = ACTIONS(2736), - [anon_sym_or2] = ACTIONS(2736), - [anon_sym_not_DASHin2] = ACTIONS(2736), - [anon_sym_has2] = ACTIONS(2736), - [anon_sym_not_DASHhas2] = ACTIONS(2736), - [anon_sym_starts_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2736), - [anon_sym_ends_DASHwith2] = ACTIONS(2736), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2736), - [anon_sym_EQ_EQ2] = ACTIONS(2736), - [anon_sym_BANG_EQ2] = ACTIONS(2736), - [anon_sym_LT2] = ACTIONS(2738), - [anon_sym_LT_EQ2] = ACTIONS(2736), - [anon_sym_GT_EQ2] = ACTIONS(2736), - [anon_sym_EQ_TILDE2] = ACTIONS(2736), - [anon_sym_BANG_TILDE2] = ACTIONS(2736), - [anon_sym_like2] = ACTIONS(2736), - [anon_sym_not_DASHlike2] = ACTIONS(2736), - [anon_sym_STAR_STAR2] = ACTIONS(2736), - [anon_sym_PLUS_PLUS2] = ACTIONS(2736), - [anon_sym_SLASH2] = ACTIONS(2738), - [anon_sym_mod2] = ACTIONS(2736), - [anon_sym_SLASH_SLASH2] = ACTIONS(2736), - [anon_sym_PLUS2] = ACTIONS(2738), - [anon_sym_bit_DASHshl2] = ACTIONS(2736), - [anon_sym_bit_DASHshr2] = ACTIONS(2736), - [anon_sym_bit_DASHand2] = ACTIONS(2736), - [anon_sym_bit_DASHxor2] = ACTIONS(2736), - [anon_sym_bit_DASHor2] = ACTIONS(2736), - [anon_sym_err_GT] = ACTIONS(2738), - [anon_sym_out_GT] = ACTIONS(2738), - [anon_sym_e_GT] = ACTIONS(2738), - [anon_sym_o_GT] = ACTIONS(2738), - [anon_sym_err_PLUSout_GT] = ACTIONS(2738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2738), - [anon_sym_o_PLUSe_GT] = ACTIONS(2738), - [anon_sym_e_PLUSo_GT] = ACTIONS(2738), - [anon_sym_err_GT_GT] = ACTIONS(2736), - [anon_sym_out_GT_GT] = ACTIONS(2736), - [anon_sym_e_GT_GT] = ACTIONS(2736), - [anon_sym_o_GT_GT] = ACTIONS(2736), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2736), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2736), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2736), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2736), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1116)] = { + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1116), - [ts_builtin_sym_end] = ACTIONS(1942), - [anon_sym_in] = ACTIONS(1942), - [sym__newline] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym_PIPE] = ACTIONS(1942), - [anon_sym_err_GT_PIPE] = ACTIONS(1942), - [anon_sym_out_GT_PIPE] = ACTIONS(1942), - [anon_sym_e_GT_PIPE] = ACTIONS(1942), - [anon_sym_o_GT_PIPE] = ACTIONS(1942), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1942), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1942), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1942), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1942), - [anon_sym_GT2] = ACTIONS(1944), - [anon_sym_DASH2] = ACTIONS(1942), - [anon_sym_STAR2] = ACTIONS(1944), - [anon_sym_and2] = ACTIONS(1942), - [anon_sym_xor2] = ACTIONS(1942), - [anon_sym_or2] = ACTIONS(1942), - [anon_sym_not_DASHin2] = ACTIONS(1942), - [anon_sym_has2] = ACTIONS(1942), - [anon_sym_not_DASHhas2] = ACTIONS(1942), - [anon_sym_starts_DASHwith2] = ACTIONS(1942), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1942), - [anon_sym_ends_DASHwith2] = ACTIONS(1942), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1942), - [anon_sym_EQ_EQ2] = ACTIONS(1942), - [anon_sym_BANG_EQ2] = ACTIONS(1942), - [anon_sym_LT2] = ACTIONS(1944), - [anon_sym_LT_EQ2] = ACTIONS(1942), - [anon_sym_GT_EQ2] = ACTIONS(1942), - [anon_sym_EQ_TILDE2] = ACTIONS(1942), - [anon_sym_BANG_TILDE2] = ACTIONS(1942), - [anon_sym_like2] = ACTIONS(1942), - [anon_sym_not_DASHlike2] = ACTIONS(1942), - [anon_sym_LPAREN2] = ACTIONS(1946), - [anon_sym_STAR_STAR2] = ACTIONS(1942), - [anon_sym_PLUS_PLUS2] = ACTIONS(1942), - [anon_sym_SLASH2] = ACTIONS(1944), - [anon_sym_mod2] = ACTIONS(1942), - [anon_sym_SLASH_SLASH2] = ACTIONS(1942), - [anon_sym_PLUS2] = ACTIONS(1944), - [anon_sym_bit_DASHshl2] = ACTIONS(1942), - [anon_sym_bit_DASHshr2] = ACTIONS(1942), - [anon_sym_bit_DASHand2] = ACTIONS(1942), - [anon_sym_bit_DASHxor2] = ACTIONS(1942), - [anon_sym_bit_DASHor2] = ACTIONS(1942), - [anon_sym_err_GT] = ACTIONS(1944), - [anon_sym_out_GT] = ACTIONS(1944), - [anon_sym_e_GT] = ACTIONS(1944), - [anon_sym_o_GT] = ACTIONS(1944), - [anon_sym_err_PLUSout_GT] = ACTIONS(1944), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1944), - [anon_sym_o_PLUSe_GT] = ACTIONS(1944), - [anon_sym_e_PLUSo_GT] = ACTIONS(1944), - [anon_sym_err_GT_GT] = ACTIONS(1942), - [anon_sym_out_GT_GT] = ACTIONS(1942), - [anon_sym_e_GT_GT] = ACTIONS(1942), - [anon_sym_o_GT_GT] = ACTIONS(1942), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1942), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1942), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1942), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1942), - [sym__unquoted_pattern] = ACTIONS(1598), + [anon_sym_in] = ACTIONS(2644), + [sym__newline] = ACTIONS(2644), + [anon_sym_SEMI] = ACTIONS(2644), + [anon_sym_PIPE] = ACTIONS(2644), + [anon_sym_err_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_GT_PIPE] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2644), + [anon_sym_RPAREN] = ACTIONS(2644), + [anon_sym_GT2] = ACTIONS(2646), + [anon_sym_DASH2] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_STAR2] = ACTIONS(2646), + [anon_sym_and2] = ACTIONS(2644), + [anon_sym_xor2] = ACTIONS(2644), + [anon_sym_or2] = ACTIONS(2644), + [anon_sym_not_DASHin2] = ACTIONS(2644), + [anon_sym_has2] = ACTIONS(2644), + [anon_sym_not_DASHhas2] = ACTIONS(2644), + [anon_sym_starts_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2644), + [anon_sym_ends_DASHwith2] = ACTIONS(2644), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2644), + [anon_sym_EQ_EQ2] = ACTIONS(2644), + [anon_sym_BANG_EQ2] = ACTIONS(2644), + [anon_sym_LT2] = ACTIONS(2646), + [anon_sym_LT_EQ2] = ACTIONS(2644), + [anon_sym_GT_EQ2] = ACTIONS(2644), + [anon_sym_EQ_TILDE2] = ACTIONS(2644), + [anon_sym_BANG_TILDE2] = ACTIONS(2644), + [anon_sym_like2] = ACTIONS(2644), + [anon_sym_not_DASHlike2] = ACTIONS(2644), + [anon_sym_STAR_STAR2] = ACTIONS(2644), + [anon_sym_PLUS_PLUS2] = ACTIONS(2644), + [anon_sym_SLASH2] = ACTIONS(2646), + [anon_sym_mod2] = ACTIONS(2644), + [anon_sym_SLASH_SLASH2] = ACTIONS(2644), + [anon_sym_PLUS2] = ACTIONS(2646), + [anon_sym_bit_DASHshl2] = ACTIONS(2644), + [anon_sym_bit_DASHshr2] = ACTIONS(2644), + [anon_sym_bit_DASHand2] = ACTIONS(2644), + [anon_sym_bit_DASHxor2] = ACTIONS(2644), + [anon_sym_bit_DASHor2] = ACTIONS(2644), + [anon_sym_err_GT] = ACTIONS(2646), + [anon_sym_out_GT] = ACTIONS(2646), + [anon_sym_e_GT] = ACTIONS(2646), + [anon_sym_o_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT] = ACTIONS(2646), + [anon_sym_err_GT_GT] = ACTIONS(2644), + [anon_sym_out_GT_GT] = ACTIONS(2644), + [anon_sym_e_GT_GT] = ACTIONS(2644), + [anon_sym_o_GT_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2644), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1117)] = { - [aux_sym__repeat_newline] = STATE(1353), - [sym__expression_parenthesized] = STATE(4230), - [sym_expr_unary] = STATE(1252), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary_parenthesized] = STATE(1252), - [sym__expr_binary_expression_parenthesized] = STATE(2115), - [sym_expr_parenthesized] = STATE(824), - [sym_val_range] = STATE(1252), - [sym__value] = STATE(1252), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1826), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), + [aux_sym__repeat_newline] = STATE(1075), [sym_comment] = STATE(1117), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(2656), - [aux_sym_cmd_identifier_token3] = ACTIONS(189), - [aux_sym_cmd_identifier_token4] = ACTIONS(189), - [aux_sym_cmd_identifier_token5] = ACTIONS(189), - [sym__newline] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1978), - [aux_sym__val_number_decimal_token3] = ACTIONS(1980), - [aux_sym__val_number_decimal_token4] = ACTIONS(1980), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(211), }, [STATE(1118)] = { + [aux_sym__repeat_newline] = STATE(969), [sym_comment] = STATE(1118), - [ts_builtin_sym_end] = ACTIONS(2562), - [anon_sym_in] = ACTIONS(2562), - [sym__newline] = ACTIONS(2562), - [anon_sym_SEMI] = ACTIONS(2562), - [anon_sym_PIPE] = ACTIONS(2562), - [anon_sym_err_GT_PIPE] = ACTIONS(2562), - [anon_sym_out_GT_PIPE] = ACTIONS(2562), - [anon_sym_e_GT_PIPE] = ACTIONS(2562), - [anon_sym_o_GT_PIPE] = ACTIONS(2562), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2562), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2562), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2562), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2562), - [anon_sym_GT2] = ACTIONS(2564), - [anon_sym_DASH2] = ACTIONS(2562), - [anon_sym_STAR2] = ACTIONS(2564), - [anon_sym_and2] = ACTIONS(2562), - [anon_sym_xor2] = ACTIONS(2562), - [anon_sym_or2] = ACTIONS(2562), - [anon_sym_not_DASHin2] = ACTIONS(2562), - [anon_sym_has2] = ACTIONS(2562), - [anon_sym_not_DASHhas2] = ACTIONS(2562), - [anon_sym_starts_DASHwith2] = ACTIONS(2562), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2562), - [anon_sym_ends_DASHwith2] = ACTIONS(2562), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2562), - [anon_sym_EQ_EQ2] = ACTIONS(2562), - [anon_sym_BANG_EQ2] = ACTIONS(2562), - [anon_sym_LT2] = ACTIONS(2564), - [anon_sym_LT_EQ2] = ACTIONS(2562), - [anon_sym_GT_EQ2] = ACTIONS(2562), - [anon_sym_EQ_TILDE2] = ACTIONS(2562), - [anon_sym_BANG_TILDE2] = ACTIONS(2562), - [anon_sym_like2] = ACTIONS(2562), - [anon_sym_not_DASHlike2] = ACTIONS(2562), - [anon_sym_LPAREN2] = ACTIONS(2566), - [anon_sym_STAR_STAR2] = ACTIONS(2562), - [anon_sym_PLUS_PLUS2] = ACTIONS(2562), - [anon_sym_SLASH2] = ACTIONS(2564), - [anon_sym_mod2] = ACTIONS(2562), - [anon_sym_SLASH_SLASH2] = ACTIONS(2562), - [anon_sym_PLUS2] = ACTIONS(2564), - [anon_sym_bit_DASHshl2] = ACTIONS(2562), - [anon_sym_bit_DASHshr2] = ACTIONS(2562), - [anon_sym_bit_DASHand2] = ACTIONS(2562), - [anon_sym_bit_DASHxor2] = ACTIONS(2562), - [anon_sym_bit_DASHor2] = ACTIONS(2562), - [anon_sym_err_GT] = ACTIONS(2564), - [anon_sym_out_GT] = ACTIONS(2564), - [anon_sym_e_GT] = ACTIONS(2564), - [anon_sym_o_GT] = ACTIONS(2564), - [anon_sym_err_PLUSout_GT] = ACTIONS(2564), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2564), - [anon_sym_o_PLUSe_GT] = ACTIONS(2564), - [anon_sym_e_PLUSo_GT] = ACTIONS(2564), - [anon_sym_err_GT_GT] = ACTIONS(2562), - [anon_sym_out_GT_GT] = ACTIONS(2562), - [anon_sym_e_GT_GT] = ACTIONS(2562), - [anon_sym_o_GT_GT] = ACTIONS(2562), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2562), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2562), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2562), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2562), - [sym__unquoted_pattern] = ACTIONS(2568), + [anon_sym_in] = ACTIONS(2263), + [sym__newline] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_err_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_GT_PIPE] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_GT2] = ACTIONS(2265), + [anon_sym_DASH2] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_STAR2] = ACTIONS(2265), + [anon_sym_and2] = ACTIONS(2263), + [anon_sym_xor2] = ACTIONS(2263), + [anon_sym_or2] = ACTIONS(2263), + [anon_sym_not_DASHin2] = ACTIONS(2263), + [anon_sym_has2] = ACTIONS(2263), + [anon_sym_not_DASHhas2] = ACTIONS(2263), + [anon_sym_starts_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2263), + [anon_sym_ends_DASHwith2] = ACTIONS(2263), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2263), + [anon_sym_EQ_EQ2] = ACTIONS(2263), + [anon_sym_BANG_EQ2] = ACTIONS(2263), + [anon_sym_LT2] = ACTIONS(2265), + [anon_sym_LT_EQ2] = ACTIONS(2263), + [anon_sym_GT_EQ2] = ACTIONS(2263), + [anon_sym_EQ_TILDE2] = ACTIONS(2263), + [anon_sym_BANG_TILDE2] = ACTIONS(2263), + [anon_sym_like2] = ACTIONS(2263), + [anon_sym_not_DASHlike2] = ACTIONS(2263), + [anon_sym_STAR_STAR2] = ACTIONS(2263), + [anon_sym_PLUS_PLUS2] = ACTIONS(2263), + [anon_sym_SLASH2] = ACTIONS(2265), + [anon_sym_mod2] = ACTIONS(2263), + [anon_sym_SLASH_SLASH2] = ACTIONS(2263), + [anon_sym_PLUS2] = ACTIONS(2265), + [anon_sym_bit_DASHshl2] = ACTIONS(2263), + [anon_sym_bit_DASHshr2] = ACTIONS(2263), + [anon_sym_bit_DASHand2] = ACTIONS(2263), + [anon_sym_bit_DASHxor2] = ACTIONS(2263), + [anon_sym_bit_DASHor2] = ACTIONS(2263), + [anon_sym_err_GT] = ACTIONS(2265), + [anon_sym_out_GT] = ACTIONS(2265), + [anon_sym_e_GT] = ACTIONS(2265), + [anon_sym_o_GT] = ACTIONS(2265), + [anon_sym_err_PLUSout_GT] = ACTIONS(2265), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), + [anon_sym_o_PLUSe_GT] = ACTIONS(2265), + [anon_sym_e_PLUSo_GT] = ACTIONS(2265), + [anon_sym_err_GT_GT] = ACTIONS(2263), + [anon_sym_out_GT_GT] = ACTIONS(2263), + [anon_sym_e_GT_GT] = ACTIONS(2263), + [anon_sym_o_GT_GT] = ACTIONS(2263), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2263), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2263), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2263), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2263), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1119)] = { - [aux_sym__repeat_newline] = STATE(517), + [aux_sym__repeat_newline] = STATE(1077), [sym_comment] = STATE(1119), - [anon_sym_in] = ACTIONS(2658), - [sym__newline] = ACTIONS(2658), - [anon_sym_SEMI] = ACTIONS(2658), - [anon_sym_PIPE] = ACTIONS(2658), - [anon_sym_err_GT_PIPE] = ACTIONS(2658), - [anon_sym_out_GT_PIPE] = ACTIONS(2658), - [anon_sym_e_GT_PIPE] = ACTIONS(2658), - [anon_sym_o_GT_PIPE] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2658), - [anon_sym_RPAREN] = ACTIONS(2658), - [anon_sym_GT2] = ACTIONS(2660), - [anon_sym_DASH2] = ACTIONS(2658), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_STAR2] = ACTIONS(2660), - [anon_sym_and2] = ACTIONS(2658), - [anon_sym_xor2] = ACTIONS(2658), - [anon_sym_or2] = ACTIONS(2658), - [anon_sym_not_DASHin2] = ACTIONS(2658), - [anon_sym_has2] = ACTIONS(2658), - [anon_sym_not_DASHhas2] = ACTIONS(2658), - [anon_sym_starts_DASHwith2] = ACTIONS(2658), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2658), - [anon_sym_ends_DASHwith2] = ACTIONS(2658), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2658), - [anon_sym_EQ_EQ2] = ACTIONS(2658), - [anon_sym_BANG_EQ2] = ACTIONS(2658), - [anon_sym_LT2] = ACTIONS(2660), - [anon_sym_LT_EQ2] = ACTIONS(2658), - [anon_sym_GT_EQ2] = ACTIONS(2658), - [anon_sym_EQ_TILDE2] = ACTIONS(2658), - [anon_sym_BANG_TILDE2] = ACTIONS(2658), - [anon_sym_like2] = ACTIONS(2658), - [anon_sym_not_DASHlike2] = ACTIONS(2658), - [anon_sym_STAR_STAR2] = ACTIONS(2658), - [anon_sym_PLUS_PLUS2] = ACTIONS(2658), - [anon_sym_SLASH2] = ACTIONS(2660), - [anon_sym_mod2] = ACTIONS(2658), - [anon_sym_SLASH_SLASH2] = ACTIONS(2658), - [anon_sym_PLUS2] = ACTIONS(2660), - [anon_sym_bit_DASHshl2] = ACTIONS(2658), - [anon_sym_bit_DASHshr2] = ACTIONS(2658), - [anon_sym_bit_DASHand2] = ACTIONS(2658), - [anon_sym_bit_DASHxor2] = ACTIONS(2658), - [anon_sym_bit_DASHor2] = ACTIONS(2658), - [anon_sym_err_GT] = ACTIONS(2660), - [anon_sym_out_GT] = ACTIONS(2660), - [anon_sym_e_GT] = ACTIONS(2660), - [anon_sym_o_GT] = ACTIONS(2660), - [anon_sym_err_PLUSout_GT] = ACTIONS(2660), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2660), - [anon_sym_o_PLUSe_GT] = ACTIONS(2660), - [anon_sym_e_PLUSo_GT] = ACTIONS(2660), - [anon_sym_err_GT_GT] = ACTIONS(2658), - [anon_sym_out_GT_GT] = ACTIONS(2658), - [anon_sym_e_GT_GT] = ACTIONS(2658), - [anon_sym_o_GT_GT] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2658), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1120)] = { - [aux_sym__repeat_newline] = STATE(517), + [aux_sym__repeat_newline] = STATE(1046), [sym_comment] = STATE(1120), - [anon_sym_in] = ACTIONS(2658), - [sym__newline] = ACTIONS(2658), - [anon_sym_SEMI] = ACTIONS(2658), - [anon_sym_PIPE] = ACTIONS(2658), - [anon_sym_err_GT_PIPE] = ACTIONS(2658), - [anon_sym_out_GT_PIPE] = ACTIONS(2658), - [anon_sym_e_GT_PIPE] = ACTIONS(2658), - [anon_sym_o_GT_PIPE] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2658), - [anon_sym_RPAREN] = ACTIONS(2658), - [anon_sym_GT2] = ACTIONS(2660), - [anon_sym_DASH2] = ACTIONS(2658), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_STAR2] = ACTIONS(2660), - [anon_sym_and2] = ACTIONS(2658), - [anon_sym_xor2] = ACTIONS(2658), - [anon_sym_or2] = ACTIONS(2658), - [anon_sym_not_DASHin2] = ACTIONS(2658), - [anon_sym_has2] = ACTIONS(2658), - [anon_sym_not_DASHhas2] = ACTIONS(2658), - [anon_sym_starts_DASHwith2] = ACTIONS(2658), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2658), - [anon_sym_ends_DASHwith2] = ACTIONS(2658), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2658), - [anon_sym_EQ_EQ2] = ACTIONS(2658), - [anon_sym_BANG_EQ2] = ACTIONS(2658), - [anon_sym_LT2] = ACTIONS(2660), - [anon_sym_LT_EQ2] = ACTIONS(2658), - [anon_sym_GT_EQ2] = ACTIONS(2658), - [anon_sym_EQ_TILDE2] = ACTIONS(2658), - [anon_sym_BANG_TILDE2] = ACTIONS(2658), - [anon_sym_like2] = ACTIONS(2658), - [anon_sym_not_DASHlike2] = ACTIONS(2658), - [anon_sym_STAR_STAR2] = ACTIONS(2658), - [anon_sym_PLUS_PLUS2] = ACTIONS(2658), - [anon_sym_SLASH2] = ACTIONS(2660), - [anon_sym_mod2] = ACTIONS(2658), - [anon_sym_SLASH_SLASH2] = ACTIONS(2658), - [anon_sym_PLUS2] = ACTIONS(2660), - [anon_sym_bit_DASHshl2] = ACTIONS(2658), - [anon_sym_bit_DASHshr2] = ACTIONS(2658), - [anon_sym_bit_DASHand2] = ACTIONS(2658), - [anon_sym_bit_DASHxor2] = ACTIONS(2658), - [anon_sym_bit_DASHor2] = ACTIONS(2658), - [anon_sym_err_GT] = ACTIONS(2660), - [anon_sym_out_GT] = ACTIONS(2660), - [anon_sym_e_GT] = ACTIONS(2660), - [anon_sym_o_GT] = ACTIONS(2660), - [anon_sym_err_PLUSout_GT] = ACTIONS(2660), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2660), - [anon_sym_o_PLUSe_GT] = ACTIONS(2660), - [anon_sym_e_PLUSo_GT] = ACTIONS(2660), - [anon_sym_err_GT_GT] = ACTIONS(2658), - [anon_sym_out_GT_GT] = ACTIONS(2658), - [anon_sym_e_GT_GT] = ACTIONS(2658), - [anon_sym_o_GT_GT] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2658), + [anon_sym_in] = ACTIONS(2340), + [sym__newline] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_err_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_GT_PIPE] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2340), + [anon_sym_RPAREN] = ACTIONS(2340), + [anon_sym_GT2] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_STAR2] = ACTIONS(2342), + [anon_sym_and2] = ACTIONS(2340), + [anon_sym_xor2] = ACTIONS(2340), + [anon_sym_or2] = ACTIONS(2340), + [anon_sym_not_DASHin2] = ACTIONS(2340), + [anon_sym_has2] = ACTIONS(2340), + [anon_sym_not_DASHhas2] = ACTIONS(2340), + [anon_sym_starts_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2340), + [anon_sym_ends_DASHwith2] = ACTIONS(2340), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2340), + [anon_sym_EQ_EQ2] = ACTIONS(2340), + [anon_sym_BANG_EQ2] = ACTIONS(2340), + [anon_sym_LT2] = ACTIONS(2342), + [anon_sym_LT_EQ2] = ACTIONS(2340), + [anon_sym_GT_EQ2] = ACTIONS(2340), + [anon_sym_EQ_TILDE2] = ACTIONS(2340), + [anon_sym_BANG_TILDE2] = ACTIONS(2340), + [anon_sym_like2] = ACTIONS(2340), + [anon_sym_not_DASHlike2] = ACTIONS(2340), + [anon_sym_STAR_STAR2] = ACTIONS(2340), + [anon_sym_PLUS_PLUS2] = ACTIONS(2340), + [anon_sym_SLASH2] = ACTIONS(2342), + [anon_sym_mod2] = ACTIONS(2340), + [anon_sym_SLASH_SLASH2] = ACTIONS(2340), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_bit_DASHshl2] = ACTIONS(2340), + [anon_sym_bit_DASHshr2] = ACTIONS(2340), + [anon_sym_bit_DASHand2] = ACTIONS(2340), + [anon_sym_bit_DASHxor2] = ACTIONS(2340), + [anon_sym_bit_DASHor2] = ACTIONS(2340), + [anon_sym_err_GT] = ACTIONS(2342), + [anon_sym_out_GT] = ACTIONS(2342), + [anon_sym_e_GT] = ACTIONS(2342), + [anon_sym_o_GT] = ACTIONS(2342), + [anon_sym_err_PLUSout_GT] = ACTIONS(2342), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2342), + [anon_sym_o_PLUSe_GT] = ACTIONS(2342), + [anon_sym_e_PLUSo_GT] = ACTIONS(2342), + [anon_sym_err_GT_GT] = ACTIONS(2340), + [anon_sym_out_GT_GT] = ACTIONS(2340), + [anon_sym_e_GT_GT] = ACTIONS(2340), + [anon_sym_o_GT_GT] = ACTIONS(2340), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2340), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2340), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2340), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1121)] = { - [aux_sym__repeat_newline] = STATE(517), + [aux_sym__repeat_newline] = STATE(1082), [sym_comment] = STATE(1121), - [anon_sym_in] = ACTIONS(2658), - [sym__newline] = ACTIONS(2658), - [anon_sym_SEMI] = ACTIONS(2658), - [anon_sym_PIPE] = ACTIONS(2658), - [anon_sym_err_GT_PIPE] = ACTIONS(2658), - [anon_sym_out_GT_PIPE] = ACTIONS(2658), - [anon_sym_e_GT_PIPE] = ACTIONS(2658), - [anon_sym_o_GT_PIPE] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2658), - [anon_sym_RPAREN] = ACTIONS(2658), - [anon_sym_GT2] = ACTIONS(2660), - [anon_sym_DASH2] = ACTIONS(2658), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_STAR2] = ACTIONS(2660), - [anon_sym_and2] = ACTIONS(2658), - [anon_sym_xor2] = ACTIONS(2658), - [anon_sym_or2] = ACTIONS(2658), - [anon_sym_not_DASHin2] = ACTIONS(2658), - [anon_sym_has2] = ACTIONS(2658), - [anon_sym_not_DASHhas2] = ACTIONS(2658), - [anon_sym_starts_DASHwith2] = ACTIONS(2658), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2658), - [anon_sym_ends_DASHwith2] = ACTIONS(2658), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2658), - [anon_sym_EQ_EQ2] = ACTIONS(2658), - [anon_sym_BANG_EQ2] = ACTIONS(2658), - [anon_sym_LT2] = ACTIONS(2660), - [anon_sym_LT_EQ2] = ACTIONS(2658), - [anon_sym_GT_EQ2] = ACTIONS(2658), - [anon_sym_EQ_TILDE2] = ACTIONS(2658), - [anon_sym_BANG_TILDE2] = ACTIONS(2658), - [anon_sym_like2] = ACTIONS(2658), - [anon_sym_not_DASHlike2] = ACTIONS(2658), - [anon_sym_STAR_STAR2] = ACTIONS(2658), - [anon_sym_PLUS_PLUS2] = ACTIONS(2658), - [anon_sym_SLASH2] = ACTIONS(2660), - [anon_sym_mod2] = ACTIONS(2658), - [anon_sym_SLASH_SLASH2] = ACTIONS(2658), - [anon_sym_PLUS2] = ACTIONS(2660), - [anon_sym_bit_DASHshl2] = ACTIONS(2658), - [anon_sym_bit_DASHshr2] = ACTIONS(2658), - [anon_sym_bit_DASHand2] = ACTIONS(2658), - [anon_sym_bit_DASHxor2] = ACTIONS(2658), - [anon_sym_bit_DASHor2] = ACTIONS(2658), - [anon_sym_err_GT] = ACTIONS(2660), - [anon_sym_out_GT] = ACTIONS(2660), - [anon_sym_e_GT] = ACTIONS(2660), - [anon_sym_o_GT] = ACTIONS(2660), - [anon_sym_err_PLUSout_GT] = ACTIONS(2660), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2660), - [anon_sym_o_PLUSe_GT] = ACTIONS(2660), - [anon_sym_e_PLUSo_GT] = ACTIONS(2660), - [anon_sym_err_GT_GT] = ACTIONS(2658), - [anon_sym_out_GT_GT] = ACTIONS(2658), - [anon_sym_e_GT_GT] = ACTIONS(2658), - [anon_sym_o_GT_GT] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2658), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1122)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1122), - [anon_sym_in] = ACTIONS(2658), - [sym__newline] = ACTIONS(2658), - [anon_sym_SEMI] = ACTIONS(2658), - [anon_sym_PIPE] = ACTIONS(2658), - [anon_sym_err_GT_PIPE] = ACTIONS(2658), - [anon_sym_out_GT_PIPE] = ACTIONS(2658), - [anon_sym_e_GT_PIPE] = ACTIONS(2658), - [anon_sym_o_GT_PIPE] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2658), - [anon_sym_RPAREN] = ACTIONS(2658), - [anon_sym_GT2] = ACTIONS(2660), - [anon_sym_DASH2] = ACTIONS(2658), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_STAR2] = ACTIONS(2660), - [anon_sym_and2] = ACTIONS(2658), - [anon_sym_xor2] = ACTIONS(2658), - [anon_sym_or2] = ACTIONS(2658), - [anon_sym_not_DASHin2] = ACTIONS(2658), - [anon_sym_has2] = ACTIONS(2658), - [anon_sym_not_DASHhas2] = ACTIONS(2658), - [anon_sym_starts_DASHwith2] = ACTIONS(2658), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2658), - [anon_sym_ends_DASHwith2] = ACTIONS(2658), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2658), - [anon_sym_EQ_EQ2] = ACTIONS(2658), - [anon_sym_BANG_EQ2] = ACTIONS(2658), - [anon_sym_LT2] = ACTIONS(2660), - [anon_sym_LT_EQ2] = ACTIONS(2658), - [anon_sym_GT_EQ2] = ACTIONS(2658), - [anon_sym_EQ_TILDE2] = ACTIONS(2658), - [anon_sym_BANG_TILDE2] = ACTIONS(2658), - [anon_sym_like2] = ACTIONS(2658), - [anon_sym_not_DASHlike2] = ACTIONS(2658), - [anon_sym_STAR_STAR2] = ACTIONS(2658), - [anon_sym_PLUS_PLUS2] = ACTIONS(2658), - [anon_sym_SLASH2] = ACTIONS(2660), - [anon_sym_mod2] = ACTIONS(2658), - [anon_sym_SLASH_SLASH2] = ACTIONS(2658), - [anon_sym_PLUS2] = ACTIONS(2660), - [anon_sym_bit_DASHshl2] = ACTIONS(2658), - [anon_sym_bit_DASHshr2] = ACTIONS(2658), - [anon_sym_bit_DASHand2] = ACTIONS(2658), - [anon_sym_bit_DASHxor2] = ACTIONS(2658), - [anon_sym_bit_DASHor2] = ACTIONS(2658), - [anon_sym_err_GT] = ACTIONS(2660), - [anon_sym_out_GT] = ACTIONS(2660), - [anon_sym_e_GT] = ACTIONS(2660), - [anon_sym_o_GT] = ACTIONS(2660), - [anon_sym_err_PLUSout_GT] = ACTIONS(2660), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2660), - [anon_sym_o_PLUSe_GT] = ACTIONS(2660), - [anon_sym_e_PLUSo_GT] = ACTIONS(2660), - [anon_sym_err_GT_GT] = ACTIONS(2658), - [anon_sym_out_GT_GT] = ACTIONS(2658), - [anon_sym_e_GT_GT] = ACTIONS(2658), - [anon_sym_o_GT_GT] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2658), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1123)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1123), - [anon_sym_in] = ACTIONS(2658), - [sym__newline] = ACTIONS(2658), - [anon_sym_SEMI] = ACTIONS(2658), - [anon_sym_PIPE] = ACTIONS(2658), - [anon_sym_err_GT_PIPE] = ACTIONS(2658), - [anon_sym_out_GT_PIPE] = ACTIONS(2658), - [anon_sym_e_GT_PIPE] = ACTIONS(2658), - [anon_sym_o_GT_PIPE] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2658), - [anon_sym_RPAREN] = ACTIONS(2658), - [anon_sym_GT2] = ACTIONS(2660), - [anon_sym_DASH2] = ACTIONS(2658), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_STAR2] = ACTIONS(2660), - [anon_sym_and2] = ACTIONS(2658), - [anon_sym_xor2] = ACTIONS(2658), - [anon_sym_or2] = ACTIONS(2658), - [anon_sym_not_DASHin2] = ACTIONS(2658), - [anon_sym_has2] = ACTIONS(2658), - [anon_sym_not_DASHhas2] = ACTIONS(2658), - [anon_sym_starts_DASHwith2] = ACTIONS(2658), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2658), - [anon_sym_ends_DASHwith2] = ACTIONS(2658), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2658), - [anon_sym_EQ_EQ2] = ACTIONS(2658), - [anon_sym_BANG_EQ2] = ACTIONS(2658), - [anon_sym_LT2] = ACTIONS(2660), - [anon_sym_LT_EQ2] = ACTIONS(2658), - [anon_sym_GT_EQ2] = ACTIONS(2658), - [anon_sym_EQ_TILDE2] = ACTIONS(2658), - [anon_sym_BANG_TILDE2] = ACTIONS(2658), - [anon_sym_like2] = ACTIONS(2658), - [anon_sym_not_DASHlike2] = ACTIONS(2658), - [anon_sym_STAR_STAR2] = ACTIONS(2658), - [anon_sym_PLUS_PLUS2] = ACTIONS(2658), - [anon_sym_SLASH2] = ACTIONS(2660), - [anon_sym_mod2] = ACTIONS(2658), - [anon_sym_SLASH_SLASH2] = ACTIONS(2658), - [anon_sym_PLUS2] = ACTIONS(2660), - [anon_sym_bit_DASHshl2] = ACTIONS(2658), - [anon_sym_bit_DASHshr2] = ACTIONS(2658), - [anon_sym_bit_DASHand2] = ACTIONS(2658), - [anon_sym_bit_DASHxor2] = ACTIONS(2658), - [anon_sym_bit_DASHor2] = ACTIONS(2658), - [anon_sym_err_GT] = ACTIONS(2660), - [anon_sym_out_GT] = ACTIONS(2660), - [anon_sym_e_GT] = ACTIONS(2660), - [anon_sym_o_GT] = ACTIONS(2660), - [anon_sym_err_PLUSout_GT] = ACTIONS(2660), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2660), - [anon_sym_o_PLUSe_GT] = ACTIONS(2660), - [anon_sym_e_PLUSo_GT] = ACTIONS(2660), - [anon_sym_err_GT_GT] = ACTIONS(2658), - [anon_sym_out_GT_GT] = ACTIONS(2658), - [anon_sym_e_GT_GT] = ACTIONS(2658), - [anon_sym_o_GT_GT] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2658), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1124)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1124), - [anon_sym_in] = ACTIONS(2658), - [sym__newline] = ACTIONS(2658), - [anon_sym_SEMI] = ACTIONS(2658), - [anon_sym_PIPE] = ACTIONS(2658), - [anon_sym_err_GT_PIPE] = ACTIONS(2658), - [anon_sym_out_GT_PIPE] = ACTIONS(2658), - [anon_sym_e_GT_PIPE] = ACTIONS(2658), - [anon_sym_o_GT_PIPE] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2658), - [anon_sym_RPAREN] = ACTIONS(2658), - [anon_sym_GT2] = ACTIONS(2660), - [anon_sym_DASH2] = ACTIONS(2658), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_STAR2] = ACTIONS(2660), - [anon_sym_and2] = ACTIONS(2658), - [anon_sym_xor2] = ACTIONS(2658), - [anon_sym_or2] = ACTIONS(2658), - [anon_sym_not_DASHin2] = ACTIONS(2658), - [anon_sym_has2] = ACTIONS(2658), - [anon_sym_not_DASHhas2] = ACTIONS(2658), - [anon_sym_starts_DASHwith2] = ACTIONS(2658), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2658), - [anon_sym_ends_DASHwith2] = ACTIONS(2658), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2658), - [anon_sym_EQ_EQ2] = ACTIONS(2658), - [anon_sym_BANG_EQ2] = ACTIONS(2658), - [anon_sym_LT2] = ACTIONS(2660), - [anon_sym_LT_EQ2] = ACTIONS(2658), - [anon_sym_GT_EQ2] = ACTIONS(2658), - [anon_sym_EQ_TILDE2] = ACTIONS(2658), - [anon_sym_BANG_TILDE2] = ACTIONS(2658), - [anon_sym_like2] = ACTIONS(2658), - [anon_sym_not_DASHlike2] = ACTIONS(2658), - [anon_sym_STAR_STAR2] = ACTIONS(2658), - [anon_sym_PLUS_PLUS2] = ACTIONS(2658), - [anon_sym_SLASH2] = ACTIONS(2660), - [anon_sym_mod2] = ACTIONS(2658), - [anon_sym_SLASH_SLASH2] = ACTIONS(2658), - [anon_sym_PLUS2] = ACTIONS(2660), - [anon_sym_bit_DASHshl2] = ACTIONS(2658), - [anon_sym_bit_DASHshr2] = ACTIONS(2658), - [anon_sym_bit_DASHand2] = ACTIONS(2658), - [anon_sym_bit_DASHxor2] = ACTIONS(2658), - [anon_sym_bit_DASHor2] = ACTIONS(2658), - [anon_sym_err_GT] = ACTIONS(2660), - [anon_sym_out_GT] = ACTIONS(2660), - [anon_sym_e_GT] = ACTIONS(2660), - [anon_sym_o_GT] = ACTIONS(2660), - [anon_sym_err_PLUSout_GT] = ACTIONS(2660), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2660), - [anon_sym_o_PLUSe_GT] = ACTIONS(2660), - [anon_sym_e_PLUSo_GT] = ACTIONS(2660), - [anon_sym_err_GT_GT] = ACTIONS(2658), - [anon_sym_out_GT_GT] = ACTIONS(2658), - [anon_sym_e_GT_GT] = ACTIONS(2658), - [anon_sym_o_GT_GT] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2658), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1125)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1125), - [anon_sym_in] = ACTIONS(2658), - [sym__newline] = ACTIONS(2658), - [anon_sym_SEMI] = ACTIONS(2658), - [anon_sym_PIPE] = ACTIONS(2658), - [anon_sym_err_GT_PIPE] = ACTIONS(2658), - [anon_sym_out_GT_PIPE] = ACTIONS(2658), - [anon_sym_e_GT_PIPE] = ACTIONS(2658), - [anon_sym_o_GT_PIPE] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2658), - [anon_sym_RPAREN] = ACTIONS(2658), - [anon_sym_GT2] = ACTIONS(2660), - [anon_sym_DASH2] = ACTIONS(2658), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_STAR2] = ACTIONS(2660), - [anon_sym_and2] = ACTIONS(2658), - [anon_sym_xor2] = ACTIONS(2658), - [anon_sym_or2] = ACTIONS(2658), - [anon_sym_not_DASHin2] = ACTIONS(2658), - [anon_sym_has2] = ACTIONS(2658), - [anon_sym_not_DASHhas2] = ACTIONS(2658), - [anon_sym_starts_DASHwith2] = ACTIONS(2658), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2658), - [anon_sym_ends_DASHwith2] = ACTIONS(2658), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2658), - [anon_sym_EQ_EQ2] = ACTIONS(2658), - [anon_sym_BANG_EQ2] = ACTIONS(2658), - [anon_sym_LT2] = ACTIONS(2660), - [anon_sym_LT_EQ2] = ACTIONS(2658), - [anon_sym_GT_EQ2] = ACTIONS(2658), - [anon_sym_EQ_TILDE2] = ACTIONS(2658), - [anon_sym_BANG_TILDE2] = ACTIONS(2658), - [anon_sym_like2] = ACTIONS(2658), - [anon_sym_not_DASHlike2] = ACTIONS(2658), - [anon_sym_STAR_STAR2] = ACTIONS(2658), - [anon_sym_PLUS_PLUS2] = ACTIONS(2658), - [anon_sym_SLASH2] = ACTIONS(2660), - [anon_sym_mod2] = ACTIONS(2658), - [anon_sym_SLASH_SLASH2] = ACTIONS(2658), - [anon_sym_PLUS2] = ACTIONS(2660), - [anon_sym_bit_DASHshl2] = ACTIONS(2658), - [anon_sym_bit_DASHshr2] = ACTIONS(2658), - [anon_sym_bit_DASHand2] = ACTIONS(2658), - [anon_sym_bit_DASHxor2] = ACTIONS(2658), - [anon_sym_bit_DASHor2] = ACTIONS(2658), - [anon_sym_err_GT] = ACTIONS(2660), - [anon_sym_out_GT] = ACTIONS(2660), - [anon_sym_e_GT] = ACTIONS(2660), - [anon_sym_o_GT] = ACTIONS(2660), - [anon_sym_err_PLUSout_GT] = ACTIONS(2660), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2660), - [anon_sym_o_PLUSe_GT] = ACTIONS(2660), - [anon_sym_e_PLUSo_GT] = ACTIONS(2660), - [anon_sym_err_GT_GT] = ACTIONS(2658), - [anon_sym_out_GT_GT] = ACTIONS(2658), - [anon_sym_e_GT_GT] = ACTIONS(2658), - [anon_sym_o_GT_GT] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2658), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1126)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1126), - [anon_sym_in] = ACTIONS(2658), - [sym__newline] = ACTIONS(2658), - [anon_sym_SEMI] = ACTIONS(2658), - [anon_sym_PIPE] = ACTIONS(2658), - [anon_sym_err_GT_PIPE] = ACTIONS(2658), - [anon_sym_out_GT_PIPE] = ACTIONS(2658), - [anon_sym_e_GT_PIPE] = ACTIONS(2658), - [anon_sym_o_GT_PIPE] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2658), - [anon_sym_RPAREN] = ACTIONS(2658), - [anon_sym_GT2] = ACTIONS(2660), - [anon_sym_DASH2] = ACTIONS(2658), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_STAR2] = ACTIONS(2660), - [anon_sym_and2] = ACTIONS(2658), - [anon_sym_xor2] = ACTIONS(2658), - [anon_sym_or2] = ACTIONS(2658), - [anon_sym_not_DASHin2] = ACTIONS(2658), - [anon_sym_has2] = ACTIONS(2658), - [anon_sym_not_DASHhas2] = ACTIONS(2658), - [anon_sym_starts_DASHwith2] = ACTIONS(2658), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2658), - [anon_sym_ends_DASHwith2] = ACTIONS(2658), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2658), - [anon_sym_EQ_EQ2] = ACTIONS(2658), - [anon_sym_BANG_EQ2] = ACTIONS(2658), - [anon_sym_LT2] = ACTIONS(2660), - [anon_sym_LT_EQ2] = ACTIONS(2658), - [anon_sym_GT_EQ2] = ACTIONS(2658), - [anon_sym_EQ_TILDE2] = ACTIONS(2658), - [anon_sym_BANG_TILDE2] = ACTIONS(2658), - [anon_sym_like2] = ACTIONS(2658), - [anon_sym_not_DASHlike2] = ACTIONS(2658), - [anon_sym_STAR_STAR2] = ACTIONS(2658), - [anon_sym_PLUS_PLUS2] = ACTIONS(2658), - [anon_sym_SLASH2] = ACTIONS(2660), - [anon_sym_mod2] = ACTIONS(2658), - [anon_sym_SLASH_SLASH2] = ACTIONS(2658), - [anon_sym_PLUS2] = ACTIONS(2660), - [anon_sym_bit_DASHshl2] = ACTIONS(2658), - [anon_sym_bit_DASHshr2] = ACTIONS(2658), - [anon_sym_bit_DASHand2] = ACTIONS(2658), - [anon_sym_bit_DASHxor2] = ACTIONS(2658), - [anon_sym_bit_DASHor2] = ACTIONS(2658), - [anon_sym_err_GT] = ACTIONS(2660), - [anon_sym_out_GT] = ACTIONS(2660), - [anon_sym_e_GT] = ACTIONS(2660), - [anon_sym_o_GT] = ACTIONS(2660), - [anon_sym_err_PLUSout_GT] = ACTIONS(2660), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2660), - [anon_sym_o_PLUSe_GT] = ACTIONS(2660), - [anon_sym_e_PLUSo_GT] = ACTIONS(2660), - [anon_sym_err_GT_GT] = ACTIONS(2658), - [anon_sym_out_GT_GT] = ACTIONS(2658), - [anon_sym_e_GT_GT] = ACTIONS(2658), - [anon_sym_o_GT_GT] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2658), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1127)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1127), - [anon_sym_in] = ACTIONS(2658), - [sym__newline] = ACTIONS(2658), - [anon_sym_SEMI] = ACTIONS(2658), - [anon_sym_PIPE] = ACTIONS(2658), - [anon_sym_err_GT_PIPE] = ACTIONS(2658), - [anon_sym_out_GT_PIPE] = ACTIONS(2658), - [anon_sym_e_GT_PIPE] = ACTIONS(2658), - [anon_sym_o_GT_PIPE] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2658), - [anon_sym_RPAREN] = ACTIONS(2658), - [anon_sym_GT2] = ACTIONS(2660), - [anon_sym_DASH2] = ACTIONS(2658), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_STAR2] = ACTIONS(2660), - [anon_sym_and2] = ACTIONS(2658), - [anon_sym_xor2] = ACTIONS(2658), - [anon_sym_or2] = ACTIONS(2658), - [anon_sym_not_DASHin2] = ACTIONS(2658), - [anon_sym_has2] = ACTIONS(2658), - [anon_sym_not_DASHhas2] = ACTIONS(2658), - [anon_sym_starts_DASHwith2] = ACTIONS(2658), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2658), - [anon_sym_ends_DASHwith2] = ACTIONS(2658), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2658), - [anon_sym_EQ_EQ2] = ACTIONS(2658), - [anon_sym_BANG_EQ2] = ACTIONS(2658), - [anon_sym_LT2] = ACTIONS(2660), - [anon_sym_LT_EQ2] = ACTIONS(2658), - [anon_sym_GT_EQ2] = ACTIONS(2658), - [anon_sym_EQ_TILDE2] = ACTIONS(2658), - [anon_sym_BANG_TILDE2] = ACTIONS(2658), - [anon_sym_like2] = ACTIONS(2658), - [anon_sym_not_DASHlike2] = ACTIONS(2658), - [anon_sym_STAR_STAR2] = ACTIONS(2658), - [anon_sym_PLUS_PLUS2] = ACTIONS(2658), - [anon_sym_SLASH2] = ACTIONS(2660), - [anon_sym_mod2] = ACTIONS(2658), - [anon_sym_SLASH_SLASH2] = ACTIONS(2658), - [anon_sym_PLUS2] = ACTIONS(2660), - [anon_sym_bit_DASHshl2] = ACTIONS(2658), - [anon_sym_bit_DASHshr2] = ACTIONS(2658), - [anon_sym_bit_DASHand2] = ACTIONS(2658), - [anon_sym_bit_DASHxor2] = ACTIONS(2658), - [anon_sym_bit_DASHor2] = ACTIONS(2658), - [anon_sym_err_GT] = ACTIONS(2660), - [anon_sym_out_GT] = ACTIONS(2660), - [anon_sym_e_GT] = ACTIONS(2660), - [anon_sym_o_GT] = ACTIONS(2660), - [anon_sym_err_PLUSout_GT] = ACTIONS(2660), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2660), - [anon_sym_o_PLUSe_GT] = ACTIONS(2660), - [anon_sym_e_PLUSo_GT] = ACTIONS(2660), - [anon_sym_err_GT_GT] = ACTIONS(2658), - [anon_sym_out_GT_GT] = ACTIONS(2658), - [anon_sym_e_GT_GT] = ACTIONS(2658), - [anon_sym_o_GT_GT] = ACTIONS(2658), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2658), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2658), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2658), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2658), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1128)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1128), [anon_sym_in] = ACTIONS(2776), [sym__newline] = ACTIONS(2776), [anon_sym_SEMI] = ACTIONS(2776), @@ -130400,565 +129959,572 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1129)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1129), - [anon_sym_in] = ACTIONS(2670), - [sym__newline] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_err_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_GT_PIPE] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2670), - [anon_sym_RPAREN] = ACTIONS(2670), - [anon_sym_GT2] = ACTIONS(2672), - [anon_sym_DASH2] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_STAR2] = ACTIONS(2672), - [anon_sym_and2] = ACTIONS(2670), - [anon_sym_xor2] = ACTIONS(2670), - [anon_sym_or2] = ACTIONS(2670), - [anon_sym_not_DASHin2] = ACTIONS(2670), - [anon_sym_has2] = ACTIONS(2670), - [anon_sym_not_DASHhas2] = ACTIONS(2670), - [anon_sym_starts_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2670), - [anon_sym_ends_DASHwith2] = ACTIONS(2670), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2670), - [anon_sym_EQ_EQ2] = ACTIONS(2670), - [anon_sym_BANG_EQ2] = ACTIONS(2670), - [anon_sym_LT2] = ACTIONS(2672), - [anon_sym_LT_EQ2] = ACTIONS(2670), - [anon_sym_GT_EQ2] = ACTIONS(2670), - [anon_sym_EQ_TILDE2] = ACTIONS(2670), - [anon_sym_BANG_TILDE2] = ACTIONS(2670), - [anon_sym_like2] = ACTIONS(2670), - [anon_sym_not_DASHlike2] = ACTIONS(2670), - [anon_sym_STAR_STAR2] = ACTIONS(2670), - [anon_sym_PLUS_PLUS2] = ACTIONS(2670), - [anon_sym_SLASH2] = ACTIONS(2672), - [anon_sym_mod2] = ACTIONS(2670), - [anon_sym_SLASH_SLASH2] = ACTIONS(2670), - [anon_sym_PLUS2] = ACTIONS(2672), - [anon_sym_bit_DASHshl2] = ACTIONS(2670), - [anon_sym_bit_DASHshr2] = ACTIONS(2670), - [anon_sym_bit_DASHand2] = ACTIONS(2670), - [anon_sym_bit_DASHxor2] = ACTIONS(2670), - [anon_sym_bit_DASHor2] = ACTIONS(2670), - [anon_sym_err_GT] = ACTIONS(2672), - [anon_sym_out_GT] = ACTIONS(2672), - [anon_sym_e_GT] = ACTIONS(2672), - [anon_sym_o_GT] = ACTIONS(2672), - [anon_sym_err_PLUSout_GT] = ACTIONS(2672), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2672), - [anon_sym_o_PLUSe_GT] = ACTIONS(2672), - [anon_sym_e_PLUSo_GT] = ACTIONS(2672), - [anon_sym_err_GT_GT] = ACTIONS(2670), - [anon_sym_out_GT_GT] = ACTIONS(2670), - [anon_sym_e_GT_GT] = ACTIONS(2670), - [anon_sym_o_GT_GT] = ACTIONS(2670), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2670), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2670), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2670), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2670), + [STATE(1122)] = { + [aux_sym__repeat_newline] = STATE(1083), + [sym_comment] = STATE(1122), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1130)] = { - [sym_comment] = STATE(1130), - [anon_sym_in] = ACTIONS(2780), - [sym__newline] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [anon_sym_PIPE] = ACTIONS(2547), - [anon_sym_err_GT_PIPE] = ACTIONS(2547), - [anon_sym_out_GT_PIPE] = ACTIONS(2547), - [anon_sym_e_GT_PIPE] = ACTIONS(2547), - [anon_sym_o_GT_PIPE] = ACTIONS(2547), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2547), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2547), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2547), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2547), - [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_GT2] = ACTIONS(2782), - [anon_sym_DASH2] = ACTIONS(2784), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_STAR2] = ACTIONS(2786), - [anon_sym_and2] = ACTIONS(2547), - [anon_sym_xor2] = ACTIONS(2547), - [anon_sym_or2] = ACTIONS(2547), - [anon_sym_not_DASHin2] = ACTIONS(2780), - [anon_sym_has2] = ACTIONS(2780), - [anon_sym_not_DASHhas2] = ACTIONS(2780), - [anon_sym_starts_DASHwith2] = ACTIONS(2780), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), - [anon_sym_ends_DASHwith2] = ACTIONS(2780), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), - [anon_sym_EQ_EQ2] = ACTIONS(2788), - [anon_sym_BANG_EQ2] = ACTIONS(2788), - [anon_sym_LT2] = ACTIONS(2782), - [anon_sym_LT_EQ2] = ACTIONS(2788), - [anon_sym_GT_EQ2] = ACTIONS(2788), - [anon_sym_EQ_TILDE2] = ACTIONS(2790), - [anon_sym_BANG_TILDE2] = ACTIONS(2790), - [anon_sym_like2] = ACTIONS(2790), - [anon_sym_not_DASHlike2] = ACTIONS(2790), - [anon_sym_STAR_STAR2] = ACTIONS(2792), - [anon_sym_PLUS_PLUS2] = ACTIONS(2792), - [anon_sym_SLASH2] = ACTIONS(2786), - [anon_sym_mod2] = ACTIONS(2794), - [anon_sym_SLASH_SLASH2] = ACTIONS(2794), - [anon_sym_PLUS2] = ACTIONS(2796), - [anon_sym_bit_DASHshl2] = ACTIONS(2798), - [anon_sym_bit_DASHshr2] = ACTIONS(2798), - [anon_sym_bit_DASHand2] = ACTIONS(2800), - [anon_sym_bit_DASHxor2] = ACTIONS(2802), - [anon_sym_bit_DASHor2] = ACTIONS(2547), - [anon_sym_err_GT] = ACTIONS(2549), - [anon_sym_out_GT] = ACTIONS(2549), - [anon_sym_e_GT] = ACTIONS(2549), - [anon_sym_o_GT] = ACTIONS(2549), - [anon_sym_err_PLUSout_GT] = ACTIONS(2549), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2549), - [anon_sym_o_PLUSe_GT] = ACTIONS(2549), - [anon_sym_e_PLUSo_GT] = ACTIONS(2549), - [anon_sym_err_GT_GT] = ACTIONS(2547), - [anon_sym_out_GT_GT] = ACTIONS(2547), - [anon_sym_e_GT_GT] = ACTIONS(2547), - [anon_sym_o_GT_GT] = ACTIONS(2547), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2547), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2547), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2547), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2547), + [STATE(1123)] = { + [aux_sym__repeat_newline] = STATE(1085), + [sym_comment] = STATE(1123), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1131)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1131), - [anon_sym_in] = ACTIONS(2804), - [sym__newline] = ACTIONS(2692), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2806), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2812), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2804), - [anon_sym_has2] = ACTIONS(2804), - [anon_sym_not_DASHhas2] = ACTIONS(2804), - [anon_sym_starts_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), - [anon_sym_ends_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2806), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2830), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), + [STATE(1124)] = { + [aux_sym__repeat_newline] = STATE(1088), + [sym_comment] = STATE(1124), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1132)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1132), - [anon_sym_in] = ACTIONS(2804), - [sym__newline] = ACTIONS(2692), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2806), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2692), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2804), - [anon_sym_has2] = ACTIONS(2804), - [anon_sym_not_DASHhas2] = ACTIONS(2804), - [anon_sym_starts_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), - [anon_sym_ends_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2806), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2692), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), + [STATE(1125)] = { + [aux_sym__repeat_newline] = STATE(4124), + [sym__match_pattern_expression] = STATE(4389), + [sym__match_pattern_value] = STATE(4609), + [sym__match_pattern_list_body] = STATE(4642), + [sym__match_pattern_list] = STATE(4610), + [sym__match_pattern_rest] = STATE(5226), + [sym__match_pattern_record] = STATE(4611), + [sym_expr_parenthesized] = STATE(3790), + [sym_val_range] = STATE(4609), + [sym__val_range] = STATE(5020), + [sym_val_nothing] = STATE(4611), + [sym_val_bool] = STATE(4191), + [sym_val_variable] = STATE(3791), + [sym_val_number] = STATE(4611), + [sym__val_number_decimal] = STATE(3574), + [sym__val_number] = STATE(4358), + [sym_val_duration] = STATE(4611), + [sym_val_filesize] = STATE(4611), + [sym_val_binary] = STATE(4611), + [sym_val_string] = STATE(4611), + [sym__raw_str] = STATE(3649), + [sym__str_double_quotes] = STATE(3649), + [sym__str_single_quotes] = STATE(3649), + [sym__str_back_ticks] = STATE(3649), + [sym_val_list] = STATE(5150), + [sym__table_head] = STATE(3734), + [sym_val_table] = STATE(4611), + [sym__unquoted_in_list] = STATE(4389), + [sym__unquoted_anonymous_prefix] = STATE(5020), + [sym_comment] = STATE(1125), + [aux_sym__types_body_repeat1] = STATE(1396), + [aux_sym_parameter_repeat2] = STATE(4020), + [aux_sym__match_pattern_list_body_repeat1] = STATE(1412), + [anon_sym_true] = ACTIONS(1374), + [anon_sym_false] = ACTIONS(1374), + [anon_sym_null] = ACTIONS(1376), + [aux_sym_cmd_identifier_token3] = ACTIONS(1378), + [aux_sym_cmd_identifier_token4] = ACTIONS(1378), + [aux_sym_cmd_identifier_token5] = ACTIONS(1378), + [sym__newline] = ACTIONS(2710), + [anon_sym_LBRACK] = ACTIONS(2712), + [anon_sym_RBRACK] = ACTIONS(2714), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_COMMA] = ACTIONS(1388), + [anon_sym_DOLLAR] = ACTIONS(2716), + [anon_sym_LBRACE] = ACTIONS(2718), + [anon_sym_DOT_DOT] = ACTIONS(1394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), + [anon_sym_DOT_DOT_LT] = ACTIONS(1396), + [aux_sym__val_number_decimal_token1] = ACTIONS(1398), + [aux_sym__val_number_decimal_token2] = ACTIONS(1400), + [aux_sym__val_number_decimal_token3] = ACTIONS(1402), + [aux_sym__val_number_decimal_token4] = ACTIONS(1402), + [aux_sym__val_number_token1] = ACTIONS(1404), + [aux_sym__val_number_token2] = ACTIONS(1404), + [aux_sym__val_number_token3] = ACTIONS(1404), + [anon_sym_0b] = ACTIONS(1406), + [anon_sym_0o] = ACTIONS(1408), + [anon_sym_0x] = ACTIONS(1408), + [sym_val_date] = ACTIONS(2720), + [anon_sym_DQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_BQUOTE] = ACTIONS(1416), + [aux_sym__unquoted_in_list_token1] = ACTIONS(1424), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1426), }, - [STATE(1133)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1133), - [anon_sym_in] = ACTIONS(2692), - [sym__newline] = ACTIONS(2692), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2694), - [anon_sym_DASH2] = ACTIONS(2692), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2692), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2692), - [anon_sym_has2] = ACTIONS(2692), - [anon_sym_not_DASHhas2] = ACTIONS(2692), - [anon_sym_starts_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2692), - [anon_sym_ends_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2692), - [anon_sym_EQ_EQ2] = ACTIONS(2692), - [anon_sym_BANG_EQ2] = ACTIONS(2692), - [anon_sym_LT2] = ACTIONS(2694), - [anon_sym_LT_EQ2] = ACTIONS(2692), - [anon_sym_GT_EQ2] = ACTIONS(2692), - [anon_sym_EQ_TILDE2] = ACTIONS(2692), - [anon_sym_BANG_TILDE2] = ACTIONS(2692), - [anon_sym_like2] = ACTIONS(2692), - [anon_sym_not_DASHlike2] = ACTIONS(2692), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2694), - [anon_sym_bit_DASHshl2] = ACTIONS(2692), - [anon_sym_bit_DASHshr2] = ACTIONS(2692), - [anon_sym_bit_DASHand2] = ACTIONS(2692), - [anon_sym_bit_DASHxor2] = ACTIONS(2692), - [anon_sym_bit_DASHor2] = ACTIONS(2692), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), + [STATE(1126)] = { + [aux_sym__repeat_newline] = STATE(964), + [sym_comment] = STATE(1126), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1134)] = { - [aux_sym__repeat_newline] = STATE(1175), - [sym_comment] = STATE(1134), - [anon_sym_in] = ACTIONS(2832), - [sym__newline] = ACTIONS(2834), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_err_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_GT_PIPE] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2684), - [anon_sym_GT2] = ACTIONS(2836), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2842), - [anon_sym_xor2] = ACTIONS(2844), - [anon_sym_or2] = ACTIONS(2684), - [anon_sym_not_DASHin2] = ACTIONS(2832), - [anon_sym_has2] = ACTIONS(2832), - [anon_sym_not_DASHhas2] = ACTIONS(2832), - [anon_sym_starts_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), - [anon_sym_ends_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), - [anon_sym_EQ_EQ2] = ACTIONS(2846), - [anon_sym_BANG_EQ2] = ACTIONS(2846), - [anon_sym_LT2] = ACTIONS(2836), - [anon_sym_LT_EQ2] = ACTIONS(2846), - [anon_sym_GT_EQ2] = ACTIONS(2846), - [anon_sym_EQ_TILDE2] = ACTIONS(2848), - [anon_sym_BANG_TILDE2] = ACTIONS(2848), - [anon_sym_like2] = ACTIONS(2848), - [anon_sym_not_DASHlike2] = ACTIONS(2848), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2686), - [anon_sym_out_GT] = ACTIONS(2686), - [anon_sym_e_GT] = ACTIONS(2686), - [anon_sym_o_GT] = ACTIONS(2686), - [anon_sym_err_PLUSout_GT] = ACTIONS(2686), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), - [anon_sym_o_PLUSe_GT] = ACTIONS(2686), - [anon_sym_e_PLUSo_GT] = ACTIONS(2686), - [anon_sym_err_GT_GT] = ACTIONS(2684), - [anon_sym_out_GT_GT] = ACTIONS(2684), - [anon_sym_e_GT_GT] = ACTIONS(2684), - [anon_sym_o_GT_GT] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), + [STATE(1127)] = { + [aux_sym__repeat_newline] = STATE(1091), + [sym_comment] = STATE(1127), + [anon_sym_in] = ACTIONS(2172), + [sym__newline] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_err_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_GT_PIPE] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2172), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_GT2] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_STAR2] = ACTIONS(2174), + [anon_sym_and2] = ACTIONS(2172), + [anon_sym_xor2] = ACTIONS(2172), + [anon_sym_or2] = ACTIONS(2172), + [anon_sym_not_DASHin2] = ACTIONS(2172), + [anon_sym_has2] = ACTIONS(2172), + [anon_sym_not_DASHhas2] = ACTIONS(2172), + [anon_sym_starts_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2172), + [anon_sym_ends_DASHwith2] = ACTIONS(2172), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2172), + [anon_sym_EQ_EQ2] = ACTIONS(2172), + [anon_sym_BANG_EQ2] = ACTIONS(2172), + [anon_sym_LT2] = ACTIONS(2174), + [anon_sym_LT_EQ2] = ACTIONS(2172), + [anon_sym_GT_EQ2] = ACTIONS(2172), + [anon_sym_EQ_TILDE2] = ACTIONS(2172), + [anon_sym_BANG_TILDE2] = ACTIONS(2172), + [anon_sym_like2] = ACTIONS(2172), + [anon_sym_not_DASHlike2] = ACTIONS(2172), + [anon_sym_STAR_STAR2] = ACTIONS(2172), + [anon_sym_PLUS_PLUS2] = ACTIONS(2172), + [anon_sym_SLASH2] = ACTIONS(2174), + [anon_sym_mod2] = ACTIONS(2172), + [anon_sym_SLASH_SLASH2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2174), + [anon_sym_bit_DASHshl2] = ACTIONS(2172), + [anon_sym_bit_DASHshr2] = ACTIONS(2172), + [anon_sym_bit_DASHand2] = ACTIONS(2172), + [anon_sym_bit_DASHxor2] = ACTIONS(2172), + [anon_sym_bit_DASHor2] = ACTIONS(2172), + [anon_sym_err_GT] = ACTIONS(2174), + [anon_sym_out_GT] = ACTIONS(2174), + [anon_sym_e_GT] = ACTIONS(2174), + [anon_sym_o_GT] = ACTIONS(2174), + [anon_sym_err_PLUSout_GT] = ACTIONS(2174), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2174), + [anon_sym_o_PLUSe_GT] = ACTIONS(2174), + [anon_sym_e_PLUSo_GT] = ACTIONS(2174), + [anon_sym_err_GT_GT] = ACTIONS(2172), + [anon_sym_out_GT_GT] = ACTIONS(2172), + [anon_sym_e_GT_GT] = ACTIONS(2172), + [anon_sym_o_GT_GT] = ACTIONS(2172), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2172), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2172), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2172), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2172), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1135)] = { - [aux_sym__repeat_newline] = STATE(1154), - [sym_comment] = STATE(1135), - [anon_sym_in] = ACTIONS(2676), - [sym__newline] = ACTIONS(2864), - [anon_sym_SEMI] = ACTIONS(2676), - [anon_sym_PIPE] = ACTIONS(2676), - [anon_sym_err_GT_PIPE] = ACTIONS(2676), - [anon_sym_out_GT_PIPE] = ACTIONS(2676), - [anon_sym_e_GT_PIPE] = ACTIONS(2676), - [anon_sym_o_GT_PIPE] = ACTIONS(2676), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), - [anon_sym_RPAREN] = ACTIONS(2676), - [anon_sym_GT2] = ACTIONS(2836), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2676), - [anon_sym_xor2] = ACTIONS(2676), - [anon_sym_or2] = ACTIONS(2676), - [anon_sym_not_DASHin2] = ACTIONS(2676), - [anon_sym_has2] = ACTIONS(2676), - [anon_sym_not_DASHhas2] = ACTIONS(2676), - [anon_sym_starts_DASHwith2] = ACTIONS(2676), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2676), - [anon_sym_ends_DASHwith2] = ACTIONS(2676), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2676), - [anon_sym_EQ_EQ2] = ACTIONS(2846), - [anon_sym_BANG_EQ2] = ACTIONS(2846), - [anon_sym_LT2] = ACTIONS(2836), - [anon_sym_LT_EQ2] = ACTIONS(2846), - [anon_sym_GT_EQ2] = ACTIONS(2846), - [anon_sym_EQ_TILDE2] = ACTIONS(2676), - [anon_sym_BANG_TILDE2] = ACTIONS(2676), - [anon_sym_like2] = ACTIONS(2676), - [anon_sym_not_DASHlike2] = ACTIONS(2676), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), - [anon_sym_bit_DASHand2] = ACTIONS(2676), - [anon_sym_bit_DASHxor2] = ACTIONS(2676), - [anon_sym_bit_DASHor2] = ACTIONS(2676), - [anon_sym_err_GT] = ACTIONS(2678), - [anon_sym_out_GT] = ACTIONS(2678), - [anon_sym_e_GT] = ACTIONS(2678), - [anon_sym_o_GT] = ACTIONS(2678), - [anon_sym_err_PLUSout_GT] = ACTIONS(2678), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), - [anon_sym_o_PLUSe_GT] = ACTIONS(2678), - [anon_sym_e_PLUSo_GT] = ACTIONS(2678), - [anon_sym_err_GT_GT] = ACTIONS(2676), - [anon_sym_out_GT_GT] = ACTIONS(2676), - [anon_sym_e_GT_GT] = ACTIONS(2676), - [anon_sym_o_GT_GT] = ACTIONS(2676), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [STATE(1128)] = { + [aux_sym__repeat_newline] = STATE(1356), + [sym__expression_parenthesized] = STATE(4394), + [sym_expr_unary] = STATE(1204), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary_parenthesized] = STATE(1204), + [sym__expr_binary_expression_parenthesized] = STATE(2126), + [sym_expr_parenthesized] = STATE(767), + [sym_val_range] = STATE(1204), + [sym__value] = STATE(1204), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1831), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_comment] = STATE(1128), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_null] = ACTIONS(2660), + [aux_sym_cmd_identifier_token3] = ACTIONS(189), + [aux_sym_cmd_identifier_token4] = ACTIONS(189), + [aux_sym_cmd_identifier_token5] = ACTIONS(189), + [sym__newline] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2038), + [aux_sym__val_number_decimal_token3] = ACTIONS(2040), + [aux_sym__val_number_decimal_token4] = ACTIONS(2040), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(1136)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1136), - [anon_sym_in] = ACTIONS(2804), - [sym__newline] = ACTIONS(2688), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2806), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2688), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2804), - [anon_sym_has2] = ACTIONS(2804), - [anon_sym_not_DASHhas2] = ACTIONS(2804), - [anon_sym_starts_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), - [anon_sym_ends_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2806), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2688), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), + [STATE(1129)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1129), + [anon_sym_in] = ACTIONS(2706), + [sym__newline] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_err_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_GT_PIPE] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_GT2] = ACTIONS(2708), + [anon_sym_DASH2] = ACTIONS(2706), + [anon_sym_LBRACE] = ACTIONS(2706), + [anon_sym_STAR2] = ACTIONS(2708), + [anon_sym_and2] = ACTIONS(2706), + [anon_sym_xor2] = ACTIONS(2706), + [anon_sym_or2] = ACTIONS(2706), + [anon_sym_not_DASHin2] = ACTIONS(2706), + [anon_sym_has2] = ACTIONS(2706), + [anon_sym_not_DASHhas2] = ACTIONS(2706), + [anon_sym_starts_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2706), + [anon_sym_ends_DASHwith2] = ACTIONS(2706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2706), + [anon_sym_EQ_EQ2] = ACTIONS(2706), + [anon_sym_BANG_EQ2] = ACTIONS(2706), + [anon_sym_LT2] = ACTIONS(2708), + [anon_sym_LT_EQ2] = ACTIONS(2706), + [anon_sym_GT_EQ2] = ACTIONS(2706), + [anon_sym_EQ_TILDE2] = ACTIONS(2706), + [anon_sym_BANG_TILDE2] = ACTIONS(2706), + [anon_sym_like2] = ACTIONS(2706), + [anon_sym_not_DASHlike2] = ACTIONS(2706), + [anon_sym_STAR_STAR2] = ACTIONS(2706), + [anon_sym_PLUS_PLUS2] = ACTIONS(2706), + [anon_sym_SLASH2] = ACTIONS(2708), + [anon_sym_mod2] = ACTIONS(2706), + [anon_sym_SLASH_SLASH2] = ACTIONS(2706), + [anon_sym_PLUS2] = ACTIONS(2708), + [anon_sym_bit_DASHshl2] = ACTIONS(2706), + [anon_sym_bit_DASHshr2] = ACTIONS(2706), + [anon_sym_bit_DASHand2] = ACTIONS(2706), + [anon_sym_bit_DASHxor2] = ACTIONS(2706), + [anon_sym_bit_DASHor2] = ACTIONS(2706), + [anon_sym_err_GT] = ACTIONS(2708), + [anon_sym_out_GT] = ACTIONS(2708), + [anon_sym_e_GT] = ACTIONS(2708), + [anon_sym_o_GT] = ACTIONS(2708), + [anon_sym_err_PLUSout_GT] = ACTIONS(2708), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2708), + [anon_sym_o_PLUSe_GT] = ACTIONS(2708), + [anon_sym_e_PLUSo_GT] = ACTIONS(2708), + [anon_sym_err_GT_GT] = ACTIONS(2706), + [anon_sym_out_GT_GT] = ACTIONS(2706), + [anon_sym_e_GT_GT] = ACTIONS(2706), + [anon_sym_o_GT_GT] = ACTIONS(2706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2706), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1137)] = { - [sym_comment] = STATE(1137), + [STATE(1130)] = { + [aux_sym__repeat_newline] = STATE(1147), + [sym_comment] = STATE(1130), [anon_sym_in] = ACTIONS(2780), - [sym__newline] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [anon_sym_PIPE] = ACTIONS(2547), - [anon_sym_err_GT_PIPE] = ACTIONS(2547), - [anon_sym_out_GT_PIPE] = ACTIONS(2547), - [anon_sym_e_GT_PIPE] = ACTIONS(2547), - [anon_sym_o_GT_PIPE] = ACTIONS(2547), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2547), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2547), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2547), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2547), - [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_GT2] = ACTIONS(2782), - [anon_sym_DASH2] = ACTIONS(2784), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_STAR2] = ACTIONS(2786), - [anon_sym_and2] = ACTIONS(2547), - [anon_sym_xor2] = ACTIONS(2547), - [anon_sym_or2] = ACTIONS(2547), + [sym__newline] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_err_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_GT_PIPE] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2772), + [anon_sym_xor2] = ACTIONS(2772), + [anon_sym_or2] = ACTIONS(2772), [anon_sym_not_DASHin2] = ACTIONS(2780), [anon_sym_has2] = ACTIONS(2780), [anon_sym_not_DASHhas2] = ACTIONS(2780), @@ -130966,250 +130532,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), [anon_sym_ends_DASHwith2] = ACTIONS(2780), [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), - [anon_sym_EQ_EQ2] = ACTIONS(2788), - [anon_sym_BANG_EQ2] = ACTIONS(2788), - [anon_sym_LT2] = ACTIONS(2782), - [anon_sym_LT_EQ2] = ACTIONS(2788), - [anon_sym_GT_EQ2] = ACTIONS(2788), - [anon_sym_EQ_TILDE2] = ACTIONS(2790), - [anon_sym_BANG_TILDE2] = ACTIONS(2790), - [anon_sym_like2] = ACTIONS(2790), - [anon_sym_not_DASHlike2] = ACTIONS(2790), - [anon_sym_STAR_STAR2] = ACTIONS(2792), - [anon_sym_PLUS_PLUS2] = ACTIONS(2792), - [anon_sym_SLASH2] = ACTIONS(2786), - [anon_sym_mod2] = ACTIONS(2794), - [anon_sym_SLASH_SLASH2] = ACTIONS(2794), - [anon_sym_PLUS2] = ACTIONS(2796), - [anon_sym_bit_DASHshl2] = ACTIONS(2798), - [anon_sym_bit_DASHshr2] = ACTIONS(2798), - [anon_sym_bit_DASHand2] = ACTIONS(2800), - [anon_sym_bit_DASHxor2] = ACTIONS(2547), - [anon_sym_bit_DASHor2] = ACTIONS(2547), - [anon_sym_err_GT] = ACTIONS(2549), - [anon_sym_out_GT] = ACTIONS(2549), - [anon_sym_e_GT] = ACTIONS(2549), - [anon_sym_o_GT] = ACTIONS(2549), - [anon_sym_err_PLUSout_GT] = ACTIONS(2549), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2549), - [anon_sym_o_PLUSe_GT] = ACTIONS(2549), - [anon_sym_e_PLUSo_GT] = ACTIONS(2549), - [anon_sym_err_GT_GT] = ACTIONS(2547), - [anon_sym_out_GT_GT] = ACTIONS(2547), - [anon_sym_e_GT_GT] = ACTIONS(2547), - [anon_sym_o_GT_GT] = ACTIONS(2547), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2547), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2547), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2547), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2547), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1138)] = { - [aux_sym__repeat_newline] = STATE(1238), - [sym_comment] = STATE(1138), - [anon_sym_in] = ACTIONS(2768), - [sym__newline] = ACTIONS(2867), - [anon_sym_SEMI] = ACTIONS(2768), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_err_GT_PIPE] = ACTIONS(2768), - [anon_sym_out_GT_PIPE] = ACTIONS(2768), - [anon_sym_e_GT_PIPE] = ACTIONS(2768), - [anon_sym_o_GT_PIPE] = ACTIONS(2768), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2768), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2768), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2768), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2768), - [anon_sym_RPAREN] = ACTIONS(2768), - [anon_sym_GT2] = ACTIONS(2836), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2768), - [anon_sym_xor2] = ACTIONS(2768), - [anon_sym_or2] = ACTIONS(2768), - [anon_sym_not_DASHin2] = ACTIONS(2768), - [anon_sym_has2] = ACTIONS(2768), - [anon_sym_not_DASHhas2] = ACTIONS(2768), - [anon_sym_starts_DASHwith2] = ACTIONS(2768), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2768), - [anon_sym_ends_DASHwith2] = ACTIONS(2768), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2768), - [anon_sym_EQ_EQ2] = ACTIONS(2846), - [anon_sym_BANG_EQ2] = ACTIONS(2846), - [anon_sym_LT2] = ACTIONS(2836), - [anon_sym_LT_EQ2] = ACTIONS(2846), - [anon_sym_GT_EQ2] = ACTIONS(2846), - [anon_sym_EQ_TILDE2] = ACTIONS(2768), - [anon_sym_BANG_TILDE2] = ACTIONS(2768), - [anon_sym_like2] = ACTIONS(2768), - [anon_sym_not_DASHlike2] = ACTIONS(2768), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), - [anon_sym_bit_DASHand2] = ACTIONS(2768), - [anon_sym_bit_DASHxor2] = ACTIONS(2768), - [anon_sym_bit_DASHor2] = ACTIONS(2768), - [anon_sym_err_GT] = ACTIONS(2770), - [anon_sym_out_GT] = ACTIONS(2770), - [anon_sym_e_GT] = ACTIONS(2770), - [anon_sym_o_GT] = ACTIONS(2770), - [anon_sym_err_PLUSout_GT] = ACTIONS(2770), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2770), - [anon_sym_o_PLUSe_GT] = ACTIONS(2770), - [anon_sym_e_PLUSo_GT] = ACTIONS(2770), - [anon_sym_err_GT_GT] = ACTIONS(2768), - [anon_sym_out_GT_GT] = ACTIONS(2768), - [anon_sym_e_GT_GT] = ACTIONS(2768), - [anon_sym_o_GT_GT] = ACTIONS(2768), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2768), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2768), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2768), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2768), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1139)] = { - [aux_sym__repeat_newline] = STATE(1250), - [sym_comment] = STATE(1139), - [anon_sym_in] = ACTIONS(2684), - [sym__newline] = ACTIONS(2870), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_err_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_GT_PIPE] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2684), - [anon_sym_GT2] = ACTIONS(2836), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2684), - [anon_sym_xor2] = ACTIONS(2684), - [anon_sym_or2] = ACTIONS(2684), - [anon_sym_not_DASHin2] = ACTIONS(2684), - [anon_sym_has2] = ACTIONS(2684), - [anon_sym_not_DASHhas2] = ACTIONS(2684), - [anon_sym_starts_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2684), - [anon_sym_ends_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2684), - [anon_sym_EQ_EQ2] = ACTIONS(2846), - [anon_sym_BANG_EQ2] = ACTIONS(2846), - [anon_sym_LT2] = ACTIONS(2836), - [anon_sym_LT_EQ2] = ACTIONS(2846), - [anon_sym_GT_EQ2] = ACTIONS(2846), - [anon_sym_EQ_TILDE2] = ACTIONS(2684), - [anon_sym_BANG_TILDE2] = ACTIONS(2684), - [anon_sym_like2] = ACTIONS(2684), - [anon_sym_not_DASHlike2] = ACTIONS(2684), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), - [anon_sym_bit_DASHand2] = ACTIONS(2684), - [anon_sym_bit_DASHxor2] = ACTIONS(2684), - [anon_sym_bit_DASHor2] = ACTIONS(2684), - [anon_sym_err_GT] = ACTIONS(2686), - [anon_sym_out_GT] = ACTIONS(2686), - [anon_sym_e_GT] = ACTIONS(2686), - [anon_sym_o_GT] = ACTIONS(2686), - [anon_sym_err_PLUSout_GT] = ACTIONS(2686), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), - [anon_sym_o_PLUSe_GT] = ACTIONS(2686), - [anon_sym_e_PLUSo_GT] = ACTIONS(2686), - [anon_sym_err_GT_GT] = ACTIONS(2684), - [anon_sym_out_GT_GT] = ACTIONS(2684), - [anon_sym_e_GT_GT] = ACTIONS(2684), - [anon_sym_o_GT_GT] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2805), + [anon_sym_bit_DASHor2] = ACTIONS(2772), + [anon_sym_err_GT] = ACTIONS(2774), + [anon_sym_out_GT] = ACTIONS(2774), + [anon_sym_e_GT] = ACTIONS(2774), + [anon_sym_o_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT] = ACTIONS(2774), + [anon_sym_err_GT_GT] = ACTIONS(2772), + [anon_sym_out_GT_GT] = ACTIONS(2772), + [anon_sym_e_GT_GT] = ACTIONS(2772), + [anon_sym_o_GT_GT] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1140)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1140), - [anon_sym_in] = ACTIONS(2804), - [sym__newline] = ACTIONS(2692), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2806), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2812), - [anon_sym_xor2] = ACTIONS(2873), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2804), - [anon_sym_has2] = ACTIONS(2804), - [anon_sym_not_DASHhas2] = ACTIONS(2804), - [anon_sym_starts_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), - [anon_sym_ends_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2806), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2830), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), + [STATE(1131)] = { + [aux_sym__repeat_newline] = STATE(1172), + [sym_comment] = STATE(1131), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2662), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2662), + [anon_sym_bit_DASHxor2] = ACTIONS(2662), + [anon_sym_bit_DASHor2] = ACTIONS(2662), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1141)] = { - [aux_sym__repeat_newline] = STATE(1235), - [sym_comment] = STATE(1141), - [anon_sym_in] = ACTIONS(2832), - [sym__newline] = ACTIONS(2875), + [STATE(1132)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1132), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2666), [anon_sym_SEMI] = ACTIONS(2666), [anon_sym_PIPE] = ACTIONS(2666), [anon_sym_err_GT_PIPE] = ACTIONS(2666), @@ -131221,36 +130653,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), [anon_sym_RPAREN] = ACTIONS(2666), - [anon_sym_GT2] = ACTIONS(2836), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), [anon_sym_and2] = ACTIONS(2666), [anon_sym_xor2] = ACTIONS(2666), [anon_sym_or2] = ACTIONS(2666), - [anon_sym_not_DASHin2] = ACTIONS(2832), - [anon_sym_has2] = ACTIONS(2832), - [anon_sym_not_DASHhas2] = ACTIONS(2832), - [anon_sym_starts_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), - [anon_sym_ends_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), - [anon_sym_EQ_EQ2] = ACTIONS(2846), - [anon_sym_BANG_EQ2] = ACTIONS(2846), - [anon_sym_LT2] = ACTIONS(2836), - [anon_sym_LT_EQ2] = ACTIONS(2846), - [anon_sym_GT_EQ2] = ACTIONS(2846), - [anon_sym_EQ_TILDE2] = ACTIONS(2848), - [anon_sym_BANG_TILDE2] = ACTIONS(2848), - [anon_sym_like2] = ACTIONS(2848), - [anon_sym_not_DASHlike2] = ACTIONS(2848), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), [anon_sym_bit_DASHand2] = ACTIONS(2666), [anon_sym_bit_DASHxor2] = ACTIONS(2666), [anon_sym_bit_DASHor2] = ACTIONS(2666), @@ -131272,145 +130704,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1142)] = { - [aux_sym__repeat_newline] = STATE(1179), - [sym_comment] = STATE(1142), - [anon_sym_in] = ACTIONS(2832), - [sym__newline] = ACTIONS(2870), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_err_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_GT_PIPE] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2684), - [anon_sym_GT2] = ACTIONS(2836), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2684), - [anon_sym_xor2] = ACTIONS(2684), - [anon_sym_or2] = ACTIONS(2684), - [anon_sym_not_DASHin2] = ACTIONS(2832), - [anon_sym_has2] = ACTIONS(2832), - [anon_sym_not_DASHhas2] = ACTIONS(2832), - [anon_sym_starts_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), - [anon_sym_ends_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), - [anon_sym_EQ_EQ2] = ACTIONS(2846), - [anon_sym_BANG_EQ2] = ACTIONS(2846), - [anon_sym_LT2] = ACTIONS(2836), - [anon_sym_LT_EQ2] = ACTIONS(2846), - [anon_sym_GT_EQ2] = ACTIONS(2846), - [anon_sym_EQ_TILDE2] = ACTIONS(2684), - [anon_sym_BANG_TILDE2] = ACTIONS(2684), - [anon_sym_like2] = ACTIONS(2684), - [anon_sym_not_DASHlike2] = ACTIONS(2684), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), - [anon_sym_bit_DASHand2] = ACTIONS(2684), - [anon_sym_bit_DASHxor2] = ACTIONS(2684), - [anon_sym_bit_DASHor2] = ACTIONS(2684), - [anon_sym_err_GT] = ACTIONS(2686), - [anon_sym_out_GT] = ACTIONS(2686), - [anon_sym_e_GT] = ACTIONS(2686), - [anon_sym_o_GT] = ACTIONS(2686), - [anon_sym_err_PLUSout_GT] = ACTIONS(2686), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), - [anon_sym_o_PLUSe_GT] = ACTIONS(2686), - [anon_sym_e_PLUSo_GT] = ACTIONS(2686), - [anon_sym_err_GT_GT] = ACTIONS(2684), - [anon_sym_out_GT_GT] = ACTIONS(2684), - [anon_sym_e_GT_GT] = ACTIONS(2684), - [anon_sym_o_GT_GT] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), + [STATE(1133)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1133), + [anon_sym_in] = ACTIONS(2652), + [sym__newline] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_PIPE] = ACTIONS(2652), + [anon_sym_err_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_GT_PIPE] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2652), + [anon_sym_RPAREN] = ACTIONS(2652), + [anon_sym_GT2] = ACTIONS(2654), + [anon_sym_DASH2] = ACTIONS(2652), + [anon_sym_STAR2] = ACTIONS(2654), + [anon_sym_and2] = ACTIONS(2652), + [anon_sym_xor2] = ACTIONS(2652), + [anon_sym_or2] = ACTIONS(2652), + [anon_sym_not_DASHin2] = ACTIONS(2652), + [anon_sym_has2] = ACTIONS(2652), + [anon_sym_not_DASHhas2] = ACTIONS(2652), + [anon_sym_starts_DASHwith2] = ACTIONS(2652), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2652), + [anon_sym_ends_DASHwith2] = ACTIONS(2652), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2652), + [anon_sym_EQ_EQ2] = ACTIONS(2652), + [anon_sym_BANG_EQ2] = ACTIONS(2652), + [anon_sym_LT2] = ACTIONS(2654), + [anon_sym_LT_EQ2] = ACTIONS(2652), + [anon_sym_GT_EQ2] = ACTIONS(2652), + [anon_sym_EQ_TILDE2] = ACTIONS(2652), + [anon_sym_BANG_TILDE2] = ACTIONS(2652), + [anon_sym_like2] = ACTIONS(2652), + [anon_sym_not_DASHlike2] = ACTIONS(2652), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2654), + [anon_sym_mod2] = ACTIONS(2652), + [anon_sym_SLASH_SLASH2] = ACTIONS(2652), + [anon_sym_PLUS2] = ACTIONS(2654), + [anon_sym_bit_DASHshl2] = ACTIONS(2652), + [anon_sym_bit_DASHshr2] = ACTIONS(2652), + [anon_sym_bit_DASHand2] = ACTIONS(2652), + [anon_sym_bit_DASHxor2] = ACTIONS(2652), + [anon_sym_bit_DASHor2] = ACTIONS(2652), + [anon_sym_err_GT] = ACTIONS(2654), + [anon_sym_out_GT] = ACTIONS(2654), + [anon_sym_e_GT] = ACTIONS(2654), + [anon_sym_o_GT] = ACTIONS(2654), + [anon_sym_err_PLUSout_GT] = ACTIONS(2654), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2654), + [anon_sym_o_PLUSe_GT] = ACTIONS(2654), + [anon_sym_e_PLUSo_GT] = ACTIONS(2654), + [anon_sym_err_GT_GT] = ACTIONS(2652), + [anon_sym_out_GT_GT] = ACTIONS(2652), + [anon_sym_e_GT_GT] = ACTIONS(2652), + [anon_sym_o_GT_GT] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2652), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1143)] = { - [aux_sym__repeat_newline] = STATE(1159), - [sym_comment] = STATE(1143), - [anon_sym_in] = ACTIONS(2676), - [sym__newline] = ACTIONS(2864), - [anon_sym_SEMI] = ACTIONS(2676), - [anon_sym_PIPE] = ACTIONS(2676), - [anon_sym_err_GT_PIPE] = ACTIONS(2676), - [anon_sym_out_GT_PIPE] = ACTIONS(2676), - [anon_sym_e_GT_PIPE] = ACTIONS(2676), - [anon_sym_o_GT_PIPE] = ACTIONS(2676), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), - [anon_sym_RPAREN] = ACTIONS(2676), - [anon_sym_GT2] = ACTIONS(2678), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2676), - [anon_sym_xor2] = ACTIONS(2676), - [anon_sym_or2] = ACTIONS(2676), - [anon_sym_not_DASHin2] = ACTIONS(2676), - [anon_sym_has2] = ACTIONS(2676), - [anon_sym_not_DASHhas2] = ACTIONS(2676), - [anon_sym_starts_DASHwith2] = ACTIONS(2676), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2676), - [anon_sym_ends_DASHwith2] = ACTIONS(2676), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2676), - [anon_sym_EQ_EQ2] = ACTIONS(2676), - [anon_sym_BANG_EQ2] = ACTIONS(2676), - [anon_sym_LT2] = ACTIONS(2678), - [anon_sym_LT_EQ2] = ACTIONS(2676), - [anon_sym_GT_EQ2] = ACTIONS(2676), - [anon_sym_EQ_TILDE2] = ACTIONS(2676), - [anon_sym_BANG_TILDE2] = ACTIONS(2676), - [anon_sym_like2] = ACTIONS(2676), - [anon_sym_not_DASHlike2] = ACTIONS(2676), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), - [anon_sym_bit_DASHand2] = ACTIONS(2676), - [anon_sym_bit_DASHxor2] = ACTIONS(2676), - [anon_sym_bit_DASHor2] = ACTIONS(2676), - [anon_sym_err_GT] = ACTIONS(2678), - [anon_sym_out_GT] = ACTIONS(2678), - [anon_sym_e_GT] = ACTIONS(2678), - [anon_sym_o_GT] = ACTIONS(2678), - [anon_sym_err_PLUSout_GT] = ACTIONS(2678), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), - [anon_sym_o_PLUSe_GT] = ACTIONS(2678), - [anon_sym_e_PLUSo_GT] = ACTIONS(2678), - [anon_sym_err_GT_GT] = ACTIONS(2676), - [anon_sym_out_GT_GT] = ACTIONS(2676), - [anon_sym_e_GT_GT] = ACTIONS(2676), - [anon_sym_o_GT_GT] = ACTIONS(2676), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [STATE(1134)] = { + [aux_sym__repeat_newline] = STATE(1173), + [sym_comment] = STATE(1134), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2662), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2662), + [anon_sym_bit_DASHor2] = ACTIONS(2662), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1144)] = { - [aux_sym__repeat_newline] = STATE(1163), - [sym_comment] = STATE(1144), + [STATE(1135)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1135), [anon_sym_in] = ACTIONS(2666), - [sym__newline] = ACTIONS(2875), + [sym__newline] = ACTIONS(2666), [anon_sym_SEMI] = ACTIONS(2666), [anon_sym_PIPE] = ACTIONS(2666), [anon_sym_err_GT_PIPE] = ACTIONS(2666), @@ -131422,9 +130854,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), [anon_sym_RPAREN] = ACTIONS(2666), - [anon_sym_GT2] = ACTIONS(2668), - [anon_sym_DASH2] = ACTIONS(2666), - [anon_sym_STAR2] = ACTIONS(2668), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), [anon_sym_and2] = ACTIONS(2666), [anon_sym_xor2] = ACTIONS(2666), [anon_sym_or2] = ACTIONS(2666), @@ -131435,23 +130867,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2666), [anon_sym_ends_DASHwith2] = ACTIONS(2666), [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2666), - [anon_sym_EQ_EQ2] = ACTIONS(2666), - [anon_sym_BANG_EQ2] = ACTIONS(2666), - [anon_sym_LT2] = ACTIONS(2668), - [anon_sym_LT_EQ2] = ACTIONS(2666), - [anon_sym_GT_EQ2] = ACTIONS(2666), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), [anon_sym_EQ_TILDE2] = ACTIONS(2666), [anon_sym_BANG_TILDE2] = ACTIONS(2666), [anon_sym_like2] = ACTIONS(2666), [anon_sym_not_DASHlike2] = ACTIONS(2666), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2668), - [anon_sym_mod2] = ACTIONS(2666), - [anon_sym_SLASH_SLASH2] = ACTIONS(2666), - [anon_sym_PLUS2] = ACTIONS(2668), - [anon_sym_bit_DASHshl2] = ACTIONS(2666), - [anon_sym_bit_DASHshr2] = ACTIONS(2666), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), [anon_sym_bit_DASHand2] = ACTIONS(2666), [anon_sym_bit_DASHxor2] = ACTIONS(2666), [anon_sym_bit_DASHor2] = ACTIONS(2666), @@ -131473,11 +130905,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1145)] = { - [aux_sym__repeat_newline] = STATE(1146), - [sym_comment] = STATE(1145), - [anon_sym_in] = ACTIONS(2832), - [sym__newline] = ACTIONS(2875), + [STATE(1136)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1136), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2666), [anon_sym_SEMI] = ACTIONS(2666), [anon_sym_PIPE] = ACTIONS(2666), [anon_sym_err_GT_PIPE] = ACTIONS(2666), @@ -131489,37 +130921,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), [anon_sym_RPAREN] = ACTIONS(2666), - [anon_sym_GT2] = ACTIONS(2836), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), [anon_sym_and2] = ACTIONS(2666), [anon_sym_xor2] = ACTIONS(2666), [anon_sym_or2] = ACTIONS(2666), - [anon_sym_not_DASHin2] = ACTIONS(2832), - [anon_sym_has2] = ACTIONS(2832), - [anon_sym_not_DASHhas2] = ACTIONS(2832), - [anon_sym_starts_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), - [anon_sym_ends_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), - [anon_sym_EQ_EQ2] = ACTIONS(2846), - [anon_sym_BANG_EQ2] = ACTIONS(2846), - [anon_sym_LT2] = ACTIONS(2836), - [anon_sym_LT_EQ2] = ACTIONS(2846), - [anon_sym_GT_EQ2] = ACTIONS(2846), - [anon_sym_EQ_TILDE2] = ACTIONS(2666), - [anon_sym_BANG_TILDE2] = ACTIONS(2666), - [anon_sym_like2] = ACTIONS(2666), - [anon_sym_not_DASHlike2] = ACTIONS(2666), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), - [anon_sym_bit_DASHand2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), [anon_sym_bit_DASHxor2] = ACTIONS(2666), [anon_sym_bit_DASHor2] = ACTIONS(2666), [anon_sym_err_GT] = ACTIONS(2668), @@ -131540,2490 +130972,3160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, + [STATE(1137)] = { + [aux_sym__repeat_newline] = STATE(1179), + [sym_comment] = STATE(1137), + [anon_sym_in] = ACTIONS(2726), + [sym__newline] = ACTIONS(2832), + [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_RPAREN] = ACTIONS(2726), + [anon_sym_GT2] = ACTIONS(2728), + [anon_sym_DASH2] = ACTIONS(2726), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2726), + [anon_sym_xor2] = ACTIONS(2726), + [anon_sym_or2] = ACTIONS(2726), + [anon_sym_not_DASHin2] = ACTIONS(2726), + [anon_sym_has2] = ACTIONS(2726), + [anon_sym_not_DASHhas2] = ACTIONS(2726), + [anon_sym_starts_DASHwith2] = ACTIONS(2726), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2726), + [anon_sym_ends_DASHwith2] = ACTIONS(2726), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2726), + [anon_sym_EQ_EQ2] = ACTIONS(2726), + [anon_sym_BANG_EQ2] = ACTIONS(2726), + [anon_sym_LT2] = ACTIONS(2728), + [anon_sym_LT_EQ2] = ACTIONS(2726), + [anon_sym_GT_EQ2] = ACTIONS(2726), + [anon_sym_EQ_TILDE2] = ACTIONS(2726), + [anon_sym_BANG_TILDE2] = ACTIONS(2726), + [anon_sym_like2] = ACTIONS(2726), + [anon_sym_not_DASHlike2] = ACTIONS(2726), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2728), + [anon_sym_bit_DASHshl2] = ACTIONS(2726), + [anon_sym_bit_DASHshr2] = ACTIONS(2726), + [anon_sym_bit_DASHand2] = ACTIONS(2726), + [anon_sym_bit_DASHxor2] = ACTIONS(2726), + [anon_sym_bit_DASHor2] = ACTIONS(2726), + [anon_sym_err_GT] = ACTIONS(2728), + [anon_sym_out_GT] = ACTIONS(2728), + [anon_sym_e_GT] = ACTIONS(2728), + [anon_sym_o_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT] = ACTIONS(2728), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1138)] = { + [aux_sym__repeat_newline] = STATE(1174), + [sym_comment] = STATE(1138), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2662), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2805), + [anon_sym_bit_DASHor2] = ACTIONS(2662), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1139)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1139), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_PIPE] = ACTIONS(2652), + [anon_sym_err_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_GT_PIPE] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2652), + [anon_sym_RPAREN] = ACTIONS(2652), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2652), + [anon_sym_xor2] = ACTIONS(2652), + [anon_sym_or2] = ACTIONS(2652), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2835), + [anon_sym_bit_DASHor2] = ACTIONS(2837), + [anon_sym_err_GT] = ACTIONS(2654), + [anon_sym_out_GT] = ACTIONS(2654), + [anon_sym_e_GT] = ACTIONS(2654), + [anon_sym_o_GT] = ACTIONS(2654), + [anon_sym_err_PLUSout_GT] = ACTIONS(2654), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2654), + [anon_sym_o_PLUSe_GT] = ACTIONS(2654), + [anon_sym_e_PLUSo_GT] = ACTIONS(2654), + [anon_sym_err_GT_GT] = ACTIONS(2652), + [anon_sym_out_GT_GT] = ACTIONS(2652), + [anon_sym_e_GT_GT] = ACTIONS(2652), + [anon_sym_o_GT_GT] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2652), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1140)] = { + [sym_comment] = STATE(1140), + [ts_builtin_sym_end] = ACTIONS(908), + [anon_sym_in] = ACTIONS(908), + [sym__newline] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_PIPE] = ACTIONS(908), + [anon_sym_err_GT_PIPE] = ACTIONS(908), + [anon_sym_out_GT_PIPE] = ACTIONS(908), + [anon_sym_e_GT_PIPE] = ACTIONS(908), + [anon_sym_o_GT_PIPE] = ACTIONS(908), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(908), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(908), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(908), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(908), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(908), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(908), + [anon_sym_xor2] = ACTIONS(908), + [anon_sym_or2] = ACTIONS(908), + [anon_sym_not_DASHin2] = ACTIONS(908), + [anon_sym_has2] = ACTIONS(908), + [anon_sym_not_DASHhas2] = ACTIONS(908), + [anon_sym_starts_DASHwith2] = ACTIONS(908), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(908), + [anon_sym_ends_DASHwith2] = ACTIONS(908), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(908), + [anon_sym_EQ_EQ2] = ACTIONS(908), + [anon_sym_BANG_EQ2] = ACTIONS(908), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(908), + [anon_sym_GT_EQ2] = ACTIONS(908), + [anon_sym_EQ_TILDE2] = ACTIONS(908), + [anon_sym_BANG_TILDE2] = ACTIONS(908), + [anon_sym_like2] = ACTIONS(908), + [anon_sym_not_DASHlike2] = ACTIONS(908), + [anon_sym_STAR_STAR2] = ACTIONS(908), + [anon_sym_PLUS_PLUS2] = ACTIONS(908), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(908), + [anon_sym_SLASH_SLASH2] = ACTIONS(908), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(908), + [anon_sym_bit_DASHshr2] = ACTIONS(908), + [anon_sym_bit_DASHand2] = ACTIONS(908), + [anon_sym_bit_DASHxor2] = ACTIONS(908), + [anon_sym_bit_DASHor2] = ACTIONS(908), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(908), + [anon_sym_out_GT_GT] = ACTIONS(908), + [anon_sym_e_GT_GT] = ACTIONS(908), + [anon_sym_o_GT_GT] = ACTIONS(908), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(908), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(908), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(908), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(908), + [sym__unquoted_pattern] = ACTIONS(1810), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1141)] = { + [sym__expression] = STATE(4770), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2225), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1831), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_comment] = STATE(1141), + [aux_sym_cmd_identifier_token2] = ACTIONS(2561), + [anon_sym_true] = ACTIONS(2563), + [anon_sym_false] = ACTIONS(2563), + [anon_sym_null] = ACTIONS(2565), + [aux_sym_cmd_identifier_token3] = ACTIONS(2567), + [aux_sym_cmd_identifier_token4] = ACTIONS(2567), + [aux_sym_cmd_identifier_token5] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2036), + [aux_sym__val_number_decimal_token3] = ACTIONS(2571), + [aux_sym__val_number_decimal_token4] = ACTIONS(2571), + [aux_sym__val_number_token1] = ACTIONS(2567), + [aux_sym__val_number_token2] = ACTIONS(2567), + [aux_sym__val_number_token3] = ACTIONS(2567), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2573), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(1142)] = { + [sym__expression] = STATE(4787), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2225), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1831), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_comment] = STATE(1142), + [aux_sym_cmd_identifier_token2] = ACTIONS(2561), + [anon_sym_true] = ACTIONS(2563), + [anon_sym_false] = ACTIONS(2563), + [anon_sym_null] = ACTIONS(2565), + [aux_sym_cmd_identifier_token3] = ACTIONS(2567), + [aux_sym_cmd_identifier_token4] = ACTIONS(2567), + [aux_sym_cmd_identifier_token5] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2036), + [aux_sym__val_number_decimal_token3] = ACTIONS(2571), + [aux_sym__val_number_decimal_token4] = ACTIONS(2571), + [aux_sym__val_number_token1] = ACTIONS(2567), + [aux_sym__val_number_token2] = ACTIONS(2567), + [aux_sym__val_number_token3] = ACTIONS(2567), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2573), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(1143)] = { + [sym_comment] = STATE(1143), + [ts_builtin_sym_end] = ACTIONS(2591), + [aux_sym_cmd_identifier_token2] = ACTIONS(2839), + [anon_sym_in] = ACTIONS(2593), + [sym__newline] = ACTIONS(2591), + [anon_sym_SEMI] = ACTIONS(2591), + [anon_sym_PIPE] = ACTIONS(2591), + [anon_sym_err_GT_PIPE] = ACTIONS(2591), + [anon_sym_out_GT_PIPE] = ACTIONS(2591), + [anon_sym_e_GT_PIPE] = ACTIONS(2591), + [anon_sym_o_GT_PIPE] = ACTIONS(2591), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2591), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2591), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2591), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2591), + [anon_sym_GT2] = ACTIONS(2593), + [anon_sym_DASH2] = ACTIONS(2593), + [anon_sym_STAR2] = ACTIONS(2593), + [anon_sym_and2] = ACTIONS(2593), + [anon_sym_xor2] = ACTIONS(2593), + [anon_sym_or2] = ACTIONS(2593), + [anon_sym_not_DASHin2] = ACTIONS(2593), + [anon_sym_has2] = ACTIONS(2593), + [anon_sym_not_DASHhas2] = ACTIONS(2593), + [anon_sym_starts_DASHwith2] = ACTIONS(2593), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2593), + [anon_sym_ends_DASHwith2] = ACTIONS(2593), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2593), + [anon_sym_EQ_EQ2] = ACTIONS(2591), + [anon_sym_BANG_EQ2] = ACTIONS(2591), + [anon_sym_LT2] = ACTIONS(2593), + [anon_sym_LT_EQ2] = ACTIONS(2591), + [anon_sym_GT_EQ2] = ACTIONS(2591), + [anon_sym_EQ_TILDE2] = ACTIONS(2591), + [anon_sym_BANG_TILDE2] = ACTIONS(2593), + [anon_sym_like2] = ACTIONS(2593), + [anon_sym_not_DASHlike2] = ACTIONS(2593), + [anon_sym_STAR_STAR2] = ACTIONS(2593), + [anon_sym_PLUS_PLUS2] = ACTIONS(2593), + [anon_sym_SLASH2] = ACTIONS(2593), + [anon_sym_mod2] = ACTIONS(2593), + [anon_sym_SLASH_SLASH2] = ACTIONS(2593), + [anon_sym_PLUS2] = ACTIONS(2593), + [anon_sym_bit_DASHshl2] = ACTIONS(2593), + [anon_sym_bit_DASHshr2] = ACTIONS(2593), + [anon_sym_bit_DASHand2] = ACTIONS(2593), + [anon_sym_bit_DASHxor2] = ACTIONS(2593), + [anon_sym_bit_DASHor2] = ACTIONS(2593), + [anon_sym_err_GT] = ACTIONS(2593), + [anon_sym_out_GT] = ACTIONS(2593), + [anon_sym_e_GT] = ACTIONS(2593), + [anon_sym_o_GT] = ACTIONS(2593), + [anon_sym_err_PLUSout_GT] = ACTIONS(2593), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2593), + [anon_sym_o_PLUSe_GT] = ACTIONS(2593), + [anon_sym_e_PLUSo_GT] = ACTIONS(2593), + [anon_sym_err_GT_GT] = ACTIONS(2591), + [anon_sym_out_GT_GT] = ACTIONS(2591), + [anon_sym_e_GT_GT] = ACTIONS(2591), + [anon_sym_o_GT_GT] = ACTIONS(2591), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2591), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2591), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2591), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2591), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(1144)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1144), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_PIPE] = ACTIONS(2652), + [anon_sym_err_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_GT_PIPE] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2652), + [anon_sym_RPAREN] = ACTIONS(2652), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2841), + [anon_sym_xor2] = ACTIONS(2652), + [anon_sym_or2] = ACTIONS(2652), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2835), + [anon_sym_bit_DASHor2] = ACTIONS(2837), + [anon_sym_err_GT] = ACTIONS(2654), + [anon_sym_out_GT] = ACTIONS(2654), + [anon_sym_e_GT] = ACTIONS(2654), + [anon_sym_o_GT] = ACTIONS(2654), + [anon_sym_err_PLUSout_GT] = ACTIONS(2654), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2654), + [anon_sym_o_PLUSe_GT] = ACTIONS(2654), + [anon_sym_e_PLUSo_GT] = ACTIONS(2654), + [anon_sym_err_GT_GT] = ACTIONS(2652), + [anon_sym_out_GT_GT] = ACTIONS(2652), + [anon_sym_e_GT_GT] = ACTIONS(2652), + [anon_sym_o_GT_GT] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2652), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1145)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1145), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2732), + [anon_sym_SEMI] = ACTIONS(2732), + [anon_sym_PIPE] = ACTIONS(2732), + [anon_sym_err_GT_PIPE] = ACTIONS(2732), + [anon_sym_out_GT_PIPE] = ACTIONS(2732), + [anon_sym_e_GT_PIPE] = ACTIONS(2732), + [anon_sym_o_GT_PIPE] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), + [anon_sym_RPAREN] = ACTIONS(2732), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2732), + [anon_sym_xor2] = ACTIONS(2732), + [anon_sym_or2] = ACTIONS(2732), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2835), + [anon_sym_bit_DASHor2] = ACTIONS(2837), + [anon_sym_err_GT] = ACTIONS(2734), + [anon_sym_out_GT] = ACTIONS(2734), + [anon_sym_e_GT] = ACTIONS(2734), + [anon_sym_o_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT] = ACTIONS(2734), + [anon_sym_err_GT_GT] = ACTIONS(2732), + [anon_sym_out_GT_GT] = ACTIONS(2732), + [anon_sym_e_GT_GT] = ACTIONS(2732), + [anon_sym_o_GT_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_POUND] = ACTIONS(3), + }, [STATE(1146)] = { - [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1146), - [anon_sym_in] = ACTIONS(2804), - [sym__newline] = ACTIONS(2692), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2806), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2692), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2804), - [anon_sym_has2] = ACTIONS(2804), - [anon_sym_not_DASHhas2] = ACTIONS(2804), - [anon_sym_starts_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), - [anon_sym_ends_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2806), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2692), - [anon_sym_BANG_TILDE2] = ACTIONS(2692), - [anon_sym_like2] = ACTIONS(2692), - [anon_sym_not_DASHlike2] = ACTIONS(2692), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2692), - [anon_sym_bit_DASHxor2] = ACTIONS(2692), - [anon_sym_bit_DASHor2] = ACTIONS(2692), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(908), + [aux_sym_cmd_identifier_token2] = ACTIONS(2839), + [anon_sym_in] = ACTIONS(866), + [sym__newline] = ACTIONS(908), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_PIPE] = ACTIONS(908), + [anon_sym_err_GT_PIPE] = ACTIONS(908), + [anon_sym_out_GT_PIPE] = ACTIONS(908), + [anon_sym_e_GT_PIPE] = ACTIONS(908), + [anon_sym_o_GT_PIPE] = ACTIONS(908), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(908), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(908), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(908), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(908), + [anon_sym_GT2] = ACTIONS(866), + [anon_sym_DASH2] = ACTIONS(866), + [anon_sym_STAR2] = ACTIONS(866), + [anon_sym_and2] = ACTIONS(866), + [anon_sym_xor2] = ACTIONS(866), + [anon_sym_or2] = ACTIONS(866), + [anon_sym_not_DASHin2] = ACTIONS(866), + [anon_sym_has2] = ACTIONS(866), + [anon_sym_not_DASHhas2] = ACTIONS(866), + [anon_sym_starts_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(866), + [anon_sym_ends_DASHwith2] = ACTIONS(866), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(866), + [anon_sym_EQ_EQ2] = ACTIONS(908), + [anon_sym_BANG_EQ2] = ACTIONS(908), + [anon_sym_LT2] = ACTIONS(866), + [anon_sym_LT_EQ2] = ACTIONS(908), + [anon_sym_GT_EQ2] = ACTIONS(908), + [anon_sym_EQ_TILDE2] = ACTIONS(908), + [anon_sym_BANG_TILDE2] = ACTIONS(866), + [anon_sym_like2] = ACTIONS(866), + [anon_sym_not_DASHlike2] = ACTIONS(866), + [anon_sym_STAR_STAR2] = ACTIONS(866), + [anon_sym_PLUS_PLUS2] = ACTIONS(866), + [anon_sym_SLASH2] = ACTIONS(866), + [anon_sym_mod2] = ACTIONS(866), + [anon_sym_SLASH_SLASH2] = ACTIONS(866), + [anon_sym_PLUS2] = ACTIONS(866), + [anon_sym_bit_DASHshl2] = ACTIONS(866), + [anon_sym_bit_DASHshr2] = ACTIONS(866), + [anon_sym_bit_DASHand2] = ACTIONS(866), + [anon_sym_bit_DASHxor2] = ACTIONS(866), + [anon_sym_bit_DASHor2] = ACTIONS(866), + [anon_sym_err_GT] = ACTIONS(866), + [anon_sym_out_GT] = ACTIONS(866), + [anon_sym_e_GT] = ACTIONS(866), + [anon_sym_o_GT] = ACTIONS(866), + [anon_sym_err_PLUSout_GT] = ACTIONS(866), + [anon_sym_out_PLUSerr_GT] = ACTIONS(866), + [anon_sym_o_PLUSe_GT] = ACTIONS(866), + [anon_sym_e_PLUSo_GT] = ACTIONS(866), + [anon_sym_err_GT_GT] = ACTIONS(908), + [anon_sym_out_GT_GT] = ACTIONS(908), + [anon_sym_e_GT_GT] = ACTIONS(908), + [anon_sym_o_GT_GT] = ACTIONS(908), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(908), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(908), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(908), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(908), + [anon_sym_POUND] = ACTIONS(103), }, [STATE(1147)] = { - [aux_sym__repeat_newline] = STATE(1164), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1147), - [anon_sym_in] = ACTIONS(2676), - [sym__newline] = ACTIONS(2864), - [anon_sym_SEMI] = ACTIONS(2676), - [anon_sym_PIPE] = ACTIONS(2676), - [anon_sym_err_GT_PIPE] = ACTIONS(2676), - [anon_sym_out_GT_PIPE] = ACTIONS(2676), - [anon_sym_e_GT_PIPE] = ACTIONS(2676), - [anon_sym_o_GT_PIPE] = ACTIONS(2676), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), - [anon_sym_RPAREN] = ACTIONS(2676), - [anon_sym_GT2] = ACTIONS(2678), - [anon_sym_DASH2] = ACTIONS(2676), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2676), - [anon_sym_xor2] = ACTIONS(2676), - [anon_sym_or2] = ACTIONS(2676), - [anon_sym_not_DASHin2] = ACTIONS(2676), - [anon_sym_has2] = ACTIONS(2676), - [anon_sym_not_DASHhas2] = ACTIONS(2676), - [anon_sym_starts_DASHwith2] = ACTIONS(2676), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2676), - [anon_sym_ends_DASHwith2] = ACTIONS(2676), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2676), - [anon_sym_EQ_EQ2] = ACTIONS(2676), - [anon_sym_BANG_EQ2] = ACTIONS(2676), - [anon_sym_LT2] = ACTIONS(2678), - [anon_sym_LT_EQ2] = ACTIONS(2676), - [anon_sym_GT_EQ2] = ACTIONS(2676), - [anon_sym_EQ_TILDE2] = ACTIONS(2676), - [anon_sym_BANG_TILDE2] = ACTIONS(2676), - [anon_sym_like2] = ACTIONS(2676), - [anon_sym_not_DASHlike2] = ACTIONS(2676), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2678), - [anon_sym_bit_DASHshl2] = ACTIONS(2676), - [anon_sym_bit_DASHshr2] = ACTIONS(2676), - [anon_sym_bit_DASHand2] = ACTIONS(2676), - [anon_sym_bit_DASHxor2] = ACTIONS(2676), - [anon_sym_bit_DASHor2] = ACTIONS(2676), - [anon_sym_err_GT] = ACTIONS(2678), - [anon_sym_out_GT] = ACTIONS(2678), - [anon_sym_e_GT] = ACTIONS(2678), - [anon_sym_o_GT] = ACTIONS(2678), - [anon_sym_err_PLUSout_GT] = ACTIONS(2678), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), - [anon_sym_o_PLUSe_GT] = ACTIONS(2678), - [anon_sym_e_PLUSo_GT] = ACTIONS(2678), - [anon_sym_err_GT_GT] = ACTIONS(2676), - [anon_sym_out_GT_GT] = ACTIONS(2676), - [anon_sym_e_GT_GT] = ACTIONS(2676), - [anon_sym_o_GT_GT] = ACTIONS(2676), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2666), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2835), + [anon_sym_bit_DASHor2] = ACTIONS(2666), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1148)] = { + [aux_sym__repeat_newline] = STATE(1154), [sym_comment] = STATE(1148), - [anon_sym_in] = ACTIONS(2547), - [sym__newline] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [anon_sym_PIPE] = ACTIONS(2547), - [anon_sym_err_GT_PIPE] = ACTIONS(2547), - [anon_sym_out_GT_PIPE] = ACTIONS(2547), - [anon_sym_e_GT_PIPE] = ACTIONS(2547), - [anon_sym_o_GT_PIPE] = ACTIONS(2547), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2547), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2547), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2547), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2547), - [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_GT2] = ACTIONS(2782), - [anon_sym_DASH2] = ACTIONS(2784), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_STAR2] = ACTIONS(2786), - [anon_sym_and2] = ACTIONS(2547), - [anon_sym_xor2] = ACTIONS(2547), - [anon_sym_or2] = ACTIONS(2547), - [anon_sym_not_DASHin2] = ACTIONS(2547), - [anon_sym_has2] = ACTIONS(2547), - [anon_sym_not_DASHhas2] = ACTIONS(2547), - [anon_sym_starts_DASHwith2] = ACTIONS(2547), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2547), - [anon_sym_ends_DASHwith2] = ACTIONS(2547), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2547), - [anon_sym_EQ_EQ2] = ACTIONS(2788), - [anon_sym_BANG_EQ2] = ACTIONS(2788), - [anon_sym_LT2] = ACTIONS(2782), - [anon_sym_LT_EQ2] = ACTIONS(2788), - [anon_sym_GT_EQ2] = ACTIONS(2788), - [anon_sym_EQ_TILDE2] = ACTIONS(2547), - [anon_sym_BANG_TILDE2] = ACTIONS(2547), - [anon_sym_like2] = ACTIONS(2547), - [anon_sym_not_DASHlike2] = ACTIONS(2547), - [anon_sym_STAR_STAR2] = ACTIONS(2792), - [anon_sym_PLUS_PLUS2] = ACTIONS(2792), - [anon_sym_SLASH2] = ACTIONS(2786), - [anon_sym_mod2] = ACTIONS(2794), - [anon_sym_SLASH_SLASH2] = ACTIONS(2794), - [anon_sym_PLUS2] = ACTIONS(2796), - [anon_sym_bit_DASHshl2] = ACTIONS(2798), - [anon_sym_bit_DASHshr2] = ACTIONS(2798), - [anon_sym_bit_DASHand2] = ACTIONS(2547), - [anon_sym_bit_DASHxor2] = ACTIONS(2547), - [anon_sym_bit_DASHor2] = ACTIONS(2547), - [anon_sym_err_GT] = ACTIONS(2549), - [anon_sym_out_GT] = ACTIONS(2549), - [anon_sym_e_GT] = ACTIONS(2549), - [anon_sym_o_GT] = ACTIONS(2549), - [anon_sym_err_PLUSout_GT] = ACTIONS(2549), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2549), - [anon_sym_o_PLUSe_GT] = ACTIONS(2549), - [anon_sym_e_PLUSo_GT] = ACTIONS(2549), - [anon_sym_err_GT_GT] = ACTIONS(2547), - [anon_sym_out_GT_GT] = ACTIONS(2547), - [anon_sym_e_GT_GT] = ACTIONS(2547), - [anon_sym_o_GT_GT] = ACTIONS(2547), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2547), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2547), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2547), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2547), + [anon_sym_in] = ACTIONS(2662), + [sym__newline] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2664), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2662), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2662), + [anon_sym_has2] = ACTIONS(2662), + [anon_sym_not_DASHhas2] = ACTIONS(2662), + [anon_sym_starts_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2662), + [anon_sym_ends_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2662), + [anon_sym_EQ_EQ2] = ACTIONS(2662), + [anon_sym_BANG_EQ2] = ACTIONS(2662), + [anon_sym_LT2] = ACTIONS(2664), + [anon_sym_LT_EQ2] = ACTIONS(2662), + [anon_sym_GT_EQ2] = ACTIONS(2662), + [anon_sym_EQ_TILDE2] = ACTIONS(2662), + [anon_sym_BANG_TILDE2] = ACTIONS(2662), + [anon_sym_like2] = ACTIONS(2662), + [anon_sym_not_DASHlike2] = ACTIONS(2662), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2662), + [anon_sym_bit_DASHxor2] = ACTIONS(2662), + [anon_sym_bit_DASHor2] = ACTIONS(2662), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1149)] = { [sym_comment] = STATE(1149), - [anon_sym_in] = ACTIONS(2547), - [sym__newline] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [anon_sym_PIPE] = ACTIONS(2547), - [anon_sym_err_GT_PIPE] = ACTIONS(2547), - [anon_sym_out_GT_PIPE] = ACTIONS(2547), - [anon_sym_e_GT_PIPE] = ACTIONS(2547), - [anon_sym_o_GT_PIPE] = ACTIONS(2547), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2547), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2547), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2547), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2547), - [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_GT2] = ACTIONS(2549), - [anon_sym_DASH2] = ACTIONS(2784), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_STAR2] = ACTIONS(2786), - [anon_sym_and2] = ACTIONS(2547), - [anon_sym_xor2] = ACTIONS(2547), - [anon_sym_or2] = ACTIONS(2547), - [anon_sym_not_DASHin2] = ACTIONS(2547), - [anon_sym_has2] = ACTIONS(2547), - [anon_sym_not_DASHhas2] = ACTIONS(2547), - [anon_sym_starts_DASHwith2] = ACTIONS(2547), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2547), - [anon_sym_ends_DASHwith2] = ACTIONS(2547), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2547), - [anon_sym_EQ_EQ2] = ACTIONS(2547), - [anon_sym_BANG_EQ2] = ACTIONS(2547), - [anon_sym_LT2] = ACTIONS(2549), - [anon_sym_LT_EQ2] = ACTIONS(2547), - [anon_sym_GT_EQ2] = ACTIONS(2547), - [anon_sym_EQ_TILDE2] = ACTIONS(2547), - [anon_sym_BANG_TILDE2] = ACTIONS(2547), - [anon_sym_like2] = ACTIONS(2547), - [anon_sym_not_DASHlike2] = ACTIONS(2547), - [anon_sym_STAR_STAR2] = ACTIONS(2792), - [anon_sym_PLUS_PLUS2] = ACTIONS(2792), - [anon_sym_SLASH2] = ACTIONS(2786), - [anon_sym_mod2] = ACTIONS(2794), - [anon_sym_SLASH_SLASH2] = ACTIONS(2794), - [anon_sym_PLUS2] = ACTIONS(2796), - [anon_sym_bit_DASHshl2] = ACTIONS(2798), - [anon_sym_bit_DASHshr2] = ACTIONS(2798), - [anon_sym_bit_DASHand2] = ACTIONS(2547), - [anon_sym_bit_DASHxor2] = ACTIONS(2547), - [anon_sym_bit_DASHor2] = ACTIONS(2547), - [anon_sym_err_GT] = ACTIONS(2549), - [anon_sym_out_GT] = ACTIONS(2549), - [anon_sym_e_GT] = ACTIONS(2549), - [anon_sym_o_GT] = ACTIONS(2549), - [anon_sym_err_PLUSout_GT] = ACTIONS(2549), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2549), - [anon_sym_o_PLUSe_GT] = ACTIONS(2549), - [anon_sym_e_PLUSo_GT] = ACTIONS(2549), - [anon_sym_err_GT_GT] = ACTIONS(2547), - [anon_sym_out_GT_GT] = ACTIONS(2547), - [anon_sym_e_GT_GT] = ACTIONS(2547), - [anon_sym_o_GT_GT] = ACTIONS(2547), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2547), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2547), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2547), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2547), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2843), + [anon_sym_alias] = ACTIONS(2847), + [anon_sym_let] = ACTIONS(2847), + [anon_sym_mut] = ACTIONS(2847), + [anon_sym_const] = ACTIONS(2847), + [aux_sym_cmd_identifier_token1] = ACTIONS(2843), + [anon_sym_def] = ACTIONS(2847), + [anon_sym_use] = ACTIONS(2847), + [anon_sym_export_DASHenv] = ACTIONS(2847), + [anon_sym_extern] = ACTIONS(2847), + [anon_sym_module] = ACTIONS(2847), + [anon_sym_for] = ACTIONS(2847), + [anon_sym_loop] = ACTIONS(2847), + [anon_sym_while] = ACTIONS(2847), + [anon_sym_if] = ACTIONS(2847), + [anon_sym_else] = ACTIONS(2847), + [anon_sym_try] = ACTIONS(2847), + [anon_sym_catch] = ACTIONS(2847), + [anon_sym_match] = ACTIONS(2847), + [anon_sym_in] = ACTIONS(2843), + [anon_sym_true] = ACTIONS(2847), + [anon_sym_false] = ACTIONS(2847), + [anon_sym_null] = ACTIONS(2847), + [aux_sym_cmd_identifier_token3] = ACTIONS(2847), + [aux_sym_cmd_identifier_token4] = ACTIONS(2847), + [aux_sym_cmd_identifier_token5] = ACTIONS(2847), + [sym__newline] = ACTIONS(2847), + [anon_sym_SEMI] = ACTIONS(2851), + [anon_sym_PIPE] = ACTIONS(2146), + [anon_sym_AT] = ACTIONS(2851), + [anon_sym_LBRACK] = ACTIONS(2851), + [anon_sym_LPAREN] = ACTIONS(2847), + [anon_sym_DOLLAR] = ACTIONS(2843), + [anon_sym_DASH2] = ACTIONS(2843), + [anon_sym_LBRACE] = ACTIONS(2851), + [anon_sym_RBRACE] = ACTIONS(2851), + [anon_sym_DOT_DOT] = ACTIONS(2854), + [anon_sym_where] = ACTIONS(2851), + [aux_sym_expr_unary_token1] = ACTIONS(2851), + [anon_sym_PLUS2] = ACTIONS(2857), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2859), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2851), + [anon_sym_DOT_DOT_LT] = ACTIONS(2851), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2859), + [aux_sym__val_number_decimal_token1] = ACTIONS(2843), + [aux_sym__val_number_decimal_token2] = ACTIONS(2847), + [aux_sym__val_number_decimal_token3] = ACTIONS(2847), + [aux_sym__val_number_decimal_token4] = ACTIONS(2847), + [aux_sym__val_number_token1] = ACTIONS(2847), + [aux_sym__val_number_token2] = ACTIONS(2847), + [aux_sym__val_number_token3] = ACTIONS(2847), + [anon_sym_0b] = ACTIONS(2854), + [anon_sym_0o] = ACTIONS(2854), + [anon_sym_0x] = ACTIONS(2854), + [sym_val_date] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_BQUOTE] = ACTIONS(2847), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2847), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2847), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2859), + [anon_sym_CARET] = ACTIONS(2851), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2847), }, [STATE(1150)] = { + [sym__ctrl_match_body] = STATE(5005), + [sym_match_arm] = STATE(4491), + [sym_default_arm] = STATE(4491), + [sym_match_pattern] = STATE(5060), + [sym__match_pattern] = STATE(3839), + [sym__match_pattern_expression] = STATE(4159), + [sym__match_pattern_value] = STATE(4160), + [sym__match_pattern_list] = STATE(4161), + [sym__match_pattern_record] = STATE(4166), + [sym_expr_parenthesized] = STATE(3704), + [sym_val_range] = STATE(4160), + [sym__val_range] = STATE(5001), + [sym_val_nothing] = STATE(4166), + [sym_val_bool] = STATE(3970), + [sym_val_variable] = STATE(3705), + [sym_val_number] = STATE(4166), + [sym__val_number_decimal] = STATE(3469), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(4166), + [sym_val_filesize] = STATE(4166), + [sym_val_binary] = STATE(4166), + [sym_val_string] = STATE(4166), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_table] = STATE(4166), + [sym_unquoted] = STATE(4170), + [sym__unquoted_anonymous_prefix] = STATE(5001), [sym_comment] = STATE(1150), - [anon_sym_in] = ACTIONS(2547), - [sym__newline] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [anon_sym_PIPE] = ACTIONS(2547), - [anon_sym_err_GT_PIPE] = ACTIONS(2547), - [anon_sym_out_GT_PIPE] = ACTIONS(2547), - [anon_sym_e_GT_PIPE] = ACTIONS(2547), - [anon_sym_o_GT_PIPE] = ACTIONS(2547), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2547), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2547), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2547), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2547), - [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_GT2] = ACTIONS(2549), - [anon_sym_DASH2] = ACTIONS(2547), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_STAR2] = ACTIONS(2786), - [anon_sym_and2] = ACTIONS(2547), - [anon_sym_xor2] = ACTIONS(2547), - [anon_sym_or2] = ACTIONS(2547), - [anon_sym_not_DASHin2] = ACTIONS(2547), - [anon_sym_has2] = ACTIONS(2547), - [anon_sym_not_DASHhas2] = ACTIONS(2547), - [anon_sym_starts_DASHwith2] = ACTIONS(2547), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2547), - [anon_sym_ends_DASHwith2] = ACTIONS(2547), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2547), - [anon_sym_EQ_EQ2] = ACTIONS(2547), - [anon_sym_BANG_EQ2] = ACTIONS(2547), - [anon_sym_LT2] = ACTIONS(2549), - [anon_sym_LT_EQ2] = ACTIONS(2547), - [anon_sym_GT_EQ2] = ACTIONS(2547), - [anon_sym_EQ_TILDE2] = ACTIONS(2547), - [anon_sym_BANG_TILDE2] = ACTIONS(2547), - [anon_sym_like2] = ACTIONS(2547), - [anon_sym_not_DASHlike2] = ACTIONS(2547), - [anon_sym_STAR_STAR2] = ACTIONS(2792), - [anon_sym_PLUS_PLUS2] = ACTIONS(2792), - [anon_sym_SLASH2] = ACTIONS(2786), - [anon_sym_mod2] = ACTIONS(2794), - [anon_sym_SLASH_SLASH2] = ACTIONS(2794), - [anon_sym_PLUS2] = ACTIONS(2549), - [anon_sym_bit_DASHshl2] = ACTIONS(2547), - [anon_sym_bit_DASHshr2] = ACTIONS(2547), - [anon_sym_bit_DASHand2] = ACTIONS(2547), - [anon_sym_bit_DASHxor2] = ACTIONS(2547), - [anon_sym_bit_DASHor2] = ACTIONS(2547), - [anon_sym_err_GT] = ACTIONS(2549), - [anon_sym_out_GT] = ACTIONS(2549), - [anon_sym_e_GT] = ACTIONS(2549), - [anon_sym_o_GT] = ACTIONS(2549), - [anon_sym_err_PLUSout_GT] = ACTIONS(2549), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2549), - [anon_sym_o_PLUSe_GT] = ACTIONS(2549), - [anon_sym_e_PLUSo_GT] = ACTIONS(2549), - [anon_sym_err_GT_GT] = ACTIONS(2547), - [anon_sym_out_GT_GT] = ACTIONS(2547), - [anon_sym_e_GT_GT] = ACTIONS(2547), - [anon_sym_o_GT_GT] = ACTIONS(2547), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2547), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2547), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2547), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2547), + [aux_sym__types_body_repeat1] = STATE(1346), + [aux_sym__ctrl_match_body_repeat1] = STATE(1359), + [anon_sym_true] = ACTIONS(2861), + [anon_sym_false] = ACTIONS(2861), + [anon_sym_null] = ACTIONS(2863), + [aux_sym_cmd_identifier_token3] = ACTIONS(2865), + [aux_sym_cmd_identifier_token4] = ACTIONS(2865), + [aux_sym_cmd_identifier_token5] = ACTIONS(2865), + [sym__newline] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2869), + [anon_sym_LPAREN] = ACTIONS(2752), + [anon_sym_DOLLAR] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2875), + [anon_sym__] = ACTIONS(2877), + [anon_sym_DOT_DOT] = ACTIONS(2879), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2881), + [anon_sym_DOT_DOT_LT] = ACTIONS(2881), + [aux_sym__val_number_decimal_token1] = ACTIONS(2883), + [aux_sym__val_number_decimal_token2] = ACTIONS(2885), + [aux_sym__val_number_decimal_token3] = ACTIONS(2887), + [aux_sym__val_number_decimal_token4] = ACTIONS(2887), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1796), }, [STATE(1151)] = { + [sym__ctrl_match_body] = STATE(5007), + [sym_match_arm] = STATE(4491), + [sym_default_arm] = STATE(4491), + [sym_match_pattern] = STATE(5060), + [sym__match_pattern] = STATE(3839), + [sym__match_pattern_expression] = STATE(4159), + [sym__match_pattern_value] = STATE(4160), + [sym__match_pattern_list] = STATE(4161), + [sym__match_pattern_record] = STATE(4166), + [sym_expr_parenthesized] = STATE(3704), + [sym_val_range] = STATE(4160), + [sym__val_range] = STATE(5001), + [sym_val_nothing] = STATE(4166), + [sym_val_bool] = STATE(3970), + [sym_val_variable] = STATE(3705), + [sym_val_number] = STATE(4166), + [sym__val_number_decimal] = STATE(3469), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(4166), + [sym_val_filesize] = STATE(4166), + [sym_val_binary] = STATE(4166), + [sym_val_string] = STATE(4166), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_table] = STATE(4166), + [sym_unquoted] = STATE(4170), + [sym__unquoted_anonymous_prefix] = STATE(5001), [sym_comment] = STATE(1151), - [anon_sym_in] = ACTIONS(2547), - [sym__newline] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [anon_sym_PIPE] = ACTIONS(2547), - [anon_sym_err_GT_PIPE] = ACTIONS(2547), - [anon_sym_out_GT_PIPE] = ACTIONS(2547), - [anon_sym_e_GT_PIPE] = ACTIONS(2547), - [anon_sym_o_GT_PIPE] = ACTIONS(2547), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2547), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2547), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2547), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2547), - [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_GT2] = ACTIONS(2549), - [anon_sym_DASH2] = ACTIONS(2547), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_STAR2] = ACTIONS(2549), - [anon_sym_and2] = ACTIONS(2547), - [anon_sym_xor2] = ACTIONS(2547), - [anon_sym_or2] = ACTIONS(2547), - [anon_sym_not_DASHin2] = ACTIONS(2547), - [anon_sym_has2] = ACTIONS(2547), - [anon_sym_not_DASHhas2] = ACTIONS(2547), - [anon_sym_starts_DASHwith2] = ACTIONS(2547), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2547), - [anon_sym_ends_DASHwith2] = ACTIONS(2547), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2547), - [anon_sym_EQ_EQ2] = ACTIONS(2547), - [anon_sym_BANG_EQ2] = ACTIONS(2547), - [anon_sym_LT2] = ACTIONS(2549), - [anon_sym_LT_EQ2] = ACTIONS(2547), - [anon_sym_GT_EQ2] = ACTIONS(2547), - [anon_sym_EQ_TILDE2] = ACTIONS(2547), - [anon_sym_BANG_TILDE2] = ACTIONS(2547), - [anon_sym_like2] = ACTIONS(2547), - [anon_sym_not_DASHlike2] = ACTIONS(2547), - [anon_sym_STAR_STAR2] = ACTIONS(2792), - [anon_sym_PLUS_PLUS2] = ACTIONS(2792), - [anon_sym_SLASH2] = ACTIONS(2549), - [anon_sym_mod2] = ACTIONS(2547), - [anon_sym_SLASH_SLASH2] = ACTIONS(2547), - [anon_sym_PLUS2] = ACTIONS(2549), - [anon_sym_bit_DASHshl2] = ACTIONS(2547), - [anon_sym_bit_DASHshr2] = ACTIONS(2547), - [anon_sym_bit_DASHand2] = ACTIONS(2547), - [anon_sym_bit_DASHxor2] = ACTIONS(2547), - [anon_sym_bit_DASHor2] = ACTIONS(2547), - [anon_sym_err_GT] = ACTIONS(2549), - [anon_sym_out_GT] = ACTIONS(2549), - [anon_sym_e_GT] = ACTIONS(2549), - [anon_sym_o_GT] = ACTIONS(2549), - [anon_sym_err_PLUSout_GT] = ACTIONS(2549), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2549), - [anon_sym_o_PLUSe_GT] = ACTIONS(2549), - [anon_sym_e_PLUSo_GT] = ACTIONS(2549), - [anon_sym_err_GT_GT] = ACTIONS(2547), - [anon_sym_out_GT_GT] = ACTIONS(2547), - [anon_sym_e_GT_GT] = ACTIONS(2547), - [anon_sym_o_GT_GT] = ACTIONS(2547), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2547), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2547), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2547), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2547), + [aux_sym__types_body_repeat1] = STATE(1346), + [aux_sym__ctrl_match_body_repeat1] = STATE(1359), + [anon_sym_true] = ACTIONS(2861), + [anon_sym_false] = ACTIONS(2861), + [anon_sym_null] = ACTIONS(2863), + [aux_sym_cmd_identifier_token3] = ACTIONS(2865), + [aux_sym_cmd_identifier_token4] = ACTIONS(2865), + [aux_sym_cmd_identifier_token5] = ACTIONS(2865), + [sym__newline] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2869), + [anon_sym_LPAREN] = ACTIONS(2752), + [anon_sym_DOLLAR] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2891), + [anon_sym__] = ACTIONS(2877), + [anon_sym_DOT_DOT] = ACTIONS(2879), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2881), + [anon_sym_DOT_DOT_LT] = ACTIONS(2881), + [aux_sym__val_number_decimal_token1] = ACTIONS(2883), + [aux_sym__val_number_decimal_token2] = ACTIONS(2885), + [aux_sym__val_number_decimal_token3] = ACTIONS(2887), + [aux_sym__val_number_decimal_token4] = ACTIONS(2887), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1796), }, [STATE(1152)] = { - [aux_sym__repeat_newline] = STATE(1165), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1152), - [anon_sym_in] = ACTIONS(2684), - [sym__newline] = ACTIONS(2870), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_err_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_GT_PIPE] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2684), - [anon_sym_GT2] = ACTIONS(2686), - [anon_sym_DASH2] = ACTIONS(2684), - [anon_sym_STAR2] = ACTIONS(2686), - [anon_sym_and2] = ACTIONS(2684), - [anon_sym_xor2] = ACTIONS(2684), - [anon_sym_or2] = ACTIONS(2684), - [anon_sym_not_DASHin2] = ACTIONS(2684), - [anon_sym_has2] = ACTIONS(2684), - [anon_sym_not_DASHhas2] = ACTIONS(2684), - [anon_sym_starts_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2684), - [anon_sym_ends_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2684), - [anon_sym_EQ_EQ2] = ACTIONS(2684), - [anon_sym_BANG_EQ2] = ACTIONS(2684), - [anon_sym_LT2] = ACTIONS(2686), - [anon_sym_LT_EQ2] = ACTIONS(2684), - [anon_sym_GT_EQ2] = ACTIONS(2684), - [anon_sym_EQ_TILDE2] = ACTIONS(2684), - [anon_sym_BANG_TILDE2] = ACTIONS(2684), - [anon_sym_like2] = ACTIONS(2684), - [anon_sym_not_DASHlike2] = ACTIONS(2684), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2686), - [anon_sym_mod2] = ACTIONS(2684), - [anon_sym_SLASH_SLASH2] = ACTIONS(2684), - [anon_sym_PLUS2] = ACTIONS(2686), - [anon_sym_bit_DASHshl2] = ACTIONS(2684), - [anon_sym_bit_DASHshr2] = ACTIONS(2684), - [anon_sym_bit_DASHand2] = ACTIONS(2684), - [anon_sym_bit_DASHxor2] = ACTIONS(2684), - [anon_sym_bit_DASHor2] = ACTIONS(2684), - [anon_sym_err_GT] = ACTIONS(2686), - [anon_sym_out_GT] = ACTIONS(2686), - [anon_sym_e_GT] = ACTIONS(2686), - [anon_sym_o_GT] = ACTIONS(2686), - [anon_sym_err_PLUSout_GT] = ACTIONS(2686), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), - [anon_sym_o_PLUSe_GT] = ACTIONS(2686), - [anon_sym_e_PLUSo_GT] = ACTIONS(2686), - [anon_sym_err_GT_GT] = ACTIONS(2684), - [anon_sym_out_GT_GT] = ACTIONS(2684), - [anon_sym_e_GT_GT] = ACTIONS(2684), - [anon_sym_o_GT_GT] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), + [anon_sym_in] = ACTIONS(2722), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2722), + [anon_sym_has2] = ACTIONS(2722), + [anon_sym_not_DASHhas2] = ACTIONS(2722), + [anon_sym_starts_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), + [anon_sym_ends_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2722), + [anon_sym_BANG_TILDE2] = ACTIONS(2722), + [anon_sym_like2] = ACTIONS(2722), + [anon_sym_not_DASHlike2] = ACTIONS(2722), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1153)] = { - [aux_sym__repeat_newline] = STATE(517), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1153), - [anon_sym_in] = ACTIONS(2692), - [sym__newline] = ACTIONS(2692), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2806), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2692), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2692), - [anon_sym_has2] = ACTIONS(2692), - [anon_sym_not_DASHhas2] = ACTIONS(2692), - [anon_sym_starts_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2692), - [anon_sym_ends_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2692), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2806), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2692), - [anon_sym_BANG_TILDE2] = ACTIONS(2692), - [anon_sym_like2] = ACTIONS(2692), - [anon_sym_not_DASHlike2] = ACTIONS(2692), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2692), - [anon_sym_bit_DASHxor2] = ACTIONS(2692), - [anon_sym_bit_DASHor2] = ACTIONS(2692), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), + [anon_sym_in] = ACTIONS(2652), + [sym__newline] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_PIPE] = ACTIONS(2652), + [anon_sym_err_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_GT_PIPE] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2652), + [anon_sym_RPAREN] = ACTIONS(2652), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2652), + [anon_sym_xor2] = ACTIONS(2652), + [anon_sym_or2] = ACTIONS(2652), + [anon_sym_not_DASHin2] = ACTIONS(2652), + [anon_sym_has2] = ACTIONS(2652), + [anon_sym_not_DASHhas2] = ACTIONS(2652), + [anon_sym_starts_DASHwith2] = ACTIONS(2652), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2652), + [anon_sym_ends_DASHwith2] = ACTIONS(2652), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2652), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2652), + [anon_sym_BANG_TILDE2] = ACTIONS(2652), + [anon_sym_like2] = ACTIONS(2652), + [anon_sym_not_DASHlike2] = ACTIONS(2652), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2652), + [anon_sym_bit_DASHxor2] = ACTIONS(2652), + [anon_sym_bit_DASHor2] = ACTIONS(2652), + [anon_sym_err_GT] = ACTIONS(2654), + [anon_sym_out_GT] = ACTIONS(2654), + [anon_sym_e_GT] = ACTIONS(2654), + [anon_sym_o_GT] = ACTIONS(2654), + [anon_sym_err_PLUSout_GT] = ACTIONS(2654), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2654), + [anon_sym_o_PLUSe_GT] = ACTIONS(2654), + [anon_sym_e_PLUSo_GT] = ACTIONS(2654), + [anon_sym_err_GT_GT] = ACTIONS(2652), + [anon_sym_out_GT_GT] = ACTIONS(2652), + [anon_sym_e_GT_GT] = ACTIONS(2652), + [anon_sym_o_GT_GT] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2652), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1154)] = { - [aux_sym__repeat_newline] = STATE(517), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1154), - [anon_sym_in] = ACTIONS(2772), - [sym__newline] = ACTIONS(2772), - [anon_sym_SEMI] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_err_GT_PIPE] = ACTIONS(2772), - [anon_sym_out_GT_PIPE] = ACTIONS(2772), - [anon_sym_e_GT_PIPE] = ACTIONS(2772), - [anon_sym_o_GT_PIPE] = ACTIONS(2772), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), - [anon_sym_RPAREN] = ACTIONS(2772), - [anon_sym_GT2] = ACTIONS(2806), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2772), - [anon_sym_xor2] = ACTIONS(2772), - [anon_sym_or2] = ACTIONS(2772), - [anon_sym_not_DASHin2] = ACTIONS(2772), - [anon_sym_has2] = ACTIONS(2772), - [anon_sym_not_DASHhas2] = ACTIONS(2772), - [anon_sym_starts_DASHwith2] = ACTIONS(2772), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2772), - [anon_sym_ends_DASHwith2] = ACTIONS(2772), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2772), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2806), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2772), - [anon_sym_BANG_TILDE2] = ACTIONS(2772), - [anon_sym_like2] = ACTIONS(2772), - [anon_sym_not_DASHlike2] = ACTIONS(2772), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2772), - [anon_sym_bit_DASHxor2] = ACTIONS(2772), - [anon_sym_bit_DASHor2] = ACTIONS(2772), - [anon_sym_err_GT] = ACTIONS(2774), - [anon_sym_out_GT] = ACTIONS(2774), - [anon_sym_e_GT] = ACTIONS(2774), - [anon_sym_o_GT] = ACTIONS(2774), - [anon_sym_err_PLUSout_GT] = ACTIONS(2774), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), - [anon_sym_o_PLUSe_GT] = ACTIONS(2774), - [anon_sym_e_PLUSo_GT] = ACTIONS(2774), - [anon_sym_err_GT_GT] = ACTIONS(2772), - [anon_sym_out_GT_GT] = ACTIONS(2772), - [anon_sym_e_GT_GT] = ACTIONS(2772), - [anon_sym_o_GT_GT] = ACTIONS(2772), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), + [anon_sym_in] = ACTIONS(2722), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2724), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2722), + [anon_sym_has2] = ACTIONS(2722), + [anon_sym_not_DASHhas2] = ACTIONS(2722), + [anon_sym_starts_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), + [anon_sym_ends_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), + [anon_sym_EQ_EQ2] = ACTIONS(2722), + [anon_sym_BANG_EQ2] = ACTIONS(2722), + [anon_sym_LT2] = ACTIONS(2724), + [anon_sym_LT_EQ2] = ACTIONS(2722), + [anon_sym_GT_EQ2] = ACTIONS(2722), + [anon_sym_EQ_TILDE2] = ACTIONS(2722), + [anon_sym_BANG_TILDE2] = ACTIONS(2722), + [anon_sym_like2] = ACTIONS(2722), + [anon_sym_not_DASHlike2] = ACTIONS(2722), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1155)] = { - [aux_sym__repeat_newline] = STATE(517), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1155), - [anon_sym_in] = ACTIONS(2688), - [sym__newline] = ACTIONS(2688), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2690), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2688), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2688), - [anon_sym_has2] = ACTIONS(2688), - [anon_sym_not_DASHhas2] = ACTIONS(2688), - [anon_sym_starts_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2688), - [anon_sym_ends_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2688), - [anon_sym_EQ_EQ2] = ACTIONS(2688), - [anon_sym_BANG_EQ2] = ACTIONS(2688), - [anon_sym_LT2] = ACTIONS(2690), - [anon_sym_LT_EQ2] = ACTIONS(2688), - [anon_sym_GT_EQ2] = ACTIONS(2688), - [anon_sym_EQ_TILDE2] = ACTIONS(2688), - [anon_sym_BANG_TILDE2] = ACTIONS(2688), - [anon_sym_like2] = ACTIONS(2688), - [anon_sym_not_DASHlike2] = ACTIONS(2688), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2688), - [anon_sym_bit_DASHxor2] = ACTIONS(2688), - [anon_sym_bit_DASHor2] = ACTIONS(2688), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), + [anon_sym_in] = ACTIONS(2722), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2724), + [anon_sym_DASH2] = ACTIONS(2722), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2722), + [anon_sym_has2] = ACTIONS(2722), + [anon_sym_not_DASHhas2] = ACTIONS(2722), + [anon_sym_starts_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), + [anon_sym_ends_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), + [anon_sym_EQ_EQ2] = ACTIONS(2722), + [anon_sym_BANG_EQ2] = ACTIONS(2722), + [anon_sym_LT2] = ACTIONS(2724), + [anon_sym_LT_EQ2] = ACTIONS(2722), + [anon_sym_GT_EQ2] = ACTIONS(2722), + [anon_sym_EQ_TILDE2] = ACTIONS(2722), + [anon_sym_BANG_TILDE2] = ACTIONS(2722), + [anon_sym_like2] = ACTIONS(2722), + [anon_sym_not_DASHlike2] = ACTIONS(2722), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2724), + [anon_sym_bit_DASHshl2] = ACTIONS(2722), + [anon_sym_bit_DASHshr2] = ACTIONS(2722), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1156)] = { - [aux_sym__repeat_newline] = STATE(1240), [sym_comment] = STATE(1156), - [anon_sym_in] = ACTIONS(2768), - [sym__newline] = ACTIONS(2867), - [anon_sym_SEMI] = ACTIONS(2768), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_err_GT_PIPE] = ACTIONS(2768), - [anon_sym_out_GT_PIPE] = ACTIONS(2768), - [anon_sym_e_GT_PIPE] = ACTIONS(2768), - [anon_sym_o_GT_PIPE] = ACTIONS(2768), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2768), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2768), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2768), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2768), - [anon_sym_RPAREN] = ACTIONS(2768), - [anon_sym_GT2] = ACTIONS(2770), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2768), - [anon_sym_xor2] = ACTIONS(2768), - [anon_sym_or2] = ACTIONS(2768), - [anon_sym_not_DASHin2] = ACTIONS(2768), - [anon_sym_has2] = ACTIONS(2768), - [anon_sym_not_DASHhas2] = ACTIONS(2768), - [anon_sym_starts_DASHwith2] = ACTIONS(2768), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2768), - [anon_sym_ends_DASHwith2] = ACTIONS(2768), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2768), - [anon_sym_EQ_EQ2] = ACTIONS(2768), - [anon_sym_BANG_EQ2] = ACTIONS(2768), - [anon_sym_LT2] = ACTIONS(2770), - [anon_sym_LT_EQ2] = ACTIONS(2768), - [anon_sym_GT_EQ2] = ACTIONS(2768), - [anon_sym_EQ_TILDE2] = ACTIONS(2768), - [anon_sym_BANG_TILDE2] = ACTIONS(2768), - [anon_sym_like2] = ACTIONS(2768), - [anon_sym_not_DASHlike2] = ACTIONS(2768), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), - [anon_sym_bit_DASHand2] = ACTIONS(2768), - [anon_sym_bit_DASHxor2] = ACTIONS(2768), - [anon_sym_bit_DASHor2] = ACTIONS(2768), - [anon_sym_err_GT] = ACTIONS(2770), - [anon_sym_out_GT] = ACTIONS(2770), - [anon_sym_e_GT] = ACTIONS(2770), - [anon_sym_o_GT] = ACTIONS(2770), - [anon_sym_err_PLUSout_GT] = ACTIONS(2770), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2770), - [anon_sym_o_PLUSe_GT] = ACTIONS(2770), - [anon_sym_e_PLUSo_GT] = ACTIONS(2770), - [anon_sym_err_GT_GT] = ACTIONS(2768), - [anon_sym_out_GT_GT] = ACTIONS(2768), - [anon_sym_e_GT_GT] = ACTIONS(2768), - [anon_sym_o_GT_GT] = ACTIONS(2768), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2768), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2768), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2768), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2768), + [ts_builtin_sym_end] = ACTIONS(2130), + [anon_sym_in] = ACTIONS(2130), + [sym__newline] = ACTIONS(2130), + [anon_sym_SEMI] = ACTIONS(2130), + [anon_sym_PIPE] = ACTIONS(2130), + [anon_sym_err_GT_PIPE] = ACTIONS(2130), + [anon_sym_out_GT_PIPE] = ACTIONS(2130), + [anon_sym_e_GT_PIPE] = ACTIONS(2130), + [anon_sym_o_GT_PIPE] = ACTIONS(2130), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2130), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2130), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2130), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2130), + [anon_sym_GT2] = ACTIONS(2132), + [anon_sym_DASH2] = ACTIONS(2130), + [anon_sym_STAR2] = ACTIONS(2132), + [anon_sym_and2] = ACTIONS(2130), + [anon_sym_xor2] = ACTIONS(2130), + [anon_sym_or2] = ACTIONS(2130), + [anon_sym_not_DASHin2] = ACTIONS(2130), + [anon_sym_has2] = ACTIONS(2130), + [anon_sym_not_DASHhas2] = ACTIONS(2130), + [anon_sym_starts_DASHwith2] = ACTIONS(2130), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2130), + [anon_sym_ends_DASHwith2] = ACTIONS(2130), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2130), + [anon_sym_EQ_EQ2] = ACTIONS(2130), + [anon_sym_BANG_EQ2] = ACTIONS(2130), + [anon_sym_LT2] = ACTIONS(2132), + [anon_sym_LT_EQ2] = ACTIONS(2130), + [anon_sym_GT_EQ2] = ACTIONS(2130), + [anon_sym_EQ_TILDE2] = ACTIONS(2130), + [anon_sym_BANG_TILDE2] = ACTIONS(2130), + [anon_sym_like2] = ACTIONS(2130), + [anon_sym_not_DASHlike2] = ACTIONS(2130), + [anon_sym_LPAREN2] = ACTIONS(2130), + [anon_sym_STAR_STAR2] = ACTIONS(2130), + [anon_sym_PLUS_PLUS2] = ACTIONS(2130), + [anon_sym_SLASH2] = ACTIONS(2132), + [anon_sym_mod2] = ACTIONS(2130), + [anon_sym_SLASH_SLASH2] = ACTIONS(2130), + [anon_sym_PLUS2] = ACTIONS(2132), + [anon_sym_bit_DASHshl2] = ACTIONS(2130), + [anon_sym_bit_DASHshr2] = ACTIONS(2130), + [anon_sym_bit_DASHand2] = ACTIONS(2130), + [anon_sym_bit_DASHxor2] = ACTIONS(2130), + [anon_sym_bit_DASHor2] = ACTIONS(2130), + [anon_sym_err_GT] = ACTIONS(2132), + [anon_sym_out_GT] = ACTIONS(2132), + [anon_sym_e_GT] = ACTIONS(2132), + [anon_sym_o_GT] = ACTIONS(2132), + [anon_sym_err_PLUSout_GT] = ACTIONS(2132), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2132), + [anon_sym_o_PLUSe_GT] = ACTIONS(2132), + [anon_sym_e_PLUSo_GT] = ACTIONS(2132), + [anon_sym_err_GT_GT] = ACTIONS(2130), + [anon_sym_out_GT_GT] = ACTIONS(2130), + [anon_sym_e_GT_GT] = ACTIONS(2130), + [anon_sym_o_GT_GT] = ACTIONS(2130), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2130), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2130), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2130), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2130), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1157)] = { - [sym__expression] = STATE(4806), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2216), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1826), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1157), - [aux_sym_cmd_identifier_token2] = ACTIONS(2533), - [anon_sym_true] = ACTIONS(2535), - [anon_sym_false] = ACTIONS(2535), - [anon_sym_null] = ACTIONS(2537), - [aux_sym_cmd_identifier_token3] = ACTIONS(2539), - [aux_sym_cmd_identifier_token4] = ACTIONS(2539), - [aux_sym_cmd_identifier_token5] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1976), - [aux_sym__val_number_decimal_token3] = ACTIONS(2543), - [aux_sym__val_number_decimal_token4] = ACTIONS(2543), - [aux_sym__val_number_token1] = ACTIONS(2539), - [aux_sym__val_number_token2] = ACTIONS(2539), - [aux_sym__val_number_token3] = ACTIONS(2539), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2545), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_in] = ACTIONS(2722), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2724), + [anon_sym_DASH2] = ACTIONS(2722), + [anon_sym_STAR2] = ACTIONS(2724), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2722), + [anon_sym_has2] = ACTIONS(2722), + [anon_sym_not_DASHhas2] = ACTIONS(2722), + [anon_sym_starts_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), + [anon_sym_ends_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), + [anon_sym_EQ_EQ2] = ACTIONS(2722), + [anon_sym_BANG_EQ2] = ACTIONS(2722), + [anon_sym_LT2] = ACTIONS(2724), + [anon_sym_LT_EQ2] = ACTIONS(2722), + [anon_sym_GT_EQ2] = ACTIONS(2722), + [anon_sym_EQ_TILDE2] = ACTIONS(2722), + [anon_sym_BANG_TILDE2] = ACTIONS(2722), + [anon_sym_like2] = ACTIONS(2722), + [anon_sym_not_DASHlike2] = ACTIONS(2722), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2724), + [anon_sym_mod2] = ACTIONS(2722), + [anon_sym_SLASH_SLASH2] = ACTIONS(2722), + [anon_sym_PLUS2] = ACTIONS(2724), + [anon_sym_bit_DASHshl2] = ACTIONS(2722), + [anon_sym_bit_DASHshr2] = ACTIONS(2722), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1158)] = { - [aux_sym__repeat_newline] = STATE(1197), + [sym__ctrl_match_body] = STATE(4862), + [sym_match_arm] = STATE(4491), + [sym_default_arm] = STATE(4491), + [sym_match_pattern] = STATE(5060), + [sym__match_pattern] = STATE(3839), + [sym__match_pattern_expression] = STATE(4159), + [sym__match_pattern_value] = STATE(4160), + [sym__match_pattern_list] = STATE(4161), + [sym__match_pattern_record] = STATE(4166), + [sym_expr_parenthesized] = STATE(3704), + [sym_val_range] = STATE(4160), + [sym__val_range] = STATE(5001), + [sym_val_nothing] = STATE(4166), + [sym_val_bool] = STATE(3970), + [sym_val_variable] = STATE(3705), + [sym_val_number] = STATE(4166), + [sym__val_number_decimal] = STATE(3469), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(4166), + [sym_val_filesize] = STATE(4166), + [sym_val_binary] = STATE(4166), + [sym_val_string] = STATE(4166), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_table] = STATE(4166), + [sym_unquoted] = STATE(4170), + [sym__unquoted_anonymous_prefix] = STATE(5001), [sym_comment] = STATE(1158), - [anon_sym_in] = ACTIONS(2832), - [sym__newline] = ACTIONS(2834), - [anon_sym_SEMI] = ACTIONS(2676), - [anon_sym_PIPE] = ACTIONS(2676), - [anon_sym_err_GT_PIPE] = ACTIONS(2676), - [anon_sym_out_GT_PIPE] = ACTIONS(2676), - [anon_sym_e_GT_PIPE] = ACTIONS(2676), - [anon_sym_o_GT_PIPE] = ACTIONS(2676), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), - [anon_sym_RPAREN] = ACTIONS(2676), - [anon_sym_GT2] = ACTIONS(2836), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2842), - [anon_sym_xor2] = ACTIONS(2844), - [anon_sym_or2] = ACTIONS(2676), - [anon_sym_not_DASHin2] = ACTIONS(2832), - [anon_sym_has2] = ACTIONS(2832), - [anon_sym_not_DASHhas2] = ACTIONS(2832), - [anon_sym_starts_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), - [anon_sym_ends_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), - [anon_sym_EQ_EQ2] = ACTIONS(2846), - [anon_sym_BANG_EQ2] = ACTIONS(2846), - [anon_sym_LT2] = ACTIONS(2836), - [anon_sym_LT_EQ2] = ACTIONS(2846), - [anon_sym_GT_EQ2] = ACTIONS(2846), - [anon_sym_EQ_TILDE2] = ACTIONS(2848), - [anon_sym_BANG_TILDE2] = ACTIONS(2848), - [anon_sym_like2] = ACTIONS(2848), - [anon_sym_not_DASHlike2] = ACTIONS(2848), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2678), - [anon_sym_out_GT] = ACTIONS(2678), - [anon_sym_e_GT] = ACTIONS(2678), - [anon_sym_o_GT] = ACTIONS(2678), - [anon_sym_err_PLUSout_GT] = ACTIONS(2678), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), - [anon_sym_o_PLUSe_GT] = ACTIONS(2678), - [anon_sym_e_PLUSo_GT] = ACTIONS(2678), - [anon_sym_err_GT_GT] = ACTIONS(2676), - [anon_sym_out_GT_GT] = ACTIONS(2676), - [anon_sym_e_GT_GT] = ACTIONS(2676), - [anon_sym_o_GT_GT] = ACTIONS(2676), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [aux_sym__types_body_repeat1] = STATE(1346), + [aux_sym__ctrl_match_body_repeat1] = STATE(1359), + [anon_sym_true] = ACTIONS(2861), + [anon_sym_false] = ACTIONS(2861), + [anon_sym_null] = ACTIONS(2863), + [aux_sym_cmd_identifier_token3] = ACTIONS(2865), + [aux_sym_cmd_identifier_token4] = ACTIONS(2865), + [aux_sym_cmd_identifier_token5] = ACTIONS(2865), + [sym__newline] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2869), + [anon_sym_LPAREN] = ACTIONS(2752), + [anon_sym_DOLLAR] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2893), + [anon_sym__] = ACTIONS(2877), + [anon_sym_DOT_DOT] = ACTIONS(2879), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2881), + [anon_sym_DOT_DOT_LT] = ACTIONS(2881), + [aux_sym__val_number_decimal_token1] = ACTIONS(2883), + [aux_sym__val_number_decimal_token2] = ACTIONS(2885), + [aux_sym__val_number_decimal_token3] = ACTIONS(2887), + [aux_sym__val_number_decimal_token4] = ACTIONS(2887), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), + [aux_sym_unquoted_token1] = ACTIONS(1912), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1796), }, [STATE(1159)] = { - [aux_sym__repeat_newline] = STATE(517), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1159), - [anon_sym_in] = ACTIONS(2772), - [sym__newline] = ACTIONS(2772), - [anon_sym_SEMI] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_err_GT_PIPE] = ACTIONS(2772), - [anon_sym_out_GT_PIPE] = ACTIONS(2772), - [anon_sym_e_GT_PIPE] = ACTIONS(2772), - [anon_sym_o_GT_PIPE] = ACTIONS(2772), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), - [anon_sym_RPAREN] = ACTIONS(2772), - [anon_sym_GT2] = ACTIONS(2774), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2772), - [anon_sym_xor2] = ACTIONS(2772), - [anon_sym_or2] = ACTIONS(2772), - [anon_sym_not_DASHin2] = ACTIONS(2772), - [anon_sym_has2] = ACTIONS(2772), - [anon_sym_not_DASHhas2] = ACTIONS(2772), - [anon_sym_starts_DASHwith2] = ACTIONS(2772), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2772), - [anon_sym_ends_DASHwith2] = ACTIONS(2772), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2772), - [anon_sym_EQ_EQ2] = ACTIONS(2772), - [anon_sym_BANG_EQ2] = ACTIONS(2772), - [anon_sym_LT2] = ACTIONS(2774), - [anon_sym_LT_EQ2] = ACTIONS(2772), - [anon_sym_GT_EQ2] = ACTIONS(2772), - [anon_sym_EQ_TILDE2] = ACTIONS(2772), - [anon_sym_BANG_TILDE2] = ACTIONS(2772), - [anon_sym_like2] = ACTIONS(2772), - [anon_sym_not_DASHlike2] = ACTIONS(2772), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2772), - [anon_sym_bit_DASHxor2] = ACTIONS(2772), - [anon_sym_bit_DASHor2] = ACTIONS(2772), - [anon_sym_err_GT] = ACTIONS(2774), - [anon_sym_out_GT] = ACTIONS(2774), - [anon_sym_e_GT] = ACTIONS(2774), - [anon_sym_o_GT] = ACTIONS(2774), - [anon_sym_err_PLUSout_GT] = ACTIONS(2774), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), - [anon_sym_o_PLUSe_GT] = ACTIONS(2774), - [anon_sym_e_PLUSo_GT] = ACTIONS(2774), - [anon_sym_err_GT_GT] = ACTIONS(2772), - [anon_sym_out_GT_GT] = ACTIONS(2772), - [anon_sym_e_GT_GT] = ACTIONS(2772), - [anon_sym_o_GT_GT] = ACTIONS(2772), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2835), + [anon_sym_bit_DASHor2] = ACTIONS(2837), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1160)] = { - [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1160), - [anon_sym_in] = ACTIONS(2688), - [sym__newline] = ACTIONS(2688), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2690), - [anon_sym_DASH2] = ACTIONS(2688), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2688), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2688), - [anon_sym_has2] = ACTIONS(2688), - [anon_sym_not_DASHhas2] = ACTIONS(2688), - [anon_sym_starts_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2688), - [anon_sym_ends_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2688), - [anon_sym_EQ_EQ2] = ACTIONS(2688), - [anon_sym_BANG_EQ2] = ACTIONS(2688), - [anon_sym_LT2] = ACTIONS(2690), - [anon_sym_LT_EQ2] = ACTIONS(2688), - [anon_sym_GT_EQ2] = ACTIONS(2688), - [anon_sym_EQ_TILDE2] = ACTIONS(2688), - [anon_sym_BANG_TILDE2] = ACTIONS(2688), - [anon_sym_like2] = ACTIONS(2688), - [anon_sym_not_DASHlike2] = ACTIONS(2688), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2690), - [anon_sym_bit_DASHshl2] = ACTIONS(2688), - [anon_sym_bit_DASHshr2] = ACTIONS(2688), - [anon_sym_bit_DASHand2] = ACTIONS(2688), - [anon_sym_bit_DASHxor2] = ACTIONS(2688), - [anon_sym_bit_DASHor2] = ACTIONS(2688), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), + [ts_builtin_sym_end] = ACTIONS(2150), + [anon_sym_in] = ACTIONS(2150), + [sym__newline] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_err_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_GT_PIPE] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), + [anon_sym_GT2] = ACTIONS(2152), + [anon_sym_DASH2] = ACTIONS(2150), + [anon_sym_STAR2] = ACTIONS(2152), + [anon_sym_and2] = ACTIONS(2150), + [anon_sym_xor2] = ACTIONS(2150), + [anon_sym_or2] = ACTIONS(2150), + [anon_sym_not_DASHin2] = ACTIONS(2150), + [anon_sym_has2] = ACTIONS(2150), + [anon_sym_not_DASHhas2] = ACTIONS(2150), + [anon_sym_starts_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2150), + [anon_sym_ends_DASHwith2] = ACTIONS(2150), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2150), + [anon_sym_EQ_EQ2] = ACTIONS(2150), + [anon_sym_BANG_EQ2] = ACTIONS(2150), + [anon_sym_LT2] = ACTIONS(2152), + [anon_sym_LT_EQ2] = ACTIONS(2150), + [anon_sym_GT_EQ2] = ACTIONS(2150), + [anon_sym_EQ_TILDE2] = ACTIONS(2150), + [anon_sym_BANG_TILDE2] = ACTIONS(2150), + [anon_sym_like2] = ACTIONS(2150), + [anon_sym_not_DASHlike2] = ACTIONS(2150), + [anon_sym_LPAREN2] = ACTIONS(2150), + [anon_sym_STAR_STAR2] = ACTIONS(2150), + [anon_sym_PLUS_PLUS2] = ACTIONS(2150), + [anon_sym_SLASH2] = ACTIONS(2152), + [anon_sym_mod2] = ACTIONS(2150), + [anon_sym_SLASH_SLASH2] = ACTIONS(2150), + [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_bit_DASHshl2] = ACTIONS(2150), + [anon_sym_bit_DASHshr2] = ACTIONS(2150), + [anon_sym_bit_DASHand2] = ACTIONS(2150), + [anon_sym_bit_DASHxor2] = ACTIONS(2150), + [anon_sym_bit_DASHor2] = ACTIONS(2150), + [anon_sym_err_GT] = ACTIONS(2152), + [anon_sym_out_GT] = ACTIONS(2152), + [anon_sym_e_GT] = ACTIONS(2152), + [anon_sym_o_GT] = ACTIONS(2152), + [anon_sym_err_PLUSout_GT] = ACTIONS(2152), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), + [anon_sym_o_PLUSe_GT] = ACTIONS(2152), + [anon_sym_e_PLUSo_GT] = ACTIONS(2152), + [anon_sym_err_GT_GT] = ACTIONS(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1161)] = { - [aux_sym__repeat_newline] = STATE(1242), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1161), - [anon_sym_in] = ACTIONS(2768), - [sym__newline] = ACTIONS(2867), - [anon_sym_SEMI] = ACTIONS(2768), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_err_GT_PIPE] = ACTIONS(2768), - [anon_sym_out_GT_PIPE] = ACTIONS(2768), - [anon_sym_e_GT_PIPE] = ACTIONS(2768), - [anon_sym_o_GT_PIPE] = ACTIONS(2768), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2768), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2768), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2768), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2768), - [anon_sym_RPAREN] = ACTIONS(2768), - [anon_sym_GT2] = ACTIONS(2770), - [anon_sym_DASH2] = ACTIONS(2768), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2768), - [anon_sym_xor2] = ACTIONS(2768), - [anon_sym_or2] = ACTIONS(2768), - [anon_sym_not_DASHin2] = ACTIONS(2768), - [anon_sym_has2] = ACTIONS(2768), - [anon_sym_not_DASHhas2] = ACTIONS(2768), - [anon_sym_starts_DASHwith2] = ACTIONS(2768), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2768), - [anon_sym_ends_DASHwith2] = ACTIONS(2768), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2768), - [anon_sym_EQ_EQ2] = ACTIONS(2768), - [anon_sym_BANG_EQ2] = ACTIONS(2768), - [anon_sym_LT2] = ACTIONS(2770), - [anon_sym_LT_EQ2] = ACTIONS(2768), - [anon_sym_GT_EQ2] = ACTIONS(2768), - [anon_sym_EQ_TILDE2] = ACTIONS(2768), - [anon_sym_BANG_TILDE2] = ACTIONS(2768), - [anon_sym_like2] = ACTIONS(2768), - [anon_sym_not_DASHlike2] = ACTIONS(2768), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2770), - [anon_sym_bit_DASHshl2] = ACTIONS(2768), - [anon_sym_bit_DASHshr2] = ACTIONS(2768), - [anon_sym_bit_DASHand2] = ACTIONS(2768), - [anon_sym_bit_DASHxor2] = ACTIONS(2768), - [anon_sym_bit_DASHor2] = ACTIONS(2768), - [anon_sym_err_GT] = ACTIONS(2770), - [anon_sym_out_GT] = ACTIONS(2770), - [anon_sym_e_GT] = ACTIONS(2770), - [anon_sym_o_GT] = ACTIONS(2770), - [anon_sym_err_PLUSout_GT] = ACTIONS(2770), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2770), - [anon_sym_o_PLUSe_GT] = ACTIONS(2770), - [anon_sym_e_PLUSo_GT] = ACTIONS(2770), - [anon_sym_err_GT_GT] = ACTIONS(2768), - [anon_sym_out_GT_GT] = ACTIONS(2768), - [anon_sym_e_GT_GT] = ACTIONS(2768), - [anon_sym_o_GT_GT] = ACTIONS(2768), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2768), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2768), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2768), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2768), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2841), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2835), + [anon_sym_bit_DASHor2] = ACTIONS(2837), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1162)] = { - [sym__expression] = STATE(4809), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2216), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1826), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), + [sym__ctrl_match_body] = STATE(4989), + [sym_match_arm] = STATE(4491), + [sym_default_arm] = STATE(4491), + [sym_match_pattern] = STATE(5060), + [sym__match_pattern] = STATE(3839), + [sym__match_pattern_expression] = STATE(4159), + [sym__match_pattern_value] = STATE(4160), + [sym__match_pattern_list] = STATE(4161), + [sym__match_pattern_record] = STATE(4166), + [sym_expr_parenthesized] = STATE(3704), + [sym_val_range] = STATE(4160), + [sym__val_range] = STATE(5001), + [sym_val_nothing] = STATE(4166), + [sym_val_bool] = STATE(3970), + [sym_val_variable] = STATE(3705), + [sym_val_number] = STATE(4166), + [sym__val_number_decimal] = STATE(3469), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(4166), + [sym_val_filesize] = STATE(4166), + [sym_val_binary] = STATE(4166), + [sym_val_string] = STATE(4166), + [sym__raw_str] = STATE(2247), + [sym__str_double_quotes] = STATE(2247), + [sym__str_single_quotes] = STATE(2247), + [sym__str_back_ticks] = STATE(2247), + [sym_val_table] = STATE(4166), + [sym_unquoted] = STATE(4170), + [sym__unquoted_anonymous_prefix] = STATE(5001), [sym_comment] = STATE(1162), - [aux_sym_cmd_identifier_token2] = ACTIONS(2533), - [anon_sym_true] = ACTIONS(2535), - [anon_sym_false] = ACTIONS(2535), - [anon_sym_null] = ACTIONS(2537), - [aux_sym_cmd_identifier_token3] = ACTIONS(2539), - [aux_sym_cmd_identifier_token4] = ACTIONS(2539), - [aux_sym_cmd_identifier_token5] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1976), - [aux_sym__val_number_decimal_token3] = ACTIONS(2543), - [aux_sym__val_number_decimal_token4] = ACTIONS(2543), - [aux_sym__val_number_token1] = ACTIONS(2539), - [aux_sym__val_number_token2] = ACTIONS(2539), - [aux_sym__val_number_token3] = ACTIONS(2539), + [aux_sym__types_body_repeat1] = STATE(1346), + [aux_sym__ctrl_match_body_repeat1] = STATE(1359), + [anon_sym_true] = ACTIONS(2861), + [anon_sym_false] = ACTIONS(2861), + [anon_sym_null] = ACTIONS(2863), + [aux_sym_cmd_identifier_token3] = ACTIONS(2865), + [aux_sym_cmd_identifier_token4] = ACTIONS(2865), + [aux_sym_cmd_identifier_token5] = ACTIONS(2865), + [sym__newline] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2869), + [anon_sym_LPAREN] = ACTIONS(2752), + [anon_sym_DOLLAR] = ACTIONS(2871), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2895), + [anon_sym__] = ACTIONS(2877), + [anon_sym_DOT_DOT] = ACTIONS(2879), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2881), + [anon_sym_DOT_DOT_LT] = ACTIONS(2881), + [aux_sym__val_number_decimal_token1] = ACTIONS(2883), + [aux_sym__val_number_decimal_token2] = ACTIONS(2885), + [aux_sym__val_number_decimal_token3] = ACTIONS(2887), + [aux_sym__val_number_decimal_token4] = ACTIONS(2887), + [aux_sym__val_number_token1] = ACTIONS(189), + [aux_sym__val_number_token2] = ACTIONS(189), + [aux_sym__val_number_token3] = ACTIONS(189), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2545), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [sym_val_date] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_BQUOTE] = ACTIONS(1794), + [aux_sym_unquoted_token1] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1796), }, [STATE(1163)] = { - [aux_sym__repeat_newline] = STATE(517), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1163), - [anon_sym_in] = ACTIONS(2692), - [sym__newline] = ACTIONS(2692), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2694), - [anon_sym_DASH2] = ACTIONS(2692), - [anon_sym_STAR2] = ACTIONS(2694), - [anon_sym_and2] = ACTIONS(2692), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2692), - [anon_sym_has2] = ACTIONS(2692), - [anon_sym_not_DASHhas2] = ACTIONS(2692), - [anon_sym_starts_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2692), - [anon_sym_ends_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2692), - [anon_sym_EQ_EQ2] = ACTIONS(2692), - [anon_sym_BANG_EQ2] = ACTIONS(2692), - [anon_sym_LT2] = ACTIONS(2694), - [anon_sym_LT_EQ2] = ACTIONS(2692), - [anon_sym_GT_EQ2] = ACTIONS(2692), - [anon_sym_EQ_TILDE2] = ACTIONS(2692), - [anon_sym_BANG_TILDE2] = ACTIONS(2692), - [anon_sym_like2] = ACTIONS(2692), - [anon_sym_not_DASHlike2] = ACTIONS(2692), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2694), - [anon_sym_mod2] = ACTIONS(2692), - [anon_sym_SLASH_SLASH2] = ACTIONS(2692), - [anon_sym_PLUS2] = ACTIONS(2694), - [anon_sym_bit_DASHshl2] = ACTIONS(2692), - [anon_sym_bit_DASHshr2] = ACTIONS(2692), - [anon_sym_bit_DASHand2] = ACTIONS(2692), - [anon_sym_bit_DASHxor2] = ACTIONS(2692), - [anon_sym_bit_DASHor2] = ACTIONS(2692), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2841), + [anon_sym_xor2] = ACTIONS(2897), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2835), + [anon_sym_bit_DASHor2] = ACTIONS(2837), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1164)] = { - [aux_sym__repeat_newline] = STATE(517), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1164), - [anon_sym_in] = ACTIONS(2772), - [sym__newline] = ACTIONS(2772), - [anon_sym_SEMI] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_err_GT_PIPE] = ACTIONS(2772), - [anon_sym_out_GT_PIPE] = ACTIONS(2772), - [anon_sym_e_GT_PIPE] = ACTIONS(2772), - [anon_sym_o_GT_PIPE] = ACTIONS(2772), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), - [anon_sym_RPAREN] = ACTIONS(2772), - [anon_sym_GT2] = ACTIONS(2774), - [anon_sym_DASH2] = ACTIONS(2772), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2772), - [anon_sym_xor2] = ACTIONS(2772), - [anon_sym_or2] = ACTIONS(2772), - [anon_sym_not_DASHin2] = ACTIONS(2772), - [anon_sym_has2] = ACTIONS(2772), - [anon_sym_not_DASHhas2] = ACTIONS(2772), - [anon_sym_starts_DASHwith2] = ACTIONS(2772), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2772), - [anon_sym_ends_DASHwith2] = ACTIONS(2772), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2772), - [anon_sym_EQ_EQ2] = ACTIONS(2772), - [anon_sym_BANG_EQ2] = ACTIONS(2772), - [anon_sym_LT2] = ACTIONS(2774), - [anon_sym_LT_EQ2] = ACTIONS(2772), - [anon_sym_GT_EQ2] = ACTIONS(2772), - [anon_sym_EQ_TILDE2] = ACTIONS(2772), - [anon_sym_BANG_TILDE2] = ACTIONS(2772), - [anon_sym_like2] = ACTIONS(2772), - [anon_sym_not_DASHlike2] = ACTIONS(2772), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2774), - [anon_sym_bit_DASHshl2] = ACTIONS(2772), - [anon_sym_bit_DASHshr2] = ACTIONS(2772), - [anon_sym_bit_DASHand2] = ACTIONS(2772), - [anon_sym_bit_DASHxor2] = ACTIONS(2772), - [anon_sym_bit_DASHor2] = ACTIONS(2772), - [anon_sym_err_GT] = ACTIONS(2774), - [anon_sym_out_GT] = ACTIONS(2774), - [anon_sym_e_GT] = ACTIONS(2774), - [anon_sym_o_GT] = ACTIONS(2774), - [anon_sym_err_PLUSout_GT] = ACTIONS(2774), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), - [anon_sym_o_PLUSe_GT] = ACTIONS(2774), - [anon_sym_e_PLUSo_GT] = ACTIONS(2774), - [anon_sym_err_GT_GT] = ACTIONS(2772), - [anon_sym_out_GT_GT] = ACTIONS(2772), - [anon_sym_e_GT_GT] = ACTIONS(2772), - [anon_sym_o_GT_GT] = ACTIONS(2772), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_PIPE] = ACTIONS(2652), + [anon_sym_err_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_GT_PIPE] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2652), + [anon_sym_RPAREN] = ACTIONS(2652), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2841), + [anon_sym_xor2] = ACTIONS(2897), + [anon_sym_or2] = ACTIONS(2652), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2835), + [anon_sym_bit_DASHor2] = ACTIONS(2837), + [anon_sym_err_GT] = ACTIONS(2654), + [anon_sym_out_GT] = ACTIONS(2654), + [anon_sym_e_GT] = ACTIONS(2654), + [anon_sym_o_GT] = ACTIONS(2654), + [anon_sym_err_PLUSout_GT] = ACTIONS(2654), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2654), + [anon_sym_o_PLUSe_GT] = ACTIONS(2654), + [anon_sym_e_PLUSo_GT] = ACTIONS(2654), + [anon_sym_err_GT_GT] = ACTIONS(2652), + [anon_sym_out_GT_GT] = ACTIONS(2652), + [anon_sym_e_GT_GT] = ACTIONS(2652), + [anon_sym_o_GT_GT] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2652), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1165)] = { - [aux_sym__repeat_newline] = STATE(517), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1165), - [anon_sym_in] = ACTIONS(2688), - [sym__newline] = ACTIONS(2688), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2690), - [anon_sym_DASH2] = ACTIONS(2688), - [anon_sym_STAR2] = ACTIONS(2690), - [anon_sym_and2] = ACTIONS(2688), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2688), - [anon_sym_has2] = ACTIONS(2688), - [anon_sym_not_DASHhas2] = ACTIONS(2688), - [anon_sym_starts_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2688), - [anon_sym_ends_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2688), - [anon_sym_EQ_EQ2] = ACTIONS(2688), - [anon_sym_BANG_EQ2] = ACTIONS(2688), - [anon_sym_LT2] = ACTIONS(2690), - [anon_sym_LT_EQ2] = ACTIONS(2688), - [anon_sym_GT_EQ2] = ACTIONS(2688), - [anon_sym_EQ_TILDE2] = ACTIONS(2688), - [anon_sym_BANG_TILDE2] = ACTIONS(2688), - [anon_sym_like2] = ACTIONS(2688), - [anon_sym_not_DASHlike2] = ACTIONS(2688), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2690), - [anon_sym_mod2] = ACTIONS(2688), - [anon_sym_SLASH_SLASH2] = ACTIONS(2688), - [anon_sym_PLUS2] = ACTIONS(2690), - [anon_sym_bit_DASHshl2] = ACTIONS(2688), - [anon_sym_bit_DASHshr2] = ACTIONS(2688), - [anon_sym_bit_DASHand2] = ACTIONS(2688), - [anon_sym_bit_DASHxor2] = ACTIONS(2688), - [anon_sym_bit_DASHor2] = ACTIONS(2688), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), + [anon_sym_in] = ACTIONS(2666), + [sym__newline] = ACTIONS(2666), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2668), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2666), + [anon_sym_has2] = ACTIONS(2666), + [anon_sym_not_DASHhas2] = ACTIONS(2666), + [anon_sym_starts_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2666), + [anon_sym_ends_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2666), + [anon_sym_EQ_EQ2] = ACTIONS(2666), + [anon_sym_BANG_EQ2] = ACTIONS(2666), + [anon_sym_LT2] = ACTIONS(2668), + [anon_sym_LT_EQ2] = ACTIONS(2666), + [anon_sym_GT_EQ2] = ACTIONS(2666), + [anon_sym_EQ_TILDE2] = ACTIONS(2666), + [anon_sym_BANG_TILDE2] = ACTIONS(2666), + [anon_sym_like2] = ACTIONS(2666), + [anon_sym_not_DASHlike2] = ACTIONS(2666), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2666), + [anon_sym_bit_DASHxor2] = ACTIONS(2666), + [anon_sym_bit_DASHor2] = ACTIONS(2666), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1166)] = { - [aux_sym__repeat_newline] = STATE(1245), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1166), - [anon_sym_in] = ACTIONS(2768), - [sym__newline] = ACTIONS(2867), - [anon_sym_SEMI] = ACTIONS(2768), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_err_GT_PIPE] = ACTIONS(2768), - [anon_sym_out_GT_PIPE] = ACTIONS(2768), - [anon_sym_e_GT_PIPE] = ACTIONS(2768), - [anon_sym_o_GT_PIPE] = ACTIONS(2768), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2768), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2768), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2768), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2768), - [anon_sym_RPAREN] = ACTIONS(2768), - [anon_sym_GT2] = ACTIONS(2770), - [anon_sym_DASH2] = ACTIONS(2768), - [anon_sym_STAR2] = ACTIONS(2770), - [anon_sym_and2] = ACTIONS(2768), - [anon_sym_xor2] = ACTIONS(2768), - [anon_sym_or2] = ACTIONS(2768), - [anon_sym_not_DASHin2] = ACTIONS(2768), - [anon_sym_has2] = ACTIONS(2768), - [anon_sym_not_DASHhas2] = ACTIONS(2768), - [anon_sym_starts_DASHwith2] = ACTIONS(2768), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2768), - [anon_sym_ends_DASHwith2] = ACTIONS(2768), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2768), - [anon_sym_EQ_EQ2] = ACTIONS(2768), - [anon_sym_BANG_EQ2] = ACTIONS(2768), - [anon_sym_LT2] = ACTIONS(2770), - [anon_sym_LT_EQ2] = ACTIONS(2768), - [anon_sym_GT_EQ2] = ACTIONS(2768), - [anon_sym_EQ_TILDE2] = ACTIONS(2768), - [anon_sym_BANG_TILDE2] = ACTIONS(2768), - [anon_sym_like2] = ACTIONS(2768), - [anon_sym_not_DASHlike2] = ACTIONS(2768), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2770), - [anon_sym_mod2] = ACTIONS(2768), - [anon_sym_SLASH_SLASH2] = ACTIONS(2768), - [anon_sym_PLUS2] = ACTIONS(2770), - [anon_sym_bit_DASHshl2] = ACTIONS(2768), - [anon_sym_bit_DASHshr2] = ACTIONS(2768), - [anon_sym_bit_DASHand2] = ACTIONS(2768), - [anon_sym_bit_DASHxor2] = ACTIONS(2768), - [anon_sym_bit_DASHor2] = ACTIONS(2768), - [anon_sym_err_GT] = ACTIONS(2770), - [anon_sym_out_GT] = ACTIONS(2770), - [anon_sym_e_GT] = ACTIONS(2770), - [anon_sym_o_GT] = ACTIONS(2770), - [anon_sym_err_PLUSout_GT] = ACTIONS(2770), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2770), - [anon_sym_o_PLUSe_GT] = ACTIONS(2770), - [anon_sym_e_PLUSo_GT] = ACTIONS(2770), - [anon_sym_err_GT_GT] = ACTIONS(2768), - [anon_sym_out_GT_GT] = ACTIONS(2768), - [anon_sym_e_GT_GT] = ACTIONS(2768), - [anon_sym_o_GT_GT] = ACTIONS(2768), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2768), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2768), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2768), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2768), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2722), + [anon_sym_BANG_TILDE2] = ACTIONS(2722), + [anon_sym_like2] = ACTIONS(2722), + [anon_sym_not_DASHlike2] = ACTIONS(2722), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1167)] = { + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1167), - [ts_builtin_sym_end] = ACTIONS(2325), - [aux_sym_cmd_identifier_token2] = ACTIONS(2878), - [anon_sym_in] = ACTIONS(2327), - [sym__newline] = ACTIONS(2325), - [anon_sym_SEMI] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(2325), - [anon_sym_err_GT_PIPE] = ACTIONS(2325), - [anon_sym_out_GT_PIPE] = ACTIONS(2325), - [anon_sym_e_GT_PIPE] = ACTIONS(2325), - [anon_sym_o_GT_PIPE] = ACTIONS(2325), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2325), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2325), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2325), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2325), - [anon_sym_GT2] = ACTIONS(2327), - [anon_sym_DASH2] = ACTIONS(2327), - [anon_sym_STAR2] = ACTIONS(2327), - [anon_sym_and2] = ACTIONS(2327), - [anon_sym_xor2] = ACTIONS(2327), - [anon_sym_or2] = ACTIONS(2327), - [anon_sym_not_DASHin2] = ACTIONS(2327), - [anon_sym_has2] = ACTIONS(2327), - [anon_sym_not_DASHhas2] = ACTIONS(2327), - [anon_sym_starts_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), - [anon_sym_ends_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), - [anon_sym_EQ_EQ2] = ACTIONS(2325), - [anon_sym_BANG_EQ2] = ACTIONS(2325), - [anon_sym_LT2] = ACTIONS(2327), - [anon_sym_LT_EQ2] = ACTIONS(2325), - [anon_sym_GT_EQ2] = ACTIONS(2325), - [anon_sym_EQ_TILDE2] = ACTIONS(2325), - [anon_sym_BANG_TILDE2] = ACTIONS(2327), - [anon_sym_like2] = ACTIONS(2327), - [anon_sym_not_DASHlike2] = ACTIONS(2327), - [anon_sym_STAR_STAR2] = ACTIONS(2327), - [anon_sym_PLUS_PLUS2] = ACTIONS(2327), - [anon_sym_SLASH2] = ACTIONS(2327), - [anon_sym_mod2] = ACTIONS(2327), - [anon_sym_SLASH_SLASH2] = ACTIONS(2327), - [anon_sym_PLUS2] = ACTIONS(2327), - [anon_sym_bit_DASHshl2] = ACTIONS(2327), - [anon_sym_bit_DASHshr2] = ACTIONS(2327), - [anon_sym_bit_DASHand2] = ACTIONS(2327), - [anon_sym_bit_DASHxor2] = ACTIONS(2327), - [anon_sym_bit_DASHor2] = ACTIONS(2327), - [anon_sym_err_GT] = ACTIONS(2327), - [anon_sym_out_GT] = ACTIONS(2327), - [anon_sym_e_GT] = ACTIONS(2327), - [anon_sym_o_GT] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT] = ACTIONS(2327), - [anon_sym_err_GT_GT] = ACTIONS(2325), - [anon_sym_out_GT_GT] = ACTIONS(2325), - [anon_sym_e_GT_GT] = ACTIONS(2325), - [anon_sym_o_GT_GT] = ACTIONS(2325), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2325), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2325), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2325), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2325), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_PIPE] = ACTIONS(2652), + [anon_sym_err_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_GT_PIPE] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2652), + [anon_sym_RPAREN] = ACTIONS(2652), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2652), + [anon_sym_xor2] = ACTIONS(2652), + [anon_sym_or2] = ACTIONS(2652), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2652), + [anon_sym_BANG_TILDE2] = ACTIONS(2652), + [anon_sym_like2] = ACTIONS(2652), + [anon_sym_not_DASHlike2] = ACTIONS(2652), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2652), + [anon_sym_bit_DASHxor2] = ACTIONS(2652), + [anon_sym_bit_DASHor2] = ACTIONS(2652), + [anon_sym_err_GT] = ACTIONS(2654), + [anon_sym_out_GT] = ACTIONS(2654), + [anon_sym_e_GT] = ACTIONS(2654), + [anon_sym_o_GT] = ACTIONS(2654), + [anon_sym_err_PLUSout_GT] = ACTIONS(2654), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2654), + [anon_sym_o_PLUSe_GT] = ACTIONS(2654), + [anon_sym_e_PLUSo_GT] = ACTIONS(2654), + [anon_sym_err_GT_GT] = ACTIONS(2652), + [anon_sym_out_GT_GT] = ACTIONS(2652), + [anon_sym_e_GT_GT] = ACTIONS(2652), + [anon_sym_o_GT_GT] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2652), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1168)] = { - [aux_sym__repeat_newline] = STATE(517), + [aux_sym__repeat_newline] = STATE(1155), [sym_comment] = STATE(1168), - [anon_sym_in] = ACTIONS(2804), - [sym__newline] = ACTIONS(2688), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2806), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2688), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2804), - [anon_sym_has2] = ACTIONS(2804), - [anon_sym_not_DASHhas2] = ACTIONS(2804), - [anon_sym_starts_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), - [anon_sym_ends_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2806), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2830), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), + [anon_sym_in] = ACTIONS(2662), + [sym__newline] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2664), + [anon_sym_DASH2] = ACTIONS(2662), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2662), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2662), + [anon_sym_has2] = ACTIONS(2662), + [anon_sym_not_DASHhas2] = ACTIONS(2662), + [anon_sym_starts_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2662), + [anon_sym_ends_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2662), + [anon_sym_EQ_EQ2] = ACTIONS(2662), + [anon_sym_BANG_EQ2] = ACTIONS(2662), + [anon_sym_LT2] = ACTIONS(2664), + [anon_sym_LT_EQ2] = ACTIONS(2662), + [anon_sym_GT_EQ2] = ACTIONS(2662), + [anon_sym_EQ_TILDE2] = ACTIONS(2662), + [anon_sym_BANG_TILDE2] = ACTIONS(2662), + [anon_sym_like2] = ACTIONS(2662), + [anon_sym_not_DASHlike2] = ACTIONS(2662), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2664), + [anon_sym_bit_DASHshl2] = ACTIONS(2662), + [anon_sym_bit_DASHshr2] = ACTIONS(2662), + [anon_sym_bit_DASHand2] = ACTIONS(2662), + [anon_sym_bit_DASHxor2] = ACTIONS(2662), + [anon_sym_bit_DASHor2] = ACTIONS(2662), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1169)] = { - [aux_sym__repeat_newline] = STATE(517), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1169), - [anon_sym_in] = ACTIONS(2772), - [sym__newline] = ACTIONS(2772), - [anon_sym_SEMI] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_err_GT_PIPE] = ACTIONS(2772), - [anon_sym_out_GT_PIPE] = ACTIONS(2772), - [anon_sym_e_GT_PIPE] = ACTIONS(2772), - [anon_sym_o_GT_PIPE] = ACTIONS(2772), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), - [anon_sym_RPAREN] = ACTIONS(2772), - [anon_sym_GT2] = ACTIONS(2774), - [anon_sym_DASH2] = ACTIONS(2772), - [anon_sym_STAR2] = ACTIONS(2774), - [anon_sym_and2] = ACTIONS(2772), - [anon_sym_xor2] = ACTIONS(2772), - [anon_sym_or2] = ACTIONS(2772), - [anon_sym_not_DASHin2] = ACTIONS(2772), - [anon_sym_has2] = ACTIONS(2772), - [anon_sym_not_DASHhas2] = ACTIONS(2772), - [anon_sym_starts_DASHwith2] = ACTIONS(2772), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2772), - [anon_sym_ends_DASHwith2] = ACTIONS(2772), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2772), - [anon_sym_EQ_EQ2] = ACTIONS(2772), - [anon_sym_BANG_EQ2] = ACTIONS(2772), - [anon_sym_LT2] = ACTIONS(2774), - [anon_sym_LT_EQ2] = ACTIONS(2772), - [anon_sym_GT_EQ2] = ACTIONS(2772), - [anon_sym_EQ_TILDE2] = ACTIONS(2772), - [anon_sym_BANG_TILDE2] = ACTIONS(2772), - [anon_sym_like2] = ACTIONS(2772), - [anon_sym_not_DASHlike2] = ACTIONS(2772), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2774), - [anon_sym_mod2] = ACTIONS(2772), - [anon_sym_SLASH_SLASH2] = ACTIONS(2772), - [anon_sym_PLUS2] = ACTIONS(2774), - [anon_sym_bit_DASHshl2] = ACTIONS(2772), - [anon_sym_bit_DASHshr2] = ACTIONS(2772), - [anon_sym_bit_DASHand2] = ACTIONS(2772), - [anon_sym_bit_DASHxor2] = ACTIONS(2772), - [anon_sym_bit_DASHor2] = ACTIONS(2772), - [anon_sym_err_GT] = ACTIONS(2774), - [anon_sym_out_GT] = ACTIONS(2774), - [anon_sym_e_GT] = ACTIONS(2774), - [anon_sym_o_GT] = ACTIONS(2774), - [anon_sym_err_PLUSout_GT] = ACTIONS(2774), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), - [anon_sym_o_PLUSe_GT] = ACTIONS(2774), - [anon_sym_e_PLUSo_GT] = ACTIONS(2774), - [anon_sym_err_GT_GT] = ACTIONS(2772), - [anon_sym_out_GT_GT] = ACTIONS(2772), - [anon_sym_e_GT_GT] = ACTIONS(2772), - [anon_sym_o_GT_GT] = ACTIONS(2772), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), + [anon_sym_in] = ACTIONS(2652), + [sym__newline] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_PIPE] = ACTIONS(2652), + [anon_sym_err_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_GT_PIPE] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2652), + [anon_sym_RPAREN] = ACTIONS(2652), + [anon_sym_GT2] = ACTIONS(2654), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2652), + [anon_sym_xor2] = ACTIONS(2652), + [anon_sym_or2] = ACTIONS(2652), + [anon_sym_not_DASHin2] = ACTIONS(2652), + [anon_sym_has2] = ACTIONS(2652), + [anon_sym_not_DASHhas2] = ACTIONS(2652), + [anon_sym_starts_DASHwith2] = ACTIONS(2652), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2652), + [anon_sym_ends_DASHwith2] = ACTIONS(2652), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2652), + [anon_sym_EQ_EQ2] = ACTIONS(2652), + [anon_sym_BANG_EQ2] = ACTIONS(2652), + [anon_sym_LT2] = ACTIONS(2654), + [anon_sym_LT_EQ2] = ACTIONS(2652), + [anon_sym_GT_EQ2] = ACTIONS(2652), + [anon_sym_EQ_TILDE2] = ACTIONS(2652), + [anon_sym_BANG_TILDE2] = ACTIONS(2652), + [anon_sym_like2] = ACTIONS(2652), + [anon_sym_not_DASHlike2] = ACTIONS(2652), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2652), + [anon_sym_bit_DASHxor2] = ACTIONS(2652), + [anon_sym_bit_DASHor2] = ACTIONS(2652), + [anon_sym_err_GT] = ACTIONS(2654), + [anon_sym_out_GT] = ACTIONS(2654), + [anon_sym_e_GT] = ACTIONS(2654), + [anon_sym_o_GT] = ACTIONS(2654), + [anon_sym_err_PLUSout_GT] = ACTIONS(2654), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2654), + [anon_sym_o_PLUSe_GT] = ACTIONS(2654), + [anon_sym_e_PLUSo_GT] = ACTIONS(2654), + [anon_sym_err_GT_GT] = ACTIONS(2652), + [anon_sym_out_GT_GT] = ACTIONS(2652), + [anon_sym_e_GT_GT] = ACTIONS(2652), + [anon_sym_o_GT_GT] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2652), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1170)] = { - [sym__expression] = STATE(4762), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2216), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1826), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1170), - [aux_sym_cmd_identifier_token2] = ACTIONS(2878), - [anon_sym_true] = ACTIONS(2535), - [anon_sym_false] = ACTIONS(2535), - [anon_sym_null] = ACTIONS(2537), - [aux_sym_cmd_identifier_token3] = ACTIONS(2539), - [aux_sym_cmd_identifier_token4] = ACTIONS(2539), - [aux_sym_cmd_identifier_token5] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1976), - [aux_sym__val_number_decimal_token3] = ACTIONS(2543), - [aux_sym__val_number_decimal_token4] = ACTIONS(2543), - [aux_sym__val_number_token1] = ACTIONS(2539), - [aux_sym__val_number_token2] = ACTIONS(2539), - [aux_sym__val_number_token3] = ACTIONS(2539), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2545), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), + [anon_sym_in] = ACTIONS(2722), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2724), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2722), + [anon_sym_has2] = ACTIONS(2722), + [anon_sym_not_DASHhas2] = ACTIONS(2722), + [anon_sym_starts_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2722), + [anon_sym_ends_DASHwith2] = ACTIONS(2722), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2722), + [anon_sym_EQ_EQ2] = ACTIONS(2722), + [anon_sym_BANG_EQ2] = ACTIONS(2722), + [anon_sym_LT2] = ACTIONS(2724), + [anon_sym_LT_EQ2] = ACTIONS(2722), + [anon_sym_GT_EQ2] = ACTIONS(2722), + [anon_sym_EQ_TILDE2] = ACTIONS(2722), + [anon_sym_BANG_TILDE2] = ACTIONS(2722), + [anon_sym_like2] = ACTIONS(2722), + [anon_sym_not_DASHlike2] = ACTIONS(2722), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2722), + [anon_sym_bit_DASHshr2] = ACTIONS(2722), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1171)] = { - [aux_sym__repeat_newline] = STATE(1247), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1171), - [anon_sym_in] = ACTIONS(2832), - [sym__newline] = ACTIONS(2867), - [anon_sym_SEMI] = ACTIONS(2768), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_err_GT_PIPE] = ACTIONS(2768), - [anon_sym_out_GT_PIPE] = ACTIONS(2768), - [anon_sym_e_GT_PIPE] = ACTIONS(2768), - [anon_sym_o_GT_PIPE] = ACTIONS(2768), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2768), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2768), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2768), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2768), - [anon_sym_RPAREN] = ACTIONS(2768), - [anon_sym_GT2] = ACTIONS(2836), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2768), - [anon_sym_xor2] = ACTIONS(2768), - [anon_sym_or2] = ACTIONS(2768), - [anon_sym_not_DASHin2] = ACTIONS(2832), - [anon_sym_has2] = ACTIONS(2832), - [anon_sym_not_DASHhas2] = ACTIONS(2832), - [anon_sym_starts_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), - [anon_sym_ends_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), - [anon_sym_EQ_EQ2] = ACTIONS(2846), - [anon_sym_BANG_EQ2] = ACTIONS(2846), - [anon_sym_LT2] = ACTIONS(2836), - [anon_sym_LT_EQ2] = ACTIONS(2846), - [anon_sym_GT_EQ2] = ACTIONS(2846), - [anon_sym_EQ_TILDE2] = ACTIONS(2848), - [anon_sym_BANG_TILDE2] = ACTIONS(2848), - [anon_sym_like2] = ACTIONS(2848), - [anon_sym_not_DASHlike2] = ACTIONS(2848), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2770), - [anon_sym_out_GT] = ACTIONS(2770), - [anon_sym_e_GT] = ACTIONS(2770), - [anon_sym_o_GT] = ACTIONS(2770), - [anon_sym_err_PLUSout_GT] = ACTIONS(2770), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2770), - [anon_sym_o_PLUSe_GT] = ACTIONS(2770), - [anon_sym_e_PLUSo_GT] = ACTIONS(2770), - [anon_sym_err_GT_GT] = ACTIONS(2768), - [anon_sym_out_GT_GT] = ACTIONS(2768), - [anon_sym_e_GT_GT] = ACTIONS(2768), - [anon_sym_o_GT_GT] = ACTIONS(2768), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2768), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2768), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2768), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2768), + [anon_sym_in] = ACTIONS(2732), + [sym__newline] = ACTIONS(2732), + [anon_sym_SEMI] = ACTIONS(2732), + [anon_sym_PIPE] = ACTIONS(2732), + [anon_sym_err_GT_PIPE] = ACTIONS(2732), + [anon_sym_out_GT_PIPE] = ACTIONS(2732), + [anon_sym_e_GT_PIPE] = ACTIONS(2732), + [anon_sym_o_GT_PIPE] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), + [anon_sym_RPAREN] = ACTIONS(2732), + [anon_sym_GT2] = ACTIONS(2734), + [anon_sym_DASH2] = ACTIONS(2732), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2732), + [anon_sym_xor2] = ACTIONS(2732), + [anon_sym_or2] = ACTIONS(2732), + [anon_sym_not_DASHin2] = ACTIONS(2732), + [anon_sym_has2] = ACTIONS(2732), + [anon_sym_not_DASHhas2] = ACTIONS(2732), + [anon_sym_starts_DASHwith2] = ACTIONS(2732), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2732), + [anon_sym_ends_DASHwith2] = ACTIONS(2732), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2732), + [anon_sym_EQ_EQ2] = ACTIONS(2732), + [anon_sym_BANG_EQ2] = ACTIONS(2732), + [anon_sym_LT2] = ACTIONS(2734), + [anon_sym_LT_EQ2] = ACTIONS(2732), + [anon_sym_GT_EQ2] = ACTIONS(2732), + [anon_sym_EQ_TILDE2] = ACTIONS(2732), + [anon_sym_BANG_TILDE2] = ACTIONS(2732), + [anon_sym_like2] = ACTIONS(2732), + [anon_sym_not_DASHlike2] = ACTIONS(2732), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2734), + [anon_sym_bit_DASHshl2] = ACTIONS(2732), + [anon_sym_bit_DASHshr2] = ACTIONS(2732), + [anon_sym_bit_DASHand2] = ACTIONS(2732), + [anon_sym_bit_DASHxor2] = ACTIONS(2732), + [anon_sym_bit_DASHor2] = ACTIONS(2732), + [anon_sym_err_GT] = ACTIONS(2734), + [anon_sym_out_GT] = ACTIONS(2734), + [anon_sym_e_GT] = ACTIONS(2734), + [anon_sym_o_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT] = ACTIONS(2734), + [anon_sym_err_GT_GT] = ACTIONS(2732), + [anon_sym_out_GT_GT] = ACTIONS(2732), + [anon_sym_e_GT_GT] = ACTIONS(2732), + [anon_sym_o_GT_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1172)] = { - [aux_sym__repeat_newline] = STATE(517), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1172), - [anon_sym_in] = ACTIONS(2804), - [sym__newline] = ACTIONS(2688), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2806), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2812), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2804), - [anon_sym_has2] = ACTIONS(2804), - [anon_sym_not_DASHhas2] = ACTIONS(2804), - [anon_sym_starts_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), - [anon_sym_ends_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2806), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2830), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2722), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1173)] = { - [aux_sym__repeat_newline] = STATE(1168), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1173), - [anon_sym_in] = ACTIONS(2832), - [sym__newline] = ACTIONS(2870), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_err_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_GT_PIPE] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2684), - [anon_sym_GT2] = ACTIONS(2836), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2684), - [anon_sym_xor2] = ACTIONS(2684), - [anon_sym_or2] = ACTIONS(2684), - [anon_sym_not_DASHin2] = ACTIONS(2832), - [anon_sym_has2] = ACTIONS(2832), - [anon_sym_not_DASHhas2] = ACTIONS(2832), - [anon_sym_starts_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), - [anon_sym_ends_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), - [anon_sym_EQ_EQ2] = ACTIONS(2846), - [anon_sym_BANG_EQ2] = ACTIONS(2846), - [anon_sym_LT2] = ACTIONS(2836), - [anon_sym_LT_EQ2] = ACTIONS(2846), - [anon_sym_GT_EQ2] = ACTIONS(2846), - [anon_sym_EQ_TILDE2] = ACTIONS(2848), - [anon_sym_BANG_TILDE2] = ACTIONS(2848), - [anon_sym_like2] = ACTIONS(2848), - [anon_sym_not_DASHlike2] = ACTIONS(2848), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2686), - [anon_sym_out_GT] = ACTIONS(2686), - [anon_sym_e_GT] = ACTIONS(2686), - [anon_sym_o_GT] = ACTIONS(2686), - [anon_sym_err_PLUSout_GT] = ACTIONS(2686), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), - [anon_sym_o_PLUSe_GT] = ACTIONS(2686), - [anon_sym_e_PLUSo_GT] = ACTIONS(2686), - [anon_sym_err_GT_GT] = ACTIONS(2684), - [anon_sym_out_GT_GT] = ACTIONS(2684), - [anon_sym_e_GT_GT] = ACTIONS(2684), - [anon_sym_o_GT_GT] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2722), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1174)] = { - [aux_sym__repeat_newline] = STATE(517), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1174), - [anon_sym_in] = ACTIONS(2804), - [sym__newline] = ACTIONS(2772), - [anon_sym_SEMI] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_err_GT_PIPE] = ACTIONS(2772), - [anon_sym_out_GT_PIPE] = ACTIONS(2772), - [anon_sym_e_GT_PIPE] = ACTIONS(2772), - [anon_sym_o_GT_PIPE] = ACTIONS(2772), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), - [anon_sym_RPAREN] = ACTIONS(2772), - [anon_sym_GT2] = ACTIONS(2806), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2772), - [anon_sym_xor2] = ACTIONS(2772), - [anon_sym_or2] = ACTIONS(2772), - [anon_sym_not_DASHin2] = ACTIONS(2804), - [anon_sym_has2] = ACTIONS(2804), - [anon_sym_not_DASHhas2] = ACTIONS(2804), - [anon_sym_starts_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), - [anon_sym_ends_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2806), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2830), - [anon_sym_err_GT] = ACTIONS(2774), - [anon_sym_out_GT] = ACTIONS(2774), - [anon_sym_e_GT] = ACTIONS(2774), - [anon_sym_o_GT] = ACTIONS(2774), - [anon_sym_err_PLUSout_GT] = ACTIONS(2774), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), - [anon_sym_o_PLUSe_GT] = ACTIONS(2774), - [anon_sym_e_PLUSo_GT] = ACTIONS(2774), - [anon_sym_err_GT_GT] = ACTIONS(2772), - [anon_sym_out_GT_GT] = ACTIONS(2772), - [anon_sym_e_GT_GT] = ACTIONS(2772), - [anon_sym_o_GT_GT] = ACTIONS(2772), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2722), + [anon_sym_PIPE] = ACTIONS(2722), + [anon_sym_err_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_GT_PIPE] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2722), + [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2722), + [anon_sym_xor2] = ACTIONS(2722), + [anon_sym_or2] = ACTIONS(2722), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2835), + [anon_sym_bit_DASHor2] = ACTIONS(2722), + [anon_sym_err_GT] = ACTIONS(2724), + [anon_sym_out_GT] = ACTIONS(2724), + [anon_sym_e_GT] = ACTIONS(2724), + [anon_sym_o_GT] = ACTIONS(2724), + [anon_sym_err_PLUSout_GT] = ACTIONS(2724), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2724), + [anon_sym_o_PLUSe_GT] = ACTIONS(2724), + [anon_sym_e_PLUSo_GT] = ACTIONS(2724), + [anon_sym_err_GT_GT] = ACTIONS(2722), + [anon_sym_out_GT_GT] = ACTIONS(2722), + [anon_sym_e_GT_GT] = ACTIONS(2722), + [anon_sym_o_GT_GT] = ACTIONS(2722), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2722), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2722), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2722), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2722), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1175)] = { - [aux_sym__repeat_newline] = STATE(517), + [aux_sym__repeat_newline] = STATE(1144), [sym_comment] = STATE(1175), - [anon_sym_in] = ACTIONS(2804), - [sym__newline] = ACTIONS(2688), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2806), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2812), - [anon_sym_xor2] = ACTIONS(2873), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2804), - [anon_sym_has2] = ACTIONS(2804), - [anon_sym_not_DASHhas2] = ACTIONS(2804), - [anon_sym_starts_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), - [anon_sym_ends_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2806), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2830), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2832), + [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_RPAREN] = ACTIONS(2726), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2899), + [anon_sym_xor2] = ACTIONS(2726), + [anon_sym_or2] = ACTIONS(2726), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2805), + [anon_sym_bit_DASHor2] = ACTIONS(2901), + [anon_sym_err_GT] = ACTIONS(2728), + [anon_sym_out_GT] = ACTIONS(2728), + [anon_sym_e_GT] = ACTIONS(2728), + [anon_sym_o_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT] = ACTIONS(2728), + [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), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1176)] = { - [aux_sym__repeat_newline] = STATE(1249), [sym_comment] = STATE(1176), - [anon_sym_in] = ACTIONS(2832), - [sym__newline] = ACTIONS(2867), - [anon_sym_SEMI] = ACTIONS(2768), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_err_GT_PIPE] = ACTIONS(2768), - [anon_sym_out_GT_PIPE] = ACTIONS(2768), - [anon_sym_e_GT_PIPE] = ACTIONS(2768), - [anon_sym_o_GT_PIPE] = ACTIONS(2768), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2768), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2768), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2768), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2768), - [anon_sym_RPAREN] = ACTIONS(2768), - [anon_sym_GT2] = ACTIONS(2836), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2842), - [anon_sym_xor2] = ACTIONS(2768), - [anon_sym_or2] = ACTIONS(2768), - [anon_sym_not_DASHin2] = ACTIONS(2832), - [anon_sym_has2] = ACTIONS(2832), - [anon_sym_not_DASHhas2] = ACTIONS(2832), - [anon_sym_starts_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), - [anon_sym_ends_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), - [anon_sym_EQ_EQ2] = ACTIONS(2846), - [anon_sym_BANG_EQ2] = ACTIONS(2846), - [anon_sym_LT2] = ACTIONS(2836), - [anon_sym_LT_EQ2] = ACTIONS(2846), - [anon_sym_GT_EQ2] = ACTIONS(2846), - [anon_sym_EQ_TILDE2] = ACTIONS(2848), - [anon_sym_BANG_TILDE2] = ACTIONS(2848), - [anon_sym_like2] = ACTIONS(2848), - [anon_sym_not_DASHlike2] = ACTIONS(2848), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2770), - [anon_sym_out_GT] = ACTIONS(2770), - [anon_sym_e_GT] = ACTIONS(2770), - [anon_sym_o_GT] = ACTIONS(2770), - [anon_sym_err_PLUSout_GT] = ACTIONS(2770), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2770), - [anon_sym_o_PLUSe_GT] = ACTIONS(2770), - [anon_sym_e_PLUSo_GT] = ACTIONS(2770), - [anon_sym_err_GT_GT] = ACTIONS(2768), - [anon_sym_out_GT_GT] = ACTIONS(2768), - [anon_sym_e_GT_GT] = ACTIONS(2768), - [anon_sym_o_GT_GT] = ACTIONS(2768), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2768), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2768), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2768), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2768), + [anon_sym_in] = ACTIONS(1706), + [sym__newline] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1706), + [anon_sym_err_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_GT_PIPE] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1706), + [anon_sym_GT2] = ACTIONS(1604), + [anon_sym_DASH2] = ACTIONS(1706), + [anon_sym_RBRACE] = ACTIONS(1706), + [anon_sym_STAR2] = ACTIONS(1604), + [anon_sym_and2] = ACTIONS(1706), + [anon_sym_xor2] = ACTIONS(1706), + [anon_sym_or2] = ACTIONS(1706), + [anon_sym_not_DASHin2] = ACTIONS(1706), + [anon_sym_has2] = ACTIONS(1706), + [anon_sym_not_DASHhas2] = ACTIONS(1706), + [anon_sym_starts_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1706), + [anon_sym_ends_DASHwith2] = ACTIONS(1706), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1706), + [anon_sym_EQ_EQ2] = ACTIONS(1706), + [anon_sym_BANG_EQ2] = ACTIONS(1706), + [anon_sym_LT2] = ACTIONS(1604), + [anon_sym_LT_EQ2] = ACTIONS(1706), + [anon_sym_GT_EQ2] = ACTIONS(1706), + [anon_sym_EQ_TILDE2] = ACTIONS(1706), + [anon_sym_BANG_TILDE2] = ACTIONS(1706), + [anon_sym_like2] = ACTIONS(1706), + [anon_sym_not_DASHlike2] = ACTIONS(1706), + [anon_sym_STAR_STAR2] = ACTIONS(1706), + [anon_sym_PLUS_PLUS2] = ACTIONS(1706), + [anon_sym_SLASH2] = ACTIONS(1604), + [anon_sym_mod2] = ACTIONS(1706), + [anon_sym_SLASH_SLASH2] = ACTIONS(1706), + [anon_sym_PLUS2] = ACTIONS(1604), + [anon_sym_bit_DASHshl2] = ACTIONS(1706), + [anon_sym_bit_DASHshr2] = ACTIONS(1706), + [anon_sym_bit_DASHand2] = ACTIONS(1706), + [anon_sym_bit_DASHxor2] = ACTIONS(1706), + [anon_sym_bit_DASHor2] = ACTIONS(1706), + [anon_sym_COLON2] = ACTIONS(1708), + [anon_sym_err_GT] = ACTIONS(1604), + [anon_sym_out_GT] = ACTIONS(1604), + [anon_sym_e_GT] = ACTIONS(1604), + [anon_sym_o_GT] = ACTIONS(1604), + [anon_sym_err_PLUSout_GT] = ACTIONS(1604), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1604), + [anon_sym_o_PLUSe_GT] = ACTIONS(1604), + [anon_sym_e_PLUSo_GT] = ACTIONS(1604), + [anon_sym_err_GT_GT] = ACTIONS(1706), + [anon_sym_out_GT_GT] = ACTIONS(1706), + [anon_sym_e_GT_GT] = ACTIONS(1706), + [anon_sym_o_GT_GT] = ACTIONS(1706), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1706), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1706), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1706), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1706), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1177)] = { - [aux_sym__repeat_newline] = STATE(1169), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1177), - [anon_sym_in] = ACTIONS(2676), - [sym__newline] = ACTIONS(2864), - [anon_sym_SEMI] = ACTIONS(2676), - [anon_sym_PIPE] = ACTIONS(2676), - [anon_sym_err_GT_PIPE] = ACTIONS(2676), - [anon_sym_out_GT_PIPE] = ACTIONS(2676), - [anon_sym_e_GT_PIPE] = ACTIONS(2676), - [anon_sym_o_GT_PIPE] = ACTIONS(2676), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), - [anon_sym_RPAREN] = ACTIONS(2676), - [anon_sym_GT2] = ACTIONS(2678), - [anon_sym_DASH2] = ACTIONS(2676), - [anon_sym_STAR2] = ACTIONS(2678), - [anon_sym_and2] = ACTIONS(2676), - [anon_sym_xor2] = ACTIONS(2676), - [anon_sym_or2] = ACTIONS(2676), - [anon_sym_not_DASHin2] = ACTIONS(2676), - [anon_sym_has2] = ACTIONS(2676), - [anon_sym_not_DASHhas2] = ACTIONS(2676), - [anon_sym_starts_DASHwith2] = ACTIONS(2676), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2676), - [anon_sym_ends_DASHwith2] = ACTIONS(2676), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2676), - [anon_sym_EQ_EQ2] = ACTIONS(2676), - [anon_sym_BANG_EQ2] = ACTIONS(2676), - [anon_sym_LT2] = ACTIONS(2678), - [anon_sym_LT_EQ2] = ACTIONS(2676), - [anon_sym_GT_EQ2] = ACTIONS(2676), - [anon_sym_EQ_TILDE2] = ACTIONS(2676), - [anon_sym_BANG_TILDE2] = ACTIONS(2676), - [anon_sym_like2] = ACTIONS(2676), - [anon_sym_not_DASHlike2] = ACTIONS(2676), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2678), - [anon_sym_mod2] = ACTIONS(2676), - [anon_sym_SLASH_SLASH2] = ACTIONS(2676), - [anon_sym_PLUS2] = ACTIONS(2678), - [anon_sym_bit_DASHshl2] = ACTIONS(2676), - [anon_sym_bit_DASHshr2] = ACTIONS(2676), - [anon_sym_bit_DASHand2] = ACTIONS(2676), - [anon_sym_bit_DASHxor2] = ACTIONS(2676), - [anon_sym_bit_DASHor2] = ACTIONS(2676), - [anon_sym_err_GT] = ACTIONS(2678), - [anon_sym_out_GT] = ACTIONS(2678), - [anon_sym_e_GT] = ACTIONS(2678), - [anon_sym_o_GT] = ACTIONS(2678), - [anon_sym_err_PLUSout_GT] = ACTIONS(2678), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), - [anon_sym_o_PLUSe_GT] = ACTIONS(2678), - [anon_sym_e_PLUSo_GT] = ACTIONS(2678), - [anon_sym_err_GT_GT] = ACTIONS(2676), - [anon_sym_out_GT_GT] = ACTIONS(2676), - [anon_sym_e_GT_GT] = ACTIONS(2676), - [anon_sym_o_GT_GT] = ACTIONS(2676), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [anon_sym_in] = ACTIONS(2666), + [sym__newline] = ACTIONS(2666), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2668), + [anon_sym_DASH2] = ACTIONS(2666), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2666), + [anon_sym_has2] = ACTIONS(2666), + [anon_sym_not_DASHhas2] = ACTIONS(2666), + [anon_sym_starts_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2666), + [anon_sym_ends_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2666), + [anon_sym_EQ_EQ2] = ACTIONS(2666), + [anon_sym_BANG_EQ2] = ACTIONS(2666), + [anon_sym_LT2] = ACTIONS(2668), + [anon_sym_LT_EQ2] = ACTIONS(2666), + [anon_sym_GT_EQ2] = ACTIONS(2666), + [anon_sym_EQ_TILDE2] = ACTIONS(2666), + [anon_sym_BANG_TILDE2] = ACTIONS(2666), + [anon_sym_like2] = ACTIONS(2666), + [anon_sym_not_DASHlike2] = ACTIONS(2666), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2668), + [anon_sym_bit_DASHshl2] = ACTIONS(2666), + [anon_sym_bit_DASHshr2] = ACTIONS(2666), + [anon_sym_bit_DASHand2] = ACTIONS(2666), + [anon_sym_bit_DASHxor2] = ACTIONS(2666), + [anon_sym_bit_DASHor2] = ACTIONS(2666), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1178)] = { - [aux_sym__repeat_newline] = STATE(1212), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1178), - [anon_sym_in] = ACTIONS(2676), - [sym__newline] = ACTIONS(2864), - [anon_sym_SEMI] = ACTIONS(2676), - [anon_sym_PIPE] = ACTIONS(2676), - [anon_sym_err_GT_PIPE] = ACTIONS(2676), - [anon_sym_out_GT_PIPE] = ACTIONS(2676), - [anon_sym_e_GT_PIPE] = ACTIONS(2676), - [anon_sym_o_GT_PIPE] = ACTIONS(2676), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), - [anon_sym_RPAREN] = ACTIONS(2676), - [anon_sym_GT2] = ACTIONS(2678), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2676), - [anon_sym_xor2] = ACTIONS(2676), - [anon_sym_or2] = ACTIONS(2676), - [anon_sym_not_DASHin2] = ACTIONS(2676), - [anon_sym_has2] = ACTIONS(2676), - [anon_sym_not_DASHhas2] = ACTIONS(2676), - [anon_sym_starts_DASHwith2] = ACTIONS(2676), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2676), - [anon_sym_ends_DASHwith2] = ACTIONS(2676), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2676), - [anon_sym_EQ_EQ2] = ACTIONS(2676), - [anon_sym_BANG_EQ2] = ACTIONS(2676), - [anon_sym_LT2] = ACTIONS(2678), - [anon_sym_LT_EQ2] = ACTIONS(2676), - [anon_sym_GT_EQ2] = ACTIONS(2676), - [anon_sym_EQ_TILDE2] = ACTIONS(2676), - [anon_sym_BANG_TILDE2] = ACTIONS(2676), - [anon_sym_like2] = ACTIONS(2676), - [anon_sym_not_DASHlike2] = ACTIONS(2676), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2676), - [anon_sym_bit_DASHshr2] = ACTIONS(2676), - [anon_sym_bit_DASHand2] = ACTIONS(2676), - [anon_sym_bit_DASHxor2] = ACTIONS(2676), - [anon_sym_bit_DASHor2] = ACTIONS(2676), - [anon_sym_err_GT] = ACTIONS(2678), - [anon_sym_out_GT] = ACTIONS(2678), - [anon_sym_e_GT] = ACTIONS(2678), - [anon_sym_o_GT] = ACTIONS(2678), - [anon_sym_err_PLUSout_GT] = ACTIONS(2678), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), - [anon_sym_o_PLUSe_GT] = ACTIONS(2678), - [anon_sym_e_PLUSo_GT] = ACTIONS(2678), - [anon_sym_err_GT_GT] = ACTIONS(2676), - [anon_sym_out_GT_GT] = ACTIONS(2676), - [anon_sym_e_GT_GT] = ACTIONS(2676), - [anon_sym_o_GT_GT] = ACTIONS(2676), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2732), + [anon_sym_SEMI] = ACTIONS(2732), + [anon_sym_PIPE] = ACTIONS(2732), + [anon_sym_err_GT_PIPE] = ACTIONS(2732), + [anon_sym_out_GT_PIPE] = ACTIONS(2732), + [anon_sym_e_GT_PIPE] = ACTIONS(2732), + [anon_sym_o_GT_PIPE] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), + [anon_sym_RPAREN] = ACTIONS(2732), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2841), + [anon_sym_xor2] = ACTIONS(2732), + [anon_sym_or2] = ACTIONS(2732), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2835), + [anon_sym_bit_DASHor2] = ACTIONS(2837), + [anon_sym_err_GT] = ACTIONS(2734), + [anon_sym_out_GT] = ACTIONS(2734), + [anon_sym_e_GT] = ACTIONS(2734), + [anon_sym_o_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT] = ACTIONS(2734), + [anon_sym_err_GT_GT] = ACTIONS(2732), + [anon_sym_out_GT_GT] = ACTIONS(2732), + [anon_sym_e_GT_GT] = ACTIONS(2732), + [anon_sym_o_GT_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1179)] = { - [aux_sym__repeat_newline] = STATE(517), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1179), - [anon_sym_in] = ACTIONS(2804), - [sym__newline] = ACTIONS(2688), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2806), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2688), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2804), - [anon_sym_has2] = ACTIONS(2804), - [anon_sym_not_DASHhas2] = ACTIONS(2804), - [anon_sym_starts_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), - [anon_sym_ends_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2806), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2688), - [anon_sym_BANG_TILDE2] = ACTIONS(2688), - [anon_sym_like2] = ACTIONS(2688), - [anon_sym_not_DASHlike2] = ACTIONS(2688), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2688), - [anon_sym_bit_DASHxor2] = ACTIONS(2688), - [anon_sym_bit_DASHor2] = ACTIONS(2688), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), + [anon_sym_in] = ACTIONS(2652), + [sym__newline] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_PIPE] = ACTIONS(2652), + [anon_sym_err_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_GT_PIPE] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2652), + [anon_sym_RPAREN] = ACTIONS(2652), + [anon_sym_GT2] = ACTIONS(2654), + [anon_sym_DASH2] = ACTIONS(2652), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2652), + [anon_sym_xor2] = ACTIONS(2652), + [anon_sym_or2] = ACTIONS(2652), + [anon_sym_not_DASHin2] = ACTIONS(2652), + [anon_sym_has2] = ACTIONS(2652), + [anon_sym_not_DASHhas2] = ACTIONS(2652), + [anon_sym_starts_DASHwith2] = ACTIONS(2652), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2652), + [anon_sym_ends_DASHwith2] = ACTIONS(2652), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2652), + [anon_sym_EQ_EQ2] = ACTIONS(2652), + [anon_sym_BANG_EQ2] = ACTIONS(2652), + [anon_sym_LT2] = ACTIONS(2654), + [anon_sym_LT_EQ2] = ACTIONS(2652), + [anon_sym_GT_EQ2] = ACTIONS(2652), + [anon_sym_EQ_TILDE2] = ACTIONS(2652), + [anon_sym_BANG_TILDE2] = ACTIONS(2652), + [anon_sym_like2] = ACTIONS(2652), + [anon_sym_not_DASHlike2] = ACTIONS(2652), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2654), + [anon_sym_bit_DASHshl2] = ACTIONS(2652), + [anon_sym_bit_DASHshr2] = ACTIONS(2652), + [anon_sym_bit_DASHand2] = ACTIONS(2652), + [anon_sym_bit_DASHxor2] = ACTIONS(2652), + [anon_sym_bit_DASHor2] = ACTIONS(2652), + [anon_sym_err_GT] = ACTIONS(2654), + [anon_sym_out_GT] = ACTIONS(2654), + [anon_sym_e_GT] = ACTIONS(2654), + [anon_sym_o_GT] = ACTIONS(2654), + [anon_sym_err_PLUSout_GT] = ACTIONS(2654), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2654), + [anon_sym_o_PLUSe_GT] = ACTIONS(2654), + [anon_sym_e_PLUSo_GT] = ACTIONS(2654), + [anon_sym_err_GT_GT] = ACTIONS(2652), + [anon_sym_out_GT_GT] = ACTIONS(2652), + [anon_sym_e_GT_GT] = ACTIONS(2652), + [anon_sym_o_GT_GT] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2652), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1180)] = { - [aux_sym__repeat_newline] = STATE(1155), + [aux_sym__repeat_newline] = STATE(1157), [sym_comment] = STATE(1180), - [anon_sym_in] = ACTIONS(2684), - [sym__newline] = ACTIONS(2870), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_err_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_GT_PIPE] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2684), - [anon_sym_GT2] = ACTIONS(2686), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2684), - [anon_sym_xor2] = ACTIONS(2684), - [anon_sym_or2] = ACTIONS(2684), - [anon_sym_not_DASHin2] = ACTIONS(2684), - [anon_sym_has2] = ACTIONS(2684), - [anon_sym_not_DASHhas2] = ACTIONS(2684), - [anon_sym_starts_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2684), - [anon_sym_ends_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2684), - [anon_sym_EQ_EQ2] = ACTIONS(2684), - [anon_sym_BANG_EQ2] = ACTIONS(2684), - [anon_sym_LT2] = ACTIONS(2686), - [anon_sym_LT_EQ2] = ACTIONS(2684), - [anon_sym_GT_EQ2] = ACTIONS(2684), - [anon_sym_EQ_TILDE2] = ACTIONS(2684), - [anon_sym_BANG_TILDE2] = ACTIONS(2684), - [anon_sym_like2] = ACTIONS(2684), - [anon_sym_not_DASHlike2] = ACTIONS(2684), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), - [anon_sym_bit_DASHand2] = ACTIONS(2684), - [anon_sym_bit_DASHxor2] = ACTIONS(2684), - [anon_sym_bit_DASHor2] = ACTIONS(2684), - [anon_sym_err_GT] = ACTIONS(2686), - [anon_sym_out_GT] = ACTIONS(2686), - [anon_sym_e_GT] = ACTIONS(2686), - [anon_sym_o_GT] = ACTIONS(2686), - [anon_sym_err_PLUSout_GT] = ACTIONS(2686), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), - [anon_sym_o_PLUSe_GT] = ACTIONS(2686), - [anon_sym_e_PLUSo_GT] = ACTIONS(2686), - [anon_sym_err_GT_GT] = ACTIONS(2684), - [anon_sym_out_GT_GT] = ACTIONS(2684), - [anon_sym_e_GT_GT] = ACTIONS(2684), - [anon_sym_o_GT_GT] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), + [anon_sym_in] = ACTIONS(2662), + [sym__newline] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2664), + [anon_sym_DASH2] = ACTIONS(2662), + [anon_sym_STAR2] = ACTIONS(2664), + [anon_sym_and2] = ACTIONS(2662), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2662), + [anon_sym_has2] = ACTIONS(2662), + [anon_sym_not_DASHhas2] = ACTIONS(2662), + [anon_sym_starts_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2662), + [anon_sym_ends_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2662), + [anon_sym_EQ_EQ2] = ACTIONS(2662), + [anon_sym_BANG_EQ2] = ACTIONS(2662), + [anon_sym_LT2] = ACTIONS(2664), + [anon_sym_LT_EQ2] = ACTIONS(2662), + [anon_sym_GT_EQ2] = ACTIONS(2662), + [anon_sym_EQ_TILDE2] = ACTIONS(2662), + [anon_sym_BANG_TILDE2] = ACTIONS(2662), + [anon_sym_like2] = ACTIONS(2662), + [anon_sym_not_DASHlike2] = ACTIONS(2662), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2664), + [anon_sym_mod2] = ACTIONS(2662), + [anon_sym_SLASH_SLASH2] = ACTIONS(2662), + [anon_sym_PLUS2] = ACTIONS(2664), + [anon_sym_bit_DASHshl2] = ACTIONS(2662), + [anon_sym_bit_DASHshr2] = ACTIONS(2662), + [anon_sym_bit_DASHand2] = ACTIONS(2662), + [anon_sym_bit_DASHxor2] = ACTIONS(2662), + [anon_sym_bit_DASHor2] = ACTIONS(2662), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1181)] = { - [aux_sym__repeat_newline] = STATE(1174), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1181), - [anon_sym_in] = ACTIONS(2832), - [sym__newline] = ACTIONS(2864), - [anon_sym_SEMI] = ACTIONS(2676), - [anon_sym_PIPE] = ACTIONS(2676), - [anon_sym_err_GT_PIPE] = ACTIONS(2676), - [anon_sym_out_GT_PIPE] = ACTIONS(2676), - [anon_sym_e_GT_PIPE] = ACTIONS(2676), - [anon_sym_o_GT_PIPE] = ACTIONS(2676), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), - [anon_sym_RPAREN] = ACTIONS(2676), - [anon_sym_GT2] = ACTIONS(2836), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2676), - [anon_sym_xor2] = ACTIONS(2676), - [anon_sym_or2] = ACTIONS(2676), - [anon_sym_not_DASHin2] = ACTIONS(2832), - [anon_sym_has2] = ACTIONS(2832), - [anon_sym_not_DASHhas2] = ACTIONS(2832), - [anon_sym_starts_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), - [anon_sym_ends_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), - [anon_sym_EQ_EQ2] = ACTIONS(2846), - [anon_sym_BANG_EQ2] = ACTIONS(2846), - [anon_sym_LT2] = ACTIONS(2836), - [anon_sym_LT_EQ2] = ACTIONS(2846), - [anon_sym_GT_EQ2] = ACTIONS(2846), - [anon_sym_EQ_TILDE2] = ACTIONS(2848), - [anon_sym_BANG_TILDE2] = ACTIONS(2848), - [anon_sym_like2] = ACTIONS(2848), - [anon_sym_not_DASHlike2] = ACTIONS(2848), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2678), - [anon_sym_out_GT] = ACTIONS(2678), - [anon_sym_e_GT] = ACTIONS(2678), - [anon_sym_o_GT] = ACTIONS(2678), - [anon_sym_err_PLUSout_GT] = ACTIONS(2678), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), - [anon_sym_o_PLUSe_GT] = ACTIONS(2678), - [anon_sym_e_PLUSo_GT] = ACTIONS(2678), - [anon_sym_err_GT_GT] = ACTIONS(2676), - [anon_sym_out_GT_GT] = ACTIONS(2676), - [anon_sym_e_GT_GT] = ACTIONS(2676), - [anon_sym_o_GT_GT] = ACTIONS(2676), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [anon_sym_in] = ACTIONS(2652), + [sym__newline] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_PIPE] = ACTIONS(2652), + [anon_sym_err_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_GT_PIPE] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2652), + [anon_sym_RPAREN] = ACTIONS(2652), + [anon_sym_GT2] = ACTIONS(2654), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2652), + [anon_sym_xor2] = ACTIONS(2652), + [anon_sym_or2] = ACTIONS(2652), + [anon_sym_not_DASHin2] = ACTIONS(2652), + [anon_sym_has2] = ACTIONS(2652), + [anon_sym_not_DASHhas2] = ACTIONS(2652), + [anon_sym_starts_DASHwith2] = ACTIONS(2652), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2652), + [anon_sym_ends_DASHwith2] = ACTIONS(2652), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2652), + [anon_sym_EQ_EQ2] = ACTIONS(2652), + [anon_sym_BANG_EQ2] = ACTIONS(2652), + [anon_sym_LT2] = ACTIONS(2654), + [anon_sym_LT_EQ2] = ACTIONS(2652), + [anon_sym_GT_EQ2] = ACTIONS(2652), + [anon_sym_EQ_TILDE2] = ACTIONS(2652), + [anon_sym_BANG_TILDE2] = ACTIONS(2652), + [anon_sym_like2] = ACTIONS(2652), + [anon_sym_not_DASHlike2] = ACTIONS(2652), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2652), + [anon_sym_bit_DASHshr2] = ACTIONS(2652), + [anon_sym_bit_DASHand2] = ACTIONS(2652), + [anon_sym_bit_DASHxor2] = ACTIONS(2652), + [anon_sym_bit_DASHor2] = ACTIONS(2652), + [anon_sym_err_GT] = ACTIONS(2654), + [anon_sym_out_GT] = ACTIONS(2654), + [anon_sym_e_GT] = ACTIONS(2654), + [anon_sym_o_GT] = ACTIONS(2654), + [anon_sym_err_PLUSout_GT] = ACTIONS(2654), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2654), + [anon_sym_o_PLUSe_GT] = ACTIONS(2654), + [anon_sym_e_PLUSo_GT] = ACTIONS(2654), + [anon_sym_err_GT_GT] = ACTIONS(2652), + [anon_sym_out_GT_GT] = ACTIONS(2652), + [anon_sym_e_GT_GT] = ACTIONS(2652), + [anon_sym_o_GT_GT] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2652), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1182)] = { + [aux_sym__repeat_newline] = STATE(1164), [sym_comment] = STATE(1182), - [anon_sym_export] = ACTIONS(2880), - [anon_sym_alias] = ACTIONS(2884), - [anon_sym_let] = ACTIONS(2884), - [anon_sym_mut] = ACTIONS(2884), - [anon_sym_const] = ACTIONS(2884), - [aux_sym_cmd_identifier_token1] = ACTIONS(2880), - [anon_sym_def] = ACTIONS(2884), - [anon_sym_use] = ACTIONS(2884), - [anon_sym_export_DASHenv] = ACTIONS(2884), - [anon_sym_extern] = ACTIONS(2884), - [anon_sym_module] = ACTIONS(2884), - [anon_sym_for] = ACTIONS(2884), - [anon_sym_loop] = ACTIONS(2884), - [anon_sym_while] = ACTIONS(2884), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_else] = ACTIONS(2884), - [anon_sym_try] = ACTIONS(2884), - [anon_sym_catch] = ACTIONS(2884), - [anon_sym_match] = ACTIONS(2884), - [anon_sym_in] = ACTIONS(2880), - [anon_sym_true] = ACTIONS(2884), - [anon_sym_false] = ACTIONS(2884), - [anon_sym_null] = ACTIONS(2884), - [aux_sym_cmd_identifier_token3] = ACTIONS(2884), - [aux_sym_cmd_identifier_token4] = ACTIONS(2884), - [aux_sym_cmd_identifier_token5] = ACTIONS(2884), - [sym__newline] = ACTIONS(2884), - [anon_sym_SEMI] = ACTIONS(2888), - [anon_sym_PIPE] = ACTIONS(2110), - [anon_sym_AT] = ACTIONS(2888), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_DOLLAR] = ACTIONS(2880), - [anon_sym_DASH2] = ACTIONS(2880), - [anon_sym_LBRACE] = ACTIONS(2888), - [anon_sym_RBRACE] = ACTIONS(2888), - [anon_sym_DOT_DOT] = ACTIONS(2891), - [anon_sym_where] = ACTIONS(2888), - [aux_sym_expr_unary_token1] = ACTIONS(2888), - [anon_sym_PLUS2] = ACTIONS(2894), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2896), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2888), - [anon_sym_DOT_DOT_LT] = ACTIONS(2888), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2896), - [aux_sym__val_number_decimal_token1] = ACTIONS(2880), - [aux_sym__val_number_decimal_token2] = ACTIONS(2884), - [aux_sym__val_number_decimal_token3] = ACTIONS(2884), - [aux_sym__val_number_decimal_token4] = ACTIONS(2884), - [aux_sym__val_number_token1] = ACTIONS(2884), - [aux_sym__val_number_token2] = ACTIONS(2884), - [aux_sym__val_number_token3] = ACTIONS(2884), - [anon_sym_0b] = ACTIONS(2891), - [anon_sym_0o] = ACTIONS(2891), - [anon_sym_0x] = ACTIONS(2891), - [sym_val_date] = ACTIONS(2888), - [anon_sym_DQUOTE] = ACTIONS(2884), - [anon_sym_SQUOTE] = ACTIONS(2884), - [anon_sym_BQUOTE] = ACTIONS(2884), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2884), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2884), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2896), - [anon_sym_CARET] = ACTIONS(2888), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2884), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2903), + [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_RPAREN] = ACTIONS(2726), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2899), + [anon_sym_xor2] = ACTIONS(2905), + [anon_sym_or2] = ACTIONS(2726), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2805), + [anon_sym_bit_DASHor2] = ACTIONS(2901), + [anon_sym_err_GT] = ACTIONS(2728), + [anon_sym_out_GT] = ACTIONS(2728), + [anon_sym_e_GT] = ACTIONS(2728), + [anon_sym_o_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT] = ACTIONS(2728), + [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), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1183)] = { - [aux_sym__repeat_newline] = STATE(1193), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1183), + [anon_sym_in] = ACTIONS(2732), + [sym__newline] = ACTIONS(2732), + [anon_sym_SEMI] = ACTIONS(2732), + [anon_sym_PIPE] = ACTIONS(2732), + [anon_sym_err_GT_PIPE] = ACTIONS(2732), + [anon_sym_out_GT_PIPE] = ACTIONS(2732), + [anon_sym_e_GT_PIPE] = ACTIONS(2732), + [anon_sym_o_GT_PIPE] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), + [anon_sym_RPAREN] = ACTIONS(2732), + [anon_sym_GT2] = ACTIONS(2734), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2732), + [anon_sym_xor2] = ACTIONS(2732), + [anon_sym_or2] = ACTIONS(2732), + [anon_sym_not_DASHin2] = ACTIONS(2732), + [anon_sym_has2] = ACTIONS(2732), + [anon_sym_not_DASHhas2] = ACTIONS(2732), + [anon_sym_starts_DASHwith2] = ACTIONS(2732), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2732), + [anon_sym_ends_DASHwith2] = ACTIONS(2732), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2732), + [anon_sym_EQ_EQ2] = ACTIONS(2732), + [anon_sym_BANG_EQ2] = ACTIONS(2732), + [anon_sym_LT2] = ACTIONS(2734), + [anon_sym_LT_EQ2] = ACTIONS(2732), + [anon_sym_GT_EQ2] = ACTIONS(2732), + [anon_sym_EQ_TILDE2] = ACTIONS(2732), + [anon_sym_BANG_TILDE2] = ACTIONS(2732), + [anon_sym_like2] = ACTIONS(2732), + [anon_sym_not_DASHlike2] = ACTIONS(2732), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2732), + [anon_sym_bit_DASHxor2] = ACTIONS(2732), + [anon_sym_bit_DASHor2] = ACTIONS(2732), + [anon_sym_err_GT] = ACTIONS(2734), + [anon_sym_out_GT] = ACTIONS(2734), + [anon_sym_e_GT] = ACTIONS(2734), + [anon_sym_o_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT] = ACTIONS(2734), + [anon_sym_err_GT_GT] = ACTIONS(2732), + [anon_sym_out_GT_GT] = ACTIONS(2732), + [anon_sym_e_GT_GT] = ACTIONS(2732), + [anon_sym_o_GT_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1184)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1184), [anon_sym_in] = ACTIONS(2666), - [sym__newline] = ACTIONS(2875), + [sym__newline] = ACTIONS(2666), [anon_sym_SEMI] = ACTIONS(2666), [anon_sym_PIPE] = ACTIONS(2666), [anon_sym_err_GT_PIPE] = ACTIONS(2666), @@ -134036,8 +134138,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), [anon_sym_RPAREN] = ACTIONS(2666), [anon_sym_GT2] = ACTIONS(2668), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_DASH2] = ACTIONS(2666), + [anon_sym_STAR2] = ACTIONS(2668), [anon_sym_and2] = ACTIONS(2666), [anon_sym_xor2] = ACTIONS(2666), [anon_sym_or2] = ACTIONS(2666), @@ -134057,14 +134159,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2666), [anon_sym_like2] = ACTIONS(2666), [anon_sym_not_DASHlike2] = ACTIONS(2666), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2668), + [anon_sym_mod2] = ACTIONS(2666), + [anon_sym_SLASH_SLASH2] = ACTIONS(2666), + [anon_sym_PLUS2] = ACTIONS(2668), + [anon_sym_bit_DASHshl2] = ACTIONS(2666), + [anon_sym_bit_DASHshr2] = ACTIONS(2666), [anon_sym_bit_DASHand2] = ACTIONS(2666), [anon_sym_bit_DASHxor2] = ACTIONS(2666), [anon_sym_bit_DASHor2] = ACTIONS(2666), @@ -134086,145 +134188,480 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1184)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1184), - [anon_sym_in] = ACTIONS(2688), - [sym__newline] = ACTIONS(2688), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2690), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2688), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2688), - [anon_sym_has2] = ACTIONS(2688), - [anon_sym_not_DASHhas2] = ACTIONS(2688), - [anon_sym_starts_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2688), - [anon_sym_ends_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2688), - [anon_sym_EQ_EQ2] = ACTIONS(2688), - [anon_sym_BANG_EQ2] = ACTIONS(2688), - [anon_sym_LT2] = ACTIONS(2690), - [anon_sym_LT_EQ2] = ACTIONS(2688), - [anon_sym_GT_EQ2] = ACTIONS(2688), - [anon_sym_EQ_TILDE2] = ACTIONS(2688), - [anon_sym_BANG_TILDE2] = ACTIONS(2688), - [anon_sym_like2] = ACTIONS(2688), - [anon_sym_not_DASHlike2] = ACTIONS(2688), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2688), - [anon_sym_bit_DASHshr2] = ACTIONS(2688), - [anon_sym_bit_DASHand2] = ACTIONS(2688), - [anon_sym_bit_DASHxor2] = ACTIONS(2688), - [anon_sym_bit_DASHor2] = ACTIONS(2688), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(1185)] = { - [aux_sym__repeat_newline] = STATE(1192), + [aux_sym__repeat_newline] = STATE(528), [sym_comment] = STATE(1185), - [anon_sym_in] = ACTIONS(2832), - [sym__newline] = ACTIONS(2864), - [anon_sym_SEMI] = ACTIONS(2676), - [anon_sym_PIPE] = ACTIONS(2676), - [anon_sym_err_GT_PIPE] = ACTIONS(2676), - [anon_sym_out_GT_PIPE] = ACTIONS(2676), - [anon_sym_e_GT_PIPE] = ACTIONS(2676), - [anon_sym_o_GT_PIPE] = ACTIONS(2676), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), - [anon_sym_RPAREN] = ACTIONS(2676), - [anon_sym_GT2] = ACTIONS(2836), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2842), - [anon_sym_xor2] = ACTIONS(2676), - [anon_sym_or2] = ACTIONS(2676), - [anon_sym_not_DASHin2] = ACTIONS(2832), - [anon_sym_has2] = ACTIONS(2832), - [anon_sym_not_DASHhas2] = ACTIONS(2832), - [anon_sym_starts_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), - [anon_sym_ends_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), - [anon_sym_EQ_EQ2] = ACTIONS(2846), - [anon_sym_BANG_EQ2] = ACTIONS(2846), - [anon_sym_LT2] = ACTIONS(2836), - [anon_sym_LT_EQ2] = ACTIONS(2846), - [anon_sym_GT_EQ2] = ACTIONS(2846), - [anon_sym_EQ_TILDE2] = ACTIONS(2848), - [anon_sym_BANG_TILDE2] = ACTIONS(2848), - [anon_sym_like2] = ACTIONS(2848), - [anon_sym_not_DASHlike2] = ACTIONS(2848), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2678), - [anon_sym_out_GT] = ACTIONS(2678), - [anon_sym_e_GT] = ACTIONS(2678), - [anon_sym_o_GT] = ACTIONS(2678), - [anon_sym_err_PLUSout_GT] = ACTIONS(2678), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), - [anon_sym_o_PLUSe_GT] = ACTIONS(2678), - [anon_sym_e_PLUSo_GT] = ACTIONS(2678), - [anon_sym_err_GT_GT] = ACTIONS(2676), - [anon_sym_out_GT_GT] = ACTIONS(2676), - [anon_sym_e_GT_GT] = ACTIONS(2676), - [anon_sym_o_GT_GT] = ACTIONS(2676), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_PIPE] = ACTIONS(2652), + [anon_sym_err_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_GT_PIPE] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2652), + [anon_sym_RPAREN] = ACTIONS(2652), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2652), + [anon_sym_xor2] = ACTIONS(2652), + [anon_sym_or2] = ACTIONS(2652), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2652), + [anon_sym_bit_DASHxor2] = ACTIONS(2652), + [anon_sym_bit_DASHor2] = ACTIONS(2652), + [anon_sym_err_GT] = ACTIONS(2654), + [anon_sym_out_GT] = ACTIONS(2654), + [anon_sym_e_GT] = ACTIONS(2654), + [anon_sym_o_GT] = ACTIONS(2654), + [anon_sym_err_PLUSout_GT] = ACTIONS(2654), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2654), + [anon_sym_o_PLUSe_GT] = ACTIONS(2654), + [anon_sym_e_PLUSo_GT] = ACTIONS(2654), + [anon_sym_err_GT_GT] = ACTIONS(2652), + [anon_sym_out_GT_GT] = ACTIONS(2652), + [anon_sym_e_GT_GT] = ACTIONS(2652), + [anon_sym_o_GT_GT] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2652), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1186)] = { - [aux_sym__repeat_newline] = STATE(1191), + [aux_sym__repeat_newline] = STATE(1159), [sym_comment] = STATE(1186), - [anon_sym_in] = ACTIONS(2832), - [sym__newline] = ACTIONS(2875), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2662), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2805), + [anon_sym_bit_DASHor2] = ACTIONS(2901), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1187)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1187), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2732), + [anon_sym_SEMI] = ACTIONS(2732), + [anon_sym_PIPE] = ACTIONS(2732), + [anon_sym_err_GT_PIPE] = ACTIONS(2732), + [anon_sym_out_GT_PIPE] = ACTIONS(2732), + [anon_sym_e_GT_PIPE] = ACTIONS(2732), + [anon_sym_o_GT_PIPE] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), + [anon_sym_RPAREN] = ACTIONS(2732), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2841), + [anon_sym_xor2] = ACTIONS(2897), + [anon_sym_or2] = ACTIONS(2732), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2835), + [anon_sym_bit_DASHor2] = ACTIONS(2837), + [anon_sym_err_GT] = ACTIONS(2734), + [anon_sym_out_GT] = ACTIONS(2734), + [anon_sym_e_GT] = ACTIONS(2734), + [anon_sym_o_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT] = ACTIONS(2734), + [anon_sym_err_GT_GT] = ACTIONS(2732), + [anon_sym_out_GT_GT] = ACTIONS(2732), + [anon_sym_e_GT_GT] = ACTIONS(2732), + [anon_sym_o_GT_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1188)] = { + [aux_sym__repeat_newline] = STATE(1167), + [sym_comment] = STATE(1188), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2832), + [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_RPAREN] = ACTIONS(2726), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2726), + [anon_sym_xor2] = ACTIONS(2726), + [anon_sym_or2] = ACTIONS(2726), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2726), + [anon_sym_BANG_TILDE2] = ACTIONS(2726), + [anon_sym_like2] = ACTIONS(2726), + [anon_sym_not_DASHlike2] = ACTIONS(2726), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2726), + [anon_sym_bit_DASHxor2] = ACTIONS(2726), + [anon_sym_bit_DASHor2] = ACTIONS(2726), + [anon_sym_err_GT] = ACTIONS(2728), + [anon_sym_out_GT] = ACTIONS(2728), + [anon_sym_e_GT] = ACTIONS(2728), + [anon_sym_o_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT] = ACTIONS(2728), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1189)] = { + [aux_sym__repeat_newline] = STATE(1133), + [sym_comment] = STATE(1189), + [anon_sym_in] = ACTIONS(2726), + [sym__newline] = ACTIONS(2832), + [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_RPAREN] = ACTIONS(2726), + [anon_sym_GT2] = ACTIONS(2728), + [anon_sym_DASH2] = ACTIONS(2726), + [anon_sym_STAR2] = ACTIONS(2728), + [anon_sym_and2] = ACTIONS(2726), + [anon_sym_xor2] = ACTIONS(2726), + [anon_sym_or2] = ACTIONS(2726), + [anon_sym_not_DASHin2] = ACTIONS(2726), + [anon_sym_has2] = ACTIONS(2726), + [anon_sym_not_DASHhas2] = ACTIONS(2726), + [anon_sym_starts_DASHwith2] = ACTIONS(2726), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2726), + [anon_sym_ends_DASHwith2] = ACTIONS(2726), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2726), + [anon_sym_EQ_EQ2] = ACTIONS(2726), + [anon_sym_BANG_EQ2] = ACTIONS(2726), + [anon_sym_LT2] = ACTIONS(2728), + [anon_sym_LT_EQ2] = ACTIONS(2726), + [anon_sym_GT_EQ2] = ACTIONS(2726), + [anon_sym_EQ_TILDE2] = ACTIONS(2726), + [anon_sym_BANG_TILDE2] = ACTIONS(2726), + [anon_sym_like2] = ACTIONS(2726), + [anon_sym_not_DASHlike2] = ACTIONS(2726), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2728), + [anon_sym_mod2] = ACTIONS(2726), + [anon_sym_SLASH_SLASH2] = ACTIONS(2726), + [anon_sym_PLUS2] = ACTIONS(2728), + [anon_sym_bit_DASHshl2] = ACTIONS(2726), + [anon_sym_bit_DASHshr2] = ACTIONS(2726), + [anon_sym_bit_DASHand2] = ACTIONS(2726), + [anon_sym_bit_DASHxor2] = ACTIONS(2726), + [anon_sym_bit_DASHor2] = ACTIONS(2726), + [anon_sym_err_GT] = ACTIONS(2728), + [anon_sym_out_GT] = ACTIONS(2728), + [anon_sym_e_GT] = ACTIONS(2728), + [anon_sym_o_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT] = ACTIONS(2728), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1190)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1190), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2732), + [anon_sym_SEMI] = ACTIONS(2732), + [anon_sym_PIPE] = ACTIONS(2732), + [anon_sym_err_GT_PIPE] = ACTIONS(2732), + [anon_sym_out_GT_PIPE] = ACTIONS(2732), + [anon_sym_e_GT_PIPE] = ACTIONS(2732), + [anon_sym_o_GT_PIPE] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), + [anon_sym_RPAREN] = ACTIONS(2732), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2732), + [anon_sym_xor2] = ACTIONS(2732), + [anon_sym_or2] = ACTIONS(2732), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2732), + [anon_sym_BANG_TILDE2] = ACTIONS(2732), + [anon_sym_like2] = ACTIONS(2732), + [anon_sym_not_DASHlike2] = ACTIONS(2732), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2732), + [anon_sym_bit_DASHxor2] = ACTIONS(2732), + [anon_sym_bit_DASHor2] = ACTIONS(2732), + [anon_sym_err_GT] = ACTIONS(2734), + [anon_sym_out_GT] = ACTIONS(2734), + [anon_sym_e_GT] = ACTIONS(2734), + [anon_sym_o_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT] = ACTIONS(2734), + [anon_sym_err_GT_GT] = ACTIONS(2732), + [anon_sym_out_GT_GT] = ACTIONS(2732), + [anon_sym_e_GT_GT] = ACTIONS(2732), + [anon_sym_o_GT_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1191)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1191), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_PIPE] = ACTIONS(2652), + [anon_sym_err_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_GT_PIPE] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2652), + [anon_sym_RPAREN] = ACTIONS(2652), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2652), + [anon_sym_xor2] = ACTIONS(2652), + [anon_sym_or2] = ACTIONS(2652), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2652), + [anon_sym_bit_DASHor2] = ACTIONS(2652), + [anon_sym_err_GT] = ACTIONS(2654), + [anon_sym_out_GT] = ACTIONS(2654), + [anon_sym_e_GT] = ACTIONS(2654), + [anon_sym_o_GT] = ACTIONS(2654), + [anon_sym_err_PLUSout_GT] = ACTIONS(2654), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2654), + [anon_sym_o_PLUSe_GT] = ACTIONS(2654), + [anon_sym_e_PLUSo_GT] = ACTIONS(2654), + [anon_sym_err_GT_GT] = ACTIONS(2652), + [anon_sym_out_GT_GT] = ACTIONS(2652), + [anon_sym_e_GT_GT] = ACTIONS(2652), + [anon_sym_o_GT_GT] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2652), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1192)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1192), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2666), [anon_sym_SEMI] = ACTIONS(2666), [anon_sym_PIPE] = ACTIONS(2666), [anon_sym_err_GT_PIPE] = ACTIONS(2666), @@ -134236,39 +134673,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), [anon_sym_RPAREN] = ACTIONS(2666), - [anon_sym_GT2] = ACTIONS(2836), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), [anon_sym_and2] = ACTIONS(2666), [anon_sym_xor2] = ACTIONS(2666), [anon_sym_or2] = ACTIONS(2666), - [anon_sym_not_DASHin2] = ACTIONS(2832), - [anon_sym_has2] = ACTIONS(2832), - [anon_sym_not_DASHhas2] = ACTIONS(2832), - [anon_sym_starts_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), - [anon_sym_ends_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), - [anon_sym_EQ_EQ2] = ACTIONS(2846), - [anon_sym_BANG_EQ2] = ACTIONS(2846), - [anon_sym_LT2] = ACTIONS(2836), - [anon_sym_LT_EQ2] = ACTIONS(2846), - [anon_sym_GT_EQ2] = ACTIONS(2846), - [anon_sym_EQ_TILDE2] = ACTIONS(2848), - [anon_sym_BANG_TILDE2] = ACTIONS(2848), - [anon_sym_like2] = ACTIONS(2848), - [anon_sym_not_DASHlike2] = ACTIONS(2848), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2835), + [anon_sym_bit_DASHor2] = ACTIONS(2837), [anon_sym_err_GT] = ACTIONS(2668), [anon_sym_out_GT] = ACTIONS(2668), [anon_sym_e_GT] = ACTIONS(2668), @@ -134287,346 +134724,1150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1187)] = { - [aux_sym__repeat_newline] = STATE(1217), - [sym_comment] = STATE(1187), - [anon_sym_in] = ACTIONS(2832), - [sym__newline] = ACTIONS(2864), - [anon_sym_SEMI] = ACTIONS(2676), - [anon_sym_PIPE] = ACTIONS(2676), - [anon_sym_err_GT_PIPE] = ACTIONS(2676), - [anon_sym_out_GT_PIPE] = ACTIONS(2676), - [anon_sym_e_GT_PIPE] = ACTIONS(2676), - [anon_sym_o_GT_PIPE] = ACTIONS(2676), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), - [anon_sym_RPAREN] = ACTIONS(2676), - [anon_sym_GT2] = ACTIONS(2836), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2676), - [anon_sym_xor2] = ACTIONS(2676), - [anon_sym_or2] = ACTIONS(2676), - [anon_sym_not_DASHin2] = ACTIONS(2832), - [anon_sym_has2] = ACTIONS(2832), - [anon_sym_not_DASHhas2] = ACTIONS(2832), - [anon_sym_starts_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), - [anon_sym_ends_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), - [anon_sym_EQ_EQ2] = ACTIONS(2846), - [anon_sym_BANG_EQ2] = ACTIONS(2846), - [anon_sym_LT2] = ACTIONS(2836), - [anon_sym_LT_EQ2] = ACTIONS(2846), - [anon_sym_GT_EQ2] = ACTIONS(2846), - [anon_sym_EQ_TILDE2] = ACTIONS(2848), - [anon_sym_BANG_TILDE2] = ACTIONS(2848), - [anon_sym_like2] = ACTIONS(2848), - [anon_sym_not_DASHlike2] = ACTIONS(2848), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), - [anon_sym_bit_DASHand2] = ACTIONS(2676), - [anon_sym_bit_DASHxor2] = ACTIONS(2676), - [anon_sym_bit_DASHor2] = ACTIONS(2676), - [anon_sym_err_GT] = ACTIONS(2678), - [anon_sym_out_GT] = ACTIONS(2678), - [anon_sym_e_GT] = ACTIONS(2678), - [anon_sym_o_GT] = ACTIONS(2678), - [anon_sym_err_PLUSout_GT] = ACTIONS(2678), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), - [anon_sym_o_PLUSe_GT] = ACTIONS(2678), - [anon_sym_e_PLUSo_GT] = ACTIONS(2678), - [anon_sym_err_GT_GT] = ACTIONS(2676), - [anon_sym_out_GT_GT] = ACTIONS(2676), - [anon_sym_e_GT_GT] = ACTIONS(2676), - [anon_sym_o_GT_GT] = ACTIONS(2676), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [STATE(1193)] = { + [sym_comment] = STATE(1193), + [aux_sym_cmd_identifier_token2] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(2387), + [sym__newline] = ACTIONS(2385), + [anon_sym_SEMI] = ACTIONS(2385), + [anon_sym_PIPE] = ACTIONS(2385), + [anon_sym_err_GT_PIPE] = ACTIONS(2385), + [anon_sym_out_GT_PIPE] = ACTIONS(2385), + [anon_sym_e_GT_PIPE] = ACTIONS(2385), + [anon_sym_o_GT_PIPE] = ACTIONS(2385), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2385), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2385), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2385), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2385), + [anon_sym_GT2] = ACTIONS(2387), + [anon_sym_DASH2] = ACTIONS(2387), + [anon_sym_RBRACE] = ACTIONS(2385), + [anon_sym_STAR2] = ACTIONS(2387), + [anon_sym_and2] = ACTIONS(2387), + [anon_sym_xor2] = ACTIONS(2387), + [anon_sym_or2] = ACTIONS(2387), + [anon_sym_not_DASHin2] = ACTIONS(2387), + [anon_sym_has2] = ACTIONS(2387), + [anon_sym_not_DASHhas2] = ACTIONS(2387), + [anon_sym_starts_DASHwith2] = ACTIONS(2387), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2387), + [anon_sym_ends_DASHwith2] = ACTIONS(2387), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2387), + [anon_sym_EQ_EQ2] = ACTIONS(2385), + [anon_sym_BANG_EQ2] = ACTIONS(2385), + [anon_sym_LT2] = ACTIONS(2387), + [anon_sym_LT_EQ2] = ACTIONS(2385), + [anon_sym_GT_EQ2] = ACTIONS(2385), + [anon_sym_EQ_TILDE2] = ACTIONS(2385), + [anon_sym_BANG_TILDE2] = ACTIONS(2387), + [anon_sym_like2] = ACTIONS(2387), + [anon_sym_not_DASHlike2] = ACTIONS(2387), + [anon_sym_STAR_STAR2] = ACTIONS(2387), + [anon_sym_PLUS_PLUS2] = ACTIONS(2387), + [anon_sym_SLASH2] = ACTIONS(2387), + [anon_sym_mod2] = ACTIONS(2387), + [anon_sym_SLASH_SLASH2] = ACTIONS(2387), + [anon_sym_PLUS2] = ACTIONS(2387), + [anon_sym_bit_DASHshl2] = ACTIONS(2387), + [anon_sym_bit_DASHshr2] = ACTIONS(2387), + [anon_sym_bit_DASHand2] = ACTIONS(2387), + [anon_sym_bit_DASHxor2] = ACTIONS(2387), + [anon_sym_bit_DASHor2] = ACTIONS(2387), + [anon_sym_err_GT] = ACTIONS(2387), + [anon_sym_out_GT] = ACTIONS(2387), + [anon_sym_e_GT] = ACTIONS(2387), + [anon_sym_o_GT] = ACTIONS(2387), + [anon_sym_err_PLUSout_GT] = ACTIONS(2387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2387), + [anon_sym_o_PLUSe_GT] = ACTIONS(2387), + [anon_sym_e_PLUSo_GT] = ACTIONS(2387), + [anon_sym_err_GT_GT] = ACTIONS(2385), + [anon_sym_out_GT_GT] = ACTIONS(2385), + [anon_sym_e_GT_GT] = ACTIONS(2385), + [anon_sym_o_GT_GT] = ACTIONS(2385), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2385), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2385), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2385), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2385), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(1194)] = { + [sym_comment] = STATE(1194), + [aux_sym_cmd_identifier_token2] = ACTIONS(2702), + [anon_sym_in] = ACTIONS(2593), + [sym__newline] = ACTIONS(2591), + [anon_sym_SEMI] = ACTIONS(2591), + [anon_sym_PIPE] = ACTIONS(2591), + [anon_sym_err_GT_PIPE] = ACTIONS(2591), + [anon_sym_out_GT_PIPE] = ACTIONS(2591), + [anon_sym_e_GT_PIPE] = ACTIONS(2591), + [anon_sym_o_GT_PIPE] = ACTIONS(2591), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2591), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2591), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2591), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2591), + [anon_sym_GT2] = ACTIONS(2593), + [anon_sym_DASH2] = ACTIONS(2593), + [anon_sym_RBRACE] = ACTIONS(2591), + [anon_sym_STAR2] = ACTIONS(2593), + [anon_sym_and2] = ACTIONS(2593), + [anon_sym_xor2] = ACTIONS(2593), + [anon_sym_or2] = ACTIONS(2593), + [anon_sym_not_DASHin2] = ACTIONS(2593), + [anon_sym_has2] = ACTIONS(2593), + [anon_sym_not_DASHhas2] = ACTIONS(2593), + [anon_sym_starts_DASHwith2] = ACTIONS(2593), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2593), + [anon_sym_ends_DASHwith2] = ACTIONS(2593), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2593), + [anon_sym_EQ_EQ2] = ACTIONS(2591), + [anon_sym_BANG_EQ2] = ACTIONS(2591), + [anon_sym_LT2] = ACTIONS(2593), + [anon_sym_LT_EQ2] = ACTIONS(2591), + [anon_sym_GT_EQ2] = ACTIONS(2591), + [anon_sym_EQ_TILDE2] = ACTIONS(2591), + [anon_sym_BANG_TILDE2] = ACTIONS(2593), + [anon_sym_like2] = ACTIONS(2593), + [anon_sym_not_DASHlike2] = ACTIONS(2593), + [anon_sym_STAR_STAR2] = ACTIONS(2593), + [anon_sym_PLUS_PLUS2] = ACTIONS(2593), + [anon_sym_SLASH2] = ACTIONS(2593), + [anon_sym_mod2] = ACTIONS(2593), + [anon_sym_SLASH_SLASH2] = ACTIONS(2593), + [anon_sym_PLUS2] = ACTIONS(2593), + [anon_sym_bit_DASHshl2] = ACTIONS(2593), + [anon_sym_bit_DASHshr2] = ACTIONS(2593), + [anon_sym_bit_DASHand2] = ACTIONS(2593), + [anon_sym_bit_DASHxor2] = ACTIONS(2593), + [anon_sym_bit_DASHor2] = ACTIONS(2593), + [anon_sym_err_GT] = ACTIONS(2593), + [anon_sym_out_GT] = ACTIONS(2593), + [anon_sym_e_GT] = ACTIONS(2593), + [anon_sym_o_GT] = ACTIONS(2593), + [anon_sym_err_PLUSout_GT] = ACTIONS(2593), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2593), + [anon_sym_o_PLUSe_GT] = ACTIONS(2593), + [anon_sym_e_PLUSo_GT] = ACTIONS(2593), + [anon_sym_err_GT_GT] = ACTIONS(2591), + [anon_sym_out_GT_GT] = ACTIONS(2591), + [anon_sym_e_GT_GT] = ACTIONS(2591), + [anon_sym_o_GT_GT] = ACTIONS(2591), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2591), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2591), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2591), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2591), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(1195)] = { + [aux_sym__repeat_newline] = STATE(1161), + [sym_comment] = STATE(1195), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2899), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2805), + [anon_sym_bit_DASHor2] = ACTIONS(2901), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1188)] = { - [sym_comment] = STATE(1188), - [ts_builtin_sym_end] = ACTIONS(2094), - [anon_sym_in] = ACTIONS(2094), - [sym__newline] = ACTIONS(2094), - [anon_sym_SEMI] = ACTIONS(2094), - [anon_sym_PIPE] = ACTIONS(2094), - [anon_sym_err_GT_PIPE] = ACTIONS(2094), - [anon_sym_out_GT_PIPE] = ACTIONS(2094), - [anon_sym_e_GT_PIPE] = ACTIONS(2094), - [anon_sym_o_GT_PIPE] = ACTIONS(2094), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2094), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2094), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2094), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2094), - [anon_sym_GT2] = ACTIONS(2096), - [anon_sym_DASH2] = ACTIONS(2094), - [anon_sym_STAR2] = ACTIONS(2096), - [anon_sym_and2] = ACTIONS(2094), - [anon_sym_xor2] = ACTIONS(2094), - [anon_sym_or2] = ACTIONS(2094), - [anon_sym_not_DASHin2] = ACTIONS(2094), - [anon_sym_has2] = ACTIONS(2094), - [anon_sym_not_DASHhas2] = ACTIONS(2094), - [anon_sym_starts_DASHwith2] = ACTIONS(2094), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2094), - [anon_sym_ends_DASHwith2] = ACTIONS(2094), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2094), - [anon_sym_EQ_EQ2] = ACTIONS(2094), - [anon_sym_BANG_EQ2] = ACTIONS(2094), - [anon_sym_LT2] = ACTIONS(2096), - [anon_sym_LT_EQ2] = ACTIONS(2094), - [anon_sym_GT_EQ2] = ACTIONS(2094), - [anon_sym_EQ_TILDE2] = ACTIONS(2094), - [anon_sym_BANG_TILDE2] = ACTIONS(2094), - [anon_sym_like2] = ACTIONS(2094), - [anon_sym_not_DASHlike2] = ACTIONS(2094), - [anon_sym_LPAREN2] = ACTIONS(2094), - [anon_sym_STAR_STAR2] = ACTIONS(2094), - [anon_sym_PLUS_PLUS2] = ACTIONS(2094), - [anon_sym_SLASH2] = ACTIONS(2096), - [anon_sym_mod2] = ACTIONS(2094), - [anon_sym_SLASH_SLASH2] = ACTIONS(2094), - [anon_sym_PLUS2] = ACTIONS(2096), - [anon_sym_bit_DASHshl2] = ACTIONS(2094), - [anon_sym_bit_DASHshr2] = ACTIONS(2094), - [anon_sym_bit_DASHand2] = ACTIONS(2094), - [anon_sym_bit_DASHxor2] = ACTIONS(2094), - [anon_sym_bit_DASHor2] = ACTIONS(2094), - [anon_sym_err_GT] = ACTIONS(2096), - [anon_sym_out_GT] = ACTIONS(2096), - [anon_sym_e_GT] = ACTIONS(2096), - [anon_sym_o_GT] = ACTIONS(2096), - [anon_sym_err_PLUSout_GT] = ACTIONS(2096), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2096), - [anon_sym_o_PLUSe_GT] = ACTIONS(2096), - [anon_sym_e_PLUSo_GT] = ACTIONS(2096), - [anon_sym_err_GT_GT] = ACTIONS(2094), - [anon_sym_out_GT_GT] = ACTIONS(2094), - [anon_sym_e_GT_GT] = ACTIONS(2094), - [anon_sym_o_GT_GT] = ACTIONS(2094), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2094), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2094), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2094), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2094), + [STATE(1196)] = { + [aux_sym__repeat_newline] = STATE(1181), + [sym_comment] = STATE(1196), + [anon_sym_in] = ACTIONS(2726), + [sym__newline] = ACTIONS(2832), + [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_RPAREN] = ACTIONS(2726), + [anon_sym_GT2] = ACTIONS(2728), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2726), + [anon_sym_xor2] = ACTIONS(2726), + [anon_sym_or2] = ACTIONS(2726), + [anon_sym_not_DASHin2] = ACTIONS(2726), + [anon_sym_has2] = ACTIONS(2726), + [anon_sym_not_DASHhas2] = ACTIONS(2726), + [anon_sym_starts_DASHwith2] = ACTIONS(2726), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2726), + [anon_sym_ends_DASHwith2] = ACTIONS(2726), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2726), + [anon_sym_EQ_EQ2] = ACTIONS(2726), + [anon_sym_BANG_EQ2] = ACTIONS(2726), + [anon_sym_LT2] = ACTIONS(2728), + [anon_sym_LT_EQ2] = ACTIONS(2726), + [anon_sym_GT_EQ2] = ACTIONS(2726), + [anon_sym_EQ_TILDE2] = ACTIONS(2726), + [anon_sym_BANG_TILDE2] = ACTIONS(2726), + [anon_sym_like2] = ACTIONS(2726), + [anon_sym_not_DASHlike2] = ACTIONS(2726), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2726), + [anon_sym_bit_DASHshr2] = ACTIONS(2726), + [anon_sym_bit_DASHand2] = ACTIONS(2726), + [anon_sym_bit_DASHxor2] = ACTIONS(2726), + [anon_sym_bit_DASHor2] = ACTIONS(2726), + [anon_sym_err_GT] = ACTIONS(2728), + [anon_sym_out_GT] = ACTIONS(2728), + [anon_sym_e_GT] = ACTIONS(2728), + [anon_sym_o_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT] = ACTIONS(2728), + [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), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1189)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1189), - [anon_sym_in] = ACTIONS(2804), - [sym__newline] = ACTIONS(2688), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2806), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2688), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2804), - [anon_sym_has2] = ACTIONS(2804), - [anon_sym_not_DASHhas2] = ACTIONS(2804), - [anon_sym_starts_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), - [anon_sym_ends_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2806), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2688), - [anon_sym_bit_DASHxor2] = ACTIONS(2688), - [anon_sym_bit_DASHor2] = ACTIONS(2688), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), + [STATE(1197)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1197), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2666), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2841), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2835), + [anon_sym_bit_DASHor2] = ACTIONS(2837), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1190)] = { - [sym_comment] = STATE(1190), - [anon_sym_in] = ACTIONS(2194), - [sym__newline] = ACTIONS(2194), - [anon_sym_SEMI] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_err_GT_PIPE] = ACTIONS(2194), - [anon_sym_out_GT_PIPE] = ACTIONS(2194), - [anon_sym_e_GT_PIPE] = ACTIONS(2194), - [anon_sym_o_GT_PIPE] = ACTIONS(2194), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2194), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2194), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2194), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2194), - [anon_sym_RPAREN] = ACTIONS(2194), - [anon_sym_GT2] = ACTIONS(2196), - [anon_sym_DASH2] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2194), - [anon_sym_STAR2] = ACTIONS(2196), - [anon_sym_and2] = ACTIONS(2194), - [anon_sym_xor2] = ACTIONS(2194), - [anon_sym_or2] = ACTIONS(2194), - [anon_sym_not_DASHin2] = ACTIONS(2194), - [anon_sym_has2] = ACTIONS(2194), - [anon_sym_not_DASHhas2] = ACTIONS(2194), - [anon_sym_starts_DASHwith2] = ACTIONS(2194), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2194), - [anon_sym_ends_DASHwith2] = ACTIONS(2194), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2194), - [anon_sym_EQ_EQ2] = ACTIONS(2194), - [anon_sym_BANG_EQ2] = ACTIONS(2194), - [anon_sym_LT2] = ACTIONS(2196), - [anon_sym_LT_EQ2] = ACTIONS(2194), - [anon_sym_GT_EQ2] = ACTIONS(2194), - [anon_sym_EQ_TILDE2] = ACTIONS(2194), - [anon_sym_BANG_TILDE2] = ACTIONS(2194), - [anon_sym_like2] = ACTIONS(2194), - [anon_sym_not_DASHlike2] = ACTIONS(2194), - [anon_sym_STAR_STAR2] = ACTIONS(2194), - [anon_sym_PLUS_PLUS2] = ACTIONS(2194), - [anon_sym_SLASH2] = ACTIONS(2196), - [anon_sym_mod2] = ACTIONS(2194), - [anon_sym_SLASH_SLASH2] = ACTIONS(2194), - [anon_sym_PLUS2] = ACTIONS(2196), - [anon_sym_bit_DASHshl2] = ACTIONS(2194), - [anon_sym_bit_DASHshr2] = ACTIONS(2194), - [anon_sym_bit_DASHand2] = ACTIONS(2194), - [anon_sym_bit_DASHxor2] = ACTIONS(2194), - [anon_sym_bit_DASHor2] = ACTIONS(2194), - [anon_sym_err_GT] = ACTIONS(2196), - [anon_sym_out_GT] = ACTIONS(2196), - [anon_sym_e_GT] = ACTIONS(2196), - [anon_sym_o_GT] = ACTIONS(2196), - [anon_sym_err_PLUSout_GT] = ACTIONS(2196), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2196), - [anon_sym_o_PLUSe_GT] = ACTIONS(2196), - [anon_sym_e_PLUSo_GT] = ACTIONS(2196), - [anon_sym_err_GT_GT] = ACTIONS(2194), - [anon_sym_out_GT_GT] = ACTIONS(2194), - [anon_sym_e_GT_GT] = ACTIONS(2194), - [anon_sym_o_GT_GT] = ACTIONS(2194), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2194), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2194), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2194), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2194), + [STATE(1198)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1198), + [anon_sym_in] = ACTIONS(2732), + [sym__newline] = ACTIONS(2732), + [anon_sym_SEMI] = ACTIONS(2732), + [anon_sym_PIPE] = ACTIONS(2732), + [anon_sym_err_GT_PIPE] = ACTIONS(2732), + [anon_sym_out_GT_PIPE] = ACTIONS(2732), + [anon_sym_e_GT_PIPE] = ACTIONS(2732), + [anon_sym_o_GT_PIPE] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), + [anon_sym_RPAREN] = ACTIONS(2732), + [anon_sym_GT2] = ACTIONS(2734), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2732), + [anon_sym_xor2] = ACTIONS(2732), + [anon_sym_or2] = ACTIONS(2732), + [anon_sym_not_DASHin2] = ACTIONS(2732), + [anon_sym_has2] = ACTIONS(2732), + [anon_sym_not_DASHhas2] = ACTIONS(2732), + [anon_sym_starts_DASHwith2] = ACTIONS(2732), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2732), + [anon_sym_ends_DASHwith2] = ACTIONS(2732), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2732), + [anon_sym_EQ_EQ2] = ACTIONS(2732), + [anon_sym_BANG_EQ2] = ACTIONS(2732), + [anon_sym_LT2] = ACTIONS(2734), + [anon_sym_LT_EQ2] = ACTIONS(2732), + [anon_sym_GT_EQ2] = ACTIONS(2732), + [anon_sym_EQ_TILDE2] = ACTIONS(2732), + [anon_sym_BANG_TILDE2] = ACTIONS(2732), + [anon_sym_like2] = ACTIONS(2732), + [anon_sym_not_DASHlike2] = ACTIONS(2732), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2732), + [anon_sym_bit_DASHshr2] = ACTIONS(2732), + [anon_sym_bit_DASHand2] = ACTIONS(2732), + [anon_sym_bit_DASHxor2] = ACTIONS(2732), + [anon_sym_bit_DASHor2] = ACTIONS(2732), + [anon_sym_err_GT] = ACTIONS(2734), + [anon_sym_out_GT] = ACTIONS(2734), + [anon_sym_e_GT] = ACTIONS(2734), + [anon_sym_o_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT] = ACTIONS(2734), + [anon_sym_err_GT_GT] = ACTIONS(2732), + [anon_sym_out_GT_GT] = ACTIONS(2732), + [anon_sym_e_GT_GT] = ACTIONS(2732), + [anon_sym_o_GT_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1191)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1191), - [anon_sym_in] = ACTIONS(2804), - [sym__newline] = ACTIONS(2692), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2806), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2692), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2804), - [anon_sym_has2] = ACTIONS(2804), - [anon_sym_not_DASHhas2] = ACTIONS(2804), - [anon_sym_starts_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), - [anon_sym_ends_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2806), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2830), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), + [STATE(1199)] = { + [aux_sym__repeat_newline] = STATE(1185), + [sym_comment] = STATE(1199), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2832), + [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_RPAREN] = ACTIONS(2726), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2726), + [anon_sym_xor2] = ACTIONS(2726), + [anon_sym_or2] = ACTIONS(2726), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2726), + [anon_sym_bit_DASHxor2] = ACTIONS(2726), + [anon_sym_bit_DASHor2] = ACTIONS(2726), + [anon_sym_err_GT] = ACTIONS(2728), + [anon_sym_out_GT] = ACTIONS(2728), + [anon_sym_e_GT] = ACTIONS(2728), + [anon_sym_o_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT] = ACTIONS(2728), + [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), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1192)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1192), - [anon_sym_in] = ACTIONS(2804), - [sym__newline] = ACTIONS(2772), + [STATE(1200)] = { + [aux_sym__repeat_newline] = STATE(1163), + [sym_comment] = STATE(1200), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2903), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2899), + [anon_sym_xor2] = ACTIONS(2905), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2805), + [anon_sym_bit_DASHor2] = ACTIONS(2901), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1201)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1201), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2732), + [anon_sym_SEMI] = ACTIONS(2732), + [anon_sym_PIPE] = ACTIONS(2732), + [anon_sym_err_GT_PIPE] = ACTIONS(2732), + [anon_sym_out_GT_PIPE] = ACTIONS(2732), + [anon_sym_e_GT_PIPE] = ACTIONS(2732), + [anon_sym_o_GT_PIPE] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), + [anon_sym_RPAREN] = ACTIONS(2732), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2732), + [anon_sym_xor2] = ACTIONS(2732), + [anon_sym_or2] = ACTIONS(2732), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2732), + [anon_sym_bit_DASHxor2] = ACTIONS(2732), + [anon_sym_bit_DASHor2] = ACTIONS(2732), + [anon_sym_err_GT] = ACTIONS(2734), + [anon_sym_out_GT] = ACTIONS(2734), + [anon_sym_e_GT] = ACTIONS(2734), + [anon_sym_o_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT] = ACTIONS(2734), + [anon_sym_err_GT_GT] = ACTIONS(2732), + [anon_sym_out_GT_GT] = ACTIONS(2732), + [anon_sym_e_GT_GT] = ACTIONS(2732), + [anon_sym_o_GT_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1202)] = { + [sym__expression] = STATE(4794), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2225), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1831), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_comment] = STATE(1202), + [aux_sym_cmd_identifier_token2] = ACTIONS(2561), + [anon_sym_true] = ACTIONS(2563), + [anon_sym_false] = ACTIONS(2563), + [anon_sym_null] = ACTIONS(2565), + [aux_sym_cmd_identifier_token3] = ACTIONS(2567), + [aux_sym_cmd_identifier_token4] = ACTIONS(2567), + [aux_sym_cmd_identifier_token5] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2036), + [aux_sym__val_number_decimal_token3] = ACTIONS(2571), + [aux_sym__val_number_decimal_token4] = ACTIONS(2571), + [aux_sym__val_number_token1] = ACTIONS(2567), + [aux_sym__val_number_token2] = ACTIONS(2567), + [aux_sym__val_number_token3] = ACTIONS(2567), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2573), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(1203)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1203), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2732), + [anon_sym_SEMI] = ACTIONS(2732), + [anon_sym_PIPE] = ACTIONS(2732), + [anon_sym_err_GT_PIPE] = ACTIONS(2732), + [anon_sym_out_GT_PIPE] = ACTIONS(2732), + [anon_sym_e_GT_PIPE] = ACTIONS(2732), + [anon_sym_o_GT_PIPE] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), + [anon_sym_RPAREN] = ACTIONS(2732), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2732), + [anon_sym_xor2] = ACTIONS(2732), + [anon_sym_or2] = ACTIONS(2732), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2732), + [anon_sym_bit_DASHor2] = ACTIONS(2732), + [anon_sym_err_GT] = ACTIONS(2734), + [anon_sym_out_GT] = ACTIONS(2734), + [anon_sym_e_GT] = ACTIONS(2734), + [anon_sym_o_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT] = ACTIONS(2734), + [anon_sym_err_GT_GT] = ACTIONS(2732), + [anon_sym_out_GT_GT] = ACTIONS(2732), + [anon_sym_e_GT_GT] = ACTIONS(2732), + [anon_sym_o_GT_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1204)] = { + [sym_comment] = STATE(1204), + [anon_sym_in] = ACTIONS(2374), + [sym__newline] = ACTIONS(2376), + [anon_sym_SEMI] = ACTIONS(2379), + [anon_sym_PIPE] = ACTIONS(2379), + [anon_sym_err_GT_PIPE] = ACTIONS(2379), + [anon_sym_out_GT_PIPE] = ACTIONS(2379), + [anon_sym_e_GT_PIPE] = ACTIONS(2379), + [anon_sym_o_GT_PIPE] = ACTIONS(2379), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2379), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2379), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2379), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2379), + [anon_sym_RPAREN] = ACTIONS(2379), + [anon_sym_GT2] = ACTIONS(2381), + [anon_sym_DASH2] = ACTIONS(2374), + [anon_sym_LBRACE] = ACTIONS(2379), + [anon_sym_STAR2] = ACTIONS(2381), + [anon_sym_and2] = ACTIONS(2374), + [anon_sym_xor2] = ACTIONS(2374), + [anon_sym_or2] = ACTIONS(2374), + [anon_sym_not_DASHin2] = ACTIONS(2374), + [anon_sym_has2] = ACTIONS(2374), + [anon_sym_not_DASHhas2] = ACTIONS(2374), + [anon_sym_starts_DASHwith2] = ACTIONS(2374), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2374), + [anon_sym_ends_DASHwith2] = ACTIONS(2374), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2374), + [anon_sym_EQ_EQ2] = ACTIONS(2374), + [anon_sym_BANG_EQ2] = ACTIONS(2374), + [anon_sym_LT2] = ACTIONS(2381), + [anon_sym_LT_EQ2] = ACTIONS(2374), + [anon_sym_GT_EQ2] = ACTIONS(2374), + [anon_sym_EQ_TILDE2] = ACTIONS(2374), + [anon_sym_BANG_TILDE2] = ACTIONS(2374), + [anon_sym_like2] = ACTIONS(2374), + [anon_sym_not_DASHlike2] = ACTIONS(2374), + [anon_sym_STAR_STAR2] = ACTIONS(2374), + [anon_sym_PLUS_PLUS2] = ACTIONS(2374), + [anon_sym_SLASH2] = ACTIONS(2381), + [anon_sym_mod2] = ACTIONS(2374), + [anon_sym_SLASH_SLASH2] = ACTIONS(2374), + [anon_sym_PLUS2] = ACTIONS(2381), + [anon_sym_bit_DASHshl2] = ACTIONS(2374), + [anon_sym_bit_DASHshr2] = ACTIONS(2374), + [anon_sym_bit_DASHand2] = ACTIONS(2374), + [anon_sym_bit_DASHxor2] = ACTIONS(2374), + [anon_sym_bit_DASHor2] = ACTIONS(2374), + [anon_sym_err_GT] = ACTIONS(2383), + [anon_sym_out_GT] = ACTIONS(2383), + [anon_sym_e_GT] = ACTIONS(2383), + [anon_sym_o_GT] = ACTIONS(2383), + [anon_sym_err_PLUSout_GT] = ACTIONS(2383), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2383), + [anon_sym_o_PLUSe_GT] = ACTIONS(2383), + [anon_sym_e_PLUSo_GT] = ACTIONS(2383), + [anon_sym_err_GT_GT] = ACTIONS(2379), + [anon_sym_out_GT_GT] = ACTIONS(2379), + [anon_sym_e_GT_GT] = ACTIONS(2379), + [anon_sym_o_GT_GT] = ACTIONS(2379), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2379), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2379), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2379), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2379), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1205)] = { + [aux_sym__repeat_newline] = STATE(1206), + [sym_comment] = STATE(1205), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2832), + [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_RPAREN] = ACTIONS(2726), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2726), + [anon_sym_xor2] = ACTIONS(2726), + [anon_sym_or2] = ACTIONS(2726), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2805), + [anon_sym_bit_DASHor2] = ACTIONS(2726), + [anon_sym_err_GT] = ACTIONS(2728), + [anon_sym_out_GT] = ACTIONS(2728), + [anon_sym_e_GT] = ACTIONS(2728), + [anon_sym_o_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT] = ACTIONS(2728), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1206)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1206), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_PIPE] = ACTIONS(2652), + [anon_sym_err_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_GT_PIPE] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2652), + [anon_sym_RPAREN] = ACTIONS(2652), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2652), + [anon_sym_xor2] = ACTIONS(2652), + [anon_sym_or2] = ACTIONS(2652), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2835), + [anon_sym_bit_DASHor2] = ACTIONS(2652), + [anon_sym_err_GT] = ACTIONS(2654), + [anon_sym_out_GT] = ACTIONS(2654), + [anon_sym_e_GT] = ACTIONS(2654), + [anon_sym_o_GT] = ACTIONS(2654), + [anon_sym_err_PLUSout_GT] = ACTIONS(2654), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2654), + [anon_sym_o_PLUSe_GT] = ACTIONS(2654), + [anon_sym_e_PLUSo_GT] = ACTIONS(2654), + [anon_sym_err_GT_GT] = ACTIONS(2652), + [anon_sym_out_GT_GT] = ACTIONS(2652), + [anon_sym_e_GT_GT] = ACTIONS(2652), + [anon_sym_o_GT_GT] = ACTIONS(2652), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2652), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2652), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2652), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2652), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1207)] = { + [sym__expression] = STATE(4767), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2225), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1831), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_comment] = STATE(1207), + [aux_sym_cmd_identifier_token2] = ACTIONS(2839), + [anon_sym_true] = ACTIONS(2563), + [anon_sym_false] = ACTIONS(2563), + [anon_sym_null] = ACTIONS(2565), + [aux_sym_cmd_identifier_token3] = ACTIONS(2567), + [aux_sym_cmd_identifier_token4] = ACTIONS(2567), + [aux_sym_cmd_identifier_token5] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(287), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_DOT_DOT] = ACTIONS(169), + [aux_sym_expr_unary_token1] = ACTIONS(173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(179), + [anon_sym_DOT_DOT_LT] = ACTIONS(179), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2036), + [aux_sym__val_number_decimal_token3] = ACTIONS(2571), + [aux_sym__val_number_decimal_token4] = ACTIONS(2571), + [aux_sym__val_number_token1] = ACTIONS(2567), + [aux_sym__val_number_token2] = ACTIONS(2567), + [aux_sym__val_number_token3] = ACTIONS(2567), + [anon_sym_0b] = ACTIONS(191), + [anon_sym_0o] = ACTIONS(193), + [anon_sym_0x] = ACTIONS(193), + [sym_val_date] = ACTIONS(2573), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(201), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), + [anon_sym_POUND] = ACTIONS(103), + [sym_raw_string_begin] = ACTIONS(211), + }, + [STATE(1208)] = { + [sym_comment] = STATE(1208), + [ts_builtin_sym_end] = ACTIONS(2385), + [aux_sym_cmd_identifier_token2] = ACTIONS(2839), + [anon_sym_in] = ACTIONS(2387), + [sym__newline] = ACTIONS(2385), + [anon_sym_SEMI] = ACTIONS(2385), + [anon_sym_PIPE] = ACTIONS(2385), + [anon_sym_err_GT_PIPE] = ACTIONS(2385), + [anon_sym_out_GT_PIPE] = ACTIONS(2385), + [anon_sym_e_GT_PIPE] = ACTIONS(2385), + [anon_sym_o_GT_PIPE] = ACTIONS(2385), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2385), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2385), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2385), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2385), + [anon_sym_GT2] = ACTIONS(2387), + [anon_sym_DASH2] = ACTIONS(2387), + [anon_sym_STAR2] = ACTIONS(2387), + [anon_sym_and2] = ACTIONS(2387), + [anon_sym_xor2] = ACTIONS(2387), + [anon_sym_or2] = ACTIONS(2387), + [anon_sym_not_DASHin2] = ACTIONS(2387), + [anon_sym_has2] = ACTIONS(2387), + [anon_sym_not_DASHhas2] = ACTIONS(2387), + [anon_sym_starts_DASHwith2] = ACTIONS(2387), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2387), + [anon_sym_ends_DASHwith2] = ACTIONS(2387), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2387), + [anon_sym_EQ_EQ2] = ACTIONS(2385), + [anon_sym_BANG_EQ2] = ACTIONS(2385), + [anon_sym_LT2] = ACTIONS(2387), + [anon_sym_LT_EQ2] = ACTIONS(2385), + [anon_sym_GT_EQ2] = ACTIONS(2385), + [anon_sym_EQ_TILDE2] = ACTIONS(2385), + [anon_sym_BANG_TILDE2] = ACTIONS(2387), + [anon_sym_like2] = ACTIONS(2387), + [anon_sym_not_DASHlike2] = ACTIONS(2387), + [anon_sym_STAR_STAR2] = ACTIONS(2387), + [anon_sym_PLUS_PLUS2] = ACTIONS(2387), + [anon_sym_SLASH2] = ACTIONS(2387), + [anon_sym_mod2] = ACTIONS(2387), + [anon_sym_SLASH_SLASH2] = ACTIONS(2387), + [anon_sym_PLUS2] = ACTIONS(2387), + [anon_sym_bit_DASHshl2] = ACTIONS(2387), + [anon_sym_bit_DASHshr2] = ACTIONS(2387), + [anon_sym_bit_DASHand2] = ACTIONS(2387), + [anon_sym_bit_DASHxor2] = ACTIONS(2387), + [anon_sym_bit_DASHor2] = ACTIONS(2387), + [anon_sym_err_GT] = ACTIONS(2387), + [anon_sym_out_GT] = ACTIONS(2387), + [anon_sym_e_GT] = ACTIONS(2387), + [anon_sym_o_GT] = ACTIONS(2387), + [anon_sym_err_PLUSout_GT] = ACTIONS(2387), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2387), + [anon_sym_o_PLUSe_GT] = ACTIONS(2387), + [anon_sym_e_PLUSo_GT] = ACTIONS(2387), + [anon_sym_err_GT_GT] = ACTIONS(2385), + [anon_sym_out_GT_GT] = ACTIONS(2385), + [anon_sym_e_GT_GT] = ACTIONS(2385), + [anon_sym_o_GT_GT] = ACTIONS(2385), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2385), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2385), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2385), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2385), + [anon_sym_POUND] = ACTIONS(103), + }, + [STATE(1209)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1209), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2732), + [anon_sym_SEMI] = ACTIONS(2732), + [anon_sym_PIPE] = ACTIONS(2732), + [anon_sym_err_GT_PIPE] = ACTIONS(2732), + [anon_sym_out_GT_PIPE] = ACTIONS(2732), + [anon_sym_e_GT_PIPE] = ACTIONS(2732), + [anon_sym_o_GT_PIPE] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), + [anon_sym_RPAREN] = ACTIONS(2732), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2732), + [anon_sym_xor2] = ACTIONS(2732), + [anon_sym_or2] = ACTIONS(2732), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2835), + [anon_sym_bit_DASHor2] = ACTIONS(2732), + [anon_sym_err_GT] = ACTIONS(2734), + [anon_sym_out_GT] = ACTIONS(2734), + [anon_sym_e_GT] = ACTIONS(2734), + [anon_sym_o_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT] = ACTIONS(2734), + [anon_sym_err_GT_GT] = ACTIONS(2732), + [anon_sym_out_GT_GT] = ACTIONS(2732), + [anon_sym_e_GT_GT] = ACTIONS(2732), + [anon_sym_o_GT_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1210)] = { + [aux_sym__repeat_newline] = STATE(1135), + [sym_comment] = STATE(1210), + [anon_sym_in] = ACTIONS(2772), + [sym__newline] = ACTIONS(2782), [anon_sym_SEMI] = ACTIONS(2772), [anon_sym_PIPE] = ACTIONS(2772), [anon_sym_err_GT_PIPE] = ACTIONS(2772), @@ -134638,39 +135879,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), [anon_sym_RPAREN] = ACTIONS(2772), - [anon_sym_GT2] = ACTIONS(2806), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2812), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2772), [anon_sym_xor2] = ACTIONS(2772), [anon_sym_or2] = ACTIONS(2772), - [anon_sym_not_DASHin2] = ACTIONS(2804), - [anon_sym_has2] = ACTIONS(2804), - [anon_sym_not_DASHhas2] = ACTIONS(2804), - [anon_sym_starts_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), - [anon_sym_ends_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2806), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_not_DASHin2] = ACTIONS(2772), + [anon_sym_has2] = ACTIONS(2772), + [anon_sym_not_DASHhas2] = ACTIONS(2772), + [anon_sym_starts_DASHwith2] = ACTIONS(2772), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2772), + [anon_sym_ends_DASHwith2] = ACTIONS(2772), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2772), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2772), + [anon_sym_BANG_TILDE2] = ACTIONS(2772), + [anon_sym_like2] = ACTIONS(2772), + [anon_sym_not_DASHlike2] = ACTIONS(2772), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2772), + [anon_sym_bit_DASHxor2] = ACTIONS(2772), + [anon_sym_bit_DASHor2] = ACTIONS(2772), [anon_sym_err_GT] = ACTIONS(2774), [anon_sym_out_GT] = ACTIONS(2774), [anon_sym_e_GT] = ACTIONS(2774), @@ -134689,279 +135930,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1193)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1193), - [anon_sym_in] = ACTIONS(2692), - [sym__newline] = ACTIONS(2692), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2694), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2692), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2692), - [anon_sym_has2] = ACTIONS(2692), - [anon_sym_not_DASHhas2] = ACTIONS(2692), - [anon_sym_starts_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2692), - [anon_sym_ends_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2692), - [anon_sym_EQ_EQ2] = ACTIONS(2692), - [anon_sym_BANG_EQ2] = ACTIONS(2692), - [anon_sym_LT2] = ACTIONS(2694), - [anon_sym_LT_EQ2] = ACTIONS(2692), - [anon_sym_GT_EQ2] = ACTIONS(2692), - [anon_sym_EQ_TILDE2] = ACTIONS(2692), - [anon_sym_BANG_TILDE2] = ACTIONS(2692), - [anon_sym_like2] = ACTIONS(2692), - [anon_sym_not_DASHlike2] = ACTIONS(2692), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2692), - [anon_sym_bit_DASHxor2] = ACTIONS(2692), - [anon_sym_bit_DASHor2] = ACTIONS(2692), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1194)] = { - [aux_sym__repeat_newline] = STATE(1251), - [sym_comment] = STATE(1194), - [anon_sym_in] = ACTIONS(2832), - [sym__newline] = ACTIONS(2834), - [anon_sym_SEMI] = ACTIONS(2768), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_err_GT_PIPE] = ACTIONS(2768), - [anon_sym_out_GT_PIPE] = ACTIONS(2768), - [anon_sym_e_GT_PIPE] = ACTIONS(2768), - [anon_sym_o_GT_PIPE] = ACTIONS(2768), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2768), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2768), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2768), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2768), - [anon_sym_RPAREN] = ACTIONS(2768), - [anon_sym_GT2] = ACTIONS(2836), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2842), - [anon_sym_xor2] = ACTIONS(2844), - [anon_sym_or2] = ACTIONS(2768), - [anon_sym_not_DASHin2] = ACTIONS(2832), - [anon_sym_has2] = ACTIONS(2832), - [anon_sym_not_DASHhas2] = ACTIONS(2832), - [anon_sym_starts_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), - [anon_sym_ends_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), - [anon_sym_EQ_EQ2] = ACTIONS(2846), - [anon_sym_BANG_EQ2] = ACTIONS(2846), - [anon_sym_LT2] = ACTIONS(2836), - [anon_sym_LT_EQ2] = ACTIONS(2846), - [anon_sym_GT_EQ2] = ACTIONS(2846), - [anon_sym_EQ_TILDE2] = ACTIONS(2848), - [anon_sym_BANG_TILDE2] = ACTIONS(2848), - [anon_sym_like2] = ACTIONS(2848), - [anon_sym_not_DASHlike2] = ACTIONS(2848), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2770), - [anon_sym_out_GT] = ACTIONS(2770), - [anon_sym_e_GT] = ACTIONS(2770), - [anon_sym_o_GT] = ACTIONS(2770), - [anon_sym_err_PLUSout_GT] = ACTIONS(2770), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2770), - [anon_sym_o_PLUSe_GT] = ACTIONS(2770), - [anon_sym_e_PLUSo_GT] = ACTIONS(2770), - [anon_sym_err_GT_GT] = ACTIONS(2768), - [anon_sym_out_GT_GT] = ACTIONS(2768), - [anon_sym_e_GT_GT] = ACTIONS(2768), - [anon_sym_o_GT_GT] = ACTIONS(2768), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2768), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2768), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2768), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2768), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1195)] = { - [sym_comment] = STATE(1195), - [ts_builtin_sym_end] = ACTIONS(2114), - [anon_sym_in] = ACTIONS(2114), - [sym__newline] = ACTIONS(2114), - [anon_sym_SEMI] = ACTIONS(2114), - [anon_sym_PIPE] = ACTIONS(2114), - [anon_sym_err_GT_PIPE] = ACTIONS(2114), - [anon_sym_out_GT_PIPE] = ACTIONS(2114), - [anon_sym_e_GT_PIPE] = ACTIONS(2114), - [anon_sym_o_GT_PIPE] = ACTIONS(2114), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2114), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2114), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2114), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2114), - [anon_sym_GT2] = ACTIONS(2116), - [anon_sym_DASH2] = ACTIONS(2114), - [anon_sym_STAR2] = ACTIONS(2116), - [anon_sym_and2] = ACTIONS(2114), - [anon_sym_xor2] = ACTIONS(2114), - [anon_sym_or2] = ACTIONS(2114), - [anon_sym_not_DASHin2] = ACTIONS(2114), - [anon_sym_has2] = ACTIONS(2114), - [anon_sym_not_DASHhas2] = ACTIONS(2114), - [anon_sym_starts_DASHwith2] = ACTIONS(2114), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2114), - [anon_sym_ends_DASHwith2] = ACTIONS(2114), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2114), - [anon_sym_EQ_EQ2] = ACTIONS(2114), - [anon_sym_BANG_EQ2] = ACTIONS(2114), - [anon_sym_LT2] = ACTIONS(2116), - [anon_sym_LT_EQ2] = ACTIONS(2114), - [anon_sym_GT_EQ2] = ACTIONS(2114), - [anon_sym_EQ_TILDE2] = ACTIONS(2114), - [anon_sym_BANG_TILDE2] = ACTIONS(2114), - [anon_sym_like2] = ACTIONS(2114), - [anon_sym_not_DASHlike2] = ACTIONS(2114), - [anon_sym_STAR_STAR2] = ACTIONS(2114), - [anon_sym_PLUS_PLUS2] = ACTIONS(2114), - [anon_sym_SLASH2] = ACTIONS(2116), - [anon_sym_mod2] = ACTIONS(2114), - [anon_sym_SLASH_SLASH2] = ACTIONS(2114), - [anon_sym_PLUS2] = ACTIONS(2116), - [anon_sym_bit_DASHshl2] = ACTIONS(2114), - [anon_sym_bit_DASHshr2] = ACTIONS(2114), - [anon_sym_bit_DASHand2] = ACTIONS(2114), - [anon_sym_bit_DASHxor2] = ACTIONS(2114), - [anon_sym_bit_DASHor2] = ACTIONS(2114), - [anon_sym_LBRACK2] = ACTIONS(2898), - [anon_sym_err_GT] = ACTIONS(2116), - [anon_sym_out_GT] = ACTIONS(2116), - [anon_sym_e_GT] = ACTIONS(2116), - [anon_sym_o_GT] = ACTIONS(2116), - [anon_sym_err_PLUSout_GT] = ACTIONS(2116), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2116), - [anon_sym_o_PLUSe_GT] = ACTIONS(2116), - [anon_sym_e_PLUSo_GT] = ACTIONS(2116), - [anon_sym_err_GT_GT] = ACTIONS(2114), - [anon_sym_out_GT_GT] = ACTIONS(2114), - [anon_sym_e_GT_GT] = ACTIONS(2114), - [anon_sym_o_GT_GT] = ACTIONS(2114), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2114), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2114), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2114), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2114), + [STATE(1211)] = { + [sym_comment] = STATE(1211), + [anon_sym_in] = ACTIONS(2509), + [sym__newline] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_err_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_GT_PIPE] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2509), + [anon_sym_RPAREN] = ACTIONS(2509), + [anon_sym_GT2] = ACTIONS(2907), + [anon_sym_DASH2] = ACTIONS(2909), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_STAR2] = ACTIONS(2911), + [anon_sym_and2] = ACTIONS(2509), + [anon_sym_xor2] = ACTIONS(2509), + [anon_sym_or2] = ACTIONS(2509), + [anon_sym_not_DASHin2] = ACTIONS(2509), + [anon_sym_has2] = ACTIONS(2509), + [anon_sym_not_DASHhas2] = ACTIONS(2509), + [anon_sym_starts_DASHwith2] = ACTIONS(2509), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2509), + [anon_sym_ends_DASHwith2] = ACTIONS(2509), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2509), + [anon_sym_EQ_EQ2] = ACTIONS(2913), + [anon_sym_BANG_EQ2] = ACTIONS(2913), + [anon_sym_LT2] = ACTIONS(2907), + [anon_sym_LT_EQ2] = ACTIONS(2913), + [anon_sym_GT_EQ2] = ACTIONS(2913), + [anon_sym_EQ_TILDE2] = ACTIONS(2509), + [anon_sym_BANG_TILDE2] = ACTIONS(2509), + [anon_sym_like2] = ACTIONS(2509), + [anon_sym_not_DASHlike2] = ACTIONS(2509), + [anon_sym_STAR_STAR2] = ACTIONS(2915), + [anon_sym_PLUS_PLUS2] = ACTIONS(2915), + [anon_sym_SLASH2] = ACTIONS(2911), + [anon_sym_mod2] = ACTIONS(2917), + [anon_sym_SLASH_SLASH2] = ACTIONS(2917), + [anon_sym_PLUS2] = ACTIONS(2919), + [anon_sym_bit_DASHshl2] = ACTIONS(2921), + [anon_sym_bit_DASHshr2] = ACTIONS(2921), + [anon_sym_bit_DASHand2] = ACTIONS(2509), + [anon_sym_bit_DASHxor2] = ACTIONS(2509), + [anon_sym_bit_DASHor2] = ACTIONS(2509), + [anon_sym_err_GT] = ACTIONS(2511), + [anon_sym_out_GT] = ACTIONS(2511), + [anon_sym_e_GT] = ACTIONS(2511), + [anon_sym_o_GT] = ACTIONS(2511), + [anon_sym_err_PLUSout_GT] = ACTIONS(2511), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2511), + [anon_sym_o_PLUSe_GT] = ACTIONS(2511), + [anon_sym_e_PLUSo_GT] = ACTIONS(2511), + [anon_sym_err_GT_GT] = ACTIONS(2509), + [anon_sym_out_GT_GT] = ACTIONS(2509), + [anon_sym_e_GT_GT] = ACTIONS(2509), + [anon_sym_o_GT_GT] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2509), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1196)] = { - [aux_sym__repeat_newline] = STATE(1222), - [sym_comment] = STATE(1196), - [anon_sym_in] = ACTIONS(2832), - [sym__newline] = ACTIONS(2864), - [anon_sym_SEMI] = ACTIONS(2676), - [anon_sym_PIPE] = ACTIONS(2676), - [anon_sym_err_GT_PIPE] = ACTIONS(2676), - [anon_sym_out_GT_PIPE] = ACTIONS(2676), - [anon_sym_e_GT_PIPE] = ACTIONS(2676), - [anon_sym_o_GT_PIPE] = ACTIONS(2676), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), - [anon_sym_RPAREN] = ACTIONS(2676), - [anon_sym_GT2] = ACTIONS(2836), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2676), - [anon_sym_xor2] = ACTIONS(2676), - [anon_sym_or2] = ACTIONS(2676), - [anon_sym_not_DASHin2] = ACTIONS(2832), - [anon_sym_has2] = ACTIONS(2832), - [anon_sym_not_DASHhas2] = ACTIONS(2832), - [anon_sym_starts_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), - [anon_sym_ends_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), - [anon_sym_EQ_EQ2] = ACTIONS(2846), - [anon_sym_BANG_EQ2] = ACTIONS(2846), - [anon_sym_LT2] = ACTIONS(2836), - [anon_sym_LT_EQ2] = ACTIONS(2846), - [anon_sym_GT_EQ2] = ACTIONS(2846), - [anon_sym_EQ_TILDE2] = ACTIONS(2848), - [anon_sym_BANG_TILDE2] = ACTIONS(2848), - [anon_sym_like2] = ACTIONS(2848), - [anon_sym_not_DASHlike2] = ACTIONS(2848), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2676), - [anon_sym_bit_DASHor2] = ACTIONS(2676), - [anon_sym_err_GT] = ACTIONS(2678), - [anon_sym_out_GT] = ACTIONS(2678), - [anon_sym_e_GT] = ACTIONS(2678), - [anon_sym_o_GT] = ACTIONS(2678), - [anon_sym_err_PLUSout_GT] = ACTIONS(2678), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), - [anon_sym_o_PLUSe_GT] = ACTIONS(2678), - [anon_sym_e_PLUSo_GT] = ACTIONS(2678), - [anon_sym_err_GT_GT] = ACTIONS(2676), - [anon_sym_out_GT_GT] = ACTIONS(2676), - [anon_sym_e_GT_GT] = ACTIONS(2676), - [anon_sym_o_GT_GT] = ACTIONS(2676), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [STATE(1212)] = { + [sym_comment] = STATE(1212), + [ts_builtin_sym_end] = ACTIONS(2166), + [anon_sym_in] = ACTIONS(2166), + [sym__newline] = ACTIONS(2166), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_err_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_GT_PIPE] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2166), + [anon_sym_GT2] = ACTIONS(2168), + [anon_sym_DASH2] = ACTIONS(2166), + [anon_sym_STAR2] = ACTIONS(2168), + [anon_sym_and2] = ACTIONS(2166), + [anon_sym_xor2] = ACTIONS(2166), + [anon_sym_or2] = ACTIONS(2166), + [anon_sym_not_DASHin2] = ACTIONS(2166), + [anon_sym_has2] = ACTIONS(2166), + [anon_sym_not_DASHhas2] = ACTIONS(2166), + [anon_sym_starts_DASHwith2] = ACTIONS(2166), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2166), + [anon_sym_ends_DASHwith2] = ACTIONS(2166), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2166), + [anon_sym_EQ_EQ2] = ACTIONS(2166), + [anon_sym_BANG_EQ2] = ACTIONS(2166), + [anon_sym_LT2] = ACTIONS(2168), + [anon_sym_LT_EQ2] = ACTIONS(2166), + [anon_sym_GT_EQ2] = ACTIONS(2166), + [anon_sym_EQ_TILDE2] = ACTIONS(2166), + [anon_sym_BANG_TILDE2] = ACTIONS(2166), + [anon_sym_like2] = ACTIONS(2166), + [anon_sym_not_DASHlike2] = ACTIONS(2166), + [anon_sym_STAR_STAR2] = ACTIONS(2166), + [anon_sym_PLUS_PLUS2] = ACTIONS(2166), + [anon_sym_SLASH2] = ACTIONS(2168), + [anon_sym_mod2] = ACTIONS(2166), + [anon_sym_SLASH_SLASH2] = ACTIONS(2166), + [anon_sym_PLUS2] = ACTIONS(2168), + [anon_sym_bit_DASHshl2] = ACTIONS(2166), + [anon_sym_bit_DASHshr2] = ACTIONS(2166), + [anon_sym_bit_DASHand2] = ACTIONS(2166), + [anon_sym_bit_DASHxor2] = ACTIONS(2166), + [anon_sym_bit_DASHor2] = ACTIONS(2166), + [anon_sym_LBRACK2] = ACTIONS(2923), + [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(2166), + [anon_sym_out_GT_GT] = ACTIONS(2166), + [anon_sym_e_GT_GT] = ACTIONS(2166), + [anon_sym_o_GT_GT] = ACTIONS(2166), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2166), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2166), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2166), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2166), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1197)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1197), - [anon_sym_in] = ACTIONS(2804), - [sym__newline] = ACTIONS(2772), + [STATE(1213)] = { + [aux_sym__repeat_newline] = STATE(1165), + [sym_comment] = STATE(1213), + [anon_sym_in] = ACTIONS(2772), + [sym__newline] = ACTIONS(2782), [anon_sym_SEMI] = ACTIONS(2772), [anon_sym_PIPE] = ACTIONS(2772), [anon_sym_err_GT_PIPE] = ACTIONS(2772), @@ -134973,39 +136080,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), [anon_sym_RPAREN] = ACTIONS(2772), - [anon_sym_GT2] = ACTIONS(2806), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2812), - [anon_sym_xor2] = ACTIONS(2873), + [anon_sym_GT2] = ACTIONS(2774), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2772), + [anon_sym_xor2] = ACTIONS(2772), [anon_sym_or2] = ACTIONS(2772), - [anon_sym_not_DASHin2] = ACTIONS(2804), - [anon_sym_has2] = ACTIONS(2804), - [anon_sym_not_DASHhas2] = ACTIONS(2804), - [anon_sym_starts_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), - [anon_sym_ends_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2806), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_not_DASHin2] = ACTIONS(2772), + [anon_sym_has2] = ACTIONS(2772), + [anon_sym_not_DASHhas2] = ACTIONS(2772), + [anon_sym_starts_DASHwith2] = ACTIONS(2772), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2772), + [anon_sym_ends_DASHwith2] = ACTIONS(2772), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2772), + [anon_sym_EQ_EQ2] = ACTIONS(2772), + [anon_sym_BANG_EQ2] = ACTIONS(2772), + [anon_sym_LT2] = ACTIONS(2774), + [anon_sym_LT_EQ2] = ACTIONS(2772), + [anon_sym_GT_EQ2] = ACTIONS(2772), + [anon_sym_EQ_TILDE2] = ACTIONS(2772), + [anon_sym_BANG_TILDE2] = ACTIONS(2772), + [anon_sym_like2] = ACTIONS(2772), + [anon_sym_not_DASHlike2] = ACTIONS(2772), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2772), + [anon_sym_bit_DASHxor2] = ACTIONS(2772), + [anon_sym_bit_DASHor2] = ACTIONS(2772), [anon_sym_err_GT] = ACTIONS(2774), [anon_sym_out_GT] = ACTIONS(2774), [anon_sym_e_GT] = ACTIONS(2774), @@ -135024,413 +136131,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1198)] = { - [aux_sym__repeat_newline] = STATE(1172), - [sym_comment] = STATE(1198), - [anon_sym_in] = ACTIONS(2832), - [sym__newline] = ACTIONS(2870), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_err_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_GT_PIPE] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2684), - [anon_sym_GT2] = ACTIONS(2836), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2842), - [anon_sym_xor2] = ACTIONS(2684), - [anon_sym_or2] = ACTIONS(2684), - [anon_sym_not_DASHin2] = ACTIONS(2832), - [anon_sym_has2] = ACTIONS(2832), - [anon_sym_not_DASHhas2] = ACTIONS(2832), - [anon_sym_starts_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), - [anon_sym_ends_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), - [anon_sym_EQ_EQ2] = ACTIONS(2846), - [anon_sym_BANG_EQ2] = ACTIONS(2846), - [anon_sym_LT2] = ACTIONS(2836), - [anon_sym_LT_EQ2] = ACTIONS(2846), - [anon_sym_GT_EQ2] = ACTIONS(2846), - [anon_sym_EQ_TILDE2] = ACTIONS(2848), - [anon_sym_BANG_TILDE2] = ACTIONS(2848), - [anon_sym_like2] = ACTIONS(2848), - [anon_sym_not_DASHlike2] = ACTIONS(2848), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2686), - [anon_sym_out_GT] = ACTIONS(2686), - [anon_sym_e_GT] = ACTIONS(2686), - [anon_sym_o_GT] = ACTIONS(2686), - [anon_sym_err_PLUSout_GT] = ACTIONS(2686), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), - [anon_sym_o_PLUSe_GT] = ACTIONS(2686), - [anon_sym_e_PLUSo_GT] = ACTIONS(2686), - [anon_sym_err_GT_GT] = ACTIONS(2684), - [anon_sym_out_GT_GT] = ACTIONS(2684), - [anon_sym_e_GT_GT] = ACTIONS(2684), - [anon_sym_o_GT_GT] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1199)] = { - [aux_sym__repeat_newline] = STATE(1253), - [sym_comment] = STATE(1199), - [anon_sym_in] = ACTIONS(2832), - [sym__newline] = ACTIONS(2867), - [anon_sym_SEMI] = ACTIONS(2768), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_err_GT_PIPE] = ACTIONS(2768), - [anon_sym_out_GT_PIPE] = ACTIONS(2768), - [anon_sym_e_GT_PIPE] = ACTIONS(2768), - [anon_sym_o_GT_PIPE] = ACTIONS(2768), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2768), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2768), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2768), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2768), - [anon_sym_RPAREN] = ACTIONS(2768), - [anon_sym_GT2] = ACTIONS(2836), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2768), - [anon_sym_xor2] = ACTIONS(2768), - [anon_sym_or2] = ACTIONS(2768), - [anon_sym_not_DASHin2] = ACTIONS(2832), - [anon_sym_has2] = ACTIONS(2832), - [anon_sym_not_DASHhas2] = ACTIONS(2832), - [anon_sym_starts_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), - [anon_sym_ends_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), - [anon_sym_EQ_EQ2] = ACTIONS(2846), - [anon_sym_BANG_EQ2] = ACTIONS(2846), - [anon_sym_LT2] = ACTIONS(2836), - [anon_sym_LT_EQ2] = ACTIONS(2846), - [anon_sym_GT_EQ2] = ACTIONS(2846), - [anon_sym_EQ_TILDE2] = ACTIONS(2768), - [anon_sym_BANG_TILDE2] = ACTIONS(2768), - [anon_sym_like2] = ACTIONS(2768), - [anon_sym_not_DASHlike2] = ACTIONS(2768), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), - [anon_sym_bit_DASHand2] = ACTIONS(2768), - [anon_sym_bit_DASHxor2] = ACTIONS(2768), - [anon_sym_bit_DASHor2] = ACTIONS(2768), - [anon_sym_err_GT] = ACTIONS(2770), - [anon_sym_out_GT] = ACTIONS(2770), - [anon_sym_e_GT] = ACTIONS(2770), - [anon_sym_o_GT] = ACTIONS(2770), - [anon_sym_err_PLUSout_GT] = ACTIONS(2770), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2770), - [anon_sym_o_PLUSe_GT] = ACTIONS(2770), - [anon_sym_e_PLUSo_GT] = ACTIONS(2770), - [anon_sym_err_GT_GT] = ACTIONS(2768), - [anon_sym_out_GT_GT] = ACTIONS(2768), - [anon_sym_e_GT_GT] = ACTIONS(2768), - [anon_sym_o_GT_GT] = ACTIONS(2768), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2768), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2768), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2768), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2768), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1200)] = { - [aux_sym__repeat_newline] = STATE(1153), - [sym_comment] = STATE(1200), - [anon_sym_in] = ACTIONS(2666), - [sym__newline] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2666), - [anon_sym_PIPE] = ACTIONS(2666), - [anon_sym_err_GT_PIPE] = ACTIONS(2666), - [anon_sym_out_GT_PIPE] = ACTIONS(2666), - [anon_sym_e_GT_PIPE] = ACTIONS(2666), - [anon_sym_o_GT_PIPE] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), - [anon_sym_RPAREN] = ACTIONS(2666), - [anon_sym_GT2] = ACTIONS(2836), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2666), - [anon_sym_xor2] = ACTIONS(2666), - [anon_sym_or2] = ACTIONS(2666), - [anon_sym_not_DASHin2] = ACTIONS(2666), - [anon_sym_has2] = ACTIONS(2666), - [anon_sym_not_DASHhas2] = ACTIONS(2666), - [anon_sym_starts_DASHwith2] = ACTIONS(2666), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2666), - [anon_sym_ends_DASHwith2] = ACTIONS(2666), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2666), - [anon_sym_EQ_EQ2] = ACTIONS(2846), - [anon_sym_BANG_EQ2] = ACTIONS(2846), - [anon_sym_LT2] = ACTIONS(2836), - [anon_sym_LT_EQ2] = ACTIONS(2846), - [anon_sym_GT_EQ2] = ACTIONS(2846), - [anon_sym_EQ_TILDE2] = ACTIONS(2666), - [anon_sym_BANG_TILDE2] = ACTIONS(2666), - [anon_sym_like2] = ACTIONS(2666), - [anon_sym_not_DASHlike2] = ACTIONS(2666), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), - [anon_sym_bit_DASHand2] = ACTIONS(2666), - [anon_sym_bit_DASHxor2] = ACTIONS(2666), - [anon_sym_bit_DASHor2] = ACTIONS(2666), - [anon_sym_err_GT] = ACTIONS(2668), - [anon_sym_out_GT] = ACTIONS(2668), - [anon_sym_e_GT] = ACTIONS(2668), - [anon_sym_o_GT] = ACTIONS(2668), - [anon_sym_err_PLUSout_GT] = ACTIONS(2668), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), - [anon_sym_o_PLUSe_GT] = ACTIONS(2668), - [anon_sym_e_PLUSo_GT] = ACTIONS(2668), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1201)] = { - [sym__ctrl_match_body] = STATE(5007), - [sym_match_arm] = STATE(4515), - [sym_default_arm] = STATE(4515), - [sym_match_pattern] = STATE(5101), - [sym__match_pattern] = STATE(3907), - [sym__match_pattern_expression] = STATE(4160), - [sym__match_pattern_value] = STATE(4162), - [sym__match_pattern_list] = STATE(4163), - [sym__match_pattern_record] = STATE(4167), - [sym_expr_parenthesized] = STATE(3716), - [sym_val_range] = STATE(4162), - [sym__val_range] = STATE(5013), - [sym_val_nothing] = STATE(4167), - [sym_val_bool] = STATE(3955), - [sym_val_variable] = STATE(3718), - [sym_val_number] = STATE(4167), - [sym__val_number_decimal] = STATE(3468), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(4167), - [sym_val_filesize] = STATE(4167), - [sym_val_binary] = STATE(4167), - [sym_val_string] = STATE(4167), - [sym__raw_str] = STATE(2243), - [sym__str_double_quotes] = STATE(2243), - [sym__str_single_quotes] = STATE(2243), - [sym__str_back_ticks] = STATE(2243), - [sym_val_table] = STATE(4167), - [sym_unquoted] = STATE(4170), - [sym__unquoted_anonymous_prefix] = STATE(5013), - [sym_comment] = STATE(1201), - [aux_sym__types_body_repeat1] = STATE(1346), - [aux_sym__ctrl_match_body_repeat1] = STATE(1369), - [anon_sym_true] = ACTIONS(2900), - [anon_sym_false] = ACTIONS(2900), - [anon_sym_null] = ACTIONS(2902), - [aux_sym_cmd_identifier_token3] = ACTIONS(2904), - [aux_sym_cmd_identifier_token4] = ACTIONS(2904), - [aux_sym_cmd_identifier_token5] = ACTIONS(2904), - [sym__newline] = ACTIONS(2906), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_LPAREN] = ACTIONS(2748), - [anon_sym_DOLLAR] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_RBRACE] = ACTIONS(2914), - [anon_sym__] = ACTIONS(2916), - [anon_sym_DOT_DOT] = ACTIONS(2918), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2920), - [anon_sym_DOT_DOT_LT] = ACTIONS(2920), - [aux_sym__val_number_decimal_token1] = ACTIONS(2922), - [aux_sym__val_number_decimal_token2] = ACTIONS(2924), - [aux_sym__val_number_decimal_token3] = ACTIONS(2926), - [aux_sym__val_number_decimal_token4] = ACTIONS(2926), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2928), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [aux_sym_unquoted_token1] = ACTIONS(1912), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(1202)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1202), - [anon_sym_in] = ACTIONS(2804), - [sym__newline] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym_PIPE] = ACTIONS(2776), - [anon_sym_err_GT_PIPE] = ACTIONS(2776), - [anon_sym_out_GT_PIPE] = ACTIONS(2776), - [anon_sym_e_GT_PIPE] = ACTIONS(2776), - [anon_sym_o_GT_PIPE] = ACTIONS(2776), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), - [anon_sym_RPAREN] = ACTIONS(2776), - [anon_sym_GT2] = ACTIONS(2806), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2776), - [anon_sym_xor2] = ACTIONS(2776), - [anon_sym_or2] = ACTIONS(2776), - [anon_sym_not_DASHin2] = ACTIONS(2804), - [anon_sym_has2] = ACTIONS(2804), - [anon_sym_not_DASHhas2] = ACTIONS(2804), - [anon_sym_starts_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), - [anon_sym_ends_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2806), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2776), - [anon_sym_bit_DASHor2] = ACTIONS(2776), - [anon_sym_err_GT] = ACTIONS(2778), - [anon_sym_out_GT] = ACTIONS(2778), - [anon_sym_e_GT] = ACTIONS(2778), - [anon_sym_o_GT] = ACTIONS(2778), - [anon_sym_err_PLUSout_GT] = ACTIONS(2778), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2778), - [anon_sym_o_PLUSe_GT] = ACTIONS(2778), - [anon_sym_e_PLUSo_GT] = ACTIONS(2778), - [anon_sym_err_GT_GT] = ACTIONS(2776), - [anon_sym_out_GT_GT] = ACTIONS(2776), - [anon_sym_e_GT_GT] = ACTIONS(2776), - [anon_sym_o_GT_GT] = ACTIONS(2776), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1203)] = { - [aux_sym__repeat_newline] = STATE(1220), - [sym_comment] = STATE(1203), - [anon_sym_in] = ACTIONS(2666), - [sym__newline] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2666), - [anon_sym_PIPE] = ACTIONS(2666), - [anon_sym_err_GT_PIPE] = ACTIONS(2666), - [anon_sym_out_GT_PIPE] = ACTIONS(2666), - [anon_sym_e_GT_PIPE] = ACTIONS(2666), - [anon_sym_o_GT_PIPE] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), - [anon_sym_RPAREN] = ACTIONS(2666), - [anon_sym_GT2] = ACTIONS(2668), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2666), - [anon_sym_xor2] = ACTIONS(2666), - [anon_sym_or2] = ACTIONS(2666), - [anon_sym_not_DASHin2] = ACTIONS(2666), - [anon_sym_has2] = ACTIONS(2666), - [anon_sym_not_DASHhas2] = ACTIONS(2666), - [anon_sym_starts_DASHwith2] = ACTIONS(2666), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2666), - [anon_sym_ends_DASHwith2] = ACTIONS(2666), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2666), - [anon_sym_EQ_EQ2] = ACTIONS(2666), - [anon_sym_BANG_EQ2] = ACTIONS(2666), - [anon_sym_LT2] = ACTIONS(2668), - [anon_sym_LT_EQ2] = ACTIONS(2666), - [anon_sym_GT_EQ2] = ACTIONS(2666), - [anon_sym_EQ_TILDE2] = ACTIONS(2666), - [anon_sym_BANG_TILDE2] = ACTIONS(2666), - [anon_sym_like2] = ACTIONS(2666), - [anon_sym_not_DASHlike2] = ACTIONS(2666), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2666), - [anon_sym_bit_DASHshr2] = ACTIONS(2666), - [anon_sym_bit_DASHand2] = ACTIONS(2666), - [anon_sym_bit_DASHxor2] = ACTIONS(2666), - [anon_sym_bit_DASHor2] = ACTIONS(2666), - [anon_sym_err_GT] = ACTIONS(2668), - [anon_sym_out_GT] = ACTIONS(2668), - [anon_sym_e_GT] = ACTIONS(2668), - [anon_sym_o_GT] = ACTIONS(2668), - [anon_sym_err_PLUSout_GT] = ACTIONS(2668), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), - [anon_sym_o_PLUSe_GT] = ACTIONS(2668), - [anon_sym_e_PLUSo_GT] = ACTIONS(2668), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1204)] = { - [aux_sym__repeat_newline] = STATE(1254), - [sym_comment] = STATE(1204), - [anon_sym_in] = ACTIONS(2832), - [sym__newline] = ACTIONS(2875), + [STATE(1214)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1214), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2666), [anon_sym_SEMI] = ACTIONS(2666), [anon_sym_PIPE] = ACTIONS(2666), [anon_sym_err_GT_PIPE] = ACTIONS(2666), @@ -135442,39 +136147,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), [anon_sym_RPAREN] = ACTIONS(2666), - [anon_sym_GT2] = ACTIONS(2836), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2666), - [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2841), + [anon_sym_xor2] = ACTIONS(2897), [anon_sym_or2] = ACTIONS(2666), - [anon_sym_not_DASHin2] = ACTIONS(2832), - [anon_sym_has2] = ACTIONS(2832), - [anon_sym_not_DASHhas2] = ACTIONS(2832), - [anon_sym_starts_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), - [anon_sym_ends_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), - [anon_sym_EQ_EQ2] = ACTIONS(2846), - [anon_sym_BANG_EQ2] = ACTIONS(2846), - [anon_sym_LT2] = ACTIONS(2836), - [anon_sym_LT_EQ2] = ACTIONS(2846), - [anon_sym_GT_EQ2] = ACTIONS(2846), - [anon_sym_EQ_TILDE2] = ACTIONS(2848), - [anon_sym_BANG_TILDE2] = ACTIONS(2848), - [anon_sym_like2] = ACTIONS(2848), - [anon_sym_not_DASHlike2] = ACTIONS(2848), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2666), - [anon_sym_bit_DASHor2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2820), + [anon_sym_BANG_TILDE2] = ACTIONS(2820), + [anon_sym_like2] = ACTIONS(2820), + [anon_sym_not_DASHlike2] = ACTIONS(2820), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2830), + [anon_sym_bit_DASHxor2] = ACTIONS(2835), + [anon_sym_bit_DASHor2] = ACTIONS(2837), [anon_sym_err_GT] = ACTIONS(2668), [anon_sym_out_GT] = ACTIONS(2668), [anon_sym_e_GT] = ACTIONS(2668), @@ -135493,162 +136198,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1205)] = { - [sym_comment] = STATE(1205), - [ts_builtin_sym_end] = ACTIONS(2120), - [anon_sym_in] = ACTIONS(2120), - [sym__newline] = ACTIONS(2120), - [anon_sym_SEMI] = ACTIONS(2120), - [anon_sym_PIPE] = ACTIONS(2120), - [anon_sym_err_GT_PIPE] = ACTIONS(2120), - [anon_sym_out_GT_PIPE] = ACTIONS(2120), - [anon_sym_e_GT_PIPE] = ACTIONS(2120), - [anon_sym_o_GT_PIPE] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2120), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2120), - [anon_sym_GT2] = ACTIONS(2122), - [anon_sym_DASH2] = ACTIONS(2120), - [anon_sym_STAR2] = ACTIONS(2122), - [anon_sym_and2] = ACTIONS(2120), - [anon_sym_xor2] = ACTIONS(2120), - [anon_sym_or2] = ACTIONS(2120), - [anon_sym_not_DASHin2] = ACTIONS(2120), - [anon_sym_has2] = ACTIONS(2120), - [anon_sym_not_DASHhas2] = ACTIONS(2120), - [anon_sym_starts_DASHwith2] = ACTIONS(2120), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2120), - [anon_sym_ends_DASHwith2] = ACTIONS(2120), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2120), - [anon_sym_EQ_EQ2] = ACTIONS(2120), - [anon_sym_BANG_EQ2] = ACTIONS(2120), - [anon_sym_LT2] = ACTIONS(2122), - [anon_sym_LT_EQ2] = ACTIONS(2120), - [anon_sym_GT_EQ2] = ACTIONS(2120), - [anon_sym_EQ_TILDE2] = ACTIONS(2120), - [anon_sym_BANG_TILDE2] = ACTIONS(2120), - [anon_sym_like2] = ACTIONS(2120), - [anon_sym_not_DASHlike2] = ACTIONS(2120), - [anon_sym_LPAREN2] = ACTIONS(2120), - [anon_sym_STAR_STAR2] = ACTIONS(2120), - [anon_sym_PLUS_PLUS2] = ACTIONS(2120), - [anon_sym_SLASH2] = ACTIONS(2122), - [anon_sym_mod2] = ACTIONS(2120), - [anon_sym_SLASH_SLASH2] = ACTIONS(2120), - [anon_sym_PLUS2] = ACTIONS(2122), - [anon_sym_bit_DASHshl2] = ACTIONS(2120), - [anon_sym_bit_DASHshr2] = ACTIONS(2120), - [anon_sym_bit_DASHand2] = ACTIONS(2120), - [anon_sym_bit_DASHxor2] = ACTIONS(2120), - [anon_sym_bit_DASHor2] = ACTIONS(2120), - [anon_sym_err_GT] = ACTIONS(2122), - [anon_sym_out_GT] = ACTIONS(2122), - [anon_sym_e_GT] = ACTIONS(2122), - [anon_sym_o_GT] = ACTIONS(2122), - [anon_sym_err_PLUSout_GT] = ACTIONS(2122), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2122), - [anon_sym_o_PLUSe_GT] = ACTIONS(2122), - [anon_sym_e_PLUSo_GT] = ACTIONS(2122), - [anon_sym_err_GT_GT] = ACTIONS(2120), - [anon_sym_out_GT_GT] = ACTIONS(2120), - [anon_sym_e_GT_GT] = ACTIONS(2120), - [anon_sym_o_GT_GT] = ACTIONS(2120), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2120), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2120), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2120), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2120), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1206)] = { - [aux_sym__repeat_newline] = STATE(1227), - [sym_comment] = STATE(1206), - [anon_sym_in] = ACTIONS(2832), - [sym__newline] = ACTIONS(2864), - [anon_sym_SEMI] = ACTIONS(2676), - [anon_sym_PIPE] = ACTIONS(2676), - [anon_sym_err_GT_PIPE] = ACTIONS(2676), - [anon_sym_out_GT_PIPE] = ACTIONS(2676), - [anon_sym_e_GT_PIPE] = ACTIONS(2676), - [anon_sym_o_GT_PIPE] = ACTIONS(2676), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), - [anon_sym_RPAREN] = ACTIONS(2676), - [anon_sym_GT2] = ACTIONS(2836), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2676), - [anon_sym_xor2] = ACTIONS(2676), - [anon_sym_or2] = ACTIONS(2676), - [anon_sym_not_DASHin2] = ACTIONS(2832), - [anon_sym_has2] = ACTIONS(2832), - [anon_sym_not_DASHhas2] = ACTIONS(2832), - [anon_sym_starts_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), - [anon_sym_ends_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), - [anon_sym_EQ_EQ2] = ACTIONS(2846), - [anon_sym_BANG_EQ2] = ACTIONS(2846), - [anon_sym_LT2] = ACTIONS(2836), - [anon_sym_LT_EQ2] = ACTIONS(2846), - [anon_sym_GT_EQ2] = ACTIONS(2846), - [anon_sym_EQ_TILDE2] = ACTIONS(2848), - [anon_sym_BANG_TILDE2] = ACTIONS(2848), - [anon_sym_like2] = ACTIONS(2848), - [anon_sym_not_DASHlike2] = ACTIONS(2848), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2676), - [anon_sym_err_GT] = ACTIONS(2678), - [anon_sym_out_GT] = ACTIONS(2678), - [anon_sym_e_GT] = ACTIONS(2678), - [anon_sym_o_GT] = ACTIONS(2678), - [anon_sym_err_PLUSout_GT] = ACTIONS(2678), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), - [anon_sym_o_PLUSe_GT] = ACTIONS(2678), - [anon_sym_e_PLUSo_GT] = ACTIONS(2678), - [anon_sym_err_GT_GT] = ACTIONS(2676), - [anon_sym_out_GT_GT] = ACTIONS(2676), - [anon_sym_e_GT_GT] = ACTIONS(2676), - [anon_sym_o_GT_GT] = ACTIONS(2676), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [STATE(1215)] = { + [sym_comment] = STATE(1215), + [anon_sym_in] = ACTIONS(2509), + [sym__newline] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_err_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_GT_PIPE] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2509), + [anon_sym_RPAREN] = ACTIONS(2509), + [anon_sym_GT2] = ACTIONS(2511), + [anon_sym_DASH2] = ACTIONS(2909), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_STAR2] = ACTIONS(2911), + [anon_sym_and2] = ACTIONS(2509), + [anon_sym_xor2] = ACTIONS(2509), + [anon_sym_or2] = ACTIONS(2509), + [anon_sym_not_DASHin2] = ACTIONS(2509), + [anon_sym_has2] = ACTIONS(2509), + [anon_sym_not_DASHhas2] = ACTIONS(2509), + [anon_sym_starts_DASHwith2] = ACTIONS(2509), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2509), + [anon_sym_ends_DASHwith2] = ACTIONS(2509), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2509), + [anon_sym_EQ_EQ2] = ACTIONS(2509), + [anon_sym_BANG_EQ2] = ACTIONS(2509), + [anon_sym_LT2] = ACTIONS(2511), + [anon_sym_LT_EQ2] = ACTIONS(2509), + [anon_sym_GT_EQ2] = ACTIONS(2509), + [anon_sym_EQ_TILDE2] = ACTIONS(2509), + [anon_sym_BANG_TILDE2] = ACTIONS(2509), + [anon_sym_like2] = ACTIONS(2509), + [anon_sym_not_DASHlike2] = ACTIONS(2509), + [anon_sym_STAR_STAR2] = ACTIONS(2915), + [anon_sym_PLUS_PLUS2] = ACTIONS(2915), + [anon_sym_SLASH2] = ACTIONS(2911), + [anon_sym_mod2] = ACTIONS(2917), + [anon_sym_SLASH_SLASH2] = ACTIONS(2917), + [anon_sym_PLUS2] = ACTIONS(2919), + [anon_sym_bit_DASHshl2] = ACTIONS(2921), + [anon_sym_bit_DASHshr2] = ACTIONS(2921), + [anon_sym_bit_DASHand2] = ACTIONS(2509), + [anon_sym_bit_DASHxor2] = ACTIONS(2509), + [anon_sym_bit_DASHor2] = ACTIONS(2509), + [anon_sym_err_GT] = ACTIONS(2511), + [anon_sym_out_GT] = ACTIONS(2511), + [anon_sym_e_GT] = ACTIONS(2511), + [anon_sym_o_GT] = ACTIONS(2511), + [anon_sym_err_PLUSout_GT] = ACTIONS(2511), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2511), + [anon_sym_o_PLUSe_GT] = ACTIONS(2511), + [anon_sym_e_PLUSo_GT] = ACTIONS(2511), + [anon_sym_err_GT_GT] = ACTIONS(2509), + [anon_sym_out_GT_GT] = ACTIONS(2509), + [anon_sym_e_GT_GT] = ACTIONS(2509), + [anon_sym_o_GT_GT] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2509), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1207)] = { - [sym_comment] = STATE(1207), + [STATE(1216)] = { + [aux_sym__repeat_newline] = STATE(1166), + [sym_comment] = STATE(1216), [anon_sym_in] = ACTIONS(2780), - [sym__newline] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [anon_sym_PIPE] = ACTIONS(2547), - [anon_sym_err_GT_PIPE] = ACTIONS(2547), - [anon_sym_out_GT_PIPE] = ACTIONS(2547), - [anon_sym_e_GT_PIPE] = ACTIONS(2547), - [anon_sym_o_GT_PIPE] = ACTIONS(2547), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2547), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2547), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2547), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2547), - [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_GT2] = ACTIONS(2782), - [anon_sym_DASH2] = ACTIONS(2784), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_STAR2] = ACTIONS(2786), - [anon_sym_and2] = ACTIONS(2547), - [anon_sym_xor2] = ACTIONS(2547), - [anon_sym_or2] = ACTIONS(2547), + [sym__newline] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2662), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), [anon_sym_not_DASHin2] = ACTIONS(2780), [anon_sym_has2] = ACTIONS(2780), [anon_sym_not_DASHhas2] = ACTIONS(2780), @@ -135656,317 +136294,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), [anon_sym_ends_DASHwith2] = ACTIONS(2780), [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), - [anon_sym_EQ_EQ2] = ACTIONS(2788), - [anon_sym_BANG_EQ2] = ACTIONS(2788), - [anon_sym_LT2] = ACTIONS(2782), - [anon_sym_LT_EQ2] = ACTIONS(2788), - [anon_sym_GT_EQ2] = ACTIONS(2788), - [anon_sym_EQ_TILDE2] = ACTIONS(2790), - [anon_sym_BANG_TILDE2] = ACTIONS(2790), - [anon_sym_like2] = ACTIONS(2790), - [anon_sym_not_DASHlike2] = ACTIONS(2790), - [anon_sym_STAR_STAR2] = ACTIONS(2792), - [anon_sym_PLUS_PLUS2] = ACTIONS(2792), - [anon_sym_SLASH2] = ACTIONS(2786), - [anon_sym_mod2] = ACTIONS(2794), - [anon_sym_SLASH_SLASH2] = ACTIONS(2794), - [anon_sym_PLUS2] = ACTIONS(2796), - [anon_sym_bit_DASHshl2] = ACTIONS(2798), - [anon_sym_bit_DASHshr2] = ACTIONS(2798), - [anon_sym_bit_DASHand2] = ACTIONS(2547), - [anon_sym_bit_DASHxor2] = ACTIONS(2547), - [anon_sym_bit_DASHor2] = ACTIONS(2547), - [anon_sym_err_GT] = ACTIONS(2549), - [anon_sym_out_GT] = ACTIONS(2549), - [anon_sym_e_GT] = ACTIONS(2549), - [anon_sym_o_GT] = ACTIONS(2549), - [anon_sym_err_PLUSout_GT] = ACTIONS(2549), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2549), - [anon_sym_o_PLUSe_GT] = ACTIONS(2549), - [anon_sym_e_PLUSo_GT] = ACTIONS(2549), - [anon_sym_err_GT_GT] = ACTIONS(2547), - [anon_sym_out_GT_GT] = ACTIONS(2547), - [anon_sym_e_GT_GT] = ACTIONS(2547), - [anon_sym_o_GT_GT] = ACTIONS(2547), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2547), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2547), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2547), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2547), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2662), + [anon_sym_BANG_TILDE2] = ACTIONS(2662), + [anon_sym_like2] = ACTIONS(2662), + [anon_sym_not_DASHlike2] = ACTIONS(2662), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2662), + [anon_sym_bit_DASHxor2] = ACTIONS(2662), + [anon_sym_bit_DASHor2] = ACTIONS(2662), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1208)] = { - [aux_sym__repeat_newline] = STATE(1160), - [sym_comment] = STATE(1208), - [anon_sym_in] = ACTIONS(2684), - [sym__newline] = ACTIONS(2870), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_err_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_GT_PIPE] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2684), - [anon_sym_GT2] = ACTIONS(2686), - [anon_sym_DASH2] = ACTIONS(2684), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2684), - [anon_sym_xor2] = ACTIONS(2684), - [anon_sym_or2] = ACTIONS(2684), - [anon_sym_not_DASHin2] = ACTIONS(2684), - [anon_sym_has2] = ACTIONS(2684), - [anon_sym_not_DASHhas2] = ACTIONS(2684), - [anon_sym_starts_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2684), - [anon_sym_ends_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2684), - [anon_sym_EQ_EQ2] = ACTIONS(2684), - [anon_sym_BANG_EQ2] = ACTIONS(2684), - [anon_sym_LT2] = ACTIONS(2686), - [anon_sym_LT_EQ2] = ACTIONS(2684), - [anon_sym_GT_EQ2] = ACTIONS(2684), - [anon_sym_EQ_TILDE2] = ACTIONS(2684), - [anon_sym_BANG_TILDE2] = ACTIONS(2684), - [anon_sym_like2] = ACTIONS(2684), - [anon_sym_not_DASHlike2] = ACTIONS(2684), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2686), - [anon_sym_bit_DASHshl2] = ACTIONS(2684), - [anon_sym_bit_DASHshr2] = ACTIONS(2684), - [anon_sym_bit_DASHand2] = ACTIONS(2684), - [anon_sym_bit_DASHxor2] = ACTIONS(2684), - [anon_sym_bit_DASHor2] = ACTIONS(2684), - [anon_sym_err_GT] = ACTIONS(2686), - [anon_sym_out_GT] = ACTIONS(2686), - [anon_sym_e_GT] = ACTIONS(2686), - [anon_sym_o_GT] = ACTIONS(2686), - [anon_sym_err_PLUSout_GT] = ACTIONS(2686), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), - [anon_sym_o_PLUSe_GT] = ACTIONS(2686), - [anon_sym_e_PLUSo_GT] = ACTIONS(2686), - [anon_sym_err_GT_GT] = ACTIONS(2684), - [anon_sym_out_GT_GT] = ACTIONS(2684), - [anon_sym_e_GT_GT] = ACTIONS(2684), - [anon_sym_o_GT_GT] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), + [STATE(1217)] = { + [sym_comment] = STATE(1217), + [anon_sym_in] = ACTIONS(2509), + [sym__newline] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_err_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_GT_PIPE] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2509), + [anon_sym_RPAREN] = ACTIONS(2509), + [anon_sym_GT2] = ACTIONS(2511), + [anon_sym_DASH2] = ACTIONS(2509), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_STAR2] = ACTIONS(2911), + [anon_sym_and2] = ACTIONS(2509), + [anon_sym_xor2] = ACTIONS(2509), + [anon_sym_or2] = ACTIONS(2509), + [anon_sym_not_DASHin2] = ACTIONS(2509), + [anon_sym_has2] = ACTIONS(2509), + [anon_sym_not_DASHhas2] = ACTIONS(2509), + [anon_sym_starts_DASHwith2] = ACTIONS(2509), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2509), + [anon_sym_ends_DASHwith2] = ACTIONS(2509), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2509), + [anon_sym_EQ_EQ2] = ACTIONS(2509), + [anon_sym_BANG_EQ2] = ACTIONS(2509), + [anon_sym_LT2] = ACTIONS(2511), + [anon_sym_LT_EQ2] = ACTIONS(2509), + [anon_sym_GT_EQ2] = ACTIONS(2509), + [anon_sym_EQ_TILDE2] = ACTIONS(2509), + [anon_sym_BANG_TILDE2] = ACTIONS(2509), + [anon_sym_like2] = ACTIONS(2509), + [anon_sym_not_DASHlike2] = ACTIONS(2509), + [anon_sym_STAR_STAR2] = ACTIONS(2915), + [anon_sym_PLUS_PLUS2] = ACTIONS(2915), + [anon_sym_SLASH2] = ACTIONS(2911), + [anon_sym_mod2] = ACTIONS(2917), + [anon_sym_SLASH_SLASH2] = ACTIONS(2917), + [anon_sym_PLUS2] = ACTIONS(2511), + [anon_sym_bit_DASHshl2] = ACTIONS(2509), + [anon_sym_bit_DASHshr2] = ACTIONS(2509), + [anon_sym_bit_DASHand2] = ACTIONS(2509), + [anon_sym_bit_DASHxor2] = ACTIONS(2509), + [anon_sym_bit_DASHor2] = ACTIONS(2509), + [anon_sym_err_GT] = ACTIONS(2511), + [anon_sym_out_GT] = ACTIONS(2511), + [anon_sym_e_GT] = ACTIONS(2511), + [anon_sym_o_GT] = ACTIONS(2511), + [anon_sym_err_PLUSout_GT] = ACTIONS(2511), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2511), + [anon_sym_o_PLUSe_GT] = ACTIONS(2511), + [anon_sym_e_PLUSo_GT] = ACTIONS(2511), + [anon_sym_err_GT_GT] = ACTIONS(2509), + [anon_sym_out_GT_GT] = ACTIONS(2509), + [anon_sym_e_GT_GT] = ACTIONS(2509), + [anon_sym_o_GT_GT] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2509), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1209)] = { - [aux_sym__repeat_newline] = STATE(1243), - [sym_comment] = STATE(1209), - [anon_sym_in] = ACTIONS(2768), - [sym__newline] = ACTIONS(2867), - [anon_sym_SEMI] = ACTIONS(2768), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_err_GT_PIPE] = ACTIONS(2768), - [anon_sym_out_GT_PIPE] = ACTIONS(2768), - [anon_sym_e_GT_PIPE] = ACTIONS(2768), - [anon_sym_o_GT_PIPE] = ACTIONS(2768), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2768), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2768), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2768), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2768), - [anon_sym_RPAREN] = ACTIONS(2768), - [anon_sym_GT2] = ACTIONS(2770), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2768), - [anon_sym_xor2] = ACTIONS(2768), - [anon_sym_or2] = ACTIONS(2768), - [anon_sym_not_DASHin2] = ACTIONS(2768), - [anon_sym_has2] = ACTIONS(2768), - [anon_sym_not_DASHhas2] = ACTIONS(2768), - [anon_sym_starts_DASHwith2] = ACTIONS(2768), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2768), - [anon_sym_ends_DASHwith2] = ACTIONS(2768), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2768), - [anon_sym_EQ_EQ2] = ACTIONS(2768), - [anon_sym_BANG_EQ2] = ACTIONS(2768), - [anon_sym_LT2] = ACTIONS(2770), - [anon_sym_LT_EQ2] = ACTIONS(2768), - [anon_sym_GT_EQ2] = ACTIONS(2768), - [anon_sym_EQ_TILDE2] = ACTIONS(2768), - [anon_sym_BANG_TILDE2] = ACTIONS(2768), - [anon_sym_like2] = ACTIONS(2768), - [anon_sym_not_DASHlike2] = ACTIONS(2768), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2768), - [anon_sym_bit_DASHshr2] = ACTIONS(2768), - [anon_sym_bit_DASHand2] = ACTIONS(2768), - [anon_sym_bit_DASHxor2] = ACTIONS(2768), - [anon_sym_bit_DASHor2] = ACTIONS(2768), - [anon_sym_err_GT] = ACTIONS(2770), - [anon_sym_out_GT] = ACTIONS(2770), - [anon_sym_e_GT] = ACTIONS(2770), - [anon_sym_o_GT] = ACTIONS(2770), - [anon_sym_err_PLUSout_GT] = ACTIONS(2770), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2770), - [anon_sym_o_PLUSe_GT] = ACTIONS(2770), - [anon_sym_e_PLUSo_GT] = ACTIONS(2770), - [anon_sym_err_GT_GT] = ACTIONS(2768), - [anon_sym_out_GT_GT] = ACTIONS(2768), - [anon_sym_e_GT_GT] = ACTIONS(2768), - [anon_sym_o_GT_GT] = ACTIONS(2768), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2768), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2768), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2768), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2768), + [STATE(1218)] = { + [aux_sym__repeat_newline] = STATE(1177), + [sym_comment] = STATE(1218), + [anon_sym_in] = ACTIONS(2772), + [sym__newline] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_err_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_GT_PIPE] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_GT2] = ACTIONS(2774), + [anon_sym_DASH2] = ACTIONS(2772), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2772), + [anon_sym_xor2] = ACTIONS(2772), + [anon_sym_or2] = ACTIONS(2772), + [anon_sym_not_DASHin2] = ACTIONS(2772), + [anon_sym_has2] = ACTIONS(2772), + [anon_sym_not_DASHhas2] = ACTIONS(2772), + [anon_sym_starts_DASHwith2] = ACTIONS(2772), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2772), + [anon_sym_ends_DASHwith2] = ACTIONS(2772), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2772), + [anon_sym_EQ_EQ2] = ACTIONS(2772), + [anon_sym_BANG_EQ2] = ACTIONS(2772), + [anon_sym_LT2] = ACTIONS(2774), + [anon_sym_LT_EQ2] = ACTIONS(2772), + [anon_sym_GT_EQ2] = ACTIONS(2772), + [anon_sym_EQ_TILDE2] = ACTIONS(2772), + [anon_sym_BANG_TILDE2] = ACTIONS(2772), + [anon_sym_like2] = ACTIONS(2772), + [anon_sym_not_DASHlike2] = ACTIONS(2772), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2774), + [anon_sym_bit_DASHshl2] = ACTIONS(2772), + [anon_sym_bit_DASHshr2] = ACTIONS(2772), + [anon_sym_bit_DASHand2] = ACTIONS(2772), + [anon_sym_bit_DASHxor2] = ACTIONS(2772), + [anon_sym_bit_DASHor2] = ACTIONS(2772), + [anon_sym_err_GT] = ACTIONS(2774), + [anon_sym_out_GT] = ACTIONS(2774), + [anon_sym_e_GT] = ACTIONS(2774), + [anon_sym_o_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT] = ACTIONS(2774), + [anon_sym_err_GT_GT] = ACTIONS(2772), + [anon_sym_out_GT_GT] = ACTIONS(2772), + [anon_sym_e_GT_GT] = ACTIONS(2772), + [anon_sym_o_GT_GT] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1210)] = { - [aux_sym__repeat_newline] = STATE(1131), - [sym_comment] = STATE(1210), - [anon_sym_in] = ACTIONS(2832), - [sym__newline] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2666), - [anon_sym_PIPE] = ACTIONS(2666), - [anon_sym_err_GT_PIPE] = ACTIONS(2666), - [anon_sym_out_GT_PIPE] = ACTIONS(2666), - [anon_sym_e_GT_PIPE] = ACTIONS(2666), - [anon_sym_o_GT_PIPE] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), - [anon_sym_RPAREN] = ACTIONS(2666), - [anon_sym_GT2] = ACTIONS(2836), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2842), - [anon_sym_xor2] = ACTIONS(2666), - [anon_sym_or2] = ACTIONS(2666), - [anon_sym_not_DASHin2] = ACTIONS(2832), - [anon_sym_has2] = ACTIONS(2832), - [anon_sym_not_DASHhas2] = ACTIONS(2832), - [anon_sym_starts_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), - [anon_sym_ends_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), - [anon_sym_EQ_EQ2] = ACTIONS(2846), - [anon_sym_BANG_EQ2] = ACTIONS(2846), - [anon_sym_LT2] = ACTIONS(2836), - [anon_sym_LT_EQ2] = ACTIONS(2846), - [anon_sym_GT_EQ2] = ACTIONS(2846), - [anon_sym_EQ_TILDE2] = ACTIONS(2848), - [anon_sym_BANG_TILDE2] = ACTIONS(2848), - [anon_sym_like2] = ACTIONS(2848), - [anon_sym_not_DASHlike2] = ACTIONS(2848), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2668), - [anon_sym_out_GT] = ACTIONS(2668), - [anon_sym_e_GT] = ACTIONS(2668), - [anon_sym_o_GT] = ACTIONS(2668), - [anon_sym_err_PLUSout_GT] = ACTIONS(2668), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), - [anon_sym_o_PLUSe_GT] = ACTIONS(2668), - [anon_sym_e_PLUSo_GT] = ACTIONS(2668), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), + [STATE(1219)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1219), + [anon_sym_in] = ACTIONS(2732), + [sym__newline] = ACTIONS(2732), + [anon_sym_SEMI] = ACTIONS(2732), + [anon_sym_PIPE] = ACTIONS(2732), + [anon_sym_err_GT_PIPE] = ACTIONS(2732), + [anon_sym_out_GT_PIPE] = ACTIONS(2732), + [anon_sym_e_GT_PIPE] = ACTIONS(2732), + [anon_sym_o_GT_PIPE] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), + [anon_sym_RPAREN] = ACTIONS(2732), + [anon_sym_GT2] = ACTIONS(2734), + [anon_sym_DASH2] = ACTIONS(2732), + [anon_sym_STAR2] = ACTIONS(2734), + [anon_sym_and2] = ACTIONS(2732), + [anon_sym_xor2] = ACTIONS(2732), + [anon_sym_or2] = ACTIONS(2732), + [anon_sym_not_DASHin2] = ACTIONS(2732), + [anon_sym_has2] = ACTIONS(2732), + [anon_sym_not_DASHhas2] = ACTIONS(2732), + [anon_sym_starts_DASHwith2] = ACTIONS(2732), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2732), + [anon_sym_ends_DASHwith2] = ACTIONS(2732), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2732), + [anon_sym_EQ_EQ2] = ACTIONS(2732), + [anon_sym_BANG_EQ2] = ACTIONS(2732), + [anon_sym_LT2] = ACTIONS(2734), + [anon_sym_LT_EQ2] = ACTIONS(2732), + [anon_sym_GT_EQ2] = ACTIONS(2732), + [anon_sym_EQ_TILDE2] = ACTIONS(2732), + [anon_sym_BANG_TILDE2] = ACTIONS(2732), + [anon_sym_like2] = ACTIONS(2732), + [anon_sym_not_DASHlike2] = ACTIONS(2732), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2734), + [anon_sym_mod2] = ACTIONS(2732), + [anon_sym_SLASH_SLASH2] = ACTIONS(2732), + [anon_sym_PLUS2] = ACTIONS(2734), + [anon_sym_bit_DASHshl2] = ACTIONS(2732), + [anon_sym_bit_DASHshr2] = ACTIONS(2732), + [anon_sym_bit_DASHand2] = ACTIONS(2732), + [anon_sym_bit_DASHxor2] = ACTIONS(2732), + [anon_sym_bit_DASHor2] = ACTIONS(2732), + [anon_sym_err_GT] = ACTIONS(2734), + [anon_sym_out_GT] = ACTIONS(2734), + [anon_sym_e_GT] = ACTIONS(2734), + [anon_sym_o_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT] = ACTIONS(2734), + [anon_sym_err_GT_GT] = ACTIONS(2732), + [anon_sym_out_GT_GT] = ACTIONS(2732), + [anon_sym_e_GT_GT] = ACTIONS(2732), + [anon_sym_o_GT_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1211)] = { + [STATE(1220)] = { [aux_sym__repeat_newline] = STATE(1184), - [sym_comment] = STATE(1211), - [anon_sym_in] = ACTIONS(2684), - [sym__newline] = ACTIONS(2870), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_err_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_GT_PIPE] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2684), - [anon_sym_GT2] = ACTIONS(2686), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2684), - [anon_sym_xor2] = ACTIONS(2684), - [anon_sym_or2] = ACTIONS(2684), - [anon_sym_not_DASHin2] = ACTIONS(2684), - [anon_sym_has2] = ACTIONS(2684), - [anon_sym_not_DASHhas2] = ACTIONS(2684), - [anon_sym_starts_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2684), - [anon_sym_ends_DASHwith2] = ACTIONS(2684), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2684), - [anon_sym_EQ_EQ2] = ACTIONS(2684), - [anon_sym_BANG_EQ2] = ACTIONS(2684), - [anon_sym_LT2] = ACTIONS(2686), - [anon_sym_LT_EQ2] = ACTIONS(2684), - [anon_sym_GT_EQ2] = ACTIONS(2684), - [anon_sym_EQ_TILDE2] = ACTIONS(2684), - [anon_sym_BANG_TILDE2] = ACTIONS(2684), - [anon_sym_like2] = ACTIONS(2684), - [anon_sym_not_DASHlike2] = ACTIONS(2684), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2684), - [anon_sym_bit_DASHshr2] = ACTIONS(2684), - [anon_sym_bit_DASHand2] = ACTIONS(2684), - [anon_sym_bit_DASHxor2] = ACTIONS(2684), - [anon_sym_bit_DASHor2] = ACTIONS(2684), - [anon_sym_err_GT] = ACTIONS(2686), - [anon_sym_out_GT] = ACTIONS(2686), - [anon_sym_e_GT] = ACTIONS(2686), - [anon_sym_o_GT] = ACTIONS(2686), - [anon_sym_err_PLUSout_GT] = ACTIONS(2686), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), - [anon_sym_o_PLUSe_GT] = ACTIONS(2686), - [anon_sym_e_PLUSo_GT] = ACTIONS(2686), - [anon_sym_err_GT_GT] = ACTIONS(2684), - [anon_sym_out_GT_GT] = ACTIONS(2684), - [anon_sym_e_GT_GT] = ACTIONS(2684), - [anon_sym_o_GT_GT] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1212)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1212), + [sym_comment] = STATE(1220), [anon_sym_in] = ACTIONS(2772), - [sym__newline] = ACTIONS(2772), + [sym__newline] = ACTIONS(2782), [anon_sym_SEMI] = ACTIONS(2772), [anon_sym_PIPE] = ACTIONS(2772), [anon_sym_err_GT_PIPE] = ACTIONS(2772), @@ -135979,8 +136550,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), [anon_sym_RPAREN] = ACTIONS(2772), [anon_sym_GT2] = ACTIONS(2774), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_DASH2] = ACTIONS(2772), + [anon_sym_STAR2] = ACTIONS(2774), [anon_sym_and2] = ACTIONS(2772), [anon_sym_xor2] = ACTIONS(2772), [anon_sym_or2] = ACTIONS(2772), @@ -136000,12 +136571,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2772), [anon_sym_like2] = ACTIONS(2772), [anon_sym_not_DASHlike2] = ACTIONS(2772), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2774), + [anon_sym_mod2] = ACTIONS(2772), + [anon_sym_SLASH_SLASH2] = ACTIONS(2772), + [anon_sym_PLUS2] = ACTIONS(2774), [anon_sym_bit_DASHshl2] = ACTIONS(2772), [anon_sym_bit_DASHshr2] = ACTIONS(2772), [anon_sym_bit_DASHand2] = ACTIONS(2772), @@ -136029,279 +136600,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1213)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1213), - [anon_sym_in] = ACTIONS(2804), - [sym__newline] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym_PIPE] = ACTIONS(2776), - [anon_sym_err_GT_PIPE] = ACTIONS(2776), - [anon_sym_out_GT_PIPE] = ACTIONS(2776), - [anon_sym_e_GT_PIPE] = ACTIONS(2776), - [anon_sym_o_GT_PIPE] = ACTIONS(2776), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), - [anon_sym_RPAREN] = ACTIONS(2776), - [anon_sym_GT2] = ACTIONS(2806), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2776), - [anon_sym_xor2] = ACTIONS(2776), - [anon_sym_or2] = ACTIONS(2776), - [anon_sym_not_DASHin2] = ACTIONS(2804), - [anon_sym_has2] = ACTIONS(2804), - [anon_sym_not_DASHhas2] = ACTIONS(2804), - [anon_sym_starts_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), - [anon_sym_ends_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2806), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2776), - [anon_sym_err_GT] = ACTIONS(2778), - [anon_sym_out_GT] = ACTIONS(2778), - [anon_sym_e_GT] = ACTIONS(2778), - [anon_sym_o_GT] = ACTIONS(2778), - [anon_sym_err_PLUSout_GT] = ACTIONS(2778), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2778), - [anon_sym_o_PLUSe_GT] = ACTIONS(2778), - [anon_sym_e_PLUSo_GT] = ACTIONS(2778), - [anon_sym_err_GT_GT] = ACTIONS(2776), - [anon_sym_out_GT_GT] = ACTIONS(2776), - [anon_sym_e_GT_GT] = ACTIONS(2776), - [anon_sym_o_GT_GT] = ACTIONS(2776), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1214)] = { - [aux_sym__repeat_newline] = STATE(1248), - [sym_comment] = STATE(1214), - [anon_sym_in] = ACTIONS(2832), - [sym__newline] = ACTIONS(2867), - [anon_sym_SEMI] = ACTIONS(2768), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_err_GT_PIPE] = ACTIONS(2768), - [anon_sym_out_GT_PIPE] = ACTIONS(2768), - [anon_sym_e_GT_PIPE] = ACTIONS(2768), - [anon_sym_o_GT_PIPE] = ACTIONS(2768), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2768), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2768), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2768), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2768), - [anon_sym_RPAREN] = ACTIONS(2768), - [anon_sym_GT2] = ACTIONS(2836), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2768), - [anon_sym_xor2] = ACTIONS(2768), - [anon_sym_or2] = ACTIONS(2768), - [anon_sym_not_DASHin2] = ACTIONS(2832), - [anon_sym_has2] = ACTIONS(2832), - [anon_sym_not_DASHhas2] = ACTIONS(2832), - [anon_sym_starts_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), - [anon_sym_ends_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), - [anon_sym_EQ_EQ2] = ACTIONS(2846), - [anon_sym_BANG_EQ2] = ACTIONS(2846), - [anon_sym_LT2] = ACTIONS(2836), - [anon_sym_LT_EQ2] = ACTIONS(2846), - [anon_sym_GT_EQ2] = ACTIONS(2846), - [anon_sym_EQ_TILDE2] = ACTIONS(2848), - [anon_sym_BANG_TILDE2] = ACTIONS(2848), - [anon_sym_like2] = ACTIONS(2848), - [anon_sym_not_DASHlike2] = ACTIONS(2848), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), - [anon_sym_bit_DASHand2] = ACTIONS(2768), - [anon_sym_bit_DASHxor2] = ACTIONS(2768), - [anon_sym_bit_DASHor2] = ACTIONS(2768), - [anon_sym_err_GT] = ACTIONS(2770), - [anon_sym_out_GT] = ACTIONS(2770), - [anon_sym_e_GT] = ACTIONS(2770), - [anon_sym_o_GT] = ACTIONS(2770), - [anon_sym_err_PLUSout_GT] = ACTIONS(2770), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2770), - [anon_sym_o_PLUSe_GT] = ACTIONS(2770), - [anon_sym_e_PLUSo_GT] = ACTIONS(2770), - [anon_sym_err_GT_GT] = ACTIONS(2768), - [anon_sym_out_GT_GT] = ACTIONS(2768), - [anon_sym_e_GT_GT] = ACTIONS(2768), - [anon_sym_o_GT_GT] = ACTIONS(2768), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2768), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2768), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2768), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2768), + [STATE(1221)] = { + [sym_comment] = STATE(1221), + [anon_sym_in] = ACTIONS(2509), + [sym__newline] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_err_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_GT_PIPE] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2509), + [anon_sym_RPAREN] = ACTIONS(2509), + [anon_sym_GT2] = ACTIONS(2511), + [anon_sym_DASH2] = ACTIONS(2509), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_STAR2] = ACTIONS(2511), + [anon_sym_and2] = ACTIONS(2509), + [anon_sym_xor2] = ACTIONS(2509), + [anon_sym_or2] = ACTIONS(2509), + [anon_sym_not_DASHin2] = ACTIONS(2509), + [anon_sym_has2] = ACTIONS(2509), + [anon_sym_not_DASHhas2] = ACTIONS(2509), + [anon_sym_starts_DASHwith2] = ACTIONS(2509), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2509), + [anon_sym_ends_DASHwith2] = ACTIONS(2509), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2509), + [anon_sym_EQ_EQ2] = ACTIONS(2509), + [anon_sym_BANG_EQ2] = ACTIONS(2509), + [anon_sym_LT2] = ACTIONS(2511), + [anon_sym_LT_EQ2] = ACTIONS(2509), + [anon_sym_GT_EQ2] = ACTIONS(2509), + [anon_sym_EQ_TILDE2] = ACTIONS(2509), + [anon_sym_BANG_TILDE2] = ACTIONS(2509), + [anon_sym_like2] = ACTIONS(2509), + [anon_sym_not_DASHlike2] = ACTIONS(2509), + [anon_sym_STAR_STAR2] = ACTIONS(2915), + [anon_sym_PLUS_PLUS2] = ACTIONS(2915), + [anon_sym_SLASH2] = ACTIONS(2511), + [anon_sym_mod2] = ACTIONS(2509), + [anon_sym_SLASH_SLASH2] = ACTIONS(2509), + [anon_sym_PLUS2] = ACTIONS(2511), + [anon_sym_bit_DASHshl2] = ACTIONS(2509), + [anon_sym_bit_DASHshr2] = ACTIONS(2509), + [anon_sym_bit_DASHand2] = ACTIONS(2509), + [anon_sym_bit_DASHxor2] = ACTIONS(2509), + [anon_sym_bit_DASHor2] = ACTIONS(2509), + [anon_sym_err_GT] = ACTIONS(2511), + [anon_sym_out_GT] = ACTIONS(2511), + [anon_sym_e_GT] = ACTIONS(2511), + [anon_sym_o_GT] = ACTIONS(2511), + [anon_sym_err_PLUSout_GT] = ACTIONS(2511), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2511), + [anon_sym_o_PLUSe_GT] = ACTIONS(2511), + [anon_sym_e_PLUSo_GT] = ACTIONS(2511), + [anon_sym_err_GT_GT] = ACTIONS(2509), + [anon_sym_out_GT_GT] = ACTIONS(2509), + [anon_sym_e_GT_GT] = ACTIONS(2509), + [anon_sym_o_GT_GT] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2509), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1215)] = { - [sym_comment] = STATE(1215), - [anon_sym_in] = ACTIONS(1689), - [sym__newline] = ACTIONS(1689), - [anon_sym_SEMI] = ACTIONS(1689), - [anon_sym_PIPE] = ACTIONS(1689), - [anon_sym_err_GT_PIPE] = ACTIONS(1689), - [anon_sym_out_GT_PIPE] = ACTIONS(1689), - [anon_sym_e_GT_PIPE] = ACTIONS(1689), - [anon_sym_o_GT_PIPE] = ACTIONS(1689), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1689), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1689), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1689), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1689), - [anon_sym_GT2] = ACTIONS(1615), - [anon_sym_DASH2] = ACTIONS(1689), - [anon_sym_RBRACE] = ACTIONS(1689), - [anon_sym_STAR2] = ACTIONS(1615), - [anon_sym_and2] = ACTIONS(1689), - [anon_sym_xor2] = ACTIONS(1689), - [anon_sym_or2] = ACTIONS(1689), - [anon_sym_not_DASHin2] = ACTIONS(1689), - [anon_sym_has2] = ACTIONS(1689), - [anon_sym_not_DASHhas2] = ACTIONS(1689), - [anon_sym_starts_DASHwith2] = ACTIONS(1689), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(1689), - [anon_sym_ends_DASHwith2] = ACTIONS(1689), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(1689), - [anon_sym_EQ_EQ2] = ACTIONS(1689), - [anon_sym_BANG_EQ2] = ACTIONS(1689), - [anon_sym_LT2] = ACTIONS(1615), - [anon_sym_LT_EQ2] = ACTIONS(1689), - [anon_sym_GT_EQ2] = ACTIONS(1689), - [anon_sym_EQ_TILDE2] = ACTIONS(1689), - [anon_sym_BANG_TILDE2] = ACTIONS(1689), - [anon_sym_like2] = ACTIONS(1689), - [anon_sym_not_DASHlike2] = ACTIONS(1689), - [anon_sym_STAR_STAR2] = ACTIONS(1689), - [anon_sym_PLUS_PLUS2] = ACTIONS(1689), - [anon_sym_SLASH2] = ACTIONS(1615), - [anon_sym_mod2] = ACTIONS(1689), - [anon_sym_SLASH_SLASH2] = ACTIONS(1689), - [anon_sym_PLUS2] = ACTIONS(1615), - [anon_sym_bit_DASHshl2] = ACTIONS(1689), - [anon_sym_bit_DASHshr2] = ACTIONS(1689), - [anon_sym_bit_DASHand2] = ACTIONS(1689), - [anon_sym_bit_DASHxor2] = ACTIONS(1689), - [anon_sym_bit_DASHor2] = ACTIONS(1689), - [anon_sym_COLON2] = ACTIONS(1691), - [anon_sym_err_GT] = ACTIONS(1615), - [anon_sym_out_GT] = ACTIONS(1615), - [anon_sym_e_GT] = ACTIONS(1615), - [anon_sym_o_GT] = ACTIONS(1615), - [anon_sym_err_PLUSout_GT] = ACTIONS(1615), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1615), - [anon_sym_o_PLUSe_GT] = ACTIONS(1615), - [anon_sym_e_PLUSo_GT] = ACTIONS(1615), - [anon_sym_err_GT_GT] = ACTIONS(1689), - [anon_sym_out_GT_GT] = ACTIONS(1689), - [anon_sym_e_GT_GT] = ACTIONS(1689), - [anon_sym_o_GT_GT] = ACTIONS(1689), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1689), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1689), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1689), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1689), + [STATE(1222)] = { + [aux_sym__repeat_newline] = STATE(1192), + [sym_comment] = STATE(1222), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_err_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_GT_PIPE] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2772), + [anon_sym_xor2] = ACTIONS(2772), + [anon_sym_or2] = ACTIONS(2772), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2805), + [anon_sym_bit_DASHor2] = ACTIONS(2901), + [anon_sym_err_GT] = ACTIONS(2774), + [anon_sym_out_GT] = ACTIONS(2774), + [anon_sym_e_GT] = ACTIONS(2774), + [anon_sym_o_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT] = ACTIONS(2774), + [anon_sym_err_GT_GT] = ACTIONS(2772), + [anon_sym_out_GT_GT] = ACTIONS(2772), + [anon_sym_e_GT_GT] = ACTIONS(2772), + [anon_sym_o_GT_GT] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1216)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1216), - [anon_sym_in] = ACTIONS(2804), - [sym__newline] = ACTIONS(2688), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2806), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2688), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2804), - [anon_sym_has2] = ACTIONS(2804), - [anon_sym_not_DASHhas2] = ACTIONS(2804), - [anon_sym_starts_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), - [anon_sym_ends_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2806), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2688), - [anon_sym_bit_DASHor2] = ACTIONS(2688), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), + [STATE(1223)] = { + [sym_comment] = STATE(1223), + [anon_sym_in] = ACTIONS(2925), + [sym__newline] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_err_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_GT_PIPE] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2509), + [anon_sym_RPAREN] = ACTIONS(2509), + [anon_sym_GT2] = ACTIONS(2907), + [anon_sym_DASH2] = ACTIONS(2909), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_STAR2] = ACTIONS(2911), + [anon_sym_and2] = ACTIONS(2509), + [anon_sym_xor2] = ACTIONS(2509), + [anon_sym_or2] = ACTIONS(2509), + [anon_sym_not_DASHin2] = ACTIONS(2925), + [anon_sym_has2] = ACTIONS(2925), + [anon_sym_not_DASHhas2] = ACTIONS(2925), + [anon_sym_starts_DASHwith2] = ACTIONS(2925), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2925), + [anon_sym_ends_DASHwith2] = ACTIONS(2925), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2925), + [anon_sym_EQ_EQ2] = ACTIONS(2913), + [anon_sym_BANG_EQ2] = ACTIONS(2913), + [anon_sym_LT2] = ACTIONS(2907), + [anon_sym_LT_EQ2] = ACTIONS(2913), + [anon_sym_GT_EQ2] = ACTIONS(2913), + [anon_sym_EQ_TILDE2] = ACTIONS(2927), + [anon_sym_BANG_TILDE2] = ACTIONS(2927), + [anon_sym_like2] = ACTIONS(2927), + [anon_sym_not_DASHlike2] = ACTIONS(2927), + [anon_sym_STAR_STAR2] = ACTIONS(2915), + [anon_sym_PLUS_PLUS2] = ACTIONS(2915), + [anon_sym_SLASH2] = ACTIONS(2911), + [anon_sym_mod2] = ACTIONS(2917), + [anon_sym_SLASH_SLASH2] = ACTIONS(2917), + [anon_sym_PLUS2] = ACTIONS(2919), + [anon_sym_bit_DASHshl2] = ACTIONS(2921), + [anon_sym_bit_DASHshr2] = ACTIONS(2921), + [anon_sym_bit_DASHand2] = ACTIONS(2929), + [anon_sym_bit_DASHxor2] = ACTIONS(2931), + [anon_sym_bit_DASHor2] = ACTIONS(2933), + [anon_sym_err_GT] = ACTIONS(2511), + [anon_sym_out_GT] = ACTIONS(2511), + [anon_sym_e_GT] = ACTIONS(2511), + [anon_sym_o_GT] = ACTIONS(2511), + [anon_sym_err_PLUSout_GT] = ACTIONS(2511), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2511), + [anon_sym_o_PLUSe_GT] = ACTIONS(2511), + [anon_sym_e_PLUSo_GT] = ACTIONS(2511), + [anon_sym_err_GT_GT] = ACTIONS(2509), + [anon_sym_out_GT_GT] = ACTIONS(2509), + [anon_sym_e_GT_GT] = ACTIONS(2509), + [anon_sym_o_GT_GT] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2509), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1217)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1217), - [anon_sym_in] = ACTIONS(2804), - [sym__newline] = ACTIONS(2772), + [STATE(1224)] = { + [aux_sym__repeat_newline] = STATE(1197), + [sym_comment] = STATE(1224), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2782), [anon_sym_SEMI] = ACTIONS(2772), [anon_sym_PIPE] = ACTIONS(2772), [anon_sym_err_GT_PIPE] = ACTIONS(2772), @@ -136313,39 +136817,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), [anon_sym_RPAREN] = ACTIONS(2772), - [anon_sym_GT2] = ACTIONS(2806), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2772), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2899), [anon_sym_xor2] = ACTIONS(2772), [anon_sym_or2] = ACTIONS(2772), - [anon_sym_not_DASHin2] = ACTIONS(2804), - [anon_sym_has2] = ACTIONS(2804), - [anon_sym_not_DASHhas2] = ACTIONS(2804), - [anon_sym_starts_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), - [anon_sym_ends_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2806), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2772), - [anon_sym_bit_DASHxor2] = ACTIONS(2772), - [anon_sym_bit_DASHor2] = ACTIONS(2772), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2805), + [anon_sym_bit_DASHor2] = ACTIONS(2901), [anon_sym_err_GT] = ACTIONS(2774), [anon_sym_out_GT] = ACTIONS(2774), [anon_sym_e_GT] = ACTIONS(2774), @@ -136364,11 +136868,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1218)] = { - [aux_sym__repeat_newline] = STATE(1133), - [sym_comment] = STATE(1218), - [anon_sym_in] = ACTIONS(2666), - [sym__newline] = ACTIONS(2875), + [STATE(1225)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1225), + [anon_sym_in] = ACTIONS(2810), + [sym__newline] = ACTIONS(2666), [anon_sym_SEMI] = ACTIONS(2666), [anon_sym_PIPE] = ACTIONS(2666), [anon_sym_err_GT_PIPE] = ACTIONS(2666), @@ -136380,36 +136884,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), [anon_sym_RPAREN] = ACTIONS(2666), - [anon_sym_GT2] = ACTIONS(2668), - [anon_sym_DASH2] = ACTIONS(2666), - [anon_sym_STAR2] = ACTIONS(2840), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), [anon_sym_and2] = ACTIONS(2666), [anon_sym_xor2] = ACTIONS(2666), [anon_sym_or2] = ACTIONS(2666), - [anon_sym_not_DASHin2] = ACTIONS(2666), - [anon_sym_has2] = ACTIONS(2666), - [anon_sym_not_DASHhas2] = ACTIONS(2666), - [anon_sym_starts_DASHwith2] = ACTIONS(2666), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2666), - [anon_sym_ends_DASHwith2] = ACTIONS(2666), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2666), - [anon_sym_EQ_EQ2] = ACTIONS(2666), - [anon_sym_BANG_EQ2] = ACTIONS(2666), - [anon_sym_LT2] = ACTIONS(2668), - [anon_sym_LT_EQ2] = ACTIONS(2666), - [anon_sym_GT_EQ2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2810), + [anon_sym_has2] = ACTIONS(2810), + [anon_sym_not_DASHhas2] = ACTIONS(2810), + [anon_sym_starts_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2810), + [anon_sym_ends_DASHwith2] = ACTIONS(2810), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2810), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), [anon_sym_EQ_TILDE2] = ACTIONS(2666), [anon_sym_BANG_TILDE2] = ACTIONS(2666), [anon_sym_like2] = ACTIONS(2666), [anon_sym_not_DASHlike2] = ACTIONS(2666), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2668), - [anon_sym_bit_DASHshl2] = ACTIONS(2666), - [anon_sym_bit_DASHshr2] = ACTIONS(2666), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), [anon_sym_bit_DASHand2] = ACTIONS(2666), [anon_sym_bit_DASHxor2] = ACTIONS(2666), [anon_sym_bit_DASHor2] = ACTIONS(2666), @@ -136431,212 +136935,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1219)] = { - [aux_sym__repeat_newline] = STATE(1202), - [sym_comment] = STATE(1219), - [anon_sym_in] = ACTIONS(2832), - [sym__newline] = ACTIONS(2867), - [anon_sym_SEMI] = ACTIONS(2768), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_err_GT_PIPE] = ACTIONS(2768), - [anon_sym_out_GT_PIPE] = ACTIONS(2768), - [anon_sym_e_GT_PIPE] = ACTIONS(2768), - [anon_sym_o_GT_PIPE] = ACTIONS(2768), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2768), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2768), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2768), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2768), - [anon_sym_RPAREN] = ACTIONS(2768), - [anon_sym_GT2] = ACTIONS(2836), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2768), - [anon_sym_xor2] = ACTIONS(2768), - [anon_sym_or2] = ACTIONS(2768), - [anon_sym_not_DASHin2] = ACTIONS(2832), - [anon_sym_has2] = ACTIONS(2832), - [anon_sym_not_DASHhas2] = ACTIONS(2832), - [anon_sym_starts_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), - [anon_sym_ends_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), - [anon_sym_EQ_EQ2] = ACTIONS(2846), - [anon_sym_BANG_EQ2] = ACTIONS(2846), - [anon_sym_LT2] = ACTIONS(2836), - [anon_sym_LT_EQ2] = ACTIONS(2846), - [anon_sym_GT_EQ2] = ACTIONS(2846), - [anon_sym_EQ_TILDE2] = ACTIONS(2848), - [anon_sym_BANG_TILDE2] = ACTIONS(2848), - [anon_sym_like2] = ACTIONS(2848), - [anon_sym_not_DASHlike2] = ACTIONS(2848), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2768), - [anon_sym_bit_DASHor2] = ACTIONS(2768), - [anon_sym_err_GT] = ACTIONS(2770), - [anon_sym_out_GT] = ACTIONS(2770), - [anon_sym_e_GT] = ACTIONS(2770), - [anon_sym_o_GT] = ACTIONS(2770), - [anon_sym_err_PLUSout_GT] = ACTIONS(2770), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2770), - [anon_sym_o_PLUSe_GT] = ACTIONS(2770), - [anon_sym_e_PLUSo_GT] = ACTIONS(2770), - [anon_sym_err_GT_GT] = ACTIONS(2768), - [anon_sym_out_GT_GT] = ACTIONS(2768), - [anon_sym_e_GT_GT] = ACTIONS(2768), - [anon_sym_o_GT_GT] = ACTIONS(2768), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2768), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2768), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2768), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2768), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1220)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1220), - [anon_sym_in] = ACTIONS(2692), - [sym__newline] = ACTIONS(2692), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2694), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2692), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2692), - [anon_sym_has2] = ACTIONS(2692), - [anon_sym_not_DASHhas2] = ACTIONS(2692), - [anon_sym_starts_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2692), - [anon_sym_ends_DASHwith2] = ACTIONS(2692), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2692), - [anon_sym_EQ_EQ2] = ACTIONS(2692), - [anon_sym_BANG_EQ2] = ACTIONS(2692), - [anon_sym_LT2] = ACTIONS(2694), - [anon_sym_LT_EQ2] = ACTIONS(2692), - [anon_sym_GT_EQ2] = ACTIONS(2692), - [anon_sym_EQ_TILDE2] = ACTIONS(2692), - [anon_sym_BANG_TILDE2] = ACTIONS(2692), - [anon_sym_like2] = ACTIONS(2692), - [anon_sym_not_DASHlike2] = ACTIONS(2692), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2692), - [anon_sym_bit_DASHshr2] = ACTIONS(2692), - [anon_sym_bit_DASHand2] = ACTIONS(2692), - [anon_sym_bit_DASHxor2] = ACTIONS(2692), - [anon_sym_bit_DASHor2] = ACTIONS(2692), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1221)] = { - [sym__ctrl_match_body] = STATE(5063), - [sym_match_arm] = STATE(4515), - [sym_default_arm] = STATE(4515), - [sym_match_pattern] = STATE(5101), - [sym__match_pattern] = STATE(3907), - [sym__match_pattern_expression] = STATE(4160), - [sym__match_pattern_value] = STATE(4162), - [sym__match_pattern_list] = STATE(4163), - [sym__match_pattern_record] = STATE(4167), - [sym_expr_parenthesized] = STATE(3716), - [sym_val_range] = STATE(4162), - [sym__val_range] = STATE(5013), - [sym_val_nothing] = STATE(4167), - [sym_val_bool] = STATE(3955), - [sym_val_variable] = STATE(3718), - [sym_val_number] = STATE(4167), - [sym__val_number_decimal] = STATE(3468), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(4167), - [sym_val_filesize] = STATE(4167), - [sym_val_binary] = STATE(4167), - [sym_val_string] = STATE(4167), - [sym__raw_str] = STATE(2243), - [sym__str_double_quotes] = STATE(2243), - [sym__str_single_quotes] = STATE(2243), - [sym__str_back_ticks] = STATE(2243), - [sym_val_table] = STATE(4167), - [sym_unquoted] = STATE(4170), - [sym__unquoted_anonymous_prefix] = STATE(5013), - [sym_comment] = STATE(1221), - [aux_sym__types_body_repeat1] = STATE(1346), - [aux_sym__ctrl_match_body_repeat1] = STATE(1369), - [anon_sym_true] = ACTIONS(2900), - [anon_sym_false] = ACTIONS(2900), - [anon_sym_null] = ACTIONS(2902), - [aux_sym_cmd_identifier_token3] = ACTIONS(2904), - [aux_sym_cmd_identifier_token4] = ACTIONS(2904), - [aux_sym_cmd_identifier_token5] = ACTIONS(2904), - [sym__newline] = ACTIONS(2906), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_LPAREN] = ACTIONS(2748), - [anon_sym_DOLLAR] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_RBRACE] = ACTIONS(2930), - [anon_sym__] = ACTIONS(2916), - [anon_sym_DOT_DOT] = ACTIONS(2918), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2920), - [anon_sym_DOT_DOT_LT] = ACTIONS(2920), - [aux_sym__val_number_decimal_token1] = ACTIONS(2922), - [aux_sym__val_number_decimal_token2] = ACTIONS(2924), - [aux_sym__val_number_decimal_token3] = ACTIONS(2926), - [aux_sym__val_number_decimal_token4] = ACTIONS(2926), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2928), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [aux_sym_unquoted_token1] = ACTIONS(1912), + [STATE(1226)] = { + [aux_sym__repeat_newline] = STATE(1214), + [sym_comment] = STATE(1226), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2903), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_err_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_GT_PIPE] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2899), + [anon_sym_xor2] = ACTIONS(2905), + [anon_sym_or2] = ACTIONS(2772), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2805), + [anon_sym_bit_DASHor2] = ACTIONS(2901), + [anon_sym_err_GT] = ACTIONS(2774), + [anon_sym_out_GT] = ACTIONS(2774), + [anon_sym_e_GT] = ACTIONS(2774), + [anon_sym_o_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT] = ACTIONS(2774), + [anon_sym_err_GT_GT] = ACTIONS(2772), + [anon_sym_out_GT_GT] = ACTIONS(2772), + [anon_sym_e_GT_GT] = ACTIONS(2772), + [anon_sym_o_GT_GT] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), }, - [STATE(1222)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1222), - [anon_sym_in] = ACTIONS(2804), - [sym__newline] = ACTIONS(2772), + [STATE(1227)] = { + [aux_sym__repeat_newline] = STATE(1225), + [sym_comment] = STATE(1227), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2782), [anon_sym_SEMI] = ACTIONS(2772), [anon_sym_PIPE] = ACTIONS(2772), [anon_sym_err_GT_PIPE] = ACTIONS(2772), @@ -136648,37 +137018,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), [anon_sym_RPAREN] = ACTIONS(2772), - [anon_sym_GT2] = ACTIONS(2806), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), [anon_sym_and2] = ACTIONS(2772), [anon_sym_xor2] = ACTIONS(2772), [anon_sym_or2] = ACTIONS(2772), - [anon_sym_not_DASHin2] = ACTIONS(2804), - [anon_sym_has2] = ACTIONS(2804), - [anon_sym_not_DASHhas2] = ACTIONS(2804), - [anon_sym_starts_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), - [anon_sym_ends_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2806), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2772), + [anon_sym_BANG_TILDE2] = ACTIONS(2772), + [anon_sym_like2] = ACTIONS(2772), + [anon_sym_not_DASHlike2] = ACTIONS(2772), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2772), [anon_sym_bit_DASHxor2] = ACTIONS(2772), [anon_sym_bit_DASHor2] = ACTIONS(2772), [anon_sym_err_GT] = ACTIONS(2774), @@ -136699,199 +137069,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1223)] = { - [aux_sym__repeat_newline] = STATE(1189), - [sym_comment] = STATE(1223), - [anon_sym_in] = ACTIONS(2832), - [sym__newline] = ACTIONS(2870), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_err_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_GT_PIPE] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2684), - [anon_sym_GT2] = ACTIONS(2836), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2684), - [anon_sym_xor2] = ACTIONS(2684), - [anon_sym_or2] = ACTIONS(2684), - [anon_sym_not_DASHin2] = ACTIONS(2832), - [anon_sym_has2] = ACTIONS(2832), - [anon_sym_not_DASHhas2] = ACTIONS(2832), - [anon_sym_starts_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), - [anon_sym_ends_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), - [anon_sym_EQ_EQ2] = ACTIONS(2846), - [anon_sym_BANG_EQ2] = ACTIONS(2846), - [anon_sym_LT2] = ACTIONS(2836), - [anon_sym_LT_EQ2] = ACTIONS(2846), - [anon_sym_GT_EQ2] = ACTIONS(2846), - [anon_sym_EQ_TILDE2] = ACTIONS(2848), - [anon_sym_BANG_TILDE2] = ACTIONS(2848), - [anon_sym_like2] = ACTIONS(2848), - [anon_sym_not_DASHlike2] = ACTIONS(2848), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), - [anon_sym_bit_DASHand2] = ACTIONS(2684), - [anon_sym_bit_DASHxor2] = ACTIONS(2684), - [anon_sym_bit_DASHor2] = ACTIONS(2684), - [anon_sym_err_GT] = ACTIONS(2686), - [anon_sym_out_GT] = ACTIONS(2686), - [anon_sym_e_GT] = ACTIONS(2686), - [anon_sym_o_GT] = ACTIONS(2686), - [anon_sym_err_PLUSout_GT] = ACTIONS(2686), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), - [anon_sym_o_PLUSe_GT] = ACTIONS(2686), - [anon_sym_e_PLUSo_GT] = ACTIONS(2686), - [anon_sym_err_GT_GT] = ACTIONS(2684), - [anon_sym_out_GT_GT] = ACTIONS(2684), - [anon_sym_e_GT_GT] = ACTIONS(2684), - [anon_sym_o_GT_GT] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), + [STATE(1228)] = { + [sym_comment] = STATE(1228), + [anon_sym_in] = ACTIONS(2925), + [sym__newline] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_err_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_GT_PIPE] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2509), + [anon_sym_RPAREN] = ACTIONS(2509), + [anon_sym_GT2] = ACTIONS(2907), + [anon_sym_DASH2] = ACTIONS(2909), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_STAR2] = ACTIONS(2911), + [anon_sym_and2] = ACTIONS(2935), + [anon_sym_xor2] = ACTIONS(2509), + [anon_sym_or2] = ACTIONS(2509), + [anon_sym_not_DASHin2] = ACTIONS(2925), + [anon_sym_has2] = ACTIONS(2925), + [anon_sym_not_DASHhas2] = ACTIONS(2925), + [anon_sym_starts_DASHwith2] = ACTIONS(2925), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2925), + [anon_sym_ends_DASHwith2] = ACTIONS(2925), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2925), + [anon_sym_EQ_EQ2] = ACTIONS(2913), + [anon_sym_BANG_EQ2] = ACTIONS(2913), + [anon_sym_LT2] = ACTIONS(2907), + [anon_sym_LT_EQ2] = ACTIONS(2913), + [anon_sym_GT_EQ2] = ACTIONS(2913), + [anon_sym_EQ_TILDE2] = ACTIONS(2927), + [anon_sym_BANG_TILDE2] = ACTIONS(2927), + [anon_sym_like2] = ACTIONS(2927), + [anon_sym_not_DASHlike2] = ACTIONS(2927), + [anon_sym_STAR_STAR2] = ACTIONS(2915), + [anon_sym_PLUS_PLUS2] = ACTIONS(2915), + [anon_sym_SLASH2] = ACTIONS(2911), + [anon_sym_mod2] = ACTIONS(2917), + [anon_sym_SLASH_SLASH2] = ACTIONS(2917), + [anon_sym_PLUS2] = ACTIONS(2919), + [anon_sym_bit_DASHshl2] = ACTIONS(2921), + [anon_sym_bit_DASHshr2] = ACTIONS(2921), + [anon_sym_bit_DASHand2] = ACTIONS(2929), + [anon_sym_bit_DASHxor2] = ACTIONS(2931), + [anon_sym_bit_DASHor2] = ACTIONS(2933), + [anon_sym_err_GT] = ACTIONS(2511), + [anon_sym_out_GT] = ACTIONS(2511), + [anon_sym_e_GT] = ACTIONS(2511), + [anon_sym_o_GT] = ACTIONS(2511), + [anon_sym_err_PLUSout_GT] = ACTIONS(2511), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2511), + [anon_sym_o_PLUSe_GT] = ACTIONS(2511), + [anon_sym_e_PLUSo_GT] = ACTIONS(2511), + [anon_sym_err_GT_GT] = ACTIONS(2509), + [anon_sym_out_GT_GT] = ACTIONS(2509), + [anon_sym_e_GT_GT] = ACTIONS(2509), + [anon_sym_o_GT_GT] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2509), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1224)] = { - [aux_sym__repeat_newline] = STATE(1213), - [sym_comment] = STATE(1224), - [anon_sym_in] = ACTIONS(2832), - [sym__newline] = ACTIONS(2867), - [anon_sym_SEMI] = ACTIONS(2768), - [anon_sym_PIPE] = ACTIONS(2768), - [anon_sym_err_GT_PIPE] = ACTIONS(2768), - [anon_sym_out_GT_PIPE] = ACTIONS(2768), - [anon_sym_e_GT_PIPE] = ACTIONS(2768), - [anon_sym_o_GT_PIPE] = ACTIONS(2768), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2768), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2768), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2768), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2768), - [anon_sym_RPAREN] = ACTIONS(2768), - [anon_sym_GT2] = ACTIONS(2836), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2768), - [anon_sym_xor2] = ACTIONS(2768), - [anon_sym_or2] = ACTIONS(2768), - [anon_sym_not_DASHin2] = ACTIONS(2832), - [anon_sym_has2] = ACTIONS(2832), - [anon_sym_not_DASHhas2] = ACTIONS(2832), - [anon_sym_starts_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), - [anon_sym_ends_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), - [anon_sym_EQ_EQ2] = ACTIONS(2846), - [anon_sym_BANG_EQ2] = ACTIONS(2846), - [anon_sym_LT2] = ACTIONS(2836), - [anon_sym_LT_EQ2] = ACTIONS(2846), - [anon_sym_GT_EQ2] = ACTIONS(2846), - [anon_sym_EQ_TILDE2] = ACTIONS(2848), - [anon_sym_BANG_TILDE2] = ACTIONS(2848), - [anon_sym_like2] = ACTIONS(2848), - [anon_sym_not_DASHlike2] = ACTIONS(2848), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2768), - [anon_sym_err_GT] = ACTIONS(2770), - [anon_sym_out_GT] = ACTIONS(2770), - [anon_sym_e_GT] = ACTIONS(2770), - [anon_sym_o_GT] = ACTIONS(2770), - [anon_sym_err_PLUSout_GT] = ACTIONS(2770), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2770), - [anon_sym_o_PLUSe_GT] = ACTIONS(2770), - [anon_sym_e_PLUSo_GT] = ACTIONS(2770), - [anon_sym_err_GT_GT] = ACTIONS(2768), - [anon_sym_out_GT_GT] = ACTIONS(2768), - [anon_sym_e_GT_GT] = ACTIONS(2768), - [anon_sym_o_GT_GT] = ACTIONS(2768), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2768), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2768), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2768), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2768), + [STATE(1229)] = { + [sym_comment] = STATE(1229), + [anon_sym_in] = ACTIONS(2374), + [sym__newline] = ACTIONS(2374), + [anon_sym_SEMI] = ACTIONS(2374), + [anon_sym_PIPE] = ACTIONS(2374), + [anon_sym_err_GT_PIPE] = ACTIONS(2374), + [anon_sym_out_GT_PIPE] = ACTIONS(2374), + [anon_sym_e_GT_PIPE] = ACTIONS(2374), + [anon_sym_o_GT_PIPE] = ACTIONS(2374), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2374), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2374), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2374), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2374), + [anon_sym_RPAREN] = ACTIONS(2374), + [anon_sym_GT2] = ACTIONS(2381), + [anon_sym_DASH2] = ACTIONS(2374), + [anon_sym_LBRACE] = ACTIONS(2374), + [anon_sym_STAR2] = ACTIONS(2381), + [anon_sym_and2] = ACTIONS(2374), + [anon_sym_xor2] = ACTIONS(2374), + [anon_sym_or2] = ACTIONS(2374), + [anon_sym_not_DASHin2] = ACTIONS(2374), + [anon_sym_has2] = ACTIONS(2374), + [anon_sym_not_DASHhas2] = ACTIONS(2374), + [anon_sym_starts_DASHwith2] = ACTIONS(2374), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2374), + [anon_sym_ends_DASHwith2] = ACTIONS(2374), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2374), + [anon_sym_EQ_EQ2] = ACTIONS(2374), + [anon_sym_BANG_EQ2] = ACTIONS(2374), + [anon_sym_LT2] = ACTIONS(2381), + [anon_sym_LT_EQ2] = ACTIONS(2374), + [anon_sym_GT_EQ2] = ACTIONS(2374), + [anon_sym_EQ_TILDE2] = ACTIONS(2374), + [anon_sym_BANG_TILDE2] = ACTIONS(2374), + [anon_sym_like2] = ACTIONS(2374), + [anon_sym_not_DASHlike2] = ACTIONS(2374), + [anon_sym_STAR_STAR2] = ACTIONS(2374), + [anon_sym_PLUS_PLUS2] = ACTIONS(2374), + [anon_sym_SLASH2] = ACTIONS(2381), + [anon_sym_mod2] = ACTIONS(2374), + [anon_sym_SLASH_SLASH2] = ACTIONS(2374), + [anon_sym_PLUS2] = ACTIONS(2381), + [anon_sym_bit_DASHshl2] = ACTIONS(2374), + [anon_sym_bit_DASHshr2] = ACTIONS(2374), + [anon_sym_bit_DASHand2] = ACTIONS(2374), + [anon_sym_bit_DASHxor2] = ACTIONS(2374), + [anon_sym_bit_DASHor2] = ACTIONS(2374), + [anon_sym_err_GT] = ACTIONS(2381), + [anon_sym_out_GT] = ACTIONS(2381), + [anon_sym_e_GT] = ACTIONS(2381), + [anon_sym_o_GT] = ACTIONS(2381), + [anon_sym_err_PLUSout_GT] = ACTIONS(2381), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2381), + [anon_sym_o_PLUSe_GT] = ACTIONS(2381), + [anon_sym_e_PLUSo_GT] = ACTIONS(2381), + [anon_sym_err_GT_GT] = ACTIONS(2374), + [anon_sym_out_GT_GT] = ACTIONS(2374), + [anon_sym_e_GT_GT] = ACTIONS(2374), + [anon_sym_o_GT_GT] = ACTIONS(2374), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2374), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2374), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2374), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2374), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1225)] = { - [sym__expression] = STATE(4770), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2216), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1826), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_comment] = STATE(1225), - [aux_sym_cmd_identifier_token2] = ACTIONS(2878), - [anon_sym_true] = ACTIONS(2535), - [anon_sym_false] = ACTIONS(2535), - [anon_sym_null] = ACTIONS(2537), - [aux_sym_cmd_identifier_token3] = ACTIONS(2539), - [aux_sym_cmd_identifier_token4] = ACTIONS(2539), - [aux_sym_cmd_identifier_token5] = ACTIONS(2539), + [STATE(1230)] = { + [aux_sym__repeat_newline] = STATE(1243), + [sym_comment] = STATE(1230), + [anon_sym_in] = ACTIONS(2776), + [sym__newline] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2776), + [anon_sym_has2] = ACTIONS(2776), + [anon_sym_not_DASHhas2] = ACTIONS(2776), + [anon_sym_starts_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2776), + [anon_sym_ends_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2776), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2776), + [anon_sym_BANG_TILDE2] = ACTIONS(2776), + [anon_sym_like2] = ACTIONS(2776), + [anon_sym_not_DASHlike2] = ACTIONS(2776), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2776), + [anon_sym_bit_DASHxor2] = ACTIONS(2776), + [anon_sym_bit_DASHor2] = ACTIONS(2776), + [anon_sym_err_GT] = ACTIONS(2778), + [anon_sym_out_GT] = ACTIONS(2778), + [anon_sym_e_GT] = ACTIONS(2778), + [anon_sym_o_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT] = ACTIONS(2778), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1231)] = { + [sym__expression] = STATE(4761), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2225), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1831), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_comment] = STATE(1231), + [aux_sym_cmd_identifier_token2] = ACTIONS(2839), + [anon_sym_true] = ACTIONS(2563), + [anon_sym_false] = ACTIONS(2563), + [anon_sym_null] = ACTIONS(2565), + [aux_sym_cmd_identifier_token3] = ACTIONS(2567), + [aux_sym_cmd_identifier_token4] = ACTIONS(2567), + [aux_sym_cmd_identifier_token5] = ACTIONS(2567), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1976), - [aux_sym__val_number_decimal_token3] = ACTIONS(2543), - [aux_sym__val_number_decimal_token4] = ACTIONS(2543), - [aux_sym__val_number_token1] = ACTIONS(2539), - [aux_sym__val_number_token2] = ACTIONS(2539), - [aux_sym__val_number_token3] = ACTIONS(2539), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2036), + [aux_sym__val_number_decimal_token3] = ACTIONS(2571), + [aux_sym__val_number_decimal_token4] = ACTIONS(2571), + [aux_sym__val_number_token1] = ACTIONS(2567), + [aux_sym__val_number_token2] = ACTIONS(2567), + [aux_sym__val_number_token3] = ACTIONS(2567), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2545), + [sym_val_date] = ACTIONS(2573), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -136900,78 +137337,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(1226)] = { - [aux_sym__repeat_newline] = STATE(1132), - [sym_comment] = STATE(1226), - [anon_sym_in] = ACTIONS(2832), - [sym__newline] = ACTIONS(2875), - [anon_sym_SEMI] = ACTIONS(2666), - [anon_sym_PIPE] = ACTIONS(2666), - [anon_sym_err_GT_PIPE] = ACTIONS(2666), - [anon_sym_out_GT_PIPE] = ACTIONS(2666), - [anon_sym_e_GT_PIPE] = ACTIONS(2666), - [anon_sym_o_GT_PIPE] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), - [anon_sym_RPAREN] = ACTIONS(2666), - [anon_sym_GT2] = ACTIONS(2836), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2666), - [anon_sym_xor2] = ACTIONS(2666), - [anon_sym_or2] = ACTIONS(2666), - [anon_sym_not_DASHin2] = ACTIONS(2832), - [anon_sym_has2] = ACTIONS(2832), - [anon_sym_not_DASHhas2] = ACTIONS(2832), - [anon_sym_starts_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), - [anon_sym_ends_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), - [anon_sym_EQ_EQ2] = ACTIONS(2846), - [anon_sym_BANG_EQ2] = ACTIONS(2846), - [anon_sym_LT2] = ACTIONS(2836), - [anon_sym_LT_EQ2] = ACTIONS(2846), - [anon_sym_GT_EQ2] = ACTIONS(2846), - [anon_sym_EQ_TILDE2] = ACTIONS(2848), - [anon_sym_BANG_TILDE2] = ACTIONS(2848), - [anon_sym_like2] = ACTIONS(2848), - [anon_sym_not_DASHlike2] = ACTIONS(2848), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2666), - [anon_sym_err_GT] = ACTIONS(2668), - [anon_sym_out_GT] = ACTIONS(2668), - [anon_sym_e_GT] = ACTIONS(2668), - [anon_sym_o_GT] = ACTIONS(2668), - [anon_sym_err_PLUSout_GT] = ACTIONS(2668), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), - [anon_sym_o_PLUSe_GT] = ACTIONS(2668), - [anon_sym_e_PLUSo_GT] = ACTIONS(2668), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1227)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1227), - [anon_sym_in] = ACTIONS(2804), - [sym__newline] = ACTIONS(2772), + [STATE(1232)] = { + [aux_sym__repeat_newline] = STATE(1253), + [sym_comment] = STATE(1232), + [anon_sym_in] = ACTIONS(2772), + [sym__newline] = ACTIONS(2782), [anon_sym_SEMI] = ACTIONS(2772), [anon_sym_PIPE] = ACTIONS(2772), [anon_sym_err_GT_PIPE] = ACTIONS(2772), @@ -136983,38 +137353,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), [anon_sym_RPAREN] = ACTIONS(2772), - [anon_sym_GT2] = ACTIONS(2806), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_GT2] = ACTIONS(2774), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), [anon_sym_and2] = ACTIONS(2772), [anon_sym_xor2] = ACTIONS(2772), [anon_sym_or2] = ACTIONS(2772), - [anon_sym_not_DASHin2] = ACTIONS(2804), - [anon_sym_has2] = ACTIONS(2804), - [anon_sym_not_DASHhas2] = ACTIONS(2804), - [anon_sym_starts_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), - [anon_sym_ends_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2806), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), + [anon_sym_not_DASHin2] = ACTIONS(2772), + [anon_sym_has2] = ACTIONS(2772), + [anon_sym_not_DASHhas2] = ACTIONS(2772), + [anon_sym_starts_DASHwith2] = ACTIONS(2772), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2772), + [anon_sym_ends_DASHwith2] = ACTIONS(2772), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2772), + [anon_sym_EQ_EQ2] = ACTIONS(2772), + [anon_sym_BANG_EQ2] = ACTIONS(2772), + [anon_sym_LT2] = ACTIONS(2774), + [anon_sym_LT_EQ2] = ACTIONS(2772), + [anon_sym_GT_EQ2] = ACTIONS(2772), + [anon_sym_EQ_TILDE2] = ACTIONS(2772), + [anon_sym_BANG_TILDE2] = ACTIONS(2772), + [anon_sym_like2] = ACTIONS(2772), + [anon_sym_not_DASHlike2] = ACTIONS(2772), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2772), + [anon_sym_bit_DASHshr2] = ACTIONS(2772), + [anon_sym_bit_DASHand2] = ACTIONS(2772), + [anon_sym_bit_DASHxor2] = ACTIONS(2772), [anon_sym_bit_DASHor2] = ACTIONS(2772), [anon_sym_err_GT] = ACTIONS(2774), [anon_sym_out_GT] = ACTIONS(2774), @@ -137034,631 +137404,430 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1228)] = { - [sym_comment] = STATE(1228), - [ts_builtin_sym_end] = ACTIONS(2562), - [aux_sym_cmd_identifier_token2] = ACTIONS(2878), - [anon_sym_in] = ACTIONS(2564), - [sym__newline] = ACTIONS(2562), - [anon_sym_SEMI] = ACTIONS(2562), - [anon_sym_PIPE] = ACTIONS(2562), - [anon_sym_err_GT_PIPE] = ACTIONS(2562), - [anon_sym_out_GT_PIPE] = ACTIONS(2562), - [anon_sym_e_GT_PIPE] = ACTIONS(2562), - [anon_sym_o_GT_PIPE] = ACTIONS(2562), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2562), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2562), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2562), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2562), - [anon_sym_GT2] = ACTIONS(2564), - [anon_sym_DASH2] = ACTIONS(2564), - [anon_sym_STAR2] = ACTIONS(2564), - [anon_sym_and2] = ACTIONS(2564), - [anon_sym_xor2] = ACTIONS(2564), - [anon_sym_or2] = ACTIONS(2564), - [anon_sym_not_DASHin2] = ACTIONS(2564), - [anon_sym_has2] = ACTIONS(2564), - [anon_sym_not_DASHhas2] = ACTIONS(2564), - [anon_sym_starts_DASHwith2] = ACTIONS(2564), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2564), - [anon_sym_ends_DASHwith2] = ACTIONS(2564), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2564), - [anon_sym_EQ_EQ2] = ACTIONS(2562), - [anon_sym_BANG_EQ2] = ACTIONS(2562), - [anon_sym_LT2] = ACTIONS(2564), - [anon_sym_LT_EQ2] = ACTIONS(2562), - [anon_sym_GT_EQ2] = ACTIONS(2562), - [anon_sym_EQ_TILDE2] = ACTIONS(2562), - [anon_sym_BANG_TILDE2] = ACTIONS(2564), - [anon_sym_like2] = ACTIONS(2564), - [anon_sym_not_DASHlike2] = ACTIONS(2564), - [anon_sym_STAR_STAR2] = ACTIONS(2564), - [anon_sym_PLUS_PLUS2] = ACTIONS(2564), - [anon_sym_SLASH2] = ACTIONS(2564), - [anon_sym_mod2] = ACTIONS(2564), - [anon_sym_SLASH_SLASH2] = ACTIONS(2564), - [anon_sym_PLUS2] = ACTIONS(2564), - [anon_sym_bit_DASHshl2] = ACTIONS(2564), - [anon_sym_bit_DASHshr2] = ACTIONS(2564), - [anon_sym_bit_DASHand2] = ACTIONS(2564), - [anon_sym_bit_DASHxor2] = ACTIONS(2564), - [anon_sym_bit_DASHor2] = ACTIONS(2564), - [anon_sym_err_GT] = ACTIONS(2564), - [anon_sym_out_GT] = ACTIONS(2564), - [anon_sym_e_GT] = ACTIONS(2564), - [anon_sym_o_GT] = ACTIONS(2564), - [anon_sym_err_PLUSout_GT] = ACTIONS(2564), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2564), - [anon_sym_o_PLUSe_GT] = ACTIONS(2564), - [anon_sym_e_PLUSo_GT] = ACTIONS(2564), - [anon_sym_err_GT_GT] = ACTIONS(2562), - [anon_sym_out_GT_GT] = ACTIONS(2562), - [anon_sym_e_GT_GT] = ACTIONS(2562), - [anon_sym_o_GT_GT] = ACTIONS(2562), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2562), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2562), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2562), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2562), - [anon_sym_POUND] = ACTIONS(103), - }, - [STATE(1229)] = { - [sym__ctrl_match_body] = STATE(5025), - [sym_match_arm] = STATE(4515), - [sym_default_arm] = STATE(4515), - [sym_match_pattern] = STATE(5101), - [sym__match_pattern] = STATE(3907), - [sym__match_pattern_expression] = STATE(4160), - [sym__match_pattern_value] = STATE(4162), - [sym__match_pattern_list] = STATE(4163), - [sym__match_pattern_record] = STATE(4167), - [sym_expr_parenthesized] = STATE(3716), - [sym_val_range] = STATE(4162), - [sym__val_range] = STATE(5013), - [sym_val_nothing] = STATE(4167), - [sym_val_bool] = STATE(3955), - [sym_val_variable] = STATE(3718), - [sym_val_number] = STATE(4167), - [sym__val_number_decimal] = STATE(3468), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(4167), - [sym_val_filesize] = STATE(4167), - [sym_val_binary] = STATE(4167), - [sym_val_string] = STATE(4167), - [sym__raw_str] = STATE(2243), - [sym__str_double_quotes] = STATE(2243), - [sym__str_single_quotes] = STATE(2243), - [sym__str_back_ticks] = STATE(2243), - [sym_val_table] = STATE(4167), - [sym_unquoted] = STATE(4170), - [sym__unquoted_anonymous_prefix] = STATE(5013), - [sym_comment] = STATE(1229), - [aux_sym__types_body_repeat1] = STATE(1346), - [aux_sym__ctrl_match_body_repeat1] = STATE(1369), - [anon_sym_true] = ACTIONS(2900), - [anon_sym_false] = ACTIONS(2900), - [anon_sym_null] = ACTIONS(2902), - [aux_sym_cmd_identifier_token3] = ACTIONS(2904), - [aux_sym_cmd_identifier_token4] = ACTIONS(2904), - [aux_sym_cmd_identifier_token5] = ACTIONS(2904), - [sym__newline] = ACTIONS(2906), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_LPAREN] = ACTIONS(2748), - [anon_sym_DOLLAR] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_RBRACE] = ACTIONS(2932), - [anon_sym__] = ACTIONS(2916), - [anon_sym_DOT_DOT] = ACTIONS(2918), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2920), - [anon_sym_DOT_DOT_LT] = ACTIONS(2920), - [aux_sym__val_number_decimal_token1] = ACTIONS(2922), - [aux_sym__val_number_decimal_token2] = ACTIONS(2924), - [aux_sym__val_number_decimal_token3] = ACTIONS(2926), - [aux_sym__val_number_decimal_token4] = ACTIONS(2926), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2928), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [aux_sym_unquoted_token1] = ACTIONS(1912), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(1230)] = { - [sym_comment] = STATE(1230), - [anon_sym_in] = ACTIONS(2780), - [sym__newline] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [anon_sym_PIPE] = ACTIONS(2547), - [anon_sym_err_GT_PIPE] = ACTIONS(2547), - [anon_sym_out_GT_PIPE] = ACTIONS(2547), - [anon_sym_e_GT_PIPE] = ACTIONS(2547), - [anon_sym_o_GT_PIPE] = ACTIONS(2547), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2547), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2547), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2547), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2547), - [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_GT2] = ACTIONS(2782), - [anon_sym_DASH2] = ACTIONS(2784), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_STAR2] = ACTIONS(2786), - [anon_sym_and2] = ACTIONS(2547), - [anon_sym_xor2] = ACTIONS(2547), - [anon_sym_or2] = ACTIONS(2547), - [anon_sym_not_DASHin2] = ACTIONS(2780), - [anon_sym_has2] = ACTIONS(2780), - [anon_sym_not_DASHhas2] = ACTIONS(2780), - [anon_sym_starts_DASHwith2] = ACTIONS(2780), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), - [anon_sym_ends_DASHwith2] = ACTIONS(2780), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), - [anon_sym_EQ_EQ2] = ACTIONS(2788), - [anon_sym_BANG_EQ2] = ACTIONS(2788), - [anon_sym_LT2] = ACTIONS(2782), - [anon_sym_LT_EQ2] = ACTIONS(2788), - [anon_sym_GT_EQ2] = ACTIONS(2788), - [anon_sym_EQ_TILDE2] = ACTIONS(2790), - [anon_sym_BANG_TILDE2] = ACTIONS(2790), - [anon_sym_like2] = ACTIONS(2790), - [anon_sym_not_DASHlike2] = ACTIONS(2790), - [anon_sym_STAR_STAR2] = ACTIONS(2792), - [anon_sym_PLUS_PLUS2] = ACTIONS(2792), - [anon_sym_SLASH2] = ACTIONS(2786), - [anon_sym_mod2] = ACTIONS(2794), - [anon_sym_SLASH_SLASH2] = ACTIONS(2794), - [anon_sym_PLUS2] = ACTIONS(2796), - [anon_sym_bit_DASHshl2] = ACTIONS(2798), - [anon_sym_bit_DASHshr2] = ACTIONS(2798), - [anon_sym_bit_DASHand2] = ACTIONS(2800), - [anon_sym_bit_DASHxor2] = ACTIONS(2802), - [anon_sym_bit_DASHor2] = ACTIONS(2934), - [anon_sym_err_GT] = ACTIONS(2549), - [anon_sym_out_GT] = ACTIONS(2549), - [anon_sym_e_GT] = ACTIONS(2549), - [anon_sym_o_GT] = ACTIONS(2549), - [anon_sym_err_PLUSout_GT] = ACTIONS(2549), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2549), - [anon_sym_o_PLUSe_GT] = ACTIONS(2549), - [anon_sym_e_PLUSo_GT] = ACTIONS(2549), - [anon_sym_err_GT_GT] = ACTIONS(2547), - [anon_sym_out_GT_GT] = ACTIONS(2547), - [anon_sym_e_GT_GT] = ACTIONS(2547), - [anon_sym_o_GT_GT] = ACTIONS(2547), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2547), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2547), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2547), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2547), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1231)] = { - [sym_comment] = STATE(1231), - [anon_sym_in] = ACTIONS(2780), - [sym__newline] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [anon_sym_PIPE] = ACTIONS(2547), - [anon_sym_err_GT_PIPE] = ACTIONS(2547), - [anon_sym_out_GT_PIPE] = ACTIONS(2547), - [anon_sym_e_GT_PIPE] = ACTIONS(2547), - [anon_sym_o_GT_PIPE] = ACTIONS(2547), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2547), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2547), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2547), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2547), - [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_GT2] = ACTIONS(2782), - [anon_sym_DASH2] = ACTIONS(2784), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_STAR2] = ACTIONS(2786), - [anon_sym_and2] = ACTIONS(2936), - [anon_sym_xor2] = ACTIONS(2547), - [anon_sym_or2] = ACTIONS(2547), - [anon_sym_not_DASHin2] = ACTIONS(2780), - [anon_sym_has2] = ACTIONS(2780), - [anon_sym_not_DASHhas2] = ACTIONS(2780), - [anon_sym_starts_DASHwith2] = ACTIONS(2780), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), - [anon_sym_ends_DASHwith2] = ACTIONS(2780), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), - [anon_sym_EQ_EQ2] = ACTIONS(2788), - [anon_sym_BANG_EQ2] = ACTIONS(2788), - [anon_sym_LT2] = ACTIONS(2782), - [anon_sym_LT_EQ2] = ACTIONS(2788), - [anon_sym_GT_EQ2] = ACTIONS(2788), - [anon_sym_EQ_TILDE2] = ACTIONS(2790), - [anon_sym_BANG_TILDE2] = ACTIONS(2790), - [anon_sym_like2] = ACTIONS(2790), - [anon_sym_not_DASHlike2] = ACTIONS(2790), - [anon_sym_STAR_STAR2] = ACTIONS(2792), - [anon_sym_PLUS_PLUS2] = ACTIONS(2792), - [anon_sym_SLASH2] = ACTIONS(2786), - [anon_sym_mod2] = ACTIONS(2794), - [anon_sym_SLASH_SLASH2] = ACTIONS(2794), - [anon_sym_PLUS2] = ACTIONS(2796), - [anon_sym_bit_DASHshl2] = ACTIONS(2798), - [anon_sym_bit_DASHshr2] = ACTIONS(2798), - [anon_sym_bit_DASHand2] = ACTIONS(2800), - [anon_sym_bit_DASHxor2] = ACTIONS(2802), - [anon_sym_bit_DASHor2] = ACTIONS(2934), - [anon_sym_err_GT] = ACTIONS(2549), - [anon_sym_out_GT] = ACTIONS(2549), - [anon_sym_e_GT] = ACTIONS(2549), - [anon_sym_o_GT] = ACTIONS(2549), - [anon_sym_err_PLUSout_GT] = ACTIONS(2549), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2549), - [anon_sym_o_PLUSe_GT] = ACTIONS(2549), - [anon_sym_e_PLUSo_GT] = ACTIONS(2549), - [anon_sym_err_GT_GT] = ACTIONS(2547), - [anon_sym_out_GT_GT] = ACTIONS(2547), - [anon_sym_e_GT_GT] = ACTIONS(2547), - [anon_sym_o_GT_GT] = ACTIONS(2547), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2547), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2547), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2547), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2547), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1232)] = { - [sym_comment] = STATE(1232), - [aux_sym_cmd_identifier_token2] = ACTIONS(2662), - [anon_sym_in] = ACTIONS(2327), - [sym__newline] = ACTIONS(2325), - [anon_sym_SEMI] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(2325), - [anon_sym_err_GT_PIPE] = ACTIONS(2325), - [anon_sym_out_GT_PIPE] = ACTIONS(2325), - [anon_sym_e_GT_PIPE] = ACTIONS(2325), - [anon_sym_o_GT_PIPE] = ACTIONS(2325), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2325), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2325), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2325), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2325), - [anon_sym_GT2] = ACTIONS(2327), - [anon_sym_DASH2] = ACTIONS(2327), - [anon_sym_RBRACE] = ACTIONS(2325), - [anon_sym_STAR2] = ACTIONS(2327), - [anon_sym_and2] = ACTIONS(2327), - [anon_sym_xor2] = ACTIONS(2327), - [anon_sym_or2] = ACTIONS(2327), - [anon_sym_not_DASHin2] = ACTIONS(2327), - [anon_sym_has2] = ACTIONS(2327), - [anon_sym_not_DASHhas2] = ACTIONS(2327), - [anon_sym_starts_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2327), - [anon_sym_ends_DASHwith2] = ACTIONS(2327), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2327), - [anon_sym_EQ_EQ2] = ACTIONS(2325), - [anon_sym_BANG_EQ2] = ACTIONS(2325), - [anon_sym_LT2] = ACTIONS(2327), - [anon_sym_LT_EQ2] = ACTIONS(2325), - [anon_sym_GT_EQ2] = ACTIONS(2325), - [anon_sym_EQ_TILDE2] = ACTIONS(2325), - [anon_sym_BANG_TILDE2] = ACTIONS(2327), - [anon_sym_like2] = ACTIONS(2327), - [anon_sym_not_DASHlike2] = ACTIONS(2327), - [anon_sym_STAR_STAR2] = ACTIONS(2327), - [anon_sym_PLUS_PLUS2] = ACTIONS(2327), - [anon_sym_SLASH2] = ACTIONS(2327), - [anon_sym_mod2] = ACTIONS(2327), - [anon_sym_SLASH_SLASH2] = ACTIONS(2327), - [anon_sym_PLUS2] = ACTIONS(2327), - [anon_sym_bit_DASHshl2] = ACTIONS(2327), - [anon_sym_bit_DASHshr2] = ACTIONS(2327), - [anon_sym_bit_DASHand2] = ACTIONS(2327), - [anon_sym_bit_DASHxor2] = ACTIONS(2327), - [anon_sym_bit_DASHor2] = ACTIONS(2327), - [anon_sym_err_GT] = ACTIONS(2327), - [anon_sym_out_GT] = ACTIONS(2327), - [anon_sym_e_GT] = ACTIONS(2327), - [anon_sym_o_GT] = ACTIONS(2327), - [anon_sym_err_PLUSout_GT] = ACTIONS(2327), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2327), - [anon_sym_o_PLUSe_GT] = ACTIONS(2327), - [anon_sym_e_PLUSo_GT] = ACTIONS(2327), - [anon_sym_err_GT_GT] = ACTIONS(2325), - [anon_sym_out_GT_GT] = ACTIONS(2325), - [anon_sym_e_GT_GT] = ACTIONS(2325), - [anon_sym_o_GT_GT] = ACTIONS(2325), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2325), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2325), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2325), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2325), - [anon_sym_POUND] = ACTIONS(103), - }, [STATE(1233)] = { - [aux_sym__repeat_newline] = STATE(1140), [sym_comment] = STATE(1233), - [anon_sym_in] = ACTIONS(2832), - [sym__newline] = ACTIONS(2834), - [anon_sym_SEMI] = ACTIONS(2666), - [anon_sym_PIPE] = ACTIONS(2666), - [anon_sym_err_GT_PIPE] = ACTIONS(2666), - [anon_sym_out_GT_PIPE] = ACTIONS(2666), - [anon_sym_e_GT_PIPE] = ACTIONS(2666), - [anon_sym_o_GT_PIPE] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), - [anon_sym_RPAREN] = ACTIONS(2666), - [anon_sym_GT2] = ACTIONS(2836), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2842), - [anon_sym_xor2] = ACTIONS(2844), - [anon_sym_or2] = ACTIONS(2666), - [anon_sym_not_DASHin2] = ACTIONS(2832), - [anon_sym_has2] = ACTIONS(2832), - [anon_sym_not_DASHhas2] = ACTIONS(2832), - [anon_sym_starts_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), - [anon_sym_ends_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), - [anon_sym_EQ_EQ2] = ACTIONS(2846), - [anon_sym_BANG_EQ2] = ACTIONS(2846), - [anon_sym_LT2] = ACTIONS(2836), - [anon_sym_LT_EQ2] = ACTIONS(2846), - [anon_sym_GT_EQ2] = ACTIONS(2846), - [anon_sym_EQ_TILDE2] = ACTIONS(2848), - [anon_sym_BANG_TILDE2] = ACTIONS(2848), - [anon_sym_like2] = ACTIONS(2848), - [anon_sym_not_DASHlike2] = ACTIONS(2848), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2862), - [anon_sym_err_GT] = ACTIONS(2668), - [anon_sym_out_GT] = ACTIONS(2668), - [anon_sym_e_GT] = ACTIONS(2668), - [anon_sym_o_GT] = ACTIONS(2668), - [anon_sym_err_PLUSout_GT] = ACTIONS(2668), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), - [anon_sym_o_PLUSe_GT] = ACTIONS(2668), - [anon_sym_e_PLUSo_GT] = ACTIONS(2668), - [anon_sym_err_GT_GT] = ACTIONS(2666), - [anon_sym_out_GT_GT] = ACTIONS(2666), - [anon_sym_e_GT_GT] = ACTIONS(2666), - [anon_sym_o_GT_GT] = ACTIONS(2666), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), + [anon_sym_in] = ACTIONS(2925), + [sym__newline] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_err_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_GT_PIPE] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2509), + [anon_sym_RPAREN] = ACTIONS(2509), + [anon_sym_GT2] = ACTIONS(2907), + [anon_sym_DASH2] = ACTIONS(2909), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_STAR2] = ACTIONS(2911), + [anon_sym_and2] = ACTIONS(2935), + [anon_sym_xor2] = ACTIONS(2940), + [anon_sym_or2] = ACTIONS(2509), + [anon_sym_not_DASHin2] = ACTIONS(2925), + [anon_sym_has2] = ACTIONS(2925), + [anon_sym_not_DASHhas2] = ACTIONS(2925), + [anon_sym_starts_DASHwith2] = ACTIONS(2925), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2925), + [anon_sym_ends_DASHwith2] = ACTIONS(2925), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2925), + [anon_sym_EQ_EQ2] = ACTIONS(2913), + [anon_sym_BANG_EQ2] = ACTIONS(2913), + [anon_sym_LT2] = ACTIONS(2907), + [anon_sym_LT_EQ2] = ACTIONS(2913), + [anon_sym_GT_EQ2] = ACTIONS(2913), + [anon_sym_EQ_TILDE2] = ACTIONS(2927), + [anon_sym_BANG_TILDE2] = ACTIONS(2927), + [anon_sym_like2] = ACTIONS(2927), + [anon_sym_not_DASHlike2] = ACTIONS(2927), + [anon_sym_STAR_STAR2] = ACTIONS(2915), + [anon_sym_PLUS_PLUS2] = ACTIONS(2915), + [anon_sym_SLASH2] = ACTIONS(2911), + [anon_sym_mod2] = ACTIONS(2917), + [anon_sym_SLASH_SLASH2] = ACTIONS(2917), + [anon_sym_PLUS2] = ACTIONS(2919), + [anon_sym_bit_DASHshl2] = ACTIONS(2921), + [anon_sym_bit_DASHshr2] = ACTIONS(2921), + [anon_sym_bit_DASHand2] = ACTIONS(2929), + [anon_sym_bit_DASHxor2] = ACTIONS(2931), + [anon_sym_bit_DASHor2] = ACTIONS(2933), + [anon_sym_err_GT] = ACTIONS(2511), + [anon_sym_out_GT] = ACTIONS(2511), + [anon_sym_e_GT] = ACTIONS(2511), + [anon_sym_o_GT] = ACTIONS(2511), + [anon_sym_err_PLUSout_GT] = ACTIONS(2511), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2511), + [anon_sym_o_PLUSe_GT] = ACTIONS(2511), + [anon_sym_e_PLUSo_GT] = ACTIONS(2511), + [anon_sym_err_GT_GT] = ACTIONS(2509), + [anon_sym_out_GT_GT] = ACTIONS(2509), + [anon_sym_e_GT_GT] = ACTIONS(2509), + [anon_sym_o_GT_GT] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2509), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1234)] = { + [aux_sym__repeat_newline] = STATE(1183), [sym_comment] = STATE(1234), - [ts_builtin_sym_end] = ACTIONS(890), - [aux_sym_cmd_identifier_token2] = ACTIONS(2878), - [anon_sym_in] = ACTIONS(793), - [sym__newline] = ACTIONS(890), - [anon_sym_SEMI] = ACTIONS(890), - [anon_sym_PIPE] = ACTIONS(890), - [anon_sym_err_GT_PIPE] = ACTIONS(890), - [anon_sym_out_GT_PIPE] = ACTIONS(890), - [anon_sym_e_GT_PIPE] = ACTIONS(890), - [anon_sym_o_GT_PIPE] = ACTIONS(890), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(890), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(890), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(890), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(890), - [anon_sym_GT2] = ACTIONS(793), - [anon_sym_DASH2] = ACTIONS(793), - [anon_sym_STAR2] = ACTIONS(793), - [anon_sym_and2] = ACTIONS(793), - [anon_sym_xor2] = ACTIONS(793), - [anon_sym_or2] = ACTIONS(793), - [anon_sym_not_DASHin2] = ACTIONS(793), - [anon_sym_has2] = ACTIONS(793), - [anon_sym_not_DASHhas2] = ACTIONS(793), - [anon_sym_starts_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(793), - [anon_sym_ends_DASHwith2] = ACTIONS(793), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(793), - [anon_sym_EQ_EQ2] = ACTIONS(890), - [anon_sym_BANG_EQ2] = ACTIONS(890), - [anon_sym_LT2] = ACTIONS(793), - [anon_sym_LT_EQ2] = ACTIONS(890), - [anon_sym_GT_EQ2] = ACTIONS(890), - [anon_sym_EQ_TILDE2] = ACTIONS(890), - [anon_sym_BANG_TILDE2] = ACTIONS(793), - [anon_sym_like2] = ACTIONS(793), - [anon_sym_not_DASHlike2] = ACTIONS(793), - [anon_sym_STAR_STAR2] = ACTIONS(793), - [anon_sym_PLUS_PLUS2] = ACTIONS(793), - [anon_sym_SLASH2] = ACTIONS(793), - [anon_sym_mod2] = ACTIONS(793), - [anon_sym_SLASH_SLASH2] = ACTIONS(793), - [anon_sym_PLUS2] = ACTIONS(793), - [anon_sym_bit_DASHshl2] = ACTIONS(793), - [anon_sym_bit_DASHshr2] = ACTIONS(793), - [anon_sym_bit_DASHand2] = ACTIONS(793), - [anon_sym_bit_DASHxor2] = ACTIONS(793), - [anon_sym_bit_DASHor2] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [anon_sym_err_GT_GT] = ACTIONS(890), - [anon_sym_out_GT_GT] = ACTIONS(890), - [anon_sym_e_GT_GT] = ACTIONS(890), - [anon_sym_o_GT_GT] = ACTIONS(890), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(890), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(890), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(890), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(890), - [anon_sym_POUND] = ACTIONS(103), + [anon_sym_in] = ACTIONS(2776), + [sym__newline] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2778), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2776), + [anon_sym_has2] = ACTIONS(2776), + [anon_sym_not_DASHhas2] = ACTIONS(2776), + [anon_sym_starts_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2776), + [anon_sym_ends_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2776), + [anon_sym_EQ_EQ2] = ACTIONS(2776), + [anon_sym_BANG_EQ2] = ACTIONS(2776), + [anon_sym_LT2] = ACTIONS(2778), + [anon_sym_LT_EQ2] = ACTIONS(2776), + [anon_sym_GT_EQ2] = ACTIONS(2776), + [anon_sym_EQ_TILDE2] = ACTIONS(2776), + [anon_sym_BANG_TILDE2] = ACTIONS(2776), + [anon_sym_like2] = ACTIONS(2776), + [anon_sym_not_DASHlike2] = ACTIONS(2776), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2776), + [anon_sym_bit_DASHxor2] = ACTIONS(2776), + [anon_sym_bit_DASHor2] = ACTIONS(2776), + [anon_sym_err_GT] = ACTIONS(2778), + [anon_sym_out_GT] = ACTIONS(2778), + [anon_sym_e_GT] = ACTIONS(2778), + [anon_sym_o_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT] = ACTIONS(2778), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), + [anon_sym_POUND] = ACTIONS(3), }, [STATE(1235)] = { - [aux_sym__repeat_newline] = STATE(517), [sym_comment] = STATE(1235), - [anon_sym_in] = ACTIONS(2804), - [sym__newline] = ACTIONS(2692), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2806), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2692), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2804), - [anon_sym_has2] = ACTIONS(2804), - [anon_sym_not_DASHhas2] = ACTIONS(2804), - [anon_sym_starts_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), - [anon_sym_ends_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2806), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2692), - [anon_sym_bit_DASHxor2] = ACTIONS(2692), - [anon_sym_bit_DASHor2] = ACTIONS(2692), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), + [anon_sym_in] = ACTIONS(2925), + [sym__newline] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_err_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_GT_PIPE] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2509), + [anon_sym_RPAREN] = ACTIONS(2509), + [anon_sym_GT2] = ACTIONS(2907), + [anon_sym_DASH2] = ACTIONS(2909), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_STAR2] = ACTIONS(2911), + [anon_sym_and2] = ACTIONS(2509), + [anon_sym_xor2] = ACTIONS(2509), + [anon_sym_or2] = ACTIONS(2509), + [anon_sym_not_DASHin2] = ACTIONS(2925), + [anon_sym_has2] = ACTIONS(2925), + [anon_sym_not_DASHhas2] = ACTIONS(2925), + [anon_sym_starts_DASHwith2] = ACTIONS(2925), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2925), + [anon_sym_ends_DASHwith2] = ACTIONS(2925), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2925), + [anon_sym_EQ_EQ2] = ACTIONS(2913), + [anon_sym_BANG_EQ2] = ACTIONS(2913), + [anon_sym_LT2] = ACTIONS(2907), + [anon_sym_LT_EQ2] = ACTIONS(2913), + [anon_sym_GT_EQ2] = ACTIONS(2913), + [anon_sym_EQ_TILDE2] = ACTIONS(2509), + [anon_sym_BANG_TILDE2] = ACTIONS(2509), + [anon_sym_like2] = ACTIONS(2509), + [anon_sym_not_DASHlike2] = ACTIONS(2509), + [anon_sym_STAR_STAR2] = ACTIONS(2915), + [anon_sym_PLUS_PLUS2] = ACTIONS(2915), + [anon_sym_SLASH2] = ACTIONS(2911), + [anon_sym_mod2] = ACTIONS(2917), + [anon_sym_SLASH_SLASH2] = ACTIONS(2917), + [anon_sym_PLUS2] = ACTIONS(2919), + [anon_sym_bit_DASHshl2] = ACTIONS(2921), + [anon_sym_bit_DASHshr2] = ACTIONS(2921), + [anon_sym_bit_DASHand2] = ACTIONS(2509), + [anon_sym_bit_DASHxor2] = ACTIONS(2509), + [anon_sym_bit_DASHor2] = ACTIONS(2509), + [anon_sym_err_GT] = ACTIONS(2511), + [anon_sym_out_GT] = ACTIONS(2511), + [anon_sym_e_GT] = ACTIONS(2511), + [anon_sym_o_GT] = ACTIONS(2511), + [anon_sym_err_PLUSout_GT] = ACTIONS(2511), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2511), + [anon_sym_o_PLUSe_GT] = ACTIONS(2511), + [anon_sym_e_PLUSo_GT] = ACTIONS(2511), + [anon_sym_err_GT_GT] = ACTIONS(2509), + [anon_sym_out_GT_GT] = ACTIONS(2509), + [anon_sym_e_GT_GT] = ACTIONS(2509), + [anon_sym_o_GT_GT] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2509), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1236)] = { [sym_comment] = STATE(1236), - [anon_sym_in] = ACTIONS(2780), - [sym__newline] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [anon_sym_PIPE] = ACTIONS(2547), - [anon_sym_err_GT_PIPE] = ACTIONS(2547), - [anon_sym_out_GT_PIPE] = ACTIONS(2547), - [anon_sym_e_GT_PIPE] = ACTIONS(2547), - [anon_sym_o_GT_PIPE] = ACTIONS(2547), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2547), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2547), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2547), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2547), - [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_GT2] = ACTIONS(2782), - [anon_sym_DASH2] = ACTIONS(2784), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_STAR2] = ACTIONS(2786), - [anon_sym_and2] = ACTIONS(2936), - [anon_sym_xor2] = ACTIONS(2938), - [anon_sym_or2] = ACTIONS(2547), - [anon_sym_not_DASHin2] = ACTIONS(2780), - [anon_sym_has2] = ACTIONS(2780), - [anon_sym_not_DASHhas2] = ACTIONS(2780), - [anon_sym_starts_DASHwith2] = ACTIONS(2780), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), - [anon_sym_ends_DASHwith2] = ACTIONS(2780), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), - [anon_sym_EQ_EQ2] = ACTIONS(2788), - [anon_sym_BANG_EQ2] = ACTIONS(2788), - [anon_sym_LT2] = ACTIONS(2782), - [anon_sym_LT_EQ2] = ACTIONS(2788), - [anon_sym_GT_EQ2] = ACTIONS(2788), - [anon_sym_EQ_TILDE2] = ACTIONS(2790), - [anon_sym_BANG_TILDE2] = ACTIONS(2790), - [anon_sym_like2] = ACTIONS(2790), - [anon_sym_not_DASHlike2] = ACTIONS(2790), - [anon_sym_STAR_STAR2] = ACTIONS(2792), - [anon_sym_PLUS_PLUS2] = ACTIONS(2792), - [anon_sym_SLASH2] = ACTIONS(2786), - [anon_sym_mod2] = ACTIONS(2794), - [anon_sym_SLASH_SLASH2] = ACTIONS(2794), - [anon_sym_PLUS2] = ACTIONS(2796), - [anon_sym_bit_DASHshl2] = ACTIONS(2798), - [anon_sym_bit_DASHshr2] = ACTIONS(2798), - [anon_sym_bit_DASHand2] = ACTIONS(2800), - [anon_sym_bit_DASHxor2] = ACTIONS(2802), - [anon_sym_bit_DASHor2] = ACTIONS(2934), - [anon_sym_err_GT] = ACTIONS(2549), - [anon_sym_out_GT] = ACTIONS(2549), - [anon_sym_e_GT] = ACTIONS(2549), - [anon_sym_o_GT] = ACTIONS(2549), - [anon_sym_err_PLUSout_GT] = ACTIONS(2549), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2549), - [anon_sym_o_PLUSe_GT] = ACTIONS(2549), - [anon_sym_e_PLUSo_GT] = ACTIONS(2549), - [anon_sym_err_GT_GT] = ACTIONS(2547), - [anon_sym_out_GT_GT] = ACTIONS(2547), - [anon_sym_e_GT_GT] = ACTIONS(2547), - [anon_sym_o_GT_GT] = ACTIONS(2547), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2547), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2547), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2547), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2547), + [anon_sym_in] = ACTIONS(2509), + [sym__newline] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_err_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_GT_PIPE] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2509), + [anon_sym_RPAREN] = ACTIONS(2509), + [anon_sym_GT2] = ACTIONS(2511), + [anon_sym_DASH2] = ACTIONS(2909), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_STAR2] = ACTIONS(2911), + [anon_sym_and2] = ACTIONS(2509), + [anon_sym_xor2] = ACTIONS(2509), + [anon_sym_or2] = ACTIONS(2509), + [anon_sym_not_DASHin2] = ACTIONS(2509), + [anon_sym_has2] = ACTIONS(2509), + [anon_sym_not_DASHhas2] = ACTIONS(2509), + [anon_sym_starts_DASHwith2] = ACTIONS(2509), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2509), + [anon_sym_ends_DASHwith2] = ACTIONS(2509), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2509), + [anon_sym_EQ_EQ2] = ACTIONS(2509), + [anon_sym_BANG_EQ2] = ACTIONS(2509), + [anon_sym_LT2] = ACTIONS(2511), + [anon_sym_LT_EQ2] = ACTIONS(2509), + [anon_sym_GT_EQ2] = ACTIONS(2509), + [anon_sym_EQ_TILDE2] = ACTIONS(2509), + [anon_sym_BANG_TILDE2] = ACTIONS(2509), + [anon_sym_like2] = ACTIONS(2509), + [anon_sym_not_DASHlike2] = ACTIONS(2509), + [anon_sym_STAR_STAR2] = ACTIONS(2915), + [anon_sym_PLUS_PLUS2] = ACTIONS(2915), + [anon_sym_SLASH2] = ACTIONS(2911), + [anon_sym_mod2] = ACTIONS(2917), + [anon_sym_SLASH_SLASH2] = ACTIONS(2917), + [anon_sym_PLUS2] = ACTIONS(2919), + [anon_sym_bit_DASHshl2] = ACTIONS(2509), + [anon_sym_bit_DASHshr2] = ACTIONS(2509), + [anon_sym_bit_DASHand2] = ACTIONS(2509), + [anon_sym_bit_DASHxor2] = ACTIONS(2509), + [anon_sym_bit_DASHor2] = ACTIONS(2509), + [anon_sym_err_GT] = ACTIONS(2511), + [anon_sym_out_GT] = ACTIONS(2511), + [anon_sym_e_GT] = ACTIONS(2511), + [anon_sym_o_GT] = ACTIONS(2511), + [anon_sym_err_PLUSout_GT] = ACTIONS(2511), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2511), + [anon_sym_o_PLUSe_GT] = ACTIONS(2511), + [anon_sym_e_PLUSo_GT] = ACTIONS(2511), + [anon_sym_err_GT_GT] = ACTIONS(2509), + [anon_sym_out_GT_GT] = ACTIONS(2509), + [anon_sym_e_GT_GT] = ACTIONS(2509), + [anon_sym_o_GT_GT] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2509), [anon_sym_POUND] = ACTIONS(3), }, [STATE(1237)] = { + [aux_sym__repeat_newline] = STATE(1153), [sym_comment] = STATE(1237), + [anon_sym_in] = ACTIONS(2726), + [sym__newline] = ACTIONS(2832), + [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_RPAREN] = ACTIONS(2726), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2726), + [anon_sym_xor2] = ACTIONS(2726), + [anon_sym_or2] = ACTIONS(2726), + [anon_sym_not_DASHin2] = ACTIONS(2726), + [anon_sym_has2] = ACTIONS(2726), + [anon_sym_not_DASHhas2] = ACTIONS(2726), + [anon_sym_starts_DASHwith2] = ACTIONS(2726), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2726), + [anon_sym_ends_DASHwith2] = ACTIONS(2726), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2726), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2726), + [anon_sym_BANG_TILDE2] = ACTIONS(2726), + [anon_sym_like2] = ACTIONS(2726), + [anon_sym_not_DASHlike2] = ACTIONS(2726), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2726), + [anon_sym_bit_DASHxor2] = ACTIONS(2726), + [anon_sym_bit_DASHor2] = ACTIONS(2726), + [anon_sym_err_GT] = ACTIONS(2728), + [anon_sym_out_GT] = ACTIONS(2728), + [anon_sym_e_GT] = ACTIONS(2728), + [anon_sym_o_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT] = ACTIONS(2728), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1238)] = { + [aux_sym__repeat_newline] = STATE(1171), + [sym_comment] = STATE(1238), + [anon_sym_in] = ACTIONS(2776), + [sym__newline] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2778), + [anon_sym_DASH2] = ACTIONS(2776), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2776), + [anon_sym_has2] = ACTIONS(2776), + [anon_sym_not_DASHhas2] = ACTIONS(2776), + [anon_sym_starts_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2776), + [anon_sym_ends_DASHwith2] = ACTIONS(2776), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2776), + [anon_sym_EQ_EQ2] = ACTIONS(2776), + [anon_sym_BANG_EQ2] = ACTIONS(2776), + [anon_sym_LT2] = ACTIONS(2778), + [anon_sym_LT_EQ2] = ACTIONS(2776), + [anon_sym_GT_EQ2] = ACTIONS(2776), + [anon_sym_EQ_TILDE2] = ACTIONS(2776), + [anon_sym_BANG_TILDE2] = ACTIONS(2776), + [anon_sym_like2] = ACTIONS(2776), + [anon_sym_not_DASHlike2] = ACTIONS(2776), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2778), + [anon_sym_bit_DASHshl2] = ACTIONS(2776), + [anon_sym_bit_DASHshr2] = ACTIONS(2776), + [anon_sym_bit_DASHand2] = ACTIONS(2776), + [anon_sym_bit_DASHxor2] = ACTIONS(2776), + [anon_sym_bit_DASHor2] = ACTIONS(2776), + [anon_sym_err_GT] = ACTIONS(2778), + [anon_sym_out_GT] = ACTIONS(2778), + [anon_sym_e_GT] = ACTIONS(2778), + [anon_sym_o_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT] = ACTIONS(2778), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1239)] = { + [aux_sym__repeat_newline] = STATE(1132), + [sym_comment] = STATE(1239), [anon_sym_in] = ACTIONS(2780), - [sym__newline] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [anon_sym_PIPE] = ACTIONS(2547), - [anon_sym_err_GT_PIPE] = ACTIONS(2547), - [anon_sym_out_GT_PIPE] = ACTIONS(2547), - [anon_sym_e_GT_PIPE] = ACTIONS(2547), - [anon_sym_o_GT_PIPE] = ACTIONS(2547), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2547), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2547), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2547), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2547), - [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_GT2] = ACTIONS(2782), - [anon_sym_DASH2] = ACTIONS(2784), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_STAR2] = ACTIONS(2786), - [anon_sym_and2] = ACTIONS(2547), - [anon_sym_xor2] = ACTIONS(2547), - [anon_sym_or2] = ACTIONS(2547), + [sym__newline] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_err_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_GT_PIPE] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2772), + [anon_sym_xor2] = ACTIONS(2772), + [anon_sym_or2] = ACTIONS(2772), [anon_sym_not_DASHin2] = ACTIONS(2780), [anon_sym_has2] = ACTIONS(2780), [anon_sym_not_DASHhas2] = ACTIONS(2780), @@ -137666,49 +137835,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), [anon_sym_ends_DASHwith2] = ACTIONS(2780), [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), - [anon_sym_EQ_EQ2] = ACTIONS(2788), - [anon_sym_BANG_EQ2] = ACTIONS(2788), - [anon_sym_LT2] = ACTIONS(2782), - [anon_sym_LT_EQ2] = ACTIONS(2788), - [anon_sym_GT_EQ2] = ACTIONS(2788), - [anon_sym_EQ_TILDE2] = ACTIONS(2547), - [anon_sym_BANG_TILDE2] = ACTIONS(2547), - [anon_sym_like2] = ACTIONS(2547), - [anon_sym_not_DASHlike2] = ACTIONS(2547), - [anon_sym_STAR_STAR2] = ACTIONS(2792), - [anon_sym_PLUS_PLUS2] = ACTIONS(2792), - [anon_sym_SLASH2] = ACTIONS(2786), - [anon_sym_mod2] = ACTIONS(2794), - [anon_sym_SLASH_SLASH2] = ACTIONS(2794), - [anon_sym_PLUS2] = ACTIONS(2796), - [anon_sym_bit_DASHshl2] = ACTIONS(2798), - [anon_sym_bit_DASHshr2] = ACTIONS(2798), - [anon_sym_bit_DASHand2] = ACTIONS(2547), - [anon_sym_bit_DASHxor2] = ACTIONS(2547), - [anon_sym_bit_DASHor2] = ACTIONS(2547), - [anon_sym_err_GT] = ACTIONS(2549), - [anon_sym_out_GT] = ACTIONS(2549), - [anon_sym_e_GT] = ACTIONS(2549), - [anon_sym_o_GT] = ACTIONS(2549), - [anon_sym_err_PLUSout_GT] = ACTIONS(2549), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2549), - [anon_sym_o_PLUSe_GT] = ACTIONS(2549), - [anon_sym_e_PLUSo_GT] = ACTIONS(2549), - [anon_sym_err_GT_GT] = ACTIONS(2547), - [anon_sym_out_GT_GT] = ACTIONS(2547), - [anon_sym_e_GT_GT] = ACTIONS(2547), - [anon_sym_o_GT_GT] = ACTIONS(2547), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2547), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2547), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2547), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2547), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2772), + [anon_sym_bit_DASHxor2] = ACTIONS(2772), + [anon_sym_bit_DASHor2] = ACTIONS(2772), + [anon_sym_err_GT] = ACTIONS(2774), + [anon_sym_out_GT] = ACTIONS(2774), + [anon_sym_e_GT] = ACTIONS(2774), + [anon_sym_o_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT] = ACTIONS(2774), + [anon_sym_err_GT_GT] = ACTIONS(2772), + [anon_sym_out_GT_GT] = ACTIONS(2772), + [anon_sym_e_GT_GT] = ACTIONS(2772), + [anon_sym_o_GT_GT] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1238)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1238), + [STATE(1240)] = { + [aux_sym__repeat_newline] = STATE(1219), + [sym_comment] = STATE(1240), [anon_sym_in] = ACTIONS(2776), - [sym__newline] = ACTIONS(2776), + [sym__newline] = ACTIONS(2937), [anon_sym_SEMI] = ACTIONS(2776), [anon_sym_PIPE] = ACTIONS(2776), [anon_sym_err_GT_PIPE] = ACTIONS(2776), @@ -137720,9 +137889,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), [anon_sym_RPAREN] = ACTIONS(2776), - [anon_sym_GT2] = ACTIONS(2806), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_GT2] = ACTIONS(2778), + [anon_sym_DASH2] = ACTIONS(2776), + [anon_sym_STAR2] = ACTIONS(2778), [anon_sym_and2] = ACTIONS(2776), [anon_sym_xor2] = ACTIONS(2776), [anon_sym_or2] = ACTIONS(2776), @@ -137733,23 +137902,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2776), [anon_sym_ends_DASHwith2] = ACTIONS(2776), [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2776), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2806), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), + [anon_sym_EQ_EQ2] = ACTIONS(2776), + [anon_sym_BANG_EQ2] = ACTIONS(2776), + [anon_sym_LT2] = ACTIONS(2778), + [anon_sym_LT_EQ2] = ACTIONS(2776), + [anon_sym_GT_EQ2] = ACTIONS(2776), [anon_sym_EQ_TILDE2] = ACTIONS(2776), [anon_sym_BANG_TILDE2] = ACTIONS(2776), [anon_sym_like2] = ACTIONS(2776), [anon_sym_not_DASHlike2] = ACTIONS(2776), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2778), + [anon_sym_mod2] = ACTIONS(2776), + [anon_sym_SLASH_SLASH2] = ACTIONS(2776), + [anon_sym_PLUS2] = ACTIONS(2778), + [anon_sym_bit_DASHshl2] = ACTIONS(2776), + [anon_sym_bit_DASHshr2] = ACTIONS(2776), [anon_sym_bit_DASHand2] = ACTIONS(2776), [anon_sym_bit_DASHxor2] = ACTIONS(2776), [anon_sym_bit_DASHor2] = ACTIONS(2776), @@ -137771,78 +137940,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1239)] = { - [sym_comment] = STATE(1239), - [ts_builtin_sym_end] = ACTIONS(890), - [anon_sym_in] = ACTIONS(890), - [sym__newline] = ACTIONS(890), - [anon_sym_SEMI] = ACTIONS(890), - [anon_sym_PIPE] = ACTIONS(890), - [anon_sym_err_GT_PIPE] = ACTIONS(890), - [anon_sym_out_GT_PIPE] = ACTIONS(890), - [anon_sym_e_GT_PIPE] = ACTIONS(890), - [anon_sym_o_GT_PIPE] = ACTIONS(890), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(890), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(890), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(890), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(890), - [anon_sym_GT2] = ACTIONS(793), - [anon_sym_DASH2] = ACTIONS(890), - [anon_sym_STAR2] = ACTIONS(793), - [anon_sym_and2] = ACTIONS(890), - [anon_sym_xor2] = ACTIONS(890), - [anon_sym_or2] = ACTIONS(890), - [anon_sym_not_DASHin2] = ACTIONS(890), - [anon_sym_has2] = ACTIONS(890), - [anon_sym_not_DASHhas2] = ACTIONS(890), - [anon_sym_starts_DASHwith2] = ACTIONS(890), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(890), - [anon_sym_ends_DASHwith2] = ACTIONS(890), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(890), - [anon_sym_EQ_EQ2] = ACTIONS(890), - [anon_sym_BANG_EQ2] = ACTIONS(890), - [anon_sym_LT2] = ACTIONS(793), - [anon_sym_LT_EQ2] = ACTIONS(890), - [anon_sym_GT_EQ2] = ACTIONS(890), - [anon_sym_EQ_TILDE2] = ACTIONS(890), - [anon_sym_BANG_TILDE2] = ACTIONS(890), - [anon_sym_like2] = ACTIONS(890), - [anon_sym_not_DASHlike2] = ACTIONS(890), - [anon_sym_STAR_STAR2] = ACTIONS(890), - [anon_sym_PLUS_PLUS2] = ACTIONS(890), - [anon_sym_SLASH2] = ACTIONS(793), - [anon_sym_mod2] = ACTIONS(890), - [anon_sym_SLASH_SLASH2] = ACTIONS(890), - [anon_sym_PLUS2] = ACTIONS(793), - [anon_sym_bit_DASHshl2] = ACTIONS(890), - [anon_sym_bit_DASHshr2] = ACTIONS(890), - [anon_sym_bit_DASHand2] = ACTIONS(890), - [anon_sym_bit_DASHxor2] = ACTIONS(890), - [anon_sym_bit_DASHor2] = ACTIONS(890), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [anon_sym_err_GT_GT] = ACTIONS(890), - [anon_sym_out_GT_GT] = ACTIONS(890), - [anon_sym_e_GT_GT] = ACTIONS(890), - [anon_sym_o_GT_GT] = ACTIONS(890), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(890), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(890), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(890), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(890), - [sym__unquoted_pattern] = ACTIONS(1830), + [STATE(1241)] = { + [aux_sym__repeat_newline] = STATE(1145), + [sym_comment] = STATE(1241), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_err_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_GT_PIPE] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), + [anon_sym_RPAREN] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2776), + [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_or2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2805), + [anon_sym_bit_DASHor2] = ACTIONS(2901), + [anon_sym_err_GT] = ACTIONS(2778), + [anon_sym_out_GT] = ACTIONS(2778), + [anon_sym_e_GT] = ACTIONS(2778), + [anon_sym_o_GT] = ACTIONS(2778), + [anon_sym_err_PLUSout_GT] = ACTIONS(2778), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2778), + [anon_sym_o_PLUSe_GT] = ACTIONS(2778), + [anon_sym_e_PLUSo_GT] = ACTIONS(2778), + [anon_sym_err_GT_GT] = ACTIONS(2776), + [anon_sym_out_GT_GT] = ACTIONS(2776), + [anon_sym_e_GT_GT] = ACTIONS(2776), + [anon_sym_o_GT_GT] = ACTIONS(2776), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1242)] = { + [aux_sym__repeat_newline] = STATE(1136), + [sym_comment] = STATE(1242), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_err_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_GT_PIPE] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), + [anon_sym_RPAREN] = ACTIONS(2772), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2772), + [anon_sym_xor2] = ACTIONS(2772), + [anon_sym_or2] = ACTIONS(2772), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2772), + [anon_sym_bit_DASHor2] = ACTIONS(2772), + [anon_sym_err_GT] = ACTIONS(2774), + [anon_sym_out_GT] = ACTIONS(2774), + [anon_sym_e_GT] = ACTIONS(2774), + [anon_sym_o_GT] = ACTIONS(2774), + [anon_sym_err_PLUSout_GT] = ACTIONS(2774), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), + [anon_sym_o_PLUSe_GT] = ACTIONS(2774), + [anon_sym_e_PLUSo_GT] = ACTIONS(2774), + [anon_sym_err_GT_GT] = ACTIONS(2772), + [anon_sym_out_GT_GT] = ACTIONS(2772), + [anon_sym_e_GT_GT] = ACTIONS(2772), + [anon_sym_o_GT_GT] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1243)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1243), + [anon_sym_in] = ACTIONS(2732), + [sym__newline] = ACTIONS(2732), + [anon_sym_SEMI] = ACTIONS(2732), + [anon_sym_PIPE] = ACTIONS(2732), + [anon_sym_err_GT_PIPE] = ACTIONS(2732), + [anon_sym_out_GT_PIPE] = ACTIONS(2732), + [anon_sym_e_GT_PIPE] = ACTIONS(2732), + [anon_sym_o_GT_PIPE] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2732), + [anon_sym_RPAREN] = ACTIONS(2732), + [anon_sym_GT2] = ACTIONS(2812), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2732), + [anon_sym_xor2] = ACTIONS(2732), + [anon_sym_or2] = ACTIONS(2732), + [anon_sym_not_DASHin2] = ACTIONS(2732), + [anon_sym_has2] = ACTIONS(2732), + [anon_sym_not_DASHhas2] = ACTIONS(2732), + [anon_sym_starts_DASHwith2] = ACTIONS(2732), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2732), + [anon_sym_ends_DASHwith2] = ACTIONS(2732), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2732), + [anon_sym_EQ_EQ2] = ACTIONS(2818), + [anon_sym_BANG_EQ2] = ACTIONS(2818), + [anon_sym_LT2] = ACTIONS(2812), + [anon_sym_LT_EQ2] = ACTIONS(2818), + [anon_sym_GT_EQ2] = ACTIONS(2818), + [anon_sym_EQ_TILDE2] = ACTIONS(2732), + [anon_sym_BANG_TILDE2] = ACTIONS(2732), + [anon_sym_like2] = ACTIONS(2732), + [anon_sym_not_DASHlike2] = ACTIONS(2732), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2828), + [anon_sym_bit_DASHshr2] = ACTIONS(2828), + [anon_sym_bit_DASHand2] = ACTIONS(2732), + [anon_sym_bit_DASHxor2] = ACTIONS(2732), + [anon_sym_bit_DASHor2] = ACTIONS(2732), + [anon_sym_err_GT] = ACTIONS(2734), + [anon_sym_out_GT] = ACTIONS(2734), + [anon_sym_e_GT] = ACTIONS(2734), + [anon_sym_o_GT] = ACTIONS(2734), + [anon_sym_err_PLUSout_GT] = ACTIONS(2734), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2734), + [anon_sym_o_PLUSe_GT] = ACTIONS(2734), + [anon_sym_e_PLUSo_GT] = ACTIONS(2734), + [anon_sym_err_GT_GT] = ACTIONS(2732), + [anon_sym_out_GT_GT] = ACTIONS(2732), + [anon_sym_e_GT_GT] = ACTIONS(2732), + [anon_sym_o_GT_GT] = ACTIONS(2732), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2732), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2732), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2732), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2732), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1240)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1240), - [anon_sym_in] = ACTIONS(2776), - [sym__newline] = ACTIONS(2776), + [STATE(1244)] = { + [aux_sym__repeat_newline] = STATE(1178), + [sym_comment] = STATE(1244), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2937), [anon_sym_SEMI] = ACTIONS(2776), [anon_sym_PIPE] = ACTIONS(2776), [anon_sym_err_GT_PIPE] = ACTIONS(2776), @@ -137854,39 +138157,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), [anon_sym_RPAREN] = ACTIONS(2776), - [anon_sym_GT2] = ACTIONS(2778), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2899), [anon_sym_xor2] = ACTIONS(2776), [anon_sym_or2] = ACTIONS(2776), - [anon_sym_not_DASHin2] = ACTIONS(2776), - [anon_sym_has2] = ACTIONS(2776), - [anon_sym_not_DASHhas2] = ACTIONS(2776), - [anon_sym_starts_DASHwith2] = ACTIONS(2776), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2776), - [anon_sym_ends_DASHwith2] = ACTIONS(2776), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2776), - [anon_sym_EQ_EQ2] = ACTIONS(2776), - [anon_sym_BANG_EQ2] = ACTIONS(2776), - [anon_sym_LT2] = ACTIONS(2778), - [anon_sym_LT_EQ2] = ACTIONS(2776), - [anon_sym_GT_EQ2] = ACTIONS(2776), - [anon_sym_EQ_TILDE2] = ACTIONS(2776), - [anon_sym_BANG_TILDE2] = ACTIONS(2776), - [anon_sym_like2] = ACTIONS(2776), - [anon_sym_not_DASHlike2] = ACTIONS(2776), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2776), - [anon_sym_bit_DASHxor2] = ACTIONS(2776), - [anon_sym_bit_DASHor2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2805), + [anon_sym_bit_DASHor2] = ACTIONS(2901), [anon_sym_err_GT] = ACTIONS(2778), [anon_sym_out_GT] = ACTIONS(2778), [anon_sym_e_GT] = ACTIONS(2778), @@ -137905,78 +138208,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1241)] = { - [sym_comment] = STATE(1241), - [aux_sym_cmd_identifier_token2] = ACTIONS(2662), - [anon_sym_in] = ACTIONS(2564), - [sym__newline] = ACTIONS(2562), - [anon_sym_SEMI] = ACTIONS(2562), - [anon_sym_PIPE] = ACTIONS(2562), - [anon_sym_err_GT_PIPE] = ACTIONS(2562), - [anon_sym_out_GT_PIPE] = ACTIONS(2562), - [anon_sym_e_GT_PIPE] = ACTIONS(2562), - [anon_sym_o_GT_PIPE] = ACTIONS(2562), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2562), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2562), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2562), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2562), - [anon_sym_GT2] = ACTIONS(2564), - [anon_sym_DASH2] = ACTIONS(2564), - [anon_sym_RBRACE] = ACTIONS(2562), - [anon_sym_STAR2] = ACTIONS(2564), - [anon_sym_and2] = ACTIONS(2564), - [anon_sym_xor2] = ACTIONS(2564), - [anon_sym_or2] = ACTIONS(2564), - [anon_sym_not_DASHin2] = ACTIONS(2564), - [anon_sym_has2] = ACTIONS(2564), - [anon_sym_not_DASHhas2] = ACTIONS(2564), - [anon_sym_starts_DASHwith2] = ACTIONS(2564), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2564), - [anon_sym_ends_DASHwith2] = ACTIONS(2564), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2564), - [anon_sym_EQ_EQ2] = ACTIONS(2562), - [anon_sym_BANG_EQ2] = ACTIONS(2562), - [anon_sym_LT2] = ACTIONS(2564), - [anon_sym_LT_EQ2] = ACTIONS(2562), - [anon_sym_GT_EQ2] = ACTIONS(2562), - [anon_sym_EQ_TILDE2] = ACTIONS(2562), - [anon_sym_BANG_TILDE2] = ACTIONS(2564), - [anon_sym_like2] = ACTIONS(2564), - [anon_sym_not_DASHlike2] = ACTIONS(2564), - [anon_sym_STAR_STAR2] = ACTIONS(2564), - [anon_sym_PLUS_PLUS2] = ACTIONS(2564), - [anon_sym_SLASH2] = ACTIONS(2564), - [anon_sym_mod2] = ACTIONS(2564), - [anon_sym_SLASH_SLASH2] = ACTIONS(2564), - [anon_sym_PLUS2] = ACTIONS(2564), - [anon_sym_bit_DASHshl2] = ACTIONS(2564), - [anon_sym_bit_DASHshr2] = ACTIONS(2564), - [anon_sym_bit_DASHand2] = ACTIONS(2564), - [anon_sym_bit_DASHxor2] = ACTIONS(2564), - [anon_sym_bit_DASHor2] = ACTIONS(2564), - [anon_sym_err_GT] = ACTIONS(2564), - [anon_sym_out_GT] = ACTIONS(2564), - [anon_sym_e_GT] = ACTIONS(2564), - [anon_sym_o_GT] = ACTIONS(2564), - [anon_sym_err_PLUSout_GT] = ACTIONS(2564), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2564), - [anon_sym_o_PLUSe_GT] = ACTIONS(2564), - [anon_sym_e_PLUSo_GT] = ACTIONS(2564), - [anon_sym_err_GT_GT] = ACTIONS(2562), - [anon_sym_out_GT_GT] = ACTIONS(2562), - [anon_sym_e_GT_GT] = ACTIONS(2562), - [anon_sym_o_GT_GT] = ACTIONS(2562), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2562), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2562), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2562), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2562), - [anon_sym_POUND] = ACTIONS(103), + [STATE(1245)] = { + [sym_comment] = STATE(1245), + [anon_sym_in] = ACTIONS(2925), + [sym__newline] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_err_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_GT_PIPE] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2509), + [anon_sym_RPAREN] = ACTIONS(2509), + [anon_sym_GT2] = ACTIONS(2907), + [anon_sym_DASH2] = ACTIONS(2909), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_STAR2] = ACTIONS(2911), + [anon_sym_and2] = ACTIONS(2509), + [anon_sym_xor2] = ACTIONS(2509), + [anon_sym_or2] = ACTIONS(2509), + [anon_sym_not_DASHin2] = ACTIONS(2925), + [anon_sym_has2] = ACTIONS(2925), + [anon_sym_not_DASHhas2] = ACTIONS(2925), + [anon_sym_starts_DASHwith2] = ACTIONS(2925), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2925), + [anon_sym_ends_DASHwith2] = ACTIONS(2925), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2925), + [anon_sym_EQ_EQ2] = ACTIONS(2913), + [anon_sym_BANG_EQ2] = ACTIONS(2913), + [anon_sym_LT2] = ACTIONS(2907), + [anon_sym_LT_EQ2] = ACTIONS(2913), + [anon_sym_GT_EQ2] = ACTIONS(2913), + [anon_sym_EQ_TILDE2] = ACTIONS(2927), + [anon_sym_BANG_TILDE2] = ACTIONS(2927), + [anon_sym_like2] = ACTIONS(2927), + [anon_sym_not_DASHlike2] = ACTIONS(2927), + [anon_sym_STAR_STAR2] = ACTIONS(2915), + [anon_sym_PLUS_PLUS2] = ACTIONS(2915), + [anon_sym_SLASH2] = ACTIONS(2911), + [anon_sym_mod2] = ACTIONS(2917), + [anon_sym_SLASH_SLASH2] = ACTIONS(2917), + [anon_sym_PLUS2] = ACTIONS(2919), + [anon_sym_bit_DASHshl2] = ACTIONS(2921), + [anon_sym_bit_DASHshr2] = ACTIONS(2921), + [anon_sym_bit_DASHand2] = ACTIONS(2509), + [anon_sym_bit_DASHxor2] = ACTIONS(2509), + [anon_sym_bit_DASHor2] = ACTIONS(2509), + [anon_sym_err_GT] = ACTIONS(2511), + [anon_sym_out_GT] = ACTIONS(2511), + [anon_sym_e_GT] = ACTIONS(2511), + [anon_sym_o_GT] = ACTIONS(2511), + [anon_sym_err_PLUSout_GT] = ACTIONS(2511), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2511), + [anon_sym_o_PLUSe_GT] = ACTIONS(2511), + [anon_sym_e_PLUSo_GT] = ACTIONS(2511), + [anon_sym_err_GT_GT] = ACTIONS(2509), + [anon_sym_out_GT_GT] = ACTIONS(2509), + [anon_sym_e_GT_GT] = ACTIONS(2509), + [anon_sym_o_GT_GT] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2509), + [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1242)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1242), - [anon_sym_in] = ACTIONS(2776), - [sym__newline] = ACTIONS(2776), + [STATE(1246)] = { + [aux_sym__repeat_newline] = STATE(1187), + [sym_comment] = STATE(1246), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2903), [anon_sym_SEMI] = ACTIONS(2776), [anon_sym_PIPE] = ACTIONS(2776), [anon_sym_err_GT_PIPE] = ACTIONS(2776), @@ -137988,39 +138291,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), [anon_sym_RPAREN] = ACTIONS(2776), - [anon_sym_GT2] = ACTIONS(2778), - [anon_sym_DASH2] = ACTIONS(2776), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2776), - [anon_sym_xor2] = ACTIONS(2776), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2899), + [anon_sym_xor2] = ACTIONS(2905), [anon_sym_or2] = ACTIONS(2776), - [anon_sym_not_DASHin2] = ACTIONS(2776), - [anon_sym_has2] = ACTIONS(2776), - [anon_sym_not_DASHhas2] = ACTIONS(2776), - [anon_sym_starts_DASHwith2] = ACTIONS(2776), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2776), - [anon_sym_ends_DASHwith2] = ACTIONS(2776), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2776), - [anon_sym_EQ_EQ2] = ACTIONS(2776), - [anon_sym_BANG_EQ2] = ACTIONS(2776), - [anon_sym_LT2] = ACTIONS(2778), - [anon_sym_LT_EQ2] = ACTIONS(2776), - [anon_sym_GT_EQ2] = ACTIONS(2776), - [anon_sym_EQ_TILDE2] = ACTIONS(2776), - [anon_sym_BANG_TILDE2] = ACTIONS(2776), - [anon_sym_like2] = ACTIONS(2776), - [anon_sym_not_DASHlike2] = ACTIONS(2776), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2778), - [anon_sym_bit_DASHshl2] = ACTIONS(2776), - [anon_sym_bit_DASHshr2] = ACTIONS(2776), - [anon_sym_bit_DASHand2] = ACTIONS(2776), - [anon_sym_bit_DASHxor2] = ACTIONS(2776), - [anon_sym_bit_DASHor2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2805), + [anon_sym_bit_DASHor2] = ACTIONS(2901), [anon_sym_err_GT] = ACTIONS(2778), [anon_sym_out_GT] = ACTIONS(2778), [anon_sym_e_GT] = ACTIONS(2778), @@ -138039,11 +138342,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1243)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1243), - [anon_sym_in] = ACTIONS(2776), - [sym__newline] = ACTIONS(2776), + [STATE(1247)] = { + [sym_comment] = STATE(1247), + [anon_sym_in] = ACTIONS(2925), + [sym__newline] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_err_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_GT_PIPE] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2509), + [anon_sym_RPAREN] = ACTIONS(2509), + [anon_sym_GT2] = ACTIONS(2907), + [anon_sym_DASH2] = ACTIONS(2909), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_STAR2] = ACTIONS(2911), + [anon_sym_and2] = ACTIONS(2509), + [anon_sym_xor2] = ACTIONS(2509), + [anon_sym_or2] = ACTIONS(2509), + [anon_sym_not_DASHin2] = ACTIONS(2925), + [anon_sym_has2] = ACTIONS(2925), + [anon_sym_not_DASHhas2] = ACTIONS(2925), + [anon_sym_starts_DASHwith2] = ACTIONS(2925), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2925), + [anon_sym_ends_DASHwith2] = ACTIONS(2925), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2925), + [anon_sym_EQ_EQ2] = ACTIONS(2913), + [anon_sym_BANG_EQ2] = ACTIONS(2913), + [anon_sym_LT2] = ACTIONS(2907), + [anon_sym_LT_EQ2] = ACTIONS(2913), + [anon_sym_GT_EQ2] = ACTIONS(2913), + [anon_sym_EQ_TILDE2] = ACTIONS(2927), + [anon_sym_BANG_TILDE2] = ACTIONS(2927), + [anon_sym_like2] = ACTIONS(2927), + [anon_sym_not_DASHlike2] = ACTIONS(2927), + [anon_sym_STAR_STAR2] = ACTIONS(2915), + [anon_sym_PLUS_PLUS2] = ACTIONS(2915), + [anon_sym_SLASH2] = ACTIONS(2911), + [anon_sym_mod2] = ACTIONS(2917), + [anon_sym_SLASH_SLASH2] = ACTIONS(2917), + [anon_sym_PLUS2] = ACTIONS(2919), + [anon_sym_bit_DASHshl2] = ACTIONS(2921), + [anon_sym_bit_DASHshr2] = ACTIONS(2921), + [anon_sym_bit_DASHand2] = ACTIONS(2929), + [anon_sym_bit_DASHxor2] = ACTIONS(2509), + [anon_sym_bit_DASHor2] = ACTIONS(2509), + [anon_sym_err_GT] = ACTIONS(2511), + [anon_sym_out_GT] = ACTIONS(2511), + [anon_sym_e_GT] = ACTIONS(2511), + [anon_sym_o_GT] = ACTIONS(2511), + [anon_sym_err_PLUSout_GT] = ACTIONS(2511), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2511), + [anon_sym_o_PLUSe_GT] = ACTIONS(2511), + [anon_sym_e_PLUSo_GT] = ACTIONS(2511), + [anon_sym_err_GT_GT] = ACTIONS(2509), + [anon_sym_out_GT_GT] = ACTIONS(2509), + [anon_sym_e_GT_GT] = ACTIONS(2509), + [anon_sym_o_GT_GT] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2509), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1248)] = { + [aux_sym__repeat_newline] = STATE(1190), + [sym_comment] = STATE(1248), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2937), [anon_sym_SEMI] = ACTIONS(2776), [anon_sym_PIPE] = ACTIONS(2776), [anon_sym_err_GT_PIPE] = ACTIONS(2776), @@ -138055,36 +138425,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), [anon_sym_RPAREN] = ACTIONS(2776), - [anon_sym_GT2] = ACTIONS(2778), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), [anon_sym_and2] = ACTIONS(2776), [anon_sym_xor2] = ACTIONS(2776), [anon_sym_or2] = ACTIONS(2776), - [anon_sym_not_DASHin2] = ACTIONS(2776), - [anon_sym_has2] = ACTIONS(2776), - [anon_sym_not_DASHhas2] = ACTIONS(2776), - [anon_sym_starts_DASHwith2] = ACTIONS(2776), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2776), - [anon_sym_ends_DASHwith2] = ACTIONS(2776), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2776), - [anon_sym_EQ_EQ2] = ACTIONS(2776), - [anon_sym_BANG_EQ2] = ACTIONS(2776), - [anon_sym_LT2] = ACTIONS(2778), - [anon_sym_LT_EQ2] = ACTIONS(2776), - [anon_sym_GT_EQ2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), [anon_sym_EQ_TILDE2] = ACTIONS(2776), [anon_sym_BANG_TILDE2] = ACTIONS(2776), [anon_sym_like2] = ACTIONS(2776), [anon_sym_not_DASHlike2] = ACTIONS(2776), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2776), - [anon_sym_bit_DASHshr2] = ACTIONS(2776), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), [anon_sym_bit_DASHand2] = ACTIONS(2776), [anon_sym_bit_DASHxor2] = ACTIONS(2776), [anon_sym_bit_DASHor2] = ACTIONS(2776), @@ -138106,78 +138476,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1244)] = { - [aux_sym__repeat_newline] = STATE(1261), - [sym_comment] = STATE(1244), - [anon_sym_in] = ACTIONS(2832), - [sym__newline] = ACTIONS(2864), - [anon_sym_SEMI] = ACTIONS(2676), - [anon_sym_PIPE] = ACTIONS(2676), - [anon_sym_err_GT_PIPE] = ACTIONS(2676), - [anon_sym_out_GT_PIPE] = ACTIONS(2676), - [anon_sym_e_GT_PIPE] = ACTIONS(2676), - [anon_sym_o_GT_PIPE] = ACTIONS(2676), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2676), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2676), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2676), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2676), - [anon_sym_RPAREN] = ACTIONS(2676), - [anon_sym_GT2] = ACTIONS(2836), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2676), - [anon_sym_xor2] = ACTIONS(2676), - [anon_sym_or2] = ACTIONS(2676), - [anon_sym_not_DASHin2] = ACTIONS(2832), - [anon_sym_has2] = ACTIONS(2832), - [anon_sym_not_DASHhas2] = ACTIONS(2832), - [anon_sym_starts_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), - [anon_sym_ends_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), - [anon_sym_EQ_EQ2] = ACTIONS(2846), - [anon_sym_BANG_EQ2] = ACTIONS(2846), - [anon_sym_LT2] = ACTIONS(2836), - [anon_sym_LT_EQ2] = ACTIONS(2846), - [anon_sym_GT_EQ2] = ACTIONS(2846), - [anon_sym_EQ_TILDE2] = ACTIONS(2676), - [anon_sym_BANG_TILDE2] = ACTIONS(2676), - [anon_sym_like2] = ACTIONS(2676), - [anon_sym_not_DASHlike2] = ACTIONS(2676), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), - [anon_sym_bit_DASHand2] = ACTIONS(2676), - [anon_sym_bit_DASHxor2] = ACTIONS(2676), - [anon_sym_bit_DASHor2] = ACTIONS(2676), - [anon_sym_err_GT] = ACTIONS(2678), - [anon_sym_out_GT] = ACTIONS(2678), - [anon_sym_e_GT] = ACTIONS(2678), - [anon_sym_o_GT] = ACTIONS(2678), - [anon_sym_err_PLUSout_GT] = ACTIONS(2678), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2678), - [anon_sym_o_PLUSe_GT] = ACTIONS(2678), - [anon_sym_e_PLUSo_GT] = ACTIONS(2678), - [anon_sym_err_GT_GT] = ACTIONS(2676), - [anon_sym_out_GT_GT] = ACTIONS(2676), - [anon_sym_e_GT_GT] = ACTIONS(2676), - [anon_sym_o_GT_GT] = ACTIONS(2676), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2676), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2676), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2676), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2676), + [STATE(1249)] = { + [aux_sym__repeat_newline] = STATE(1169), + [sym_comment] = STATE(1249), + [anon_sym_in] = ACTIONS(2726), + [sym__newline] = ACTIONS(2832), + [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_RPAREN] = ACTIONS(2726), + [anon_sym_GT2] = ACTIONS(2728), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2726), + [anon_sym_xor2] = ACTIONS(2726), + [anon_sym_or2] = ACTIONS(2726), + [anon_sym_not_DASHin2] = ACTIONS(2726), + [anon_sym_has2] = ACTIONS(2726), + [anon_sym_not_DASHhas2] = ACTIONS(2726), + [anon_sym_starts_DASHwith2] = ACTIONS(2726), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2726), + [anon_sym_ends_DASHwith2] = ACTIONS(2726), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2726), + [anon_sym_EQ_EQ2] = ACTIONS(2726), + [anon_sym_BANG_EQ2] = ACTIONS(2726), + [anon_sym_LT2] = ACTIONS(2728), + [anon_sym_LT_EQ2] = ACTIONS(2726), + [anon_sym_GT_EQ2] = ACTIONS(2726), + [anon_sym_EQ_TILDE2] = ACTIONS(2726), + [anon_sym_BANG_TILDE2] = ACTIONS(2726), + [anon_sym_like2] = ACTIONS(2726), + [anon_sym_not_DASHlike2] = ACTIONS(2726), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2726), + [anon_sym_bit_DASHxor2] = ACTIONS(2726), + [anon_sym_bit_DASHor2] = ACTIONS(2726), + [anon_sym_err_GT] = ACTIONS(2728), + [anon_sym_out_GT] = ACTIONS(2728), + [anon_sym_e_GT] = ACTIONS(2728), + [anon_sym_o_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT] = ACTIONS(2728), + [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), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1245)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1245), + [STATE(1250)] = { + [aux_sym__repeat_newline] = STATE(1170), + [sym_comment] = STATE(1250), + [anon_sym_in] = ACTIONS(2662), + [sym__newline] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2664), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2662), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2662), + [anon_sym_has2] = ACTIONS(2662), + [anon_sym_not_DASHhas2] = ACTIONS(2662), + [anon_sym_starts_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2662), + [anon_sym_ends_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2662), + [anon_sym_EQ_EQ2] = ACTIONS(2662), + [anon_sym_BANG_EQ2] = ACTIONS(2662), + [anon_sym_LT2] = ACTIONS(2664), + [anon_sym_LT_EQ2] = ACTIONS(2662), + [anon_sym_GT_EQ2] = ACTIONS(2662), + [anon_sym_EQ_TILDE2] = ACTIONS(2662), + [anon_sym_BANG_TILDE2] = ACTIONS(2662), + [anon_sym_like2] = ACTIONS(2662), + [anon_sym_not_DASHlike2] = ACTIONS(2662), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2662), + [anon_sym_bit_DASHshr2] = ACTIONS(2662), + [anon_sym_bit_DASHand2] = ACTIONS(2662), + [anon_sym_bit_DASHxor2] = ACTIONS(2662), + [anon_sym_bit_DASHor2] = ACTIONS(2662), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1251)] = { + [aux_sym__repeat_newline] = STATE(1139), + [sym_comment] = STATE(1251), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2832), + [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_RPAREN] = ACTIONS(2726), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2726), + [anon_sym_xor2] = ACTIONS(2726), + [anon_sym_or2] = ACTIONS(2726), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2805), + [anon_sym_bit_DASHor2] = ACTIONS(2901), + [anon_sym_err_GT] = ACTIONS(2728), + [anon_sym_out_GT] = ACTIONS(2728), + [anon_sym_e_GT] = ACTIONS(2728), + [anon_sym_o_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT] = ACTIONS(2728), + [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), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1252)] = { + [sym_comment] = STATE(1252), + [anon_sym_in] = ACTIONS(2925), + [sym__newline] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_err_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_GT_PIPE] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2509), + [anon_sym_RPAREN] = ACTIONS(2509), + [anon_sym_GT2] = ACTIONS(2907), + [anon_sym_DASH2] = ACTIONS(2909), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_STAR2] = ACTIONS(2911), + [anon_sym_and2] = ACTIONS(2509), + [anon_sym_xor2] = ACTIONS(2509), + [anon_sym_or2] = ACTIONS(2509), + [anon_sym_not_DASHin2] = ACTIONS(2925), + [anon_sym_has2] = ACTIONS(2925), + [anon_sym_not_DASHhas2] = ACTIONS(2925), + [anon_sym_starts_DASHwith2] = ACTIONS(2925), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2925), + [anon_sym_ends_DASHwith2] = ACTIONS(2925), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2925), + [anon_sym_EQ_EQ2] = ACTIONS(2913), + [anon_sym_BANG_EQ2] = ACTIONS(2913), + [anon_sym_LT2] = ACTIONS(2907), + [anon_sym_LT_EQ2] = ACTIONS(2913), + [anon_sym_GT_EQ2] = ACTIONS(2913), + [anon_sym_EQ_TILDE2] = ACTIONS(2927), + [anon_sym_BANG_TILDE2] = ACTIONS(2927), + [anon_sym_like2] = ACTIONS(2927), + [anon_sym_not_DASHlike2] = ACTIONS(2927), + [anon_sym_STAR_STAR2] = ACTIONS(2915), + [anon_sym_PLUS_PLUS2] = ACTIONS(2915), + [anon_sym_SLASH2] = ACTIONS(2911), + [anon_sym_mod2] = ACTIONS(2917), + [anon_sym_SLASH_SLASH2] = ACTIONS(2917), + [anon_sym_PLUS2] = ACTIONS(2919), + [anon_sym_bit_DASHshl2] = ACTIONS(2921), + [anon_sym_bit_DASHshr2] = ACTIONS(2921), + [anon_sym_bit_DASHand2] = ACTIONS(2929), + [anon_sym_bit_DASHxor2] = ACTIONS(2931), + [anon_sym_bit_DASHor2] = ACTIONS(2509), + [anon_sym_err_GT] = ACTIONS(2511), + [anon_sym_out_GT] = ACTIONS(2511), + [anon_sym_e_GT] = ACTIONS(2511), + [anon_sym_o_GT] = ACTIONS(2511), + [anon_sym_err_PLUSout_GT] = ACTIONS(2511), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2511), + [anon_sym_o_PLUSe_GT] = ACTIONS(2511), + [anon_sym_e_PLUSo_GT] = ACTIONS(2511), + [anon_sym_err_GT_GT] = ACTIONS(2509), + [anon_sym_out_GT_GT] = ACTIONS(2509), + [anon_sym_e_GT_GT] = ACTIONS(2509), + [anon_sym_o_GT_GT] = ACTIONS(2509), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2509), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2509), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2509), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2509), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1253)] = { + [aux_sym__repeat_newline] = STATE(528), + [sym_comment] = STATE(1253), + [anon_sym_in] = ACTIONS(2666), + [sym__newline] = ACTIONS(2666), + [anon_sym_SEMI] = ACTIONS(2666), + [anon_sym_PIPE] = ACTIONS(2666), + [anon_sym_err_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_GT_PIPE] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2666), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_GT2] = ACTIONS(2668), + [anon_sym_DASH2] = ACTIONS(2814), + [anon_sym_STAR2] = ACTIONS(2816), + [anon_sym_and2] = ACTIONS(2666), + [anon_sym_xor2] = ACTIONS(2666), + [anon_sym_or2] = ACTIONS(2666), + [anon_sym_not_DASHin2] = ACTIONS(2666), + [anon_sym_has2] = ACTIONS(2666), + [anon_sym_not_DASHhas2] = ACTIONS(2666), + [anon_sym_starts_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2666), + [anon_sym_ends_DASHwith2] = ACTIONS(2666), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2666), + [anon_sym_EQ_EQ2] = ACTIONS(2666), + [anon_sym_BANG_EQ2] = ACTIONS(2666), + [anon_sym_LT2] = ACTIONS(2668), + [anon_sym_LT_EQ2] = ACTIONS(2666), + [anon_sym_GT_EQ2] = ACTIONS(2666), + [anon_sym_EQ_TILDE2] = ACTIONS(2666), + [anon_sym_BANG_TILDE2] = ACTIONS(2666), + [anon_sym_like2] = ACTIONS(2666), + [anon_sym_not_DASHlike2] = ACTIONS(2666), + [anon_sym_STAR_STAR2] = ACTIONS(2822), + [anon_sym_PLUS_PLUS2] = ACTIONS(2822), + [anon_sym_SLASH2] = ACTIONS(2816), + [anon_sym_mod2] = ACTIONS(2824), + [anon_sym_SLASH_SLASH2] = ACTIONS(2824), + [anon_sym_PLUS2] = ACTIONS(2826), + [anon_sym_bit_DASHshl2] = ACTIONS(2666), + [anon_sym_bit_DASHshr2] = ACTIONS(2666), + [anon_sym_bit_DASHand2] = ACTIONS(2666), + [anon_sym_bit_DASHxor2] = ACTIONS(2666), + [anon_sym_bit_DASHor2] = ACTIONS(2666), + [anon_sym_err_GT] = ACTIONS(2668), + [anon_sym_out_GT] = ACTIONS(2668), + [anon_sym_e_GT] = ACTIONS(2668), + [anon_sym_o_GT] = ACTIONS(2668), + [anon_sym_err_PLUSout_GT] = ACTIONS(2668), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2668), + [anon_sym_o_PLUSe_GT] = ACTIONS(2668), + [anon_sym_e_PLUSo_GT] = ACTIONS(2668), + [anon_sym_err_GT_GT] = ACTIONS(2666), + [anon_sym_out_GT_GT] = ACTIONS(2666), + [anon_sym_e_GT_GT] = ACTIONS(2666), + [anon_sym_o_GT_GT] = ACTIONS(2666), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2666), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2666), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2666), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2666), + [anon_sym_POUND] = ACTIONS(3), + }, + [STATE(1254)] = { + [aux_sym__repeat_newline] = STATE(1198), + [sym_comment] = STATE(1254), [anon_sym_in] = ACTIONS(2776), - [sym__newline] = ACTIONS(2776), + [sym__newline] = ACTIONS(2937), [anon_sym_SEMI] = ACTIONS(2776), [anon_sym_PIPE] = ACTIONS(2776), [anon_sym_err_GT_PIPE] = ACTIONS(2776), @@ -138190,8 +138828,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), [anon_sym_RPAREN] = ACTIONS(2776), [anon_sym_GT2] = ACTIONS(2778), - [anon_sym_DASH2] = ACTIONS(2776), - [anon_sym_STAR2] = ACTIONS(2778), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), [anon_sym_and2] = ACTIONS(2776), [anon_sym_xor2] = ACTIONS(2776), [anon_sym_or2] = ACTIONS(2776), @@ -138211,12 +138849,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_TILDE2] = ACTIONS(2776), [anon_sym_like2] = ACTIONS(2776), [anon_sym_not_DASHlike2] = ACTIONS(2776), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2778), - [anon_sym_mod2] = ACTIONS(2776), - [anon_sym_SLASH_SLASH2] = ACTIONS(2776), - [anon_sym_PLUS2] = ACTIONS(2778), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), [anon_sym_bit_DASHshl2] = ACTIONS(2776), [anon_sym_bit_DASHshr2] = ACTIONS(2776), [anon_sym_bit_DASHand2] = ACTIONS(2776), @@ -138240,145 +138878,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1246)] = { - [aux_sym__repeat_newline] = STATE(1216), - [sym_comment] = STATE(1246), - [anon_sym_in] = ACTIONS(2832), - [sym__newline] = ACTIONS(2870), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_err_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_GT_PIPE] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2684), - [anon_sym_GT2] = ACTIONS(2836), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2684), - [anon_sym_xor2] = ACTIONS(2684), - [anon_sym_or2] = ACTIONS(2684), - [anon_sym_not_DASHin2] = ACTIONS(2832), - [anon_sym_has2] = ACTIONS(2832), - [anon_sym_not_DASHhas2] = ACTIONS(2832), - [anon_sym_starts_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), - [anon_sym_ends_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), - [anon_sym_EQ_EQ2] = ACTIONS(2846), - [anon_sym_BANG_EQ2] = ACTIONS(2846), - [anon_sym_LT2] = ACTIONS(2836), - [anon_sym_LT_EQ2] = ACTIONS(2846), - [anon_sym_GT_EQ2] = ACTIONS(2846), - [anon_sym_EQ_TILDE2] = ACTIONS(2848), - [anon_sym_BANG_TILDE2] = ACTIONS(2848), - [anon_sym_like2] = ACTIONS(2848), - [anon_sym_not_DASHlike2] = ACTIONS(2848), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2684), - [anon_sym_bit_DASHor2] = ACTIONS(2684), - [anon_sym_err_GT] = ACTIONS(2686), - [anon_sym_out_GT] = ACTIONS(2686), - [anon_sym_e_GT] = ACTIONS(2686), - [anon_sym_o_GT] = ACTIONS(2686), - [anon_sym_err_PLUSout_GT] = ACTIONS(2686), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), - [anon_sym_o_PLUSe_GT] = ACTIONS(2686), - [anon_sym_e_PLUSo_GT] = ACTIONS(2686), - [anon_sym_err_GT_GT] = ACTIONS(2684), - [anon_sym_out_GT_GT] = ACTIONS(2684), - [anon_sym_e_GT_GT] = ACTIONS(2684), - [anon_sym_o_GT_GT] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1247)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1247), - [anon_sym_in] = ACTIONS(2804), - [sym__newline] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym_PIPE] = ACTIONS(2776), - [anon_sym_err_GT_PIPE] = ACTIONS(2776), - [anon_sym_out_GT_PIPE] = ACTIONS(2776), - [anon_sym_e_GT_PIPE] = ACTIONS(2776), - [anon_sym_o_GT_PIPE] = ACTIONS(2776), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), - [anon_sym_RPAREN] = ACTIONS(2776), - [anon_sym_GT2] = ACTIONS(2806), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2776), - [anon_sym_xor2] = ACTIONS(2776), - [anon_sym_or2] = ACTIONS(2776), - [anon_sym_not_DASHin2] = ACTIONS(2804), - [anon_sym_has2] = ACTIONS(2804), - [anon_sym_not_DASHhas2] = ACTIONS(2804), - [anon_sym_starts_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), - [anon_sym_ends_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2806), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2830), - [anon_sym_err_GT] = ACTIONS(2778), - [anon_sym_out_GT] = ACTIONS(2778), - [anon_sym_e_GT] = ACTIONS(2778), - [anon_sym_o_GT] = ACTIONS(2778), - [anon_sym_err_PLUSout_GT] = ACTIONS(2778), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2778), - [anon_sym_o_PLUSe_GT] = ACTIONS(2778), - [anon_sym_e_PLUSo_GT] = ACTIONS(2778), - [anon_sym_err_GT_GT] = ACTIONS(2776), - [anon_sym_out_GT_GT] = ACTIONS(2776), - [anon_sym_e_GT_GT] = ACTIONS(2776), - [anon_sym_o_GT_GT] = ACTIONS(2776), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1248)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1248), - [anon_sym_in] = ACTIONS(2804), - [sym__newline] = ACTIONS(2776), + [STATE(1255)] = { + [aux_sym__repeat_newline] = STATE(1201), + [sym_comment] = STATE(1255), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2937), [anon_sym_SEMI] = ACTIONS(2776), [anon_sym_PIPE] = ACTIONS(2776), [anon_sym_err_GT_PIPE] = ACTIONS(2776), @@ -138390,36 +138894,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), [anon_sym_RPAREN] = ACTIONS(2776), - [anon_sym_GT2] = ACTIONS(2806), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), [anon_sym_and2] = ACTIONS(2776), [anon_sym_xor2] = ACTIONS(2776), [anon_sym_or2] = ACTIONS(2776), - [anon_sym_not_DASHin2] = ACTIONS(2804), - [anon_sym_has2] = ACTIONS(2804), - [anon_sym_not_DASHhas2] = ACTIONS(2804), - [anon_sym_starts_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), - [anon_sym_ends_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2806), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), [anon_sym_bit_DASHand2] = ACTIONS(2776), [anon_sym_bit_DASHxor2] = ACTIONS(2776), [anon_sym_bit_DASHor2] = ACTIONS(2776), @@ -138441,11 +138945,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1249)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1249), - [anon_sym_in] = ACTIONS(2804), - [sym__newline] = ACTIONS(2776), + [STATE(1256)] = { + [aux_sym__repeat_newline] = STATE(1203), + [sym_comment] = STATE(1256), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2937), [anon_sym_SEMI] = ACTIONS(2776), [anon_sym_PIPE] = ACTIONS(2776), [anon_sym_err_GT_PIPE] = ACTIONS(2776), @@ -138457,173 +138961,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), [anon_sym_RPAREN] = ACTIONS(2776), - [anon_sym_GT2] = ACTIONS(2806), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2812), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2776), [anon_sym_xor2] = ACTIONS(2776), [anon_sym_or2] = ACTIONS(2776), - [anon_sym_not_DASHin2] = ACTIONS(2804), - [anon_sym_has2] = ACTIONS(2804), - [anon_sym_not_DASHhas2] = ACTIONS(2804), - [anon_sym_starts_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), - [anon_sym_ends_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2806), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2830), - [anon_sym_err_GT] = ACTIONS(2778), - [anon_sym_out_GT] = ACTIONS(2778), - [anon_sym_e_GT] = ACTIONS(2778), - [anon_sym_o_GT] = ACTIONS(2778), - [anon_sym_err_PLUSout_GT] = ACTIONS(2778), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2778), - [anon_sym_o_PLUSe_GT] = ACTIONS(2778), - [anon_sym_e_PLUSo_GT] = ACTIONS(2778), - [anon_sym_err_GT_GT] = ACTIONS(2776), - [anon_sym_out_GT_GT] = ACTIONS(2776), - [anon_sym_e_GT_GT] = ACTIONS(2776), - [anon_sym_o_GT_GT] = ACTIONS(2776), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2776), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2776), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2776), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1250)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1250), - [anon_sym_in] = ACTIONS(2688), - [sym__newline] = ACTIONS(2688), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_err_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_GT_PIPE] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_GT2] = ACTIONS(2806), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2688), - [anon_sym_xor2] = ACTIONS(2688), - [anon_sym_or2] = ACTIONS(2688), - [anon_sym_not_DASHin2] = ACTIONS(2688), - [anon_sym_has2] = ACTIONS(2688), - [anon_sym_not_DASHhas2] = ACTIONS(2688), - [anon_sym_starts_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2688), - [anon_sym_ends_DASHwith2] = ACTIONS(2688), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2688), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2806), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2688), - [anon_sym_BANG_TILDE2] = ACTIONS(2688), - [anon_sym_like2] = ACTIONS(2688), - [anon_sym_not_DASHlike2] = ACTIONS(2688), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2688), - [anon_sym_bit_DASHxor2] = ACTIONS(2688), - [anon_sym_bit_DASHor2] = ACTIONS(2688), - [anon_sym_err_GT] = ACTIONS(2690), - [anon_sym_out_GT] = ACTIONS(2690), - [anon_sym_e_GT] = ACTIONS(2690), - [anon_sym_o_GT] = ACTIONS(2690), - [anon_sym_err_PLUSout_GT] = ACTIONS(2690), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2690), - [anon_sym_o_PLUSe_GT] = ACTIONS(2690), - [anon_sym_e_PLUSo_GT] = ACTIONS(2690), - [anon_sym_err_GT_GT] = ACTIONS(2688), - [anon_sym_out_GT_GT] = ACTIONS(2688), - [anon_sym_e_GT_GT] = ACTIONS(2688), - [anon_sym_o_GT_GT] = ACTIONS(2688), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2688), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2688), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2688), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2688), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1251)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1251), - [anon_sym_in] = ACTIONS(2804), - [sym__newline] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym_PIPE] = ACTIONS(2776), - [anon_sym_err_GT_PIPE] = ACTIONS(2776), - [anon_sym_out_GT_PIPE] = ACTIONS(2776), - [anon_sym_e_GT_PIPE] = ACTIONS(2776), - [anon_sym_o_GT_PIPE] = ACTIONS(2776), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2776), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2776), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), - [anon_sym_RPAREN] = ACTIONS(2776), - [anon_sym_GT2] = ACTIONS(2806), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2812), - [anon_sym_xor2] = ACTIONS(2873), - [anon_sym_or2] = ACTIONS(2776), - [anon_sym_not_DASHin2] = ACTIONS(2804), - [anon_sym_has2] = ACTIONS(2804), - [anon_sym_not_DASHhas2] = ACTIONS(2804), - [anon_sym_starts_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), - [anon_sym_ends_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2806), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2828), - [anon_sym_bit_DASHor2] = ACTIONS(2830), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2776), + [anon_sym_bit_DASHor2] = ACTIONS(2776), [anon_sym_err_GT] = ACTIONS(2778), [anon_sym_out_GT] = ACTIONS(2778), [anon_sym_e_GT] = ACTIONS(2778), @@ -138642,78 +139012,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1252)] = { - [sym_comment] = STATE(1252), - [anon_sym_in] = ACTIONS(2194), - [sym__newline] = ACTIONS(2420), - [anon_sym_SEMI] = ACTIONS(2423), - [anon_sym_PIPE] = ACTIONS(2423), - [anon_sym_err_GT_PIPE] = ACTIONS(2423), - [anon_sym_out_GT_PIPE] = ACTIONS(2423), - [anon_sym_e_GT_PIPE] = ACTIONS(2423), - [anon_sym_o_GT_PIPE] = ACTIONS(2423), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2423), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2423), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2423), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2423), - [anon_sym_RPAREN] = ACTIONS(2423), - [anon_sym_GT2] = ACTIONS(2196), - [anon_sym_DASH2] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_STAR2] = ACTIONS(2196), - [anon_sym_and2] = ACTIONS(2194), - [anon_sym_xor2] = ACTIONS(2194), - [anon_sym_or2] = ACTIONS(2194), - [anon_sym_not_DASHin2] = ACTIONS(2194), - [anon_sym_has2] = ACTIONS(2194), - [anon_sym_not_DASHhas2] = ACTIONS(2194), - [anon_sym_starts_DASHwith2] = ACTIONS(2194), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2194), - [anon_sym_ends_DASHwith2] = ACTIONS(2194), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2194), - [anon_sym_EQ_EQ2] = ACTIONS(2194), - [anon_sym_BANG_EQ2] = ACTIONS(2194), - [anon_sym_LT2] = ACTIONS(2196), - [anon_sym_LT_EQ2] = ACTIONS(2194), - [anon_sym_GT_EQ2] = ACTIONS(2194), - [anon_sym_EQ_TILDE2] = ACTIONS(2194), - [anon_sym_BANG_TILDE2] = ACTIONS(2194), - [anon_sym_like2] = ACTIONS(2194), - [anon_sym_not_DASHlike2] = ACTIONS(2194), - [anon_sym_STAR_STAR2] = ACTIONS(2194), - [anon_sym_PLUS_PLUS2] = ACTIONS(2194), - [anon_sym_SLASH2] = ACTIONS(2196), - [anon_sym_mod2] = ACTIONS(2194), - [anon_sym_SLASH_SLASH2] = ACTIONS(2194), - [anon_sym_PLUS2] = ACTIONS(2196), - [anon_sym_bit_DASHshl2] = ACTIONS(2194), - [anon_sym_bit_DASHshr2] = ACTIONS(2194), - [anon_sym_bit_DASHand2] = ACTIONS(2194), - [anon_sym_bit_DASHxor2] = ACTIONS(2194), - [anon_sym_bit_DASHor2] = ACTIONS(2194), - [anon_sym_err_GT] = ACTIONS(2425), - [anon_sym_out_GT] = ACTIONS(2425), - [anon_sym_e_GT] = ACTIONS(2425), - [anon_sym_o_GT] = ACTIONS(2425), - [anon_sym_err_PLUSout_GT] = ACTIONS(2425), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2425), - [anon_sym_o_PLUSe_GT] = ACTIONS(2425), - [anon_sym_e_PLUSo_GT] = ACTIONS(2425), - [anon_sym_err_GT_GT] = ACTIONS(2423), - [anon_sym_out_GT_GT] = ACTIONS(2423), - [anon_sym_e_GT_GT] = ACTIONS(2423), - [anon_sym_o_GT_GT] = ACTIONS(2423), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2423), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2423), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2423), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2423), + [STATE(1257)] = { + [aux_sym__repeat_newline] = STATE(1152), + [sym_comment] = STATE(1257), + [anon_sym_in] = ACTIONS(2662), + [sym__newline] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_err_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_GT_PIPE] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2662), + [anon_sym_xor2] = ACTIONS(2662), + [anon_sym_or2] = ACTIONS(2662), + [anon_sym_not_DASHin2] = ACTIONS(2662), + [anon_sym_has2] = ACTIONS(2662), + [anon_sym_not_DASHhas2] = ACTIONS(2662), + [anon_sym_starts_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2662), + [anon_sym_ends_DASHwith2] = ACTIONS(2662), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2662), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2662), + [anon_sym_BANG_TILDE2] = ACTIONS(2662), + [anon_sym_like2] = ACTIONS(2662), + [anon_sym_not_DASHlike2] = ACTIONS(2662), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2662), + [anon_sym_bit_DASHxor2] = ACTIONS(2662), + [anon_sym_bit_DASHor2] = ACTIONS(2662), + [anon_sym_err_GT] = ACTIONS(2664), + [anon_sym_out_GT] = ACTIONS(2664), + [anon_sym_e_GT] = ACTIONS(2664), + [anon_sym_o_GT] = ACTIONS(2664), + [anon_sym_err_PLUSout_GT] = ACTIONS(2664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2664), + [anon_sym_o_PLUSe_GT] = ACTIONS(2664), + [anon_sym_e_PLUSo_GT] = ACTIONS(2664), + [anon_sym_err_GT_GT] = ACTIONS(2662), + [anon_sym_out_GT_GT] = ACTIONS(2662), + [anon_sym_e_GT_GT] = ACTIONS(2662), + [anon_sym_o_GT_GT] = ACTIONS(2662), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2662), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2662), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2662), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2662), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1253)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1253), - [anon_sym_in] = ACTIONS(2804), - [sym__newline] = ACTIONS(2776), + [STATE(1258)] = { + [aux_sym__repeat_newline] = STATE(1209), + [sym_comment] = STATE(1258), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2937), [anon_sym_SEMI] = ACTIONS(2776), [anon_sym_PIPE] = ACTIONS(2776), [anon_sym_err_GT_PIPE] = ACTIONS(2776), @@ -138725,38 +139095,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2776), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2776), [anon_sym_RPAREN] = ACTIONS(2776), - [anon_sym_GT2] = ACTIONS(2806), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), [anon_sym_and2] = ACTIONS(2776), [anon_sym_xor2] = ACTIONS(2776), [anon_sym_or2] = ACTIONS(2776), - [anon_sym_not_DASHin2] = ACTIONS(2804), - [anon_sym_has2] = ACTIONS(2804), - [anon_sym_not_DASHhas2] = ACTIONS(2804), - [anon_sym_starts_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), - [anon_sym_ends_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2806), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2776), - [anon_sym_BANG_TILDE2] = ACTIONS(2776), - [anon_sym_like2] = ACTIONS(2776), - [anon_sym_not_DASHlike2] = ACTIONS(2776), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2776), - [anon_sym_bit_DASHxor2] = ACTIONS(2776), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2805), [anon_sym_bit_DASHor2] = ACTIONS(2776), [anon_sym_err_GT] = ACTIONS(2778), [anon_sym_out_GT] = ACTIONS(2778), @@ -138776,266 +139146,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2776), [anon_sym_POUND] = ACTIONS(3), }, - [STATE(1254)] = { - [aux_sym__repeat_newline] = STATE(517), - [sym_comment] = STATE(1254), - [anon_sym_in] = ACTIONS(2804), - [sym__newline] = ACTIONS(2692), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2692), - [anon_sym_err_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_GT_PIPE] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_GT2] = ACTIONS(2806), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2692), - [anon_sym_xor2] = ACTIONS(2692), - [anon_sym_or2] = ACTIONS(2692), - [anon_sym_not_DASHin2] = ACTIONS(2804), - [anon_sym_has2] = ACTIONS(2804), - [anon_sym_not_DASHhas2] = ACTIONS(2804), - [anon_sym_starts_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), - [anon_sym_ends_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2806), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2816), - [anon_sym_BANG_TILDE2] = ACTIONS(2816), - [anon_sym_like2] = ACTIONS(2816), - [anon_sym_not_DASHlike2] = ACTIONS(2816), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2826), - [anon_sym_bit_DASHxor2] = ACTIONS(2692), - [anon_sym_bit_DASHor2] = ACTIONS(2692), - [anon_sym_err_GT] = ACTIONS(2694), - [anon_sym_out_GT] = ACTIONS(2694), - [anon_sym_e_GT] = ACTIONS(2694), - [anon_sym_o_GT] = ACTIONS(2694), - [anon_sym_err_PLUSout_GT] = ACTIONS(2694), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2694), - [anon_sym_o_PLUSe_GT] = ACTIONS(2694), - [anon_sym_e_PLUSo_GT] = ACTIONS(2694), - [anon_sym_err_GT_GT] = ACTIONS(2692), - [anon_sym_out_GT_GT] = ACTIONS(2692), - [anon_sym_e_GT_GT] = ACTIONS(2692), - [anon_sym_o_GT_GT] = ACTIONS(2692), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2692), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2692), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2692), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2692), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1255)] = { - [sym_comment] = STATE(1255), - [anon_sym_in] = ACTIONS(2547), - [sym__newline] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), - [anon_sym_PIPE] = ACTIONS(2547), - [anon_sym_err_GT_PIPE] = ACTIONS(2547), - [anon_sym_out_GT_PIPE] = ACTIONS(2547), - [anon_sym_e_GT_PIPE] = ACTIONS(2547), - [anon_sym_o_GT_PIPE] = ACTIONS(2547), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2547), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2547), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2547), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2547), - [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_GT2] = ACTIONS(2549), - [anon_sym_DASH2] = ACTIONS(2784), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_STAR2] = ACTIONS(2786), - [anon_sym_and2] = ACTIONS(2547), - [anon_sym_xor2] = ACTIONS(2547), - [anon_sym_or2] = ACTIONS(2547), - [anon_sym_not_DASHin2] = ACTIONS(2547), - [anon_sym_has2] = ACTIONS(2547), - [anon_sym_not_DASHhas2] = ACTIONS(2547), - [anon_sym_starts_DASHwith2] = ACTIONS(2547), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2547), - [anon_sym_ends_DASHwith2] = ACTIONS(2547), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2547), - [anon_sym_EQ_EQ2] = ACTIONS(2547), - [anon_sym_BANG_EQ2] = ACTIONS(2547), - [anon_sym_LT2] = ACTIONS(2549), - [anon_sym_LT_EQ2] = ACTIONS(2547), - [anon_sym_GT_EQ2] = ACTIONS(2547), - [anon_sym_EQ_TILDE2] = ACTIONS(2547), - [anon_sym_BANG_TILDE2] = ACTIONS(2547), - [anon_sym_like2] = ACTIONS(2547), - [anon_sym_not_DASHlike2] = ACTIONS(2547), - [anon_sym_STAR_STAR2] = ACTIONS(2792), - [anon_sym_PLUS_PLUS2] = ACTIONS(2792), - [anon_sym_SLASH2] = ACTIONS(2786), - [anon_sym_mod2] = ACTIONS(2794), - [anon_sym_SLASH_SLASH2] = ACTIONS(2794), - [anon_sym_PLUS2] = ACTIONS(2796), - [anon_sym_bit_DASHshl2] = ACTIONS(2547), - [anon_sym_bit_DASHshr2] = ACTIONS(2547), - [anon_sym_bit_DASHand2] = ACTIONS(2547), - [anon_sym_bit_DASHxor2] = ACTIONS(2547), - [anon_sym_bit_DASHor2] = ACTIONS(2547), - [anon_sym_err_GT] = ACTIONS(2549), - [anon_sym_out_GT] = ACTIONS(2549), - [anon_sym_e_GT] = ACTIONS(2549), - [anon_sym_o_GT] = ACTIONS(2549), - [anon_sym_err_PLUSout_GT] = ACTIONS(2549), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2549), - [anon_sym_o_PLUSe_GT] = ACTIONS(2549), - [anon_sym_e_PLUSo_GT] = ACTIONS(2549), - [anon_sym_err_GT_GT] = ACTIONS(2547), - [anon_sym_out_GT_GT] = ACTIONS(2547), - [anon_sym_e_GT_GT] = ACTIONS(2547), - [anon_sym_o_GT_GT] = ACTIONS(2547), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2547), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2547), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2547), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2547), - [anon_sym_POUND] = ACTIONS(3), - }, - [STATE(1256)] = { - [sym__expression] = STATE(4752), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2216), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1826), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_comment] = STATE(1256), - [aux_sym_cmd_identifier_token2] = ACTIONS(2533), - [anon_sym_true] = ACTIONS(2535), - [anon_sym_false] = ACTIONS(2535), - [anon_sym_null] = ACTIONS(2537), - [aux_sym_cmd_identifier_token3] = ACTIONS(2539), - [aux_sym_cmd_identifier_token4] = ACTIONS(2539), - [aux_sym_cmd_identifier_token5] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_DOT_DOT] = ACTIONS(169), - [aux_sym_expr_unary_token1] = ACTIONS(173), - [anon_sym_DOT_DOT_EQ] = ACTIONS(179), - [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1976), - [aux_sym__val_number_decimal_token3] = ACTIONS(2543), - [aux_sym__val_number_decimal_token4] = ACTIONS(2543), - [aux_sym__val_number_token1] = ACTIONS(2539), - [aux_sym__val_number_token2] = ACTIONS(2539), - [aux_sym__val_number_token3] = ACTIONS(2539), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2545), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_BQUOTE] = ACTIONS(201), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(203), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(205), - [anon_sym_POUND] = ACTIONS(103), - [sym_raw_string_begin] = ACTIONS(211), - }, - [STATE(1257)] = { - [sym__expression] = STATE(4786), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2216), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1826), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_comment] = STATE(1257), - [aux_sym_cmd_identifier_token2] = ACTIONS(2533), - [anon_sym_true] = ACTIONS(2535), - [anon_sym_false] = ACTIONS(2535), - [anon_sym_null] = ACTIONS(2537), - [aux_sym_cmd_identifier_token3] = ACTIONS(2539), - [aux_sym_cmd_identifier_token4] = ACTIONS(2539), - [aux_sym_cmd_identifier_token5] = ACTIONS(2539), + [STATE(1259)] = { + [sym__expression] = STATE(4753), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2225), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1831), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_comment] = STATE(1259), + [aux_sym_cmd_identifier_token2] = ACTIONS(2561), + [anon_sym_true] = ACTIONS(2563), + [anon_sym_false] = ACTIONS(2563), + [anon_sym_null] = ACTIONS(2565), + [aux_sym_cmd_identifier_token3] = ACTIONS(2567), + [aux_sym_cmd_identifier_token4] = ACTIONS(2567), + [aux_sym_cmd_identifier_token5] = ACTIONS(2567), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1976), - [aux_sym__val_number_decimal_token3] = ACTIONS(2543), - [aux_sym__val_number_decimal_token4] = ACTIONS(2543), - [aux_sym__val_number_token1] = ACTIONS(2539), - [aux_sym__val_number_token2] = ACTIONS(2539), - [aux_sym__val_number_token3] = ACTIONS(2539), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2036), + [aux_sym__val_number_decimal_token3] = ACTIONS(2571), + [aux_sym__val_number_decimal_token4] = ACTIONS(2571), + [aux_sym__val_number_token1] = ACTIONS(2567), + [aux_sym__val_number_token2] = ACTIONS(2567), + [aux_sym__val_number_token3] = ACTIONS(2567), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2545), + [sym_val_date] = ACTIONS(2573), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -139044,65 +139213,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(1258)] = { - [sym__expression] = STATE(4792), - [sym_expr_unary] = STATE(926), - [sym__expr_unary_minus] = STATE(958), - [sym_expr_binary] = STATE(926), - [sym__expr_binary_expression] = STATE(2216), - [sym_expr_parenthesized] = STATE(674), - [sym_val_range] = STATE(926), - [sym__value] = STATE(926), - [sym_val_nothing] = STATE(922), - [sym_val_bool] = STATE(922), - [sym_val_variable] = STATE(677), - [sym_val_cellpath] = STATE(922), - [sym_val_number] = STATE(922), - [sym__val_number_decimal] = STATE(1826), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(922), - [sym_val_filesize] = STATE(922), - [sym_val_binary] = STATE(922), - [sym_val_string] = STATE(922), - [sym__raw_str] = STATE(422), - [sym__str_double_quotes] = STATE(422), - [sym__str_single_quotes] = STATE(422), - [sym__str_back_ticks] = STATE(422), - [sym_val_interpolated] = STATE(922), - [sym__inter_single_quotes] = STATE(847), - [sym__inter_double_quotes] = STATE(848), - [sym_val_list] = STATE(922), - [sym_val_record] = STATE(922), - [sym_val_table] = STATE(922), - [sym_val_closure] = STATE(922), - [sym_comment] = STATE(1258), - [aux_sym_cmd_identifier_token2] = ACTIONS(2533), - [anon_sym_true] = ACTIONS(2535), - [anon_sym_false] = ACTIONS(2535), - [anon_sym_null] = ACTIONS(2537), - [aux_sym_cmd_identifier_token3] = ACTIONS(2539), - [aux_sym_cmd_identifier_token4] = ACTIONS(2539), - [aux_sym_cmd_identifier_token5] = ACTIONS(2539), + [STATE(1260)] = { + [sym__expression] = STATE(4788), + [sym_expr_unary] = STATE(958), + [sym__expr_unary_minus] = STATE(916), + [sym_expr_binary] = STATE(958), + [sym__expr_binary_expression] = STATE(2225), + [sym_expr_parenthesized] = STATE(692), + [sym_val_range] = STATE(958), + [sym__value] = STATE(958), + [sym_val_nothing] = STATE(954), + [sym_val_bool] = STATE(954), + [sym_val_variable] = STATE(705), + [sym_val_cellpath] = STATE(954), + [sym_val_number] = STATE(954), + [sym__val_number_decimal] = STATE(1831), + [sym__val_number] = STATE(693), + [sym_val_duration] = STATE(954), + [sym_val_filesize] = STATE(954), + [sym_val_binary] = STATE(954), + [sym_val_string] = STATE(954), + [sym__raw_str] = STATE(414), + [sym__str_double_quotes] = STATE(414), + [sym__str_single_quotes] = STATE(414), + [sym__str_back_ticks] = STATE(414), + [sym_val_interpolated] = STATE(954), + [sym__inter_single_quotes] = STATE(876), + [sym__inter_double_quotes] = STATE(878), + [sym_val_list] = STATE(954), + [sym_val_record] = STATE(954), + [sym_val_table] = STATE(954), + [sym_val_closure] = STATE(954), + [sym_comment] = STATE(1260), + [aux_sym_cmd_identifier_token2] = ACTIONS(2561), + [anon_sym_true] = ACTIONS(2563), + [anon_sym_false] = ACTIONS(2563), + [anon_sym_null] = ACTIONS(2565), + [aux_sym_cmd_identifier_token3] = ACTIONS(2567), + [aux_sym_cmd_identifier_token4] = ACTIONS(2567), + [aux_sym_cmd_identifier_token5] = ACTIONS(2567), [anon_sym_LBRACK] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(287), [anon_sym_LBRACE] = ACTIONS(165), [anon_sym_DOT_DOT] = ACTIONS(169), [aux_sym_expr_unary_token1] = ACTIONS(173), [anon_sym_DOT_DOT_EQ] = ACTIONS(179), [anon_sym_DOT_DOT_LT] = ACTIONS(179), - [aux_sym__val_number_decimal_token1] = ACTIONS(1976), - [aux_sym__val_number_decimal_token2] = ACTIONS(1976), - [aux_sym__val_number_decimal_token3] = ACTIONS(2543), - [aux_sym__val_number_decimal_token4] = ACTIONS(2543), - [aux_sym__val_number_token1] = ACTIONS(2539), - [aux_sym__val_number_token2] = ACTIONS(2539), - [aux_sym__val_number_token3] = ACTIONS(2539), + [aux_sym__val_number_decimal_token1] = ACTIONS(2036), + [aux_sym__val_number_decimal_token2] = ACTIONS(2036), + [aux_sym__val_number_decimal_token3] = ACTIONS(2571), + [aux_sym__val_number_decimal_token4] = ACTIONS(2571), + [aux_sym__val_number_token1] = ACTIONS(2567), + [aux_sym__val_number_token2] = ACTIONS(2567), + [aux_sym__val_number_token3] = ACTIONS(2567), [anon_sym_0b] = ACTIONS(191), [anon_sym_0o] = ACTIONS(193), [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2545), + [sym_val_date] = ACTIONS(2573), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_BQUOTE] = ACTIONS(201), @@ -139111,216 +139280,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(103), [sym_raw_string_begin] = ACTIONS(211), }, - [STATE(1259)] = { - [sym__ctrl_match_body] = STATE(5006), - [sym_match_arm] = STATE(4515), - [sym_default_arm] = STATE(4515), - [sym_match_pattern] = STATE(5101), - [sym__match_pattern] = STATE(3907), - [sym__match_pattern_expression] = STATE(4160), - [sym__match_pattern_value] = STATE(4162), - [sym__match_pattern_list] = STATE(4163), - [sym__match_pattern_record] = STATE(4167), - [sym_expr_parenthesized] = STATE(3716), - [sym_val_range] = STATE(4162), - [sym__val_range] = STATE(5013), - [sym_val_nothing] = STATE(4167), - [sym_val_bool] = STATE(3955), - [sym_val_variable] = STATE(3718), - [sym_val_number] = STATE(4167), - [sym__val_number_decimal] = STATE(3468), - [sym__val_number] = STATE(676), - [sym_val_duration] = STATE(4167), - [sym_val_filesize] = STATE(4167), - [sym_val_binary] = STATE(4167), - [sym_val_string] = STATE(4167), - [sym__raw_str] = STATE(2243), - [sym__str_double_quotes] = STATE(2243), - [sym__str_single_quotes] = STATE(2243), - [sym__str_back_ticks] = STATE(2243), - [sym_val_table] = STATE(4167), - [sym_unquoted] = STATE(4170), - [sym__unquoted_anonymous_prefix] = STATE(5013), - [sym_comment] = STATE(1259), - [aux_sym__types_body_repeat1] = STATE(1346), - [aux_sym__ctrl_match_body_repeat1] = STATE(1369), - [anon_sym_true] = ACTIONS(2900), - [anon_sym_false] = ACTIONS(2900), - [anon_sym_null] = ACTIONS(2902), - [aux_sym_cmd_identifier_token3] = ACTIONS(2904), - [aux_sym_cmd_identifier_token4] = ACTIONS(2904), - [aux_sym_cmd_identifier_token5] = ACTIONS(2904), - [sym__newline] = ACTIONS(2906), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_LPAREN] = ACTIONS(2748), - [anon_sym_DOLLAR] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2912), - [anon_sym_RBRACE] = ACTIONS(2940), - [anon_sym__] = ACTIONS(2916), - [anon_sym_DOT_DOT] = ACTIONS(2918), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2920), - [anon_sym_DOT_DOT_LT] = ACTIONS(2920), - [aux_sym__val_number_decimal_token1] = ACTIONS(2922), - [aux_sym__val_number_decimal_token2] = ACTIONS(2924), - [aux_sym__val_number_decimal_token3] = ACTIONS(2926), - [aux_sym__val_number_decimal_token4] = ACTIONS(2926), - [aux_sym__val_number_token1] = ACTIONS(189), - [aux_sym__val_number_token2] = ACTIONS(189), - [aux_sym__val_number_token3] = ACTIONS(189), - [anon_sym_0b] = ACTIONS(191), - [anon_sym_0o] = ACTIONS(193), - [anon_sym_0x] = ACTIONS(193), - [sym_val_date] = ACTIONS(2928), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_BQUOTE] = ACTIONS(1790), - [aux_sym_unquoted_token1] = ACTIONS(1912), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1792), - }, - [STATE(1260)] = { - [aux_sym__repeat_newline] = STATE(1136), - [sym_comment] = STATE(1260), - [anon_sym_in] = ACTIONS(2832), - [sym__newline] = ACTIONS(2870), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_err_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_GT_PIPE] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2684), - [anon_sym_RPAREN] = ACTIONS(2684), - [anon_sym_GT2] = ACTIONS(2836), - [anon_sym_DASH2] = ACTIONS(2838), - [anon_sym_STAR2] = ACTIONS(2840), - [anon_sym_and2] = ACTIONS(2684), - [anon_sym_xor2] = ACTIONS(2684), - [anon_sym_or2] = ACTIONS(2684), - [anon_sym_not_DASHin2] = ACTIONS(2832), - [anon_sym_has2] = ACTIONS(2832), - [anon_sym_not_DASHhas2] = ACTIONS(2832), - [anon_sym_starts_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2832), - [anon_sym_ends_DASHwith2] = ACTIONS(2832), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2832), - [anon_sym_EQ_EQ2] = ACTIONS(2846), - [anon_sym_BANG_EQ2] = ACTIONS(2846), - [anon_sym_LT2] = ACTIONS(2836), - [anon_sym_LT_EQ2] = ACTIONS(2846), - [anon_sym_GT_EQ2] = ACTIONS(2846), - [anon_sym_EQ_TILDE2] = ACTIONS(2848), - [anon_sym_BANG_TILDE2] = ACTIONS(2848), - [anon_sym_like2] = ACTIONS(2848), - [anon_sym_not_DASHlike2] = ACTIONS(2848), - [anon_sym_STAR_STAR2] = ACTIONS(2850), - [anon_sym_PLUS_PLUS2] = ACTIONS(2850), - [anon_sym_SLASH2] = ACTIONS(2840), - [anon_sym_mod2] = ACTIONS(2852), - [anon_sym_SLASH_SLASH2] = ACTIONS(2852), - [anon_sym_PLUS2] = ACTIONS(2854), - [anon_sym_bit_DASHshl2] = ACTIONS(2856), - [anon_sym_bit_DASHshr2] = ACTIONS(2856), - [anon_sym_bit_DASHand2] = ACTIONS(2858), - [anon_sym_bit_DASHxor2] = ACTIONS(2860), - [anon_sym_bit_DASHor2] = ACTIONS(2684), - [anon_sym_err_GT] = ACTIONS(2686), - [anon_sym_out_GT] = ACTIONS(2686), - [anon_sym_e_GT] = ACTIONS(2686), - [anon_sym_o_GT] = ACTIONS(2686), - [anon_sym_err_PLUSout_GT] = ACTIONS(2686), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2686), - [anon_sym_o_PLUSe_GT] = ACTIONS(2686), - [anon_sym_e_PLUSo_GT] = ACTIONS(2686), - [anon_sym_err_GT_GT] = ACTIONS(2684), - [anon_sym_out_GT_GT] = ACTIONS(2684), - [anon_sym_e_GT_GT] = ACTIONS(2684), - [anon_sym_o_GT_GT] = ACTIONS(2684), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2684), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2684), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2684), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2684), - [anon_sym_POUND] = ACTIONS(3), - }, [STATE(1261)] = { - [aux_sym__repeat_newline] = STATE(517), + [aux_sym__repeat_newline] = STATE(1191), [sym_comment] = STATE(1261), - [anon_sym_in] = ACTIONS(2804), - [sym__newline] = ACTIONS(2772), - [anon_sym_SEMI] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_err_GT_PIPE] = ACTIONS(2772), - [anon_sym_out_GT_PIPE] = ACTIONS(2772), - [anon_sym_e_GT_PIPE] = ACTIONS(2772), - [anon_sym_o_GT_PIPE] = ACTIONS(2772), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2772), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2772), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2772), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2772), - [anon_sym_RPAREN] = ACTIONS(2772), - [anon_sym_GT2] = ACTIONS(2806), - [anon_sym_DASH2] = ACTIONS(2808), - [anon_sym_STAR2] = ACTIONS(2810), - [anon_sym_and2] = ACTIONS(2772), - [anon_sym_xor2] = ACTIONS(2772), - [anon_sym_or2] = ACTIONS(2772), - [anon_sym_not_DASHin2] = ACTIONS(2804), - [anon_sym_has2] = ACTIONS(2804), - [anon_sym_not_DASHhas2] = ACTIONS(2804), - [anon_sym_starts_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2804), - [anon_sym_ends_DASHwith2] = ACTIONS(2804), - [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2804), - [anon_sym_EQ_EQ2] = ACTIONS(2814), - [anon_sym_BANG_EQ2] = ACTIONS(2814), - [anon_sym_LT2] = ACTIONS(2806), - [anon_sym_LT_EQ2] = ACTIONS(2814), - [anon_sym_GT_EQ2] = ACTIONS(2814), - [anon_sym_EQ_TILDE2] = ACTIONS(2772), - [anon_sym_BANG_TILDE2] = ACTIONS(2772), - [anon_sym_like2] = ACTIONS(2772), - [anon_sym_not_DASHlike2] = ACTIONS(2772), - [anon_sym_STAR_STAR2] = ACTIONS(2818), - [anon_sym_PLUS_PLUS2] = ACTIONS(2818), - [anon_sym_SLASH2] = ACTIONS(2810), - [anon_sym_mod2] = ACTIONS(2820), - [anon_sym_SLASH_SLASH2] = ACTIONS(2820), - [anon_sym_PLUS2] = ACTIONS(2822), - [anon_sym_bit_DASHshl2] = ACTIONS(2824), - [anon_sym_bit_DASHshr2] = ACTIONS(2824), - [anon_sym_bit_DASHand2] = ACTIONS(2772), - [anon_sym_bit_DASHxor2] = ACTIONS(2772), - [anon_sym_bit_DASHor2] = ACTIONS(2772), - [anon_sym_err_GT] = ACTIONS(2774), - [anon_sym_out_GT] = ACTIONS(2774), - [anon_sym_e_GT] = ACTIONS(2774), - [anon_sym_o_GT] = ACTIONS(2774), - [anon_sym_err_PLUSout_GT] = ACTIONS(2774), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2774), - [anon_sym_o_PLUSe_GT] = ACTIONS(2774), - [anon_sym_e_PLUSo_GT] = ACTIONS(2774), - [anon_sym_err_GT_GT] = ACTIONS(2772), - [anon_sym_out_GT_GT] = ACTIONS(2772), - [anon_sym_e_GT_GT] = ACTIONS(2772), - [anon_sym_o_GT_GT] = ACTIONS(2772), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2772), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2772), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2772), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2772), + [anon_sym_in] = ACTIONS(2780), + [sym__newline] = ACTIONS(2832), + [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_RPAREN] = ACTIONS(2726), + [anon_sym_GT2] = ACTIONS(2785), + [anon_sym_DASH2] = ACTIONS(2787), + [anon_sym_STAR2] = ACTIONS(2789), + [anon_sym_and2] = ACTIONS(2726), + [anon_sym_xor2] = ACTIONS(2726), + [anon_sym_or2] = ACTIONS(2726), + [anon_sym_not_DASHin2] = ACTIONS(2780), + [anon_sym_has2] = ACTIONS(2780), + [anon_sym_not_DASHhas2] = ACTIONS(2780), + [anon_sym_starts_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHstarts_DASHwith2] = ACTIONS(2780), + [anon_sym_ends_DASHwith2] = ACTIONS(2780), + [anon_sym_not_DASHends_DASHwith2] = ACTIONS(2780), + [anon_sym_EQ_EQ2] = ACTIONS(2791), + [anon_sym_BANG_EQ2] = ACTIONS(2791), + [anon_sym_LT2] = ACTIONS(2785), + [anon_sym_LT_EQ2] = ACTIONS(2791), + [anon_sym_GT_EQ2] = ACTIONS(2791), + [anon_sym_EQ_TILDE2] = ACTIONS(2793), + [anon_sym_BANG_TILDE2] = ACTIONS(2793), + [anon_sym_like2] = ACTIONS(2793), + [anon_sym_not_DASHlike2] = ACTIONS(2793), + [anon_sym_STAR_STAR2] = ACTIONS(2795), + [anon_sym_PLUS_PLUS2] = ACTIONS(2795), + [anon_sym_SLASH2] = ACTIONS(2789), + [anon_sym_mod2] = ACTIONS(2797), + [anon_sym_SLASH_SLASH2] = ACTIONS(2797), + [anon_sym_PLUS2] = ACTIONS(2799), + [anon_sym_bit_DASHshl2] = ACTIONS(2801), + [anon_sym_bit_DASHshr2] = ACTIONS(2801), + [anon_sym_bit_DASHand2] = ACTIONS(2803), + [anon_sym_bit_DASHxor2] = ACTIONS(2726), + [anon_sym_bit_DASHor2] = ACTIONS(2726), + [anon_sym_err_GT] = ACTIONS(2728), + [anon_sym_out_GT] = ACTIONS(2728), + [anon_sym_e_GT] = ACTIONS(2728), + [anon_sym_o_GT] = ACTIONS(2728), + [anon_sym_err_PLUSout_GT] = ACTIONS(2728), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2728), + [anon_sym_o_PLUSe_GT] = ACTIONS(2728), + [anon_sym_e_PLUSo_GT] = ACTIONS(2728), + [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), [anon_sym_POUND] = ACTIONS(3), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 4, + [0] = 39, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2944), 1, + anon_sym_null, + ACTIONS(2948), 1, + sym__newline, + ACTIONS(2950), 1, + anon_sym_LBRACK, + ACTIONS(2952), 1, + anon_sym_LPAREN, + ACTIONS(2954), 1, + anon_sym_DOLLAR, + ACTIONS(2956), 1, + anon_sym_LBRACE, + ACTIONS(2958), 1, + anon_sym_DOT_DOT, + ACTIONS(2962), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2964), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2970), 1, + anon_sym_0b, + ACTIONS(2974), 1, + sym_val_date, + ACTIONS(2976), 1, + anon_sym_DQUOTE, + ACTIONS(2978), 1, + anon_sym_SQUOTE, + ACTIONS(2980), 1, + anon_sym_BQUOTE, + ACTIONS(2982), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2984), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2986), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(2988), 1, + sym_raw_string_begin, STATE(1262), 1, sym_comment, - ACTIONS(2064), 13, + STATE(2230), 1, + aux_sym__repeat_newline, + STATE(2494), 1, + sym__val_number_decimal, + STATE(2908), 1, + sym_expr_parenthesized, + STATE(2955), 1, + sym_val_variable, + STATE(2999), 1, + sym_val_bool, + STATE(3003), 1, + sym__inter_single_quotes, + STATE(3005), 1, + sym__inter_double_quotes, + STATE(3008), 1, + sym__val_number, + STATE(3115), 1, + sym__unquoted_in_record, + ACTIONS(2942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2960), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(2966), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(2972), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4623), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(2946), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(2968), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3406), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(2590), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3006), 12, + sym_val_nothing, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [143] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1263), 1, + sym_comment, + ACTIONS(2585), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139334,7 +139473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2062), 49, + ACTIONS(2583), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139384,12 +139523,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [73] = 4, + [216] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1263), 1, + STATE(1264), 1, sym_comment, - ACTIONS(2154), 13, + ACTIONS(2064), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139403,7 +139542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2152), 49, + ACTIONS(2062), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139453,114 +139592,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [146] = 37, + [289] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(157), 1, - anon_sym_LBRACK, - ACTIONS(159), 1, - anon_sym_LPAREN, - ACTIONS(165), 1, - anon_sym_LBRACE, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(195), 1, - sym_val_date, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(287), 1, + ACTIONS(2990), 1, anon_sym_DASH2, - ACTIONS(1020), 1, - anon_sym_DOLLAR, - ACTIONS(2435), 1, - aux_sym_expr_unary_token1, - ACTIONS(2439), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2441), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2656), 1, - anon_sym_null, - ACTIONS(2942), 1, - anon_sym_DOT_DOT, - STATE(676), 1, - sym__val_number, - STATE(847), 1, - sym__inter_single_quotes, - STATE(848), 1, - sym__inter_double_quotes, - STATE(958), 1, - sym__expr_unary_minus, - STATE(1264), 1, + ACTIONS(2998), 1, + anon_sym_PLUS2, + STATE(1265), 1, sym_comment, - STATE(1874), 1, - sym__val_number_decimal, - STATE(1955), 1, - sym_expr_parenthesized, - STATE(1959), 1, - sym_val_variable, - STATE(2218), 1, - sym__expr_binary_expression, - STATE(5120), 1, - sym__expression, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2427), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2443), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(2944), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(422), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(926), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(189), 6, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(922), 13, - sym_val_nothing, - sym_val_bool, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [285] = 4, + ACTIONS(2992), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(2994), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2996), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2511), 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(2509), 44, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [372] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1265), 1, + STATE(1266), 1, sym_comment, - ACTIONS(1954), 13, + ACTIONS(1874), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139574,7 +139685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1952), 49, + ACTIONS(1872), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139624,12 +139735,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [358] = 4, + [445] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1266), 1, + STATE(1267), 1, sym_comment, - ACTIONS(2485), 13, + ACTIONS(2064), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139643,7 +139754,7 @@ 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), 49, + ACTIONS(2062), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139693,12 +139804,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, - [431] = 4, + [518] = 14, ACTIONS(3), 1, anon_sym_POUND, - STATE(1267), 1, + ACTIONS(2990), 1, + anon_sym_DASH2, + ACTIONS(2998), 1, + anon_sym_PLUS2, + STATE(1268), 1, + sym_comment, + ACTIONS(2992), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(2994), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2996), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3002), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3008), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3004), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3006), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2511), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(3000), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2509), 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, + [611] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1269), 1, sym_comment, - ACTIONS(2580), 13, + ACTIONS(2064), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139712,7 +139902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2578), 49, + ACTIONS(2062), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139762,12 +139952,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [504] = 4, + [684] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1268), 1, + STATE(1270), 1, sym_comment, - ACTIONS(2339), 13, + ACTIONS(2419), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139781,7 +139971,7 @@ 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), 49, + ACTIONS(2417), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139831,12 +140021,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [577] = 4, + [757] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1269), 1, + STATE(1271), 1, sym_comment, - ACTIONS(1850), 13, + ACTIONS(2178), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139850,7 +140040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1848), 49, + ACTIONS(2176), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139900,12 +140090,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, - [650] = 4, + [830] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1270), 1, + STATE(1272), 1, + sym_comment, + ACTIONS(2182), 13, + anon_sym_GT2, + 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(2180), 49, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [903] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1273), 1, + sym_comment, + ACTIONS(2122), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2124), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2120), 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(2118), 29, + anon_sym_in, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [980] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1274), 1, sym_comment, - ACTIONS(2620), 13, + ACTIONS(2559), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -139919,7 +140249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2618), 49, + ACTIONS(2557), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -139969,17 +140299,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, - [723] = 4, + [1053] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(1271), 1, + ACTIONS(2990), 1, + anon_sym_DASH2, + ACTIONS(2998), 1, + anon_sym_PLUS2, + ACTIONS(3010), 1, + anon_sym_bit_DASHand2, + STATE(1275), 1, sym_comment, - ACTIONS(2489), 13, - anon_sym_GT2, + ACTIONS(2992), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2994), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2996), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3002), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3008), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3004), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3006), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2511), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -139988,9 +140344,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2487), 49, - ts_builtin_sym_end, + ACTIONS(3000), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2509), 25, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -140002,32 +140366,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -140038,12 +140379,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [796] = 4, + [1148] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1272), 1, + STATE(1276), 1, sym_comment, - ACTIONS(2628), 13, + ACTIONS(2064), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140057,7 +140398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2626), 49, + ACTIONS(2062), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140107,119 +140448,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, - [869] = 37, + [1221] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(157), 1, - anon_sym_LBRACK, - ACTIONS(159), 1, - anon_sym_LPAREN, - ACTIONS(165), 1, - anon_sym_LBRACE, - ACTIONS(169), 1, - anon_sym_DOT_DOT, - ACTIONS(173), 1, - aux_sym_expr_unary_token1, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(195), 1, - sym_val_date, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(287), 1, + ACTIONS(2990), 1, anon_sym_DASH2, - ACTIONS(1020), 1, - anon_sym_DOLLAR, - ACTIONS(1976), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1978), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(2656), 1, - anon_sym_null, - STATE(674), 1, - sym_expr_parenthesized, - STATE(676), 1, - sym__val_number, - STATE(677), 1, - sym_val_variable, - STATE(847), 1, - sym__inter_single_quotes, - STATE(848), 1, - sym__inter_double_quotes, - STATE(958), 1, - sym__expr_unary_minus, - STATE(1273), 1, - sym_comment, - STATE(1826), 1, - sym__val_number_decimal, - STATE(2216), 1, - sym__expr_binary_expression, - STATE(4789), 1, - sym__expression, - ACTIONS(179), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1914), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1980), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(422), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(926), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(189), 6, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(922), 13, - sym_val_nothing, - sym_val_bool, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [1008] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1274), 1, + ACTIONS(2998), 1, + anon_sym_PLUS2, + ACTIONS(3010), 1, + anon_sym_bit_DASHand2, + ACTIONS(3012), 1, + anon_sym_bit_DASHxor2, + STATE(1277), 1, sym_comment, - ACTIONS(2481), 13, - anon_sym_GT2, + ACTIONS(2992), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2994), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2996), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3002), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3008), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3004), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3006), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2511), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -140228,9 +140495,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2479), 49, - ts_builtin_sym_end, + ACTIONS(3000), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2509), 24, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -140242,33 +140517,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -140278,12 +140529,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1081] = 4, + [1318] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1275), 1, + STATE(1278), 1, sym_comment, - ACTIONS(1864), 13, + ACTIONS(2122), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140297,7 +140548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1862), 49, + ACTIONS(2118), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140347,18 +140598,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, - [1154] = 6, + [1391] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(1276), 1, + ACTIONS(2990), 1, + anon_sym_DASH2, + ACTIONS(2998), 1, + anon_sym_PLUS2, + STATE(1279), 1, sym_comment, - ACTIONS(2078), 5, - anon_sym_GT2, + ACTIONS(2992), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2080), 8, + ACTIONS(2994), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2996), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3002), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3008), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3004), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2511), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -140367,8 +140636,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(2076), 20, + ACTIONS(2509), 38, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -140380,17 +140650,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(2074), 29, - anon_sym_in, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -140401,29 +140660,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [1231] = 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, + [1480] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1277), 1, + STATE(1280), 1, sym_comment, - ACTIONS(2331), 13, + ACTIONS(2064), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140437,7 +140694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2329), 49, + ACTIONS(2062), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140487,12 +140744,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1304] = 4, + [1553] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1278), 1, + STATE(1281), 1, sym_comment, - ACTIONS(2313), 13, + ACTIONS(2642), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140506,7 +140763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2311), 49, + ACTIONS(2640), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140556,17 +140813,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, - [1377] = 4, + [1626] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1279), 1, + ACTIONS(2990), 1, + anon_sym_DASH2, + ACTIONS(2998), 1, + anon_sym_PLUS2, + STATE(1282), 1, sym_comment, - ACTIONS(2634), 13, - anon_sym_GT2, + ACTIONS(2992), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2994), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2996), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3008), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2511), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -140575,7 +140845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2632), 49, + ACTIONS(2509), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140589,7 +140859,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -140608,12 +140877,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -140625,12 +140888,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1450] = 4, + [1711] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1280), 1, + STATE(1283), 1, sym_comment, - ACTIONS(2493), 13, + ACTIONS(2064), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140644,7 +140907,7 @@ 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), 49, + ACTIONS(2062), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140694,16 +140957,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, - [1523] = 4, + [1784] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1281), 1, + STATE(1284), 1, sym_comment, - ACTIONS(2497), 13, - anon_sym_GT2, + ACTIONS(2992), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(2994), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2996), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2511), 11, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -140713,7 +140983,7 @@ 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), 49, + ACTIONS(2509), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140746,10 +141016,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -140763,12 +141029,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1596] = 4, + [1863] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1282), 1, + STATE(1285), 1, sym_comment, - ACTIONS(2078), 13, + ACTIONS(2064), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140782,7 +141048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2074), 49, + ACTIONS(2062), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140832,89 +141098,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1669] = 12, + [1936] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2958), 1, - anon_sym_PLUS2, - STATE(1283), 1, - sym_comment, - ACTIONS(2946), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2954), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2956), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2960), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2549), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2547), 38, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [1758] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1284), 1, + STATE(1286), 1, sym_comment, - ACTIONS(793), 13, + ACTIONS(2443), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -140928,7 +141117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(890), 49, + ACTIONS(2441), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -140978,87 +141167,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1831] = 10, + [2009] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2958), 1, - anon_sym_PLUS2, - STATE(1285), 1, - sym_comment, - ACTIONS(2950), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2954), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2956), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2960), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2549), 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(2547), 42, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [1916] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1286), 1, + STATE(1287), 1, sym_comment, - ACTIONS(2064), 13, + ACTIONS(2068), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141072,7 +141186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2062), 49, + ACTIONS(2066), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141122,23 +141236,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, - [1989] = 7, + [2082] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1287), 1, + STATE(1288), 1, sym_comment, - ACTIONS(2950), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2954), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2956), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2549), 11, + ACTIONS(2076), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -141148,7 +141255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2547), 45, + ACTIONS(2074), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141181,6 +141288,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -141194,12 +141305,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2068] = 4, + [2155] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1288), 1, + STATE(1289), 1, sym_comment, - ACTIONS(2560), 13, + ACTIONS(2535), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141213,7 +141324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2558), 49, + ACTIONS(2533), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141263,10 +141374,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, - [2141] = 4, + [2228] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1289), 1, + STATE(1290), 1, sym_comment, ACTIONS(2064), 13, anon_sym_GT2, @@ -141332,15 +141443,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2214] = 5, + [2301] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1290), 1, + STATE(1291), 1, sym_comment, - ACTIONS(2954), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2549), 13, + ACTIONS(2084), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141354,7 +141462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2547), 47, + ACTIONS(2082), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141387,6 +141495,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -141402,12 +141512,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2289] = 4, + [2374] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1291), 1, + STATE(1292), 1, sym_comment, - ACTIONS(2088), 13, + ACTIONS(2013), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141421,7 +141531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2086), 49, + ACTIONS(2011), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141471,12 +141581,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2362] = 4, + [2447] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1292), 1, + STATE(1293), 1, sym_comment, - ACTIONS(2064), 13, + ACTIONS(2391), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141490,7 +141600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2062), 49, + ACTIONS(2389), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141540,94 +141650,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, - [2435] = 17, + [2520] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2958), 1, - anon_sym_PLUS2, - ACTIONS(2966), 1, - anon_sym_bit_DASHand2, - ACTIONS(2968), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2970), 1, - anon_sym_bit_DASHor2, - STATE(1293), 1, + STATE(1294), 1, sym_comment, - ACTIONS(2946), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2954), 2, + ACTIONS(2994), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2956), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2960), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2964), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2549), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2962), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2547), 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, - [2534] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1294), 1, - sym_comment, - ACTIONS(1615), 13, + ACTIONS(2511), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141641,7 +141672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1689), 49, + ACTIONS(2509), 47, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141674,8 +141705,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -141691,12 +141720,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2607] = 4, + [2595] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1295), 1, sym_comment, - ACTIONS(2064), 13, + ACTIONS(2451), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141710,7 +141739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2062), 49, + ACTIONS(2449), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141760,49 +141789,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, - [2680] = 18, + [2668] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2958), 1, - anon_sym_PLUS2, - ACTIONS(2966), 1, - anon_sym_bit_DASHand2, - ACTIONS(2968), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2970), 1, - anon_sym_bit_DASHor2, - ACTIONS(2972), 1, - anon_sym_and2, STATE(1296), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(2531), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(2954), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2956), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2960), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2964), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2549), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -141811,17 +141808,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(2962), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2547), 22, + ACTIONS(2529), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -141833,8 +141822,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -141843,12 +141858,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2781] = 4, + [2741] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1297), 1, sym_comment, - ACTIONS(2481), 13, + ACTIONS(2455), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -141862,7 +141877,7 @@ 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), 49, + ACTIONS(2453), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -141912,7 +141927,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, - [2854] = 4, + [2814] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1298), 1, @@ -141981,200 +141996,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2927] = 19, + [2887] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2958), 1, - anon_sym_PLUS2, - ACTIONS(2966), 1, - anon_sym_bit_DASHand2, - ACTIONS(2968), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2970), 1, - anon_sym_bit_DASHor2, - ACTIONS(2972), 1, - anon_sym_and2, - ACTIONS(2974), 1, - anon_sym_xor2, STATE(1299), 1, sym_comment, - ACTIONS(2946), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2954), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2956), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2960), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2964), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2549), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2962), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2547), 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, - [3030] = 39, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2978), 1, - anon_sym_null, - ACTIONS(2982), 1, - sym__newline, - ACTIONS(2984), 1, - anon_sym_LBRACK, - ACTIONS(2986), 1, - anon_sym_LPAREN, - ACTIONS(2988), 1, - anon_sym_DOLLAR, - ACTIONS(2990), 1, - anon_sym_LBRACE, - ACTIONS(2992), 1, - anon_sym_DOT_DOT, - ACTIONS(2996), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2998), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3004), 1, - anon_sym_0b, - ACTIONS(3008), 1, - sym_val_date, - ACTIONS(3010), 1, - anon_sym_DQUOTE, - ACTIONS(3012), 1, - anon_sym_SQUOTE, - ACTIONS(3014), 1, - anon_sym_BQUOTE, - ACTIONS(3016), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3018), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3020), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3022), 1, - sym_raw_string_begin, - STATE(1300), 1, - sym_comment, - STATE(2230), 1, - aux_sym__repeat_newline, - STATE(2479), 1, - sym__val_number_decimal, - STATE(2872), 1, - sym_expr_parenthesized, - STATE(2959), 1, - sym_val_variable, - STATE(2980), 1, - sym__unquoted_in_record, - STATE(2982), 1, - sym_val_bool, - STATE(2990), 1, - sym__inter_single_quotes, - STATE(2997), 1, - sym__inter_double_quotes, - STATE(3072), 1, - sym__val_number, - ACTIONS(2976), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2994), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3000), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3006), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4621), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2980), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3002), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3266), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(2624), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2976), 12, - sym_val_nothing, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [3173] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1301), 1, - sym_comment, - ACTIONS(2624), 13, + ACTIONS(2136), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142188,7 +142015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2622), 49, + ACTIONS(2134), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142238,12 +142065,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3246] = 4, + [2960] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1302), 1, + STATE(1300), 1, sym_comment, - ACTIONS(2064), 13, + ACTIONS(2459), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142257,7 +142084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2062), 49, + ACTIONS(2457), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142307,36 +142134,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, - [3319] = 13, + [3033] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, + ACTIONS(2990), 1, anon_sym_DASH2, - ACTIONS(2958), 1, + ACTIONS(2998), 1, anon_sym_PLUS2, - STATE(1303), 1, + ACTIONS(3010), 1, + anon_sym_bit_DASHand2, + ACTIONS(3012), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3014), 1, + anon_sym_bit_DASHor2, + STATE(1301), 1, sym_comment, - ACTIONS(2946), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, + ACTIONS(2992), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2954), 2, + ACTIONS(2994), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2956), 2, + ACTIONS(2996), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2960), 2, + ACTIONS(3002), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3008), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, + ACTIONS(3004), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2549), 8, + ACTIONS(3006), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2511), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -142345,7 +142183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2962), 8, + ACTIONS(3000), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -142354,7 +142192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2547), 30, + ACTIONS(2509), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -142370,13 +142208,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_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -142385,12 +142216,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3410] = 4, + [3132] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1304), 1, + STATE(1302), 1, sym_comment, - ACTIONS(2100), 13, + ACTIONS(2527), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142404,7 +142235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2098), 49, + ACTIONS(2525), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142454,12 +142285,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3483] = 4, + [3205] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1305), 1, + STATE(1303), 1, sym_comment, - ACTIONS(2064), 13, + ACTIONS(2463), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142473,7 +142304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2062), 49, + ACTIONS(2461), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142523,12 +142354,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3556] = 4, + [3278] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1306), 1, + STATE(1304), 1, sym_comment, - ACTIONS(2549), 13, + ACTIONS(2003), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142542,7 +142373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2547), 49, + ACTIONS(2001), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142592,12 +142423,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3629] = 4, + [3351] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1307), 1, + STATE(1305), 1, sym_comment, - ACTIONS(1944), 13, + ACTIONS(2128), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142611,7 +142442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1942), 49, + ACTIONS(2126), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142661,12 +142492,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3702] = 4, + [3424] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1308), 1, + STATE(1306), 1, sym_comment, - ACTIONS(2064), 13, + ACTIONS(2503), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142680,7 +142511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2062), 49, + ACTIONS(2501), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142730,27 +142561,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, - [3775] = 9, + [3497] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2958), 1, - anon_sym_PLUS2, - STATE(1309), 1, + STATE(1307), 1, sym_comment, - ACTIONS(2950), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2954), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2956), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2549), 10, + ACTIONS(2507), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -142759,7 +142580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2547), 44, + ACTIONS(2505), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142773,6 +142594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -142791,6 +142613,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -142804,12 +142630,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3858] = 4, + [3570] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1310), 1, + STATE(1308), 1, sym_comment, - ACTIONS(2064), 13, + ACTIONS(2499), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142823,7 +142649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2062), 49, + ACTIONS(2497), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -142873,41 +142699,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, - [3931] = 14, + [3643] = 39, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2944), 1, + anon_sym_null, ACTIONS(2948), 1, - anon_sym_DASH2, + sym__newline, + ACTIONS(2950), 1, + anon_sym_LBRACK, + ACTIONS(2952), 1, + anon_sym_LPAREN, + ACTIONS(2954), 1, + anon_sym_DOLLAR, + ACTIONS(2956), 1, + anon_sym_LBRACE, ACTIONS(2958), 1, - anon_sym_PLUS2, - STATE(1311), 1, + anon_sym_DOT_DOT, + ACTIONS(2962), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2964), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2970), 1, + anon_sym_0b, + ACTIONS(2974), 1, + sym_val_date, + ACTIONS(2976), 1, + anon_sym_DQUOTE, + ACTIONS(2978), 1, + anon_sym_SQUOTE, + ACTIONS(2980), 1, + anon_sym_BQUOTE, + ACTIONS(2982), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2984), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2986), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(2988), 1, + sym_raw_string_begin, + STATE(1262), 1, + aux_sym__repeat_newline, + STATE(1309), 1, sym_comment, - ACTIONS(2946), 2, + STATE(2494), 1, + sym__val_number_decimal, + STATE(2907), 1, + sym_expr_parenthesized, + STATE(2955), 1, + sym_val_variable, + STATE(2973), 1, + sym__unquoted_in_record, + STATE(2999), 1, + sym_val_bool, + STATE(3003), 1, + sym__inter_single_quotes, + STATE(3005), 1, + sym__inter_double_quotes, + STATE(3008), 1, + sym__val_number, + ACTIONS(2942), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2960), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(2966), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(2972), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4623), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(2946), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(2968), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3348), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(2590), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3006), 12, + sym_val_nothing, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [3786] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1310), 1, + sym_comment, + ACTIONS(2638), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(2954), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2956), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2960), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2964), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2549), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -142916,17 +142822,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(2962), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2547), 26, + ACTIONS(2636), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -142938,9 +142836,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -142952,12 +142872,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4024] = 4, + [3859] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1312), 1, + STATE(1311), 1, sym_comment, - ACTIONS(2064), 13, + ACTIONS(1604), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -142971,7 +142891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2062), 49, + ACTIONS(1706), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143021,43 +142941,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, - [4097] = 15, + [3932] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, - anon_sym_DASH2, - ACTIONS(2958), 1, - anon_sym_PLUS2, - ACTIONS(2966), 1, - anon_sym_bit_DASHand2, - STATE(1313), 1, + STATE(1312), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(2447), 13, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(2954), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2956), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2960), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2964), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2549), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -143066,17 +142960,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(2962), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2547), 25, + ACTIONS(2445), 49, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -143088,9 +142974,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_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -143101,12 +143010,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4192] = 4, + [4005] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1314), 1, + STATE(1313), 1, sym_comment, - ACTIONS(2064), 13, + ACTIONS(2614), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143120,7 +143029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2062), 49, + ACTIONS(2612), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143170,93 +143079,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4265] = 16, + [4078] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, + ACTIONS(157), 1, + anon_sym_LBRACK, + ACTIONS(159), 1, + anon_sym_LPAREN, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(195), 1, + sym_val_date, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(287), 1, anon_sym_DASH2, - ACTIONS(2958), 1, - anon_sym_PLUS2, - ACTIONS(2966), 1, - anon_sym_bit_DASHand2, - ACTIONS(2968), 1, - anon_sym_bit_DASHxor2, - STATE(1315), 1, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(2429), 1, + aux_sym_expr_unary_token1, + ACTIONS(2433), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2435), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2660), 1, + anon_sym_null, + ACTIONS(3016), 1, + anon_sym_DOT_DOT, + STATE(693), 1, + sym__val_number, + STATE(876), 1, + sym__inter_single_quotes, + STATE(878), 1, + sym__inter_double_quotes, + STATE(916), 1, + sym__expr_unary_minus, + STATE(1314), 1, sym_comment, - ACTIONS(2946), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2954), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2956), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2960), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2964), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2549), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2962), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2547), 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, - [4362] = 4, + STATE(1859), 1, + sym__val_number_decimal, + STATE(1956), 1, + sym_expr_parenthesized, + STATE(1960), 1, + sym_val_variable, + STATE(2215), 1, + sym__expr_binary_expression, + STATE(5033), 1, + sym__expression, + ACTIONS(193), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2421), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2437), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3018), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(414), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(958), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(189), 6, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(954), 13, + sym_val_nothing, + sym_val_bool, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [4217] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1316), 1, + STATE(1315), 1, sym_comment, - ACTIONS(2600), 13, + ACTIONS(2467), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143270,7 +143200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2598), 49, + ACTIONS(2465), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143320,116 +143250,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4435] = 39, + [4290] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2978), 1, - anon_sym_null, - ACTIONS(2982), 1, - sym__newline, - ACTIONS(2984), 1, - anon_sym_LBRACK, - ACTIONS(2986), 1, - anon_sym_LPAREN, - ACTIONS(2988), 1, - anon_sym_DOLLAR, - ACTIONS(2990), 1, - anon_sym_LBRACE, - ACTIONS(2992), 1, - anon_sym_DOT_DOT, - ACTIONS(2996), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(2998), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3004), 1, - anon_sym_0b, - ACTIONS(3008), 1, - sym_val_date, - ACTIONS(3010), 1, - anon_sym_DQUOTE, - ACTIONS(3012), 1, - anon_sym_SQUOTE, - ACTIONS(3014), 1, - anon_sym_BQUOTE, - ACTIONS(3016), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3018), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3020), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(3022), 1, - sym_raw_string_begin, - STATE(1317), 1, - sym_comment, - STATE(1332), 1, - aux_sym__repeat_newline, - STATE(2479), 1, - sym__val_number_decimal, - STATE(2934), 1, - sym_expr_parenthesized, - STATE(2959), 1, - sym_val_variable, - STATE(2972), 1, - sym__unquoted_in_record, - STATE(2982), 1, - sym_val_bool, - STATE(2990), 1, - sym__inter_single_quotes, - STATE(2997), 1, - sym__inter_double_quotes, - STATE(3072), 1, - sym__val_number, - ACTIONS(2976), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2994), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3000), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3006), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4621), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2980), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3002), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3282), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(2624), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2976), 12, - sym_val_nothing, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [4578] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1318), 1, + STATE(1316), 1, sym_comment, - ACTIONS(2604), 13, + ACTIONS(2523), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143443,7 +143269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2602), 49, + ACTIONS(2521), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143493,12 +143319,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4651] = 4, + [4363] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1319), 1, + STATE(1317), 1, sym_comment, - ACTIONS(2608), 13, + ACTIONS(2499), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143512,7 +143338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2606), 49, + ACTIONS(2497), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143562,12 +143388,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4724] = 4, + [4436] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1320), 1, + STATE(1318), 1, sym_comment, - ACTIONS(2612), 13, + ACTIONS(2064), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143581,7 +143407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2610), 49, + ACTIONS(2062), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143631,12 +143457,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4797] = 4, + [4509] = 18, ACTIONS(3), 1, anon_sym_POUND, - STATE(1321), 1, + ACTIONS(2990), 1, + anon_sym_DASH2, + ACTIONS(2998), 1, + anon_sym_PLUS2, + ACTIONS(3010), 1, + anon_sym_bit_DASHand2, + ACTIONS(3012), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3014), 1, + anon_sym_bit_DASHor2, + ACTIONS(3020), 1, + anon_sym_and2, + STATE(1319), 1, sym_comment, - ACTIONS(2616), 13, + ACTIONS(2992), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(2994), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2996), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3002), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3008), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3004), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3006), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2511), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(3000), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2509), 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, + [4610] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1320), 1, + sym_comment, + ACTIONS(2519), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143650,7 +143559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2614), 49, + ACTIONS(2517), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143700,10 +143609,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, - [4870] = 4, + [4683] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1322), 1, + STATE(1321), 1, sym_comment, ACTIONS(2064), 13, anon_sym_GT2, @@ -143769,17 +143678,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4943] = 4, + [4756] = 19, ACTIONS(3), 1, anon_sym_POUND, - STATE(1323), 1, + ACTIONS(2990), 1, + anon_sym_DASH2, + ACTIONS(2998), 1, + anon_sym_PLUS2, + ACTIONS(3010), 1, + anon_sym_bit_DASHand2, + ACTIONS(3012), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3014), 1, + anon_sym_bit_DASHor2, + ACTIONS(3020), 1, + anon_sym_and2, + ACTIONS(3022), 1, + anon_sym_xor2, + STATE(1322), 1, sym_comment, - ACTIONS(2335), 13, - anon_sym_GT2, + ACTIONS(2992), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2994), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2996), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3002), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3008), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3004), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3006), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2511), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -143788,9 +143731,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2333), 49, - ts_builtin_sym_end, + ACTIONS(3000), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2509), 21, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -143802,34 +143753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -143838,12 +143762,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5016] = 4, + [4859] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1324), 1, + STATE(1323), 1, sym_comment, - ACTIONS(2343), 13, + ACTIONS(2618), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143857,7 +143781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2341), 49, + ACTIONS(2616), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143907,12 +143831,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5089] = 4, + [4932] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1325), 1, + STATE(1324), 1, sym_comment, - ACTIONS(2347), 13, + ACTIONS(1846), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143926,7 +143850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2345), 49, + ACTIONS(1844), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -143976,12 +143900,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5162] = 4, + [5005] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1326), 1, + STATE(1325), 1, sym_comment, - ACTIONS(2351), 13, + ACTIONS(2064), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -143995,7 +143919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2349), 49, + ACTIONS(2062), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144045,17 +143969,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, - [5235] = 4, + [5078] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(1327), 1, + ACTIONS(2990), 1, + anon_sym_DASH2, + ACTIONS(2998), 1, + anon_sym_PLUS2, + STATE(1326), 1, sym_comment, - ACTIONS(2511), 13, - anon_sym_GT2, + ACTIONS(2992), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2994), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2996), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3002), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3008), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3004), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2511), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -144064,9 +144007,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2509), 49, - ts_builtin_sym_end, + ACTIONS(3000), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2509), 30, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -144078,31 +144029,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_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -144114,12 +144047,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5308] = 4, + [5169] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1328), 1, + STATE(1327), 1, sym_comment, - ACTIONS(2138), 13, + ACTIONS(2626), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144133,7 +144066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2136), 49, + ACTIONS(2624), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144183,12 +144116,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5381] = 4, + [5242] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1329), 1, + STATE(1328), 1, sym_comment, - ACTIONS(2355), 13, + ACTIONS(2064), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144202,7 +144135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2353), 49, + ACTIONS(2062), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144252,12 +144185,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5454] = 4, + [5315] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1330), 1, + STATE(1329), 1, sym_comment, - ACTIONS(2146), 13, + ACTIONS(2511), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144271,7 +144204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2144), 49, + ACTIONS(2509), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144321,12 +144254,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5527] = 4, + [5388] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1331), 1, + STATE(1330), 1, sym_comment, - ACTIONS(2576), 13, + ACTIONS(2630), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144340,7 +144273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2574), 49, + ACTIONS(2628), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144390,98 +144323,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, - [5600] = 39, + [5461] = 39, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2978), 1, + ACTIONS(2944), 1, anon_sym_null, - ACTIONS(2982), 1, + ACTIONS(2948), 1, sym__newline, - ACTIONS(2984), 1, + ACTIONS(2950), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2952), 1, anon_sym_LPAREN, - ACTIONS(2988), 1, + ACTIONS(2954), 1, anon_sym_DOLLAR, - ACTIONS(2990), 1, + ACTIONS(2956), 1, anon_sym_LBRACE, - ACTIONS(2992), 1, + ACTIONS(2958), 1, anon_sym_DOT_DOT, - ACTIONS(2996), 1, + ACTIONS(2962), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2998), 1, + ACTIONS(2964), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3004), 1, + ACTIONS(2970), 1, anon_sym_0b, - ACTIONS(3008), 1, + ACTIONS(2974), 1, sym_val_date, - ACTIONS(3010), 1, + ACTIONS(2976), 1, anon_sym_DQUOTE, - ACTIONS(3012), 1, + ACTIONS(2978), 1, anon_sym_SQUOTE, - ACTIONS(3014), 1, + ACTIONS(2980), 1, anon_sym_BQUOTE, - ACTIONS(3016), 1, + ACTIONS(2982), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3018), 1, + ACTIONS(2984), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3020), 1, + ACTIONS(2986), 1, aux_sym__unquoted_in_record_token1, - ACTIONS(3022), 1, + ACTIONS(2988), 1, sym_raw_string_begin, - STATE(1332), 1, + STATE(1331), 1, sym_comment, STATE(2230), 1, aux_sym__repeat_newline, - STATE(2479), 1, + STATE(2494), 1, sym__val_number_decimal, - STATE(2927), 1, + STATE(2893), 1, sym_expr_parenthesized, - STATE(2959), 1, + STATE(2955), 1, sym_val_variable, - STATE(2982), 1, + STATE(2999), 1, sym_val_bool, - STATE(2990), 1, + STATE(3003), 1, sym__inter_single_quotes, - STATE(2997), 1, + STATE(3005), 1, sym__inter_double_quotes, - STATE(3072), 1, + STATE(3008), 1, sym__val_number, - STATE(3123), 1, + STATE(3077), 1, sym__unquoted_in_record, - ACTIONS(2976), 2, + ACTIONS(2942), 2, anon_sym_true, anon_sym_false, - ACTIONS(2994), 2, + ACTIONS(2960), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3000), 2, + ACTIONS(2966), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3006), 2, + ACTIONS(2972), 2, anon_sym_0o, anon_sym_0x, - STATE(4621), 2, + STATE(4623), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(2980), 3, + ACTIONS(2946), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3002), 3, + ACTIONS(2968), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3339), 3, + STATE(3384), 3, sym_val_range, sym__value, sym__unquoted_in_record_with_expr, - STATE(2624), 4, + STATE(2590), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(2976), 12, + STATE(3006), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -144494,98 +144427,98 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [5743] = 39, + [5604] = 39, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2978), 1, + ACTIONS(2944), 1, anon_sym_null, - ACTIONS(2982), 1, + ACTIONS(2948), 1, sym__newline, - ACTIONS(2984), 1, + ACTIONS(2950), 1, anon_sym_LBRACK, - ACTIONS(2986), 1, + ACTIONS(2952), 1, anon_sym_LPAREN, - ACTIONS(2988), 1, + ACTIONS(2954), 1, anon_sym_DOLLAR, - ACTIONS(2990), 1, + ACTIONS(2956), 1, anon_sym_LBRACE, - ACTIONS(2992), 1, + ACTIONS(2958), 1, anon_sym_DOT_DOT, - ACTIONS(2996), 1, + ACTIONS(2962), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2998), 1, + ACTIONS(2964), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3004), 1, + ACTIONS(2970), 1, anon_sym_0b, - ACTIONS(3008), 1, + ACTIONS(2974), 1, sym_val_date, - ACTIONS(3010), 1, + ACTIONS(2976), 1, anon_sym_DQUOTE, - ACTIONS(3012), 1, + ACTIONS(2978), 1, anon_sym_SQUOTE, - ACTIONS(3014), 1, + ACTIONS(2980), 1, anon_sym_BQUOTE, - ACTIONS(3016), 1, + ACTIONS(2982), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3018), 1, + ACTIONS(2984), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3020), 1, + ACTIONS(2986), 1, aux_sym__unquoted_in_record_token1, - ACTIONS(3022), 1, + ACTIONS(2988), 1, sym_raw_string_begin, - STATE(1300), 1, + STATE(1331), 1, aux_sym__repeat_newline, - STATE(1333), 1, + STATE(1332), 1, sym_comment, - STATE(2479), 1, + STATE(2494), 1, sym__val_number_decimal, - STATE(2927), 1, + STATE(2908), 1, sym_expr_parenthesized, - STATE(2959), 1, + STATE(2955), 1, sym_val_variable, - STATE(2982), 1, + STATE(2999), 1, sym_val_bool, - STATE(2990), 1, + STATE(3003), 1, sym__inter_single_quotes, - STATE(2997), 1, + STATE(3005), 1, sym__inter_double_quotes, - STATE(3072), 1, + STATE(3008), 1, sym__val_number, - STATE(3123), 1, + STATE(3115), 1, sym__unquoted_in_record, - ACTIONS(2976), 2, + ACTIONS(2942), 2, anon_sym_true, anon_sym_false, - ACTIONS(2994), 2, + ACTIONS(2960), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3000), 2, + ACTIONS(2966), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3006), 2, + ACTIONS(2972), 2, anon_sym_0o, anon_sym_0x, - STATE(4621), 2, + STATE(4623), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(2980), 3, + ACTIONS(2946), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3002), 3, + ACTIONS(2968), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(3339), 3, + STATE(3406), 3, sym_val_range, sym__value, sym__unquoted_in_record_with_expr, - STATE(2624), 4, + STATE(2590), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(2976), 12, + STATE(3006), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -144598,12 +144531,114 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, + [5747] = 37, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(157), 1, + anon_sym_LBRACK, + ACTIONS(159), 1, + anon_sym_LPAREN, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(169), 1, + anon_sym_DOT_DOT, + ACTIONS(173), 1, + aux_sym_expr_unary_token1, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(195), 1, + sym_val_date, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(287), 1, + anon_sym_DASH2, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(2036), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(2038), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(2660), 1, + anon_sym_null, + STATE(692), 1, + sym_expr_parenthesized, + STATE(693), 1, + sym__val_number, + STATE(705), 1, + sym_val_variable, + STATE(876), 1, + sym__inter_single_quotes, + STATE(878), 1, + sym__inter_double_quotes, + STATE(916), 1, + sym__expr_unary_minus, + STATE(1333), 1, + sym_comment, + STATE(1831), 1, + sym__val_number_decimal, + STATE(2225), 1, + sym__expr_binary_expression, + STATE(4673), 1, + sym__expression, + ACTIONS(179), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(193), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1892), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2040), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(414), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(958), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(189), 6, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(954), 13, + sym_val_nothing, + sym_val_bool, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, [5886] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1334), 1, sym_comment, - ACTIONS(2517), 13, + ACTIONS(2547), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144617,7 +144652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2515), 49, + ACTIONS(2545), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144672,76 +144707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1335), 1, sym_comment, - ACTIONS(2453), 13, - anon_sym_GT2, - 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(2451), 49, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [6032] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1336), 1, - sym_comment, - ACTIONS(2457), 13, + ACTIONS(2515), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144755,7 +144721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2455), 49, + ACTIONS(2513), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144805,12 +144771,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6105] = 4, + [6032] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1337), 1, + STATE(1336), 1, sym_comment, - ACTIONS(2461), 13, + ACTIONS(2471), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144824,7 +144790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2459), 49, + ACTIONS(2469), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144874,12 +144840,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6178] = 4, + [6105] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1338), 1, + STATE(1337), 1, sym_comment, - ACTIONS(2465), 13, + ACTIONS(2475), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144893,7 +144859,7 @@ 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), 49, + ACTIONS(2473), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -144943,12 +144909,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6251] = 4, + [6178] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1339), 1, + STATE(1338), 1, sym_comment, - ACTIONS(2469), 13, + ACTIONS(2479), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -144962,7 +144928,7 @@ 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), 49, + ACTIONS(2477), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145012,12 +144978,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6324] = 4, + [6251] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1340), 1, + STATE(1339), 1, sym_comment, - ACTIONS(2473), 13, + ACTIONS(2483), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145031,7 +144997,7 @@ 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), 49, + ACTIONS(2481), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145081,12 +145047,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6397] = 4, + [6324] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1341), 1, + STATE(1340), 1, sym_comment, - ACTIONS(2477), 13, + ACTIONS(2487), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145100,7 +145066,7 @@ 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), 49, + ACTIONS(2485), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145150,12 +145116,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6470] = 4, + [6397] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1342), 1, + STATE(1341), 1, sym_comment, - ACTIONS(2527), 13, + ACTIONS(2491), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145169,7 +145135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2525), 49, + ACTIONS(2489), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145219,7 +145185,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, - [6543] = 37, + [6470] = 37, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(157), 1, @@ -145250,33 +145216,33 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(287), 1, anon_sym_DASH2, - ACTIONS(1020), 1, + ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(1976), 1, + ACTIONS(2036), 1, aux_sym__val_number_decimal_token1, - ACTIONS(1978), 1, + ACTIONS(2038), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2656), 1, + ACTIONS(2660), 1, anon_sym_null, - STATE(674), 1, + STATE(692), 1, sym_expr_parenthesized, - STATE(676), 1, + STATE(693), 1, sym__val_number, - STATE(677), 1, + STATE(705), 1, sym_val_variable, - STATE(847), 1, + STATE(876), 1, sym__inter_single_quotes, - STATE(848), 1, + STATE(878), 1, sym__inter_double_quotes, - STATE(958), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(1343), 1, + STATE(1342), 1, sym_comment, - STATE(1826), 1, + STATE(1831), 1, sym__val_number_decimal, - STATE(2216), 1, + STATE(2225), 1, sym__expr_binary_expression, - STATE(4673), 1, + STATE(4808), 1, sym__expression, ACTIONS(179), 2, anon_sym_DOT_DOT_EQ, @@ -145284,18 +145250,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(1914), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - ACTIONS(1980), 2, + ACTIONS(2040), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(422), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(926), 4, + STATE(958), 4, sym_expr_unary, sym_expr_binary, sym_val_range, @@ -145307,7 +145273,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(922), 13, + STATE(954), 13, sym_val_nothing, sym_val_bool, sym_val_cellpath, @@ -145321,12 +145287,81 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, + [6609] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1343), 1, + sym_comment, + ACTIONS(2495), 13, + anon_sym_GT2, + 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(2493), 49, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, [6682] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1344), 1, sym_comment, - ACTIONS(2449), 13, + ACTIONS(866), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -145340,7 +145375,7 @@ 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), 49, + ACTIONS(908), 49, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -145399,27 +145434,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, ACTIONS(1912), 1, aux_sym_unquoted_token1, - ACTIONS(2662), 1, + ACTIONS(2702), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2664), 1, + ACTIONS(2704), 1, anon_sym_COLON2, - ACTIONS(2746), 1, + ACTIONS(2750), 1, anon_sym_LBRACK, - ACTIONS(2748), 1, + ACTIONS(2752), 1, anon_sym_LPAREN, - ACTIONS(2750), 1, + ACTIONS(2754), 1, anon_sym_DOLLAR, - ACTIONS(2752), 1, + ACTIONS(2756), 1, anon_sym_LBRACE, ACTIONS(3026), 1, anon_sym_null, @@ -145427,23 +145462,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, ACTIONS(3038), 1, sym_val_date, - STATE(676), 1, + STATE(693), 1, sym__val_number, - STATE(847), 1, + STATE(876), 1, sym__inter_single_quotes, - STATE(848), 1, + STATE(878), 1, sym__inter_double_quotes, STATE(1345), 1, sym_comment, - STATE(3742), 1, + STATE(3706), 1, sym__val_number_decimal, - STATE(4269), 1, + STATE(4271), 1, sym_val_variable, - STATE(4320), 1, + STATE(4323), 1, sym_expr_parenthesized, - STATE(4793), 1, + STATE(4781), 1, sym_val_bool, - STATE(4986), 1, + STATE(4985), 1, sym_unquoted, ACTIONS(193), 2, anon_sym_0o, @@ -145460,13 +145495,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3036), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4985), 2, + STATE(4984), 2, sym_val_range, sym__value, - STATE(5013), 2, + STATE(5001), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(2539), 3, + ACTIONS(2567), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -145474,12 +145509,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2243), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(922), 12, + STATE(954), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -145497,99 +145532,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(191), 1, anon_sym_0b, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, ACTIONS(1912), 1, aux_sym_unquoted_token1, - ACTIONS(2748), 1, + ACTIONS(2752), 1, anon_sym_LPAREN, - ACTIONS(2902), 1, + ACTIONS(2863), 1, anon_sym_null, - ACTIONS(2906), 1, + ACTIONS(2867), 1, sym__newline, - ACTIONS(2908), 1, + ACTIONS(2869), 1, anon_sym_LBRACK, - ACTIONS(2910), 1, + ACTIONS(2871), 1, anon_sym_DOLLAR, - ACTIONS(2912), 1, + ACTIONS(2873), 1, anon_sym_LBRACE, - ACTIONS(2916), 1, + ACTIONS(2877), 1, anon_sym__, - ACTIONS(2918), 1, + ACTIONS(2879), 1, anon_sym_DOT_DOT, - ACTIONS(2922), 1, + ACTIONS(2883), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2924), 1, + ACTIONS(2885), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2928), 1, + ACTIONS(2889), 1, sym_val_date, - STATE(676), 1, + STATE(693), 1, sym__val_number, STATE(1346), 1, sym_comment, - STATE(1364), 1, + STATE(1363), 1, aux_sym__ctrl_match_body_repeat1, - STATE(2233), 1, + STATE(2239), 1, aux_sym__types_body_repeat1, - STATE(3468), 1, + STATE(3469), 1, sym__val_number_decimal, - STATE(3716), 1, + STATE(3704), 1, sym_expr_parenthesized, - STATE(3718), 1, + STATE(3705), 1, sym_val_variable, - STATE(3907), 1, + STATE(3839), 1, sym__match_pattern, - STATE(3955), 1, + STATE(3970), 1, sym_val_bool, - STATE(4160), 1, + STATE(4159), 1, sym__match_pattern_expression, - STATE(4163), 1, + STATE(4161), 1, sym__match_pattern_list, STATE(4170), 1, sym_unquoted, - STATE(5101), 1, + STATE(5060), 1, sym_match_pattern, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(2900), 2, + ACTIONS(2861), 2, anon_sym_true, anon_sym_false, - ACTIONS(2920), 2, + ACTIONS(2881), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(2926), 2, + ACTIONS(2887), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4162), 2, + STATE(4160), 2, sym__match_pattern_value, sym_val_range, - STATE(4609), 2, + STATE(4602), 2, sym_match_arm, sym_default_arm, - STATE(5013), 2, + STATE(5001), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(189), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(2904), 3, + ACTIONS(2865), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2243), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4167), 8, + STATE(4166), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -145603,7 +145638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1347), 1, sym_comment, - STATE(1350), 1, + STATE(1349), 1, aux_sym__block_body_repeat1, ACTIONS(153), 2, sym__newline, @@ -145669,193 +145704,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, [7120] = 37, - ACTIONS(3), 1, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1386), 1, - anon_sym_LPAREN, - ACTIONS(1390), 1, - anon_sym_DOLLAR, - ACTIONS(1406), 1, + ACTIONS(191), 1, anon_sym_0b, - ACTIONS(1412), 1, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1418), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(1420), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1426), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(1476), 1, - anon_sym_LBRACE, - ACTIONS(1578), 1, + ACTIONS(1912), 1, + aux_sym_unquoted_token1, + ACTIONS(2750), 1, anon_sym_LBRACK, - ACTIONS(3048), 1, - anon_sym_null, - ACTIONS(3052), 1, - anon_sym_DOT_DOT, - ACTIONS(3056), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3058), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3062), 1, - sym_val_date, - ACTIONS(3064), 1, - aux_sym__unquoted_in_record_token1, - STATE(1348), 1, - sym_comment, - STATE(3443), 1, - sym__val_number_decimal, - STATE(3879), 1, - sym_val_variable, - STATE(3996), 1, - sym_expr_parenthesized, - STATE(4156), 1, - sym__unquoted_in_record, - STATE(4215), 1, - sym_val_bool, - STATE(4361), 1, - sym__val_number, - STATE(4595), 1, - sym__inter_single_quotes, - STATE(4596), 1, - sym__inter_double_quotes, - ACTIONS(1408), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3046), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3054), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3060), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4462), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(1404), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3050), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(4763), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(3638), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4604), 12, - sym_val_nothing, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [7257] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1386), 1, + ACTIONS(2752), 1, anon_sym_LPAREN, - ACTIONS(1390), 1, + ACTIONS(2754), 1, anon_sym_DOLLAR, - ACTIONS(1406), 1, - anon_sym_0b, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1418), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(1420), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(1476), 1, + ACTIONS(2756), 1, anon_sym_LBRACE, - ACTIONS(1578), 1, - anon_sym_LBRACK, - ACTIONS(3048), 1, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3026), 1, anon_sym_null, - ACTIONS(3052), 1, + ACTIONS(3030), 1, anon_sym_DOT_DOT, - ACTIONS(3056), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3058), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3062), 1, + ACTIONS(3038), 1, sym_val_date, - ACTIONS(3064), 1, - aux_sym__unquoted_in_record_token1, - STATE(1349), 1, + STATE(693), 1, + sym__val_number, + STATE(876), 1, + sym__inter_single_quotes, + STATE(878), 1, + sym__inter_double_quotes, + STATE(1348), 1, sym_comment, - STATE(3443), 1, + STATE(3706), 1, sym__val_number_decimal, - STATE(3879), 1, + STATE(4271), 1, sym_val_variable, - STATE(4032), 1, + STATE(4316), 1, sym_expr_parenthesized, - STATE(4215), 1, + STATE(4781), 1, sym_val_bool, - STATE(4361), 1, - sym__val_number, - STATE(4365), 1, - sym__unquoted_in_record, - STATE(4595), 1, - sym__inter_single_quotes, - STATE(4596), 1, - sym__inter_double_quotes, - ACTIONS(1408), 2, + STATE(5126), 1, + sym_unquoted, + ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3046), 2, + ACTIONS(3024), 2, anon_sym_true, anon_sym_false, - ACTIONS(3054), 2, + ACTIONS(3032), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3060), 2, + ACTIONS(3034), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3036), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4462), 2, + STATE(4980), 2, + sym_val_range, + sym__value, + STATE(5001), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(1404), 3, + ACTIONS(2567), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3050), 3, + ACTIONS(3028), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(4737), 3, - sym_val_range, - sym__value, - sym__unquoted_in_record_with_expr, - STATE(3638), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4604), 12, + STATE(954), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -145868,16 +145803,16 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7394] = 5, + [7257] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3070), 2, + ACTIONS(3050), 2, sym__newline, anon_sym_SEMI, - STATE(1350), 2, + STATE(1349), 2, sym_comment, aux_sym__block_body_repeat1, - ACTIONS(3066), 10, + ACTIONS(3046), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -145888,7 +145823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3068), 47, + ACTIONS(3048), 47, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -145936,17 +145871,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7467] = 7, + [7330] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1350), 1, + STATE(1349), 1, aux_sym__block_body_repeat1, - STATE(1351), 1, + STATE(1350), 1, sym_comment, ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3073), 2, + ACTIONS(3053), 2, anon_sym_RPAREN, anon_sym_RBRACE, ACTIONS(3040), 10, @@ -146006,7 +145941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [7544] = 37, + [7407] = 37, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1386), 1, @@ -146031,69 +145966,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1578), 1, anon_sym_LBRACK, - ACTIONS(3048), 1, + ACTIONS(3057), 1, anon_sym_null, - ACTIONS(3052), 1, + ACTIONS(3061), 1, anon_sym_DOT_DOT, - ACTIONS(3056), 1, + ACTIONS(3065), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3058), 1, + ACTIONS(3067), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3062), 1, + ACTIONS(3071), 1, sym_val_date, - ACTIONS(3064), 1, + ACTIONS(3073), 1, aux_sym__unquoted_in_record_token1, - STATE(1352), 1, + STATE(1351), 1, sym_comment, - STATE(3443), 1, + STATE(3481), 1, sym__val_number_decimal, - STATE(3879), 1, + STATE(3828), 1, sym_val_variable, - STATE(4088), 1, + STATE(3966), 1, sym_expr_parenthesized, - STATE(4188), 1, - sym__unquoted_in_record, - STATE(4215), 1, + STATE(4216), 1, sym_val_bool, - STATE(4361), 1, + STATE(4358), 1, sym__val_number, - STATE(4595), 1, + STATE(4365), 1, + sym__unquoted_in_record, + STATE(4592), 1, sym__inter_single_quotes, STATE(4596), 1, sym__inter_double_quotes, ACTIONS(1408), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3046), 2, + ACTIONS(3055), 2, anon_sym_true, anon_sym_false, - ACTIONS(3054), 2, + ACTIONS(3063), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3060), 2, + ACTIONS(3069), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4462), 2, + STATE(4457), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(1404), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3050), 3, + ACTIONS(3059), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(4733), 3, + STATE(4734), 3, sym_val_range, sym__value, sym__unquoted_in_record_with_expr, - STATE(3638), 4, + STATE(3649), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4604), 12, + STATE(4601), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, @@ -146106,75 +146041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7681] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3075), 1, - sym__newline, - STATE(1353), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1940), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1935), 48, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [7754] = 37, + [7544] = 37, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(191), 1, @@ -146183,125 +146050,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(205), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(1912), 1, - aux_sym_unquoted_token1, - ACTIONS(2746), 1, - anon_sym_LBRACK, - ACTIONS(2748), 1, - anon_sym_LPAREN, - ACTIONS(2750), 1, - anon_sym_DOLLAR, - ACTIONS(2752), 1, - anon_sym_LBRACE, - ACTIONS(2878), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3026), 1, - anon_sym_null, - ACTIONS(3030), 1, - anon_sym_DOT_DOT, - ACTIONS(3038), 1, - sym_val_date, - STATE(676), 1, - sym__val_number, - STATE(847), 1, - sym__inter_single_quotes, - STATE(848), 1, - sym__inter_double_quotes, - STATE(1354), 1, - sym_comment, - STATE(3742), 1, - sym__val_number_decimal, - STATE(4269), 1, - sym_val_variable, - STATE(4313), 1, - sym_expr_parenthesized, - STATE(4793), 1, - sym_val_bool, - STATE(5137), 1, - sym_unquoted, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3024), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3032), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3034), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3036), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4989), 2, - sym_val_range, - sym__value, - STATE(5013), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(2539), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3028), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2243), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(922), 12, - sym_val_nothing, - sym_val_cellpath, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [7891] = 37, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1786), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, ACTIONS(1912), 1, aux_sym_unquoted_token1, - ACTIONS(2533), 1, + ACTIONS(2561), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2746), 1, + ACTIONS(2750), 1, anon_sym_LBRACK, - ACTIONS(2748), 1, + ACTIONS(2752), 1, anon_sym_LPAREN, - ACTIONS(2750), 1, + ACTIONS(2754), 1, anon_sym_DOLLAR, - ACTIONS(2752), 1, + ACTIONS(2756), 1, anon_sym_LBRACE, ACTIONS(3026), 1, anon_sym_null, @@ -146309,23 +146076,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, ACTIONS(3038), 1, sym_val_date, - STATE(676), 1, + STATE(693), 1, sym__val_number, - STATE(847), 1, + STATE(876), 1, sym__inter_single_quotes, - STATE(848), 1, + STATE(878), 1, sym__inter_double_quotes, - STATE(1355), 1, + STATE(1352), 1, sym_comment, - STATE(3742), 1, + STATE(3706), 1, sym__val_number_decimal, - STATE(4269), 1, + STATE(4271), 1, sym_val_variable, - STATE(4320), 1, + STATE(4323), 1, sym_expr_parenthesized, - STATE(4793), 1, + STATE(4781), 1, sym_val_bool, - STATE(4986), 1, + STATE(4985), 1, sym_unquoted, ACTIONS(193), 2, anon_sym_0o, @@ -146342,13 +146109,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3036), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4985), 2, + STATE(4984), 2, sym_val_range, sym__value, - STATE(5013), 2, + STATE(5001), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(2539), 3, + ACTIONS(2567), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -146356,241 +146123,137 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2243), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(922), 12, + STATE(954), 12, sym_val_nothing, sym_val_cellpath, sym_val_number, sym_val_duration, sym_val_filesize, sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [8028] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1350), 1, - aux_sym__block_body_repeat1, - STATE(1356), 1, - sym_comment, - ACTIONS(153), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(3078), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(3040), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3042), 45, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [8105] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3080), 2, - sym__newline, - anon_sym_SEMI, - STATE(1357), 2, - sym_comment, - aux_sym__block_body_repeat1, - ACTIONS(3066), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3068), 46, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [7681] = 37, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1386), 1, + anon_sym_LPAREN, + ACTIONS(1390), 1, + anon_sym_DOLLAR, + ACTIONS(1406), 1, + anon_sym_0b, + ACTIONS(1412), 1, anon_sym_DQUOTE, + ACTIONS(1414), 1, anon_sym_SQUOTE, + ACTIONS(1416), 1, anon_sym_BQUOTE, + ACTIONS(1418), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(1420), 1, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [8177] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2110), 1, - anon_sym_POUND_BANG, - ACTIONS(2888), 1, - sym__newline, - STATE(1358), 1, - sym_comment, - ACTIONS(3085), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOLLAR, - anon_sym_DASH2, + ACTIONS(1426), 1, + sym_raw_string_begin, + ACTIONS(1476), 1, + anon_sym_LBRACE, + ACTIONS(1578), 1, + anon_sym_LBRACK, + ACTIONS(3057), 1, + anon_sym_null, + ACTIONS(3061), 1, anon_sym_DOT_DOT, + ACTIONS(3065), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, + ACTIONS(3067), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3071), 1, + sym_val_date, + ACTIONS(3073), 1, + aux_sym__unquoted_in_record_token1, + STATE(1353), 1, + sym_comment, + STATE(3481), 1, + sym__val_number_decimal, + STATE(3828), 1, + sym_val_variable, + STATE(4003), 1, + sym_expr_parenthesized, + STATE(4152), 1, + sym__unquoted_in_record, + STATE(4216), 1, + sym_val_bool, + STATE(4358), 1, + sym__val_number, + STATE(4592), 1, + sym__inter_single_quotes, + STATE(4596), 1, + sym__inter_double_quotes, + ACTIONS(1408), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3083), 47, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + ACTIONS(3055), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, + ACTIONS(3063), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, + ACTIONS(3069), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + STATE(4457), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(1404), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [8251] = 7, + ACTIONS(3059), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(4696), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(3649), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4601), 12, + sym_val_nothing, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [7818] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3073), 1, - ts_builtin_sym_end, - STATE(1357), 1, + STATE(1349), 1, aux_sym__block_body_repeat1, - STATE(1359), 1, + STATE(1354), 1, sym_comment, - ACTIONS(55), 2, + ACTIONS(153), 2, sym__newline, anon_sym_SEMI, + ACTIONS(3075), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, ACTIONS(3040), 10, anon_sym_export, aux_sym_cmd_identifier_token1, @@ -146648,93 +146311,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8327] = 36, + [7895] = 37, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1386), 1, + anon_sym_LPAREN, + ACTIONS(1390), 1, + anon_sym_DOLLAR, + ACTIONS(1406), 1, + anon_sym_0b, + ACTIONS(1412), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1414), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1416), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3004), 1, - anon_sym_0b, - ACTIONS(3016), 1, + ACTIONS(1418), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3018), 1, + ACTIONS(1420), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3089), 1, - anon_sym_null, - ACTIONS(3093), 1, - anon_sym_LBRACK, - ACTIONS(3095), 1, - anon_sym_LPAREN, - ACTIONS(3097), 1, - anon_sym_DOLLAR, - ACTIONS(3099), 1, + ACTIONS(1426), 1, + sym_raw_string_begin, + ACTIONS(1476), 1, anon_sym_LBRACE, - ACTIONS(3101), 1, + ACTIONS(1578), 1, + anon_sym_LBRACK, + ACTIONS(3057), 1, + anon_sym_null, + ACTIONS(3061), 1, anon_sym_DOT_DOT, - ACTIONS(3103), 1, - anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3065), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3109), 1, + ACTIONS(3067), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3113), 1, + ACTIONS(3071), 1, sym_val_date, - ACTIONS(3115), 1, - aux_sym_unquoted_token1, - STATE(1360), 1, + ACTIONS(3073), 1, + aux_sym__unquoted_in_record_token1, + STATE(1355), 1, sym_comment, - STATE(2990), 1, - sym__inter_single_quotes, - STATE(2997), 1, - sym__inter_double_quotes, - STATE(3072), 1, - sym__val_number, - STATE(3553), 1, + STATE(3481), 1, sym__val_number_decimal, - STATE(4273), 1, + STATE(3828), 1, + sym_val_variable, + STATE(3938), 1, + sym_expr_parenthesized, + STATE(4189), 1, + sym__unquoted_in_record, + STATE(4216), 1, sym_val_bool, - STATE(4594), 1, - sym_unquoted, - ACTIONS(3006), 2, + STATE(4358), 1, + sym__val_number, + STATE(4592), 1, + sym__inter_single_quotes, + STATE(4596), 1, + sym__inter_double_quotes, + ACTIONS(1408), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3087), 2, + ACTIONS(3055), 2, anon_sym_true, anon_sym_false, - ACTIONS(3105), 2, + ACTIONS(3063), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3111), 2, + ACTIONS(3069), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4593), 2, - sym__expr_parenthesized_immediate, - sym__value, - STATE(5030), 2, + STATE(4457), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3002), 3, + ACTIONS(1404), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3091), 3, + ACTIONS(3059), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2243), 4, + STATE(4711), 3, + sym_val_range, + sym__value, + sym__unquoted_in_record_with_expr, + STATE(3649), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(2976), 13, + STATE(4601), 12, sym_val_nothing, - sym_val_variable, sym_val_cellpath, sym_val_number, sym_val_duration, @@ -146746,12 +146411,15 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [8461] = 4, + [8032] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1361), 1, + ACTIONS(3077), 1, + sym__newline, + STATE(1356), 2, + aux_sym__repeat_newline, sym_comment, - ACTIONS(2112), 10, + ACTIONS(1921), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146762,7 +146430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2110), 49, + ACTIONS(1916), 48, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -146787,7 +146455,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_AT, @@ -146812,19 +146479,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8531] = 7, + [8105] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3121), 1, - sym__newline, - ACTIONS(3124), 1, - anon_sym_SEMI, - STATE(4466), 1, - aux_sym__repeat_newline, - STATE(1362), 2, + ACTIONS(2146), 1, + anon_sym_PIPE, + STATE(1357), 1, sym_comment, - aux_sym__parenthesized_body_repeat1, - ACTIONS(3117), 10, + ACTIONS(2854), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146835,7 +146497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3119), 45, + ACTIONS(2851), 48, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -146860,10 +146522,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -146881,19 +146546,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8607] = 7, + [8177] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3078), 1, - ts_builtin_sym_end, - STATE(1357), 1, - aux_sym__block_body_repeat1, - STATE(1363), 1, - sym_comment, - ACTIONS(55), 2, + ACTIONS(2569), 1, sym__newline, + ACTIONS(3084), 1, anon_sym_SEMI, - ACTIONS(3040), 10, + STATE(1358), 1, + sym_comment, + STATE(1365), 1, + aux_sym__parenthesized_body_repeat1, + STATE(1377), 1, + aux_sym__repeat_newline, + ACTIONS(3080), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -146904,7 +146570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3042), 45, + ACTIONS(3082), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -146950,100 +146616,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8683] = 40, + [8255] = 40, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_0b, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, ACTIONS(1912), 1, aux_sym_unquoted_token1, - ACTIONS(2748), 1, + ACTIONS(2752), 1, anon_sym_LPAREN, - ACTIONS(2902), 1, + ACTIONS(2863), 1, anon_sym_null, - ACTIONS(2908), 1, + ACTIONS(2869), 1, anon_sym_LBRACK, - ACTIONS(2910), 1, + ACTIONS(2871), 1, anon_sym_DOLLAR, - ACTIONS(2912), 1, + ACTIONS(2873), 1, anon_sym_LBRACE, - ACTIONS(2916), 1, + ACTIONS(2877), 1, anon_sym__, - ACTIONS(2918), 1, + ACTIONS(2879), 1, anon_sym_DOT_DOT, - ACTIONS(2922), 1, + ACTIONS(2883), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2924), 1, + ACTIONS(2885), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2928), 1, + ACTIONS(2889), 1, sym_val_date, - STATE(676), 1, + STATE(693), 1, sym__val_number, - STATE(1364), 1, + STATE(1359), 1, sym_comment, - STATE(1368), 1, + STATE(1361), 1, aux_sym__ctrl_match_body_repeat1, - STATE(3468), 1, + STATE(3469), 1, sym__val_number_decimal, - STATE(3716), 1, + STATE(3704), 1, sym_expr_parenthesized, - STATE(3718), 1, + STATE(3705), 1, sym_val_variable, - STATE(3907), 1, + STATE(3839), 1, sym__match_pattern, - STATE(3955), 1, + STATE(3970), 1, sym_val_bool, - STATE(4160), 1, + STATE(4159), 1, sym__match_pattern_expression, - STATE(4163), 1, + STATE(4161), 1, sym__match_pattern_list, STATE(4170), 1, sym_unquoted, - STATE(5101), 1, + STATE(5060), 1, sym_match_pattern, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(2900), 2, + ACTIONS(2861), 2, anon_sym_true, anon_sym_false, - ACTIONS(2920), 2, + ACTIONS(2881), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(2926), 2, + ACTIONS(2887), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4162), 2, + STATE(4160), 2, sym__match_pattern_value, sym_val_range, - STATE(4501), 2, + STATE(4602), 2, sym_match_arm, sym_default_arm, - STATE(5013), 2, + STATE(5001), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(189), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(2904), 3, + ACTIONS(2865), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2243), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4167), 8, + STATE(4166), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -147052,82 +146718,16 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [8825] = 8, + [8397] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2541), 1, + ACTIONS(3086), 2, sym__newline, - ACTIONS(3131), 1, anon_sym_SEMI, - STATE(1362), 1, - aux_sym__parenthesized_body_repeat1, - STATE(1365), 1, - sym_comment, - STATE(1377), 1, - aux_sym__repeat_newline, - ACTIONS(3127), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3129), 45, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [8903] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1366), 1, + STATE(1360), 2, sym_comment, - ACTIONS(3085), 10, + aux_sym__block_body_repeat1, + ACTIONS(3046), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147138,8 +146738,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3083), 49, + ACTIONS(3048), 46, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -147163,14 +146764,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -147188,299 +146785,299 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [8973] = 36, + [8469] = 39, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3135), 1, + ACTIONS(3092), 1, anon_sym_null, - ACTIONS(3139), 1, + ACTIONS(3098), 1, anon_sym_LBRACK, - ACTIONS(3141), 1, + ACTIONS(3101), 1, anon_sym_LPAREN, - ACTIONS(3143), 1, + ACTIONS(3104), 1, anon_sym_DOLLAR, - ACTIONS(3145), 1, + ACTIONS(3107), 1, anon_sym_LBRACE, - ACTIONS(3147), 1, + ACTIONS(3110), 1, + anon_sym__, + ACTIONS(3113), 1, anon_sym_DOT_DOT, - ACTIONS(3149), 1, - anon_sym_LPAREN2, - ACTIONS(3153), 1, + ACTIONS(3119), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3155), 1, + ACTIONS(3122), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3161), 1, + ACTIONS(3131), 1, anon_sym_0b, - ACTIONS(3165), 1, + ACTIONS(3137), 1, sym_val_date, - ACTIONS(3167), 1, + ACTIONS(3140), 1, anon_sym_DQUOTE, - ACTIONS(3169), 1, + ACTIONS(3143), 1, anon_sym_SQUOTE, - ACTIONS(3171), 1, + ACTIONS(3146), 1, anon_sym_BQUOTE, - ACTIONS(3173), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3175), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3177), 1, + ACTIONS(3149), 1, aux_sym_unquoted_token1, - ACTIONS(3179), 1, + ACTIONS(3152), 1, sym_raw_string_begin, - STATE(1367), 1, - sym_comment, - STATE(1841), 1, + STATE(693), 1, + sym__val_number, + STATE(3469), 1, sym__val_number_decimal, - STATE(2118), 1, + STATE(3704), 1, + sym_expr_parenthesized, + STATE(3705), 1, + sym_val_variable, + STATE(3839), 1, + sym__match_pattern, + STATE(3970), 1, sym_val_bool, - STATE(2135), 1, - sym__val_number, - STATE(2151), 1, - sym__inter_single_quotes, - STATE(2153), 1, - sym__inter_double_quotes, - STATE(2196), 1, + STATE(4159), 1, + sym__match_pattern_expression, + STATE(4161), 1, + sym__match_pattern_list, + STATE(4170), 1, sym_unquoted, - ACTIONS(3133), 2, + STATE(5060), 1, + sym_match_pattern, + ACTIONS(3089), 2, anon_sym_true, anon_sym_false, - ACTIONS(3151), 2, + ACTIONS(3116), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3157), 2, + ACTIONS(3125), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3163), 2, + ACTIONS(3134), 2, anon_sym_0o, anon_sym_0x, - STATE(2195), 2, - sym__expr_parenthesized_immediate, - sym__value, - STATE(4865), 2, + STATE(1361), 2, + sym_comment, + aux_sym__ctrl_match_body_repeat1, + STATE(4160), 2, + sym__match_pattern_value, + sym_val_range, + STATE(4731), 2, + sym_match_arm, + sym_default_arm, + STATE(5001), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3137), 3, + ACTIONS(3095), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3159), 3, + ACTIONS(3128), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2161), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(2136), 13, + STATE(4166), 8, + sym__match_pattern_record, sym_val_nothing, - sym_val_variable, - sym_val_cellpath, sym_val_number, sym_val_duration, sym_val_filesize, sym_val_binary, sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, sym_val_table, - sym_val_closure, - [9107] = 39, + [8609] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3184), 1, + ACTIONS(934), 1, + anon_sym_DOLLAR, + ACTIONS(950), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(956), 1, + anon_sym_0b, + ACTIONS(976), 1, + aux_sym_unquoted_token1, + ACTIONS(978), 1, + sym_raw_string_begin, + ACTIONS(3157), 1, anon_sym_null, - ACTIONS(3190), 1, + ACTIONS(3161), 1, anon_sym_LBRACK, - ACTIONS(3193), 1, + ACTIONS(3163), 1, anon_sym_LPAREN, - ACTIONS(3196), 1, - anon_sym_DOLLAR, - ACTIONS(3199), 1, + ACTIONS(3165), 1, anon_sym_LBRACE, - ACTIONS(3202), 1, - anon_sym__, - ACTIONS(3205), 1, + ACTIONS(3167), 1, anon_sym_DOT_DOT, - ACTIONS(3211), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3214), 1, + ACTIONS(3169), 1, + anon_sym_LPAREN2, + ACTIONS(3173), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3223), 1, - anon_sym_0b, - ACTIONS(3229), 1, + ACTIONS(3179), 1, sym_val_date, - ACTIONS(3232), 1, + ACTIONS(3181), 1, anon_sym_DQUOTE, - ACTIONS(3235), 1, + ACTIONS(3183), 1, anon_sym_SQUOTE, - ACTIONS(3238), 1, + ACTIONS(3185), 1, anon_sym_BQUOTE, - ACTIONS(3241), 1, - aux_sym_unquoted_token1, - ACTIONS(3244), 1, - sym_raw_string_begin, - STATE(676), 1, - sym__val_number, - STATE(3468), 1, + ACTIONS(3187), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3189), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(1362), 1, + sym_comment, + STATE(2528), 1, sym__val_number_decimal, - STATE(3716), 1, - sym_expr_parenthesized, - STATE(3718), 1, - sym_val_variable, - STATE(3907), 1, - sym__match_pattern, - STATE(3955), 1, + STATE(2940), 1, sym_val_bool, - STATE(4160), 1, - sym__match_pattern_expression, - STATE(4163), 1, - sym__match_pattern_list, - STATE(4170), 1, + STATE(3201), 1, sym_unquoted, - STATE(5101), 1, - sym_match_pattern, - ACTIONS(3181), 2, + STATE(3231), 1, + sym__val_number, + STATE(3250), 1, + sym__inter_single_quotes, + STATE(3253), 1, + sym__inter_double_quotes, + ACTIONS(958), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3155), 2, anon_sym_true, anon_sym_false, - ACTIONS(3208), 2, + ACTIONS(3171), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3217), 2, + ACTIONS(3175), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3226), 2, - anon_sym_0o, - anon_sym_0x, - STATE(1368), 2, - sym_comment, - aux_sym__ctrl_match_body_repeat1, - STATE(4162), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4659), 2, - sym_match_arm, - sym_default_arm, - STATE(5013), 2, + STATE(3219), 2, + sym__expr_parenthesized_immediate, + sym__value, + STATE(5077), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3187), 3, + ACTIONS(3159), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3220), 3, + ACTIONS(3177), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2243), 4, + STATE(2536), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4167), 8, - sym__match_pattern_record, + STATE(3215), 13, sym_val_nothing, + sym_val_variable, + sym_val_cellpath, sym_val_number, sym_val_duration, sym_val_filesize, sym_val_binary, sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, sym_val_table, - [9247] = 40, + sym_val_closure, + [8743] = 40, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(191), 1, anon_sym_0b, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, ACTIONS(1912), 1, aux_sym_unquoted_token1, - ACTIONS(2748), 1, + ACTIONS(2752), 1, anon_sym_LPAREN, - ACTIONS(2902), 1, + ACTIONS(2863), 1, anon_sym_null, - ACTIONS(2908), 1, + ACTIONS(2869), 1, anon_sym_LBRACK, - ACTIONS(2910), 1, + ACTIONS(2871), 1, anon_sym_DOLLAR, - ACTIONS(2912), 1, + ACTIONS(2873), 1, anon_sym_LBRACE, - ACTIONS(2916), 1, + ACTIONS(2877), 1, anon_sym__, - ACTIONS(2918), 1, + ACTIONS(2879), 1, anon_sym_DOT_DOT, - ACTIONS(2922), 1, + ACTIONS(2883), 1, aux_sym__val_number_decimal_token1, - ACTIONS(2924), 1, + ACTIONS(2885), 1, aux_sym__val_number_decimal_token2, - ACTIONS(2928), 1, + ACTIONS(2889), 1, sym_val_date, - STATE(676), 1, + STATE(693), 1, sym__val_number, - STATE(1368), 1, + STATE(1361), 1, aux_sym__ctrl_match_body_repeat1, - STATE(1369), 1, + STATE(1363), 1, sym_comment, - STATE(3468), 1, + STATE(3469), 1, sym__val_number_decimal, - STATE(3716), 1, + STATE(3704), 1, sym_expr_parenthesized, - STATE(3718), 1, + STATE(3705), 1, sym_val_variable, - STATE(3907), 1, + STATE(3839), 1, sym__match_pattern, - STATE(3955), 1, + STATE(3970), 1, sym_val_bool, - STATE(4160), 1, + STATE(4159), 1, sym__match_pattern_expression, - STATE(4163), 1, + STATE(4161), 1, sym__match_pattern_list, STATE(4170), 1, sym_unquoted, - STATE(5101), 1, + STATE(5060), 1, sym_match_pattern, ACTIONS(193), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(2900), 2, + ACTIONS(2861), 2, anon_sym_true, anon_sym_false, - ACTIONS(2920), 2, + ACTIONS(2881), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(2926), 2, + ACTIONS(2887), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4162), 2, + STATE(4160), 2, sym__match_pattern_value, sym_val_range, - STATE(4609), 2, + STATE(4478), 2, sym_match_arm, sym_default_arm, - STATE(5013), 2, + STATE(5001), 2, sym__val_range, sym__unquoted_anonymous_prefix, ACTIONS(189), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(2904), 3, + ACTIONS(2865), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2243), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4167), 8, + STATE(4166), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -147489,91 +147086,91 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [9389] = 36, + [8885] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(824), 1, + ACTIONS(818), 1, anon_sym_DOLLAR, - ACTIONS(846), 1, + ACTIONS(840), 1, anon_sym_0b, - ACTIONS(868), 1, + ACTIONS(862), 1, aux_sym_unquoted_token1, - ACTIONS(870), 1, + ACTIONS(864), 1, sym_raw_string_begin, ACTIONS(1240), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3249), 1, + ACTIONS(3193), 1, anon_sym_null, - ACTIONS(3253), 1, + ACTIONS(3197), 1, anon_sym_LBRACK, - ACTIONS(3255), 1, + ACTIONS(3199), 1, anon_sym_LPAREN, - ACTIONS(3257), 1, + ACTIONS(3201), 1, anon_sym_LBRACE, - ACTIONS(3259), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3261), 1, + ACTIONS(3205), 1, anon_sym_LPAREN2, - ACTIONS(3265), 1, + ACTIONS(3209), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3271), 1, + ACTIONS(3215), 1, sym_val_date, - ACTIONS(3273), 1, + ACTIONS(3217), 1, anon_sym_DQUOTE, - ACTIONS(3275), 1, + ACTIONS(3219), 1, anon_sym_SQUOTE, - ACTIONS(3277), 1, + ACTIONS(3221), 1, anon_sym_BQUOTE, - ACTIONS(3279), 1, + ACTIONS(3223), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3281), 1, + ACTIONS(3225), 1, anon_sym_DOLLAR_DQUOTE, - STATE(1370), 1, + STATE(1364), 1, sym_comment, - STATE(2983), 1, - sym__inter_single_quotes, - STATE(3024), 1, - sym__val_number, - STATE(3069), 1, + STATE(3007), 1, sym_unquoted, - STATE(3101), 1, + STATE(3009), 1, + sym__inter_single_quotes, + STATE(3012), 1, sym__inter_double_quotes, - STATE(3582), 1, + STATE(3106), 1, + sym__val_number, + STATE(3598), 1, sym__val_number_decimal, - STATE(4029), 1, + STATE(3965), 1, sym_val_bool, - ACTIONS(848), 2, + ACTIONS(842), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3247), 2, + ACTIONS(3191), 2, anon_sym_true, anon_sym_false, - ACTIONS(3263), 2, + ACTIONS(3207), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3267), 2, + ACTIONS(3211), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3068), 2, + STATE(2984), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(5145), 2, + STATE(5140), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3251), 3, + ACTIONS(3195), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3269), 3, + ACTIONS(3213), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2508), 4, + STATE(2499), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3022), 13, + STATE(3105), 13, sym_val_nothing, sym_val_variable, sym_val_cellpath, @@ -147587,91 +147184,295 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9523] = 36, + [9019] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(824), 1, + ACTIONS(3231), 1, + sym__newline, + ACTIONS(3234), 1, + anon_sym_SEMI, + STATE(4467), 1, + aux_sym__repeat_newline, + STATE(1365), 2, + sym_comment, + aux_sym__parenthesized_body_repeat1, + ACTIONS(3227), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, anon_sym_DOLLAR, - ACTIONS(840), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(846), 1, anon_sym_0b, - ACTIONS(868), 1, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3229), 45, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_where, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [9095] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1366), 1, + sym_comment, + ACTIONS(3237), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3239), 49, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [9165] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3075), 1, + ts_builtin_sym_end, + STATE(1360), 1, + aux_sym__block_body_repeat1, + STATE(1367), 1, + sym_comment, + ACTIONS(55), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3040), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3042), 45, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_where, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [9241] = 36, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(818), 1, + anon_sym_DOLLAR, + ACTIONS(834), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(840), 1, + anon_sym_0b, + ACTIONS(862), 1, aux_sym_unquoted_token1, - ACTIONS(870), 1, + ACTIONS(864), 1, sym_raw_string_begin, - ACTIONS(3253), 1, + ACTIONS(3197), 1, anon_sym_LBRACK, - ACTIONS(3255), 1, + ACTIONS(3199), 1, anon_sym_LPAREN, - ACTIONS(3257), 1, + ACTIONS(3201), 1, anon_sym_LBRACE, - ACTIONS(3259), 1, + ACTIONS(3203), 1, anon_sym_DOT_DOT, - ACTIONS(3261), 1, + ACTIONS(3205), 1, anon_sym_LPAREN2, - ACTIONS(3273), 1, + ACTIONS(3217), 1, anon_sym_DQUOTE, - ACTIONS(3275), 1, + ACTIONS(3219), 1, anon_sym_SQUOTE, - ACTIONS(3277), 1, + ACTIONS(3221), 1, anon_sym_BQUOTE, - ACTIONS(3279), 1, + ACTIONS(3223), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3281), 1, + ACTIONS(3225), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3285), 1, + ACTIONS(3243), 1, anon_sym_null, - ACTIONS(3289), 1, + ACTIONS(3247), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3293), 1, + ACTIONS(3251), 1, sym_val_date, - STATE(1371), 1, + STATE(1368), 1, sym_comment, - STATE(2488), 1, + STATE(2490), 1, sym__val_number_decimal, - STATE(2861), 1, + STATE(2745), 1, sym_val_bool, - STATE(2983), 1, - sym__inter_single_quotes, - STATE(3024), 1, - sym__val_number, - STATE(3069), 1, + STATE(3007), 1, sym_unquoted, - STATE(3101), 1, + STATE(3009), 1, + sym__inter_single_quotes, + STATE(3012), 1, sym__inter_double_quotes, - ACTIONS(848), 2, + STATE(3106), 1, + sym__val_number, + ACTIONS(842), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(3263), 2, + ACTIONS(3207), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3283), 2, + ACTIONS(3241), 2, anon_sym_true, anon_sym_false, - ACTIONS(3291), 2, + ACTIONS(3249), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3068), 2, + STATE(2984), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(5145), 2, + STATE(5140), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3269), 3, + ACTIONS(3213), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - ACTIONS(3287), 3, + ACTIONS(3245), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2508), 4, + STATE(2499), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3022), 13, + STATE(3105), 13, sym_val_nothing, sym_val_variable, sym_val_cellpath, @@ -147685,14 +147486,14 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9657] = 7, + [9375] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3044), 1, + ACTIONS(3053), 1, ts_builtin_sym_end, - STATE(1357), 1, + STATE(1360), 1, aux_sym__block_body_repeat1, - STATE(1372), 1, + STATE(1369), 1, sym_comment, ACTIONS(55), 2, sym__newline, @@ -147754,91 +147555,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [9733] = 36, - ACTIONS(3), 1, + [9451] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(930), 1, + ACTIONS(2146), 1, + anon_sym_POUND_BANG, + ACTIONS(2851), 1, + sym__newline, + STATE(1370), 1, + sym_comment, + ACTIONS(3237), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, anon_sym_DOLLAR, - ACTIONS(946), 1, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - ACTIONS(952), 1, anon_sym_0b, - ACTIONS(972), 1, - aux_sym_unquoted_token1, - ACTIONS(974), 1, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3239), 47, sym_raw_string_begin, - ACTIONS(3297), 1, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, anon_sym_null, - ACTIONS(3301), 1, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_SEMI, + anon_sym_AT, anon_sym_LBRACK, - ACTIONS(3303), 1, anon_sym_LPAREN, - ACTIONS(3305), 1, anon_sym_LBRACE, - ACTIONS(3307), 1, + anon_sym_where, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [9525] = 36, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3255), 1, + anon_sym_null, + ACTIONS(3259), 1, + anon_sym_LBRACK, + ACTIONS(3261), 1, + anon_sym_LPAREN, + ACTIONS(3263), 1, + anon_sym_DOLLAR, + ACTIONS(3265), 1, + anon_sym_LBRACE, + ACTIONS(3267), 1, anon_sym_DOT_DOT, - ACTIONS(3309), 1, + ACTIONS(3269), 1, anon_sym_LPAREN2, - ACTIONS(3313), 1, + ACTIONS(3273), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3275), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3319), 1, + ACTIONS(3281), 1, + anon_sym_0b, + ACTIONS(3285), 1, sym_val_date, - ACTIONS(3321), 1, + ACTIONS(3287), 1, anon_sym_DQUOTE, - ACTIONS(3323), 1, + ACTIONS(3289), 1, anon_sym_SQUOTE, - ACTIONS(3325), 1, + ACTIONS(3291), 1, anon_sym_BQUOTE, - ACTIONS(3327), 1, + ACTIONS(3293), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3329), 1, + ACTIONS(3295), 1, anon_sym_DOLLAR_DQUOTE, - STATE(1373), 1, + ACTIONS(3297), 1, + aux_sym_unquoted_token1, + ACTIONS(3299), 1, + sym_raw_string_begin, + STATE(1371), 1, sym_comment, - STATE(2541), 1, + STATE(1828), 1, sym__val_number_decimal, - STATE(2897), 1, + STATE(2119), 1, sym_val_bool, - STATE(3146), 1, - sym__val_number, - STATE(3245), 1, + STATE(2141), 1, sym_unquoted, - STATE(3261), 1, + STATE(2181), 1, + sym__val_number, + STATE(2204), 1, sym__inter_single_quotes, - STATE(3262), 1, + STATE(2206), 1, sym__inter_double_quotes, - ACTIONS(954), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3295), 2, + ACTIONS(3253), 2, anon_sym_true, anon_sym_false, - ACTIONS(3311), 2, + ACTIONS(3271), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3315), 2, + ACTIONS(3277), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3243), 2, + ACTIONS(3283), 2, + anon_sym_0o, + anon_sym_0x, + STATE(2140), 2, sym__expr_parenthesized_immediate, sym__value, - STATE(5082), 2, + STATE(4859), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(3299), 3, + ACTIONS(3257), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - ACTIONS(3317), 3, + ACTIONS(3279), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2543), 4, + STATE(2163), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3144), 13, + STATE(2178), 13, sym_val_nothing, sym_val_variable, sym_val_cellpath, @@ -147852,14 +147721,81 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9867] = 5, + [9659] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2110), 1, - anon_sym_PIPE, - STATE(1374), 1, + ACTIONS(3044), 1, + ts_builtin_sym_end, + STATE(1360), 1, + aux_sym__block_body_repeat1, + STATE(1372), 1, + sym_comment, + ACTIONS(55), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3040), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3042), 45, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_where, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [9735] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1373), 1, sym_comment, - ACTIONS(2891), 10, + ACTIONS(2148), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147870,7 +147806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2888), 48, + ACTIONS(2146), 49, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147897,6 +147833,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, @@ -147919,17 +147856,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, + [9805] = 36, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1790), 1, + anon_sym_DQUOTE, + ACTIONS(1792), 1, + anon_sym_SQUOTE, + ACTIONS(1794), 1, + anon_sym_BQUOTE, + ACTIONS(1796), 1, + sym_raw_string_begin, + ACTIONS(2970), 1, + anon_sym_0b, + ACTIONS(2982), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2984), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3303), 1, + anon_sym_null, + ACTIONS(3307), 1, + anon_sym_LBRACK, + ACTIONS(3309), 1, + anon_sym_LPAREN, + ACTIONS(3311), 1, + anon_sym_DOLLAR, + ACTIONS(3313), 1, + anon_sym_LBRACE, + ACTIONS(3315), 1, + anon_sym_DOT_DOT, + ACTIONS(3317), 1, + anon_sym_LPAREN2, + ACTIONS(3321), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3323), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3327), 1, + sym_val_date, + ACTIONS(3329), 1, + aux_sym_unquoted_token1, + STATE(1374), 1, + sym_comment, + STATE(3003), 1, + sym__inter_single_quotes, + STATE(3005), 1, + sym__inter_double_quotes, + STATE(3008), 1, + sym__val_number, + STATE(3567), 1, + sym__val_number_decimal, + STATE(4276), 1, + sym_val_bool, + STATE(4594), 1, + sym_unquoted, + ACTIONS(2972), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3301), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3319), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3325), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4591), 2, + sym__expr_parenthesized_immediate, + sym__value, + STATE(5025), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(2968), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3305), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2247), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3006), 13, + sym_val_nothing, + sym_val_variable, + sym_val_cellpath, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, [9939] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3083), 1, - anon_sym_RPAREN, + STATE(1349), 1, + aux_sym__block_body_repeat1, STATE(1375), 1, sym_comment, - ACTIONS(3335), 2, + ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3331), 10, + ACTIONS(3040), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -147940,7 +147975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3333), 45, + ACTIONS(3042), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -147991,7 +148026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, STATE(1376), 1, sym_comment, - ACTIONS(3338), 10, + ACTIONS(3237), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148002,8 +148037,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3340), 48, + ACTIONS(3239), 48, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -148033,7 +148069,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, @@ -148054,15 +148089,15 @@ static const uint16_t ts_small_parse_table[] = { [10081] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2541), 1, + ACTIONS(2569), 1, sym__newline, - ACTIONS(3346), 1, + ACTIONS(3335), 1, anon_sym_SEMI, - STATE(1353), 1, + STATE(1356), 1, aux_sym__repeat_newline, STATE(1377), 1, sym_comment, - ACTIONS(3342), 10, + ACTIONS(3331), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148073,7 +148108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3344), 45, + ACTIONS(3333), 45, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148119,12 +148154,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10156] = 4, + [10156] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3239), 1, + anon_sym_RPAREN, STATE(1378), 1, sym_comment, - ACTIONS(3350), 10, + ACTIONS(3341), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3337), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148135,9 +148175,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3348), 48, + ACTIONS(3339), 45, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -148161,8 +148200,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, @@ -148184,12 +148221,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10225] = 4, + [10229] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1379), 1, sym_comment, - ACTIONS(3352), 10, + ACTIONS(3344), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148200,7 +148237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3354), 48, + ACTIONS(3346), 48, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148249,12 +148286,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10294] = 4, + [10298] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1380), 1, sym_comment, - ACTIONS(3085), 10, + ACTIONS(3350), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148265,7 +148302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3083), 48, + ACTIONS(3348), 48, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -148314,12 +148351,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10363] = 4, + [10367] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1381), 1, sym_comment, - ACTIONS(3356), 10, + ACTIONS(3352), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148330,7 +148367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3358), 48, + ACTIONS(3354), 48, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148379,38 +148416,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10432] = 12, + [10436] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, ACTIONS(1598), 1, sym__unquoted_pattern, - ACTIONS(3360), 1, + ACTIONS(3356), 1, anon_sym_DOT, STATE(1382), 1, sym_comment, - STATE(1438), 1, + STATE(1435), 1, sym__immediate_decimal, - ACTIONS(3362), 2, + ACTIONS(3358), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3364), 2, + ACTIONS(3360), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(707), 2, + STATE(681), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1586), 6, + ACTIONS(1588), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1582), 41, + ACTIONS(1584), 41, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -148452,12 +148489,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [10517] = 4, + [10521] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1383), 1, sym_comment, - ACTIONS(3368), 10, + ACTIONS(3364), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148468,7 +148505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3366), 48, + ACTIONS(3362), 48, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -148517,17 +148554,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10586] = 6, + [10590] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1350), 1, - aux_sym__block_body_repeat1, STATE(1384), 1, sym_comment, - ACTIONS(153), 2, + ACTIONS(3366), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3368), 48, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - ACTIONS(3040), 10, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [10659] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1586), 1, + anon_sym_DOLLAR, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1598), 1, + sym__unquoted_pattern, + STATE(1385), 1, + sym_comment, + STATE(1485), 1, + sym__immediate_decimal, + ACTIONS(3370), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3372), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(829), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1588), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1584), 41, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [10741] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1386), 1, + sym_comment, + ACTIONS(3227), 10, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, @@ -148538,7 +148706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3042), 45, + ACTIONS(3229), 47, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -148563,17 +148731,140 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_where, + anon_sym_where, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [10809] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(1657), 1, + anon_sym_DOLLAR, + ACTIONS(1659), 1, + anon_sym_LPAREN2, + ACTIONS(3374), 1, + anon_sym_DOT, + STATE(1387), 1, + sym_comment, + STATE(1441), 1, + sym__immediate_decimal, + ACTIONS(3376), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3378), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(911), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1588), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1584), 40, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [10893] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3386), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3393), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3396), 1, + aux_sym__val_number_decimal_token2, + STATE(2105), 1, + sym__val_number_decimal, + STATE(4811), 1, + sym_env_var, + STATE(5156), 1, + sym_cmd_identifier, + ACTIONS(3380), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3399), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(1388), 2, + sym_comment, + aux_sym_pipe_element_repeat2, + ACTIONS(3391), 6, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3389), 17, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -148584,24 +148875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [10659] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1385), 1, - sym_comment, - ACTIONS(3331), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3333), 47, - sym_raw_string_begin, + ACTIONS(3383), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -148625,62 +148899,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_where, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [10727] = 12, + [10979] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern, - ACTIONS(1671), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(1673), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(3370), 1, - anon_sym_DOT, - STATE(1386), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + STATE(1389), 1, sym_comment, - STATE(1439), 1, + STATE(1474), 1, sym__immediate_decimal, - ACTIONS(3372), 2, + ACTIONS(3370), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3374), 2, + ACTIONS(3372), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(930), 2, + STATE(871), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1586), 6, + ACTIONS(1635), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1582), 40, - ts_builtin_sym_end, + ACTIONS(1633), 41, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -148693,6 +148941,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, @@ -148720,38 +148970,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [10811] = 13, + [11061] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3382), 1, + ACTIONS(3408), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3389), 1, + ACTIONS(3415), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3392), 1, + ACTIONS(3418), 1, aux_sym__val_number_decimal_token2, - STATE(2091), 1, + STATE(2105), 1, sym__val_number_decimal, - STATE(4409), 1, + STATE(4410), 1, sym_env_var, - STATE(4941), 1, + STATE(5156), 1, sym_cmd_identifier, - ACTIONS(3376), 2, + ACTIONS(3402), 2, anon_sym_export, anon_sym_in, - ACTIONS(3395), 2, + ACTIONS(3421), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(1387), 2, + STATE(1390), 2, sym_comment, aux_sym_pipe_element_parenthesized_repeat2, - ACTIONS(3387), 6, + ACTIONS(3413), 6, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3385), 17, + ACTIONS(3411), 17, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, @@ -148769,7 +149019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - ACTIONS(3379), 23, + ACTIONS(3405), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -148793,45 +149043,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [10897] = 13, + [11147] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3404), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3411), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3414), 1, - aux_sym__val_number_decimal_token2, - STATE(2091), 1, - sym__val_number_decimal, - STATE(4687), 1, - sym_env_var, - STATE(4941), 1, - sym_cmd_identifier, - ACTIONS(3398), 2, + STATE(1391), 1, + sym_comment, + ACTIONS(3337), 10, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3417), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(1388), 2, - sym_comment, - aux_sym_pipe_element_repeat2, - ACTIONS(3409), 6, anon_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(3407), 17, + ACTIONS(3339), 47, sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_where, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -148842,11 +149107,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - ACTIONS(3401), 23, + [11215] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3411), 1, + sym_raw_string_begin, + ACTIONS(3424), 1, + sym__newline, + ACTIONS(3426), 1, + sym__space, + STATE(1392), 1, + sym_comment, + STATE(1393), 1, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(3413), 52, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, + aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -148860,34 +149140,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [10983] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1389), 1, - sym_comment, - ACTIONS(3117), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_DOT_DOT, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(3119), 47, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [11288] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3430), 1, + sym__newline, + ACTIONS(3433), 1, + sym__space, + ACTIONS(3436), 1, sym_raw_string_begin, + STATE(1393), 2, + sym_comment, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(3428), 52, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, + aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -148901,28 +149205,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_AT, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, anon_sym_LBRACE, - anon_sym_where, + anon_sym_DOT_DOT, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -148930,36 +149238,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [11051] = 11, + [11359] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1598), 1, - sym__unquoted_pattern, - STATE(1390), 1, - sym_comment, - STATE(1466), 1, - sym__immediate_decimal, - ACTIONS(3420), 2, + ACTIONS(3438), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3422), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(809), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1586), 6, + ACTIONS(3440), 1, + aux_sym__immediate_decimal_token5, + STATE(1394), 1, + sym_comment, + ACTIONS(747), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1582), 41, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(749), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -148973,6 +149270,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_RBRACE, anon_sym_and2, anon_sym_xor2, @@ -148992,6 +149290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -149001,36 +149300,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [11133] = 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [11430] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1641), 1, - sym__unquoted_pattern, - STATE(1391), 1, + ACTIONS(3442), 1, + anon_sym_DOT, + ACTIONS(3444), 1, + aux_sym__immediate_decimal_token5, + STATE(1395), 1, sym_comment, - STATE(1468), 1, - sym__immediate_decimal, - ACTIONS(3420), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3422), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(846), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 6, + ACTIONS(739), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1631), 41, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(741), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -149044,6 +149335,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_RBRACE, anon_sym_and2, anon_sym_xor2, @@ -149063,76 +149355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [11215] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(1671), 1, - anon_sym_DOLLAR, - ACTIONS(1673), 1, anon_sym_LPAREN2, - STATE(1392), 1, - sym_comment, - STATE(1495), 1, - sym__immediate_decimal, - ACTIONS(3424), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3426), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1341), 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(1631), 40, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -149142,73 +149365,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [11296] = 7, - ACTIONS(103), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [11501] = 37, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3385), 1, + ACTIONS(1376), 1, + anon_sym_null, + ACTIONS(1386), 1, + anon_sym_LPAREN, + ACTIONS(1398), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1400), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(1406), 1, + anon_sym_0b, + ACTIONS(1412), 1, + anon_sym_DQUOTE, + ACTIONS(1414), 1, + anon_sym_SQUOTE, + ACTIONS(1416), 1, + anon_sym_BQUOTE, + ACTIONS(1424), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(1426), 1, sym_raw_string_begin, - ACTIONS(3428), 1, + ACTIONS(1568), 1, + anon_sym_DOT_DOT, + ACTIONS(2716), 1, + anon_sym_DOLLAR, + ACTIONS(2718), 1, + anon_sym_LBRACE, + ACTIONS(2720), 1, + sym_val_date, + ACTIONS(3446), 1, sym__newline, - ACTIONS(3430), 1, - sym__space, - STATE(1393), 1, + ACTIONS(3448), 1, + anon_sym_LBRACK, + STATE(1396), 1, sym_comment, - STATE(1399), 1, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(3387), 52, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, + STATE(1417), 1, + aux_sym__match_pattern_list_body_repeat1, + STATE(2253), 1, + aux_sym__types_body_repeat1, + STATE(3574), 1, + sym__val_number_decimal, + STATE(3790), 1, + sym_expr_parenthesized, + STATE(3791), 1, + sym_val_variable, + STATE(4191), 1, + sym_val_bool, + STATE(4358), 1, + sym__val_number, + STATE(4610), 1, + sym__match_pattern_list, + ACTIONS(1374), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - aux_sym_expr_unary_token1, + ACTIONS(1396), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + ACTIONS(1402), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + ACTIONS(1408), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4133), 2, + sym__match_pattern_expression, + sym__unquoted_in_list, + STATE(4609), 2, + sym__match_pattern_value, + sym_val_range, + STATE(5020), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(1378), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(1404), 3, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [11369] = 33, + STATE(3649), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4611), 8, + sym__match_pattern_record, + sym_val_nothing, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [11634] = 33, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1386), 1, @@ -149235,29 +149491,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, ACTIONS(1578), 1, anon_sym_LBRACK, - ACTIONS(3432), 1, + ACTIONS(3450), 1, anon_sym_null, - ACTIONS(3434), 1, + ACTIONS(3452), 1, anon_sym_LBRACE, - ACTIONS(3436), 1, + ACTIONS(3454), 1, anon_sym_DOT_DOT, - ACTIONS(3440), 1, + ACTIONS(3458), 1, sym_val_date, - STATE(1394), 1, + STATE(1397), 1, sym_comment, - STATE(3759), 1, + STATE(3757), 1, sym__val_number_decimal, - STATE(3879), 1, + STATE(3828), 1, sym_val_variable, - STATE(4014), 1, + STATE(4010), 1, sym_expr_parenthesized, - STATE(4361), 1, + STATE(4358), 1, sym__val_number, - STATE(4595), 1, + STATE(4592), 1, sym__inter_single_quotes, STATE(4596), 1, sym__inter_double_quotes, - STATE(4674), 1, + STATE(4749), 1, sym_block, ACTIONS(1408), 2, anon_sym_0o, @@ -149268,13 +149524,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1486), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3438), 2, + ACTIONS(3456), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(4709), 2, + STATE(4769), 2, sym_val_range, sym__value, - STATE(3638), 4, + STATE(3649), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, @@ -149286,7 +149542,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(4604), 13, + STATE(4601), 13, sym_val_nothing, sym_val_bool, sym_val_cellpath, @@ -149300,132 +149556,36 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [11494] = 37, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1376), 1, - anon_sym_null, - ACTIONS(1386), 1, - anon_sym_LPAREN, - ACTIONS(1398), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1400), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(1406), 1, - anon_sym_0b, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1424), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(1560), 1, - anon_sym_DOT_DOT, - ACTIONS(2650), 1, - anon_sym_DOLLAR, - ACTIONS(2652), 1, - anon_sym_LBRACE, - ACTIONS(2654), 1, - sym_val_date, - ACTIONS(3442), 1, - sym__newline, - ACTIONS(3444), 1, - anon_sym_LBRACK, - STATE(1395), 1, - sym_comment, - STATE(1419), 1, - aux_sym__match_pattern_list_body_repeat1, - STATE(2250), 1, - aux_sym__types_body_repeat1, - STATE(3591), 1, - sym__val_number_decimal, - STATE(3839), 1, - sym_expr_parenthesized, - STATE(3841), 1, - sym_val_variable, - STATE(4190), 1, - sym_val_bool, - STATE(4361), 1, - sym__val_number, - STATE(4619), 1, - sym__match_pattern_list, - ACTIONS(1374), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1396), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(1402), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(1408), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4132), 2, - sym__match_pattern_expression, - sym__unquoted_in_list, - STATE(4618), 2, - sym__match_pattern_value, - sym_val_range, - STATE(5078), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(1378), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(1404), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3638), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4622), 8, - sym__match_pattern_record, - sym_val_nothing, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [11627] = 11, + [11759] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1598), 1, + ACTIONS(1641), 1, sym__unquoted_pattern, - ACTIONS(1671), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR, - ACTIONS(1673), 1, + ACTIONS(1659), 1, anon_sym_LPAREN2, - STATE(1396), 1, + STATE(1398), 1, sym_comment, - STATE(1503), 1, + STATE(1496), 1, sym__immediate_decimal, - ACTIONS(3424), 2, + ACTIONS(3460), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3426), 2, + ACTIONS(3462), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1263), 2, + STATE(1343), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1586), 6, + ACTIONS(1635), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1582), 40, + ACTIONS(1633), 40, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -149466,202 +149626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [11708] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3446), 1, - anon_sym_DOT, - ACTIONS(3448), 1, - aux_sym__immediate_decimal_token5, - STATE(1397), 1, - sym_comment, - ACTIONS(739), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(741), 46, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [11779] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3450), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3452), 1, - aux_sym__immediate_decimal_token5, - STATE(1398), 1, - sym_comment, - ACTIONS(747), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(749), 46, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [11850] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3456), 1, - sym__newline, - ACTIONS(3459), 1, - sym__space, - ACTIONS(3462), 1, - sym_raw_string_begin, - STATE(1399), 2, - sym_comment, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(3454), 52, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [11921] = 33, + [11840] = 33, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1386), 1, @@ -149688,29 +149653,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, ACTIONS(1578), 1, anon_sym_LBRACK, - ACTIONS(3432), 1, + ACTIONS(3450), 1, anon_sym_null, - ACTIONS(3434), 1, + ACTIONS(3452), 1, anon_sym_LBRACE, - ACTIONS(3436), 1, + ACTIONS(3454), 1, anon_sym_DOT_DOT, - ACTIONS(3440), 1, + ACTIONS(3458), 1, sym_val_date, - STATE(1400), 1, + STATE(1399), 1, sym_comment, - STATE(3759), 1, + STATE(3757), 1, sym__val_number_decimal, - STATE(3879), 1, + STATE(3828), 1, sym_val_variable, - STATE(4011), 1, + STATE(4009), 1, sym_expr_parenthesized, - STATE(4361), 1, + STATE(4358), 1, sym__val_number, - STATE(4595), 1, + STATE(4592), 1, sym__inter_single_quotes, STATE(4596), 1, sym__inter_double_quotes, - STATE(4821), 1, + STATE(4717), 1, sym_block, ACTIONS(1408), 2, anon_sym_0o, @@ -149721,13 +149686,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1486), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3438), 2, + ACTIONS(3456), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(4669), 2, + STATE(4728), 2, sym_val_range, sym__value, - STATE(3638), 4, + STATE(3649), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, @@ -149739,7 +149704,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(4604), 13, + STATE(4601), 13, sym_val_nothing, sym_val_bool, sym_val_cellpath, @@ -149753,25 +149718,36 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [12046] = 6, + [11965] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3464), 1, - anon_sym_DOT, - ACTIONS(3466), 1, - aux_sym__immediate_decimal_token5, - STATE(1401), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(1657), 1, + anon_sym_DOLLAR, + ACTIONS(1659), 1, + anon_sym_LPAREN2, + STATE(1400), 1, sym_comment, - ACTIONS(739), 8, + STATE(1499), 1, + sym__immediate_decimal, + ACTIONS(3460), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3462), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1291), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1588), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(741), 45, + ACTIONS(1584), 40, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -149785,7 +149761,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -149804,7 +149779,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -149814,36 +149788,89 @@ 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, - [12116] = 11, + [12046] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3466), 1, + sym__space, + ACTIONS(3469), 1, + sym_raw_string_begin, + STATE(1401), 2, + sym_comment, + aux_sym_pipe_element_repeat1, + ACTIONS(3464), 52, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [12114] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1756), 1, - anon_sym_LPAREN2, - ACTIONS(1766), 1, - sym__unquoted_pattern, - ACTIONS(3468), 1, - anon_sym_DOT_DOT2, - ACTIONS(3472), 1, - sym_filesize_unit, - ACTIONS(3474), 1, - sym_duration_unit, + ACTIONS(3471), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3473), 1, + aux_sym__immediate_decimal_token5, STATE(1402), 1, sym_comment, - STATE(4726), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3470), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(793), 5, + ACTIONS(747), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(890), 42, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(749), 45, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -149856,9 +149883,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -149877,6 +149902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -149886,31 +149912,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [12196] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [12184] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3476), 1, - sym__newline, - STATE(1403), 2, - aux_sym__repeat_newline, + STATE(1403), 1, sym_comment, - ACTIONS(1940), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1935), 43, + ACTIONS(3475), 2, sym_raw_string_begin, + sym__space, + ACTIONS(858), 53, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, + aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -149924,24 +149943,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, anon_sym_LBRACE, + anon_sym_DOT_DOT, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -149949,23 +149977,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12264] = 5, - ACTIONS(103), 1, + [12250] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3481), 1, - sym__space, - ACTIONS(3484), 1, - sym_raw_string_begin, + ACTIONS(3477), 1, + sym__newline, STATE(1404), 2, + aux_sym__repeat_newline, sym_comment, - aux_sym_pipe_element_repeat1, - ACTIONS(3479), 52, + ACTIONS(1921), 10, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1916), 43, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, - aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -149979,7 +150015,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, @@ -149988,23 +150023,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token5, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, anon_sym_LBRACE, - anon_sym_DOT_DOT, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -150012,80 +150040,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12332] = 4, - ACTIONS(103), 1, + [12318] = 11, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + ACTIONS(1724), 1, + sym__unquoted_pattern, + ACTIONS(3480), 1, + anon_sym_DOT_DOT2, + ACTIONS(3484), 1, + sym_filesize_unit, + ACTIONS(3486), 1, + sym_duration_unit, STATE(1405), 1, sym_comment, - ACTIONS(3486), 2, - sym_raw_string_begin, - sym__space, - ACTIONS(864), 53, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + STATE(4718), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3482), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(866), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(908), 42, anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [12398] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3444), 1, + aux_sym__immediate_decimal_token5, + STATE(1406), 1, + sym_comment, + ACTIONS(739), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(741), 46, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [12398] = 6, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [12466] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3407), 1, + ACTIONS(3389), 1, sym_raw_string_begin, ACTIONS(3488), 1, sym__space, - STATE(1404), 1, + STATE(1401), 1, aux_sym_pipe_element_repeat1, - STATE(1406), 1, + STATE(1407), 1, sym_comment, - ACTIONS(3409), 52, + ACTIONS(3391), 52, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -150138,14 +150236,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [12468] = 5, + [12536] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3448), 1, + ACTIONS(3490), 1, aux_sym__immediate_decimal_token5, - STATE(1407), 1, + STATE(1408), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(755), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -150154,7 +150252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(741), 46, + ACTIONS(757), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150201,16 +150299,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12536] = 6, + [12604] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3490), 1, - aux_sym__immediate_decimal_token1, ACTIONS(3492), 1, + anon_sym_DOT, + ACTIONS(3494), 1, aux_sym__immediate_decimal_token5, - STATE(1408), 1, + STATE(1409), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(739), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -150219,7 +150317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(749), 45, + ACTIONS(741), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -150265,23 +150363,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12606] = 5, + [12674] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3494), 1, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(1790), 1, + anon_sym_DQUOTE, + ACTIONS(1792), 1, + anon_sym_SQUOTE, + ACTIONS(1794), 1, + anon_sym_BQUOTE, + ACTIONS(1796), 1, + sym_raw_string_begin, + ACTIONS(1912), 1, + aux_sym_unquoted_token1, + ACTIONS(2752), 1, + anon_sym_LPAREN, + ACTIONS(2869), 1, + anon_sym_LBRACK, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + ACTIONS(2873), 1, + anon_sym_LBRACE, + ACTIONS(3498), 1, + anon_sym_null, + ACTIONS(3502), 1, + anon_sym_DOT_DOT, + ACTIONS(3506), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3508), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3512), 1, + sym_val_date, + STATE(693), 1, + sym__val_number, + STATE(1410), 1, + sym_comment, + STATE(3617), 1, + sym__val_number_decimal, + STATE(3704), 1, + sym_expr_parenthesized, + STATE(3705), 1, + sym_val_variable, + STATE(4159), 1, + sym__match_pattern_expression, + STATE(4161), 1, + sym__match_pattern_list, + STATE(4170), 1, + sym_unquoted, + STATE(4320), 1, + sym_val_bool, + STATE(4619), 1, + sym__match_pattern, + ACTIONS(193), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3496), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3504), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3510), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4160), 2, + sym__match_pattern_value, + sym_val_range, + STATE(5001), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(189), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3500), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2247), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4166), 8, + sym__match_pattern_record, + sym_val_nothing, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [12803] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3514), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3516), 1, aux_sym__immediate_decimal_token5, - STATE(1409), 1, + STATE(1411), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(1740), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(773), 46, + ACTIONS(1738), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150327,22 +150519,178 @@ 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, - [12674] = 4, + [12872] = 36, ACTIONS(3), 1, anon_sym_POUND, - STATE(1410), 1, + ACTIONS(1376), 1, + anon_sym_null, + ACTIONS(1386), 1, + anon_sym_LPAREN, + ACTIONS(1398), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1400), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(1406), 1, + anon_sym_0b, + ACTIONS(1412), 1, + anon_sym_DQUOTE, + ACTIONS(1414), 1, + anon_sym_SQUOTE, + ACTIONS(1416), 1, + anon_sym_BQUOTE, + ACTIONS(1424), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(1426), 1, + sym_raw_string_begin, + ACTIONS(1568), 1, + anon_sym_DOT_DOT, + ACTIONS(2716), 1, + anon_sym_DOLLAR, + ACTIONS(2718), 1, + anon_sym_LBRACE, + ACTIONS(2720), 1, + sym_val_date, + ACTIONS(3448), 1, + anon_sym_LBRACK, + STATE(1412), 1, sym_comment, - ACTIONS(747), 8, + STATE(1421), 1, + aux_sym__match_pattern_list_body_repeat1, + STATE(3574), 1, + sym__val_number_decimal, + STATE(3790), 1, + sym_expr_parenthesized, + STATE(3791), 1, + sym_val_variable, + STATE(4136), 1, + sym__match_pattern_expression, + STATE(4137), 1, + sym__unquoted_in_list, + STATE(4191), 1, + sym_val_bool, + STATE(4358), 1, + sym__val_number, + STATE(4610), 1, + sym__match_pattern_list, + ACTIONS(1374), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1396), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(1402), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(1408), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4609), 2, + sym__match_pattern_value, + sym_val_range, + STATE(5020), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(1378), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(1404), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3649), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4611), 8, + sym__match_pattern_record, + sym_val_nothing, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [13001] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1413), 1, + sym_comment, + ACTIONS(2148), 10, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2146), 44, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_CARET, + [13066] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3518), 1, + anon_sym_DOT, + ACTIONS(3520), 1, + aux_sym__immediate_decimal_token5, + STATE(1414), 1, + sym_comment, + ACTIONS(1752), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(749), 46, + ACTIONS(1750), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150388,25 +150736,117 @@ 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, - [12739] = 6, + [13135] = 36, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3496), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(191), 1, + anon_sym_0b, + ACTIONS(1790), 1, + anon_sym_DQUOTE, + ACTIONS(1792), 1, + anon_sym_SQUOTE, + ACTIONS(1794), 1, + anon_sym_BQUOTE, + ACTIONS(1796), 1, + sym_raw_string_begin, + ACTIONS(1912), 1, + aux_sym_unquoted_token1, + ACTIONS(2752), 1, + anon_sym_LPAREN, + ACTIONS(2869), 1, + anon_sym_LBRACK, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + ACTIONS(2873), 1, + anon_sym_LBRACE, ACTIONS(3498), 1, + anon_sym_null, + ACTIONS(3502), 1, + anon_sym_DOT_DOT, + ACTIONS(3506), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3508), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3512), 1, + sym_val_date, + STATE(693), 1, + sym__val_number, + STATE(1415), 1, + sym_comment, + STATE(3617), 1, + sym__val_number_decimal, + STATE(3704), 1, + sym_expr_parenthesized, + STATE(3705), 1, + sym_val_variable, + STATE(4159), 1, + sym__match_pattern_expression, + STATE(4161), 1, + sym__match_pattern_list, + STATE(4170), 1, + sym_unquoted, + STATE(4320), 1, + sym_val_bool, + STATE(4470), 1, + sym__match_pattern, + ACTIONS(193), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3496), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3504), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(3510), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(4160), 2, + sym__match_pattern_value, + sym_val_range, + STATE(5001), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(189), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + ACTIONS(3500), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2247), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4166), 8, + sym__match_pattern_record, + sym_val_nothing, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [13264] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3522), 1, aux_sym__immediate_decimal_token5, - STATE(1411), 1, + STATE(1416), 1, sym_comment, - ACTIONS(1740), 7, + ACTIONS(755), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(1738), 45, + ACTIONS(757), 45, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150419,9 +150859,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -150452,12 +150890,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [12808] = 4, + sym_duration_unit, + [13331] = 36, ACTIONS(3), 1, anon_sym_POUND, - STATE(1412), 1, + ACTIONS(1376), 1, + anon_sym_null, + ACTIONS(1386), 1, + anon_sym_LPAREN, + ACTIONS(1398), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(1400), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(1406), 1, + anon_sym_0b, + ACTIONS(1412), 1, + anon_sym_DQUOTE, + ACTIONS(1414), 1, + anon_sym_SQUOTE, + ACTIONS(1416), 1, + anon_sym_BQUOTE, + ACTIONS(1424), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(1426), 1, + sym_raw_string_begin, + ACTIONS(1568), 1, + anon_sym_DOT_DOT, + ACTIONS(2716), 1, + anon_sym_DOLLAR, + ACTIONS(2718), 1, + anon_sym_LBRACE, + ACTIONS(2720), 1, + sym_val_date, + ACTIONS(3448), 1, + anon_sym_LBRACK, + STATE(1417), 1, + sym_comment, + STATE(1421), 1, + aux_sym__match_pattern_list_body_repeat1, + STATE(3574), 1, + sym__val_number_decimal, + STATE(3790), 1, + sym_expr_parenthesized, + STATE(3791), 1, + sym_val_variable, + STATE(4191), 1, + sym_val_bool, + STATE(4315), 1, + sym__match_pattern_expression, + STATE(4318), 1, + sym__unquoted_in_list, + STATE(4358), 1, + sym__val_number, + STATE(4610), 1, + sym__match_pattern_list, + ACTIONS(1374), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1396), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(1402), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(1408), 2, + anon_sym_0o, + anon_sym_0x, + STATE(4609), 2, + sym__match_pattern_value, + sym_val_range, + STATE(5020), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(1378), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + ACTIONS(1404), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3649), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4611), 8, + sym__match_pattern_record, + sym_val_nothing, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_table, + [13460] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1418), 1, sym_comment, - ACTIONS(874), 8, + ACTIONS(747), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -150466,7 +150998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(876), 46, + ACTIONS(749), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150513,21 +151045,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [12873] = 4, + [13525] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(1413), 1, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + ACTIONS(1810), 1, + sym__unquoted_pattern, + ACTIONS(3524), 1, + anon_sym_DOT_DOT2, + ACTIONS(3528), 1, + sym_filesize_unit, + ACTIONS(3530), 1, + sym_duration_unit, + STATE(1419), 1, sym_comment, - ACTIONS(771), 8, + STATE(4754), 1, + sym__expr_parenthesized_immediate, + ACTIONS(3526), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(866), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(773), 46, + ACTIONS(908), 41, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150540,9 +151085,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -150561,7 +151104,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -150571,78 +151113,12 @@ 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, - [12938] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1414), 1, - sym_comment, - ACTIONS(2112), 10, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2110), 44, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [13003] = 5, + [13604] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3500), 1, - aux_sym__immediate_decimal_token5, - STATE(1415), 1, + STATE(1420), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(755), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -150651,8 +151127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(773), 45, - ts_builtin_sym_end, + ACTIONS(757), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -150665,7 +151140,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -150697,91 +151174,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [13070] = 36, + [13669] = 34, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(1912), 1, - aux_sym_unquoted_token1, - ACTIONS(2748), 1, - anon_sym_LPAREN, - ACTIONS(2908), 1, + ACTIONS(3535), 1, + anon_sym_null, + ACTIONS(3541), 1, anon_sym_LBRACK, - ACTIONS(2910), 1, + ACTIONS(3544), 1, + anon_sym_LPAREN, + ACTIONS(3547), 1, anon_sym_DOLLAR, - ACTIONS(2912), 1, + ACTIONS(3550), 1, anon_sym_LBRACE, - ACTIONS(3504), 1, - anon_sym_null, - ACTIONS(3508), 1, + ACTIONS(3553), 1, anon_sym_DOT_DOT, - ACTIONS(3512), 1, + ACTIONS(3559), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3514), 1, + ACTIONS(3562), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3518), 1, + ACTIONS(3571), 1, + anon_sym_0b, + ACTIONS(3577), 1, sym_val_date, - STATE(676), 1, - sym__val_number, - STATE(1416), 1, - sym_comment, - STATE(3612), 1, + ACTIONS(3580), 1, + anon_sym_DQUOTE, + ACTIONS(3583), 1, + anon_sym_SQUOTE, + ACTIONS(3586), 1, + anon_sym_BQUOTE, + ACTIONS(3589), 1, + aux_sym__unquoted_in_list_token1, + ACTIONS(3592), 1, + sym_raw_string_begin, + STATE(3692), 1, sym__val_number_decimal, - STATE(3716), 1, + STATE(4149), 1, sym_expr_parenthesized, - STATE(3718), 1, + STATE(4150), 1, sym_val_variable, - STATE(4160), 1, - sym__match_pattern_expression, - STATE(4163), 1, + STATE(4358), 1, + sym__val_number, + STATE(4610), 1, sym__match_pattern_list, - STATE(4170), 1, - sym_unquoted, - STATE(4338), 1, + STATE(4821), 1, sym_val_bool, - STATE(4488), 1, - sym__match_pattern, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3502), 2, + ACTIONS(3532), 2, anon_sym_true, anon_sym_false, - ACTIONS(3510), 2, + ACTIONS(3556), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(3516), 2, + ACTIONS(3565), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4162), 2, + ACTIONS(3574), 2, + anon_sym_0o, + anon_sym_0x, + STATE(1421), 2, + sym_comment, + aux_sym__match_pattern_list_body_repeat1, + STATE(4609), 2, sym__match_pattern_value, sym_val_range, - STATE(5013), 2, + STATE(4716), 2, + sym__match_pattern_expression, + sym__unquoted_in_list, + STATE(5020), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(189), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3506), 3, + ACTIONS(3538), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2243), 4, + ACTIONS(3568), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(3649), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(4167), 8, + STATE(4611), 8, sym__match_pattern_record, sym_val_nothing, sym_val_number, @@ -150790,15 +151265,15 @@ static const uint16_t ts_small_parse_table[] = { sym_val_binary, sym_val_string, sym_val_table, - [13199] = 4, + [13794] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(1417), 1, + STATE(1422), 1, sym_comment, - ACTIONS(3522), 2, + ACTIONS(3597), 2, sym_raw_string_begin, sym__space, - ACTIONS(3520), 52, + ACTIONS(3595), 52, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -150851,217 +151326,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [13264] = 34, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3527), 1, - anon_sym_null, - ACTIONS(3533), 1, - anon_sym_LBRACK, - ACTIONS(3536), 1, - anon_sym_LPAREN, - ACTIONS(3539), 1, - anon_sym_DOLLAR, - ACTIONS(3542), 1, - anon_sym_LBRACE, - ACTIONS(3545), 1, - anon_sym_DOT_DOT, - ACTIONS(3551), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3554), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3563), 1, - anon_sym_0b, - ACTIONS(3569), 1, - sym_val_date, - ACTIONS(3572), 1, - anon_sym_DQUOTE, - ACTIONS(3575), 1, - anon_sym_SQUOTE, - ACTIONS(3578), 1, - anon_sym_BQUOTE, - ACTIONS(3581), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(3584), 1, - sym_raw_string_begin, - STATE(3713), 1, - sym__val_number_decimal, - STATE(4149), 1, - sym_expr_parenthesized, - STATE(4150), 1, - sym_val_variable, - STATE(4361), 1, - sym__val_number, - STATE(4619), 1, - sym__match_pattern_list, - STATE(4678), 1, - sym_val_bool, - ACTIONS(3524), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3548), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3557), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3566), 2, - anon_sym_0o, - anon_sym_0x, - STATE(1418), 2, - sym_comment, - aux_sym__match_pattern_list_body_repeat1, - STATE(4618), 2, - sym__match_pattern_value, - sym_val_range, - STATE(4727), 2, - sym__match_pattern_expression, - sym__unquoted_in_list, - STATE(5078), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(3530), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(3560), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3638), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4622), 8, - sym__match_pattern_record, - sym_val_nothing, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [13389] = 36, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1376), 1, - anon_sym_null, - ACTIONS(1386), 1, - anon_sym_LPAREN, - ACTIONS(1398), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1400), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(1406), 1, - anon_sym_0b, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1424), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(1560), 1, - anon_sym_DOT_DOT, - ACTIONS(2650), 1, - anon_sym_DOLLAR, - ACTIONS(2652), 1, - anon_sym_LBRACE, - ACTIONS(2654), 1, - sym_val_date, - ACTIONS(3444), 1, - anon_sym_LBRACK, - STATE(1418), 1, - aux_sym__match_pattern_list_body_repeat1, - STATE(1419), 1, - sym_comment, - STATE(3591), 1, - sym__val_number_decimal, - STATE(3839), 1, - sym_expr_parenthesized, - STATE(3841), 1, - sym_val_variable, - STATE(4190), 1, - sym_val_bool, - STATE(4321), 1, - sym__match_pattern_expression, - STATE(4322), 1, - sym__unquoted_in_list, - STATE(4361), 1, - sym__val_number, - STATE(4619), 1, - sym__match_pattern_list, - ACTIONS(1374), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1396), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(1402), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(1408), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4618), 2, - sym__match_pattern_value, - sym_val_range, - STATE(5078), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(1378), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(1404), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3638), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4622), 8, - sym__match_pattern_record, - sym_val_nothing, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [13518] = 11, + [13859] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1756), 1, - anon_sym_LPAREN2, - ACTIONS(1830), 1, - sym__unquoted_pattern, - ACTIONS(3587), 1, - anon_sym_DOT_DOT2, - ACTIONS(3591), 1, - sym_filesize_unit, - ACTIONS(3593), 1, - sym_duration_unit, - STATE(1420), 1, + ACTIONS(3494), 1, + aux_sym__immediate_decimal_token5, + STATE(1423), 1, sym_comment, - STATE(4757), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3589), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(793), 5, + ACTIONS(739), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(890), 41, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(741), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -151094,6 +151375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -151103,24 +151385,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [13597] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [13926] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3595), 1, - anon_sym_DOT, - ACTIONS(3597), 1, - aux_sym__immediate_decimal_token5, - STATE(1421), 1, + STATE(1424), 1, sym_comment, - ACTIONS(1730), 7, + ACTIONS(789), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(1728), 45, + ACTIONS(791), 46, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151166,209 +151448,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [13666] = 36, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(191), 1, - anon_sym_0b, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(1912), 1, - aux_sym_unquoted_token1, - ACTIONS(2748), 1, - anon_sym_LPAREN, - ACTIONS(2908), 1, - anon_sym_LBRACK, - ACTIONS(2910), 1, - anon_sym_DOLLAR, - ACTIONS(2912), 1, - anon_sym_LBRACE, - ACTIONS(3504), 1, - anon_sym_null, - ACTIONS(3508), 1, - anon_sym_DOT_DOT, - ACTIONS(3512), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3514), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3518), 1, - sym_val_date, - STATE(676), 1, - sym__val_number, - STATE(1422), 1, - sym_comment, - STATE(3612), 1, - sym__val_number_decimal, - STATE(3716), 1, - sym_expr_parenthesized, - STATE(3718), 1, - sym_val_variable, - STATE(4160), 1, - sym__match_pattern_expression, - STATE(4163), 1, - sym__match_pattern_list, - STATE(4170), 1, - sym_unquoted, - STATE(4338), 1, - sym_val_bool, - STATE(4458), 1, - sym__match_pattern, - ACTIONS(193), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3502), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3510), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(3516), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4162), 2, - sym__match_pattern_value, - sym_val_range, - STATE(5013), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(189), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - ACTIONS(3506), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2243), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4167), 8, - sym__match_pattern_record, - sym_val_nothing, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [13795] = 36, + sym_duration_unit, + [13991] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1376), 1, - anon_sym_null, - ACTIONS(1386), 1, - anon_sym_LPAREN, - ACTIONS(1398), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(1400), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(1406), 1, - anon_sym_0b, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1424), 1, - aux_sym__unquoted_in_list_token1, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(1560), 1, - anon_sym_DOT_DOT, - ACTIONS(2650), 1, - anon_sym_DOLLAR, - ACTIONS(2652), 1, - anon_sym_LBRACE, - ACTIONS(2654), 1, - sym_val_date, - ACTIONS(3444), 1, - anon_sym_LBRACK, - STATE(1418), 1, - aux_sym__match_pattern_list_body_repeat1, - STATE(1423), 1, + ACTIONS(3520), 1, + aux_sym__immediate_decimal_token5, + STATE(1425), 1, sym_comment, - STATE(3591), 1, - sym__val_number_decimal, - STATE(3839), 1, - sym_expr_parenthesized, - STATE(3841), 1, - sym_val_variable, - STATE(4134), 1, - sym__match_pattern_expression, - STATE(4135), 1, - sym__unquoted_in_list, - STATE(4190), 1, - sym_val_bool, - STATE(4361), 1, - sym__val_number, - STATE(4619), 1, - sym__match_pattern_list, - ACTIONS(1374), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1396), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(1402), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(1408), 2, - anon_sym_0o, - anon_sym_0x, - STATE(4618), 2, - sym__match_pattern_value, - sym_val_range, - STATE(5078), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(1378), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - ACTIONS(1404), 3, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(3638), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4622), 8, - sym__match_pattern_record, - sym_val_nothing, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_table, - [13924] = 5, + ACTIONS(1752), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1750), 45, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [14057] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3466), 1, + ACTIONS(3599), 1, + anon_sym_DOT, + ACTIONS(3601), 1, aux_sym__immediate_decimal_token5, - STATE(1424), 1, + STATE(1426), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(1752), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(741), 45, + ACTIONS(1750), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -151413,23 +151572,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, - [13991] = 5, + [14125] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3597), 1, - aux_sym__immediate_decimal_token5, - STATE(1425), 1, + STATE(1427), 1, sym_comment, - ACTIONS(1730), 7, + ACTIONS(755), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(1728), 45, + ACTIONS(757), 45, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151442,9 +151600,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -151475,22 +151631,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14057] = 4, + sym_duration_unit, + [14189] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1426), 1, + ACTIONS(3603), 1, + aux_sym__immediate_decimal_token5, + STATE(1428), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(1818), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(773), 45, - ts_builtin_sym_end, + ACTIONS(1816), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151503,7 +151660,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -151534,13 +151693,12 @@ 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, - [14121] = 4, + [14255] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1427), 1, + STATE(1429), 1, sym_comment, - ACTIONS(874), 8, + ACTIONS(747), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151549,7 +151707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(876), 45, + ACTIONS(749), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -151595,14 +151753,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [14185] = 6, + [14319] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3599), 1, + ACTIONS(3605), 1, aux_sym__immediate_decimal_token1, - ACTIONS(3601), 1, + ACTIONS(3607), 1, aux_sym__immediate_decimal_token5, - STATE(1428), 1, + STATE(1430), 1, sym_comment, ACTIONS(1740), 7, anon_sym_GT2, @@ -151657,12 +151815,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14253] = 4, + [14387] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1429), 1, + STATE(1431), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(789), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151671,7 +151829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(749), 45, + ACTIONS(791), 45, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -151717,16 +151875,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [14317] = 6, + [14451] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3603), 1, - anon_sym_DOT, - ACTIONS(3605), 1, + ACTIONS(3609), 1, aux_sym__immediate_decimal_token5, - STATE(1430), 1, + STATE(1432), 1, sym_comment, - ACTIONS(1730), 7, + ACTIONS(1818), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -151734,7 +151890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1728), 44, + ACTIONS(1816), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -151779,22 +151935,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14385] = 5, + [14516] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3607), 1, - aux_sym__immediate_decimal_token5, - STATE(1431), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + ACTIONS(3611), 1, + anon_sym_DOT_DOT2, + STATE(1433), 1, sym_comment, - ACTIONS(1808), 7, + ACTIONS(3613), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2003), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1806), 45, + ACTIONS(2001), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151828,7 +151989,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -151838,29 +151998,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, - [14451] = 8, + [14587] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern, - ACTIONS(1946), 1, - anon_sym_LPAREN2, - ACTIONS(3609), 1, - anon_sym_DOT_DOT2, - STATE(1432), 1, + ACTIONS(3601), 1, + aux_sym__immediate_decimal_token5, + STATE(1434), 1, sym_comment, - ACTIONS(3611), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1944), 5, + ACTIONS(1752), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1942), 42, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1750), 44, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151873,9 +152027,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -151894,6 +152046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -151903,23 +152056,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [14522] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [14652] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3613), 1, - aux_sym__immediate_decimal_token5, - STATE(1433), 1, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern, + ACTIONS(3615), 1, + anon_sym_DOT_DOT2, + STATE(1435), 1, sym_comment, - ACTIONS(1808), 7, + ACTIONS(3617), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2013), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1806), 44, - ts_builtin_sym_end, + ACTIONS(2011), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -151932,7 +152091,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -151951,7 +152112,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -151961,12 +152121,10 @@ 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, - [14587] = 4, + [14723] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1434), 1, + STATE(1436), 1, sym_comment, ACTIONS(1740), 7, anon_sym_GT2, @@ -152022,12 +152180,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14650] = 4, + [14786] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1435), 1, + STATE(1437), 1, sym_comment, - ACTIONS(1846), 7, + ACTIONS(1856), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -152035,7 +152193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1844), 45, + ACTIONS(1854), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152081,12 +152239,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14713] = 4, + [14849] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1436), 1, + STATE(1438), 1, sym_comment, - ACTIONS(1808), 7, + ACTIONS(1818), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -152094,7 +152252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1806), 45, + ACTIONS(1816), 45, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152140,23 +152298,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [14776] = 5, + [14912] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3605), 1, + ACTIONS(3619), 1, + anon_sym_DOT, + ACTIONS(3621), 1, aux_sym__immediate_decimal_token5, - STATE(1437), 1, + STATE(1439), 1, sym_comment, - ACTIONS(1730), 7, + ACTIONS(1752), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1728), 44, - ts_builtin_sym_end, + ACTIONS(1750), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152169,7 +152327,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -152198,30 +152358,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, - [14841] = 8, + [14978] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1956), 1, - anon_sym_LPAREN2, - ACTIONS(1962), 1, - sym__unquoted_pattern, - ACTIONS(3615), 1, - anon_sym_DOT_DOT2, - STATE(1438), 1, + ACTIONS(1842), 1, + anon_sym_DOT2, + STATE(421), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(446), 1, + sym_path, + STATE(942), 1, + sym_cell_path, + STATE(1440), 1, sym_comment, - ACTIONS(3617), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1954), 5, + ACTIONS(1851), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1952), 42, - anon_sym_in, + ACTIONS(3623), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -152234,8 +152390,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_RBRACE, + ACTIONS(1848), 29, + anon_sym_in, + anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -152263,27 +152421,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [14912] = 8, + [15050] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1956), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(1962), 1, + ACTIONS(2021), 1, sym__unquoted_pattern, - ACTIONS(3619), 1, + ACTIONS(3627), 1, anon_sym_DOT_DOT2, - STATE(1439), 1, + STATE(1441), 1, sym_comment, - ACTIONS(3621), 2, + ACTIONS(3629), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1954), 5, + ACTIONS(2013), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1952), 41, + ACTIONS(2011), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -152325,12 +152483,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [14982] = 4, + [15120] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1440), 1, + STATE(1442), 1, sym_comment, - ACTIONS(1846), 7, + ACTIONS(1818), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -152338,7 +152496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1844), 44, + ACTIONS(1816), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -152383,23 +152541,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [15044] = 6, + [15182] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3623), 1, - anon_sym_DOT, - ACTIONS(3625), 1, - aux_sym__immediate_decimal_token5, - STATE(1441), 1, + STATE(1443), 1, sym_comment, - ACTIONS(1730), 6, + ACTIONS(1856), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1728), 43, + ACTIONS(1854), 44, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -152412,9 +152568,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -152443,30 +152597,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15110] = 22, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [15244] = 22, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3631), 1, - aux_sym_cmd_identifier_token1, ACTIONS(3635), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3639), 1, anon_sym_LBRACK, - ACTIONS(3637), 1, + ACTIONS(3641), 1, anon_sym_STAR2, - STATE(1442), 1, + STATE(1444), 1, sym_comment, - STATE(2106), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(3568), 1, + STATE(3562), 1, sym_val_string, - STATE(3611), 1, + STATE(3616), 1, sym_cmd_identifier, STATE(4100), 1, sym__command_name, @@ -152476,26 +152632,26 @@ static const uint16_t ts_small_parse_table[] = { sym_command_list, STATE(4172), 1, sym_scope_pattern, - ACTIONS(3627), 2, + ACTIONS(3631), 2, anon_sym_export, anon_sym_in, - ACTIONS(3639), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3633), 4, + ACTIONS(3637), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(2243), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3629), 23, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -152519,88 +152675,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [15208] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1443), 1, - sym_comment, - ACTIONS(1740), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1738), 44, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [15270] = 22, + [15342] = 22, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3631), 1, - aux_sym_cmd_identifier_token1, ACTIONS(3635), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3639), 1, anon_sym_LBRACK, - ACTIONS(3637), 1, + ACTIONS(3641), 1, anon_sym_STAR2, - STATE(1444), 1, + STATE(1445), 1, sym_comment, - STATE(2106), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(3568), 1, + STATE(3562), 1, sym_val_string, - STATE(3611), 1, + STATE(3616), 1, sym_cmd_identifier, STATE(4100), 1, sym__command_name, @@ -152610,26 +152708,26 @@ static const uint16_t ts_small_parse_table[] = { sym_wild_card, STATE(4103), 1, sym_command_list, - ACTIONS(3627), 2, + ACTIONS(3631), 2, anon_sym_export, anon_sym_in, - ACTIONS(3639), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3643), 4, + ACTIONS(3647), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - STATE(2243), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3629), 23, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -152653,27 +152751,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [15368] = 8, + [15440] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern, - ACTIONS(1946), 1, - anon_sym_LPAREN2, - ACTIONS(3645), 1, - anon_sym_DOT_DOT2, - STATE(1445), 1, + STATE(1446), 1, sym_comment, - ACTIONS(3647), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1944), 5, + ACTIONS(1740), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1942), 41, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1738), 44, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -152706,6 +152797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -152715,14 +152807,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15438] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [15502] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3649), 1, aux_sym__immediate_decimal_token1, ACTIONS(3651), 1, aux_sym__immediate_decimal_token5, - STATE(1446), 1, + STATE(1447), 1, sym_comment, ACTIONS(1740), 6, anon_sym_GT2, @@ -152775,83 +152869,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15504] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_DOT2, - STATE(416), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(435), 1, - sym_path, - STATE(938), 1, - sym_cell_path, - STATE(1447), 1, - sym_comment, - ACTIONS(1889), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(3653), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(1886), 29, - anon_sym_in, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [15576] = 4, + [15568] = 8, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + ACTIONS(3653), 1, + anon_sym_DOT_DOT2, STATE(1448), 1, sym_comment, - ACTIONS(1808), 7, + ACTIONS(3655), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2003), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1806), 44, + ACTIONS(2001), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -152884,7 +152922,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -152894,58 +152931,58 @@ 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, - [15638] = 20, + [15638] = 22, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(251), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(870), 1, - sym_raw_string_begin, - ACTIONS(3273), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(3275), 1, + ACTIONS(93), 1, anon_sym_SQUOTE, - ACTIONS(3277), 1, + ACTIONS(95), 1, anon_sym_BQUOTE, - ACTIONS(3279), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3281), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3657), 1, - anon_sym_LPAREN, - ACTIONS(3659), 1, - anon_sym_DOLLAR, + ACTIONS(105), 1, + sym_raw_string_begin, + ACTIONS(3661), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3663), 1, + anon_sym_LBRACK, + ACTIONS(3665), 1, + anon_sym_STAR2, STATE(1449), 1, sym_comment, - STATE(2087), 1, + STATE(1979), 1, sym__val_number_decimal, - STATE(2983), 1, - sym__inter_single_quotes, - STATE(3101), 1, - sym__inter_double_quotes, - ACTIONS(277), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3639), 2, + STATE(4327), 1, + sym_cmd_identifier, + STATE(4328), 1, + sym_val_string, + STATE(4415), 1, + sym__command_name, + STATE(4422), 1, + sym_wild_card, + STATE(4424), 1, + sym_command_list, + STATE(4507), 1, + sym_scope_pattern, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2508), 4, + ACTIONS(3657), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3637), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + STATE(501), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3009), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(271), 23, + ACTIONS(3659), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -152969,7 +153006,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [15731] = 22, + [15735] = 22, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(91), 1, @@ -152980,47 +153017,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(105), 1, sym_raw_string_begin, - ACTIONS(3665), 1, + ACTIONS(3661), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3667), 1, + ACTIONS(3663), 1, anon_sym_LBRACK, - ACTIONS(3669), 1, + ACTIONS(3665), 1, anon_sym_STAR2, STATE(1450), 1, sym_comment, - STATE(2000), 1, + STATE(1979), 1, sym__val_number_decimal, - STATE(4323), 1, + STATE(4327), 1, sym_cmd_identifier, - STATE(4324), 1, + STATE(4328), 1, sym_val_string, - STATE(4414), 1, + STATE(4415), 1, sym__command_name, - STATE(4420), 1, + STATE(4419), 1, sym_scope_pattern, - STATE(4424), 1, + STATE(4422), 1, sym_wild_card, - STATE(4429), 1, + STATE(4424), 1, sym_command_list, - ACTIONS(3639), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3661), 2, + ACTIONS(3657), 2, anon_sym_export, anon_sym_in, - ACTIONS(3643), 3, + ACTIONS(3647), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - STATE(490), 4, + STATE(501), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3663), 23, + ACTIONS(3659), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -153044,50 +153081,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [15828] = 20, + [15832] = 20, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(251), 1, aux_sym_cmd_identifier_token1, - ACTIONS(870), 1, + ACTIONS(864), 1, sym_raw_string_begin, - ACTIONS(3273), 1, + ACTIONS(3217), 1, anon_sym_DQUOTE, - ACTIONS(3275), 1, + ACTIONS(3219), 1, anon_sym_SQUOTE, - ACTIONS(3277), 1, + ACTIONS(3221), 1, anon_sym_BQUOTE, - ACTIONS(3279), 1, + ACTIONS(3223), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3281), 1, + ACTIONS(3225), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3657), 1, + ACTIONS(3667), 1, anon_sym_LPAREN, - ACTIONS(3659), 1, + ACTIONS(3669), 1, anon_sym_DOLLAR, STATE(1451), 1, sym_comment, - STATE(2087), 1, + STATE(2104), 1, sym__val_number_decimal, - STATE(2983), 1, + STATE(3009), 1, sym__inter_single_quotes, - STATE(3101), 1, + STATE(3012), 1, sym__inter_double_quotes, ACTIONS(277), 2, anon_sym_export, anon_sym_in, - ACTIONS(3639), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2508), 4, + STATE(2499), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(2894), 5, + STATE(2906), 5, sym_cmd_identifier, sym_expr_parenthesized, sym_val_variable, @@ -153117,23 +153154,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [15921] = 6, + [15925] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3671), 1, - anon_sym_DOT, + aux_sym__immediate_decimal_token1, ACTIONS(3673), 1, aux_sym__immediate_decimal_token5, STATE(1452), 1, sym_comment, - ACTIONS(1730), 6, + ACTIONS(1740), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1728), 42, + ACTIONS(1738), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -153176,23 +153213,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [15986] = 6, + [15990] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3675), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3677), 1, aux_sym__immediate_decimal_token5, STATE(1453), 1, sym_comment, - ACTIONS(1740), 6, + ACTIONS(1818), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1738), 42, + ACTIONS(1816), 43, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [16053] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3677), 1, + anon_sym_DOT, + ACTIONS(3679), 1, + aux_sym__immediate_decimal_token5, + STATE(1454), 1, + sym_comment, + ACTIONS(1752), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1750), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -153235,62 +153330,289 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16051] = 22, + [16118] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(91), 1, + ACTIONS(2251), 1, + anon_sym_DOT2, + STATE(525), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(827), 1, + sym_path, + STATE(1324), 1, + sym_cell_path, + STATE(1455), 1, + sym_comment, + ACTIONS(1851), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(3623), 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(1848), 29, + anon_sym_in, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [16189] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(19), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(978), 1, + sym_raw_string_begin, + ACTIONS(3181), 1, anon_sym_DQUOTE, - ACTIONS(93), 1, + ACTIONS(3183), 1, anon_sym_SQUOTE, - ACTIONS(95), 1, + ACTIONS(3185), 1, anon_sym_BQUOTE, - ACTIONS(105), 1, - sym_raw_string_begin, - ACTIONS(3665), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3667), 1, - anon_sym_LBRACK, - ACTIONS(3669), 1, - anon_sym_STAR2, - STATE(1454), 1, + ACTIONS(3187), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3189), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3681), 1, + anon_sym_LPAREN, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + STATE(1456), 1, sym_comment, - STATE(2000), 1, + STATE(2083), 1, sym__val_number_decimal, - STATE(4323), 1, - sym_cmd_identifier, - STATE(4324), 1, - sym_val_string, - STATE(4414), 1, - sym__command_name, - STATE(4424), 1, - sym_wild_card, - STATE(4429), 1, - sym_command_list, - STATE(4557), 1, - sym_scope_pattern, - ACTIONS(3639), 2, + STATE(3250), 1, + sym__inter_single_quotes, + STATE(3253), 1, + sym__inter_double_quotes, + ACTIONS(45), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3661), 2, - anon_sym_export, + STATE(2536), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3123), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(39), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [16282] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3621), 1, + aux_sym__immediate_decimal_token5, + STATE(1457), 1, + sym_comment, + ACTIONS(1752), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1750), 43, anon_sym_in, - ACTIONS(3633), 3, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - STATE(490), 4, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [16345] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(251), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(864), 1, + sym_raw_string_begin, + ACTIONS(3217), 1, + anon_sym_DQUOTE, + ACTIONS(3219), 1, + anon_sym_SQUOTE, + ACTIONS(3221), 1, + anon_sym_BQUOTE, + ACTIONS(3223), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3225), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3667), 1, + anon_sym_LPAREN, + ACTIONS(3669), 1, + anon_sym_DOLLAR, + STATE(1458), 1, + sym_comment, + STATE(2104), 1, + sym__val_number_decimal, + STATE(3009), 1, + sym__inter_single_quotes, + STATE(3012), 1, + sym__inter_double_quotes, + ACTIONS(277), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3643), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2499), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3663), 23, + STATE(3037), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(271), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [16438] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3687), 1, + sym__entry_separator, + ACTIONS(3690), 1, + sym_raw_string_begin, + STATE(1459), 2, + sym_comment, + aux_sym__types_body_repeat2, + ACTIONS(3685), 46, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, + aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -153304,33 +153626,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [16148] = 9, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [16500] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2192), 1, - anon_sym_DOT2, - STATE(547), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(712), 1, - sym_path, - STATE(1269), 1, - sym_cell_path, - STATE(1455), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2581), 1, + anon_sym_LPAREN2, + STATE(1460), 1, sym_comment, - ACTIONS(1889), 5, + ACTIONS(2527), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(3653), 12, - ts_builtin_sym_end, + ACTIONS(2525), 42, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -153342,9 +153681,244 @@ static const 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(1886), 29, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [16564] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1612), 1, + sym__entry_separator, + ACTIONS(3694), 1, + anon_sym_RBRACE, + ACTIONS(3696), 1, + sym_raw_string_begin, + STATE(1459), 1, + aux_sym__types_body_repeat2, + STATE(1461), 1, + sym_comment, + ACTIONS(3692), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [16630] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1612), 1, + sym__entry_separator, + ACTIONS(3700), 1, + anon_sym_RBRACE, + ACTIONS(3702), 1, + sym_raw_string_begin, + STATE(1459), 1, + aux_sym__types_body_repeat2, + STATE(1462), 1, + sym_comment, + ACTIONS(3698), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [16696] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1612), 1, + sym__entry_separator, + ACTIONS(3707), 1, + anon_sym_RBRACE, + ACTIONS(3710), 1, + sym_raw_string_begin, + STATE(1459), 1, + aux_sym__types_body_repeat2, + STATE(1463), 1, + sym_comment, + ACTIONS(3704), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [16762] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + STATE(1464), 1, + sym_comment, + ACTIONS(2003), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2001), 42, anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -153372,21 +153946,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16219] = 5, + [16826] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3625), 1, - aux_sym__immediate_decimal_token5, - STATE(1456), 1, + STATE(1465), 1, sym_comment, - ACTIONS(1730), 6, + ACTIONS(2387), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1728), 43, + ACTIONS(2385), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153430,21 +154002,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16282] = 5, + [16886] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3679), 1, - aux_sym__immediate_decimal_token5, - STATE(1457), 1, + STATE(1466), 1, sym_comment, - ACTIONS(1808), 6, + ACTIONS(1856), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1806), 43, + ACTIONS(1854), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153488,60 +154058,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16345] = 20, - ACTIONS(3), 1, + [16946] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(19), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(974), 1, + ACTIONS(1612), 1, + sym__entry_separator, + ACTIONS(3696), 1, sym_raw_string_begin, - ACTIONS(3321), 1, - anon_sym_DQUOTE, - ACTIONS(3323), 1, - anon_sym_SQUOTE, - ACTIONS(3325), 1, - anon_sym_BQUOTE, - ACTIONS(3327), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3329), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3681), 1, - anon_sym_LPAREN, - ACTIONS(3683), 1, - anon_sym_DOLLAR, - STATE(1458), 1, - sym_comment, - STATE(2062), 1, - sym__val_number_decimal, - STATE(3261), 1, - sym__inter_single_quotes, - STATE(3262), 1, - sym__inter_double_quotes, - ACTIONS(45), 2, + ACTIONS(3713), 1, + anon_sym_RBRACE, + STATE(1459), 1, + aux_sym__types_body_repeat2, + STATE(1467), 1, + sym_comment, + ACTIONS(3692), 45, anon_sym_export, - anon_sym_in, - ACTIONS(3639), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2543), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3062), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(39), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, + aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -153555,25 +154091,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [16438] = 4, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [17012] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1459), 1, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern, + STATE(1468), 1, sym_comment, - ACTIONS(2327), 6, + ACTIONS(994), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(2325), 43, + ACTIONS(1004), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153607,7 +154166,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -153617,20 +154175,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16498] = 7, + [17076] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, + ACTIONS(1612), 1, sym__entry_separator, - ACTIONS(3687), 1, - anon_sym_RBRACE, - ACTIONS(3689), 1, + ACTIONS(3696), 1, sym_raw_string_begin, - STATE(1460), 1, - sym_comment, - STATE(1476), 1, + ACTIONS(3715), 1, + anon_sym_RBRACE, + STATE(1459), 1, aux_sym__types_body_repeat2, - ACTIONS(3685), 45, + STATE(1469), 1, + sym_comment, + ACTIONS(3692), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -153676,22 +154234,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16564] = 6, + [17142] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2554), 1, + ACTIONS(2595), 1, anon_sym_LPAREN2, - ACTIONS(2556), 1, + ACTIONS(2597), 1, sym__unquoted_pattern, - STATE(1461), 1, + STATE(1470), 1, sym_comment, - ACTIONS(1615), 5, + ACTIONS(2593), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1689), 42, + ACTIONS(2591), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153734,20 +154292,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16628] = 7, + [17206] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, + ACTIONS(1612), 1, sym__entry_separator, - ACTIONS(3693), 1, - anon_sym_RBRACE, - ACTIONS(3695), 1, + ACTIONS(3702), 1, sym_raw_string_begin, - STATE(1462), 1, + ACTIONS(3717), 1, + anon_sym_RBRACE, + STATE(1459), 1, + aux_sym__types_body_repeat2, + STATE(1471), 1, sym_comment, - STATE(1476), 1, + ACTIONS(3698), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [17272] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1612), 1, + sym__entry_separator, + ACTIONS(3694), 1, + anon_sym_RBRACE, + ACTIONS(3696), 1, + sym_raw_string_begin, + STATE(1459), 1, aux_sym__types_body_repeat2, - ACTIONS(3691), 45, + STATE(1472), 1, + sym_comment, + ACTIONS(3692), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -153793,20 +154410,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16694] = 7, + [17338] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, + ACTIONS(1612), 1, sym__entry_separator, - ACTIONS(3695), 1, + ACTIONS(3696), 1, sym_raw_string_begin, - ACTIONS(3697), 1, + ACTIONS(3715), 1, anon_sym_RBRACE, - STATE(1463), 1, - sym_comment, - STATE(1476), 1, + STATE(1459), 1, aux_sym__types_body_repeat2, - ACTIONS(3691), 45, + STATE(1473), 1, + sym_comment, + ACTIONS(3692), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -153852,22 +154469,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [16760] = 6, + [17404] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern, - ACTIONS(1946), 1, + ACTIONS(2587), 1, anon_sym_LPAREN2, - STATE(1464), 1, + ACTIONS(2589), 1, + sym__unquoted_pattern, + STATE(1474), 1, sym_comment, - ACTIONS(1944), 5, + ACTIONS(2585), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1942), 42, + ACTIONS(2583), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153910,22 +154527,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16824] = 6, + [17468] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1956), 1, + ACTIONS(2602), 1, anon_sym_LPAREN2, - ACTIONS(1962), 1, + ACTIONS(2604), 1, sym__unquoted_pattern, - STATE(1465), 1, + STATE(1475), 1, sym_comment, - ACTIONS(2576), 5, + ACTIONS(1002), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2574), 42, + ACTIONS(1018), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -153968,80 +154585,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [16888] = 6, - ACTIONS(3), 1, + [17532] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1956), 1, - anon_sym_LPAREN2, - ACTIONS(1962), 1, - sym__unquoted_pattern, - STATE(1466), 1, + ACTIONS(1612), 1, + sym__entry_separator, + ACTIONS(3702), 1, + sym_raw_string_begin, + ACTIONS(3719), 1, + anon_sym_RBRACE, + STATE(1459), 1, + aux_sym__types_body_repeat2, + STATE(1476), 1, sym_comment, - ACTIONS(1954), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1952), 42, + ACTIONS(3698), 45, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [16952] = 6, + anon_sym_PLUS2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [17598] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(2513), 1, - anon_sym_LPAREN2, - STATE(1467), 1, + STATE(1477), 1, sym_comment, - ACTIONS(2511), 5, + ACTIONS(1818), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2509), 42, + sym__unquoted_pattern, + ACTIONS(1816), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154075,6 +154690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -154084,22 +154700,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17016] = 6, + [17658] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2529), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(2531), 1, + ACTIONS(2021), 1, sym__unquoted_pattern, - STATE(1468), 1, + STATE(1478), 1, sym_comment, - ACTIONS(2527), 5, + ACTIONS(2535), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2525), 42, + ACTIONS(2533), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154142,22 +154758,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17080] = 6, + [17722] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2566), 1, - anon_sym_LPAREN2, - ACTIONS(2568), 1, - sym__unquoted_pattern, - STATE(1469), 1, + STATE(1479), 1, sym_comment, - ACTIONS(2564), 5, + ACTIONS(1740), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2562), 42, + sym__unquoted_pattern, + ACTIONS(1738), 43, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154191,6 +154804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -154200,22 +154814,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17144] = 6, + [17782] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2570), 1, - anon_sym_LPAREN2, - ACTIONS(2572), 1, - sym__unquoted_pattern, - STATE(1470), 1, + ACTIONS(3721), 1, + aux_sym__immediate_decimal_token5, + STATE(1480), 1, sym_comment, - ACTIONS(996), 5, + ACTIONS(1818), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(994), 42, + sym__unquoted_pattern, + ACTIONS(1816), 42, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154228,9 +154842,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -154249,6 +154861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -154258,22 +154871,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17208] = 6, + [17844] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2570), 1, + ACTIONS(2620), 1, anon_sym_LPAREN2, - ACTIONS(2572), 1, + ACTIONS(2622), 1, sym__unquoted_pattern, - STATE(1471), 1, + STATE(1481), 1, sym_comment, - ACTIONS(1004), 5, + ACTIONS(1604), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1012), 42, + ACTIONS(1706), 42, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -154316,20 +154929,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17272] = 7, + [17908] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, + ACTIONS(1612), 1, sym__entry_separator, - ACTIONS(3702), 1, - anon_sym_RBRACE, - ACTIONS(3705), 1, + ACTIONS(3696), 1, sym_raw_string_begin, - STATE(1472), 1, - sym_comment, - STATE(1476), 1, + ACTIONS(3723), 1, + anon_sym_RBRACE, + STATE(1459), 1, aux_sym__types_body_repeat2, - ACTIONS(3699), 45, + STATE(1482), 1, + sym_comment, + ACTIONS(3692), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154375,79 +154988,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17338] = 7, - ACTIONS(103), 1, + [17974] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1623), 1, - sym__entry_separator, - ACTIONS(3689), 1, - sym_raw_string_begin, - ACTIONS(3708), 1, - anon_sym_RBRACE, - STATE(1473), 1, + ACTIONS(3679), 1, + aux_sym__immediate_decimal_token5, + STATE(1483), 1, sym_comment, - STATE(1476), 1, - aux_sym__types_body_repeat2, - ACTIONS(3685), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + ACTIONS(1752), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1750), 42, + ts_builtin_sym_end, anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [17404] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [18036] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, + ACTIONS(1612), 1, sym__entry_separator, - ACTIONS(3689), 1, + ACTIONS(3702), 1, sym_raw_string_begin, - ACTIONS(3708), 1, + ACTIONS(3725), 1, anon_sym_RBRACE, - STATE(1474), 1, - sym_comment, - STATE(1476), 1, + STATE(1459), 1, aux_sym__types_body_repeat2, - ACTIONS(3685), 45, + STATE(1484), 1, + sym_comment, + ACTIONS(3698), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154493,20 +155104,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17470] = 7, + [18102] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern, + STATE(1485), 1, + sym_comment, + ACTIONS(2013), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2011), 42, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [18166] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, + ACTIONS(1612), 1, sym__entry_separator, - ACTIONS(3705), 1, - sym_raw_string_begin, ACTIONS(3710), 1, + sym_raw_string_begin, + ACTIONS(3727), 1, anon_sym_RBRACE, - STATE(1475), 1, - sym_comment, - STATE(1476), 1, + STATE(1459), 1, aux_sym__types_body_repeat2, - ACTIONS(3699), 45, + STATE(1486), 1, + sym_comment, + ACTIONS(3704), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154552,195 +155221,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17536] = 5, - ACTIONS(103), 1, + [18232] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3715), 1, - sym__entry_separator, - ACTIONS(3718), 1, - sym_raw_string_begin, - STATE(1476), 2, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern, + STATE(1487), 1, sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3713), 46, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + ACTIONS(1002), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1018), 41, + ts_builtin_sym_end, anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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_RBRACE, - anon_sym_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [17598] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [18295] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, - sym__entry_separator, - ACTIONS(3695), 1, - sym_raw_string_begin, - ACTIONS(3720), 1, - anon_sym_RBRACE, - STATE(1476), 1, - aux_sym__types_body_repeat2, - STATE(1477), 1, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + STATE(1488), 1, sym_comment, - ACTIONS(3691), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + ACTIONS(908), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + ACTIONS(866), 29, anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_GT2, anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_LT2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [17664] = 7, - ACTIONS(103), 1, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [18356] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1623), 1, - sym__entry_separator, - ACTIONS(3695), 1, - sym_raw_string_begin, - ACTIONS(3722), 1, - anon_sym_RBRACE, - STATE(1476), 1, - aux_sym__types_body_repeat2, - STATE(1478), 1, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern, + STATE(1489), 1, sym_comment, - ACTIONS(3691), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + ACTIONS(994), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1004), 41, + ts_builtin_sym_end, anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [17730] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [18419] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, + ACTIONS(1612), 1, sym__entry_separator, - ACTIONS(3689), 1, + ACTIONS(3702), 1, sym_raw_string_begin, - ACTIONS(3724), 1, - anon_sym_RBRACE, - STATE(1476), 1, + STATE(1459), 1, aux_sym__types_body_repeat2, - STATE(1479), 1, + STATE(1490), 1, sym_comment, - ACTIONS(3685), 45, + ACTIONS(3698), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154786,79 +155448,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17796] = 7, - ACTIONS(103), 1, + [18482] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1623), 1, - sym__entry_separator, - ACTIONS(3689), 1, - sym_raw_string_begin, - ACTIONS(3726), 1, - anon_sym_RBRACE, - STATE(1476), 1, - aux_sym__types_body_repeat2, - STATE(1480), 1, + ACTIONS(2620), 1, + anon_sym_LPAREN2, + ACTIONS(2622), 1, + sym__unquoted_pattern, + STATE(1491), 1, sym_comment, - ACTIONS(3685), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + ACTIONS(1604), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1706), 41, + ts_builtin_sym_end, anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [18545] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2581), 1, + anon_sym_LPAREN2, + STATE(1492), 1, + sym_comment, + ACTIONS(2527), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [17862] = 7, + ACTIONS(2525), 41, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [18608] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1493), 1, + sym_comment, + ACTIONS(2387), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(2385), 42, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [18667] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, + ACTIONS(1612), 1, sym__entry_separator, - ACTIONS(3689), 1, + ACTIONS(3696), 1, sym_raw_string_begin, - ACTIONS(3726), 1, - anon_sym_RBRACE, - STATE(1476), 1, + STATE(1459), 1, aux_sym__types_body_repeat2, - STATE(1481), 1, + STATE(1494), 1, sym_comment, - ACTIONS(3685), 45, + ACTIONS(3692), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -154904,21 +155674,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [17928] = 5, + [18730] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1724), 1, + sym__unquoted_pattern, + STATE(1495), 1, + sym_comment, + ACTIONS(866), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(908), 42, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [18791] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3673), 1, - aux_sym__immediate_decimal_token5, - STATE(1482), 1, + ACTIONS(2587), 1, + anon_sym_LPAREN2, + ACTIONS(2589), 1, + sym__unquoted_pattern, + STATE(1496), 1, sym_comment, - ACTIONS(1730), 6, + ACTIONS(2585), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1728), 42, + ACTIONS(2583), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -154951,7 +155778,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [18854] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2595), 1, anon_sym_LPAREN2, + ACTIONS(2597), 1, + sym__unquoted_pattern, + STATE(1497), 1, + sym_comment, + ACTIONS(2593), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2591), 41, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -154961,21 +155844,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [17990] = 5, + [18917] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3728), 1, - aux_sym__immediate_decimal_token5, - STATE(1483), 1, + STATE(1498), 1, sym_comment, - ACTIONS(1808), 6, + ACTIONS(1856), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1806), 42, + ACTIONS(1854), 42, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155018,19 +155899,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18052] = 4, + [18976] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1484), 1, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern, + STATE(1499), 1, sym_comment, - ACTIONS(1740), 6, + ACTIONS(2013), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1738), 43, + ACTIONS(2011), 41, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155043,9 +155928,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -155064,7 +155947,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -155074,19 +155956,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18112] = 4, + [19039] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1485), 1, + STATE(1500), 1, sym_comment, - ACTIONS(1808), 6, + ACTIONS(1818), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1806), 43, + ACTIONS(1816), 42, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155099,9 +155982,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -155130,19 +156011,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18172] = 4, - ACTIONS(3), 1, + [19098] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1486), 1, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + STATE(1501), 1, sym_comment, - ACTIONS(1846), 6, + ACTIONS(2385), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + ACTIONS(2387), 29, + anon_sym_in, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, anon_sym_LT2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [19159] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, sym__unquoted_pattern, - ACTIONS(1844), 43, + STATE(1502), 1, + sym_comment, + ACTIONS(2535), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2533), 41, + ts_builtin_sym_end, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -155155,9 +156096,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -155176,7 +156115,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -155186,18 +156124,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18232] = 6, + [19222] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, - sym__entry_separator, - ACTIONS(3689), 1, - sym_raw_string_begin, - STATE(1476), 1, - aux_sym__types_body_repeat2, - STATE(1487), 1, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + STATE(1503), 1, + sym_comment, + ACTIONS(2591), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + ACTIONS(2593), 29, + anon_sym_in, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_LT2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [19283] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(1504), 1, sym_comment, - ACTIONS(3685), 45, + ACTIONS(3732), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3730), 46, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -155227,6 +156218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_PLUS2, anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_DOT_DOLLAR, @@ -155243,22 +156235,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACE, - [18295] = 6, + [19342] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, + ACTIONS(3738), 1, + sym__newline, + STATE(1505), 2, + sym_comment, + aux_sym__types_body_repeat1, + ACTIONS(3734), 7, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + aux_sym__val_number_decimal_token1, + ACTIONS(3736), 39, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [19403] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1506), 1, + sym_comment, + ACTIONS(1740), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(2513), 1, + ACTIONS(1738), 42, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, anon_sym_LPAREN2, - STATE(1488), 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, + [19462] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + STATE(1507), 1, sym_comment, - ACTIONS(2511), 5, + ACTIONS(2003), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2509), 41, + ACTIONS(2001), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155300,14 +156403,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18358] = 5, + [19525] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2832), 1, + sym__newline, + ACTIONS(3741), 1, + anon_sym_DASH2, + ACTIONS(3749), 1, + anon_sym_PLUS2, + STATE(1508), 1, + sym_comment, + STATE(1618), 1, + aux_sym__repeat_newline, + ACTIONS(2728), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3743), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3747), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2726), 35, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [19597] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(1509), 1, + sym_comment, + STATE(4562), 1, + sym_block, + STATE(4804), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [19677] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1510), 1, + sym_comment, + ACTIONS(2857), 7, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_PLUS2, + aux_sym__val_number_decimal_token1, + ACTIONS(2859), 40, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACE, + [19735] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2533), 1, + ACTIONS(2839), 1, aux_sym_cmd_identifier_token2, - STATE(1489), 1, + STATE(1511), 1, sym_comment, - ACTIONS(890), 18, + ACTIONS(908), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -155319,14 +156603,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, - ACTIONS(793), 29, + ACTIONS(866), 29, anon_sym_in, anon_sym_GT2, anon_sym_DASH2, @@ -155356,33 +156638,242 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18419] = 4, + [19795] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(1490), 1, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(1512), 1, + sym_comment, + STATE(4425), 1, + sym_block, + STATE(4702), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [19875] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(1513), 1, + sym_comment, + STATE(4473), 1, + sym_block, + STATE(4699), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [19955] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1412), 1, + anon_sym_DQUOTE, + ACTIONS(1414), 1, + anon_sym_SQUOTE, + ACTIONS(1416), 1, + anon_sym_BQUOTE, + ACTIONS(1426), 1, + sym_raw_string_begin, + ACTIONS(3769), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3771), 1, + sym__newline, + ACTIONS(3773), 1, + anon_sym_RBRACK, + STATE(1514), 1, + sym_comment, + STATE(1700), 1, + aux_sym__types_body_repeat1, + STATE(1745), 1, + aux_sym__command_list_body_repeat1, + STATE(2107), 1, + sym__val_number_decimal, + STATE(4450), 1, + sym__command_name, + STATE(4736), 1, + sym_cmd_identifier, + STATE(4738), 1, + sym_val_string, + STATE(5158), 1, + sym__command_list_body, + ACTIONS(3643), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3765), 2, + anon_sym_export, + anon_sym_in, + STATE(3649), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3767), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [20047] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1586), 1, + anon_sym_DOLLAR, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(3775), 1, + anon_sym_DOT, + STATE(1515), 1, sym_comment, - ACTIONS(2327), 6, + STATE(1830), 1, + sym__immediate_decimal, + ACTIONS(3777), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3779), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(681), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1588), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(2325), 42, - ts_builtin_sym_end, + ACTIONS(1584), 30, anon_sym_in, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -155401,7 +156892,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -155411,22 +156901,410 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18478] = 6, + [20121] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(1516), 1, + sym_comment, + STATE(4648), 1, + sym_block, + STATE(4812), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [20201] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(1517), 1, + sym_comment, + STATE(4551), 1, + sym_block, + STATE(4816), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [20281] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(1518), 1, + sym_comment, + STATE(4537), 1, + sym_block, + STATE(4814), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [20361] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(1519), 1, + sym_comment, + STATE(4496), 1, + sym_block, + STATE(4735), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [20441] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(1520), 1, + sym_comment, + STATE(4501), 1, + sym_block, + STATE(4660), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [20521] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(1521), 1, + sym_comment, + STATE(4509), 1, + sym_block, + STATE(4822), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [20601] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2566), 1, - anon_sym_LPAREN2, - ACTIONS(2568), 1, + ACTIONS(1810), 1, sym__unquoted_pattern, - STATE(1491), 1, + STATE(1522), 1, sym_comment, - ACTIONS(2564), 5, + ACTIONS(866), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2562), 41, + ACTIONS(908), 41, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -155468,21 +157346,1239 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18541] = 4, + [20661] = 20, ACTIONS(103), 1, anon_sym_POUND, - STATE(1492), 1, + ACTIONS(1790), 1, + anon_sym_DQUOTE, + ACTIONS(1792), 1, + anon_sym_SQUOTE, + ACTIONS(1794), 1, + anon_sym_BQUOTE, + ACTIONS(1796), 1, + sym_raw_string_begin, + ACTIONS(2702), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2704), 1, + anon_sym_COLON2, + ACTIONS(3635), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3781), 1, + anon_sym_DASH_DASH, + STATE(1523), 1, + sym_comment, + STATE(1711), 1, + aux_sym_decl_def_repeat1, + STATE(1996), 1, + sym__val_number_decimal, + STATE(2167), 1, + sym_long_flag, + STATE(3562), 1, + sym_val_string, + STATE(3616), 1, + sym_cmd_identifier, + STATE(3729), 1, + sym__command_name, + ACTIONS(3783), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3785), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2247), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3631), 25, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [20751] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(1524), 1, + sym_comment, + STATE(4183), 1, + sym_block, + STATE(4663), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [20831] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(1525), 1, + sym_comment, + STATE(4184), 1, + sym_block, + STATE(4664), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [20911] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1412), 1, + anon_sym_DQUOTE, + ACTIONS(1414), 1, + anon_sym_SQUOTE, + ACTIONS(1416), 1, + anon_sym_BQUOTE, + ACTIONS(1426), 1, + sym_raw_string_begin, + ACTIONS(3769), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3771), 1, + sym__newline, + ACTIONS(3789), 1, + anon_sym_RBRACK, + STATE(1526), 1, + sym_comment, + STATE(1700), 1, + aux_sym__types_body_repeat1, + STATE(1745), 1, + aux_sym__command_list_body_repeat1, + STATE(2107), 1, + sym__val_number_decimal, + STATE(4450), 1, + sym__command_name, + STATE(4736), 1, + sym_cmd_identifier, + STATE(4738), 1, + sym_val_string, + STATE(4990), 1, + sym__command_list_body, + ACTIONS(3643), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3765), 2, + anon_sym_export, + anon_sym_in, + STATE(3649), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3767), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [21003] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(1527), 1, + sym_comment, + STATE(4207), 1, + sym_block, + STATE(4763), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [21083] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(1528), 1, + sym_comment, + STATE(4208), 1, + sym_block, + STATE(4764), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [21163] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(1529), 1, + sym_comment, + STATE(4218), 1, + sym_block, + STATE(4778), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [21243] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(1530), 1, + sym_comment, + STATE(4220), 1, + sym_block, + STATE(4779), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [21323] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(1531), 1, + sym_comment, + STATE(4221), 1, + sym_block, + STATE(4783), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [21403] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(1532), 1, + sym_comment, + STATE(4222), 1, + sym_block, + STATE(4784), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [21483] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(1533), 1, + sym_comment, + STATE(4655), 1, + sym_block, + STATE(4829), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [21563] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(1534), 1, + sym_comment, + STATE(4543), 1, + sym_block, + STATE(4818), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [21643] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(1535), 1, + sym_comment, + STATE(4408), 1, + sym_block, + STATE(4685), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [21723] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1790), 1, + anon_sym_DQUOTE, + ACTIONS(1792), 1, + anon_sym_SQUOTE, + ACTIONS(1794), 1, + anon_sym_BQUOTE, + ACTIONS(1796), 1, + sym_raw_string_begin, + ACTIONS(3635), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3791), 1, + anon_sym_LBRACK, + ACTIONS(3793), 1, + anon_sym_DOLLAR, + ACTIONS(3795), 1, + anon_sym_LBRACE, + STATE(1536), 1, + sym_comment, + STATE(1996), 1, + sym__val_number_decimal, + ACTIONS(3631), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3643), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(3181), 2, + sym_cmd_identifier, + sym_val_string, + STATE(3183), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(2247), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3633), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [21809] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(1537), 1, + sym_comment, + STATE(4241), 1, + sym_block, + STATE(4690), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [21889] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(1538), 1, + sym_comment, + STATE(4242), 1, + sym_block, + STATE(4700), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [21969] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(1539), 1, + sym_comment, + STATE(4243), 1, + sym_block, + STATE(4705), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [22049] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(1540), 1, sym_comment, - ACTIONS(3732), 2, + STATE(4244), 1, + sym_block, + STATE(4715), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [22129] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2976), 1, + anon_sym_DQUOTE, + ACTIONS(2978), 1, + anon_sym_SQUOTE, + ACTIONS(2980), 1, + anon_sym_BQUOTE, + ACTIONS(2988), 1, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3730), 46, + ACTIONS(3635), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3797), 1, + anon_sym_LBRACK, + ACTIONS(3799), 1, + anon_sym_DOLLAR, + ACTIONS(3801), 1, + anon_sym_LBRACE, + STATE(1541), 1, + sym_comment, + STATE(1996), 1, + sym__val_number_decimal, + ACTIONS(3631), 2, anon_sym_export, + anon_sym_in, + ACTIONS(3643), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(3181), 2, + sym_cmd_identifier, + sym_val_string, + STATE(3183), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(2590), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, - aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -155496,783 +158592,1347 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [18600] = 5, - ACTIONS(103), 1, + [22215] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2533), 1, - aux_sym_cmd_identifier_token2, - STATE(1493), 1, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(1542), 1, sym_comment, - ACTIONS(2325), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - ACTIONS(2327), 29, - anon_sym_in, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_LT2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [18661] = 5, - ACTIONS(103), 1, + STATE(4262), 1, + sym_block, + STATE(4683), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [22295] = 15, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2533), 1, - aux_sym_cmd_identifier_token2, - STATE(1494), 1, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(1543), 1, sym_comment, - ACTIONS(2562), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - ACTIONS(2564), 29, - anon_sym_in, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_LT2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [18722] = 6, + STATE(4263), 1, + sym_block, + STATE(4689), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [22375] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2529), 1, - anon_sym_LPAREN2, - ACTIONS(2531), 1, - sym__unquoted_pattern, - STATE(1495), 1, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(1544), 1, sym_comment, - ACTIONS(2527), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2525), 41, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [18785] = 4, + STATE(4582), 1, + sym_block, + STATE(4810), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [22455] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(1545), 1, + sym_comment, + STATE(4267), 1, + sym_block, + STATE(4676), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [22535] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(1546), 1, + sym_comment, + STATE(4268), 1, + sym_block, + STATE(4678), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [22615] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(1547), 1, + sym_comment, + STATE(4282), 1, + sym_block, + STATE(4686), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [22695] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(1548), 1, + sym_comment, + STATE(4285), 1, + sym_block, + STATE(4688), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [22775] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(1549), 1, + sym_comment, + STATE(4587), 1, + sym_block, + STATE(4681), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [22855] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(1550), 1, + sym_comment, + STATE(4329), 1, + sym_block, + STATE(4786), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [22935] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(1551), 1, + sym_comment, + STATE(4330), 1, + sym_block, + STATE(4792), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [23015] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(1552), 1, + sym_comment, + STATE(4336), 1, + sym_block, + STATE(4798), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [23095] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(1553), 1, + sym_comment, + STATE(4337), 1, + sym_block, + STATE(4800), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [23175] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(1554), 1, + sym_comment, + STATE(4346), 1, + sym_block, + STATE(4662), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [23255] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(1496), 1, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(1555), 1, sym_comment, - ACTIONS(1740), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1738), 42, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [18844] = 6, + STATE(4347), 1, + sym_block, + STATE(4668), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [23335] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1956), 1, - anon_sym_LPAREN2, - ACTIONS(1962), 1, - sym__unquoted_pattern, - STATE(1497), 1, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(1556), 1, sym_comment, - ACTIONS(2576), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2574), 41, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [18907] = 4, + STATE(4417), 1, + sym_block, + STATE(4695), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [23415] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(1498), 1, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(1557), 1, sym_comment, - ACTIONS(1808), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1806), 42, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [18966] = 4, + STATE(4418), 1, + sym_block, + STATE(4748), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [23495] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(1499), 1, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(1558), 1, sym_comment, - ACTIONS(1846), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1844), 42, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [19025] = 5, + STATE(4493), 1, + sym_block, + STATE(4741), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [23575] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3738), 1, - sym__newline, - STATE(1500), 2, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(1559), 1, sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3734), 7, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_PLUS2, - aux_sym__val_number_decimal_token1, - ACTIONS(3736), 39, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [19086] = 6, + STATE(4530), 1, + sym_block, + STATE(4746), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [23655] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2570), 1, - anon_sym_LPAREN2, - ACTIONS(2572), 1, - sym__unquoted_pattern, - STATE(1501), 1, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(1560), 1, sym_comment, - ACTIONS(996), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(994), 41, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [19149] = 6, + STATE(4578), 1, + sym_block, + STATE(4671), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [23735] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2570), 1, - anon_sym_LPAREN2, - ACTIONS(2572), 1, - sym__unquoted_pattern, - STATE(1502), 1, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(1561), 1, sym_comment, - ACTIONS(1004), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1012), 41, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [19212] = 6, + STATE(4597), 1, + sym_block, + STATE(4706), 1, + sym_returns, + STATE(5071), 1, + sym__one_type, + STATE(5134), 1, + sym__multiple_types, + STATE(5251), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [23815] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1956), 1, - anon_sym_LPAREN2, - ACTIONS(1962), 1, - sym__unquoted_pattern, - STATE(1503), 1, - sym_comment, - ACTIONS(1954), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1952), 41, - ts_builtin_sym_end, - anon_sym_in, + ACTIONS(2937), 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(3741), 1, anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [19275] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2554), 1, - anon_sym_LPAREN2, - ACTIONS(2556), 1, - sym__unquoted_pattern, - STATE(1504), 1, + ACTIONS(3749), 1, + anon_sym_PLUS2, + STATE(1562), 1, sym_comment, - ACTIONS(1615), 5, - anon_sym_GT2, + STATE(1576), 1, + aux_sym__repeat_newline, + ACTIONS(3743), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1689), 41, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(3747), 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, - [19338] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1766), 1, - sym__unquoted_pattern, - STATE(1505), 1, - sym_comment, - ACTIONS(793), 5, + ACTIONS(3803), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(890), 42, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, + ACTIONS(3807), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3805), 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_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [19399] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern, - ACTIONS(1946), 1, - anon_sym_LPAREN2, - STATE(1506), 1, - sym_comment, - ACTIONS(1944), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1942), 41, - ts_builtin_sym_end, + ACTIONS(2776), 29, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -156283,7 +159943,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_and2, anon_sym_xor2, anon_sym_or2, @@ -156294,97 +159954,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [19462] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1623), 1, - sym__entry_separator, - ACTIONS(3695), 1, - sym_raw_string_begin, - STATE(1476), 1, - aux_sym__types_body_repeat2, - STATE(1507), 1, - sym_comment, - ACTIONS(3691), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [19525] = 5, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [23891] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1830), 1, - sym__unquoted_pattern, - STATE(1508), 1, + ACTIONS(2937), 1, + sym__newline, + ACTIONS(3741), 1, + anon_sym_DASH2, + ACTIONS(3749), 1, + anon_sym_PLUS2, + STATE(1563), 1, sym_comment, - ACTIONS(793), 5, + STATE(1578), 1, + aux_sym__repeat_newline, + ACTIONS(2778), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3743), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(890), 41, - ts_builtin_sym_end, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3747), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3807), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2776), 33, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -156395,7 +160001,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_and2, anon_sym_xor2, anon_sym_or2, @@ -156414,31 +160020,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19585] = 11, + [23965] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2870), 1, + ACTIONS(2937), 1, sym__newline, - ACTIONS(3741), 1, - anon_sym_DASH2, - ACTIONS(3749), 1, - anon_sym_PLUS2, - STATE(1509), 1, + STATE(1564), 1, sym_comment, - STATE(1552), 1, + STATE(1580), 1, aux_sym__repeat_newline, - ACTIONS(2686), 2, - anon_sym_GT2, - anon_sym_LT2, ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, @@ -156448,7 +160041,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2684), 35, + ACTIONS(2778), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2776), 36, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -156461,6 +160058,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_and2, anon_sym_xor2, anon_sym_or2, @@ -156484,32 +160082,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19657] = 10, + [24033] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_DASH2, - ACTIONS(3759), 1, - anon_sym_PLUS2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1510), 1, + ACTIONS(2937), 1, + sym__newline, + STATE(1565), 1, sym_comment, - ACTIONS(2694), 2, + STATE(1582), 1, + aux_sym__repeat_newline, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2778), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3753), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3755), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2692), 36, + anon_sym_PLUS2, + ACTIONS(2776), 38, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -156521,6 +160113,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_and2, anon_sym_xor2, anon_sym_or2, @@ -156539,23 +160132,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [19727] = 15, + [24097] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2870), 1, + ACTIONS(2937), 1, sym__newline, ACTIONS(3741), 1, anon_sym_DASH2, ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(1511), 1, + ACTIONS(3813), 1, + anon_sym_bit_DASHand2, + ACTIONS(3815), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3817), 1, + anon_sym_bit_DASHor2, + STATE(1566), 1, sym_comment, - STATE(1553), 1, + STATE(1584), 1, aux_sym__repeat_newline, ACTIONS(3743), 2, anon_sym_STAR2, @@ -156566,23 +160167,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3763), 2, + ACTIONS(3803), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3769), 2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3765), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3767), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3761), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -156591,7 +160192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2684), 17, + ACTIONS(2776), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -156606,46 +160207,53 @@ 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, - [19807] = 14, + [24183] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(2937), 1, + sym__newline, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3759), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1512), 1, + ACTIONS(3813), 1, + anon_sym_bit_DASHand2, + ACTIONS(3815), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3817), 1, + anon_sym_bit_DASHor2, + ACTIONS(3819), 1, + anon_sym_and2, + STATE(1567), 1, sym_comment, - ACTIONS(3753), 2, + STATE(1586), 1, + aux_sym__repeat_newline, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3773), 2, + ACTIONS(3803), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3779), 2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3775), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3777), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3771), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -156654,8 +160262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2692), 18, - sym__newline, + ACTIONS(2776), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -156667,26 +160274,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_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [19885] = 16, + [24271] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2870), 1, + ACTIONS(2903), 1, sym__newline, ACTIONS(3741), 1, anon_sym_DASH2, ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3781), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHand2, - STATE(1513), 1, + ACTIONS(3815), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3817), 1, + anon_sym_bit_DASHor2, + ACTIONS(3819), 1, + anon_sym_and2, + ACTIONS(3821), 1, + anon_sym_xor2, + STATE(1568), 1, sym_comment, - STATE(1554), 1, + STATE(1588), 1, aux_sym__repeat_newline, ACTIONS(3743), 2, anon_sym_STAR2, @@ -156697,23 +160308,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3763), 2, + ACTIONS(3803), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3769), 2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3765), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3767), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3761), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -156722,7 +160333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2684), 16, + ACTIONS(2776), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -156734,50 +160345,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [19967] = 15, + [24361] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(2937), 1, + sym__newline, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3759), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3783), 1, - anon_sym_bit_DASHand2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1514), 1, + STATE(1569), 1, sym_comment, - ACTIONS(3753), 2, + STATE(1590), 1, + aux_sym__repeat_newline, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3773), 2, + ACTIONS(3803), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3779), 2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3775), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3777), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3771), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -156786,8 +160388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2692), 17, - sym__newline, + ACTIONS(2776), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -156802,24 +160403,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [20047] = 17, + [24439] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2870), 1, + ACTIONS(2937), 1, sym__newline, ACTIONS(3741), 1, anon_sym_DASH2, ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3781), 1, + STATE(1570), 1, + sym_comment, + STATE(1591), 1, + aux_sym__repeat_newline, + ACTIONS(2778), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3743), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3747), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2776), 35, + anon_sym_in, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, - ACTIONS(3785), 1, anon_sym_bit_DASHxor2, - STATE(1515), 1, + anon_sym_bit_DASHor2, + [24511] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2937), 1, + sym__newline, + ACTIONS(3741), 1, + anon_sym_DASH2, + ACTIONS(3749), 1, + anon_sym_PLUS2, + STATE(1571), 1, sym_comment, - STATE(1555), 1, + STATE(1593), 1, aux_sym__repeat_newline, ACTIONS(3743), 2, anon_sym_STAR2, @@ -156830,23 +160493,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3763), 2, + ACTIONS(3803), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3769), 2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3765), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3767), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3761), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -156855,7 +160518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2684), 15, + ACTIONS(2776), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -156870,48 +160533,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [20131] = 16, + [24591] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(2937), 1, + sym__newline, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3759), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3783), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHand2, - ACTIONS(3787), 1, - anon_sym_bit_DASHxor2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1516), 1, + STATE(1572), 1, sym_comment, - ACTIONS(3753), 2, + STATE(1595), 1, + aux_sym__repeat_newline, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3773), 2, + ACTIONS(3803), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3779), 2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3775), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3777), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3771), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -156920,8 +160585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2692), 16, - sym__newline, + ACTIONS(2776), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -156936,22 +160600,25 @@ 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, - [20213] = 16, + [24673] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(2937), 1, sym__newline, ACTIONS(3741), 1, anon_sym_DASH2, ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3781), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHand2, - STATE(1514), 1, - aux_sym__repeat_newline, - STATE(1517), 1, + ACTIONS(3815), 1, + anon_sym_bit_DASHxor2, + STATE(1573), 1, sym_comment, + STATE(1597), 1, + aux_sym__repeat_newline, ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, @@ -156961,23 +160628,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3763), 2, + ACTIONS(3803), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3769), 2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3765), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3767), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3761), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -156986,7 +160653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2666), 16, + ACTIONS(2776), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -157001,20 +160668,87 @@ 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, - [20295] = 13, + [24757] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3827), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3829), 1, + anon_sym_LBRACK, + ACTIONS(3831), 1, + anon_sym_DOLLAR, + ACTIONS(3833), 1, + anon_sym_LBRACE, + ACTIONS(3835), 1, + anon_sym_DQUOTE, + ACTIONS(3837), 1, + anon_sym_SQUOTE, + ACTIONS(3839), 1, + anon_sym_BQUOTE, + ACTIONS(3841), 1, + sym_raw_string_begin, + STATE(1574), 1, + sym_comment, + STATE(2108), 1, + sym__val_number_decimal, + ACTIONS(3643), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3823), 2, + anon_sym_export, + anon_sym_in, + STATE(2407), 2, + sym_cmd_identifier, + sym_val_string, + STATE(2409), 3, + sym_val_variable, + sym_val_list, + sym_val_record, + STATE(2372), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3825), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [24843] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2864), 1, + ACTIONS(2832), 1, sym__newline, ACTIONS(3741), 1, anon_sym_DASH2, ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(1518), 1, + STATE(1575), 1, sym_comment, - STATE(1557), 1, + STATE(1610), 1, aux_sym__repeat_newline, ACTIONS(3743), 2, anon_sym_STAR2, @@ -157025,18 +160759,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3763), 2, + ACTIONS(3803), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3769), 2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3765), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2676), 29, + ACTIONS(2726), 29, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -157066,36 +160800,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [20371] = 12, + [24919] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2864), 1, - sym__newline, - ACTIONS(3741), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3749), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(1519), 1, - sym_comment, - STATE(1559), 1, + STATE(528), 1, aux_sym__repeat_newline, - ACTIONS(2678), 2, + STATE(1576), 1, + sym_comment, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3743), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3745), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3747), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3769), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2676), 33, + ACTIONS(3849), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2732), 30, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -157117,10 +160855,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -157128,83 +160862,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [20445] = 18, + [24993] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(2832), 1, sym__newline, ACTIONS(3741), 1, anon_sym_DASH2, ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3781), 1, - anon_sym_bit_DASHand2, - ACTIONS(3785), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3789), 1, - anon_sym_bit_DASHor2, - STATE(1520), 1, + STATE(1577), 1, sym_comment, - STATE(1653), 1, + STATE(1611), 1, aux_sym__repeat_newline, - ACTIONS(3743), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3745), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3747), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3763), 2, + ACTIONS(2728), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3769), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3765), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3767), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3761), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2666), 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, - [20531] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2864), 1, - sym__newline, - STATE(1521), 1, - sym_comment, - STATE(1561), 1, - aux_sym__repeat_newline, ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, @@ -157214,11 +160887,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2678), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2676), 36, + ACTIONS(3807), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2726), 33, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -157231,7 +160903,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -157250,98 +160921,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [20599] = 17, + [25067] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(3741), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3749), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3781), 1, - anon_sym_bit_DASHand2, - ACTIONS(3785), 1, - anon_sym_bit_DASHxor2, - STATE(1516), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1522), 1, + STATE(1578), 1, sym_comment, - ACTIONS(3743), 2, + ACTIONS(2734), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3745), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3747), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3763), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3769), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3765), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3767), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3761), 8, + ACTIONS(2732), 34, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2666), 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, - [20683] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2864), 1, sym__newline, - STATE(1523), 1, - sym_comment, - STATE(1563), 1, - aux_sym__repeat_newline, - ACTIONS(3745), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2678), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2676), 38, - anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -157353,7 +160964,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -157372,96 +160982,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [20747] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(1524), 1, - sym_comment, - STATE(4335), 1, - sym_block, - STATE(4808), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [20827] = 18, + [25139] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2864), 1, + ACTIONS(2832), 1, sym__newline, - ACTIONS(3741), 1, - anon_sym_DASH2, - ACTIONS(3749), 1, - anon_sym_PLUS2, - ACTIONS(3781), 1, - anon_sym_bit_DASHand2, - ACTIONS(3785), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3789), 1, - anon_sym_bit_DASHor2, - STATE(1525), 1, + STATE(1579), 1, sym_comment, - STATE(1565), 1, + STATE(1612), 1, aux_sym__repeat_newline, ACTIONS(3743), 2, anon_sym_STAR2, @@ -157472,32 +161003,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3763), 2, + ACTIONS(2728), 3, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3769), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3765), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3767), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3761), 8, + anon_sym_PLUS2, + ACTIONS(2726), 36, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2676), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -157509,122 +161020,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [20913] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(1526), 1, - sym_comment, - STATE(4344), 1, - sym_block, - STATE(4745), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [20993] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2864), 1, - sym__newline, - ACTIONS(3741), 1, - anon_sym_DASH2, - ACTIONS(3749), 1, - anon_sym_PLUS2, - ACTIONS(3781), 1, - anon_sym_bit_DASHand2, - ACTIONS(3785), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3789), 1, - anon_sym_bit_DASHor2, - ACTIONS(3805), 1, - anon_sym_and2, - STATE(1527), 1, - sym_comment, - STATE(1567), 1, - aux_sym__repeat_newline, - ACTIONS(3743), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3745), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3747), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3763), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3769), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3765), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3767), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3761), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -157632,198 +161031,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2676), 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, - [21081] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(1528), 1, - sym_comment, - STATE(4345), 1, - sym_block, - STATE(4748), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21161] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(3741), 1, - anon_sym_DASH2, - ACTIONS(3749), 1, - anon_sym_PLUS2, - ACTIONS(3781), 1, - anon_sym_bit_DASHand2, - ACTIONS(3785), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3789), 1, - anon_sym_bit_DASHor2, - ACTIONS(3805), 1, - anon_sym_and2, - ACTIONS(3807), 1, - anon_sym_xor2, - STATE(1529), 1, - sym_comment, - STATE(1569), 1, - aux_sym__repeat_newline, - ACTIONS(3743), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3745), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3747), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3763), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3769), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3765), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3767), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3761), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2676), 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, - [21251] = 14, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [25207] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2864), 1, - sym__newline, - ACTIONS(3741), 1, - anon_sym_DASH2, - ACTIONS(3749), 1, - anon_sym_PLUS2, - STATE(1530), 1, - sym_comment, - STATE(1571), 1, + STATE(528), 1, aux_sym__repeat_newline, - ACTIONS(3743), 2, + STATE(1580), 1, + sym_comment, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3745), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3747), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3763), 2, + ACTIONS(2734), 3, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3769), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3765), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3761), 8, + anon_sym_PLUS2, + ACTIONS(2732), 37, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2676), 21, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -157835,35 +161078,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_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [21329] = 7, + [25273] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(2832), 1, sym__newline, - STATE(1531), 1, + STATE(1581), 1, sym_comment, - STATE(1650), 1, + STATE(1613), 1, aux_sym__repeat_newline, ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2668), 5, + ACTIONS(2728), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2666), 38, + ACTIONS(2726), 38, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -157902,98 +161159,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [21393] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(1532), 1, - sym_comment, - STATE(4496), 1, - sym_block, - STATE(4800), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21473] = 11, + [25337] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2864), 1, - sym__newline, - ACTIONS(3741), 1, - anon_sym_DASH2, - ACTIONS(3749), 1, - anon_sym_PLUS2, - STATE(1533), 1, - sym_comment, - STATE(1573), 1, + STATE(528), 1, aux_sym__repeat_newline, - ACTIONS(2678), 2, + STATE(1582), 1, + sym_comment, + ACTIONS(3851), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2734), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3743), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3745), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3747), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2676), 35, + anon_sym_PLUS2, + ACTIONS(2732), 39, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -158005,106 +161189,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [21545] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(1534), 1, - sym_comment, - STATE(4503), 1, - sym_block, - STATE(4826), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21625] = 15, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [25399] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2864), 1, + ACTIONS(2832), 1, sym__newline, ACTIONS(3741), 1, anon_sym_DASH2, ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(1535), 1, + ACTIONS(3813), 1, + anon_sym_bit_DASHand2, + ACTIONS(3815), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3817), 1, + anon_sym_bit_DASHor2, + STATE(1583), 1, sym_comment, - STATE(1575), 1, + STATE(1614), 1, aux_sym__repeat_newline, ACTIONS(3743), 2, anon_sym_STAR2, @@ -158115,23 +161243,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3763), 2, + ACTIONS(3803), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3769), 2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3765), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3767), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3761), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -158140,7 +161268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2676), 17, + ACTIONS(2726), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -158155,115 +161283,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [21705] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(1536), 1, - sym_comment, - STATE(4504), 1, - sym_block, - STATE(4671), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [21785] = 16, + [25485] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2864), 1, - sym__newline, - ACTIONS(3741), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3749), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3781), 1, + ACTIONS(3863), 1, anon_sym_bit_DASHand2, - STATE(1537), 1, - sym_comment, - STATE(1577), 1, + ACTIONS(3865), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3867), 1, + anon_sym_bit_DASHor2, + STATE(528), 1, aux_sym__repeat_newline, - ACTIONS(3743), 2, + STATE(1584), 1, + sym_comment, + ACTIONS(3843), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3745), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3747), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3763), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3769), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3765), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3767), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3761), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -158272,7 +161334,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2676), 16, + ACTIONS(2732), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -158287,28 +161350,26 @@ 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, - [21867] = 19, + [25569] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(2832), 1, sym__newline, ACTIONS(3741), 1, anon_sym_DASH2, ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3781), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHand2, - ACTIONS(3785), 1, + ACTIONS(3815), 1, anon_sym_bit_DASHxor2, - ACTIONS(3789), 1, + ACTIONS(3817), 1, anon_sym_bit_DASHor2, - ACTIONS(3805), 1, + ACTIONS(3819), 1, anon_sym_and2, - STATE(1538), 1, + STATE(1585), 1, sym_comment, - STATE(1661), 1, + STATE(1615), 1, aux_sym__repeat_newline, ACTIONS(3743), 2, anon_sym_STAR2, @@ -158319,23 +161380,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3763), 2, + ACTIONS(3803), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3769), 2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3765), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3767), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3761), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -158344,7 +161405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2666), 13, + ACTIONS(2726), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -158358,49 +161419,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [21955] = 17, + [25657] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2864), 1, - sym__newline, - ACTIONS(3741), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3749), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3781), 1, + ACTIONS(3863), 1, anon_sym_bit_DASHand2, - ACTIONS(3785), 1, + ACTIONS(3865), 1, anon_sym_bit_DASHxor2, - STATE(1539), 1, - sym_comment, - STATE(1579), 1, + ACTIONS(3867), 1, + anon_sym_bit_DASHor2, + ACTIONS(3869), 1, + anon_sym_and2, + STATE(528), 1, aux_sym__repeat_newline, - ACTIONS(3743), 2, + STATE(1586), 1, + sym_comment, + ACTIONS(3843), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3745), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3747), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3763), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3769), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3765), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3767), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3761), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -158409,7 +161472,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2676), 15, + ACTIONS(2732), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -158421,162 +161485,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_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - [22039] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(1540), 1, - sym_comment, - STATE(4330), 1, - sym_block, - STATE(4785), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22119] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(1541), 1, - sym_comment, - STATE(4417), 1, - sym_block, - STATE(4743), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22199] = 20, + [25743] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, + ACTIONS(2903), 1, sym__newline, ACTIONS(3741), 1, anon_sym_DASH2, ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3781), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHand2, - ACTIONS(3785), 1, + ACTIONS(3815), 1, anon_sym_bit_DASHxor2, - ACTIONS(3789), 1, + ACTIONS(3817), 1, anon_sym_bit_DASHor2, - ACTIONS(3805), 1, + ACTIONS(3819), 1, anon_sym_and2, - ACTIONS(3807), 1, + ACTIONS(3821), 1, anon_sym_xor2, - STATE(1542), 1, + STATE(1587), 1, sym_comment, - STATE(1664), 1, + STATE(1616), 1, aux_sym__repeat_newline, ACTIONS(3743), 2, anon_sym_STAR2, @@ -158587,23 +161519,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3763), 2, + ACTIONS(3803), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3769), 2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3765), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3767), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3761), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -158612,7 +161544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2666), 12, + ACTIONS(2726), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -158625,104 +161557,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [22289] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(1543), 1, - sym_comment, - STATE(4572), 1, - sym_block, - STATE(4773), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [22369] = 12, + [25833] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3759), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(517), 1, + ACTIONS(3863), 1, + anon_sym_bit_DASHand2, + ACTIONS(3865), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3867), 1, + anon_sym_bit_DASHor2, + ACTIONS(3869), 1, + anon_sym_and2, + ACTIONS(3871), 1, + anon_sym_xor2, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1544), 1, + STATE(1588), 1, sym_comment, - ACTIONS(3753), 2, + ACTIONS(3843), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3779), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3775), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2688), 30, + ACTIONS(3861), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3859), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2732), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -158735,52 +161625,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [22443] = 11, + [25921] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(2832), 1, + sym__newline, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3759), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1545), 1, + STATE(1589), 1, sym_comment, - ACTIONS(2690), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3753), 2, + STATE(1617), 1, + aux_sym__repeat_newline, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3779), 2, + ACTIONS(3803), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2688), 34, + ACTIONS(3805), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3809), 8, anon_sym_in, - sym__newline, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2726), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -158795,17 +161683,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -158813,28 +161690,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [22515] = 8, + [25999] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(517), 1, + ACTIONS(3845), 1, + anon_sym_DASH2, + ACTIONS(3855), 1, + anon_sym_PLUS2, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1546), 1, + STATE(1590), 1, sym_comment, - ACTIONS(3753), 2, + ACTIONS(3843), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2690), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2688), 37, + ACTIONS(3857), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3849), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3859), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2732), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -158847,47 +161743,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_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [22581] = 6, + [26075] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(517), 1, + ACTIONS(3845), 1, + anon_sym_DASH2, + ACTIONS(3855), 1, + anon_sym_PLUS2, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1547), 1, + STATE(1591), 1, sym_comment, - ACTIONS(3755), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2690), 5, + ACTIONS(2734), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3847), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2688), 39, + ACTIONS(3851), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3853), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2732), 36, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -158901,7 +161790,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -158920,56 +161808,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [22643] = 17, + [26145] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(2832), 1, + sym__newline, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3759), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3783), 1, - anon_sym_bit_DASHand2, - ACTIONS(3787), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3811), 1, - anon_sym_bit_DASHor2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1548), 1, + STATE(1592), 1, sym_comment, - ACTIONS(3753), 2, + STATE(1619), 1, + aux_sym__repeat_newline, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3773), 2, + ACTIONS(3803), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3779), 2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3775), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3777), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3771), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -158978,8 +161860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2688), 15, - sym__newline, + ACTIONS(2726), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -158994,51 +161875,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [22727] = 18, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [26225] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3759), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3783), 1, - anon_sym_bit_DASHand2, - ACTIONS(3787), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3811), 1, - anon_sym_bit_DASHor2, - ACTIONS(3813), 1, - anon_sym_and2, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1549), 1, + STATE(1593), 1, sym_comment, - ACTIONS(3753), 2, + ACTIONS(3843), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3779), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3775), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3777), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3771), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -159047,7 +161923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2688), 14, + ACTIONS(2732), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -159060,109 +161936,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [22813] = 19, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [26303] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(2832), 1, + sym__newline, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3759), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3783), 1, - anon_sym_bit_DASHand2, - ACTIONS(3787), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3811), 1, - anon_sym_bit_DASHor2, ACTIONS(3813), 1, - anon_sym_and2, - ACTIONS(3815), 1, - anon_sym_xor2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1550), 1, + anon_sym_bit_DASHand2, + STATE(1594), 1, sym_comment, - ACTIONS(3753), 2, + STATE(1620), 1, + aux_sym__repeat_newline, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3773), 2, + ACTIONS(3803), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3779), 2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3775), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3777), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3771), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2688), 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, - [22901] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_DASH2, - ACTIONS(3759), 1, - anon_sym_PLUS2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1551), 1, - sym_comment, - ACTIONS(3753), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3755), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3779), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3775), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3771), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -159171,8 +161991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2688), 22, - sym__newline, + ACTIONS(2726), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -159187,110 +162006,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [22977] = 10, + [26385] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3759), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(517), 1, + ACTIONS(3863), 1, + anon_sym_bit_DASHand2, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1552), 1, + STATE(1595), 1, sym_comment, - ACTIONS(2690), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3753), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3755), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2688), 36, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [23047] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_DASH2, - ACTIONS(3759), 1, - anon_sym_PLUS2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1553), 1, - sym_comment, - ACTIONS(3753), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3779), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3775), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3777), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3771), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -159299,7 +162055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2688), 18, + ACTIONS(2732), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -159315,48 +162071,51 @@ 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, - [23125] = 15, + [26465] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(2832), 1, + sym__newline, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3759), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3783), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHand2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1554), 1, + ACTIONS(3815), 1, + anon_sym_bit_DASHxor2, + STATE(1596), 1, sym_comment, - ACTIONS(3753), 2, + STATE(1621), 1, + aux_sym__repeat_newline, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3773), 2, + ACTIONS(3803), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3779), 2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3775), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3777), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3771), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -159365,8 +162124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2688), 17, - sym__newline, + ACTIONS(2726), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -159381,49 +162139,48 @@ 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, - [23205] = 16, + [26549] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3759), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3783), 1, + ACTIONS(3863), 1, anon_sym_bit_DASHand2, - ACTIONS(3787), 1, + ACTIONS(3865), 1, anon_sym_bit_DASHxor2, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1555), 1, + STATE(1597), 1, sym_comment, - ACTIONS(3753), 2, + ACTIONS(3843), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3779), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3775), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3777), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3771), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -159432,7 +162189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2688), 16, + ACTIONS(2732), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -159449,18 +162206,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [23287] = 13, + [26631] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2867), 1, + ACTIONS(2782), 1, sym__newline, ACTIONS(3741), 1, anon_sym_DASH2, ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(1556), 1, + STATE(1598), 1, sym_comment, - STATE(1584), 1, + STATE(1623), 1, aux_sym__repeat_newline, ACTIONS(3743), 2, anon_sym_STAR2, @@ -159471,18 +162228,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3763), 2, + ACTIONS(3803), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3769), 2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3765), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2768), 29, + ACTIONS(2772), 29, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -159512,40 +162269,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [23363] = 12, + [26707] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(2782), 1, + sym__newline, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3759), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1557), 1, + STATE(1599), 1, sym_comment, - ACTIONS(3753), 2, + STATE(1625), 1, + aux_sym__repeat_newline, + ACTIONS(2774), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3779), 2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3775), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2772), 30, + ACTIONS(2772), 33, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -159567,6 +162320,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -159574,22 +162331,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [23437] = 12, + [26781] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2867), 1, + ACTIONS(2782), 1, sym__newline, - ACTIONS(3741), 1, - anon_sym_DASH2, - ACTIONS(3749), 1, - anon_sym_PLUS2, - STATE(1558), 1, + STATE(1600), 1, sym_comment, - STATE(1585), 1, + STATE(1627), 1, aux_sym__repeat_newline, - ACTIONS(2770), 2, - anon_sym_GT2, - anon_sym_LT2, ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, @@ -159599,10 +162349,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3769), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2768), 33, + ACTIONS(2774), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2772), 36, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -159615,6 +162366,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_and2, anon_sym_xor2, anon_sym_or2, @@ -159633,38 +162385,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [23511] = 11, + [26849] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_DASH2, - ACTIONS(3759), 1, - anon_sym_PLUS2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1559), 1, + ACTIONS(2782), 1, + sym__newline, + STATE(1601), 1, sym_comment, - ACTIONS(2774), 2, + STATE(1629), 1, + aux_sym__repeat_newline, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2774), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3753), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(3755), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3779), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2772), 34, + anon_sym_PLUS2, + ACTIONS(2772), 38, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -159676,6 +162421,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_and2, anon_sym_xor2, anon_sym_or2, @@ -159694,17 +162440,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [23583] = 9, + [26913] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2867), 1, + ACTIONS(2782), 1, sym__newline, - STATE(1560), 1, + ACTIONS(3741), 1, + anon_sym_DASH2, + ACTIONS(3749), 1, + anon_sym_PLUS2, + ACTIONS(3813), 1, + anon_sym_bit_DASHand2, + ACTIONS(3815), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3817), 1, + anon_sym_bit_DASHor2, + STATE(1602), 1, sym_comment, - STATE(1586), 1, + STATE(1631), 1, aux_sym__repeat_newline, ACTIONS(3743), 2, anon_sym_STAR2, @@ -159715,12 +162475,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2770), 3, + ACTIONS(3803), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2768), 36, + ACTIONS(3807), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3805), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3811), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3809), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2772), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -159732,53 +162512,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, + [26999] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2782), 1, + sym__newline, + ACTIONS(3741), 1, + anon_sym_DASH2, + ACTIONS(3749), 1, + anon_sym_PLUS2, + ACTIONS(3813), 1, anon_sym_bit_DASHand2, + ACTIONS(3815), 1, anon_sym_bit_DASHxor2, + ACTIONS(3817), 1, anon_sym_bit_DASHor2, - [23651] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1561), 1, + ACTIONS(3819), 1, + anon_sym_and2, + STATE(1603), 1, sym_comment, - ACTIONS(3753), 2, + STATE(1633), 1, + aux_sym__repeat_newline, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2774), 3, + ACTIONS(3803), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2772), 37, + ACTIONS(3807), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3805), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3811), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3809), 8, anon_sym_in, - sym__newline, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2772), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -159790,50 +162582,121 @@ static 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, + [27087] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(3741), 1, anon_sym_DASH2, + ACTIONS(3749), 1, + anon_sym_PLUS2, + ACTIONS(3813), 1, + anon_sym_bit_DASHand2, + ACTIONS(3815), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3817), 1, + anon_sym_bit_DASHor2, + ACTIONS(3819), 1, anon_sym_and2, + ACTIONS(3821), 1, anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, + STATE(1604), 1, + sym_comment, + STATE(1635), 1, + aux_sym__repeat_newline, + ACTIONS(3743), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3747), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3803), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3807), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [23717] = 7, + ACTIONS(3809), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2772), 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, + [27177] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2867), 1, + ACTIONS(2782), 1, sym__newline, - STATE(1562), 1, + ACTIONS(3741), 1, + anon_sym_DASH2, + ACTIONS(3749), 1, + anon_sym_PLUS2, + STATE(1605), 1, sym_comment, - STATE(1587), 1, + STATE(1637), 1, aux_sym__repeat_newline, + ACTIONS(3743), 2, + anon_sym_STAR2, + anon_sym_SLASH2, ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2770), 5, + ACTIONS(3747), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3803), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2768), 38, + ACTIONS(3807), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3805), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3809), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2772), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -159845,51 +162708,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [23781] = 6, + [27255] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1563), 1, + ACTIONS(2782), 1, + sym__newline, + ACTIONS(3741), 1, + anon_sym_DASH2, + ACTIONS(3749), 1, + anon_sym_PLUS2, + STATE(1606), 1, sym_comment, - ACTIONS(3755), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2774), 5, + STATE(1639), 1, + aux_sym__repeat_newline, + ACTIONS(2774), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3743), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2772), 39, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3747), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2772), 35, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -159901,7 +162756,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -159920,31 +162774,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [23843] = 18, + [27327] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2867), 1, + ACTIONS(2782), 1, sym__newline, ACTIONS(3741), 1, anon_sym_DASH2, ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3781), 1, - anon_sym_bit_DASHand2, - ACTIONS(3785), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3789), 1, - anon_sym_bit_DASHor2, - STATE(1564), 1, + STATE(1607), 1, sym_comment, - STATE(1588), 1, + STATE(1641), 1, aux_sym__repeat_newline, ACTIONS(3743), 2, anon_sym_STAR2, @@ -159955,23 +162801,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3763), 2, + ACTIONS(3803), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3769), 2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3765), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3767), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3761), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -159980,7 +162826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2768), 14, + ACTIONS(2772), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -159995,49 +162841,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [23929] = 17, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [27407] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(2782), 1, + sym__newline, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3759), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3783), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHand2, - ACTIONS(3787), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3811), 1, - anon_sym_bit_DASHor2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1565), 1, + STATE(1608), 1, sym_comment, - ACTIONS(3753), 2, + STATE(1643), 1, + aux_sym__repeat_newline, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3773), 2, + ACTIONS(3803), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3779), 2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3775), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3777), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3771), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160046,8 +162893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2772), 15, - sym__newline, + ACTIONS(2772), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160062,26 +162908,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [24013] = 19, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [27489] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2867), 1, + ACTIONS(2782), 1, sym__newline, ACTIONS(3741), 1, anon_sym_DASH2, ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3781), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHand2, - ACTIONS(3785), 1, + ACTIONS(3815), 1, anon_sym_bit_DASHxor2, - ACTIONS(3789), 1, - anon_sym_bit_DASHor2, - ACTIONS(3805), 1, - anon_sym_and2, - STATE(1566), 1, + STATE(1609), 1, sym_comment, - STATE(1589), 1, + STATE(1645), 1, aux_sym__repeat_newline, ACTIONS(3743), 2, anon_sym_STAR2, @@ -160092,23 +162936,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3763), 2, + ACTIONS(3803), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3769), 2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3765), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3767), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3761), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160117,7 +162961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2768), 13, + ACTIONS(2772), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160129,54 +162973,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [24101] = 18, + anon_sym_bit_DASHor2, + [27573] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3759), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3783), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(1610), 1, + sym_comment, + ACTIONS(3843), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3847), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3851), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3853), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3857), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3849), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2652), 30, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, anon_sym_bit_DASHand2, - ACTIONS(3787), 1, anon_sym_bit_DASHxor2, - ACTIONS(3811), 1, anon_sym_bit_DASHor2, - ACTIONS(3813), 1, - anon_sym_and2, - STATE(517), 1, + [27647] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3845), 1, + anon_sym_DASH2, + ACTIONS(3855), 1, + anon_sym_PLUS2, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1567), 1, + STATE(1611), 1, sym_comment, - ACTIONS(3753), 2, + ACTIONS(2654), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3779), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3775), 4, + ACTIONS(2652), 34, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3777), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3771), 8, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [27719] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(1612), 1, + sym_comment, + ACTIONS(3847), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3851), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3853), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2654), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2652), 37, anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -160184,7 +163145,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2772), 14, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [27785] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(1613), 1, + sym_comment, + ACTIONS(3851), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2654), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2652), 39, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -160197,57 +163188,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [24187] = 20, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [27847] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(3741), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3749), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3781), 1, + ACTIONS(3863), 1, anon_sym_bit_DASHand2, - ACTIONS(3785), 1, + ACTIONS(3865), 1, anon_sym_bit_DASHxor2, - ACTIONS(3789), 1, + ACTIONS(3867), 1, anon_sym_bit_DASHor2, - ACTIONS(3805), 1, - anon_sym_and2, - ACTIONS(3807), 1, - anon_sym_xor2, - STATE(1568), 1, - sym_comment, - STATE(1590), 1, + STATE(528), 1, aux_sym__repeat_newline, - ACTIONS(3743), 2, + STATE(1614), 1, + sym_comment, + ACTIONS(3843), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3745), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3747), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3763), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3769), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3765), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3767), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3761), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160256,7 +163265,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2768), 12, + ACTIONS(2652), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160268,54 +163278,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [24277] = 19, + [27931] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3759), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3783), 1, + ACTIONS(3863), 1, anon_sym_bit_DASHand2, - ACTIONS(3787), 1, + ACTIONS(3865), 1, anon_sym_bit_DASHxor2, - ACTIONS(3811), 1, + ACTIONS(3867), 1, anon_sym_bit_DASHor2, - ACTIONS(3813), 1, + ACTIONS(3869), 1, anon_sym_and2, - ACTIONS(3815), 1, - anon_sym_xor2, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1569), 1, + STATE(1615), 1, sym_comment, - ACTIONS(3753), 2, + ACTIONS(3843), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3779), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3775), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3777), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3771), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160324,7 +163334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2772), 13, + ACTIONS(2652), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -160337,41 +163347,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor2, anon_sym_or2, - [24365] = 14, + [28017] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2867), 1, - sym__newline, - ACTIONS(3741), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3749), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(1570), 1, - sym_comment, - STATE(1591), 1, + ACTIONS(3863), 1, + anon_sym_bit_DASHand2, + ACTIONS(3865), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3867), 1, + anon_sym_bit_DASHor2, + ACTIONS(3869), 1, + anon_sym_and2, + ACTIONS(3871), 1, + anon_sym_xor2, + STATE(528), 1, aux_sym__repeat_newline, - ACTIONS(3743), 2, + STATE(1616), 1, + sym_comment, + ACTIONS(3843), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3745), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3747), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3763), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3769), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3765), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3761), 8, + ACTIONS(3861), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160380,7 +163404,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2768), 21, + ACTIONS(2652), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160392,48 +163417,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_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [24443] = 13, + [28105] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3759), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1571), 1, + STATE(1617), 1, sym_comment, - ACTIONS(3753), 2, + ACTIONS(3843), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3779), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3775), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3771), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160442,7 +163458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2772), 22, + ACTIONS(2652), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -160465,33 +163481,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24519] = 11, + [28181] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2867), 1, - sym__newline, - ACTIONS(3741), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3749), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(1572), 1, - sym_comment, - STATE(1592), 1, + STATE(528), 1, aux_sym__repeat_newline, - ACTIONS(2770), 2, + STATE(1618), 1, + sym_comment, + ACTIONS(2654), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3743), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3745), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3747), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2768), 35, + ACTIONS(2652), 36, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160526,31 +163541,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24591] = 10, + [28251] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3759), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1573), 1, + STATE(1619), 1, sym_comment, - ACTIONS(2774), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3753), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2772), 36, + ACTIONS(3857), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3849), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3861), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3859), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2652), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -160566,65 +163602,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24661] = 15, + [28329] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2867), 1, - sym__newline, - ACTIONS(3741), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3749), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(1574), 1, - sym_comment, - STATE(1593), 1, + ACTIONS(3863), 1, + anon_sym_bit_DASHand2, + STATE(528), 1, aux_sym__repeat_newline, - ACTIONS(3743), 2, + STATE(1620), 1, + sym_comment, + ACTIONS(3843), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3745), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3747), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3763), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3769), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3765), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3767), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3761), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160633,7 +163652,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2768), 17, + ACTIONS(2652), 17, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160648,46 +163668,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24741] = 14, + [28409] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3759), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(517), 1, + ACTIONS(3863), 1, + anon_sym_bit_DASHand2, + ACTIONS(3865), 1, + anon_sym_bit_DASHxor2, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1575), 1, + STATE(1621), 1, sym_comment, - ACTIONS(3753), 2, + ACTIONS(3843), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3779), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3775), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3777), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3771), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -160696,7 +163719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2772), 18, + ACTIONS(2652), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -160712,23 +163735,19 @@ 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, - [24819] = 16, + [28491] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2867), 1, + ACTIONS(2807), 1, sym__newline, ACTIONS(3741), 1, anon_sym_DASH2, ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3781), 1, - anon_sym_bit_DASHand2, - STATE(1576), 1, + STATE(1622), 1, sym_comment, - STATE(1594), 1, + STATE(1646), 1, aux_sym__repeat_newline, ACTIONS(3743), 2, anon_sym_STAR2, @@ -160739,32 +163758,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3763), 2, + ACTIONS(3803), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3769), 2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3765), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3767), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3761), 8, + ACTIONS(2662), 29, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2768), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160779,56 +163785,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24901] = 15, + [28567] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3759), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3783), 1, - anon_sym_bit_DASHand2, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1577), 1, + STATE(1623), 1, sym_comment, - ACTIONS(3753), 2, + ACTIONS(3843), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3779), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3775), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3777), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3771), 8, + ACTIONS(2666), 30, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2772), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -160844,25 +163847,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [24981] = 17, + [28641] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2867), 1, + ACTIONS(2807), 1, sym__newline, ACTIONS(3741), 1, anon_sym_DASH2, ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3781), 1, - anon_sym_bit_DASHand2, - ACTIONS(3785), 1, - anon_sym_bit_DASHxor2, - STATE(1578), 1, + STATE(1624), 1, sym_comment, - STATE(1595), 1, + STATE(1647), 1, aux_sym__repeat_newline, + ACTIONS(2664), 2, + anon_sym_GT2, + anon_sym_LT2, ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, @@ -160872,32 +163886,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3763), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3769), 2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3765), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3767), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3761), 8, + ACTIONS(2662), 33, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2768), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -160912,57 +163905,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25065] = 16, + [28715] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3759), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3783), 1, - anon_sym_bit_DASHand2, - ACTIONS(3787), 1, - anon_sym_bit_DASHxor2, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1579), 1, + STATE(1625), 1, sym_comment, - ACTIONS(3753), 2, + ACTIONS(2668), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3779), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3775), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3777), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3771), 8, + ACTIONS(2666), 34, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2772), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -160978,175 +163966,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - [25147] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(1580), 1, - sym_comment, - STATE(4183), 1, - sym_block, - STATE(4666), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [25227] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(1581), 1, - sym_comment, - STATE(4597), 1, - sym_block, - STATE(4679), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [25307] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1598), 1, - sym__unquoted_pattern, - ACTIONS(3817), 1, - anon_sym_DOT, - STATE(1582), 1, - sym_comment, - STATE(1831), 1, - sym__immediate_decimal, - ACTIONS(3819), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3821), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(707), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1586), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1582), 30, - anon_sym_in, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -161162,103 +163981,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25381] = 4, + [28787] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1583), 1, - sym_comment, - ACTIONS(2894), 7, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_PLUS2, - aux_sym__val_number_decimal_token1, - ACTIONS(2896), 40, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, + ACTIONS(2807), 1, sym__newline, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACE, - [25439] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_DASH2, - ACTIONS(3759), 1, - anon_sym_PLUS2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1584), 1, + STATE(1626), 1, sym_comment, - ACTIONS(3753), 2, + STATE(1648), 1, + aux_sym__repeat_newline, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3773), 2, + ACTIONS(2664), 3, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3779), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3775), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2776), 30, + anon_sym_PLUS2, + ACTIONS(2662), 36, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161270,6 +164019,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_and2, anon_sym_xor2, anon_sym_or2, @@ -161280,40 +164030,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25513] = 11, + [28855] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_DASH2, - ACTIONS(3759), 1, - anon_sym_PLUS2, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1585), 1, + STATE(1627), 1, sym_comment, - ACTIONS(2778), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3753), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3779), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2776), 34, + ACTIONS(2668), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2666), 37, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -161327,6 +164077,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_and2, anon_sym_xor2, anon_sym_or2, @@ -161345,32 +164096,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25585] = 8, + [28921] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1586), 1, + ACTIONS(2807), 1, + sym__newline, + STATE(1628), 1, sym_comment, - ACTIONS(3753), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3755), 2, + STATE(1649), 1, + aux_sym__repeat_newline, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2778), 3, + ACTIONS(2664), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2776), 37, + ACTIONS(2662), 38, anon_sym_in, - sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161401,28 +164151,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25651] = 6, + [28985] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1587), 1, + STATE(1629), 1, sym_comment, - ACTIONS(3755), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2778), 5, + ACTIONS(2668), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2776), 39, + ACTIONS(2666), 39, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -161462,49 +164214,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [25713] = 17, + [29047] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(2807), 1, + sym__newline, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3759), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3783), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHand2, - ACTIONS(3787), 1, + ACTIONS(3815), 1, anon_sym_bit_DASHxor2, - ACTIONS(3811), 1, + ACTIONS(3817), 1, anon_sym_bit_DASHor2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1588), 1, + STATE(1630), 1, sym_comment, - ACTIONS(3753), 2, + STATE(1650), 1, + aux_sym__repeat_newline, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3773), 2, + ACTIONS(3803), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3779), 2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3775), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3777), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3771), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161513,8 +164267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2776), 15, - sym__newline, + ACTIONS(2662), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161529,51 +164282,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [25797] = 18, + [29133] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3759), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3783), 1, + ACTIONS(3863), 1, anon_sym_bit_DASHand2, - ACTIONS(3787), 1, + ACTIONS(3865), 1, anon_sym_bit_DASHxor2, - ACTIONS(3811), 1, + ACTIONS(3867), 1, anon_sym_bit_DASHor2, - ACTIONS(3813), 1, - anon_sym_and2, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1589), 1, + STATE(1631), 1, sym_comment, - ACTIONS(3753), 2, + ACTIONS(3843), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3779), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3775), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3777), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3771), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161582,7 +164333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2776), 14, + ACTIONS(2666), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -161595,166 +164346,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [25883] = 19, + [29217] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(2807), 1, + sym__newline, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3759), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3783), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHand2, - ACTIONS(3787), 1, + ACTIONS(3815), 1, anon_sym_bit_DASHxor2, - ACTIONS(3811), 1, + ACTIONS(3817), 1, anon_sym_bit_DASHor2, - ACTIONS(3813), 1, + ACTIONS(3819), 1, anon_sym_and2, - ACTIONS(3815), 1, - anon_sym_xor2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1590), 1, + STATE(1632), 1, sym_comment, - ACTIONS(3753), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3755), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3779), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3775), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3777), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3771), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2776), 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, - [25971] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_DASH2, - ACTIONS(3759), 1, - anon_sym_PLUS2, - STATE(517), 1, + STATE(1651), 1, aux_sym__repeat_newline, - STATE(1591), 1, - sym_comment, - ACTIONS(3753), 2, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3773), 2, + ACTIONS(3803), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3779), 2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3775), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3771), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2776), 22, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [26047] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_DASH2, - ACTIONS(3759), 1, - anon_sym_PLUS2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1592), 1, - sym_comment, - ACTIONS(2778), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3753), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3755), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2776), 36, + ACTIONS(3809), 8, anon_sym_in, - sym__newline, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2662), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161766,66 +164416,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [26117] = 14, + [29305] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3759), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(517), 1, + ACTIONS(3863), 1, + anon_sym_bit_DASHand2, + ACTIONS(3865), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3867), 1, + anon_sym_bit_DASHor2, + ACTIONS(3869), 1, + anon_sym_and2, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1593), 1, + STATE(1633), 1, sym_comment, - ACTIONS(3753), 2, + ACTIONS(3843), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3779), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3775), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3777), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3771), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161834,7 +164471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2776), 18, + ACTIONS(2666), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -161847,51 +164484,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_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [26195] = 15, + [29391] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(3741), 1, anon_sym_DASH2, - ACTIONS(3759), 1, + ACTIONS(3749), 1, anon_sym_PLUS2, - ACTIONS(3783), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHand2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1594), 1, + ACTIONS(3815), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3817), 1, + anon_sym_bit_DASHor2, + ACTIONS(3819), 1, + anon_sym_and2, + ACTIONS(3821), 1, + anon_sym_xor2, + STATE(1634), 1, sym_comment, - ACTIONS(3753), 2, + STATE(1652), 1, + aux_sym__repeat_newline, + ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(3745), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3773), 2, + ACTIONS(3803), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3779), 2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3775), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3777), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3771), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161900,8 +164543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2776), 17, - sym__newline, + ACTIONS(2662), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -161913,52 +164555,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [26275] = 16, + [29481] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3759), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3783), 1, + ACTIONS(3863), 1, anon_sym_bit_DASHand2, - ACTIONS(3787), 1, + ACTIONS(3865), 1, anon_sym_bit_DASHxor2, - STATE(517), 1, + ACTIONS(3867), 1, + anon_sym_bit_DASHor2, + ACTIONS(3869), 1, + anon_sym_and2, + ACTIONS(3871), 1, + anon_sym_xor2, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1595), 1, + STATE(1635), 1, sym_comment, - ACTIONS(3753), 2, + ACTIONS(3843), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3779), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3775), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3777), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3771), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -161967,7 +164611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2776), 16, + ACTIONS(2666), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -161980,22 +164624,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, - anon_sym_bit_DASHor2, - [26357] = 14, + [29569] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(2807), 1, sym__newline, ACTIONS(3741), 1, anon_sym_DASH2, ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(1596), 1, + STATE(1636), 1, sym_comment, - STATE(1672), 1, + STATE(1653), 1, aux_sym__repeat_newline, ACTIONS(3743), 2, anon_sym_STAR2, @@ -162006,18 +164647,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3763), 2, + ACTIONS(3803), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3769), 2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3765), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3761), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -162026,7 +164667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2666), 21, + ACTIONS(2662), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162048,98 +164689,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26435] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(1597), 1, - sym_comment, - STATE(4333), 1, - sym_block, - STATE(4803), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [26515] = 11, + [29647] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(3741), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3749), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(1510), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1598), 1, + STATE(1637), 1, sym_comment, - ACTIONS(2668), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3743), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3745), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3747), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2666), 35, + ACTIONS(3857), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3849), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3859), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2666), 22, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -162154,105 +164745,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26587] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(1599), 1, - sym_comment, - STATE(4334), 1, - sym_block, - STATE(4805), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [26667] = 12, + [29723] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(2807), 1, sym__newline, ACTIONS(3741), 1, anon_sym_DASH2, ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(1600), 1, - sym_comment, STATE(1638), 1, + sym_comment, + STATE(1654), 1, aux_sym__repeat_newline, - ACTIONS(2668), 2, + ACTIONS(2664), 2, anon_sym_GT2, anon_sym_LT2, ACTIONS(3743), 2, @@ -162264,10 +164777,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3769), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2666), 33, + ACTIONS(2662), 35, anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, @@ -162298,805 +164808,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [26741] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(1601), 1, - sym_comment, - STATE(4497), 1, - sym_block, - STATE(4732), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [26821] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(1602), 1, - sym_comment, - STATE(4239), 1, - sym_block, - STATE(4749), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [26901] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(1603), 1, - sym_comment, - STATE(4240), 1, - sym_block, - STATE(4680), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [26981] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(1604), 1, - sym_comment, - STATE(4559), 1, - sym_block, - STATE(4810), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [27061] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(1605), 1, - sym_comment, - STATE(4561), 1, - sym_block, - STATE(4657), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [27141] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(1606), 1, - sym_comment, - STATE(4654), 1, - sym_block, - STATE(4824), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [27221] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(1607), 1, - sym_comment, - STATE(4436), 1, - sym_block, - STATE(4818), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [27301] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(1608), 1, - sym_comment, - STATE(4564), 1, - sym_block, - STATE(4825), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [27381] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(1609), 1, - sym_comment, - STATE(4573), 1, - sym_block, - STATE(4661), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [27461] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(1610), 1, - sym_comment, - STATE(4242), 1, - sym_block, - STATE(4685), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [27541] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(1611), 1, - sym_comment, - STATE(4243), 1, - sym_block, - STATE(4694), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [27621] = 18, + [29795] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3827), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3829), 1, - anon_sym_LBRACK, - ACTIONS(3831), 1, - anon_sym_DOLLAR, - ACTIONS(3833), 1, - anon_sym_LBRACE, - ACTIONS(3835), 1, - anon_sym_DQUOTE, - ACTIONS(3837), 1, - anon_sym_SQUOTE, - ACTIONS(3839), 1, - anon_sym_BQUOTE, - ACTIONS(3841), 1, - sym_raw_string_begin, - STATE(1612), 1, + ACTIONS(3845), 1, + anon_sym_DASH2, + ACTIONS(3855), 1, + anon_sym_PLUS2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(1639), 1, sym_comment, - STATE(2095), 1, - sym__val_number_decimal, - ACTIONS(3639), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3823), 2, - anon_sym_export, + ACTIONS(2668), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3847), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3851), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3853), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2666), 36, anon_sym_in, - STATE(2435), 2, - sym_cmd_identifier, - sym_val_string, - STATE(2419), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(2395), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3825), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [27707] = 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, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [29865] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(2807), 1, sym__newline, ACTIONS(3741), 1, anon_sym_DASH2, ACTIONS(3749), 1, anon_sym_PLUS2, - STATE(1512), 1, - aux_sym__repeat_newline, - STATE(1613), 1, + STATE(1640), 1, sym_comment, + STATE(1655), 1, + aux_sym__repeat_newline, ACTIONS(3743), 2, anon_sym_STAR2, anon_sym_SLASH2, @@ -163106,23 +164895,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3763), 2, + ACTIONS(3803), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3769), 2, + ACTIONS(3807), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3765), 4, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3767), 4, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3761), 8, + ACTIONS(3809), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163131,7 +164920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2666), 17, + ACTIONS(2662), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -163149,14 +164938,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [27787] = 9, + [29945] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(3845), 1, + anon_sym_DASH2, + ACTIONS(3855), 1, + anon_sym_PLUS2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(1641), 1, + sym_comment, + ACTIONS(3843), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3847), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3851), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3853), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3857), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3849), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3861), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3859), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2666), 18, sym__newline, - STATE(1614), 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [30023] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2807), 1, + sym__newline, + ACTIONS(3741), 1, + anon_sym_DASH2, + ACTIONS(3749), 1, + anon_sym_PLUS2, + ACTIONS(3813), 1, + anon_sym_bit_DASHand2, + STATE(1642), 1, sym_comment, - STATE(1640), 1, + STATE(1656), 1, aux_sym__repeat_newline, ACTIONS(3743), 2, anon_sym_STAR2, @@ -163167,12 +165026,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3747), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2668), 3, + ACTIONS(3803), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2666), 36, + ACTIONS(3807), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3805), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3811), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3809), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2662), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -163184,10 +165063,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [30105] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3845), 1, + anon_sym_DASH2, + ACTIONS(3855), 1, + anon_sym_PLUS2, + ACTIONS(3863), 1, + anon_sym_bit_DASHand2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(1643), 1, + sym_comment, + ACTIONS(3843), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3847), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3851), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3853), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3857), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3849), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3861), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3859), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -163195,182 +165115,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + ACTIONS(2666), 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, + [30185] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2807), 1, + sym__newline, + ACTIONS(3741), 1, + anon_sym_DASH2, + ACTIONS(3749), 1, + anon_sym_PLUS2, + ACTIONS(3813), 1, + anon_sym_bit_DASHand2, + ACTIONS(3815), 1, + anon_sym_bit_DASHxor2, + STATE(1644), 1, + sym_comment, + STATE(1657), 1, + aux_sym__repeat_newline, + ACTIONS(3743), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3747), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3803), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3807), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3805), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(3811), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, + ACTIONS(3809), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2662), 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, - [27855] = 18, + [30269] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3010), 1, - anon_sym_DQUOTE, - ACTIONS(3012), 1, - anon_sym_SQUOTE, - ACTIONS(3014), 1, - anon_sym_BQUOTE, - ACTIONS(3022), 1, - sym_raw_string_begin, - ACTIONS(3631), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3843), 1, - anon_sym_LBRACK, ACTIONS(3845), 1, - anon_sym_DOLLAR, - ACTIONS(3847), 1, - anon_sym_LBRACE, - STATE(1615), 1, + anon_sym_DASH2, + ACTIONS(3855), 1, + anon_sym_PLUS2, + ACTIONS(3863), 1, + anon_sym_bit_DASHand2, + ACTIONS(3865), 1, + anon_sym_bit_DASHxor2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(1645), 1, sym_comment, - STATE(2106), 1, - sym__val_number_decimal, - ACTIONS(3627), 2, - anon_sym_export, + ACTIONS(3843), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3847), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3851), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3853), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3857), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3849), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3861), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3859), 8, anon_sym_in, - ACTIONS(3639), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(3196), 2, - sym_cmd_identifier, - sym_val_string, - STATE(3133), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(2624), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3629), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [27941] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(1616), 1, - sym_comment, - STATE(4262), 1, - sym_block, - STATE(4688), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [28021] = 11, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2666), 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, + [30351] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3861), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(1617), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(1646), 1, sym_comment, - ACTIONS(3849), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3853), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3857), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3859), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3863), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3855), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2547), 31, + ACTIONS(2722), 30, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163384,7 +165311,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -163402,31 +165328,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28093] = 10, + [30425] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3861), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(1618), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(1647), 1, sym_comment, - ACTIONS(2549), 2, + ACTIONS(2724), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3853), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3857), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3859), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3863), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2547), 35, + ACTIONS(2722), 34, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163440,7 +165368,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -163462,25 +165389,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28163] = 7, + [30497] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1619), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(1648), 1, sym_comment, - ACTIONS(3853), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3857), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3859), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2549), 3, + ACTIONS(2724), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2547), 38, + ACTIONS(2722), 37, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163495,7 +165424,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -163519,21 +165447,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28227] = 5, + [30563] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1620), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(1649), 1, sym_comment, - ACTIONS(3857), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2549), 5, + ACTIONS(2724), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2547), 40, + ACTIONS(2722), 39, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163548,7 +165478,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -163574,47 +165503,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28287] = 16, + [30625] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3861), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3869), 1, + ACTIONS(3863), 1, anon_sym_bit_DASHand2, - ACTIONS(3871), 1, + ACTIONS(3865), 1, anon_sym_bit_DASHxor2, - ACTIONS(3873), 1, + ACTIONS(3867), 1, anon_sym_bit_DASHor2, - STATE(1621), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(1650), 1, sym_comment, - ACTIONS(3849), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3853), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3857), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3859), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3863), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3855), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3867), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3865), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163623,7 +165554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2547), 16, + ACTIONS(2722), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163636,53 +165567,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [28369] = 17, + [30709] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3861), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3869), 1, + ACTIONS(3863), 1, anon_sym_bit_DASHand2, - ACTIONS(3871), 1, + ACTIONS(3865), 1, anon_sym_bit_DASHxor2, - ACTIONS(3873), 1, + ACTIONS(3867), 1, anon_sym_bit_DASHor2, - ACTIONS(3875), 1, + ACTIONS(3869), 1, anon_sym_and2, - STATE(1622), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(1651), 1, sym_comment, - ACTIONS(3849), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3853), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3857), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3859), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3863), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3855), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3867), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3865), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163691,7 +165623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2547), 15, + ACTIONS(2722), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163704,54 +165636,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [28453] = 18, + [30795] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3861), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3869), 1, + ACTIONS(3863), 1, anon_sym_bit_DASHand2, - ACTIONS(3871), 1, + ACTIONS(3865), 1, anon_sym_bit_DASHxor2, - ACTIONS(3873), 1, + ACTIONS(3867), 1, anon_sym_bit_DASHor2, - ACTIONS(3875), 1, + ACTIONS(3869), 1, anon_sym_and2, - ACTIONS(3877), 1, + ACTIONS(3871), 1, anon_sym_xor2, - STATE(1623), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(1652), 1, sym_comment, - ACTIONS(3849), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3853), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3857), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3859), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3863), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3855), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3867), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3865), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163760,7 +165693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2547), 14, + ACTIONS(2722), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163773,38 +165706,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, anon_sym_or2, - [28539] = 12, + [30883] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3861), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(1624), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(1653), 1, sym_comment, - ACTIONS(3849), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3853), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3857), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3859), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3863), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3855), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3865), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163813,7 +165747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2547), 23, + ACTIONS(2722), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163826,7 +165760,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -163837,28 +165770,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28613] = 9, + [30959] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3861), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(1625), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(1654), 1, sym_comment, - ACTIONS(2549), 2, + ACTIONS(2724), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3853), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3857), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3859), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2547), 37, + ACTIONS(2722), 36, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -163872,7 +165807,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -163896,41 +165830,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28681] = 13, + [31029] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3861), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - STATE(1626), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(1655), 1, sym_comment, - ACTIONS(3849), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3853), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3857), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3859), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3863), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3855), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3867), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3865), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -163939,7 +165875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2547), 19, + ACTIONS(2722), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -163952,50 +165888,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28757] = 14, + [31107] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3861), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3869), 1, + ACTIONS(3863), 1, anon_sym_bit_DASHand2, - STATE(1627), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(1656), 1, sym_comment, - ACTIONS(3849), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3853), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3857), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3859), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3863), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3855), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3867), 4, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3865), 8, + ACTIONS(3859), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -164004,7 +165941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2547), 18, + ACTIONS(2722), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -164017,235 +165954,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [28835] = 15, + [31187] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, + ACTIONS(3845), 1, anon_sym_DASH2, - ACTIONS(3861), 1, + ACTIONS(3855), 1, anon_sym_PLUS2, - ACTIONS(3869), 1, + ACTIONS(3863), 1, anon_sym_bit_DASHand2, - ACTIONS(3871), 1, + ACTIONS(3865), 1, anon_sym_bit_DASHxor2, - STATE(1628), 1, - sym_comment, - ACTIONS(3849), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3853), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3857), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3859), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3863), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3855), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3867), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3865), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2547), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [28915] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2870), 1, - sym__newline, - ACTIONS(3741), 1, - anon_sym_DASH2, - ACTIONS(3749), 1, - anon_sym_PLUS2, - STATE(1544), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(1629), 1, + STATE(1657), 1, sym_comment, - ACTIONS(3743), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3745), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3747), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3763), 2, + ACTIONS(3843), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3769), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3765), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2684), 29, - anon_sym_in, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [28991] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_DASH2, - ACTIONS(3759), 1, - anon_sym_PLUS2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1630), 1, - sym_comment, - ACTIONS(3753), 2, + ACTIONS(3847), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(3851), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(3853), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3779), 2, + ACTIONS(3857), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3775), 4, + ACTIONS(3849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2692), 30, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, + ACTIONS(3861), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [29065] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2878), 1, - aux_sym_cmd_identifier_token2, - STATE(1631), 1, - sym_comment, - ACTIONS(890), 17, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - ACTIONS(793), 29, + ACTIONS(3859), 8, anon_sym_in, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -164253,382 +166008,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_LT2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [29125] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(1632), 1, - sym_comment, - STATE(4263), 1, - sym_block, - STATE(4696), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [29205] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(1633), 1, - sym_comment, - STATE(4606), 1, - sym_block, - STATE(4707), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [29285] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(1634), 1, - sym_comment, - STATE(4500), 1, - sym_block, - STATE(4706), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [29365] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3883), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3885), 1, - sym__newline, - ACTIONS(3887), 1, - anon_sym_RBRACK, - STATE(1635), 1, - sym_comment, - STATE(1709), 1, - aux_sym__types_body_repeat1, - STATE(1773), 1, - aux_sym__command_list_body_repeat1, - STATE(2094), 1, - sym__val_number_decimal, - STATE(4489), 1, - sym__command_name, - STATE(4739), 1, - sym_cmd_identifier, - STATE(4740), 1, - sym_val_string, - STATE(5135), 1, - sym__command_list_body, - ACTIONS(3639), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3879), 2, - anon_sym_export, - anon_sym_in, - STATE(3638), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3881), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [29457] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(1636), 1, - sym_comment, - STATE(4516), 1, - sym_block, - STATE(4665), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [29537] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2870), 1, + ACTIONS(2722), 16, sym__newline, - ACTIONS(3741), 1, - anon_sym_DASH2, - ACTIONS(3749), 1, - anon_sym_PLUS2, - STATE(1545), 1, - aux_sym__repeat_newline, - STATE(1637), 1, - sym_comment, - ACTIONS(2686), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3743), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3745), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3747), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3769), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2684), 33, - anon_sym_in, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164643,51 +166024,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29611] = 11, + [31269] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(3875), 1, anon_sym_DASH2, - ACTIONS(3759), 1, + ACTIONS(3885), 1, anon_sym_PLUS2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1638), 1, + STATE(1658), 1, sym_comment, - ACTIONS(2694), 2, + ACTIONS(3873), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3753), 2, + ACTIONS(3877), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(3881), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(3883), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3779), 2, + ACTIONS(3887), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2692), 34, + ACTIONS(3879), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2509), 31, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -164701,6 +166068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -164711,10 +166079,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -164722,30 +166086,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29683] = 9, + [31341] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2870), 1, - sym__newline, - STATE(1546), 1, - aux_sym__repeat_newline, - STATE(1639), 1, + ACTIONS(3875), 1, + anon_sym_DASH2, + ACTIONS(3885), 1, + anon_sym_PLUS2, + STATE(1659), 1, sym_comment, - ACTIONS(3743), 2, + ACTIONS(2511), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3877), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3745), 2, + ACTIONS(3881), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3747), 2, + ACTIONS(3883), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2686), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2684), 36, + ACTIONS(3887), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2509), 35, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164757,7 +166124,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_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -164776,32 +166143,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29751] = 8, + [31411] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1640), 1, + STATE(1660), 1, sym_comment, - ACTIONS(3753), 2, + ACTIONS(3877), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(3881), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(3883), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2694), 3, + ACTIONS(2511), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2692), 37, + ACTIONS(2509), 38, anon_sym_in, sym__newline, anon_sym_SEMI, @@ -164816,6 +166179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -164839,26 +166203,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29817] = 7, + [31475] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2870), 1, - sym__newline, - STATE(1547), 1, - aux_sym__repeat_newline, - STATE(1641), 1, + STATE(1661), 1, sym_comment, - ACTIONS(3745), 2, + ACTIONS(3881), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2686), 5, + ACTIONS(2511), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2684), 38, + ACTIONS(2509), 40, anon_sym_in, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -164871,6 +166232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -164896,600 +166258,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29881] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(1642), 1, - sym_comment, - STATE(4207), 1, - sym_block, - STATE(4764), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [29961] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(1643), 1, - sym_comment, - STATE(4208), 1, - sym_block, - STATE(4765), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [30041] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(1644), 1, - sym_comment, - STATE(4219), 1, - sym_block, - STATE(4779), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [30121] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(1645), 1, - sym_comment, - STATE(4220), 1, - sym_block, - STATE(4780), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [30201] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(1646), 1, - sym_comment, - STATE(4221), 1, - sym_block, - STATE(4782), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [30281] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(1647), 1, - sym_comment, - STATE(4222), 1, - sym_block, - STATE(4783), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [30361] = 21, + [31535] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3883), 1, - aux_sym_cmd_identifier_token1, + ACTIONS(3875), 1, + anon_sym_DASH2, ACTIONS(3885), 1, - sym__newline, - ACTIONS(3889), 1, - anon_sym_RBRACK, - STATE(1648), 1, - sym_comment, - STATE(1709), 1, - aux_sym__types_body_repeat1, - STATE(1773), 1, - aux_sym__command_list_body_repeat1, - STATE(2094), 1, - sym__val_number_decimal, - STATE(4489), 1, - sym__command_name, - STATE(4739), 1, - sym_cmd_identifier, - STATE(4740), 1, - sym_val_string, - STATE(4993), 1, - sym__command_list_body, - ACTIONS(3639), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3879), 2, - anon_sym_export, - anon_sym_in, - STATE(3638), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3881), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [30453] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(1649), 1, - sym_comment, - STATE(4598), 1, - sym_block, - STATE(4712), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [30533] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1650), 1, + anon_sym_PLUS2, + ACTIONS(3893), 1, + anon_sym_bit_DASHand2, + ACTIONS(3895), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3897), 1, + anon_sym_bit_DASHor2, + STATE(1662), 1, sym_comment, - ACTIONS(3755), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2694), 5, + ACTIONS(3873), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3877), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2692), 39, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, + ACTIONS(3881), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3883), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3887), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3879), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(3891), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [30595] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1651), 1, - sym_comment, - ACTIONS(2620), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(3891), 13, + ACTIONS(3889), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2509), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165503,81 +166321,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(2618), 29, - anon_sym_in, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [30655] = 18, + [31617] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2870), 1, - sym__newline, - ACTIONS(3741), 1, + ACTIONS(3875), 1, anon_sym_DASH2, - ACTIONS(3749), 1, + ACTIONS(3885), 1, anon_sym_PLUS2, - ACTIONS(3781), 1, + ACTIONS(3893), 1, anon_sym_bit_DASHand2, - ACTIONS(3785), 1, + ACTIONS(3895), 1, anon_sym_bit_DASHxor2, - ACTIONS(3789), 1, + ACTIONS(3897), 1, anon_sym_bit_DASHor2, - STATE(1548), 1, - aux_sym__repeat_newline, - STATE(1652), 1, + ACTIONS(3899), 1, + anon_sym_and2, + STATE(1663), 1, sym_comment, - ACTIONS(3743), 2, + ACTIONS(3873), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3877), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3745), 2, + ACTIONS(3881), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3747), 2, + ACTIONS(3883), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3763), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3769), 2, + ACTIONS(3887), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3765), 4, + ACTIONS(3879), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3767), 4, + ACTIONS(3891), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3761), 8, + ACTIONS(3889), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165586,7 +166375,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2684), 14, + ACTIONS(2509), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -165598,52 +166388,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, + anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [30741] = 17, + [31701] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(3875), 1, anon_sym_DASH2, - ACTIONS(3759), 1, + ACTIONS(3885), 1, anon_sym_PLUS2, - ACTIONS(3783), 1, + ACTIONS(3893), 1, anon_sym_bit_DASHand2, - ACTIONS(3787), 1, + ACTIONS(3895), 1, anon_sym_bit_DASHxor2, - ACTIONS(3811), 1, + ACTIONS(3897), 1, anon_sym_bit_DASHor2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1653), 1, + ACTIONS(3899), 1, + anon_sym_and2, + ACTIONS(3901), 1, + anon_sym_xor2, + STATE(1664), 1, sym_comment, - ACTIONS(3753), 2, + ACTIONS(3873), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3877), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(3881), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(3883), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3779), 2, + ACTIONS(3887), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3775), 4, + ACTIONS(3879), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3777), 4, + ACTIONS(3891), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3771), 8, + ACTIONS(3889), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -165652,7 +166444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2692), 15, + ACTIONS(2509), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165665,88 +166457,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, + anon_sym_RBRACE, anon_sym_or2, - [30825] = 20, - ACTIONS(103), 1, + [31787] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2662), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2664), 1, - anon_sym_COLON2, - ACTIONS(3631), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3894), 1, - anon_sym_DASH_DASH, - STATE(1654), 1, + ACTIONS(3875), 1, + anon_sym_DASH2, + ACTIONS(3885), 1, + anon_sym_PLUS2, + STATE(1665), 1, sym_comment, - STATE(1704), 1, - aux_sym_decl_def_repeat1, - STATE(2106), 1, - sym__val_number_decimal, - STATE(2205), 1, - sym_long_flag, - STATE(3568), 1, - sym_val_string, - STATE(3611), 1, - sym_cmd_identifier, - STATE(3744), 1, - sym__command_name, - ACTIONS(3896), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3898), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2243), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3627), 25, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + ACTIONS(3873), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3877), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3881), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3883), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3887), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3879), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3889), 8, anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [30915] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2878), 1, - aux_sym_cmd_identifier_token2, - STATE(1655), 1, - sym_comment, - ACTIONS(2325), 17, - ts_builtin_sym_end, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2509), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165758,50 +166509,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_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - ACTIONS(2327), 29, - anon_sym_in, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_LT2, + anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_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, - [30975] = 5, - ACTIONS(103), 1, + [31861] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2878), 1, - aux_sym_cmd_identifier_token2, - STATE(1656), 1, + ACTIONS(3875), 1, + anon_sym_DASH2, + ACTIONS(3885), 1, + anon_sym_PLUS2, + STATE(1666), 1, sym_comment, - ACTIONS(2562), 17, - ts_builtin_sym_end, + ACTIONS(2511), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3877), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3881), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3883), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2509), 37, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -165813,16 +166555,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_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - ACTIONS(2564), 29, - anon_sym_in, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -165833,263 +166567,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_LT2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_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, - [31035] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(1657), 1, - sym_comment, - STATE(4270), 1, - sym_block, - STATE(4658), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [31115] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(1658), 1, - sym_comment, - STATE(4271), 1, - sym_block, - STATE(4682), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [31195] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(1659), 1, - sym_comment, - STATE(4283), 1, - sym_block, - STATE(4692), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [31275] = 19, + [31929] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2870), 1, - sym__newline, - ACTIONS(3741), 1, - anon_sym_DASH2, - ACTIONS(3749), 1, - anon_sym_PLUS2, - ACTIONS(3781), 1, - anon_sym_bit_DASHand2, - ACTIONS(3785), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3789), 1, - anon_sym_bit_DASHor2, - ACTIONS(3805), 1, - anon_sym_and2, - STATE(1549), 1, - aux_sym__repeat_newline, - STATE(1660), 1, + ACTIONS(3875), 1, + anon_sym_DASH2, + ACTIONS(3885), 1, + anon_sym_PLUS2, + STATE(1667), 1, sym_comment, - ACTIONS(3743), 2, + ACTIONS(3873), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3877), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3745), 2, + ACTIONS(3881), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3747), 2, + ACTIONS(3883), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3763), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3769), 2, + ACTIONS(3887), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3765), 4, + ACTIONS(3879), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3767), 4, + ACTIONS(3891), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3761), 8, + ACTIONS(3889), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166098,7 +166623,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2684), 13, + ACTIONS(2509), 19, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -166110,53 +166636,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [31363] = 18, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [32005] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3751), 1, + ACTIONS(3875), 1, anon_sym_DASH2, - ACTIONS(3759), 1, + ACTIONS(3885), 1, anon_sym_PLUS2, - ACTIONS(3783), 1, + ACTIONS(3893), 1, anon_sym_bit_DASHand2, - ACTIONS(3787), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3811), 1, - anon_sym_bit_DASHor2, - ACTIONS(3813), 1, - anon_sym_and2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1661), 1, + STATE(1668), 1, sym_comment, - ACTIONS(3753), 2, + ACTIONS(3873), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3877), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(3881), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(3883), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3779), 2, + ACTIONS(3887), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3775), 4, + ACTIONS(3879), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3777), 4, + ACTIONS(3891), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3771), 8, + ACTIONS(3889), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166165,7 +166688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2692), 14, + ACTIONS(2509), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166178,57 +166701,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [31449] = 20, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [32083] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(3741), 1, + ACTIONS(3875), 1, anon_sym_DASH2, - ACTIONS(3749), 1, + ACTIONS(3885), 1, anon_sym_PLUS2, - ACTIONS(3781), 1, + ACTIONS(3893), 1, anon_sym_bit_DASHand2, - ACTIONS(3785), 1, + ACTIONS(3895), 1, anon_sym_bit_DASHxor2, - ACTIONS(3789), 1, - anon_sym_bit_DASHor2, - ACTIONS(3805), 1, - anon_sym_and2, - ACTIONS(3807), 1, - anon_sym_xor2, - STATE(1550), 1, - aux_sym__repeat_newline, - STATE(1662), 1, + STATE(1669), 1, sym_comment, - ACTIONS(3743), 2, + ACTIONS(3873), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3877), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3745), 2, + ACTIONS(3881), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3747), 2, + ACTIONS(3883), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3763), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3769), 2, + ACTIONS(3887), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3765), 4, + ACTIONS(3879), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3767), 4, + ACTIONS(3891), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3761), 8, + ACTIONS(3889), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -166237,7 +166754,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2684), 12, + ACTIONS(2509), 17, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -166249,120 +166767,99 @@ static const 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, - [31539] = 15, + anon_sym_bit_DASHor2, + [32163] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(1663), 1, + STATE(1670), 1, sym_comment, - STATE(4287), 1, - sym_block, - STATE(4697), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [31619] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_DASH2, - ACTIONS(3759), 1, + ACTIONS(2626), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(3783), 1, - anon_sym_bit_DASHand2, - ACTIONS(3787), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3811), 1, - anon_sym_bit_DASHor2, - ACTIONS(3813), 1, + ACTIONS(3903), 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(2624), 29, + anon_sym_in, + anon_sym_DASH2, anon_sym_and2, - ACTIONS(3815), 1, anon_sym_xor2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1664), 1, - sym_comment, - ACTIONS(3753), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3755), 2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3779), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3775), 4, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [32223] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + STATE(1671), 1, + sym_comment, + ACTIONS(2385), 17, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3777), 4, anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3771), 8, + ACTIONS(2387), 29, anon_sym_in, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -166370,7 +166867,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2692), 13, + anon_sym_LT2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [32283] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + STATE(1672), 1, + sym_comment, + ACTIONS(2591), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -166382,107 +166902,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_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + ACTIONS(2593), 29, + anon_sym_in, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [31707] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(1665), 1, - sym_comment, - STATE(4425), 1, - sym_block, - STATE(4710), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [31787] = 15, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_LT2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [32343] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3791), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3793), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3799), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3801), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3809), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(1666), 1, + STATE(1673), 1, sym_comment, - STATE(4416), 1, + STATE(4558), 1, sym_block, - STATE(4717), 1, + STATE(4775), 1, sym_returns, - STATE(4927), 1, + STATE(5071), 1, sym__one_type, - STATE(5031), 1, + STATE(5134), 1, sym__multiple_types, - STATE(5154), 1, + STATE(5251), 1, sym__type_annotation, - ACTIONS(3797), 2, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4316), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3795), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -166514,104 +167002,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [31867] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2870), 1, - sym__newline, - ACTIONS(3741), 1, - anon_sym_DASH2, - ACTIONS(3749), 1, - anon_sym_PLUS2, - STATE(1551), 1, - aux_sym__repeat_newline, - STATE(1667), 1, - sym_comment, - ACTIONS(3743), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3745), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3747), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3763), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3769), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3765), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3761), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2684), 21, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [31945] = 15, + [32423] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3791), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3793), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3799), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3801), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3809), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(1668), 1, + STATE(1674), 1, sym_comment, - STATE(4463), 1, + STATE(4560), 1, sym_block, - STATE(4718), 1, + STATE(4796), 1, sym_returns, - STATE(4927), 1, + STATE(5071), 1, sym__one_type, - STATE(5031), 1, + STATE(5134), 1, sym__multiple_types, - STATE(5154), 1, + STATE(5251), 1, sym__type_annotation, - ACTIONS(3797), 2, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4316), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3795), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -166643,40 +167067,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [32025] = 15, + [32503] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3791), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3793), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3799), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3801), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3809), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(1669), 1, + STATE(1675), 1, sym_comment, - STATE(4505), 1, + STATE(4561), 1, sym_block, - STATE(4807), 1, + STATE(4801), 1, sym_returns, - STATE(4927), 1, + STATE(5071), 1, sym__one_type, - STATE(5031), 1, + STATE(5134), 1, sym__multiple_types, - STATE(5154), 1, + STATE(5251), 1, sym__type_annotation, - ACTIONS(3797), 2, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4316), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3795), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -166708,40 +167132,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [32105] = 15, + [32583] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3791), 1, + ACTIONS(3751), 1, anon_sym_COLON, - ACTIONS(3793), 1, + ACTIONS(3753), 1, anon_sym_LBRACK, - ACTIONS(3799), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3801), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3809), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(1670), 1, + STATE(1676), 1, sym_comment, - STATE(4608), 1, + STATE(4403), 1, sym_block, - STATE(4721), 1, + STATE(4826), 1, sym_returns, - STATE(4927), 1, + STATE(5071), 1, sym__one_type, - STATE(5031), 1, + STATE(5134), 1, sym__multiple_types, - STATE(5154), 1, + STATE(5251), 1, sym__type_annotation, - ACTIONS(3797), 2, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4316), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3795), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -166773,51 +167197,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [32185] = 18, - ACTIONS(3), 1, + [32663] = 19, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3631), 1, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3900), 1, - anon_sym_LBRACK, - ACTIONS(3902), 1, - anon_sym_DOLLAR, - ACTIONS(3904), 1, - anon_sym_LBRACE, - STATE(1671), 1, + ACTIONS(3781), 1, + anon_sym_DASH_DASH, + STATE(1677), 1, sym_comment, - STATE(2106), 1, + STATE(1711), 1, + aux_sym_decl_def_repeat1, + STATE(1996), 1, sym__val_number_decimal, - ACTIONS(3627), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3639), 2, + STATE(2167), 1, + sym_long_flag, + STATE(3562), 1, + sym_val_string, + STATE(3616), 1, + sym_cmd_identifier, + STATE(3729), 1, + sym__command_name, + ACTIONS(3783), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, + ACTIONS(3785), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(3196), 2, - sym_cmd_identifier, - sym_val_string, - STATE(3133), 3, - sym_val_variable, - sym_val_list, - sym_val_record, - STATE(2243), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3629), 23, + ACTIONS(3631), 25, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -166835,540 +167258,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [32271] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3751), 1, - anon_sym_DASH2, - ACTIONS(3759), 1, - anon_sym_PLUS2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1672), 1, - sym_comment, - ACTIONS(3753), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3755), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3773), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3779), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3775), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3771), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2692), 22, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [32347] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(1673), 1, - sym_comment, - STATE(4590), 1, - sym_block, - STATE(4691), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [32427] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(1674), 1, - sym_comment, - STATE(4601), 1, - sym_block, - STATE(4716), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [32507] = 13, + [32750] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(3741), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3749), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - STATE(1630), 1, - aux_sym__repeat_newline, - STATE(1675), 1, - sym_comment, - ACTIONS(3743), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3745), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3747), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3763), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3769), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3765), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2666), 29, - anon_sym_in, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [32583] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(1676), 1, - sym_comment, - STATE(4182), 1, - sym_block, - STATE(4664), 1, - sym_returns, - STATE(4927), 1, - sym__one_type, - STATE(5031), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [32663] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1677), 1, + STATE(1678), 1, sym_comment, ACTIONS(3906), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3908), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3910), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2549), 3, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2547), 37, - ts_builtin_sym_end, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [32726] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1598), 1, - sym__unquoted_pattern, - ACTIONS(3912), 1, - anon_sym_DOT, - STATE(1678), 1, - sym_comment, - STATE(1871), 1, - sym__immediate_decimal, - ACTIONS(3914), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3916), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1964), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1586), 6, - anon_sym_GT2, - anon_sym_DASH2, + ACTIONS(3910), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1582), 29, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(3916), 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, - [32799] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1598), 1, - sym__unquoted_pattern, - STATE(1679), 1, - sym_comment, - STATE(1958), 1, - sym__immediate_decimal, - ACTIONS(3918), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, ACTIONS(3920), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(809), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1586), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1582), 30, - anon_sym_in, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [32870] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3924), 1, - anon_sym_DASH2, - ACTIONS(3928), 1, - anon_sym_PLUS2, - STATE(1680), 1, - sym_comment, - ACTIONS(3906), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3908), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3910), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3922), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3930), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3926), 4, + ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2547), 30, + ACTIONS(2509), 30, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -167392,101 +167318,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [32941] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3932), 1, - sym__newline, - ACTIONS(3934), 1, - anon_sym_RBRACK, - STATE(1681), 1, - sym_comment, - STATE(1731), 1, - aux_sym__types_body_repeat1, - STATE(1807), 1, - aux_sym__types_body_repeat3, - STATE(4452), 1, - sym__one_type, - STATE(4979), 1, - sym__type_annotation, - STATE(5160), 1, - sym__types_body, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [33018] = 10, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [32821] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3928), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - STATE(1682), 1, + STATE(1679), 1, sym_comment, - ACTIONS(2549), 2, + ACTIONS(2511), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3906), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3908), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3910), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3930), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2547), 34, + ACTIONS(2509), 34, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -167521,21 +167384,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33087] = 5, + [32890] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1683), 1, + STATE(1680), 1, sym_comment, - ACTIONS(3908), 2, + ACTIONS(3910), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2549), 5, + ACTIONS(3916), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2511), 3, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2547), 39, + ACTIONS(2509), 37, ts_builtin_sym_end, anon_sym_in, sym__newline, @@ -167568,64 +167435,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33146] = 16, + [32953] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, - anon_sym_DASH2, - ACTIONS(3928), 1, - anon_sym_PLUS2, - ACTIONS(3940), 1, - anon_sym_bit_DASHand2, - ACTIONS(3942), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3944), 1, - anon_sym_bit_DASHor2, - STATE(1684), 1, + STATE(1681), 1, sym_comment, - ACTIONS(3906), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3908), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3910), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3922), 2, + ACTIONS(2511), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(3930), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3926), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3938), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3936), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2547), 15, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2509), 39, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -167637,42 +167468,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_or2, - [33227] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1641), 1, - sym__unquoted_pattern, - STATE(1685), 1, - sym_comment, - STATE(1944), 1, - sym__immediate_decimal, - ACTIONS(3918), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3920), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(846), 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(1631), 30, - anon_sym_in, - sym__newline, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -167691,8 +167487,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -167700,49 +167494,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33298] = 17, + [33012] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3928), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - ACTIONS(3940), 1, + ACTIONS(3926), 1, anon_sym_bit_DASHand2, - ACTIONS(3942), 1, + ACTIONS(3928), 1, anon_sym_bit_DASHxor2, - ACTIONS(3944), 1, + ACTIONS(3930), 1, anon_sym_bit_DASHor2, - ACTIONS(3946), 1, - anon_sym_and2, - STATE(1686), 1, + STATE(1682), 1, sym_comment, ACTIONS(3906), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3908), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3910), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3922), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3930), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3926), 4, + ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3938), 4, + ACTIONS(3924), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3936), 8, + ACTIONS(3922), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167751,7 +167543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2547), 14, + ACTIONS(2509), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -167764,100 +167556,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_and2, anon_sym_xor2, anon_sym_or2, - [33381] = 19, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2533), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3631), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3894), 1, - anon_sym_DASH_DASH, - STATE(1687), 1, - sym_comment, - STATE(1704), 1, - aux_sym_decl_def_repeat1, - STATE(2106), 1, - sym__val_number_decimal, - STATE(2205), 1, - sym_long_flag, - STATE(3568), 1, - sym_val_string, - STATE(3611), 1, - sym_cmd_identifier, - STATE(3744), 1, - sym__command_name, - ACTIONS(3896), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3898), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2243), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3627), 25, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [33468] = 9, + [33093] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3928), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - STATE(1688), 1, + ACTIONS(3926), 1, + anon_sym_bit_DASHand2, + ACTIONS(3928), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3930), 1, + anon_sym_bit_DASHor2, + ACTIONS(3932), 1, + anon_sym_and2, + STATE(1683), 1, sym_comment, - ACTIONS(2549), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3906), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3908), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3910), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2547), 36, - ts_builtin_sym_end, + ACTIONS(3920), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3912), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3924), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3922), 8, anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2509), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -167869,64 +167623,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_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [33535] = 13, + [33176] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3928), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - STATE(1689), 1, + ACTIONS(3926), 1, + anon_sym_bit_DASHand2, + ACTIONS(3928), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3930), 1, + anon_sym_bit_DASHor2, + ACTIONS(3932), 1, + anon_sym_and2, + ACTIONS(3934), 1, + anon_sym_xor2, + STATE(1684), 1, sym_comment, ACTIONS(3906), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3908), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3910), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3922), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3930), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3926), 4, + ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3938), 4, + ACTIONS(3924), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3936), 8, + ACTIONS(3922), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -167935,7 +167678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2547), 18, + ACTIONS(2509), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -167948,117 +167691,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [33610] = 19, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2878), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3631), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3894), 1, - anon_sym_DASH_DASH, - STATE(1690), 1, - sym_comment, - STATE(1697), 1, - aux_sym_decl_def_repeat1, - STATE(2106), 1, - sym__val_number_decimal, - STATE(2205), 1, - sym_long_flag, - STATE(3568), 1, - sym_val_string, - STATE(3611), 1, - sym_cmd_identifier, - STATE(3726), 1, - sym__command_name, - ACTIONS(3896), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3898), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2243), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3627), 25, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [33697] = 14, + [33261] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3928), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - ACTIONS(3940), 1, - anon_sym_bit_DASHand2, - STATE(1691), 1, + STATE(1685), 1, sym_comment, ACTIONS(3906), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3908), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3910), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3922), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3930), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3926), 4, + ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3938), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3936), 8, + ACTIONS(3922), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -168067,7 +167730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2547), 17, + ACTIONS(2509), 22, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -168083,21 +167746,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33774] = 5, + [33334] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1692), 1, + ACTIONS(3908), 1, + anon_sym_DASH2, + ACTIONS(3918), 1, + anon_sym_PLUS2, + STATE(1686), 1, sym_comment, - ACTIONS(2620), 5, + ACTIONS(2511), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(3910), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(3891), 12, + ACTIONS(3914), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3916), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2509), 36, ts_builtin_sym_end, + anon_sym_in, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -168109,9 +167788,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2618), 29, - anon_sym_in, - anon_sym_DASH2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -168130,60 +167806,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [33833] = 18, + [33401] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3928), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - ACTIONS(3940), 1, - anon_sym_bit_DASHand2, - ACTIONS(3942), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3944), 1, - anon_sym_bit_DASHor2, - ACTIONS(3946), 1, - anon_sym_and2, - ACTIONS(3948), 1, - anon_sym_xor2, - STATE(1693), 1, + STATE(1687), 1, sym_comment, ACTIONS(3906), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3908), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3910), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3922), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3930), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3926), 4, + ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3938), 4, + ACTIONS(3924), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3936), 8, + ACTIONS(3922), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -168192,7 +167854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2547), 13, + ACTIONS(2509), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -168205,46 +167867,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [33918] = 15, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [33476] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3928), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - ACTIONS(3940), 1, + ACTIONS(3926), 1, anon_sym_bit_DASHand2, - ACTIONS(3942), 1, - anon_sym_bit_DASHxor2, - STATE(1694), 1, + STATE(1688), 1, sym_comment, ACTIONS(3906), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3908), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3910), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3922), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3930), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3926), 4, + ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3938), 4, + ACTIONS(3924), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3936), 8, + ACTIONS(3922), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -168253,7 +167918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2547), 16, + ACTIONS(2509), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -168269,37 +167934,47 @@ 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, - [33997] = 12, + [33553] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(3928), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - STATE(1695), 1, + ACTIONS(3926), 1, + anon_sym_bit_DASHand2, + ACTIONS(3928), 1, + anon_sym_bit_DASHxor2, + STATE(1689), 1, sym_comment, ACTIONS(3906), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3908), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3910), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3922), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3930), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3926), 4, + ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3936), 8, + ACTIONS(3924), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3922), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -168308,7 +167983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2547), 22, + ACTIONS(2509), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -168324,45 +167999,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHor2, + [33632] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1586), 1, + anon_sym_DOLLAR, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1598), 1, + sym__unquoted_pattern, + STATE(1690), 1, + sym_comment, + STATE(1925), 1, + sym__immediate_decimal, + ACTIONS(3936), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3938), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(829), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1588), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1584), 30, + anon_sym_in, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34070] = 11, + [33703] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1598), 1, + ACTIONS(1641), 1, sym__unquoted_pattern, - STATE(1696), 1, + STATE(1691), 1, sym_comment, - STATE(1996), 1, + STATE(1930), 1, sym__immediate_decimal, - ACTIONS(3950), 2, + ACTIONS(3936), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3952), 2, + ACTIONS(3938), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(809), 2, + STATE(871), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1586), 6, + ACTIONS(1635), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1582), 29, + ACTIONS(1633), 30, anon_sym_in, - anon_sym_EQ_GT, + sym__newline, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -168390,50 +168120,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34140] = 19, + [33774] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3940), 1, + sym__newline, + ACTIONS(3942), 1, + anon_sym_RBRACK, + STATE(1692), 1, + sym_comment, + STATE(1735), 1, + aux_sym__types_body_repeat1, + STATE(1791), 1, + aux_sym__types_body_repeat3, + STATE(4452), 1, + sym__one_type, + STATE(4972), 1, + sym__type_annotation, + STATE(5114), 1, + sym__types_body, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [33851] = 19, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3631), 1, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3954), 1, + ACTIONS(3781), 1, anon_sym_DASH_DASH, - STATE(1697), 1, + STATE(1693), 1, sym_comment, - STATE(2074), 1, + STATE(1701), 1, aux_sym_decl_def_repeat1, - STATE(2106), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(2205), 1, + STATE(2167), 1, sym_long_flag, - STATE(3568), 1, + STATE(3562), 1, sym_val_string, - STATE(3611), 1, + STATE(3616), 1, sym_cmd_identifier, - STATE(3708), 1, + STATE(3713), 1, sym__command_name, - ACTIONS(3627), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3639), 2, + ACTIONS(3783), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, + ACTIONS(3785), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2243), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3629), 23, + ACTIONS(3631), 25, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168451,42 +168244,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34226] = 11, + [33938] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1641), 1, + ACTIONS(1598), 1, sym__unquoted_pattern, - STATE(1698), 1, + ACTIONS(3944), 1, + anon_sym_DOT, + STATE(1694), 1, sym_comment, - STATE(2002), 1, + STATE(1875), 1, sym__immediate_decimal, - ACTIONS(3950), 2, + ACTIONS(3946), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3952), 2, + ACTIONS(3948), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(846), 2, + STATE(1964), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1633), 6, + ACTIONS(1588), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1631), 29, + ACTIONS(1584), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -168516,29 +168312,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34296] = 6, + [34011] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3956), 1, - anon_sym_DOT, - ACTIONS(3958), 1, - aux_sym__immediate_decimal_token5, - STATE(1699), 1, + STATE(1695), 1, sym_comment, - ACTIONS(739), 8, + ACTIONS(2626), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(741), 35, - anon_sym_in, + ACTIONS(3903), 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(2624), 29, + anon_sym_in, anon_sym_DASH2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -168557,7 +168357,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -168567,53 +168366,50 @@ 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, - [34356] = 19, + [34070] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3631), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3954), 1, + ACTIONS(3950), 1, anon_sym_DASH_DASH, - STATE(1700), 1, + STATE(1696), 1, sym_comment, - STATE(1711), 1, + STATE(1703), 1, aux_sym_decl_def_repeat1, - STATE(2106), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(2205), 1, + STATE(2167), 1, sym_long_flag, - STATE(3568), 1, + STATE(3562), 1, sym_val_string, - STATE(3611), 1, + STATE(3616), 1, sym_cmd_identifier, - STATE(3704), 1, + STATE(3738), 1, sym__command_name, - ACTIONS(3627), 2, + ACTIONS(3631), 2, anon_sym_export, anon_sym_in, - ACTIONS(3639), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2243), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3629), 23, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168637,36 +168433,90 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34442] = 11, + [34156] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(3952), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3954), 1, + aux_sym__immediate_decimal_token5, + STATE(1697), 1, + sym_comment, + ACTIONS(747), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(749), 35, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [34216] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1611), 1, + ACTIONS(1616), 1, anon_sym_DOT, - STATE(1701), 1, + STATE(1698), 1, sym_comment, - STATE(1963), 1, + STATE(1958), 1, sym__immediate_decimal, - ACTIONS(3914), 2, + ACTIONS(3946), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3916), 2, + ACTIONS(3948), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1962), 2, + STATE(1964), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1609), 6, + ACTIONS(1588), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1607), 29, + ACTIONS(1584), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -168696,50 +168546,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [34512] = 19, + [34286] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3631), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3954), 1, + ACTIONS(3950), 1, anon_sym_DASH_DASH, - STATE(1702), 1, + STATE(1699), 1, sym_comment, - STATE(1708), 1, - aux_sym_decl_def_repeat1, - STATE(2106), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(2205), 1, + STATE(2087), 1, + aux_sym_decl_def_repeat1, + STATE(2167), 1, sym_long_flag, - STATE(3568), 1, + STATE(3562), 1, sym_val_string, - STATE(3611), 1, + STATE(3616), 1, sym_cmd_identifier, - STATE(3706), 1, + STATE(3762), 1, sym__command_name, - ACTIONS(3627), 2, + ACTIONS(3631), 2, anon_sym_export, anon_sym_in, - ACTIONS(3639), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2243), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3629), 23, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168763,50 +168613,117 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34598] = 19, + [34372] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1412), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1414), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1416), 1, anon_sym_BQUOTE, + ACTIONS(1426), 1, + sym_raw_string_begin, + ACTIONS(3769), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3771), 1, + sym__newline, + STATE(1700), 1, + sym_comment, + STATE(1751), 1, + aux_sym__command_list_body_repeat1, + STATE(2107), 1, + sym__val_number_decimal, + STATE(2128), 1, + aux_sym__types_body_repeat1, + STATE(4612), 1, + sym__command_name, + STATE(4736), 1, + sym_cmd_identifier, + STATE(4738), 1, + sym_val_string, + ACTIONS(3643), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3765), 2, + anon_sym_export, + anon_sym_in, + STATE(3649), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3767), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [34458] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1790), 1, + anon_sym_DQUOTE, ACTIONS(1792), 1, + anon_sym_SQUOTE, + ACTIONS(1794), 1, + anon_sym_BQUOTE, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3631), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3954), 1, + ACTIONS(3950), 1, anon_sym_DASH_DASH, - STATE(1703), 1, + STATE(1701), 1, sym_comment, - STATE(1705), 1, - aux_sym_decl_def_repeat1, - STATE(2106), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(2205), 1, + STATE(2087), 1, + aux_sym_decl_def_repeat1, + STATE(2167), 1, sym_long_flag, - STATE(3568), 1, + STATE(3562), 1, sym_val_string, - STATE(3611), 1, + STATE(3616), 1, sym_cmd_identifier, - STATE(3746), 1, + STATE(3686), 1, sym__command_name, - ACTIONS(3627), 2, + ACTIONS(3631), 2, anon_sym_export, anon_sym_in, - ACTIONS(3639), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2243), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3629), 23, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168830,50 +168747,117 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34684] = 19, + [34544] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3631), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3954), 1, + ACTIONS(3950), 1, anon_sym_DASH_DASH, - STATE(1704), 1, + STATE(1702), 1, sym_comment, - STATE(2074), 1, + STATE(1996), 1, + sym__val_number_decimal, + STATE(2087), 1, aux_sym_decl_def_repeat1, - STATE(2106), 1, + STATE(2167), 1, + sym_long_flag, + STATE(3562), 1, + sym_val_string, + STATE(3616), 1, + sym_cmd_identifier, + STATE(3749), 1, + sym__command_name, + ACTIONS(3631), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3643), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2247), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3633), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [34630] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1790), 1, + anon_sym_DQUOTE, + ACTIONS(1792), 1, + anon_sym_SQUOTE, + ACTIONS(1794), 1, + anon_sym_BQUOTE, + ACTIONS(1796), 1, + sym_raw_string_begin, + ACTIONS(3635), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(3950), 1, + anon_sym_DASH_DASH, + STATE(1703), 1, + sym_comment, + STATE(1996), 1, sym__val_number_decimal, - STATE(2205), 1, + STATE(2087), 1, + aux_sym_decl_def_repeat1, + STATE(2167), 1, sym_long_flag, - STATE(3568), 1, + STATE(3562), 1, sym_val_string, - STATE(3611), 1, + STATE(3616), 1, sym_cmd_identifier, - STATE(3748), 1, + STATE(3742), 1, sym__command_name, - ACTIONS(3627), 2, + ACTIONS(3631), 2, anon_sym_export, anon_sym_in, - ACTIONS(3639), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2243), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3629), 23, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168897,50 +168881,222 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34770] = 19, + [34716] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3956), 1, + anon_sym_DOT, + ACTIONS(3958), 1, + aux_sym__immediate_decimal_token5, + STATE(1704), 1, + sym_comment, + ACTIONS(739), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(741), 35, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [34776] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1586), 1, + anon_sym_DOLLAR, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1598), 1, + sym__unquoted_pattern, + STATE(1705), 1, + sym_comment, + STATE(1993), 1, + sym__immediate_decimal, + ACTIONS(3960), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3962), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(829), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1588), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1584), 29, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [34846] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1586), 1, + anon_sym_DOLLAR, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1641), 1, + sym__unquoted_pattern, + STATE(1706), 1, + sym_comment, + STATE(2088), 1, + sym__immediate_decimal, + ACTIONS(3960), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3962), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(871), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1635), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1633), 29, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [34916] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3631), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3954), 1, + ACTIONS(3950), 1, anon_sym_DASH_DASH, - STATE(1705), 1, - sym_comment, - STATE(2074), 1, + STATE(1699), 1, aux_sym_decl_def_repeat1, - STATE(2106), 1, + STATE(1707), 1, + sym_comment, + STATE(1996), 1, sym__val_number_decimal, - STATE(2205), 1, + STATE(2167), 1, sym_long_flag, - STATE(3568), 1, + STATE(3562), 1, sym_val_string, - STATE(3611), 1, + STATE(3616), 1, sym_cmd_identifier, - STATE(3751), 1, + STATE(3681), 1, sym__command_name, - ACTIONS(3627), 2, + ACTIONS(3631), 2, anon_sym_export, anon_sym_in, - ACTIONS(3639), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2243), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3629), 23, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -168964,50 +169120,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34856] = 19, + [35002] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3631), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3954), 1, + ACTIONS(3950), 1, anon_sym_DASH_DASH, - STATE(1706), 1, - sym_comment, - STATE(1707), 1, + STATE(1702), 1, aux_sym_decl_def_repeat1, - STATE(2106), 1, + STATE(1708), 1, + sym_comment, + STATE(1996), 1, sym__val_number_decimal, - STATE(2205), 1, + STATE(2167), 1, sym_long_flag, - STATE(3568), 1, + STATE(3562), 1, sym_val_string, - STATE(3611), 1, + STATE(3616), 1, sym_cmd_identifier, - STATE(3753), 1, + STATE(3684), 1, sym__command_name, - ACTIONS(3627), 2, + ACTIONS(3631), 2, anon_sym_export, anon_sym_in, - ACTIONS(3639), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2243), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3629), 23, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169031,50 +169187,109 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [34942] = 19, + [35088] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1586), 1, + anon_sym_DOLLAR, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1627), 1, + anon_sym_DOT, + STATE(1709), 1, + sym_comment, + STATE(1963), 1, + sym__immediate_decimal, + ACTIONS(3946), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3948), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1962), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1625), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1623), 29, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [35158] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3631), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3954), 1, + ACTIONS(3950), 1, anon_sym_DASH_DASH, - STATE(1707), 1, + STATE(1710), 1, sym_comment, - STATE(2074), 1, + STATE(1712), 1, aux_sym_decl_def_repeat1, - STATE(2106), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(2205), 1, + STATE(2167), 1, sym_long_flag, - STATE(3568), 1, + STATE(3562), 1, sym_val_string, - STATE(3611), 1, + STATE(3616), 1, sym_cmd_identifier, - STATE(3756), 1, + STATE(3784), 1, sym__command_name, - ACTIONS(3627), 2, + ACTIONS(3631), 2, anon_sym_export, anon_sym_in, - ACTIONS(3639), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2243), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3629), 23, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169098,117 +169313,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35028] = 19, + [35244] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3631), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3954), 1, + ACTIONS(3950), 1, anon_sym_DASH_DASH, - STATE(1708), 1, + STATE(1711), 1, sym_comment, - STATE(2074), 1, - aux_sym_decl_def_repeat1, - STATE(2106), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(2205), 1, + STATE(2087), 1, + aux_sym_decl_def_repeat1, + STATE(2167), 1, sym_long_flag, - STATE(3568), 1, + STATE(3562), 1, sym_val_string, - STATE(3611), 1, + STATE(3616), 1, sym_cmd_identifier, - STATE(3775), 1, + STATE(3733), 1, sym__command_name, - ACTIONS(3627), 2, + ACTIONS(3631), 2, anon_sym_export, anon_sym_in, - ACTIONS(3639), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2243), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3629), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [35114] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1416), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(3883), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(3885), 1, - sym__newline, - STATE(1709), 1, - sym_comment, - STATE(1768), 1, - aux_sym__command_list_body_repeat1, - STATE(2094), 1, - sym__val_number_decimal, - STATE(2117), 1, - aux_sym__types_body_repeat1, - STATE(4613), 1, - sym__command_name, - STATE(4739), 1, - sym_cmd_identifier, - STATE(4740), 1, - sym_val_string, - ACTIONS(3639), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3879), 2, - anon_sym_export, - anon_sym_in, - STATE(3638), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3881), 23, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169232,109 +169380,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35200] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1590), 1, - anon_sym_DOT, - STATE(1710), 1, - sym_comment, - STATE(1957), 1, - sym__immediate_decimal, - ACTIONS(3914), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3916), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1964), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1586), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1582), 29, - anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [35270] = 19, + [35330] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3631), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - ACTIONS(3954), 1, + ACTIONS(3950), 1, anon_sym_DASH_DASH, - STATE(1711), 1, + STATE(1712), 1, sym_comment, - STATE(2074), 1, - aux_sym_decl_def_repeat1, - STATE(2106), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(2205), 1, + STATE(2087), 1, + aux_sym_decl_def_repeat1, + STATE(2167), 1, sym_long_flag, - STATE(3568), 1, + STATE(3562), 1, sym_val_string, - STATE(3611), 1, + STATE(3616), 1, sym_cmd_identifier, - STATE(3709), 1, + STATE(3736), 1, sym__command_name, - ACTIONS(3627), 2, + ACTIONS(3631), 2, anon_sym_export, anon_sym_in, - ACTIONS(3639), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2243), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3629), 23, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -169358,78 +169447,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [35356] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3960), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3962), 1, - aux_sym__immediate_decimal_token5, - STATE(1712), 1, - sym_comment, - ACTIONS(747), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(749), 35, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [35416] = 8, + [35416] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3964), 1, - anon_sym_DOT2, + anon_sym_QMARK2, + ACTIONS(3966), 1, + anon_sym_BANG, STATE(1713), 1, sym_comment, - STATE(1740), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1834), 1, - sym_path, - STATE(1856), 1, - sym_cell_path, - ACTIONS(1663), 3, + STATE(1829), 1, + sym__path_suffix, + ACTIONS(1432), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1661), 37, + anon_sym_DOT2, + ACTIONS(1434), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -169467,145 +169501,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [35479] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1756), 1, - anon_sym_LPAREN2, - ACTIONS(1766), 1, - sym__unquoted_pattern, - ACTIONS(3966), 1, - anon_sym_DOT_DOT2, - ACTIONS(3970), 1, - sym_filesize_unit, - ACTIONS(3972), 1, - sym_duration_unit, - STATE(1714), 1, - sym_comment, - STATE(4726), 1, - sym__expr_parenthesized_immediate, - ACTIONS(3968), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(793), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(890), 31, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [35548] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3974), 1, - anon_sym_DOT, - ACTIONS(3976), 1, - aux_sym__immediate_decimal_token5, - STATE(1715), 1, - sym_comment, - ACTIONS(739), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(741), 34, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [35607] = 12, + [35477] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3932), 1, + ACTIONS(3940), 1, sym__newline, - ACTIONS(3982), 1, + ACTIONS(3972), 1, anon_sym_list, - ACTIONS(3984), 1, + ACTIONS(3974), 1, anon_sym_oneof, - STATE(1716), 1, + STATE(1714), 1, sym_comment, - STATE(1764), 1, + STATE(1754), 1, aux_sym__types_body_repeat1, - STATE(1835), 1, + STATE(1827), 1, aux_sym__composite_argument_body_repeat1, - STATE(4493), 1, + STATE(4456), 1, sym__all_type, - STATE(5247), 1, + STATE(5243), 1, sym__composite_argument_body, - ACTIONS(3980), 2, + ACTIONS(3970), 2, anon_sym_table, anon_sym_record, - STATE(4814), 4, + STATE(4740), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3978), 31, + ACTIONS(3968), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -169637,34 +169560,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [35678] = 10, + [35548] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - STATE(841), 1, + STATE(952), 1, sym__immediate_decimal, - STATE(1717), 1, + STATE(1715), 1, sym_comment, - ACTIONS(3950), 2, + ACTIONS(3960), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3952), 2, + ACTIONS(3962), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(840), 2, + STATE(829), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1645), 6, + ACTIONS(1588), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1643), 29, + ACTIONS(1584), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -169694,93 +169617,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35745] = 10, + [35615] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - STATE(843), 1, - sym__immediate_decimal, - STATE(1718), 1, + ACTIONS(3976), 1, + anon_sym_DOT2, + STATE(1716), 1, sym_comment, - ACTIONS(3950), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3952), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(842), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1649), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1647), 29, + STATE(1763), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1826), 1, + sym_path, + STATE(1871), 1, + sym_cell_path, + ACTIONS(1444), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [35812] = 10, + ACTIONS(1446), 37, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [35678] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1714), 1, anon_sym_LPAREN2, - STATE(845), 1, - sym__immediate_decimal, - STATE(1719), 1, + ACTIONS(1724), 1, + sym__unquoted_pattern, + ACTIONS(3978), 1, + anon_sym_DOT_DOT2, + ACTIONS(3982), 1, + sym_filesize_unit, + ACTIONS(3984), 1, + sym_duration_unit, + STATE(1717), 1, sym_comment, - ACTIONS(3950), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3952), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(844), 2, + STATE(4718), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1653), 6, + ACTIONS(3980), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(866), 5, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1651), 29, + ACTIONS(908), 31, anon_sym_in, - anon_sym_EQ_GT, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -169808,24 +169730,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [35879] = 8, + [35747] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3964), 1, + ACTIONS(3976), 1, anon_sym_DOT2, - STATE(1720), 1, + STATE(1718), 1, sym_comment, - STATE(1740), 1, + STATE(1763), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(1834), 1, + STATE(1826), 1, sym_path, STATE(1863), 1, sym_cell_path, - ACTIONS(1432), 3, + ACTIONS(1649), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1434), 37, + ACTIONS(1647), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -169863,71 +169785,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [35942] = 12, - ACTIONS(3), 1, + [35810] = 17, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3932), 1, - sym__newline, - ACTIONS(3982), 1, - anon_sym_list, - ACTIONS(3984), 1, - anon_sym_oneof, - STATE(1721), 1, + ACTIONS(1790), 1, + anon_sym_DQUOTE, + ACTIONS(1792), 1, + anon_sym_SQUOTE, + ACTIONS(1794), 1, + anon_sym_BQUOTE, + ACTIONS(1796), 1, + sym_raw_string_begin, + ACTIONS(2702), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2704), 1, + anon_sym_COLON2, + ACTIONS(3635), 1, + aux_sym_cmd_identifier_token1, + STATE(1719), 1, sym_comment, - STATE(1764), 1, - aux_sym__types_body_repeat1, - STATE(1835), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4493), 1, - sym__all_type, - STATE(4999), 1, - sym__composite_argument_body, - ACTIONS(3980), 2, - anon_sym_table, - anon_sym_record, - STATE(4814), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3978), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [36013] = 5, + STATE(1996), 1, + sym__val_number_decimal, + STATE(3562), 1, + sym_val_string, + STATE(3616), 1, + sym_cmd_identifier, + STATE(4964), 1, + sym__command_name, + ACTIONS(3783), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3785), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2247), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3631), 25, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [35891] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3958), 1, aux_sym__immediate_decimal_token5, - STATE(1722), 1, + STATE(1720), 1, sym_comment, ACTIONS(739), 8, anon_sym_GT2, @@ -169974,73 +169901,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [36070] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3932), 1, - sym__newline, - ACTIONS(3982), 1, - anon_sym_list, - ACTIONS(3984), 1, - anon_sym_oneof, - STATE(1723), 1, - sym_comment, - STATE(1764), 1, - aux_sym__types_body_repeat1, - STATE(1835), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4493), 1, - sym__all_type, - STATE(4875), 1, - sym__composite_argument_body, - ACTIONS(3980), 2, - anon_sym_table, - anon_sym_record, - STATE(4814), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3978), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [36141] = 5, + [35948] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3986), 1, + anon_sym_DOT, + ACTIONS(3988), 1, aux_sym__immediate_decimal_token5, - STATE(1724), 1, + STATE(1721), 1, sym_comment, - ACTIONS(771), 8, + ACTIONS(739), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -170049,11 +169919,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(773), 35, + ACTIONS(741), 34, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -170085,158 +169954,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [36198] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3932), 1, - sym__newline, - ACTIONS(3982), 1, - anon_sym_list, - ACTIONS(3984), 1, - anon_sym_oneof, - STATE(1725), 1, - sym_comment, - STATE(1764), 1, - aux_sym__types_body_repeat1, - STATE(1835), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4493), 1, - sym__all_type, - STATE(4870), 1, - sym__composite_argument_body, - ACTIONS(3980), 2, - anon_sym_table, - anon_sym_record, - STATE(4814), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3978), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [36269] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3988), 1, - anon_sym_QMARK2, - ACTIONS(3990), 1, - anon_sym_BANG, - STATE(1726), 1, - sym_comment, - STATE(1836), 1, - sym__path_suffix, - ACTIONS(1438), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1440), 37, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [36330] = 17, + [36007] = 17, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(2662), 1, + ACTIONS(2702), 1, aux_sym_cmd_identifier_token2, - ACTIONS(2664), 1, + ACTIONS(2704), 1, anon_sym_COLON2, - ACTIONS(3631), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - STATE(1727), 1, + STATE(1722), 1, sym_comment, - STATE(2106), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(3568), 1, + STATE(3562), 1, sym_val_string, - STATE(3611), 1, + STATE(3616), 1, sym_cmd_identifier, - STATE(4267), 1, + STATE(4269), 1, sym__command_name, - ACTIONS(3896), 2, + ACTIONS(3783), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3898), 2, + ACTIONS(3785), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2243), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3627), 25, + ACTIONS(3631), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -170262,80 +170018,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [36411] = 17, - ACTIONS(103), 1, + [36088] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2662), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2664), 1, - anon_sym_COLON2, - ACTIONS(3631), 1, - aux_sym_cmd_identifier_token1, - STATE(1728), 1, + ACTIONS(3990), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(3992), 1, + aux_sym__immediate_decimal_token5, + STATE(1723), 1, sym_comment, - STATE(2106), 1, - sym__val_number_decimal, - STATE(3568), 1, - sym_val_string, - STATE(3611), 1, - sym_cmd_identifier, - STATE(3877), 1, - sym__command_name, - ACTIONS(3896), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3898), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2243), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3627), 25, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + ACTIONS(747), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(749), 34, anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [36492] = 6, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_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, + [36147] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3992), 1, - aux_sym__immediate_decimal_token1, ACTIONS(3994), 1, aux_sym__immediate_decimal_token5, - STATE(1729), 1, + STATE(1724), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(755), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -170344,10 +170087,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(749), 34, + ACTIONS(757), 35, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -170379,34 +170123,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [36551] = 10, + [36204] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - STATE(924), 1, + STATE(826), 1, sym__immediate_decimal, - STATE(1730), 1, + STATE(1725), 1, sym_comment, - ACTIONS(3950), 2, + ACTIONS(3960), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3952), 2, + ACTIONS(3962), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(809), 2, + STATE(825), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1586), 6, + ACTIONS(1625), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1582), 29, + ACTIONS(1623), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -170436,93 +170180,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36618] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3932), 1, - sym__newline, - STATE(1731), 1, - sym_comment, - STATE(1794), 1, - aux_sym__types_body_repeat3, - STATE(1943), 1, - aux_sym__types_body_repeat1, - STATE(4518), 1, - sym__one_type, - STATE(4979), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [36689] = 10, + [36271] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - STATE(909), 1, + STATE(848), 1, sym__immediate_decimal, - STATE(1732), 1, + STATE(1726), 1, sym_comment, - ACTIONS(3950), 2, + ACTIONS(3960), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3952), 2, + ACTIONS(3962), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(846), 2, + STATE(847), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1633), 6, + ACTIONS(1655), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1631), 29, + ACTIONS(1653), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -170552,89 +170237,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36756] = 8, + [36338] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3964), 1, - anon_sym_DOT2, - STATE(1733), 1, + ACTIONS(1586), 1, + anon_sym_DOLLAR, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + STATE(864), 1, + sym__immediate_decimal, + STATE(1727), 1, sym_comment, - STATE(1740), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1834), 1, - sym_path, - STATE(1846), 1, - sym_cell_path, - ACTIONS(1657), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1655), 37, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(3960), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3962), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(849), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1669), 6, + anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [36819] = 10, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1667), 29, + anon_sym_in, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [36405] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - STATE(807), 1, + STATE(869), 1, sym__immediate_decimal, - STATE(1734), 1, + STATE(1728), 1, sym_comment, - ACTIONS(3950), 2, + ACTIONS(3960), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3952), 2, + ACTIONS(3962), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(806), 2, + STATE(867), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1609), 6, + ACTIONS(1675), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1607), 29, + ACTIONS(1673), 29, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -170664,96 +170351,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [36886] = 17, - ACTIONS(103), 1, + [36472] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2662), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2664), 1, - anon_sym_COLON2, - ACTIONS(3631), 1, - aux_sym_cmd_identifier_token1, - STATE(1735), 1, + ACTIONS(3940), 1, + sym__newline, + ACTIONS(3972), 1, + anon_sym_list, + ACTIONS(3974), 1, + anon_sym_oneof, + STATE(1729), 1, sym_comment, - STATE(2106), 1, - sym__val_number_decimal, - STATE(3568), 1, - sym_val_string, - STATE(3611), 1, - sym_cmd_identifier, - STATE(4982), 1, - sym__command_name, - ACTIONS(3896), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3898), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2243), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3627), 25, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [36967] = 11, + STATE(1754), 1, + aux_sym__types_body_repeat1, + STATE(1827), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4456), 1, + sym__all_type, + STATE(5090), 1, + sym__composite_argument_body, + ACTIONS(3970), 2, + anon_sym_table, + anon_sym_record, + STATE(4740), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3968), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [36543] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3799), 1, + ACTIONS(3940), 1, + sym__newline, + ACTIONS(3972), 1, anon_sym_list, - ACTIONS(3801), 1, + ACTIONS(3974), 1, anon_sym_oneof, - ACTIONS(3996), 1, - anon_sym_GT2, - ACTIONS(3998), 1, - anon_sym_AT2, - STATE(1736), 1, + STATE(1730), 1, sym_comment, - STATE(4480), 1, + STATE(1754), 1, + aux_sym__types_body_repeat1, + STATE(1827), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4456), 1, sym__all_type, - STATE(4998), 1, - sym_param_completer, - ACTIONS(3797), 2, + STATE(5231), 1, + sym__composite_argument_body, + ACTIONS(3970), 2, anon_sym_table, anon_sym_record, - STATE(4704), 4, + STATE(4740), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3795), 31, + ACTIONS(3968), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -170785,43 +170469,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [37035] = 16, + [36614] = 17, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(2533), 1, + ACTIONS(2702), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3631), 1, + ACTIONS(2704), 1, + anon_sym_COLON2, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - STATE(1737), 1, + STATE(1731), 1, sym_comment, - STATE(2106), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(3568), 1, + STATE(3562), 1, sym_val_string, - STATE(3611), 1, + STATE(3616), 1, sym_cmd_identifier, - STATE(4857), 1, + STATE(3827), 1, sym__command_name, - ACTIONS(3896), 2, + ACTIONS(3783), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3898), 2, + ACTIONS(3785), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2243), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3627), 25, + ACTIONS(3631), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -170847,88 +170533,94 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [37113] = 7, + [36695] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4000), 1, - anon_sym_QMARK2, - ACTIONS(4002), 1, - anon_sym_BANG, - STATE(1738), 1, - sym_comment, - STATE(1862), 1, - sym__path_suffix, - ACTIONS(1438), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1440), 36, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, + ACTIONS(3940), 1, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [37173] = 11, + ACTIONS(3972), 1, + anon_sym_list, + ACTIONS(3974), 1, + anon_sym_oneof, + STATE(1732), 1, + sym_comment, + STATE(1754), 1, + aux_sym__types_body_repeat1, + STATE(1827), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4456), 1, + sym__all_type, + STATE(4993), 1, + sym__composite_argument_body, + ACTIONS(3970), 2, + anon_sym_table, + anon_sym_record, + STATE(4740), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3968), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [36766] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1756), 1, + ACTIONS(1586), 1, + anon_sym_DOLLAR, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1766), 1, - sym__unquoted_pattern, - ACTIONS(4004), 1, - anon_sym_DOT_DOT2, - ACTIONS(4008), 1, - sym_filesize_unit, - ACTIONS(4010), 1, - sym_duration_unit, - STATE(1739), 1, + STATE(938), 1, + sym__immediate_decimal, + STATE(1733), 1, sym_comment, - STATE(4726), 1, + ACTIONS(3960), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3962), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(871), 2, sym__expr_parenthesized_immediate, - ACTIONS(4006), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(793), 5, + sym_val_variable, + ACTIONS(1635), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(890), 30, + ACTIONS(1633), 29, anon_sym_in, - anon_sym_DASH2, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -170957,22 +170649,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [37241] = 7, + [36833] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3964), 1, + ACTIONS(3976), 1, anon_sym_DOT2, - STATE(1740), 1, + STATE(1734), 1, sym_comment, - STATE(1741), 1, + STATE(1763), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(1834), 1, + STATE(1826), 1, sym_path, - ACTIONS(1490), 3, + STATE(1861), 1, + sym_cell_path, + ACTIONS(1679), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1492), 37, + ACTIONS(1677), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -171010,66 +170704,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37301] = 6, + [36896] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4012), 1, - anon_sym_DOT2, - STATE(1834), 1, - sym_path, - STATE(1741), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1494), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1496), 37, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(3940), 1, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [37359] = 6, + STATE(1735), 1, + sym_comment, + STATE(1793), 1, + aux_sym__types_body_repeat3, + STATE(1939), 1, + aux_sym__types_body_repeat1, + STATE(4497), 1, + sym__one_type, + STATE(4972), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [36967] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4015), 1, + ACTIONS(3996), 1, anon_sym_DOT, - ACTIONS(4017), 1, + ACTIONS(3998), 1, aux_sym__immediate_decimal_token5, - STATE(1742), 1, + STATE(1736), 1, sym_comment, ACTIONS(739), 6, anon_sym_export, @@ -171114,121 +170815,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [37417] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - aux_sym__immediate_decimal_token5, - STATE(1743), 1, - sym_comment, - ACTIONS(1730), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1728), 34, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [37475] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4023), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4025), 1, - aux_sym__immediate_decimal_token5, - STATE(1744), 1, - sym_comment, - ACTIONS(747), 7, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT_DOT2, - aux_sym__val_number_decimal_token1, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(749), 34, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_filesize_unit, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [37533] = 4, + [37025] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1745), 1, + STATE(1737), 1, sym_comment, - ACTIONS(1505), 4, + ACTIONS(1458), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1507), 39, + ACTIONS(1460), 39, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -171268,10 +170865,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [37587] = 4, + [37079] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1746), 1, + STATE(1738), 1, sym_comment, ACTIONS(1509), 4, anon_sym_export, @@ -171318,67 +170915,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [37641] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1747), 1, - sym_comment, - ACTIONS(1458), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1460), 39, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [37695] = 4, + [37133] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1748), 1, + STATE(1739), 1, sym_comment, - ACTIONS(1513), 4, + ACTIONS(1517), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1515), 39, + ACTIONS(1519), 39, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -171418,17 +170965,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [37749] = 4, + [37187] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1749), 1, + STATE(1740), 1, sym_comment, - ACTIONS(1517), 4, + ACTIONS(1521), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1519), 39, + ACTIONS(1523), 39, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -171468,17 +171015,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [37803] = 4, + [37241] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1750), 1, + STATE(1741), 1, sym_comment, - ACTIONS(1521), 4, + ACTIONS(1525), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1523), 39, + ACTIONS(1527), 39, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -171518,313 +171065,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [37857] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3976), 1, - aux_sym__immediate_decimal_token5, - STATE(1751), 1, - sym_comment, - ACTIONS(739), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(741), 34, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [37913] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4027), 1, - anon_sym_DOT2, - STATE(1752), 1, - sym_comment, - STATE(1800), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1860), 1, - sym_path, - STATE(1909), 1, - sym_cell_path, - ACTIONS(1657), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1655), 36, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [37975] = 5, + [37295] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4029), 1, - aux_sym__immediate_decimal_token5, - STATE(1753), 1, - sym_comment, - ACTIONS(771), 8, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(4000), 1, anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(773), 34, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [38031] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4031), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4033), 1, - aux_sym__immediate_decimal_token5, - STATE(1754), 1, + ACTIONS(4002), 1, + anon_sym_AT2, + STATE(1742), 1, sym_comment, - ACTIONS(1740), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1738), 34, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [38089] = 16, + STATE(4427), 1, + sym__all_type, + STATE(5078), 1, + sym_param_completer, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4828), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [37363] = 16, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2533), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3631), 1, - aux_sym_cmd_identifier_token1, - STATE(1755), 1, - sym_comment, - STATE(2106), 1, - sym__val_number_decimal, - STATE(3568), 1, - sym_val_string, - STATE(3611), 1, - sym_cmd_identifier, - STATE(4982), 1, - sym__command_name, - ACTIONS(3896), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3898), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2243), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3627), 25, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [38167] = 16, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1786), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(2533), 1, + ACTIONS(2561), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3631), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - STATE(1756), 1, + STATE(1743), 1, sym_comment, - STATE(2106), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(3568), 1, + STATE(3562), 1, sym_val_string, - STATE(3611), 1, + STATE(3616), 1, sym_cmd_identifier, - STATE(4267), 1, + STATE(4269), 1, sym__command_name, - ACTIONS(3896), 2, + ACTIONS(3783), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3898), 2, + ACTIONS(3785), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2243), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3627), 25, + ACTIONS(3631), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -171850,43 +171184,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38245] = 16, + [37441] = 16, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(2533), 1, + ACTIONS(2561), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3631), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - STATE(1757), 1, + STATE(1744), 1, sym_comment, - STATE(2106), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(3568), 1, + STATE(3562), 1, sym_val_string, - STATE(3611), 1, + STATE(3616), 1, sym_cmd_identifier, - STATE(3877), 1, + STATE(3827), 1, sym__command_name, - ACTIONS(3896), 2, + ACTIONS(3783), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3898), 2, + ACTIONS(3785), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2243), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3627), 25, + ACTIONS(3631), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -171912,44 +171246,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38323] = 16, - ACTIONS(103), 1, + [37519] = 17, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1412), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1414), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1416), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1426), 1, sym_raw_string_begin, - ACTIONS(2878), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3631), 1, + ACTIONS(3769), 1, aux_sym_cmd_identifier_token1, - STATE(1758), 1, + STATE(1745), 1, sym_comment, - STATE(2106), 1, + STATE(1759), 1, + aux_sym__command_list_body_repeat1, + STATE(2107), 1, sym__val_number_decimal, - STATE(3568), 1, - sym_val_string, - STATE(3611), 1, - sym_cmd_identifier, - STATE(4296), 1, + STATE(4615), 1, sym__command_name, - ACTIONS(3896), 2, + STATE(4736), 1, + sym_cmd_identifier, + STATE(4738), 1, + sym_val_string, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3898), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2243), 4, + ACTIONS(3765), 2, + anon_sym_export, + anon_sym_in, + STATE(3649), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3627), 25, - anon_sym_export, + ACTIONS(3767), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -171967,50 +171303,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38401] = 16, + [37599] = 16, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(2533), 1, + ACTIONS(2561), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3631), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - STATE(1759), 1, + STATE(1746), 1, sym_comment, - STATE(2106), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(3568), 1, + STATE(3562), 1, sym_val_string, - STATE(3611), 1, + STATE(3616), 1, sym_cmd_identifier, - STATE(5157), 1, + STATE(5015), 1, sym__command_name, - ACTIONS(3896), 2, + ACTIONS(3783), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3898), 2, + ACTIONS(3785), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2243), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3627), 25, + ACTIONS(3631), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -172036,43 +171371,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38479] = 16, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1786), 1, + [37677] = 16, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(93), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(95), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(105), 1, sym_raw_string_begin, - ACTIONS(2533), 1, + ACTIONS(2839), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3631), 1, + ACTIONS(3661), 1, aux_sym_cmd_identifier_token1, - STATE(1760), 1, + STATE(1747), 1, sym_comment, - STATE(2106), 1, + STATE(1979), 1, sym__val_number_decimal, - STATE(3568), 1, - sym_val_string, - STATE(3611), 1, - sym_cmd_identifier, - STATE(5005), 1, + STATE(3936), 1, sym__command_name, - ACTIONS(3896), 2, + STATE(4327), 1, + sym_cmd_identifier, + STATE(4328), 1, + sym_val_string, + ACTIONS(3783), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3898), 2, + ACTIONS(3785), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2243), 4, + STATE(501), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3627), 25, + ACTIONS(3657), 25, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -172098,24 +171433,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [38557] = 8, + [37755] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4027), 1, - anon_sym_DOT2, - STATE(1761), 1, + ACTIONS(4004), 1, + anon_sym_QMARK2, + ACTIONS(4006), 1, + anon_sym_BANG, + STATE(1748), 1, sym_comment, - STATE(1800), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1860), 1, - sym_path, - STATE(1899), 1, - sym_cell_path, - ACTIONS(1663), 3, + STATE(1864), 1, + sym__path_suffix, + ACTIONS(1432), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1661), 36, + anon_sym_DOT2, + ACTIONS(1434), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -172152,94 +171486,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [38619] = 16, - ACTIONS(103), 1, + [37815] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2878), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3631), 1, - aux_sym_cmd_identifier_token1, - STATE(1762), 1, + STATE(1749), 1, sym_comment, - STATE(2106), 1, - sym__val_number_decimal, - STATE(3568), 1, - sym_val_string, - STATE(3611), 1, - sym_cmd_identifier, - STATE(5116), 1, - sym__command_name, - ACTIONS(3896), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3898), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2243), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3627), 25, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + ACTIONS(755), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(757), 35, anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [38697] = 11, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [37869] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3799), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3801), 1, + ACTIONS(3761), 1, anon_sym_oneof, - ACTIONS(3998), 1, + ACTIONS(4002), 1, anon_sym_AT2, - ACTIONS(4035), 1, + ACTIONS(4008), 1, anon_sym_GT2, - STATE(1763), 1, + STATE(1750), 1, sym_comment, - STATE(4431), 1, + STATE(4405), 1, sym__all_type, - STATE(4845), 1, + STATE(5225), 1, sym_param_completer, - ACTIONS(3797), 2, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4704), 4, + STATE(4828), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3795), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -172271,81 +171593,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [38765] = 11, + [37937] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3932), 1, - sym__newline, - ACTIONS(3982), 1, - anon_sym_list, - ACTIONS(3984), 1, - anon_sym_oneof, - STATE(1764), 1, + ACTIONS(1412), 1, + anon_sym_DQUOTE, + ACTIONS(1414), 1, + anon_sym_SQUOTE, + ACTIONS(1416), 1, + anon_sym_BQUOTE, + ACTIONS(1426), 1, + sym_raw_string_begin, + ACTIONS(3769), 1, + aux_sym_cmd_identifier_token1, + STATE(1751), 1, sym_comment, - STATE(1842), 1, - aux_sym__composite_argument_body_repeat1, - STATE(1943), 1, - aux_sym__types_body_repeat1, - STATE(4474), 1, - sym__all_type, - ACTIONS(3980), 2, - anon_sym_table, - anon_sym_record, - STATE(4814), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3978), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [38833] = 8, + STATE(1759), 1, + aux_sym__command_list_body_repeat1, + STATE(2107), 1, + sym__val_number_decimal, + STATE(4595), 1, + sym__command_name, + STATE(4736), 1, + sym_cmd_identifier, + STATE(4738), 1, + sym_val_string, + ACTIONS(3643), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(3765), 2, + anon_sym_export, + anon_sym_in, + STATE(3649), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3767), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [38017] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3988), 1, + aux_sym__immediate_decimal_token5, + STATE(1752), 1, + sym_comment, + ACTIONS(739), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(741), 34, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [38073] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4027), 1, + ACTIONS(4010), 1, anon_sym_DOT2, - STATE(1765), 1, + STATE(1753), 1, sym_comment, - STATE(1800), 1, + STATE(1799), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(1860), 1, + STATE(1858), 1, sym_path, - STATE(1883), 1, + STATE(1912), 1, sym_cell_path, - ACTIONS(1432), 3, + ACTIONS(1649), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1434), 36, + ACTIONS(1647), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -172382,32 +171761,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [38895] = 11, + [38135] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3799), 1, + ACTIONS(3940), 1, + sym__newline, + ACTIONS(3972), 1, anon_sym_list, - ACTIONS(3801), 1, + ACTIONS(3974), 1, anon_sym_oneof, - ACTIONS(3998), 1, - anon_sym_AT2, - ACTIONS(4037), 1, - anon_sym_GT2, - STATE(1766), 1, + STATE(1754), 1, sym_comment, - STATE(4403), 1, + STATE(1825), 1, + aux_sym__composite_argument_body_repeat1, + STATE(1939), 1, + aux_sym__types_body_repeat1, + STATE(4431), 1, sym__all_type, - STATE(5246), 1, - sym_param_completer, - ACTIONS(3797), 2, + ACTIONS(3970), 2, anon_sym_table, anon_sym_record, - STATE(4704), 4, + STATE(4740), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3795), 31, + ACTIONS(3968), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -172439,165 +171818,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [38963] = 11, + [38203] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(3998), 1, - anon_sym_AT2, - ACTIONS(4039), 1, - anon_sym_GT2, - STATE(1767), 1, + ACTIONS(4012), 1, + aux_sym__immediate_decimal_token5, + STATE(1755), 1, sym_comment, - STATE(4467), 1, - sym__all_type, - STATE(5255), 1, - sym_param_completer, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4704), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [39031] = 17, - ACTIONS(3), 1, + ACTIONS(755), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(757), 34, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [38259] = 16, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1412), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3883), 1, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - STATE(1768), 1, + STATE(1756), 1, sym_comment, - STATE(1769), 1, - aux_sym__command_list_body_repeat1, - STATE(2094), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(4603), 1, - sym__command_name, - STATE(4739), 1, - sym_cmd_identifier, - STATE(4740), 1, + STATE(3562), 1, sym_val_string, - ACTIONS(3639), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(3879), 2, - anon_sym_export, - anon_sym_in, - STATE(3638), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3881), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [39111] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4047), 1, - aux_sym_cmd_identifier_token1, - ACTIONS(4056), 1, - anon_sym_DQUOTE, - ACTIONS(4059), 1, - anon_sym_SQUOTE, - ACTIONS(4062), 1, - anon_sym_BQUOTE, - ACTIONS(4065), 1, - sym_raw_string_begin, - STATE(2094), 1, - sym__val_number_decimal, - STATE(4739), 1, + STATE(3616), 1, sym_cmd_identifier, - STATE(4740), 1, - sym_val_string, - STATE(4747), 1, + STATE(4964), 1, sym__command_name, - ACTIONS(4041), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(4050), 2, + ACTIONS(3783), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4053), 2, + ACTIONS(3785), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(1769), 2, - sym_comment, - aux_sym__command_list_body_repeat1, - STATE(3638), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4044), 23, + ACTIONS(3631), 25, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172615,27 +171924,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39189] = 4, + [38337] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1770), 1, + ACTIONS(4014), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4016), 1, + aux_sym__immediate_decimal_token5, + STATE(1757), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(1740), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(749), 35, + ACTIONS(1738), 34, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -172670,33 +171983,32 @@ 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, - [39243] = 11, + [38395] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3793), 1, - anon_sym_LBRACK, - ACTIONS(3799), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3801), 1, + ACTIONS(3761), 1, anon_sym_oneof, - STATE(1771), 1, + ACTIONS(4002), 1, + anon_sym_AT2, + ACTIONS(4018), 1, + anon_sym_GT2, + STATE(1758), 1, sym_comment, - STATE(5136), 1, - sym__one_type, - STATE(5139), 1, - sym__multiple_types, - STATE(5154), 1, - sym__type_annotation, - ACTIONS(3797), 2, + STATE(4488), 1, + sym__all_type, + STATE(4992), 1, + sym_param_completer, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4316), 4, + STATE(4828), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3795), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -172728,96 +172040,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [39311] = 4, + [38463] = 16, ACTIONS(3), 1, anon_sym_POUND, - STATE(1772), 1, - sym_comment, - ACTIONS(771), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(773), 35, + ACTIONS(4026), 1, + aux_sym_cmd_identifier_token1, + ACTIONS(4035), 1, + anon_sym_DQUOTE, + ACTIONS(4038), 1, + anon_sym_SQUOTE, + ACTIONS(4041), 1, + anon_sym_BQUOTE, + ACTIONS(4044), 1, + sym_raw_string_begin, + STATE(2107), 1, + sym__val_number_decimal, + STATE(4707), 1, + sym__command_name, + STATE(4736), 1, + sym_cmd_identifier, + STATE(4738), 1, + sym_val_string, + ACTIONS(4020), 2, + anon_sym_export, anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_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, - [39365] = 17, + ACTIONS(4029), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(4032), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(1759), 2, + sym_comment, + aux_sym__command_list_body_repeat1, + STATE(3649), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4023), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [38541] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1412), 1, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(4002), 1, + anon_sym_AT2, + ACTIONS(4047), 1, + anon_sym_GT2, + STATE(1760), 1, + sym_comment, + STATE(4426), 1, + sym__all_type, + STATE(5154), 1, + sym_param_completer, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4828), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [38609] = 16, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1416), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3883), 1, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - STATE(1769), 1, - aux_sym__command_list_body_repeat1, - STATE(1773), 1, + STATE(1761), 1, sym_comment, - STATE(2094), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(4616), 1, - sym__command_name, - STATE(4739), 1, - sym_cmd_identifier, - STATE(4740), 1, + STATE(3562), 1, sym_val_string, - ACTIONS(3639), 2, + STATE(3616), 1, + sym_cmd_identifier, + STATE(5092), 1, + sym__command_name, + ACTIONS(3783), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, + ACTIONS(3785), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3879), 2, - anon_sym_export, - anon_sym_in, - STATE(3638), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3881), 23, + ACTIONS(3631), 25, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172835,31 +172214,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39445] = 4, + [38687] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(1774), 1, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + ACTIONS(1724), 1, + sym__unquoted_pattern, + ACTIONS(4049), 1, + anon_sym_DOT_DOT2, + ACTIONS(4053), 1, + sym_filesize_unit, + ACTIONS(4055), 1, + sym_duration_unit, + STATE(1762), 1, sym_comment, - ACTIONS(874), 8, + STATE(4718), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4051), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(866), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(876), 35, + ACTIONS(908), 30, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -172878,7 +172269,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -172888,47 +172278,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, - sym_duration_unit, - [39499] = 16, - ACTIONS(103), 1, + [38755] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(2533), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3631), 1, - aux_sym_cmd_identifier_token1, - STATE(1775), 1, + ACTIONS(3976), 1, + anon_sym_DOT2, + STATE(1763), 1, sym_comment, - STATE(2106), 1, - sym__val_number_decimal, - STATE(3568), 1, - sym_val_string, - STATE(3611), 1, - sym_cmd_identifier, - STATE(5143), 1, - sym__command_name, - ACTIONS(3896), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3898), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2243), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3627), 25, + STATE(1764), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1826), 1, + sym_path, + ACTIONS(1492), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1494), 37, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -172946,51 +172312,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39577] = 16, - ACTIONS(91), 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, - ACTIONS(93), 1, anon_sym_SQUOTE, - ACTIONS(95), 1, anon_sym_BQUOTE, - ACTIONS(103), 1, + [38815] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(105), 1, - sym_raw_string_begin, - ACTIONS(2878), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3665), 1, - aux_sym_cmd_identifier_token1, - STATE(1776), 1, + ACTIONS(4057), 1, + anon_sym_DOT2, + STATE(1826), 1, + sym_path, + STATE(1764), 2, sym_comment, - STATE(2000), 1, - sym__val_number_decimal, - STATE(3957), 1, - sym__command_name, - STATE(4323), 1, - sym_cmd_identifier, - STATE(4324), 1, - sym_val_string, - ACTIONS(3896), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3898), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(490), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3661), 25, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1496), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1498), 37, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173008,51 +172364,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39655] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1786), 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, - ACTIONS(1788), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, anon_sym_BQUOTE, + [38873] = 16, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1790), 1, + anon_sym_DQUOTE, ACTIONS(1792), 1, + anon_sym_SQUOTE, + ACTIONS(1794), 1, + anon_sym_BQUOTE, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3631), 1, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - STATE(1777), 1, + STATE(1765), 1, sym_comment, - STATE(2106), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(3568), 1, + STATE(3562), 1, sym_val_string, - STATE(3611), 1, + STATE(3616), 1, sym_cmd_identifier, - STATE(4202), 1, + STATE(5131), 1, sym__command_name, - ACTIONS(3627), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3639), 2, + ACTIONS(3783), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, + ACTIONS(3785), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2243), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3629), 23, + ACTIONS(3631), 25, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173070,28 +172438,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39732] = 5, + [38951] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4068), 1, - aux_sym__immediate_decimal_token5, - STATE(1778), 1, + ACTIONS(4010), 1, + anon_sym_DOT2, + STATE(1766), 1, sym_comment, - ACTIONS(771), 6, + STATE(1799), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1858), 1, + sym_path, + STATE(1880), 1, + sym_cell_path, + ACTIONS(1444), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(773), 35, + ACTIONS(1446), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173115,110 +172488,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [39787] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(4070), 1, - sym__newline, - STATE(1779), 1, - sym_comment, - STATE(1801), 1, - aux_sym__repeat_newline, - STATE(4562), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [39852] = 16, - ACTIONS(3), 1, + [39013] = 16, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3631), 1, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - STATE(1780), 1, + STATE(1767), 1, sym_comment, - STATE(2106), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(3568), 1, + STATE(3562), 1, sym_val_string, - STATE(3611), 1, + STATE(3616), 1, sym_cmd_identifier, - STATE(3822), 1, + STATE(4298), 1, sym__command_name, - ACTIONS(3627), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3639), 2, + ACTIONS(3783), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, + ACTIONS(3785), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2243), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3629), 23, + ACTIONS(3631), 25, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173236,25 +172554,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [39929] = 4, + [39091] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1781), 1, + STATE(1768), 1, sym_comment, - ACTIONS(1513), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(747), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(749), 35, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1515), 38, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [39145] = 16, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1790), 1, + anon_sym_DQUOTE, + ACTIONS(1792), 1, + anon_sym_SQUOTE, + ACTIONS(1794), 1, + anon_sym_BQUOTE, + ACTIONS(1796), 1, sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3635), 1, + aux_sym_cmd_identifier_token1, + STATE(1769), 1, + sym_comment, + STATE(1996), 1, + sym__val_number_decimal, + STATE(3562), 1, + sym_val_string, + STATE(3616), 1, + sym_cmd_identifier, + STATE(4847), 1, + sym__command_name, + ACTIONS(3783), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3785), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2247), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3631), 25, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173272,38 +172666,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + [39223] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1770), 1, + sym_comment, + ACTIONS(789), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym__unquoted_pattern, + ACTIONS(791), 35, + anon_sym_in, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [39277] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4060), 1, + anon_sym_DOT, + ACTIONS(4062), 1, + aux_sym__immediate_decimal_token5, + STATE(1771), 1, + sym_comment, + ACTIONS(1752), 7, + anon_sym_GT2, anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [39982] = 4, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1750), 34, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [39335] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1782), 1, + ACTIONS(4064), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4066), 1, + aux_sym__immediate_decimal_token5, + STATE(1772), 1, sym_comment, - ACTIONS(1517), 4, + ACTIONS(747), 7, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1519), 38, + anon_sym_DOT_DOT2, + aux_sym__val_number_decimal_token1, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(749), 34, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173327,93 +172817,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [40035] = 16, - ACTIONS(3), 1, + [39393] = 16, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3631), 1, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - STATE(1783), 1, + STATE(1773), 1, sym_comment, - STATE(2106), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(3568), 1, + STATE(3562), 1, sym_val_string, - STATE(3611), 1, + STATE(3616), 1, sym_cmd_identifier, - STATE(5081), 1, + STATE(5004), 1, sym__command_name, - ACTIONS(3627), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3639), 2, + ACTIONS(3783), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, + ACTIONS(3785), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2243), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3629), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [40112] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1784), 1, - sym_comment, - ACTIONS(1521), 4, + ACTIONS(3631), 25, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1523), 38, - sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173431,49 +172882,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [40165] = 10, + [39471] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4070), 1, - sym__newline, - ACTIONS(4076), 1, + ACTIONS(3753), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(4078), 1, + ACTIONS(3761), 1, anon_sym_oneof, - STATE(1785), 1, + STATE(1774), 1, sym_comment, - STATE(1796), 1, - aux_sym__repeat_newline, - STATE(3089), 1, + STATE(5080), 1, + sym__one_type, + STATE(5089), 1, + sym__multiple_types, + STATE(5251), 1, sym__type_annotation, - ACTIONS(4074), 2, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(3222), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4072), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -173505,23 +172946,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [40230] = 6, + [39539] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4080), 1, - anon_sym_DOT2, - STATE(1860), 1, - sym_path, - STATE(1786), 2, + STATE(1775), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1494), 3, + ACTIONS(1505), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1496), 36, + anon_sym_DOT2, + ACTIONS(1507), 39, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173548,6 +172984,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, @@ -173556,17 +172994,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [40287] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + [39593] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1787), 1, + ACTIONS(4010), 1, + anon_sym_DOT2, + STATE(1776), 1, sym_comment, - ACTIONS(1505), 4, + STATE(1799), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1858), 1, + sym_path, + STATE(1913), 1, + sym_cell_path, + ACTIONS(1679), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1507), 38, + ACTIONS(1677), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -173603,193 +173050,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [40340] = 16, + [39655] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3631), 1, - aux_sym_cmd_identifier_token1, - STATE(1788), 1, + ACTIONS(4068), 1, + anon_sym_DOT, + ACTIONS(4070), 1, + aux_sym__immediate_decimal_token5, + STATE(1777), 1, sym_comment, - STATE(2106), 1, - sym__val_number_decimal, - STATE(3568), 1, - sym_val_string, - STATE(3611), 1, - sym_cmd_identifier, - STATE(4200), 1, - sym__command_name, - ACTIONS(3627), 2, - anon_sym_export, + ACTIONS(1752), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1750), 33, anon_sym_in, - ACTIONS(3639), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2243), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3629), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [40417] = 16, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [39712] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(91), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(93), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(95), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(105), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3665), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - STATE(1789), 1, + STATE(1778), 1, sym_comment, - STATE(2000), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(4045), 1, - sym__command_name, - STATE(4323), 1, - sym_cmd_identifier, - STATE(4324), 1, + STATE(3562), 1, sym_val_string, - ACTIONS(3639), 2, + STATE(3616), 1, + sym_cmd_identifier, + STATE(5013), 1, + sym__command_name, + ACTIONS(3631), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(3661), 2, - anon_sym_export, - anon_sym_in, - STATE(490), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3663), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [40494] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4083), 1, - anon_sym_BANG, - STATE(1790), 1, - sym_comment, - ACTIONS(1446), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1448), 37, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [40549] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1791), 1, - sym_comment, - ACTIONS(1509), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1511), 38, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -173813,78 +173162,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [40602] = 3, + [39789] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1792), 1, - sym_comment, - ACTIONS(4085), 42, + ACTIONS(4072), 1, sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, + ACTIONS(4078), 1, anon_sym_list, + ACTIONS(4080), 1, anon_sym_oneof, - anon_sym_LBRACE, - anon_sym_RBRACE, - [40653] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1793), 1, + STATE(1779), 1, sym_comment, - ACTIONS(4087), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + STATE(1816), 1, + aux_sym__repeat_newline, + STATE(3097), 1, + sym__type_annotation, + ACTIONS(4076), 2, + anon_sym_table, + anon_sym_record, + STATE(3186), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4074), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -173914,38 +173215,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, - anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - anon_sym_LBRACE, - anon_sym_RBRACE, - [40704] = 10, + [39854] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3799), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3801), 1, + ACTIONS(3761), 1, anon_sym_oneof, - STATE(1794), 1, + ACTIONS(4072), 1, + sym__newline, + STATE(1780), 1, sym_comment, - STATE(1795), 1, - aux_sym__types_body_repeat3, - STATE(4642), 1, - sym__one_type, - STATE(4979), 1, + STATE(1977), 1, + aux_sym__repeat_newline, + STATE(4468), 1, sym__type_annotation, - ACTIONS(3797), 2, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4316), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3795), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -173977,29 +173272,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [40769] = 9, + [39919] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4095), 1, - anon_sym_list, - ACTIONS(4098), 1, - anon_sym_oneof, - STATE(4772), 1, - sym__one_type, - STATE(4979), 1, - sym__type_annotation, - ACTIONS(4092), 2, - anon_sym_table, - anon_sym_record, - STATE(1795), 2, + STATE(1781), 1, sym_comment, - aux_sym__types_body_repeat3, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4089), 31, + ACTIONS(4082), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -174029,32 +173312,25 @@ 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, - [40832] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4070), 1, - sym__newline, - ACTIONS(4076), 1, + anon_sym_record, anon_sym_list, - ACTIONS(4078), 1, anon_sym_oneof, - STATE(1796), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + [39970] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1782), 1, sym_comment, - STATE(2109), 1, - aux_sym__repeat_newline, - STATE(3093), 1, - sym__type_annotation, - ACTIONS(4074), 2, - anon_sym_table, - anon_sym_record, - STATE(3222), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4072), 31, + ACTIONS(4084), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -174084,22 +173360,27 @@ 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, - [40897] = 5, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + anon_sym_LBRACE, + anon_sym_RBRACE, + [40021] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4083), 1, - anon_sym_QMARK2, - STATE(1797), 1, + STATE(1783), 1, sym_comment, - ACTIONS(1446), 4, + ACTIONS(1505), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1448), 37, + ACTIONS(1507), 38, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174126,8 +173407,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, @@ -174136,128 +173415,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [40952] = 10, + anon_sym_QMARK2, + anon_sym_BANG, + [40074] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4070), 1, - sym__newline, - ACTIONS(4076), 1, - anon_sym_list, - ACTIONS(4078), 1, - anon_sym_oneof, - STATE(1798), 1, + STATE(1784), 1, sym_comment, - STATE(2109), 1, - aux_sym__repeat_newline, - STATE(3094), 1, - sym__type_annotation, - ACTIONS(4074), 2, - anon_sym_table, - anon_sym_record, - STATE(3222), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4072), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [41017] = 4, + ACTIONS(1458), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1460), 38, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [40127] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1799), 1, + STATE(1785), 1, sym_comment, - ACTIONS(747), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(749), 34, + ACTIONS(1509), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [41070] = 7, + anon_sym_DOT2, + ACTIONS(1511), 38, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [40180] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4027), 1, - anon_sym_DOT2, + ACTIONS(4086), 1, + anon_sym_QMARK2, STATE(1786), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(1800), 1, sym_comment, - STATE(1860), 1, - sym_path, - ACTIONS(1490), 3, + ACTIONS(1450), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1492), 36, + anon_sym_DOT2, + ACTIONS(1452), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174284,6 +173555,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, @@ -174292,132 +173565,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [41129] = 10, + [40235] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(4070), 1, - sym__newline, - STATE(1801), 1, + STATE(1787), 1, sym_comment, - STATE(2109), 1, - aux_sym__repeat_newline, - STATE(4440), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [41194] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(4070), 1, + ACTIONS(1517), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1519), 38, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, - STATE(1802), 1, - sym_comment, - STATE(1804), 1, - aux_sym__repeat_newline, - STATE(4443), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [41259] = 5, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [40288] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4017), 1, - aux_sym__immediate_decimal_token5, - STATE(1803), 1, + STATE(1788), 1, sym_comment, - ACTIONS(739), 6, + ACTIONS(1521), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(741), 35, + anon_sym_DOT2, + ACTIONS(1523), 38, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174441,126 +173650,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [41314] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - ACTIONS(4070), 1, - sym__newline, - STATE(1804), 1, - sym_comment, - STATE(2109), 1, - aux_sym__repeat_newline, - STATE(4484), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [41379] = 3, + anon_sym_QMARK2, + anon_sym_BANG, + [40341] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1805), 1, + STATE(1789), 1, sym_comment, - ACTIONS(4101), 42, + ACTIONS(1525), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1527), 38, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - anon_sym_LBRACE, - anon_sym_RBRACE, - [41430] = 3, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [40394] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(1806), 1, + STATE(1790), 1, sym_comment, - ACTIONS(4103), 42, + ACTIONS(4088), 42, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -174603,30 +173760,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneof, anon_sym_LBRACE, anon_sym_RBRACE, - [41481] = 10, + [40445] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3799), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3801), 1, + ACTIONS(3761), 1, anon_sym_oneof, + STATE(1791), 1, + sym_comment, STATE(1795), 1, aux_sym__types_body_repeat3, - STATE(1807), 1, - sym_comment, - STATE(4521), 1, + STATE(4508), 1, sym__one_type, - STATE(4979), 1, + STATE(4972), 1, sym__type_annotation, - ACTIONS(3797), 2, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4316), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3795), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -174658,12 +173815,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [41546] = 3, + [40510] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(1808), 1, + STATE(1792), 1, sym_comment, - ACTIONS(4105), 42, + ACTIONS(4090), 42, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -174706,165 +173863,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_oneof, anon_sym_LBRACE, anon_sym_RBRACE, - [41597] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1809), 1, - sym_comment, - ACTIONS(771), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(773), 34, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [41650] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1810), 1, - sym_comment, - ACTIONS(874), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym__unquoted_pattern, - ACTIONS(876), 34, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [41703] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4021), 1, - aux_sym__immediate_decimal_token5, - STATE(1811), 1, - sym_comment, - ACTIONS(1730), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1728), 34, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [41758] = 3, + [40561] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1812), 1, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + STATE(1793), 1, sym_comment, - ACTIONS(4107), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + STATE(1795), 1, + aux_sym__types_body_repeat3, + STATE(4659), 1, + sym__one_type, + STATE(4972), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -174894,27 +173916,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, - anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - anon_sym_LBRACE, - anon_sym_RBRACE, - [41809] = 4, + [40626] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1813), 1, + ACTIONS(4086), 1, + anon_sym_BANG, + STATE(1794), 1, sym_comment, - ACTIONS(1458), 4, + ACTIONS(1450), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1460), 38, + ACTIONS(1452), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -174941,6 +173958,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, @@ -174949,96 +173968,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [41862] = 5, + [40681] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4109), 1, - aux_sym__immediate_decimal_token5, - STATE(1814), 1, + ACTIONS(4098), 1, + anon_sym_list, + ACTIONS(4101), 1, + anon_sym_oneof, + STATE(4789), 1, + sym__one_type, + STATE(4972), 1, + sym__type_annotation, + ACTIONS(4095), 2, + anon_sym_table, + anon_sym_record, + STATE(1795), 2, sym_comment, - ACTIONS(1808), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1806), 34, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [41917] = 16, + aux_sym__types_body_repeat3, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4092), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [40744] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3631), 1, - aux_sym_cmd_identifier_token1, - STATE(1815), 1, + ACTIONS(3998), 1, + aux_sym__immediate_decimal_token5, + STATE(1796), 1, sym_comment, - STATE(2106), 1, - sym__val_number_decimal, - STATE(3568), 1, - sym_val_string, - STATE(3611), 1, - sym_cmd_identifier, - STATE(5014), 1, - sym__command_name, - ACTIONS(3627), 2, + ACTIONS(739), 6, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3639), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2243), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3629), 23, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(741), 35, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175062,156 +174061,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [41994] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4111), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4113), 1, - aux_sym__immediate_decimal_token5, - STATE(1816), 1, - sym_comment, - ACTIONS(1740), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1738), 33, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [42051] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3631), 1, - aux_sym_cmd_identifier_token1, - STATE(1817), 1, - sym_comment, - STATE(2106), 1, - sym__val_number_decimal, - STATE(3568), 1, - sym_val_string, - STATE(3611), 1, - sym_cmd_identifier, - STATE(5250), 1, - sym__command_name, - ACTIONS(3627), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3639), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2243), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3629), 23, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - [42128] = 16, + sym_filesize_unit, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [40799] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3631), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - STATE(1818), 1, + STATE(1797), 1, sym_comment, - STATE(2106), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(3568), 1, + STATE(3562), 1, sym_val_string, - STATE(3611), 1, + STATE(3616), 1, sym_cmd_identifier, - STATE(4290), 1, + STATE(4200), 1, sym__command_name, - ACTIONS(3627), 2, + ACTIONS(3631), 2, anon_sym_export, anon_sym_in, - ACTIONS(3639), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2243), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3629), 23, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175235,44 +174133,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [42205] = 16, + [40876] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3631), 1, - aux_sym_cmd_identifier_token1, - STATE(1819), 1, + ACTIONS(4104), 1, + aux_sym__immediate_decimal_token5, + STATE(1798), 1, sym_comment, - STATE(2106), 1, - sym__val_number_decimal, - STATE(3568), 1, - sym_val_string, - STATE(3611), 1, - sym_cmd_identifier, - STATE(4371), 1, - sym__command_name, - ACTIONS(3627), 2, + ACTIONS(755), 6, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3639), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2243), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3629), 23, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(757), 35, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175296,95 +174172,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [42282] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4115), 1, - anon_sym_DOT, - ACTIONS(4117), 1, - aux_sym__immediate_decimal_token5, - STATE(1820), 1, - sym_comment, - ACTIONS(1730), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1728), 33, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [42339] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1786), 1, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_filesize_unit, anon_sym_DQUOTE, - ACTIONS(1788), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(3631), 1, - aux_sym_cmd_identifier_token1, - STATE(1821), 1, + [40931] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4010), 1, + anon_sym_DOT2, + STATE(1799), 1, sym_comment, - STATE(2106), 1, - sym__val_number_decimal, - STATE(3568), 1, - sym_val_string, - STATE(3611), 1, - sym_cmd_identifier, - STATE(4965), 1, - sym__command_name, - ACTIONS(3627), 2, + STATE(1809), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(1858), 1, + sym_path, + ACTIONS(1492), 3, anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(3639), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(2243), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3629), 23, + ACTIONS(1494), 36, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175408,44 +174224,165 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [42416] = 16, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [40990] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(4072), 1, + sym__newline, + STATE(1800), 1, + sym_comment, + STATE(1977), 1, + aux_sym__repeat_newline, + STATE(4440), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [41055] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + ACTIONS(4072), 1, + sym__newline, + STATE(1780), 1, + aux_sym__repeat_newline, + STATE(1801), 1, + sym_comment, + STATE(4442), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [41120] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(3631), 1, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - STATE(1822), 1, + STATE(1802), 1, sym_comment, - STATE(2106), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(3568), 1, + STATE(3562), 1, sym_val_string, - STATE(3611), 1, + STATE(3616), 1, sym_cmd_identifier, - STATE(5037), 1, + STATE(4201), 1, sym__command_name, - ACTIONS(3627), 2, + ACTIONS(3631), 2, anon_sym_export, anon_sym_in, - ACTIONS(3639), 2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2243), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3629), 23, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175469,44 +174406,92 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [42493] = 16, + [41197] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1803), 1, + sym_comment, + ACTIONS(4106), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + anon_sym_LBRACE, + anon_sym_RBRACE, + [41248] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(91), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(93), 1, anon_sym_SQUOTE, - ACTIONS(1790), 1, + ACTIONS(95), 1, anon_sym_BQUOTE, - ACTIONS(1792), 1, + ACTIONS(105), 1, sym_raw_string_begin, - ACTIONS(3631), 1, + ACTIONS(3661), 1, aux_sym_cmd_identifier_token1, - STATE(1823), 1, + STATE(1804), 1, sym_comment, - STATE(2106), 1, + STATE(1979), 1, sym__val_number_decimal, - STATE(3568), 1, - sym_val_string, - STATE(3611), 1, - sym_cmd_identifier, - STATE(4919), 1, + STATE(3973), 1, sym__command_name, - ACTIONS(3627), 2, - anon_sym_export, - anon_sym_in, - ACTIONS(3639), 2, + STATE(4327), 1, + sym_cmd_identifier, + STATE(4328), 1, + sym_val_string, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3641), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2243), 4, + ACTIONS(3657), 2, + anon_sym_export, + anon_sym_in, + STATE(501), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3629), 23, + ACTIONS(3659), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -175530,30 +174515,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - [42570] = 10, + [41325] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4070), 1, - sym__newline, - ACTIONS(4076), 1, - anon_sym_list, - ACTIONS(4078), 1, - anon_sym_oneof, - STATE(1798), 1, - aux_sym__repeat_newline, - STATE(1824), 1, + STATE(1805), 1, sym_comment, - STATE(3044), 1, - sym__type_annotation, - ACTIONS(4074), 2, - anon_sym_table, - anon_sym_record, - STATE(3222), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(4072), 31, + ACTIONS(4108), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -175569,140 +174541,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_float, anon_sym_decimal, anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [42635] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1825), 1, - sym_comment, - ACTIONS(1846), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1844), 34, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [42687] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(801), 1, - anon_sym_DOT_DOT2, - ACTIONS(4119), 1, - sym_filesize_unit, - ACTIONS(4121), 1, - sym_duration_unit, - STATE(1826), 1, - sym_comment, - ACTIONS(803), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(793), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(890), 31, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [42747] = 4, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + anon_sym_LBRACE, + anon_sym_RBRACE, + [41376] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1827), 1, + STATE(1806), 1, sym_comment, - ACTIONS(1740), 7, + ACTIONS(747), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(1738), 34, + ACTIONS(749), 34, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -175733,24 +174611,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [42799] = 4, + sym_duration_unit, + [41429] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1828), 1, + STATE(1807), 1, sym_comment, - ACTIONS(1808), 7, + ACTIONS(755), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(1806), 34, + ACTIONS(757), 34, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -175781,22 +174660,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [42851] = 5, + sym_duration_unit, + [41482] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4117), 1, - aux_sym__immediate_decimal_token5, - STATE(1829), 1, + STATE(1808), 1, sym_comment, - ACTIONS(1730), 7, + ACTIONS(789), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, sym__unquoted_pattern, - ACTIONS(1728), 33, + ACTIONS(791), 34, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -175830,14 +174709,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [42905] = 5, + sym_duration_unit, + [41535] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4123), 1, + ACTIONS(4110), 1, + anon_sym_DOT2, + STATE(1858), 1, + sym_path, + STATE(1809), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1496), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1498), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [41592] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4062), 1, aux_sym__immediate_decimal_token5, - STATE(1830), 1, + STATE(1810), 1, sym_comment, - ACTIONS(1808), 7, + ACTIONS(1752), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -175845,10 +174776,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1806), 33, + ACTIONS(1750), 34, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -175879,27 +174811,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [42959] = 8, + [41647] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1956), 1, - anon_sym_LPAREN2, - ACTIONS(1962), 1, - sym__unquoted_pattern, - ACTIONS(4125), 1, - anon_sym_DOT_DOT2, - STATE(1831), 1, + ACTIONS(4113), 1, + aux_sym__immediate_decimal_token5, + STATE(1811), 1, sym_comment, - ACTIONS(4127), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1954), 5, + ACTIONS(1818), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1952), 31, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1816), 34, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -175922,6 +174849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -175931,31 +174859,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [43019] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [41702] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern, - ACTIONS(1946), 1, - anon_sym_LPAREN2, - ACTIONS(4129), 1, - anon_sym_DOT_DOT2, - STATE(1832), 1, + ACTIONS(4115), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4117), 1, + aux_sym__immediate_decimal_token5, + STATE(1812), 1, sym_comment, - ACTIONS(4131), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1944), 5, + ACTIONS(1740), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1942), 31, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1738), 33, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -175974,6 +174900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -175983,124 +174910,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [43079] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1833), 1, - sym_comment, - ACTIONS(1529), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1531), 37, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [43131] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [41759] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1834), 1, - sym_comment, - ACTIONS(1552), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1554), 37, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, + ACTIONS(4072), 1, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [43183] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3982), 1, + ACTIONS(4078), 1, anon_sym_list, - ACTIONS(3984), 1, + ACTIONS(4080), 1, anon_sym_oneof, - STATE(1835), 1, + STATE(1813), 1, sym_comment, - STATE(1843), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4517), 1, - sym__all_type, - ACTIONS(3980), 2, + STATE(1977), 1, + aux_sym__repeat_newline, + STATE(3017), 1, + sym__type_annotation, + ACTIONS(4076), 2, anon_sym_table, anon_sym_record, - STATE(4814), 4, + STATE(3186), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3978), 31, + ACTIONS(4074), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176132,269 +174967,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43245] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1836), 1, - sym_comment, - ACTIONS(1525), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1527), 37, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [43297] = 5, + [41824] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4133), 1, - anon_sym_QMARK2, - STATE(1837), 1, - sym_comment, - ACTIONS(1446), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1448), 36, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + ACTIONS(1790), 1, anon_sym_DQUOTE, + ACTIONS(1792), 1, anon_sym_SQUOTE, + ACTIONS(1794), 1, anon_sym_BQUOTE, - [43351] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1838), 1, - sym_comment, - ACTIONS(747), 6, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(749), 35, + ACTIONS(1796), 1, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_filesize_unit, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [43403] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1839), 1, - sym_comment, - ACTIONS(771), 6, - anon_sym_export, + ACTIONS(3635), 1, aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(773), 35, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_filesize_unit, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [43455] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1840), 1, + STATE(1814), 1, sym_comment, - ACTIONS(874), 6, + STATE(1996), 1, + sym__val_number_decimal, + STATE(3562), 1, + sym_val_string, + STATE(3616), 1, + sym_cmd_identifier, + STATE(5012), 1, + sym__command_name, + ACTIONS(3631), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT_DOT2, - sym_duration_unit, - sym__unquoted_pattern, - ACTIONS(876), 35, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - sym_filesize_unit, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [43507] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4135), 1, - anon_sym_DOT_DOT2, - ACTIONS(4139), 1, - sym_filesize_unit, - ACTIONS(4141), 1, - sym_duration_unit, - ACTIONS(4143), 1, - sym__unquoted_pattern, - STATE(1841), 1, - sym_comment, - ACTIONS(4137), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(793), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(890), 32, - sym_raw_string_begin, + STATE(2247), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176418,36 +175028,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [43569] = 9, + [41901] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3982), 1, + ACTIONS(3759), 1, anon_sym_list, - ACTIONS(3984), 1, + ACTIONS(3761), 1, anon_sym_oneof, - STATE(1842), 1, + ACTIONS(4072), 1, + sym__newline, + STATE(1800), 1, + aux_sym__repeat_newline, + STATE(1815), 1, sym_comment, - STATE(1843), 1, - aux_sym__composite_argument_body_repeat1, - STATE(4591), 1, - sym__all_type, - ACTIONS(3980), 2, + STATE(4565), 1, + sym__type_annotation, + ACTIONS(3757), 2, anon_sym_table, anon_sym_record, - STATE(4814), 4, + STATE(4317), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3978), 31, + ACTIONS(3755), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176479,27 +175083,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43631] = 8, + [41966] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4151), 1, + ACTIONS(4072), 1, + sym__newline, + ACTIONS(4078), 1, anon_sym_list, - ACTIONS(4154), 1, + ACTIONS(4080), 1, anon_sym_oneof, - STATE(4708), 1, - sym__all_type, - ACTIONS(4148), 2, + STATE(1816), 1, + sym_comment, + STATE(1977), 1, + aux_sym__repeat_newline, + STATE(3098), 1, + sym__type_annotation, + ACTIONS(4076), 2, anon_sym_table, anon_sym_record, - STATE(1843), 2, - sym_comment, - aux_sym__composite_argument_body_repeat1, - STATE(4814), 4, + STATE(3186), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4145), 31, + ACTIONS(4074), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176531,75 +175138,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43691] = 5, + [42031] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4133), 1, - anon_sym_BANG, - STATE(1844), 1, - sym_comment, - ACTIONS(1446), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1448), 36, - sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, + ACTIONS(4072), 1, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [43745] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4161), 1, + ACTIONS(4078), 1, anon_sym_list, - ACTIONS(4163), 1, + ACTIONS(4080), 1, anon_sym_oneof, - STATE(1845), 1, + STATE(1813), 1, + aux_sym__repeat_newline, + STATE(1817), 1, sym_comment, - STATE(2337), 1, - sym__all_type, - ACTIONS(4159), 2, + STATE(2970), 1, + sym__type_annotation, + ACTIONS(4076), 2, anon_sym_table, anon_sym_record, - STATE(2371), 4, + STATE(3186), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(4157), 31, + ACTIONS(4074), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176631,17 +175193,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [43804] = 4, + [42096] = 16, ACTIONS(3), 1, anon_sym_POUND, - STATE(1846), 1, + ACTIONS(1790), 1, + anon_sym_DQUOTE, + ACTIONS(1792), 1, + anon_sym_SQUOTE, + ACTIONS(1794), 1, + anon_sym_BQUOTE, + ACTIONS(1796), 1, + sym_raw_string_begin, + ACTIONS(3635), 1, + aux_sym_cmd_identifier_token1, + STATE(1818), 1, sym_comment, - ACTIONS(1663), 3, + STATE(1996), 1, + sym__val_number_decimal, + STATE(3562), 1, + sym_val_string, + STATE(3616), 1, + sym_cmd_identifier, + STATE(5245), 1, + sym__command_name, + ACTIONS(3631), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1661), 37, - sym_raw_string_begin, + ACTIONS(3643), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2247), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176665,246 +175254,227 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, + [42173] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1790), 1, + anon_sym_DQUOTE, + ACTIONS(1792), 1, + anon_sym_SQUOTE, + ACTIONS(1794), 1, + anon_sym_BQUOTE, + ACTIONS(1796), 1, + sym_raw_string_begin, + ACTIONS(3635), 1, + aux_sym_cmd_identifier_token1, + STATE(1819), 1, + sym_comment, + STATE(1996), 1, + sym__val_number_decimal, + STATE(3562), 1, + sym_val_string, + STATE(3616), 1, + sym_cmd_identifier, + STATE(4295), 1, + sym__command_name, + ACTIONS(3631), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + STATE(2247), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3633), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [42250] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1790), 1, anon_sym_DQUOTE, + ACTIONS(1792), 1, anon_sym_SQUOTE, + ACTIONS(1794), 1, anon_sym_BQUOTE, - [43855] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4165), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4167), 1, - aux_sym__immediate_decimal_token5, - STATE(1847), 1, + ACTIONS(1796), 1, + sym_raw_string_begin, + ACTIONS(3635), 1, + aux_sym_cmd_identifier_token1, + STATE(1820), 1, sym_comment, - ACTIONS(1740), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1738), 32, + STATE(1996), 1, + sym__val_number_decimal, + STATE(3562), 1, + sym_val_string, + STATE(3616), 1, + sym_cmd_identifier, + STATE(4374), 1, + sym__command_name, + ACTIONS(3631), 2, + anon_sym_export, anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_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, - [43910] = 4, + ACTIONS(3643), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2247), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3633), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [42327] = 16, ACTIONS(3), 1, anon_sym_POUND, - STATE(1848), 1, - sym_comment, - ACTIONS(1740), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1738), 33, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [43961] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4169), 1, - anon_sym_DOT, - ACTIONS(4171), 1, - aux_sym__immediate_decimal_token5, - STATE(1849), 1, - sym_comment, - ACTIONS(739), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(741), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [44016] = 28, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2662), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2664), 1, - anon_sym_COLON2, - ACTIONS(4173), 1, - anon_sym_null, - ACTIONS(4177), 1, - anon_sym_LPAREN, - ACTIONS(4179), 1, - anon_sym_DOLLAR, - ACTIONS(4181), 1, - anon_sym_DOT_DOT, - ACTIONS(4185), 1, - sym_val_date, - ACTIONS(4187), 1, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(4189), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(4191), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(4193), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4195), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4197), 1, - aux_sym_unquoted_token1, - ACTIONS(4199), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - STATE(1850), 1, + ACTIONS(3635), 1, + aux_sym_cmd_identifier_token1, + STATE(1821), 1, sym_comment, - STATE(1853), 1, - sym__inter_single_quotes, - STATE(1857), 1, - sym__inter_double_quotes, - STATE(3821), 1, + STATE(1996), 1, sym__val_number_decimal, - STATE(5241), 1, - sym_val_bool, - ACTIONS(3024), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3034), 2, + STATE(3562), 1, + sym_val_string, + STATE(3616), 1, + sym_cmd_identifier, + STATE(4933), 1, + sym__command_name, + ACTIONS(3631), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3036), 2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - ACTIONS(4183), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(5221), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4175), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1867), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(1444), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [44115] = 4, + ACTIONS(3633), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [42404] = 16, ACTIONS(3), 1, anon_sym_POUND, - STATE(1851), 1, + ACTIONS(1790), 1, + anon_sym_DQUOTE, + ACTIONS(1792), 1, + anon_sym_SQUOTE, + ACTIONS(1794), 1, + anon_sym_BQUOTE, + ACTIONS(1796), 1, + sym_raw_string_begin, + ACTIONS(3635), 1, + aux_sym_cmd_identifier_token1, + STATE(1822), 1, sym_comment, - ACTIONS(2493), 3, + STATE(1996), 1, + sym__val_number_decimal, + STATE(3562), 1, + sym_val_string, + STATE(3616), 1, + sym_cmd_identifier, + STATE(4910), 1, + sym__command_name, + ACTIONS(3631), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2491), 37, - sym_raw_string_begin, + ACTIONS(3643), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2247), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176928,30 +175498,105 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, + [42481] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1790), 1, + anon_sym_DQUOTE, + ACTIONS(1792), 1, + anon_sym_SQUOTE, + ACTIONS(1794), 1, + anon_sym_BQUOTE, + ACTIONS(1796), 1, + sym_raw_string_begin, + ACTIONS(3635), 1, + aux_sym_cmd_identifier_token1, + STATE(1823), 1, + sym_comment, + STATE(1996), 1, + sym__val_number_decimal, + STATE(3562), 1, + sym_val_string, + STATE(3616), 1, + sym_cmd_identifier, + STATE(5052), 1, + sym__command_name, + ACTIONS(3631), 2, + anon_sym_export, + anon_sym_in, + ACTIONS(3643), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + ACTIONS(3645), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + STATE(2247), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3633), 23, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + [42558] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1790), 1, anon_sym_DQUOTE, + ACTIONS(1792), 1, anon_sym_SQUOTE, + ACTIONS(1794), 1, anon_sym_BQUOTE, - [44166] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1852), 1, + ACTIONS(1796), 1, + sym_raw_string_begin, + ACTIONS(3635), 1, + aux_sym_cmd_identifier_token1, + STATE(1824), 1, sym_comment, - ACTIONS(2497), 3, + STATE(1996), 1, + sym__val_number_decimal, + STATE(3562), 1, + sym_val_string, + STATE(3616), 1, + sym_cmd_identifier, + STATE(3860), 1, + sym__command_name, + ACTIONS(3631), 2, anon_sym_export, - aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2495), 37, - sym_raw_string_begin, + ACTIONS(3643), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3645), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2247), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3633), 23, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -176975,29 +175620,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [44217] = 4, + [42635] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1853), 1, + ACTIONS(3972), 1, + anon_sym_list, + ACTIONS(3974), 1, + anon_sym_oneof, + STATE(1825), 1, + sym_comment, + STATE(1842), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4586), 1, + sym__all_type, + ACTIONS(3970), 2, + anon_sym_table, + anon_sym_record, + STATE(4740), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3968), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [42697] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1826), 1, sym_comment, - ACTIONS(2481), 3, + ACTIONS(1513), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2479), 37, + anon_sym_DOT2, + ACTIONS(1515), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177035,26 +175721,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44268] = 8, + [42749] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3982), 1, + ACTIONS(3972), 1, anon_sym_list, - ACTIONS(3984), 1, + ACTIONS(3974), 1, anon_sym_oneof, - STATE(1854), 1, + STATE(1827), 1, sym_comment, - STATE(4676), 1, - sym__type_annotation, - ACTIONS(3980), 2, + STATE(1842), 1, + aux_sym__composite_argument_body_repeat1, + STATE(4463), 1, + sym__all_type, + ACTIONS(3970), 2, anon_sym_table, anon_sym_record, - STATE(4702), 4, + STATE(4740), 4, sym_flat_type, sym_collection_type, sym_list_type, sym_composite_type, - ACTIONS(3978), 31, + ACTIONS(3968), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -177086,16 +175774,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [44327] = 4, + [42811] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1855), 1, + ACTIONS(4119), 1, + anon_sym_DOT_DOT2, + ACTIONS(4123), 1, + sym_filesize_unit, + ACTIONS(4125), 1, + sym_duration_unit, + ACTIONS(4127), 1, + sym__unquoted_pattern, + STATE(1828), 1, sym_comment, - ACTIONS(2096), 3, + ACTIONS(4121), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(866), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2094), 37, + ACTIONS(908), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177120,12 +175819,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -177133,16 +175827,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44378] = 4, + [42873] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1856), 1, + STATE(1829), 1, sym_comment, - ACTIONS(1802), 3, + ACTIONS(1529), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1800), 37, + anon_sym_DOT2, + ACTIONS(1531), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177180,17 +175875,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44429] = 4, + [42925] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1857), 1, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern, + ACTIONS(4129), 1, + anon_sym_DOT_DOT2, + STATE(1830), 1, + sym_comment, + ACTIONS(4131), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2013), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2011), 31, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [42985] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(874), 1, + anon_sym_DOT_DOT2, + ACTIONS(4133), 1, + sym_filesize_unit, + ACTIONS(4135), 1, + sym_duration_unit, + STATE(1831), 1, + sym_comment, + ACTIONS(876), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(866), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(908), 31, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [43045] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4137), 1, + anon_sym_QMARK2, + STATE(1832), 1, sym_comment, - ACTIONS(2481), 3, + ACTIONS(1450), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2479), 37, + anon_sym_DOT2, + ACTIONS(1452), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177217,8 +176020,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, @@ -177227,16 +176028,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44480] = 4, + [43099] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1858), 1, + STATE(1833), 1, + sym_comment, + ACTIONS(1740), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1738), 34, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [43151] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1834), 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, + sym__unquoted_pattern, + ACTIONS(1816), 34, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [43203] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1835), 1, + sym_comment, + ACTIONS(1856), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1854), 34, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [43255] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4070), 1, + aux_sym__immediate_decimal_token5, + STATE(1836), 1, + sym_comment, + ACTIONS(1752), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1750), 33, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [43309] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1837), 1, sym_comment, - ACTIONS(2122), 3, + ACTIONS(747), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2120), 37, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(749), 35, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177261,79 +176258,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44531] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4201), 1, - sym__entry_separator, - STATE(1859), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3713), 38, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_GT2, - anon_sym_oneof, - [44582] = 4, + [43361] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1860), 1, + STATE(1838), 1, sym_comment, - ACTIONS(1552), 4, + ACTIONS(1533), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1554), 36, + ACTIONS(1535), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177360,6 +176307,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, @@ -177368,68 +176317,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44633] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4204), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4206), 1, - aux_sym__immediate_decimal_token5, - STATE(1861), 1, - sym_comment, - ACTIONS(747), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(749), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [44688] = 4, + [43413] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1862), 1, + STATE(1839), 1, sym_comment, - ACTIONS(1525), 4, + ACTIONS(755), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1527), 36, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(757), 35, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177453,27 +176354,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44739] = 4, + [43465] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1863), 1, + STATE(1840), 1, sym_comment, - ACTIONS(1572), 3, + ACTIONS(789), 6, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1574), 37, + anon_sym_DOT_DOT2, + sym_duration_unit, + sym__unquoted_pattern, + ACTIONS(791), 35, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177498,30 +176402,183 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + sym_filesize_unit, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44790] = 4, + [43517] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1864), 1, + ACTIONS(4139), 1, + aux_sym__immediate_decimal_token5, + STATE(1841), 1, sym_comment, - ACTIONS(1529), 4, + ACTIONS(1818), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1816), 33, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [43571] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4147), 1, + anon_sym_list, + ACTIONS(4150), 1, + anon_sym_oneof, + STATE(4693), 1, + sym__all_type, + ACTIONS(4144), 2, + anon_sym_table, + anon_sym_record, + STATE(1842), 2, + sym_comment, + aux_sym__composite_argument_body_repeat1, + STATE(4740), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4141), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [43631] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + ACTIONS(4153), 1, + anon_sym_DOT_DOT2, + STATE(1843), 1, + sym_comment, + ACTIONS(4155), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2003), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2001), 31, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [43691] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4137), 1, + anon_sym_BANG, + STATE(1844), 1, + sym_comment, + ACTIONS(1450), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, anon_sym_DOT2, - ACTIONS(1531), 36, + ACTIONS(1452), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -177558,16 +176615,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44841] = 4, + [43745] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1865), 1, + ACTIONS(3972), 1, + anon_sym_list, + ACTIONS(3974), 1, + anon_sym_oneof, + STATE(1845), 1, + sym_comment, + STATE(4795), 1, + sym__type_annotation, + ACTIONS(3970), 2, + anon_sym_table, + anon_sym_record, + STATE(4692), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3968), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [43804] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1846), 1, + sym_comment, + ACTIONS(1740), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1738), 33, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [43855] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1847), 1, sym_comment, - ACTIONS(2485), 3, + ACTIONS(2152), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2483), 37, + ACTIONS(2150), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177605,16 +176760,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44892] = 4, + [43906] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1866), 1, + STATE(1848), 1, sym_comment, - ACTIONS(2489), 3, + ACTIONS(1525), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2487), 37, + ACTIONS(1527), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177652,16 +176807,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44943] = 4, + [43957] = 28, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2702), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2704), 1, + anon_sym_COLON2, + ACTIONS(4157), 1, + anon_sym_null, + ACTIONS(4161), 1, + anon_sym_LPAREN, + ACTIONS(4163), 1, + anon_sym_DOLLAR, + ACTIONS(4165), 1, + anon_sym_DOT_DOT, + ACTIONS(4169), 1, + sym_val_date, + ACTIONS(4171), 1, + anon_sym_DQUOTE, + ACTIONS(4173), 1, + anon_sym_SQUOTE, + ACTIONS(4175), 1, + anon_sym_BQUOTE, + ACTIONS(4177), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4179), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4181), 1, + aux_sym_unquoted_token1, + ACTIONS(4183), 1, + sym_raw_string_begin, + STATE(1849), 1, + sym_comment, + STATE(1854), 1, + sym__inter_single_quotes, + STATE(1878), 1, + sym__inter_double_quotes, + STATE(3895), 1, + sym__val_number_decimal, + STATE(5221), 1, + sym_val_bool, + ACTIONS(3024), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3034), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3036), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(4167), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5139), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4159), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1867), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1445), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [44056] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1867), 1, + STATE(1850), 1, sym_comment, - ACTIONS(1505), 3, + ACTIONS(2178), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1507), 37, + ACTIONS(2176), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177699,67 +176925,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [44994] = 8, - ACTIONS(3), 1, + [44107] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3799), 1, - anon_sym_list, - ACTIONS(3801), 1, - anon_sym_oneof, - STATE(1868), 1, + ACTIONS(4185), 1, + anon_sym_DOT, + ACTIONS(4187), 1, + aux_sym__immediate_decimal_token5, + STATE(1851), 1, sym_comment, - STATE(5244), 1, - sym__type_annotation, - ACTIONS(3797), 2, - anon_sym_table, - anon_sym_record, - STATE(4316), 4, - sym_flat_type, - sym_collection_type, - sym_list_type, - sym_composite_type, - ACTIONS(3795), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [45053] = 4, + ACTIONS(739), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(741), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [44162] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4189), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4191), 1, + aux_sym__immediate_decimal_token5, + STATE(1852), 1, + sym_comment, + ACTIONS(747), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(749), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [44217] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4193), 1, + anon_sym_DOT, + ACTIONS(4195), 1, + aux_sym__immediate_decimal_token5, + STATE(1853), 1, + sym_comment, + ACTIONS(1752), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1750), 32, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [44272] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1869), 1, + STATE(1854), 1, sym_comment, - ACTIONS(1509), 3, + ACTIONS(2499), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1511), 37, + ACTIONS(2497), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -177797,27 +177119,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45104] = 8, + [44323] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern, - ACTIONS(1946), 1, - anon_sym_LPAREN2, - ACTIONS(4208), 1, - anon_sym_DOT_DOT2, - STATE(1870), 1, + STATE(1855), 1, sym_comment, - ACTIONS(4210), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1944), 5, + ACTIONS(1818), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1942), 30, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1816), 33, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -177839,6 +177154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -177848,27 +177164,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [45163] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [44374] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1956), 1, - anon_sym_LPAREN2, - ACTIONS(1962), 1, - sym__unquoted_pattern, - ACTIONS(4212), 1, - anon_sym_DOT_DOT2, - STATE(1871), 1, + STATE(1856), 1, sym_comment, - ACTIONS(4214), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1954), 5, + ACTIONS(1856), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1952), 30, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1854), 33, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -177890,6 +177201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -177899,17 +177211,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [45222] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [44425] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4197), 1, + sym__entry_separator, + STATE(1857), 2, + sym_comment, + aux_sym__types_body_repeat2, + ACTIONS(3685), 38, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_GT2, + anon_sym_oneof, + [44476] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1872), 1, + STATE(1858), 1, sym_comment, - ACTIONS(1458), 3, + ACTIONS(1513), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1460), 37, + anon_sym_DOT2, + ACTIONS(1515), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -177936,8 +177299,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, @@ -177946,20 +177307,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45273] = 4, + [44527] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1873), 1, + ACTIONS(4133), 1, + sym_filesize_unit, + ACTIONS(4135), 1, + sym_duration_unit, + ACTIONS(4200), 1, + anon_sym_DOT_DOT2, + STATE(1859), 1, sym_comment, - ACTIONS(1808), 7, + ACTIONS(4202), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(866), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1806), 33, + ACTIONS(908), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -177981,7 +177349,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -177991,32 +177358,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, - [45324] = 8, + [44586] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4119), 1, - sym_filesize_unit, - ACTIONS(4121), 1, - sym_duration_unit, - ACTIONS(4216), 1, - anon_sym_DOT_DOT2, - STATE(1874), 1, + ACTIONS(4204), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4206), 1, + aux_sym__immediate_decimal_token5, + STATE(1860), 1, sym_comment, - ACTIONS(4218), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(793), 5, + ACTIONS(1740), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(890), 30, + sym__unquoted_pattern, + ACTIONS(1738), 32, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -178035,6 +177397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -178044,16 +177407,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [45383] = 4, + [44641] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1875), 1, + STATE(1861), 1, sym_comment, - ACTIONS(1513), 3, + ACTIONS(1649), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1515), 37, + ACTIONS(1647), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -178091,16 +177454,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45434] = 4, + [44692] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1876), 1, + STATE(1862), 1, sym_comment, - ACTIONS(1517), 3, + ACTIONS(2132), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1519), 37, + ACTIONS(2130), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -178138,16 +177501,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45485] = 4, + [44743] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1877), 1, + STATE(1863), 1, sym_comment, - ACTIONS(1521), 3, + ACTIONS(1770), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1523), 37, + ACTIONS(1768), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -178185,121 +177548,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45536] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1878), 1, - sym_comment, - ACTIONS(1846), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1844), 33, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [45587] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4220), 1, - anon_sym_DOT, - ACTIONS(4222), 1, - aux_sym__immediate_decimal_token5, - STATE(1879), 1, - sym_comment, - ACTIONS(1730), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1728), 32, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [45642] = 8, + [44794] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4224), 1, - anon_sym_DOT2, - STATE(1880), 1, + STATE(1864), 1, sym_comment, - STATE(1917), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2130), 1, - sym_path, - STATE(2188), 1, - sym_cell_path, - ACTIONS(1850), 3, + ACTIONS(1529), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1848), 32, + anon_sym_DOT2, + ACTIONS(1531), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178323,7 +177584,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -178331,18 +177595,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45700] = 4, + [44845] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1881), 1, + STATE(1865), 1, sym_comment, - ACTIONS(2493), 3, + ACTIONS(2503), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2491), 36, + ACTIONS(2501), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178369,6 +177632,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, @@ -178377,62 +177642,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45750] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3732), 1, - sym__entry_separator, - STATE(1882), 1, - sym_comment, - ACTIONS(3730), 38, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_GT2, - anon_sym_oneof, - [45800] = 4, + [44896] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1883), 1, + STATE(1866), 1, sym_comment, - ACTIONS(1572), 3, + ACTIONS(1533), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1574), 36, + anon_sym_DOT2, + ACTIONS(1535), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -178469,18 +177689,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45850] = 4, + [44947] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1884), 1, + STATE(1867), 1, sym_comment, - ACTIONS(1513), 3, + ACTIONS(1505), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1515), 36, + ACTIONS(1507), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178507,6 +177726,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, @@ -178515,18 +177736,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45900] = 4, + [44998] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1885), 1, + STATE(1868), 1, sym_comment, - ACTIONS(1517), 3, + ACTIONS(1458), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1519), 36, + ACTIONS(1460), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178553,6 +177773,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, @@ -178561,18 +177783,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [45950] = 4, + [45049] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1886), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + ACTIONS(4208), 1, + anon_sym_DOT_DOT2, + STATE(1869), 1, sym_comment, - ACTIONS(1521), 3, + ACTIONS(4210), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2003), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2001), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [45108] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1870), 1, + sym_comment, + ACTIONS(1509), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1523), 36, + ACTIONS(1511), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178599,6 +177871,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, @@ -178607,18 +177881,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46000] = 4, + [45159] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1887), 1, + STATE(1871), 1, sym_comment, - ACTIONS(2497), 3, + ACTIONS(1572), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2495), 36, + ACTIONS(1574), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178645,6 +177918,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, @@ -178653,140 +177928,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46050] = 5, + [45210] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4226), 1, - aux_sym__immediate_decimal_token5, - STATE(1888), 1, - sym_comment, - ACTIONS(1808), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1806), 32, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [46102] = 27, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2533), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(4173), 1, - anon_sym_null, - ACTIONS(4177), 1, - anon_sym_LPAREN, - ACTIONS(4179), 1, - anon_sym_DOLLAR, - ACTIONS(4181), 1, - anon_sym_DOT_DOT, - ACTIONS(4185), 1, - sym_val_date, - ACTIONS(4187), 1, - anon_sym_DQUOTE, - ACTIONS(4189), 1, - anon_sym_SQUOTE, - ACTIONS(4191), 1, - anon_sym_BQUOTE, - ACTIONS(4193), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4195), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4197), 1, - aux_sym_unquoted_token1, - ACTIONS(4199), 1, - sym_raw_string_begin, - STATE(1853), 1, - sym__inter_single_quotes, - STATE(1857), 1, - sym__inter_double_quotes, - STATE(1889), 1, + ACTIONS(3759), 1, + anon_sym_list, + ACTIONS(3761), 1, + anon_sym_oneof, + STATE(1872), 1, sym_comment, - STATE(3821), 1, - sym__val_number_decimal, - STATE(5241), 1, - sym_val_bool, - ACTIONS(3024), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3034), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3036), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(4183), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(5221), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4175), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1867), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1444), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [46198] = 8, + STATE(5026), 1, + sym__type_annotation, + ACTIONS(3757), 2, + anon_sym_table, + anon_sym_record, + STATE(4317), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(3755), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [45269] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4224), 1, - anon_sym_DOT2, - STATE(1890), 1, + STATE(1873), 1, sym_comment, - STATE(1917), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2130), 1, - sym_path, - STATE(2191), 1, - sym_cell_path, - ACTIONS(1864), 3, + ACTIONS(2507), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1862), 32, + ACTIONS(2505), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -178811,7 +178013,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_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, @@ -178819,24 +178026,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46256] = 8, + [45320] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4224), 1, - anon_sym_DOT2, - STATE(1891), 1, + STATE(1874), 1, sym_comment, - STATE(1917), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2130), 1, - sym_path, - STATE(2197), 1, - sym_cell_path, - ACTIONS(1840), 3, + ACTIONS(1517), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1838), 32, + ACTIONS(1519), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -178861,7 +178060,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_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, @@ -178869,24 +178073,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46314] = 8, + [45371] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4224), 1, - anon_sym_DOT2, - STATE(1892), 1, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern, + ACTIONS(4212), 1, + anon_sym_DOT_DOT2, + STATE(1875), 1, sym_comment, - STATE(1917), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2130), 1, - sym_path, - STATE(2190), 1, - sym_cell_path, - ACTIONS(1432), 3, + ACTIONS(4214), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2013), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2011), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [45430] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1876), 1, + sym_comment, + ACTIONS(1521), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1434), 32, + ACTIONS(1523), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -178911,7 +178158,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_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, @@ -178919,18 +178171,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46372] = 4, + [45481] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1893), 1, + ACTIONS(4220), 1, + anon_sym_list, + ACTIONS(4222), 1, + anon_sym_oneof, + STATE(1877), 1, + sym_comment, + STATE(2348), 1, + sym__all_type, + ACTIONS(4218), 2, + anon_sym_table, + anon_sym_record, + STATE(2383), 4, + sym_flat_type, + sym_collection_type, + sym_list_type, + sym_composite_type, + ACTIONS(4216), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [45540] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1878), 1, sym_comment, - ACTIONS(2485), 3, + ACTIONS(2499), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2483), 36, + ACTIONS(2497), 37, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -178957,6 +178259,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, @@ -178965,93 +178269,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46422] = 27, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2878), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(4173), 1, - anon_sym_null, - ACTIONS(4185), 1, - sym_val_date, - ACTIONS(4230), 1, - anon_sym_LPAREN, - ACTIONS(4232), 1, - anon_sym_DOLLAR, - ACTIONS(4234), 1, - anon_sym_DOT_DOT, - ACTIONS(4238), 1, - anon_sym_DQUOTE, - ACTIONS(4240), 1, - anon_sym_SQUOTE, - ACTIONS(4242), 1, - anon_sym_BQUOTE, - ACTIONS(4244), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4246), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4248), 1, - aux_sym_unquoted_token1, - ACTIONS(4250), 1, - sym_raw_string_begin, - STATE(1894), 1, - sym_comment, - STATE(1903), 1, - sym__inter_single_quotes, - STATE(1904), 1, - sym__inter_double_quotes, - STATE(3842), 1, - sym__val_number_decimal, - STATE(5241), 1, - sym_val_bool, - ACTIONS(3024), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3034), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3036), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(4236), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(5109), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4228), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1908), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1450), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [46518] = 8, + [45591] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4224), 1, - anon_sym_DOT2, - STATE(1895), 1, + STATE(1879), 1, sym_comment, - STATE(1917), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2130), 1, - sym_path, - STATE(2183), 1, - sym_cell_path, - ACTIONS(1884), 3, + ACTIONS(2182), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1882), 32, + ACTIONS(2180), 37, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -179076,7 +178303,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_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, @@ -179084,72 +178316,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46576] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4252), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4254), 1, - aux_sym__immediate_decimal_token5, - STATE(1896), 1, - sym_comment, - ACTIONS(747), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - ACTIONS(749), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [46630] = 7, + [45642] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4256), 1, - anon_sym_QMARK2, - ACTIONS(4258), 1, - anon_sym_BANG, - STATE(1897), 1, + STATE(1880), 1, sym_comment, - STATE(2123), 1, - sym__path_suffix, - ACTIONS(1438), 4, + ACTIONS(1572), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1440), 32, + ACTIONS(1574), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -179173,7 +178351,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -179181,24 +178362,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46686] = 8, + [45692] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4224), 1, anon_sym_DOT2, - STATE(1898), 1, + STATE(1881), 1, sym_comment, - STATE(1917), 1, + STATE(1946), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2130), 1, + STATE(2122), 1, sym_path, - STATE(2169), 1, + STATE(2207), 1, sym_cell_path, - ACTIONS(1856), 3, + ACTIONS(1851), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1854), 32, + ACTIONS(1848), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -179231,62 +178412,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46744] = 4, - ACTIONS(3), 1, + [45750] = 27, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1899), 1, - sym_comment, - ACTIONS(1802), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1800), 36, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4157), 1, + anon_sym_null, + ACTIONS(4161), 1, + anon_sym_LPAREN, + ACTIONS(4163), 1, + anon_sym_DOLLAR, + ACTIONS(4165), 1, + anon_sym_DOT_DOT, + ACTIONS(4169), 1, + sym_val_date, + ACTIONS(4171), 1, + anon_sym_DQUOTE, + ACTIONS(4173), 1, + anon_sym_SQUOTE, + ACTIONS(4175), 1, + anon_sym_BQUOTE, + ACTIONS(4177), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4179), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4181), 1, + aux_sym_unquoted_token1, + ACTIONS(4183), 1, sym_raw_string_begin, - ts_builtin_sym_end, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + STATE(1854), 1, + sym__inter_single_quotes, + STATE(1878), 1, + sym__inter_double_quotes, + STATE(1882), 1, + sym_comment, + STATE(3895), 1, + sym__val_number_decimal, + STATE(5221), 1, + sym_val_bool, + ACTIONS(3024), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + ACTIONS(3034), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, + ACTIONS(3036), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [46794] = 4, + ACTIONS(4167), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5139), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4159), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1867), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1445), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [45846] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1900), 1, + STATE(1883), 1, sym_comment, - ACTIONS(2122), 3, + ACTIONS(1521), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2120), 36, + ACTIONS(1523), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -179323,16 +178527,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46844] = 4, + [45896] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1901), 1, + STATE(1884), 1, sym_comment, - ACTIONS(2096), 3, + ACTIONS(2499), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2094), 36, + ACTIONS(2497), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -179369,64 +178573,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46894] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4260), 1, - anon_sym_DOT, - ACTIONS(4262), 1, - aux_sym__immediate_decimal_token5, - STATE(1902), 1, - sym_comment, - ACTIONS(739), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - ACTIONS(741), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [46948] = 4, + [45946] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1903), 1, + STATE(1885), 1, sym_comment, - ACTIONS(2481), 3, + ACTIONS(2499), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2479), 36, + ACTIONS(2497), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -179463,18 +178619,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [46998] = 4, + [45996] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1904), 1, + ACTIONS(4224), 1, + anon_sym_DOT2, + STATE(1886), 1, sym_comment, - ACTIONS(2481), 3, + STATE(1946), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2122), 1, + sym_path, + STATE(2187), 1, + sym_cell_path, + ACTIONS(1444), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2479), 36, + ACTIONS(1446), 32, sym_raw_string_begin, - ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -179498,10 +178661,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -179509,72 +178669,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47048] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4171), 1, - aux_sym__immediate_decimal_token5, - STATE(1905), 1, - sym_comment, - ACTIONS(739), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(741), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [47100] = 8, + [46054] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4224), 1, - anon_sym_DOT2, - STATE(1906), 1, + STATE(1887), 1, sym_comment, - STATE(1917), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2130), 1, - sym_path, - STATE(2203), 1, - sym_cell_path, - ACTIONS(1889), 3, + ACTIONS(1517), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1886), 32, + ACTIONS(1519), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -179598,7 +178704,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -179606,64 +178715,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47158] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4264), 1, - anon_sym_DOT, - ACTIONS(4266), 1, - aux_sym__immediate_decimal_token5, - STATE(1907), 1, - sym_comment, - ACTIONS(1730), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1728), 31, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [47212] = 4, + [46104] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1908), 1, + STATE(1888), 1, sym_comment, - ACTIONS(1505), 3, + ACTIONS(2507), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1507), 36, + ACTIONS(2505), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -179700,16 +178761,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47262] = 4, + [46154] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1909), 1, + STATE(1889), 1, sym_comment, - ACTIONS(1663), 3, + ACTIONS(2178), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1661), 36, + ACTIONS(2176), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -179746,63 +178807,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47312] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4222), 1, - aux_sym__immediate_decimal_token5, - STATE(1910), 1, - sym_comment, - ACTIONS(1730), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1728), 32, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [47364] = 4, + [46204] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1911), 1, + STATE(1890), 1, sym_comment, - ACTIONS(1509), 3, + ACTIONS(1505), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1511), 36, + ACTIONS(1507), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -179839,63 +178853,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47414] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4268), 1, - aux_sym__immediate_decimal_token5, - STATE(1912), 1, - sym_comment, - ACTIONS(771), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(773), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [47466] = 4, + [46254] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1913), 1, + STATE(1891), 1, sym_comment, - ACTIONS(1458), 3, + ACTIONS(2132), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1460), 36, + ACTIONS(2130), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -179932,64 +178899,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47516] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4270), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4272), 1, - aux_sym__immediate_decimal_token5, - STATE(1914), 1, - sym_comment, - ACTIONS(1740), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1738), 31, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [47570] = 4, + [46304] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1915), 1, + STATE(1892), 1, sym_comment, - ACTIONS(2489), 3, + ACTIONS(2182), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2487), 36, + ACTIONS(2180), 36, sym_raw_string_begin, ts_builtin_sym_end, anon_sym_alias, @@ -180026,18 +178945,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47620] = 6, + [46354] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4274), 1, - anon_sym_RBRACK, - ACTIONS(4278), 1, + ACTIONS(3732), 1, sym__entry_separator, - STATE(1859), 1, - aux_sym__types_body_repeat2, - STATE(1916), 1, + STATE(1893), 1, sym_comment, - ACTIONS(4276), 35, + ACTIONS(3730), 38, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -180072,23 +178989,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, + anon_sym_GT2, anon_sym_oneof, - [47673] = 7, + [46404] = 27, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(4157), 1, + anon_sym_null, + ACTIONS(4169), 1, + sym_val_date, + ACTIONS(4228), 1, + anon_sym_LPAREN, + ACTIONS(4230), 1, + anon_sym_DOLLAR, + ACTIONS(4232), 1, + anon_sym_DOT_DOT, + ACTIONS(4236), 1, + anon_sym_DQUOTE, + ACTIONS(4238), 1, + anon_sym_SQUOTE, + ACTIONS(4240), 1, + anon_sym_BQUOTE, + ACTIONS(4242), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4244), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4246), 1, + aux_sym_unquoted_token1, + ACTIONS(4248), 1, + sym_raw_string_begin, + STATE(1884), 1, + sym__inter_single_quotes, + STATE(1885), 1, + sym__inter_double_quotes, + STATE(1894), 1, + sym_comment, + STATE(3794), 1, + sym__val_number_decimal, + STATE(5221), 1, + sym_val_bool, + ACTIONS(3024), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3034), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3036), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(4234), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5083), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4226), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1890), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1450), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [46500] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4224), 1, - anon_sym_DOT2, - STATE(1917), 1, + ACTIONS(4250), 1, + anon_sym_QMARK2, + ACTIONS(4252), 1, + anon_sym_BANG, + STATE(1895), 1, sym_comment, - STATE(1920), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2130), 1, - sym_path, - ACTIONS(1490), 3, + STATE(2113), 1, + sym__path_suffix, + ACTIONS(1432), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1492), 32, + anon_sym_DOT2, + ACTIONS(1434), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -180121,22 +179109,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47728] = 6, + [46556] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(2513), 1, - anon_sym_LPAREN2, - STATE(1918), 1, + ACTIONS(4254), 1, + aux_sym__immediate_decimal_token5, + STATE(1896), 1, sym_comment, - ACTIONS(2511), 5, + ACTIONS(1818), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2509), 31, + sym__unquoted_pattern, + ACTIONS(1816), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -180159,6 +179146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -180168,67 +179156,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [47781] = 4, + [46608] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1919), 1, + ACTIONS(4256), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4258), 1, + aux_sym__immediate_decimal_token5, + STATE(1897), 1, sym_comment, - ACTIONS(1505), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(1740), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1738), 31, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1507), 34, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [47830] = 6, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_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, + [46662] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4280), 1, - anon_sym_DOT2, - STATE(2130), 1, - sym_path, - STATE(1920), 2, + STATE(1898), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1494), 3, + ACTIONS(1525), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1496), 32, + ACTIONS(1527), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -180252,7 +179239,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -180260,63 +179250,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [47883] = 4, - ACTIONS(3), 1, + [46712] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1921), 1, + ACTIONS(4260), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4262), 1, + aux_sym__immediate_decimal_token5, + STATE(1899), 1, sym_comment, - ACTIONS(1509), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1511), 34, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [47932] = 4, + ACTIONS(747), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(749), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [46766] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1922), 1, + STATE(1900), 1, sym_comment, - ACTIONS(1458), 4, + ACTIONS(1509), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1460), 34, + ACTIONS(1511), 36, sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_alias, anon_sym_let, anon_sym_mut, @@ -180340,7 +179333,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -180348,19 +179344,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [47981] = 4, + [46816] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1923), 1, + ACTIONS(4224), 1, + anon_sym_DOT2, + STATE(1901), 1, sym_comment, - ACTIONS(1513), 4, + STATE(1946), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2122), 1, + sym_path, + STATE(2174), 1, + sym_cell_path, + ACTIONS(1878), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1515), 34, + ACTIONS(1876), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -180393,19 +179394,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [48030] = 4, + [46874] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1924), 1, + ACTIONS(4224), 1, + anon_sym_DOT2, + STATE(1902), 1, sym_comment, - ACTIONS(1517), 4, + STATE(1946), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2122), 1, + sym_path, + STATE(2208), 1, + sym_cell_path, + ACTIONS(1870), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1519), 34, + ACTIONS(1868), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -180438,485 +179444,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [48079] = 4, + [46932] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(1925), 1, + ACTIONS(4224), 1, + anon_sym_DOT2, + STATE(1903), 1, sym_comment, - ACTIONS(1521), 4, + STATE(1946), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2122), 1, + sym_path, + STATE(2161), 1, + sym_cell_path, + ACTIONS(1874), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1523), 34, + ACTIONS(1872), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [48128] = 27, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3034), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4177), 1, - anon_sym_LPAREN, - ACTIONS(4179), 1, - anon_sym_DOLLAR, - ACTIONS(4181), 1, - anon_sym_DOT_DOT, - ACTIONS(4187), 1, - anon_sym_DQUOTE, - ACTIONS(4189), 1, - anon_sym_SQUOTE, - ACTIONS(4191), 1, - anon_sym_BQUOTE, - ACTIONS(4193), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4195), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4197), 1, - aux_sym_unquoted_token1, - ACTIONS(4199), 1, - sym_raw_string_begin, - ACTIONS(4285), 1, - anon_sym_null, - ACTIONS(4289), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4293), 1, - sym_val_date, - STATE(1853), 1, - sym__inter_single_quotes, - STATE(1857), 1, - sym__inter_double_quotes, - STATE(1926), 1, - sym_comment, - STATE(3821), 1, - sym__val_number_decimal, - STATE(5241), 1, - sym_val_bool, - ACTIONS(4183), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4283), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4291), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(5221), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4287), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1867), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1442), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [48223] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1927), 1, - sym_comment, - ACTIONS(1740), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1738), 32, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [48272] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4278), 1, - sym__entry_separator, - ACTIONS(4297), 1, - anon_sym_GT2, - STATE(1859), 1, - aux_sym__types_body_repeat2, - STATE(1928), 1, - sym_comment, - ACTIONS(4295), 35, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [48325] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4278), 1, - sym__entry_separator, - ACTIONS(4299), 1, - anon_sym_GT2, - STATE(1859), 1, - aux_sym__types_body_repeat2, - STATE(1929), 1, - sym_comment, - ACTIONS(4295), 35, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [48378] = 27, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3034), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4230), 1, - anon_sym_LPAREN, - ACTIONS(4232), 1, - anon_sym_DOLLAR, - ACTIONS(4234), 1, - anon_sym_DOT_DOT, - ACTIONS(4238), 1, - anon_sym_DQUOTE, - ACTIONS(4240), 1, - anon_sym_SQUOTE, - ACTIONS(4242), 1, - anon_sym_BQUOTE, - ACTIONS(4244), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4246), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4248), 1, - aux_sym_unquoted_token1, - ACTIONS(4250), 1, - sym_raw_string_begin, - ACTIONS(4285), 1, - anon_sym_null, - ACTIONS(4289), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4293), 1, - sym_val_date, - STATE(1903), 1, - sym__inter_single_quotes, - STATE(1904), 1, - sym__inter_double_quotes, - STATE(1930), 1, - sym_comment, - STATE(3842), 1, - sym__val_number_decimal, - STATE(5241), 1, - sym_val_bool, - ACTIONS(4236), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4283), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4291), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(5109), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4301), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(1908), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1454), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - [48473] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4278), 1, - sym__entry_separator, - ACTIONS(4303), 1, - anon_sym_RBRACK, - STATE(1859), 1, - aux_sym__types_body_repeat2, - STATE(1931), 1, - sym_comment, - ACTIONS(4276), 35, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [48526] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4305), 1, - aux_sym__immediate_decimal_token5, - STATE(1932), 1, - sym_comment, - ACTIONS(771), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - ACTIONS(773), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [48577] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2570), 1, - anon_sym_LPAREN2, - ACTIONS(2572), 1, - sym__unquoted_pattern, - STATE(1933), 1, - sym_comment, - ACTIONS(996), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(994), 31, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [48630] = 4, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [46990] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1934), 1, + ACTIONS(4264), 1, + anon_sym_DOT, + ACTIONS(4266), 1, + aux_sym__immediate_decimal_token5, + STATE(1904), 1, sym_comment, - ACTIONS(2327), 6, + ACTIONS(1752), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(2325), 32, + ACTIONS(1750), 31, anon_sym_in, - sym__newline, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -180945,64 +179542,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48679] = 4, + [47044] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1935), 1, + STATE(1905), 1, sym_comment, - ACTIONS(1808), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1806), 32, + ACTIONS(2503), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, + ACTIONS(2501), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [48728] = 4, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [47094] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1936), 1, + ACTIONS(4195), 1, + aux_sym__immediate_decimal_token5, + STATE(1906), 1, sym_comment, - ACTIONS(1846), 6, + ACTIONS(1752), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1844), 32, + ACTIONS(1750), 32, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -181035,153 +179635,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [48777] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4278), 1, - sym__entry_separator, - ACTIONS(4307), 1, - anon_sym_RBRACK, - STATE(1859), 1, - aux_sym__types_body_repeat2, - STATE(1937), 1, - sym_comment, - ACTIONS(4276), 35, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [48830] = 6, + [47146] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4278), 1, - sym__entry_separator, - ACTIONS(4309), 1, - anon_sym_RBRACK, - STATE(1859), 1, - aux_sym__types_body_repeat2, - STATE(1938), 1, + ACTIONS(4187), 1, + aux_sym__immediate_decimal_token5, + STATE(1907), 1, sym_comment, - ACTIONS(4276), 35, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [48883] = 6, + ACTIONS(739), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(741), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [47198] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4311), 1, - anon_sym_DOT_DOT2, - STATE(1939), 1, + STATE(1908), 1, sym_comment, - ACTIONS(4313), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2078), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2074), 30, + ACTIONS(2152), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [48936] = 4, + ACTIONS(2150), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [47248] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(1940), 1, + ACTIONS(4268), 1, + aux_sym__immediate_decimal_token5, + STATE(1909), 1, sym_comment, - ACTIONS(874), 8, + ACTIONS(755), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -181190,7 +179744,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, sym_filesize_unit, anon_sym_COLON2, - ACTIONS(876), 30, + ACTIONS(757), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -181221,12 +179775,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [48985] = 5, + [47300] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4224), 1, + anon_sym_DOT2, + STATE(1910), 1, + sym_comment, + STATE(1946), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2122), 1, + sym_path, + STATE(2198), 1, + sym_cell_path, + ACTIONS(1846), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1844), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [47358] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4262), 1, + ACTIONS(4270), 1, + anon_sym_DOT, + ACTIONS(4272), 1, aux_sym__immediate_decimal_token5, - STATE(1941), 1, + STATE(1911), 1, sym_comment, ACTIONS(739), 7, anon_sym_STAR, @@ -181267,63 +179873,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [49036] = 6, + [47412] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2570), 1, - anon_sym_LPAREN2, - ACTIONS(2572), 1, - sym__unquoted_pattern, - STATE(1942), 1, + STATE(1912), 1, sym_comment, - ACTIONS(1004), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1012), 31, + ACTIONS(1770), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, + ACTIONS(1768), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [49089] = 4, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [47462] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4315), 1, + STATE(1913), 1, + sym_comment, + ACTIONS(1649), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1647), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, sym__newline, - STATE(1943), 2, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [47512] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4224), 1, + anon_sym_DOT2, + STATE(1914), 1, sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3736), 36, + STATE(1946), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2122), 1, + sym_path, + STATE(2210), 1, + sym_cell_path, + ACTIONS(1840), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1838), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [47570] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1915), 1, + sym_comment, + ACTIONS(1458), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1460), 36, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [47620] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4274), 1, + anon_sym_RBRACK, + ACTIONS(4278), 1, + sym__entry_separator, + STATE(1857), 1, + aux_sym__types_body_repeat2, + STATE(1916), 1, + sym_comment, + ACTIONS(4276), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -181359,222 +180108,250 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [49138] = 6, + [47673] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2529), 1, - anon_sym_LPAREN2, - ACTIONS(2531), 1, - sym__unquoted_pattern, - STATE(1944), 1, + ACTIONS(4284), 1, + sym_long_flag_identifier, + ACTIONS(4286), 1, + anon_sym_EQ2, + STATE(1917), 1, sym_comment, - ACTIONS(2527), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2525), 31, + STATE(2162), 1, + sym__flag_equals_value, + ACTIONS(4282), 9, + sym_raw_string_begin, + aux_sym_cmd_identifier_token4, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + ACTIONS(4280), 26, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [49191] = 6, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_decimal_token1, + [47728] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern, - ACTIONS(1946), 1, - anon_sym_LPAREN2, - STATE(1945), 1, + STATE(1918), 1, sym_comment, - ACTIONS(1944), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1942), 31, + ACTIONS(1505), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [49244] = 6, + anon_sym_DOT2, + ACTIONS(1507), 34, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [47777] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2566), 1, - anon_sym_LPAREN2, - ACTIONS(2568), 1, - sym__unquoted_pattern, - STATE(1946), 1, + STATE(1919), 1, sym_comment, - ACTIONS(2564), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2562), 31, + ACTIONS(1458), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [49297] = 6, + anon_sym_DOT2, + ACTIONS(1460), 34, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [47826] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2554), 1, - anon_sym_LPAREN2, - ACTIONS(2556), 1, - sym__unquoted_pattern, - STATE(1947), 1, + STATE(1920), 1, sym_comment, - ACTIONS(1615), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1689), 31, + ACTIONS(1509), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [49350] = 7, + anon_sym_DOT2, + ACTIONS(1511), 34, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [47875] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4322), 1, - sym_long_flag_identifier, - ACTIONS(4324), 1, - anon_sym_EQ2, - STATE(1948), 1, + STATE(1921), 1, sym_comment, - STATE(2199), 1, - sym__flag_equals_value, - ACTIONS(4320), 9, + ACTIONS(1517), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1519), 34, sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - ACTIONS(4318), 26, + anon_sym_QMARK2, + anon_sym_BANG, + [47924] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1922), 1, + sym_comment, + ACTIONS(1521), 4, anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1523), 34, + sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, - aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -181588,31 +180365,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, - anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, - [49405] = 5, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [47973] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4266), 1, - aux_sym__immediate_decimal_token5, - STATE(1949), 1, + STATE(1923), 1, + sym_comment, + ACTIONS(1525), 4, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + anon_sym_DOT2, + ACTIONS(1527), 34, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [48022] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern, + STATE(1924), 1, sym_comment, - ACTIONS(1730), 6, + ACTIONS(2535), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1728), 31, + ACTIONS(2533), 31, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -181631,7 +180464,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -181641,22 +180473,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49456] = 6, + [48075] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1956), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(1962), 1, + ACTIONS(2021), 1, sym__unquoted_pattern, - STATE(1950), 1, + STATE(1925), 1, sym_comment, - ACTIONS(2576), 5, + ACTIONS(2013), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2574), 31, + ACTIONS(2011), 31, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -181688,24 +180520,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49509] = 5, + [48128] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4326), 1, - aux_sym__immediate_decimal_token5, - STATE(1951), 1, + STATE(1926), 1, sym_comment, - ACTIONS(1808), 6, + ACTIONS(2387), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, sym__unquoted_pattern, - ACTIONS(1806), 31, + ACTIONS(2385), 32, anon_sym_in, + sym__newline, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -181734,67 +180565,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [49560] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(793), 1, - anon_sym_COLON2, - ACTIONS(799), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4328), 1, - sym_filesize_unit, - ACTIONS(4330), 1, - sym_duration_unit, - STATE(1952), 1, - sym_comment, - ACTIONS(797), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(795), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [49617] = 6, + [48177] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4278), 1, sym__entry_separator, - ACTIONS(4332), 1, + ACTIONS(4290), 1, anon_sym_GT2, - STATE(1859), 1, + STATE(1857), 1, aux_sym__types_body_repeat2, - STATE(1953), 1, + STATE(1927), 1, sym_comment, - ACTIONS(4295), 35, + ACTIONS(4288), 35, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -181830,12 +180612,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_record, anon_sym_list, anon_sym_oneof, - [49670] = 4, + [48230] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(1954), 1, + ACTIONS(4272), 1, + aux_sym__immediate_decimal_token5, + STATE(1928), 1, sym_comment, - ACTIONS(747), 8, + ACTIONS(739), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -181843,8 +180627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token6, sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(749), 30, + ACTIONS(741), 30, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -181875,1205 +180658,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [49719] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2076), 1, - anon_sym_EQ_GT, - ACTIONS(4311), 1, - anon_sym_DOT_DOT2, - STATE(1955), 1, - sym_comment, - ACTIONS(4313), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2078), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2074), 29, - anon_sym_in, - anon_sym_DASH2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [49774] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4334), 1, - anon_sym_DOT_DOT2, - STATE(1956), 1, - sym_comment, - ACTIONS(4336), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1944), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1942), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [49827] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4338), 1, - anon_sym_DOT_DOT2, - STATE(1957), 1, - sym_comment, - ACTIONS(4340), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1954), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1952), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [49880] = 6, + [48281] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1956), 1, - anon_sym_LPAREN2, - ACTIONS(1962), 1, + ACTIONS(1641), 1, sym__unquoted_pattern, - STATE(1958), 1, - sym_comment, - ACTIONS(1954), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1952), 31, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [49933] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4311), 1, - anon_sym_DOT_DOT2, - STATE(1959), 1, - sym_comment, - ACTIONS(4313), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1615), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1689), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [49986] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(1960), 1, - sym_comment, - ACTIONS(771), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(773), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [50035] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4342), 1, - anon_sym_DOT_DOT2, - STATE(1961), 1, - sym_comment, - ACTIONS(4344), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2100), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2098), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [50088] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4346), 1, - anon_sym_DOT_DOT2, - STATE(1962), 1, - sym_comment, - ACTIONS(4348), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2138), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2136), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [50141] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4350), 1, - anon_sym_DOT_DOT2, - STATE(1963), 1, - sym_comment, - ACTIONS(4352), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2146), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2144), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [50194] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4354), 1, - anon_sym_DOT_DOT2, - STATE(1964), 1, - sym_comment, - ACTIONS(4356), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2154), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2152), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [50247] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4278), 1, - sym__entry_separator, - ACTIONS(4358), 1, - anon_sym_GT2, - STATE(1859), 1, - aux_sym__types_body_repeat2, - STATE(1965), 1, - sym_comment, - ACTIONS(4295), 35, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [50300] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(4364), 1, - anon_sym_DASH2, - ACTIONS(4368), 1, - anon_sym_and2, - ACTIONS(4370), 1, - anon_sym_xor2, - ACTIONS(4380), 1, - anon_sym_PLUS2, - ACTIONS(4384), 1, - anon_sym_bit_DASHand2, - ACTIONS(4386), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4388), 1, - anon_sym_bit_DASHor2, - STATE(1966), 1, - sym_comment, - STATE(2054), 1, - aux_sym__repeat_newline, - ACTIONS(2768), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4366), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4376), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4372), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4374), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4360), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [50380] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2870), 1, - sym__newline, - ACTIONS(4364), 1, - anon_sym_DASH2, - ACTIONS(4380), 1, - anon_sym_PLUS2, - STATE(1967), 1, - sym_comment, - STATE(2012), 1, - aux_sym__repeat_newline, - ACTIONS(4362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4366), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4376), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4372), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2684), 19, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [50446] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4392), 1, - anon_sym_DASH2, - ACTIONS(4402), 1, - anon_sym_PLUS2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1968), 1, - sym_comment, - ACTIONS(4390), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4394), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4398), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4396), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2692), 20, - anon_sym_in, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [50510] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2870), 1, - sym__newline, - ACTIONS(4364), 1, - anon_sym_DASH2, - ACTIONS(4380), 1, - anon_sym_PLUS2, - STATE(1969), 1, - sym_comment, - STATE(2013), 1, - aux_sym__repeat_newline, - ACTIONS(2686), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4366), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4376), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2684), 23, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [50574] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4392), 1, - anon_sym_DASH2, - ACTIONS(4402), 1, - anon_sym_PLUS2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1970), 1, - sym_comment, - ACTIONS(2694), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4394), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4398), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2692), 24, - anon_sym_in, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [50636] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2870), 1, - sym__newline, - STATE(1971), 1, - sym_comment, - STATE(2014), 1, - aux_sym__repeat_newline, - ACTIONS(4366), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4376), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2686), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2684), 26, - anon_sym_in, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [50694] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1972), 1, - sym_comment, - ACTIONS(4394), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4398), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2694), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2692), 27, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [50750] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2870), 1, - sym__newline, - STATE(1973), 1, - sym_comment, - STATE(2015), 1, - aux_sym__repeat_newline, - ACTIONS(4376), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2686), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2684), 28, - anon_sym_in, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [50804] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1974), 1, - sym_comment, - ACTIONS(4398), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2694), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2692), 29, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [50856] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2870), 1, - sym__newline, - ACTIONS(4364), 1, - anon_sym_DASH2, - ACTIONS(4380), 1, - anon_sym_PLUS2, - ACTIONS(4384), 1, - anon_sym_bit_DASHand2, - ACTIONS(4386), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4388), 1, - anon_sym_bit_DASHor2, - STATE(1975), 1, - sym_comment, - STATE(2016), 1, - aux_sym__repeat_newline, - ACTIONS(4362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4366), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4376), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2684), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4372), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4374), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4360), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [50932] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4392), 1, - anon_sym_DASH2, - ACTIONS(4402), 1, - anon_sym_PLUS2, - ACTIONS(4410), 1, - anon_sym_bit_DASHand2, - ACTIONS(4412), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4414), 1, - anon_sym_bit_DASHor2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1976), 1, - sym_comment, - ACTIONS(4390), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4394), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4398), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4396), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4408), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2692), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4406), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [51006] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2870), 1, - sym__newline, - ACTIONS(4364), 1, - anon_sym_DASH2, - ACTIONS(4368), 1, - anon_sym_and2, - ACTIONS(4380), 1, - anon_sym_PLUS2, - ACTIONS(4384), 1, - anon_sym_bit_DASHand2, - ACTIONS(4386), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4388), 1, - anon_sym_bit_DASHor2, - STATE(1977), 1, + ACTIONS(2581), 1, + anon_sym_LPAREN2, + STATE(1929), 1, sym_comment, - STATE(2017), 1, - aux_sym__repeat_newline, - ACTIONS(4362), 2, + ACTIONS(2527), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4366), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4376), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2684), 3, + anon_sym_PLUS2, + ACTIONS(2525), 31, + anon_sym_in, + sym__newline, + anon_sym_DASH2, anon_sym_LBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4372), 4, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4374), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4360), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [51084] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4392), 1, - anon_sym_DASH2, - ACTIONS(4402), 1, - anon_sym_PLUS2, - ACTIONS(4410), 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, - ACTIONS(4412), 1, anon_sym_bit_DASHxor2, - ACTIONS(4414), 1, anon_sym_bit_DASHor2, - ACTIONS(4416), 1, - anon_sym_and2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1978), 1, + [48334] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2587), 1, + anon_sym_LPAREN2, + ACTIONS(2589), 1, + sym__unquoted_pattern, + STATE(1930), 1, sym_comment, - ACTIONS(4390), 2, + ACTIONS(2585), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4394), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4398), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2692), 4, + anon_sym_PLUS2, + ACTIONS(2583), 31, + anon_sym_in, sym__newline, + anon_sym_DASH2, anon_sym_LBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4396), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4408), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4406), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -183081,160 +180735,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [51160] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(4364), 1, - anon_sym_DASH2, - ACTIONS(4368), 1, - anon_sym_and2, - ACTIONS(4370), 1, - anon_sym_xor2, - ACTIONS(4380), 1, - anon_sym_PLUS2, - ACTIONS(4384), 1, - anon_sym_bit_DASHand2, - ACTIONS(4386), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4388), 1, - anon_sym_bit_DASHor2, - STATE(1979), 1, - sym_comment, - STATE(2018), 1, - aux_sym__repeat_newline, - ACTIONS(2684), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4366), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4376), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4372), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4374), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4360), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [51240] = 19, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4392), 1, - anon_sym_DASH2, - ACTIONS(4402), 1, - anon_sym_PLUS2, - ACTIONS(4410), 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, - ACTIONS(4412), 1, anon_sym_bit_DASHxor2, - ACTIONS(4414), 1, anon_sym_bit_DASHor2, - ACTIONS(4416), 1, - anon_sym_and2, - ACTIONS(4418), 1, - anon_sym_xor2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1980), 1, + [48387] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4266), 1, + aux_sym__immediate_decimal_token5, + STATE(1931), 1, sym_comment, - ACTIONS(4390), 2, + ACTIONS(1752), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4394), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4398), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2692), 3, - sym__newline, - anon_sym_LBRACE, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1750), 31, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - ACTIONS(4396), 4, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4408), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4406), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [51318] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2870), 1, - sym__newline, - ACTIONS(4364), 1, - anon_sym_DASH2, - ACTIONS(4380), 1, - anon_sym_PLUS2, - STATE(1981), 1, - sym_comment, - STATE(2019), 1, - aux_sym__repeat_newline, - ACTIONS(4362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4366), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4376), 2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4372), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4360), 8, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [48438] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2595), 1, + anon_sym_LPAREN2, + ACTIONS(2597), 1, + sym__unquoted_pattern, + STATE(1932), 1, + sym_comment, + ACTIONS(2593), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2591), 31, anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -183242,51 +180828,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2684), 11, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51386] = 13, + [48491] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, - anon_sym_DASH2, - ACTIONS(4402), 1, - anon_sym_PLUS2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1982), 1, + ACTIONS(4292), 1, + aux_sym__immediate_decimal_token5, + STATE(1933), 1, sym_comment, - ACTIONS(4390), 2, + ACTIONS(1818), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4394), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4398), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4396), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4406), 8, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1816), 31, anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -183294,46 +180873,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2692), 12, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_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, - [51452] = 11, + [48542] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(4294), 1, + anon_sym_RBRACK, + STATE(1857), 1, + aux_sym__types_body_repeat2, + STATE(1934), 1, + sym_comment, + ACTIONS(4276), 35, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [48595] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2870), 1, - sym__newline, - ACTIONS(4364), 1, - anon_sym_DASH2, - ACTIONS(4380), 1, - anon_sym_PLUS2, - STATE(1983), 1, + ACTIONS(2620), 1, + anon_sym_LPAREN2, + ACTIONS(2622), 1, + sym__unquoted_pattern, + STATE(1935), 1, sym_comment, - STATE(2020), 1, - aux_sym__repeat_newline, - ACTIONS(2686), 2, + ACTIONS(1604), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4366), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4376), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2684), 25, + anon_sym_PLUS2, + ACTIONS(1706), 31, anon_sym_in, + sym__newline, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -183353,37 +180976,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51514] = 10, + [48648] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, - anon_sym_DASH2, - ACTIONS(4402), 1, - anon_sym_PLUS2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1984), 1, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern, + STATE(1936), 1, sym_comment, - ACTIONS(2694), 2, + ACTIONS(1002), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4394), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4398), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2692), 26, + anon_sym_PLUS2, + ACTIONS(1018), 31, anon_sym_in, sym__newline, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -183403,59 +181023,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [51574] = 15, + [48701] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2870), 1, - sym__newline, - ACTIONS(4364), 1, - anon_sym_DASH2, - ACTIONS(4380), 1, - anon_sym_PLUS2, - STATE(1985), 1, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern, + STATE(1937), 1, sym_comment, - STATE(2021), 1, - aux_sym__repeat_newline, - ACTIONS(4362), 2, + ACTIONS(994), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4366), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4376), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4372), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4374), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2684), 7, + anon_sym_PLUS2, + ACTIONS(1004), 31, + anon_sym_in, + sym__newline, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4360), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -183463,109 +181062,252 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [51644] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4392), 1, - anon_sym_DASH2, - ACTIONS(4402), 1, - anon_sym_PLUS2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1986), 1, - sym_comment, - ACTIONS(4390), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4394), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4398), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4396), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4408), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2692), 8, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4406), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [51712] = 16, + [48754] = 27, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3034), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4161), 1, + anon_sym_LPAREN, + ACTIONS(4163), 1, + anon_sym_DOLLAR, + ACTIONS(4165), 1, + anon_sym_DOT_DOT, + ACTIONS(4171), 1, + anon_sym_DQUOTE, + ACTIONS(4173), 1, + anon_sym_SQUOTE, + ACTIONS(4175), 1, + anon_sym_BQUOTE, + ACTIONS(4177), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4179), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4181), 1, + aux_sym_unquoted_token1, + ACTIONS(4183), 1, + sym_raw_string_begin, + ACTIONS(4298), 1, + anon_sym_null, + ACTIONS(4302), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4306), 1, + sym_val_date, + STATE(1854), 1, + sym__inter_single_quotes, + STATE(1878), 1, + sym__inter_double_quotes, + STATE(1938), 1, + sym_comment, + STATE(3895), 1, + sym__val_number_decimal, + STATE(5221), 1, + sym_val_bool, + ACTIONS(4167), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4296), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4304), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(5139), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4300), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1867), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1444), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [48849] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2870), 1, + ACTIONS(4308), 1, sym__newline, - ACTIONS(4364), 1, - anon_sym_DASH2, - ACTIONS(4380), 1, - anon_sym_PLUS2, - ACTIONS(4384), 1, - anon_sym_bit_DASHand2, - STATE(1987), 1, + STATE(1939), 2, sym_comment, - STATE(2022), 1, - aux_sym__repeat_newline, - ACTIONS(4362), 2, + aux_sym__types_body_repeat1, + ACTIONS(3736), 36, + anon_sym_LBRACK, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [48898] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(4311), 1, + anon_sym_GT2, + STATE(1857), 1, + aux_sym__types_body_repeat2, + STATE(1940), 1, + sym_comment, + ACTIONS(4288), 35, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [48951] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4313), 1, + aux_sym__immediate_decimal_token5, + STATE(1941), 1, + sym_comment, + ACTIONS(755), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(757), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [49002] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4315), 1, + anon_sym_DOT_DOT2, + STATE(1942), 1, + sym_comment, + ACTIONS(4317), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2122), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4366), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4376), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4372), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4374), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2684), 6, - anon_sym_LBRACE, + anon_sym_PLUS2, + ACTIONS(2118), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4360), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -183573,54 +181315,414 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [51784] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4392), 1, - anon_sym_DASH2, - ACTIONS(4402), 1, - anon_sym_PLUS2, - ACTIONS(4410), 1, - anon_sym_bit_DASHand2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1988), 1, - sym_comment, - ACTIONS(4390), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4394), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4398), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4396), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4408), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2692), 7, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [49055] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(1943), 1, + sym_comment, + ACTIONS(747), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(749), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [49104] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(1944), 1, + sym_comment, + ACTIONS(755), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(757), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [49153] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(1945), 1, + sym_comment, + ACTIONS(789), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(791), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [49202] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4224), 1, + anon_sym_DOT2, + STATE(1946), 1, + sym_comment, + STATE(1950), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2122), 1, + sym_path, + ACTIONS(1492), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1494), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [49257] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(4319), 1, + anon_sym_GT2, + STATE(1857), 1, + aux_sym__types_body_repeat2, + STATE(1947), 1, + sym_comment, + ACTIONS(4288), 35, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [49310] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(4321), 1, + anon_sym_GT2, + STATE(1857), 1, + aux_sym__types_body_repeat2, + STATE(1948), 1, + sym_comment, + ACTIONS(4288), 35, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [49363] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(4323), 1, + anon_sym_RBRACK, + STATE(1857), 1, + aux_sym__types_body_repeat2, + STATE(1949), 1, + sym_comment, + ACTIONS(4276), 35, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [49416] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4325), 1, + anon_sym_DOT2, + STATE(2122), 1, + sym_path, + STATE(1950), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1496), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1498), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [49469] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1951), 1, + sym_comment, + ACTIONS(1740), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1738), 32, + anon_sym_in, sym__newline, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4406), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -183628,154 +181730,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [51854] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2870), 1, - sym__newline, - ACTIONS(4364), 1, - anon_sym_DASH2, - ACTIONS(4380), 1, - anon_sym_PLUS2, - ACTIONS(4384), 1, - anon_sym_bit_DASHand2, - ACTIONS(4386), 1, - anon_sym_bit_DASHxor2, - STATE(1989), 1, - sym_comment, - STATE(2023), 1, - aux_sym__repeat_newline, - ACTIONS(4362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4366), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4376), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4372), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4374), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2684), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4360), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [51928] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4392), 1, - anon_sym_DASH2, - ACTIONS(4402), 1, - anon_sym_PLUS2, - ACTIONS(4410), 1, - anon_sym_bit_DASHand2, - ACTIONS(4412), 1, - anon_sym_bit_DASHxor2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(1990), 1, - sym_comment, - ACTIONS(4390), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4394), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4398), 2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4396), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4408), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2692), 6, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4406), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [52000] = 13, + [49518] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2864), 1, - sym__newline, - ACTIONS(4364), 1, - anon_sym_DASH2, - ACTIONS(4380), 1, - anon_sym_PLUS2, - STATE(1991), 1, + STATE(1952), 1, sym_comment, - STATE(2025), 1, - aux_sym__repeat_newline, - ACTIONS(4362), 2, + ACTIONS(1818), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4366), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4376), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4372), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2676), 19, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1816), 32, anon_sym_in, + sym__newline, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -183787,43 +181775,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_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, - [52066] = 12, + [49567] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2864), 1, - sym__newline, - ACTIONS(4364), 1, - anon_sym_DASH2, - ACTIONS(4380), 1, - anon_sym_PLUS2, - STATE(1992), 1, + STATE(1953), 1, sym_comment, - STATE(2027), 1, - aux_sym__repeat_newline, - ACTIONS(2678), 2, + ACTIONS(1856), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4366), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4376), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2676), 23, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1854), 32, anon_sym_in, + sym__newline, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -183843,33 +181828,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52130] = 9, + [49616] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2864), 1, - sym__newline, - STATE(1993), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + STATE(1954), 1, sym_comment, - STATE(2029), 1, - aux_sym__repeat_newline, - ACTIONS(4366), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4376), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2678), 3, + ACTIONS(2003), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2676), 26, + ACTIONS(2001), 31, anon_sym_in, + sym__newline, anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, @@ -183890,33 +181876,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52188] = 7, + [49669] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(866), 1, + anon_sym_COLON2, + ACTIONS(872), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4328), 1, + sym_filesize_unit, + ACTIONS(4330), 1, + sym_duration_unit, + STATE(1955), 1, + sym_comment, + ACTIONS(870), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(868), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [49726] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2864), 1, - sym__newline, - STATE(1994), 1, + ACTIONS(2120), 1, + anon_sym_EQ_GT, + ACTIONS(4315), 1, + anon_sym_DOT_DOT2, + STATE(1956), 1, sym_comment, - STATE(2031), 1, - aux_sym__repeat_newline, - ACTIONS(4376), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2678), 5, + ACTIONS(4317), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2122), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2676), 28, + ACTIONS(2118), 29, anon_sym_in, anon_sym_DASH2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -183935,6 +181973,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -183942,80 +181982,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52242] = 18, + [49781] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2864), 1, - sym__newline, - ACTIONS(4364), 1, - anon_sym_DASH2, - ACTIONS(4380), 1, - anon_sym_PLUS2, - ACTIONS(4384), 1, - anon_sym_bit_DASHand2, - ACTIONS(4386), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4388), 1, - anon_sym_bit_DASHor2, - STATE(1995), 1, + ACTIONS(4332), 1, + anon_sym_DOT_DOT2, + STATE(1957), 1, sym_comment, - STATE(2033), 1, - aux_sym__repeat_newline, - ACTIONS(4362), 2, + ACTIONS(4334), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2003), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4366), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4376), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2676), 4, - anon_sym_LBRACE, + anon_sym_PLUS2, + ACTIONS(2001), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4372), 4, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4374), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4360), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [52318] = 6, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [49834] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1956), 1, - anon_sym_LPAREN2, - ACTIONS(1962), 1, - sym__unquoted_pattern, - STATE(1996), 1, + ACTIONS(4336), 1, + anon_sym_DOT_DOT2, + STATE(1958), 1, sym_comment, - ACTIONS(1954), 5, + ACTIONS(4338), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2013), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1952), 30, + ACTIONS(2011), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -184046,81 +182076,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52370] = 19, + [49887] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(4340), 1, + anon_sym_RBRACK, + STATE(1857), 1, + aux_sym__types_body_repeat2, + STATE(1959), 1, + sym_comment, + ACTIONS(4276), 35, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [49940] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2864), 1, - sym__newline, - ACTIONS(4364), 1, - anon_sym_DASH2, - ACTIONS(4368), 1, - anon_sym_and2, - ACTIONS(4380), 1, - anon_sym_PLUS2, - ACTIONS(4384), 1, - anon_sym_bit_DASHand2, - ACTIONS(4386), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4388), 1, - anon_sym_bit_DASHor2, - STATE(1997), 1, + ACTIONS(4315), 1, + anon_sym_DOT_DOT2, + STATE(1960), 1, sym_comment, - STATE(2035), 1, - aux_sym__repeat_newline, - ACTIONS(4362), 2, + ACTIONS(4317), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1604), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4366), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4376), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2676), 3, - anon_sym_LBRACE, + anon_sym_PLUS2, + ACTIONS(1706), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4372), 4, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4374), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4360), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [52448] = 6, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [49993] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(2513), 1, - anon_sym_LPAREN2, - STATE(1998), 1, + ACTIONS(4342), 1, + anon_sym_DOT_DOT2, + STATE(1961), 1, sym_comment, - ACTIONS(2511), 5, + ACTIONS(4344), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2136), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2509), 30, + ACTIONS(2134), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -184151,59 +182217,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52500] = 20, + [50046] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(4364), 1, - anon_sym_DASH2, - ACTIONS(4368), 1, - anon_sym_and2, - ACTIONS(4370), 1, - anon_sym_xor2, - ACTIONS(4380), 1, - anon_sym_PLUS2, - ACTIONS(4384), 1, - anon_sym_bit_DASHand2, - ACTIONS(4386), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4388), 1, - anon_sym_bit_DASHor2, - STATE(1999), 1, + ACTIONS(4346), 1, + anon_sym_DOT_DOT2, + STATE(1962), 1, sym_comment, - STATE(2037), 1, - aux_sym__repeat_newline, - ACTIONS(2676), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4362), 2, + ACTIONS(4348), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2068), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4366), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4376), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4372), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4374), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4360), 8, + anon_sym_PLUS2, + ACTIONS(2066), 30, anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -184211,123 +182247,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [52580] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4424), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4426), 1, - sym_filesize_unit, - ACTIONS(4428), 1, - sym_duration_unit, - STATE(2000), 1, - sym_comment, - ACTIONS(4422), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4420), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [52634] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2864), 1, - sym__newline, - ACTIONS(4364), 1, - anon_sym_DASH2, - ACTIONS(4380), 1, - anon_sym_PLUS2, - STATE(2001), 1, - sym_comment, - STATE(2039), 1, - aux_sym__repeat_newline, - ACTIONS(4362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4366), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4376), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4372), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4360), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(2676), 11, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52702] = 6, + [50099] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2529), 1, - anon_sym_LPAREN2, - ACTIONS(2531), 1, - sym__unquoted_pattern, - STATE(2002), 1, + ACTIONS(4350), 1, + anon_sym_DOT_DOT2, + STATE(1963), 1, sym_comment, - ACTIONS(2527), 5, + ACTIONS(4352), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2076), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2525), 30, + ACTIONS(2074), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -184358,19 +182311,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52754] = 4, + [50152] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2003), 1, + ACTIONS(4354), 1, + anon_sym_DOT_DOT2, + STATE(1964), 1, sym_comment, - ACTIONS(2327), 6, + ACTIONS(4356), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2084), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(2325), 31, + ACTIONS(2082), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -184392,7 +182349,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -184402,33 +182358,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52802] = 11, + [50205] = 27, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2864), 1, - sym__newline, - ACTIONS(4364), 1, - anon_sym_DASH2, - ACTIONS(4380), 1, - anon_sym_PLUS2, - STATE(2004), 1, + ACTIONS(3034), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4228), 1, + anon_sym_LPAREN, + ACTIONS(4230), 1, + anon_sym_DOLLAR, + ACTIONS(4232), 1, + anon_sym_DOT_DOT, + ACTIONS(4236), 1, + anon_sym_DQUOTE, + ACTIONS(4238), 1, + anon_sym_SQUOTE, + ACTIONS(4240), 1, + anon_sym_BQUOTE, + ACTIONS(4242), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4244), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4246), 1, + aux_sym_unquoted_token1, + ACTIONS(4248), 1, + sym_raw_string_begin, + ACTIONS(4298), 1, + anon_sym_null, + ACTIONS(4302), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4306), 1, + sym_val_date, + STATE(1884), 1, + sym__inter_single_quotes, + STATE(1885), 1, + sym__inter_double_quotes, + STATE(1965), 1, sym_comment, - STATE(2041), 1, + STATE(3794), 1, + sym__val_number_decimal, + STATE(5221), 1, + sym_val_bool, + ACTIONS(4234), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4296), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4304), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(5083), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4358), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(1890), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1449), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + [50300] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(528), 1, aux_sym__repeat_newline, - ACTIONS(2678), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4366), 2, + STATE(1966), 1, + sym_comment, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4376), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2676), 25, + ACTIONS(2654), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2652), 27, anon_sym_in, + sym__newline, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -184453,75 +182474,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [52864] = 15, + [50356] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2864), 1, + ACTIONS(4366), 1, sym__newline, - ACTIONS(4364), 1, - anon_sym_DASH2, - ACTIONS(4380), 1, - anon_sym_PLUS2, - STATE(2005), 1, + ACTIONS(4370), 1, + anon_sym_LBRACK, + STATE(1967), 1, sym_comment, - STATE(2043), 1, - aux_sym__repeat_newline, - ACTIONS(4362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4366), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4376), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4372), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4374), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2676), 7, + ACTIONS(4373), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2857), 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2859), 26, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4360), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [52934] = 7, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + [50410] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4432), 1, + ACTIONS(4377), 1, anon_sym_RBRACK, - ACTIONS(4434), 1, + ACTIONS(4379), 1, sym__entry_separator, - ACTIONS(4436), 1, + ACTIONS(4381), 1, sym_raw_string_begin, - STATE(2006), 1, + STATE(1968), 1, sym_comment, - STATE(2093), 1, + STATE(2085), 1, aux_sym__types_body_repeat2, - ACTIONS(4430), 33, + ACTIONS(4375), 33, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -184555,55 +182568,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [52988] = 16, + [50464] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2864), 1, - sym__newline, - ACTIONS(4364), 1, - anon_sym_DASH2, - ACTIONS(4380), 1, - anon_sym_PLUS2, - ACTIONS(4384), 1, - anon_sym_bit_DASHand2, - STATE(2007), 1, + ACTIONS(2620), 1, + anon_sym_LPAREN2, + ACTIONS(2622), 1, + sym__unquoted_pattern, + STATE(1969), 1, sym_comment, - STATE(2045), 1, - aux_sym__repeat_newline, - ACTIONS(4362), 2, + ACTIONS(1604), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4366), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4376), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4372), 4, + anon_sym_PLUS2, + ACTIONS(1706), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4374), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2676), 6, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4360), 8, + [50516] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1970), 1, + sym_comment, + ACTIONS(1740), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1738), 31, anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -184611,20 +182640,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53060] = 7, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [50564] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4434), 1, + ACTIONS(4379), 1, sym__entry_separator, - ACTIONS(4436), 1, + ACTIONS(4381), 1, sym_raw_string_begin, - ACTIONS(4438), 1, + ACTIONS(4383), 1, anon_sym_RBRACK, - STATE(2008), 1, + STATE(1971), 1, sym_comment, - STATE(2093), 1, + STATE(2085), 1, aux_sym__types_body_repeat2, - ACTIONS(4430), 33, + ACTIONS(4375), 33, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -184658,56 +182705,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [53114] = 17, + [50618] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2864), 1, - sym__newline, - ACTIONS(4364), 1, - anon_sym_DASH2, - ACTIONS(4380), 1, - anon_sym_PLUS2, - ACTIONS(4384), 1, - anon_sym_bit_DASHand2, - ACTIONS(4386), 1, - anon_sym_bit_DASHxor2, - STATE(2009), 1, + STATE(1972), 1, sym_comment, - STATE(2047), 1, - aux_sym__repeat_newline, - ACTIONS(4362), 2, + ACTIONS(1818), 6, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4366), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4376), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4372), 4, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1816), 31, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4374), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2676), 5, - anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [50666] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1973), 1, + sym_comment, + ACTIONS(1856), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(1854), 31, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4360), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -184715,22 +182775,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53188] = 6, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [50714] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4387), 1, + anon_sym_RBRACK, + ACTIONS(4389), 1, + sym__entry_separator, + ACTIONS(4391), 1, + sym_raw_string_begin, + STATE(1974), 1, + sym_comment, + STATE(2091), 1, + aux_sym__types_body_repeat2, + ACTIONS(4385), 33, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [50768] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2554), 1, - anon_sym_LPAREN2, - ACTIONS(2556), 1, + STATE(1975), 1, + sym_comment, + ACTIONS(2859), 37, + sym__newline, + anon_sym_LBRACK, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [50814] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(1976), 1, + sym_comment, + ACTIONS(747), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(749), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [50862] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4393), 1, + sym__newline, + STATE(1977), 2, + aux_sym__repeat_newline, + sym_comment, + ACTIONS(1916), 35, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [50910] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1598), 1, sym__unquoted_pattern, - STATE(2010), 1, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + STATE(1978), 1, sym_comment, - ACTIONS(1615), 5, + ACTIONS(2003), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1689), 30, + ACTIONS(2001), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -184761,22 +183017,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53240] = 6, + [50962] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4400), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4402), 1, + sym_filesize_unit, + ACTIONS(4404), 1, + sym_duration_unit, + STATE(1979), 1, + sym_comment, + ACTIONS(4398), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4396), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [51016] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2251), 1, + anon_sym_DOT2, + STATE(434), 1, + sym_cell_path, + STATE(525), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(827), 1, + sym_path, + STATE(1980), 1, + sym_comment, + ACTIONS(1444), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(1446), 31, + ts_builtin_sym_end, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + [51072] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2566), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(2568), 1, + ACTIONS(2021), 1, sym__unquoted_pattern, - STATE(2011), 1, + STATE(1981), 1, sym_comment, - ACTIONS(2564), 5, + ACTIONS(2535), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2562), 30, + ACTIONS(2533), 30, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -184807,40 +183158,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53292] = 12, + [51124] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, + ACTIONS(2937), 1, + sym__newline, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4402), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2012), 1, + STATE(1982), 1, sym_comment, - ACTIONS(4390), 2, + STATE(1998), 1, + aux_sym__repeat_newline, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4394), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4398), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4396), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2688), 20, + ACTIONS(2776), 19, anon_sym_in, - sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -184859,35 +183211,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53356] = 11, + [51190] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, + ACTIONS(2937), 1, + sym__newline, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4402), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2013), 1, + STATE(1983), 1, sym_comment, - ACTIONS(2690), 2, + STATE(2000), 1, + aux_sym__repeat_newline, + ACTIONS(2778), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4394), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4398), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2688), 24, + ACTIONS(2776), 23, anon_sym_in, - sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -184910,29 +183263,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53418] = 8, + [51254] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2014), 1, + ACTIONS(2937), 1, + sym__newline, + STATE(1984), 1, sym_comment, - ACTIONS(4394), 2, + STATE(2002), 1, + aux_sym__repeat_newline, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4398), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2690), 3, + ACTIONS(2778), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2688), 27, + ACTIONS(2776), 26, anon_sym_in, - sym__newline, anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, @@ -184958,25 +183312,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53474] = 6, + [51312] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2015), 1, + ACTIONS(2937), 1, + sym__newline, + STATE(1985), 1, sym_comment, - ACTIONS(4398), 2, + STATE(2004), 1, + aux_sym__repeat_newline, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2690), 5, + ACTIONS(2778), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2688), 29, + ACTIONS(2776), 28, anon_sym_in, - sym__newline, anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, @@ -185004,55 +183359,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53526] = 17, + [51366] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, + ACTIONS(2937), 1, + sym__newline, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4402), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4410), 1, + ACTIONS(4426), 1, anon_sym_bit_DASHand2, - ACTIONS(4412), 1, + ACTIONS(4428), 1, anon_sym_bit_DASHxor2, - ACTIONS(4414), 1, + ACTIONS(4430), 1, anon_sym_bit_DASHor2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2016), 1, + STATE(1986), 1, sym_comment, - ACTIONS(4390), 2, + STATE(2006), 1, + aux_sym__repeat_newline, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4394), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4398), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4396), 4, + ACTIONS(2776), 4, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4408), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2688), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4406), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185061,56 +183417,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53600] = 18, + [51442] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, + ACTIONS(2937), 1, + sym__newline, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4402), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4410), 1, + ACTIONS(4426), 1, anon_sym_bit_DASHand2, - ACTIONS(4412), 1, + ACTIONS(4428), 1, anon_sym_bit_DASHxor2, - ACTIONS(4414), 1, + ACTIONS(4430), 1, anon_sym_bit_DASHor2, - ACTIONS(4416), 1, + ACTIONS(4432), 1, anon_sym_and2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2017), 1, + STATE(1987), 1, sym_comment, - ACTIONS(4390), 2, + STATE(2008), 1, + aux_sym__repeat_newline, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4394), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4398), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2688), 4, - sym__newline, + ACTIONS(2776), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4396), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4408), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4406), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185119,57 +183476,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53676] = 19, + [51520] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4402), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4410), 1, + ACTIONS(4426), 1, anon_sym_bit_DASHand2, - ACTIONS(4412), 1, + ACTIONS(4428), 1, anon_sym_bit_DASHxor2, - ACTIONS(4414), 1, + ACTIONS(4430), 1, anon_sym_bit_DASHor2, - ACTIONS(4416), 1, + ACTIONS(4432), 1, anon_sym_and2, - ACTIONS(4418), 1, + ACTIONS(4434), 1, anon_sym_xor2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2018), 1, + STATE(1988), 1, sym_comment, - ACTIONS(4390), 2, + STATE(2010), 1, + aux_sym__repeat_newline, + ACTIONS(2776), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4394), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4398), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2688), 3, - sym__newline, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4396), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4408), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4406), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185178,38 +183536,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53754] = 13, + [51600] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, + ACTIONS(2937), 1, + sym__newline, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4402), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2019), 1, + STATE(1989), 1, sym_comment, - ACTIONS(4390), 2, + STATE(2012), 1, + aux_sym__repeat_newline, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4394), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4398), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4396), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4406), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185218,8 +183578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2688), 12, - sym__newline, + ACTIONS(2776), 11, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -185231,32 +183590,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53820] = 10, + [51668] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, + ACTIONS(2937), 1, + sym__newline, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4402), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2020), 1, + STATE(1990), 1, sym_comment, - ACTIONS(2690), 2, + STATE(2014), 1, + aux_sym__repeat_newline, + ACTIONS(2778), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4394), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4398), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2688), 26, + ACTIONS(2776), 25, anon_sym_in, - sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -185281,44 +183641,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [53880] = 14, + [51730] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, + ACTIONS(2937), 1, + sym__newline, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4402), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2021), 1, + STATE(1991), 1, sym_comment, - ACTIONS(4390), 2, + STATE(2016), 1, + aux_sym__repeat_newline, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4394), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4398), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4396), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4408), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2688), 8, - sym__newline, + ACTIONS(2776), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -185326,7 +183687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4406), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185335,53 +183696,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [53948] = 15, + [51800] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, + ACTIONS(2937), 1, + sym__newline, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4402), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4410), 1, + ACTIONS(4426), 1, anon_sym_bit_DASHand2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2022), 1, + STATE(1992), 1, sym_comment, - ACTIONS(4390), 2, + STATE(2018), 1, + aux_sym__repeat_newline, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4394), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4398), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4396), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4408), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2688), 7, - sym__newline, + ACTIONS(2776), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4406), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185390,54 +183752,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54018] = 16, + [51872] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern, + STATE(1993), 1, + sym_comment, + ACTIONS(2013), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2011), 30, + anon_sym_in, anon_sym_DASH2, - ACTIONS(4402), 1, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [51924] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2937), 1, + sym__newline, + ACTIONS(4408), 1, + anon_sym_DASH2, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4410), 1, + ACTIONS(4426), 1, anon_sym_bit_DASHand2, - ACTIONS(4412), 1, + ACTIONS(4428), 1, anon_sym_bit_DASHxor2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2023), 1, + STATE(1994), 1, sym_comment, - ACTIONS(4390), 2, + STATE(2020), 1, + aux_sym__repeat_newline, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4394), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4398), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4396), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4408), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2688), 6, - sym__newline, + ACTIONS(2776), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4406), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185446,40 +183855,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54090] = 13, + [51998] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(1995), 1, + sym_comment, + ACTIONS(755), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(757), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [52046] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4440), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4442), 1, + sym_filesize_unit, + ACTIONS(4444), 1, + sym_duration_unit, + STATE(1996), 1, + sym_comment, + ACTIONS(4438), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4436), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [52100] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2867), 1, + ACTIONS(2832), 1, sym__newline, - ACTIONS(4364), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4380), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - STATE(2024), 1, + STATE(1997), 1, sym_comment, - STATE(2048), 1, + STATE(2034), 1, aux_sym__repeat_newline, - ACTIONS(4362), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4366), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4376), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4372), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2768), 19, + ACTIONS(2726), 19, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -185499,38 +183999,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54156] = 12, + [52166] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4402), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2025), 1, + STATE(1998), 1, sym_comment, - ACTIONS(4390), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4394), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4398), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4396), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2772), 20, + ACTIONS(2732), 20, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -185551,35 +184051,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54220] = 12, + [52230] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2867), 1, + ACTIONS(2832), 1, sym__newline, - ACTIONS(4364), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4380), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - STATE(2026), 1, + STATE(1999), 1, sym_comment, - STATE(2049), 1, + STATE(2035), 1, aux_sym__repeat_newline, - ACTIONS(2770), 2, + ACTIONS(2728), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4366), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4376), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2768), 23, + ACTIONS(2726), 23, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -185603,33 +184103,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54284] = 11, + [52294] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4402), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2027), 1, + STATE(2000), 1, sym_comment, - ACTIONS(2774), 2, + ACTIONS(2734), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4394), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4398), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2772), 24, + ACTIONS(2732), 24, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -185654,29 +184154,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54346] = 9, + [52356] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2867), 1, + ACTIONS(2832), 1, sym__newline, - STATE(2028), 1, - sym_comment, - STATE(2050), 1, + STATE(1966), 1, aux_sym__repeat_newline, - ACTIONS(4366), 2, + STATE(2001), 1, + sym_comment, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4376), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2770), 3, + ACTIONS(2728), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2768), 26, + ACTIONS(2726), 26, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -185703,27 +184203,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54404] = 8, + [52414] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2029), 1, + STATE(2002), 1, sym_comment, - ACTIONS(4394), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4398), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2774), 3, + ACTIONS(2734), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2772), 27, + ACTIONS(2732), 27, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -185751,25 +184251,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54460] = 7, + [52470] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2867), 1, + ACTIONS(2832), 1, sym__newline, - STATE(2030), 1, + STATE(2003), 1, sym_comment, - STATE(2051), 1, + STATE(2036), 1, aux_sym__repeat_newline, - ACTIONS(4376), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2770), 5, + ACTIONS(2728), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2768), 28, + ACTIONS(2726), 28, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -185798,23 +184298,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54514] = 6, + [52524] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2031), 1, + STATE(2004), 1, sym_comment, - ACTIONS(4398), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2774), 5, + ACTIONS(2734), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2772), 29, + ACTIONS(2732), 29, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -185844,56 +184344,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54566] = 18, + [52576] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2867), 1, + ACTIONS(2832), 1, sym__newline, - ACTIONS(4364), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4380), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4384), 1, + ACTIONS(4426), 1, anon_sym_bit_DASHand2, - ACTIONS(4386), 1, + ACTIONS(4428), 1, anon_sym_bit_DASHxor2, - ACTIONS(4388), 1, + ACTIONS(4430), 1, anon_sym_bit_DASHor2, - STATE(2032), 1, + STATE(2005), 1, sym_comment, - STATE(2052), 1, + STATE(2037), 1, aux_sym__repeat_newline, - ACTIONS(4362), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4366), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4376), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2768), 4, + ACTIONS(2726), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4372), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4374), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4360), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185902,55 +184402,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54642] = 17, + [52652] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4402), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - ACTIONS(4410), 1, + ACTIONS(4460), 1, anon_sym_bit_DASHand2, - ACTIONS(4412), 1, + ACTIONS(4462), 1, anon_sym_bit_DASHxor2, - ACTIONS(4414), 1, + ACTIONS(4464), 1, anon_sym_bit_DASHor2, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2033), 1, + STATE(2006), 1, sym_comment, - ACTIONS(4390), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4394), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4398), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4396), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4408), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2772), 5, + ACTIONS(2732), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4406), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -185959,57 +184459,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54716] = 19, + [52726] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2867), 1, + ACTIONS(2832), 1, sym__newline, - ACTIONS(4364), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4368), 1, - anon_sym_and2, - ACTIONS(4380), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4384), 1, + ACTIONS(4426), 1, anon_sym_bit_DASHand2, - ACTIONS(4386), 1, + ACTIONS(4428), 1, anon_sym_bit_DASHxor2, - ACTIONS(4388), 1, + ACTIONS(4430), 1, anon_sym_bit_DASHor2, - STATE(2034), 1, + ACTIONS(4432), 1, + anon_sym_and2, + STATE(2007), 1, sym_comment, - STATE(2053), 1, + STATE(2038), 1, aux_sym__repeat_newline, - ACTIONS(4362), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4366), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4376), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2768), 3, + ACTIONS(2726), 3, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4372), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4374), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4360), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186018,56 +184518,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54794] = 18, + [52804] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4402), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - ACTIONS(4410), 1, + ACTIONS(4460), 1, anon_sym_bit_DASHand2, - ACTIONS(4412), 1, + ACTIONS(4462), 1, anon_sym_bit_DASHxor2, - ACTIONS(4414), 1, + ACTIONS(4464), 1, anon_sym_bit_DASHor2, - ACTIONS(4416), 1, + ACTIONS(4466), 1, anon_sym_and2, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2035), 1, + STATE(2008), 1, sym_comment, - ACTIONS(4390), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4394), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4398), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2772), 4, + ACTIONS(2732), 4, sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4396), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4408), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4406), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186076,27 +184576,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54870] = 5, + [52880] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, - sym__unquoted_pattern, - STATE(2036), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(4408), 1, + anon_sym_DASH2, + ACTIONS(4418), 1, + anon_sym_PLUS2, + ACTIONS(4426), 1, + anon_sym_bit_DASHand2, + ACTIONS(4428), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4430), 1, + anon_sym_bit_DASHor2, + ACTIONS(4432), 1, + anon_sym_and2, + ACTIONS(4434), 1, + anon_sym_xor2, + STATE(2009), 1, sym_comment, - ACTIONS(793), 5, + STATE(2039), 1, + aux_sym__repeat_newline, + ACTIONS(2726), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4406), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4410), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(890), 31, + ACTIONS(4414), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4416), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4420), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4412), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4424), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4422), 8, anon_sym_in, - sym__newline, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [52960] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4448), 1, anon_sym_DASH2, - anon_sym_LBRACE, + ACTIONS(4452), 1, + anon_sym_PLUS2, + ACTIONS(4460), 1, + anon_sym_bit_DASHand2, + ACTIONS(4462), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4464), 1, + anon_sym_bit_DASHor2, + ACTIONS(4466), 1, anon_sym_and2, + ACTIONS(4468), 1, anon_sym_xor2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2010), 1, + sym_comment, + ACTIONS(4360), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4362), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4364), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2732), 3, + sym__newline, + anon_sym_LBRACE, anon_sym_or2, + ACTIONS(4450), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4458), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4456), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -186104,74 +184695,315 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [53038] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2832), 1, + sym__newline, + ACTIONS(4408), 1, + anon_sym_DASH2, + ACTIONS(4418), 1, + anon_sym_PLUS2, + STATE(2011), 1, + sym_comment, + STATE(2040), 1, + aux_sym__repeat_newline, + ACTIONS(4406), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4410), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4414), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4416), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4420), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4422), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2726), 11, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [53106] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4452), 1, + anon_sym_PLUS2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2012), 1, + sym_comment, + ACTIONS(4360), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(4450), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4456), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2732), 12, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [54920] = 19, + [53172] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, + ACTIONS(2832), 1, + sym__newline, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4402), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4410), 1, + STATE(2013), 1, + sym_comment, + STATE(2041), 1, + aux_sym__repeat_newline, + ACTIONS(2728), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4410), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4414), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4416), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2726), 25, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, - ACTIONS(4412), 1, anon_sym_bit_DASHxor2, - ACTIONS(4414), 1, anon_sym_bit_DASHor2, - ACTIONS(4416), 1, - anon_sym_and2, - ACTIONS(4418), 1, - anon_sym_xor2, - STATE(517), 1, + [53234] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4452), 1, + anon_sym_PLUS2, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2037), 1, + STATE(2014), 1, sym_comment, - ACTIONS(4390), 2, + ACTIONS(2734), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4394), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4398), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, + ACTIONS(2732), 26, + anon_sym_in, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2772), 3, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [53294] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2832), 1, sym__newline, + ACTIONS(4408), 1, + anon_sym_DASH2, + ACTIONS(4418), 1, + anon_sym_PLUS2, + STATE(2015), 1, + sym_comment, + STATE(2042), 1, + aux_sym__repeat_newline, + ACTIONS(4406), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4410), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4414), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4416), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4420), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4412), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4424), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2726), 7, anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - ACTIONS(4396), 4, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4422), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [53364] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4452), 1, + anon_sym_PLUS2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2016), 1, + sym_comment, + ACTIONS(4360), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4362), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4364), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4408), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4406), 8, + ACTIONS(2732), 8, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186180,40 +185012,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [54998] = 14, + [53432] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2867), 1, + ACTIONS(2832), 1, sym__newline, - ACTIONS(4364), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4380), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - STATE(2038), 1, + ACTIONS(4426), 1, + anon_sym_bit_DASHand2, + STATE(2017), 1, sym_comment, - STATE(2055), 1, + STATE(2043), 1, aux_sym__repeat_newline, - ACTIONS(4362), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4366), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4376), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4372), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4360), 8, + ACTIONS(4424), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2726), 6, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186222,50 +185068,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2768), 11, + [53504] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4452), 1, + anon_sym_PLUS2, + ACTIONS(4460), 1, + anon_sym_bit_DASHand2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2018), 1, + sym_comment, + ACTIONS(4360), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4362), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4364), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4450), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4458), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2732), 7, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4456), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [53574] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2832), 1, + sym__newline, + ACTIONS(4408), 1, + anon_sym_DASH2, + ACTIONS(4418), 1, + anon_sym_PLUS2, + ACTIONS(4426), 1, + anon_sym_bit_DASHand2, + ACTIONS(4428), 1, + anon_sym_bit_DASHxor2, + STATE(2019), 1, + sym_comment, + STATE(2044), 1, + aux_sym__repeat_newline, + ACTIONS(4406), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4410), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4414), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4416), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4420), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4412), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, + ACTIONS(2726), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHor2, - [55066] = 13, + ACTIONS(4422), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [53648] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4402), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - STATE(517), 1, + ACTIONS(4460), 1, + anon_sym_bit_DASHand2, + ACTIONS(4462), 1, + anon_sym_bit_DASHxor2, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2039), 1, + STATE(2020), 1, sym_comment, - ACTIONS(4390), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4394), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4398), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4396), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4406), 8, + ACTIONS(4458), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2732), 6, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186274,12 +185236,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2772), 12, + [53720] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2782), 1, sym__newline, + ACTIONS(4408), 1, + anon_sym_DASH2, + ACTIONS(4418), 1, + anon_sym_PLUS2, + STATE(2021), 1, + sym_comment, + STATE(2046), 1, + aux_sym__repeat_newline, + ACTIONS(4406), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4410), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4414), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4416), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4420), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4412), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2772), 19, + anon_sym_in, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -186287,32 +185289,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55132] = 11, + [53786] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2867), 1, + ACTIONS(2782), 1, sym__newline, - ACTIONS(4364), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4380), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - STATE(2040), 1, + STATE(2022), 1, sym_comment, - STATE(2056), 1, + STATE(2048), 1, aux_sym__repeat_newline, - ACTIONS(2770), 2, + ACTIONS(2774), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4366), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4376), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2768), 25, + ACTIONS(4420), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2772), 23, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -186333,37 +185338,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55194] = 10, + [53850] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, - anon_sym_DASH2, - ACTIONS(4402), 1, - anon_sym_PLUS2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2041), 1, + ACTIONS(2782), 1, + sym__newline, + STATE(2023), 1, sym_comment, - ACTIONS(2774), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4394), 2, + STATE(2050), 1, + aux_sym__repeat_newline, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4398), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(2774), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, ACTIONS(2772), 26, anon_sym_in, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [53908] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2782), 1, sym__newline, + STATE(2024), 1, + sym_comment, + STATE(2110), 1, + aux_sym__repeat_newline, + ACTIONS(4414), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2774), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2772), 28, + anon_sym_in, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -186383,58 +185430,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55254] = 15, + [53962] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2867), 1, + ACTIONS(2782), 1, sym__newline, - ACTIONS(4364), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4380), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - STATE(2042), 1, + ACTIONS(4426), 1, + anon_sym_bit_DASHand2, + ACTIONS(4428), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4430), 1, + anon_sym_bit_DASHor2, + STATE(2025), 1, sym_comment, - STATE(2057), 1, + STATE(2054), 1, aux_sym__repeat_newline, - ACTIONS(4362), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4366), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4376), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4372), 4, + ACTIONS(2772), 4, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4374), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2768), 7, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + ACTIONS(4422), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [54038] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2782), 1, + sym__newline, + ACTIONS(4408), 1, + anon_sym_DASH2, + ACTIONS(4418), 1, + anon_sym_PLUS2, + ACTIONS(4426), 1, anon_sym_bit_DASHand2, + ACTIONS(4428), 1, anon_sym_bit_DASHxor2, + ACTIONS(4430), 1, anon_sym_bit_DASHor2, - ACTIONS(4360), 8, + ACTIONS(4432), 1, + anon_sym_and2, + STATE(2026), 1, + sym_comment, + STATE(2056), 1, + aux_sym__repeat_newline, + ACTIONS(4406), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4410), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4414), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4416), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4420), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2772), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4412), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4424), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186443,52 +185554,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55324] = 14, + [54116] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4402), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2043), 1, + ACTIONS(4426), 1, + anon_sym_bit_DASHand2, + ACTIONS(4428), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4430), 1, + anon_sym_bit_DASHor2, + ACTIONS(4432), 1, + anon_sym_and2, + ACTIONS(4434), 1, + anon_sym_xor2, + STATE(2027), 1, sym_comment, - ACTIONS(4390), 2, + STATE(2058), 1, + aux_sym__repeat_newline, + ACTIONS(2772), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4394), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4398), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4396), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4408), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2772), 8, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4406), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186497,55 +185614,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55392] = 16, + [54196] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2867), 1, + ACTIONS(2782), 1, sym__newline, - ACTIONS(4364), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4380), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4384), 1, - anon_sym_bit_DASHand2, - STATE(2044), 1, + STATE(2028), 1, sym_comment, - STATE(2110), 1, + STATE(2060), 1, aux_sym__repeat_newline, - ACTIONS(4362), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4366), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4376), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4372), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4374), 4, + ACTIONS(4422), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2772), 11, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2768), 6, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [54264] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2782), 1, + sym__newline, + ACTIONS(4408), 1, + anon_sym_DASH2, + ACTIONS(4418), 1, + anon_sym_PLUS2, + STATE(2029), 1, + sym_comment, + STATE(2062), 1, + aux_sym__repeat_newline, + ACTIONS(2774), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4410), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4414), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4416), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2772), 25, + anon_sym_in, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4360), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -186553,53 +185706,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55464] = 15, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [54326] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, + ACTIONS(2782), 1, + sym__newline, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4402), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4410), 1, - anon_sym_bit_DASHand2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2045), 1, + STATE(2030), 1, sym_comment, - ACTIONS(4390), 2, + STATE(2064), 1, + aux_sym__repeat_newline, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4394), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4398), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4396), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4408), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, ACTIONS(2772), 7, - sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4406), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186608,55 +185774,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55534] = 17, + [54396] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2867), 1, + ACTIONS(2782), 1, sym__newline, - ACTIONS(4364), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4380), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4384), 1, + ACTIONS(4426), 1, anon_sym_bit_DASHand2, - ACTIONS(4386), 1, - anon_sym_bit_DASHxor2, - STATE(2046), 1, + STATE(2031), 1, sym_comment, - STATE(2058), 1, + STATE(2066), 1, aux_sym__repeat_newline, - ACTIONS(4362), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4366), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4376), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4372), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4374), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2768), 5, + ACTIONS(2772), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4360), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186665,54 +185830,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55608] = 16, + [54468] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, + ACTIONS(2782), 1, + sym__newline, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4402), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4410), 1, + ACTIONS(4426), 1, anon_sym_bit_DASHand2, - ACTIONS(4412), 1, + ACTIONS(4428), 1, anon_sym_bit_DASHxor2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2047), 1, + STATE(2032), 1, sym_comment, - ACTIONS(4390), 2, + STATE(2068), 1, + aux_sym__repeat_newline, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4394), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4398), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4396), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4408), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2772), 6, - sym__newline, + ACTIONS(2772), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4406), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186721,38 +185887,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55680] = 12, + [54542] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4379), 1, + sym__entry_separator, + ACTIONS(4381), 1, + sym_raw_string_begin, + ACTIONS(4470), 1, + anon_sym_RBRACK, + STATE(2033), 1, + sym_comment, + STATE(2085), 1, + aux_sym__types_body_repeat2, + ACTIONS(4375), 33, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [54596] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4402), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2048), 1, + STATE(2034), 1, sym_comment, - ACTIONS(4390), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4394), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4398), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4396), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2776), 20, + ACTIONS(2652), 20, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -186773,81 +185986,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55744] = 11, + [54660] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4402), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2049), 1, + STATE(2035), 1, sym_comment, - ACTIONS(2778), 2, + ACTIONS(2654), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4394), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4398), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2776), 24, - anon_sym_in, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [55806] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2050), 1, - sym_comment, - ACTIONS(4394), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4398), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2778), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(2776), 27, + ACTIONS(2652), 24, anon_sym_in, sym__newline, - anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -186867,28 +186034,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55862] = 6, + [54722] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2051), 1, + STATE(2036), 1, sym_comment, - ACTIONS(4398), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2778), 5, + ACTIONS(2654), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2776), 29, + ACTIONS(2652), 29, anon_sym_in, sym__newline, anon_sym_DASH2, @@ -186918,55 +186083,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [55914] = 17, + [54774] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4402), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - ACTIONS(4410), 1, + ACTIONS(4460), 1, anon_sym_bit_DASHand2, - ACTIONS(4412), 1, + ACTIONS(4462), 1, anon_sym_bit_DASHxor2, - ACTIONS(4414), 1, + ACTIONS(4464), 1, anon_sym_bit_DASHor2, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2052), 1, + STATE(2037), 1, sym_comment, - ACTIONS(4390), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4394), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4398), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4396), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4408), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2776), 5, + ACTIONS(2652), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4406), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -186975,56 +186140,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [55988] = 18, + [54848] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4402), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - ACTIONS(4410), 1, + ACTIONS(4460), 1, anon_sym_bit_DASHand2, - ACTIONS(4412), 1, + ACTIONS(4462), 1, anon_sym_bit_DASHxor2, - ACTIONS(4414), 1, + ACTIONS(4464), 1, anon_sym_bit_DASHor2, - ACTIONS(4416), 1, + ACTIONS(4466), 1, anon_sym_and2, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2053), 1, + STATE(2038), 1, sym_comment, - ACTIONS(4390), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4394), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4398), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2776), 4, + ACTIONS(2652), 4, sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4396), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4408), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4406), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187033,57 +186198,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56064] = 19, + [54924] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4402), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - ACTIONS(4410), 1, + ACTIONS(4460), 1, anon_sym_bit_DASHand2, - ACTIONS(4412), 1, + ACTIONS(4462), 1, anon_sym_bit_DASHxor2, - ACTIONS(4414), 1, + ACTIONS(4464), 1, anon_sym_bit_DASHor2, - ACTIONS(4416), 1, + ACTIONS(4466), 1, anon_sym_and2, - ACTIONS(4418), 1, + ACTIONS(4468), 1, anon_sym_xor2, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2054), 1, + STATE(2039), 1, sym_comment, - ACTIONS(4390), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4394), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4398), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2776), 3, + ACTIONS(2652), 3, sym__newline, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4396), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4408), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4406), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187092,38 +186257,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56142] = 13, + [55002] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4402), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2055), 1, + STATE(2040), 1, sym_comment, - ACTIONS(4390), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4394), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4398), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4396), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4406), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187132,7 +186297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2776), 12, + ACTIONS(2652), 12, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -187145,30 +186310,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56208] = 10, + [55068] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4402), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2056), 1, + STATE(2041), 1, sym_comment, - ACTIONS(2778), 2, + ACTIONS(2654), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4394), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4398), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2776), 26, + ACTIONS(2652), 26, anon_sym_in, sym__newline, anon_sym_LBRACE, @@ -187195,43 +186360,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56268] = 14, + [55128] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4402), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2057), 1, + STATE(2042), 1, sym_comment, - ACTIONS(4390), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4394), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4398), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4396), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4408), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2776), 8, + ACTIONS(2652), 8, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -187240,7 +186405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4406), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187249,54 +186414,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56336] = 16, + [55196] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4392), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4402), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - ACTIONS(4410), 1, + ACTIONS(4460), 1, anon_sym_bit_DASHand2, - ACTIONS(4412), 1, - anon_sym_bit_DASHxor2, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2058), 1, + STATE(2043), 1, sym_comment, - ACTIONS(4390), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4394), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4398), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4396), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4408), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2776), 6, + ACTIONS(2652), 7, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4406), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -187305,394 +186469,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [56408] = 6, + [55266] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2570), 1, - anon_sym_LPAREN2, - ACTIONS(2572), 1, - sym__unquoted_pattern, - STATE(2059), 1, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4452), 1, + anon_sym_PLUS2, + ACTIONS(4460), 1, + anon_sym_bit_DASHand2, + ACTIONS(4462), 1, + anon_sym_bit_DASHxor2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2044), 1, sym_comment, - ACTIONS(996), 5, - anon_sym_GT2, + ACTIONS(4360), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(994), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(4364), 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, - [56460] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4278), 1, - sym__entry_separator, - STATE(1859), 1, - aux_sym__types_body_repeat2, - STATE(2060), 1, - sym_comment, - ACTIONS(4276), 35, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [56510] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2061), 1, - sym_comment, - ACTIONS(874), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - ACTIONS(876), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [56558] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(896), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4440), 1, - sym_filesize_unit, - ACTIONS(4442), 1, - sym_duration_unit, - STATE(2062), 1, - sym_comment, - ACTIONS(894), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(892), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [56612] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2570), 1, - anon_sym_LPAREN2, - ACTIONS(2572), 1, - sym__unquoted_pattern, - STATE(2063), 1, - sym_comment, - ACTIONS(1004), 5, + ACTIONS(4446), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1012), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, + ACTIONS(4454), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [56664] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4278), 1, - sym__entry_separator, - STATE(1859), 1, - aux_sym__types_body_repeat2, - STATE(2064), 1, - sym_comment, - ACTIONS(4295), 35, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [56714] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4434), 1, - sym__entry_separator, - ACTIONS(4436), 1, - sym_raw_string_begin, - ACTIONS(4444), 1, - anon_sym_RBRACK, - STATE(2065), 1, - sym_comment, - STATE(2093), 1, - aux_sym__types_body_repeat2, - ACTIONS(4430), 33, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [56768] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4446), 1, - sym__newline, - ACTIONS(4450), 1, - anon_sym_LBRACK, - ACTIONS(4455), 1, - anon_sym_DOT_DOT, - STATE(2066), 1, - sym_comment, - ACTIONS(4453), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2894), 6, - anon_sym_DOLLAR, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2896), 26, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - [56824] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2067), 1, - sym_comment, - ACTIONS(996), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(994), 32, - anon_sym_in, + ACTIONS(2652), 6, sym__newline, - anon_sym_DASH2, anon_sym_LBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4456), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -187700,84 +186525,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [56872] = 4, + [55338] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(2068), 1, + ACTIONS(2807), 1, + sym__newline, + ACTIONS(4408), 1, + anon_sym_DASH2, + ACTIONS(4418), 1, + anon_sym_PLUS2, + STATE(2045), 1, sym_comment, - ACTIONS(1004), 5, + STATE(2069), 1, + aux_sym__repeat_newline, + ACTIONS(4406), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4410), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1012), 32, - anon_sym_in, - sym__newline, - anon_sym_DASH2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [56920] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2069), 1, - sym_comment, - ACTIONS(2564), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2562), 32, + ACTIONS(4412), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2662), 19, anon_sym_in, - sym__newline, - anon_sym_DASH2, anon_sym_LBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -187788,144 +186571,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [56968] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4446), 1, - sym__newline, - ACTIONS(4450), 1, - anon_sym_LBRACK, - STATE(2070), 1, - sym_comment, - ACTIONS(4453), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2894), 7, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2896), 26, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - [57022] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2071), 1, - sym_comment, - ACTIONS(771), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - ACTIONS(773), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [57070] = 8, + [55404] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2192), 1, - anon_sym_DOT2, - STATE(434), 1, - sym_cell_path, - STATE(547), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(712), 1, - sym_path, - STATE(2072), 1, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4452), 1, + anon_sym_PLUS2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2046), 1, sym_comment, - ACTIONS(1432), 2, + ACTIONS(4360), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4362), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4364), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4446), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(1434), 31, - ts_builtin_sym_end, + ACTIONS(4454), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4450), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2666), 20, anon_sym_in, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -187936,186 +186623,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - [57126] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4458), 1, - sym__newline, - STATE(2073), 1, - sym_comment, - ACTIONS(4453), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2894), 7, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2896), 27, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - [57178] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4465), 1, - anon_sym_DASH_DASH, - STATE(2205), 1, - sym_long_flag, - STATE(2074), 2, - sym_comment, - aux_sym_decl_def_repeat1, - ACTIONS(4461), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(4463), 31, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [57230] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4324), 1, - anon_sym_EQ2, - STATE(2075), 1, - sym_comment, - STATE(2192), 1, - sym__flag_equals_value, - ACTIONS(4468), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(4470), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [57282] = 13, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [55468] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(2807), 1, sym__newline, - ACTIONS(4364), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4380), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - STATE(1968), 1, - aux_sym__repeat_newline, - STATE(2076), 1, + STATE(2047), 1, sym_comment, - ACTIONS(4362), 2, + STATE(2070), 1, + aux_sym__repeat_newline, + ACTIONS(2664), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4366), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4376), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4372), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2666), 19, + ACTIONS(2662), 23, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -188128,6 +186671,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, @@ -188135,36 +186682,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57348] = 12, + [55532] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(4364), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4380), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - STATE(1970), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2077), 1, + STATE(2048), 1, sym_comment, ACTIONS(2668), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4366), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4376), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2666), 23, + ACTIONS(2666), 24, anon_sym_in, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -188187,76 +186733,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57412] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4474), 1, - anon_sym_RBRACK, - ACTIONS(4476), 1, - sym__entry_separator, - ACTIONS(4478), 1, - sym_raw_string_begin, - STATE(2078), 1, - sym_comment, - STATE(2096), 1, - aux_sym__types_body_repeat2, - ACTIONS(4472), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [57466] = 9, + [55594] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(2807), 1, sym__newline, - STATE(1972), 1, - aux_sym__repeat_newline, - STATE(2079), 1, + STATE(2049), 1, sym_comment, - ACTIONS(4366), 2, + STATE(2071), 1, + aux_sym__repeat_newline, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4376), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2668), 3, + ACTIONS(2664), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2666), 26, + ACTIONS(2662), 26, anon_sym_in, anon_sym_DASH2, anon_sym_LBRACE, @@ -188283,26 +186782,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57524] = 7, + [55652] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - STATE(1974), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2080), 1, + STATE(2050), 1, sym_comment, - ACTIONS(4376), 2, + ACTIONS(4360), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2668), 5, + ACTIONS(4364), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2668), 3, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2666), 28, + ACTIONS(2666), 27, anon_sym_in, + sym__newline, anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, @@ -188323,29 +186825,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57578] = 4, + [55708] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2081), 1, + ACTIONS(2807), 1, + sym__newline, + STATE(2051), 1, sym_comment, - ACTIONS(1740), 6, + STATE(2072), 1, + aux_sym__repeat_newline, + ACTIONS(4414), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2664), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1738), 31, + ACTIONS(2662), 28, anon_sym_in, anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -188364,9 +186870,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -188374,103 +186877,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [57626] = 7, - ACTIONS(103), 1, + [55762] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4434), 1, - sym__entry_separator, - ACTIONS(4436), 1, - sym_raw_string_begin, - ACTIONS(4480), 1, - anon_sym_RBRACK, - STATE(2082), 1, + ACTIONS(4472), 1, + sym__newline, + STATE(2052), 1, sym_comment, - STATE(2093), 1, - aux_sym__types_body_repeat2, - ACTIONS(4430), 33, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, + ACTIONS(4373), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2857), 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2859), 27, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [57680] = 18, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + [55814] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(2807), 1, sym__newline, - ACTIONS(4364), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4380), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4384), 1, + ACTIONS(4426), 1, anon_sym_bit_DASHand2, - ACTIONS(4386), 1, + ACTIONS(4428), 1, anon_sym_bit_DASHxor2, - ACTIONS(4388), 1, + ACTIONS(4430), 1, anon_sym_bit_DASHor2, - STATE(1976), 1, - aux_sym__repeat_newline, - STATE(2083), 1, + STATE(2053), 1, sym_comment, - ACTIONS(4362), 2, + STATE(2073), 1, + aux_sym__repeat_newline, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4366), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4376), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2666), 4, + ACTIONS(2662), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4372), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4374), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4360), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188479,25 +186981,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [57756] = 4, + [55890] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(2084), 1, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4452), 1, + anon_sym_PLUS2, + ACTIONS(4460), 1, + anon_sym_bit_DASHand2, + ACTIONS(4462), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4464), 1, + anon_sym_bit_DASHor2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2054), 1, sym_comment, - ACTIONS(1808), 6, - anon_sym_GT2, + ACTIONS(4360), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1806), 31, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + ACTIONS(4362), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4364), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4450), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4458), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2666), 5, + sym__newline, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + ACTIONS(4456), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -188505,209 +187038,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, + [55964] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2807), 1, + sym__newline, + ACTIONS(4408), 1, + anon_sym_DASH2, + ACTIONS(4418), 1, + anon_sym_PLUS2, + ACTIONS(4426), 1, anon_sym_bit_DASHand2, + ACTIONS(4428), 1, anon_sym_bit_DASHxor2, + ACTIONS(4430), 1, anon_sym_bit_DASHor2, - [57804] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2085), 1, + ACTIONS(4432), 1, + anon_sym_and2, + STATE(2055), 1, sym_comment, - ACTIONS(1846), 6, + STATE(2074), 1, + aux_sym__repeat_newline, + ACTIONS(4406), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4410), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - sym__unquoted_pattern, - ACTIONS(1844), 31, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, + ACTIONS(4414), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4416), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4420), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2662), 3, + anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [57852] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2086), 1, - sym_comment, - ACTIONS(2896), 37, - sym__newline, - anon_sym_LBRACK, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [57898] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(910), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4482), 1, - sym_filesize_unit, - ACTIONS(4484), 1, - sym_duration_unit, - STATE(2087), 1, - sym_comment, - ACTIONS(908), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(906), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [57952] = 19, + ACTIONS(4422), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [56042] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(4364), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4368), 1, - anon_sym_and2, - ACTIONS(4380), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - ACTIONS(4384), 1, + ACTIONS(4460), 1, anon_sym_bit_DASHand2, - ACTIONS(4386), 1, + ACTIONS(4462), 1, anon_sym_bit_DASHxor2, - ACTIONS(4388), 1, + ACTIONS(4464), 1, anon_sym_bit_DASHor2, - STATE(1978), 1, + ACTIONS(4466), 1, + anon_sym_and2, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2088), 1, + STATE(2056), 1, sym_comment, - ACTIONS(4362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4366), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4376), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2666), 3, + ACTIONS(2666), 4, + sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(4372), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4374), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4360), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188716,58 +187155,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [58030] = 20, + [56118] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(4364), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4368), 1, - anon_sym_and2, - ACTIONS(4370), 1, - anon_sym_xor2, - ACTIONS(4380), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4384), 1, + ACTIONS(4426), 1, anon_sym_bit_DASHand2, - ACTIONS(4386), 1, + ACTIONS(4428), 1, anon_sym_bit_DASHxor2, - ACTIONS(4388), 1, + ACTIONS(4430), 1, anon_sym_bit_DASHor2, - STATE(1980), 1, - aux_sym__repeat_newline, - STATE(2089), 1, + ACTIONS(4432), 1, + anon_sym_and2, + ACTIONS(4434), 1, + anon_sym_xor2, + STATE(2057), 1, sym_comment, - ACTIONS(2666), 2, + STATE(2075), 1, + aux_sym__repeat_newline, + ACTIONS(2662), 2, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(4362), 2, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4366), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4376), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4372), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4374), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4360), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -188776,409 +187215,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [58110] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2090), 1, - sym_comment, - ACTIONS(747), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token6, - sym_filesize_unit, - ACTIONS(749), 30, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [58158] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4490), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4492), 1, - sym_filesize_unit, - ACTIONS(4494), 1, - sym_duration_unit, - STATE(2091), 1, - sym_comment, - ACTIONS(4488), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4486), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [58212] = 7, - ACTIONS(103), 1, + [56198] = 19, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4476), 1, - sym__entry_separator, - ACTIONS(4478), 1, - sym_raw_string_begin, - ACTIONS(4496), 1, - anon_sym_RBRACK, - STATE(2092), 1, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4452), 1, + anon_sym_PLUS2, + ACTIONS(4460), 1, + anon_sym_bit_DASHand2, + ACTIONS(4462), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4464), 1, + anon_sym_bit_DASHor2, + ACTIONS(4466), 1, + anon_sym_and2, + ACTIONS(4468), 1, + anon_sym_xor2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2058), 1, sym_comment, - STATE(2096), 1, - aux_sym__types_body_repeat2, - ACTIONS(4472), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(4360), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4362), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4364), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2666), 3, + sym__newline, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [58266] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3718), 1, - sym_raw_string_begin, - ACTIONS(4498), 1, - sym__entry_separator, - STATE(2093), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3713), 34, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + anon_sym_or2, + ACTIONS(4450), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4458), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4456), 8, anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_RBRACK, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [58316] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4505), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4507), 1, - sym_filesize_unit, - ACTIONS(4509), 1, - sym_duration_unit, - STATE(2094), 1, - sym_comment, - ACTIONS(4503), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4501), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [58370] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4515), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4517), 1, - sym_filesize_unit, - ACTIONS(4519), 1, - sym_duration_unit, - STATE(2095), 1, - sym_comment, - ACTIONS(4513), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4511), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [58424] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3718), 1, - sym_raw_string_begin, - ACTIONS(4521), 1, - sym__entry_separator, - STATE(2096), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3713), 34, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [58474] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4476), 1, - sym__entry_separator, - ACTIONS(4478), 1, - sym_raw_string_begin, - ACTIONS(4524), 1, - anon_sym_RBRACK, - STATE(2096), 1, - aux_sym__types_body_repeat2, - STATE(2097), 1, - sym_comment, - ACTIONS(4472), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [58528] = 14, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [56276] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(2807), 1, sym__newline, - ACTIONS(4364), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4380), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - STATE(1982), 1, - aux_sym__repeat_newline, - STATE(2098), 1, + STATE(2059), 1, sym_comment, - ACTIONS(4362), 2, + STATE(2076), 1, + aux_sym__repeat_newline, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4366), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4376), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4372), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4360), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -189187,7 +187316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2666), 11, + ACTIONS(2662), 11, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -189199,79 +187328,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58596] = 7, - ACTIONS(103), 1, + [56344] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4476), 1, - sym__entry_separator, - ACTIONS(4478), 1, - sym_raw_string_begin, - ACTIONS(4526), 1, - anon_sym_RBRACK, - STATE(2096), 1, - aux_sym__types_body_repeat2, - STATE(2099), 1, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4452), 1, + anon_sym_PLUS2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2060), 1, sym_comment, - ACTIONS(4472), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(4360), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4362), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4364), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4450), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4456), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2666), 12, + sym__newline, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [58650] = 11, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [56410] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(2807), 1, sym__newline, - ACTIONS(4364), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4380), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - STATE(1984), 1, - aux_sym__repeat_newline, - STATE(2100), 1, + STATE(2061), 1, sym_comment, - ACTIONS(2668), 2, + STATE(2077), 1, + aux_sym__repeat_newline, + ACTIONS(2664), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4366), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4376), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2666), 25, + ACTIONS(2662), 25, anon_sym_in, anon_sym_LBRACE, anon_sym_and2, @@ -189297,54 +187432,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [58712] = 15, + [56472] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(4364), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4380), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - STATE(1986), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2101), 1, + STATE(2062), 1, sym_comment, - ACTIONS(4362), 2, + ACTIONS(2668), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4366), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4376), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4372), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4374), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2666), 7, + ACTIONS(2666), 26, + anon_sym_in, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4360), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -189352,54 +187469,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [58782] = 16, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [56532] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, + ACTIONS(2807), 1, sym__newline, - ACTIONS(4364), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4380), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4384), 1, - anon_sym_bit_DASHand2, - STATE(1988), 1, - aux_sym__repeat_newline, - STATE(2102), 1, + STATE(2063), 1, sym_comment, - ACTIONS(4362), 2, + STATE(2078), 1, + aux_sym__repeat_newline, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4366), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4376), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4372), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4374), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2666), 6, + ACTIONS(2662), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4360), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -189408,55 +187537,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [58854] = 17, + [56602] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2875), 1, - sym__newline, - ACTIONS(4364), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4380), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - ACTIONS(4384), 1, - anon_sym_bit_DASHand2, - ACTIONS(4386), 1, - anon_sym_bit_DASHxor2, - STATE(1990), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2103), 1, + STATE(2064), 1, sym_comment, - ACTIONS(4362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4366), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4376), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4372), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4374), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2666), 5, + ACTIONS(2666), 8, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4360), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -189465,211 +187591,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [58928] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4528), 1, - anon_sym_QMARK2, - STATE(2104), 1, - sym_comment, - ACTIONS(1446), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1448), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [58978] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4528), 1, - anon_sym_BANG, - STATE(2105), 1, - sym_comment, - ACTIONS(1446), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1448), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [59028] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4534), 1, - aux_sym_cmd_identifier_token6, - ACTIONS(4536), 1, - sym_filesize_unit, - ACTIONS(4538), 1, - sym_duration_unit, - STATE(2106), 1, - sym_comment, - ACTIONS(4532), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4530), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [59082] = 6, + [56670] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern, - ACTIONS(1946), 1, - anon_sym_LPAREN2, - STATE(2107), 1, + ACTIONS(2807), 1, + sym__newline, + ACTIONS(4408), 1, + anon_sym_DASH2, + ACTIONS(4418), 1, + anon_sym_PLUS2, + ACTIONS(4426), 1, + anon_sym_bit_DASHand2, + STATE(2065), 1, sym_comment, - ACTIONS(1944), 5, + STATE(2079), 1, + aux_sym__repeat_newline, + ACTIONS(4406), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4410), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1942), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [59134] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1956), 1, - anon_sym_LPAREN2, - ACTIONS(1962), 1, - sym__unquoted_pattern, - STATE(2108), 1, - sym_comment, - ACTIONS(2576), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2574), 30, - anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + anon_sym_bit_DASHshr2, + ACTIONS(4412), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4424), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2662), 6, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4422), 8, + anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -189677,114 +187647,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [56742] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4452), 1, + anon_sym_PLUS2, + ACTIONS(4460), 1, + anon_sym_bit_DASHand2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2066), 1, + sym_comment, + ACTIONS(4360), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4362), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4364), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, + ACTIONS(2666), 7, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [59186] = 4, + ACTIONS(4456), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [56812] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4540), 1, + ACTIONS(2807), 1, sym__newline, - STATE(2109), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1935), 35, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [59234] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4392), 1, + ACTIONS(4408), 1, anon_sym_DASH2, - ACTIONS(4402), 1, + ACTIONS(4418), 1, anon_sym_PLUS2, - ACTIONS(4410), 1, + ACTIONS(4426), 1, anon_sym_bit_DASHand2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2110), 1, + ACTIONS(4428), 1, + anon_sym_bit_DASHxor2, + STATE(2067), 1, sym_comment, - ACTIONS(4390), 2, + STATE(2080), 1, + aux_sym__repeat_newline, + ACTIONS(4406), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4394), 2, + ACTIONS(4410), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4398), 2, + ACTIONS(4414), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, + ACTIONS(4416), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, + ACTIONS(4420), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4396), 4, + ACTIONS(4412), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4408), 4, + ACTIONS(4424), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2776), 7, - sym__newline, + ACTIONS(2662), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4406), 8, + ACTIONS(4422), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -189793,231 +187759,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [59304] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2111), 1, - sym_comment, - ACTIONS(3732), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3730), 34, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [59351] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2572), 1, - sym__unquoted_pattern, - STATE(2112), 1, - sym_comment, - ACTIONS(996), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(994), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [59400] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4543), 1, - sym__newline, - STATE(2113), 2, - sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3734), 7, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(3736), 27, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - [59449] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2114), 1, - sym_comment, - ACTIONS(3732), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3730), 34, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_RBRACK, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [59496] = 20, + [56886] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(4364), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4368), 1, - anon_sym_and2, - ACTIONS(4370), 1, - anon_sym_xor2, - ACTIONS(4380), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - ACTIONS(4384), 1, + ACTIONS(4460), 1, anon_sym_bit_DASHand2, - ACTIONS(4386), 1, + ACTIONS(4462), 1, anon_sym_bit_DASHxor2, - ACTIONS(4388), 1, - anon_sym_bit_DASHor2, - ACTIONS(4546), 1, - anon_sym_or2, - STATE(2115), 1, - sym_comment, - STATE(2116), 1, + STATE(528), 1, aux_sym__repeat_newline, - ACTIONS(4362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4366), 2, + STATE(2068), 1, + sym_comment, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4376), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4378), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4382), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4372), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4374), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4360), 8, + ACTIONS(2666), 6, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190026,58 +187815,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [59575] = 20, + [56958] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(4392), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(4402), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - ACTIONS(4410), 1, - anon_sym_bit_DASHand2, - ACTIONS(4412), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4414), 1, - anon_sym_bit_DASHor2, - ACTIONS(4416), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2069), 1, + sym_comment, + ACTIONS(4360), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4362), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4364), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4450), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2722), 20, + anon_sym_in, + sym__newline, + anon_sym_LBRACE, anon_sym_and2, - ACTIONS(4418), 1, anon_sym_xor2, - ACTIONS(4548), 1, anon_sym_or2, - STATE(517), 1, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [57022] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4452), 1, + anon_sym_PLUS2, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2116), 1, + STATE(2070), 1, sym_comment, - ACTIONS(4390), 2, + ACTIONS(2724), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4394), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4398), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4400), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4404), 2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4396), 4, + ACTIONS(2722), 24, + anon_sym_in, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4408), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4406), 8, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [57084] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2071), 1, + sym_comment, + ACTIONS(4360), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4362), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4364), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2724), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2722), 27, anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -190085,145 +187953,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [59654] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4550), 1, - sym__newline, - STATE(2117), 2, - sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3734), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(3736), 31, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [59703] = 5, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [57140] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2556), 1, - sym__unquoted_pattern, - STATE(2118), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2072), 1, sym_comment, - ACTIONS(1615), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(4362), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2724), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2722), 29, anon_sym_in, - ACTIONS(1689), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [59752] = 20, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [57192] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2808), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(2812), 1, - anon_sym_and2, - ACTIONS(2822), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - ACTIONS(2826), 1, + ACTIONS(4460), 1, anon_sym_bit_DASHand2, - ACTIONS(2828), 1, + ACTIONS(4462), 1, anon_sym_bit_DASHxor2, - ACTIONS(2830), 1, + ACTIONS(4464), 1, anon_sym_bit_DASHor2, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(2873), 1, - anon_sym_xor2, - ACTIONS(4553), 1, - anon_sym_or2, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2119), 1, + STATE(2073), 1, sym_comment, - ACTIONS(2806), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2810), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2818), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2820), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2824), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2814), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2816), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2804), 8, + ACTIONS(2722), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190232,231 +188069,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [59831] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2568), 1, - sym__unquoted_pattern, - STATE(2120), 1, - sym_comment, - ACTIONS(2564), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2562), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [59880] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4143), 1, - sym__unquoted_pattern, - STATE(2121), 1, - sym_comment, - ACTIONS(793), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(890), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [59929] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2122), 1, - sym_comment, - ACTIONS(2327), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - sym__unquoted_pattern, - ACTIONS(2325), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [59976] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2123), 1, - sym_comment, - ACTIONS(1525), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - anon_sym_DOT2, - ACTIONS(1527), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [60023] = 20, + [57266] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(3741), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(3749), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - ACTIONS(3781), 1, + ACTIONS(4460), 1, anon_sym_bit_DASHand2, - ACTIONS(3785), 1, + ACTIONS(4462), 1, anon_sym_bit_DASHxor2, - ACTIONS(3789), 1, + ACTIONS(4464), 1, anon_sym_bit_DASHor2, - ACTIONS(3805), 1, + ACTIONS(4466), 1, anon_sym_and2, - ACTIONS(3807), 1, - anon_sym_xor2, - ACTIONS(4555), 1, - anon_sym_or2, - STATE(2124), 1, - sym_comment, - STATE(2125), 1, + STATE(528), 1, aux_sym__repeat_newline, - ACTIONS(3743), 2, + STATE(2074), 1, + sym_comment, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3745), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3747), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3763), 2, + ACTIONS(4446), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3769), 2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3765), 4, + ACTIONS(2722), 4, + sym__newline, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3767), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3761), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190465,57 +188127,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60102] = 20, + [57342] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(3751), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(3759), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - ACTIONS(3783), 1, + ACTIONS(4460), 1, anon_sym_bit_DASHand2, - ACTIONS(3787), 1, + ACTIONS(4462), 1, anon_sym_bit_DASHxor2, - ACTIONS(3811), 1, + ACTIONS(4464), 1, anon_sym_bit_DASHor2, - ACTIONS(3813), 1, + ACTIONS(4466), 1, anon_sym_and2, - ACTIONS(3815), 1, + ACTIONS(4468), 1, anon_sym_xor2, - ACTIONS(4557), 1, - anon_sym_or2, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2125), 1, + STATE(2075), 1, sym_comment, - ACTIONS(3753), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3755), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3757), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3773), 2, + ACTIONS(4446), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(3779), 2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3775), 4, + ACTIONS(2722), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3777), 4, + ACTIONS(4458), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3771), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190524,101 +188186,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60181] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2572), 1, - sym__unquoted_pattern, - STATE(2126), 1, - sym_comment, - ACTIONS(1004), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(1012), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [60230] = 20, + [57420] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(2838), 1, + ACTIONS(4448), 1, anon_sym_DASH2, - ACTIONS(2842), 1, - anon_sym_and2, - ACTIONS(2844), 1, - anon_sym_xor2, - ACTIONS(2854), 1, + ACTIONS(4452), 1, anon_sym_PLUS2, - ACTIONS(2858), 1, - anon_sym_bit_DASHand2, - ACTIONS(2860), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2862), 1, - anon_sym_bit_DASHor2, - ACTIONS(4559), 1, - anon_sym_or2, - STATE(2119), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2127), 1, + STATE(2076), 1, sym_comment, - ACTIONS(2836), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2840), 2, + ACTIONS(4360), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2850), 2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2852), 2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2856), 2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2846), 4, + ACTIONS(4450), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2848), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2832), 8, + ACTIONS(4456), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -190627,23 +188226,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [60309] = 5, + ACTIONS(2722), 12, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [57486] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, - sym__unquoted_pattern, - STATE(2128), 1, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4452), 1, + anon_sym_PLUS2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2077), 1, sym_comment, - ACTIONS(793), 5, + ACTIONS(2724), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(4360), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(890), 30, + ACTIONS(4362), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4364), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2722), 26, anon_sym_in, - anon_sym_DASH2, - anon_sym_EQ_GT, + sym__newline, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -190662,156 +188284,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [57546] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4452), 1, + anon_sym_PLUS2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2078), 1, + sym_comment, + ACTIONS(4360), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4362), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(4364), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(4450), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4458), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2722), 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, - [60358] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4476), 1, - sym__entry_separator, - ACTIONS(4478), 1, - sym_raw_string_begin, - STATE(2096), 1, - aux_sym__types_body_repeat2, - STATE(2129), 1, - sym_comment, - ACTIONS(4472), 33, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - aux_sym__unquoted_in_list_token1, - [60409] = 4, + ACTIONS(4456), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [57614] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(2130), 1, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4452), 1, + anon_sym_PLUS2, + ACTIONS(4460), 1, + anon_sym_bit_DASHand2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2079), 1, sym_comment, - ACTIONS(1552), 4, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(4360), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4362), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4364), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4450), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4458), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2722), 7, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4456), 8, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1554), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [60456] = 3, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [57684] = 16, ACTIONS(3), 1, anon_sym_POUND, - STATE(2131), 1, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4452), 1, + anon_sym_PLUS2, + ACTIONS(4460), 1, + anon_sym_bit_DASHand2, + ACTIONS(4462), 1, + anon_sym_bit_DASHxor2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2080), 1, sym_comment, - ACTIONS(2110), 36, - sym__newline, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_oneof, - [60501] = 4, + ACTIONS(4360), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4362), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4364), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4450), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4458), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2722), 6, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4456), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [57756] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2132), 1, + ACTIONS(4286), 1, + anon_sym_EQ2, + STATE(2081), 1, sym_comment, - ACTIONS(1529), 4, + STATE(2138), 1, + sym__flag_equals_value, + ACTIONS(4475), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_DOT2, - ACTIONS(1531), 32, + ACTIONS(4477), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190844,68 +188500,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60548] = 6, + [57808] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2581), 1, + anon_sym_LPAREN2, + STATE(2082), 1, + sym_comment, + ACTIONS(2527), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2525), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [57860] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4434), 1, + ACTIONS(914), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4479), 1, + sym_filesize_unit, + ACTIONS(4481), 1, + sym_duration_unit, + STATE(2083), 1, + sym_comment, + ACTIONS(912), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(910), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [57914] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4389), 1, sym__entry_separator, - ACTIONS(4436), 1, + ACTIONS(4391), 1, sym_raw_string_begin, - STATE(2093), 1, - aux_sym__types_body_repeat2, - STATE(2133), 1, + ACTIONS(4483), 1, + anon_sym_RBRACK, + STATE(2084), 1, sym_comment, - ACTIONS(4430), 33, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - aux_sym_cmd_identifier_token1, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_in, + STATE(2091), 1, + aux_sym__types_body_repeat2, + ACTIONS(4385), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60599] = 5, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [57968] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4561), 1, - anon_sym_LBRACK2, - STATE(2134), 1, + ACTIONS(3690), 1, + sym_raw_string_begin, + ACTIONS(4485), 1, + sym__entry_separator, + STATE(2085), 2, sym_comment, - ACTIONS(2116), 3, + aux_sym__types_body_repeat2, + ACTIONS(3685), 34, anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2114), 32, - sym_raw_string_begin, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, + aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -190919,13 +188670,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + anon_sym_RBRACK, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -190933,16 +188685,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60648] = 4, + [58018] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2135), 1, + ACTIONS(4488), 1, + anon_sym_QMARK2, + STATE(2086), 1, sym_comment, - ACTIONS(2088), 3, + ACTIONS(1450), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2086), 32, + anon_sym_DOT2, + ACTIONS(1452), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -190975,16 +188730,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60694] = 4, + [58068] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2136), 1, + ACTIONS(4494), 1, + anon_sym_DASH_DASH, + STATE(2167), 1, + sym_long_flag, + STATE(2087), 2, sym_comment, - ACTIONS(1615), 3, + aux_sym_decl_def_repeat1, + ACTIONS(4490), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1689), 32, + ACTIONS(4492), 31, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191009,7 +188769,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -191017,122 +188776,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60740] = 4, + [58120] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2137), 1, + ACTIONS(2587), 1, + anon_sym_LPAREN2, + ACTIONS(2589), 1, + sym__unquoted_pattern, + STATE(2088), 1, sym_comment, - ACTIONS(2620), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, + ACTIONS(2585), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2583), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [58172] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2089), 1, + sym_comment, + ACTIONS(2387), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + sym__unquoted_pattern, + ACTIONS(2385), 31, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [58220] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2090), 1, + sym_comment, + ACTIONS(1002), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1018), 32, anon_sym_in, - ACTIONS(2618), 32, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [58268] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3690), 1, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + ACTIONS(4497), 1, + sym__entry_separator, + STATE(2091), 2, + sym_comment, + aux_sym__types_body_repeat2, + ACTIONS(3685), 34, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60786] = 4, - ACTIONS(3), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [58318] = 7, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2138), 1, - sym_comment, - ACTIONS(2628), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2626), 32, + ACTIONS(4389), 1, + sym__entry_separator, + ACTIONS(4391), 1, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + ACTIONS(4500), 1, + anon_sym_RBRACK, + STATE(2091), 1, + aux_sym__types_body_repeat2, + STATE(2092), 1, + sym_comment, + ACTIONS(4385), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [60832] = 11, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [58372] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4565), 1, - anon_sym_DASH2, - ACTIONS(4575), 1, - anon_sym_PLUS2, - STATE(2139), 1, + STATE(2093), 1, sym_comment, - ACTIONS(4563), 2, + ACTIONS(2593), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4567), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4571), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4573), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4577), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4569), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2547), 19, + anon_sym_PLUS2, + ACTIONS(2591), 32, anon_sym_in, + sym__newline, + anon_sym_DASH2, anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -191143,77 +189029,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [60892] = 4, - ACTIONS(3), 1, + [58420] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2140), 1, + ACTIONS(4278), 1, + sym__entry_separator, + STATE(1857), 1, + aux_sym__types_body_repeat2, + STATE(2094), 1, sym_comment, - ACTIONS(2560), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2558), 32, - sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [60938] = 7, + ACTIONS(4288), 35, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [58470] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2141), 1, + STATE(2095), 1, sym_comment, - ACTIONS(4567), 2, + ACTIONS(994), 5, + anon_sym_GT2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4571), 2, + anon_sym_PLUS2, + ACTIONS(1004), 32, + anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4573), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2549), 3, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [58518] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4278), 1, + sym__entry_separator, + STATE(1857), 1, + aux_sym__types_body_repeat2, + STATE(2096), 1, + sym_comment, + ACTIONS(4276), 35, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [58568] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2595), 1, + anon_sym_LPAREN2, + ACTIONS(2597), 1, + sym__unquoted_pattern, + STATE(2097), 1, + sym_comment, + ACTIONS(2593), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2547), 26, + ACTIONS(2591), 30, anon_sym_in, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -191232,21 +189217,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [60990] = 4, + [58620] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2142), 1, + ACTIONS(4488), 1, + anon_sym_BANG, + STATE(2098), 1, sym_comment, - ACTIONS(1872), 3, + ACTIONS(1450), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1870), 32, + anon_sym_DOT2, + ACTIONS(1452), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191279,24 +189271,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61036] = 5, + [58670] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2143), 1, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern, + STATE(2099), 1, sym_comment, - ACTIONS(4571), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2549), 5, + ACTIONS(1002), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2547), 28, + ACTIONS(1018), 30, anon_sym_in, anon_sym_DASH2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -191315,6 +189308,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -191322,53 +189317,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [61084] = 16, + [58722] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4565), 1, - anon_sym_DASH2, - ACTIONS(4575), 1, - anon_sym_PLUS2, - ACTIONS(4583), 1, - anon_sym_bit_DASHand2, - ACTIONS(4585), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4587), 1, - anon_sym_bit_DASHor2, - STATE(2144), 1, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern, + STATE(2100), 1, sym_comment, - ACTIONS(4563), 2, + ACTIONS(994), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4567), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4571), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4573), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4577), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2547), 4, - anon_sym_LBRACE, + anon_sym_PLUS2, + ACTIONS(1004), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4569), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4581), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4579), 8, - anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -191376,148 +189346,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [61154] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4565), 1, - anon_sym_DASH2, - ACTIONS(4575), 1, - anon_sym_PLUS2, - ACTIONS(4583), 1, - anon_sym_bit_DASHand2, - ACTIONS(4585), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4587), 1, - anon_sym_bit_DASHor2, - ACTIONS(4589), 1, - anon_sym_and2, - STATE(2145), 1, - sym_comment, - ACTIONS(4563), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4567), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4571), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4573), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4577), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2547), 3, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(4569), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4581), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4579), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [61226] = 18, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4565), 1, - anon_sym_DASH2, - ACTIONS(4575), 1, - anon_sym_PLUS2, - ACTIONS(4583), 1, - anon_sym_bit_DASHand2, - ACTIONS(4585), 1, - anon_sym_bit_DASHxor2, - ACTIONS(4587), 1, - anon_sym_bit_DASHor2, - ACTIONS(4589), 1, - anon_sym_and2, - ACTIONS(4591), 1, - anon_sym_xor2, - STATE(2146), 1, - sym_comment, - ACTIONS(2547), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(4563), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4567), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4571), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4573), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4577), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4569), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4581), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4579), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [61300] = 12, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [58774] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4389), 1, + sym__entry_separator, + ACTIONS(4391), 1, + sym_raw_string_begin, + ACTIONS(4502), 1, + anon_sym_RBRACK, + STATE(2091), 1, + aux_sym__types_body_repeat2, + STATE(2101), 1, + sym_comment, + ACTIONS(4385), 33, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [58828] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4565), 1, - anon_sym_DASH2, - ACTIONS(4575), 1, - anon_sym_PLUS2, - STATE(2147), 1, + ACTIONS(1724), 1, + sym__unquoted_pattern, + STATE(2102), 1, sym_comment, - ACTIONS(4563), 2, + ACTIONS(866), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4567), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4571), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4573), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4577), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4569), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4579), 8, + anon_sym_PLUS2, + ACTIONS(908), 31, anon_sym_in, + sym__newline, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -191525,106 +189438,370 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2547), 11, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [61362] = 27, + [58878] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2103), 1, + sym_comment, + ACTIONS(789), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token6, + sym_filesize_unit, + ACTIONS(791), 30, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [58926] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(902), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4504), 1, + sym_filesize_unit, + ACTIONS(4506), 1, + sym_duration_unit, + STATE(2104), 1, + sym_comment, + ACTIONS(900), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(898), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [58980] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4512), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4514), 1, + sym_filesize_unit, + ACTIONS(4516), 1, + sym_duration_unit, + STATE(2105), 1, + sym_comment, + ACTIONS(4510), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4508), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [59034] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4379), 1, + sym__entry_separator, + ACTIONS(4381), 1, + sym_raw_string_begin, + ACTIONS(4518), 1, + anon_sym_RBRACK, + STATE(2085), 1, + aux_sym__types_body_repeat2, + STATE(2106), 1, + sym_comment, + ACTIONS(4375), 33, + anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_in, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [59088] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4524), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4526), 1, + sym_filesize_unit, + ACTIONS(4528), 1, + sym_duration_unit, + STATE(2107), 1, + sym_comment, + ACTIONS(4522), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4520), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [59142] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4534), 1, + aux_sym_cmd_identifier_token6, + ACTIONS(4536), 1, + sym_filesize_unit, + ACTIONS(4538), 1, + sym_duration_unit, + STATE(2108), 1, + sym_comment, + ACTIONS(4532), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4530), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [59196] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3835), 1, - anon_sym_DQUOTE, - ACTIONS(3837), 1, - anon_sym_SQUOTE, - ACTIONS(3839), 1, - anon_sym_BQUOTE, - ACTIONS(3841), 1, - sym_raw_string_begin, - ACTIONS(4595), 1, - anon_sym_null, - ACTIONS(4601), 1, - anon_sym_GT2, - ACTIONS(4603), 1, + ACTIONS(4366), 1, + sym__newline, + ACTIONS(4370), 1, + anon_sym_LBRACK, + ACTIONS(4540), 1, anon_sym_DOT_DOT, - ACTIONS(4607), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4609), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4613), 1, - sym_val_date, - ACTIONS(4615), 1, - aux_sym__unquoted_in_record_token1, - STATE(2148), 1, + STATE(2109), 1, sym_comment, - STATE(2217), 1, - aux_sym__collection_body_repeat1, - STATE(2339), 1, - sym__unquoted_in_record, - STATE(2348), 1, - sym_val_string, - STATE(2396), 1, - sym__collection_entry, - STATE(3881), 1, - sym__val_number_decimal, - STATE(4830), 1, - sym__collection_body, - STATE(5043), 1, - sym_val_bool, - ACTIONS(4593), 2, + ACTIONS(4373), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2857), 6, + anon_sym_DOLLAR, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2859), 26, + sym_raw_string_begin, anon_sym_true, anon_sym_false, - ACTIONS(4599), 2, - anon_sym_COMMA, - anon_sym_LF, - ACTIONS(4605), 2, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4611), 2, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4843), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4597), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2395), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [61454] = 9, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + [59252] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4565), 1, - anon_sym_DASH2, - ACTIONS(4575), 1, - anon_sym_PLUS2, - STATE(2149), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2110), 1, sym_comment, - ACTIONS(2549), 2, + ACTIONS(4362), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2668), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4567), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(4571), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4573), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2547), 25, + anon_sym_PLUS2, + ACTIONS(2666), 29, anon_sym_in, + sym__newline, + anon_sym_DASH2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -191644,72 +189821,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [61510] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4565), 1, - anon_sym_DASH2, - ACTIONS(4575), 1, - anon_sym_PLUS2, - STATE(2150), 1, - sym_comment, - ACTIONS(4563), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4567), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4571), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4573), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4577), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4569), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4581), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2547), 7, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4579), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [61574] = 4, + [59304] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2151), 1, + STATE(2111), 1, sym_comment, - ACTIONS(2481), 3, + ACTIONS(2387), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2479), 32, + sym__unquoted_pattern, + ACTIONS(2385), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191742,68 +189871,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61620] = 14, + [59351] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4565), 1, - anon_sym_DASH2, - ACTIONS(4575), 1, - anon_sym_PLUS2, - ACTIONS(4583), 1, - anon_sym_bit_DASHand2, - STATE(2152), 1, + ACTIONS(4127), 1, + sym__unquoted_pattern, + STATE(2112), 1, sym_comment, - ACTIONS(4563), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4567), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(4571), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(4573), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(4577), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(4569), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4581), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2547), 6, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - ACTIONS(4579), 8, + ACTIONS(866), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [61686] = 4, + ACTIONS(908), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [59400] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2153), 1, + STATE(2113), 1, sym_comment, - ACTIONS(2481), 3, + ACTIONS(1529), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2479), 32, + anon_sym_DOT2, + ACTIONS(1531), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191836,16 +189958,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61732] = 4, + [59447] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2154), 1, + ACTIONS(2597), 1, + sym__unquoted_pattern, + STATE(2114), 1, sym_comment, - ACTIONS(2485), 3, + ACTIONS(2593), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2483), 32, + ACTIONS(2591), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191878,16 +190002,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61778] = 4, + [59496] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2155), 1, + STATE(2115), 1, sym_comment, - ACTIONS(2489), 3, + ACTIONS(1533), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2487), 32, + anon_sym_DOT2, + ACTIONS(1535), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -191920,24 +190045,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61824] = 5, + [59543] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2116), 1, + sym_comment, + ACTIONS(3732), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3730), 34, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [59590] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4617), 1, + ACTIONS(4543), 1, sym__newline, - STATE(2156), 2, - aux_sym__repeat_newline, + STATE(2117), 2, sym_comment, - ACTIONS(1940), 8, + aux_sym__types_body_repeat1, + ACTIONS(3734), 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_token1, - ACTIONS(1935), 25, + aux_sym__unquoted_in_list_token1, + ACTIONS(3736), 27, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -191948,9 +190115,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -191963,58 +190131,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [61872] = 4, - ACTIONS(3), 1, + anon_sym_DOT_DOT_DOT_LBRACK, + [59639] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2157), 1, - sym_comment, - ACTIONS(2493), 3, - anon_sym_export, - aux_sym_cmd_identifier_token1, - anon_sym_in, - ACTIONS(2491), 32, + ACTIONS(4389), 1, + sym__entry_separator, + ACTIONS(4391), 1, sym_raw_string_begin, - anon_sym_alias, - anon_sym_let, - anon_sym_mut, - anon_sym_const, - anon_sym_def, - anon_sym_use, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_for, - anon_sym_loop, - anon_sym_while, - anon_sym_if, - anon_sym_else, - anon_sym_try, - anon_sym_catch, - anon_sym_match, + STATE(2091), 1, + aux_sym__types_body_repeat2, + STATE(2118), 1, + sym_comment, + ACTIONS(4385), 33, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61918] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + aux_sym__unquoted_in_list_token1, + [59690] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2158), 1, + ACTIONS(2622), 1, + sym__unquoted_pattern, + STATE(2119), 1, sym_comment, - ACTIONS(2497), 3, + ACTIONS(1604), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2495), 32, + ACTIONS(1706), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192047,51 +190221,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [61964] = 15, + [59739] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4565), 1, + ACTIONS(2787), 1, anon_sym_DASH2, - ACTIONS(4575), 1, + ACTIONS(2799), 1, anon_sym_PLUS2, - ACTIONS(4583), 1, + ACTIONS(2803), 1, anon_sym_bit_DASHand2, - ACTIONS(4585), 1, + ACTIONS(2805), 1, anon_sym_bit_DASHxor2, - STATE(2159), 1, + ACTIONS(2899), 1, + anon_sym_and2, + ACTIONS(2901), 1, + anon_sym_bit_DASHor2, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(2905), 1, + anon_sym_xor2, + ACTIONS(4546), 1, + anon_sym_or2, + STATE(2120), 1, sym_comment, - ACTIONS(4563), 2, + STATE(2121), 1, + aux_sym__repeat_newline, + ACTIONS(2785), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4567), 2, + ACTIONS(2789), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4571), 2, + ACTIONS(2795), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4573), 2, + ACTIONS(2797), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4577), 2, + ACTIONS(2801), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4569), 4, + ACTIONS(2791), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4581), 4, + ACTIONS(2793), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2547), 5, - anon_sym_LBRACE, + ACTIONS(2780), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [59818] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2814), 1, + anon_sym_DASH2, + ACTIONS(2826), 1, + anon_sym_PLUS2, + ACTIONS(2830), 1, + anon_sym_bit_DASHand2, + ACTIONS(2835), 1, + anon_sym_bit_DASHxor2, + ACTIONS(2837), 1, + anon_sym_bit_DASHor2, + ACTIONS(2841), 1, anon_sym_and2, + ACTIONS(2897), 1, anon_sym_xor2, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(4548), 1, anon_sym_or2, - anon_sym_bit_DASHor2, - ACTIONS(4579), 8, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2121), 1, + sym_comment, + ACTIONS(2812), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(2816), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(2822), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2824), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2828), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2818), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2820), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2810), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -192100,16 +190339,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [62032] = 4, + [59897] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2160), 1, + STATE(2122), 1, sym_comment, - ACTIONS(2313), 3, + ACTIONS(1513), 4, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2311), 32, + anon_sym_DOT2, + ACTIONS(1515), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192142,16 +190382,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62078] = 4, + [59944] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2161), 1, + ACTIONS(4550), 1, + anon_sym_LBRACK2, + STATE(2123), 1, sym_comment, - ACTIONS(1505), 3, + ACTIONS(2168), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1507), 32, + ACTIONS(2166), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192184,21 +190426,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62124] = 4, - ACTIONS(3), 1, + [59993] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2162), 1, + ACTIONS(4379), 1, + sym__entry_separator, + ACTIONS(4381), 1, + sym_raw_string_begin, + STATE(2085), 1, + aux_sym__types_body_repeat2, + STATE(2124), 1, sym_comment, - ACTIONS(1509), 3, + ACTIONS(4375), 33, anon_sym_export, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, aux_sym_cmd_identifier_token1, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_in, - ACTIONS(1511), 32, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [60044] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2125), 1, + sym_comment, + ACTIONS(3732), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3730), 34, + anon_sym_export, anon_sym_alias, anon_sym_let, anon_sym_mut, anon_sym_const, + aux_sym_cmd_identifier_token1, anon_sym_def, anon_sym_use, anon_sym_export_DASHenv, @@ -192212,13 +190499,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_catch, anon_sym_match, + anon_sym_in, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, + anon_sym_RBRACK, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -192226,16 +190514,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62170] = 4, + [60091] = 20, ACTIONS(3), 1, anon_sym_POUND, - STATE(2163), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(4408), 1, + anon_sym_DASH2, + ACTIONS(4418), 1, + anon_sym_PLUS2, + ACTIONS(4426), 1, + anon_sym_bit_DASHand2, + ACTIONS(4428), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4430), 1, + anon_sym_bit_DASHor2, + ACTIONS(4432), 1, + anon_sym_and2, + ACTIONS(4434), 1, + anon_sym_xor2, + ACTIONS(4552), 1, + anon_sym_or2, + STATE(2126), 1, sym_comment, - ACTIONS(1458), 3, + STATE(2127), 1, + aux_sym__repeat_newline, + ACTIONS(4406), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4410), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4414), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4416), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4420), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4412), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4424), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4422), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [60170] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(4448), 1, + anon_sym_DASH2, + ACTIONS(4452), 1, + anon_sym_PLUS2, + ACTIONS(4460), 1, + anon_sym_bit_DASHand2, + ACTIONS(4462), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4464), 1, + anon_sym_bit_DASHor2, + ACTIONS(4466), 1, + anon_sym_and2, + ACTIONS(4468), 1, + anon_sym_xor2, + ACTIONS(4554), 1, + anon_sym_or2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2127), 1, + sym_comment, + ACTIONS(4360), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4362), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4364), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4446), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4454), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4450), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4458), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4456), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [60249] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4556), 1, + sym__newline, + STATE(2128), 2, + sym_comment, + aux_sym__types_body_repeat1, + ACTIONS(3734), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1460), 32, + ACTIONS(3736), 31, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192260,7 +190669,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -192268,16 +190676,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62216] = 4, + [60298] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2164), 1, + STATE(2129), 1, + sym_comment, + ACTIONS(2146), 36, + sym__newline, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_oneof, + [60343] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(3741), 1, + anon_sym_DASH2, + ACTIONS(3749), 1, + anon_sym_PLUS2, + ACTIONS(3813), 1, + anon_sym_bit_DASHand2, + ACTIONS(3815), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3817), 1, + anon_sym_bit_DASHor2, + ACTIONS(3819), 1, + anon_sym_and2, + ACTIONS(3821), 1, + anon_sym_xor2, + ACTIONS(4559), 1, + anon_sym_or2, + STATE(2130), 1, + sym_comment, + STATE(2131), 1, + aux_sym__repeat_newline, + ACTIONS(3743), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3745), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3747), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3803), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3807), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3805), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3811), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3809), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [60422] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(3845), 1, + anon_sym_DASH2, + ACTIONS(3855), 1, + anon_sym_PLUS2, + ACTIONS(3863), 1, + anon_sym_bit_DASHand2, + ACTIONS(3865), 1, + anon_sym_bit_DASHxor2, + ACTIONS(3867), 1, + anon_sym_bit_DASHor2, + ACTIONS(3869), 1, + anon_sym_and2, + ACTIONS(3871), 1, + anon_sym_xor2, + ACTIONS(4561), 1, + anon_sym_or2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2131), 1, + sym_comment, + ACTIONS(3843), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3847), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(3851), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(3853), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(3857), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(3849), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(3861), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(3859), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [60501] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2604), 1, + sym__unquoted_pattern, + STATE(2132), 1, sym_comment, - ACTIONS(2331), 3, + ACTIONS(1002), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2329), 32, + ACTIONS(1018), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192310,16 +190880,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62262] = 4, + [60550] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2165), 1, + ACTIONS(2604), 1, + sym__unquoted_pattern, + STATE(2133), 1, sym_comment, - ACTIONS(2122), 3, + ACTIONS(994), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2120), 32, + ACTIONS(1004), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192352,16 +190924,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62308] = 4, + [60599] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2166), 1, + ACTIONS(1724), 1, + sym__unquoted_pattern, + STATE(2134), 1, sym_comment, - ACTIONS(1513), 3, + ACTIONS(866), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(908), 30, + anon_sym_in, + anon_sym_DASH2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [60648] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2135), 1, + sym_comment, + ACTIONS(2391), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1515), 32, + ACTIONS(2389), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192394,16 +191010,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62354] = 4, + [60694] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2167), 1, + STATE(2136), 1, sym_comment, - ACTIONS(1517), 3, + ACTIONS(2857), 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_list_token1, + ACTIONS(2859), 28, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + [60740] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4563), 1, + sym__newline, + STATE(2137), 2, + aux_sym__repeat_newline, + sym_comment, + ACTIONS(1921), 8, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(1916), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [60788] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2138), 1, + sym_comment, + ACTIONS(4566), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1519), 32, + ACTIONS(4568), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192436,16 +191137,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62400] = 4, + [60834] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(2168), 1, + ACTIONS(4570), 1, + anon_sym_DASH2, + ACTIONS(4578), 1, + anon_sym_PLUS2, + STATE(2139), 1, sym_comment, - ACTIONS(1521), 3, + ACTIONS(2511), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4572), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4574), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4576), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2509), 25, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [60890] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2140), 1, + sym_comment, + ACTIONS(4580), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1523), 32, + ACTIONS(4582), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192478,16 +191226,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62446] = 4, + [60936] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2169), 1, + STATE(2141), 1, sym_comment, - ACTIONS(1864), 3, + ACTIONS(4584), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1862), 32, + ACTIONS(4586), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -192520,36 +191268,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [62492] = 11, + [60982] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4622), 1, + ACTIONS(4570), 1, anon_sym_DASH2, - ACTIONS(4632), 1, + ACTIONS(4578), 1, anon_sym_PLUS2, - STATE(2170), 1, + STATE(2142), 1, sym_comment, - ACTIONS(4620), 2, + ACTIONS(4572), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4574), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4576), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4590), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4624), 2, + ACTIONS(4596), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4592), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4594), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2509), 7, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4588), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [61046] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4570), 1, + anon_sym_DASH2, + ACTIONS(4578), 1, + anon_sym_PLUS2, + ACTIONS(4598), 1, + anon_sym_bit_DASHand2, + STATE(2143), 1, + sym_comment, + ACTIONS(4572), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4628), 2, + ACTIONS(4574), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4630), 2, + ACTIONS(4576), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4634), 2, + ACTIONS(4590), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4596), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4592), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4594), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2509), 6, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + ACTIONS(4588), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [61112] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4570), 1, + anon_sym_DASH2, + ACTIONS(4578), 1, + anon_sym_PLUS2, + ACTIONS(4598), 1, + anon_sym_bit_DASHand2, + ACTIONS(4600), 1, + anon_sym_bit_DASHxor2, + STATE(2144), 1, + sym_comment, + ACTIONS(4572), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4574), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4576), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4590), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4596), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4592), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4594), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2509), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + ACTIONS(4588), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [61180] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4604), 1, + anon_sym_DASH2, + ACTIONS(4614), 1, + anon_sym_PLUS2, + STATE(2145), 1, + sym_comment, + ACTIONS(4602), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4606), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4610), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4612), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4616), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4626), 4, + ACTIONS(4608), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2547), 19, + ACTIONS(2509), 19, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -192569,31 +191473,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [62552] = 10, + [61240] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4622), 1, + ACTIONS(4604), 1, anon_sym_DASH2, - ACTIONS(4632), 1, + ACTIONS(4614), 1, anon_sym_PLUS2, - STATE(2171), 1, + STATE(2146), 1, sym_comment, - ACTIONS(2549), 2, + ACTIONS(2511), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4624), 2, + ACTIONS(4606), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4628), 2, + ACTIONS(4610), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4630), 2, + ACTIONS(4612), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4634), 2, + ACTIONS(4616), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2547), 23, + ACTIONS(2509), 23, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -192617,25 +191521,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [62610] = 7, + [61298] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2172), 1, + STATE(2147), 1, sym_comment, - ACTIONS(4624), 2, + ACTIONS(4606), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4628), 2, + ACTIONS(4610), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4630), 2, + ACTIONS(4612), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2549), 3, + ACTIONS(2511), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(2547), 26, + ACTIONS(2509), 26, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -192662,21 +191566,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [62662] = 5, + [61350] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2173), 1, + STATE(2148), 1, sym_comment, - ACTIONS(4628), 2, + ACTIONS(4610), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2549), 5, + ACTIONS(2511), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2547), 28, + ACTIONS(2509), 28, anon_sym_in, anon_sym_DASH2, anon_sym_EQ_GT, @@ -192705,52 +191609,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [62710] = 16, + [61398] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4622), 1, + ACTIONS(4604), 1, anon_sym_DASH2, - ACTIONS(4632), 1, + ACTIONS(4614), 1, anon_sym_PLUS2, - ACTIONS(4640), 1, + ACTIONS(4622), 1, anon_sym_bit_DASHand2, - ACTIONS(4642), 1, + ACTIONS(4624), 1, anon_sym_bit_DASHxor2, - ACTIONS(4644), 1, + ACTIONS(4626), 1, anon_sym_bit_DASHor2, - STATE(2174), 1, + STATE(2149), 1, sym_comment, - ACTIONS(4620), 2, + ACTIONS(4602), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4624), 2, + ACTIONS(4606), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4628), 2, + ACTIONS(4610), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4630), 2, + ACTIONS(4612), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4634), 2, + ACTIONS(4616), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2547), 4, + ACTIONS(2509), 4, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(4626), 4, + ACTIONS(4608), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4638), 4, + ACTIONS(4620), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4636), 8, + ACTIONS(4618), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -192759,53 +191663,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [62780] = 17, + [61468] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4622), 1, + ACTIONS(4604), 1, anon_sym_DASH2, - ACTIONS(4632), 1, + ACTIONS(4614), 1, anon_sym_PLUS2, - ACTIONS(4640), 1, + ACTIONS(4622), 1, anon_sym_bit_DASHand2, - ACTIONS(4642), 1, + ACTIONS(4624), 1, anon_sym_bit_DASHxor2, - ACTIONS(4644), 1, + ACTIONS(4626), 1, anon_sym_bit_DASHor2, - ACTIONS(4646), 1, + ACTIONS(4628), 1, anon_sym_and2, - STATE(2175), 1, + STATE(2150), 1, sym_comment, - ACTIONS(4620), 2, + ACTIONS(4602), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4624), 2, + ACTIONS(4606), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4628), 2, + ACTIONS(4610), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4630), 2, + ACTIONS(4612), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4634), 2, + ACTIONS(4616), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2547), 3, + ACTIONS(2509), 3, anon_sym_EQ_GT, anon_sym_xor2, anon_sym_or2, - ACTIONS(4626), 4, + ACTIONS(4608), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4638), 4, + ACTIONS(4620), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4636), 8, + ACTIONS(4618), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -192814,54 +191718,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [62852] = 18, + [61540] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4622), 1, + ACTIONS(4604), 1, anon_sym_DASH2, - ACTIONS(4632), 1, + ACTIONS(4614), 1, anon_sym_PLUS2, - ACTIONS(4640), 1, + ACTIONS(4622), 1, anon_sym_bit_DASHand2, - ACTIONS(4642), 1, + ACTIONS(4624), 1, anon_sym_bit_DASHxor2, - ACTIONS(4644), 1, + ACTIONS(4626), 1, anon_sym_bit_DASHor2, - ACTIONS(4646), 1, + ACTIONS(4628), 1, anon_sym_and2, - ACTIONS(4648), 1, + ACTIONS(4630), 1, anon_sym_xor2, - STATE(2176), 1, + STATE(2151), 1, sym_comment, - ACTIONS(2547), 2, + ACTIONS(2509), 2, anon_sym_EQ_GT, anon_sym_or2, - ACTIONS(4620), 2, + ACTIONS(4602), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4624), 2, + ACTIONS(4606), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4628), 2, + ACTIONS(4610), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4630), 2, + ACTIONS(4612), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4634), 2, + ACTIONS(4616), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4626), 4, + ACTIONS(4608), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4638), 4, + ACTIONS(4620), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4636), 8, + ACTIONS(4618), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -192870,36 +191774,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [62926] = 12, + [61614] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4622), 1, + ACTIONS(4604), 1, anon_sym_DASH2, - ACTIONS(4632), 1, + ACTIONS(4614), 1, anon_sym_PLUS2, - STATE(2177), 1, + STATE(2152), 1, sym_comment, - ACTIONS(4620), 2, + ACTIONS(4602), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4624), 2, + ACTIONS(4606), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4628), 2, + ACTIONS(4610), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4630), 2, + ACTIONS(4612), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4634), 2, + ACTIONS(4616), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4626), 4, + ACTIONS(4608), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4636), 8, + ACTIONS(4618), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -192908,7 +191812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(2547), 11, + ACTIONS(2509), 11, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -192920,28 +191824,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [62988] = 9, + [61676] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4622), 1, + ACTIONS(4604), 1, anon_sym_DASH2, - ACTIONS(4632), 1, + ACTIONS(4614), 1, anon_sym_PLUS2, - STATE(2178), 1, + STATE(2153), 1, sym_comment, - ACTIONS(2549), 2, + ACTIONS(2511), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4624), 2, + ACTIONS(4606), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4628), 2, + ACTIONS(4610), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4630), 2, + ACTIONS(4612), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2547), 25, + ACTIONS(2509), 25, anon_sym_in, anon_sym_EQ_GT, anon_sym_and2, @@ -192967,41 +191871,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [63044] = 13, + [61732] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4622), 1, + ACTIONS(4604), 1, anon_sym_DASH2, - ACTIONS(4632), 1, + ACTIONS(4614), 1, anon_sym_PLUS2, - STATE(2179), 1, + STATE(2154), 1, sym_comment, - ACTIONS(4620), 2, + ACTIONS(4602), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4624), 2, + ACTIONS(4606), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4628), 2, + ACTIONS(4610), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4630), 2, + ACTIONS(4612), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4634), 2, + ACTIONS(4616), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4626), 4, + ACTIONS(4608), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4638), 4, + ACTIONS(4620), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2547), 7, + ACTIONS(2509), 7, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -193009,7 +191913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4636), 8, + ACTIONS(4618), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -193018,50 +191922,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [63108] = 14, + [61796] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4622), 1, + ACTIONS(4604), 1, anon_sym_DASH2, - ACTIONS(4632), 1, + ACTIONS(4614), 1, anon_sym_PLUS2, - ACTIONS(4640), 1, + ACTIONS(4622), 1, anon_sym_bit_DASHand2, - STATE(2180), 1, + STATE(2155), 1, sym_comment, - ACTIONS(4620), 2, + ACTIONS(4602), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4624), 2, + ACTIONS(4606), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4628), 2, + ACTIONS(4610), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4630), 2, + ACTIONS(4612), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4634), 2, + ACTIONS(4616), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4626), 4, + ACTIONS(4608), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4638), 4, + ACTIONS(4620), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2547), 6, + ACTIONS(2509), 6, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - ACTIONS(4636), 8, + ACTIONS(4618), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -193070,51 +191974,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [63174] = 15, + [61862] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4622), 1, + ACTIONS(4604), 1, anon_sym_DASH2, - ACTIONS(4632), 1, + ACTIONS(4614), 1, anon_sym_PLUS2, - ACTIONS(4640), 1, + ACTIONS(4622), 1, anon_sym_bit_DASHand2, - ACTIONS(4642), 1, + ACTIONS(4624), 1, anon_sym_bit_DASHxor2, - STATE(2181), 1, + STATE(2156), 1, sym_comment, - ACTIONS(4620), 2, + ACTIONS(4602), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4624), 2, + ACTIONS(4606), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4628), 2, + ACTIONS(4610), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4630), 2, + ACTIONS(4612), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4634), 2, + ACTIONS(4616), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4626), 4, + ACTIONS(4608), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4638), 4, + ACTIONS(4620), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2547), 5, + ACTIONS(2509), 5, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - ACTIONS(4636), 8, + ACTIONS(4618), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -193123,20 +192027,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [63242] = 5, + [61930] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2157), 1, + sym_comment, + ACTIONS(2178), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2176), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [61976] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2158), 1, + sym_comment, + ACTIONS(2182), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2180), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [62022] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1002), 1, + ACTIONS(1010), 1, aux_sym_cmd_identifier_token6, - STATE(2182), 1, + STATE(2159), 1, sym_comment, - ACTIONS(1000), 5, + ACTIONS(1008), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(998), 29, + ACTIONS(1006), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -193166,16 +192154,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [63290] = 4, + [62070] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2183), 1, + STATE(2160), 1, sym_comment, - ACTIONS(2339), 3, + ACTIONS(2614), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2337), 32, + ACTIONS(2612), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193208,16 +192196,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63336] = 4, + [62116] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2184), 1, + STATE(2161), 1, sym_comment, - ACTIONS(2604), 3, + ACTIONS(2638), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2602), 32, + ACTIONS(2636), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193250,81 +192238,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63382] = 27, + [62162] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3835), 1, + STATE(2162), 1, + sym_comment, + ACTIONS(4632), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(4634), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, - ACTIONS(3837), 1, anon_sym_SQUOTE, - ACTIONS(3839), 1, anon_sym_BQUOTE, - ACTIONS(3841), 1, + [62208] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2163), 1, + sym_comment, + ACTIONS(1505), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1507), 32, sym_raw_string_begin, - ACTIONS(4595), 1, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, anon_sym_null, - ACTIONS(4603), 1, - anon_sym_DOT_DOT, - ACTIONS(4607), 1, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, - ACTIONS(4609), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4613), 1, - sym_val_date, - ACTIONS(4615), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4650), 1, - anon_sym_GT2, - STATE(2185), 1, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [62254] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2164), 1, sym_comment, - STATE(2217), 1, - aux_sym__collection_body_repeat1, - STATE(2339), 1, - sym__unquoted_in_record, - STATE(2348), 1, - sym_val_string, - STATE(2396), 1, - sym__collection_entry, - STATE(3881), 1, - sym__val_number_decimal, - STATE(5043), 1, - sym_val_bool, - STATE(5238), 1, - sym__collection_body, - ACTIONS(4593), 2, + ACTIONS(2618), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2616), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_true, anon_sym_false, - ACTIONS(4599), 2, - anon_sym_COMMA, - anon_sym_LF, - ACTIONS(4605), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4611), 2, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4843), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4597), 3, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [62300] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2165), 1, + sym_comment, + ACTIONS(1458), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1460), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2395), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [63474] = 4, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [62346] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2186), 1, + STATE(2166), 1, sym_comment, - ACTIONS(2608), 3, + ACTIONS(1509), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2606), 32, + ACTIONS(1511), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193357,16 +192448,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63520] = 4, + [62392] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2187), 1, + STATE(2167), 1, sym_comment, - ACTIONS(2612), 3, + ACTIONS(4636), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2610), 32, + ACTIONS(4638), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193399,16 +192490,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63566] = 4, + [62438] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2188), 1, + STATE(2168), 1, sym_comment, - ACTIONS(2616), 3, + ACTIONS(2419), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2614), 32, + ACTIONS(2417), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193441,16 +192532,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63612] = 4, + [62484] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2189), 1, + STATE(2169), 1, sym_comment, - ACTIONS(1868), 3, + ACTIONS(1517), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1866), 32, + ACTIONS(1519), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193483,16 +192574,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63658] = 4, + [62530] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2190), 1, + STATE(2170), 1, sym_comment, - ACTIONS(1572), 3, + ACTIONS(1521), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1574), 32, + ACTIONS(1523), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193525,16 +192616,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63704] = 4, + [62576] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2191), 1, + STATE(2171), 1, sym_comment, - ACTIONS(2580), 3, + ACTIONS(1525), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2578), 32, + ACTIONS(1527), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193567,16 +192658,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63750] = 4, + [62622] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2192), 1, + STATE(2172), 1, sym_comment, - ACTIONS(4652), 3, + ACTIONS(2152), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4654), 32, + ACTIONS(2150), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193609,81 +192700,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63796] = 27, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3835), 1, - anon_sym_DQUOTE, - ACTIONS(3837), 1, - anon_sym_SQUOTE, - ACTIONS(3839), 1, - anon_sym_BQUOTE, - ACTIONS(3841), 1, - sym_raw_string_begin, - ACTIONS(4595), 1, - anon_sym_null, - ACTIONS(4603), 1, - anon_sym_DOT_DOT, - ACTIONS(4607), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4609), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4613), 1, - sym_val_date, - ACTIONS(4615), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4656), 1, - anon_sym_GT2, - STATE(2193), 1, - sym_comment, - STATE(2217), 1, - aux_sym__collection_body_repeat1, - STATE(2339), 1, - sym__unquoted_in_record, - STATE(2348), 1, - sym_val_string, - STATE(2396), 1, - sym__collection_entry, - STATE(3881), 1, - sym__val_number_decimal, - STATE(4882), 1, - sym__collection_body, - STATE(5043), 1, - sym_val_bool, - ACTIONS(4593), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4599), 2, - anon_sym_COMMA, - anon_sym_LF, - ACTIONS(4605), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4611), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4843), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4597), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2395), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [63888] = 4, + [62668] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2194), 1, + STATE(2173), 1, sym_comment, - ACTIONS(2355), 3, + ACTIONS(2626), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2353), 32, + ACTIONS(2624), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193716,16 +192742,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63934] = 4, + [62714] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2195), 1, + STATE(2174), 1, sym_comment, - ACTIONS(4658), 3, + ACTIONS(2447), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4660), 32, + ACTIONS(2445), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193758,16 +192784,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [63980] = 4, + [62760] = 16, ACTIONS(3), 1, anon_sym_POUND, - STATE(2196), 1, + ACTIONS(4570), 1, + anon_sym_DASH2, + ACTIONS(4578), 1, + anon_sym_PLUS2, + ACTIONS(4598), 1, + anon_sym_bit_DASHand2, + ACTIONS(4600), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4640), 1, + anon_sym_bit_DASHor2, + STATE(2175), 1, + sym_comment, + ACTIONS(4572), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4574), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4576), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4590), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4596), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2509), 4, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4592), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4594), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4588), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [62830] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2176), 1, sym_comment, - ACTIONS(4662), 3, + ACTIONS(866), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4664), 32, + ACTIONS(908), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193800,16 +192880,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64026] = 4, + [62876] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2197), 1, + STATE(2177), 1, sym_comment, - ACTIONS(2449), 3, + ACTIONS(2630), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2447), 32, + ACTIONS(2628), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193842,16 +192922,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64072] = 4, + [62922] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2198), 1, + STATE(2178), 1, sym_comment, - ACTIONS(2517), 3, + ACTIONS(1604), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2515), 32, + ACTIONS(1706), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193884,16 +192964,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64118] = 4, + [62968] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2199), 1, + STATE(2179), 1, sym_comment, - ACTIONS(4666), 3, + ACTIONS(2515), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4668), 32, + ACTIONS(2513), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193926,16 +193006,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64164] = 4, + [63014] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2200), 1, + STATE(2180), 1, sym_comment, - ACTIONS(2096), 3, + ACTIONS(2132), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2094), 32, + ACTIONS(2130), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -193968,16 +193048,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64210] = 4, + [63060] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2201), 1, + STATE(2181), 1, sym_comment, - ACTIONS(2894), 3, + ACTIONS(2128), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(2896), 32, + ACTIONS(2126), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194002,7 +193082,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -194010,20 +193090,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64256] = 5, + [63106] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4570), 1, + anon_sym_DASH2, + ACTIONS(4578), 1, + anon_sym_PLUS2, + STATE(2182), 1, + sym_comment, + ACTIONS(4572), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4574), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4576), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4590), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4596), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4592), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2509), 19, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [63166] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1018), 1, + ACTIONS(4646), 1, aux_sym_cmd_identifier_token6, - STATE(2202), 1, + STATE(2183), 1, sym_comment, - ACTIONS(1016), 5, + ACTIONS(4644), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(1014), 29, + ACTIONS(4642), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -194053,16 +193182,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [64304] = 4, + [63214] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(2203), 1, + ACTIONS(4570), 1, + anon_sym_DASH2, + ACTIONS(4578), 1, + anon_sym_PLUS2, + STATE(2184), 1, + sym_comment, + ACTIONS(2511), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4572), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4574), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4576), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4596), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2509), 23, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [63272] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4652), 1, + aux_sym_cmd_identifier_token6, + STATE(2185), 1, + sym_comment, + ACTIONS(4650), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4648), 29, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_like, + anon_sym_not_DASHlike, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in2, + anon_sym_not_DASHin, + anon_sym_has, + anon_sym_not_DASHhas, + anon_sym_starts_DASHwith, + anon_sym_not_DASHstarts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_not_DASHends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [63320] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2186), 1, + sym_comment, + ACTIONS(4572), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4574), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4576), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(2511), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(2509), 26, + anon_sym_in, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [63372] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2187), 1, sym_comment, - ACTIONS(1850), 3, + ACTIONS(1572), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(1848), 32, + ACTIONS(1574), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194095,81 +193360,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64350] = 27, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3835), 1, - anon_sym_DQUOTE, - ACTIONS(3837), 1, - anon_sym_SQUOTE, - ACTIONS(3839), 1, - anon_sym_BQUOTE, - ACTIONS(3841), 1, - sym_raw_string_begin, - ACTIONS(4595), 1, - anon_sym_null, - ACTIONS(4603), 1, - anon_sym_DOT_DOT, - ACTIONS(4607), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(4609), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(4613), 1, - sym_val_date, - ACTIONS(4615), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4670), 1, - anon_sym_GT2, - STATE(2204), 1, - sym_comment, - STATE(2217), 1, - aux_sym__collection_body_repeat1, - STATE(2339), 1, - sym__unquoted_in_record, - STATE(2348), 1, - sym_val_string, - STATE(2396), 1, - sym__collection_entry, - STATE(3881), 1, - sym__val_number_decimal, - STATE(4994), 1, - sym__collection_body, - STATE(5043), 1, - sym_val_bool, - ACTIONS(4593), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4599), 2, - anon_sym_COMMA, - anon_sym_LF, - ACTIONS(4605), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(4611), 2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - STATE(4843), 2, - sym__val_range, - sym__unquoted_anonymous_prefix, - ACTIONS(4597), 3, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - STATE(2395), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [64442] = 4, + [63418] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2205), 1, + STATE(2188), 1, sym_comment, - ACTIONS(4672), 3, + ACTIONS(2523), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(4674), 32, + ACTIONS(2521), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194202,20 +193402,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64488] = 5, + [63464] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1010), 1, + ACTIONS(1000), 1, aux_sym_cmd_identifier_token6, - STATE(2206), 1, + STATE(2189), 1, sym_comment, - ACTIONS(1008), 5, + ACTIONS(998), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(1006), 29, + ACTIONS(996), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -194245,63 +193445,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [64536] = 5, - ACTIONS(103), 1, + [63512] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4680), 1, - aux_sym_cmd_identifier_token6, - STATE(2207), 1, + STATE(2190), 1, sym_comment, - ACTIONS(4678), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4676), 29, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_like, - anon_sym_not_DASHlike, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in2, - anon_sym_not_DASHin, - anon_sym_has, - anon_sym_not_DASHhas, - anon_sym_starts_DASHwith, - anon_sym_not_DASHstarts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_not_DASHends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [64584] = 5, + ACTIONS(2503), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2501), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [63558] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4686), 1, + ACTIONS(1016), 1, aux_sym_cmd_identifier_token6, - STATE(2208), 1, + STATE(2191), 1, sym_comment, - ACTIONS(4684), 5, + ACTIONS(1014), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(4682), 29, + ACTIONS(1012), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -194331,20 +193530,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [64632] = 5, + [63606] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2192), 1, + sym_comment, + ACTIONS(2507), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2505), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [63652] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4570), 1, + anon_sym_DASH2, + ACTIONS(4578), 1, + anon_sym_PLUS2, + ACTIONS(4598), 1, + anon_sym_bit_DASHand2, + ACTIONS(4600), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4640), 1, + anon_sym_bit_DASHor2, + ACTIONS(4654), 1, + anon_sym_and2, + ACTIONS(4656), 1, + anon_sym_xor2, + STATE(2193), 1, + sym_comment, + ACTIONS(2509), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(4572), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4574), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4576), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4590), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4596), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4592), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4594), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4588), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [63726] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4692), 1, + ACTIONS(4662), 1, aux_sym_cmd_identifier_token6, - STATE(2209), 1, + STATE(2194), 1, sym_comment, - ACTIONS(4690), 5, + ACTIONS(4660), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(4688), 29, + ACTIONS(4658), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -194374,20 +193671,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [64680] = 5, + [63774] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4570), 1, + anon_sym_DASH2, + ACTIONS(4578), 1, + anon_sym_PLUS2, + STATE(2195), 1, + sym_comment, + ACTIONS(4572), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4574), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4576), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4590), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4596), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4592), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4588), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(2509), 11, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [63836] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4698), 1, + ACTIONS(4668), 1, aux_sym_cmd_identifier_token6, - STATE(2210), 1, + STATE(2196), 1, sym_comment, - ACTIONS(4696), 5, + ACTIONS(4666), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(4694), 29, + ACTIONS(4664), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -194417,20 +193764,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [64728] = 5, + [63884] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4704), 1, + ACTIONS(4674), 1, aux_sym_cmd_identifier_token6, - STATE(2211), 1, + STATE(2197), 1, sym_comment, - ACTIONS(4702), 5, + ACTIONS(4672), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(4700), 29, + ACTIONS(4670), 29, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -194460,21 +193807,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [64776] = 4, + [63932] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2212), 1, + STATE(2198), 1, sym_comment, - ACTIONS(2894), 7, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, + ACTIONS(2519), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2517), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2896), 28, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [63978] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2199), 1, + sym_comment, + ACTIONS(1882), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1880), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [64024] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2200), 1, + sym_comment, + ACTIONS(4574), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(2511), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2509), 28, + anon_sym_in, + anon_sym_DASH2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [64072] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2201), 1, + sym_comment, + ACTIONS(1860), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1858), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [64118] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2202), 1, + sym_comment, + ACTIONS(2463), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2461), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [64164] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2203), 1, + sym_comment, + ACTIONS(2857), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2859), 32, sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, anon_sym_true, anon_sym_false, anon_sym_null, @@ -194482,36 +194053,288 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [64210] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2204), 1, + sym_comment, + ACTIONS(2499), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2497), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [64256] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4570), 1, + anon_sym_DASH2, + ACTIONS(4578), 1, + anon_sym_PLUS2, + ACTIONS(4598), 1, + anon_sym_bit_DASHand2, + ACTIONS(4600), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4640), 1, + anon_sym_bit_DASHor2, + ACTIONS(4654), 1, + anon_sym_and2, + STATE(2205), 1, + sym_comment, + ACTIONS(4572), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4574), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4576), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4590), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4596), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(2509), 3, anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(4592), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4594), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4588), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [64328] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2206), 1, + sym_comment, + ACTIONS(2499), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2497), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [64374] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2207), 1, + sym_comment, + ACTIONS(1846), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(1844), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [64420] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2208), 1, + sym_comment, + ACTIONS(2467), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2465), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [64466] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2209), 1, + sym_comment, + ACTIONS(2547), 3, + anon_sym_export, + aux_sym_cmd_identifier_token1, + anon_sym_in, + ACTIONS(2545), 32, + sym_raw_string_begin, + anon_sym_alias, + anon_sym_let, + anon_sym_mut, + anon_sym_const, + anon_sym_def, + anon_sym_use, + anon_sym_export_DASHenv, + anon_sym_extern, + anon_sym_module, + anon_sym_for, + anon_sym_loop, + anon_sym_while, + anon_sym_if, + anon_sym_else, + anon_sym_try, + anon_sym_catch, + anon_sym_match, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - [64822] = 4, + [64512] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2213), 1, + STATE(2210), 1, sym_comment, - ACTIONS(793), 3, + ACTIONS(1874), 3, anon_sym_export, aux_sym_cmd_identifier_token1, anon_sym_in, - ACTIONS(890), 32, + ACTIONS(1872), 32, sym_raw_string_begin, anon_sym_alias, anon_sym_let, @@ -194544,36 +194367,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [64868] = 10, + [64558] = 26, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3835), 1, + anon_sym_DQUOTE, + ACTIONS(3837), 1, + anon_sym_SQUOTE, + ACTIONS(3839), 1, + anon_sym_BQUOTE, + ACTIONS(3841), 1, + sym_raw_string_begin, + ACTIONS(4678), 1, + anon_sym_null, + ACTIONS(4684), 1, + anon_sym_GT2, + ACTIONS(4686), 1, + anon_sym_DOT_DOT, + ACTIONS(4690), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4692), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4696), 1, + sym_val_date, + ACTIONS(4698), 1, + aux_sym__unquoted_in_record_token1, + STATE(2211), 1, + sym_comment, + STATE(2212), 1, + aux_sym__collection_body, + STATE(2341), 1, + sym_val_string, + STATE(2342), 1, + sym__unquoted_in_record, + STATE(2414), 1, + sym__collection_entry, + STATE(3857), 1, + sym__val_number_decimal, + STATE(5036), 1, + sym_val_bool, + ACTIONS(4676), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4682), 2, + anon_sym_COMMA, + anon_sym_LF, + ACTIONS(4688), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4694), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(5216), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4680), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2372), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [64647] = 25, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4703), 1, + anon_sym_null, + ACTIONS(4712), 1, + anon_sym_GT2, + ACTIONS(4714), 1, + anon_sym_DOT_DOT, + ACTIONS(4720), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4723), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4729), 1, + sym_val_date, + ACTIONS(4732), 1, + anon_sym_DQUOTE, + ACTIONS(4735), 1, + anon_sym_SQUOTE, + ACTIONS(4738), 1, + anon_sym_BQUOTE, + ACTIONS(4741), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4744), 1, + sym_raw_string_begin, + STATE(2341), 1, + sym_val_string, + STATE(2342), 1, + sym__unquoted_in_record, + STATE(2414), 1, + sym__collection_entry, + STATE(3857), 1, + sym__val_number_decimal, + STATE(5036), 1, + sym_val_bool, + ACTIONS(4700), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4709), 2, + anon_sym_COMMA, + anon_sym_LF, + ACTIONS(4717), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4726), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(2212), 2, + aux_sym__collection_body, + sym_comment, + STATE(5216), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4706), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2372), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [64734] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2213), 1, + sym_comment, + ACTIONS(4751), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4753), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4755), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4747), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + ACTIONS(4749), 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, + [64785] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4565), 1, + ACTIONS(2909), 1, anon_sym_DASH2, - ACTIONS(4575), 1, + ACTIONS(2919), 1, anon_sym_PLUS2, + ACTIONS(2929), 1, + anon_sym_bit_DASHand2, + ACTIONS(2931), 1, + anon_sym_bit_DASHxor2, + ACTIONS(2933), 1, + anon_sym_bit_DASHor2, + ACTIONS(2935), 1, + anon_sym_and2, + ACTIONS(2940), 1, + anon_sym_xor2, + ACTIONS(4757), 1, + anon_sym_or2, STATE(2214), 1, sym_comment, - ACTIONS(2549), 2, + ACTIONS(2907), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4567), 2, + ACTIONS(2911), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4571), 2, + ACTIONS(2915), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4573), 2, + ACTIONS(2917), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4577), 2, + ACTIONS(2921), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2547), 23, + ACTIONS(2913), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(2927), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(2925), 8, anon_sym_in, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_has2, anon_sym_not_DASHhas2, @@ -194581,126 +194591,297 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, + [64858] = 18, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4604), 1, + anon_sym_DASH2, + ACTIONS(4614), 1, + anon_sym_PLUS2, + ACTIONS(4622), 1, + anon_sym_bit_DASHand2, + ACTIONS(4624), 1, + anon_sym_bit_DASHxor2, + ACTIONS(4626), 1, + anon_sym_bit_DASHor2, + ACTIONS(4628), 1, + anon_sym_and2, + ACTIONS(4630), 1, + anon_sym_xor2, + ACTIONS(4759), 1, + anon_sym_or2, + STATE(2215), 1, + sym_comment, + ACTIONS(4602), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4606), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(4610), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(4612), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(4616), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(4608), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(4620), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [64926] = 25, + ACTIONS(4618), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [64931] = 26, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4709), 1, + ACTIONS(3835), 1, + anon_sym_DQUOTE, + ACTIONS(3837), 1, + anon_sym_SQUOTE, + ACTIONS(3839), 1, + anon_sym_BQUOTE, + ACTIONS(3841), 1, + sym_raw_string_begin, + ACTIONS(4678), 1, anon_sym_null, - ACTIONS(4718), 1, - anon_sym_GT2, - ACTIONS(4720), 1, + ACTIONS(4686), 1, anon_sym_DOT_DOT, - ACTIONS(4726), 1, + ACTIONS(4690), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4729), 1, + ACTIONS(4692), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4735), 1, + ACTIONS(4696), 1, sym_val_date, - ACTIONS(4738), 1, + ACTIONS(4698), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4761), 1, + anon_sym_GT2, + STATE(2211), 1, + aux_sym__collection_body, + STATE(2216), 1, + sym_comment, + STATE(2341), 1, + sym_val_string, + STATE(2342), 1, + sym__unquoted_in_record, + STATE(2414), 1, + sym__collection_entry, + STATE(3857), 1, + sym__val_number_decimal, + STATE(5036), 1, + sym_val_bool, + ACTIONS(4676), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4682), 2, + anon_sym_COMMA, + anon_sym_LF, + ACTIONS(4688), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4694), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(5216), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4680), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2372), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [65020] = 26, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3835), 1, anon_sym_DQUOTE, - ACTIONS(4741), 1, + ACTIONS(3837), 1, anon_sym_SQUOTE, - ACTIONS(4744), 1, + ACTIONS(3839), 1, anon_sym_BQUOTE, - ACTIONS(4747), 1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4750), 1, + ACTIONS(3841), 1, sym_raw_string_begin, - STATE(2339), 1, - sym__unquoted_in_record, - STATE(2348), 1, + ACTIONS(4678), 1, + anon_sym_null, + ACTIONS(4686), 1, + anon_sym_DOT_DOT, + ACTIONS(4690), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4692), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4696), 1, + sym_val_date, + ACTIONS(4698), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4763), 1, + anon_sym_GT2, + STATE(2217), 1, + sym_comment, + STATE(2218), 1, + aux_sym__collection_body, + STATE(2341), 1, sym_val_string, - STATE(2396), 1, + STATE(2342), 1, + sym__unquoted_in_record, + STATE(2414), 1, sym__collection_entry, - STATE(3881), 1, + STATE(3857), 1, sym__val_number_decimal, - STATE(5043), 1, + STATE(5036), 1, sym_val_bool, - ACTIONS(4706), 2, + ACTIONS(4676), 2, anon_sym_true, anon_sym_false, - ACTIONS(4715), 2, + ACTIONS(4682), 2, anon_sym_COMMA, anon_sym_LF, - ACTIONS(4723), 2, + ACTIONS(4688), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4732), 2, + ACTIONS(4694), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(2215), 2, + STATE(5216), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4680), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2372), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [65109] = 26, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3835), 1, + anon_sym_DQUOTE, + ACTIONS(3837), 1, + anon_sym_SQUOTE, + ACTIONS(3839), 1, + anon_sym_BQUOTE, + ACTIONS(3841), 1, + sym_raw_string_begin, + ACTIONS(4678), 1, + anon_sym_null, + ACTIONS(4686), 1, + anon_sym_DOT_DOT, + ACTIONS(4690), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4692), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4696), 1, + sym_val_date, + ACTIONS(4698), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4765), 1, + anon_sym_GT2, + STATE(2212), 1, + aux_sym__collection_body, + STATE(2218), 1, sym_comment, - aux_sym__collection_body_repeat1, - STATE(4843), 2, + STATE(2341), 1, + sym_val_string, + STATE(2342), 1, + sym__unquoted_in_record, + STATE(2414), 1, + sym__collection_entry, + STATE(3857), 1, + sym__val_number_decimal, + STATE(5036), 1, + sym_val_bool, + ACTIONS(4676), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4682), 2, + anon_sym_COMMA, + anon_sym_LF, + ACTIONS(4688), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4694), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(5216), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(4712), 3, + ACTIONS(4680), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2395), 4, + STATE(2372), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [65013] = 18, + [65198] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4565), 1, + ACTIONS(3875), 1, anon_sym_DASH2, - ACTIONS(4575), 1, + ACTIONS(3885), 1, anon_sym_PLUS2, - ACTIONS(4583), 1, + ACTIONS(3893), 1, anon_sym_bit_DASHand2, - ACTIONS(4585), 1, + ACTIONS(3895), 1, anon_sym_bit_DASHxor2, - ACTIONS(4587), 1, + ACTIONS(3897), 1, anon_sym_bit_DASHor2, - ACTIONS(4589), 1, + ACTIONS(3899), 1, anon_sym_and2, - ACTIONS(4591), 1, + ACTIONS(3901), 1, anon_sym_xor2, - ACTIONS(4753), 1, + ACTIONS(4767), 1, anon_sym_or2, - STATE(2216), 1, + STATE(2219), 1, sym_comment, - ACTIONS(4563), 2, + ACTIONS(3873), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4567), 2, + ACTIONS(3877), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4571), 2, + ACTIONS(3881), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4573), 2, + ACTIONS(3883), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4577), 2, + ACTIONS(3887), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4569), 4, + ACTIONS(3879), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4581), 4, + ACTIONS(3891), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4579), 8, + ACTIONS(3889), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194709,7 +194890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [65086] = 26, + [65271] = 26, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3835), 1, @@ -194720,105 +194901,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(3841), 1, sym_raw_string_begin, - ACTIONS(4595), 1, + ACTIONS(4678), 1, anon_sym_null, - ACTIONS(4603), 1, + ACTIONS(4686), 1, anon_sym_DOT_DOT, - ACTIONS(4607), 1, + ACTIONS(4690), 1, aux_sym__val_number_decimal_token1, - ACTIONS(4609), 1, + ACTIONS(4692), 1, aux_sym__val_number_decimal_token2, - ACTIONS(4613), 1, + ACTIONS(4696), 1, sym_val_date, - ACTIONS(4615), 1, + ACTIONS(4698), 1, aux_sym__unquoted_in_record_token1, - ACTIONS(4755), 1, + ACTIONS(4769), 1, anon_sym_GT2, - STATE(2215), 1, - aux_sym__collection_body_repeat1, - STATE(2217), 1, + STATE(2220), 1, sym_comment, - STATE(2339), 1, + STATE(2221), 1, + aux_sym__collection_body, + STATE(2341), 1, + sym_val_string, + STATE(2342), 1, sym__unquoted_in_record, - STATE(2348), 1, + STATE(2414), 1, + sym__collection_entry, + STATE(3857), 1, + sym__val_number_decimal, + STATE(5036), 1, + sym_val_bool, + ACTIONS(4676), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4682), 2, + anon_sym_COMMA, + anon_sym_LF, + ACTIONS(4688), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4694), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(5216), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4680), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2372), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [65360] = 26, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3835), 1, + anon_sym_DQUOTE, + ACTIONS(3837), 1, + anon_sym_SQUOTE, + ACTIONS(3839), 1, + anon_sym_BQUOTE, + ACTIONS(3841), 1, + sym_raw_string_begin, + ACTIONS(4678), 1, + anon_sym_null, + ACTIONS(4686), 1, + anon_sym_DOT_DOT, + ACTIONS(4690), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4692), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4696), 1, + sym_val_date, + ACTIONS(4698), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4771), 1, + anon_sym_GT2, + STATE(2212), 1, + aux_sym__collection_body, + STATE(2221), 1, + sym_comment, + STATE(2341), 1, sym_val_string, - STATE(2396), 1, + STATE(2342), 1, + sym__unquoted_in_record, + STATE(2414), 1, sym__collection_entry, - STATE(3881), 1, + STATE(3857), 1, sym__val_number_decimal, - STATE(5043), 1, + STATE(5036), 1, sym_val_bool, - ACTIONS(4593), 2, + ACTIONS(4676), 2, anon_sym_true, anon_sym_false, - ACTIONS(4599), 2, + ACTIONS(4682), 2, anon_sym_COMMA, anon_sym_LF, - ACTIONS(4605), 2, + ACTIONS(4688), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(4611), 2, + ACTIONS(4694), 2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - STATE(4843), 2, + STATE(5216), 2, sym__val_range, sym__unquoted_anonymous_prefix, - ACTIONS(4597), 3, + ACTIONS(4680), 3, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - STATE(2395), 4, + STATE(2372), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [65175] = 18, + [65449] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4622), 1, + ACTIONS(3908), 1, anon_sym_DASH2, - ACTIONS(4632), 1, + ACTIONS(3918), 1, anon_sym_PLUS2, - ACTIONS(4640), 1, + ACTIONS(3926), 1, anon_sym_bit_DASHand2, - ACTIONS(4642), 1, + ACTIONS(3928), 1, anon_sym_bit_DASHxor2, - ACTIONS(4644), 1, + ACTIONS(3930), 1, anon_sym_bit_DASHor2, - ACTIONS(4646), 1, + ACTIONS(3932), 1, anon_sym_and2, - ACTIONS(4648), 1, + ACTIONS(3934), 1, anon_sym_xor2, - ACTIONS(4757), 1, + ACTIONS(4773), 1, anon_sym_or2, - STATE(2218), 1, + STATE(2222), 1, sym_comment, - ACTIONS(4620), 2, + ACTIONS(3906), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4624), 2, + ACTIONS(3910), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(4628), 2, + ACTIONS(3914), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(4630), 2, + ACTIONS(3916), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(4634), 2, + ACTIONS(3920), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(4626), 4, + ACTIONS(3912), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4638), 4, + ACTIONS(3924), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4636), 8, + ACTIONS(3922), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194827,12 +195071,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [65248] = 4, + [65522] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2219), 1, + STATE(2223), 1, sym_comment, - ACTIONS(2112), 8, + ACTIONS(2148), 8, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -194841,7 +195085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(2110), 26, + ACTIONS(2146), 26, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -194868,108 +195112,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [65293] = 18, + [65567] = 26, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2784), 1, - anon_sym_DASH2, - ACTIONS(2796), 1, - anon_sym_PLUS2, - ACTIONS(2800), 1, - anon_sym_bit_DASHand2, - ACTIONS(2802), 1, - anon_sym_bit_DASHxor2, - ACTIONS(2934), 1, - anon_sym_bit_DASHor2, - ACTIONS(2936), 1, - anon_sym_and2, - ACTIONS(2938), 1, - anon_sym_xor2, - ACTIONS(4759), 1, - anon_sym_or2, - STATE(2220), 1, - sym_comment, - ACTIONS(2782), 2, + ACTIONS(3835), 1, + anon_sym_DQUOTE, + ACTIONS(3837), 1, + anon_sym_SQUOTE, + ACTIONS(3839), 1, + anon_sym_BQUOTE, + ACTIONS(3841), 1, + sym_raw_string_begin, + ACTIONS(4678), 1, + anon_sym_null, + ACTIONS(4686), 1, + anon_sym_DOT_DOT, + ACTIONS(4690), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4692), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4696), 1, + sym_val_date, + ACTIONS(4698), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4775), 1, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2786), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(2792), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(2794), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(2798), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(2788), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(2790), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(2780), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [65366] = 18, + STATE(2224), 1, + sym_comment, + STATE(2227), 1, + aux_sym__collection_body, + STATE(2341), 1, + sym_val_string, + STATE(2342), 1, + sym__unquoted_in_record, + STATE(2414), 1, + sym__collection_entry, + STATE(3857), 1, + sym__val_number_decimal, + STATE(5036), 1, + sym_val_bool, + ACTIONS(4676), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4682), 2, + anon_sym_COMMA, + anon_sym_LF, + ACTIONS(4688), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4694), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(5216), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4680), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2372), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [65656] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3851), 1, + ACTIONS(4570), 1, anon_sym_DASH2, - ACTIONS(3861), 1, + ACTIONS(4578), 1, anon_sym_PLUS2, - ACTIONS(3869), 1, + ACTIONS(4598), 1, anon_sym_bit_DASHand2, - ACTIONS(3871), 1, + ACTIONS(4600), 1, anon_sym_bit_DASHxor2, - ACTIONS(3873), 1, + ACTIONS(4640), 1, anon_sym_bit_DASHor2, - ACTIONS(3875), 1, + ACTIONS(4654), 1, anon_sym_and2, - ACTIONS(3877), 1, + ACTIONS(4656), 1, anon_sym_xor2, - ACTIONS(4761), 1, + ACTIONS(4777), 1, anon_sym_or2, - STATE(2221), 1, + STATE(2225), 1, sym_comment, - ACTIONS(3849), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3853), 2, + ACTIONS(4572), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(3857), 2, + ACTIONS(4574), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(3859), 2, + ACTIONS(4576), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(3863), 2, + ACTIONS(4590), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4596), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(3855), 4, + ACTIONS(4592), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(3867), 4, + ACTIONS(4594), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(3865), 8, + ACTIONS(4588), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -194978,53 +195230,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [65439] = 18, + [65729] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2948), 1, + ACTIONS(2990), 1, anon_sym_DASH2, - ACTIONS(2958), 1, + ACTIONS(2998), 1, anon_sym_PLUS2, - ACTIONS(2966), 1, + ACTIONS(3010), 1, anon_sym_bit_DASHand2, - ACTIONS(2968), 1, + ACTIONS(3012), 1, anon_sym_bit_DASHxor2, - ACTIONS(2970), 1, + ACTIONS(3014), 1, anon_sym_bit_DASHor2, - ACTIONS(2972), 1, + ACTIONS(3020), 1, anon_sym_and2, - ACTIONS(2974), 1, + ACTIONS(3022), 1, anon_sym_xor2, - ACTIONS(4763), 1, + ACTIONS(4779), 1, anon_sym_or2, - STATE(2222), 1, + STATE(2226), 1, sym_comment, - ACTIONS(2946), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(2950), 2, + ACTIONS(2992), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(2954), 2, + ACTIONS(2994), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(2956), 2, + ACTIONS(2996), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(2960), 2, + ACTIONS(3002), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(3008), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(2952), 4, + ACTIONS(3004), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(2964), 4, + ACTIONS(3006), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(2962), 8, + ACTIONS(3000), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -195033,25 +195285,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - [65512] = 7, + [65802] = 26, ACTIONS(3), 1, anon_sym_POUND, - STATE(2223), 1, + ACTIONS(3835), 1, + anon_sym_DQUOTE, + ACTIONS(3837), 1, + anon_sym_SQUOTE, + ACTIONS(3839), 1, + anon_sym_BQUOTE, + ACTIONS(3841), 1, + sym_raw_string_begin, + ACTIONS(4678), 1, + anon_sym_null, + ACTIONS(4686), 1, + anon_sym_DOT_DOT, + ACTIONS(4690), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(4692), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(4696), 1, + sym_val_date, + ACTIONS(4698), 1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4781), 1, + anon_sym_GT2, + STATE(2212), 1, + aux_sym__collection_body, + STATE(2227), 1, + sym_comment, + STATE(2341), 1, + sym_val_string, + STATE(2342), 1, + sym__unquoted_in_record, + STATE(2414), 1, + sym__collection_entry, + STATE(3857), 1, + sym__val_number_decimal, + STATE(5036), 1, + sym_val_bool, + ACTIONS(4676), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4682), 2, + anon_sym_COMMA, + anon_sym_LF, + ACTIONS(4688), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(4694), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + STATE(5216), 2, + sym__val_range, + sym__unquoted_anonymous_prefix, + ACTIONS(4680), 3, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + STATE(2372), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [65891] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4785), 1, + anon_sym_RBRACE, + ACTIONS(4787), 1, + sym__entry_separator, + ACTIONS(4789), 1, + sym_raw_string_begin, + STATE(2228), 1, + sym_comment, + STATE(2231), 1, + aux_sym__types_body_repeat2, + ACTIONS(4783), 29, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + aux_sym_unquoted_token1, + [65941] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2229), 1, sym_comment, - ACTIONS(4769), 2, + ACTIONS(4793), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(4771), 4, + ACTIONS(4795), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(4773), 4, + ACTIONS(4797), 4, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - ACTIONS(4765), 8, + ACTIONS(4791), 8, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -195060,7 +195418,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHstarts_DASHwith2, anon_sym_ends_DASHwith2, anon_sym_not_DASHends_DASHwith2, - ACTIONS(4767), 16, + ACTIONS(4749), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -195072,77 +195431,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, - [65563] = 18, + [65991] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3924), 1, - anon_sym_DASH2, - ACTIONS(3928), 1, - anon_sym_PLUS2, - ACTIONS(3940), 1, - anon_sym_bit_DASHand2, - ACTIONS(3942), 1, - anon_sym_bit_DASHxor2, - ACTIONS(3944), 1, - anon_sym_bit_DASHor2, - ACTIONS(3946), 1, - anon_sym_and2, - ACTIONS(3948), 1, - anon_sym_xor2, - ACTIONS(4775), 1, - anon_sym_or2, - STATE(2224), 1, + ACTIONS(4799), 1, + sym__newline, + STATE(2230), 2, + aux_sym__repeat_newline, sym_comment, - ACTIONS(3906), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(3908), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(3910), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(3922), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(3930), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(3926), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(3938), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(3936), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [65636] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3718), 1, + ACTIONS(1921), 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_record_token1, + ACTIONS(1916), 24, sym_raw_string_begin, - ACTIONS(4777), 1, - sym__entry_separator, - STATE(2225), 2, - sym_comment, - aux_sym__types_body_repeat2, - ACTIONS(3713), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195151,42 +195460,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token5, 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, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym_unquoted_token1, - [65682] = 7, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [66037] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4782), 1, - anon_sym_RBRACE, - ACTIONS(4784), 1, - sym__entry_separator, - ACTIONS(4786), 1, + ACTIONS(3690), 1, sym_raw_string_begin, - STATE(2225), 1, - aux_sym__types_body_repeat2, - STATE(2226), 1, + ACTIONS(4802), 1, + sym__entry_separator, + STATE(2231), 2, sym_comment, - ACTIONS(4780), 29, + aux_sym__types_body_repeat2, + ACTIONS(3685), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195197,6 +195496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -195216,20 +195516,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [65732] = 7, + [66083] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4784), 1, + ACTIONS(4787), 1, sym__entry_separator, - ACTIONS(4786), 1, + ACTIONS(4789), 1, sym_raw_string_begin, - ACTIONS(4788), 1, + ACTIONS(4805), 1, anon_sym_RBRACE, - STATE(2225), 1, + STATE(2231), 1, aux_sym__types_body_repeat2, - STATE(2227), 1, + STATE(2232), 1, sym_comment, - ACTIONS(4780), 29, + ACTIONS(4783), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195259,63 +195559,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [65782] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2228), 1, - sym_comment, - ACTIONS(4792), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4794), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4796), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4790), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - ACTIONS(4767), 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, - [65832] = 7, + [66133] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4784), 1, + ACTIONS(4787), 1, sym__entry_separator, - ACTIONS(4786), 1, + ACTIONS(4789), 1, sym_raw_string_begin, - ACTIONS(4798), 1, + ACTIONS(4807), 1, anon_sym_RBRACE, - STATE(2225), 1, + STATE(2231), 1, aux_sym__types_body_repeat2, - STATE(2229), 1, + STATE(2233), 1, sym_comment, - ACTIONS(4780), 29, + ACTIONS(4783), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195345,90 +195602,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym_unquoted_token1, - [65882] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4800), 1, - sym__newline, - STATE(2230), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1940), 7, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_record_token1, - ACTIONS(1935), 24, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [65928] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2231), 1, - sym_comment, - ACTIONS(1458), 3, - anon_sym_EQ, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1460), 29, - anon_sym_if, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - [65971] = 4, + [66183] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2232), 1, + STATE(2234), 1, sym_comment, ACTIONS(1509), 3, anon_sym_EQ, @@ -195464,23 +195641,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [66014] = 5, + [66226] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4803), 1, + ACTIONS(4366), 1, sym__newline, - STATE(2233), 2, - sym_comment, - aux_sym__types_body_repeat1, - ACTIONS(3734), 7, - anon_sym__, + ACTIONS(4370), 1, + anon_sym_LBRACK, + ACTIONS(4540), 1, anon_sym_DOT_DOT, + STATE(2235), 1, + sym_comment, + ACTIONS(4373), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2857), 5, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token1, - ACTIONS(3736), 23, + aux_sym__unquoted_in_list_token1, + ACTIONS(2859), 22, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -195488,7 +195669,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, @@ -195504,56 +195684,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [66059] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2234), 1, - sym_comment, - ACTIONS(1521), 3, - anon_sym_EQ, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1523), 29, - anon_sym_if, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - [66102] = 5, + [66277] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3718), 1, + ACTIONS(3690), 1, sym_raw_string_begin, - ACTIONS(4806), 1, + ACTIONS(4809), 1, sym__entry_separator, - STATE(2235), 2, + STATE(2236), 2, sym_comment, aux_sym__types_body_repeat2, - ACTIONS(3713), 29, + ACTIONS(3685), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195583,21 +195724,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [66147] = 7, + [66322] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4813), 1, + ACTIONS(4816), 1, sym__entry_separator, - ACTIONS(4815), 1, + ACTIONS(4818), 1, sym_raw_string_begin, - STATE(2235), 1, - aux_sym__types_body_repeat2, STATE(2236), 1, + aux_sym__types_body_repeat2, + STATE(2237), 1, sym_comment, - ACTIONS(4811), 2, + ACTIONS(4814), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(4809), 27, + ACTIONS(4812), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195625,21 +195766,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [66196] = 7, + [66371] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4813), 1, + ACTIONS(4816), 1, sym__entry_separator, - ACTIONS(4815), 1, + ACTIONS(4818), 1, sym_raw_string_begin, - STATE(2235), 1, + STATE(2236), 1, aux_sym__types_body_repeat2, - STATE(2237), 1, + STATE(2238), 1, sym_comment, - ACTIONS(4817), 2, + ACTIONS(4820), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(4809), 27, + ACTIONS(4812), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195667,15 +195808,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [66245] = 4, - ACTIONS(103), 1, + [66420] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2238), 1, + ACTIONS(4822), 1, + sym__newline, + STATE(2239), 2, sym_comment, - ACTIONS(3732), 2, + aux_sym__types_body_repeat1, + ACTIONS(3734), 7, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token1, + ACTIONS(3736), 23, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(3730), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195686,9 +195836,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym__, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [66465] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4816), 1, + sym__entry_separator, + ACTIONS(4818), 1, + sym_raw_string_begin, + STATE(2236), 1, + aux_sym__types_body_repeat2, + STATE(2240), 1, + sym_comment, + ACTIONS(4814), 2, + anon_sym_RBRACK, anon_sym_DOT_DOT, + ACTIONS(4812), 27, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -195705,17 +195889,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym_unquoted_token1, - [66288] = 4, + aux_sym__unquoted_in_list_token1, + [66514] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2241), 1, + sym_comment, + ACTIONS(2148), 7, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym__unquoted_in_record_token1, + ACTIONS(2146), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [66557] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2242), 1, + sym_comment, + ACTIONS(1517), 3, + anon_sym_EQ, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1519), 29, + anon_sym_if, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + [66600] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2239), 1, + STATE(2243), 1, sym_comment, - ACTIONS(1513), 3, + ACTIONS(1521), 3, anon_sym_EQ, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1515), 29, + ACTIONS(1523), 29, anon_sym_if, anon_sym_in, sym__newline, @@ -195745,21 +196007,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [66331] = 7, + [66643] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4813), 1, + ACTIONS(4816), 1, sym__entry_separator, - ACTIONS(4815), 1, + ACTIONS(4818), 1, sym_raw_string_begin, - STATE(2235), 1, + STATE(2236), 1, aux_sym__types_body_repeat2, - STATE(2240), 1, + STATE(2244), 1, sym_comment, - ACTIONS(4819), 2, + ACTIONS(4825), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(4809), 27, + ACTIONS(4812), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195787,21 +196049,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [66380] = 7, + [66692] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4813), 1, + ACTIONS(4787), 1, sym__entry_separator, - ACTIONS(4815), 1, + ACTIONS(4789), 1, sym_raw_string_begin, - STATE(2235), 1, + STATE(2231), 1, aux_sym__types_body_repeat2, - STATE(2241), 1, + STATE(2245), 1, sym_comment, - ACTIONS(4821), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(4809), 27, + ACTIONS(4783), 29, anon_sym_true, anon_sym_false, anon_sym_null, @@ -195812,6 +196071,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -195828,50 +196089,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym__unquoted_in_list_token1, - [66429] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token1, + [66739] = 7, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2242), 1, + ACTIONS(4816), 1, + sym__entry_separator, + ACTIONS(4818), 1, + sym_raw_string_begin, + STATE(2236), 1, + aux_sym__types_body_repeat2, + STATE(2246), 1, sym_comment, - ACTIONS(2112), 7, - anon_sym_DOLLAR, + ACTIONS(4820), 2, + anon_sym_RBRACK, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_record_token1, - ACTIONS(2110), 25, - sym_raw_string_begin, + ACTIONS(4812), 27, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [66472] = 4, + aux_sym__unquoted_in_list_token1, + [66788] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2243), 1, + STATE(2247), 1, sym_comment, ACTIONS(1505), 3, anon_sym_EQ, @@ -195907,57 +196171,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [66515] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4784), 1, - sym__entry_separator, - ACTIONS(4786), 1, - sym_raw_string_begin, - STATE(2225), 1, - aux_sym__types_body_repeat2, - STATE(2244), 1, - sym_comment, - ACTIONS(4780), 29, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - aux_sym_unquoted_token1, - [66562] = 4, + [66831] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2245), 1, + STATE(2248), 1, sym_comment, - ACTIONS(1517), 3, + ACTIONS(1525), 3, anon_sym_EQ, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1519), 29, + ACTIONS(1527), 29, anon_sym_if, anon_sym_in, sym__newline, @@ -195987,21 +196210,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON2, anon_sym_QMARK2, anon_sym_BANG, - [66605] = 7, + [66874] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4813), 1, + ACTIONS(4816), 1, sym__entry_separator, - ACTIONS(4815), 1, + ACTIONS(4818), 1, sym_raw_string_begin, - STATE(2235), 1, + STATE(2236), 1, aux_sym__types_body_repeat2, - STATE(2246), 1, + STATE(2249), 1, sym_comment, - ACTIONS(4811), 2, + ACTIONS(4827), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(4809), 27, + ACTIONS(4812), 27, anon_sym_true, anon_sym_false, anon_sym_null, @@ -196029,64 +196252,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [66654] = 8, + [66923] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4446), 1, + STATE(2250), 1, + sym_comment, + ACTIONS(1458), 3, + anon_sym_EQ, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1460), 29, + anon_sym_if, + anon_sym_in, sym__newline, - ACTIONS(4450), 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_LBRACK, - ACTIONS(4455), 1, - anon_sym_DOT_DOT, - STATE(2247), 1, - sym_comment, - ACTIONS(4453), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2894), 5, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym__unquoted_in_list_token1, - ACTIONS(2896), 22, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_RPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [66705] = 7, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + [66966] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4813), 1, - sym__entry_separator, - ACTIONS(4815), 1, - sym_raw_string_begin, - STATE(2235), 1, - aux_sym__types_body_repeat2, - STATE(2248), 1, + STATE(2251), 1, sym_comment, - ACTIONS(4821), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(4809), 27, + ACTIONS(3732), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(3730), 30, anon_sym_true, anon_sym_false, anon_sym_null, @@ -196097,6 +196310,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -196113,11 +196329,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - aux_sym__unquoted_in_list_token1, - [66754] = 4, + aux_sym_unquoted_token1, + [67009] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2249), 1, + STATE(2252), 1, sym_comment, ACTIONS(3732), 2, sym_raw_string_begin, @@ -196152,12 +196368,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [66796] = 5, + [67051] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4823), 1, + ACTIONS(4829), 1, sym__newline, - STATE(2250), 2, + STATE(2253), 2, sym_comment, aux_sym__types_body_repeat1, ACTIONS(3734), 6, @@ -196191,18 +196407,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [66840] = 6, + [67095] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4813), 1, + ACTIONS(4816), 1, sym__entry_separator, - ACTIONS(4815), 1, + ACTIONS(4818), 1, sym_raw_string_begin, - STATE(2235), 1, + STATE(2236), 1, aux_sym__types_body_repeat2, - STATE(2251), 1, + STATE(2254), 1, sym_comment, - ACTIONS(4809), 28, + ACTIONS(4812), 28, anon_sym_true, anon_sym_false, anon_sym_null, @@ -196231,12 +196447,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_BQUOTE, aux_sym__unquoted_in_list_token1, - [66886] = 4, + [67141] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2252), 1, + STATE(2255), 1, sym_comment, - ACTIONS(2894), 7, + ACTIONS(2857), 7, anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, @@ -196244,7 +196460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token1, - ACTIONS(2896), 24, + ACTIONS(2859), 24, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -196269,14 +196485,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [66928] = 6, + [67183] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2253), 1, + STATE(2256), 1, sym_comment, - STATE(3191), 1, + STATE(3211), 1, sym_redirection, - ACTIONS(4828), 8, + ACTIONS(4834), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -196285,7 +196501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4830), 8, + ACTIONS(4836), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -196294,7 +196510,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(4826), 13, + ACTIONS(4832), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196308,19 +196524,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [66973] = 4, + [67228] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2254), 1, + STATE(2257), 1, sym_comment, - ACTIONS(2894), 6, + ACTIONS(2857), 6, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, aux_sym__unquoted_in_list_token1, - ACTIONS(2896), 24, + ACTIONS(2859), 24, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -196345,14 +196561,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [67014] = 6, + [67269] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2255), 1, + STATE(2258), 1, sym_comment, - STATE(3201), 1, + STATE(3210), 1, sym_redirection, - ACTIONS(4828), 8, + ACTIONS(4834), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -196361,7 +196577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4830), 8, + ACTIONS(4836), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -196370,7 +196586,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(4832), 13, + ACTIONS(4838), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196384,14 +196600,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [67059] = 6, + [67314] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2256), 1, + STATE(2259), 1, sym_comment, - STATE(3274), 1, + STATE(3291), 1, + sym_redirection, + ACTIONS(4840), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4842), 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(4838), 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, + [67358] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2260), 1, + sym_comment, + STATE(3377), 1, + sym_redirection, + ACTIONS(4834), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4836), 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(4844), 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, + [67402] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2261), 1, + sym_comment, + STATE(3365), 1, sym_redirection, - ACTIONS(4828), 8, + ACTIONS(4834), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -196400,7 +196692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4830), 8, + ACTIONS(4836), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -196409,7 +196701,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(4834), 12, + ACTIONS(4846), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -196422,7 +196714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [67103] = 25, + [67446] = 25, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196433,91 +196725,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2756), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4836), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4838), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4840), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4842), 1, + ACTIONS(4854), 1, anon_sym_LBRACE, - ACTIONS(4844), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(958), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2257), 1, + STATE(2262), 1, sym_comment, - STATE(2417), 1, + STATE(2419), 1, sym_val_string, - STATE(2451), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2626), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2737), 1, + STATE(2787), 1, sym__binary_predicate_parenthesized, - STATE(2738), 1, + STATE(2789), 1, sym_where_predicate, - STATE(3043), 1, + STATE(3024), 1, aux_sym__repeat_newline, - STATE(3195), 1, + STATE(3149), 1, sym_val_closure, - ACTIONS(1914), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2223), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2743), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(422), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67185] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2258), 1, - sym_comment, - STATE(3327), 1, - sym_redirection, - ACTIONS(4846), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4848), 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(4832), 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, - [67229] = 25, + [67528] = 25, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196528,60 +196782,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2756), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4836), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4838), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4840), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4842), 1, + ACTIONS(4854), 1, anon_sym_LBRACE, - ACTIONS(4844), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(958), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2257), 1, + STATE(2262), 1, aux_sym__repeat_newline, - STATE(2259), 1, + STATE(2263), 1, sym_comment, - STATE(2417), 1, + STATE(2419), 1, sym_val_string, - STATE(2451), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2626), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2813), 1, + STATE(2715), 1, sym__binary_predicate_parenthesized, - STATE(2814), 1, + STATE(2718), 1, sym_where_predicate, - STATE(3260), 1, + STATE(3148), 1, sym_val_closure, - ACTIONS(1914), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2223), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2743), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(422), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67311] = 6, + [67610] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2260), 1, + STATE(2264), 1, sym_comment, - STATE(3292), 1, + STATE(3287), 1, sym_redirection, - ACTIONS(4846), 8, + ACTIONS(4840), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -196590,7 +196844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4848), 8, + ACTIONS(4842), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -196599,7 +196853,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(4826), 12, + ACTIONS(4832), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -196612,48 +196866,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, - [67355] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2261), 1, - sym_comment, - STATE(3278), 1, - sym_redirection, - ACTIONS(4828), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4830), 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(4850), 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, - [67399] = 4, + [67654] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2262), 1, + STATE(2265), 1, sym_comment, ACTIONS(1572), 2, anon_sym_EQ, @@ -196686,21 +196902,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [67439] = 7, + [67694] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4852), 1, + ACTIONS(4858), 1, anon_sym_QMARK2, - ACTIONS(4854), 1, + ACTIONS(4860), 1, anon_sym_BANG, - STATE(441), 1, + STATE(445), 1, sym__path_suffix, - STATE(2263), 1, + STATE(2266), 1, sym_comment, - ACTIONS(1438), 2, + ACTIONS(1432), 2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1440), 23, + ACTIONS(1434), 23, anon_sym_if, anon_sym_in, sym__newline, @@ -196724,7 +196940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [67484] = 23, + [67739] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196735,49 +196951,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2756), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4836), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4838), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4840), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4844), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(958), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2264), 1, + STATE(2267), 1, sym_comment, - STATE(2294), 1, + STATE(2278), 1, aux_sym__repeat_newline, - STATE(2417), 1, + STATE(2419), 1, sym_val_string, - STATE(2451), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2626), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2732), 1, + STATE(2702), 1, sym__binary_predicate_parenthesized, - STATE(2745), 1, + STATE(2703), 1, sym_where_predicate, - ACTIONS(1914), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2223), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2743), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(422), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67560] = 23, + [67815] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196788,117 +197004,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2756), 1, + ACTIONS(2686), 1, aux_sym_expr_unary_token1, - ACTIONS(4836), 1, - sym__newline, - ACTIONS(4838), 1, - anon_sym_LPAREN, - ACTIONS(4840), 1, - anon_sym_DASH2, - ACTIONS(4844), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(958), 1, - sym__expr_unary_minus, - STATE(2265), 1, - sym_comment, - STATE(2417), 1, - sym_val_string, - STATE(2451), 1, - sym__where_predicate_lhs_path_head, - STATE(2626), 1, - sym__where_predicate_lhs, - STATE(2776), 1, - sym__binary_predicate_parenthesized, - STATE(2777), 1, - sym_where_predicate, - STATE(3043), 1, - aux_sym__repeat_newline, - ACTIONS(1914), 2, - anon_sym_true, - anon_sym_false, - STATE(2223), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2743), 2, - sym_expr_unary, - sym_val_bool, - STATE(422), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [67636] = 23, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2756), 1, - aux_sym_expr_unary_token1, - ACTIONS(4836), 1, - sym__newline, - ACTIONS(4838), 1, + ACTIONS(4862), 1, anon_sym_LPAREN, - ACTIONS(4840), 1, + ACTIONS(4864), 1, + anon_sym_DOLLAR, + ACTIONS(4866), 1, anon_sym_DASH2, - ACTIONS(4844), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(958), 1, + ACTIONS(4868), 1, + anon_sym_LBRACE, + STATE(1274), 1, sym__expr_unary_minus, - STATE(2266), 1, + STATE(2268), 1, sym_comment, - STATE(2274), 1, - aux_sym__repeat_newline, - STATE(2417), 1, + STATE(2419), 1, sym_val_string, - STATE(2451), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2626), 1, + STATE(2622), 1, sym__where_predicate_lhs, - STATE(2805), 1, - sym__binary_predicate_parenthesized, - STATE(2806), 1, + STATE(2941), 1, + sym__binary_predicate, + STATE(2942), 1, sym_where_predicate, - ACTIONS(1914), 2, + STATE(3327), 1, + sym_val_closure, + ACTIONS(2399), 2, anon_sym_true, anon_sym_false, - STATE(2223), 2, + STATE(2229), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2743), 2, + STATE(2874), 2, sym_expr_unary, sym_val_bool, - STATE(422), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67712] = 8, + [67891] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1432), 1, + ACTIONS(1444), 1, anon_sym_DOT_DOT2, - ACTIONS(4856), 1, + ACTIONS(4870), 1, anon_sym_DOT2, - STATE(435), 1, + STATE(446), 1, sym_path, - STATE(2262), 1, + STATE(2265), 1, sym_cell_path, - STATE(2267), 1, + STATE(2269), 1, sym_comment, - STATE(2283), 1, + STATE(2294), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1434), 22, + ACTIONS(1446), 22, anon_sym_if, anon_sym_in, sym__newline, @@ -196921,7 +197084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [67758] = 23, + [67937] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196932,49 +197095,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2756), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4836), 1, - sym__newline, - ACTIONS(4838), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4840), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4844), 1, + ACTIONS(4854), 1, + anon_sym_LBRACE, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(958), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2268), 1, - sym_comment, STATE(2270), 1, - aux_sym__repeat_newline, - STATE(2417), 1, + sym_comment, + STATE(2419), 1, sym_val_string, - STATE(2451), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2626), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2784), 1, - sym__binary_predicate_parenthesized, - STATE(2865), 1, + STATE(2696), 1, sym_where_predicate, - ACTIONS(1914), 2, + STATE(2818), 1, + sym__binary_predicate, + STATE(3193), 1, + sym_val_closure, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2223), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2743), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(422), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67834] = 23, + [68013] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -196985,49 +197148,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2756), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4836), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4838), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4840), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4844), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(958), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2269), 1, + STATE(2271), 1, sym_comment, - STATE(2275), 1, - aux_sym__repeat_newline, - STATE(2417), 1, + STATE(2419), 1, sym_val_string, - STATE(2451), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2626), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2807), 1, + STATE(2813), 1, sym__binary_predicate_parenthesized, - STATE(2808), 1, + STATE(2814), 1, sym_where_predicate, - ACTIONS(1914), 2, + STATE(3024), 1, + aux_sym__repeat_newline, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2223), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2743), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(422), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67910] = 23, + [68089] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197038,49 +197201,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2756), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4836), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4838), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4840), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4844), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(958), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2270), 1, + STATE(2272), 1, sym_comment, - STATE(2417), 1, + STATE(2419), 1, sym_val_string, - STATE(2451), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2626), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2836), 1, + STATE(2700), 1, sym__binary_predicate_parenthesized, - STATE(2838), 1, + STATE(2701), 1, sym_where_predicate, - STATE(3043), 1, + STATE(3024), 1, aux_sym__repeat_newline, - ACTIONS(1914), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2223), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2743), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(422), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [67986] = 23, + [68165] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197091,49 +197254,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2756), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4836), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4838), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4840), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4844), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(958), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2271), 1, + STATE(2273), 1, sym_comment, - STATE(2417), 1, + STATE(2419), 1, sym_val_string, - STATE(2451), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2626), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2695), 1, + STATE(2723), 1, sym__binary_predicate_parenthesized, - STATE(2696), 1, + STATE(2739), 1, sym_where_predicate, - STATE(3043), 1, + STATE(3024), 1, aux_sym__repeat_newline, - ACTIONS(1914), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2223), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2743), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(422), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68062] = 23, + [68241] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197144,49 +197307,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2756), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4836), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4838), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4840), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4844), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(958), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2272), 1, + STATE(2274), 1, sym_comment, - STATE(2417), 1, + STATE(2419), 1, sym_val_string, - STATE(2451), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2626), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2702), 1, + STATE(2815), 1, sym__binary_predicate_parenthesized, - STATE(2703), 1, + STATE(2816), 1, sym_where_predicate, - STATE(3043), 1, + STATE(3024), 1, aux_sym__repeat_newline, - ACTIONS(1914), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2223), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2743), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(422), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68138] = 23, + [68317] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197197,49 +197360,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2756), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4836), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4838), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4840), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4844), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(958), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2271), 1, - aux_sym__repeat_newline, - STATE(2273), 1, + STATE(2275), 1, sym_comment, - STATE(2417), 1, + STATE(2419), 1, sym_val_string, - STATE(2451), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2626), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2786), 1, + STATE(2825), 1, sym__binary_predicate_parenthesized, - STATE(2787), 1, + STATE(2826), 1, sym_where_predicate, - ACTIONS(1914), 2, + STATE(3024), 1, + aux_sym__repeat_newline, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2223), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2743), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(422), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68214] = 23, + [68393] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197250,49 +197413,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2756), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4836), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4838), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4840), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4844), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(958), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2274), 1, + STATE(2276), 1, sym_comment, - STATE(2417), 1, + STATE(2419), 1, sym_val_string, - STATE(2451), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2626), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2716), 1, + STATE(2831), 1, sym__binary_predicate_parenthesized, - STATE(2717), 1, + STATE(2832), 1, sym_where_predicate, - STATE(3043), 1, + STATE(3024), 1, aux_sym__repeat_newline, - ACTIONS(1914), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2223), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2743), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(422), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68290] = 23, + [68469] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197303,49 +197466,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2756), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4836), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4838), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4840), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4844), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(958), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2275), 1, + STATE(2277), 1, sym_comment, - STATE(2417), 1, + STATE(2419), 1, sym_val_string, - STATE(2451), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2626), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2720), 1, + STATE(2704), 1, sym__binary_predicate_parenthesized, - STATE(2725), 1, + STATE(2708), 1, sym_where_predicate, - STATE(3043), 1, + STATE(3024), 1, aux_sym__repeat_newline, - ACTIONS(1914), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2223), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2743), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(422), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68366] = 23, + [68545] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197356,49 +197519,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2756), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4836), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4838), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4840), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4844), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(958), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2276), 1, + STATE(2278), 1, sym_comment, - STATE(2417), 1, + STATE(2419), 1, sym_val_string, - STATE(2451), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2626), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2729), 1, + STATE(2719), 1, sym__binary_predicate_parenthesized, - STATE(2730), 1, + STATE(2720), 1, sym_where_predicate, - STATE(3043), 1, + STATE(3024), 1, aux_sym__repeat_newline, - ACTIONS(1914), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2223), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2743), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(422), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68442] = 23, + [68621] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197409,49 +197572,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2756), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4836), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4838), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4840), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4844), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(958), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2276), 1, + STATE(2271), 1, aux_sym__repeat_newline, - STATE(2277), 1, + STATE(2279), 1, sym_comment, - STATE(2417), 1, + STATE(2419), 1, sym_val_string, - STATE(2451), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2626), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2809), 1, + STATE(2837), 1, sym__binary_predicate_parenthesized, - STATE(2810), 1, + STATE(2838), 1, sym_where_predicate, - ACTIONS(1914), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2223), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2743), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(422), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68518] = 23, + [68697] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197462,49 +197625,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2756), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4836), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4838), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4840), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4844), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(958), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2278), 1, + STATE(2272), 1, + aux_sym__repeat_newline, + STATE(2280), 1, sym_comment, - STATE(2417), 1, + STATE(2419), 1, sym_val_string, - STATE(2451), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2626), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2770), 1, + STATE(2841), 1, sym__binary_predicate_parenthesized, - STATE(2771), 1, + STATE(2842), 1, sym_where_predicate, - STATE(3043), 1, - aux_sym__repeat_newline, - ACTIONS(1914), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2223), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2743), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(422), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68594] = 23, + [68773] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197515,49 +197678,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2756), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4836), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4838), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4840), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4844), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(958), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2279), 1, + STATE(2281), 1, sym_comment, - STATE(2417), 1, + STATE(2419), 1, sym_val_string, - STATE(2451), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2626), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2780), 1, + STATE(2740), 1, sym__binary_predicate_parenthesized, - STATE(2781), 1, + STATE(2743), 1, sym_where_predicate, - STATE(3043), 1, + STATE(3024), 1, aux_sym__repeat_newline, - ACTIONS(1914), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2223), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2743), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(422), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68670] = 23, + [68849] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197568,49 +197731,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2756), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4838), 1, + ACTIONS(4848), 1, + sym__newline, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4840), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4842), 1, - anon_sym_LBRACE, - ACTIONS(4844), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(958), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2280), 1, + STATE(2274), 1, + aux_sym__repeat_newline, + STATE(2282), 1, sym_comment, - STATE(2417), 1, + STATE(2419), 1, sym_val_string, - STATE(2451), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2626), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2740), 1, - sym__binary_predicate, - STATE(2741), 1, + STATE(2753), 1, + sym__binary_predicate_parenthesized, + STATE(2754), 1, sym_where_predicate, - STATE(3259), 1, - sym_val_closure, - ACTIONS(1914), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2223), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2743), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(422), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68746] = 23, + [68925] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197621,239 +197784,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(2724), 1, + ACTIONS(1586), 1, + anon_sym_DOLLAR, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4844), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4858), 1, + ACTIONS(4848), 1, + sym__newline, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOLLAR, - ACTIONS(4862), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4864), 1, - anon_sym_LBRACE, - STATE(1279), 1, + ACTIONS(4856), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2281), 1, + STATE(2275), 1, + aux_sym__repeat_newline, + STATE(2283), 1, sym_comment, - STATE(2417), 1, + STATE(2419), 1, sym_val_string, - STATE(2451), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2600), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2922), 1, - sym__binary_predicate, - STATE(2940), 1, + STATE(2755), 1, + sym__binary_predicate_parenthesized, + STATE(2756), 1, sym_where_predicate, - STATE(3388), 1, - sym_val_closure, - ACTIONS(2172), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2228), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2942), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(422), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [68822] = 11, + [69001] = 23, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1598), 1, - sym__unquoted_pattern, - ACTIONS(2910), 1, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(4866), 1, - anon_sym_DOT, - STATE(2282), 1, - sym_comment, - STATE(2453), 1, - sym__immediate_decimal, - ACTIONS(4868), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4870), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2563), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1582), 16, + ACTIONS(2760), 1, + aux_sym_expr_unary_token1, + ACTIONS(4848), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [68874] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1490), 1, - anon_sym_DOT_DOT2, + ACTIONS(4850), 1, + anon_sym_LPAREN, + ACTIONS(4852), 1, + anon_sym_DASH2, ACTIONS(4856), 1, - anon_sym_DOT2, - STATE(435), 1, - sym_path, - STATE(2283), 1, - sym_comment, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(916), 1, + sym__expr_unary_minus, + STATE(2276), 1, + aux_sym__repeat_newline, STATE(2284), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1492), 23, - anon_sym_if, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [68918] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1494), 1, - anon_sym_DOT_DOT2, - ACTIONS(4872), 1, - anon_sym_DOT2, - STATE(435), 1, - sym_path, - STATE(2284), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1496), 23, - anon_sym_if, - anon_sym_in, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [68960] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1657), 1, - anon_sym_DOT_DOT2, - ACTIONS(4856), 1, - anon_sym_DOT2, - STATE(435), 1, - sym_path, - STATE(460), 1, - sym_cell_path, - STATE(2283), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2285), 1, - sym_comment, - ACTIONS(1655), 22, - anon_sym_if, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [69006] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1663), 1, - anon_sym_DOT_DOT2, - ACTIONS(4856), 1, - anon_sym_DOT2, - STATE(435), 1, - sym_path, - STATE(462), 1, - sym_cell_path, - STATE(2283), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2286), 1, sym_comment, - ACTIONS(1661), 22, - anon_sym_if, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [69052] = 23, + STATE(2419), 1, + sym_val_string, + STATE(2441), 1, + sym__where_predicate_lhs_path_head, + STATE(2632), 1, + sym__where_predicate_lhs, + STATE(2757), 1, + sym__binary_predicate_parenthesized, + STATE(2758), 1, + sym_where_predicate, + ACTIONS(1892), 2, + anon_sym_true, + anon_sym_false, + STATE(2213), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2819), 2, + sym_expr_unary, + sym_val_bool, + STATE(414), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [69077] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197864,49 +197890,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2756), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4836), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4838), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4840), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4844), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(958), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2278), 1, - aux_sym__repeat_newline, - STATE(2287), 1, + STATE(2285), 1, sym_comment, - STATE(2417), 1, + STATE(2289), 1, + aux_sym__repeat_newline, + STATE(2419), 1, sym_val_string, - STATE(2451), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2626), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2826), 1, + STATE(2805), 1, sym__binary_predicate_parenthesized, - STATE(2858), 1, + STATE(2810), 1, sym_where_predicate, - ACTIONS(1914), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2223), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2743), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(422), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69128] = 23, + [69153] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197917,49 +197943,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2756), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4836), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4838), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4840), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4844), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(958), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2265), 1, - aux_sym__repeat_newline, - STATE(2288), 1, + STATE(2286), 1, sym_comment, - STATE(2417), 1, + STATE(2290), 1, + aux_sym__repeat_newline, + STATE(2419), 1, sym_val_string, - STATE(2451), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2626), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2728), 1, - sym_where_predicate, - STATE(2763), 1, + STATE(2812), 1, sym__binary_predicate_parenthesized, - ACTIONS(1914), 2, + STATE(2820), 1, + sym_where_predicate, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2223), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2743), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(422), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69204] = 23, + [69229] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -197970,49 +197996,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2756), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4836), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4838), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4840), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4844), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(958), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2272), 1, - aux_sym__repeat_newline, - STATE(2289), 1, + STATE(2287), 1, sym_comment, - STATE(2417), 1, + STATE(2291), 1, + aux_sym__repeat_newline, + STATE(2419), 1, sym_val_string, - STATE(2451), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2626), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2788), 1, + STATE(2822), 1, sym__binary_predicate_parenthesized, - STATE(2789), 1, + STATE(2823), 1, sym_where_predicate, - ACTIONS(1914), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2223), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2743), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(422), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69280] = 23, + [69305] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -198023,49 +198049,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2756), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4836), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4838), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4840), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4844), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(958), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2279), 1, + STATE(2273), 1, aux_sym__repeat_newline, - STATE(2290), 1, + STATE(2288), 1, sym_comment, - STATE(2417), 1, + STATE(2419), 1, sym_val_string, - STATE(2451), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2626), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2819), 1, - sym_where_predicate, - STATE(2829), 1, + STATE(2844), 1, sym__binary_predicate_parenthesized, - ACTIONS(1914), 2, + STATE(2845), 1, + sym_where_predicate, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2223), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2743), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(422), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69356] = 23, + [69381] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -198076,49 +198102,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2756), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4836), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4838), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4840), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4844), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(958), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2291), 1, + STATE(2289), 1, sym_comment, - STATE(2292), 1, - aux_sym__repeat_newline, - STATE(2417), 1, + STATE(2419), 1, sym_val_string, - STATE(2451), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2626), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2775), 1, + STATE(2846), 1, sym__binary_predicate_parenthesized, - STATE(2797), 1, + STATE(2853), 1, sym_where_predicate, - ACTIONS(1914), 2, + STATE(3024), 1, + aux_sym__repeat_newline, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2223), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2743), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(422), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69432] = 23, + [69457] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -198129,49 +198155,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2756), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4836), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4838), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4840), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4844), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(958), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2292), 1, + STATE(2290), 1, sym_comment, - STATE(2417), 1, + STATE(2419), 1, sym_val_string, - STATE(2451), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2626), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2790), 1, + STATE(2856), 1, sym__binary_predicate_parenthesized, - STATE(2791), 1, + STATE(2857), 1, sym_where_predicate, - STATE(3043), 1, + STATE(3024), 1, aux_sym__repeat_newline, - ACTIONS(1914), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2223), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2743), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(422), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69508] = 23, + [69533] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -198182,49 +198208,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2756), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4836), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4838), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4840), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4844), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(958), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2293), 1, + STATE(2291), 1, sym_comment, - STATE(2295), 1, - aux_sym__repeat_newline, - STATE(2417), 1, + STATE(2419), 1, sym_val_string, - STATE(2451), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2626), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2837), 1, + STATE(2860), 1, sym__binary_predicate_parenthesized, - STATE(2848), 1, + STATE(2861), 1, sym_where_predicate, - ACTIONS(1914), 2, + STATE(3024), 1, + aux_sym__repeat_newline, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2223), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2743), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(422), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69584] = 23, + [69609] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -198235,49 +198261,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2756), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4836), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4838), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4840), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4844), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(958), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2294), 1, + STATE(2277), 1, + aux_sym__repeat_newline, + STATE(2292), 1, sym_comment, - STATE(2417), 1, + STATE(2419), 1, sym_val_string, - STATE(2451), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2626), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2801), 1, + STATE(2866), 1, sym__binary_predicate_parenthesized, - STATE(2802), 1, + STATE(2867), 1, sym_where_predicate, - STATE(3043), 1, - aux_sym__repeat_newline, - ACTIONS(1914), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2223), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2743), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(422), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69660] = 23, + [69685] = 23, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -198288,66 +198314,296 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2756), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4836), 1, + ACTIONS(4848), 1, sym__newline, - ACTIONS(4838), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4840), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4844), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(958), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2295), 1, + STATE(2281), 1, + aux_sym__repeat_newline, + STATE(2293), 1, sym_comment, - STATE(2417), 1, + STATE(2419), 1, sym_val_string, - STATE(2451), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2626), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2795), 1, + STATE(2705), 1, sym__binary_predicate_parenthesized, - STATE(2796), 1, + STATE(2706), 1, sym_where_predicate, - STATE(3043), 1, - aux_sym__repeat_newline, - ACTIONS(1914), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2223), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2743), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(422), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [69736] = 8, + [69761] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4875), 1, + ACTIONS(1492), 1, + anon_sym_DOT_DOT2, + ACTIONS(4870), 1, + anon_sym_DOT2, + STATE(446), 1, + sym_path, + STATE(2294), 1, + sym_comment, + STATE(2295), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1494), 23, + anon_sym_if, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [69805] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1496), 1, + anon_sym_DOT_DOT2, + ACTIONS(4872), 1, + anon_sym_DOT2, + STATE(446), 1, + sym_path, + STATE(2295), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1498), 23, + anon_sym_if, + anon_sym_in, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [69847] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1679), 1, + anon_sym_DOT_DOT2, + ACTIONS(4870), 1, anon_sym_DOT2, + STATE(446), 1, + sym_path, + STATE(457), 1, + sym_cell_path, + STATE(2294), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(2296), 1, sym_comment, - STATE(2329), 1, + ACTIONS(1677), 22, + anon_sym_if, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [69893] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1649), 1, + anon_sym_DOT_DOT2, + ACTIONS(4870), 1, + anon_sym_DOT2, + STATE(446), 1, + sym_path, + STATE(455), 1, + sym_cell_path, + STATE(2294), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2373), 1, + STATE(2297), 1, + sym_comment, + ACTIONS(1647), 22, + anon_sym_if, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [69939] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + ACTIONS(4875), 1, + anon_sym_DOT, + STATE(2298), 1, + sym_comment, + STATE(2471), 1, + sym__immediate_decimal, + ACTIONS(4877), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4879), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2553), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1584), 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, + [69991] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(1659), 1, + anon_sym_LPAREN2, + ACTIONS(4881), 1, + anon_sym_DOLLAR, + ACTIONS(4883), 1, + anon_sym_DOT, + STATE(2299), 1, + sym_comment, + STATE(2483), 1, + sym__immediate_decimal, + ACTIONS(4885), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4887), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2630), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1584), 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, + [70042] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4889), 1, + anon_sym_DOT2, + STATE(2300), 1, + sym_comment, + STATE(2337), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2397), 1, sym_path, - STATE(2430), 1, + STATE(2426), 1, sym_cell_path, - ACTIONS(1864), 3, + ACTIONS(1846), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__unquoted_in_record_token1, - ACTIONS(1862), 19, + ACTIONS(1844), 19, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -198367,24 +198623,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [69781] = 8, + [70087] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4875), 1, - anon_sym_DOT2, - STATE(2297), 1, + ACTIONS(4891), 1, + anon_sym_QMARK2, + ACTIONS(4893), 1, + anon_sym_BANG, + STATE(2301), 1, sym_comment, - STATE(2329), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2373), 1, - sym_path, - STATE(2432), 1, - sym_cell_path, - ACTIONS(4879), 3, + STATE(2368), 1, + sym__path_suffix, + ACTIONS(1432), 4, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, + anon_sym_DOT2, aux_sym__unquoted_in_record_token1, - ACTIONS(4877), 19, + ACTIONS(1434), 19, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -198404,68 +198659,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [69826] = 10, + [70130] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1641), 1, + ACTIONS(1598), 1, sym__unquoted_pattern, - ACTIONS(2910), 1, - anon_sym_DOLLAR, - STATE(2298), 1, - sym_comment, - STATE(2576), 1, - sym__immediate_decimal, - ACTIONS(4881), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4883), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(846), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1631), 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, - [69875] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1611), 1, - anon_sym_DOT, - ACTIONS(2910), 1, + ACTIONS(2871), 1, anon_sym_DOLLAR, - STATE(2299), 1, + STATE(2302), 1, sym_comment, - STATE(2562), 1, + STATE(2614), 1, sym__immediate_decimal, - ACTIONS(1592), 2, + ACTIONS(4895), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1594), 2, + ACTIONS(4897), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2561), 2, + STATE(829), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1607), 16, + ACTIONS(1584), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198482,24 +198698,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [69924] = 8, + [70179] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4875), 1, + ACTIONS(4889), 1, anon_sym_DOT2, - STATE(2300), 1, + STATE(2303), 1, sym_comment, - STATE(2329), 1, + STATE(2337), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2373), 1, + STATE(2397), 1, sym_path, - STATE(2423), 1, + STATE(2434), 1, sym_cell_path, - ACTIONS(1850), 3, + ACTIONS(4901), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__unquoted_in_record_token1, - ACTIONS(1848), 19, + ACTIONS(4899), 19, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -198519,24 +198735,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [69969] = 8, + [70224] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4875), 1, + ACTIONS(4889), 1, anon_sym_DOT2, - STATE(2301), 1, + STATE(2304), 1, sym_comment, - STATE(2329), 1, + STATE(2337), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2373), 1, + STATE(2397), 1, sym_path, - STATE(2401), 1, + STATE(2424), 1, sym_cell_path, - ACTIONS(1432), 3, + ACTIONS(1840), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__unquoted_in_record_token1, - ACTIONS(1434), 19, + ACTIONS(1838), 19, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -198556,24 +198772,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [70014] = 8, + [70269] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4875), 1, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1627), 1, + anon_sym_DOT, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + STATE(2305), 1, + sym_comment, + STATE(2552), 1, + sym__immediate_decimal, + ACTIONS(1594), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(1596), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2551), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1623), 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, + [70318] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4889), 1, anon_sym_DOT2, - STATE(2302), 1, + STATE(2306), 1, sym_comment, - STATE(2329), 1, + STATE(2337), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2373), 1, + STATE(2397), 1, sym_path, - STATE(2413), 1, + STATE(2415), 1, sym_cell_path, - ACTIONS(1856), 3, + ACTIONS(1874), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__unquoted_in_record_token1, - ACTIONS(1854), 19, + ACTIONS(1872), 19, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -198593,17 +198848,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [70059] = 5, + [70363] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1693), 1, + ACTIONS(1697), 1, anon_sym_BANG, - STATE(2303), 1, + STATE(2307), 1, sym_comment, - ACTIONS(1446), 2, + ACTIONS(1450), 2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1448), 23, + ACTIONS(1452), 23, anon_sym_if, anon_sym_in, sym__newline, @@ -198627,29 +198882,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [70098] = 10, + [70402] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(4889), 1, + anon_sym_DOT2, + STATE(2308), 1, + sym_comment, + STATE(2337), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2397), 1, + sym_path, + STATE(2435), 1, + sym_cell_path, + ACTIONS(1444), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(1446), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [70447] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1598), 1, + ACTIONS(1641), 1, sym__unquoted_pattern, - ACTIONS(2910), 1, + ACTIONS(2871), 1, anon_sym_DOLLAR, - STATE(2304), 1, + STATE(2309), 1, sym_comment, - STATE(2573), 1, + STATE(2585), 1, sym__immediate_decimal, - ACTIONS(4881), 2, + ACTIONS(4895), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4883), 2, + ACTIONS(4897), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(809), 2, + STATE(871), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1582), 16, + ACTIONS(1633), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198666,63 +198958,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [70147] = 11, + [70496] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern, - ACTIONS(1673), 1, - anon_sym_LPAREN2, - ACTIONS(4885), 1, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(4887), 1, - anon_sym_DOT, - STATE(2305), 1, + ACTIONS(2760), 1, + aux_sym_expr_unary_token1, + ACTIONS(4850), 1, + anon_sym_LPAREN, + ACTIONS(4852), 1, + anon_sym_DASH2, + ACTIONS(4856), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(916), 1, + sym__expr_unary_minus, + STATE(2310), 1, sym_comment, - STATE(2509), 1, - sym__immediate_decimal, - ACTIONS(4889), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4891), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2629), 2, - sym__expr_parenthesized_immediate, + STATE(2419), 1, + sym_val_string, + STATE(2441), 1, + sym__where_predicate_lhs_path_head, + STATE(2632), 1, + sym__where_predicate_lhs, + STATE(2781), 1, + sym__binary_predicate, + STATE(2793), 1, + sym_where_predicate, + ACTIONS(1892), 2, + anon_sym_true, + anon_sym_false, + STATE(2213), 2, + sym_expr_parenthesized, sym_val_variable, - ACTIONS(1582), 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, - [70198] = 7, + STATE(2819), 2, + sym_expr_unary, + sym_val_bool, + STATE(414), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [70566] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4893), 1, - anon_sym_QMARK2, - ACTIONS(4895), 1, - anon_sym_BANG, - STATE(2306), 1, + ACTIONS(4903), 1, + anon_sym_DOT2, + STATE(2397), 1, + sym_path, + STATE(2311), 2, sym_comment, - STATE(2384), 1, - sym__path_suffix, - ACTIONS(1438), 4, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1496), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, aux_sym__unquoted_in_record_token1, - ACTIONS(1440), 19, + ACTIONS(1498), 19, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -198742,41 +199041,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [70241] = 6, + [70606] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4897), 1, - anon_sym_DOT2, - STATE(2373), 1, - sym_path, - STATE(2307), 2, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(2686), 1, + aux_sym_expr_unary_token1, + ACTIONS(4856), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4862), 1, + anon_sym_LPAREN, + ACTIONS(4864), 1, + anon_sym_DOLLAR, + ACTIONS(4866), 1, + anon_sym_DASH2, + STATE(1274), 1, + sym__expr_unary_minus, + STATE(2312), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1494), 3, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__unquoted_in_record_token1, - ACTIONS(1496), 19, + STATE(2419), 1, + sym_val_string, + STATE(2441), 1, + sym__where_predicate_lhs_path_head, + STATE(2622), 1, + sym__where_predicate_lhs, + STATE(2899), 1, + sym__binary_predicate, + STATE(2904), 1, + sym_where_predicate, + ACTIONS(2399), 2, + anon_sym_true, + anon_sym_false, + STATE(2229), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2874), 2, + sym_expr_unary, + sym_val_bool, + STATE(414), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [70676] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, sym_raw_string_begin, + ACTIONS(2686), 1, + aux_sym_expr_unary_token1, + ACTIONS(4856), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4862), 1, + anon_sym_LPAREN, + ACTIONS(4864), 1, + anon_sym_DOLLAR, + ACTIONS(4866), 1, + anon_sym_DASH2, + STATE(1274), 1, + sym__expr_unary_minus, + STATE(2313), 1, + sym_comment, + STATE(2419), 1, + sym_val_string, + STATE(2441), 1, + sym__where_predicate_lhs_path_head, + STATE(2622), 1, + sym__where_predicate_lhs, + STATE(2879), 1, + sym_where_predicate, + STATE(2963), 1, + sym__binary_predicate, + ACTIONS(2399), 2, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_COMMA, - anon_sym_LF, - anon_sym_GT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, + STATE(2229), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2874), 2, + sym_expr_unary, + sym_val_bool, + STATE(414), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [70746] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1586), 1, + anon_sym_DOLLAR, + ACTIONS(2760), 1, + aux_sym_expr_unary_token1, + ACTIONS(4850), 1, + anon_sym_LPAREN, + ACTIONS(4852), 1, + anon_sym_DASH2, + ACTIONS(4856), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(916), 1, + sym__expr_unary_minus, + STATE(2314), 1, + sym_comment, + STATE(2419), 1, + sym_val_string, + STATE(2441), 1, + sym__where_predicate_lhs_path_head, + STATE(2632), 1, + sym__where_predicate_lhs, + STATE(2794), 1, + sym__binary_predicate, + STATE(2795), 1, + sym_where_predicate, + ACTIONS(1892), 2, + anon_sym_true, + anon_sym_false, + STATE(2213), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2819), 2, + sym_expr_unary, + sym_val_bool, + STATE(414), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [70816] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(197), 1, anon_sym_DQUOTE, + ACTIONS(199), 1, anon_sym_SQUOTE, + ACTIONS(201), 1, anon_sym_BQUOTE, - [70281] = 21, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1586), 1, + anon_sym_DOLLAR, + ACTIONS(2760), 1, + aux_sym_expr_unary_token1, + ACTIONS(4850), 1, + anon_sym_LPAREN, + ACTIONS(4852), 1, + anon_sym_DASH2, + ACTIONS(4856), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(916), 1, + sym__expr_unary_minus, + STATE(2315), 1, + sym_comment, + STATE(2419), 1, + sym_val_string, + STATE(2441), 1, + sym__where_predicate_lhs_path_head, + STATE(2632), 1, + sym__where_predicate_lhs, + STATE(2796), 1, + sym__binary_predicate, + STATE(2797), 1, + sym_where_predicate, + ACTIONS(1892), 2, + anon_sym_true, + anon_sym_false, + STATE(2213), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2819), 2, + sym_expr_unary, + sym_val_bool, + STATE(414), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [70886] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -198787,89 +199248,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2756), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(4838), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4840), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - ACTIONS(4844), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - STATE(958), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(2308), 1, + STATE(2316), 1, sym_comment, - STATE(2417), 1, + STATE(2419), 1, sym_val_string, - STATE(2451), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2626), 1, + STATE(2632), 1, sym__where_predicate_lhs, - STATE(2767), 1, + STATE(2798), 1, sym__binary_predicate, - STATE(2768), 1, + STATE(2799), 1, sym_where_predicate, - ACTIONS(1914), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(2223), 2, + STATE(2213), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2743), 2, + STATE(2819), 2, sym_expr_unary, sym_val_bool, - STATE(422), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [70351] = 13, - ACTIONS(103), 1, + [70956] = 21, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1582), 1, - sym__space, - ACTIONS(1598), 1, - sym__unquoted_pattern, - ACTIONS(3261), 1, - anon_sym_LPAREN2, - ACTIONS(3659), 1, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(4900), 1, - anon_sym_DOT, - ACTIONS(4902), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4904), 1, - aux_sym__immediate_decimal_token2, - STATE(2309), 1, + ACTIONS(2760), 1, + aux_sym_expr_unary_token1, + ACTIONS(4850), 1, + anon_sym_LPAREN, + ACTIONS(4852), 1, + anon_sym_DASH2, + ACTIONS(4856), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(916), 1, + sym__expr_unary_minus, + STATE(2317), 1, sym_comment, - STATE(2547), 1, - sym__immediate_decimal, - ACTIONS(4906), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2676), 2, - sym__expr_parenthesized_immediate, + STATE(2419), 1, + sym_val_string, + STATE(2441), 1, + sym__where_predicate_lhs_path_head, + STATE(2632), 1, + sym__where_predicate_lhs, + STATE(2800), 1, + sym__binary_predicate, + STATE(2801), 1, + sym_where_predicate, + ACTIONS(1892), 2, + anon_sym_true, + anon_sym_false, + STATE(2213), 2, + sym_expr_parenthesized, sym_val_variable, - ACTIONS(1586), 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, - [70405] = 4, + STATE(2819), 2, + sym_expr_unary, + sym_val_bool, + STATE(414), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [71026] = 21, ACTIONS(3), 1, anon_sym_POUND, - STATE(2310), 1, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(201), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + sym_raw_string_begin, + ACTIONS(1586), 1, + anon_sym_DOLLAR, + ACTIONS(2760), 1, + aux_sym_expr_unary_token1, + ACTIONS(4850), 1, + anon_sym_LPAREN, + ACTIONS(4852), 1, + anon_sym_DASH2, + ACTIONS(4856), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(916), 1, + sym__expr_unary_minus, + STATE(2318), 1, + sym_comment, + STATE(2419), 1, + sym_val_string, + STATE(2441), 1, + sym__where_predicate_lhs_path_head, + STATE(2632), 1, + sym__where_predicate_lhs, + STATE(2802), 1, + sym__binary_predicate, + STATE(2803), 1, + sym_where_predicate, + ACTIONS(1892), 2, + anon_sym_true, + anon_sym_false, + STATE(2213), 2, + sym_expr_parenthesized, + sym_val_variable, + STATE(2819), 2, + sym_expr_unary, + sym_val_bool, + STATE(414), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [71096] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2319), 1, sym_comment, ACTIONS(1505), 4, anon_sym_DOT_DOT, @@ -198898,17 +199416,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [70441] = 4, + [71132] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2311), 1, + STATE(2320), 1, sym_comment, - ACTIONS(1509), 4, + ACTIONS(1458), 4, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, aux_sym__unquoted_in_record_token1, - ACTIONS(1511), 21, + ACTIONS(1460), 21, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -198930,17 +199448,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [70477] = 4, + [71168] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2312), 1, + STATE(2321), 1, sym_comment, - ACTIONS(1458), 4, + ACTIONS(1509), 4, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, aux_sym__unquoted_in_record_token1, - ACTIONS(1460), 21, + ACTIONS(1511), 21, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -198962,30 +199480,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [70513] = 10, + [71204] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern, - ACTIONS(1673), 1, - anon_sym_LPAREN2, - ACTIONS(4885), 1, - anon_sym_DOLLAR, - STATE(2313), 1, + ACTIONS(4906), 1, + anon_sym_DOT, + ACTIONS(4908), 1, + aux_sym__immediate_decimal_token5, + STATE(2322), 1, sym_comment, - STATE(2666), 1, - sym__immediate_decimal, - ACTIONS(4908), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4910), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1263), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1582), 15, - ts_builtin_sym_end, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -198997,45 +199504,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_and2, - anon_sym_xor2, - anon_sym_or2, - [70561] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2314), 1, - sym_comment, - ACTIONS(1513), 4, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - aux_sym__unquoted_in_record_token1, - ACTIONS(1515), 21, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_COMMA, - anon_sym_LF, - anon_sym_GT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - anon_sym_QMARK2, - anon_sym_BANG, - [70597] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [71244] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2315), 1, + STATE(2323), 1, sym_comment, ACTIONS(1517), 4, anon_sym_DOT_DOT, @@ -199064,10 +199546,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [70633] = 4, + [71280] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2316), 1, + STATE(2324), 1, sym_comment, ACTIONS(1521), 4, anon_sym_DOT_DOT, @@ -199096,30 +199578,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK2, anon_sym_BANG, - [70669] = 10, + [71316] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(1673), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(4885), 1, + ACTIONS(2871), 1, anon_sym_DOLLAR, - STATE(2317), 1, - sym_comment, - STATE(2680), 1, + STATE(826), 1, sym__immediate_decimal, - ACTIONS(4908), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(4910), 2, + STATE(2325), 1, + sym_comment, + ACTIONS(1596), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1341), 2, + ACTIONS(1631), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(825), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1631), 15, - ts_builtin_sym_end, + ACTIONS(1623), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199131,30 +199610,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, - [70717] = 9, + [71362] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(1659), 1, anon_sym_LPAREN2, - ACTIONS(2910), 1, + ACTIONS(4881), 1, anon_sym_DOLLAR, - STATE(807), 1, - sym__immediate_decimal, - STATE(2318), 1, + STATE(2326), 1, sym_comment, - ACTIONS(1594), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1635), 2, + STATE(2677), 1, + sym__immediate_decimal, + ACTIONS(4910), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(806), 2, + ACTIONS(4912), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1291), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1607), 16, + ACTIONS(1584), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199166,32 +199650,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [70763] = 9, + [71410] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + STATE(2327), 1, + sym_comment, + ACTIONS(1525), 4, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__unquoted_in_record_token1, + ACTIONS(1527), 21, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + anon_sym_QMARK2, + anon_sym_BANG, + [71446] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(2910), 1, + ACTIONS(2871), 1, anon_sym_DOLLAR, - STATE(841), 1, + STATE(848), 1, sym__immediate_decimal, - STATE(2319), 1, + STATE(2328), 1, sym_comment, - ACTIONS(1594), 2, + ACTIONS(1596), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1635), 2, + ACTIONS(1631), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(840), 2, + STATE(847), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1643), 16, + ACTIONS(1653), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199208,27 +199722,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [70809] = 9, + [71492] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(2910), 1, + ACTIONS(2871), 1, anon_sym_DOLLAR, - STATE(843), 1, + STATE(864), 1, sym__immediate_decimal, - STATE(2320), 1, + STATE(2329), 1, sym_comment, - ACTIONS(1594), 2, + ACTIONS(1596), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1635), 2, + ACTIONS(1631), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(842), 2, + STATE(849), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1647), 16, + ACTIONS(1667), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199245,27 +199759,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [70855] = 9, + [71538] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(2910), 1, + ACTIONS(2871), 1, anon_sym_DOLLAR, - STATE(845), 1, + STATE(869), 1, sym__immediate_decimal, - STATE(2321), 1, + STATE(2330), 1, sym_comment, - ACTIONS(1594), 2, + ACTIONS(1596), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1635), 2, + ACTIONS(1631), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(844), 2, + STATE(867), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1651), 16, + ACTIONS(1673), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199282,264 +199796,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [70901] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(2724), 1, - aux_sym_expr_unary_token1, - ACTIONS(4844), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4858), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOLLAR, - ACTIONS(4862), 1, - anon_sym_DASH2, - STATE(1279), 1, - sym__expr_unary_minus, - STATE(2322), 1, - sym_comment, - STATE(2417), 1, - sym_val_string, - STATE(2451), 1, - sym__where_predicate_lhs_path_head, - STATE(2600), 1, - sym__where_predicate_lhs, - STATE(2903), 1, - sym__binary_predicate, - STATE(2904), 1, - sym_where_predicate, - ACTIONS(2172), 2, - anon_sym_true, - anon_sym_false, - STATE(2228), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2942), 2, - sym_expr_unary, - sym_val_bool, - STATE(422), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [70971] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(2724), 1, - aux_sym_expr_unary_token1, - ACTIONS(4844), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4858), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOLLAR, - ACTIONS(4862), 1, - anon_sym_DASH2, - STATE(1279), 1, - sym__expr_unary_minus, - STATE(2323), 1, - sym_comment, - STATE(2417), 1, - sym_val_string, - STATE(2451), 1, - sym__where_predicate_lhs_path_head, - STATE(2600), 1, - sym__where_predicate_lhs, - STATE(2905), 1, - sym__binary_predicate, - STATE(2906), 1, - sym_where_predicate, - ACTIONS(2172), 2, - anon_sym_true, - anon_sym_false, - STATE(2228), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2942), 2, - sym_expr_unary, - sym_val_bool, - STATE(422), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [71041] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(2724), 1, - aux_sym_expr_unary_token1, - ACTIONS(4844), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4858), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOLLAR, - ACTIONS(4862), 1, - anon_sym_DASH2, - STATE(1279), 1, - sym__expr_unary_minus, - STATE(2324), 1, - sym_comment, - STATE(2417), 1, - sym_val_string, - STATE(2451), 1, - sym__where_predicate_lhs_path_head, - STATE(2600), 1, - sym__where_predicate_lhs, - STATE(2907), 1, - sym__binary_predicate, - STATE(2908), 1, - sym_where_predicate, - ACTIONS(2172), 2, - anon_sym_true, - anon_sym_false, - STATE(2228), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2942), 2, - sym_expr_unary, - sym_val_bool, - STATE(422), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [71111] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(2724), 1, - aux_sym_expr_unary_token1, - ACTIONS(4844), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4858), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, - anon_sym_DOLLAR, - ACTIONS(4862), 1, - anon_sym_DASH2, - STATE(1279), 1, - sym__expr_unary_minus, - STATE(2325), 1, - sym_comment, - STATE(2417), 1, - sym_val_string, - STATE(2451), 1, - sym__where_predicate_lhs_path_head, - STATE(2600), 1, - sym__where_predicate_lhs, - STATE(2914), 1, - sym__binary_predicate, - STATE(2915), 1, - sym_where_predicate, - ACTIONS(2172), 2, - anon_sym_true, - anon_sym_false, - STATE(2228), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2942), 2, - sym_expr_unary, - sym_val_bool, - STATE(422), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [71181] = 21, + [71584] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(2724), 1, - aux_sym_expr_unary_token1, - ACTIONS(4844), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4858), 1, - anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(1659), 1, + anon_sym_LPAREN2, + ACTIONS(4881), 1, anon_sym_DOLLAR, - ACTIONS(4862), 1, - anon_sym_DASH2, - STATE(1279), 1, - sym__expr_unary_minus, - STATE(2326), 1, + STATE(2331), 1, sym_comment, - STATE(2417), 1, - sym_val_string, - STATE(2451), 1, - sym__where_predicate_lhs_path_head, - STATE(2600), 1, - sym__where_predicate_lhs, - STATE(2916), 1, - sym__binary_predicate, - STATE(2917), 1, - sym_where_predicate, - ACTIONS(2172), 2, - anon_sym_true, - anon_sym_false, - STATE(2228), 2, - sym_expr_parenthesized, + STATE(2670), 1, + sym__immediate_decimal, + ACTIONS(4910), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(4912), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(1343), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(2942), 2, - sym_expr_unary, - sym_val_bool, - STATE(422), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [71251] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4912), 1, - anon_sym_DOT, - ACTIONS(4914), 1, - aux_sym__immediate_decimal_token5, - STATE(2327), 1, - sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 21, + ACTIONS(1633), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199551,29 +199831,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_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, - [71291] = 6, + [71632] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4916), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4918), 1, - aux_sym__immediate_decimal_token5, - STATE(2328), 1, + ACTIONS(1659), 1, + anon_sym_LPAREN2, + ACTIONS(1699), 1, + anon_sym_DOT, + ACTIONS(4881), 1, + anon_sym_DOLLAR, + STATE(2332), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 21, + STATE(2629), 1, + sym__immediate_decimal, + ACTIONS(1663), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(1665), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2628), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1623), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199585,75 +199869,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, 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, - [71331] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4875), 1, - anon_sym_DOT2, - STATE(2307), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2329), 1, - sym_comment, - STATE(2373), 1, - sym_path, - ACTIONS(1490), 3, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__unquoted_in_record_token1, - ACTIONS(1492), 19, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_COMMA, - anon_sym_LF, - anon_sym_GT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [71373] = 10, - ACTIONS(3), 1, + [71680] = 13, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1673), 1, + ACTIONS(1584), 1, + sym__space, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(3205), 1, anon_sym_LPAREN2, - ACTIONS(1685), 1, - anon_sym_DOT, - ACTIONS(4885), 1, + ACTIONS(3669), 1, anon_sym_DOLLAR, - STATE(2330), 1, - sym_comment, - STATE(2628), 1, - sym__immediate_decimal, - ACTIONS(1677), 2, + ACTIONS(4914), 1, + anon_sym_DOT, + ACTIONS(4916), 1, aux_sym__immediate_decimal_token1, + ACTIONS(4918), 1, aux_sym__immediate_decimal_token2, - ACTIONS(1679), 2, + STATE(2333), 1, + sym_comment, + STATE(2563), 1, + sym__immediate_decimal, + ACTIONS(4920), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2627), 2, + STATE(2652), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1607), 15, - ts_builtin_sym_end, + ACTIONS(1588), 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, + [71734] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4922), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4924), 1, + aux_sym__immediate_decimal_token5, + STATE(2334), 1, + sym_comment, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -199665,10 +199937,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [71421] = 21, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [71774] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -199679,45 +199958,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(2724), 1, + ACTIONS(2686), 1, aux_sym_expr_unary_token1, - ACTIONS(4844), 1, + ACTIONS(4856), 1, aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(4858), 1, + ACTIONS(4862), 1, anon_sym_LPAREN, - ACTIONS(4860), 1, + ACTIONS(4864), 1, anon_sym_DOLLAR, - ACTIONS(4862), 1, + ACTIONS(4866), 1, anon_sym_DASH2, - STATE(1279), 1, + STATE(1274), 1, sym__expr_unary_minus, - STATE(2331), 1, + STATE(2335), 1, sym_comment, - STATE(2417), 1, + STATE(2419), 1, sym_val_string, - STATE(2451), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2600), 1, + STATE(2622), 1, sym__where_predicate_lhs, - STATE(2919), 1, + STATE(2888), 1, sym_where_predicate, - STATE(2965), 1, + STATE(2921), 1, sym__binary_predicate, - ACTIONS(2172), 2, + ACTIONS(2399), 2, anon_sym_true, anon_sym_false, - STATE(2228), 2, + STATE(2229), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2942), 2, + STATE(2874), 2, sym_expr_unary, sym_val_bool, - STATE(422), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [71491] = 21, + [71844] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -199728,143 +200007,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2756), 1, + ACTIONS(2686), 1, aux_sym_expr_unary_token1, - ACTIONS(4838), 1, + ACTIONS(4856), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4862), 1, anon_sym_LPAREN, - ACTIONS(4840), 1, + ACTIONS(4864), 1, + anon_sym_DOLLAR, + ACTIONS(4866), 1, anon_sym_DASH2, - ACTIONS(4844), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(958), 1, + STATE(1274), 1, sym__expr_unary_minus, - STATE(2332), 1, + STATE(2336), 1, sym_comment, - STATE(2417), 1, + STATE(2419), 1, sym_val_string, - STATE(2451), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2626), 1, + STATE(2622), 1, sym__where_predicate_lhs, - STATE(2755), 1, + STATE(2880), 1, sym__binary_predicate, - STATE(2756), 1, + STATE(2956), 1, sym_where_predicate, - ACTIONS(1914), 2, + ACTIONS(2399), 2, anon_sym_true, anon_sym_false, - STATE(2223), 2, + STATE(2229), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2743), 2, + STATE(2874), 2, sym_expr_unary, sym_val_bool, - STATE(422), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [71561] = 21, + [71914] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(201), 1, - anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2756), 1, - aux_sym_expr_unary_token1, - ACTIONS(4838), 1, - anon_sym_LPAREN, - ACTIONS(4840), 1, - anon_sym_DASH2, - ACTIONS(4844), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(958), 1, - sym__expr_unary_minus, - STATE(2333), 1, + ACTIONS(4889), 1, + anon_sym_DOT2, + STATE(2311), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2337), 1, sym_comment, - STATE(2417), 1, - sym_val_string, - STATE(2451), 1, - sym__where_predicate_lhs_path_head, - STATE(2626), 1, - sym__where_predicate_lhs, - STATE(2757), 1, - sym__binary_predicate, - STATE(2758), 1, - sym_where_predicate, - ACTIONS(1914), 2, + STATE(2397), 1, + sym_path, + ACTIONS(1492), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(1494), 19, + sym_raw_string_begin, anon_sym_true, anon_sym_false, - STATE(2223), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2743), 2, - sym_expr_unary, - sym_val_bool, - STATE(422), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [71631] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(197), 1, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(199), 1, anon_sym_SQUOTE, - ACTIONS(201), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, - sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2756), 1, - aux_sym_expr_unary_token1, - ACTIONS(4838), 1, - anon_sym_LPAREN, - ACTIONS(4840), 1, - anon_sym_DASH2, - ACTIONS(4844), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(958), 1, - sym__expr_unary_minus, - STATE(2334), 1, - sym_comment, - STATE(2417), 1, - sym_val_string, - STATE(2451), 1, - sym__where_predicate_lhs_path_head, - STATE(2626), 1, - sym__where_predicate_lhs, - STATE(2759), 1, - sym__binary_predicate, - STATE(2760), 1, - sym_where_predicate, - ACTIONS(1914), 2, - anon_sym_true, - anon_sym_false, - STATE(2223), 2, - sym_expr_parenthesized, - sym_val_variable, - STATE(2743), 2, - sym_expr_unary, - sym_val_bool, - STATE(422), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [71701] = 21, + [71956] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -199875,45 +200091,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2756), 1, + ACTIONS(2686), 1, aux_sym_expr_unary_token1, - ACTIONS(4838), 1, + ACTIONS(4856), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4862), 1, anon_sym_LPAREN, - ACTIONS(4840), 1, + ACTIONS(4864), 1, + anon_sym_DOLLAR, + ACTIONS(4866), 1, anon_sym_DASH2, - ACTIONS(4844), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(958), 1, + STATE(1274), 1, sym__expr_unary_minus, - STATE(2335), 1, + STATE(2338), 1, sym_comment, - STATE(2417), 1, + STATE(2419), 1, sym_val_string, - STATE(2451), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2626), 1, + STATE(2622), 1, sym__where_predicate_lhs, - STATE(2761), 1, + STATE(2929), 1, sym__binary_predicate, - STATE(2764), 1, + STATE(2959), 1, sym_where_predicate, - ACTIONS(1914), 2, + ACTIONS(2399), 2, anon_sym_true, anon_sym_false, - STATE(2223), 2, + STATE(2229), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2743), 2, + STATE(2874), 2, sym_expr_unary, sym_val_bool, - STATE(422), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [71771] = 21, + [72026] = 21, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(197), 1, @@ -199924,103 +200140,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(2756), 1, + ACTIONS(2686), 1, aux_sym_expr_unary_token1, - ACTIONS(4838), 1, + ACTIONS(4856), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(4862), 1, anon_sym_LPAREN, - ACTIONS(4840), 1, + ACTIONS(4864), 1, + anon_sym_DOLLAR, + ACTIONS(4866), 1, anon_sym_DASH2, - ACTIONS(4844), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(958), 1, + STATE(1274), 1, sym__expr_unary_minus, - STATE(2336), 1, + STATE(2339), 1, sym_comment, - STATE(2417), 1, + STATE(2419), 1, sym_val_string, - STATE(2451), 1, + STATE(2441), 1, sym__where_predicate_lhs_path_head, - STATE(2626), 1, + STATE(2622), 1, sym__where_predicate_lhs, - STATE(2765), 1, - sym__binary_predicate, - STATE(2766), 1, + STATE(2873), 1, sym_where_predicate, - ACTIONS(1914), 2, + STATE(2905), 1, + sym__binary_predicate, + ACTIONS(2399), 2, anon_sym_true, anon_sym_false, - STATE(2223), 2, + STATE(2229), 2, sym_expr_parenthesized, sym_val_variable, - STATE(2743), 2, + STATE(2874), 2, sym_expr_unary, sym_val_bool, - STATE(422), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [71841] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4922), 1, - anon_sym_AT2, - STATE(2337), 1, - sym_comment, - STATE(2436), 1, - sym_param_completer, - ACTIONS(4924), 3, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4920), 19, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_COMMA, - anon_sym_LF, - anon_sym_GT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [71880] = 12, + [72096] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1631), 1, + ACTIONS(1584), 1, sym__space, - ACTIONS(1641), 1, + ACTIONS(1598), 1, sym__unquoted_pattern, - ACTIONS(3261), 1, + ACTIONS(3205), 1, anon_sym_LPAREN2, - ACTIONS(3659), 1, + ACTIONS(3669), 1, anon_sym_DOLLAR, ACTIONS(4926), 1, aux_sym__immediate_decimal_token1, ACTIONS(4928), 1, aux_sym__immediate_decimal_token2, - STATE(2338), 1, + STATE(2340), 1, sym_comment, - STATE(2753), 1, + STATE(2765), 1, sym__immediate_decimal, ACTIONS(4930), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3005), 2, + STATE(3038), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1633), 13, + ACTIONS(1588), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200034,14 +200217,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [71931] = 6, + [72147] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(4934), 1, anon_sym_COLON, - STATE(2339), 1, + STATE(2341), 1, sym_comment, - STATE(2421), 1, + STATE(2437), 1, sym__collection_annotation, ACTIONS(4936), 3, anon_sym_DOT_DOT, @@ -200067,20 +200250,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [71970] = 6, + [72186] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4938), 1, - anon_sym_DOT, - ACTIONS(4940), 1, + ACTIONS(4934), 1, + anon_sym_COLON, + STATE(2342), 1, + sym_comment, + STATE(2438), 1, + sym__collection_annotation, + ACTIONS(4940), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4938), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [72225] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4942), 1, + anon_sym_BANG, + STATE(2343), 1, + sym_comment, + ACTIONS(1450), 4, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_DOT2, + aux_sym__unquoted_in_record_token1, + ACTIONS(1452), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [72262] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4946), 1, + anon_sym_LT, + STATE(2344), 1, + sym_comment, + ACTIONS(4948), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4944), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [72299] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4950), 1, aux_sym__immediate_decimal_token5, - STATE(2340), 1, + STATE(2345), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(755), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 20, - ts_builtin_sym_end, + ACTIONS(757), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200092,6 +200369,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, @@ -200100,20 +200379,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [72009] = 6, - ACTIONS(3), 1, + [72336] = 12, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4942), 1, + ACTIONS(1623), 1, + sym__space, + ACTIONS(3205), 1, + anon_sym_LPAREN2, + ACTIONS(3669), 1, + anon_sym_DOLLAR, + ACTIONS(4916), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4944), 1, - aux_sym__immediate_decimal_token5, - STATE(2341), 1, + ACTIONS(4918), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(4952), 1, + anon_sym_DOT, + STATE(2346), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 20, - ts_builtin_sym_end, + STATE(2651), 1, + sym__immediate_decimal, + ACTIONS(4920), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2650), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1625), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200125,75 +200416,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [72048] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4946), 1, - anon_sym_QMARK2, - STATE(2342), 1, - sym_comment, - ACTIONS(1446), 4, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_DOT2, - aux_sym__unquoted_in_record_token1, - ACTIONS(1448), 19, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_COMMA, - anon_sym_LF, - anon_sym_GT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [72085] = 13, + anon_sym_RPAREN, + anon_sym_RBRACE, + [72387] = 13, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1598), 1, sym__unquoted_pattern, - ACTIONS(3309), 1, + ACTIONS(3169), 1, anon_sym_LPAREN2, ACTIONS(3683), 1, anon_sym_DOLLAR, - ACTIONS(4948), 1, + ACTIONS(4954), 1, anon_sym_DOT, - ACTIONS(4950), 1, + ACTIONS(4956), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4952), 1, + ACTIONS(4958), 1, aux_sym__immediate_decimal_token2, - STATE(2343), 1, + STATE(2347), 1, sym_comment, - STATE(2599), 1, + STATE(2595), 1, sym__immediate_decimal, - ACTIONS(1582), 2, + ACTIONS(1584), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4954), 2, + ACTIONS(4960), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2835), 2, + STATE(2697), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1586), 11, + ACTIONS(1588), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200205,27 +200458,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [72138] = 10, + [72440] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4964), 1, + anon_sym_AT2, + STATE(2348), 1, + sym_comment, + STATE(2432), 1, + sym_param_completer, + ACTIONS(4966), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4962), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [72479] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1756), 1, + ACTIONS(1714), 1, anon_sym_LPAREN2, - ACTIONS(1766), 1, + ACTIONS(1724), 1, sym__unquoted_pattern, - ACTIONS(4956), 1, + ACTIONS(4968), 1, anon_sym_DOT_DOT2, - ACTIONS(4960), 1, + ACTIONS(4972), 1, sym_filesize_unit, - ACTIONS(4962), 1, + ACTIONS(4974), 1, sym_duration_unit, - STATE(2344), 1, + STATE(2349), 1, sym_comment, - STATE(4726), 1, + STATE(4718), 1, sym__expr_parenthesized_immediate, - ACTIONS(4958), 2, + ACTIONS(4970), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(890), 16, + ACTIONS(908), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200242,17 +200528,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [72185] = 5, + [72526] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4914), 1, + ACTIONS(4976), 1, + anon_sym_LT, + STATE(2350), 1, + sym_comment, + ACTIONS(4948), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(4944), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [72563] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4978), 1, + anon_sym_DOT, + ACTIONS(4980), 1, aux_sym__immediate_decimal_token5, - STATE(2345), 1, + STATE(2351), 1, sym_comment, ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 21, + ACTIONS(741), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200264,8 +200585,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, @@ -200274,17 +200593,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [72222] = 5, + [72602] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4964), 1, + ACTIONS(4982), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4984), 1, aux_sym__immediate_decimal_token5, - STATE(2346), 1, + STATE(2352), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(747), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 21, + ACTIONS(749), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200296,8 +200618,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, @@ -200306,100 +200626,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [72259] = 12, + [72641] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1607), 1, + ACTIONS(1633), 1, sym__space, - ACTIONS(3261), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(3205), 1, anon_sym_LPAREN2, - ACTIONS(3659), 1, + ACTIONS(3669), 1, anon_sym_DOLLAR, - ACTIONS(4902), 1, + ACTIONS(4926), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4904), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(4966), 1, - anon_sym_DOT, - STATE(2347), 1, - sym_comment, - STATE(2675), 1, - sym__immediate_decimal, - ACTIONS(4906), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2674), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1609), 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, - [72310] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4934), 1, - anon_sym_COLON, - STATE(2348), 1, - sym_comment, - STATE(2433), 1, - sym__collection_annotation, - ACTIONS(4970), 3, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4968), 19, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_COMMA, - anon_sym_LF, - anon_sym_GT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [72349] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1673), 1, - anon_sym_LPAREN2, - ACTIONS(4885), 1, - anon_sym_DOLLAR, - STATE(1330), 1, - sym__immediate_decimal, - STATE(2349), 1, + ACTIONS(4928), 1, + aux_sym__immediate_decimal_token2, + STATE(2353), 1, sym_comment, - ACTIONS(1679), 2, + STATE(2770), 1, + sym__immediate_decimal, + ACTIONS(4930), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1710), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(1328), 2, + STATE(3096), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1607), 15, - ts_builtin_sym_end, + ACTIONS(1635), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200411,30 +200663,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_and2, - anon_sym_xor2, - anon_sym_or2, - [72394] = 9, + anon_sym_RPAREN, + anon_sym_RBRACE, + [72692] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1673), 1, + ACTIONS(1659), 1, anon_sym_LPAREN2, - ACTIONS(4885), 1, + ACTIONS(4881), 1, anon_sym_DOLLAR, - STATE(1336), 1, + STATE(1288), 1, sym__immediate_decimal, - STATE(2350), 1, + STATE(2354), 1, sym_comment, - ACTIONS(1679), 2, + ACTIONS(1665), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1710), 2, + ACTIONS(1712), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1335), 2, + STATE(1287), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1643), 15, + ACTIONS(1623), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -200450,27 +200701,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [72439] = 9, + [72737] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1673), 1, + ACTIONS(1659), 1, anon_sym_LPAREN2, - ACTIONS(4885), 1, + ACTIONS(4881), 1, anon_sym_DOLLAR, - STATE(1338), 1, + STATE(1337), 1, sym__immediate_decimal, - STATE(2351), 1, + STATE(2355), 1, sym_comment, - ACTIONS(1679), 2, + ACTIONS(1665), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1710), 2, + ACTIONS(1712), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1337), 2, + STATE(1336), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1647), 15, + ACTIONS(1653), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -200486,27 +200737,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [72484] = 9, + [72782] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1673), 1, + ACTIONS(1659), 1, anon_sym_LPAREN2, - ACTIONS(4885), 1, + ACTIONS(4881), 1, anon_sym_DOLLAR, - STATE(1340), 1, + STATE(1339), 1, sym__immediate_decimal, - STATE(2352), 1, + STATE(2356), 1, sym_comment, - ACTIONS(1679), 2, + ACTIONS(1665), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1710), 2, + ACTIONS(1712), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1339), 2, + STATE(1338), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1651), 15, + ACTIONS(1667), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -200522,32 +200773,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [72529] = 12, - ACTIONS(103), 1, + [72827] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1582), 1, - sym__space, - ACTIONS(1598), 1, - sym__unquoted_pattern, - ACTIONS(3261), 1, + ACTIONS(1659), 1, anon_sym_LPAREN2, - ACTIONS(3659), 1, + ACTIONS(4881), 1, anon_sym_DOLLAR, - ACTIONS(4926), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4928), 1, - aux_sym__immediate_decimal_token2, - STATE(2353), 1, - sym_comment, - STATE(2736), 1, + STATE(1341), 1, sym__immediate_decimal, - ACTIONS(4930), 2, + STATE(2357), 1, + sym_comment, + ACTIONS(1665), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3097), 2, + ACTIONS(1712), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1340), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1586), 13, + ACTIONS(1673), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200559,21 +200806,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, - [72580] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [72872] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4946), 1, - anon_sym_BANG, - STATE(2354), 1, + ACTIONS(4942), 1, + anon_sym_QMARK2, + STATE(2358), 1, sym_comment, - ACTIONS(1446), 4, + ACTIONS(1450), 4, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_DOT2, aux_sym__unquoted_in_record_token1, - ACTIONS(1448), 19, + ACTIONS(1452), 19, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -200593,80 +200841,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [72617] = 5, + [72909] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4974), 1, - anon_sym_LT, - STATE(2355), 1, + ACTIONS(4908), 1, + aux_sym__immediate_decimal_token5, + STATE(2359), 1, sym_comment, - ACTIONS(4976), 3, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4972), 20, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_COMMA, - anon_sym_LF, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [72654] = 5, - ACTIONS(3), 1, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 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, + [72946] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4978), 1, - anon_sym_LT, - STATE(2356), 1, + ACTIONS(4986), 1, + anon_sym_DOT, + ACTIONS(4988), 1, + aux_sym__immediate_decimal_token5, + STATE(2360), 1, sym_comment, - ACTIONS(4976), 3, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4972), 20, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_COMMA, - anon_sym_LF, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [72691] = 4, + ACTIONS(741), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(739), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [72984] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2357), 1, + STATE(2361), 1, sym_comment, - ACTIONS(1509), 3, + ACTIONS(1517), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__unquoted_in_record_token1, - ACTIONS(1511), 20, + ACTIONS(1519), 20, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -200687,33 +200935,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [72725] = 12, + [73018] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(3309), 1, + ACTIONS(1623), 1, + sym__space, + ACTIONS(3205), 1, anon_sym_LPAREN2, - ACTIONS(3683), 1, + ACTIONS(3669), 1, anon_sym_DOLLAR, - ACTIONS(4980), 1, + ACTIONS(4990), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4982), 1, + ACTIONS(4992), 1, aux_sym__immediate_decimal_token2, - STATE(2358), 1, + STATE(2362), 1, sym_comment, - STATE(2931), 1, + STATE(3036), 1, sym__immediate_decimal, - ACTIONS(1631), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4984), 2, + ACTIONS(4920), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3227), 2, + STATE(3035), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1633), 11, + ACTIONS(1625), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200725,16 +200970,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, - [72775] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [73066] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2359), 1, + STATE(2363), 1, sym_comment, - ACTIONS(4988), 3, + ACTIONS(1525), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__unquoted_in_record_token1, - ACTIONS(4986), 20, + ACTIONS(1527), 20, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -200755,10 +201002,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [72809] = 4, + [73100] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2360), 1, + STATE(2364), 1, sym_comment, ACTIONS(1521), 3, anon_sym_DOT_DOT, @@ -200785,18 +201032,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [72843] = 5, - ACTIONS(3), 1, + [73134] = 11, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1653), 1, + sym__space, + ACTIONS(3205), 1, + anon_sym_LPAREN2, + ACTIONS(3669), 1, + anon_sym_DOLLAR, ACTIONS(4990), 1, - aux_sym__immediate_decimal_token5, - STATE(2361), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4992), 1, + aux_sym__immediate_decimal_token2, + STATE(2365), 1, sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 20, - ts_builtin_sym_end, + STATE(3089), 1, + sym__immediate_decimal, + ACTIONS(4920), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3087), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1655), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200808,31 +201067,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [72879] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [73182] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - aux_sym__immediate_decimal_token5, - STATE(2362), 1, - sym_comment, - ACTIONS(741), 6, + ACTIONS(1667), 1, sym__space, + ACTIONS(3205), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(739), 15, + ACTIONS(3669), 1, + anon_sym_DOLLAR, + ACTIONS(4990), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4992), 1, + aux_sym__immediate_decimal_token2, + STATE(2366), 1, + sym_comment, + STATE(3091), 1, + sym__immediate_decimal, + ACTIONS(4920), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3090), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1669), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200846,18 +201106,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, + [73230] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1598), 1, sym__unquoted_pattern, - [72917] = 4, + ACTIONS(3169), 1, + anon_sym_LPAREN2, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + ACTIONS(4994), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4996), 1, + aux_sym__immediate_decimal_token2, + STATE(2367), 1, + sym_comment, + STATE(2917), 1, + sym__immediate_decimal, + ACTIONS(1584), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4998), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3223), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1588), 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, + [73280] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2363), 1, + STATE(2368), 1, sym_comment, - ACTIONS(1458), 3, + ACTIONS(1529), 4, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, + anon_sym_DOT2, aux_sym__unquoted_in_record_token1, - ACTIONS(1460), 20, + ACTIONS(1531), 19, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -200865,7 +201162,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_COLON, anon_sym_COMMA, anon_sym_LF, anon_sym_GT2, @@ -200878,19 +201174,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [72951] = 6, + [73314] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4996), 1, + ACTIONS(5000), 1, anon_sym_DOT, - ACTIONS(4998), 1, + ACTIONS(5002), 1, aux_sym__immediate_decimal_token5, - STATE(2364), 1, + STATE(2369), 1, sym_comment, - ACTIONS(1730), 2, + ACTIONS(1752), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1728), 19, + ACTIONS(1750), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -200910,57 +201206,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [72989] = 4, - ACTIONS(3), 1, + [73352] = 11, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2365), 1, + ACTIONS(1673), 1, + sym__space, + ACTIONS(3205), 1, + anon_sym_LPAREN2, + ACTIONS(3669), 1, + anon_sym_DOLLAR, + ACTIONS(4990), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4992), 1, + aux_sym__immediate_decimal_token2, + STATE(2370), 1, sym_comment, - ACTIONS(1513), 3, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__unquoted_in_record_token1, - ACTIONS(1515), 20, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LF, - anon_sym_GT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [73023] = 10, + STATE(3095), 1, + sym__immediate_decimal, + ACTIONS(4920), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3093), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1675), 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, + [73400] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1756), 1, + ACTIONS(1714), 1, anon_sym_LPAREN2, - ACTIONS(1830), 1, + ACTIONS(1810), 1, sym__unquoted_pattern, - ACTIONS(5000), 1, - anon_sym_DOT_DOT2, ACTIONS(5004), 1, + anon_sym_DOT_DOT2, + ACTIONS(5008), 1, sym_filesize_unit, - ACTIONS(5006), 1, + ACTIONS(5010), 1, sym_duration_unit, - STATE(2366), 1, + STATE(2371), 1, sym_comment, - STATE(4757), 1, + STATE(4754), 1, sym__expr_parenthesized_immediate, - ACTIONS(5002), 2, + ACTIONS(5006), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(890), 15, + ACTIONS(908), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -200976,16 +201279,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [73069] = 4, + [73446] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2367), 1, + STATE(2372), 1, sym_comment, - ACTIONS(5010), 3, + ACTIONS(1505), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__unquoted_in_record_token1, - ACTIONS(5008), 20, + ACTIONS(1507), 20, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -200993,10 +201296,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_COLON, anon_sym_COMMA, anon_sym_LF, anon_sym_GT2, - anon_sym_AT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -201006,17 +201309,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [73103] = 4, + [73480] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2368), 1, + STATE(2373), 1, sym_comment, - ACTIONS(1529), 4, + ACTIONS(5014), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, aux_sym__unquoted_in_record_token1, - ACTIONS(1531), 19, + ACTIONS(5012), 20, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -201024,6 +201326,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_COLON, anon_sym_COMMA, anon_sym_LF, anon_sym_GT2, @@ -201036,54 +201339,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [73137] = 12, - ACTIONS(103), 1, + [73514] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern, - ACTIONS(3309), 1, - anon_sym_LPAREN2, - ACTIONS(3683), 1, - anon_sym_DOLLAR, - ACTIONS(4980), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4982), 1, - aux_sym__immediate_decimal_token2, - STATE(2369), 1, + STATE(2374), 1, sym_comment, - STATE(2926), 1, - sym__immediate_decimal, - ACTIONS(1582), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4984), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3171), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1586), 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, - [73187] = 4, + ACTIONS(5018), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5016), 20, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [73548] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2370), 1, + STATE(2375), 1, sym_comment, - ACTIONS(5014), 3, + ACTIONS(5022), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__unquoted_in_record_token1, - ACTIONS(5012), 20, + ACTIONS(5020), 20, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -201104,16 +201399,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [73221] = 4, + [73582] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2371), 1, + STATE(2376), 1, sym_comment, - ACTIONS(5018), 3, + ACTIONS(5026), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__unquoted_in_record_token1, - ACTIONS(5016), 20, + ACTIONS(5024), 20, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -201121,10 +201416,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_COLON, anon_sym_COMMA, anon_sym_LF, anon_sym_GT2, - anon_sym_AT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -201134,15 +201429,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [73255] = 4, + [73616] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2372), 1, + STATE(2377), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(755), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 21, + ACTIONS(757), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201164,17 +201459,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [73289] = 4, + [73650] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2373), 1, + STATE(2378), 1, sym_comment, - ACTIONS(1552), 4, + ACTIONS(1458), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, aux_sym__unquoted_in_record_token1, - ACTIONS(1554), 19, + ACTIONS(1460), 20, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -201182,6 +201476,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, + anon_sym_COLON, anon_sym_COMMA, anon_sym_LF, anon_sym_GT2, @@ -201194,16 +201489,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [73323] = 4, + [73684] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2374), 1, + STATE(2379), 1, sym_comment, - ACTIONS(1517), 3, + ACTIONS(1509), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__unquoted_in_record_token1, - ACTIONS(1519), 20, + ACTIONS(1511), 20, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -201224,15 +201519,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [73357] = 4, + [73718] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2375), 1, + STATE(2380), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(789), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 21, + ACTIONS(791), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201254,53 +201549,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [73391] = 4, - ACTIONS(3), 1, + [73752] = 12, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2376), 1, - sym_comment, - ACTIONS(874), 2, - anon_sym_DOT_DOT2, + ACTIONS(1641), 1, sym__unquoted_pattern, - ACTIONS(876), 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, + ACTIONS(3169), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [73425] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5020), 1, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + ACTIONS(4994), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5022), 1, - aux_sym__immediate_decimal_token5, - STATE(2377), 1, + ACTIONS(4996), 1, + aux_sym__immediate_decimal_token2, + STATE(2381), 1, sym_comment, - ACTIONS(749), 6, + STATE(2876), 1, + sym__immediate_decimal, + ACTIONS(1633), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(747), 15, + ACTIONS(4998), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3169), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1635), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201312,23 +201587,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [73463] = 6, - ACTIONS(3), 1, + [73802] = 12, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5024), 1, + ACTIONS(3169), 1, + anon_sym_LPAREN2, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + ACTIONS(4956), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5026), 1, - aux_sym__immediate_decimal_token5, - STATE(2378), 1, + ACTIONS(4958), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5028), 1, + anon_sym_DOT, + STATE(2382), 1, sym_comment, - ACTIONS(1740), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1738), 19, + STATE(2865), 1, + sym__immediate_decimal, + ACTIONS(1623), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4960), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(2863), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1625), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201340,24 +201625,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [73501] = 4, + [73852] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2379), 1, + STATE(2383), 1, sym_comment, - ACTIONS(5030), 3, + ACTIONS(5032), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__unquoted_in_record_token1, - ACTIONS(5028), 20, + ACTIONS(5030), 20, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -201365,10 +201642,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_COLON, anon_sym_COMMA, anon_sym_LF, anon_sym_GT2, + anon_sym_AT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -201378,16 +201655,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [73535] = 4, + [73886] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2380), 1, + STATE(2384), 1, sym_comment, - ACTIONS(5034), 3, + ACTIONS(5036), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__unquoted_in_record_token1, - ACTIONS(5032), 20, + ACTIONS(5034), 20, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -201408,16 +201685,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [73569] = 4, + [73920] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2381), 1, + STATE(2385), 1, sym_comment, - ACTIONS(5038), 3, + ACTIONS(5040), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__unquoted_in_record_token1, - ACTIONS(5036), 20, + ACTIONS(5038), 20, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -201438,16 +201715,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [73603] = 4, + [73954] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2382), 1, + STATE(2386), 1, sym_comment, - ACTIONS(5042), 3, + ACTIONS(5044), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__unquoted_in_record_token1, - ACTIONS(5040), 20, + ACTIONS(5042), 20, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -201468,47 +201745,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [73637] = 4, + [73988] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2383), 1, + ACTIONS(5046), 1, + aux_sym__immediate_decimal_token5, + STATE(2387), 1, sym_comment, - ACTIONS(5046), 3, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__unquoted_in_record_token1, - ACTIONS(5044), 20, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_COMMA, - anon_sym_LF, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [73671] = 4, + ACTIONS(755), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(757), 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, + [74024] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2384), 1, + STATE(2388), 1, sym_comment, - ACTIONS(1525), 4, + ACTIONS(4948), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - anon_sym_DOT2, aux_sym__unquoted_in_record_token1, - ACTIONS(1527), 19, + ACTIONS(4944), 20, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -201519,6 +201796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_LF, anon_sym_GT2, + anon_sym_AT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -201528,58 +201806,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [73705] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1607), 1, - sym__space, - ACTIONS(3261), 1, - anon_sym_LPAREN2, - ACTIONS(3659), 1, - anon_sym_DOLLAR, - ACTIONS(5048), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5050), 1, - aux_sym__immediate_decimal_token2, - STATE(2385), 1, - sym_comment, - STATE(3078), 1, - sym__immediate_decimal, - ACTIONS(4906), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3114), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1609), 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, - [73753] = 7, + [74058] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5052), 1, - anon_sym_DOT2, - STATE(435), 1, - sym_path, - STATE(811), 1, - sym_cell_path, - STATE(2283), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2386), 1, + STATE(2389), 1, sym_comment, - ACTIONS(1882), 19, - anon_sym_if, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201592,73 +201827,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [73793] = 11, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [74092] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1643), 1, - sym__space, - ACTIONS(3261), 1, - anon_sym_LPAREN2, - ACTIONS(3659), 1, - anon_sym_DOLLAR, ACTIONS(5048), 1, aux_sym__immediate_decimal_token1, ACTIONS(5050), 1, - aux_sym__immediate_decimal_token2, - STATE(2387), 1, + aux_sym__immediate_decimal_token5, + STATE(2390), 1, sym_comment, - STATE(3049), 1, - sym__immediate_decimal, - ACTIONS(4906), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3103), 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, - [73841] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1647), 1, + ACTIONS(749), 6, sym__space, - ACTIONS(3261), 1, anon_sym_LPAREN2, - ACTIONS(3659), 1, - anon_sym_DOLLAR, - ACTIONS(5048), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5050), 1, - aux_sym__immediate_decimal_token2, - STATE(2388), 1, - sym_comment, - STATE(2986), 1, - sym__immediate_decimal, - ACTIONS(4906), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3095), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1649), 13, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(747), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201672,20 +201866,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [73889] = 7, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [74130] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5052), 1, anon_sym_DOT2, - STATE(435), 1, + STATE(446), 1, sym_path, - STATE(839), 1, + STATE(833), 1, sym_cell_path, - STATE(2283), 1, + STATE(2294), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2389), 1, + STATE(2391), 1, sym_comment, - ACTIONS(1838), 19, + ACTIONS(1876), 19, anon_sym_if, sym__newline, anon_sym_SEMI, @@ -201705,47 +201901,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [73929] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1651), 1, - sym__space, - ACTIONS(3261), 1, - anon_sym_LPAREN2, - ACTIONS(3659), 1, - anon_sym_DOLLAR, - ACTIONS(5048), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5050), 1, - aux_sym__immediate_decimal_token2, - STATE(2390), 1, - sym_comment, - STATE(3002), 1, - sym__immediate_decimal, - ACTIONS(4906), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2996), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1653), 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, - [73977] = 4, + [74170] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2391), 1, + STATE(2392), 1, sym_comment, ACTIONS(5056), 3, anon_sym_DOT_DOT, @@ -201772,48 +201931,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [74011] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2392), 1, - sym_comment, - ACTIONS(4976), 3, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__unquoted_in_record_token1, - ACTIONS(4972), 20, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_COMMA, - anon_sym_LF, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [74045] = 5, + [74204] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4940), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(5052), 1, + anon_sym_DOT2, + STATE(446), 1, + sym_path, + STATE(846), 1, + sym_cell_path, + STATE(2294), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(2393), 1, sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 20, - ts_builtin_sym_end, + ACTIONS(1868), 19, + anon_sym_if, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201825,41 +201957,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, 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, - [74081] = 12, - ACTIONS(103), 1, + [74244] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3309), 1, - anon_sym_LPAREN2, - ACTIONS(3683), 1, - anon_sym_DOLLAR, - ACTIONS(4950), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4952), 1, - aux_sym__immediate_decimal_token2, ACTIONS(5058), 1, - anon_sym_DOT, + aux_sym__immediate_decimal_token1, + ACTIONS(5060), 1, + aux_sym__immediate_decimal_token5, STATE(2394), 1, sym_comment, - STATE(2834), 1, - sym__immediate_decimal, - ACTIONS(1607), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4954), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2833), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1609), 11, + ACTIONS(1740), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1738), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201871,16 +201988,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, - [74131] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [74282] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2395), 1, sym_comment, - ACTIONS(1505), 3, + ACTIONS(1533), 4, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, + anon_sym_DOT2, aux_sym__unquoted_in_record_token1, - ACTIONS(1507), 20, + ACTIONS(1535), 19, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -201888,7 +202014,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, aux_sym_cmd_identifier_token5, - anon_sym_COLON, anon_sym_COMMA, anon_sym_LF, anon_sym_GT2, @@ -201901,16 +202026,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [74165] = 4, + [74316] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2396), 1, sym_comment, - ACTIONS(5062), 3, + ACTIONS(5064), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__unquoted_in_record_token1, - ACTIONS(5060), 19, + ACTIONS(5062), 20, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -201921,6 +202046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_LF, anon_sym_GT2, + anon_sym_AT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -201930,16 +202056,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [74198] = 4, + [74350] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2397), 1, sym_comment, - ACTIONS(5066), 3, + ACTIONS(1513), 4, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, + anon_sym_DOT2, aux_sym__unquoted_in_record_token1, - ACTIONS(5064), 19, + ACTIONS(1515), 19, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -201959,17 +202086,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [74231] = 5, + [74384] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5068), 1, + ACTIONS(4980), 1, aux_sym__immediate_decimal_token5, STATE(2398), 1, sym_comment, - ACTIONS(1808), 2, + ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1806), 19, + ACTIONS(741), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -201981,32 +202109,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74266] = 6, - ACTIONS(103), 1, + sym_filesize_unit, + sym_duration_unit, + [74420] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5070), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5072), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(5066), 1, + anon_sym_QMARK2, + ACTIONS(5068), 1, + anon_sym_BANG, + STATE(744), 1, + sym__path_suffix, STATE(2399), 1, sym_comment, - ACTIONS(749), 7, + ACTIONS(1432), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1434), 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(747), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202018,18 +202144,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [74303] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [74459] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2400), 1, sym_comment, - ACTIONS(5076), 3, + ACTIONS(5072), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__unquoted_in_record_token1, - ACTIONS(5074), 19, + ACTIONS(5070), 19, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -202049,52 +202178,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [74336] = 4, - ACTIONS(3), 1, + [74492] = 11, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(3169), 1, + anon_sym_LPAREN2, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + ACTIONS(5074), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5076), 1, + aux_sym__immediate_decimal_token2, STATE(2401), 1, sym_comment, - ACTIONS(1572), 3, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__unquoted_in_record_token1, - ACTIONS(1574), 19, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - anon_sym_COMMA, - anon_sym_LF, - anon_sym_GT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - sym_val_date, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [74369] = 8, - ACTIONS(3), 1, + STATE(3264), 1, + sym__immediate_decimal, + ACTIONS(1623), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4960), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3262), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1625), 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, + [74539] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3169), 1, + anon_sym_LPAREN2, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + ACTIONS(5074), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5076), 1, + aux_sym__immediate_decimal_token2, + STATE(2402), 1, + sym_comment, + STATE(3160), 1, + sym__immediate_decimal, + ACTIONS(1673), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4960), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3159), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1675), 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, + [74586] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(3169), 1, + anon_sym_LPAREN2, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + ACTIONS(5074), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5076), 1, + aux_sym__immediate_decimal_token2, + STATE(2403), 1, + sym_comment, + STATE(3154), 1, + sym__immediate_decimal, + ACTIONS(1667), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4960), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3150), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1669), 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, + [74633] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1657), 1, - anon_sym_DOT_DOT2, ACTIONS(5078), 1, - anon_sym_DOT2, - STATE(712), 1, - sym_path, - STATE(961), 1, - sym_cell_path, - STATE(2402), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5080), 1, + aux_sym__immediate_decimal_token5, + STATE(2404), 1, sym_comment, - STATE(2447), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1655), 17, + ACTIONS(749), 7, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(747), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202106,24 +202315,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_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [74410] = 6, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [74670] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5080), 1, - anon_sym_DOT, + ACTIONS(1444), 1, + anon_sym_DOT_DOT2, ACTIONS(5082), 1, - aux_sym__immediate_decimal_token5, - STATE(2403), 1, + anon_sym_DOT2, + STATE(434), 1, + sym_cell_path, + STATE(827), 1, + sym_path, + STATE(2405), 1, sym_comment, - ACTIONS(1730), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1728), 18, + STATE(2473), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1446), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -202139,55 +202348,56 @@ 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, - [74447] = 11, - ACTIONS(103), 1, + [74711] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3309), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_record, + ACTIONS(3317), 1, anon_sym_LPAREN2, - ACTIONS(3683), 1, + ACTIONS(3799), 1, anon_sym_DOLLAR, ACTIONS(5084), 1, - aux_sym__immediate_decimal_token1, + anon_sym_DOT, ACTIONS(5086), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5088), 1, aux_sym__immediate_decimal_token2, - STATE(2404), 1, + STATE(2406), 1, sym_comment, - STATE(3217), 1, + STATE(2682), 1, sym__immediate_decimal, - ACTIONS(1643), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4954), 2, + ACTIONS(1588), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5090), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3216), 2, + STATE(2943), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1645), 11, + ACTIONS(1584), 9, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [74494] = 4, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [74762] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2405), 1, + STATE(2407), 1, sym_comment, - ACTIONS(5090), 3, + ACTIONS(5094), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__unquoted_in_record_token1, - ACTIONS(5088), 19, + ACTIONS(5092), 19, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -202207,53 +202417,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [74527] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5092), 1, - anon_sym_QMARK2, - ACTIONS(5094), 1, - anon_sym_BANG, - STATE(2406), 1, - sym_comment, - STATE(2557), 1, - sym__path_suffix, - ACTIONS(1438), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1440), 16, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [74566] = 7, + [74795] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5096), 1, - anon_sym_QMARK2, - ACTIONS(5098), 1, - anon_sym_BANG, - STATE(754), 1, - sym__path_suffix, - STATE(2407), 1, + STATE(2408), 1, sym_comment, - ACTIONS(1438), 2, + ACTIONS(755), 2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1440), 17, + sym__unquoted_pattern, + ACTIONS(757), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -202269,17 +202441,49 @@ 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, - [74605] = 4, + sym_filesize_unit, + sym_duration_unit, + [74828] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2408), 1, + STATE(2409), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(5098), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5096), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [74861] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2410), 1, + sym_comment, + ACTIONS(789), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 20, + ACTIONS(791), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -202300,46 +202504,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [74638] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(3309), 1, - anon_sym_LPAREN2, - ACTIONS(3683), 1, - anon_sym_DOLLAR, - ACTIONS(5084), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5086), 1, - aux_sym__immediate_decimal_token2, - STATE(2409), 1, - sym_comment, - STATE(3170), 1, - sym__immediate_decimal, - ACTIONS(1607), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4954), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3169), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1609), 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, - [74685] = 4, + [74894] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2410), 1, + STATE(2411), 1, sym_comment, ACTIONS(5102), 3, anon_sym_DOT_DOT, @@ -202365,15 +202533,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [74718] = 4, + [74927] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2411), 1, + ACTIONS(1679), 1, + anon_sym_DOT_DOT2, + ACTIONS(5082), 1, + anon_sym_DOT2, + STATE(827), 1, + sym_path, + STATE(955), 1, + sym_cell_path, + STATE(2412), 1, sym_comment, - ACTIONS(874), 2, + STATE(2473), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1677), 17, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [74968] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1649), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(876), 20, + ACTIONS(5082), 1, + anon_sym_DOT2, + STATE(827), 1, + sym_path, + STATE(935), 1, + sym_cell_path, + STATE(2413), 1, + sym_comment, + STATE(2473), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1647), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -202389,15 +202597,12 @@ 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, - [74751] = 4, + [75009] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2412), 1, + STATE(2414), 1, sym_comment, ACTIONS(5106), 3, anon_sym_DOT_DOT, @@ -202423,16 +202628,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [74784] = 4, + [75042] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2413), 1, + STATE(2415), 1, sym_comment, - ACTIONS(1864), 3, + ACTIONS(2638), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__unquoted_in_record_token1, - ACTIONS(1862), 19, + ACTIONS(2636), 19, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -202452,48 +202657,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [74817] = 6, - ACTIONS(3), 1, + [75075] = 5, + ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5108), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5110), 1, aux_sym__immediate_decimal_token5, - STATE(2414), 1, + STATE(2416), 1, sym_comment, - ACTIONS(1740), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1738), 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, + ACTIONS(757), 6, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [74854] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4998), 1, - aux_sym__immediate_decimal_token5, - STATE(2415), 1, - sym_comment, - ACTIONS(1730), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1728), 19, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(755), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202507,65 +202685,90 @@ 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, - [74889] = 13, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [75110] = 11, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern_in_record, - ACTIONS(3103), 1, + ACTIONS(3169), 1, anon_sym_LPAREN2, - ACTIONS(3845), 1, + ACTIONS(3683), 1, anon_sym_DOLLAR, - ACTIONS(5112), 1, - anon_sym_DOT, - ACTIONS(5114), 1, + ACTIONS(5074), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5116), 1, + ACTIONS(5076), 1, aux_sym__immediate_decimal_token2, - STATE(2416), 1, + STATE(2417), 1, sym_comment, - STATE(2635), 1, + STATE(3147), 1, sym__immediate_decimal, - ACTIONS(1586), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5118), 2, + ACTIONS(1653), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4960), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2899), 2, + STATE(3131), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1582), 9, - anon_sym_EQ, + ACTIONS(1655), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [74940] = 7, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [75157] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5110), 1, + anon_sym_DOT, + ACTIONS(5112), 1, + aux_sym__immediate_decimal_token5, + STATE(2418), 1, + sym_comment, + ACTIONS(741), 7, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(739), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [75194] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1665), 1, + ACTIONS(1643), 1, anon_sym_QMARK2, - ACTIONS(1667), 1, + ACTIONS(1645), 1, anon_sym_BANG, - STATE(2417), 1, + STATE(2419), 1, sym_comment, - STATE(2545), 1, + STATE(2554), 1, sym__path_suffix, - ACTIONS(5122), 2, + ACTIONS(5116), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5120), 17, + ACTIONS(5114), 17, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -202583,16 +202786,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_like2, anon_sym_not_DASHlike2, anon_sym_DOT2, - [74979] = 4, - ACTIONS(3), 1, + [75233] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2418), 1, + ACTIONS(4988), 1, + aux_sym__immediate_decimal_token5, + STATE(2420), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 20, - ts_builtin_sym_end, + ACTIONS(741), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(739), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202604,24 +202812,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_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, - [75012] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [75268] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2419), 1, + STATE(2421), 1, sym_comment, - ACTIONS(5126), 3, + ACTIONS(5120), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__unquoted_in_record_token1, - ACTIONS(5124), 19, + ACTIONS(5118), 19, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -202641,16 +202845,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [75045] = 4, + [75301] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2420), 1, + ACTIONS(5002), 1, + aux_sym__immediate_decimal_token5, + STATE(2422), 1, + sym_comment, + ACTIONS(1752), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1750), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [75336] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2423), 1, sym_comment, - ACTIONS(5130), 3, + ACTIONS(5124), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__unquoted_in_record_token1, - ACTIONS(5128), 19, + ACTIONS(5122), 19, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -202670,16 +202904,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [75078] = 4, + [75369] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2421), 1, + STATE(2424), 1, sym_comment, - ACTIONS(5134), 3, + ACTIONS(1874), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__unquoted_in_record_token1, - ACTIONS(5132), 19, + ACTIONS(1872), 19, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -202699,22 +202933,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [75111] = 8, + [75402] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1432), 1, - anon_sym_DOT_DOT2, - ACTIONS(5078), 1, - anon_sym_DOT2, - STATE(434), 1, - sym_cell_path, - STATE(712), 1, - sym_path, - STATE(2422), 1, + ACTIONS(5126), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5128), 1, + aux_sym__immediate_decimal_token5, + STATE(2425), 1, sym_comment, - STATE(2447), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1434), 17, + ACTIONS(1740), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1738), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -202730,18 +202961,19 @@ 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, - [75152] = 4, + [75439] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2423), 1, + STATE(2426), 1, sym_comment, - ACTIONS(2616), 3, + ACTIONS(2519), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__unquoted_in_record_token1, - ACTIONS(2614), 19, + ACTIONS(2517), 19, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -202761,59 +202993,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [75185] = 11, - ACTIONS(103), 1, + [75472] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3309), 1, - anon_sym_LPAREN2, - ACTIONS(3683), 1, - anon_sym_DOLLAR, - ACTIONS(5084), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5086), 1, - aux_sym__immediate_decimal_token2, - STATE(2424), 1, + STATE(2427), 1, sym_comment, - STATE(3219), 1, - sym__immediate_decimal, - ACTIONS(1647), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4954), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3218), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1649), 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, - [75232] = 8, + ACTIONS(5132), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5130), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [75505] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1663), 1, - anon_sym_DOT_DOT2, - ACTIONS(5078), 1, - anon_sym_DOT2, - STATE(712), 1, - sym_path, - STATE(945), 1, - sym_cell_path, - STATE(2425), 1, + STATE(2428), 1, sym_comment, - STATE(2447), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1661), 17, - ts_builtin_sym_end, + ACTIONS(5136), 3, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__unquoted_in_record_token1, + ACTIONS(5134), 19, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + anon_sym_COMMA, + anon_sym_LF, + anon_sym_GT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + sym_val_date, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [75538] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5138), 1, + aux_sym__immediate_decimal_token5, + STATE(2429), 1, + sym_comment, + ACTIONS(1818), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1816), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202825,51 +203073,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_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [75273] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5136), 1, - aux_sym__immediate_decimal_token5, - STATE(2426), 1, - sym_comment, - ACTIONS(773), 6, - sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(771), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [75308] = 4, + [75573] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2427), 1, + STATE(2430), 1, sym_comment, - ACTIONS(5140), 3, + ACTIONS(5142), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__unquoted_in_record_token1, - ACTIONS(5138), 19, + ACTIONS(5140), 19, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -202889,31 +203110,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [75341] = 11, - ACTIONS(103), 1, + [75606] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3309), 1, - anon_sym_LPAREN2, - ACTIONS(3683), 1, - anon_sym_DOLLAR, - ACTIONS(5084), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5086), 1, - aux_sym__immediate_decimal_token2, - STATE(2428), 1, + STATE(2431), 1, sym_comment, - STATE(3221), 1, - sym__immediate_decimal, - ACTIONS(1651), 2, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 20, ts_builtin_sym_end, - sym__space, - ACTIONS(4954), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3220), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1653), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -202925,46 +203131,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, - [75388] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4994), 1, - aux_sym__immediate_decimal_token5, - STATE(2429), 1, - sym_comment, - ACTIONS(741), 6, - sym__space, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(739), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [75423] = 4, + [75639] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2430), 1, + STATE(2432), 1, sym_comment, - ACTIONS(2580), 3, + ACTIONS(5146), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__unquoted_in_record_token1, - ACTIONS(2578), 19, + ACTIONS(5144), 19, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -202984,52 +203168,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [75456] = 11, - ACTIONS(103), 1, + [75672] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(890), 1, - sym__space, - ACTIONS(1756), 1, - anon_sym_LPAREN2, - ACTIONS(5142), 1, - anon_sym_DOT_DOT2, - ACTIONS(5146), 1, - sym_filesize_unit, ACTIONS(5148), 1, - sym_duration_unit, + anon_sym_QMARK2, ACTIONS(5150), 1, - sym__unquoted_pattern, - STATE(2431), 1, + anon_sym_BANG, + STATE(2433), 1, sym_comment, - STATE(4723), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5144), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(793), 13, + STATE(2519), 1, + sym__path_suffix, + ACTIONS(1432), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1434), 16, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - [75503] = 4, + 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, + [75711] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2432), 1, + STATE(2434), 1, sym_comment, - ACTIONS(1850), 3, + ACTIONS(1846), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__unquoted_in_record_token1, - ACTIONS(1848), 19, + ACTIONS(1844), 19, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -203049,16 +203229,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [75536] = 4, + [75744] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2433), 1, + STATE(2435), 1, sym_comment, - ACTIONS(5154), 3, + ACTIONS(1572), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__unquoted_in_record_token1, - ACTIONS(5152), 19, + ACTIONS(1574), 19, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -203078,24 +203258,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [75569] = 6, - ACTIONS(103), 1, + [75777] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5156), 1, + ACTIONS(5152), 1, anon_sym_DOT, - ACTIONS(5158), 1, + ACTIONS(5154), 1, aux_sym__immediate_decimal_token5, - STATE(2434), 1, + STATE(2436), 1, sym_comment, - ACTIONS(741), 7, + ACTIONS(1752), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1750), 18, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(739), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203107,18 +203283,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [75606] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [75814] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2435), 1, + STATE(2437), 1, sym_comment, - ACTIONS(5162), 3, + ACTIONS(5158), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__unquoted_in_record_token1, - ACTIONS(5160), 19, + ACTIONS(5156), 19, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -203138,16 +203318,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [75639] = 4, + [75847] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2436), 1, + STATE(2438), 1, sym_comment, - ACTIONS(5166), 3, + ACTIONS(5162), 3, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__unquoted_in_record_token1, - ACTIONS(5164), 19, + ACTIONS(5160), 19, sym_raw_string_begin, anon_sym_true, anon_sym_false, @@ -203167,227 +203347,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_BQUOTE, - [75672] = 6, - ACTIONS(3), 1, + [75880] = 11, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1494), 1, + ACTIONS(908), 1, + sym__space, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + ACTIONS(5164), 1, anon_sym_DOT_DOT2, ACTIONS(5168), 1, - anon_sym_DOT2, - STATE(712), 1, - sym_path, - STATE(2437), 2, - sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1496), 17, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [75708] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5082), 1, - aux_sym__immediate_decimal_token5, - STATE(2438), 1, - sym_comment, - ACTIONS(1730), 2, - anon_sym_DOT_DOT2, + sym_filesize_unit, + ACTIONS(5170), 1, + sym_duration_unit, + ACTIONS(5172), 1, sym__unquoted_pattern, - ACTIONS(1728), 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_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [75742] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5171), 1, - aux_sym__immediate_decimal_token5, STATE(2439), 1, sym_comment, - ACTIONS(1808), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1806), 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_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [75776] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3103), 1, - anon_sym_LPAREN2, - ACTIONS(3845), 1, - anon_sym_DOLLAR, - ACTIONS(5114), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5116), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5173), 1, - anon_sym_DOT, - STATE(2440), 1, - sym_comment, - STATE(2892), 1, - sym__immediate_decimal, - ACTIONS(1609), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5118), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2891), 2, + STATE(4710), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1607), 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, - [75824] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5175), 1, - anon_sym_DOT, - ACTIONS(5177), 1, - aux_sym__immediate_decimal_token5, - STATE(2441), 1, - sym_comment, - ACTIONS(739), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(741), 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, - [75860] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5179), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5181), 1, - aux_sym__immediate_decimal_token5, - STATE(2442), 1, - sym_comment, - ACTIONS(747), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(749), 13, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [75896] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2443), 1, - sym_comment, - ACTIONS(1740), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1738), 19, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, + ACTIONS(5166), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [75928] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2444), 1, - sym_comment, - ACTIONS(1808), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1806), 19, + ACTIONS(866), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203401,21 +203383,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, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [75960] = 4, + [75927] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2445), 1, + STATE(2440), 1, sym_comment, - ACTIONS(1846), 2, + ACTIONS(1740), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1844), 19, + ACTIONS(1738), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203435,88 +203411,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [75992] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1756), 1, - anon_sym_LPAREN2, - ACTIONS(5183), 1, - anon_sym_DOT_DOT2, - ACTIONS(5187), 1, - sym_filesize_unit, - ACTIONS(5189), 1, - sym_duration_unit, - ACTIONS(5191), 1, - sym__unquoted_pattern, - STATE(2446), 1, - sym_comment, - STATE(4760), 1, - sym__expr_parenthesized_immediate, - ACTIONS(890), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5185), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(793), 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, - [76038] = 7, + [75959] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1490), 1, - anon_sym_DOT_DOT2, - ACTIONS(5078), 1, + ACTIONS(1842), 1, anon_sym_DOT2, - STATE(712), 1, + STATE(446), 1, sym_path, - STATE(2437), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2447), 1, + STATE(2441), 1, sym_comment, - ACTIONS(1492), 17, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [76076] = 5, + STATE(2444), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(5176), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5174), 16, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + [75997] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5158), 1, - aux_sym__immediate_decimal_token5, - STATE(2448), 1, + STATE(2442), 1, sym_comment, - ACTIONS(741), 7, - ts_builtin_sym_end, + ACTIONS(791), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(739), 13, + ACTIONS(789), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203528,56 +203466,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, sym__unquoted_pattern, - [76110] = 8, - ACTIONS(103), 1, + [76029] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5193), 1, + ACTIONS(1496), 1, + anon_sym_DOT_DOT2, + ACTIONS(5178), 1, anon_sym_DOT2, - STATE(2449), 1, - sym_comment, - STATE(2504), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2607), 1, + STATE(827), 1, sym_path, - STATE(2687), 1, - sym_cell_path, - ACTIONS(1434), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1432), 14, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [76150] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5195), 1, - aux_sym__immediate_decimal_token5, - STATE(2450), 1, - sym_comment, - ACTIONS(773), 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(771), 13, + STATE(2443), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1498), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203589,23 +203495,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [76184] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [76065] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1842), 1, anon_sym_DOT2, - STATE(435), 1, + STATE(431), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(446), 1, sym_path, - STATE(2451), 1, + STATE(2444), 1, sym_comment, - STATE(2463), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(5199), 2, + ACTIONS(5183), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5197), 16, + ACTIONS(5181), 16, anon_sym_in, anon_sym_not_DASHin2, anon_sym_has2, @@ -203622,22 +203531,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE2, anon_sym_like2, anon_sym_not_DASHlike2, - [76222] = 7, + [76103] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5201), 1, - anon_sym_QMARK2, - ACTIONS(5203), 1, - anon_sym_BANG, - STATE(2452), 1, + ACTIONS(5112), 1, + aux_sym__immediate_decimal_token5, + STATE(2445), 1, sym_comment, - STATE(2619), 1, - sym__path_suffix, - ACTIONS(1440), 3, + ACTIONS(741), 7, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1438), 15, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(739), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203649,25 +203558,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT2, - [76260] = 7, + sym__unquoted_pattern, + [76137] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1956), 1, - anon_sym_LPAREN2, - ACTIONS(1962), 1, - sym__unquoted_pattern, - ACTIONS(5205), 1, - anon_sym_DOT_DOT2, - STATE(2453), 1, + STATE(2446), 1, sym_comment, - ACTIONS(5207), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1952), 16, + ACTIONS(1818), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1816), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203684,24 +203585,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [76298] = 8, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [76169] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5193), 1, + ACTIONS(5185), 1, anon_sym_DOT2, - STATE(2454), 1, + STATE(2447), 1, sym_comment, - STATE(2504), 1, + STATE(2501), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2607), 1, + STATE(2603), 1, sym_path, - STATE(2683), 1, + STATE(2676), 1, sym_cell_path, - ACTIONS(1655), 3, + ACTIONS(1446), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1657), 14, + ACTIONS(1444), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203716,33 +203620,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [76338] = 12, + [76209] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern_in_record, - ACTIONS(3103), 1, + STATE(2448), 1, + sym_comment, + ACTIONS(1856), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1854), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, - ACTIONS(3845), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [76241] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2449), 1, + sym_comment, + ACTIONS(1505), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1507), 19, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [76273] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3317), 1, + anon_sym_LPAREN2, + ACTIONS(3799), 1, anon_sym_DOLLAR, - ACTIONS(5209), 1, + ACTIONS(5086), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5211), 1, + ACTIONS(5088), 1, aux_sym__immediate_decimal_token2, - STATE(2455), 1, + ACTIONS(5187), 1, + anon_sym_DOT, + STATE(2450), 1, sym_comment, - STATE(3061), 1, + STATE(2937), 1, sym__immediate_decimal, - ACTIONS(1586), 2, + ACTIONS(1625), 2, sym_identifier, anon_sym_DASH2, - ACTIONS(5213), 2, + ACTIONS(5090), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3291), 2, + STATE(2935), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1582), 9, + ACTIONS(1623), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -203752,33 +203712,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [76386] = 12, + [76321] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5189), 1, + aux_sym__immediate_decimal_token5, + STATE(2451), 1, + sym_comment, + ACTIONS(757), 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(755), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [76355] = 12, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1641), 1, sym__unquoted_pattern_in_record, - ACTIONS(3103), 1, + ACTIONS(3317), 1, anon_sym_LPAREN2, - ACTIONS(3845), 1, + ACTIONS(3799), 1, anon_sym_DOLLAR, - ACTIONS(5209), 1, + ACTIONS(5191), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5211), 1, + ACTIONS(5193), 1, aux_sym__immediate_decimal_token2, - STATE(2456), 1, + STATE(2452), 1, sym_comment, - STATE(3083), 1, + STATE(3016), 1, sym__immediate_decimal, - ACTIONS(1633), 2, + ACTIONS(1635), 2, sym_identifier, anon_sym_DASH2, - ACTIONS(5213), 2, + ACTIONS(5195), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3343), 2, + STATE(3281), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1631), 9, + ACTIONS(1633), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -203788,21 +203777,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [76434] = 6, + [76403] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5215), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5217), 1, - aux_sym__immediate_decimal_token5, - STATE(2457), 1, + ACTIONS(5185), 1, + anon_sym_DOT2, + STATE(2453), 1, sym_comment, - ACTIONS(1738), 4, + STATE(2501), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2603), 1, + sym_path, + STATE(2668), 1, + sym_cell_path, + ACTIONS(1677), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1740), 15, + ACTIONS(1679), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203817,25 +203809,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [76470] = 8, + [76443] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5193), 1, - anon_sym_DOT2, - STATE(2458), 1, + STATE(2454), 1, sym_comment, - STATE(2504), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2607), 1, - sym_path, - STATE(2646), 1, - sym_cell_path, - ACTIONS(1661), 3, + ACTIONS(749), 6, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1663), 14, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(747), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203850,15 +203836,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [76510] = 4, + sym__unquoted_pattern, + [76475] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2459), 1, + STATE(2455), 1, sym_comment, - ACTIONS(1505), 2, + ACTIONS(1458), 2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1507), 19, + ACTIONS(1460), 19, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -203878,19 +203865,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [76542] = 4, + [76507] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5197), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5199), 1, + aux_sym__immediate_decimal_token5, + STATE(2456), 1, + sym_comment, + ACTIONS(747), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(749), 13, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [76543] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5201), 1, + anon_sym_DOT, + ACTIONS(5203), 1, + aux_sym__immediate_decimal_token5, + STATE(2457), 1, + sym_comment, + ACTIONS(739), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(741), 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, + [76579] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_record, + ACTIONS(3317), 1, + anon_sym_LPAREN2, + ACTIONS(3799), 1, + anon_sym_DOLLAR, + ACTIONS(5191), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5193), 1, + aux_sym__immediate_decimal_token2, + STATE(2458), 1, + sym_comment, + STATE(3013), 1, + sym__immediate_decimal, + ACTIONS(1588), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5195), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3269), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1584), 9, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [76627] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2460), 1, + STATE(2459), 1, sym_comment, - ACTIONS(749), 6, + ACTIONS(757), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(747), 15, + ACTIONS(755), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -203906,15 +203989,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [76574] = 4, + [76659] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2461), 1, + STATE(2460), 1, sym_comment, - ACTIONS(1509), 2, + ACTIONS(1517), 2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1511), 19, + ACTIONS(1519), 19, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -203934,15 +204017,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [76606] = 4, + [76691] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2462), 1, + STATE(2461), 1, sym_comment, - ACTIONS(1458), 2, + ACTIONS(1521), 2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1460), 19, + ACTIONS(1523), 19, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -203962,50 +204045,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [76638] = 7, - ACTIONS(3), 1, + [76723] = 11, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_DOT2, - STATE(423), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(435), 1, - sym_path, - STATE(2463), 1, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + ACTIONS(5205), 1, + anon_sym_DOT_DOT2, + ACTIONS(5209), 1, + sym_filesize_unit, + ACTIONS(5211), 1, + sym_duration_unit, + ACTIONS(5213), 1, + sym__unquoted_pattern, + STATE(2462), 1, sym_comment, - ACTIONS(5221), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5219), 16, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - [76676] = 4, + STATE(4785), 1, + sym__expr_parenthesized_immediate, + ACTIONS(908), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5207), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(866), 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, + [76769] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2464), 1, + ACTIONS(5215), 1, + anon_sym_DOT, + ACTIONS(5217), 1, + aux_sym__immediate_decimal_token5, + STATE(2463), 1, sym_comment, - ACTIONS(773), 6, + ACTIONS(1750), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(771), 15, + ACTIONS(1752), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204021,16 +204110,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [76708] = 4, - ACTIONS(3), 1, + [76805] = 8, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2465), 1, - sym_comment, - ACTIONS(1513), 2, - anon_sym_DOT_DOT2, + ACTIONS(5185), 1, anon_sym_DOT2, - ACTIONS(1515), 19, - ts_builtin_sym_end, + STATE(2464), 1, + sym_comment, + STATE(2501), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2603), 1, + sym_path, + STATE(2638), 1, + sym_cell_path, + ACTIONS(1647), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1649), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204042,22 +204139,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [76740] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [76845] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2466), 1, + ACTIONS(5154), 1, + aux_sym__immediate_decimal_token5, + STATE(2465), 1, sym_comment, - ACTIONS(1517), 2, + ACTIONS(1752), 2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1519), 19, + sym__unquoted_pattern, + ACTIONS(1750), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -204073,19 +204168,18 @@ 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, - anon_sym_QMARK2, - anon_sym_BANG, - [76772] = 4, + [76879] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2467), 1, + STATE(2466), 1, sym_comment, - ACTIONS(1521), 2, + ACTIONS(1525), 2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1523), 19, + ACTIONS(1527), 19, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -204105,19 +204199,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [76804] = 4, + [76911] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(2468), 1, + ACTIONS(5219), 1, + anon_sym_QMARK2, + ACTIONS(5221), 1, + anon_sym_BANG, + STATE(2467), 1, sym_comment, - ACTIONS(876), 6, + STATE(2579), 1, + sym__path_suffix, + ACTIONS(1434), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(874), 15, + ACTIONS(1432), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204132,21 +204229,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [76836] = 7, + anon_sym_DOT2, + [76949] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5052), 1, anon_sym_DOT2, - STATE(435), 1, + STATE(446), 1, sym_path, - STATE(942), 1, + STATE(937), 1, sym_cell_path, - STATE(2283), 1, + STATE(2294), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2469), 1, + STATE(2468), 1, sym_comment, - ACTIONS(1854), 17, + ACTIONS(1838), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204164,20 +204261,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [76874] = 7, + [76987] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5052), 1, anon_sym_DOT2, - STATE(435), 1, + STATE(446), 1, sym_path, - STATE(938), 1, + STATE(942), 1, sym_cell_path, - STATE(2283), 1, + STATE(2294), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2470), 1, + STATE(2469), 1, sym_comment, - ACTIONS(1886), 17, + ACTIONS(1848), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204195,20 +204292,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [76912] = 7, + [77025] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5052), 1, anon_sym_DOT2, - STATE(435), 1, + STATE(446), 1, sym_path, - STATE(927), 1, + STATE(956), 1, sym_cell_path, - STATE(2283), 1, + STATE(2294), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2471), 1, + STATE(2470), 1, sym_comment, - ACTIONS(1862), 17, + ACTIONS(1872), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204226,20 +204323,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [76950] = 7, + [77063] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern, + ACTIONS(5223), 1, + anon_sym_DOT_DOT2, + STATE(2471), 1, + sym_comment, + ACTIONS(5225), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2011), 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, + [77101] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5052), 1, anon_sym_DOT2, - STATE(435), 1, + STATE(446), 1, sym_path, - STATE(937), 1, + STATE(897), 1, sym_cell_path, - STATE(2283), 1, + STATE(2294), 1, aux_sym__where_predicate_lhs_repeat1, STATE(2472), 1, sym_comment, - ACTIONS(1848), 17, + ACTIONS(1844), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204257,21 +204385,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [76988] = 6, - ACTIONS(103), 1, + [77139] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5223), 1, - anon_sym_DOT, - ACTIONS(5225), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(1492), 1, + anon_sym_DOT_DOT2, + ACTIONS(5082), 1, + anon_sym_DOT2, + STATE(827), 1, + sym_path, + STATE(2443), 1, + aux_sym__where_predicate_lhs_repeat1, STATE(2473), 1, sym_comment, - ACTIONS(1728), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1730), 15, + ACTIONS(1494), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204283,25 +204411,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, - sym__unquoted_pattern, - [77024] = 7, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [77177] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern, - ACTIONS(1946), 1, - anon_sym_LPAREN2, ACTIONS(5227), 1, - anon_sym_DOT_DOT2, + aux_sym__immediate_decimal_token5, STATE(2474), 1, sym_comment, - ACTIONS(5229), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1942), 16, + ACTIONS(1818), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1816), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204313,21 +204439,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, - [77062] = 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [77211] = 6, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(5229), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5231), 1, + aux_sym__immediate_decimal_token5, STATE(2475), 1, sym_comment, - ACTIONS(1511), 3, + ACTIONS(1738), 4, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1509), 17, + ACTIONS(1740), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204342,21 +204474,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [77093] = 6, + sym__unquoted_pattern, + [77247] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1740), 1, + ACTIONS(1598), 1, sym__unquoted_pattern, - ACTIONS(5231), 1, - aux_sym__immediate_decimal_token1, + ACTIONS(2005), 1, + anon_sym_LPAREN2, ACTIONS(5233), 1, - aux_sym__immediate_decimal_token5, + anon_sym_DOT_DOT2, STATE(2476), 1, sym_comment, - ACTIONS(1738), 17, + ACTIONS(5235), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2001), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204373,26 +204506,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [77128] = 8, - ACTIONS(103), 1, + [77285] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5235), 1, - anon_sym_DOT2, STATE(2477), 1, sym_comment, - STATE(2554), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2659), 1, - sym_path, - STATE(2705), 1, - sym_cell_path, - ACTIONS(1434), 4, + ACTIONS(1509), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1511), 19, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1432), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204404,79 +204527,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [77167] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5177), 1, - aux_sym__immediate_decimal_token5, - STATE(2478), 1, - sym_comment, - ACTIONS(739), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(741), 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, - [77200] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5237), 1, - anon_sym_LPAREN2, - ACTIONS(5239), 1, - anon_sym_DOT_DOT2, - ACTIONS(5243), 1, - sym_filesize_unit, - ACTIONS(5245), 1, - sym_duration_unit, - ACTIONS(5247), 1, - sym__unquoted_pattern_in_record, - STATE(2479), 1, - sym_comment, - STATE(4761), 1, - sym__expr_parenthesized_immediate, - ACTIONS(793), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5241), 2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(890), 10, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [77245] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + [77317] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2480), 1, + ACTIONS(5237), 1, + anon_sym_DOT2, + STATE(2603), 1, + sym_path, + STATE(2478), 2, sym_comment, - ACTIONS(1515), 3, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1498), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1513), 17, + ACTIONS(1496), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204491,21 +204563,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [77276] = 6, - ACTIONS(3), 1, + [77352] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1730), 1, - sym__unquoted_pattern, - ACTIONS(5249), 1, - anon_sym_DOT, - ACTIONS(5251), 1, + ACTIONS(5240), 1, aux_sym__immediate_decimal_token5, - STATE(2481), 1, + STATE(2479), 1, sym_comment, - ACTIONS(1728), 17, + ACTIONS(1816), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1818), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204519,21 +204589,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [77311] = 5, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [77385] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2126), 1, + ACTIONS(2156), 1, anon_sym_BANG, - STATE(2482), 1, + STATE(2480), 1, sym_comment, - ACTIONS(1446), 2, + ACTIONS(1450), 2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1448), 17, + ACTIONS(1452), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -204551,16 +204619,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [77344] = 4, + [77418] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2483), 1, + STATE(2481), 1, sym_comment, - ACTIONS(1519), 3, + ACTIONS(1460), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1517), 17, + ACTIONS(1458), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204578,31 +204646,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [77375] = 11, + [77449] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3103), 1, + ACTIONS(3317), 1, anon_sym_LPAREN2, - ACTIONS(3845), 1, + ACTIONS(3799), 1, anon_sym_DOLLAR, - ACTIONS(5253), 1, + ACTIONS(5242), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5255), 1, + ACTIONS(5244), 1, aux_sym__immediate_decimal_token2, - STATE(2484), 1, + STATE(2482), 1, sym_comment, - STATE(3375), 1, + STATE(3280), 1, sym__immediate_decimal, - ACTIONS(1609), 2, + ACTIONS(1675), 2, sym_identifier, anon_sym_DASH2, - ACTIONS(5118), 2, + ACTIONS(5090), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3350), 2, + STATE(3279), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1607), 9, + ACTIONS(1673), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -204612,74 +204680,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [77420] = 5, - ACTIONS(103), 1, + [77494] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5225), 1, - aux_sym__immediate_decimal_token5, - STATE(2485), 1, - sym_comment, - ACTIONS(1728), 4, - sym__space, + ACTIONS(2015), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1730), 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, + ACTIONS(2021), 1, sym__unquoted_pattern, - [77453] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2486), 1, - sym_comment, - ACTIONS(1523), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1521), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5246), 1, anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [77484] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5257), 1, - aux_sym__immediate_decimal_token5, - STATE(2487), 1, + STATE(2483), 1, sym_comment, - ACTIONS(1806), 4, - sym__space, - anon_sym_LPAREN2, + ACTIONS(5248), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1808), 15, + ACTIONS(2011), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204691,58 +204707,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [77517] = 9, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [77531] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(890), 1, - sym__space, - ACTIONS(4135), 1, - anon_sym_DOT_DOT2, - ACTIONS(5146), 1, - sym_filesize_unit, - ACTIONS(5148), 1, - sym_duration_unit, - ACTIONS(5150), 1, - sym__unquoted_pattern, - STATE(2488), 1, + ACTIONS(3317), 1, + anon_sym_LPAREN2, + ACTIONS(3799), 1, + anon_sym_DOLLAR, + ACTIONS(5242), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5244), 1, + aux_sym__immediate_decimal_token2, + STATE(2484), 1, sym_comment, - ACTIONS(4137), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(793), 13, + STATE(3390), 1, + sym__immediate_decimal, + ACTIONS(1625), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5090), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3382), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1623), 9, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [77558] = 6, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [77576] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5259), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5261), 1, - aux_sym__immediate_decimal_token5, - STATE(2489), 1, + STATE(2485), 1, sym_comment, - ACTIONS(1738), 5, + ACTIONS(749), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1740), 13, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(747), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204756,74 +204771,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [77593] = 4, + [77607] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2490), 1, - sym_comment, - ACTIONS(1740), 2, - anon_sym_DOT_DOT2, + ACTIONS(1752), 1, sym__unquoted_pattern, - ACTIONS(1738), 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_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [77624] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5235), 1, - anon_sym_DOT2, - STATE(2491), 1, - sym_comment, - STATE(2554), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2659), 1, - sym_path, - STATE(2722), 1, - sym_cell_path, - ACTIONS(1655), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1657), 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, - [77663] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2492), 1, + ACTIONS(5250), 1, + anon_sym_DOT, + ACTIONS(5252), 1, + aux_sym__immediate_decimal_token5, + STATE(2486), 1, sym_comment, - ACTIONS(1808), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1806), 18, - ts_builtin_sym_end, + ACTIONS(1750), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204835,54 +204794,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_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [77694] = 5, + [77642] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5263), 1, - aux_sym__immediate_decimal_token5, - STATE(2493), 1, + ACTIONS(5254), 1, + anon_sym_QMARK2, + STATE(2487), 1, sym_comment, - ACTIONS(771), 6, - sym_identifier, + ACTIONS(1450), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(773), 13, + anon_sym_DOT2, + ACTIONS(1452), 16, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [77727] = 4, + [77675] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2494), 1, + STATE(2488), 1, sym_comment, - ACTIONS(749), 7, - ts_builtin_sym_end, + ACTIONS(1519), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(747), 13, + ACTIONS(1517), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204894,25 +204849,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_DOT_DOT2, - sym__unquoted_pattern, - [77758] = 7, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [77706] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5265), 1, + ACTIONS(5256), 1, anon_sym_QMARK2, - ACTIONS(5267), 1, + ACTIONS(5258), 1, anon_sym_BANG, - STATE(2495), 1, + STATE(2489), 1, sym_comment, - STATE(2640), 1, + STATE(2661), 1, sym__path_suffix, - ACTIONS(1440), 4, + ACTIONS(1434), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1438), 13, + ACTIONS(1432), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204926,16 +204885,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [77795] = 4, + [77743] = 9, ACTIONS(103), 1, anon_sym_POUND, - STATE(2496), 1, - sym_comment, - ACTIONS(1460), 3, + ACTIONS(908), 1, sym__space, + ACTIONS(4119), 1, + anon_sym_DOT_DOT2, + ACTIONS(5168), 1, + sym_filesize_unit, + ACTIONS(5170), 1, + sym_duration_unit, + ACTIONS(5172), 1, + sym__unquoted_pattern, + STATE(2490), 1, + sym_comment, + ACTIONS(4121), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1458), 17, + ACTIONS(866), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204949,16 +204917,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [77826] = 4, + [77784] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3317), 1, + anon_sym_LPAREN2, + ACTIONS(3799), 1, + anon_sym_DOLLAR, + ACTIONS(5242), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5244), 1, + aux_sym__immediate_decimal_token2, + STATE(2491), 1, + sym_comment, + STATE(3401), 1, + sym__immediate_decimal, + ACTIONS(1655), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(5090), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3400), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1653), 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, + [77829] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2497), 1, + STATE(2492), 1, sym_comment, - ACTIONS(773), 7, + ACTIONS(757), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, @@ -204966,7 +204964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(771), 13, + ACTIONS(755), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -204980,25 +204978,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [77857] = 8, + [77860] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5235), 1, - anon_sym_DOT2, - STATE(2498), 1, + STATE(2493), 1, sym_comment, - STATE(2554), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2659), 1, - sym_path, - STATE(2815), 1, - sym_cell_path, - ACTIONS(1661), 4, - ts_builtin_sym_end, + ACTIONS(1523), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1663), 12, + ACTIONS(1521), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205010,93 +204999,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - [77896] = 4, - ACTIONS(103), 1, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [77891] = 11, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2499), 1, - sym_comment, - ACTIONS(876), 7, - ts_builtin_sym_end, - sym__space, + ACTIONS(5260), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(5262), 1, + anon_sym_DOT_DOT2, + ACTIONS(5266), 1, sym_filesize_unit, + ACTIONS(5268), 1, sym_duration_unit, - ACTIONS(874), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [77927] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3103), 1, - anon_sym_LPAREN2, - ACTIONS(3845), 1, - anon_sym_DOLLAR, - ACTIONS(5253), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5255), 1, - aux_sym__immediate_decimal_token2, - STATE(2500), 1, + ACTIONS(5270), 1, + sym__unquoted_pattern_in_record, + STATE(2494), 1, sym_comment, - STATE(3400), 1, - sym__immediate_decimal, - ACTIONS(1645), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(5118), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3376), 2, + STATE(4703), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1643), 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, - [77972] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3103), 1, - anon_sym_LPAREN2, - ACTIONS(3845), 1, - anon_sym_DOLLAR, - ACTIONS(5253), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5255), 1, - aux_sym__immediate_decimal_token2, - STATE(2501), 1, - sym_comment, - STATE(3348), 1, - sym__immediate_decimal, - ACTIONS(1649), 2, + ACTIONS(866), 2, sym_identifier, anon_sym_DASH2, - ACTIONS(5118), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3277), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1647), 9, + ACTIONS(5264), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(908), 10, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -205104,86 +205036,59 @@ 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, - [78017] = 11, + [77936] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3103), 1, + ACTIONS(3317), 1, anon_sym_LPAREN2, - ACTIONS(3845), 1, + ACTIONS(3799), 1, anon_sym_DOLLAR, - ACTIONS(5253), 1, + ACTIONS(5242), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5255), 1, + ACTIONS(5244), 1, aux_sym__immediate_decimal_token2, - STATE(2502), 1, + STATE(2495), 1, sym_comment, - STATE(3362), 1, + STATE(3278), 1, sym__immediate_decimal, - ACTIONS(1653), 2, + ACTIONS(1669), 2, sym_identifier, anon_sym_DASH2, - ACTIONS(5118), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3359), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1651), 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, - [78062] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5269), 1, - anon_sym_QMARK2, - STATE(2503), 1, - sym_comment, - ACTIONS(1446), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1448), 16, + ACTIONS(5090), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3277), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1667), 9, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [78095] = 7, + [77981] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5193), 1, - anon_sym_DOT2, - STATE(2504), 1, + ACTIONS(5272), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5274), 1, + aux_sym__immediate_decimal_token5, + STATE(2496), 1, sym_comment, - STATE(2507), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2607), 1, - sym_path, - ACTIONS(1492), 3, + ACTIONS(1738), 5, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1490), 14, + ACTIONS(1740), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205195,25 +205100,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, - [78132] = 6, + sym__unquoted_pattern, + [78016] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5271), 1, - anon_sym_DOT, - ACTIONS(5273), 1, - aux_sym__immediate_decimal_token5, - STATE(2505), 1, + STATE(2497), 1, sym_comment, - ACTIONS(1728), 5, + ACTIONS(791), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1730), 13, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(789), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205227,51 +205129,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [78167] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern, - ACTIONS(1946), 1, - anon_sym_LPAREN2, - ACTIONS(5275), 1, - anon_sym_DOT_DOT2, - STATE(2506), 1, - sym_comment, - ACTIONS(5277), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1942), 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, - [78204] = 6, + [78047] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5279), 1, - anon_sym_DOT2, - STATE(2607), 1, - sym_path, - STATE(2507), 2, + STATE(2498), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1496), 3, + ACTIONS(1511), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1494), 14, + ACTIONS(1509), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205286,10 +205153,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [78239] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [78078] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2508), 1, + STATE(2499), 1, sym_comment, ACTIONS(1507), 3, sym__space, @@ -205313,46 +205183,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [78270] = 7, + [78109] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1956), 1, - anon_sym_LPAREN2, - ACTIONS(1962), 1, - sym__unquoted_pattern, - ACTIONS(5282), 1, - anon_sym_DOT_DOT2, - STATE(2509), 1, + ACTIONS(5276), 1, + aux_sym__immediate_decimal_token5, + STATE(2500), 1, sym_comment, - ACTIONS(5284), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1952), 15, - ts_builtin_sym_end, + ACTIONS(755), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(757), 13, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [78307] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [78142] = 7, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2510), 1, + ACTIONS(5185), 1, + anon_sym_DOT2, + STATE(2478), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2501), 1, sym_comment, - ACTIONS(1846), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1844), 18, - ts_builtin_sym_end, + STATE(2603), 1, + sym_path, + ACTIONS(1494), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1492), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205364,54 +205238,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, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [78338] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5269), 1, - anon_sym_BANG, - STATE(2511), 1, - sym_comment, - ACTIONS(1446), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1448), 16, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [78371] = 5, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [78179] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5286), 1, + ACTIONS(5278), 1, + anon_sym_DOT, + ACTIONS(5280), 1, aux_sym__immediate_decimal_token5, - STATE(2512), 1, + STATE(2502), 1, sym_comment, - ACTIONS(1806), 5, + ACTIONS(1750), 5, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1808), 13, + ACTIONS(1752), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205425,25 +205270,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [78403] = 8, + [78214] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5288), 1, - anon_sym_DOT2, - STATE(2513), 1, + ACTIONS(5203), 1, + aux_sym__immediate_decimal_token5, + STATE(2503), 1, sym_comment, - STATE(2552), 1, - sym_path, - STATE(2613), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2893), 1, - sym_cell_path, - ACTIONS(1657), 2, + ACTIONS(739), 6, + sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1655), 13, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(741), 13, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -205453,23 +205295,28 @@ 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, - [78441] = 7, - ACTIONS(3), 1, + [78247] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5290), 1, + ACTIONS(5282), 1, anon_sym_DOT2, - STATE(712), 1, + STATE(2504), 1, + sym_comment, + STATE(2522), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2663), 1, sym_path, - STATE(1267), 1, + STATE(2772), 1, sym_cell_path, - STATE(2447), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2514), 1, - sym_comment, - ACTIONS(1862), 15, + ACTIONS(1677), 4, ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1679), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205481,23 +205328,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, - [78477] = 7, + anon_sym_DOT_DOT2, + [78286] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5290), 1, - anon_sym_DOT2, - STATE(712), 1, - sym_path, - STATE(1268), 1, - sym_cell_path, - STATE(2447), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2515), 1, + STATE(2505), 1, sym_comment, - ACTIONS(1882), 15, + ACTIONS(1740), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1738), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -205513,20 +205353,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [78513] = 7, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [78317] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5290), 1, - anon_sym_DOT2, - STATE(712), 1, - sym_path, - STATE(1321), 1, - sym_cell_path, - STATE(2447), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2516), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + ACTIONS(5284), 1, + anon_sym_DOT_DOT2, + STATE(2506), 1, sym_comment, - ACTIONS(1848), 15, + ACTIONS(5286), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2001), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -205542,57 +205386,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [78549] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(203), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(205), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1774), 1, - anon_sym_LPAREN, - ACTIONS(1786), 1, - anon_sym_DQUOTE, - ACTIONS(1788), 1, - anon_sym_SQUOTE, - ACTIONS(1790), 1, - anon_sym_BQUOTE, - ACTIONS(1792), 1, - sym_raw_string_begin, - ACTIONS(5292), 1, - anon_sym_DOLLAR, - ACTIONS(5294), 1, - sym__unquoted_naive, - STATE(847), 1, - sym__inter_single_quotes, - STATE(848), 1, - sym__inter_double_quotes, - STATE(2517), 1, - sym_comment, - STATE(2243), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3178), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [78601] = 7, + [78354] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5290), 1, - anon_sym_DOT2, - STATE(712), 1, - sym_path, - STATE(1344), 1, - sym_cell_path, - STATE(2447), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2518), 1, + STATE(2507), 1, sym_comment, - ACTIONS(1838), 15, + ACTIONS(1818), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1816), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -205608,69 +205410,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [78637] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2519), 1, - sym_comment, - ACTIONS(771), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(773), 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, - [78667] = 4, + [78385] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2520), 1, + STATE(2508), 1, sym_comment, - ACTIONS(1529), 3, - anon_sym_DASH2, + ACTIONS(1856), 2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1531), 16, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [78697] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2521), 1, - sym_comment, - ACTIONS(1515), 4, + sym__unquoted_pattern, + ACTIONS(1854), 18, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1513), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205682,21 +205434,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, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [78727] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [78416] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2522), 1, + ACTIONS(5282), 1, + anon_sym_DOT2, + STATE(2509), 1, sym_comment, - ACTIONS(1519), 4, + STATE(2522), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2663), 1, + sym_path, + STATE(2807), 1, + sym_cell_path, + ACTIONS(1647), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1517), 15, + ACTIONS(1649), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205709,20 +205471,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [78757] = 4, - ACTIONS(103), 1, + [78455] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2523), 1, + ACTIONS(1740), 1, + sym__unquoted_pattern, + ACTIONS(5288), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5290), 1, + aux_sym__immediate_decimal_token5, + STATE(2510), 1, sym_comment, - ACTIONS(1523), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1521), 15, + ACTIONS(1738), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205734,22 +205494,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, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [78787] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [78490] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5296), 1, - anon_sym_QMARK2, - STATE(2524), 1, + ACTIONS(5282), 1, + anon_sym_DOT2, + STATE(2511), 1, sym_comment, - ACTIONS(1448), 3, + STATE(2522), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2663), 1, + sym_path, + STATE(2750), 1, + sym_cell_path, + ACTIONS(1446), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1446), 15, + ACTIONS(1444), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205761,73 +205530,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT2, - [78819] = 4, + [78529] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2525), 1, + ACTIONS(5254), 1, + anon_sym_BANG, + STATE(2512), 1, sym_comment, - ACTIONS(874), 6, - sym_identifier, + ACTIONS(1450), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - sym__unquoted_pattern_in_record, - ACTIONS(876), 13, + anon_sym_DOT2, + ACTIONS(1452), 16, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [78849] = 5, - ACTIONS(3), 1, + [78562] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1730), 1, - sym__unquoted_pattern, - ACTIONS(5251), 1, + ACTIONS(5217), 1, aux_sym__immediate_decimal_token5, - STATE(2526), 1, + STATE(2513), 1, sym_comment, - ACTIONS(1728), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + ACTIONS(1750), 4, + sym__space, anon_sym_LPAREN2, - [78881] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1808), 1, - sym__unquoted_pattern, - ACTIONS(5298), 1, - aux_sym__immediate_decimal_token5, - STATE(2527), 1, - sym_comment, - ACTIONS(1806), 17, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1752), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205841,22 +205585,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, - [78913] = 5, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [78595] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5296), 1, - anon_sym_BANG, - STATE(2528), 1, + STATE(2514), 1, sym_comment, - ACTIONS(1448), 3, + ACTIONS(1527), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1446), 15, + ACTIONS(1525), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205871,20 +205611,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, anon_sym_DOT2, - [78945] = 6, + [78626] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1730), 1, + ACTIONS(1818), 1, sym__unquoted_pattern, - ACTIONS(5300), 1, - anon_sym_DOT, - ACTIONS(5302), 1, + ACTIONS(5292), 1, aux_sym__immediate_decimal_token5, - STATE(2529), 1, + STATE(2515), 1, sym_comment, - ACTIONS(1728), 16, - ts_builtin_sym_end, + ACTIONS(1816), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205896,49 +205635,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, - [78979] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5304), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5306), 1, - aux_sym__immediate_decimal_token5, - STATE(2530), 1, - sym_comment, - ACTIONS(1740), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1738), 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, - [79013] = 5, - ACTIONS(3), 1, + [78658] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5310), 1, - anon_sym_DOT_DOT2, - STATE(2531), 1, + STATE(2516), 1, sym_comment, - ACTIONS(5312), 2, + ACTIONS(1511), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5308), 16, + ACTIONS(1509), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205950,22 +205663,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, - [79045] = 5, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [78688] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5310), 1, - anon_sym_DOT_DOT2, - STATE(2532), 1, + ACTIONS(1752), 1, + sym__unquoted_pattern, + ACTIONS(5294), 1, + anon_sym_DOT, + ACTIONS(5296), 1, + aux_sym__immediate_decimal_token5, + STATE(2517), 1, sym_comment, - ACTIONS(5312), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5308), 16, + ACTIONS(1750), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -205977,22 +205691,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, - [79077] = 5, + anon_sym_LPAREN2, + [78722] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5310), 1, + ACTIONS(5300), 1, anon_sym_DOT_DOT2, - STATE(2533), 1, + STATE(2518), 1, sym_comment, - ACTIONS(5312), 2, + ACTIONS(5302), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5308), 16, + ACTIONS(5298), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206009,141 +205722,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [79109] = 8, + [78754] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5288), 1, - anon_sym_DOT2, - STATE(2534), 1, + STATE(2519), 1, sym_comment, - STATE(2552), 1, - sym_path, - STATE(2613), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2887), 1, - sym_cell_path, - ACTIONS(1432), 2, + ACTIONS(1529), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1434), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [79147] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5273), 1, - aux_sym__immediate_decimal_token5, - STATE(2535), 1, - sym_comment, - ACTIONS(1728), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1730), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [79179] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5288), 1, anon_sym_DOT2, - STATE(2536), 1, - sym_comment, - STATE(2552), 1, - sym_path, - STATE(2613), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2869), 1, - sym_cell_path, - ACTIONS(1663), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1661), 13, + ACTIONS(1531), 16, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [79217] = 15, + [78784] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(974), 1, + ACTIONS(864), 1, sym_raw_string_begin, - ACTIONS(3321), 1, + ACTIONS(3217), 1, anon_sym_DQUOTE, - ACTIONS(3323), 1, + ACTIONS(3219), 1, anon_sym_SQUOTE, - ACTIONS(3325), 1, + ACTIONS(3221), 1, anon_sym_BQUOTE, - ACTIONS(3327), 1, + ACTIONS(3223), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3329), 1, + ACTIONS(3225), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3681), 1, + ACTIONS(3667), 1, anon_sym_LPAREN, - ACTIONS(3683), 1, + ACTIONS(3669), 1, anon_sym_DOLLAR, - ACTIONS(5314), 1, + ACTIONS(5304), 1, sym__unquoted_naive, - STATE(2537), 1, + STATE(2520), 1, sym_comment, - STATE(3261), 1, + STATE(3009), 1, sym__inter_single_quotes, - STATE(3262), 1, + STATE(3012), 1, sym__inter_double_quotes, - STATE(2543), 4, + STATE(2499), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3129), 4, + STATE(3086), 4, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - [79269] = 4, + [78836] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5306), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5308), 1, + aux_sym__immediate_decimal_token5, + STATE(2521), 1, + sym_comment, + ACTIONS(1740), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1738), 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, + [78870] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(2538), 1, + ACTIONS(5282), 1, + anon_sym_DOT2, + STATE(2522), 1, sym_comment, - ACTIONS(1738), 4, + STATE(2532), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2663), 1, + sym_path, + ACTIONS(1494), 4, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1740), 15, + ACTIONS(1492), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206155,21 +205841,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, - sym__unquoted_pattern, - [79299] = 4, + [78906] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2539), 1, + STATE(2523), 1, sym_comment, - ACTIONS(1806), 4, + ACTIONS(1816), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1808), 15, + ACTIONS(1818), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206185,17 +205868,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [79329] = 4, + [78936] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(2540), 1, + ACTIONS(5310), 1, + anon_sym_QMARK2, + STATE(2524), 1, sym_comment, - ACTIONS(1844), 4, + ACTIONS(1452), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1846), 15, + ACTIONS(1450), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206210,27 +205894,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [79359] = 9, - ACTIONS(103), 1, + anon_sym_DOT2, + [78968] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4135), 1, + ACTIONS(5300), 1, anon_sym_DOT_DOT2, - ACTIONS(5187), 1, - sym_filesize_unit, - ACTIONS(5189), 1, - sym_duration_unit, - ACTIONS(5191), 1, - sym__unquoted_pattern, - STATE(2541), 1, + STATE(2525), 1, sym_comment, - ACTIONS(890), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4137), 2, + ACTIONS(5302), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(793), 11, + ACTIONS(5298), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206242,53 +205917,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, - [79399] = 14, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [79000] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1474), 1, - anon_sym_COMMA, - ACTIONS(5318), 1, - anon_sym_EQ, - ACTIONS(5320), 1, - sym__newline, - ACTIONS(5322), 1, - anon_sym_COLON, - ACTIONS(5324), 1, - anon_sym_LPAREN, - ACTIONS(5326), 1, - anon_sym_DASH2, - STATE(2542), 1, + ACTIONS(5300), 1, + anon_sym_DOT_DOT2, + STATE(2526), 1, sym_comment, - STATE(2655), 1, - aux_sym_parameter_repeat1, - STATE(2664), 1, - sym_flag_capsule, - STATE(3435), 1, - aux_sym_parameter_repeat2, - STATE(4168), 1, - aux_sym__repeat_newline, - STATE(3384), 2, - sym_param_type, - sym_param_value, - ACTIONS(5316), 7, - sym_identifier, + ACTIONS(5302), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5298), 16, + 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, - [79449] = 4, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [79032] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2543), 1, + STATE(2527), 1, sym_comment, - ACTIONS(1507), 4, - ts_builtin_sym_end, + ACTIONS(1854), 4, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1505), 15, + ACTIONS(1856), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206300,27 +205971,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [79479] = 8, + sym__unquoted_pattern, + [79062] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1598), 1, + ACTIONS(4119), 1, + anon_sym_DOT_DOT2, + ACTIONS(5209), 1, + sym_filesize_unit, + ACTIONS(5211), 1, + sym_duration_unit, + ACTIONS(5213), 1, sym__unquoted_pattern, - ACTIONS(1942), 1, + STATE(2528), 1, + sym_comment, + ACTIONS(908), 2, + ts_builtin_sym_end, sym__space, - ACTIONS(1946), 1, - anon_sym_LPAREN2, - ACTIONS(5328), 1, + ACTIONS(4121), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(866), 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, + [79102] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5312), 1, + anon_sym_DOT2, + STATE(827), 1, + sym_path, + STATE(1315), 1, + sym_cell_path, + STATE(2473), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2529), 1, + sym_comment, + ACTIONS(1868), 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, + [79138] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5300), 1, anon_sym_DOT_DOT2, - STATE(2544), 1, + STATE(2530), 1, sym_comment, - ACTIONS(5330), 2, + ACTIONS(5302), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1944), 13, + ACTIONS(1706), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206334,43 +206059,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [79517] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [79170] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2545), 1, - sym_comment, - ACTIONS(5334), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5332), 17, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, + ACTIONS(5312), 1, anon_sym_DOT2, - [79547] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2546), 1, + STATE(827), 1, + sym_path, + STATE(1266), 1, + sym_cell_path, + STATE(2473), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2531), 1, sym_comment, - ACTIONS(1511), 4, + ACTIONS(1838), 15, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1509), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206382,27 +206088,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, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [79577] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [79206] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1952), 1, - sym__space, - ACTIONS(1956), 1, - anon_sym_LPAREN2, - ACTIONS(1962), 1, - sym__unquoted_pattern, - ACTIONS(5336), 1, - anon_sym_DOT_DOT2, - STATE(2547), 1, + ACTIONS(5314), 1, + anon_sym_DOT2, + STATE(2663), 1, + sym_path, + STATE(2532), 2, sym_comment, - ACTIONS(5338), 2, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1498), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1954), 13, + ACTIONS(1496), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206414,57 +206118,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + [79240] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2533), 1, + sym_comment, + ACTIONS(1533), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1535), 16, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - [79615] = 15, + 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, + [79270] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(91), 1, + ACTIONS(203), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(205), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1778), 1, + anon_sym_LPAREN, + ACTIONS(1790), 1, anon_sym_DQUOTE, - ACTIONS(93), 1, + ACTIONS(1792), 1, anon_sym_SQUOTE, - ACTIONS(95), 1, + ACTIONS(1794), 1, anon_sym_BQUOTE, - ACTIONS(97), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(105), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(5340), 1, - anon_sym_LPAREN, - ACTIONS(5342), 1, + ACTIONS(5317), 1, anon_sym_DOLLAR, - ACTIONS(5344), 1, + ACTIONS(5319), 1, sym__unquoted_naive, - STATE(1274), 1, - sym__inter_double_quotes, - STATE(1297), 1, + STATE(876), 1, sym__inter_single_quotes, - STATE(2548), 1, + STATE(878), 1, + sym__inter_double_quotes, + STATE(2534), 1, sym_comment, - STATE(490), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - STATE(3322), 4, + STATE(3164), 4, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - [79667] = 6, + [79322] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1740), 1, - sym__unquoted_pattern, - ACTIONS(5346), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5348), 1, + ACTIONS(5321), 1, + anon_sym_DOT, + ACTIONS(5323), 1, aux_sym__immediate_decimal_token5, - STATE(2549), 1, + STATE(2535), 1, sym_comment, - ACTIONS(1738), 16, + ACTIONS(1752), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1750), 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, + [79356] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2536), 1, + sym_comment, + ACTIONS(1507), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1505), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [79386] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5312), 1, + anon_sym_DOT2, + STATE(827), 1, + sym_path, + STATE(1310), 1, + sym_cell_path, + STATE(2473), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2537), 1, + sym_comment, + ACTIONS(1872), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -206480,22 +206265,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [79701] = 6, + [79422] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5350), 1, - anon_sym_DOT, - ACTIONS(5352), 1, - aux_sym__immediate_decimal_token5, - STATE(2550), 1, + STATE(2538), 1, sym_comment, - ACTIONS(1730), 4, + ACTIONS(755), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, sym__unquoted_pattern_in_record, - ACTIONS(1728), 13, + ACTIONS(757), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -206509,73 +206291,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [79735] = 15, - ACTIONS(3), 1, + [79452] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(870), 1, - sym_raw_string_begin, - ACTIONS(3273), 1, - anon_sym_DQUOTE, - ACTIONS(3275), 1, - anon_sym_SQUOTE, - ACTIONS(3277), 1, - anon_sym_BQUOTE, - ACTIONS(3279), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3281), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3657), 1, - anon_sym_LPAREN, - ACTIONS(3659), 1, - anon_sym_DOLLAR, - ACTIONS(5354), 1, - sym__unquoted_naive, - STATE(2551), 1, + STATE(2539), 1, sym_comment, - STATE(2983), 1, - sym__inter_single_quotes, - STATE(3101), 1, - sym__inter_double_quotes, - STATE(2508), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3081), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [79787] = 4, + ACTIONS(1527), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1525), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [79482] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2552), 1, + STATE(2540), 1, sym_comment, - ACTIONS(1552), 3, + ACTIONS(789), 6, + sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1554), 16, + sym_filesize_unit, + sym_duration_unit, + sym__unquoted_pattern_in_record, + ACTIONS(791), 13, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [79817] = 4, + [79512] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2553), 1, + STATE(2541), 1, sym_comment, ACTIONS(1460), 4, ts_builtin_sym_end, @@ -206598,23 +206369,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [79847] = 7, + [79542] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5235), 1, - anon_sym_DOT2, - STATE(2554), 1, - sym_comment, - STATE(2564), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2659), 1, - sym_path, - ACTIONS(1492), 4, - ts_builtin_sym_end, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2001), 1, sym__space, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + ACTIONS(5325), 1, + anon_sym_DOT_DOT2, + STATE(2542), 1, + sym_comment, + ACTIONS(5327), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1490), 12, + ACTIONS(2003), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206626,18 +206397,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, - [79883] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [79580] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5310), 1, - anon_sym_DOT_DOT2, - STATE(2555), 1, + ACTIONS(1752), 1, + sym__unquoted_pattern, + ACTIONS(5252), 1, + aux_sym__immediate_decimal_token5, + STATE(2543), 1, sym_comment, - ACTIONS(5312), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1689), 16, + ACTIONS(1750), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206654,20 +206425,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [79915] = 7, + anon_sym_LPAREN2, + [79612] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5290), 1, + ACTIONS(5312), 1, anon_sym_DOT2, - STATE(712), 1, + STATE(827), 1, sym_path, - STATE(1275), 1, + STATE(1312), 1, sym_cell_path, - STATE(2447), 1, + STATE(2473), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2556), 1, + STATE(2544), 1, sym_comment, - ACTIONS(1854), 15, + ACTIONS(1876), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -206683,36 +206455,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [79951] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2557), 1, - sym_comment, - ACTIONS(1525), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1527), 16, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [79981] = 4, + [79648] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2558), 1, + STATE(2545), 1, sym_comment, ACTIONS(747), 6, sym_identifier, @@ -206735,20 +206481,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [80011] = 7, + [79678] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2546), 1, + sym_comment, + ACTIONS(1519), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1517), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [79708] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5290), 1, + ACTIONS(5312), 1, anon_sym_DOT2, - STATE(712), 1, + STATE(827), 1, sym_path, - STATE(1269), 1, + STATE(1324), 1, sym_cell_path, - STATE(2447), 1, + STATE(2473), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2559), 1, + STATE(2547), 1, sym_comment, - ACTIONS(1886), 15, + ACTIONS(1848), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -206764,17 +206536,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80047] = 5, + [79744] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(93), 1, + anon_sym_SQUOTE, + ACTIONS(95), 1, + anon_sym_BQUOTE, + ACTIONS(97), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(99), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(105), 1, + sym_raw_string_begin, + ACTIONS(5329), 1, + anon_sym_LPAREN, + ACTIONS(5331), 1, + anon_sym_DOLLAR, + ACTIONS(5333), 1, + sym__unquoted_naive, + STATE(1308), 1, + sym__inter_single_quotes, + STATE(1317), 1, + sym__inter_double_quotes, + STATE(2548), 1, + sym_comment, + STATE(501), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3311), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [79796] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5356), 1, + ACTIONS(5335), 1, + anon_sym_DOT2, + STATE(2549), 1, + sym_comment, + STATE(2562), 1, + sym_path, + STATE(2570), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2889), 1, + sym_cell_path, + ACTIONS(1444), 2, + anon_sym_DASH2, anon_sym_DOT_DOT2, - STATE(2560), 1, + ACTIONS(1446), 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, + [79834] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5337), 1, + anon_sym_DOT_DOT2, + STATE(2550), 1, sym_comment, - ACTIONS(5358), 2, + ACTIONS(5339), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2098), 16, + ACTIONS(2134), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206791,17 +206630,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80079] = 5, + [79866] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5360), 1, + ACTIONS(5341), 1, anon_sym_DOT_DOT2, - STATE(2561), 1, + STATE(2551), 1, sym_comment, - ACTIONS(5362), 2, + ACTIONS(5343), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2136), 16, + ACTIONS(2066), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206818,17 +206657,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80111] = 5, + [79898] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5364), 1, + ACTIONS(5345), 1, anon_sym_DOT_DOT2, - STATE(2562), 1, + STATE(2552), 1, sym_comment, - ACTIONS(5366), 2, + ACTIONS(5347), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2144), 16, + ACTIONS(2074), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206845,17 +206684,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80143] = 5, + [79930] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5368), 1, + ACTIONS(5349), 1, anon_sym_DOT_DOT2, - STATE(2563), 1, + STATE(2553), 1, sym_comment, - ACTIONS(5370), 2, + ACTIONS(5351), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 16, + ACTIONS(2082), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206872,22 +206711,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80175] = 6, - ACTIONS(103), 1, + [79962] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5372), 1, + STATE(2554), 1, + sym_comment, + ACTIONS(5355), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5353), 17, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, anon_sym_DOT2, - STATE(2659), 1, - sym_path, - STATE(2564), 2, + [79992] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1740), 1, + sym__unquoted_pattern, + ACTIONS(5357), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5359), 1, + aux_sym__immediate_decimal_token5, + STATE(2555), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1496), 4, + ACTIONS(1738), 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, + [80026] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5280), 1, + aux_sym__immediate_decimal_token5, + STATE(2556), 1, + sym_comment, + ACTIONS(1750), 5, ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1494), 12, + ACTIONS(1752), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206900,22 +206791,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [80209] = 8, + sym__unquoted_pattern, + [80058] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5193), 1, - anon_sym_DOT2, - ACTIONS(5377), 1, + STATE(2557), 1, + sym_comment, + ACTIONS(1523), 4, + ts_builtin_sym_end, sym__space, - STATE(2504), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2565), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1521), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [80088] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5310), 1, + anon_sym_BANG, + STATE(2558), 1, sym_comment, - STATE(2607), 1, - sym_path, - STATE(3012), 1, - sym_cell_path, - ACTIONS(5375), 13, + ACTIONS(1452), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1450), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206929,39 +206843,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [80246] = 4, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [80120] = 14, ACTIONS(3), 1, anon_sym_POUND, - STATE(2566), 1, + ACTIONS(1474), 1, + anon_sym_COMMA, + ACTIONS(5363), 1, + anon_sym_EQ, + ACTIONS(5365), 1, + sym__newline, + ACTIONS(5367), 1, + anon_sym_COLON, + ACTIONS(5369), 1, + anon_sym_LPAREN, + ACTIONS(5371), 1, + anon_sym_DASH2, + STATE(2559), 1, + sym_comment, + STATE(2669), 1, + sym_flag_capsule, + STATE(2672), 1, + aux_sym_parameter_repeat1, + STATE(3436), 1, + aux_sym_parameter_repeat2, + STATE(4167), 1, + aux_sym__repeat_newline, + STATE(3319), 2, + sym_param_type, + sym_param_value, + ACTIONS(5361), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [80170] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(978), 1, + sym_raw_string_begin, + ACTIONS(3181), 1, + anon_sym_DQUOTE, + ACTIONS(3183), 1, + anon_sym_SQUOTE, + ACTIONS(3185), 1, + anon_sym_BQUOTE, + ACTIONS(3187), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3189), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3681), 1, + anon_sym_LPAREN, + ACTIONS(3683), 1, + anon_sym_DOLLAR, + ACTIONS(5373), 1, + sym__unquoted_naive, + STATE(2560), 1, + sym_comment, + STATE(3250), 1, + sym__inter_single_quotes, + STATE(3253), 1, + sym__inter_double_quotes, + STATE(2536), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3187), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [80222] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5375), 1, + aux_sym__immediate_decimal_token5, + STATE(2561), 1, + sym_comment, + ACTIONS(1816), 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, + sym__unquoted_pattern, + [80254] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2562), 1, sym_comment, ACTIONS(1513), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1515), 15, + ACTIONS(1515), 16, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [80275] = 4, - ACTIONS(3), 1, + [80284] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2327), 1, + ACTIONS(2011), 1, + sym__space, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, sym__unquoted_pattern, - STATE(2567), 1, + ACTIONS(5377), 1, + anon_sym_DOT_DOT2, + STATE(2563), 1, sym_comment, - ACTIONS(2325), 17, + ACTIONS(5379), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2013), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -206975,20 +207001,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, - anon_sym_LPAREN2, - [80304] = 5, - ACTIONS(3), 1, + [80322] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2554), 1, - anon_sym_LPAREN2, - ACTIONS(2556), 1, - sym__unquoted_pattern, - STATE(2568), 1, + STATE(2564), 1, sym_comment, - ACTIONS(1689), 16, + ACTIONS(1738), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1740), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207002,23 +207025,27 @@ 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, - [80335] = 5, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [80352] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5379), 1, - aux_sym__immediate_decimal_token5, - STATE(2569), 1, + ACTIONS(5335), 1, + anon_sym_DOT2, + STATE(2562), 1, + sym_path, + STATE(2565), 1, sym_comment, - ACTIONS(1808), 4, - sym_identifier, + STATE(2570), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2878), 1, + sym_cell_path, + ACTIONS(1649), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1806), 13, + ACTIONS(1647), 13, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -207028,19 +207055,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [80366] = 5, + [80390] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern, - ACTIONS(1946), 1, - anon_sym_LPAREN2, - STATE(2570), 1, + ACTIONS(5312), 1, + anon_sym_DOT2, + STATE(827), 1, + sym_path, + STATE(1320), 1, + sym_cell_path, + STATE(2473), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2566), 1, sym_comment, - ACTIONS(1942), 16, + ACTIONS(1844), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207052,23 +207083,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80397] = 5, + [80426] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5381), 1, - anon_sym_DOT_DOT2, - STATE(2571), 1, + ACTIONS(5335), 1, + anon_sym_DOT2, + STATE(2562), 1, + sym_path, + STATE(2567), 1, sym_comment, - ACTIONS(5383), 2, + STATE(2570), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2934), 1, + sym_cell_path, + ACTIONS(1679), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1677), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5308), 15, - ts_builtin_sym_end, + [80464] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2620), 1, + anon_sym_LPAREN2, + ACTIONS(2622), 1, + sym__unquoted_pattern, + STATE(2568), 1, + sym_comment, + ACTIONS(1706), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207080,45 +207137,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80428] = 5, + [80495] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1956), 1, - anon_sym_LPAREN2, - ACTIONS(1962), 1, - sym__unquoted_pattern, - STATE(2572), 1, + ACTIONS(5102), 1, + anon_sym_DASH2, + STATE(2569), 1, sym_comment, - ACTIONS(2574), 16, + ACTIONS(5100), 17, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [80459] = 5, + [80524] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5335), 1, + anon_sym_DOT2, + STATE(2562), 1, + sym_path, + STATE(2570), 1, + sym_comment, + STATE(2634), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1492), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1494), 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, + [80559] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1956), 1, + ACTIONS(2595), 1, anon_sym_LPAREN2, - ACTIONS(1962), 1, + ACTIONS(2597), 1, sym__unquoted_pattern, - STATE(2573), 1, + STATE(2571), 1, sym_comment, - ACTIONS(1952), 16, + ACTIONS(2591), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207135,16 +207221,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80490] = 5, + [80590] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, + ACTIONS(1856), 1, sym__unquoted_pattern, - ACTIONS(2513), 1, - anon_sym_LPAREN2, - STATE(2574), 1, + STATE(2572), 1, sym_comment, - ACTIONS(2509), 16, + ACTIONS(1854), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207161,18 +207245,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80521] = 5, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [80619] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5381), 1, - anon_sym_DOT_DOT2, - STATE(2575), 1, + STATE(2573), 1, sym_comment, - ACTIONS(5383), 2, + ACTIONS(1854), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5308), 15, - ts_builtin_sym_end, + ACTIONS(1856), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207184,47 +207269,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [80552] = 5, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [80648] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2529), 1, - anon_sym_LPAREN2, - ACTIONS(2531), 1, - sym__unquoted_pattern, - STATE(2576), 1, + ACTIONS(5072), 1, + anon_sym_DASH2, + STATE(2574), 1, sym_comment, - ACTIONS(2525), 16, + ACTIONS(5070), 17, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [80583] = 5, - ACTIONS(3), 1, + [80677] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5381), 1, - anon_sym_DOT_DOT2, - STATE(2577), 1, + ACTIONS(5185), 1, + anon_sym_DOT2, + ACTIONS(5383), 1, + sym__space, + STATE(2501), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2575), 1, sym_comment, - ACTIONS(5383), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5308), 15, - ts_builtin_sym_end, + STATE(2603), 1, + sym_path, + STATE(3049), 1, + sym_cell_path, + ACTIONS(5381), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207236,19 +207323,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, - [80614] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [80714] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1756), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2581), 1, anon_sym_LPAREN2, - STATE(2578), 1, + STATE(2576), 1, sym_comment, - STATE(4728), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5385), 16, + ACTIONS(2525), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207265,14 +207351,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80645] = 5, + [80745] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1756), 1, + ACTIONS(1714), 1, anon_sym_LPAREN2, - STATE(2579), 1, + STATE(2577), 1, sym_comment, - STATE(4728), 1, + STATE(4719), 1, sym__expr_parenthesized_immediate, ACTIONS(5385), 16, sym__newline, @@ -207291,48 +207377,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80676] = 5, + [80776] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1756), 1, - anon_sym_LPAREN2, - STATE(2580), 1, + ACTIONS(5323), 1, + aux_sym__immediate_decimal_token5, + STATE(2578), 1, sym_comment, - STATE(4728), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5385), 16, + ACTIONS(1752), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1750), 13, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [80707] = 8, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [80807] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1854), 1, - sym__space, - ACTIONS(5193), 1, - anon_sym_DOT2, - STATE(2504), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2581), 1, + STATE(2579), 1, sym_comment, - STATE(2607), 1, - sym_path, - STATE(2988), 1, - sym_cell_path, - ACTIONS(1856), 13, + ACTIONS(1531), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1529), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207346,22 +207426,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [80744] = 8, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [80836] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1886), 1, + ACTIONS(1868), 1, sym__space, - ACTIONS(5193), 1, + ACTIONS(5185), 1, anon_sym_DOT2, - STATE(2504), 1, + STATE(2501), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2582), 1, + STATE(2580), 1, sym_comment, - STATE(2607), 1, + STATE(2603), 1, sym_path, - STATE(3116), 1, + STATE(2996), 1, sym_cell_path, - ACTIONS(1889), 13, + ACTIONS(1870), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207375,42 +207457,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [80781] = 4, + [80873] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5140), 1, - anon_sym_DASH2, - STATE(2583), 1, + ACTIONS(5387), 1, + aux_sym__immediate_decimal_token5, + STATE(2581), 1, sym_comment, - ACTIONS(5138), 17, - anon_sym_EQ, + ACTIONS(1818), 4, sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1816), 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, - [80810] = 5, - ACTIONS(3), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [80904] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1808), 1, - sym__unquoted_pattern, - ACTIONS(5387), 1, - aux_sym__immediate_decimal_token5, - STATE(2584), 1, + ACTIONS(5185), 1, + anon_sym_DOT2, + ACTIONS(5391), 1, + sym__space, + STATE(2501), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2582), 1, sym_comment, - ACTIONS(1806), 16, - ts_builtin_sym_end, + STATE(2603), 1, + sym_path, + STATE(3111), 1, + sym_cell_path, + ACTIONS(5389), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207422,48 +207510,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_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [80841] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [80941] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5106), 1, - anon_sym_DASH2, - STATE(2585), 1, + ACTIONS(5185), 1, + anon_sym_DOT2, + ACTIONS(5395), 1, + sym__space, + STATE(2501), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2583), 1, sym_comment, - ACTIONS(5104), 17, - anon_sym_EQ, - sym_identifier, + STATE(2603), 1, + sym_path, + STATE(3051), 1, + sym_cell_path, + ACTIONS(5393), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - [80870] = 5, + [80978] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5389), 1, - anon_sym_QMARK2, - STATE(2586), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + ACTIONS(5397), 1, + anon_sym_DOT_DOT2, + STATE(2584), 1, sym_comment, - ACTIONS(1448), 4, + ACTIONS(2001), 2, ts_builtin_sym_end, sym__space, + ACTIONS(5399), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1446), 13, + ACTIONS(2003), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207475,18 +207570,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_DOT2, - [80901] = 5, + [81015] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2566), 1, + ACTIONS(2587), 1, anon_sym_LPAREN2, - ACTIONS(2568), 1, + ACTIONS(2589), 1, sym__unquoted_pattern, - STATE(2587), 1, + STATE(2585), 1, sym_comment, - ACTIONS(2562), 16, + ACTIONS(2583), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207503,41 +207596,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80932] = 4, + [81046] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2588), 1, - sym_comment, - ACTIONS(1517), 3, - anon_sym_DASH2, + ACTIONS(5401), 1, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1519), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + STATE(2586), 1, + sym_comment, + ACTIONS(5403), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [80961] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2570), 1, - anon_sym_LPAREN2, - ACTIONS(2572), 1, - sym__unquoted_pattern, - STATE(2589), 1, - sym_comment, - ACTIONS(994), 16, + ACTIONS(5298), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207549,29 +207619,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [80992] = 8, + [81077] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern, - ACTIONS(1946), 1, - anon_sym_LPAREN2, - ACTIONS(5391), 1, - anon_sym_DOT_DOT2, - STATE(2590), 1, + ACTIONS(5405), 1, + anon_sym_QMARK2, + STATE(2587), 1, sym_comment, - ACTIONS(1942), 2, + ACTIONS(1452), 4, ts_builtin_sym_end, sym__space, - ACTIONS(5393), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1944), 11, + ACTIONS(1450), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207583,16 +207646,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, - [81029] = 5, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [81108] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2570), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(2572), 1, + ACTIONS(2021), 1, sym__unquoted_pattern, - STATE(2591), 1, + STATE(2588), 1, sym_comment, - ACTIONS(1012), 16, + ACTIONS(2533), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207609,22 +207674,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81060] = 8, + [81139] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5193), 1, - anon_sym_DOT2, - ACTIONS(5397), 1, + ACTIONS(1872), 1, sym__space, - STATE(2504), 1, + ACTIONS(5185), 1, + anon_sym_DOT2, + STATE(2501), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2592), 1, + STATE(2589), 1, sym_comment, - STATE(2607), 1, + STATE(2603), 1, sym_path, - STATE(3004), 1, + STATE(3103), 1, sym_cell_path, - ACTIONS(5395), 13, + ACTIONS(1874), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207638,22 +207703,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [81097] = 8, + [81176] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2590), 1, + sym_comment, + ACTIONS(1505), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1507), 15, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [81205] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5193), 1, + ACTIONS(5185), 1, anon_sym_DOT2, - ACTIONS(5401), 1, + ACTIONS(5409), 1, sym__space, - STATE(2504), 1, + STATE(2501), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2593), 1, + STATE(2591), 1, sym_comment, - STATE(2607), 1, + STATE(2603), 1, sym_path, - STATE(3006), 1, + STATE(3011), 1, sym_cell_path, - ACTIONS(5399), 13, + ACTIONS(5407), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207667,22 +207757,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [81134] = 8, + [81242] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5193), 1, - anon_sym_DOT2, - ACTIONS(5405), 1, + ACTIONS(1838), 1, sym__space, - STATE(2504), 1, + ACTIONS(5185), 1, + anon_sym_DOT2, + STATE(2501), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2594), 1, + STATE(2592), 1, sym_comment, - STATE(2607), 1, + STATE(2603), 1, sym_path, - STATE(3007), 1, + STATE(3052), 1, sym_cell_path, - ACTIONS(5403), 13, + ACTIONS(1840), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207696,14 +207786,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [81171] = 4, + [81279] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5130), 1, + ACTIONS(5142), 1, anon_sym_DASH2, - STATE(2595), 1, + STATE(2593), 1, sym_comment, - ACTIONS(5128), 17, + ACTIONS(5140), 17, anon_sym_EQ, sym_identifier, sym__newline, @@ -207721,76 +207811,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [81200] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1862), 1, - sym__space, - ACTIONS(5193), 1, - anon_sym_DOT2, - STATE(2504), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2596), 1, - sym_comment, - STATE(2607), 1, - sym_path, - STATE(3048), 1, - sym_cell_path, - ACTIONS(1864), 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, - [81237] = 4, + [81308] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2597), 1, - sym_comment, - ACTIONS(1521), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1523), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_QMARK2, - anon_sym_BANG, - [81266] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1848), 1, - sym__space, - ACTIONS(5193), 1, - anon_sym_DOT2, - STATE(2504), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2598), 1, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + STATE(2594), 1, sym_comment, - STATE(2607), 1, - sym_path, - STATE(3028), 1, - sym_cell_path, - ACTIONS(1850), 13, + STATE(4719), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5385), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207804,24 +207834,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [81303] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [81339] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1956), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(1962), 1, + ACTIONS(2021), 1, sym__unquoted_pattern, - ACTIONS(5407), 1, + ACTIONS(5411), 1, anon_sym_DOT_DOT2, - STATE(2599), 1, + STATE(2595), 1, sym_comment, - ACTIONS(1952), 2, + ACTIONS(2011), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5409), 2, + ACTIONS(5413), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1954), 11, + ACTIONS(2013), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207833,71 +207866,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, - [81340] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2600), 1, - sym_comment, - ACTIONS(4792), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4794), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4796), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4790), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [81373] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5066), 1, - anon_sym_DASH2, - STATE(2601), 1, - sym_comment, - ACTIONS(5064), 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, - [81402] = 6, + [81376] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5411), 1, - anon_sym_DOT, - ACTIONS(5413), 1, - aux_sym__immediate_decimal_token5, - STATE(2602), 1, + STATE(2596), 1, sym_comment, - ACTIONS(1728), 2, + ACTIONS(1535), 3, sym__space, - anon_sym_LPAREN2, - ACTIONS(1730), 14, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1533), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207911,18 +207889,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [81435] = 5, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [81405] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1730), 1, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, sym__unquoted_pattern, - ACTIONS(5302), 1, - aux_sym__immediate_decimal_token5, - STATE(2603), 1, + STATE(2597), 1, sym_comment, - ACTIONS(1728), 16, - ts_builtin_sym_end, + ACTIONS(1018), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207934,48 +207912,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, - [81466] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2604), 1, - sym_comment, - ACTIONS(1738), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1740), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [81495] = 6, + [81436] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5415), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5417), 1, - aux_sym__immediate_decimal_token5, - STATE(2605), 1, - sym_comment, - ACTIONS(1738), 2, + ACTIONS(1848), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1740), 14, + ACTIONS(5185), 1, + anon_sym_DOT2, + STATE(2501), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2598), 1, + sym_comment, + STATE(2603), 1, + sym_path, + STATE(3045), 1, + sym_cell_path, + ACTIONS(1851), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -207989,17 +207946,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [81528] = 4, + [81473] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2606), 1, + ACTIONS(5415), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5417), 1, + aux_sym__immediate_decimal_token5, + STATE(2599), 1, sym_comment, - ACTIONS(1531), 3, + ACTIONS(1738), 2, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1529), 15, + anon_sym_LPAREN2, + ACTIONS(1740), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208013,18 +207972,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_DOT2, - [81557] = 4, + sym__unquoted_pattern, + [81506] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2607), 1, - sym_comment, - ACTIONS(1554), 3, + ACTIONS(1876), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1552), 15, + ACTIONS(5185), 1, + anon_sym_DOT2, + STATE(2501), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2600), 1, + sym_comment, + STATE(2603), 1, + sym_path, + STATE(2983), 1, + sym_cell_path, + ACTIONS(1878), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208038,16 +208002,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [81586] = 4, + [81543] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1740), 1, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, sym__unquoted_pattern, - STATE(2608), 1, + STATE(2601), 1, sym_comment, - ACTIONS(1738), 17, + ACTIONS(1004), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208064,20 +208028,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [81615] = 5, + [81574] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5389), 1, - anon_sym_BANG, - STATE(2609), 1, + STATE(2602), 1, sym_comment, - ACTIONS(1448), 4, + ACTIONS(1738), 5, ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1446), 13, + ACTIONS(1740), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208090,15 +208052,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - anon_sym_DOT2, - [81646] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1808), 1, sym__unquoted_pattern, - STATE(2610), 1, + [81603] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2603), 1, sym_comment, - ACTIONS(1806), 17, + ACTIONS(1515), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1513), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208112,26 +208076,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, - [81675] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1838), 1, - sym__space, - ACTIONS(5193), 1, + anon_sym_DOT_DOT2, anon_sym_DOT2, - STATE(2504), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2607), 1, - sym_path, - STATE(2611), 1, + [81632] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + STATE(2604), 1, sym_comment, - STATE(3111), 1, - sym_cell_path, - ACTIONS(1840), 13, + STATE(4719), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5385), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208145,10 +208101,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [81712] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [81663] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2612), 1, + STATE(2605), 1, sym_comment, ACTIONS(1458), 3, anon_sym_DASH2, @@ -208170,67 +208129,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [81741] = 7, + [81692] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5288), 1, - anon_sym_DOT2, - STATE(2552), 1, - sym_path, - STATE(2613), 1, - sym_comment, - STATE(2616), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1490), 2, - anon_sym_DASH2, + ACTIONS(5401), 1, anon_sym_DOT_DOT2, - ACTIONS(1492), 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, - [81776] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2614), 1, + STATE(2606), 1, sym_comment, - ACTIONS(1806), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, + ACTIONS(5403), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1808), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [81805] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1846), 1, - sym__unquoted_pattern, - STATE(2615), 1, - sym_comment, - ACTIONS(1844), 17, + ACTIONS(1706), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208242,80 +208152,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_LPAREN2, - [81834] = 6, + [81723] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5419), 1, - anon_sym_DOT2, - STATE(2552), 1, - sym_path, - ACTIONS(1494), 2, + ACTIONS(5120), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - STATE(2616), 2, + STATE(2607), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1496), 13, + ACTIONS(5118), 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, - [81867] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2617), 1, - sym_comment, - ACTIONS(1844), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1846), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [81896] = 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + [81752] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1882), 1, - sym__space, - ACTIONS(5193), 1, + ACTIONS(5185), 1, anon_sym_DOT2, - STATE(2504), 1, + ACTIONS(5421), 1, + sym__space, + STATE(2501), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2607), 1, + STATE(2603), 1, sym_path, - STATE(2618), 1, + STATE(2608), 1, sym_comment, - STATE(2969), 1, + STATE(3100), 1, sym_cell_path, - ACTIONS(1884), 13, + ACTIONS(5419), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208329,42 +208209,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [81933] = 4, - ACTIONS(103), 1, + [81789] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2619), 1, + STATE(2609), 1, sym_comment, - ACTIONS(1527), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1525), 15, + ACTIONS(1509), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1511), 15, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [81962] = 5, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [81818] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5381), 1, - anon_sym_DOT_DOT2, - STATE(2620), 1, + ACTIONS(1818), 1, + sym__unquoted_pattern, + ACTIONS(5423), 1, + aux_sym__immediate_decimal_token5, + STATE(2610), 1, sym_comment, - ACTIONS(5383), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1689), 15, + ACTIONS(1816), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -208380,70 +208259,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [81993] = 4, + anon_sym_LPAREN2, + [81849] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5076), 1, - anon_sym_DASH2, - STATE(2621), 1, + STATE(2611), 1, sym_comment, - ACTIONS(5074), 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, - [82022] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5090), 1, + ACTIONS(1517), 3, anon_sym_DASH2, - STATE(2622), 1, - sym_comment, - ACTIONS(5088), 17, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(1519), 15, anon_sym_EQ, sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [82051] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_QMARK2, + anon_sym_BANG, + [81878] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5352), 1, - aux_sym__immediate_decimal_token5, - STATE(2623), 1, + STATE(2612), 1, sym_comment, - ACTIONS(1730), 4, - sym_identifier, + ACTIONS(1521), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1728), 13, + anon_sym_DOT2, + ACTIONS(1523), 15, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -208453,19 +208306,20 @@ 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, - [82082] = 4, + anon_sym_QMARK2, + anon_sym_BANG, + [81907] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2624), 1, + STATE(2613), 1, sym_comment, - ACTIONS(1505), 3, + ACTIONS(1525), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(1507), 15, + ACTIONS(1527), 15, anon_sym_EQ, sym_identifier, sym__newline, @@ -208481,18 +208335,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, anon_sym_QMARK2, anon_sym_BANG, - [82111] = 5, + [81936] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5422), 1, - anon_sym_DOT_DOT2, - STATE(2625), 1, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern, + STATE(2614), 1, sym_comment, - ACTIONS(5424), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2098), 15, - ts_builtin_sym_end, + ACTIONS(2011), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208504,47 +208356,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [82142] = 6, - ACTIONS(3), 1, + [81967] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2626), 1, + STATE(2615), 1, sym_comment, - ACTIONS(4769), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(4771), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(4773), 4, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_like2, - anon_sym_not_DASHlike2, - ACTIONS(4765), 8, - anon_sym_in, - anon_sym_not_DASHin2, - anon_sym_has2, - anon_sym_not_DASHhas2, - anon_sym_starts_DASHwith2, - anon_sym_not_DASHstarts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_not_DASHends_DASHwith2, - [82175] = 5, + ACTIONS(1816), 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, + sym__unquoted_pattern, + [81996] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5426), 1, + ACTIONS(5401), 1, anon_sym_DOT_DOT2, - STATE(2627), 1, + STATE(2616), 1, sym_comment, - ACTIONS(5428), 2, + ACTIONS(5403), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2136), 15, + ACTIONS(5298), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -208560,18 +208412,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [82206] = 5, + [82027] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5430), 1, - anon_sym_DOT_DOT2, - STATE(2628), 1, + ACTIONS(1740), 1, + sym__unquoted_pattern, + STATE(2617), 1, sym_comment, - ACTIONS(5432), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2144), 15, - ts_builtin_sym_end, + ACTIONS(1738), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208583,21 +208431,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, - [82237] = 5, + anon_sym_LPAREN2, + [82056] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5434), 1, - anon_sym_DOT_DOT2, - STATE(2629), 1, + ACTIONS(2387), 1, + sym__unquoted_pattern, + STATE(2618), 1, sym_comment, - ACTIONS(5436), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 15, - ts_builtin_sym_end, + ACTIONS(2385), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208609,50 +208456,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, - [82268] = 4, + anon_sym_LPAREN2, + [82085] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2630), 1, - sym_comment, - ACTIONS(1509), 3, + ACTIONS(5124), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(1511), 15, + STATE(2619), 1, + sym_comment, + ACTIONS(5122), 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, - anon_sym_QMARK2, - anon_sym_BANG, - [82297] = 8, + anon_sym_LBRACE, + anon_sym_RBRACE, + [82114] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5193), 1, - anon_sym_DOT2, - ACTIONS(5440), 1, + ACTIONS(1844), 1, sym__space, - STATE(2504), 1, + ACTIONS(5185), 1, + anon_sym_DOT2, + STATE(2501), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2607), 1, + STATE(2603), 1, sym_path, - STATE(2631), 1, + STATE(2620), 1, sym_comment, - STATE(3013), 1, + STATE(2990), 1, sym_cell_path, - ACTIONS(5438), 13, + ACTIONS(1846), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208666,17 +208516,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [82334] = 5, - ACTIONS(3), 1, + [82151] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2554), 1, - anon_sym_LPAREN2, - ACTIONS(2556), 1, - sym__unquoted_pattern, - STATE(2632), 1, + ACTIONS(5405), 1, + anon_sym_BANG, + STATE(2621), 1, sym_comment, - ACTIONS(1689), 15, + ACTIONS(1452), 4, ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1450), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208688,21 +208540,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_and2, - anon_sym_xor2, - anon_sym_or2, - [82364] = 4, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [82182] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2633), 1, + STATE(2622), 1, sym_comment, - ACTIONS(1872), 2, + ACTIONS(4793), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4795), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4797), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4791), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [82215] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5136), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1870), 15, + STATE(2623), 1, + sym_comment, + ACTIONS(5134), 17, anon_sym_EQ, sym_identifier, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_COLON, anon_sym_LBRACK, @@ -208711,24 +208589,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [82392] = 6, - ACTIONS(103), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + [82244] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5442), 1, - anon_sym_DOT, - ACTIONS(5444), 1, - aux_sym__immediate_decimal_token5, - STATE(2634), 1, + ACTIONS(5401), 1, + anon_sym_DOT_DOT2, + STATE(2624), 1, sym_comment, - ACTIONS(1728), 3, + ACTIONS(5403), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5298), 15, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1730), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208740,81 +208617,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, - sym__unquoted_pattern, - [82424] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [82275] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1954), 1, - anon_sym_DASH2, - ACTIONS(1956), 1, - anon_sym_LPAREN2, - ACTIONS(1962), 1, - sym__unquoted_pattern_in_record, - ACTIONS(5446), 1, + ACTIONS(5425), 1, anon_sym_DOT_DOT2, - STATE(2635), 1, + STATE(2625), 1, sym_comment, - ACTIONS(5448), 2, + ACTIONS(5427), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1952), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2134), 15, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [82460] = 12, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, + [82306] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1474), 1, - anon_sym_COMMA, - ACTIONS(5318), 1, - anon_sym_EQ, - ACTIONS(5320), 1, - sym__newline, - ACTIONS(5322), 1, - anon_sym_COLON, - ACTIONS(5452), 1, - anon_sym_DASH2, - STATE(2636), 1, - sym_comment, - STATE(2697), 1, - aux_sym_parameter_repeat1, - STATE(3427), 1, - aux_sym_parameter_repeat2, - STATE(4168), 1, - aux_sym__repeat_newline, - STATE(3384), 2, - sym_param_type, - sym_param_value, - ACTIONS(5450), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [82504] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4320), 1, - sym__space, - ACTIONS(5454), 1, - sym_long_flag_identifier, - ACTIONS(5456), 1, - anon_sym_EQ2, - STATE(2637), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + STATE(2626), 1, sym_comment, - STATE(3045), 1, - sym__flag_equals_value, - ACTIONS(4318), 13, + ACTIONS(2001), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208828,17 +208669,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [82538] = 5, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [82337] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5458), 1, - aux_sym__immediate_decimal_token5, - STATE(2638), 1, + ACTIONS(1818), 1, + sym__unquoted_pattern, + STATE(2627), 1, sym_comment, - ACTIONS(1806), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1808), 14, + ACTIONS(1816), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208852,24 +208693,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [82568] = 8, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [82366] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5235), 1, - anon_sym_DOT2, - STATE(2554), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2639), 1, + ACTIONS(5429), 1, + anon_sym_DOT_DOT2, + STATE(2628), 1, sym_comment, - STATE(2659), 1, - sym_path, - STATE(3162), 1, - sym_cell_path, - ACTIONS(1886), 2, + ACTIONS(5431), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2066), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1889), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208881,17 +208720,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, - [82604] = 4, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [82397] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2640), 1, + ACTIONS(5433), 1, + anon_sym_DOT_DOT2, + STATE(2629), 1, sym_comment, - ACTIONS(1527), 4, - ts_builtin_sym_end, - sym__space, + ACTIONS(5435), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1525), 13, + ACTIONS(2074), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208903,16 +208746,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [82632] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [82428] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1846), 1, - sym__unquoted_pattern, - STATE(2641), 1, + ACTIONS(5437), 1, + anon_sym_DOT_DOT2, + STATE(2630), 1, sym_comment, - ACTIONS(1844), 16, + ACTIONS(5439), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2082), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -208928,17 +208775,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [82660] = 4, + [82459] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2642), 1, + ACTIONS(5441), 1, + anon_sym_DOT, + ACTIONS(5443), 1, + aux_sym__immediate_decimal_token5, + STATE(2631), 1, sym_comment, - ACTIONS(1870), 3, + ACTIONS(1750), 2, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1872), 14, + anon_sym_LPAREN2, + ACTIONS(1752), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208952,21 +208801,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [82688] = 6, - ACTIONS(103), 1, + sym__unquoted_pattern, + [82492] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5460), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5462), 1, + STATE(2632), 1, + sym_comment, + ACTIONS(4751), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(4753), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(4755), 4, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_like2, + anon_sym_not_DASHlike2, + ACTIONS(4747), 8, + anon_sym_in, + anon_sym_not_DASHin2, + anon_sym_has2, + anon_sym_not_DASHhas2, + anon_sym_starts_DASHwith2, + anon_sym_not_DASHstarts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_not_DASHends_DASHwith2, + [82525] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1752), 1, + sym__unquoted_pattern, + ACTIONS(5296), 1, aux_sym__immediate_decimal_token5, - STATE(2643), 1, + STATE(2633), 1, sym_comment, - ACTIONS(1738), 3, + ACTIONS(1750), 16, ts_builtin_sym_end, - sym__space, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_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, - ACTIONS(1740), 12, + [82556] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5445), 1, + anon_sym_DOT2, + STATE(2562), 1, + sym_path, + ACTIONS(1496), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + STATE(2634), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1498), 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, + [82589] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2635), 1, + sym_comment, + ACTIONS(1858), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1860), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -208978,24 +208903,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, - sym__unquoted_pattern, - [82720] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [82617] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5235), 1, + ACTIONS(5282), 1, anon_sym_DOT2, - STATE(2554), 1, + STATE(2522), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2644), 1, + STATE(2636), 1, sym_comment, - STATE(2659), 1, + STATE(2663), 1, sym_path, - STATE(3179), 1, + STATE(3138), 1, sym_cell_path, - ACTIONS(1882), 2, + ACTIONS(5383), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1884), 11, + ACTIONS(5381), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209007,14 +208934,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, - [82756] = 5, + [82653] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1756), 1, + ACTIONS(1714), 1, anon_sym_LPAREN2, - STATE(2645), 1, + STATE(2637), 1, sym_comment, - STATE(4759), 1, + STATE(4755), 1, sym__expr_parenthesized_immediate, ACTIONS(5385), 15, ts_builtin_sym_end, @@ -209032,16 +208959,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [82786] = 4, + [82683] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2646), 1, + STATE(2638), 1, sym_comment, - ACTIONS(1800), 3, + ACTIONS(1768), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1802), 14, + ACTIONS(1770), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209056,23 +208983,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [82814] = 8, + [82711] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5235), 1, - anon_sym_DOT2, - STATE(2554), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2647), 1, + ACTIONS(5448), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5450), 1, + aux_sym__immediate_decimal_token5, + STATE(2639), 1, sym_comment, - STATE(2659), 1, - sym_path, - STATE(3184), 1, - sym_cell_path, - ACTIONS(1848), 2, + ACTIONS(1738), 3, ts_builtin_sym_end, sym__space, - ACTIONS(1850), 11, + anon_sym_LPAREN2, + ACTIONS(1740), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209084,16 +209008,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [82850] = 5, + sym__unquoted_pattern, + [82743] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2570), 1, - anon_sym_LPAREN2, - ACTIONS(2572), 1, + ACTIONS(1856), 1, sym__unquoted_pattern, - STATE(2648), 1, + STATE(2640), 1, sym_comment, - ACTIONS(994), 15, + ACTIONS(1854), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -209109,65 +209032,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [82880] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2649), 1, - sym_comment, - ACTIONS(1868), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1866), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [82908] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2650), 1, - sym_comment, - ACTIONS(1846), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1844), 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, - [82936] = 5, - ACTIONS(3), 1, + [82771] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern, - ACTIONS(1946), 1, - anon_sym_LPAREN2, - STATE(2651), 1, + ACTIONS(5454), 1, + sym__space, + ACTIONS(5456), 1, + anon_sym_EQ2, + ACTIONS(5458), 1, + sym_short_flag_identifier, + STATE(2641), 1, sym_comment, - ACTIONS(1942), 15, - ts_builtin_sym_end, + STATE(3048), 1, + sym__flag_equals_value, + ACTIONS(5452), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209179,20 +209058,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [82966] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [82805] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2652), 1, - sym_comment, - ACTIONS(1531), 4, - ts_builtin_sym_end, + ACTIONS(5462), 1, sym__space, + ACTIONS(5464), 1, + anon_sym_DOT_DOT2, + STATE(2642), 1, + sym_comment, + ACTIONS(5466), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1529), 13, + ACTIONS(5460), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209204,43 +209084,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, - anon_sym_DOT2, - [82994] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [82837] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2570), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(2572), 1, + ACTIONS(2021), 1, sym__unquoted_pattern, - STATE(2653), 1, - sym_comment, - ACTIONS(1012), 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, - [83024] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1756), 1, - anon_sym_LPAREN2, - STATE(2654), 1, + STATE(2643), 1, sym_comment, - STATE(4759), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5385), 15, + ACTIONS(2533), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -209256,31 +209111,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83054] = 12, + [82867] = 12, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1474), 1, anon_sym_COMMA, - ACTIONS(5318), 1, + ACTIONS(5363), 1, anon_sym_EQ, - ACTIONS(5320), 1, + ACTIONS(5365), 1, sym__newline, - ACTIONS(5322), 1, + ACTIONS(5367), 1, anon_sym_COLON, - ACTIONS(5466), 1, + ACTIONS(5470), 1, anon_sym_DASH2, - STATE(2655), 1, + STATE(2644), 1, sym_comment, - STATE(2697), 1, + STATE(2690), 1, aux_sym_parameter_repeat1, - STATE(3429), 1, + STATE(3435), 1, aux_sym_parameter_repeat2, - STATE(4168), 1, + STATE(4167), 1, aux_sym__repeat_newline, - STATE(3384), 2, + STATE(3319), 2, sym_param_type, sym_param_value, - ACTIONS(5464), 7, + ACTIONS(5468), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -209288,18 +209143,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [83098] = 8, + [82911] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5235), 1, + ACTIONS(5282), 1, anon_sym_DOT2, - STATE(2554), 1, + STATE(2522), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2656), 1, + STATE(2645), 1, sym_comment, - STATE(2659), 1, + STATE(2663), 1, sym_path, - STATE(3198), 1, + STATE(3179), 1, + sym_cell_path, + ACTIONS(5391), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5389), 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, + [82947] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5282), 1, + anon_sym_DOT2, + STATE(2522), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2646), 1, + sym_comment, + STATE(2663), 1, + sym_path, + STATE(3190), 1, sym_cell_path, ACTIONS(1838), 2, ts_builtin_sym_end, @@ -209316,16 +209199,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, - [83134] = 5, + [82983] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1756), 1, + ACTIONS(2595), 1, anon_sym_LPAREN2, - STATE(2657), 1, + ACTIONS(2597), 1, + sym__unquoted_pattern, + STATE(2647), 1, sym_comment, - STATE(4759), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5385), 15, + ACTIONS(2591), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -209341,23 +209224,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83164] = 8, + [83013] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5235), 1, - anon_sym_DOT2, - STATE(2554), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2658), 1, + ACTIONS(1706), 1, + sym__space, + ACTIONS(5464), 1, + anon_sym_DOT_DOT2, + STATE(2648), 1, sym_comment, - STATE(2659), 1, - sym_path, - STATE(3136), 1, - sym_cell_path, - ACTIONS(5397), 2, - ts_builtin_sym_end, + ACTIONS(5466), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1604), 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, + [83045] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2134), 1, sym__space, - ACTIONS(5395), 11, + ACTIONS(5472), 1, + anon_sym_DOT_DOT2, + STATE(2649), 1, + sym_comment, + ACTIONS(5474), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2136), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209369,17 +209274,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, - [83200] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [83077] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2659), 1, + ACTIONS(2066), 1, + sym__space, + ACTIONS(5476), 1, + anon_sym_DOT_DOT2, + STATE(2650), 1, sym_comment, - ACTIONS(1554), 4, - ts_builtin_sym_end, + ACTIONS(5478), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2068), 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, + [83109] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2074), 1, sym__space, + ACTIONS(5480), 1, + anon_sym_DOT_DOT2, + STATE(2651), 1, + sym_comment, + ACTIONS(5482), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1552), 13, + ACTIONS(2076), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209391,17 +209326,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [83141] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2082), 1, + sym__space, + ACTIONS(5484), 1, anon_sym_DOT_DOT2, - anon_sym_DOT2, - [83228] = 4, + STATE(2652), 1, + sym_comment, + ACTIONS(5486), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2084), 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, + [83173] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1808), 1, - sym__unquoted_pattern, - STATE(2660), 1, + STATE(2653), 1, + sym_comment, + ACTIONS(1856), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1854), 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, + [83201] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5488), 1, + sym__newline, + ACTIONS(5490), 1, + sym__space, + ACTIONS(5494), 1, + anon_sym_COLON2, + ACTIONS(5496), 1, + anon_sym_EQ2, + STATE(2654), 1, + sym_comment, + STATE(2913), 1, + aux_sym_attribute_repeat1, + STATE(4369), 1, + aux_sym_pipe_element_parenthesized_repeat1, + ACTIONS(5492), 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, + [83239] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5282), 1, + anon_sym_DOT2, + STATE(2522), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2655), 1, sym_comment, - ACTIONS(1806), 16, + STATE(2663), 1, + sym_path, + STATE(3145), 1, + sym_cell_path, + ACTIONS(1868), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1870), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209413,27 +209435,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [83256] = 8, + [83275] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5235), 1, + ACTIONS(5282), 1, anon_sym_DOT2, - STATE(2554), 1, + STATE(2522), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2659), 1, - sym_path, - STATE(2661), 1, + STATE(2656), 1, sym_comment, - STATE(3215), 1, + STATE(2663), 1, + sym_path, + STATE(3140), 1, sym_cell_path, - ACTIONS(5377), 2, + ACTIONS(5395), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5375), 11, + ACTIONS(5393), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209445,16 +209463,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, - [83292] = 5, + [83311] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1956), 1, - anon_sym_LPAREN2, - ACTIONS(1962), 1, + ACTIONS(1598), 1, sym__unquoted_pattern, - STATE(2662), 1, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + STATE(2657), 1, sym_comment, - ACTIONS(2574), 15, + ACTIONS(2001), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -209470,76 +209488,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83322] = 8, + [83341] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5235), 1, + ACTIONS(5282), 1, anon_sym_DOT2, - STATE(2554), 1, + STATE(2522), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2659), 1, - sym_path, - STATE(2663), 1, + STATE(2658), 1, sym_comment, - STATE(3143), 1, + STATE(2663), 1, + sym_path, + STATE(3195), 1, sym_cell_path, - ACTIONS(5401), 2, + ACTIONS(1876), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5399), 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, - [83358] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1474), 1, - anon_sym_COMMA, - ACTIONS(5318), 1, - anon_sym_EQ, - ACTIONS(5320), 1, - sym__newline, - ACTIONS(5322), 1, - anon_sym_COLON, - ACTIONS(5470), 1, - anon_sym_DASH2, - STATE(2664), 1, - sym_comment, - STATE(2682), 1, - aux_sym_parameter_repeat1, - STATE(3428), 1, - aux_sym_parameter_repeat2, - STATE(4168), 1, - aux_sym__repeat_newline, - STATE(3384), 2, - sym_param_type, - sym_param_value, - ACTIONS(5468), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [83402] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2665), 1, - sym_comment, - ACTIONS(1866), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1868), 14, + ACTIONS(1878), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209551,19 +209516,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [83430] = 5, + [83377] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1956), 1, - anon_sym_LPAREN2, - ACTIONS(1962), 1, + ACTIONS(1641), 1, sym__unquoted_pattern, - STATE(2666), 1, + ACTIONS(2581), 1, + anon_sym_LPAREN2, + STATE(2659), 1, sym_comment, - ACTIONS(1952), 15, + ACTIONS(2525), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -209579,72 +209541,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83460] = 4, + [83407] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2667), 1, - sym_comment, - ACTIONS(1740), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1738), 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, - [83488] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5235), 1, - anon_sym_DOT2, - STATE(2554), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2659), 1, - sym_path, - STATE(2668), 1, - sym_comment, - STATE(3189), 1, - sym_cell_path, - ACTIONS(1862), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1864), 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, - [83524] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5456), 1, - anon_sym_EQ2, - ACTIONS(5474), 1, - sym__space, - ACTIONS(5476), 1, - sym_short_flag_identifier, - STATE(2669), 1, + ACTIONS(1724), 1, + sym__unquoted_pattern, + STATE(2660), 1, sym_comment, - STATE(3014), 1, - sym__flag_equals_value, - ACTIONS(5472), 13, + ACTIONS(908), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209658,19 +209562,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [83558] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [83435] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5480), 1, - sym__space, - ACTIONS(5482), 1, - anon_sym_DOT_DOT2, - STATE(2670), 1, + STATE(2661), 1, sym_comment, - ACTIONS(5484), 2, + ACTIONS(1531), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5478), 13, + ACTIONS(1529), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209682,71 +209587,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, - [83590] = 4, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [83463] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2671), 1, + STATE(2662), 1, sym_comment, - ACTIONS(1808), 3, + ACTIONS(1860), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1806), 14, + ACTIONS(1858), 15, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [83618] = 6, + [83491] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1689), 1, - sym__space, - ACTIONS(5482), 1, - anon_sym_DOT_DOT2, - STATE(2672), 1, + STATE(2663), 1, sym_comment, - ACTIONS(5484), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1615), 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, - [83650] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2098), 1, + ACTIONS(1515), 4, + ts_builtin_sym_end, sym__space, - ACTIONS(5486), 1, - anon_sym_DOT_DOT2, - STATE(2673), 1, - sym_comment, - ACTIONS(5488), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2100), 13, + ACTIONS(1513), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209758,47 +209635,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, - [83682] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2136), 1, - sym__space, - ACTIONS(5490), 1, anon_sym_DOT_DOT2, - STATE(2674), 1, - sym_comment, - ACTIONS(5492), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2138), 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, - [83714] = 6, - ACTIONS(103), 1, + anon_sym_DOT2, + [83519] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2144), 1, - sym__space, - ACTIONS(5494), 1, - anon_sym_DOT_DOT2, - STATE(2675), 1, + ACTIONS(2387), 1, + sym__unquoted_pattern, + STATE(2664), 1, sym_comment, - ACTIONS(5496), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2146), 13, + ACTIONS(2385), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209810,21 +209657,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, - [83746] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [83547] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2152), 1, + ACTIONS(4282), 1, sym__space, + ACTIONS(5456), 1, + anon_sym_EQ2, ACTIONS(5498), 1, - anon_sym_DOT_DOT2, - STATE(2676), 1, + sym_long_flag_identifier, + STATE(2665), 1, sym_comment, - ACTIONS(5500), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2154), 13, + STATE(3053), 1, + sym__flag_equals_value, + ACTIONS(4280), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209838,23 +209688,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [83778] = 8, + [83581] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5235), 1, - anon_sym_DOT2, - STATE(2554), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2659), 1, - sym_path, - STATE(2677), 1, + ACTIONS(5500), 1, + anon_sym_DOT, + ACTIONS(5502), 1, + aux_sym__immediate_decimal_token5, + STATE(2666), 1, sym_comment, - STATE(3148), 1, - sym_cell_path, - ACTIONS(5405), 2, + ACTIONS(1750), 3, ts_builtin_sym_end, sym__space, - ACTIONS(5403), 11, + anon_sym_LPAREN2, + ACTIONS(1752), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209866,17 +209713,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, - [83814] = 5, + sym__unquoted_pattern, + [83613] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(2513), 1, + STATE(2667), 1, + sym_comment, + ACTIONS(1740), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1738), 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, - STATE(2678), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [83641] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2668), 1, sym_comment, - ACTIONS(2509), 15, - ts_builtin_sym_end, + ACTIONS(1647), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1649), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209888,34 +209759,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [83844] = 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [83669] = 12, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1474), 1, anon_sym_COMMA, - ACTIONS(5318), 1, + ACTIONS(5363), 1, anon_sym_EQ, - ACTIONS(5320), 1, + ACTIONS(5365), 1, sym__newline, - ACTIONS(5322), 1, + ACTIONS(5367), 1, anon_sym_COLON, - ACTIONS(5504), 1, + ACTIONS(5506), 1, anon_sym_DASH2, - STATE(2636), 1, - aux_sym_parameter_repeat1, - STATE(2679), 1, + STATE(2669), 1, sym_comment, - STATE(3434), 1, + STATE(2694), 1, + aux_sym_parameter_repeat1, + STATE(3430), 1, aux_sym_parameter_repeat2, - STATE(4168), 1, + STATE(4167), 1, aux_sym__repeat_newline, - STATE(3384), 2, + STATE(3319), 2, sym_param_type, sym_param_value, - ACTIONS(5502), 7, + ACTIONS(5504), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -209923,16 +209794,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [83888] = 5, + [83713] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2529), 1, + ACTIONS(2587), 1, anon_sym_LPAREN2, - ACTIONS(2531), 1, + ACTIONS(2589), 1, sym__unquoted_pattern, - STATE(2680), 1, + STATE(2670), 1, sym_comment, - ACTIONS(2525), 15, + ACTIONS(2583), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -209948,17 +209819,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [83918] = 5, - ACTIONS(3), 1, + [83743] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2566), 1, - anon_sym_LPAREN2, - ACTIONS(2568), 1, - sym__unquoted_pattern, - STATE(2681), 1, + ACTIONS(5282), 1, + anon_sym_DOT2, + STATE(2522), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2663), 1, + sym_path, + STATE(2671), 1, sym_comment, - ACTIONS(2562), 15, + STATE(3132), 1, + sym_cell_path, + ACTIONS(5409), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(5407), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -209970,34 +209847,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [83948] = 12, + [83779] = 12, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1474), 1, anon_sym_COMMA, - ACTIONS(5318), 1, + ACTIONS(5363), 1, anon_sym_EQ, - ACTIONS(5320), 1, + ACTIONS(5365), 1, sym__newline, - ACTIONS(5322), 1, + ACTIONS(5367), 1, anon_sym_COLON, - ACTIONS(5508), 1, + ACTIONS(5510), 1, anon_sym_DASH2, - STATE(2682), 1, + STATE(2672), 1, sym_comment, - STATE(2697), 1, + STATE(2809), 1, aux_sym_parameter_repeat1, - STATE(3440), 1, + STATE(3431), 1, aux_sym_parameter_repeat2, - STATE(4168), 1, + STATE(4167), 1, aux_sym__repeat_newline, - STATE(3384), 2, + STATE(3319), 2, sym_param_type, sym_param_value, - ACTIONS(5506), 7, + ACTIONS(5508), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -210005,38 +209879,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [83992] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2683), 1, - sym_comment, - ACTIONS(1661), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1663), 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, - [84020] = 4, + [83823] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2327), 1, - sym__unquoted_pattern, - STATE(2684), 1, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + STATE(2673), 1, sym_comment, - ACTIONS(2325), 16, + STATE(4755), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5385), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -210052,24 +209904,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [84048] = 8, + [83853] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5235), 1, + ACTIONS(5282), 1, anon_sym_DOT2, - STATE(2554), 1, + STATE(2522), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2659), 1, + STATE(2663), 1, sym_path, - STATE(2685), 1, + STATE(2674), 1, sym_comment, - STATE(3244), 1, + STATE(3191), 1, sym_cell_path, - ACTIONS(1854), 2, + ACTIONS(1848), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1856), 11, + ACTIONS(1851), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210081,14 +209932,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, - [84084] = 4, - ACTIONS(3), 1, + [83889] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1766), 1, - sym__unquoted_pattern, - STATE(2686), 1, + ACTIONS(5443), 1, + aux_sym__immediate_decimal_token5, + STATE(2675), 1, sym_comment, - ACTIONS(890), 16, + ACTIONS(1750), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1752), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210102,13 +209956,11 @@ 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, - [84112] = 4, + sym__unquoted_pattern, + [83919] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2687), 1, + STATE(2676), 1, sym_comment, ACTIONS(1574), 3, sym__space, @@ -210129,51 +209981,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [84140] = 8, + [83947] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1944), 1, - anon_sym_DASH2, - ACTIONS(1946), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(5510), 1, - anon_sym_DOT_DOT2, - STATE(2688), 1, + ACTIONS(2021), 1, + sym__unquoted_pattern, + STATE(2677), 1, sym_comment, - ACTIONS(5512), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1942), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2011), 15, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [84176] = 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, + [83977] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5235), 1, + ACTIONS(5282), 1, anon_sym_DOT2, - STATE(2554), 1, + STATE(2522), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2659), 1, + STATE(2663), 1, sym_path, - STATE(2689), 1, + STATE(2678), 1, sym_comment, - STATE(3246), 1, + STATE(3167), 1, sym_cell_path, - ACTIONS(5440), 2, + ACTIONS(1872), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5438), 11, + ACTIONS(1874), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210185,24 +210034,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, - [84212] = 9, - ACTIONS(103), 1, + [84013] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5514), 1, - sym__newline, - ACTIONS(5516), 1, - sym__space, - ACTIONS(5520), 1, - anon_sym_COLON2, - ACTIONS(5522), 1, - anon_sym_EQ2, - STATE(2690), 1, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + STATE(2679), 1, sym_comment, - STATE(2910), 1, - aux_sym_attribute_repeat1, - STATE(4375), 1, - aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(5518), 11, + STATE(4755), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5385), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210213,18 +210056,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - [84250] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [84043] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5413), 1, - aux_sym__immediate_decimal_token5, - STATE(2691), 1, + STATE(2680), 1, sym_comment, - ACTIONS(1728), 2, + ACTIONS(1880), 3, sym__space, - anon_sym_LPAREN2, - ACTIONS(1730), 14, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1882), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210238,15 +210082,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [84280] = 4, + anon_sym_DOT_DOT2, + [84071] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1740), 1, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, sym__unquoted_pattern, - STATE(2692), 1, + STATE(2681), 1, sym_comment, - ACTIONS(1738), 16, + ACTIONS(1018), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -210262,23 +210108,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [84308] = 8, + [84101] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1856), 1, + ACTIONS(2013), 1, anon_sym_DASH2, - ACTIONS(5288), 1, - anon_sym_DOT2, - STATE(2552), 1, - sym_path, - STATE(2613), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2693), 1, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern_in_record, + ACTIONS(5512), 1, + anon_sym_DOT_DOT2, + STATE(2682), 1, sym_comment, - STATE(2948), 1, - sym_cell_path, - ACTIONS(1854), 11, + ACTIONS(5514), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2011), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -210290,14 +210136,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [84343] = 4, + [84137] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2694), 1, + ACTIONS(1818), 1, + sym__unquoted_pattern, + STATE(2683), 1, sym_comment, - ACTIONS(5524), 15, + ACTIONS(1816), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210309,22 +210156,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, - [84370] = 6, + anon_sym_LPAREN2, + [84165] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5526), 1, - sym__newline, - ACTIONS(5531), 1, - anon_sym_and2, - STATE(2695), 1, + ACTIONS(1740), 1, + sym__unquoted_pattern, + STATE(2684), 1, sym_comment, - STATE(2842), 1, - aux_sym__repeat_newline, - ACTIONS(5529), 13, + ACTIONS(1738), 16, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210335,21 +210180,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_and2, anon_sym_xor2, anon_sym_or2, - [84401] = 6, + anon_sym_LPAREN2, + [84193] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5533), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2003), 1, + anon_sym_DASH2, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + ACTIONS(5516), 1, + anon_sym_DOT_DOT2, + STATE(2685), 1, + sym_comment, + ACTIONS(5518), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2001), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(5538), 1, - anon_sym_and2, - STATE(2696), 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, + [84229] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern, + STATE(2686), 1, sym_comment, - STATE(2843), 1, - aux_sym__repeat_newline, - ACTIONS(5536), 13, + ACTIONS(1004), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210360,47 +210234,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [84432] = 9, + [84259] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5542), 1, + STATE(2687), 1, + sym_comment, + ACTIONS(1882), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1880), 15, anon_sym_EQ, - ACTIONS(5545), 1, + sym_identifier, sym__newline, - ACTIONS(5548), 1, + anon_sym_PIPE, anon_sym_COLON, - ACTIONS(5551), 1, - anon_sym_DASH2, - STATE(4168), 1, - aux_sym__repeat_newline, - STATE(2697), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [84287] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2688), 1, sym_comment, - aux_sym_parameter_repeat1, - STATE(3384), 2, - sym_param_type, - sym_param_value, - ACTIONS(5540), 8, + ACTIONS(1818), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1816), 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, - [84469] = 5, - ACTIONS(3), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [84315] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5555), 1, - anon_sym_and2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2698), 1, + STATE(2689), 1, sym_comment, - ACTIONS(5553), 14, + ACTIONS(1535), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1533), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210412,19 +210307,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [84498] = 5, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [84343] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5557), 1, - anon_sym_and2, - STATE(517), 1, + ACTIONS(1474), 1, + anon_sym_COMMA, + ACTIONS(5363), 1, + anon_sym_EQ, + ACTIONS(5365), 1, + sym__newline, + ACTIONS(5367), 1, + anon_sym_COLON, + ACTIONS(5522), 1, + anon_sym_DASH2, + STATE(2690), 1, + sym_comment, + STATE(2809), 1, + aux_sym_parameter_repeat1, + STATE(3429), 1, + aux_sym_parameter_repeat2, + STATE(4167), 1, aux_sym__repeat_newline, - STATE(2699), 1, + STATE(3319), 2, + sym_param_type, + sym_param_value, + ACTIONS(5520), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [84387] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5282), 1, + anon_sym_DOT2, + STATE(2522), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2663), 1, + sym_path, + STATE(2691), 1, sym_comment, - ACTIONS(5524), 14, + STATE(3178), 1, + sym_cell_path, + ACTIONS(5421), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5419), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210436,21 +210369,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [84527] = 6, - ACTIONS(103), 1, + [84423] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern, - ACTIONS(1942), 1, - sym__space, - ACTIONS(1946), 1, + ACTIONS(2620), 1, anon_sym_LPAREN2, - STATE(2700), 1, + ACTIONS(2622), 1, + sym__unquoted_pattern, + STATE(2692), 1, sym_comment, - ACTIONS(1944), 13, + ACTIONS(1706), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210462,19 +210391,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, - [84558] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [84453] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(2701), 1, + ACTIONS(5282), 1, + anon_sym_DOT2, + STATE(2522), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2663), 1, + sym_path, + STATE(2693), 1, sym_comment, - ACTIONS(1870), 4, + STATE(3217), 1, + sym_cell_path, + ACTIONS(1844), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1872), 12, + ACTIONS(1846), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210486,47 +210422,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_DOT_DOT2, - [84585] = 7, + [84489] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, + ACTIONS(1474), 1, + anon_sym_COMMA, + ACTIONS(5363), 1, + anon_sym_EQ, + ACTIONS(5365), 1, sym__newline, - ACTIONS(5531), 1, - anon_sym_and2, - ACTIONS(5559), 1, - anon_sym_xor2, - STATE(2702), 1, + ACTIONS(5367), 1, + anon_sym_COLON, + ACTIONS(5526), 1, + anon_sym_DASH2, + STATE(2694), 1, sym_comment, - STATE(2844), 1, + STATE(2809), 1, + aux_sym_parameter_repeat1, + STATE(3444), 1, + aux_sym_parameter_repeat2, + STATE(4167), 1, aux_sym__repeat_newline, - ACTIONS(5529), 12, - anon_sym_SEMI, + STATE(3319), 2, + sym_param_type, + sym_param_value, + ACTIONS(5524), 7, + sym_identifier, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_or2, - [84618] = 7, - ACTIONS(3), 1, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [84533] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(5538), 1, - anon_sym_and2, - ACTIONS(5561), 1, - anon_sym_xor2, - STATE(2703), 1, + ACTIONS(5528), 1, + aux_sym__immediate_decimal_token5, + STATE(2695), 1, sym_comment, - STATE(2845), 1, - aux_sym__repeat_newline, - ACTIONS(5536), 12, + ACTIONS(1816), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1818), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210538,19 +210477,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [84651] = 6, + anon_sym_RBRACE, + sym__unquoted_pattern, + [84563] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5555), 1, + ACTIONS(5532), 1, anon_sym_and2, - ACTIONS(5563), 1, + ACTIONS(5534), 1, anon_sym_xor2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2704), 1, + ACTIONS(5536), 1, + anon_sym_or2, + STATE(2696), 1, sym_comment, - ACTIONS(5553), 13, + ACTIONS(5530), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210563,18 +210503,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_or2, - [84682] = 4, + anon_sym_RBRACE, + [84594] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2705), 1, + ACTIONS(5538), 1, + anon_sym_DOT_DOT2, + STATE(2697), 1, sym_comment, - ACTIONS(1574), 4, + ACTIONS(2082), 2, ts_builtin_sym_end, sym__space, + ACTIONS(5540), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1572), 12, + ACTIONS(2084), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210586,19 +210529,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, - [84709] = 6, - ACTIONS(103), 1, + [84625] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1756), 1, - anon_sym_LPAREN2, - ACTIONS(5567), 1, - sym__space, - STATE(2706), 1, + ACTIONS(5544), 1, + anon_sym_and2, + ACTIONS(5546), 1, + anon_sym_xor2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2698), 1, sym_comment, - STATE(4725), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5565), 13, + ACTIONS(5542), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210611,19 +210553,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, - [84740] = 6, + anon_sym_or2, + [84656] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5557), 1, - anon_sym_and2, - ACTIONS(5569), 1, - anon_sym_xor2, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2707), 1, + STATE(2699), 1, sym_comment, - ACTIONS(5524), 13, + ACTIONS(5548), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210636,16 +210574,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, - [84771] = 4, + [84683] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2708), 1, - sym_comment, - ACTIONS(5571), 15, + ACTIONS(5550), 1, sym__newline, + ACTIONS(5555), 1, + anon_sym_and2, + STATE(2700), 1, + sym_comment, + STATE(2727), 1, + aux_sym__repeat_newline, + ACTIONS(5553), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210657,18 +210600,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, - [84798] = 4, + [84714] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2709), 1, - sym_comment, - ACTIONS(5573), 15, + ACTIONS(5557), 1, sym__newline, + ACTIONS(5562), 1, + anon_sym_and2, + STATE(2701), 1, + sym_comment, + STATE(2730), 1, + aux_sym__repeat_newline, + ACTIONS(5560), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210680,20 +210625,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, - [84825] = 5, + [84745] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5555), 1, anon_sym_and2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2710), 1, - sym_comment, - ACTIONS(5571), 14, + ACTIONS(5564), 1, sym__newline, + STATE(2702), 1, + sym_comment, + STATE(2721), 1, + aux_sym__repeat_newline, + ACTIONS(5567), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210707,16 +210652,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [84854] = 4, + [84776] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1830), 1, - sym__unquoted_pattern, - STATE(2711), 1, - sym_comment, - ACTIONS(890), 15, - ts_builtin_sym_end, + ACTIONS(5562), 1, + anon_sym_and2, + ACTIONS(5569), 1, sym__newline, + STATE(2703), 1, + sym_comment, + STATE(2722), 1, + aux_sym__repeat_newline, + ACTIONS(5572), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210727,21 +210674,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, + anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [84881] = 6, - ACTIONS(103), 1, + [84807] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5522), 1, - anon_sym_EQ2, - ACTIONS(5575), 1, - sym__space, - STATE(2712), 1, + STATE(2704), 1, sym_comment, - STATE(2910), 1, - aux_sym_attribute_repeat1, - ACTIONS(5518), 13, + STATE(2735), 1, + aux_sym__repeat_newline, + ACTIONS(5574), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210754,18 +210697,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [84912] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [84834] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5557), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5555), 1, anon_sym_and2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2713), 1, + ACTIONS(5576), 1, + anon_sym_xor2, + STATE(2705), 1, sym_comment, - ACTIONS(5573), 14, - sym__newline, + STATE(2744), 1, + aux_sym__repeat_newline, + ACTIONS(5567), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210777,21 +210725,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, - [84941] = 6, + [84867] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5555), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5562), 1, anon_sym_and2, - ACTIONS(5563), 1, + ACTIONS(5578), 1, anon_sym_xor2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2714), 1, + STATE(2706), 1, sym_comment, - ACTIONS(5571), 13, - sym__newline, + STATE(2747), 1, + aux_sym__repeat_newline, + ACTIONS(5572), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210804,18 +210752,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [84972] = 6, - ACTIONS(3), 1, + [84900] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5557), 1, - anon_sym_and2, - ACTIONS(5569), 1, - anon_sym_xor2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2715), 1, + STATE(2707), 1, sym_comment, - ACTIONS(5573), 13, + ACTIONS(1858), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1860), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210827,16 +210774,15 @@ static const uint16_t ts_small_parse_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, - [85003] = 4, + anon_sym_DOT_DOT2, + [84927] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2716), 1, + STATE(2708), 1, sym_comment, - STATE(2846), 1, + STATE(2736), 1, aux_sym__repeat_newline, - ACTIONS(5577), 15, + ACTIONS(5580), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210852,14 +210798,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85030] = 4, + [84954] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2717), 1, - sym_comment, - STATE(2855), 1, + STATE(528), 1, aux_sym__repeat_newline, - ACTIONS(5579), 15, + STATE(2709), 1, + sym_comment, + ACTIONS(5582), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210875,14 +210821,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [85057] = 4, - ACTIONS(3), 1, + [84981] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2718), 1, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + ACTIONS(5586), 1, + sym__space, + STATE(2710), 1, sym_comment, - ACTIONS(5581), 15, + STATE(4712), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5584), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210895,17 +210845,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, - [85084] = 4, + anon_sym_RBRACE, + [85012] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(517), 1, + ACTIONS(5590), 1, + anon_sym_and2, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2719), 1, + STATE(2711), 1, sym_comment, - ACTIONS(5583), 15, + ACTIONS(5588), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210918,21 +210868,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, - [85111] = 6, + [85041] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5531), 1, + ACTIONS(5544), 1, anon_sym_and2, - ACTIONS(5585), 1, - sym__newline, - STATE(2720), 1, - sym_comment, - STATE(2862), 1, + STATE(528), 1, aux_sym__repeat_newline, - ACTIONS(5577), 13, + STATE(2712), 1, + sym_comment, + ACTIONS(5548), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210946,18 +210894,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [85142] = 6, + [85070] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2713), 1, + sym_comment, + ACTIONS(1880), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1882), 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, + [85097] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5555), 1, - anon_sym_and2, - ACTIONS(5563), 1, - anon_sym_xor2, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2721), 1, + STATE(2714), 1, sym_comment, - ACTIONS(5588), 13, + ACTIONS(5592), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -210970,19 +210937,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [85173] = 4, - ACTIONS(103), 1, + [85124] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2722), 1, - sym_comment, - ACTIONS(1661), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1663), 12, + ACTIONS(2903), 1, sym__newline, + ACTIONS(5555), 1, + anon_sym_and2, + ACTIONS(5576), 1, + anon_sym_xor2, + ACTIONS(5596), 1, + anon_sym_or2, + STATE(2715), 1, + sym_comment, + STATE(2791), 1, + aux_sym__repeat_newline, + ACTIONS(5594), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -210993,22 +210966,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, - [85200] = 7, + anon_sym_RPAREN, + [85159] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5590), 1, - anon_sym_EQ2, - ACTIONS(5592), 1, - sym_short_flag_identifier, - STATE(2723), 1, - sym_comment, - STATE(3208), 1, - sym__flag_equals_value, - ACTIONS(5474), 2, - ts_builtin_sym_end, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + ACTIONS(2094), 1, sym__space, - ACTIONS(5472), 11, + STATE(2716), 1, + sym_comment, + STATE(5228), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2096), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211020,20 +210990,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, - [85233] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [85190] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5594), 1, - anon_sym_DOT_DOT2, - STATE(2724), 1, - sym_comment, - ACTIONS(5480), 2, - ts_builtin_sym_end, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + ACTIONS(2098), 1, sym__space, - ACTIONS(5596), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5478), 11, + STATE(2717), 1, + sym_comment, + STATE(5228), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2100), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211045,18 +211015,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, - [85264] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [85221] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5538), 1, - anon_sym_and2, - ACTIONS(5598), 1, + ACTIONS(2903), 1, sym__newline, - STATE(2725), 1, + ACTIONS(5562), 1, + anon_sym_and2, + ACTIONS(5578), 1, + anon_sym_xor2, + ACTIONS(5600), 1, + anon_sym_or2, + STATE(2718), 1, sym_comment, - STATE(2785), 1, + STATE(2792), 1, aux_sym__repeat_newline, - ACTIONS(5579), 13, + ACTIONS(5598), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211068,19 +211044,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, - [85295] = 5, + [85256] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5555), 1, anon_sym_and2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2726), 1, - sym_comment, - ACTIONS(5581), 14, + ACTIONS(5602), 1, sym__newline, + STATE(2719), 1, + sym_comment, + STATE(2737), 1, + aux_sym__repeat_newline, + ACTIONS(5574), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211094,17 +211069,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [85324] = 5, + [85287] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5557), 1, + ACTIONS(5562), 1, anon_sym_and2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2727), 1, - sym_comment, - ACTIONS(5583), 14, + ACTIONS(5605), 1, sym__newline, + STATE(2720), 1, + sym_comment, + STATE(2738), 1, + aux_sym__repeat_newline, + ACTIONS(5580), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211118,18 +211094,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [85353] = 6, + [85318] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5538), 1, + ACTIONS(5590), 1, anon_sym_and2, - ACTIONS(5601), 1, - sym__newline, - STATE(2728), 1, - sym_comment, - STATE(2779), 1, + STATE(528), 1, aux_sym__repeat_newline, - ACTIONS(5604), 13, + STATE(2721), 1, + sym_comment, + ACTIONS(5582), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211143,20 +211118,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [85384] = 7, + [85347] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(5531), 1, + ACTIONS(5544), 1, anon_sym_and2, - ACTIONS(5559), 1, - anon_sym_xor2, - STATE(2721), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2729), 1, + STATE(2722), 1, sym_comment, - ACTIONS(5577), 12, + ACTIONS(5592), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211168,21 +211140,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, - [85417] = 7, + [85376] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(5538), 1, + ACTIONS(5555), 1, anon_sym_and2, - ACTIONS(5561), 1, + ACTIONS(5576), 1, anon_sym_xor2, - STATE(2730), 1, + STATE(2723), 1, sym_comment, - STATE(2811), 1, + STATE(2731), 1, aux_sym__repeat_newline, - ACTIONS(5579), 12, + ACTIONS(5553), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211195,18 +211168,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [85450] = 6, - ACTIONS(3), 1, + [85409] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5555), 1, - anon_sym_and2, - ACTIONS(5563), 1, - anon_sym_xor2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2731), 1, + STATE(2724), 1, sym_comment, - ACTIONS(5581), 13, + ACTIONS(1738), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1740), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211219,21 +211189,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_or2, - [85481] = 7, + anon_sym_RBRACE, + sym__unquoted_pattern, + [85436] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(5531), 1, - anon_sym_and2, - ACTIONS(5559), 1, - anon_sym_xor2, - STATE(2732), 1, - sym_comment, - STATE(2803), 1, + STATE(528), 1, aux_sym__repeat_newline, - ACTIONS(5606), 12, + STATE(2725), 1, + sym_comment, + ACTIONS(5608), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211245,19 +211211,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, - [85514] = 6, + [85463] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5557), 1, - anon_sym_and2, - ACTIONS(5569), 1, - anon_sym_xor2, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2733), 1, + STATE(2726), 1, sym_comment, - ACTIONS(5583), 13, + ACTIONS(5610), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211270,18 +211234,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, - [85545] = 4, - ACTIONS(103), 1, + [85490] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2734), 1, + ACTIONS(5590), 1, + anon_sym_and2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2727), 1, sym_comment, - ACTIONS(1866), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1868), 12, + ACTIONS(5608), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211293,19 +211258,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, - [85572] = 6, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [85519] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1956), 1, + ACTIONS(1714), 1, anon_sym_LPAREN2, - ACTIONS(1962), 1, - sym__unquoted_pattern, - ACTIONS(2574), 1, + ACTIONS(2102), 1, sym__space, - STATE(2735), 1, + STATE(2728), 1, sym_comment, - ACTIONS(2576), 13, + STATE(5228), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2104), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211319,18 +211286,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [85603] = 6, + [85550] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1952), 1, + STATE(2729), 1, + sym_comment, + ACTIONS(1816), 2, sym__space, - ACTIONS(1956), 1, anon_sym_LPAREN2, - ACTIONS(1962), 1, - sym__unquoted_pattern, - STATE(2736), 1, - sym_comment, - ACTIONS(1954), 13, + ACTIONS(1818), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211344,22 +211308,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [85634] = 8, + sym__unquoted_pattern, + [85577] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(5531), 1, + ACTIONS(5544), 1, anon_sym_and2, - ACTIONS(5559), 1, - anon_sym_xor2, - ACTIONS(5610), 1, - anon_sym_or2, - STATE(2737), 1, - sym_comment, - STATE(2864), 1, + STATE(528), 1, aux_sym__repeat_newline, - ACTIONS(5608), 11, + STATE(2730), 1, + sym_comment, + ACTIONS(5610), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211371,22 +211331,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [85669] = 8, + anon_sym_xor2, + anon_sym_or2, + [85606] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(5538), 1, + ACTIONS(5590), 1, anon_sym_and2, - ACTIONS(5561), 1, + ACTIONS(5612), 1, anon_sym_xor2, - ACTIONS(5614), 1, - anon_sym_or2, - STATE(2738), 1, - sym_comment, - STATE(2812), 1, + STATE(528), 1, aux_sym__repeat_newline, - ACTIONS(5612), 11, + STATE(2731), 1, + sym_comment, + ACTIONS(5608), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211398,18 +211357,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [85704] = 6, + anon_sym_or2, + [85637] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__space, - ACTIONS(5225), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(5616), 1, - anon_sym_DOT, - STATE(2739), 1, + STATE(2732), 1, sym_comment, - ACTIONS(1730), 13, + ACTIONS(1854), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1856), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211423,18 +211380,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [85735] = 6, + sym__unquoted_pattern, + [85664] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5620), 1, + ACTIONS(5544), 1, anon_sym_and2, - ACTIONS(5622), 1, + ACTIONS(5546), 1, anon_sym_xor2, - ACTIONS(5624), 1, - anon_sym_or2, - STATE(2740), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2733), 1, sym_comment, - ACTIONS(5618), 13, + ACTIONS(5610), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211447,19 +211405,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, - [85766] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5628), 1, - anon_sym_and2, - ACTIONS(5630), 1, - anon_sym_xor2, - ACTIONS(5632), 1, anon_sym_or2, - STATE(2741), 1, + [85695] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + ACTIONS(2106), 1, + sym__space, + STATE(2734), 1, sym_comment, - ACTIONS(5626), 13, + STATE(5228), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2108), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211473,20 +211431,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [85797] = 7, + [85726] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5555), 1, - anon_sym_and2, - ACTIONS(5563), 1, - anon_sym_xor2, - ACTIONS(5636), 1, - anon_sym_or2, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2742), 1, + STATE(2735), 1, sym_comment, - ACTIONS(5634), 12, + ACTIONS(5614), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211499,12 +211451,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [85830] = 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [85753] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2743), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2736), 1, sym_comment, - ACTIONS(4767), 16, + ACTIONS(5616), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211517,22 +211474,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, - [85855] = 5, - ACTIONS(103), 1, + [85780] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5638), 1, - aux_sym__immediate_decimal_token5, - STATE(2744), 1, + ACTIONS(5590), 1, + anon_sym_and2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2737), 1, sym_comment, - ACTIONS(1806), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1808), 12, + ACTIONS(5614), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211544,21 +211498,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, - sym__unquoted_pattern, - [85884] = 7, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [85809] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(5538), 1, + ACTIONS(5544), 1, anon_sym_and2, - ACTIONS(5561), 1, - anon_sym_xor2, - STATE(2745), 1, - sym_comment, - STATE(2804), 1, + STATE(528), 1, aux_sym__repeat_newline, - ACTIONS(5640), 12, + STATE(2738), 1, + sym_comment, + ACTIONS(5616), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211570,14 +211523,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, - [85917] = 3, + [85838] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2746), 1, - sym_comment, - ACTIONS(5308), 16, + ACTIONS(2903), 1, sym__newline, + ACTIONS(5562), 1, + anon_sym_and2, + ACTIONS(5578), 1, + anon_sym_xor2, + STATE(2733), 1, + aux_sym__repeat_newline, + STATE(2739), 1, + sym_comment, + ACTIONS(5560), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211589,23 +211550,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, - [85942] = 6, - ACTIONS(103), 1, + [85871] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(2509), 1, - sym__space, - ACTIONS(2513), 1, - anon_sym_LPAREN2, - STATE(2747), 1, - sym_comment, - ACTIONS(2511), 13, + ACTIONS(2903), 1, sym__newline, + ACTIONS(5555), 1, + anon_sym_and2, + ACTIONS(5576), 1, + anon_sym_xor2, + STATE(2740), 1, + sym_comment, + STATE(2741), 1, + aux_sym__repeat_newline, + ACTIONS(5574), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211617,13 +211576,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, - [85973] = 3, + anon_sym_or2, + [85904] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2748), 1, + ACTIONS(5590), 1, + anon_sym_and2, + ACTIONS(5612), 1, + anon_sym_xor2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2741), 1, sym_comment, - ACTIONS(5385), 16, + ACTIONS(5614), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211636,16 +211601,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, - [85998] = 3, + [85935] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2749), 1, + ACTIONS(5544), 1, + anon_sym_and2, + ACTIONS(5546), 1, + anon_sym_xor2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2742), 1, sym_comment, - ACTIONS(5308), 16, + ACTIONS(5616), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211658,42 +211626,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, - [86023] = 6, + [85966] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5642), 1, - anon_sym_DOT, - ACTIONS(5644), 1, - aux_sym__immediate_decimal_token5, - STATE(2750), 1, - sym_comment, - ACTIONS(1730), 3, - sym_identifier, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1728), 11, - anon_sym_EQ, + ACTIONS(2903), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [86054] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2751), 1, + ACTIONS(5562), 1, + anon_sym_and2, + ACTIONS(5578), 1, + anon_sym_xor2, + STATE(2742), 1, + aux_sym__repeat_newline, + STATE(2743), 1, sym_comment, - ACTIONS(5385), 16, - sym__newline, + ACTIONS(5580), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211705,16 +211652,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, - [86079] = 3, + [85999] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2752), 1, + ACTIONS(5590), 1, + anon_sym_and2, + ACTIONS(5612), 1, + anon_sym_xor2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2744), 1, sym_comment, - ACTIONS(5308), 16, + ACTIONS(5582), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211727,22 +211677,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, - [86104] = 6, + [86030] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2525), 1, + ACTIONS(1706), 1, sym__space, - ACTIONS(2529), 1, + ACTIONS(2620), 1, anon_sym_LPAREN2, - ACTIONS(2531), 1, + ACTIONS(2622), 1, sym__unquoted_pattern, - STATE(2753), 1, + STATE(2745), 1, sym_comment, - ACTIONS(2527), 13, + ACTIONS(1604), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211756,12 +211703,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [86135] = 3, + [86061] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2754), 1, + ACTIONS(5590), 1, + anon_sym_and2, + ACTIONS(5612), 1, + anon_sym_xor2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2746), 1, sym_comment, - ACTIONS(5385), 16, + ACTIONS(5588), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211774,16 +211727,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, - [86160] = 3, + [86092] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2755), 1, + ACTIONS(5544), 1, + anon_sym_and2, + ACTIONS(5546), 1, + anon_sym_xor2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2747), 1, sym_comment, - ACTIONS(5646), 16, + ACTIONS(5592), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211796,16 +211752,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, - [86185] = 3, - ACTIONS(3), 1, + [86123] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2756), 1, + ACTIONS(5502), 1, + aux_sym__immediate_decimal_token5, + STATE(2748), 1, sym_comment, - ACTIONS(5648), 16, + ACTIONS(1750), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1752), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211817,19 +211776,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [86210] = 4, - ACTIONS(3), 1, + sym__unquoted_pattern, + [86152] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5620), 1, - anon_sym_and2, - STATE(2757), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2001), 1, + sym__space, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + STATE(2749), 1, sym_comment, - ACTIONS(5646), 15, + ACTIONS(2003), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211843,16 +211802,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_xor2, - anon_sym_or2, - [86237] = 4, - ACTIONS(3), 1, + [86183] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5628), 1, - anon_sym_and2, - STATE(2758), 1, + STATE(2750), 1, sym_comment, - ACTIONS(5648), 15, + ACTIONS(1574), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1572), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211864,20 +211824,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_xor2, - anon_sym_or2, - [86264] = 5, + anon_sym_DOT_DOT2, + [86210] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5620), 1, + ACTIONS(5590), 1, anon_sym_and2, - ACTIONS(5622), 1, + ACTIONS(5612), 1, anon_sym_xor2, - STATE(2759), 1, + ACTIONS(5620), 1, + anon_sym_or2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2751), 1, sym_comment, - ACTIONS(5646), 14, + ACTIONS(5618), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211890,18 +211851,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_or2, - [86293] = 5, + [86243] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5628), 1, + ACTIONS(5544), 1, anon_sym_and2, - ACTIONS(5630), 1, + ACTIONS(5546), 1, anon_sym_xor2, - STATE(2760), 1, + ACTIONS(5624), 1, + anon_sym_or2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2752), 1, sym_comment, - ACTIONS(5648), 14, + ACTIONS(5622), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211914,14 +211877,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_or2, - [86322] = 3, + [86276] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2761), 1, + STATE(2753), 1, sym_comment, - ACTIONS(5650), 16, + STATE(2817), 1, + aux_sym__repeat_newline, + ACTIONS(5626), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211934,22 +211897,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [86347] = 5, - ACTIONS(103), 1, + [86303] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5444), 1, - aux_sym__immediate_decimal_token5, - STATE(2762), 1, + STATE(2754), 1, sym_comment, - ACTIONS(1728), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1730), 12, + STATE(2824), 1, + aux_sym__repeat_newline, + ACTIONS(5628), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -211961,19 +211919,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - sym__unquoted_pattern, - [86376] = 6, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [86330] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5531), 1, + ACTIONS(5555), 1, anon_sym_and2, - ACTIONS(5652), 1, + ACTIONS(5630), 1, sym__newline, - STATE(2763), 1, + STATE(2755), 1, sym_comment, - STATE(2778), 1, + STATE(2829), 1, aux_sym__repeat_newline, - ACTIONS(5655), 13, + ACTIONS(5626), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -211987,13 +211948,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [86407] = 3, + [86361] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2764), 1, - sym_comment, - ACTIONS(5657), 16, + ACTIONS(5562), 1, + anon_sym_and2, + ACTIONS(5633), 1, sym__newline, + STATE(2756), 1, + sym_comment, + STATE(2830), 1, + aux_sym__repeat_newline, + ACTIONS(5628), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212005,19 +211971,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, - [86432] = 4, + [86392] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5620), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5555), 1, anon_sym_and2, - STATE(2765), 1, + ACTIONS(5576), 1, + anon_sym_xor2, + STATE(2757), 1, sym_comment, - ACTIONS(5650), 15, - sym__newline, + STATE(2835), 1, + aux_sym__repeat_newline, + ACTIONS(5626), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212029,18 +211998,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, - [86459] = 4, + [86425] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5628), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5562), 1, anon_sym_and2, - STATE(2766), 1, + ACTIONS(5578), 1, + anon_sym_xor2, + STATE(2758), 1, sym_comment, - ACTIONS(5657), 15, - sym__newline, + STATE(2836), 1, + aux_sym__repeat_newline, + ACTIONS(5628), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212052,19 +212024,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, - [86486] = 5, + [86458] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5620), 1, + ACTIONS(5544), 1, anon_sym_and2, - ACTIONS(5622), 1, + ACTIONS(5546), 1, anon_sym_xor2, - STATE(2767), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2759), 1, sym_comment, - ACTIONS(5650), 14, + ACTIONS(5548), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212077,18 +212049,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, - [86515] = 5, + [86489] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5628), 1, - anon_sym_and2, - ACTIONS(5630), 1, - anon_sym_xor2, - STATE(2768), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2760), 1, sym_comment, - ACTIONS(5657), 14, + ACTIONS(5636), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212101,17 +212070,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [86544] = 4, + [86516] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2769), 1, + ACTIONS(5638), 1, + anon_sym_DOT_DOT2, + STATE(2761), 1, sym_comment, - ACTIONS(2325), 2, + ACTIONS(1706), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(2327), 14, + ACTIONS(5640), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1604), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212123,17 +212098,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, - sym__unquoted_pattern, - [86571] = 4, + [86547] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2770), 1, - sym_comment, - STATE(2816), 1, + STATE(528), 1, aux_sym__repeat_newline, - ACTIONS(5659), 15, + STATE(2762), 1, + sym_comment, + ACTIONS(5642), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212149,14 +212121,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [86598] = 4, - ACTIONS(3), 1, + [86574] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2771), 1, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern, + ACTIONS(2533), 1, + sym__space, + STATE(2763), 1, sym_comment, - STATE(2817), 1, - aux_sym__repeat_newline, - ACTIONS(5661), 15, + ACTIONS(2535), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212169,17 +212145,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, - [86625] = 4, + anon_sym_RBRACE, + [86605] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2772), 1, + STATE(2764), 1, sym_comment, - ACTIONS(5663), 15, + ACTIONS(5644), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212195,18 +212169,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [86652] = 6, + [86632] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2562), 1, + ACTIONS(2011), 1, sym__space, - ACTIONS(2566), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(2568), 1, + ACTIONS(2021), 1, sym__unquoted_pattern, - STATE(2773), 1, + STATE(2765), 1, sym_comment, - ACTIONS(2564), 13, + ACTIONS(2013), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212220,14 +212194,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [86683] = 4, - ACTIONS(3), 1, + [86663] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2774), 1, + ACTIONS(5646), 1, + aux_sym__immediate_decimal_token5, + STATE(2766), 1, sym_comment, - ACTIONS(5665), 15, + ACTIONS(1816), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1818), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212239,18 +212217,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_and2, - anon_sym_xor2, - anon_sym_or2, - [86710] = 4, + sym__unquoted_pattern, + [86692] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2775), 1, + STATE(2767), 1, sym_comment, - STATE(2792), 1, - aux_sym__repeat_newline, - ACTIONS(5606), 15, + ACTIONS(5298), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212263,21 +212236,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [86737] = 6, - ACTIONS(3), 1, + [86717] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5531), 1, - anon_sym_and2, - ACTIONS(5667), 1, - sym__newline, - STATE(2776), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2525), 1, + sym__space, + ACTIONS(2581), 1, + anon_sym_LPAREN2, + STATE(2768), 1, sym_comment, - STATE(2820), 1, - aux_sym__repeat_newline, - ACTIONS(5659), 13, + ACTIONS(2527), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212289,20 +212264,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_xor2, - anon_sym_or2, - [86768] = 6, + anon_sym_RBRACE, + [86748] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5538), 1, - anon_sym_and2, - ACTIONS(5670), 1, - sym__newline, - STATE(2777), 1, + STATE(2769), 1, sym_comment, - STATE(2821), 1, - aux_sym__repeat_newline, - ACTIONS(5661), 13, + ACTIONS(5385), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212314,18 +212283,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, - [86799] = 5, - ACTIONS(3), 1, + [86773] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5555), 1, - anon_sym_and2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2778), 1, + ACTIONS(2583), 1, + sym__space, + ACTIONS(2587), 1, + anon_sym_LPAREN2, + ACTIONS(2589), 1, + sym__unquoted_pattern, + STATE(2770), 1, sym_comment, - ACTIONS(5663), 14, + ACTIONS(2585), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212338,18 +212311,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_xor2, - anon_sym_or2, - [86828] = 5, + anon_sym_RBRACE, + [86804] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5557), 1, - anon_sym_and2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2779), 1, + STATE(2771), 1, sym_comment, - ACTIONS(5665), 14, + ACTIONS(5298), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212362,22 +212330,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, - [86857] = 7, - ACTIONS(3), 1, + [86829] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(5531), 1, - anon_sym_and2, - ACTIONS(5559), 1, - anon_sym_xor2, - STATE(2780), 1, + STATE(2772), 1, sym_comment, - STATE(2822), 1, - aux_sym__repeat_newline, - ACTIONS(5659), 12, + ACTIONS(1647), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1649), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212388,22 +212356,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, - [86890] = 7, + anon_sym_DOT_DOT2, + [86856] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(5538), 1, + ACTIONS(5590), 1, anon_sym_and2, - ACTIONS(5561), 1, - anon_sym_xor2, - STATE(2781), 1, - sym_comment, - STATE(2832), 1, + STATE(528), 1, aux_sym__repeat_newline, - ACTIONS(5661), 12, + STATE(2773), 1, + sym_comment, + ACTIONS(5642), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212415,19 +212379,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, - [86923] = 6, + [86885] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5555), 1, - anon_sym_and2, - ACTIONS(5563), 1, - anon_sym_xor2, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2782), 1, + STATE(2774), 1, sym_comment, - ACTIONS(5663), 13, + ACTIONS(5542), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212440,19 +212401,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, - [86954] = 6, + [86912] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5557), 1, - anon_sym_and2, - ACTIONS(5569), 1, - anon_sym_xor2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2783), 1, + STATE(2775), 1, sym_comment, - ACTIONS(5665), 13, + ACTIONS(5385), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212465,15 +212422,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, - [86985] = 4, + [86937] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2784), 1, + STATE(2776), 1, sym_comment, - STATE(2863), 1, - aux_sym__repeat_newline, - ACTIONS(5673), 15, + ACTIONS(5298), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212486,19 +212444,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, - [87012] = 5, - ACTIONS(3), 1, + [86962] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5557), 1, - anon_sym_and2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2785), 1, + STATE(2777), 1, sym_comment, - ACTIONS(5675), 14, + ACTIONS(2385), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2387), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212511,20 +212469,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, - [87041] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + sym__unquoted_pattern, + [86989] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5531), 1, - anon_sym_and2, - ACTIONS(5677), 1, - sym__newline, - STATE(2698), 1, - aux_sym__repeat_newline, - STATE(2786), 1, + ACTIONS(2591), 1, + sym__space, + ACTIONS(2595), 1, + anon_sym_LPAREN2, + ACTIONS(2597), 1, + sym__unquoted_pattern, + STATE(2778), 1, sym_comment, - ACTIONS(5673), 13, + ACTIONS(2593), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212536,20 +212495,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, - [87072] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [87020] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5538), 1, - anon_sym_and2, - ACTIONS(5680), 1, - sym__newline, - STATE(2699), 1, - aux_sym__repeat_newline, - STATE(2787), 1, + ACTIONS(5648), 1, + anon_sym_DOT_DOT2, + STATE(2779), 1, sym_comment, - ACTIONS(5683), 13, + ACTIONS(2134), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5650), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2136), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212560,23 +212521,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_xor2, - anon_sym_or2, - [87103] = 7, + [87051] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(5531), 1, - anon_sym_and2, - ACTIONS(5559), 1, - anon_sym_xor2, - STATE(2704), 1, - aux_sym__repeat_newline, - STATE(2788), 1, + STATE(2780), 1, sym_comment, - ACTIONS(5673), 12, + ACTIONS(5385), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212588,21 +212539,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [87136] = 7, + [87076] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(5538), 1, - anon_sym_and2, - ACTIONS(5561), 1, - anon_sym_xor2, - STATE(2707), 1, - aux_sym__repeat_newline, - STATE(2789), 1, + STATE(2781), 1, sym_comment, - ACTIONS(5683), 12, + ACTIONS(5652), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212614,15 +212561,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [87169] = 4, - ACTIONS(3), 1, + [87101] = 7, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2708), 1, - aux_sym__repeat_newline, - STATE(2790), 1, + ACTIONS(5654), 1, + anon_sym_EQ2, + ACTIONS(5656), 1, + sym_short_flag_identifier, + STATE(2782), 1, sym_comment, - ACTIONS(5685), 15, + STATE(3220), 1, + sym__flag_equals_value, + ACTIONS(5454), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5452), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212634,18 +212591,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, - [87196] = 4, - ACTIONS(3), 1, + [87134] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2709), 1, - aux_sym__repeat_newline, - STATE(2791), 1, + ACTIONS(5638), 1, + anon_sym_DOT_DOT2, + STATE(2783), 1, sym_comment, - ACTIONS(5687), 15, + ACTIONS(5462), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5640), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5460), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212657,18 +212616,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, + [87165] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5658), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5660), 1, + aux_sym__immediate_decimal_token5, + STATE(2784), 1, + sym_comment, + ACTIONS(1740), 3, + sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1738), 11, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [87223] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [87196] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(517), 1, + ACTIONS(5590), 1, + anon_sym_and2, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2792), 1, + STATE(2785), 1, sym_comment, - ACTIONS(5689), 15, + ACTIONS(5636), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212681,17 +212663,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, - [87250] = 4, - ACTIONS(3), 1, + [87225] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2793), 1, + ACTIONS(5496), 1, + anon_sym_EQ2, + ACTIONS(5662), 1, + sym__space, + STATE(2786), 1, sym_comment, - ACTIONS(5691), 15, + STATE(2913), 1, + aux_sym_attribute_repeat1, + ACTIONS(5492), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212704,25 +212689,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + [87256] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5555), 1, anon_sym_and2, + ACTIONS(5576), 1, anon_sym_xor2, + ACTIONS(5596), 1, anon_sym_or2, - [87277] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5590), 1, - anon_sym_EQ2, - ACTIONS(5693), 1, - sym_long_flag_identifier, - STATE(2794), 1, + STATE(2751), 1, + aux_sym__repeat_newline, + STATE(2787), 1, sym_comment, - STATE(3175), 1, - sym__flag_equals_value, - ACTIONS(4320), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4318), 11, - sym__newline, + ACTIONS(5664), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212733,18 +212716,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, - [87310] = 6, + anon_sym_RPAREN, + [87291] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5531), 1, + ACTIONS(5590), 1, anon_sym_and2, - ACTIONS(5695), 1, - sym__newline, - STATE(2710), 1, + ACTIONS(5612), 1, + anon_sym_xor2, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2795), 1, + STATE(2788), 1, sym_comment, - ACTIONS(5685), 13, + ACTIONS(5636), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212756,20 +212741,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, anon_sym_or2, - [87341] = 6, + [87322] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5538), 1, - anon_sym_and2, - ACTIONS(5698), 1, + ACTIONS(2903), 1, sym__newline, - STATE(2713), 1, + ACTIONS(5562), 1, + anon_sym_and2, + ACTIONS(5578), 1, + anon_sym_xor2, + ACTIONS(5600), 1, + anon_sym_or2, + STATE(2752), 1, aux_sym__repeat_newline, - STATE(2796), 1, + STATE(2789), 1, sym_comment, - ACTIONS(5687), 13, + ACTIONS(5666), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212781,16 +212769,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, - [87372] = 4, - ACTIONS(3), 1, + [87357] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2793), 1, - aux_sym__repeat_newline, - STATE(2797), 1, + ACTIONS(1004), 1, + sym__space, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern, + STATE(2790), 1, sym_comment, - ACTIONS(5640), 15, + ACTIONS(994), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212803,19 +212793,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, - [87399] = 5, + anon_sym_RBRACE, + [87388] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5555), 1, + ACTIONS(5590), 1, anon_sym_and2, - STATE(517), 1, + ACTIONS(5612), 1, + anon_sym_xor2, + ACTIONS(5620), 1, + anon_sym_or2, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2798), 1, + STATE(2791), 1, sym_comment, - ACTIONS(5689), 14, + ACTIONS(5668), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212828,22 +212820,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, - [87428] = 7, + [87421] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5557), 1, + ACTIONS(5544), 1, anon_sym_and2, - ACTIONS(5569), 1, + ACTIONS(5546), 1, anon_sym_xor2, - ACTIONS(5703), 1, + ACTIONS(5624), 1, anon_sym_or2, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2799), 1, + STATE(2792), 1, sym_comment, - ACTIONS(5701), 12, + ACTIONS(5670), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212856,16 +212846,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [87461] = 5, + [87454] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5557), 1, - anon_sym_and2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2800), 1, + STATE(2793), 1, sym_comment, - ACTIONS(5691), 14, + ACTIONS(5672), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212878,22 +212864,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, - [87490] = 7, + [87479] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(5531), 1, + ACTIONS(5674), 1, anon_sym_and2, - ACTIONS(5559), 1, - anon_sym_xor2, - STATE(2714), 1, - aux_sym__repeat_newline, - STATE(2801), 1, + STATE(2794), 1, sym_comment, - ACTIONS(5685), 12, + ACTIONS(5652), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212905,21 +212888,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_xor2, anon_sym_or2, - [87523] = 7, + [87506] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(5538), 1, + ACTIONS(5532), 1, anon_sym_and2, - ACTIONS(5561), 1, - anon_sym_xor2, - STATE(2715), 1, - aux_sym__repeat_newline, - STATE(2802), 1, + STATE(2795), 1, sym_comment, - ACTIONS(5687), 12, + ACTIONS(5672), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -212931,19 +212911,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, - [87556] = 6, + [87533] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5555), 1, + ACTIONS(5674), 1, anon_sym_and2, - ACTIONS(5563), 1, + ACTIONS(5676), 1, anon_sym_xor2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2803), 1, + STATE(2796), 1, sym_comment, - ACTIONS(5689), 13, + ACTIONS(5652), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212956,19 +212936,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_or2, - [87587] = 6, + [87562] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5557), 1, + ACTIONS(5532), 1, anon_sym_and2, - ACTIONS(5569), 1, + ACTIONS(5534), 1, anon_sym_xor2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2804), 1, + STATE(2797), 1, sym_comment, - ACTIONS(5691), 13, + ACTIONS(5672), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -212981,15 +212960,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_or2, - [87618] = 4, + [87591] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2718), 1, - aux_sym__repeat_newline, - STATE(2805), 1, + STATE(2798), 1, sym_comment, - ACTIONS(5705), 15, + ACTIONS(5678), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213002,17 +212980,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, - [87645] = 4, + [87616] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2719), 1, - aux_sym__repeat_newline, - STATE(2806), 1, + STATE(2799), 1, sym_comment, - ACTIONS(5707), 15, + ACTIONS(5680), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213025,21 +213002,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, - [87672] = 6, + [87641] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5531), 1, + ACTIONS(5674), 1, anon_sym_and2, - ACTIONS(5709), 1, - sym__newline, - STATE(2726), 1, - aux_sym__repeat_newline, - STATE(2807), 1, + STATE(2800), 1, sym_comment, - ACTIONS(5705), 13, + ACTIONS(5678), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213051,20 +213026,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_xor2, anon_sym_or2, - [87703] = 6, + [87668] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5538), 1, + ACTIONS(5532), 1, anon_sym_and2, - ACTIONS(5712), 1, - sym__newline, - STATE(2727), 1, - aux_sym__repeat_newline, - STATE(2808), 1, + STATE(2801), 1, sym_comment, - ACTIONS(5707), 13, + ACTIONS(5680), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213076,22 +213049,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, - [87734] = 7, + [87695] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(5531), 1, + ACTIONS(5674), 1, anon_sym_and2, - ACTIONS(5559), 1, + ACTIONS(5676), 1, anon_sym_xor2, - STATE(2731), 1, - aux_sym__repeat_newline, - STATE(2809), 1, + STATE(2802), 1, sym_comment, - ACTIONS(5705), 12, + ACTIONS(5678), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213103,21 +213074,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_or2, - [87767] = 7, + [87724] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(5538), 1, + ACTIONS(5532), 1, anon_sym_and2, - ACTIONS(5561), 1, + ACTIONS(5534), 1, anon_sym_xor2, - STATE(2733), 1, - aux_sym__repeat_newline, - STATE(2810), 1, + STATE(2803), 1, sym_comment, - ACTIONS(5707), 12, + ACTIONS(5680), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213129,19 +213098,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_or2, - [87800] = 6, + [87753] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5557), 1, + ACTIONS(5544), 1, anon_sym_and2, - ACTIONS(5569), 1, - anon_sym_xor2, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2811), 1, + STATE(2804), 1, sym_comment, - ACTIONS(5675), 13, + ACTIONS(5644), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213154,21 +213122,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, - [87831] = 7, + [87782] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5557), 1, - anon_sym_and2, - ACTIONS(5569), 1, - anon_sym_xor2, - ACTIONS(5703), 1, - anon_sym_or2, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(2812), 1, + STATE(2805), 1, sym_comment, - ACTIONS(5715), 12, + STATE(2854), 1, + aux_sym__repeat_newline, + ACTIONS(5682), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213181,49 +213144,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [87864] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(5531), 1, anon_sym_and2, - ACTIONS(5559), 1, anon_sym_xor2, - ACTIONS(5610), 1, anon_sym_or2, - STATE(2742), 1, - aux_sym__repeat_newline, - STATE(2813), 1, - sym_comment, - ACTIONS(5717), 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, - [87899] = 8, + [87809] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(5538), 1, + ACTIONS(5590), 1, anon_sym_and2, - ACTIONS(5561), 1, + ACTIONS(5612), 1, anon_sym_xor2, - ACTIONS(5614), 1, - anon_sym_or2, - STATE(2799), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2814), 1, + STATE(2806), 1, sym_comment, - ACTIONS(5719), 11, + ACTIONS(5642), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213235,17 +213171,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [87934] = 4, + anon_sym_or2, + [87840] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2815), 1, + STATE(2807), 1, sym_comment, - ACTIONS(1800), 4, + ACTIONS(1768), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1802), 12, + ACTIONS(1770), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213258,14 +213195,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [87961] = 4, + [87867] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(517), 1, + ACTIONS(5544), 1, + anon_sym_and2, + ACTIONS(5546), 1, + anon_sym_xor2, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2816), 1, + STATE(2808), 1, sym_comment, - ACTIONS(5721), 15, + ACTIONS(5644), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213278,17 +213219,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [87988] = 4, + [87898] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(517), 1, + ACTIONS(5686), 1, + anon_sym_EQ, + ACTIONS(5689), 1, + sym__newline, + ACTIONS(5692), 1, + anon_sym_COLON, + ACTIONS(5695), 1, + anon_sym_DASH2, + STATE(4167), 1, aux_sym__repeat_newline, - STATE(2817), 1, + STATE(2809), 2, + sym_comment, + aux_sym_parameter_repeat1, + STATE(3319), 2, + sym_param_type, + sym_param_value, + ACTIONS(5684), 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, + [87935] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2810), 1, sym_comment, - ACTIONS(5723), 15, + STATE(2855), 1, + aux_sym__repeat_newline, + ACTIONS(5697), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213304,15 +213271,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [88015] = 4, + [87962] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2818), 1, - sym_comment, - ACTIONS(1738), 2, + ACTIONS(1750), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1740), 14, + ACTIONS(5217), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(5699), 1, + anon_sym_DOT, + STATE(2811), 1, + sym_comment, + ACTIONS(1752), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213326,21 +213296,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [88042] = 7, + [87993] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(5538), 1, + ACTIONS(5555), 1, anon_sym_and2, - ACTIONS(5561), 1, - anon_sym_xor2, - STATE(2783), 1, - aux_sym__repeat_newline, - STATE(2819), 1, + ACTIONS(5701), 1, + sym__newline, + STATE(2812), 1, sym_comment, - ACTIONS(5604), 12, + STATE(2858), 1, + aux_sym__repeat_newline, + ACTIONS(5682), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213352,17 +213319,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, - [88075] = 5, + [88024] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5555), 1, - anon_sym_and2, - STATE(517), 1, + STATE(2725), 1, aux_sym__repeat_newline, - STATE(2820), 1, + STATE(2813), 1, sym_comment, - ACTIONS(5721), 14, + ACTIONS(5553), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213375,18 +213341,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, - [88104] = 5, + [88051] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5557), 1, - anon_sym_and2, - STATE(517), 1, + STATE(2726), 1, aux_sym__repeat_newline, - STATE(2821), 1, + STATE(2814), 1, sym_comment, - ACTIONS(5723), 14, + ACTIONS(5560), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213399,20 +213364,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, - [88133] = 6, + [88078] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5555), 1, - anon_sym_and2, - ACTIONS(5563), 1, - anon_sym_xor2, - STATE(517), 1, + STATE(2762), 1, aux_sym__repeat_newline, - STATE(2822), 1, + STATE(2815), 1, sym_comment, - ACTIONS(5721), 13, + ACTIONS(5704), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213425,16 +213387,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, - [88164] = 4, - ACTIONS(103), 1, + [88105] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2823), 1, + STATE(2764), 1, + aux_sym__repeat_newline, + STATE(2816), 1, sym_comment, - ACTIONS(1806), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1808), 14, + ACTIONS(5706), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213447,22 +213410,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, - sym__unquoted_pattern, - [88191] = 6, - ACTIONS(103), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [88132] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5594), 1, - anon_sym_DOT_DOT2, - STATE(2824), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2817), 1, sym_comment, - ACTIONS(1689), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5596), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1615), 11, + ACTIONS(5708), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213474,15 +213432,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, - [88222] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [88159] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2825), 1, + ACTIONS(5674), 1, + anon_sym_and2, + ACTIONS(5676), 1, + anon_sym_xor2, + ACTIONS(5712), 1, + anon_sym_or2, + STATE(2818), 1, sym_comment, - ACTIONS(1844), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1846), 14, + ACTIONS(5710), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213496,15 +213461,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - sym__unquoted_pattern, - [88249] = 4, + [88190] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2772), 1, - aux_sym__repeat_newline, - STATE(2826), 1, + STATE(2819), 1, sym_comment, - ACTIONS(5655), 15, + ACTIONS(4749), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213517,24 +213479,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, - [88276] = 6, - ACTIONS(103), 1, + [88215] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5725), 1, - anon_sym_DOT_DOT2, - STATE(2827), 1, - sym_comment, - ACTIONS(2098), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5727), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2100), 11, + ACTIONS(5562), 1, + anon_sym_and2, + ACTIONS(5714), 1, sym__newline, + STATE(2820), 1, + sym_comment, + STATE(2859), 1, + aux_sym__repeat_newline, + ACTIONS(5697), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213545,19 +213505,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, - [88307] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [88246] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(994), 1, - sym__space, - ACTIONS(2570), 1, + ACTIONS(5717), 1, + anon_sym_DOT, + ACTIONS(5719), 1, + aux_sym__immediate_decimal_token5, + STATE(2821), 1, + sym_comment, + ACTIONS(1752), 3, + sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1750), 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, - ACTIONS(2572), 1, - sym__unquoted_pattern, - STATE(2828), 1, - sym_comment, - ACTIONS(996), 13, + [88277] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2903), 1, sym__newline, + ACTIONS(5555), 1, + anon_sym_and2, + ACTIONS(5576), 1, + anon_sym_xor2, + STATE(2822), 1, + sym_comment, + STATE(2862), 1, + aux_sym__repeat_newline, + ACTIONS(5682), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213569,21 +213558,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, - [88338] = 7, + anon_sym_or2, + [88310] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(5531), 1, + ACTIONS(5562), 1, anon_sym_and2, - ACTIONS(5559), 1, + ACTIONS(5578), 1, anon_sym_xor2, - STATE(2782), 1, - aux_sym__repeat_newline, - STATE(2829), 1, + STATE(2823), 1, sym_comment, - ACTIONS(5655), 12, + STATE(2864), 1, + aux_sym__repeat_newline, + ACTIONS(5697), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213596,18 +213585,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [88371] = 6, - ACTIONS(103), 1, + [88343] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1012), 1, - sym__space, - ACTIONS(2570), 1, - anon_sym_LPAREN2, - ACTIONS(2572), 1, - sym__unquoted_pattern, - STATE(2830), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2824), 1, sym_comment, - ACTIONS(1004), 13, + ACTIONS(5721), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213620,45 +213605,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, - [88402] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5729), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5731), 1, - aux_sym__immediate_decimal_token5, - STATE(2831), 1, - sym_comment, - ACTIONS(1740), 3, - sym_identifier, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1738), 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, - [88433] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [88370] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5557), 1, + ACTIONS(5555), 1, anon_sym_and2, - ACTIONS(5569), 1, - anon_sym_xor2, - STATE(517), 1, + ACTIONS(5723), 1, + sym__newline, + STATE(2773), 1, aux_sym__repeat_newline, - STATE(2832), 1, + STATE(2825), 1, sym_comment, - ACTIONS(5723), 13, - sym__newline, + ACTIONS(5704), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213670,22 +213631,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, - [88464] = 6, - ACTIONS(103), 1, + [88401] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5733), 1, - anon_sym_DOT_DOT2, - STATE(2833), 1, - sym_comment, - ACTIONS(2136), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5735), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2138), 11, + ACTIONS(5562), 1, + anon_sym_and2, + ACTIONS(5726), 1, sym__newline, + STATE(2804), 1, + aux_sym__repeat_newline, + STATE(2826), 1, + sym_comment, + ACTIONS(5706), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213696,20 +213655,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, - [88495] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [88432] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5737), 1, - anon_sym_DOT_DOT2, - STATE(2834), 1, + ACTIONS(1810), 1, + sym__unquoted_pattern, + STATE(2827), 1, sym_comment, - ACTIONS(2144), 2, + ACTIONS(908), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(5739), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2146), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213721,20 +213678,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, - [88526] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [88459] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5741), 1, - anon_sym_DOT_DOT2, - STATE(2835), 1, + ACTIONS(5654), 1, + anon_sym_EQ2, + ACTIONS(5729), 1, + sym_long_flag_identifier, + STATE(2828), 1, sym_comment, - ACTIONS(2152), 2, + STATE(3221), 1, + sym__flag_equals_value, + ACTIONS(4282), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5743), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2154), 11, + ACTIONS(4280), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213746,14 +213707,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, - [88557] = 4, + [88492] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2836), 1, - sym_comment, - STATE(2839), 1, + ACTIONS(5590), 1, + anon_sym_and2, + STATE(528), 1, aux_sym__repeat_newline, - ACTIONS(5529), 15, + STATE(2829), 1, + sym_comment, + ACTIONS(5708), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213766,21 +213729,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, - [88584] = 6, + [88521] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5531), 1, + ACTIONS(5544), 1, anon_sym_and2, - ACTIONS(5745), 1, - sym__newline, - STATE(2798), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2837), 1, + STATE(2830), 1, sym_comment, - ACTIONS(5606), 13, + ACTIONS(5721), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213794,15 +213755,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [88615] = 4, + [88550] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2838), 1, - sym_comment, - STATE(2841), 1, - aux_sym__repeat_newline, - ACTIONS(5536), 15, + ACTIONS(2903), 1, sym__newline, + ACTIONS(5555), 1, + anon_sym_and2, + ACTIONS(5576), 1, + anon_sym_xor2, + STATE(2806), 1, + aux_sym__repeat_newline, + STATE(2831), 1, + sym_comment, + ACTIONS(5704), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213814,18 +213780,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, - [88642] = 4, + [88583] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(517), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5562), 1, + anon_sym_and2, + ACTIONS(5578), 1, + anon_sym_xor2, + STATE(2808), 1, aux_sym__repeat_newline, - STATE(2839), 1, + STATE(2832), 1, sym_comment, - ACTIONS(5748), 15, - sym__newline, + ACTIONS(5706), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -213837,25 +213806,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [88669] = 8, + [88616] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4879), 1, + ACTIONS(4901), 1, anon_sym_DASH2, - ACTIONS(5288), 1, + ACTIONS(5335), 1, anon_sym_DOT2, - STATE(2552), 1, + STATE(2562), 1, sym_path, - STATE(2613), 1, + STATE(2570), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2840), 1, + STATE(2833), 1, sym_comment, - STATE(2930), 1, + STATE(2871), 1, sym_cell_path, - ACTIONS(4877), 11, + ACTIONS(4899), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -213867,14 +213834,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [88704] = 4, + [88651] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2841), 1, + STATE(2834), 1, sym_comment, - ACTIONS(5750), 15, + ACTIONS(5588), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213890,16 +213857,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [88731] = 5, + [88678] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5555), 1, + ACTIONS(5590), 1, anon_sym_and2, - STATE(517), 1, + ACTIONS(5612), 1, + anon_sym_xor2, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2842), 1, + STATE(2835), 1, sym_comment, - ACTIONS(5748), 14, + ACTIONS(5708), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213912,18 +213881,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, - [88760] = 5, + [88709] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5557), 1, + ACTIONS(5544), 1, anon_sym_and2, - STATE(517), 1, + ACTIONS(5546), 1, + anon_sym_xor2, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2843), 1, + STATE(2836), 1, sym_comment, - ACTIONS(5750), 14, + ACTIONS(5721), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213936,20 +213906,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_xor2, anon_sym_or2, - [88789] = 6, + [88740] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5555), 1, - anon_sym_and2, - ACTIONS(5563), 1, - anon_sym_xor2, - STATE(517), 1, + STATE(2834), 1, aux_sym__repeat_newline, - STATE(2844), 1, + STATE(2837), 1, sym_comment, - ACTIONS(5748), 13, + ACTIONS(5731), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213962,19 +213927,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, - [88820] = 6, + [88767] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5557), 1, - anon_sym_and2, - ACTIONS(5569), 1, - anon_sym_xor2, - STATE(517), 1, + STATE(2699), 1, aux_sym__repeat_newline, - STATE(2845), 1, + STATE(2838), 1, sym_comment, - ACTIONS(5750), 13, + ACTIONS(5733), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -213987,15 +213950,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, - [88851] = 4, + [88794] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(517), 1, + ACTIONS(5544), 1, + anon_sym_and2, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2846), 1, + STATE(2839), 1, sym_comment, - ACTIONS(5588), 15, + ACTIONS(5542), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214008,21 +213975,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, - [88878] = 6, + [88823] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(5456), 1, anon_sym_EQ2, - ACTIONS(5754), 1, + ACTIONS(5737), 1, sym__space, - STATE(2847), 1, + STATE(2840), 1, sym_comment, - STATE(3124), 1, + STATE(3072), 1, sym__flag_equals_value, - ACTIONS(5752), 13, + ACTIONS(5735), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214036,18 +214002,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [88909] = 6, + [88854] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5538), 1, + ACTIONS(5555), 1, anon_sym_and2, - ACTIONS(5756), 1, + ACTIONS(5739), 1, sym__newline, - STATE(2800), 1, + STATE(2711), 1, aux_sym__repeat_newline, - STATE(2848), 1, + STATE(2841), 1, + sym_comment, + ACTIONS(5731), 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, + [88885] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5562), 1, + anon_sym_and2, + ACTIONS(5742), 1, + sym__newline, + STATE(2712), 1, + aux_sym__repeat_newline, + STATE(2842), 1, sym_comment, - ACTIONS(5640), 13, + ACTIONS(5733), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214061,18 +214052,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [88940] = 6, + [88916] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4470), 1, + ACTIONS(4477), 1, sym__space, ACTIONS(5456), 1, anon_sym_EQ2, - STATE(2849), 1, + STATE(2843), 1, sym_comment, - STATE(3067), 1, + STATE(3112), 1, sym__flag_equals_value, - ACTIONS(4468), 13, + ACTIONS(4475), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214086,22 +214077,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [88971] = 8, + [88947] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5555), 1, + anon_sym_and2, + ACTIONS(5576), 1, + anon_sym_xor2, + STATE(2746), 1, + aux_sym__repeat_newline, + STATE(2844), 1, + sym_comment, + ACTIONS(5731), 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, + [88980] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5562), 1, + anon_sym_and2, + ACTIONS(5578), 1, + anon_sym_xor2, + STATE(2759), 1, + aux_sym__repeat_newline, + STATE(2845), 1, + sym_comment, + ACTIONS(5733), 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, + [89013] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2760), 1, + aux_sym__repeat_newline, + STATE(2846), 1, + sym_comment, + ACTIONS(5745), 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, + [89040] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1889), 1, + ACTIONS(1851), 1, anon_sym_DASH2, - ACTIONS(5288), 1, + ACTIONS(5335), 1, anon_sym_DOT2, - STATE(2552), 1, + STATE(2562), 1, sym_path, - STATE(2613), 1, + STATE(2570), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2850), 1, + STATE(2847), 1, sym_comment, - STATE(2930), 1, + STATE(2871), 1, sym_cell_path, - ACTIONS(1886), 11, + ACTIONS(1848), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -214113,22 +214179,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [89006] = 8, + [89075] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1884), 1, + ACTIONS(1878), 1, anon_sym_DASH2, - ACTIONS(5288), 1, + ACTIONS(5335), 1, anon_sym_DOT2, - STATE(2552), 1, + STATE(2562), 1, sym_path, - STATE(2613), 1, + STATE(2570), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2851), 1, + STATE(2848), 1, sym_comment, - STATE(3052), 1, + STATE(3104), 1, sym_cell_path, - ACTIONS(1882), 11, + ACTIONS(1876), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -214140,22 +214206,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [89041] = 8, + [89110] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1850), 1, + ACTIONS(1846), 1, anon_sym_DASH2, - ACTIONS(5288), 1, + ACTIONS(5335), 1, anon_sym_DOT2, - STATE(2552), 1, + STATE(2562), 1, sym_path, - STATE(2613), 1, + STATE(2570), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2852), 1, + STATE(2849), 1, sym_comment, - STATE(2946), 1, + STATE(2961), 1, sym_cell_path, - ACTIONS(1848), 11, + ACTIONS(1844), 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, + [89145] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1870), 1, + anon_sym_DASH2, + ACTIONS(5335), 1, + anon_sym_DOT2, + STATE(2562), 1, + sym_path, + STATE(2570), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2850), 1, + sym_comment, + STATE(3121), 1, + sym_cell_path, + ACTIONS(1868), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -214167,20 +214260,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [89076] = 8, + [89180] = 8, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1840), 1, anon_sym_DASH2, - ACTIONS(5288), 1, + ACTIONS(5335), 1, anon_sym_DOT2, - STATE(2552), 1, + STATE(2562), 1, sym_path, - STATE(2613), 1, + STATE(2570), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2853), 1, + STATE(2851), 1, sym_comment, - STATE(3088), 1, + STATE(2933), 1, sym_cell_path, ACTIONS(1838), 11, anon_sym_EQ, @@ -214194,22 +214287,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [89111] = 8, + [89215] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1864), 1, + ACTIONS(1874), 1, anon_sym_DASH2, - ACTIONS(5288), 1, + ACTIONS(5335), 1, anon_sym_DOT2, - STATE(2552), 1, + STATE(2562), 1, sym_path, - STATE(2613), 1, + STATE(2570), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(2854), 1, + STATE(2852), 1, sym_comment, - STATE(2867), 1, + STATE(2877), 1, sym_cell_path, - ACTIONS(1862), 11, + ACTIONS(1872), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -214221,14 +214314,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [89146] = 4, + [89250] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(517), 1, + STATE(2774), 1, aux_sym__repeat_newline, - STATE(2855), 1, + STATE(2853), 1, sym_comment, - ACTIONS(5675), 15, + ACTIONS(5747), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214244,43 +214337,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [89173] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1756), 1, - anon_sym_LPAREN2, - ACTIONS(2164), 1, - sym__space, - STATE(2856), 1, - sym_comment, - STATE(5243), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2166), 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, - [89204] = 6, - ACTIONS(103), 1, + [89277] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1756), 1, - anon_sym_LPAREN2, - ACTIONS(2132), 1, - sym__space, - STATE(2857), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2854), 1, sym_comment, - STATE(5243), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2134), 13, + ACTIONS(5749), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214293,15 +214357,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, - [89235] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [89304] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2774), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2858), 1, + STATE(2855), 1, sym_comment, - ACTIONS(5604), 15, + ACTIONS(5751), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214317,19 +214383,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [89262] = 6, - ACTIONS(103), 1, + [89331] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1756), 1, - anon_sym_LPAREN2, - ACTIONS(2066), 1, - sym__space, - STATE(2859), 1, - sym_comment, - STATE(5243), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2068), 13, + ACTIONS(5555), 1, + anon_sym_and2, + ACTIONS(5753), 1, sym__newline, + STATE(2785), 1, + aux_sym__repeat_newline, + STATE(2856), 1, + sym_comment, + ACTIONS(5745), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214341,20 +214406,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, - [89293] = 6, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [89362] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1756), 1, - anon_sym_LPAREN2, - ACTIONS(2070), 1, - sym__space, - STATE(2860), 1, - sym_comment, - STATE(5243), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2072), 13, + ACTIONS(5562), 1, + anon_sym_and2, + ACTIONS(5756), 1, sym__newline, + STATE(2839), 1, + aux_sym__repeat_newline, + STATE(2857), 1, + sym_comment, + ACTIONS(5747), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214366,19 +214431,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, - [89324] = 6, - ACTIONS(103), 1, + anon_sym_xor2, + anon_sym_or2, + [89393] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1689), 1, - sym__space, - ACTIONS(2554), 1, - anon_sym_LPAREN2, - ACTIONS(2556), 1, - sym__unquoted_pattern, - STATE(2861), 1, + ACTIONS(5590), 1, + anon_sym_and2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2858), 1, sym_comment, - ACTIONS(1615), 13, + ACTIONS(5749), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214391,17 +214455,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, - [89355] = 5, + anon_sym_xor2, + anon_sym_or2, + [89422] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5555), 1, + ACTIONS(5544), 1, anon_sym_and2, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2862), 1, + STATE(2859), 1, sym_comment, - ACTIONS(5588), 14, + ACTIONS(5751), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214416,15 +214481,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [89384] = 4, + [89451] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(517), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5555), 1, + anon_sym_and2, + ACTIONS(5576), 1, + anon_sym_xor2, + STATE(2788), 1, aux_sym__repeat_newline, - STATE(2863), 1, + STATE(2860), 1, sym_comment, - ACTIONS(5553), 15, - sym__newline, + ACTIONS(5745), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214436,24 +214506,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, - [89411] = 7, + [89484] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5555), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(5562), 1, anon_sym_and2, - ACTIONS(5563), 1, + ACTIONS(5578), 1, anon_sym_xor2, - ACTIONS(5636), 1, - anon_sym_or2, - STATE(517), 1, + STATE(2698), 1, aux_sym__repeat_newline, - STATE(2864), 1, + STATE(2861), 1, sym_comment, - ACTIONS(5759), 12, - sym__newline, + ACTIONS(5747), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -214465,14 +214532,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [89444] = 4, + anon_sym_or2, + [89517] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2694), 1, + ACTIONS(5590), 1, + anon_sym_and2, + ACTIONS(5612), 1, + anon_sym_xor2, + STATE(528), 1, aux_sym__repeat_newline, - STATE(2865), 1, + STATE(2862), 1, sym_comment, - ACTIONS(5683), 15, + ACTIONS(5749), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214485,21 +214557,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, - [89471] = 6, + [89548] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1756), 1, - anon_sym_LPAREN2, - STATE(2866), 1, + ACTIONS(5759), 1, + anon_sym_DOT_DOT2, + STATE(2863), 1, sym_comment, - STATE(5243), 1, - sym__expr_parenthesized_immediate, ACTIONS(2066), 2, ts_builtin_sym_end, sym__space, + ACTIONS(5761), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, ACTIONS(2068), 11, sym__newline, anon_sym_SEMI, @@ -214512,36 +214583,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, - [89501] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2580), 1, - anon_sym_DASH2, - STATE(2867), 1, - sym_comment, - ACTIONS(2578), 14, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [89527] = 3, + [89579] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2868), 1, + ACTIONS(5544), 1, + anon_sym_and2, + ACTIONS(5546), 1, + anon_sym_xor2, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2864), 1, sym_comment, - ACTIONS(5761), 15, - anon_sym_else, - anon_sym_catch, + ACTIONS(5751), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214554,65 +214607,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, - [89551] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2869), 1, - sym_comment, - ACTIONS(1802), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1800), 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, - [89577] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5763), 1, - anon_sym_LBRACK2, - STATE(2870), 1, - sym_comment, - ACTIONS(2116), 2, - anon_sym_LBRACK, - anon_sym_DASH2, - ACTIONS(2114), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [89605] = 6, + anon_sym_or2, + [89610] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1756), 1, - anon_sym_LPAREN2, - STATE(2871), 1, + ACTIONS(5763), 1, + anon_sym_DOT_DOT2, + STATE(2865), 1, sym_comment, - STATE(5243), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2164), 2, + ACTIONS(2074), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2166), 11, + ACTIONS(5765), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2076), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214624,37 +214633,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, - [89635] = 6, + [89641] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5767), 1, - anon_sym_DASH2, - ACTIONS(5769), 1, - anon_sym_DOT_DOT2, - STATE(2872), 1, + STATE(2709), 1, + aux_sym__repeat_newline, + STATE(2866), 1, sym_comment, - ACTIONS(5771), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5765), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5567), 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, - [89665] = 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [89668] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2873), 1, + STATE(2714), 1, + aux_sym__repeat_newline, + STATE(2867), 1, sym_comment, - ACTIONS(5385), 15, - ts_builtin_sym_end, + ACTIONS(5572), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214666,16 +214675,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, - [89689] = 3, - ACTIONS(3), 1, + [89695] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2874), 1, + ACTIONS(1018), 1, + sym__space, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern, + STATE(2868), 1, sym_comment, - ACTIONS(5308), 15, - ts_builtin_sym_end, + ACTIONS(1002), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214687,19 +214702,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, - [89713] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [89726] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(2875), 1, - sym_comment, - ACTIONS(1806), 3, - ts_builtin_sym_end, + ACTIONS(2166), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1808), 12, + ACTIONS(5767), 1, + anon_sym_LBRACK2, + STATE(2869), 1, + sym_comment, + ACTIONS(2168), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214711,13 +214725,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - sym__unquoted_pattern, - [89739] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [89754] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2876), 1, + STATE(2870), 1, sym_comment, - ACTIONS(5385), 15, + ACTIONS(5298), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -214733,12 +214748,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [89763] = 3, + [89778] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2877), 1, + ACTIONS(1846), 1, + anon_sym_DASH2, + STATE(2871), 1, + sym_comment, + ACTIONS(1844), 14, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [89804] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2872), 1, sym_comment, - ACTIONS(5308), 15, + ACTIONS(5385), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -214754,50 +214791,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [89787] = 13, + [89828] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(870), 1, - sym_raw_string_begin, - ACTIONS(3273), 1, - anon_sym_DQUOTE, - ACTIONS(3275), 1, - anon_sym_SQUOTE, - ACTIONS(3277), 1, - anon_sym_BQUOTE, - ACTIONS(3279), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3281), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5773), 1, - aux_sym_env_var_token1, - STATE(2878), 1, - sym_comment, - STATE(2983), 1, - sym__inter_single_quotes, - STATE(3101), 1, - sym__inter_double_quotes, - STATE(4799), 2, - sym_val_string, - sym_val_interpolated, - STATE(2508), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [89831] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1756), 1, - anon_sym_LPAREN2, - STATE(2879), 1, + ACTIONS(5769), 1, + anon_sym_and2, + STATE(2873), 1, sym_comment, - STATE(5243), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2132), 2, + ACTIONS(5672), 14, ts_builtin_sym_end, - sym__space, - ACTIONS(2134), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214809,48 +214811,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [89861] = 14, + anon_sym_xor2, + anon_sym_or2, + [89854] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5775), 1, - sym_identifier, - ACTIONS(5780), 1, - anon_sym_DOLLAR, - ACTIONS(5783), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5786), 1, - anon_sym_DASH_DASH, - ACTIONS(5789), 1, - anon_sym_DASH2, - STATE(2542), 1, - sym_param_long_flag, - STATE(2679), 1, - sym__param_name, - STATE(3309), 1, - sym_param_short_flag, - STATE(3337), 1, - sym_param_rest, - STATE(3338), 1, - sym_param_opt, - STATE(3644), 1, - sym_parameter, - STATE(2880), 2, - sym_comment, - aux_sym_parameter_parens_repeat1, - ACTIONS(5778), 3, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - [89907] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(2881), 1, + STATE(2874), 1, sym_comment, - ACTIONS(1844), 3, + ACTIONS(4749), 15, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1846), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214862,86 +214831,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, - sym__unquoted_pattern, - [89933] = 17, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [89878] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5792), 1, + ACTIONS(5771), 1, sym_identifier, - ACTIONS(5794), 1, + ACTIONS(5773), 1, sym__newline, - ACTIONS(5796), 1, + ACTIONS(5775), 1, anon_sym_RBRACK, - ACTIONS(5798), 1, + ACTIONS(5777), 1, anon_sym_DOLLAR, - ACTIONS(5800), 1, + ACTIONS(5779), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5802), 1, + ACTIONS(5781), 1, anon_sym_DASH_DASH, - ACTIONS(5804), 1, + ACTIONS(5783), 1, anon_sym_DASH2, - STATE(2542), 1, + STATE(2559), 1, sym_param_long_flag, - STATE(2679), 1, + STATE(2644), 1, sym__param_name, - STATE(2882), 1, + STATE(2875), 1, sym_comment, - STATE(3251), 1, + STATE(3196), 1, aux_sym_parameter_parens_repeat1, - STATE(3309), 1, - sym_param_short_flag, - STATE(3328), 1, + STATE(3270), 1, aux_sym__repeat_newline, - STATE(3337), 1, - sym_param_rest, - STATE(3338), 1, - sym_param_opt, - STATE(3644), 1, - sym_parameter, - [89985] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5792), 1, - sym_identifier, - ACTIONS(5794), 1, - sym__newline, - ACTIONS(5798), 1, - anon_sym_DOLLAR, - ACTIONS(5800), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5802), 1, - anon_sym_DASH_DASH, - ACTIONS(5804), 1, - anon_sym_DASH2, - ACTIONS(5806), 1, - anon_sym_RPAREN, - STATE(2542), 1, - sym_param_long_flag, - STATE(2679), 1, - sym__param_name, - STATE(2883), 1, - sym_comment, - STATE(3255), 1, - aux_sym_parameter_parens_repeat1, - STATE(3309), 1, + STATE(3292), 1, sym_param_short_flag, - STATE(3328), 1, - aux_sym__repeat_newline, - STATE(3337), 1, - sym_param_rest, - STATE(3338), 1, + STATE(3351), 1, sym_param_opt, - STATE(3644), 1, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, sym_parameter, - [90037] = 4, + [89930] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2884), 1, + ACTIONS(2587), 1, + anon_sym_LPAREN2, + ACTIONS(2589), 1, + sym__unquoted_pattern, + STATE(2876), 1, sym_comment, - ACTIONS(2094), 2, + ACTIONS(2583), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(2096), 13, + ACTIONS(2585), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -214953,65 +214893,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, - [90063] = 5, - ACTIONS(103), 1, + [89960] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5575), 1, - sym__space, - STATE(2885), 1, + ACTIONS(2638), 1, + anon_sym_DASH2, + STATE(2877), 1, sym_comment, - STATE(2920), 1, - aux_sym_attribute_repeat1, - ACTIONS(5808), 13, + ACTIONS(2636), 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_RPAREN, - anon_sym_RBRACE, - [90091] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5810), 1, - sym__newline, - STATE(751), 1, - aux_sym__pipe_separator, - STATE(2886), 1, - sym_comment, - STATE(3431), 1, - aux_sym__repeat_newline, - ACTIONS(5813), 3, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2273), 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, - [90123] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [89986] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2887), 1, + STATE(2878), 1, sym_comment, - ACTIONS(1572), 2, + ACTIONS(1770), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1574), 13, + ACTIONS(1768), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -215025,16 +214937,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [90149] = 4, - ACTIONS(103), 1, + [90012] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5074), 1, - anon_sym_EQ2, - STATE(2888), 1, + ACTIONS(5769), 1, + anon_sym_and2, + ACTIONS(5785), 1, + anon_sym_xor2, + STATE(2879), 1, sym_comment, - ACTIONS(5076), 14, + ACTIONS(5680), 13, + ts_builtin_sym_end, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215045,18 +214959,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_RBRACE, - anon_sym_COLON2, - [90175] = 5, + anon_sym_or2, + [90040] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2880), 1, + sym_comment, + ACTIONS(5678), 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, + [90064] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5575), 1, + ACTIONS(5662), 1, sym__space, - STATE(2889), 1, + STATE(2881), 1, sym_comment, - STATE(2910), 1, + STATE(2913), 1, aux_sym_attribute_repeat1, - ACTIONS(5518), 13, + ACTIONS(5492), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215070,115 +215004,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90203] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1598), 1, - sym__unquoted_pattern, - ACTIONS(2910), 1, - anon_sym_DOLLAR, - ACTIONS(5815), 1, - anon_sym_DOT, - STATE(2890), 1, - sym_comment, - STATE(3637), 1, - sym__immediate_decimal, - ACTIONS(5817), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5819), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3762), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1582), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [90243] = 6, + [90092] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2138), 1, - anon_sym_DASH2, - ACTIONS(5821), 1, - anon_sym_DOT_DOT2, - STATE(2891), 1, - sym_comment, - ACTIONS(5823), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2136), 11, - anon_sym_EQ, + ACTIONS(5771), 1, sym_identifier, + ACTIONS(5773), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5777), 1, anon_sym_DOLLAR, + ACTIONS(5779), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5781), 1, anon_sym_DASH_DASH, - [90273] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2146), 1, + ACTIONS(5783), 1, anon_sym_DASH2, - ACTIONS(5825), 1, - anon_sym_DOT_DOT2, - STATE(2892), 1, - sym_comment, - ACTIONS(5827), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2144), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + ACTIONS(5787), 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, - [90303] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2893), 1, + STATE(2559), 1, + sym_param_long_flag, + STATE(2644), 1, + sym__param_name, + STATE(2882), 1, sym_comment, - ACTIONS(1663), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1661), 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, - [90329] = 5, + STATE(2966), 1, + aux_sym__repeat_newline, + STATE(3142), 1, + aux_sym_parameter_parens_repeat1, + STATE(3292), 1, + sym_param_short_flag, + STATE(3351), 1, + sym_param_opt, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, + sym_parameter, + [90144] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5575), 1, - sym__space, - STATE(2885), 1, - aux_sym_attribute_repeat1, - STATE(2894), 1, + STATE(2883), 1, sym_comment, - ACTIONS(5829), 13, + ACTIONS(1816), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1818), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215190,18 +215060,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, + sym__unquoted_pattern, + [90170] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5771), 1, + sym_identifier, + ACTIONS(5773), 1, + sym__newline, + ACTIONS(5777), 1, + anon_sym_DOLLAR, + ACTIONS(5779), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5781), 1, + anon_sym_DASH_DASH, + ACTIONS(5783), 1, + anon_sym_DASH2, + ACTIONS(5789), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - [90357] = 4, + STATE(2559), 1, + sym_param_long_flag, + STATE(2644), 1, + sym__param_name, + STATE(2884), 1, + sym_comment, + STATE(3128), 1, + aux_sym_parameter_parens_repeat1, + STATE(3270), 1, + aux_sym__repeat_newline, + STATE(3292), 1, + sym_param_short_flag, + STATE(3351), 1, + sym_param_opt, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, + sym_parameter, + [90222] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2895), 1, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern, + STATE(2885), 1, sym_comment, - ACTIONS(1738), 3, + ACTIONS(1018), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1740), 12, + ACTIONS(1002), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215213,20 +215120,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, - sym__unquoted_pattern, - [90383] = 6, + [90252] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2566), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(2568), 1, + ACTIONS(2021), 1, sym__unquoted_pattern, - STATE(2896), 1, + STATE(2886), 1, sym_comment, - ACTIONS(2562), 2, + ACTIONS(2533), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2564), 11, + ACTIONS(2535), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215238,19 +215144,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, - [90413] = 6, + [90282] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2554), 1, - anon_sym_LPAREN2, - ACTIONS(2556), 1, - sym__unquoted_pattern, - STATE(2897), 1, + STATE(2887), 1, sym_comment, - ACTIONS(1689), 2, + ACTIONS(1854), 3, ts_builtin_sym_end, sym__space, - ACTIONS(1615), 11, + anon_sym_LPAREN2, + ACTIONS(1856), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215262,43 +215165,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, - [90443] = 6, + sym__unquoted_pattern, + [90308] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2100), 1, - anon_sym_DASH2, - ACTIONS(5831), 1, - anon_sym_DOT_DOT2, - STATE(2898), 1, + ACTIONS(5769), 1, + anon_sym_and2, + ACTIONS(5785), 1, + anon_sym_xor2, + STATE(2888), 1, sym_comment, - ACTIONS(5833), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2098), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5672), 13, + 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, - [90473] = 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_or2, + [90336] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2154), 1, + STATE(2889), 1, + sym_comment, + ACTIONS(1572), 2, anon_sym_DASH2, - ACTIONS(5835), 1, anon_sym_DOT_DOT2, - STATE(2899), 1, - sym_comment, - ACTIONS(5837), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 11, + ACTIONS(1574), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -215310,16 +215209,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [90503] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [90362] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2900), 1, + ACTIONS(5134), 1, + anon_sym_EQ2, + STATE(2890), 1, sym_comment, - ACTIONS(2120), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2122), 13, + ACTIONS(5136), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215330,18 +215231,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, - [90529] = 4, + anon_sym_COLON2, + [90388] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5104), 1, - anon_sym_EQ2, - STATE(2901), 1, + STATE(2891), 1, sym_comment, - ACTIONS(5106), 14, - sym__newline, + ACTIONS(5140), 2, sym__space, + anon_sym_EQ2, + ACTIONS(5142), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215352,15 +215253,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_COLON2, - [90555] = 3, - ACTIONS(3), 1, + [90414] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2902), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + STATE(2892), 1, sym_comment, - ACTIONS(5385), 15, + ACTIONS(2001), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2003), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215372,15 +215279,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_and2, - anon_sym_xor2, - anon_sym_or2, - [90579] = 3, + [90444] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2903), 1, + ACTIONS(5793), 1, + anon_sym_DASH2, + ACTIONS(5795), 1, + anon_sym_DOT_DOT2, + STATE(2893), 1, + sym_comment, + ACTIONS(5797), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5791), 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, + [90474] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2894), 1, sym_comment, - ACTIONS(5646), 15, + ACTIONS(5385), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -215396,12 +215324,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [90603] = 3, + [90498] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(2904), 1, + STATE(2895), 1, sym_comment, - ACTIONS(5648), 15, + ACTIONS(5298), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -215417,14 +215345,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [90627] = 4, + [90522] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5839), 1, - anon_sym_and2, - STATE(2905), 1, + STATE(2896), 1, sym_comment, - ACTIONS(5646), 14, + ACTIONS(5385), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -215437,18 +215363,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, - [90653] = 4, - ACTIONS(3), 1, + [90546] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5841), 1, - anon_sym_and2, - STATE(2906), 1, + ACTIONS(5070), 1, + anon_sym_EQ2, + STATE(2897), 1, sym_comment, - ACTIONS(5648), 14, - ts_builtin_sym_end, + ACTIONS(5072), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215459,19 +215386,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_xor2, - anon_sym_or2, - [90679] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_COLON2, + [90572] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5839), 1, - anon_sym_and2, - ACTIONS(5843), 1, - anon_sym_xor2, - STATE(2907), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2581), 1, + anon_sym_LPAREN2, + STATE(2898), 1, sym_comment, - ACTIONS(5646), 13, + ACTIONS(2525), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2527), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215483,17 +215412,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_or2, - [90707] = 5, + [90602] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5841), 1, - anon_sym_and2, - ACTIONS(5845), 1, - anon_sym_xor2, - STATE(2908), 1, + STATE(2899), 1, sym_comment, - ACTIONS(5648), 13, + ACTIONS(5652), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -215506,20 +215430,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, - [90735] = 6, + [90626] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5590), 1, - anon_sym_EQ2, - STATE(2909), 1, + STATE(2900), 1, sym_comment, - STATE(3223), 1, - sym__flag_equals_value, - ACTIONS(4470), 2, + ACTIONS(2385), 3, ts_builtin_sym_end, sym__space, - ACTIONS(4468), 11, + anon_sym_LPAREN2, + ACTIONS(2387), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215531,16 +215454,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, - [90765] = 5, + sym__unquoted_pattern, + [90652] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5575), 1, + ACTIONS(908), 1, sym__space, - STATE(2910), 1, + ACTIONS(5172), 1, + sym__unquoted_pattern, + STATE(2901), 1, sym_comment, - STATE(2920), 1, - aux_sym_attribute_repeat1, - ACTIONS(5847), 13, + ACTIONS(866), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215554,43 +215478,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [90793] = 6, - ACTIONS(103), 1, + [90680] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern, - ACTIONS(1946), 1, - anon_sym_LPAREN2, - STATE(2911), 1, + ACTIONS(5799), 1, + anon_sym_LBRACK2, + STATE(2902), 1, sym_comment, - ACTIONS(1942), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1944), 11, + ACTIONS(2168), 2, + anon_sym_LBRACK, + anon_sym_DASH2, + ACTIONS(2166), 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, - [90823] = 6, + 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, + [90708] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2570), 1, - anon_sym_LPAREN2, - ACTIONS(2572), 1, - sym__unquoted_pattern, - STATE(2912), 1, + STATE(2903), 1, sym_comment, - ACTIONS(994), 2, - ts_builtin_sym_end, + ACTIONS(5122), 2, sym__space, - ACTIONS(996), 11, + anon_sym_EQ2, + ACTIONS(5124), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215602,19 +215521,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [90853] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [90734] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2570), 1, - anon_sym_LPAREN2, - ACTIONS(2572), 1, - sym__unquoted_pattern, - STATE(2913), 1, + STATE(2904), 1, sym_comment, - ACTIONS(1012), 2, + ACTIONS(5672), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1004), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215626,12 +215541,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, - [90883] = 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [90758] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2914), 1, + ACTIONS(5801), 1, + anon_sym_and2, + STATE(2905), 1, sym_comment, - ACTIONS(5650), 15, + ACTIONS(5652), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -215644,16 +215564,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, - [90907] = 3, - ACTIONS(3), 1, + [90784] = 5, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2915), 1, + ACTIONS(5662), 1, + sym__space, + STATE(2906), 1, sym_comment, - ACTIONS(5657), 15, - ts_builtin_sym_end, + STATE(2930), 1, + aux_sym_attribute_repeat1, + ACTIONS(5803), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215665,18 +215587,98 @@ static const uint16_t 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, - [90931] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [90812] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5839), 1, - anon_sym_and2, - STATE(2916), 1, + ACTIONS(5795), 1, + anon_sym_DOT_DOT2, + ACTIONS(5807), 1, + anon_sym_DASH2, + STATE(2907), 1, + sym_comment, + ACTIONS(5797), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5805), 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, + [90842] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5795), 1, + anon_sym_DOT_DOT2, + ACTIONS(5811), 1, + anon_sym_DASH2, + STATE(2908), 1, + sym_comment, + ACTIONS(5797), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5809), 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, + [90872] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + ACTIONS(5813), 1, + anon_sym_DOT, + STATE(2909), 1, + sym_comment, + STATE(3660), 1, + sym__immediate_decimal, + ACTIONS(5815), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5817), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3753), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1584), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [90912] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5654), 1, + anon_sym_EQ2, + STATE(2910), 1, sym_comment, - ACTIONS(5650), 14, + STATE(3189), 1, + sym__flag_equals_value, + ACTIONS(4477), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(4475), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215688,17 +215690,15 @@ static const uint16_t 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, - [90957] = 4, - ACTIONS(3), 1, + [90942] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5841), 1, - anon_sym_and2, - STATE(2917), 1, + STATE(2911), 1, sym_comment, - ACTIONS(5657), 14, - ts_builtin_sym_end, + ACTIONS(2130), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2132), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215710,18 +215710,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_xor2, - anon_sym_or2, - [90983] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [90968] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2918), 1, + ACTIONS(5654), 1, + anon_sym_EQ2, + STATE(2912), 1, sym_comment, - ACTIONS(2325), 3, + STATE(3139), 1, + sym__flag_equals_value, + ACTIONS(5737), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(2327), 12, + ACTIONS(5735), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215733,18 +215736,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, - sym__unquoted_pattern, - [91009] = 5, - ACTIONS(3), 1, + [90998] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5841), 1, - anon_sym_and2, - ACTIONS(5845), 1, - anon_sym_xor2, - STATE(2919), 1, + ACTIONS(5662), 1, + sym__space, + STATE(2913), 1, sym_comment, - ACTIONS(5657), 13, - ts_builtin_sym_end, + STATE(2924), 1, + aux_sym_attribute_repeat1, + ACTIONS(5819), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215756,17 +215757,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_or2, - [91037] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [91026] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5851), 1, + ACTIONS(5496), 1, + anon_sym_EQ2, + ACTIONS(5821), 1, + sym__newline, + ACTIONS(5823), 1, sym__space, - STATE(2920), 2, + STATE(2914), 1, sym_comment, - aux_sym_attribute_repeat1, - ACTIONS(5849), 13, - sym__newline, + STATE(3085), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(5825), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -215778,20 +215784,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, - [91063] = 6, + [91058] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5590), 1, - anon_sym_EQ2, - STATE(2921), 1, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + STATE(2915), 1, sym_comment, - STATE(3263), 1, - sym__flag_equals_value, - ACTIONS(5754), 2, + STATE(5228), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2094), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5752), 11, + ACTIONS(2096), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215803,19 +215808,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, - [91093] = 6, - ACTIONS(3), 1, + [91088] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5839), 1, - anon_sym_and2, - ACTIONS(5843), 1, - anon_sym_xor2, - ACTIONS(5854), 1, - anon_sym_or2, - STATE(2922), 1, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + STATE(2916), 1, sym_comment, - ACTIONS(5618), 12, + STATE(5228), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2098), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2100), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215827,54 +215832,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, - [91123] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5792), 1, - sym_identifier, - ACTIONS(5794), 1, - sym__newline, - ACTIONS(5798), 1, - anon_sym_DOLLAR, - ACTIONS(5800), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5802), 1, - anon_sym_DASH_DASH, - ACTIONS(5804), 1, - anon_sym_DASH2, - ACTIONS(5856), 1, - anon_sym_PIPE, - STATE(2542), 1, - sym_param_long_flag, - STATE(2679), 1, - sym__param_name, - STATE(2923), 1, - sym_comment, - STATE(3256), 1, - aux_sym_parameter_parens_repeat1, - STATE(3309), 1, - sym_param_short_flag, - STATE(3328), 1, - aux_sym__repeat_newline, - STATE(3337), 1, - sym_param_rest, - STATE(3338), 1, - sym_param_opt, - STATE(3644), 1, - sym_parameter, - [91175] = 6, + [91118] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1956), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(1962), 1, + ACTIONS(2021), 1, sym__unquoted_pattern, - STATE(2924), 1, + STATE(2917), 1, sym_comment, - ACTIONS(2574), 2, + ACTIONS(2011), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2576), 11, + ACTIONS(2013), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215886,19 +215856,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, - [91205] = 6, - ACTIONS(103), 1, + [91148] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1756), 1, - anon_sym_LPAREN2, - STATE(2925), 1, + STATE(2918), 1, sym_comment, - STATE(4797), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5567), 2, + ACTIONS(5298), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(5565), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215910,19 +215874,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, - [91235] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [91172] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1956), 1, + ACTIONS(2602), 1, anon_sym_LPAREN2, - ACTIONS(1962), 1, + ACTIONS(2604), 1, sym__unquoted_pattern, - STATE(2926), 1, + STATE(2919), 1, sym_comment, - ACTIONS(1952), 2, + ACTIONS(1004), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1954), 11, + ACTIONS(994), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215934,21 +215901,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, - [91265] = 6, + [91202] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5769), 1, - anon_sym_DOT_DOT2, - ACTIONS(5860), 1, + ACTIONS(5827), 1, + sym_identifier, + ACTIONS(5832), 1, + anon_sym_DOLLAR, + ACTIONS(5835), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5838), 1, + anon_sym_DASH_DASH, + ACTIONS(5841), 1, anon_sym_DASH2, - STATE(2927), 1, + STATE(2559), 1, + sym_param_long_flag, + STATE(2644), 1, + sym__param_name, + STATE(3292), 1, + sym_param_short_flag, + STATE(3351), 1, + sym_param_opt, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, + sym_parameter, + STATE(2920), 2, sym_comment, - ACTIONS(5771), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5858), 11, - anon_sym_EQ, + aux_sym_parameter_parens_repeat1, + ACTIONS(5830), 3, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + [91248] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5801), 1, + anon_sym_and2, + ACTIONS(5844), 1, + anon_sym_xor2, + STATE(2921), 1, + sym_comment, + ACTIONS(5652), 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, + [91276] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5719), 1, + aux_sym__immediate_decimal_token5, + STATE(2922), 1, + sym_comment, + ACTIONS(1752), 3, sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1750), 11, + anon_sym_EQ, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -215958,19 +215978,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91295] = 6, + anon_sym_LPAREN2, + [91304] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(2513), 1, - anon_sym_LPAREN2, - STATE(2928), 1, - sym_comment, - ACTIONS(2509), 2, + ACTIONS(5496), 1, + anon_sym_EQ2, + ACTIONS(5846), 1, ts_builtin_sym_end, + ACTIONS(5848), 1, sym__space, - ACTIONS(2511), 11, + STATE(2923), 1, + sym_comment, + STATE(3126), 1, + aux_sym_attribute_repeat1, + ACTIONS(5492), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -215982,16 +216004,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [91325] = 5, + [91336] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2114), 1, + ACTIONS(5852), 1, sym__space, - ACTIONS(5862), 1, - anon_sym_LBRACK2, - STATE(2929), 1, + STATE(2924), 2, sym_comment, - ACTIONS(2116), 13, + aux_sym_attribute_repeat1, + ACTIONS(5850), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216005,41 +216026,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91353] = 4, + [91362] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1850), 1, + ACTIONS(5771), 1, + sym_identifier, + ACTIONS(5773), 1, + sym__newline, + ACTIONS(5777), 1, + anon_sym_DOLLAR, + ACTIONS(5779), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5781), 1, + anon_sym_DASH_DASH, + ACTIONS(5783), 1, anon_sym_DASH2, - STATE(2930), 1, + ACTIONS(5855), 1, + anon_sym_RBRACK, + STATE(2559), 1, + sym_param_long_flag, + STATE(2644), 1, + sym__param_name, + STATE(2875), 1, + aux_sym__repeat_newline, + STATE(2925), 1, sym_comment, - ACTIONS(1848), 14, - anon_sym_EQ, + STATE(3229), 1, + aux_sym_parameter_parens_repeat1, + STATE(3292), 1, + sym_param_short_flag, + STATE(3351), 1, + sym_param_opt, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, + sym_parameter, + [91414] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5857), 1, + aux_sym__immediate_decimal_token5, + STATE(2926), 1, + sym_comment, + ACTIONS(1818), 3, sym_identifier, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1816), 11, + anon_sym_EQ, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91379] = 6, + anon_sym_LPAREN2, + [91442] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2529), 1, + ACTIONS(1714), 1, anon_sym_LPAREN2, - ACTIONS(2531), 1, - sym__unquoted_pattern, - STATE(2931), 1, + STATE(2927), 1, sym_comment, - ACTIONS(2525), 2, + STATE(4669), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5586), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2527), 11, + ACTIONS(5584), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216051,15 +216108,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, - [91409] = 4, - ACTIONS(103), 1, + [91472] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2932), 1, + STATE(2928), 1, sym_comment, - ACTIONS(5138), 2, - sym__space, - anon_sym_EQ2, - ACTIONS(5140), 13, + ACTIONS(5859), 15, + anon_sym_else, + anon_sym_catch, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216073,15 +216129,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91435] = 4, - ACTIONS(103), 1, + [91496] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2933), 1, + ACTIONS(5801), 1, + anon_sym_and2, + STATE(2929), 1, sym_comment, - ACTIONS(5128), 2, - sym__space, - anon_sym_EQ2, - ACTIONS(5130), 13, + ACTIONS(5678), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216093,76 +216149,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, - [91461] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5769), 1, - anon_sym_DOT_DOT2, - ACTIONS(5866), 1, - anon_sym_DASH2, - STATE(2934), 1, - sym_comment, - ACTIONS(5771), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5864), 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, - [91491] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5792), 1, - sym_identifier, - ACTIONS(5794), 1, - sym__newline, - ACTIONS(5798), 1, - anon_sym_DOLLAR, - ACTIONS(5800), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5802), 1, - anon_sym_DASH_DASH, - ACTIONS(5804), 1, - anon_sym_DASH2, - ACTIONS(5868), 1, - anon_sym_RBRACK, - STATE(2542), 1, - sym_param_long_flag, - STATE(2679), 1, - sym__param_name, - STATE(2935), 1, - sym_comment, - STATE(3141), 1, - aux_sym_parameter_parens_repeat1, - STATE(3309), 1, - sym_param_short_flag, - STATE(3328), 1, - aux_sym__repeat_newline, - STATE(3337), 1, - sym_param_rest, - STATE(3338), 1, - sym_param_opt, - STATE(3644), 1, - sym_parameter, - [91543] = 4, + anon_sym_xor2, + anon_sym_or2, + [91522] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(2936), 1, - sym_comment, - ACTIONS(5074), 2, + ACTIONS(5662), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5076), 13, + STATE(2924), 1, + aux_sym_attribute_repeat1, + STATE(2930), 1, + sym_comment, + ACTIONS(5861), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216176,55 +216174,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [91569] = 17, + [91550] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5792), 1, - sym_identifier, - ACTIONS(5794), 1, + ACTIONS(5863), 1, sym__newline, - ACTIONS(5798), 1, - anon_sym_DOLLAR, - ACTIONS(5800), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5802), 1, - anon_sym_DASH_DASH, - ACTIONS(5804), 1, - anon_sym_DASH2, - ACTIONS(5870), 1, - anon_sym_RPAREN, - STATE(2542), 1, - sym_param_long_flag, - STATE(2679), 1, - sym__param_name, - STATE(2937), 1, + STATE(789), 1, + aux_sym__pipe_separator, + STATE(2931), 1, sym_comment, - STATE(3145), 1, - aux_sym_parameter_parens_repeat1, - STATE(3309), 1, - sym_param_short_flag, - STATE(3328), 1, + STATE(3433), 1, aux_sym__repeat_newline, - STATE(3337), 1, - sym_param_rest, - STATE(3338), 1, - sym_param_opt, - STATE(3644), 1, - sym_parameter, - [91621] = 6, + ACTIONS(5866), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2261), 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, + [91582] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5273), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(5872), 1, - anon_sym_DOT, - STATE(2938), 1, + ACTIONS(5118), 1, + anon_sym_EQ2, + STATE(2932), 1, sym_comment, - ACTIONS(1728), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1730), 11, + ACTIONS(5120), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216235,19 +216219,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, - [91651] = 5, + anon_sym_RBRACE, + anon_sym_COLON2, + [91608] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5644), 1, - aux_sym__immediate_decimal_token5, - STATE(2939), 1, + ACTIONS(1874), 1, + anon_sym_DASH2, + STATE(2933), 1, sym_comment, - ACTIONS(1730), 3, + ACTIONS(1872), 14, + anon_sym_EQ, sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [91634] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2934), 1, + sym_comment, + ACTIONS(1649), 2, anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1728), 11, + anon_sym_DOT_DOT2, + ACTIONS(1647), 13, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -216257,21 +216263,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [91679] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [91660] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5841), 1, - anon_sym_and2, - ACTIONS(5845), 1, - anon_sym_xor2, - ACTIONS(5874), 1, - anon_sym_or2, - STATE(2940), 1, + ACTIONS(2068), 1, + anon_sym_DASH2, + ACTIONS(5868), 1, + anon_sym_DOT_DOT2, + STATE(2935), 1, sym_comment, - ACTIONS(5626), 12, - ts_builtin_sym_end, + ACTIONS(5870), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2066), 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, + [91690] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5122), 1, + anon_sym_EQ2, + STATE(2936), 1, + sym_comment, + ACTIONS(5124), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216282,48 +216309,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, - [91709] = 17, + anon_sym_RBRACE, + anon_sym_COLON2, + [91716] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5792), 1, + ACTIONS(2076), 1, + anon_sym_DASH2, + ACTIONS(5872), 1, + anon_sym_DOT_DOT2, + STATE(2937), 1, + sym_comment, + ACTIONS(5874), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2074), 11, + anon_sym_EQ, sym_identifier, - ACTIONS(5794), 1, sym__newline, - ACTIONS(5798), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5800), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5802), 1, anon_sym_DASH_DASH, - ACTIONS(5804), 1, - anon_sym_DASH2, - ACTIONS(5876), 1, - anon_sym_PIPE, - STATE(2542), 1, - sym_param_long_flag, - STATE(2679), 1, - sym__param_name, - STATE(2923), 1, - aux_sym__repeat_newline, - STATE(2941), 1, - sym_comment, - STATE(3161), 1, - aux_sym_parameter_parens_repeat1, - STATE(3309), 1, - sym_param_short_flag, - STATE(3337), 1, - sym_param_rest, - STATE(3338), 1, - sym_param_opt, - STATE(3644), 1, - sym_parameter, - [91761] = 3, - ACTIONS(3), 1, + [91746] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2942), 1, + STATE(2938), 1, sym_comment, - ACTIONS(4767), 15, - ts_builtin_sym_end, + ACTIONS(5100), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5102), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216335,22 +216355,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [91785] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [91772] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1756), 1, + ACTIONS(2595), 1, anon_sym_LPAREN2, - STATE(2943), 1, + ACTIONS(2597), 1, + sym__unquoted_pattern, + STATE(2939), 1, sym_comment, - STATE(5243), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2070), 2, + ACTIONS(2591), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2072), 11, + ACTIONS(2593), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216362,15 +216381,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, - [91815] = 4, + [91802] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(2944), 1, + ACTIONS(2620), 1, + anon_sym_LPAREN2, + ACTIONS(2622), 1, + sym__unquoted_pattern, + STATE(2940), 1, sym_comment, - ACTIONS(5088), 2, + ACTIONS(1706), 2, + ts_builtin_sym_end, sym__space, - anon_sym_EQ2, - ACTIONS(5090), 13, + ACTIONS(1604), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216382,17 +216405,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, - [91841] = 4, - ACTIONS(103), 1, + [91832] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2945), 1, + ACTIONS(5801), 1, + anon_sym_and2, + ACTIONS(5844), 1, + anon_sym_xor2, + ACTIONS(5876), 1, + anon_sym_or2, + STATE(2941), 1, sym_comment, - ACTIONS(5064), 2, - sym__space, - anon_sym_EQ2, - ACTIONS(5066), 13, + ACTIONS(5710), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216404,46 +216429,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, - [91867] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2616), 1, - anon_sym_DASH2, - STATE(2946), 1, - sym_comment, - ACTIONS(2614), 14, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [91893] = 7, + [91862] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5769), 1, + anon_sym_and2, + ACTIONS(5785), 1, + anon_sym_xor2, ACTIONS(5878), 1, - sym__newline, - STATE(751), 1, - aux_sym__pipe_separator, - STATE(2947), 1, + anon_sym_or2, + STATE(2942), 1, sym_comment, - STATE(3431), 1, - aux_sym__repeat_newline, - ACTIONS(5881), 3, + ACTIONS(5530), 12, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2273), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -216453,65 +216453,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, - [91925] = 4, + [91892] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1864), 1, + ACTIONS(2084), 1, anon_sym_DASH2, - STATE(2948), 1, + ACTIONS(5880), 1, + anon_sym_DOT_DOT2, + STATE(2943), 1, sym_comment, - ACTIONS(1862), 14, + ACTIONS(5882), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2082), 11, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [91951] = 5, + [91922] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5883), 1, - aux_sym__immediate_decimal_token5, - STATE(2949), 1, - sym_comment, - ACTIONS(1808), 3, + ACTIONS(5771), 1, sym_identifier, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1806), 11, - anon_sym_EQ, + ACTIONS(5773), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5777), 1, anon_sym_DOLLAR, + ACTIONS(5779), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5781), 1, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [91979] = 7, + ACTIONS(5783), 1, + anon_sym_DASH2, + ACTIONS(5884), 1, + anon_sym_RBRACK, + STATE(2559), 1, + sym_param_long_flag, + STATE(2644), 1, + sym__param_name, + STATE(2944), 1, + sym_comment, + STATE(3266), 1, + aux_sym_parameter_parens_repeat1, + STATE(3270), 1, + aux_sym__repeat_newline, + STATE(3292), 1, + sym_param_short_flag, + STATE(3351), 1, + sym_param_opt, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, + sym_parameter, + [91974] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5522), 1, + ACTIONS(5140), 1, anon_sym_EQ2, - ACTIONS(5885), 1, + STATE(2945), 1, + sym_comment, + ACTIONS(5142), 14, sym__newline, - ACTIONS(5887), 1, sym__space, - STATE(2950), 1, - sym_comment, - STATE(3039), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(5889), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216522,21 +216532,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, - [92011] = 7, + anon_sym_RBRACE, + anon_sym_COLON2, + [92000] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5522), 1, - anon_sym_EQ2, - ACTIONS(5891), 1, - ts_builtin_sym_end, - ACTIONS(5893), 1, - sym__space, - STATE(2951), 1, + STATE(2946), 1, sym_comment, - STATE(3119), 1, - aux_sym_attribute_repeat1, - ACTIONS(5518), 11, + ACTIONS(5134), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5136), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216548,15 +216554,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, - [92043] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [92026] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2952), 1, + STATE(2947), 1, sym_comment, - ACTIONS(5104), 2, + ACTIONS(2150), 2, sym__space, - anon_sym_EQ2, - ACTIONS(5106), 13, + anon_sym_LPAREN2, + ACTIONS(2152), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216570,13 +216578,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92069] = 3, - ACTIONS(3), 1, + [92052] = 6, + ACTIONS(103), 1, anon_sym_POUND, - STATE(2953), 1, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + STATE(2948), 1, sym_comment, - ACTIONS(5308), 15, + STATE(5228), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2102), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2104), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216588,19 +216602,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, - [92093] = 3, + [92082] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2954), 1, - sym_comment, - ACTIONS(5895), 15, - anon_sym_else, - anon_sym_catch, + ACTIONS(5886), 1, sym__newline, + STATE(789), 1, + aux_sym__pipe_separator, + STATE(2949), 1, + sym_comment, + STATE(3433), 1, + aux_sym__repeat_newline, + ACTIONS(5889), 3, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2261), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -216610,18 +216627,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, - [92117] = 4, + [92114] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5088), 1, - anon_sym_EQ2, - STATE(2955), 1, + STATE(2950), 1, sym_comment, - ACTIONS(5090), 14, - sym__newline, + ACTIONS(5070), 2, sym__space, + anon_sym_EQ2, + ACTIONS(5072), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216632,126 +216647,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COLON2, - [92143] = 17, + [92140] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5792), 1, + ACTIONS(5771), 1, sym_identifier, - ACTIONS(5794), 1, + ACTIONS(5773), 1, sym__newline, - ACTIONS(5798), 1, + ACTIONS(5777), 1, anon_sym_DOLLAR, - ACTIONS(5800), 1, + ACTIONS(5779), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5802), 1, + ACTIONS(5781), 1, anon_sym_DASH_DASH, - ACTIONS(5804), 1, + ACTIONS(5783), 1, anon_sym_DASH2, - ACTIONS(5897), 1, - anon_sym_RBRACK, - STATE(2542), 1, + ACTIONS(5891), 1, + anon_sym_RPAREN, + STATE(2559), 1, sym_param_long_flag, - STATE(2679), 1, + STATE(2644), 1, sym__param_name, - STATE(2882), 1, + STATE(2884), 1, aux_sym__repeat_newline, - STATE(2956), 1, + STATE(2951), 1, sym_comment, - STATE(3258), 1, + STATE(3255), 1, aux_sym_parameter_parens_repeat1, - STATE(3309), 1, + STATE(3292), 1, sym_param_short_flag, - STATE(3337), 1, - sym_param_rest, - STATE(3338), 1, + STATE(3351), 1, sym_param_opt, - STATE(3644), 1, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, sym_parameter, - [92195] = 17, + [92192] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + STATE(2952), 1, + sym_comment, + STATE(5228), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2106), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2108), 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, + [92222] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5792), 1, + ACTIONS(5771), 1, sym_identifier, - ACTIONS(5794), 1, + ACTIONS(5773), 1, sym__newline, - ACTIONS(5798), 1, + ACTIONS(5777), 1, anon_sym_DOLLAR, - ACTIONS(5800), 1, + ACTIONS(5779), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5802), 1, + ACTIONS(5781), 1, anon_sym_DASH_DASH, - ACTIONS(5804), 1, + ACTIONS(5783), 1, anon_sym_DASH2, - ACTIONS(5899), 1, - anon_sym_RPAREN, - STATE(2542), 1, + ACTIONS(5893), 1, + anon_sym_RBRACK, + STATE(2559), 1, sym_param_long_flag, - STATE(2679), 1, + STATE(2644), 1, sym__param_name, - STATE(2883), 1, + STATE(2944), 1, aux_sym__repeat_newline, - STATE(2957), 1, + STATE(2953), 1, sym_comment, - STATE(3132), 1, + STATE(3222), 1, aux_sym_parameter_parens_repeat1, - STATE(3309), 1, + STATE(3292), 1, sym_param_short_flag, - STATE(3337), 1, - sym_param_rest, - STATE(3338), 1, + STATE(3351), 1, sym_param_opt, - STATE(3644), 1, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, sym_parameter, - [92247] = 17, + [92274] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5792), 1, + ACTIONS(5771), 1, sym_identifier, - ACTIONS(5794), 1, + ACTIONS(5773), 1, sym__newline, - ACTIONS(5798), 1, + ACTIONS(5777), 1, anon_sym_DOLLAR, - ACTIONS(5800), 1, + ACTIONS(5779), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5802), 1, + ACTIONS(5781), 1, anon_sym_DASH_DASH, - ACTIONS(5804), 1, + ACTIONS(5783), 1, anon_sym_DASH2, - ACTIONS(5901), 1, - anon_sym_RBRACK, - STATE(2542), 1, + ACTIONS(5895), 1, + anon_sym_RPAREN, + STATE(2559), 1, sym_param_long_flag, - STATE(2679), 1, + STATE(2644), 1, sym__param_name, - STATE(2935), 1, - aux_sym__repeat_newline, - STATE(2958), 1, + STATE(2954), 1, sym_comment, - STATE(3152), 1, + STATE(2960), 1, + aux_sym__repeat_newline, + STATE(3251), 1, aux_sym_parameter_parens_repeat1, - STATE(3309), 1, + STATE(3292), 1, sym_param_short_flag, - STATE(3337), 1, - sym_param_rest, - STATE(3338), 1, + STATE(3351), 1, sym_param_opt, - STATE(3644), 1, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, sym_parameter, - [92299] = 6, + [92326] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1604), 1, anon_sym_DASH2, - ACTIONS(5769), 1, + ACTIONS(5795), 1, anon_sym_DOT_DOT2, - STATE(2959), 1, + STATE(2955), 1, sym_comment, - ACTIONS(5771), 2, + ACTIONS(5797), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1689), 11, + ACTIONS(1706), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -216763,16 +216802,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92329] = 4, - ACTIONS(103), 1, + [92356] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5064), 1, - anon_sym_EQ2, - STATE(2960), 1, + STATE(2956), 1, sym_comment, - ACTIONS(5066), 14, + ACTIONS(5680), 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, + [92380] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(2957), 1, + sym_comment, + ACTIONS(1738), 3, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, + ACTIONS(1740), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216783,16 +216844,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - anon_sym_COLON2, - [92355] = 4, + sym__unquoted_pattern, + [92406] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5128), 1, + ACTIONS(5100), 1, anon_sym_EQ2, - STATE(2961), 1, + STATE(2958), 1, sym_comment, - ACTIONS(5130), 14, + ACTIONS(5102), 14, sym__newline, sym__space, anon_sym_SEMI, @@ -216807,74 +216867,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RBRACE, anon_sym_COLON2, - [92381] = 17, + [92432] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5769), 1, + anon_sym_and2, + STATE(2959), 1, + sym_comment, + ACTIONS(5680), 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, + [92458] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5792), 1, + ACTIONS(5771), 1, sym_identifier, - ACTIONS(5794), 1, + ACTIONS(5773), 1, sym__newline, - ACTIONS(5798), 1, + ACTIONS(5777), 1, anon_sym_DOLLAR, - ACTIONS(5800), 1, + ACTIONS(5779), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5802), 1, + ACTIONS(5781), 1, anon_sym_DASH_DASH, - ACTIONS(5804), 1, + ACTIONS(5783), 1, anon_sym_DASH2, - ACTIONS(5903), 1, + ACTIONS(5897), 1, anon_sym_RPAREN, - STATE(2542), 1, + STATE(2559), 1, sym_param_long_flag, - STATE(2679), 1, + STATE(2644), 1, sym__param_name, - STATE(2937), 1, - aux_sym__repeat_newline, - STATE(2962), 1, + STATE(2960), 1, sym_comment, - STATE(3158), 1, + STATE(3133), 1, aux_sym_parameter_parens_repeat1, - STATE(3309), 1, + STATE(3270), 1, + aux_sym__repeat_newline, + STATE(3292), 1, sym_param_short_flag, - STATE(3337), 1, - sym_param_rest, - STATE(3338), 1, + STATE(3351), 1, sym_param_opt, - STATE(3644), 1, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, sym_parameter, - [92433] = 5, - ACTIONS(103), 1, + [92510] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(890), 1, - sym__space, - ACTIONS(5150), 1, - sym__unquoted_pattern, - STATE(2963), 1, + ACTIONS(2519), 1, + anon_sym_DASH2, + STATE(2961), 1, sym_comment, - ACTIONS(793), 13, + ACTIONS(2517), 14, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - [92461] = 4, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [92536] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5138), 1, - anon_sym_EQ2, - STATE(2964), 1, + STATE(2962), 1, sym_comment, - ACTIONS(5140), 14, + ACTIONS(5899), 15, + anon_sym_else, + anon_sym_catch, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -216885,18 +216965,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COLON2, - [92487] = 5, + [92560] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5839), 1, + ACTIONS(5801), 1, anon_sym_and2, - ACTIONS(5843), 1, + ACTIONS(5844), 1, anon_sym_xor2, - STATE(2965), 1, + STATE(2963), 1, sym_comment, - ACTIONS(5650), 13, + ACTIONS(5678), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -216910,35 +216990,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_or2, - [92515] = 4, - ACTIONS(103), 1, + [92588] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(890), 1, - sym__space, - STATE(2966), 1, + ACTIONS(2136), 1, + anon_sym_DASH2, + ACTIONS(5901), 1, + anon_sym_DOT_DOT2, + STATE(2964), 1, sym_comment, - ACTIONS(793), 13, + ACTIONS(5903), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2134), 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, - [92540] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [92618] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(864), 1, + sym_raw_string_begin, + ACTIONS(3217), 1, + anon_sym_DQUOTE, + ACTIONS(3219), 1, + anon_sym_SQUOTE, + ACTIONS(3221), 1, + anon_sym_BQUOTE, + ACTIONS(3223), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(3225), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5905), 1, + aux_sym_env_var_token1, + STATE(2965), 1, + sym_comment, + STATE(3009), 1, + sym__inter_single_quotes, + STATE(3012), 1, + sym__inter_double_quotes, + STATE(4772), 2, + sym_val_string, + sym_val_interpolated, + STATE(2499), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [92662] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5771), 1, + sym_identifier, + ACTIONS(5773), 1, + sym__newline, + ACTIONS(5777), 1, + anon_sym_DOLLAR, + ACTIONS(5779), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5781), 1, + anon_sym_DASH_DASH, + ACTIONS(5783), 1, + anon_sym_DASH2, + ACTIONS(5907), 1, + anon_sym_PIPE, + STATE(2559), 1, + sym_param_long_flag, + STATE(2644), 1, + sym__param_name, + STATE(2966), 1, + sym_comment, + STATE(3134), 1, + aux_sym_parameter_parens_repeat1, + STATE(3270), 1, + aux_sym__repeat_newline, + STATE(3292), 1, + sym_param_short_flag, + STATE(3351), 1, + sym_param_opt, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, + sym_parameter, + [92714] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2311), 1, - sym__space, STATE(2967), 1, sym_comment, - ACTIONS(2313), 13, + ACTIONS(5118), 2, + sym__space, + anon_sym_EQ2, + ACTIONS(5120), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216952,21 +217102,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92565] = 7, - ACTIONS(3), 1, + [92740] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5905), 1, - sym__newline, - STATE(893), 1, - aux_sym__pipe_separator, + ACTIONS(5280), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(5909), 1, + anon_sym_DOT, STATE(2968), 1, sym_comment, - STATE(3431), 1, - aux_sym__repeat_newline, - ACTIONS(5908), 2, + ACTIONS(1750), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1752), 11, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2273), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -216976,14 +217126,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, - [92596] = 4, + [92770] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2337), 1, + ACTIONS(2521), 1, sym__space, STATE(2969), 1, sym_comment, - ACTIONS(2339), 13, + ACTIONS(2523), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -216997,42 +217147,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [92621] = 11, + [92795] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1598), 1, - sym__unquoted_pattern, - ACTIONS(2910), 1, - anon_sym_DOLLAR, - ACTIONS(5910), 1, - anon_sym_DOT, + ACTIONS(5913), 1, + anon_sym_AT2, + ACTIONS(5915), 1, + anon_sym_DASH2, STATE(2970), 1, sym_comment, - STATE(3731), 1, - sym__immediate_decimal, - ACTIONS(5912), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5914), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3762), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1582), 3, + STATE(3378), 1, + sym_param_completer, + ACTIONS(5911), 11, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, - anon_sym_EQ_GT, - [92660] = 4, - ACTIONS(103), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [92824] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2345), 1, - sym__space, STATE(2971), 1, sym_comment, - ACTIONS(2347), 13, + ACTIONS(5859), 14, + ts_builtin_sym_end, + anon_sym_else, + anon_sym_catch, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217044,94 +217190,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [92685] = 6, - ACTIONS(3), 1, + [92847] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5237), 1, - anon_sym_LPAREN2, - ACTIONS(5866), 1, - anon_sym_DASH2, + ACTIONS(5919), 1, + sym__space, STATE(2972), 1, sym_comment, - STATE(4767), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5864), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5917), 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, - [92714] = 4, + anon_sym_RBRACE, + [92872] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(793), 1, + ACTIONS(5260), 1, + anon_sym_LPAREN2, + ACTIONS(5807), 1, anon_sym_DASH2, STATE(2973), 1, sym_comment, - ACTIONS(890), 13, + STATE(4704), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5805), 11, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [92739] = 10, - ACTIONS(3), 1, + [92901] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1611), 1, - anon_sym_DOT, - ACTIONS(2910), 1, - anon_sym_DOLLAR, + ACTIONS(5923), 1, + sym__space, STATE(2974), 1, sym_comment, - STATE(3761), 1, - sym__immediate_decimal, - ACTIONS(5817), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(5819), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3760), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1607), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [92776] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5916), 1, + ACTIONS(5921), 13, sym__newline, - STATE(893), 1, - aux_sym__pipe_separator, - STATE(2975), 1, - sym_comment, - STATE(3431), 1, - aux_sym__repeat_newline, - ACTIONS(5919), 2, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2273), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -217141,39 +217253,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, - [92807] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - anon_sym_DASH2, - STATE(2976), 1, - sym_comment, - ACTIONS(1689), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [92832] = 6, + anon_sym_RBRACE, + [92926] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5921), 1, - anon_sym_catch, - ACTIONS(5923), 1, + ACTIONS(5925), 1, + anon_sym_else, + ACTIONS(5927), 1, sym__newline, - STATE(2977), 1, + STATE(2975), 1, sym_comment, - STATE(3121), 1, + STATE(3032), 1, aux_sym__repeat_newline, - ACTIONS(5926), 11, + ACTIONS(5930), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217185,18 +217278,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [92861] = 6, + [92955] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5928), 1, + ACTIONS(5932), 1, anon_sym_else, - ACTIONS(5930), 1, + ACTIONS(5934), 1, sym__newline, - STATE(2978), 1, + STATE(2976), 1, sym_comment, - STATE(3054), 1, + STATE(3034), 1, aux_sym__repeat_newline, - ACTIONS(5933), 11, + ACTIONS(5937), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217208,111 +217301,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [92890] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2979), 1, - sym_comment, - ACTIONS(2327), 2, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(2325), 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, - [92915] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5237), 1, - anon_sym_LPAREN2, - ACTIONS(5767), 1, - anon_sym_DASH2, - STATE(2980), 1, - sym_comment, - STATE(4767), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5765), 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, - [92944] = 13, + [92984] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1582), 1, - sym__space, - ACTIONS(1598), 1, - sym__unquoted_pattern, - ACTIONS(3261), 1, - anon_sym_LPAREN2, - ACTIONS(3659), 1, - anon_sym_DOLLAR, - ACTIONS(5935), 1, - anon_sym_DOT, - ACTIONS(5937), 1, - aux_sym__immediate_decimal_token1, ACTIONS(5939), 1, - aux_sym__immediate_decimal_token2, - STATE(2981), 1, - sym_comment, - STATE(3662), 1, - sym__immediate_decimal, - ACTIONS(1586), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5941), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3853), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [92987] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1615), 1, - anon_sym_DASH2, - ACTIONS(2554), 1, - anon_sym_LPAREN2, - ACTIONS(2556), 1, - sym__unquoted_pattern_in_record, - STATE(2982), 1, + anon_sym_LBRACK2, + STATE(2977), 1, sym_comment, - ACTIONS(1689), 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, - [93016] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2479), 1, + ACTIONS(2166), 2, + ts_builtin_sym_end, sym__space, - STATE(2983), 1, - sym_comment, - ACTIONS(2481), 13, + ACTIONS(2168), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217324,60 +217323,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, - [93041] = 6, + [93011] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5350), 1, - anon_sym_DOT, - ACTIONS(5352), 1, - aux_sym__immediate_decimal_token5, - STATE(2984), 1, - sym_comment, - ACTIONS(1730), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(1728), 10, - anon_sym_EQ, + ACTIONS(5941), 1, + anon_sym_else, + ACTIONS(5943), 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, - [93070] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2331), 1, - anon_sym_DASH2, - STATE(2985), 1, + STATE(2978), 1, sym_comment, - ACTIONS(2329), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(3055), 1, + aux_sym__repeat_newline, + ACTIONS(5946), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [93095] = 4, + [93040] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2463), 1, + ACTIONS(5586), 1, sym__space, - STATE(2986), 1, + STATE(2979), 1, sym_comment, - ACTIONS(2465), 13, + ACTIONS(5584), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217391,36 +217367,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93120] = 4, + [93065] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2560), 1, - anon_sym_DASH2, - STATE(2987), 1, - sym_comment, - ACTIONS(2558), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(5948), 1, + anon_sym_catch, + ACTIONS(5950), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [93145] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1862), 1, - sym__space, - STATE(2988), 1, + STATE(2980), 1, sym_comment, - ACTIONS(1864), 13, - sym__newline, + STATE(3060), 1, + aux_sym__repeat_newline, + ACTIONS(5953), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217432,19 +217390,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, - [93170] = 6, + [93094] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5943), 1, - anon_sym_catch, - ACTIONS(5945), 1, + ACTIONS(5955), 1, + anon_sym_else, + ACTIONS(5957), 1, sym__newline, - STATE(2977), 1, - aux_sym__repeat_newline, - STATE(2989), 1, + STATE(2981), 1, sym_comment, - ACTIONS(5948), 11, + STATE(3125), 1, + aux_sym__repeat_newline, + ACTIONS(5960), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217456,65 +217413,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [93199] = 4, - ACTIONS(3), 1, + [93123] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2481), 1, - anon_sym_DASH2, - STATE(2990), 1, + ACTIONS(2134), 1, + sym__space, + STATE(2982), 1, sym_comment, - ACTIONS(2479), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(2136), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [93224] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [93148] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1944), 1, - anon_sym_DASH2, - ACTIONS(1946), 1, - anon_sym_LPAREN2, - STATE(2991), 1, + ACTIONS(2445), 1, + sym__space, + STATE(2983), 1, sym_comment, - ACTIONS(1942), 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, - [93253] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5878), 1, + ACTIONS(2447), 13, sym__newline, - STATE(751), 1, - aux_sym__pipe_separator, - STATE(2992), 1, - sym_comment, - STATE(3431), 1, - aux_sym__repeat_newline, - ACTIONS(5881), 2, - ts_builtin_sym_end, anon_sym_SEMI, - ACTIONS(2273), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -217524,14 +217453,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, - [93284] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [93173] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2349), 1, + ACTIONS(4582), 1, sym__space, - STATE(2993), 1, + STATE(2984), 1, sym_comment, - ACTIONS(2351), 13, + ACTIONS(4580), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217545,17 +217476,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93309] = 4, - ACTIONS(103), 1, + [93198] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2994), 1, - sym_comment, - ACTIONS(5064), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_EQ2, - ACTIONS(5066), 11, + ACTIONS(1918), 1, sym__newline, + ACTIONS(5962), 1, + anon_sym_catch, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2985), 1, + sym_comment, + ACTIONS(1916), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217566,16 +217498,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, - [93334] = 4, + anon_sym_RPAREN, + [93227] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2995), 1, + STATE(2986), 1, sym_comment, - ACTIONS(5088), 3, + ACTIONS(5140), 3, ts_builtin_sym_end, sym__space, anon_sym_EQ2, - ACTIONS(5090), 11, + ACTIONS(5142), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217587,14 +217520,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, - [93359] = 4, + [93252] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2467), 1, + ACTIONS(2612), 1, sym__space, - STATE(2996), 1, + STATE(2987), 1, sym_comment, - ACTIONS(2469), 13, + ACTIONS(2614), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217608,37 +217541,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93384] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2481), 1, - anon_sym_DASH2, - STATE(2997), 1, - sym_comment, - ACTIONS(2479), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [93409] = 4, + [93277] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(2998), 1, - sym_comment, - ACTIONS(5104), 3, - ts_builtin_sym_end, + ACTIONS(2616), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5106), 11, + STATE(2988), 1, + sym_comment, + ACTIONS(2618), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217650,60 +217560,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, - [93434] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2485), 1, - anon_sym_DASH2, - STATE(2999), 1, - sym_comment, - ACTIONS(2483), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [93459] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [93302] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2489), 1, - anon_sym_DASH2, - STATE(3000), 1, + ACTIONS(2513), 1, + sym__space, + STATE(2989), 1, sym_comment, - ACTIONS(2487), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [93484] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5950), 1, - anon_sym_else, - ACTIONS(5952), 1, + ACTIONS(2515), 13, sym__newline, - STATE(2978), 1, - aux_sym__repeat_newline, - STATE(3001), 1, - sym_comment, - ACTIONS(5955), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217715,14 +217582,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [93513] = 4, + anon_sym_RBRACE, + [93327] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2471), 1, + ACTIONS(2517), 1, sym__space, - STATE(3002), 1, + STATE(2990), 1, sym_comment, - ACTIONS(2473), 13, + ACTIONS(2519), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217736,15 +217604,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93538] = 4, - ACTIONS(103), 1, + [93352] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5959), 1, - sym__space, - STATE(3003), 1, - sym_comment, - ACTIONS(5957), 13, + ACTIONS(5965), 1, + anon_sym_catch, + ACTIONS(5967), 1, sym__newline, + STATE(2991), 1, + sym_comment, + STATE(3030), 1, + aux_sym__repeat_newline, + ACTIONS(5970), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217756,15 +217627,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, - [93563] = 4, + [93381] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5377), 1, + ACTIONS(2461), 1, sym__space, - STATE(3004), 1, + STATE(2992), 1, sym_comment, - ACTIONS(5375), 13, + ACTIONS(2463), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217778,14 +217648,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93588] = 4, + [93406] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2475), 1, - sym__space, - STATE(3005), 1, + STATE(2993), 1, sym_comment, - ACTIONS(2477), 13, + ACTIONS(2130), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2132), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217797,16 +217669,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, - [93613] = 4, + [93431] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5963), 1, + ACTIONS(5848), 1, sym__space, - STATE(3006), 1, + ACTIONS(5972), 1, + ts_builtin_sym_end, + STATE(2994), 1, sym_comment, - ACTIONS(5961), 13, + STATE(3020), 1, + aux_sym_attribute_repeat1, + ACTIONS(5861), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217818,16 +217692,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [93638] = 4, + [93460] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + STATE(2995), 1, + sym_comment, + STATE(3955), 1, + sym__immediate_decimal, + ACTIONS(5974), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5976), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(871), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1633), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [93497] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5440), 1, + ACTIONS(2465), 1, sym__space, - STATE(3007), 1, + STATE(2996), 1, sym_comment, - ACTIONS(5438), 13, + ACTIONS(2467), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217841,18 +217740,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93663] = 6, + [93522] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2564), 1, + STATE(2997), 1, + sym_comment, + ACTIONS(2387), 2, anon_sym_DASH2, - ACTIONS(2566), 1, - anon_sym_LPAREN2, - ACTIONS(2568), 1, sym__unquoted_pattern_in_record, - STATE(3008), 1, - sym_comment, - ACTIONS(2562), 11, + ACTIONS(2385), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -217864,18 +217760,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93692] = 6, + anon_sym_LPAREN2, + [93547] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5885), 1, - sym__newline, - ACTIONS(5887), 1, + ACTIONS(2545), 1, sym__space, - STATE(3009), 1, + STATE(2998), 1, sym_comment, - STATE(3034), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(5965), 11, + ACTIONS(2547), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217887,14 +217781,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [93721] = 4, + anon_sym_RBRACE, + [93572] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1604), 1, + anon_sym_DASH2, + ACTIONS(2620), 1, + anon_sym_LPAREN2, + ACTIONS(2622), 1, + sym__unquoted_pattern_in_record, + STATE(2999), 1, + sym_comment, + ACTIONS(1706), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [93601] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2626), 1, - sym__space, - STATE(3010), 1, + STATE(3000), 1, sym_comment, - ACTIONS(2628), 13, + ACTIONS(5134), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5136), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217906,20 +217826,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, - [93746] = 6, + [93626] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1937), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2003), 1, + anon_sym_DASH2, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + STATE(3001), 1, + sym_comment, + ACTIONS(2001), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(5967), 1, - anon_sym_catch, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(3011), 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, + [93655] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3002), 1, sym_comment, - ACTIONS(1935), 11, + ACTIONS(5100), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5102), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -217930,15 +217870,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [93680] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2499), 1, + anon_sym_DASH2, + STATE(3003), 1, + sym_comment, + ACTIONS(2497), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [93705] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(866), 1, + anon_sym_DASH2, + STATE(3004), 1, + sym_comment, + ACTIONS(908), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [93730] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2499), 1, + anon_sym_DASH2, + STATE(3005), 1, + sym_comment, + ACTIONS(2497), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [93755] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1604), 1, + anon_sym_DASH2, + STATE(3006), 1, + sym_comment, + ACTIONS(1706), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - [93775] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [93780] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5972), 1, + ACTIONS(4586), 1, sym__space, - STATE(3012), 1, + STATE(3007), 1, sym_comment, - ACTIONS(5970), 13, + ACTIONS(4584), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217952,14 +217975,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93800] = 4, + [93805] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2128), 1, + anon_sym_DASH2, + STATE(3008), 1, + sym_comment, + ACTIONS(2126), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [93830] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5976), 1, + ACTIONS(2497), 1, sym__space, - STATE(3013), 1, + STATE(3009), 1, sym_comment, - ACTIONS(5974), 13, + ACTIONS(2499), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217973,14 +218017,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93825] = 4, + [93855] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2535), 1, + anon_sym_DASH2, + STATE(3010), 1, + sym_comment, + ACTIONS(2533), 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, + [93884] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5980), 1, + ACTIONS(5421), 1, sym__space, - STATE(3014), 1, + STATE(3011), 1, sym_comment, - ACTIONS(5978), 13, + ACTIONS(5419), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -217994,14 +218061,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93850] = 4, + [93909] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2483), 1, + ACTIONS(2497), 1, sym__space, - STATE(3015), 1, + STATE(3012), 1, sym_comment, - ACTIONS(2485), 13, + ACTIONS(2499), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218015,60 +218082,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [93875] = 4, + [93934] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2620), 1, + ACTIONS(2013), 1, anon_sym_DASH2, - STATE(3016), 1, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern_in_record, + STATE(3013), 1, sym_comment, - ACTIONS(2618), 13, + ACTIONS(2011), 11, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93900] = 4, + [93963] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2628), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2527), 1, anon_sym_DASH2, - STATE(3017), 1, + ACTIONS(2581), 1, + anon_sym_LPAREN2, + STATE(3014), 1, sym_comment, - ACTIONS(2626), 13, + ACTIONS(2525), 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, + [93992] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3015), 1, + sym_comment, + ACTIONS(1740), 2, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1738), 12, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93925] = 6, + anon_sym_LPAREN2, + [94017] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(996), 1, + ACTIONS(2585), 1, anon_sym_DASH2, - ACTIONS(2570), 1, + ACTIONS(2587), 1, anon_sym_LPAREN2, - ACTIONS(2572), 1, + ACTIONS(2589), 1, sym__unquoted_pattern_in_record, - STATE(3018), 1, + STATE(3016), 1, sym_comment, - ACTIONS(994), 11, + ACTIONS(2583), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -218080,39 +218172,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [93954] = 4, - ACTIONS(103), 1, + [94046] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2487), 1, - sym__space, - STATE(3019), 1, + ACTIONS(5913), 1, + anon_sym_AT2, + ACTIONS(5980), 1, + anon_sym_DASH2, + STATE(3017), 1, + sym_comment, + STATE(3405), 1, + sym_param_completer, + ACTIONS(5978), 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, + [94075] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3018), 1, sym_comment, - ACTIONS(2489), 13, + ACTIONS(1818), 2, + anon_sym_DASH2, + sym__unquoted_pattern_in_record, + ACTIONS(1816), 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, - [93979] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [94100] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1004), 1, + STATE(3019), 1, + sym_comment, + ACTIONS(1856), 2, anon_sym_DASH2, - ACTIONS(2570), 1, - anon_sym_LPAREN2, - ACTIONS(2572), 1, sym__unquoted_pattern_in_record, - STATE(3020), 1, - sym_comment, - ACTIONS(1012), 11, + ACTIONS(1854), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -218124,14 +218236,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [94008] = 4, + anon_sym_LPAREN2, + [94125] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2602), 1, + ACTIONS(5982), 1, + ts_builtin_sym_end, + ACTIONS(5984), 1, sym__space, - STATE(3021), 1, + STATE(3020), 2, sym_comment, - ACTIONS(2604), 13, + aux_sym_attribute_repeat1, + ACTIONS(5850), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218143,16 +218259,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, - [94033] = 4, + [94152] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1689), 1, - sym__space, - STATE(3022), 1, + STATE(3021), 1, sym_comment, - ACTIONS(1615), 13, + ACTIONS(5070), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5072), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218164,38 +218280,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [94177] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2503), 1, + anon_sym_DASH2, + STATE(3022), 1, + sym_comment, + ACTIONS(2501), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - [94058] = 4, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [94202] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2606), 1, - sym__space, + ACTIONS(2507), 1, + anon_sym_DASH2, STATE(3023), 1, sym_comment, - ACTIONS(2608), 13, + ACTIONS(2505), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - [94083] = 4, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [94227] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2086), 1, - sym__space, - STATE(3024), 1, + ACTIONS(1921), 1, + aux_sym__where_predicate_lhs_path_head_token1, + ACTIONS(5987), 1, + sym__newline, + STATE(3024), 2, + aux_sym__repeat_newline, sym_comment, - ACTIONS(2088), 13, + ACTIONS(1916), 11, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [94254] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5990), 1, + anon_sym_else, + ACTIONS(5992), 1, sym__newline, + STATE(2981), 1, + aux_sym__repeat_newline, + STATE(3025), 1, + sym_comment, + ACTIONS(5995), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218207,21 +218367,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, - [94108] = 6, - ACTIONS(103), 1, + [94283] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5893), 1, - sym__space, - ACTIONS(5982), 1, - ts_builtin_sym_end, - STATE(3025), 1, - sym_comment, - STATE(3041), 1, - aux_sym_attribute_repeat1, - ACTIONS(5808), 11, + ACTIONS(5997), 1, sym__newline, + STATE(730), 1, + aux_sym__pipe_separator, + STATE(3026), 1, + sym_comment, + STATE(3433), 1, + aux_sym__repeat_newline, + ACTIONS(6000), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(2261), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -218231,14 +218391,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, - [94137] = 4, + [94314] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2313), 1, + ACTIONS(2391), 1, anon_sym_DASH2, - STATE(3026), 1, + STATE(3027), 1, sym_comment, - ACTIONS(2311), 13, + ACTIONS(2389), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -218252,36 +218412,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [94162] = 4, - ACTIONS(103), 1, + [94339] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2610), 1, - sym__space, - STATE(3027), 1, - sym_comment, - ACTIONS(2612), 13, + ACTIONS(6002), 1, + anon_sym_else, + ACTIONS(6004), 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, - [94187] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2614), 1, - sym__space, + STATE(2978), 1, + aux_sym__repeat_newline, STATE(3028), 1, sym_comment, - ACTIONS(2616), 13, - sym__newline, + ACTIONS(6007), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218293,19 +218435,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, - [94212] = 5, - ACTIONS(103), 1, + [94368] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5984), 1, - anon_sym_LBRACK2, + ACTIONS(6009), 1, + anon_sym_catch, + ACTIONS(6011), 1, + sym__newline, + STATE(2980), 1, + aux_sym__repeat_newline, STATE(3029), 1, sym_comment, - ACTIONS(2114), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2116), 11, - sym__newline, + ACTIONS(6014), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218316,15 +218457,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, - [94239] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + [94397] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5480), 1, - sym__space, + ACTIONS(6016), 1, + anon_sym_catch, + ACTIONS(6018), 1, + sym__newline, + STATE(2985), 1, + aux_sym__repeat_newline, STATE(3030), 1, sym_comment, - ACTIONS(5478), 13, - sym__newline, + ACTIONS(6021), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218336,39 +218481,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, - [94264] = 4, + [94426] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5986), 1, - anon_sym_catch, + ACTIONS(2523), 1, + anon_sym_DASH2, STATE(3031), 1, sym_comment, - ACTIONS(5988), 13, + ACTIONS(2521), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - [94289] = 4, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [94451] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6023), 1, + anon_sym_else, + ACTIONS(6025), 1, + sym__newline, STATE(3032), 1, sym_comment, - ACTIONS(2094), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2096), 11, - sym__newline, + STATE(3120), 1, + aux_sym__repeat_newline, + ACTIONS(6028), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218379,17 +218524,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [94314] = 5, + anon_sym_RPAREN, + [94480] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5191), 1, - sym__unquoted_pattern, + ACTIONS(2441), 1, + sym__space, STATE(3033), 1, sym_comment, - ACTIONS(890), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(793), 11, + ACTIONS(2443), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218401,18 +218544,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, - [94341] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94505] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5885), 1, + ACTIONS(6030), 1, + anon_sym_else, + ACTIONS(6032), 1, sym__newline, - ACTIONS(5887), 1, - sym__space, STATE(3034), 1, sym_comment, - STATE(3073), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(5990), 11, + STATE(3043), 1, + aux_sym__repeat_newline, + ACTIONS(6035), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218424,16 +218569,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94370] = 4, + [94534] = 4, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2066), 1, + sym__space, STATE(3035), 1, sym_comment, - ACTIONS(5138), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_EQ2, - ACTIONS(5140), 11, + ACTIONS(2068), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218445,14 +218588,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, - [94395] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [94559] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5994), 1, + ACTIONS(2074), 1, sym__space, STATE(3036), 1, sym_comment, - ACTIONS(5992), 13, + ACTIONS(2076), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218466,18 +218611,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94420] = 6, - ACTIONS(3), 1, + [94584] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1937), 1, + ACTIONS(5821), 1, sym__newline, - ACTIONS(5996), 1, - anon_sym_else, - STATE(517), 1, - aux_sym__repeat_newline, + ACTIONS(5823), 1, + sym__space, STATE(3037), 1, sym_comment, - ACTIONS(1935), 11, + STATE(3042), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(6037), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218489,14 +218634,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94449] = 4, + [94613] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2491), 1, + ACTIONS(2082), 1, sym__space, STATE(3038), 1, sym_comment, - ACTIONS(2493), 13, + ACTIONS(2084), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218510,18 +218655,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94474] = 6, - ACTIONS(103), 1, + [94638] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5885), 1, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + ACTIONS(6039), 1, + anon_sym_DOT, + STATE(3039), 1, + sym_comment, + STATE(3682), 1, + sym__immediate_decimal, + ACTIONS(6041), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6043), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3753), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1584), 3, sym__newline, - ACTIONS(5887), 1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [94677] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2501), 1, sym__space, - STATE(3039), 1, + STATE(3040), 1, sym_comment, - STATE(3073), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(5999), 11, + ACTIONS(2503), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218533,14 +218703,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94503] = 4, + anon_sym_RBRACE, + [94702] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2495), 1, + ACTIONS(2505), 1, sym__space, - STATE(3040), 1, + STATE(3041), 1, sym_comment, - ACTIONS(2497), 13, + ACTIONS(2507), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218554,18 +218725,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94528] = 5, + [94727] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6001), 1, - ts_builtin_sym_end, - ACTIONS(6003), 1, + ACTIONS(5821), 1, + sym__newline, + ACTIONS(5823), 1, sym__space, - STATE(3041), 2, + STATE(3042), 1, sym_comment, - aux_sym_attribute_repeat1, - ACTIONS(5849), 11, - sym__newline, + STATE(3058), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(6045), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218576,19 +218747,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, - [94555] = 6, - ACTIONS(103), 1, + anon_sym_RPAREN, + [94756] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5891), 1, - ts_builtin_sym_end, - ACTIONS(5893), 1, - sym__space, - STATE(3042), 1, - sym_comment, - STATE(3119), 1, - aux_sym_attribute_repeat1, - ACTIONS(5518), 11, + ACTIONS(1918), 1, sym__newline, + ACTIONS(6047), 1, + anon_sym_else, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(3043), 1, + sym_comment, + ACTIONS(1916), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218599,59 +218770,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, - [94584] = 5, + anon_sym_RPAREN, + [94785] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1940), 1, - aux_sym__where_predicate_lhs_path_head_token1, - ACTIONS(6006), 1, - sym__newline, - STATE(3043), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1935), 11, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - anon_sym_LPAREN, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2871), 1, anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [94611] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6011), 1, - anon_sym_AT2, - ACTIONS(6013), 1, - anon_sym_DASH2, STATE(3044), 1, sym_comment, - STATE(3314), 1, - sym_param_completer, - ACTIONS(6009), 11, - anon_sym_EQ, - sym_identifier, + STATE(3943), 1, + sym__immediate_decimal, + ACTIONS(5974), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5976), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(829), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1584), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [94640] = 4, + anon_sym_EQ_GT, + [94822] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4668), 1, + ACTIONS(1844), 1, sym__space, STATE(3045), 1, sym_comment, - ACTIONS(4666), 13, + ACTIONS(1846), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218665,18 +218819,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94665] = 4, + [94847] = 13, ACTIONS(103), 1, anon_sym_POUND, - STATE(3046), 1, - sym_comment, - ACTIONS(2120), 3, - ts_builtin_sym_end, + ACTIONS(1584), 1, sym__space, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(3205), 1, anon_sym_LPAREN2, - ACTIONS(2122), 11, + ACTIONS(3669), 1, + anon_sym_DOLLAR, + ACTIONS(6050), 1, + anon_sym_DOT, + ACTIONS(6052), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6054), 1, + aux_sym__immediate_decimal_token2, + STATE(3046), 1, + sym_comment, + STATE(3642), 1, + sym__immediate_decimal, + ACTIONS(1588), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6056), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3816), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [94890] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6058), 1, sym__newline, + STATE(730), 1, + aux_sym__pipe_separator, + STATE(3047), 1, + sym_comment, + STATE(3433), 1, + aux_sym__repeat_newline, + ACTIONS(6061), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(2261), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -218686,37 +218873,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, - [94690] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1956), 1, - anon_sym_LPAREN2, - ACTIONS(1962), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2576), 1, - anon_sym_DASH2, - STATE(3047), 1, - sym_comment, - ACTIONS(2574), 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, - [94719] = 4, + [94921] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2578), 1, + ACTIONS(6065), 1, sym__space, STATE(3048), 1, sym_comment, - ACTIONS(2580), 13, + ACTIONS(6063), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218730,14 +218894,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94744] = 4, + [94946] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2455), 1, + ACTIONS(6069), 1, sym__space, STATE(3049), 1, sym_comment, - ACTIONS(2457), 13, + ACTIONS(6067), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218751,18 +218915,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94769] = 6, + [94971] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6015), 1, - anon_sym_catch, - ACTIONS(6017), 1, - sym__newline, + ACTIONS(2593), 1, + anon_sym_DASH2, + ACTIONS(2595), 1, + anon_sym_LPAREN2, + ACTIONS(2597), 1, + sym__unquoted_pattern_in_record, STATE(3050), 1, sym_comment, - STATE(3109), 1, - aux_sym__repeat_newline, - ACTIONS(6020), 11, + ACTIONS(2591), 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, + [95000] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5391), 1, + sym__space, + STATE(3051), 1, + sym_comment, + ACTIONS(5389), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218774,14 +218958,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94798] = 4, + anon_sym_RBRACE, + [95025] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6024), 1, + ACTIONS(1872), 1, sym__space, - STATE(3051), 1, + STATE(3052), 1, sym_comment, - ACTIONS(6022), 13, + ACTIONS(1874), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218795,35 +218980,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94823] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2339), 1, - anon_sym_DASH2, - STATE(3052), 1, - sym_comment, - ACTIONS(2337), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [94848] = 4, + [95050] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6028), 1, + ACTIONS(4634), 1, sym__space, STATE(3053), 1, sym_comment, - ACTIONS(6026), 13, + ACTIONS(4632), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218837,18 +219001,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [94873] = 6, - ACTIONS(3), 1, + [95075] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1937), 1, - sym__newline, - ACTIONS(6030), 1, - anon_sym_else, - STATE(517), 1, - aux_sym__repeat_newline, STATE(3054), 1, sym_comment, - ACTIONS(1935), 11, + ACTIONS(2150), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2152), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218859,19 +219022,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, - [94902] = 6, + [95100] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6033), 1, - anon_sym_else, - ACTIONS(6035), 1, + ACTIONS(1918), 1, sym__newline, - STATE(3037), 1, + ACTIONS(6071), 1, + anon_sym_else, + STATE(528), 1, aux_sym__repeat_newline, STATE(3055), 1, sym_comment, - ACTIONS(6038), 11, + ACTIONS(1916), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218883,56 +219045,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [94931] = 4, + [95129] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2604), 1, - anon_sym_DASH2, + ACTIONS(6074), 1, + anon_sym_catch, STATE(3056), 1, sym_comment, - ACTIONS(2602), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(6076), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [94956] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [95154] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2608), 1, - anon_sym_DASH2, + ACTIONS(5213), 1, + sym__unquoted_pattern, STATE(3057), 1, sym_comment, - ACTIONS(2606), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [94981] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2098), 1, + ACTIONS(908), 2, + ts_builtin_sym_end, sym__space, - STATE(3058), 1, - sym_comment, - ACTIONS(2100), 13, + ACTIONS(866), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218944,38 +219088,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, - [95006] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3059), 1, - sym_comment, - ACTIONS(1740), 2, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1738), 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, - [95031] = 4, + [95181] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6042), 1, + ACTIONS(6078), 1, + sym__newline, + ACTIONS(6081), 1, sym__space, - STATE(3060), 1, + STATE(3058), 2, sym_comment, - ACTIONS(6040), 13, - sym__newline, + aux_sym__command_parenthesized_repeat1, + ACTIONS(6084), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -218987,43 +219110,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, - [95056] = 6, + [95208] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1954), 1, + ACTIONS(2178), 1, anon_sym_DASH2, - ACTIONS(1956), 1, - anon_sym_LPAREN2, - ACTIONS(1962), 1, - sym__unquoted_pattern_in_record, - STATE(3061), 1, + STATE(3059), 1, sym_comment, - ACTIONS(1952), 11, + ACTIONS(2176), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [95085] = 6, - ACTIONS(103), 1, + [95233] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5893), 1, - sym__space, - ACTIONS(6044), 1, - ts_builtin_sym_end, - STATE(3025), 1, - aux_sym_attribute_repeat1, - STATE(3062), 1, - sym_comment, - ACTIONS(5829), 11, + ACTIONS(1918), 1, sym__newline, + ACTIONS(6086), 1, + anon_sym_catch, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(3060), 1, + sym_comment, + ACTIONS(1916), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219034,82 +219153,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, - [95114] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2511), 1, - anon_sym_DASH2, - ACTIONS(2513), 1, - anon_sym_LPAREN2, - STATE(3063), 1, - sym_comment, - ACTIONS(2509), 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, - [95143] = 5, + [95262] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4976), 1, + ACTIONS(2182), 1, anon_sym_DASH2, - ACTIONS(6046), 1, - anon_sym_LT, - STATE(3064), 1, + STATE(3061), 1, sym_comment, - ACTIONS(4972), 12, + ACTIONS(2180), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [95170] = 4, + [95287] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2612), 1, + ACTIONS(1002), 1, anon_sym_DASH2, - STATE(3065), 1, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern_in_record, + STATE(3062), 1, sym_comment, - ACTIONS(2610), 13, + ACTIONS(1018), 11, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [95195] = 5, + [95316] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4976), 1, + ACTIONS(994), 1, anon_sym_DASH2, - ACTIONS(6048), 1, - anon_sym_LT, - STATE(3066), 1, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, + sym__unquoted_pattern_in_record, + STATE(3063), 1, sym_comment, - ACTIONS(4972), 12, + ACTIONS(1004), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -219119,17 +219219,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [95222] = 4, + [95345] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4654), 1, + ACTIONS(2624), 1, sym__space, - STATE(3067), 1, + STATE(3064), 1, sym_comment, - ACTIONS(4652), 13, + ACTIONS(2626), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219143,14 +219242,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [95247] = 4, + [95370] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4660), 1, + ACTIONS(2628), 1, sym__space, - STATE(3068), 1, + STATE(3065), 1, sym_comment, - ACTIONS(4658), 13, + ACTIONS(2630), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219164,14 +219263,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [95272] = 4, + [95395] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4664), 1, + ACTIONS(2449), 1, sym__space, - STATE(3069), 1, + STATE(3066), 1, sym_comment, - ACTIONS(4662), 13, + ACTIONS(2451), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219185,42 +219284,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [95297] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1598), 1, - sym__unquoted_pattern, - ACTIONS(2910), 1, - anon_sym_DOLLAR, - STATE(3070), 1, - sym_comment, - STATE(4003), 1, - sym__immediate_decimal, - ACTIONS(6050), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6052), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(809), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1582), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [95334] = 3, - ACTIONS(3), 1, + [95420] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3071), 1, + ACTIONS(2453), 1, + sym__space, + STATE(3067), 1, sym_comment, - ACTIONS(5761), 14, - ts_builtin_sym_end, - anon_sym_else, - anon_sym_catch, + ACTIONS(2455), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219232,14 +219303,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, - [95357] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [95445] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2088), 1, + ACTIONS(2626), 1, anon_sym_DASH2, - STATE(3072), 1, + STATE(3068), 1, sym_comment, - ACTIONS(2086), 13, + ACTIONS(2624), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -219253,61 +219326,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [95382] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6054), 1, - sym__newline, - ACTIONS(6057), 1, - sym__space, - STATE(3073), 2, - sym_comment, - aux_sym__command_parenthesized_repeat1, - ACTIONS(6060), 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, - [95409] = 6, + [95470] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5237), 1, - anon_sym_LPAREN2, - ACTIONS(6064), 1, + ACTIONS(2630), 1, anon_sym_DASH2, - STATE(3074), 1, + STATE(3069), 1, sym_comment, - STATE(5230), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6062), 11, + ACTIONS(2628), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [95438] = 4, + [95495] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3075), 1, - sym_comment, - ACTIONS(5128), 3, - ts_builtin_sym_end, + ACTIONS(2457), 1, sym__space, - anon_sym_EQ2, - ACTIONS(5130), 11, + STATE(3070), 1, + sym_comment, + ACTIONS(2459), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219319,14 +219366,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, - [95463] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [95520] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2558), 1, - sym__space, - STATE(3076), 1, + STATE(3071), 1, sym_comment, - ACTIONS(2560), 13, + ACTIONS(5118), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5120), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219338,20 +219389,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [95488] = 6, - ACTIONS(3), 1, + [95545] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6066), 1, - anon_sym_else, - ACTIONS(6068), 1, - sym__newline, - STATE(3055), 1, - aux_sym__repeat_newline, - STATE(3077), 1, + ACTIONS(6091), 1, + sym__space, + STATE(3072), 1, sym_comment, - ACTIONS(6071), 11, + ACTIONS(6089), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219363,14 +219409,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [95517] = 4, + anon_sym_RBRACE, + [95570] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2144), 1, + ACTIONS(5846), 1, + ts_builtin_sym_end, + ACTIONS(5848), 1, sym__space, - STATE(3078), 1, + STATE(3073), 1, sym_comment, - ACTIONS(2146), 13, + STATE(3126), 1, + aux_sym_attribute_repeat1, + ACTIONS(5492), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219382,21 +219433,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, + [95599] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4948), 1, + anon_sym_DASH2, + ACTIONS(6093), 1, + anon_sym_LT, + STATE(3074), 1, + sym_comment, + ACTIONS(4944), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [95542] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [95626] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6073), 1, - anon_sym_else, - ACTIONS(6075), 1, + ACTIONS(5886), 1, sym__newline, - STATE(3079), 1, + STATE(789), 1, + aux_sym__pipe_separator, + STATE(3075), 1, sym_comment, - STATE(3090), 1, + STATE(3433), 1, aux_sym__repeat_newline, - ACTIONS(6078), 11, + ACTIONS(5889), 2, + ts_builtin_sym_end, anon_sym_SEMI, + ACTIONS(2261), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -219406,36 +219479,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [95657] = 13, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1584), 1, + sym__entry_separator, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6095), 1, + anon_sym_DOLLAR, + ACTIONS(6097), 1, + anon_sym_LPAREN2, + ACTIONS(6099), 1, + anon_sym_DOT, + ACTIONS(6101), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6103), 1, + aux_sym__immediate_decimal_token2, + STATE(3076), 1, + sym_comment, + STATE(3652), 1, + sym__immediate_decimal, + ACTIONS(1588), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6105), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3901), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [95700] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5260), 1, + anon_sym_LPAREN2, + ACTIONS(5793), 1, + anon_sym_DASH2, + STATE(3077), 1, + sym_comment, + STATE(4704), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5791), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [95571] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [95729] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2355), 1, + ACTIONS(4948), 1, anon_sym_DASH2, - STATE(3080), 1, + ACTIONS(6107), 1, + anon_sym_LT, + STATE(3078), 1, sym_comment, - ACTIONS(2353), 13, + ACTIONS(4944), 12, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [95596] = 4, - ACTIONS(103), 1, + [95756] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6082), 1, - sym__space, - STATE(3081), 1, + STATE(3079), 1, sym_comment, - ACTIONS(6080), 13, + ACTIONS(5899), 14, + ts_builtin_sym_end, + anon_sym_else, + anon_sym_catch, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219447,20 +219574,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, - [95621] = 6, + [95779] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5237), 1, + ACTIONS(5260), 1, anon_sym_LPAREN2, - ACTIONS(6086), 1, + ACTIONS(6111), 1, anon_sym_DASH2, - STATE(3082), 1, + STATE(3080), 1, sym_comment, - STATE(5230), 1, + STATE(5098), 1, sym__expr_parenthesized_immediate, - ACTIONS(6084), 11, + ACTIONS(6109), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -219472,18 +219597,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [95650] = 6, + [95808] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2527), 1, - anon_sym_DASH2, - ACTIONS(2529), 1, + ACTIONS(5260), 1, anon_sym_LPAREN2, - ACTIONS(2531), 1, - sym__unquoted_pattern_in_record, - STATE(3083), 1, + ACTIONS(6115), 1, + anon_sym_DASH2, + STATE(3081), 1, sym_comment, - ACTIONS(2525), 11, + STATE(5098), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6113), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -219495,18 +219620,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [95679] = 6, + [95837] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2417), 1, + sym__space, + STATE(3082), 1, + sym_comment, + ACTIONS(2419), 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, + [95862] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5237), 1, + ACTIONS(5260), 1, anon_sym_LPAREN2, - ACTIONS(6090), 1, + ACTIONS(6119), 1, anon_sym_DASH2, - STATE(3084), 1, + STATE(3083), 1, sym_comment, - STATE(5230), 1, + STATE(5098), 1, sym__expr_parenthesized_immediate, - ACTIONS(6088), 11, + ACTIONS(6117), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -219518,18 +219664,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [95708] = 6, + [95891] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5237), 1, + ACTIONS(5260), 1, anon_sym_LPAREN2, - ACTIONS(6094), 1, + ACTIONS(6123), 1, anon_sym_DASH2, - STATE(3085), 1, + STATE(3084), 1, sym_comment, - STATE(5230), 1, + STATE(5098), 1, sym__expr_parenthesized_immediate, - ACTIONS(6092), 11, + ACTIONS(6121), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -219541,15 +219687,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [95737] = 3, - ACTIONS(3), 1, + [95920] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5821), 1, + sym__newline, + ACTIONS(5823), 1, + sym__space, + STATE(3058), 1, + aux_sym__command_parenthesized_repeat1, + STATE(3085), 1, + sym_comment, + ACTIONS(6125), 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, + [95949] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(6129), 1, + sym__space, STATE(3086), 1, sym_comment, - ACTIONS(5895), 14, - ts_builtin_sym_end, - anon_sym_else, - anon_sym_catch, + ACTIONS(6127), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219561,18 +219729,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, - [95760] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [95974] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6096), 1, - anon_sym_else, - ACTIONS(6098), 1, - sym__newline, + ACTIONS(2469), 1, + sym__space, STATE(3087), 1, sym_comment, - STATE(3099), 1, - aux_sym__repeat_newline, - ACTIONS(6101), 11, + ACTIONS(2471), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219584,41 +219751,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [95789] = 4, + anon_sym_RBRACE, + [95999] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2449), 1, - anon_sym_DASH2, + ACTIONS(5321), 1, + anon_sym_DOT, + ACTIONS(5323), 1, + aux_sym__immediate_decimal_token5, STATE(3088), 1, sym_comment, - ACTIONS(2447), 13, - anon_sym_EQ, + ACTIONS(1752), 2, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [95814] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6011), 1, - anon_sym_AT2, - ACTIONS(6105), 1, anon_sym_DASH2, - STATE(3089), 1, - sym_comment, - STATE(3385), 1, - sym_param_completer, - ACTIONS(6103), 11, + ACTIONS(1750), 10, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -219628,18 +219775,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [95843] = 6, - ACTIONS(3), 1, + [96028] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6107), 1, - anon_sym_else, - ACTIONS(6109), 1, - sym__newline, - STATE(3090), 1, + ACTIONS(2473), 1, + sym__space, + STATE(3089), 1, sym_comment, - STATE(3096), 1, - aux_sym__repeat_newline, - ACTIONS(6112), 11, + ACTIONS(2475), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219651,35 +219795,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [95872] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [96053] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2517), 1, - anon_sym_DASH2, - STATE(3091), 1, + ACTIONS(2477), 1, + sym__space, + STATE(3090), 1, sym_comment, - ACTIONS(2515), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(2479), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [95897] = 4, + anon_sym_RBRACE, + [96078] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6116), 1, + ACTIONS(2481), 1, sym__space, - STATE(3092), 1, + STATE(3091), 1, sym_comment, - ACTIONS(6114), 13, + ACTIONS(2483), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219693,60 +219838,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [95922] = 6, + [96103] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6011), 1, - anon_sym_AT2, - ACTIONS(6013), 1, + ACTIONS(2419), 1, anon_sym_DASH2, - STATE(3093), 1, + STATE(3092), 1, sym_comment, - STATE(3294), 1, - sym_param_completer, - ACTIONS(6009), 11, + ACTIONS(2417), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [95951] = 6, - ACTIONS(3), 1, + [96128] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6011), 1, - anon_sym_AT2, - ACTIONS(6120), 1, - anon_sym_DASH2, - STATE(3094), 1, + ACTIONS(2485), 1, + sym__space, + STATE(3093), 1, sym_comment, - STATE(3379), 1, - sym_param_completer, - ACTIONS(6118), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2487), 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, - [95980] = 4, + anon_sym_RBRACE, + [96153] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2459), 1, - sym__space, - STATE(3095), 1, + STATE(3094), 1, sym_comment, - ACTIONS(2461), 13, + ACTIONS(5122), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_EQ2, + ACTIONS(5124), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219758,20 +219901,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [96005] = 6, - ACTIONS(3), 1, + [96178] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1937), 1, - sym__newline, - ACTIONS(6122), 1, - anon_sym_else, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(3096), 1, + ACTIONS(2489), 1, + sym__space, + STATE(3095), 1, sym_comment, - ACTIONS(1935), 11, + ACTIONS(2491), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219783,14 +219921,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [96034] = 4, + anon_sym_RBRACE, + [96203] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2152), 1, + ACTIONS(2493), 1, sym__space, - STATE(3097), 1, + STATE(3096), 1, sym_comment, - ACTIONS(2154), 13, + ACTIONS(2495), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219804,42 +219943,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96059] = 7, + [96228] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5810), 1, + ACTIONS(5913), 1, + anon_sym_AT2, + ACTIONS(6133), 1, + anon_sym_DASH2, + STATE(3097), 1, + sym_comment, + STATE(3355), 1, + sym_param_completer, + ACTIONS(6131), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - STATE(751), 1, - aux_sym__pipe_separator, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [96257] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5913), 1, + anon_sym_AT2, + ACTIONS(5915), 1, + anon_sym_DASH2, STATE(3098), 1, sym_comment, - STATE(3431), 1, - aux_sym__repeat_newline, - ACTIONS(5813), 2, - ts_builtin_sym_end, - anon_sym_SEMI, - ACTIONS(2273), 9, + STATE(3344), 1, + sym_param_completer, + ACTIONS(5911), 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, - [96090] = 6, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [96286] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1937), 1, - sym__newline, - ACTIONS(6125), 1, - anon_sym_else, - STATE(517), 1, - aux_sym__repeat_newline, + ACTIONS(2176), 1, + sym__space, STATE(3099), 1, sym_comment, - ACTIONS(1935), 11, + ACTIONS(2178), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219851,14 +220009,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [96119] = 4, + anon_sym_RBRACE, + [96311] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2353), 1, + ACTIONS(6137), 1, sym__space, STATE(3100), 1, sym_comment, - ACTIONS(2355), 13, + ACTIONS(6135), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219872,14 +220031,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96144] = 4, + [96336] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2479), 1, + ACTIONS(908), 1, sym__space, STATE(3101), 1, sym_comment, - ACTIONS(2481), 13, + ACTIONS(866), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219893,44 +220052,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96169] = 13, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1582), 1, - sym__entry_separator, - ACTIONS(1598), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6128), 1, - anon_sym_DOLLAR, - ACTIONS(6130), 1, - anon_sym_LPAREN2, - ACTIONS(6132), 1, - anon_sym_DOT, - ACTIONS(6134), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6136), 1, - aux_sym__immediate_decimal_token2, - STATE(3102), 1, - sym_comment, - STATE(3649), 1, - sym__immediate_decimal, - ACTIONS(1586), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6138), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3893), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [96212] = 4, + [96361] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2451), 1, + ACTIONS(2180), 1, sym__space, - STATE(3103), 1, + STATE(3102), 1, sym_comment, - ACTIONS(2453), 13, + ACTIONS(2182), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219944,14 +220073,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96237] = 4, + [96386] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2329), 1, + ACTIONS(2636), 1, sym__space, - STATE(3104), 1, + STATE(3103), 1, sym_comment, - ACTIONS(2331), 13, + ACTIONS(2638), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219965,56 +220094,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96262] = 4, + [96411] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3105), 1, - sym_comment, - ACTIONS(1808), 2, + ACTIONS(2447), 1, anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1806), 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, - [96287] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3106), 1, + STATE(3104), 1, sym_comment, - ACTIONS(1846), 2, - anon_sym_DASH2, - sym__unquoted_pattern_in_record, - ACTIONS(1844), 12, + ACTIONS(2445), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [96312] = 4, + [96436] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(1706), 1, sym__space, - STATE(3107), 1, + STATE(3105), 1, sym_comment, - ACTIONS(5565), 13, + ACTIONS(1604), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220028,14 +220136,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96337] = 4, + [96461] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2333), 1, + ACTIONS(2126), 1, sym__space, - STATE(3108), 1, + STATE(3106), 1, sym_comment, - ACTIONS(2335), 13, + ACTIONS(2128), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220049,19 +220157,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96362] = 6, + [96486] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6140), 1, - anon_sym_catch, - ACTIONS(6142), 1, + ACTIONS(5863), 1, sym__newline, - STATE(3011), 1, - aux_sym__repeat_newline, - STATE(3109), 1, + STATE(789), 1, + aux_sym__pipe_separator, + STATE(3107), 1, sym_comment, - ACTIONS(6145), 11, + STATE(3433), 1, + aux_sym__repeat_newline, + ACTIONS(5866), 2, + ts_builtin_sym_end, anon_sym_SEMI, + ACTIONS(2261), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -220071,42 +220181,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [96517] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2614), 1, + anon_sym_DASH2, + STATE(3108), 1, + sym_comment, + ACTIONS(2612), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - [96391] = 10, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [96542] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(2910), 1, + ACTIONS(2618), 1, + anon_sym_DASH2, + STATE(3109), 1, + sym_comment, + ACTIONS(2616), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [96567] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2515), 1, + anon_sym_DASH2, STATE(3110), 1, sym_comment, - STATE(3972), 1, - sym__immediate_decimal, - ACTIONS(6050), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6052), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(846), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1631), 4, - anon_sym_if, + ACTIONS(2513), 13, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, - anon_sym_EQ_GT, - [96428] = 4, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [96592] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2447), 1, + ACTIONS(6141), 1, sym__space, STATE(3111), 1, sym_comment, - ACTIONS(2449), 13, + ACTIONS(6139), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220120,14 +220265,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96453] = 4, + [96617] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2515), 1, + ACTIONS(4568), 1, sym__space, STATE(3112), 1, sym_comment, - ACTIONS(2517), 13, + ACTIONS(4566), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220141,35 +220286,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96478] = 4, - ACTIONS(103), 1, + [96642] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2463), 1, + anon_sym_DASH2, STATE(3113), 1, sym_comment, - ACTIONS(5074), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_EQ2, - ACTIONS(5076), 11, + ACTIONS(2461), 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, - [96503] = 4, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [96667] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2136), 1, + ACTIONS(6145), 1, sym__space, STATE(3114), 1, sym_comment, - ACTIONS(2138), 13, + ACTIONS(6143), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220183,56 +220328,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96528] = 4, - ACTIONS(103), 1, + [96692] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2341), 1, - sym__space, + ACTIONS(5260), 1, + anon_sym_LPAREN2, + ACTIONS(5811), 1, + anon_sym_DASH2, STATE(3115), 1, sym_comment, - ACTIONS(2343), 13, + STATE(4704), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5809), 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, - [96553] = 4, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [96721] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1848), 1, - sym__space, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1627), 1, + anon_sym_DOT, + ACTIONS(2871), 1, + anon_sym_DOLLAR, STATE(3116), 1, sym_comment, - ACTIONS(1850), 13, + STATE(3752), 1, + sym__immediate_decimal, + ACTIONS(5815), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5817), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3751), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1623), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [96578] = 4, + anon_sym_EQ_GT, + [96758] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2618), 1, + ACTIONS(5462), 1, sym__space, STATE(3117), 1, sym_comment, - ACTIONS(2620), 13, + ACTIONS(5460), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220246,18 +220399,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96603] = 6, - ACTIONS(3), 1, + [96783] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6147), 1, - anon_sym_else, ACTIONS(6149), 1, - sym__newline, - STATE(3087), 1, - aux_sym__repeat_newline, + sym__space, STATE(3118), 1, sym_comment, - ACTIONS(6152), 11, + ACTIONS(6147), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220269,18 +220419,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [96632] = 6, + anon_sym_RBRACE, + [96808] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5893), 1, + ACTIONS(6153), 1, sym__space, - ACTIONS(6154), 1, - ts_builtin_sym_end, - STATE(3041), 1, - aux_sym_attribute_repeat1, STATE(3119), 1, sym_comment, - ACTIONS(5847), 11, + ACTIONS(6151), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220292,39 +220439,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, - [96661] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2493), 1, - anon_sym_DASH2, - STATE(3120), 1, - sym_comment, - ACTIONS(2491), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [96686] = 6, + anon_sym_RBRACE, + [96833] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1937), 1, + ACTIONS(1918), 1, sym__newline, - ACTIONS(6156), 1, - anon_sym_catch, - STATE(517), 1, + ACTIONS(6155), 1, + anon_sym_else, + STATE(528), 1, aux_sym__repeat_newline, - STATE(3121), 1, + STATE(3120), 1, sym_comment, - ACTIONS(1935), 11, + ACTIONS(1916), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220336,14 +220464,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [96715] = 4, + [96862] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2497), 1, + ACTIONS(2467), 1, anon_sym_DASH2, - STATE(3122), 1, + STATE(3121), 1, sym_comment, - ACTIONS(2495), 13, + ACTIONS(2465), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -220357,37 +220485,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [96740] = 6, + [96887] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5237), 1, - anon_sym_LPAREN2, - ACTIONS(5860), 1, + ACTIONS(2547), 1, anon_sym_DASH2, - STATE(3123), 1, + STATE(3122), 1, sym_comment, - STATE(4767), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5858), 11, + ACTIONS(2545), 13, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [96769] = 4, + [96912] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6161), 1, + ACTIONS(5848), 1, sym__space, - STATE(3124), 1, + ACTIONS(6158), 1, + ts_builtin_sym_end, + STATE(2994), 1, + aux_sym_attribute_repeat1, + STATE(3123), 1, sym_comment, - ACTIONS(6159), 13, + ACTIONS(5803), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220399,34 +220529,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, - [96794] = 4, + [96941] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3125), 1, - sym_comment, - ACTIONS(2329), 2, - ts_builtin_sym_end, + ACTIONS(2389), 1, sym__space, - ACTIONS(2331), 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, - [96818] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3126), 1, + STATE(3124), 1, sym_comment, - ACTIONS(6163), 13, + ACTIONS(2391), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220440,16 +220550,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [96840] = 4, + [96966] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6167), 1, + ACTIONS(1918), 1, + sym__newline, + ACTIONS(6160), 1, anon_sym_else, - STATE(3127), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(3125), 1, sym_comment, - ACTIONS(6165), 12, - ts_builtin_sym_end, - sym__newline, + ACTIONS(1916), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220460,15 +220572,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, - [96864] = 4, + anon_sym_RPAREN, + [96995] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3128), 1, - sym_comment, - ACTIONS(5480), 2, - ts_builtin_sym_end, + ACTIONS(5848), 1, sym__space, - ACTIONS(5478), 11, + ACTIONS(6163), 1, + ts_builtin_sym_end, + STATE(3020), 1, + aux_sym_attribute_repeat1, + STATE(3126), 1, + sym_comment, + ACTIONS(5819), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220480,15 +220596,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, - [96888] = 4, + [97024] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3129), 1, - sym_comment, - ACTIONS(6082), 2, - ts_builtin_sym_end, + ACTIONS(6167), 1, sym__space, - ACTIONS(6080), 11, + STATE(3127), 1, + sym_comment, + ACTIONS(6165), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220500,120 +220615,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, - [96912] = 13, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1582), 1, - sym__entry_separator, - ACTIONS(1586), 1, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(1598), 1, - sym__unquoted_pattern_in_record, - ACTIONS(6128), 1, - anon_sym_DOLLAR, - ACTIONS(6130), 1, - anon_sym_LPAREN2, - ACTIONS(6169), 1, - anon_sym_DOT, - ACTIONS(6171), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6173), 1, - aux_sym__immediate_decimal_token2, - STATE(3130), 1, - sym_comment, - STATE(3715), 1, - sym__immediate_decimal, - ACTIONS(6175), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3788), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [96954] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1607), 1, - sym__entry_separator, - ACTIONS(6128), 1, - anon_sym_DOLLAR, - ACTIONS(6130), 1, - anon_sym_LPAREN2, - ACTIONS(6134), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6136), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6177), 1, - anon_sym_DOT, - STATE(3131), 1, - sym_comment, - STATE(3892), 1, - sym__immediate_decimal, - ACTIONS(1609), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6138), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3891), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [96994] = 15, + [97049] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5792), 1, + ACTIONS(5771), 1, sym_identifier, - ACTIONS(5798), 1, + ACTIONS(5777), 1, anon_sym_DOLLAR, - ACTIONS(5800), 1, + ACTIONS(5779), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5802), 1, + ACTIONS(5781), 1, anon_sym_DASH_DASH, - ACTIONS(5804), 1, + ACTIONS(5783), 1, anon_sym_DASH2, - ACTIONS(5806), 1, + ACTIONS(6169), 1, anon_sym_RPAREN, - STATE(2542), 1, + STATE(2559), 1, sym_param_long_flag, - STATE(2679), 1, + STATE(2644), 1, sym__param_name, - STATE(2880), 1, + STATE(2920), 1, aux_sym_parameter_parens_repeat1, - STATE(3132), 1, + STATE(3128), 1, sym_comment, - STATE(3309), 1, + STATE(3292), 1, sym_param_short_flag, - STATE(3337), 1, - sym_param_rest, - STATE(3338), 1, + STATE(3351), 1, sym_param_opt, - STATE(3644), 1, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, sym_parameter, - [97040] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5126), 1, - anon_sym_DASH2, - STATE(3133), 1, - sym_comment, - ACTIONS(5124), 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, - [97064] = 3, + [97095] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3134), 1, + STATE(3129), 1, sym_comment, - ACTIONS(6179), 13, + ACTIONS(6171), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220627,12 +220667,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [97086] = 3, + [97117] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3135), 1, + ACTIONS(2148), 1, + aux_sym__where_predicate_lhs_path_head_token1, + STATE(3130), 1, + sym_comment, + ACTIONS(2146), 12, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + sym__newline, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + [97141] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3131), 1, sym_comment, - ACTIONS(6181), 13, + ACTIONS(2469), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2471), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220644,17 +220707,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [97108] = 4, + [97165] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3136), 1, + STATE(3132), 1, sym_comment, - ACTIONS(5377), 2, + ACTIONS(5421), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5375), 11, + ACTIONS(5419), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220666,35 +220727,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, - [97132] = 5, + [97189] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(793), 1, + ACTIONS(5771), 1, + sym_identifier, + ACTIONS(5777), 1, + anon_sym_DOLLAR, + ACTIONS(5779), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5781), 1, + anon_sym_DASH_DASH, + ACTIONS(5783), 1, anon_sym_DASH2, - ACTIONS(5247), 1, - sym__unquoted_pattern_in_record, - STATE(3137), 1, + ACTIONS(6173), 1, + anon_sym_RPAREN, + STATE(2559), 1, + sym_param_long_flag, + STATE(2644), 1, + sym__param_name, + STATE(2920), 1, + aux_sym_parameter_parens_repeat1, + STATE(3133), 1, sym_comment, - ACTIONS(890), 11, - anon_sym_EQ, + STATE(3292), 1, + sym_param_short_flag, + STATE(3351), 1, + sym_param_opt, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, + sym_parameter, + [97235] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5771), 1, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5777), 1, anon_sym_DOLLAR, + ACTIONS(5779), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5781), 1, anon_sym_DASH_DASH, - [97158] = 4, - ACTIONS(3), 1, + ACTIONS(5783), 1, + anon_sym_DASH2, + ACTIONS(6175), 1, + anon_sym_PIPE, + STATE(2559), 1, + sym_param_long_flag, + STATE(2644), 1, + sym__param_name, + STATE(2920), 1, + aux_sym_parameter_parens_repeat1, + STATE(3134), 1, + sym_comment, + STATE(3292), 1, + sym_param_short_flag, + STATE(3351), 1, + sym_param_opt, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, + sym_parameter, + [97281] = 12, + ACTIONS(103), 1, anon_sym_POUND, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(3138), 1, + ACTIONS(1623), 1, + sym__entry_separator, + ACTIONS(6095), 1, + anon_sym_DOLLAR, + ACTIONS(6097), 1, + anon_sym_LPAREN2, + ACTIONS(6177), 1, + anon_sym_DOT, + ACTIONS(6179), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6181), 1, + aux_sym__immediate_decimal_token2, + STATE(3135), 1, + sym_comment, + STATE(3851), 1, + sym__immediate_decimal, + ACTIONS(1625), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6183), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3850), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [97321] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3136), 1, sym_comment, - ACTIONS(5701), 12, + ACTIONS(2176), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2178), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220706,16 +220837,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [97182] = 4, + [97345] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3139), 1, + STATE(3137), 1, sym_comment, - ACTIONS(5994), 2, + ACTIONS(2180), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5992), 11, + ACTIONS(2182), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220727,66 +220857,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, - [97206] = 4, - ACTIONS(3), 1, + [97369] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4988), 1, - anon_sym_DASH2, - STATE(3140), 1, + STATE(3138), 1, sym_comment, - ACTIONS(4986), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(6069), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6067), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [97230] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5792), 1, - sym_identifier, - ACTIONS(5798), 1, - anon_sym_DOLLAR, - ACTIONS(5800), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5802), 1, - anon_sym_DASH_DASH, - ACTIONS(5804), 1, - anon_sym_DASH2, - ACTIONS(6183), 1, - anon_sym_RBRACK, - STATE(2542), 1, - sym_param_long_flag, - STATE(2679), 1, - sym__param_name, - STATE(2880), 1, - aux_sym_parameter_parens_repeat1, - STATE(3141), 1, - sym_comment, - STATE(3309), 1, - sym_param_short_flag, - STATE(3337), 1, - sym_param_rest, - STATE(3338), 1, - sym_param_opt, - STATE(3644), 1, - sym_parameter, - [97276] = 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, + [97393] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3142), 1, + STATE(3139), 1, sym_comment, - ACTIONS(890), 2, + ACTIONS(6091), 2, ts_builtin_sym_end, sym__space, - ACTIONS(793), 11, + ACTIONS(6089), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220798,15 +220897,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97300] = 4, + [97417] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3143), 1, + STATE(3140), 1, sym_comment, - ACTIONS(5963), 2, + ACTIONS(5391), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5961), 11, + ACTIONS(5389), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220818,15 +220917,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97324] = 4, + [97441] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3144), 1, + STATE(3141), 1, sym_comment, - ACTIONS(1689), 2, + ACTIONS(2501), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1615), 11, + ACTIONS(2503), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220838,46 +220937,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, - [97348] = 15, + [97465] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5792), 1, + ACTIONS(5771), 1, sym_identifier, - ACTIONS(5798), 1, + ACTIONS(5777), 1, anon_sym_DOLLAR, - ACTIONS(5800), 1, + ACTIONS(5779), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5802), 1, + ACTIONS(5781), 1, anon_sym_DASH_DASH, - ACTIONS(5804), 1, + ACTIONS(5783), 1, anon_sym_DASH2, - ACTIONS(6185), 1, - anon_sym_RPAREN, - STATE(2542), 1, + ACTIONS(5907), 1, + anon_sym_PIPE, + STATE(2559), 1, sym_param_long_flag, - STATE(2679), 1, + STATE(2644), 1, sym__param_name, - STATE(2880), 1, + STATE(2920), 1, aux_sym_parameter_parens_repeat1, - STATE(3145), 1, + STATE(3142), 1, sym_comment, - STATE(3309), 1, + STATE(3292), 1, sym_param_short_flag, - STATE(3337), 1, - sym_param_rest, - STATE(3338), 1, + STATE(3351), 1, sym_param_opt, - STATE(3644), 1, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, sym_parameter, - [97394] = 4, - ACTIONS(103), 1, + [97511] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3146), 1, + STATE(3143), 1, sym_comment, - ACTIONS(2086), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2088), 11, + ACTIONS(4832), 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, + [97533] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3144), 1, + sym_comment, + ACTIONS(6185), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220889,15 +221004,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, - [97418] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [97555] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3147), 1, + STATE(3145), 1, sym_comment, - ACTIONS(5567), 2, + ACTIONS(2465), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5565), 11, + ACTIONS(2467), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220909,15 +221026,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97442] = 4, + [97579] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3148), 1, + STATE(3146), 1, sym_comment, - ACTIONS(5440), 2, + ACTIONS(2505), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5438), 11, + ACTIONS(2507), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220929,15 +221046,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97466] = 4, + [97603] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3149), 1, + STATE(3147), 1, sym_comment, - ACTIONS(2558), 2, + ACTIONS(2473), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2560), 11, + ACTIONS(2475), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220949,12 +221066,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, - [97490] = 3, + [97627] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3150), 1, + STATE(3148), 1, sym_comment, - ACTIONS(4826), 13, + STATE(3155), 1, + aux_sym__repeat_newline, + ACTIONS(5598), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220967,16 +221086,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [97512] = 4, - ACTIONS(103), 1, + [97651] = 4, + ACTIONS(3), 1, anon_sym_POUND, + STATE(3149), 1, + sym_comment, STATE(3151), 1, + aux_sym__repeat_newline, + ACTIONS(5666), 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, + [97675] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3150), 1, sym_comment, - ACTIONS(2098), 2, + ACTIONS(2477), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2100), 11, + ACTIONS(2479), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220988,43 +221126,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, - [97536] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5792), 1, - sym_identifier, - ACTIONS(5798), 1, - anon_sym_DOLLAR, - ACTIONS(5800), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5802), 1, - anon_sym_DASH_DASH, - ACTIONS(5804), 1, - anon_sym_DASH2, - ACTIONS(5868), 1, - anon_sym_RBRACK, - STATE(2542), 1, - sym_param_long_flag, - STATE(2679), 1, - sym__param_name, - STATE(2880), 1, - aux_sym_parameter_parens_repeat1, - STATE(3152), 1, - sym_comment, - STATE(3309), 1, - sym_param_short_flag, - STATE(3337), 1, - sym_param_rest, - STATE(3338), 1, - sym_param_opt, - STATE(3644), 1, - sym_parameter, - [97582] = 3, + [97699] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3153), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(3151), 1, sym_comment, - ACTIONS(6187), 13, + ACTIONS(5622), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221037,170 +221146,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [97604] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2112), 1, - aux_sym__where_predicate_lhs_path_head_token1, - STATE(3154), 1, - sym_comment, - ACTIONS(2110), 12, - sym_raw_string_begin, - anon_sym_true, - anon_sym_false, - sym__newline, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - [97628] = 9, + [97723] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(2910), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2871), 1, anon_sym_DOLLAR, - STATE(841), 1, - sym__immediate_decimal, - STATE(3155), 1, + STATE(3152), 1, sym_comment, - ACTIONS(5819), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6189), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(840), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1643), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [97662] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1607), 1, - sym__entry_separator, - ACTIONS(6128), 1, - anon_sym_DOLLAR, - ACTIONS(6130), 1, - anon_sym_LPAREN2, - ACTIONS(6177), 1, - anon_sym_DOT, - ACTIONS(6191), 1, + STATE(4303), 1, + sym__immediate_decimal, + ACTIONS(6187), 2, aux_sym__immediate_decimal_token1, - ACTIONS(6193), 1, aux_sym__immediate_decimal_token2, - STATE(3156), 1, - sym_comment, - STATE(3912), 1, - sym__immediate_decimal, - ACTIONS(1609), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6195), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3906), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [97702] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2910), 1, - anon_sym_DOLLAR, - STATE(843), 1, - sym__immediate_decimal, - STATE(3157), 1, - sym_comment, - ACTIONS(5819), 2, + ACTIONS(6189), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(6189), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(842), 2, + STATE(829), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1647), 4, - anon_sym_if, + ACTIONS(1584), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [97736] = 15, + [97759] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5792), 1, - sym_identifier, - ACTIONS(5798), 1, - anon_sym_DOLLAR, - ACTIONS(5800), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5802), 1, - anon_sym_DASH_DASH, - ACTIONS(5804), 1, + ACTIONS(866), 1, anon_sym_DASH2, - ACTIONS(5870), 1, - anon_sym_RPAREN, - STATE(2542), 1, - sym_param_long_flag, - STATE(2679), 1, - sym__param_name, - STATE(2880), 1, - aux_sym_parameter_parens_repeat1, - STATE(3158), 1, - sym_comment, - STATE(3309), 1, - sym_param_short_flag, - STATE(3337), 1, - sym_param_rest, - STATE(3338), 1, - sym_param_opt, - STATE(3644), 1, - sym_parameter, - [97782] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2910), 1, - anon_sym_DOLLAR, - STATE(845), 1, - sym__immediate_decimal, - STATE(3159), 1, + ACTIONS(5270), 1, + sym__unquoted_pattern_in_record, + STATE(3153), 1, sym_comment, - ACTIONS(5819), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6189), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(844), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1651), 4, - anon_sym_if, + ACTIONS(908), 11, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, - anon_sym_EQ_GT, - [97816] = 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, + [97785] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3160), 1, + STATE(3154), 1, sym_comment, - ACTIONS(6024), 2, + ACTIONS(2481), 2, ts_builtin_sym_end, sym__space, - ACTIONS(6022), 11, + ACTIONS(2483), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221212,46 +221213,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, - [97840] = 15, + [97809] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5792), 1, - sym_identifier, - ACTIONS(5798), 1, - anon_sym_DOLLAR, - ACTIONS(5800), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5802), 1, - anon_sym_DASH_DASH, - ACTIONS(5804), 1, - anon_sym_DASH2, - ACTIONS(5856), 1, - anon_sym_PIPE, - STATE(2542), 1, - sym_param_long_flag, - STATE(2679), 1, - sym__param_name, - STATE(2880), 1, - aux_sym_parameter_parens_repeat1, - STATE(3161), 1, - sym_comment, - STATE(3309), 1, - sym_param_short_flag, - STATE(3337), 1, - sym_param_rest, - STATE(3338), 1, - sym_param_opt, - STATE(3644), 1, - sym_parameter, - [97886] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3162), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(3155), 1, sym_comment, - ACTIONS(1848), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1850), 11, + ACTIONS(5670), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221263,15 +221232,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, - [97910] = 4, + anon_sym_RPAREN, + [97833] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5026), 1, + anon_sym_DASH2, + STATE(3156), 1, + sym_comment, + ACTIONS(5024), 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, + [97857] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4948), 1, + anon_sym_DASH2, + STATE(3157), 1, + sym_comment, + ACTIONS(4944), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [97881] = 12, ACTIONS(103), 1, anon_sym_POUND, - STATE(3163), 1, + ACTIONS(1623), 1, + sym__entry_separator, + ACTIONS(6095), 1, + anon_sym_DOLLAR, + ACTIONS(6097), 1, + anon_sym_LPAREN2, + ACTIONS(6101), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6103), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6177), 1, + anon_sym_DOT, + STATE(3158), 1, sym_comment, - ACTIONS(2618), 2, + STATE(3900), 1, + sym__immediate_decimal, + ACTIONS(1625), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6105), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3899), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [97921] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3159), 1, + sym_comment, + ACTIONS(2485), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2620), 11, + ACTIONS(2487), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221283,15 +221321,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [97934] = 4, + [97945] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3164), 1, + STATE(3160), 1, sym_comment, - ACTIONS(2626), 2, + ACTIONS(2489), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2628), 11, + ACTIONS(2491), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221303,35 +221341,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, - [97958] = 4, - ACTIONS(103), 1, + [97969] = 10, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3165), 1, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + STATE(3161), 1, sym_comment, - ACTIONS(6028), 2, - ts_builtin_sym_end, + STATE(4292), 1, + sym__immediate_decimal, + ACTIONS(6187), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6189), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(871), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1633), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [98005] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1584), 1, sym__space, - ACTIONS(6026), 11, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(3205), 1, + anon_sym_LPAREN2, + ACTIONS(3669), 1, + anon_sym_DOLLAR, + ACTIONS(6191), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6193), 1, + aux_sym__immediate_decimal_token2, + STATE(3162), 1, + sym_comment, + STATE(4014), 1, + sym__immediate_decimal, + ACTIONS(1588), 2, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [97982] = 4, + ACTIONS(6195), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3038), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [98045] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3166), 1, + STATE(3163), 1, sym_comment, - ACTIONS(2311), 2, + ACTIONS(2612), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2313), 11, + ACTIONS(2614), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221343,15 +221415,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, - [98006] = 4, - ACTIONS(103), 1, + [98069] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3167), 1, + STATE(3164), 1, sym_comment, - ACTIONS(6042), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(6040), 11, + ACTIONS(6129), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221363,15 +221432,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, - [98030] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [98091] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3168), 1, + ACTIONS(6199), 1, + anon_sym_DASH2, + STATE(3165), 1, sym_comment, - ACTIONS(2333), 2, - ts_builtin_sym_end, + ACTIONS(6197), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [98115] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6203), 1, sym__space, - ACTIONS(2335), 11, + STATE(3166), 1, + sym_comment, + ACTIONS(6201), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221383,15 +221473,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, - [98054] = 4, + anon_sym_RPAREN, + [98139] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3169), 1, + STATE(3167), 1, sym_comment, - ACTIONS(2136), 2, + ACTIONS(2636), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2138), 11, + ACTIONS(2638), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221403,15 +221494,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98078] = 4, + [98163] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3170), 1, + STATE(3168), 1, sym_comment, - ACTIONS(2144), 2, + ACTIONS(2545), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2146), 11, + ACTIONS(2547), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221423,15 +221514,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98102] = 4, + [98187] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3171), 1, + STATE(3169), 1, sym_comment, - ACTIONS(2152), 2, + ACTIONS(2493), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2154), 11, + ACTIONS(2495), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221443,14 +221534,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, - [98126] = 4, + [98211] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4976), 1, + ACTIONS(5018), 1, anon_sym_DASH2, - STATE(3172), 1, + STATE(3170), 1, sym_comment, - ACTIONS(4972), 12, + ACTIONS(5016), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -221463,69 +221554,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [98150] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1607), 1, - sym__space, - ACTIONS(3261), 1, - anon_sym_LPAREN2, - ACTIONS(3659), 1, - anon_sym_DOLLAR, - ACTIONS(4966), 1, - anon_sym_DOT, - ACTIONS(5937), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5939), 1, - aux_sym__immediate_decimal_token2, - STATE(3173), 1, - sym_comment, - STATE(3852), 1, - sym__immediate_decimal, - ACTIONS(1609), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5941), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3851), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [98190] = 10, + [98235] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1598), 1, - sym__unquoted_pattern, - ACTIONS(2910), 1, - anon_sym_DOLLAR, - STATE(3174), 1, + ACTIONS(5022), 1, + anon_sym_DASH2, + STATE(3171), 1, sym_comment, - STATE(4368), 1, - sym__immediate_decimal, - ACTIONS(6197), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6199), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(809), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1582), 3, + ACTIONS(5020), 12, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, - anon_sym_EQ_GT, - [98226] = 4, - ACTIONS(103), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [98259] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3175), 1, + STATE(3172), 1, sym_comment, - ACTIONS(4668), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4666), 11, + ACTIONS(6205), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221537,15 +221591,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, - [98250] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [98281] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6201), 1, - anon_sym_catch, - STATE(3176), 1, + STATE(3173), 1, sym_comment, - ACTIONS(5988), 12, - ts_builtin_sym_end, + ACTIONS(6207), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221557,14 +221610,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, - [98274] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [98303] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6205), 1, - sym__space, - STATE(3177), 1, + STATE(3174), 1, sym_comment, - ACTIONS(6203), 12, + ACTIONS(6209), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221577,12 +221630,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [98298] = 3, + anon_sym_RBRACE, + [98325] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3178), 1, + STATE(3175), 1, sym_comment, - ACTIONS(6082), 13, + ACTIONS(6212), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221596,15 +221650,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [98320] = 4, - ACTIONS(103), 1, + [98347] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3179), 1, + STATE(3176), 1, sym_comment, - ACTIONS(2337), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2339), 11, + ACTIONS(6214), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221616,15 +221667,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, - [98344] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [98369] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3180), 1, + STATE(3177), 1, sym_comment, - ACTIONS(6116), 2, + ACTIONS(2449), 2, ts_builtin_sym_end, sym__space, - ACTIONS(6114), 11, + ACTIONS(2451), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221636,15 +221689,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98368] = 4, + [98393] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3181), 1, + STATE(3178), 1, sym_comment, - ACTIONS(2602), 2, + ACTIONS(6137), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2604), 11, + ACTIONS(6135), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221656,15 +221709,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98392] = 4, + [98417] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3182), 1, + STATE(3179), 1, sym_comment, - ACTIONS(2606), 2, + ACTIONS(6141), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2608), 11, + ACTIONS(6139), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221676,15 +221729,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, - [98416] = 4, - ACTIONS(103), 1, + [98441] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3183), 1, + ACTIONS(5014), 1, + anon_sym_DASH2, + STATE(3180), 1, sym_comment, - ACTIONS(2610), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2612), 11, + ACTIONS(5012), 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, + [98465] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5094), 1, + anon_sym_DASH2, + STATE(3181), 1, + sym_comment, + ACTIONS(5092), 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, + [98489] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3182), 1, + sym_comment, + ACTIONS(6216), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221696,15 +221786,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, - [98440] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [98511] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5098), 1, + anon_sym_DASH2, + STATE(3183), 1, + sym_comment, + ACTIONS(5096), 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, + [98535] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3184), 1, sym_comment, - ACTIONS(2614), 2, + ACTIONS(2453), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2616), 11, + ACTIONS(2455), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221716,15 +221828,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, - [98464] = 4, + [98559] = 12, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1584), 1, + sym__entry_separator, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6218), 1, + anon_sym_DOLLAR, + ACTIONS(6220), 1, + anon_sym_LPAREN2, + ACTIONS(6222), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6224), 1, + aux_sym__immediate_decimal_token2, STATE(3185), 1, sym_comment, - ACTIONS(2341), 2, + STATE(3994), 1, + sym__immediate_decimal, + ACTIONS(1588), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6226), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4293), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [98599] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6230), 1, + anon_sym_DASH2, + STATE(3186), 1, + sym_comment, + ACTIONS(6228), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [98623] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3187), 1, + sym_comment, + ACTIONS(6129), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2343), 11, + ACTIONS(6127), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221736,15 +221896,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98488] = 4, + [98647] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3186), 1, + STATE(3188), 1, sym_comment, - ACTIONS(2345), 2, + ACTIONS(2457), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2347), 11, + ACTIONS(2459), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221756,15 +221916,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98512] = 4, + [98671] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3187), 1, + STATE(3189), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(4568), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2351), 11, + ACTIONS(4566), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221776,15 +221936,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98536] = 4, + [98695] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3188), 1, + STATE(3190), 1, sym_comment, - ACTIONS(2353), 2, + ACTIONS(1872), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2355), 11, + ACTIONS(1874), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221796,15 +221956,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98560] = 4, + [98719] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3189), 1, + STATE(3191), 1, sym_comment, - ACTIONS(2578), 2, + ACTIONS(1844), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2580), 11, + ACTIONS(1846), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221816,12 +221976,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98584] = 3, - ACTIONS(3), 1, + [98743] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3190), 1, + STATE(3192), 1, sym_comment, - ACTIONS(6207), 13, + ACTIONS(2389), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2391), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221833,14 +221996,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [98606] = 3, + [98767] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3191), 1, + STATE(3193), 1, sym_comment, - ACTIONS(4832), 13, + ACTIONS(5530), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221854,71 +222015,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [98628] = 12, - ACTIONS(103), 1, + [98789] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1631), 1, - sym__space, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(3261), 1, - anon_sym_LPAREN2, - ACTIONS(3659), 1, - anon_sym_DOLLAR, - ACTIONS(6209), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6211), 1, - aux_sym__immediate_decimal_token2, - STATE(3192), 1, + ACTIONS(5036), 1, + anon_sym_DASH2, + STATE(3194), 1, sym_comment, - STATE(3936), 1, - sym__immediate_decimal, - ACTIONS(1633), 2, + ACTIONS(5034), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, - ACTIONS(6213), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3005), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [98668] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1582), 1, - sym__space, - ACTIONS(1598), 1, - sym__unquoted_pattern, - ACTIONS(3261), 1, - anon_sym_LPAREN2, - ACTIONS(3659), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(6209), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6211), 1, - aux_sym__immediate_decimal_token2, - STATE(3193), 1, - sym_comment, - STATE(4017), 1, - sym__immediate_decimal, - ACTIONS(1586), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6213), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3097), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [98708] = 4, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [98813] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3194), 1, + STATE(3195), 1, sym_comment, - ACTIONS(5959), 2, + ACTIONS(2445), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5957), 11, + ACTIONS(2447), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221930,34 +222055,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, - [98732] = 4, + [98837] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(3195), 1, + ACTIONS(5771), 1, + sym_identifier, + ACTIONS(5777), 1, + anon_sym_DOLLAR, + ACTIONS(5779), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5781), 1, + anon_sym_DASH_DASH, + ACTIONS(5783), 1, + anon_sym_DASH2, + ACTIONS(6232), 1, + anon_sym_RBRACK, + STATE(2559), 1, + sym_param_long_flag, + STATE(2644), 1, + sym__param_name, + STATE(2920), 1, + aux_sym_parameter_parens_repeat1, + STATE(3196), 1, sym_comment, - STATE(3213), 1, - aux_sym__repeat_newline, - ACTIONS(5612), 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, - [98756] = 4, + STATE(3292), 1, + sym_param_short_flag, + STATE(3351), 1, + sym_param_opt, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, + sym_parameter, + [98883] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5162), 1, + ACTIONS(5040), 1, anon_sym_DASH2, - STATE(3196), 1, + STATE(3197), 1, sym_comment, - ACTIONS(5160), 12, + ACTIONS(5038), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -221967,44 +222103,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT2, + anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [98780] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(2910), 1, - anon_sym_DOLLAR, - STATE(3197), 1, - sym_comment, - STATE(4298), 1, - sym__immediate_decimal, - ACTIONS(6197), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6199), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(846), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1631), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [98816] = 4, + [98907] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3198), 1, sym_comment, - ACTIONS(2447), 2, + ACTIONS(2521), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2449), 11, + ACTIONS(2523), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222016,15 +222126,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98840] = 4, + [98931] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3199), 1, sym_comment, - ACTIONS(2515), 2, + ACTIONS(2624), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2517), 11, + ACTIONS(2626), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222036,15 +222146,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98864] = 4, + [98955] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3200), 1, sym_comment, - ACTIONS(2483), 2, + ACTIONS(2461), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2485), 11, + ACTIONS(2463), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222056,12 +222166,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [98888] = 3, - ACTIONS(3), 1, + [98979] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(3201), 1, sym_comment, - ACTIONS(6215), 13, + ACTIONS(4586), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4584), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222073,16 +222186,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [98910] = 4, - ACTIONS(3), 1, + [99003] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6217), 1, - anon_sym_else, STATE(3202), 1, sym_comment, - ACTIONS(6165), 12, + ACTIONS(2628), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2630), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222094,36 +222206,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_RBRACE, - [98934] = 5, - ACTIONS(3), 1, + [99027] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6221), 1, - anon_sym_QMARK, - ACTIONS(6223), 1, - anon_sym_DASH2, STATE(3203), 1, sym_comment, - ACTIONS(6219), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5923), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5921), 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, - [98960] = 4, - ACTIONS(3), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [99051] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6225), 1, - anon_sym_else, STATE(3204), 1, sym_comment, - ACTIONS(6165), 12, + ACTIONS(5586), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5584), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222135,13 +222246,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [98984] = 3, - ACTIONS(3), 1, + [99075] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(3205), 1, sym_comment, - ACTIONS(6227), 13, + ACTIONS(908), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(866), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222153,14 +222266,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [99006] = 3, - ACTIONS(3), 1, + [99099] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(3206), 1, sym_comment, - ACTIONS(6229), 13, + ACTIONS(2616), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2618), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222172,14 +222286,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [99028] = 3, + [99123] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5044), 1, + anon_sym_DASH2, STATE(3207), 1, sym_comment, - ACTIONS(6231), 13, + ACTIONS(5042), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [99147] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5056), 1, + anon_sym_DASH2, + STATE(3208), 1, + sym_comment, + ACTIONS(5054), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [99171] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5064), 1, + anon_sym_DASH2, + STATE(3209), 1, + sym_comment, + ACTIONS(5062), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT2, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [99195] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3210), 1, + sym_comment, + ACTIONS(6234), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222193,15 +222365,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [99050] = 4, - ACTIONS(103), 1, + [99217] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3208), 1, + STATE(3211), 1, sym_comment, - ACTIONS(5980), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5978), 11, + ACTIONS(4838), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222213,41 +222382,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, - [99074] = 13, + anon_sym_RPAREN, + anon_sym_RBRACE, + [99239] = 13, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1582), 1, + ACTIONS(1584), 1, sym__entry_separator, - ACTIONS(1586), 1, - anon_sym_RBRACK, + ACTIONS(1588), 1, + anon_sym_RBRACE, ACTIONS(1598), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6128), 1, + sym__unquoted_pattern_in_record, + ACTIONS(6095), 1, anon_sym_DOLLAR, - ACTIONS(6130), 1, + ACTIONS(6097), 1, anon_sym_LPAREN2, - ACTIONS(6191), 1, + ACTIONS(6236), 1, + anon_sym_DOT, + ACTIONS(6238), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6193), 1, + ACTIONS(6240), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6233), 1, - anon_sym_DOT, - STATE(3209), 1, + STATE(3212), 1, sym_comment, - STATE(3700), 1, + STATE(3696), 1, sym__immediate_decimal, - ACTIONS(6195), 2, + ACTIONS(6242), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3788), 2, + STATE(3862), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [99116] = 3, - ACTIONS(3), 1, + [99281] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3210), 1, + STATE(3213), 1, sym_comment, - ACTIONS(6235), 13, + ACTIONS(2513), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2515), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222259,42 +222433,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, - [99138] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1582), 1, - sym__entry_separator, - ACTIONS(1598), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6238), 1, - anon_sym_DOLLAR, - ACTIONS(6240), 1, - anon_sym_LPAREN2, - ACTIONS(6242), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6244), 1, - aux_sym__immediate_decimal_token2, - STATE(3211), 1, - sym_comment, - STATE(3997), 1, - sym__immediate_decimal, - ACTIONS(1586), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6246), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4294), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [99178] = 3, + [99305] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3212), 1, + ACTIONS(6244), 1, + anon_sym_else, + STATE(3214), 1, sym_comment, - ACTIONS(6248), 13, + ACTIONS(6246), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222307,15 +222453,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, - [99200] = 4, - ACTIONS(3), 1, + [99329] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(3213), 1, + STATE(3215), 1, sym_comment, - ACTIONS(5715), 12, + ACTIONS(1706), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1604), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222327,13 +222473,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [99224] = 3, - ACTIONS(3), 1, + [99353] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3214), 1, + STATE(3216), 1, sym_comment, - ACTIONS(6250), 13, + ACTIONS(2134), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2136), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222345,17 +222493,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [99246] = 4, + [99377] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3215), 1, + STATE(3217), 1, sym_comment, - ACTIONS(5972), 2, + ACTIONS(2517), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5970), 11, + ACTIONS(2519), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222367,15 +222513,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, - [99270] = 4, + [99401] = 12, ACTIONS(103), 1, anon_sym_POUND, - STATE(3216), 1, + ACTIONS(1633), 1, + sym__entry_separator, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6218), 1, + anon_sym_DOLLAR, + ACTIONS(6220), 1, + anon_sym_LPAREN2, + ACTIONS(6222), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6224), 1, + aux_sym__immediate_decimal_token2, + STATE(3218), 1, + sym_comment, + STATE(4001), 1, + sym__immediate_decimal, + ACTIONS(1635), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6226), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4259), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [99441] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3219), 1, sym_comment, - ACTIONS(2451), 2, + ACTIONS(4582), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2453), 11, + ACTIONS(4580), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222387,15 +222561,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [99294] = 4, + [99465] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3217), 1, + STATE(3220), 1, sym_comment, - ACTIONS(2455), 2, + ACTIONS(6065), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2457), 11, + ACTIONS(6063), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222407,15 +222581,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [99318] = 4, + [99489] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3218), 1, + STATE(3221), 1, sym_comment, - ACTIONS(2459), 2, + ACTIONS(4634), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2461), 11, + ACTIONS(4632), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222427,15 +222601,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, - [99342] = 4, + [99513] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5771), 1, + sym_identifier, + ACTIONS(5777), 1, + anon_sym_DOLLAR, + ACTIONS(5779), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5781), 1, + anon_sym_DASH_DASH, + ACTIONS(5783), 1, + anon_sym_DASH2, + ACTIONS(5884), 1, + anon_sym_RBRACK, + STATE(2559), 1, + sym_param_long_flag, + STATE(2644), 1, + sym__param_name, + STATE(2920), 1, + aux_sym_parameter_parens_repeat1, + STATE(3222), 1, + sym_comment, + STATE(3292), 1, + sym_param_short_flag, + STATE(3351), 1, + sym_param_opt, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, + sym_parameter, + [99559] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3219), 1, + STATE(3223), 1, sym_comment, - ACTIONS(2463), 2, + ACTIONS(2082), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2465), 11, + ACTIONS(2084), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222447,15 +222652,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, - [99366] = 4, - ACTIONS(103), 1, + [99583] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3220), 1, + STATE(3224), 1, sym_comment, - ACTIONS(2467), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2469), 11, + ACTIONS(6248), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222467,15 +222669,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, - [99390] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [99605] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3221), 1, + STATE(3225), 1, sym_comment, - ACTIONS(2471), 2, + ACTIONS(6145), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2473), 11, + ACTIONS(6143), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222487,35 +222691,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, - [99414] = 4, + [99629] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6254), 1, - anon_sym_DASH2, - STATE(3222), 1, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + STATE(826), 1, + sym__immediate_decimal, + STATE(3226), 1, sym_comment, - ACTIONS(6252), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(5817), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6250), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(825), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1623), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [99438] = 4, + anon_sym_EQ_GT, + [99663] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3223), 1, + STATE(3227), 1, sym_comment, - ACTIONS(4654), 2, + ACTIONS(5462), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4652), 11, + ACTIONS(5460), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222527,16 +222736,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, - [99462] = 4, + [99687] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3224), 1, + STATE(3228), 1, sym_comment, - ACTIONS(2491), 2, + ACTIONS(2417), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2493), 11, + ACTIONS(2419), 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, + [99711] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5771), 1, + sym_identifier, + ACTIONS(5775), 1, + anon_sym_RBRACK, + ACTIONS(5777), 1, + anon_sym_DOLLAR, + ACTIONS(5779), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5781), 1, + anon_sym_DASH_DASH, + ACTIONS(5783), 1, + anon_sym_DASH2, + STATE(2559), 1, + sym_param_long_flag, + STATE(2644), 1, + sym__param_name, + STATE(2920), 1, + aux_sym_parameter_parens_repeat1, + STATE(3229), 1, + sym_comment, + STATE(3292), 1, + sym_param_short_flag, + STATE(3351), 1, + sym_param_opt, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, + sym_parameter, + [99757] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6004), 1, sym__newline, + ACTIONS(6252), 1, + anon_sym_else, + STATE(3230), 1, + sym_comment, + STATE(3234), 1, + aux_sym__repeat_newline, + ACTIONS(6007), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222547,15 +222809,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [99486] = 4, + [99785] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3225), 1, + STATE(3231), 1, sym_comment, - ACTIONS(2495), 2, + ACTIONS(2126), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2497), 11, + ACTIONS(2128), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222567,18 +222829,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, - [99510] = 6, + [99809] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6149), 1, + ACTIONS(5927), 1, sym__newline, - ACTIONS(6256), 1, + ACTIONS(6254), 1, anon_sym_else, - STATE(3226), 1, + STATE(3232), 1, sym_comment, - STATE(3230), 1, + STATE(3236), 1, aux_sym__repeat_newline, - ACTIONS(6152), 10, + ACTIONS(5930), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222589,16 +222851,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, - [99538] = 4, - ACTIONS(103), 1, + [99837] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3227), 1, - sym_comment, - ACTIONS(2475), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2477), 11, + ACTIONS(5934), 1, sym__newline, + ACTIONS(6256), 1, + anon_sym_else, + STATE(3233), 1, + sym_comment, + STATE(3237), 1, + aux_sym__repeat_newline, + ACTIONS(5937), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222609,18 +222873,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, - [99562] = 6, + [99865] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6068), 1, + ACTIONS(5943), 1, sym__newline, ACTIONS(6258), 1, anon_sym_else, - STATE(3228), 1, + STATE(3234), 1, sym_comment, - STATE(3232), 1, + STATE(3238), 1, aux_sym__repeat_newline, - ACTIONS(6071), 10, + ACTIONS(5946), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222631,18 +222895,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, - [99590] = 6, + [99893] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6075), 1, + ACTIONS(5992), 1, sym__newline, ACTIONS(6260), 1, anon_sym_else, - STATE(3229), 1, + STATE(3235), 1, sym_comment, - STATE(3233), 1, + STATE(3239), 1, aux_sym__repeat_newline, - ACTIONS(6078), 10, + ACTIONS(5995), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222653,18 +222917,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, - [99618] = 6, + [99921] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6098), 1, + ACTIONS(6025), 1, sym__newline, ACTIONS(6262), 1, anon_sym_else, - STATE(3230), 1, + STATE(3236), 1, sym_comment, - STATE(3234), 1, + STATE(3240), 1, aux_sym__repeat_newline, - ACTIONS(6101), 10, + ACTIONS(6028), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222675,18 +222939,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, - [99646] = 6, + [99949] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5952), 1, + ACTIONS(6032), 1, sym__newline, ACTIONS(6264), 1, anon_sym_else, - STATE(3231), 1, + STATE(3237), 1, sym_comment, - STATE(3235), 1, + STATE(3241), 1, aux_sym__repeat_newline, - ACTIONS(5955), 10, + ACTIONS(6035), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222697,18 +222961,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, - [99674] = 6, + [99977] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6035), 1, + ACTIONS(1918), 1, sym__newline, ACTIONS(6266), 1, anon_sym_else, - STATE(3232), 1, - sym_comment, - STATE(3236), 1, + STATE(528), 1, aux_sym__repeat_newline, - ACTIONS(6038), 10, + STATE(3238), 1, + sym_comment, + ACTIONS(1916), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222719,18 +222983,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, - [99702] = 6, + [100005] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6109), 1, + ACTIONS(5957), 1, sym__newline, - ACTIONS(6268), 1, + ACTIONS(6269), 1, anon_sym_else, - STATE(3233), 1, + STATE(3239), 1, sym_comment, - STATE(3237), 1, + STATE(3242), 1, aux_sym__repeat_newline, - ACTIONS(6112), 10, + ACTIONS(5960), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222741,18 +223005,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, - [99730] = 6, + [100033] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1937), 1, + ACTIONS(1918), 1, sym__newline, - ACTIONS(6270), 1, + ACTIONS(6271), 1, anon_sym_else, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(3234), 1, + STATE(3240), 1, sym_comment, - ACTIONS(1935), 10, + ACTIONS(1916), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222763,18 +223027,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, - [99758] = 6, + [100061] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5930), 1, + ACTIONS(1918), 1, sym__newline, - ACTIONS(6273), 1, + ACTIONS(6274), 1, anon_sym_else, - STATE(3235), 1, - sym_comment, - STATE(3238), 1, + STATE(528), 1, aux_sym__repeat_newline, - ACTIONS(5933), 10, + STATE(3241), 1, + sym_comment, + ACTIONS(1916), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222785,18 +223049,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, - [99786] = 6, + [100089] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1937), 1, + ACTIONS(1918), 1, sym__newline, - ACTIONS(6275), 1, + ACTIONS(6277), 1, anon_sym_else, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(3236), 1, + STATE(3242), 1, + sym_comment, + ACTIONS(1916), 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, + [100117] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3243), 1, sym_comment, - ACTIONS(1935), 10, + ACTIONS(6149), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6147), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222807,18 +223091,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, - [99814] = 6, + [100141] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1633), 1, + sym__space, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(3205), 1, + anon_sym_LPAREN2, + ACTIONS(3669), 1, + anon_sym_DOLLAR, + ACTIONS(6191), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6193), 1, + aux_sym__immediate_decimal_token2, + STATE(3244), 1, + sym_comment, + STATE(4044), 1, + sym__immediate_decimal, + ACTIONS(1635), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6195), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3096), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [100181] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1937), 1, + STATE(3245), 1, + sym_comment, + ACTIONS(6280), 13, sym__newline, - ACTIONS(6278), 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, + [100203] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6282), 1, anon_sym_else, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(3237), 1, + STATE(3246), 1, sym_comment, - ACTIONS(1935), 10, + ACTIONS(6246), 12, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222829,18 +223158,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [99842] = 6, + [100227] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1937), 1, + ACTIONS(6284), 1, + anon_sym_catch, + STATE(3247), 1, + sym_comment, + ACTIONS(6076), 12, + ts_builtin_sym_end, sym__newline, - ACTIONS(6281), 1, - anon_sym_else, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(3238), 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, + [100251] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1623), 1, + sym__space, + ACTIONS(3205), 1, + anon_sym_LPAREN2, + ACTIONS(3669), 1, + anon_sym_DOLLAR, + ACTIONS(4952), 1, + anon_sym_DOT, + ACTIONS(6052), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6054), 1, + aux_sym__immediate_decimal_token2, + STATE(3248), 1, + sym_comment, + STATE(3815), 1, + sym__immediate_decimal, + ACTIONS(1625), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6056), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3814), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [100291] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3249), 1, + sym_comment, + ACTIONS(6286), 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, + [100313] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3250), 1, sym_comment, - ACTIONS(1935), 10, + ACTIONS(2497), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2499), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222851,35 +223245,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [99870] = 4, + [100337] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5010), 1, + ACTIONS(5771), 1, + sym_identifier, + ACTIONS(5777), 1, + anon_sym_DOLLAR, + ACTIONS(5779), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5781), 1, + anon_sym_DASH_DASH, + ACTIONS(5783), 1, anon_sym_DASH2, - STATE(3239), 1, + ACTIONS(5897), 1, + anon_sym_RPAREN, + STATE(2559), 1, + sym_param_long_flag, + STATE(2644), 1, + sym__param_name, + STATE(2920), 1, + aux_sym_parameter_parens_repeat1, + STATE(3251), 1, sym_comment, - ACTIONS(5008), 12, - anon_sym_EQ, - sym_identifier, + STATE(3292), 1, + sym_param_short_flag, + STATE(3351), 1, + sym_param_opt, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, + sym_parameter, + [100383] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3252), 1, + sym_comment, + ACTIONS(2441), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2443), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [100407] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3253), 1, + sym_comment, + ACTIONS(2497), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2499), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [100431] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3254), 1, + sym_comment, + ACTIONS(6153), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(6151), 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, + [100455] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5771), 1, + sym_identifier, + ACTIONS(5777), 1, anon_sym_DOLLAR, - anon_sym_AT2, + ACTIONS(5779), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5781), 1, anon_sym_DASH_DASH, - [99894] = 4, + ACTIONS(5783), 1, + anon_sym_DASH2, + ACTIONS(5789), 1, + anon_sym_RPAREN, + STATE(2559), 1, + sym_param_long_flag, + STATE(2644), 1, + sym__param_name, + STATE(2920), 1, + aux_sym_parameter_parens_repeat1, + STATE(3255), 1, + sym_comment, + STATE(3292), 1, + sym_param_short_flag, + STATE(3351), 1, + sym_param_opt, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, + sym_parameter, + [100501] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6288), 1, + anon_sym_else, + STATE(3256), 1, + sym_comment, + ACTIONS(6246), 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, + [100525] = 13, ACTIONS(103), 1, anon_sym_POUND, - STATE(3240), 1, + ACTIONS(1584), 1, + sym__entry_separator, + ACTIONS(1588), 1, + anon_sym_RBRACK, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6095), 1, + anon_sym_DOLLAR, + ACTIONS(6097), 1, + anon_sym_LPAREN2, + ACTIONS(6179), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6181), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6290), 1, + anon_sym_DOT, + STATE(3257), 1, + sym_comment, + STATE(3774), 1, + sym__immediate_decimal, + ACTIONS(6183), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3862), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [100567] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3258), 1, sym_comment, - ACTIONS(2487), 2, + ACTIONS(6167), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2489), 11, + ACTIONS(6165), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222891,14 +223436,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, - [99918] = 4, + [100591] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + STATE(848), 1, + sym__immediate_decimal, + STATE(3259), 1, + sym_comment, + ACTIONS(5817), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6250), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(847), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1653), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [100625] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5014), 1, + ACTIONS(6294), 1, + anon_sym_QMARK, + ACTIONS(6296), 1, anon_sym_DASH2, - STATE(3241), 1, + STATE(3260), 1, sym_comment, - ACTIONS(5012), 12, + ACTIONS(6292), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -222908,46 +223480,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [99942] = 12, - ACTIONS(103), 1, + [100651] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1631), 1, - sym__entry_separator, - ACTIONS(1641), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6238), 1, - anon_sym_DOLLAR, - ACTIONS(6240), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(6242), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6244), 1, - aux_sym__immediate_decimal_token2, - STATE(3242), 1, - sym_comment, - STATE(4007), 1, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + STATE(864), 1, sym__immediate_decimal, - ACTIONS(1633), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6246), 2, + STATE(3261), 1, + sym_comment, + ACTIONS(5817), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4398), 2, + ACTIONS(6250), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(849), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [99982] = 4, + ACTIONS(1667), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [100685] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3243), 1, + STATE(3262), 1, sym_comment, - ACTIONS(4660), 2, + ACTIONS(2066), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4658), 11, + ACTIONS(2068), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222959,35 +223527,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, - [100006] = 4, - ACTIONS(103), 1, + [100709] = 9, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3244), 1, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + STATE(869), 1, + sym__immediate_decimal, + STATE(3263), 1, sym_comment, - ACTIONS(1862), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1864), 11, + ACTIONS(5817), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6250), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(867), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1673), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [100030] = 4, + anon_sym_EQ_GT, + [100743] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3245), 1, + STATE(3264), 1, sym_comment, - ACTIONS(4664), 2, + ACTIONS(2074), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4662), 11, + ACTIONS(2076), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222999,15 +223572,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [100054] = 4, + [100767] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3246), 1, + STATE(3265), 1, sym_comment, - ACTIONS(5976), 2, + ACTIONS(5919), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5974), 11, + ACTIONS(5917), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223019,145 +223592,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [100078] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5034), 1, - anon_sym_DASH2, - STATE(3247), 1, - sym_comment, - ACTIONS(5032), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [100102] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5038), 1, - anon_sym_DASH2, - STATE(3248), 1, - sym_comment, - ACTIONS(5036), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [100126] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5042), 1, - anon_sym_DASH2, - STATE(3249), 1, - sym_comment, - ACTIONS(5040), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [100150] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5046), 1, - anon_sym_DASH2, - STATE(3250), 1, - sym_comment, - ACTIONS(5044), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT2, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [100174] = 15, + [100791] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5792), 1, + ACTIONS(5771), 1, sym_identifier, - ACTIONS(5798), 1, + ACTIONS(5777), 1, anon_sym_DOLLAR, - ACTIONS(5800), 1, + ACTIONS(5779), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5802), 1, + ACTIONS(5781), 1, anon_sym_DASH_DASH, - ACTIONS(5804), 1, + ACTIONS(5783), 1, anon_sym_DASH2, - ACTIONS(6284), 1, + ACTIONS(6298), 1, anon_sym_RBRACK, - STATE(2542), 1, + STATE(2559), 1, sym_param_long_flag, - STATE(2679), 1, + STATE(2644), 1, sym__param_name, - STATE(2880), 1, + STATE(2920), 1, aux_sym_parameter_parens_repeat1, - STATE(3251), 1, + STATE(3266), 1, sym_comment, - STATE(3309), 1, + STATE(3292), 1, sym_param_short_flag, - STATE(3337), 1, - sym_param_rest, - STATE(3338), 1, + STATE(3351), 1, sym_param_opt, - STATE(3644), 1, + STATE(3399), 1, + sym_param_rest, + STATE(3647), 1, sym_parameter, - [100220] = 4, + [100837] = 12, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1584), 1, + sym__entry_separator, + ACTIONS(1588), 1, + anon_sym_RBRACK, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1780), 1, + anon_sym_DOLLAR, + ACTIONS(6097), 1, + anon_sym_LPAREN2, + ACTIONS(6300), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6302), 1, + aux_sym__immediate_decimal_token2, + STATE(3267), 1, + sym_comment, + STATE(4193), 1, + sym__immediate_decimal, + ACTIONS(6304), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4293), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [100876] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6288), 1, + ACTIONS(2459), 1, anon_sym_DASH2, - STATE(3252), 1, + STATE(3268), 1, sym_comment, - ACTIONS(6286), 12, + ACTIONS(2457), 11, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100244] = 4, + [100899] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5056), 1, + ACTIONS(2084), 1, anon_sym_DASH2, - STATE(3253), 1, + STATE(3269), 1, sym_comment, - ACTIONS(5054), 12, + ACTIONS(2082), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223167,153 +223686,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100268] = 4, + [100922] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5030), 1, + ACTIONS(1921), 1, anon_sym_DASH2, - STATE(3254), 1, + ACTIONS(6306), 1, + sym__newline, + STATE(3270), 2, + aux_sym__repeat_newline, sym_comment, - ACTIONS(5028), 12, + ACTIONS(1916), 9, anon_sym_EQ, sym_identifier, - sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [100292] = 15, + [100947] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5792), 1, - sym_identifier, - ACTIONS(5798), 1, - anon_sym_DOLLAR, - ACTIONS(5800), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5802), 1, - anon_sym_DASH_DASH, - ACTIONS(5804), 1, + ACTIONS(6311), 1, anon_sym_DASH2, - ACTIONS(6290), 1, - anon_sym_RPAREN, - STATE(2542), 1, - sym_param_long_flag, - STATE(2679), 1, - sym__param_name, - STATE(2880), 1, - aux_sym_parameter_parens_repeat1, - STATE(3255), 1, + STATE(3271), 1, sym_comment, - STATE(3309), 1, - sym_param_short_flag, - STATE(3337), 1, - sym_param_rest, - STATE(3338), 1, - sym_param_opt, - STATE(3644), 1, - sym_parameter, - [100338] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5792), 1, + ACTIONS(6309), 11, + anon_sym_EQ, sym_identifier, - ACTIONS(5798), 1, - anon_sym_DOLLAR, - ACTIONS(5800), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5802), 1, - anon_sym_DASH_DASH, - ACTIONS(5804), 1, - anon_sym_DASH2, - ACTIONS(6292), 1, - anon_sym_PIPE, - STATE(2542), 1, - sym_param_long_flag, - STATE(2679), 1, - sym__param_name, - STATE(2880), 1, - aux_sym_parameter_parens_repeat1, - STATE(3256), 1, - sym_comment, - STATE(3309), 1, - sym_param_short_flag, - STATE(3337), 1, - sym_param_rest, - STATE(3338), 1, - sym_param_opt, - STATE(3644), 1, - sym_parameter, - [100384] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2910), 1, - anon_sym_DOLLAR, - STATE(807), 1, - sym__immediate_decimal, - STATE(3257), 1, - sym_comment, - ACTIONS(5819), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6189), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(806), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1607), 4, - anon_sym_if, sym__newline, anon_sym_PIPE, - anon_sym_EQ_GT, - [100418] = 15, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5792), 1, - sym_identifier, - ACTIONS(5796), 1, + anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(5798), 1, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5800), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5802), 1, anon_sym_DASH_DASH, - ACTIONS(5804), 1, - anon_sym_DASH2, - STATE(2542), 1, - sym_param_long_flag, - STATE(2679), 1, - sym__param_name, - STATE(2880), 1, - aux_sym_parameter_parens_repeat1, - STATE(3258), 1, - sym_comment, - STATE(3309), 1, - sym_param_short_flag, - STATE(3337), 1, - sym_param_rest, - STATE(3338), 1, - sym_param_opt, - STATE(3644), 1, - sym_parameter, - [100464] = 3, + [100970] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3259), 1, + STATE(3272), 1, sym_comment, - ACTIONS(5626), 13, + ACTIONS(6171), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223325,37 +223745,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, - [100486] = 4, + [100991] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3138), 1, - aux_sym__repeat_newline, - STATE(3260), 1, - sym_comment, - ACTIONS(5719), 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, - [100510] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3261), 1, + STATE(3273), 1, sym_comment, - ACTIONS(2479), 2, + ACTIONS(6280), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(2481), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223367,15 +223763,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, - [100534] = 4, - ACTIONS(103), 1, + [101012] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3262), 1, + STATE(3274), 1, sym_comment, - ACTIONS(2479), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2481), 11, + ACTIONS(6313), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223387,15 +223780,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, - [100558] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + [101033] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3263), 1, + STATE(3275), 1, sym_comment, - ACTIONS(6161), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(6159), 11, + ACTIONS(6315), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223407,58 +223798,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, - [100582] = 11, + anon_sym_RPAREN, + [101054] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, - sym__space, - ACTIONS(3261), 1, - anon_sym_LPAREN2, - ACTIONS(3659), 1, - anon_sym_DOLLAR, - ACTIONS(6294), 1, + ACTIONS(6317), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6296), 1, - aux_sym__immediate_decimal_token2, - STATE(3002), 1, - sym__immediate_decimal, - STATE(3264), 1, + ACTIONS(6319), 1, + aux_sym__immediate_decimal_token5, + STATE(3276), 1, sym_comment, - ACTIONS(1653), 2, + ACTIONS(747), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(749), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [101081] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2479), 1, + anon_sym_DASH2, + STATE(3277), 1, + sym_comment, + ACTIONS(2477), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, - ACTIONS(5941), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2996), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [100619] = 3, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [101104] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3265), 1, + ACTIONS(2483), 1, + anon_sym_DASH2, + STATE(3278), 1, sym_comment, - ACTIONS(6229), 12, - ts_builtin_sym_end, + ACTIONS(2481), 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, - [100640] = 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, + [101127] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5767), 1, + ACTIONS(2487), 1, anon_sym_DASH2, - STATE(3266), 1, + STATE(3279), 1, sym_comment, - ACTIONS(5765), 11, + ACTIONS(2485), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223470,52 +223877,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [100663] = 3, + [101150] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3267), 1, + ACTIONS(2491), 1, + anon_sym_DASH2, + STATE(3280), 1, sym_comment, - ACTIONS(6298), 12, + ACTIONS(2489), 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, - [100684] = 6, - ACTIONS(103), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [101173] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6300), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6302), 1, - aux_sym__immediate_decimal_token5, - STATE(3268), 1, + ACTIONS(2495), 1, + anon_sym_DASH2, + STATE(3281), 1, sym_comment, - ACTIONS(747), 4, + ACTIONS(2493), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(749), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [100711] = 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [101196] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3269), 1, + STATE(3282), 1, sym_comment, - ACTIONS(6231), 12, - ts_builtin_sym_end, + ACTIONS(6321), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223527,13 +223932,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, - [100732] = 3, + anon_sym_RPAREN, + [101217] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3270), 1, + STATE(3283), 1, sym_comment, - ACTIONS(6235), 12, - ts_builtin_sym_end, + ACTIONS(6323), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223545,64 +223950,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, - [100753] = 11, + anon_sym_RPAREN, + [101238] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1643), 1, - sym__entry_separator, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(6130), 1, - anon_sym_LPAREN2, - ACTIONS(6304), 1, + ACTIONS(6325), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6306), 1, - aux_sym__immediate_decimal_token2, - STATE(3271), 1, + ACTIONS(6327), 1, + aux_sym__immediate_decimal_token5, + STATE(3284), 1, sym_comment, - STATE(4249), 1, - sym__immediate_decimal, - ACTIONS(1645), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6195), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4248), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [100790] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1647), 1, - sym__entry_separator, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(6130), 1, + ACTIONS(747), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 6, + sym__space, anon_sym_LPAREN2, - ACTIONS(6304), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6306), 1, - aux_sym__immediate_decimal_token2, - STATE(3272), 1, - sym_comment, - STATE(4254), 1, - sym__immediate_decimal, - ACTIONS(1649), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6195), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4253), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [100827] = 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [101265] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3273), 1, + STATE(3285), 1, sym_comment, - ACTIONS(6308), 12, + ACTIONS(6329), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223615,12 +223990,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [100848] = 3, + [101286] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3274), 1, + STATE(3286), 1, sym_comment, - ACTIONS(4850), 12, + ACTIONS(6207), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223632,13 +224008,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, - [100869] = 3, + [101307] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3275), 1, + STATE(3287), 1, sym_comment, - ACTIONS(6310), 12, + ACTIONS(4838), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223650,19 +224026,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, - [100890] = 6, + [101328] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - STATE(893), 1, - aux_sym__pipe_separator, - STATE(3276), 1, + STATE(3288), 1, sym_comment, - STATE(3431), 1, - aux_sym__repeat_newline, - ACTIONS(2273), 9, + ACTIONS(6331), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223672,33 +224043,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, - [100917] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2461), 1, - anon_sym_DASH2, - STATE(3277), 1, - sym_comment, - ACTIONS(2459), 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, - [100940] = 3, + [101349] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3278), 1, - sym_comment, - ACTIONS(6312), 12, + ACTIONS(2903), 1, sym__newline, - anon_sym_SEMI, + STATE(789), 1, + aux_sym__pipe_separator, + STATE(3289), 1, + sym_comment, + STATE(3433), 1, + aux_sym__repeat_newline, + ACTIONS(2261), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223708,13 +224065,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, - [100961] = 3, + [101376] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3279), 1, + STATE(3290), 1, sym_comment, - ACTIONS(6314), 12, + ACTIONS(6209), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223726,13 +224083,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, - [100982] = 3, + [101397] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3280), 1, + STATE(3291), 1, sym_comment, - ACTIONS(6316), 12, + ACTIONS(6234), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223744,41 +224101,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, - [101003] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1651), 1, - sym__entry_separator, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(6130), 1, - anon_sym_LPAREN2, - ACTIONS(6304), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6306), 1, - aux_sym__immediate_decimal_token2, - STATE(3281), 1, - sym_comment, - STATE(4256), 1, - sym__immediate_decimal, - ACTIONS(1653), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6195), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4255), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101040] = 4, + [101418] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5866), 1, + ACTIONS(6335), 1, anon_sym_DASH2, - STATE(3282), 1, + STATE(3292), 1, sym_comment, - ACTIONS(5864), 11, + ACTIONS(6333), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -223790,50 +224120,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [101063] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3283), 1, - sym_comment, - ACTIONS(6227), 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, - [101084] = 3, + [101441] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3284), 1, - sym_comment, - ACTIONS(6318), 12, + ACTIONS(6004), 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, - [101105] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3285), 1, + ACTIONS(6337), 1, + anon_sym_else, + STATE(3293), 1, sym_comment, - ACTIONS(6320), 12, - sym__newline, - anon_sym_SEMI, + STATE(3301), 1, + aux_sym__repeat_newline, + ACTIONS(6007), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -223843,20 +224141,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, - [101126] = 6, + [101468] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6322), 1, + ACTIONS(6339), 1, sym__newline, - ACTIONS(6325), 1, + ACTIONS(6342), 1, anon_sym_DASH2, - STATE(3286), 1, + STATE(3294), 1, sym_comment, - ACTIONS(2110), 2, + ACTIONS(2146), 2, anon_sym_EQ, anon_sym_COLON, - ACTIONS(4453), 8, + ACTIONS(4373), 8, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -223865,12 +224162,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [101153] = 3, + [101495] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3287), 1, + STATE(3295), 1, sym_comment, - ACTIONS(6327), 12, + ACTIONS(6344), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223883,12 +224180,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101174] = 3, + [101516] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3288), 1, + STATE(3296), 1, sym_comment, - ACTIONS(6329), 12, + ACTIONS(6346), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223901,80 +224198,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101195] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6128), 1, - anon_sym_DOLLAR, - ACTIONS(6130), 1, - anon_sym_LPAREN2, - ACTIONS(6134), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6136), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6331), 1, - anon_sym_RBRACK, - ACTIONS(6333), 1, - anon_sym_DOLLAR2, - ACTIONS(6335), 1, - aux_sym__unquoted_in_list_token2, - STATE(3289), 1, - sym_comment, - STATE(3632), 1, - sym__immediate_decimal, - ACTIONS(6138), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3889), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101234] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6149), 1, - sym__newline, - ACTIONS(6337), 1, - anon_sym_else, - STATE(3290), 1, - sym_comment, - STATE(3298), 1, - aux_sym__repeat_newline, - ACTIONS(6152), 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, - [101261] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2154), 1, - anon_sym_DASH2, - STATE(3291), 1, - sym_comment, - ACTIONS(2152), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [101284] = 3, + [101537] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3292), 1, + STATE(3297), 1, sym_comment, - ACTIONS(4832), 12, - ts_builtin_sym_end, + ACTIONS(6348), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223986,58 +224215,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, - [101305] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1582), 1, - sym__entry_separator, - ACTIONS(1586), 1, - anon_sym_RBRACE, - ACTIONS(1598), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(6130), 1, - anon_sym_LPAREN2, - ACTIONS(6339), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6341), 1, - aux_sym__immediate_decimal_token2, - STATE(3293), 1, - sym_comment, - STATE(4229), 1, - sym__immediate_decimal, - ACTIONS(6343), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4294), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101344] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6347), 1, - anon_sym_DASH2, - STATE(3294), 1, - sym_comment, - ACTIONS(6345), 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, - [101367] = 3, + [101558] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3295), 1, + STATE(3298), 1, sym_comment, - ACTIONS(6349), 12, + ACTIONS(6350), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224050,18 +224234,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101388] = 6, + [101579] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6068), 1, + ACTIONS(5927), 1, sym__newline, - ACTIONS(6351), 1, + ACTIONS(6352), 1, anon_sym_else, - STATE(3296), 1, + STATE(3299), 1, sym_comment, - STATE(3300), 1, + STATE(3303), 1, aux_sym__repeat_newline, - ACTIONS(6071), 9, + ACTIONS(5930), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -224071,18 +224255,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, - [101415] = 6, + [101606] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6075), 1, + ACTIONS(5934), 1, sym__newline, - ACTIONS(6353), 1, + ACTIONS(6354), 1, anon_sym_else, - STATE(3297), 1, + STATE(3300), 1, sym_comment, - STATE(3301), 1, + STATE(3304), 1, aux_sym__repeat_newline, - ACTIONS(6078), 9, + ACTIONS(5937), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -224092,18 +224276,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, - [101442] = 6, + [101633] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6098), 1, + ACTIONS(5943), 1, sym__newline, - ACTIONS(6355), 1, + ACTIONS(6356), 1, anon_sym_else, - STATE(3298), 1, + STATE(3301), 1, sym_comment, - STATE(3302), 1, + STATE(3305), 1, aux_sym__repeat_newline, - ACTIONS(6101), 9, + ACTIONS(5946), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -224113,18 +224297,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, - [101469] = 6, + [101660] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5952), 1, + ACTIONS(5992), 1, sym__newline, - ACTIONS(6357), 1, + ACTIONS(6358), 1, anon_sym_else, - STATE(3299), 1, + STATE(3302), 1, sym_comment, - STATE(3304), 1, + STATE(3307), 1, aux_sym__repeat_newline, - ACTIONS(5955), 9, + ACTIONS(5995), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -224134,18 +224318,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, - [101496] = 6, + [101687] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6035), 1, + ACTIONS(6025), 1, sym__newline, - ACTIONS(6359), 1, + ACTIONS(6360), 1, anon_sym_else, - STATE(3300), 1, + STATE(3303), 1, sym_comment, - STATE(3305), 1, + STATE(3308), 1, aux_sym__repeat_newline, - ACTIONS(6038), 9, + ACTIONS(6028), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -224155,18 +224339,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, - [101523] = 6, + [101714] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6109), 1, + ACTIONS(6032), 1, sym__newline, - ACTIONS(6361), 1, + ACTIONS(6362), 1, anon_sym_else, - STATE(3301), 1, + STATE(3304), 1, sym_comment, - STATE(3306), 1, + STATE(3309), 1, aux_sym__repeat_newline, - ACTIONS(6112), 9, + ACTIONS(6035), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -224176,18 +224360,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, - [101550] = 6, + [101741] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1937), 1, + ACTIONS(1918), 1, sym__newline, - ACTIONS(6363), 1, + ACTIONS(6364), 1, anon_sym_else, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(3302), 1, + STATE(3305), 1, sym_comment, - ACTIONS(1935), 9, + ACTIONS(1916), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -224197,12 +224381,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, - [101577] = 3, + [101768] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3303), 1, + STATE(3306), 1, sym_comment, - ACTIONS(6366), 12, + ACTIONS(6367), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224215,18 +224399,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101598] = 6, + [101789] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5930), 1, + ACTIONS(5957), 1, sym__newline, - ACTIONS(6368), 1, + ACTIONS(6369), 1, anon_sym_else, - STATE(3304), 1, - sym_comment, STATE(3307), 1, + sym_comment, + STATE(3310), 1, aux_sym__repeat_newline, - ACTIONS(5933), 9, + ACTIONS(5960), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -224236,18 +224420,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, - [101625] = 6, + [101816] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1937), 1, + ACTIONS(1918), 1, sym__newline, - ACTIONS(6370), 1, + ACTIONS(6371), 1, anon_sym_else, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(3305), 1, + STATE(3308), 1, sym_comment, - ACTIONS(1935), 9, + ACTIONS(1916), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -224257,18 +224441,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, - [101652] = 6, + [101843] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1937), 1, + ACTIONS(1918), 1, sym__newline, - ACTIONS(6373), 1, + ACTIONS(6374), 1, anon_sym_else, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(3306), 1, + STATE(3309), 1, sym_comment, - ACTIONS(1935), 9, + ACTIONS(1916), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -224278,18 +224462,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, - [101679] = 6, + [101870] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1937), 1, + ACTIONS(1918), 1, sym__newline, - ACTIONS(6376), 1, + ACTIONS(6377), 1, anon_sym_else, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(3307), 1, + STATE(3310), 1, sym_comment, - ACTIONS(1935), 9, + ACTIONS(1916), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -224299,71 +224483,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, - [101706] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6379), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6381), 1, - aux_sym__immediate_decimal_token5, - STATE(3308), 1, - sym_comment, - ACTIONS(747), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(749), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [101733] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6385), 1, - anon_sym_DASH2, - STATE(3309), 1, - sym_comment, - ACTIONS(6383), 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, - [101756] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2347), 1, - anon_sym_DASH2, - STATE(3310), 1, - sym_comment, - ACTIONS(2345), 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, - [101779] = 3, + [101897] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3311), 1, sym_comment, - ACTIONS(6387), 12, + ACTIONS(6129), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224375,94 +224501,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, - [101800] = 6, - ACTIONS(3), 1, + [101918] = 12, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6389), 1, + ACTIONS(6095), 1, + anon_sym_DOLLAR, + ACTIONS(6097), 1, + anon_sym_LPAREN2, + ACTIONS(6101), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6391), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(6103), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6380), 1, + anon_sym_RBRACK, + ACTIONS(6382), 1, + anon_sym_DOLLAR2, + ACTIONS(6384), 1, + aux_sym__unquoted_in_list_token2, STATE(3312), 1, sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 8, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [101827] = 4, + STATE(3658), 1, + sym__immediate_decimal, + ACTIONS(6105), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3897), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [101957] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2335), 1, - anon_sym_DASH2, STATE(3313), 1, sym_comment, - ACTIONS(2333), 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, - [101850] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6347), 1, - anon_sym_DASH2, - STATE(3314), 1, - sym_comment, - ACTIONS(6345), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6386), 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, - [101873] = 7, + [101978] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1444), 1, - anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_QMARK2, - STATE(352), 1, - sym__path_suffix, - STATE(3315), 1, - sym_comment, - ACTIONS(1440), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1584), 1, sym__entry_separator, - ACTIONS(1438), 6, - anon_sym_RBRACK, + ACTIONS(1588), 1, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_COLON2, - anon_sym_DOT2, - [101902] = 3, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_record, + ACTIONS(1780), 1, + anon_sym_DOLLAR, + ACTIONS(6097), 1, + anon_sym_LPAREN2, + ACTIONS(6388), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6390), 1, + aux_sym__immediate_decimal_token2, + STATE(3314), 1, + sym_comment, + STATE(4231), 1, + sym__immediate_decimal, + ACTIONS(6392), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4293), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [102017] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3316), 1, + STATE(3315), 1, sym_comment, - ACTIONS(6395), 12, + ACTIONS(6394), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224475,12 +224591,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [101923] = 3, + [102038] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1584), 1, + anon_sym_LBRACE, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + ACTIONS(6396), 1, + anon_sym_DOT, + STATE(3316), 1, + sym_comment, + STATE(4085), 1, + sym__immediate_decimal, + ACTIONS(6398), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6400), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4147), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [102075] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3317), 1, sym_comment, - ACTIONS(6179), 12, + ACTIONS(6214), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -224493,40 +224635,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, - [101944] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6128), 1, - anon_sym_DOLLAR, - ACTIONS(6130), 1, - anon_sym_LPAREN2, - ACTIONS(6134), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6136), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6333), 1, - anon_sym_DOLLAR2, - ACTIONS(6335), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(6397), 1, - anon_sym_RBRACK, - STATE(3318), 1, - sym_comment, - STATE(3632), 1, - sym__immediate_decimal, - ACTIONS(6138), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3889), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [101983] = 3, + [102096] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3319), 1, + STATE(3318), 1, sym_comment, - ACTIONS(6163), 12, - ts_builtin_sym_end, + ACTIONS(6402), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224538,39 +224652,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [102004] = 12, + anon_sym_RPAREN, + [102117] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6406), 1, + anon_sym_DASH2, + STATE(3319), 1, + sym_comment, + ACTIONS(6404), 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, + [102140] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1582), 1, + ACTIONS(1653), 1, sym__entry_separator, - ACTIONS(1586), 1, - anon_sym_RBRACK, - ACTIONS(1598), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1776), 1, + ACTIONS(1780), 1, anon_sym_DOLLAR, - ACTIONS(6130), 1, + ACTIONS(6097), 1, anon_sym_LPAREN2, - ACTIONS(6399), 1, + ACTIONS(6408), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6401), 1, + ACTIONS(6410), 1, aux_sym__immediate_decimal_token2, STATE(3320), 1, sym_comment, - STATE(4193), 1, + STATE(4251), 1, sym__immediate_decimal, - ACTIONS(6403), 2, + ACTIONS(1655), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6183), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4294), 2, + STATE(4237), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [102043] = 3, + [102177] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6414), 1, + anon_sym_DASH2, STATE(3321), 1, sym_comment, - ACTIONS(6405), 12, + ACTIONS(6412), 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, + [102200] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3322), 1, + sym_comment, + ACTIONS(6416), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224583,12 +224735,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [102064] = 3, + [102221] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3322), 1, + STATE(3323), 1, sym_comment, - ACTIONS(6082), 12, + ACTIONS(4832), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -224601,18 +224753,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, - [102085] = 6, + [102242] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1667), 1, + sym__entry_separator, + ACTIONS(1780), 1, + anon_sym_DOLLAR, + ACTIONS(6097), 1, + anon_sym_LPAREN2, + ACTIONS(6408), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6410), 1, + aux_sym__immediate_decimal_token2, + STATE(3324), 1, + sym_comment, + STATE(4254), 1, + sym__immediate_decimal, + ACTIONS(1669), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6183), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4253), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [102279] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - STATE(751), 1, - aux_sym__pipe_separator, - STATE(3323), 1, + STATE(3325), 1, sym_comment, - STATE(3431), 1, - aux_sym__repeat_newline, - ACTIONS(2273), 9, + ACTIONS(6418), 12, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -224622,12 +224796,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, - [102112] = 3, + anon_sym_RPAREN, + [102300] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3324), 1, + STATE(3326), 1, sym_comment, - ACTIONS(4834), 12, + ACTIONS(6420), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224640,12 +224815,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [102133] = 3, + [102321] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3325), 1, + STATE(3327), 1, sym_comment, - ACTIONS(6407), 12, + ACTIONS(5530), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224657,13 +224833,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, - [102154] = 3, + [102342] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3326), 1, + STATE(3328), 1, sym_comment, - ACTIONS(6409), 12, + ACTIONS(6286), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224675,14 +224851,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, - [102175] = 3, + [102363] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3327), 1, + STATE(3329), 1, sym_comment, - ACTIONS(6215), 12, - ts_builtin_sym_end, + ACTIONS(6422), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224694,32 +224868,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, - [102196] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1940), 1, - anon_sym_DASH2, - ACTIONS(6411), 1, - sym__newline, - STATE(3328), 2, - aux_sym__repeat_newline, - sym_comment, - ACTIONS(1935), 9, - anon_sym_EQ, - sym_identifier, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [102221] = 3, + [102384] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3329), 1, + STATE(3330), 1, sym_comment, - ACTIONS(6414), 12, + ACTIONS(6424), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224732,39 +224887,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [102242] = 12, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1631), 1, - sym__entry_separator, - ACTIONS(1633), 1, - anon_sym_RBRACK, - ACTIONS(1641), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(6130), 1, - anon_sym_LPAREN2, - ACTIONS(6399), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6401), 1, - aux_sym__immediate_decimal_token2, - STATE(3330), 1, - sym_comment, - STATE(4265), 1, - sym__immediate_decimal, - ACTIONS(6403), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4398), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [102281] = 3, + [102405] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3331), 1, sym_comment, - ACTIONS(6416), 12, + ACTIONS(6426), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224777,12 +224905,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [102302] = 3, + [102426] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3332), 1, sym_comment, - ACTIONS(6418), 12, + ACTIONS(6428), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224795,15 +224923,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [102323] = 3, + [102447] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + STATE(730), 1, + aux_sym__pipe_separator, STATE(3333), 1, sym_comment, - ACTIONS(4826), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + STATE(3433), 1, + aux_sym__repeat_newline, + ACTIONS(2261), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -224813,12 +224944,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, - [102344] = 3, + [102474] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3334), 1, sym_comment, - ACTIONS(6420), 12, + ACTIONS(6430), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224831,85 +224962,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [102365] = 11, + [102495] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1643), 1, - sym__space, - ACTIONS(3261), 1, - anon_sym_LPAREN2, - ACTIONS(3659), 1, - anon_sym_DOLLAR, - ACTIONS(6294), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6296), 1, - aux_sym__immediate_decimal_token2, - STATE(3049), 1, - sym__immediate_decimal, + ACTIONS(6432), 1, + anon_sym_DOT, + ACTIONS(6434), 1, + aux_sym__immediate_decimal_token5, STATE(3335), 1, sym_comment, - ACTIONS(1645), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5941), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3103), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [102402] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1647), 1, - sym__space, - ACTIONS(3261), 1, - anon_sym_LPAREN2, - ACTIONS(3659), 1, - anon_sym_DOLLAR, - ACTIONS(6294), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6296), 1, - aux_sym__immediate_decimal_token2, - STATE(2986), 1, - sym__immediate_decimal, - STATE(3336), 1, - sym_comment, - ACTIONS(1649), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(5941), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(3095), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [102439] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6424), 1, - anon_sym_DASH2, - STATE(3337), 1, - sym_comment, - ACTIONS(6422), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(739), 4, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [102462] = 4, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(741), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [102522] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6428), 1, + ACTIONS(6438), 1, anon_sym_DASH2, - STATE(3338), 1, + STATE(3336), 1, sym_comment, - ACTIONS(6426), 11, + ACTIONS(6436), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -224921,31 +225002,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102485] = 4, + [102545] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5860), 1, - anon_sym_DASH2, - STATE(3339), 1, + STATE(3337), 1, sym_comment, - ACTIONS(5858), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6212), 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, - [102508] = 3, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [102566] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3340), 1, + STATE(3338), 1, sym_comment, - ACTIONS(6430), 12, + ACTIONS(6440), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224958,33 +225038,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [102529] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6432), 1, - anon_sym_DOT, - ACTIONS(6434), 1, - aux_sym__immediate_decimal_token5, - STATE(3341), 1, - sym_comment, - ACTIONS(739), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [102556] = 3, + [102587] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3342), 1, + STATE(3339), 1, sym_comment, - ACTIONS(6436), 12, + ACTIONS(6442), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224997,14 +225056,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [102577] = 4, + [102608] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2477), 1, + ACTIONS(2443), 1, anon_sym_DASH2, - STATE(3343), 1, + STATE(3340), 1, sym_comment, - ACTIONS(2475), 11, + ACTIONS(2441), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -225016,12 +225075,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102600] = 3, + [102631] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1673), 1, + sym__entry_separator, + ACTIONS(1780), 1, + anon_sym_DOLLAR, + ACTIONS(6097), 1, + anon_sym_LPAREN2, + ACTIONS(6408), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6410), 1, + aux_sym__immediate_decimal_token2, + STATE(3341), 1, + sym_comment, + STATE(4258), 1, + sym__immediate_decimal, + ACTIONS(1675), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6183), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4255), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [102668] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3344), 1, + STATE(3342), 1, sym_comment, - ACTIONS(6438), 12, + ACTIONS(6444), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225034,12 +225119,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [102621] = 3, + [102689] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3345), 1, + STATE(3343), 1, sym_comment, - ACTIONS(6440), 12, + ACTIONS(6446), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225052,12 +225137,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [102642] = 3, + [102710] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6450), 1, + anon_sym_DASH2, + STATE(3344), 1, + sym_comment, + ACTIONS(6448), 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, + [102733] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1623), 1, + sym__entry_separator, + ACTIONS(1780), 1, + anon_sym_DOLLAR, + ACTIONS(6097), 1, + anon_sym_LPAREN2, + ACTIONS(6408), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6410), 1, + aux_sym__immediate_decimal_token2, + STATE(3345), 1, + sym_comment, + STATE(4288), 1, + sym__immediate_decimal, + ACTIONS(1625), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(6183), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4287), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [102770] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3346), 1, sym_comment, - ACTIONS(6442), 12, + ACTIONS(6452), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225070,40 +225200,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [102663] = 11, + [102791] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1607), 1, + ACTIONS(1633), 1, sym__entry_separator, - ACTIONS(6238), 1, + ACTIONS(1635), 1, + anon_sym_RBRACK, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_list, + ACTIONS(1780), 1, anon_sym_DOLLAR, - ACTIONS(6240), 1, + ACTIONS(6097), 1, anon_sym_LPAREN2, - ACTIONS(6242), 1, + ACTIONS(6300), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6244), 1, + ACTIONS(6302), 1, aux_sym__immediate_decimal_token2, STATE(3347), 1, sym_comment, - STATE(4285), 1, + STATE(4266), 1, sym__immediate_decimal, - ACTIONS(1609), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6246), 2, + ACTIONS(6304), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4282), 2, + STATE(4259), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [102700] = 4, + [102830] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2465), 1, + ACTIONS(5807), 1, anon_sym_DASH2, STATE(3348), 1, sym_comment, - ACTIONS(2463), 11, + ACTIONS(5805), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -225115,40 +225246,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102723] = 11, - ACTIONS(103), 1, + [102853] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1643), 1, - sym__entry_separator, - ACTIONS(6238), 1, - anon_sym_DOLLAR, - ACTIONS(6240), 1, - anon_sym_LPAREN2, - ACTIONS(6242), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6244), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(2136), 1, + anon_sym_DASH2, STATE(3349), 1, sym_comment, - STATE(4249), 1, - sym__immediate_decimal, - ACTIONS(1645), 2, + ACTIONS(2134), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6246), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4248), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [102760] = 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [102876] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2138), 1, + ACTIONS(6456), 1, anon_sym_DASH2, STATE(3350), 1, sym_comment, - ACTIONS(2136), 11, + ACTIONS(6454), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -225160,34 +225284,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102783] = 6, - ACTIONS(103), 1, + [102899] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6444), 1, - anon_sym_DOT, - ACTIONS(6446), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(6460), 1, + anon_sym_DASH2, STATE(3351), 1, sym_comment, - ACTIONS(739), 4, + ACTIONS(6458), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(741), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [102810] = 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [102922] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3352), 1, sym_comment, - ACTIONS(6250), 12, - ts_builtin_sym_end, + ACTIONS(6462), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225199,30 +225320,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, - [102831] = 3, + anon_sym_RPAREN, + [102943] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3353), 1, sym_comment, - ACTIONS(6181), 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, - [102852] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3354), 1, - sym_comment, - ACTIONS(6448), 12, + ACTIONS(6464), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225235,32 +225339,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [102873] = 3, - ACTIONS(3), 1, + [102964] = 12, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3355), 1, + ACTIONS(6095), 1, + anon_sym_DOLLAR, + ACTIONS(6097), 1, + anon_sym_LPAREN2, + ACTIONS(6101), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6103), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6382), 1, + anon_sym_DOLLAR2, + ACTIONS(6384), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(6466), 1, + anon_sym_RBRACK, + STATE(3354), 1, sym_comment, - ACTIONS(6450), 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, - [102894] = 4, + STATE(3658), 1, + sym__immediate_decimal, + ACTIONS(6105), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3897), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [103003] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2351), 1, + ACTIONS(6470), 1, anon_sym_DASH2, - STATE(3356), 1, + STATE(3355), 1, sym_comment, - ACTIONS(2349), 11, + ACTIONS(6468), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -225272,38 +225385,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [102917] = 11, + [103026] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1647), 1, - sym__entry_separator, - ACTIONS(6238), 1, + ACTIONS(1653), 1, + sym__space, + ACTIONS(3205), 1, + anon_sym_LPAREN2, + ACTIONS(3669), 1, anon_sym_DOLLAR, - ACTIONS(6240), 1, + ACTIONS(6472), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6474), 1, + aux_sym__immediate_decimal_token2, + STATE(3089), 1, + sym__immediate_decimal, + STATE(3356), 1, + sym_comment, + ACTIONS(1655), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6056), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3087), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [103063] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1623), 1, + sym__space, + ACTIONS(3205), 1, anon_sym_LPAREN2, - ACTIONS(6242), 1, + ACTIONS(3669), 1, + anon_sym_DOLLAR, + ACTIONS(6472), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6244), 1, + ACTIONS(6474), 1, aux_sym__immediate_decimal_token2, + STATE(3036), 1, + sym__immediate_decimal, STATE(3357), 1, sym_comment, - STATE(4254), 1, + ACTIONS(1625), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6056), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3035), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [103100] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1623), 1, + sym__entry_separator, + ACTIONS(6218), 1, + anon_sym_DOLLAR, + ACTIONS(6220), 1, + anon_sym_LPAREN2, + ACTIONS(6222), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6224), 1, + aux_sym__immediate_decimal_token2, + STATE(3358), 1, + sym_comment, + STATE(4288), 1, sym__immediate_decimal, - ACTIONS(1649), 2, + ACTIONS(1625), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(6246), 2, + ACTIONS(6226), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4253), 2, + STATE(4287), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [102954] = 3, + [103137] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6476), 1, + anon_sym_DOT, + ACTIONS(6478), 1, + aux_sym__immediate_decimal_token5, + STATE(3359), 1, + sym_comment, + ACTIONS(739), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(741), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [103164] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3358), 1, + STATE(3360), 1, sym_comment, - ACTIONS(6452), 12, + ACTIONS(6480), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225316,57 +225502,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [102975] = 4, + [103185] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2469), 1, - anon_sym_DASH2, - STATE(3359), 1, + STATE(3361), 1, sym_comment, - ACTIONS(2467), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6482), 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, - [102998] = 11, + [103206] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1651), 1, + ACTIONS(6484), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6486), 1, + aux_sym__immediate_decimal_token5, + STATE(3362), 1, + sym_comment, + ACTIONS(747), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(749), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - ACTIONS(6238), 1, - anon_sym_DOLLAR, - ACTIONS(6240), 1, + [103233] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1667), 1, + sym__space, + ACTIONS(3205), 1, anon_sym_LPAREN2, - ACTIONS(6242), 1, + ACTIONS(3669), 1, + anon_sym_DOLLAR, + ACTIONS(6472), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6244), 1, + ACTIONS(6474), 1, aux_sym__immediate_decimal_token2, - STATE(3360), 1, - sym_comment, - STATE(4256), 1, + STATE(3091), 1, sym__immediate_decimal, - ACTIONS(1653), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6246), 2, + STATE(3363), 1, + sym_comment, + ACTIONS(1669), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(6056), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4255), 2, + STATE(3090), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103035] = 3, + [103270] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3361), 1, + STATE(3364), 1, sym_comment, - ACTIONS(6454), 12, + ACTIONS(6488), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225379,31 +225585,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [103056] = 4, + [103291] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2473), 1, - anon_sym_DASH2, - STATE(3362), 1, + STATE(3365), 1, sym_comment, - ACTIONS(2471), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6490), 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, - [103079] = 3, + [103312] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3363), 1, + STATE(3366), 1, sym_comment, - ACTIONS(6456), 12, + ACTIONS(4844), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225416,33 +225621,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [103100] = 6, - ACTIONS(103), 1, + [103333] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6458), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6460), 1, + ACTIONS(6492), 1, + anon_sym_DOT, + ACTIONS(6494), 1, aux_sym__immediate_decimal_token5, - STATE(3364), 1, + STATE(3367), 1, sym_comment, - ACTIONS(747), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 6, - sym__space, - anon_sym_LPAREN2, + ACTIONS(741), 8, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [103127] = 3, + [103360] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3365), 1, + STATE(3368), 1, sym_comment, - ACTIONS(6187), 12, + ACTIONS(6216), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -225455,12 +225660,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, - [103148] = 3, + [103381] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3366), 1, + STATE(3369), 1, sym_comment, - ACTIONS(6462), 12, + ACTIONS(6185), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225472,123 +225678,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, - [103169] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6466), 1, - anon_sym_DASH2, - STATE(3367), 1, - sym_comment, - ACTIONS(6464), 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, - [103192] = 12, + [103402] = 12, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1582), 1, + ACTIONS(1584), 1, sym__entry_separator, - ACTIONS(1586), 1, + ACTIONS(1588), 1, anon_sym_RBRACE, - ACTIONS(6128), 1, + ACTIONS(6095), 1, anon_sym_DOLLAR, - ACTIONS(6130), 1, + ACTIONS(6097), 1, anon_sym_LPAREN2, - ACTIONS(6191), 1, + ACTIONS(6179), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6193), 1, + ACTIONS(6181), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6468), 1, + ACTIONS(6496), 1, anon_sym_DOT, - STATE(3368), 1, + STATE(3370), 1, sym_comment, - STATE(3929), 1, + STATE(3960), 1, sym__immediate_decimal, - ACTIONS(6195), 2, + ACTIONS(6183), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3788), 2, + STATE(3862), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103231] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6472), 1, - anon_sym_DASH2, - STATE(3369), 1, - sym_comment, - ACTIONS(6470), 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, - [103254] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6476), 1, - anon_sym_DASH2, - STATE(3370), 1, - sym_comment, - ACTIONS(6474), 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, - [103277] = 11, + [103441] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1607), 1, + ACTIONS(1673), 1, sym__space, - ACTIONS(3261), 1, + ACTIONS(3205), 1, anon_sym_LPAREN2, - ACTIONS(3659), 1, + ACTIONS(3669), 1, anon_sym_DOLLAR, - ACTIONS(6294), 1, + ACTIONS(6472), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6296), 1, + ACTIONS(6474), 1, aux_sym__immediate_decimal_token2, - STATE(3078), 1, + STATE(3095), 1, sym__immediate_decimal, STATE(3371), 1, sym_comment, - ACTIONS(1609), 2, + ACTIONS(1675), 2, sym__newline, anon_sym_SEMI, - ACTIONS(5941), 2, + ACTIONS(6056), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3114), 2, + STATE(3093), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [103314] = 3, + [103478] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3372), 1, sym_comment, - ACTIONS(6478), 12, + ACTIONS(6205), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225600,72 +225749,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [103335] = 4, + [103499] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2100), 1, - anon_sym_DASH2, STATE(3373), 1, sym_comment, - ACTIONS(2098), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6498), 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, - [103358] = 4, + [103520] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6482), 1, - anon_sym_DASH2, STATE(3374), 1, sym_comment, - ACTIONS(6480), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6500), 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, + [103541] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1653), 1, + sym__entry_separator, + ACTIONS(6218), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [103381] = 4, + ACTIONS(6220), 1, + anon_sym_LPAREN2, + ACTIONS(6222), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6224), 1, + aux_sym__immediate_decimal_token2, + STATE(3375), 1, + sym_comment, + STATE(4251), 1, + sym__immediate_decimal, + ACTIONS(1655), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6226), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4237), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [103578] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1667), 1, + sym__entry_separator, + ACTIONS(6218), 1, + anon_sym_DOLLAR, + ACTIONS(6220), 1, + anon_sym_LPAREN2, + ACTIONS(6222), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6224), 1, + aux_sym__immediate_decimal_token2, + STATE(3376), 1, + sym_comment, + STATE(4254), 1, + sym__immediate_decimal, + ACTIONS(1669), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6226), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4253), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [103615] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2146), 1, - anon_sym_DASH2, - STATE(3375), 1, + STATE(3377), 1, sym_comment, - ACTIONS(2144), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(4846), 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, - [103404] = 4, + [103636] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2453), 1, + ACTIONS(6450), 1, anon_sym_DASH2, - STATE(3376), 1, + STATE(3378), 1, sym_comment, - ACTIONS(2451), 11, + ACTIONS(6448), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -225677,13 +225874,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [103427] = 3, + [103659] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1673), 1, + sym__entry_separator, + ACTIONS(6218), 1, + anon_sym_DOLLAR, + ACTIONS(6220), 1, + anon_sym_LPAREN2, + ACTIONS(6222), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6224), 1, + aux_sym__immediate_decimal_token2, + STATE(3379), 1, + sym_comment, + STATE(4258), 1, + sym__immediate_decimal, + ACTIONS(1675), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6226), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4255), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [103696] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3377), 1, + STATE(3380), 1, sym_comment, - ACTIONS(6207), 12, - ts_builtin_sym_end, + ACTIONS(6502), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225695,14 +225917,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [103448] = 4, + anon_sym_RPAREN, + [103717] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6504), 1, anon_sym_else, - STATE(3378), 1, + STATE(3381), 1, sym_comment, - ACTIONS(6165), 11, + ACTIONS(6246), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225714,14 +225937,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, - [103471] = 4, + [103740] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6488), 1, + ACTIONS(2068), 1, anon_sym_DASH2, - STATE(3379), 1, + STATE(3382), 1, sym_comment, - ACTIONS(6486), 11, + ACTIONS(2066), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -225733,98 +225956,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [103494] = 6, - ACTIONS(3), 1, + [103763] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6490), 1, + ACTIONS(6506), 1, anon_sym_DOT, - ACTIONS(6492), 1, + ACTIONS(6508), 1, aux_sym__immediate_decimal_token5, - STATE(3380), 1, + STATE(3383), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(739), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(741), 8, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(741), 6, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [103521] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3381), 1, - sym_comment, - ACTIONS(6494), 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, - [103542] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1582), 1, - anon_sym_LBRACE, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1598), 1, - sym__unquoted_pattern, - ACTIONS(2910), 1, - anon_sym_DOLLAR, - ACTIONS(6496), 1, - anon_sym_DOT, - STATE(3382), 1, - sym_comment, - STATE(3994), 1, - sym__immediate_decimal, - ACTIONS(6498), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6500), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4148), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [103579] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2343), 1, - anon_sym_DASH2, - STATE(3383), 1, - sym_comment, - ACTIONS(2341), 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, - [103602] = 4, + [103790] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6504), 1, + ACTIONS(5793), 1, anon_sym_DASH2, STATE(3384), 1, sym_comment, - ACTIONS(6502), 11, + ACTIONS(5791), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -225836,30 +225996,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [103625] = 4, + [103813] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6508), 1, - anon_sym_DASH2, STATE(3385), 1, sym_comment, - ACTIONS(6506), 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, - [103648] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3386), 1, - sym_comment, ACTIONS(6510), 12, sym__newline, anon_sym_SEMI, @@ -225873,10 +226014,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [103669] = 3, + [103834] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3387), 1, + STATE(3386), 1, sym_comment, ACTIONS(6512), 12, sym__newline, @@ -225891,13 +226032,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [103690] = 3, + [103855] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3388), 1, + STATE(3387), 1, sym_comment, - ACTIONS(5626), 12, - ts_builtin_sym_end, + ACTIONS(6514), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225909,14 +226049,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [103711] = 4, + anon_sym_RPAREN, + [103876] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6516), 1, + ACTIONS(6518), 1, anon_sym_DASH2, - STATE(3389), 1, + STATE(3388), 1, sym_comment, - ACTIONS(6514), 11, + ACTIONS(6516), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -225928,12 +226069,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [103734] = 3, + [103899] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3390), 1, + STATE(3389), 1, sym_comment, - ACTIONS(6518), 12, + ACTIONS(6248), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225945,8 +226087,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, + [103920] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2076), 1, + anon_sym_DASH2, + STATE(3390), 1, + sym_comment, + ACTIONS(2074), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [103755] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [103943] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3391), 1, @@ -225964,31 +226124,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [103776] = 4, - ACTIONS(3), 1, + [103964] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6524), 1, - anon_sym_DASH2, + ACTIONS(1442), 1, + anon_sym_BANG, + ACTIONS(6522), 1, + anon_sym_QMARK2, + STATE(352), 1, + sym__path_suffix, STATE(3392), 1, sym_comment, - ACTIONS(6522), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, + ACTIONS(1434), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1432), 6, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [103799] = 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_COLON2, + anon_sym_DOT2, + [103993] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3393), 1, sym_comment, - ACTIONS(6526), 12, + ACTIONS(6524), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226001,12 +226164,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [103820] = 3, + [104014] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(3394), 1, sym_comment, - ACTIONS(6528), 12, + ACTIONS(6526), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226019,96 +226182,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [103841] = 6, + [104035] = 12, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1633), 1, + sym__entry_separator, + ACTIONS(1635), 1, + anon_sym_RBRACE, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_record, + ACTIONS(1780), 1, + anon_sym_DOLLAR, + ACTIONS(6097), 1, + anon_sym_LPAREN2, + ACTIONS(6388), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6390), 1, + aux_sym__immediate_decimal_token2, + STATE(3395), 1, + sym_comment, + STATE(4234), 1, + sym__immediate_decimal, + ACTIONS(6392), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4259), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [104074] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6528), 1, + aux_sym__immediate_decimal_token1, ACTIONS(6530), 1, - anon_sym_DOT, - ACTIONS(6532), 1, aux_sym__immediate_decimal_token5, - STATE(3395), 1, + STATE(3396), 1, sym_comment, - ACTIONS(739), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(747), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(741), 6, - anon_sym_LPAREN2, + sym__unquoted_pattern, + ACTIONS(749), 8, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [103868] = 12, - ACTIONS(103), 1, + [104101] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1631), 1, - sym__entry_separator, - ACTIONS(1633), 1, - anon_sym_RBRACE, - ACTIONS(1641), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1776), 1, + ACTIONS(2451), 1, + anon_sym_DASH2, + STATE(3397), 1, + sym_comment, + ACTIONS(2449), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(6130), 1, - anon_sym_LPAREN2, - ACTIONS(6339), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6341), 1, - aux_sym__immediate_decimal_token2, - STATE(3396), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104124] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2455), 1, + anon_sym_DASH2, + STATE(3398), 1, + sym_comment, + ACTIONS(2453), 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, + [104147] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6534), 1, + anon_sym_DASH2, + STATE(3399), 1, sym_comment, - STATE(4232), 1, - sym__immediate_decimal, - ACTIONS(6343), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4398), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [103907] = 3, + ACTIONS(6532), 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, + [104170] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3397), 1, + ACTIONS(2471), 1, + anon_sym_DASH2, + STATE(3400), 1, sym_comment, - ACTIONS(6534), 12, + ACTIONS(2469), 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, - [103928] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104193] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3398), 1, + ACTIONS(2475), 1, + anon_sym_DASH2, + STATE(3401), 1, sym_comment, - ACTIONS(6536), 12, + ACTIONS(2473), 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, - [103949] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104216] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3399), 1, + STATE(3402), 1, sym_comment, - ACTIONS(6538), 12, + ACTIONS(6536), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226121,14 +226343,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [103970] = 4, + [104237] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2457), 1, + ACTIONS(6540), 1, anon_sym_DASH2, - STATE(3400), 1, + STATE(3403), 1, sym_comment, - ACTIONS(2455), 11, + ACTIONS(6538), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -226140,12 +226362,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [103993] = 3, + [104260] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(3401), 1, + STATE(3404), 1, sym_comment, - ACTIONS(6540), 12, + ACTIONS(6542), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226158,105 +226380,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [104014] = 11, - ACTIONS(103), 1, + [104281] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1607), 1, - sym__entry_separator, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(6130), 1, - anon_sym_LPAREN2, - ACTIONS(6304), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6306), 1, - aux_sym__immediate_decimal_token2, - STATE(3402), 1, + ACTIONS(6546), 1, + anon_sym_DASH2, + STATE(3405), 1, sym_comment, - STATE(4285), 1, - sym__immediate_decimal, - ACTIONS(1609), 2, + ACTIONS(6544), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(6195), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4282), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [104051] = 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104304] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3403), 1, + ACTIONS(5811), 1, + anon_sym_DASH2, + STATE(3406), 1, sym_comment, - ACTIONS(6248), 12, - ts_builtin_sym_end, + ACTIONS(5809), 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, - [104072] = 10, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [104327] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1582), 1, + ACTIONS(1584), 1, anon_sym_LBRACE, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, ACTIONS(1598), 1, sym__unquoted_pattern, - ACTIONS(2910), 1, + ACTIONS(2871), 1, anon_sym_DOLLAR, - STATE(3404), 1, + STATE(3407), 1, sym_comment, - STATE(4729), 1, + STATE(4694), 1, sym__immediate_decimal, - ACTIONS(6542), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6544), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(809), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [104106] = 11, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1582), 1, - sym__entry_separator, - ACTIONS(1586), 1, - anon_sym_RBRACE, - ACTIONS(1776), 1, - anon_sym_DOLLAR, - ACTIONS(6130), 1, - anon_sym_LPAREN2, - ACTIONS(6304), 1, + ACTIONS(6548), 2, aux_sym__immediate_decimal_token1, - ACTIONS(6306), 1, aux_sym__immediate_decimal_token2, - STATE(3405), 1, - sym_comment, - STATE(4753), 1, - sym__immediate_decimal, - ACTIONS(6195), 2, + ACTIONS(6550), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4294), 2, + STATE(829), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104142] = 5, + [104361] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6434), 1, + ACTIONS(6508), 1, aux_sym__immediate_decimal_token5, - STATE(3406), 1, + STATE(3408), 1, sym_comment, ACTIONS(739), 4, sym__newline, @@ -226270,33 +226461,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [104166] = 5, + [104385] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6546), 1, + ACTIONS(6552), 1, aux_sym__immediate_decimal_token5, - STATE(3407), 1, + STATE(3409), 1, sym_comment, - ACTIONS(771), 4, + ACTIONS(755), 4, sym__newline, anon_sym_SEMI, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 6, + ACTIONS(757), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [104190] = 6, + [104409] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6548), 1, + ACTIONS(6554), 1, anon_sym_DOT, - ACTIONS(6550), 1, + ACTIONS(6556), 1, aux_sym__immediate_decimal_token5, - STATE(3408), 1, + STATE(3410), 1, sym_comment, ACTIONS(739), 3, anon_sym_RBRACE, @@ -226309,14 +226500,14 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [104216] = 6, + [104435] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6552), 1, + ACTIONS(6558), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6554), 1, + ACTIONS(6560), 1, aux_sym__immediate_decimal_token5, - STATE(3409), 1, + STATE(3411), 1, sym_comment, ACTIONS(747), 3, anon_sym_RBRACE, @@ -226329,14 +226520,38 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [104242] = 6, + [104461] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6556), 1, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(1633), 1, + anon_sym_LBRACE, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + STATE(3412), 1, + sym_comment, + STATE(4759), 1, + sym__immediate_decimal, + ACTIONS(6548), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6550), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(871), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [104495] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6562), 1, anon_sym_DOT, - ACTIONS(6558), 1, + ACTIONS(6564), 1, aux_sym__immediate_decimal_token5, - STATE(3410), 1, + STATE(3413), 1, sym_comment, ACTIONS(739), 2, anon_sym_DOT_DOT2, @@ -226349,14 +226564,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [104268] = 6, + [104521] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6560), 1, + ACTIONS(6566), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6562), 1, + ACTIONS(6568), 1, aux_sym__immediate_decimal_token5, - STATE(3411), 1, + STATE(3414), 1, sym_comment, ACTIONS(747), 2, anon_sym_DOT_DOT2, @@ -226369,61 +226584,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [104294] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1631), 1, - anon_sym_LBRACE, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(2910), 1, - anon_sym_DOLLAR, - STATE(3412), 1, - sym_comment, - STATE(4667), 1, - sym__immediate_decimal, - ACTIONS(6542), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6544), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(846), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [104328] = 11, + [104547] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1631), 1, - sym__entry_separator, ACTIONS(1633), 1, + sym__entry_separator, + ACTIONS(1635), 1, anon_sym_RBRACE, - ACTIONS(1776), 1, + ACTIONS(1780), 1, anon_sym_DOLLAR, - ACTIONS(6130), 1, + ACTIONS(6097), 1, anon_sym_LPAREN2, - ACTIONS(6304), 1, + ACTIONS(6408), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6306), 1, + ACTIONS(6410), 1, aux_sym__immediate_decimal_token2, - STATE(3413), 1, + STATE(3415), 1, sym_comment, - STATE(4690), 1, + STATE(4672), 1, sym__immediate_decimal, - ACTIONS(6195), 2, + ACTIONS(6183), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4398), 2, + STATE(4259), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [104364] = 5, + [104583] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6446), 1, + ACTIONS(6478), 1, aux_sym__immediate_decimal_token5, - STATE(3414), 1, + STATE(3416), 1, sym_comment, ACTIONS(739), 4, anon_sym_RBRACK, @@ -226437,33 +226628,33 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [104388] = 5, + [104607] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6564), 1, + ACTIONS(6570), 1, aux_sym__immediate_decimal_token5, - STATE(3415), 1, + STATE(3417), 1, sym_comment, - ACTIONS(771), 4, + ACTIONS(755), 4, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - ACTIONS(773), 6, + ACTIONS(757), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [104412] = 6, + [104631] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6566), 1, + ACTIONS(6572), 1, anon_sym_DOT, - ACTIONS(6568), 1, + ACTIONS(6574), 1, aux_sym__immediate_decimal_token5, - STATE(3416), 1, + STATE(3418), 1, sym_comment, ACTIONS(739), 2, anon_sym_DOT_DOT2, @@ -226476,14 +226667,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [104438] = 6, + [104657] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6576), 1, + anon_sym_DOT2, + STATE(346), 1, + sym_path, + STATE(3419), 1, + sym_comment, + STATE(3535), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3689), 1, + sym_cell_path, + ACTIONS(1677), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1679), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [104687] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6570), 1, + ACTIONS(6578), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6572), 1, + ACTIONS(6580), 1, aux_sym__immediate_decimal_token5, - STATE(3417), 1, + STATE(3420), 1, sym_comment, ACTIONS(747), 2, anon_sym_DOT_DOT2, @@ -226496,40 +226709,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [104464] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6574), 1, - anon_sym_DOT2, - STATE(367), 1, - sym_path, - STATE(3418), 1, - sym_comment, - STATE(3536), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3699), 1, - sym_cell_path, - ACTIONS(1655), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1657), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [104494] = 5, + [104713] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6581), 1, + ACTIONS(6587), 1, anon_sym_DASH2, - ACTIONS(6578), 2, + ACTIONS(6584), 2, sym__newline, anon_sym_COMMA, - STATE(3419), 2, + STATE(3421), 2, sym_comment, aux_sym_parameter_repeat2, - ACTIONS(6576), 7, + ACTIONS(6582), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -226537,56 +226728,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [104518] = 5, - ACTIONS(3), 1, + [104737] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6492), 1, - aux_sym__immediate_decimal_token5, - STATE(3420), 1, + ACTIONS(6576), 1, + anon_sym_DOT2, + STATE(346), 1, + sym_path, + STATE(3422), 1, sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 8, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + STATE(3535), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3708), 1, + sym_cell_path, + ACTIONS(1647), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [104542] = 11, - ACTIONS(103), 1, + sym__entry_separator, + ACTIONS(1649), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [104767] = 10, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(890), 1, - sym__space, - ACTIONS(1756), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(5150), 1, - sym__unquoted_pattern, - ACTIONS(6583), 1, - anon_sym_DOT_DOT2, - ACTIONS(6587), 1, - sym_filesize_unit, - ACTIONS(6589), 1, - sym_duration_unit, - STATE(3421), 1, + ACTIONS(1623), 1, + anon_sym_LBRACE, + ACTIONS(1627), 1, + anon_sym_DOT, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + STATE(3423), 1, sym_comment, - STATE(4723), 1, + STATE(4146), 1, + sym__immediate_decimal, + ACTIONS(6398), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6400), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4145), 2, sym__expr_parenthesized_immediate, - ACTIONS(793), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(6585), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [104578] = 5, + sym_val_variable, + [104801] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6532), 1, + ACTIONS(6434), 1, aux_sym__immediate_decimal_token5, - STATE(3422), 1, + STATE(3424), 1, sym_comment, ACTIONS(739), 4, anon_sym_RBRACK, @@ -226600,59 +226793,59 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [104602] = 9, + [104825] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(173), 1, aux_sym_expr_unary_token1, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(4838), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4840), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - STATE(958), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(3423), 1, + STATE(3425), 1, sym_comment, - ACTIONS(1914), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(948), 4, + STATE(905), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [104634] = 8, + [104857] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6574), 1, + ACTIONS(6576), 1, anon_sym_DOT2, - STATE(367), 1, + STATE(346), 1, sym_path, STATE(374), 1, sym_cell_path, - STATE(3424), 1, + STATE(3426), 1, sym_comment, - STATE(3536), 1, + STATE(3535), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1434), 3, + ACTIONS(1446), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1432), 4, + ACTIONS(1444), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - [104664] = 4, + [104887] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2112), 1, + ACTIONS(2148), 1, anon_sym_DASH2, - STATE(3425), 1, + STATE(3427), 1, sym_comment, - ACTIONS(2110), 10, + ACTIONS(2146), 10, anon_sym_EQ, sym_identifier, sym__newline, @@ -226663,38 +226856,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [104686] = 5, + [104909] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6591), 1, + ACTIONS(6589), 1, aux_sym__immediate_decimal_token5, - STATE(3426), 1, + STATE(3428), 1, sym_comment, - ACTIONS(771), 4, + ACTIONS(755), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - ACTIONS(773), 6, + ACTIONS(757), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [104710] = 6, + [104933] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6595), 1, + ACTIONS(6593), 1, anon_sym_DASH2, - STATE(3419), 1, + STATE(3421), 1, aux_sym_parameter_repeat2, - STATE(3427), 1, + STATE(3429), 1, sym_comment, ACTIONS(1474), 2, sym__newline, anon_sym_COMMA, - ACTIONS(6593), 7, + ACTIONS(6591), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -226702,19 +226895,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [104736] = 6, + [104959] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5508), 1, + ACTIONS(5526), 1, anon_sym_DASH2, - STATE(3419), 1, + STATE(3421), 1, aux_sym_parameter_repeat2, - STATE(3428), 1, + STATE(3430), 1, sym_comment, ACTIONS(1474), 2, sym__newline, anon_sym_COMMA, - ACTIONS(5506), 7, + ACTIONS(5524), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -226722,19 +226915,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [104762] = 6, + [104985] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6599), 1, + ACTIONS(6597), 1, anon_sym_DASH2, - STATE(3419), 1, + STATE(3421), 1, aux_sym_parameter_repeat2, - STATE(3429), 1, + STATE(3431), 1, sym_comment, ACTIONS(1474), 2, sym__newline, anon_sym_COMMA, - ACTIONS(6597), 7, + ACTIONS(6595), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -226742,41 +226935,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [104788] = 11, + [105011] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(890), 1, + ACTIONS(908), 1, sym__entry_separator, - ACTIONS(6335), 1, + ACTIONS(6384), 1, sym__unquoted_pattern_in_list, - ACTIONS(6601), 1, + ACTIONS(6599), 1, anon_sym_LPAREN2, - ACTIONS(6603), 1, + ACTIONS(6601), 1, anon_sym_DOT_DOT2, - ACTIONS(6607), 1, + ACTIONS(6605), 1, sym_filesize_unit, - ACTIONS(6609), 1, + ACTIONS(6607), 1, sym_duration_unit, - STATE(3430), 1, + STATE(3432), 1, sym_comment, - STATE(4734), 1, + STATE(4720), 1, sym__expr_parenthesized_immediate, - ACTIONS(793), 2, + ACTIONS(866), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(6605), 2, + ACTIONS(6603), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [104824] = 5, + [105047] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, + ACTIONS(2903), 1, sym__newline, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(3431), 1, + STATE(3433), 1, sym_comment, - ACTIONS(2523), 9, + ACTIONS(2610), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -226786,61 +226979,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, - [104848] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6611), 1, - aux_sym__immediate_decimal_token5, - STATE(3432), 1, - sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 8, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [104872] = 9, + [105071] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1774), 1, + ACTIONS(1778), 1, anon_sym_LPAREN, - ACTIONS(2756), 1, + ACTIONS(2760), 1, aux_sym_expr_unary_token1, - ACTIONS(2910), 1, + ACTIONS(2871), 1, anon_sym_DOLLAR, - ACTIONS(4840), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - STATE(958), 1, + STATE(916), 1, sym__expr_unary_minus, - STATE(3433), 1, + STATE(3434), 1, sym_comment, - ACTIONS(1914), 2, + ACTIONS(1892), 2, anon_sym_true, anon_sym_false, - STATE(948), 4, + STATE(905), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [104904] = 6, + [105103] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5452), 1, + ACTIONS(5522), 1, anon_sym_DASH2, - STATE(3419), 1, + STATE(3421), 1, aux_sym_parameter_repeat2, - STATE(3434), 1, + STATE(3435), 1, sym_comment, ACTIONS(1474), 2, sym__newline, anon_sym_COMMA, - ACTIONS(5450), 7, + ACTIONS(5520), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -226848,19 +227022,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [104930] = 6, + [105129] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5466), 1, + ACTIONS(5510), 1, anon_sym_DASH2, - STATE(3419), 1, + STATE(3421), 1, aux_sym_parameter_repeat2, - STATE(3435), 1, + STATE(3436), 1, sym_comment, ACTIONS(1474), 2, sym__newline, anon_sym_COMMA, - ACTIONS(5464), 7, + ACTIONS(5508), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -226868,127 +227042,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [104956] = 9, + [105155] = 9, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(73), 1, aux_sym_expr_unary_token1, - ACTIONS(1671), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR, - ACTIONS(4858), 1, - anon_sym_LPAREN, ACTIONS(4862), 1, + anon_sym_LPAREN, + ACTIONS(4866), 1, anon_sym_DASH2, - STATE(1279), 1, + STATE(1274), 1, sym__expr_unary_minus, - STATE(3436), 1, + STATE(3437), 1, sym_comment, - ACTIONS(2172), 2, + ACTIONS(2399), 2, anon_sym_true, anon_sym_false, - STATE(1301), 4, + STATE(1296), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [104988] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1607), 1, - anon_sym_LBRACE, - ACTIONS(1611), 1, - anon_sym_DOT, - ACTIONS(2910), 1, - anon_sym_DOLLAR, - STATE(3437), 1, - sym_comment, - STATE(4147), 1, - sym__immediate_decimal, - ACTIONS(6498), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6500), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4146), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105022] = 9, + [105187] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(2435), 1, + ACTIONS(2429), 1, aux_sym_expr_unary_token1, - ACTIONS(4838), 1, + ACTIONS(4850), 1, anon_sym_LPAREN, - ACTIONS(4840), 1, + ACTIONS(4852), 1, anon_sym_DASH2, - STATE(958), 1, + STATE(916), 1, sym__expr_unary_minus, STATE(3438), 1, sym_comment, - ACTIONS(2427), 2, + ACTIONS(2421), 2, anon_sym_true, anon_sym_false, - STATE(948), 4, + STATE(905), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [105054] = 9, + [105219] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2724), 1, + ACTIONS(2686), 1, aux_sym_expr_unary_token1, - ACTIONS(4862), 1, + ACTIONS(4866), 1, anon_sym_DASH2, - ACTIONS(4885), 1, + ACTIONS(4881), 1, anon_sym_DOLLAR, - ACTIONS(5340), 1, + ACTIONS(5329), 1, anon_sym_LPAREN, - STATE(1279), 1, + STATE(1274), 1, sym__expr_unary_minus, STATE(3439), 1, sym_comment, - ACTIONS(2172), 2, + ACTIONS(2399), 2, anon_sym_true, anon_sym_false, - STATE(1301), 4, + STATE(1296), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [105086] = 6, + [105251] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6615), 1, - anon_sym_DASH2, - STATE(3419), 1, - aux_sym_parameter_repeat2, + ACTIONS(6609), 1, + aux_sym__immediate_decimal_token5, STATE(3440), 1, sym_comment, - ACTIONS(1474), 2, + ACTIONS(755), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(757), 8, + anon_sym_if, sym__newline, - anon_sym_COMMA, - ACTIONS(6613), 7, - sym_identifier, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [105275] = 11, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1584), 1, + sym__entry_separator, + ACTIONS(1588), 1, + anon_sym_RBRACE, + ACTIONS(1780), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [105112] = 4, + ACTIONS(6097), 1, + anon_sym_LPAREN2, + ACTIONS(6408), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6410), 1, + aux_sym__immediate_decimal_token2, + STATE(3441), 1, + sym_comment, + STATE(4733), 1, + sym__immediate_decimal, + ACTIONS(6183), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4293), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105311] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6617), 1, + ACTIONS(6611), 1, anon_sym_else, - STATE(3441), 1, + STATE(3442), 1, sym_comment, - ACTIONS(6165), 10, + ACTIONS(6246), 10, sym__newline, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226999,95 +227173,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, - [105134] = 8, - ACTIONS(103), 1, + [105333] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6574), 1, - anon_sym_DOT2, - STATE(367), 1, - sym_path, - STATE(3442), 1, + ACTIONS(6494), 1, + aux_sym__immediate_decimal_token5, + STATE(3443), 1, sym_comment, - STATE(3536), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3720), 1, - sym_cell_path, - ACTIONS(1661), 3, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 8, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1663), 4, + sym_filesize_unit, + sym_duration_unit, + [105357] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6615), 1, + anon_sym_DASH2, + STATE(3421), 1, + aux_sym_parameter_repeat2, + STATE(3444), 1, + sym_comment, + ACTIONS(1474), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(6613), 7, + sym_identifier, + anon_sym_PIPE, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [105164] = 11, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [105383] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(793), 1, - anon_sym_RBRACE, - ACTIONS(890), 1, - sym__entry_separator, - ACTIONS(5237), 1, + ACTIONS(908), 1, + sym__space, + ACTIONS(1714), 1, anon_sym_LPAREN2, - ACTIONS(6619), 1, + ACTIONS(5172), 1, + sym__unquoted_pattern, + ACTIONS(6617), 1, anon_sym_DOT_DOT2, - ACTIONS(6623), 1, + ACTIONS(6621), 1, sym_filesize_unit, - ACTIONS(6625), 1, + ACTIONS(6623), 1, sym_duration_unit, - ACTIONS(6627), 1, - sym__unquoted_pattern_in_record, - STATE(3443), 1, + STATE(3445), 1, sym_comment, - STATE(4662), 1, + STATE(4710), 1, sym__expr_parenthesized_immediate, - ACTIONS(6621), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [105199] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6629), 1, - aux_sym__immediate_decimal_token5, - STATE(3444), 1, - sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 7, + ACTIONS(866), 2, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + anon_sym_SEMI, + ACTIONS(6619), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [105222] = 6, + [105419] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6631), 1, - anon_sym_DOT, - ACTIONS(6633), 1, + ACTIONS(6625), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6627), 1, aux_sym__immediate_decimal_token5, - STATE(3445), 1, + STATE(3446), 1, sym_comment, - ACTIONS(1728), 4, + ACTIONS(1738), 4, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1730), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(1740), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [105247] = 5, + sym__unquoted_pattern, + [105444] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6558), 1, + ACTIONS(6564), 1, aux_sym__immediate_decimal_token5, - STATE(3446), 1, + STATE(3447), 1, sym_comment, ACTIONS(739), 2, anon_sym_DOT_DOT2, @@ -227100,91 +227274,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [105270] = 4, + [105467] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3447), 1, + STATE(3448), 1, sym_comment, - ACTIONS(771), 4, + ACTIONS(747), 4, sym__newline, anon_sym_SEMI, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 6, + ACTIONS(749), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [105291] = 5, + [105488] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1450), 1, + ACTIONS(1454), 1, anon_sym_BANG, - STATE(3448), 1, + STATE(3449), 1, sym_comment, - ACTIONS(1448), 3, + ACTIONS(1452), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1446), 6, + ACTIONS(1450), 6, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_COLON2, anon_sym_DOT2, - [105314] = 4, - ACTIONS(103), 1, + [105511] = 9, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3449), 1, - sym_comment, - ACTIONS(874), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(876), 6, - sym__space, + ACTIONS(1590), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [105335] = 9, + ACTIONS(1653), 1, + anon_sym_LBRACE, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + STATE(848), 1, + sym__immediate_decimal, + STATE(3450), 1, + sym_comment, + ACTIONS(6400), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6629), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(847), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [105542] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1643), 1, + ACTIONS(1667), 1, anon_sym_LBRACE, - ACTIONS(2910), 1, + ACTIONS(2871), 1, anon_sym_DOLLAR, - STATE(841), 1, + STATE(864), 1, sym__immediate_decimal, - STATE(3450), 1, + STATE(3451), 1, sym_comment, - ACTIONS(6500), 2, + ACTIONS(6400), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(6635), 2, + ACTIONS(6629), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(840), 2, + STATE(849), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105366] = 5, + [105573] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6637), 1, + ACTIONS(6631), 1, aux_sym__immediate_decimal_token5, - STATE(3451), 1, + STATE(3452), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(755), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 7, + ACTIONS(757), 7, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, @@ -227192,146 +227371,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [105389] = 10, + [105596] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3309), 1, + ACTIONS(3169), 1, anon_sym_LPAREN2, ACTIONS(3683), 1, anon_sym_DOLLAR, - ACTIONS(4950), 1, + ACTIONS(4956), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4952), 1, + ACTIONS(4958), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5191), 1, + ACTIONS(5213), 1, aux_sym_unquoted_token2, - STATE(2590), 1, + STATE(2584), 1, sym__immediate_decimal, - STATE(3452), 1, + STATE(3453), 1, sym_comment, - ACTIONS(4954), 2, + ACTIONS(4960), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2827), 2, + STATE(2779), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105422] = 10, + [105629] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3309), 1, + ACTIONS(3169), 1, anon_sym_LPAREN2, ACTIONS(3683), 1, anon_sym_DOLLAR, - ACTIONS(4980), 1, + ACTIONS(4994), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4982), 1, + ACTIONS(4996), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5191), 1, + ACTIONS(5213), 1, aux_sym_unquoted_token2, - STATE(2911), 1, + STATE(2892), 1, sym__immediate_decimal, - STATE(3453), 1, + STATE(3454), 1, sym_comment, - ACTIONS(4984), 2, + ACTIONS(4998), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3151), 2, + STATE(3216), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105455] = 10, + [105662] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6128), 1, + ACTIONS(6095), 1, anon_sym_DOLLAR, - ACTIONS(6130), 1, + ACTIONS(6097), 1, anon_sym_LPAREN2, - ACTIONS(6134), 1, + ACTIONS(6101), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6136), 1, + ACTIONS(6103), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6335), 1, + ACTIONS(6384), 1, aux_sym__unquoted_in_list_token2, - STATE(3454), 1, + STATE(3455), 1, sym_comment, - STATE(3632), 1, + STATE(3658), 1, sym__immediate_decimal, - ACTIONS(6138), 2, + ACTIONS(6105), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3889), 2, + STATE(3897), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105488] = 10, + [105695] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6238), 1, + ACTIONS(6218), 1, anon_sym_DOLLAR, - ACTIONS(6240), 1, + ACTIONS(6220), 1, anon_sym_LPAREN2, - ACTIONS(6242), 1, + ACTIONS(6222), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6244), 1, + ACTIONS(6224), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6335), 1, + ACTIONS(6384), 1, aux_sym__unquoted_in_list_token2, - STATE(3455), 1, + STATE(3456), 1, sym_comment, - STATE(4053), 1, + STATE(4033), 1, sym__immediate_decimal, - ACTIONS(6246), 2, + ACTIONS(6226), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, STATE(4377), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105521] = 9, + [105728] = 9, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(211), 1, sym_raw_string_begin, - ACTIONS(6639), 1, + ACTIONS(6633), 1, anon_sym_DQUOTE, - ACTIONS(6641), 1, + ACTIONS(6635), 1, anon_sym_SQUOTE, - ACTIONS(6643), 1, + ACTIONS(6637), 1, anon_sym_BQUOTE, - ACTIONS(6645), 1, + ACTIONS(6639), 1, aux_sym_path_token1, - STATE(408), 1, + STATE(401), 1, sym_val_string, - STATE(3456), 1, + STATE(3457), 1, sym_comment, - STATE(422), 4, + STATE(414), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [105552] = 9, + [105759] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1647), 1, + ACTIONS(1673), 1, anon_sym_LBRACE, - ACTIONS(2910), 1, + ACTIONS(2871), 1, anon_sym_DOLLAR, - STATE(843), 1, + STATE(869), 1, sym__immediate_decimal, - STATE(3457), 1, + STATE(3458), 1, sym_comment, - ACTIONS(6500), 2, + ACTIONS(6400), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(6635), 2, + ACTIONS(6629), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(842), 2, + STATE(867), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105583] = 4, + [105790] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3458), 1, + STATE(3459), 1, sym_comment, ACTIONS(747), 4, anon_sym_RBRACK, @@ -227345,82 +227524,78 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [105604] = 9, - ACTIONS(3), 1, + [105811] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1651), 1, - anon_sym_LBRACE, - ACTIONS(2910), 1, - anon_sym_DOLLAR, - STATE(845), 1, - sym__immediate_decimal, - STATE(3459), 1, + ACTIONS(6556), 1, + aux_sym__immediate_decimal_token5, + STATE(3460), 1, sym_comment, - ACTIONS(6500), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6635), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(844), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [105635] = 10, + ACTIONS(739), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(741), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [105834] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1766), 1, + ACTIONS(1724), 1, aux_sym_unquoted_token2, - ACTIONS(5292), 1, + ACTIONS(5317), 1, anon_sym_DOLLAR, - ACTIONS(6498), 1, + ACTIONS(6398), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6647), 1, + ACTIONS(6641), 1, aux_sym__immediate_decimal_token2, - STATE(3460), 1, + STATE(3461), 1, sym_comment, - STATE(4040), 1, + STATE(4025), 1, sym__immediate_decimal, - ACTIONS(6649), 2, + ACTIONS(6643), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4128), 2, + STATE(4132), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105668] = 10, + [105867] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1766), 1, + ACTIONS(1724), 1, aux_sym_unquoted_token2, - ACTIONS(5292), 1, + ACTIONS(5317), 1, anon_sym_DOLLAR, - ACTIONS(6542), 1, + ACTIONS(6548), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6651), 1, + ACTIONS(6645), 1, aux_sym__immediate_decimal_token2, - STATE(3461), 1, + STATE(3462), 1, sym_comment, - STATE(4736), 1, + STATE(4724), 1, sym__immediate_decimal, - ACTIONS(6653), 2, + ACTIONS(6647), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(715), 2, + STATE(772), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105701] = 6, + [105900] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6655), 1, + ACTIONS(6649), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6657), 1, + ACTIONS(6651), 1, aux_sym__immediate_decimal_token5, - STATE(3462), 1, + STATE(3463), 1, sym_comment, ACTIONS(1738), 4, anon_sym_LPAREN2, @@ -227432,136 +227607,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [105726] = 6, - ACTIONS(3), 1, + [105925] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6659), 1, + ACTIONS(6653), 1, anon_sym_DOT, - ACTIONS(6661), 1, + ACTIONS(6655), 1, aux_sym__immediate_decimal_token5, - STATE(3463), 1, + STATE(3464), 1, sym_comment, - ACTIONS(1730), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1728), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1750), 4, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [105751] = 4, + ACTIONS(1752), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [105950] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3464), 1, + STATE(3465), 1, sym_comment, - ACTIONS(771), 4, + ACTIONS(755), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - ACTIONS(773), 6, + ACTIONS(757), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [105772] = 5, + [105971] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6550), 1, - aux_sym__immediate_decimal_token5, - STATE(3465), 1, + STATE(3466), 1, sym_comment, - ACTIONS(739), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(741), 6, - anon_sym_LPAREN2, + ACTIONS(1507), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [105795] = 4, + ACTIONS(1505), 7, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [105992] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3466), 1, + STATE(3467), 1, sym_comment, - ACTIONS(874), 4, + ACTIONS(789), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - ACTIONS(876), 6, + ACTIONS(791), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [105816] = 4, + [106013] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3467), 1, + STATE(3468), 1, sym_comment, - ACTIONS(1507), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1505), 7, + ACTIONS(747), 4, anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [105837] = 8, + sym__unquoted_pattern_in_list, + ACTIONS(749), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [106034] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, + ACTIONS(1724), 1, sym__unquoted_pattern, - ACTIONS(6663), 1, + ACTIONS(6657), 1, anon_sym_DOT_DOT2, - ACTIONS(6667), 1, + ACTIONS(6661), 1, sym_filesize_unit, - ACTIONS(6669), 1, + ACTIONS(6663), 1, sym_duration_unit, - STATE(3468), 1, + STATE(3469), 1, sym_comment, - ACTIONS(6665), 2, + ACTIONS(6659), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(890), 4, + ACTIONS(908), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [105866] = 4, + [106063] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3469), 1, + STATE(3470), 1, sym_comment, - ACTIONS(747), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(749), 6, - anon_sym_LPAREN2, + ACTIONS(1460), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [105887] = 4, + ACTIONS(1458), 7, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [106084] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3470), 1, + STATE(3471), 1, sym_comment, ACTIONS(1511), 3, anon_sym_DOT_DOT_EQ2, @@ -227575,60 +227749,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [105908] = 10, + [106105] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3103), 1, + ACTIONS(3317), 1, anon_sym_LPAREN2, - ACTIONS(5114), 1, + ACTIONS(5086), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5116), 1, + ACTIONS(5088), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5247), 1, + ACTIONS(5270), 1, aux_sym__unquoted_in_record_token2, - ACTIONS(6671), 1, + ACTIONS(6665), 1, anon_sym_DOLLAR, - STATE(2688), 1, + STATE(2685), 1, sym__immediate_decimal, - STATE(3471), 1, + STATE(3472), 1, sym_comment, - ACTIONS(6673), 2, + ACTIONS(6667), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2898), 2, + STATE(2964), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105941] = 10, + [106138] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3103), 1, + ACTIONS(3317), 1, anon_sym_LPAREN2, - ACTIONS(5209), 1, + ACTIONS(5191), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5211), 1, + ACTIONS(5193), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5247), 1, + ACTIONS(5270), 1, aux_sym__unquoted_in_record_token2, - ACTIONS(6671), 1, + ACTIONS(6665), 1, anon_sym_DOLLAR, - STATE(2991), 1, + STATE(3001), 1, sym__immediate_decimal, - STATE(3472), 1, + STATE(3473), 1, sym_comment, - ACTIONS(6675), 2, + ACTIONS(6669), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3373), 2, + STATE(3349), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [105974] = 4, + [106171] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6325), 1, + ACTIONS(6342), 1, anon_sym_DASH2, - STATE(3473), 1, + STATE(3474), 1, sym_comment, - ACTIONS(4453), 9, + ACTIONS(4373), 9, sym_identifier, sym__newline, anon_sym_PIPE, @@ -227638,324 +227812,292 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [105995] = 10, + [106192] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6128), 1, + ACTIONS(6095), 1, anon_sym_DOLLAR, - ACTIONS(6130), 1, + ACTIONS(6097), 1, anon_sym_LPAREN2, - ACTIONS(6191), 1, + ACTIONS(6179), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6193), 1, + ACTIONS(6181), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6335), 1, + ACTIONS(6384), 1, aux_sym__unquoted_in_list_token2, - STATE(3474), 1, + STATE(3475), 1, sym_comment, - STATE(3677), 1, + STATE(3721), 1, sym__immediate_decimal, - ACTIONS(6195), 2, + ACTIONS(6183), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3911), 2, + STATE(3913), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106028] = 4, + [106225] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3475), 1, + ACTIONS(6671), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6673), 1, + aux_sym__immediate_decimal_token5, + STATE(3476), 1, sym_comment, - ACTIONS(1460), 3, + ACTIONS(1738), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1458), 7, + ACTIONS(1740), 4, anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [106049] = 10, + sym__unquoted_pattern_in_list, + [106250] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1776), 1, + ACTIONS(1780), 1, anon_sym_DOLLAR, - ACTIONS(6130), 1, + ACTIONS(6097), 1, anon_sym_LPAREN2, - ACTIONS(6335), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(6399), 1, + ACTIONS(6300), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6401), 1, + ACTIONS(6302), 1, aux_sym__immediate_decimal_token2, - STATE(3476), 1, + ACTIONS(6384), 1, + aux_sym__unquoted_in_list_token2, + STATE(3477), 1, sym_comment, - STATE(4107), 1, + STATE(4108), 1, sym__immediate_decimal, - ACTIONS(6403), 2, + ACTIONS(6304), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, STATE(4377), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106082] = 6, + [106283] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6677), 1, + ACTIONS(6675), 1, anon_sym_DOT, - ACTIONS(6679), 1, + ACTIONS(6677), 1, aux_sym__immediate_decimal_token5, - STATE(3477), 1, + STATE(3478), 1, sym_comment, - ACTIONS(1728), 4, + ACTIONS(1750), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1730), 4, + ACTIONS(1752), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [106107] = 10, + [106308] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6128), 1, + ACTIONS(6095), 1, anon_sym_DOLLAR, - ACTIONS(6130), 1, + ACTIONS(6097), 1, anon_sym_LPAREN2, - ACTIONS(6171), 1, + ACTIONS(6238), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6173), 1, + ACTIONS(6240), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6627), 1, + ACTIONS(6679), 1, aux_sym__unquoted_in_record_token2, - STATE(3478), 1, + STATE(3479), 1, sym_comment, - STATE(3710), 1, + STATE(3691), 1, sym__immediate_decimal, - ACTIONS(6175), 2, + ACTIONS(6242), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3911), 2, + STATE(3913), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106140] = 10, + [106341] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1776), 1, + ACTIONS(1780), 1, anon_sym_DOLLAR, - ACTIONS(6130), 1, + ACTIONS(6097), 1, anon_sym_LPAREN2, - ACTIONS(6339), 1, + ACTIONS(6388), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6341), 1, + ACTIONS(6390), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6627), 1, + ACTIONS(6679), 1, aux_sym__unquoted_in_record_token2, - STATE(3479), 1, + STATE(3480), 1, sym_comment, - STATE(4224), 1, + STATE(4226), 1, sym__immediate_decimal, - ACTIONS(6343), 2, + ACTIONS(6392), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, STATE(4377), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106173] = 6, + [106374] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6681), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6683), 1, - aux_sym__immediate_decimal_token5, - STATE(3480), 1, - sym_comment, - ACTIONS(1738), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(866), 1, + anon_sym_RBRACE, + ACTIONS(908), 1, sym__entry_separator, - ACTIONS(1740), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(5260), 1, + anon_sym_LPAREN2, + ACTIONS(6679), 1, + sym__unquoted_pattern_in_record, + ACTIONS(6681), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [106198] = 6, - ACTIONS(103), 1, - anon_sym_POUND, ACTIONS(6685), 1, - anon_sym_DOT, + sym_filesize_unit, ACTIONS(6687), 1, - aux_sym__immediate_decimal_token5, + sym_duration_unit, STATE(3481), 1, sym_comment, - ACTIONS(1728), 4, - sym__space, - anon_sym_LPAREN2, + STATE(4752), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6683), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1730), 4, - sym__newline, - anon_sym_SEMI, + [106409] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6689), 1, + anon_sym_DOT, + ACTIONS(6691), 1, + aux_sym__immediate_decimal_token5, + STATE(3482), 1, + sym_comment, + ACTIONS(1752), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [106223] = 10, + ACTIONS(1750), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [106434] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1673), 1, + ACTIONS(1659), 1, anon_sym_LPAREN2, - ACTIONS(1677), 1, + ACTIONS(1663), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1830), 1, + ACTIONS(1810), 1, aux_sym_unquoted_token2, - ACTIONS(6689), 1, + ACTIONS(6693), 1, anon_sym_DOLLAR, - ACTIONS(6691), 1, + ACTIONS(6695), 1, aux_sym__immediate_decimal_token2, - STATE(675), 1, + STATE(687), 1, sym__immediate_decimal, - STATE(3482), 1, + STATE(3483), 1, sym_comment, - ACTIONS(6693), 2, + ACTIONS(6697), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(960), 2, + STATE(947), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106256] = 10, + [106467] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1673), 1, + ACTIONS(1659), 1, anon_sym_LPAREN2, - ACTIONS(1695), 1, + ACTIONS(1683), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1830), 1, + ACTIONS(1810), 1, aux_sym_unquoted_token2, - ACTIONS(6689), 1, + ACTIONS(6693), 1, anon_sym_DOLLAR, - ACTIONS(6695), 1, + ACTIONS(6699), 1, aux_sym__immediate_decimal_token2, - STATE(1116), 1, + STATE(989), 1, sym__immediate_decimal, - STATE(3483), 1, + STATE(3484), 1, sym_comment, - ACTIONS(6697), 2, + ACTIONS(6701), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1304), 2, + STATE(1299), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106289] = 9, + [106500] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(6699), 1, + ACTIONS(6703), 1, anon_sym_DQUOTE, - ACTIONS(6701), 1, + ACTIONS(6705), 1, anon_sym_SQUOTE, - ACTIONS(6703), 1, + ACTIONS(6707), 1, anon_sym_BQUOTE, - ACTIONS(6705), 1, + ACTIONS(6709), 1, aux_sym_path_token1, - STATE(2263), 1, + STATE(2266), 1, sym_val_string, - STATE(3484), 1, + STATE(3485), 1, sym_comment, - STATE(2243), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [106320] = 11, + [106531] = 11, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(793), 1, + ACTIONS(866), 1, anon_sym_RBRACK, - ACTIONS(890), 1, + ACTIONS(908), 1, sym__entry_separator, - ACTIONS(6335), 1, + ACTIONS(6384), 1, sym__unquoted_pattern_in_list, - ACTIONS(6601), 1, + ACTIONS(6599), 1, anon_sym_LPAREN2, - ACTIONS(6707), 1, - anon_sym_DOT_DOT2, ACTIONS(6711), 1, + anon_sym_DOT_DOT2, + ACTIONS(6715), 1, sym_filesize_unit, - ACTIONS(6713), 1, + ACTIONS(6717), 1, sym_duration_unit, - STATE(3485), 1, - sym_comment, - STATE(4734), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6709), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [106355] = 4, - ACTIONS(103), 1, - anon_sym_POUND, STATE(3486), 1, sym_comment, - ACTIONS(771), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(773), 6, - anon_sym_LPAREN2, + STATE(4720), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6713), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [106376] = 4, + [106566] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(3487), 1, sym_comment, - ACTIONS(1515), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1513), 7, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [106397] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(1607), 1, - anon_sym_LBRACE, - ACTIONS(2910), 1, - anon_sym_DOLLAR, - STATE(807), 1, - sym__immediate_decimal, - STATE(3488), 1, - sym_comment, - ACTIONS(6500), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6635), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - STATE(806), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [106428] = 4, + ACTIONS(755), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + ACTIONS(757), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [106587] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3489), 1, + STATE(3488), 1, sym_comment, ACTIONS(1519), 3, anon_sym_DOT_DOT_EQ2, @@ -227969,10 +228111,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [106449] = 4, + [106608] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3490), 1, + STATE(3489), 1, sym_comment, ACTIONS(1523), 3, anon_sym_DOT_DOT_EQ2, @@ -227986,514 +228128,514 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [106470] = 9, + [106629] = 9, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(105), 1, sym_raw_string_begin, - ACTIONS(6715), 1, + ACTIONS(6719), 1, anon_sym_DQUOTE, - ACTIONS(6717), 1, + ACTIONS(6721), 1, anon_sym_SQUOTE, - ACTIONS(6719), 1, + ACTIONS(6723), 1, anon_sym_BQUOTE, - ACTIONS(6721), 1, + ACTIONS(6725), 1, aux_sym_path_token1, - STATE(487), 1, + STATE(490), 1, sym_val_string, - STATE(3491), 1, + STATE(3490), 1, sym_comment, - STATE(490), 4, + STATE(501), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [106501] = 4, + [106660] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3492), 1, + STATE(3491), 1, sym_comment, - ACTIONS(874), 4, + ACTIONS(1527), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1525), 7, anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - ACTIONS(876), 6, - anon_sym_LPAREN2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [106681] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6727), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6729), 1, + aux_sym__immediate_decimal_token5, + STATE(3492), 1, + sym_comment, + ACTIONS(1740), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1738), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [106522] = 10, + [106706] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1766), 1, + ACTIONS(1724), 1, aux_sym_unquoted_token2, - ACTIONS(3819), 1, + ACTIONS(3777), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6723), 1, + ACTIONS(6731), 1, anon_sym_DOLLAR, - ACTIONS(6725), 1, + ACTIONS(6733), 1, aux_sym__immediate_decimal_token2, - STATE(1832), 1, + STATE(1843), 1, sym__immediate_decimal, STATE(3493), 1, sym_comment, - ACTIONS(6727), 2, + ACTIONS(6735), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(681), 2, + STATE(695), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106555] = 10, + [106739] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1766), 1, + ACTIONS(1724), 1, aux_sym_unquoted_token2, - ACTIONS(3918), 1, + ACTIONS(3936), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6723), 1, + ACTIONS(6731), 1, anon_sym_DOLLAR, - ACTIONS(6729), 1, + ACTIONS(6737), 1, aux_sym__immediate_decimal_token2, - STATE(1945), 1, + STATE(1954), 1, sym__immediate_decimal, STATE(3494), 1, sym_comment, - ACTIONS(6731), 2, + ACTIONS(6739), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(715), 2, + STATE(772), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106588] = 4, - ACTIONS(3), 1, + [106772] = 9, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1426), 1, + sym_raw_string_begin, + ACTIONS(6741), 1, + anon_sym_DQUOTE, + ACTIONS(6743), 1, + anon_sym_SQUOTE, + ACTIONS(6745), 1, + anon_sym_BQUOTE, + ACTIONS(6747), 1, + aux_sym_path_token1, + STATE(3392), 1, + sym_val_string, STATE(3495), 1, sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 8, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [106609] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6733), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6735), 1, - aux_sym__immediate_decimal_token5, - STATE(3496), 1, - sym_comment, - ACTIONS(1740), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1738), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [106634] = 10, + STATE(3649), 4, + sym__raw_str, + sym__str_double_quotes, + sym__str_single_quotes, + sym__str_back_ticks, + [106803] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1766), 1, + ACTIONS(1724), 1, aux_sym_unquoted_token2, - ACTIONS(5292), 1, + ACTIONS(5317), 1, anon_sym_DOLLAR, - ACTIONS(5817), 1, + ACTIONS(5815), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6737), 1, + ACTIONS(6749), 1, aux_sym__immediate_decimal_token2, - STATE(3497), 1, + STATE(3496), 1, sym_comment, - STATE(3629), 1, + STATE(3640), 1, sym__immediate_decimal, - ACTIONS(6739), 2, + ACTIONS(6751), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3758), 2, + STATE(3748), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106667] = 10, + [106836] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1766), 1, + ACTIONS(1724), 1, aux_sym_unquoted_token2, - ACTIONS(5292), 1, + ACTIONS(5317), 1, anon_sym_DOLLAR, - ACTIONS(6050), 1, + ACTIONS(5974), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6741), 1, + ACTIONS(6753), 1, aux_sym__immediate_decimal_token2, - STATE(3498), 1, + STATE(3497), 1, sym_comment, - STATE(3984), 1, + STATE(4050), 1, sym__immediate_decimal, - ACTIONS(6743), 2, + ACTIONS(6755), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(715), 2, + STATE(772), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106700] = 9, - ACTIONS(103), 1, + [106869] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6745), 1, - anon_sym_DQUOTE, - ACTIONS(6747), 1, - anon_sym_SQUOTE, - ACTIONS(6749), 1, - anon_sym_BQUOTE, - ACTIONS(6751), 1, - aux_sym_path_token1, - ACTIONS(6753), 1, - sym_raw_string_begin, - STATE(372), 1, - sym_val_string, - STATE(3499), 1, + STATE(3498), 1, sym_comment, - STATE(380), 4, - sym__raw_str, - sym__str_double_quotes, - sym__str_single_quotes, - sym__str_back_ticks, - [106731] = 10, + ACTIONS(789), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(791), 8, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [106890] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3261), 1, + ACTIONS(3205), 1, anon_sym_LPAREN2, - ACTIONS(3659), 1, + ACTIONS(3669), 1, anon_sym_DOLLAR, - ACTIONS(5150), 1, + ACTIONS(5172), 1, aux_sym_unquoted_token2, - ACTIONS(5937), 1, + ACTIONS(6052), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5939), 1, + ACTIONS(6054), 1, aux_sym__immediate_decimal_token2, - STATE(3500), 1, + STATE(3499), 1, sym_comment, - STATE(3653), 1, + STATE(3625), 1, sym__immediate_decimal, - ACTIONS(5941), 2, + ACTIONS(6056), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3838), 2, + STATE(3788), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106764] = 10, + [106923] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3261), 1, + ACTIONS(3205), 1, anon_sym_LPAREN2, - ACTIONS(3659), 1, + ACTIONS(3669), 1, anon_sym_DOLLAR, - ACTIONS(5150), 1, + ACTIONS(5172), 1, aux_sym_unquoted_token2, - ACTIONS(6209), 1, + ACTIONS(6191), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6211), 1, + ACTIONS(6193), 1, aux_sym__immediate_decimal_token2, - STATE(3501), 1, + STATE(3500), 1, sym_comment, - STATE(3975), 1, + STATE(3987), 1, sym__immediate_decimal, - ACTIONS(6213), 2, + ACTIONS(6195), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3058), 2, + STATE(2982), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106797] = 9, + [106956] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3022), 1, + ACTIONS(2988), 1, sym_raw_string_begin, - ACTIONS(6755), 1, - anon_sym_DQUOTE, ACTIONS(6757), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(6759), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(6761), 1, + anon_sym_BQUOTE, + ACTIONS(6763), 1, aux_sym_path_token1, - STATE(2406), 1, + STATE(2433), 1, sym_val_string, - STATE(3502), 1, + STATE(3501), 1, sym_comment, - STATE(2624), 4, + STATE(2590), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [106828] = 10, + [106987] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3261), 1, + ACTIONS(3205), 1, anon_sym_LPAREN2, - ACTIONS(3659), 1, + ACTIONS(3669), 1, anon_sym_DOLLAR, - ACTIONS(4902), 1, + ACTIONS(4916), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4904), 1, + ACTIONS(4918), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5150), 1, + ACTIONS(5172), 1, aux_sym_unquoted_token2, - STATE(2544), 1, + STATE(2542), 1, sym__immediate_decimal, - STATE(3503), 1, + STATE(3502), 1, sym_comment, - ACTIONS(4906), 2, + ACTIONS(4920), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2673), 2, + STATE(2649), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106861] = 10, + [107020] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3261), 1, + ACTIONS(3205), 1, anon_sym_LPAREN2, - ACTIONS(3659), 1, + ACTIONS(3669), 1, anon_sym_DOLLAR, ACTIONS(4926), 1, aux_sym__immediate_decimal_token1, ACTIONS(4928), 1, aux_sym__immediate_decimal_token2, - ACTIONS(5150), 1, + ACTIONS(5172), 1, aux_sym_unquoted_token2, - STATE(2700), 1, + STATE(2749), 1, sym__immediate_decimal, - STATE(3504), 1, + STATE(3503), 1, sym_comment, ACTIONS(4930), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3058), 2, + STATE(2982), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106894] = 9, + [107053] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6763), 1, - anon_sym_DQUOTE, ACTIONS(6765), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(6767), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(6769), 1, - aux_sym_path_token1, + anon_sym_BQUOTE, ACTIONS(6771), 1, + aux_sym_path_token1, + ACTIONS(6773), 1, sym_raw_string_begin, - STATE(1738), 1, + STATE(1748), 1, sym_val_string, - STATE(3505), 1, + STATE(3504), 1, sym_comment, - STATE(1787), 4, + STATE(1783), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [106925] = 10, + [107084] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1592), 1, + ACTIONS(1594), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1766), 1, + ACTIONS(1724), 1, aux_sym_unquoted_token2, - ACTIONS(6723), 1, + ACTIONS(6731), 1, anon_sym_DOLLAR, - ACTIONS(6773), 1, + ACTIONS(6775), 1, aux_sym__immediate_decimal_token2, - STATE(544), 1, + STATE(543), 1, sym__immediate_decimal, - STATE(3506), 1, + STATE(3505), 1, sym_comment, - ACTIONS(6775), 2, + ACTIONS(6777), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(681), 2, + STATE(695), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106958] = 10, + [107117] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, ACTIONS(1637), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1766), 1, + ACTIONS(1724), 1, aux_sym_unquoted_token2, - ACTIONS(6723), 1, + ACTIONS(6731), 1, anon_sym_DOLLAR, - ACTIONS(6777), 1, + ACTIONS(6779), 1, aux_sym__immediate_decimal_token2, - STATE(944), 1, + STATE(949), 1, sym__immediate_decimal, - STATE(3507), 1, + STATE(3506), 1, sym_comment, - ACTIONS(6779), 2, + ACTIONS(6781), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(715), 2, + STATE(772), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [106991] = 9, + [107150] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6781), 1, - anon_sym_DQUOTE, ACTIONS(6783), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(6785), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(6787), 1, - aux_sym_path_token1, + anon_sym_BQUOTE, ACTIONS(6789), 1, + aux_sym_path_token1, + ACTIONS(6791), 1, sym_raw_string_begin, - STATE(3508), 1, + STATE(3507), 1, sym_comment, - STATE(3698), 1, + STATE(3763), 1, sym_val_string, - STATE(3797), 4, + STATE(3832), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [107022] = 10, + [107181] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1673), 1, + ACTIONS(1659), 1, anon_sym_LPAREN2, - ACTIONS(1830), 1, + ACTIONS(1810), 1, aux_sym_unquoted_token2, - ACTIONS(4889), 1, + ACTIONS(4885), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5342), 1, + ACTIONS(5331), 1, anon_sym_DOLLAR, - ACTIONS(6791), 1, + ACTIONS(6793), 1, aux_sym__immediate_decimal_token2, STATE(2506), 1, sym__immediate_decimal, - STATE(3509), 1, + STATE(3508), 1, sym_comment, - ACTIONS(6793), 2, + ACTIONS(6795), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, STATE(2625), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107055] = 10, + [107214] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1673), 1, + ACTIONS(1659), 1, anon_sym_LPAREN2, - ACTIONS(1830), 1, + ACTIONS(1810), 1, aux_sym_unquoted_token2, - ACTIONS(4908), 1, + ACTIONS(4910), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5342), 1, + ACTIONS(5331), 1, anon_sym_DOLLAR, - ACTIONS(6795), 1, + ACTIONS(6797), 1, aux_sym__immediate_decimal_token2, - STATE(2651), 1, + STATE(2657), 1, sym__immediate_decimal, - STATE(3510), 1, + STATE(3509), 1, sym_comment, - ACTIONS(6797), 2, + ACTIONS(6799), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1304), 2, + STATE(1299), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107088] = 9, + [107247] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6799), 1, - anon_sym_DQUOTE, + ACTIONS(6747), 1, + aux_sym_path_token1, ACTIONS(6801), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(6803), 1, - anon_sym_BQUOTE, + anon_sym_SQUOTE, ACTIONS(6805), 1, - aux_sym_path_token1, + anon_sym_BQUOTE, ACTIONS(6807), 1, sym_raw_string_begin, - STATE(3315), 1, + STATE(3392), 1, sym_val_string, - STATE(3511), 1, + STATE(3510), 1, sym_comment, - STATE(3467), 4, + STATE(3466), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [107119] = 10, + [107278] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1766), 1, + ACTIONS(1724), 1, aux_sym_unquoted_token2, - ACTIONS(4868), 1, + ACTIONS(4877), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5292), 1, + ACTIONS(5317), 1, anon_sym_DOLLAR, ACTIONS(6809), 1, aux_sym__immediate_decimal_token2, - STATE(2474), 1, + STATE(2476), 1, sym__immediate_decimal, - STATE(3512), 1, + STATE(3511), 1, sym_comment, ACTIONS(6811), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(2560), 2, + STATE(2550), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107152] = 10, + [107311] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1766), 1, + ACTIONS(1724), 1, aux_sym_unquoted_token2, - ACTIONS(4881), 1, + ACTIONS(4895), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5292), 1, + ACTIONS(5317), 1, anon_sym_DOLLAR, ACTIONS(6813), 1, aux_sym__immediate_decimal_token2, - STATE(2570), 1, + STATE(2626), 1, sym__immediate_decimal, - STATE(3513), 1, + STATE(3512), 1, sym_comment, ACTIONS(6815), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(715), 2, + STATE(772), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107185] = 9, + [107344] = 9, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6817), 1, @@ -228506,130 +228648,130 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_path_token1, ACTIONS(6825), 1, sym_raw_string_begin, - STATE(336), 1, + STATE(333), 1, sym_val_string, - STATE(3514), 1, + STATE(3513), 1, sym_comment, STATE(344), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [107216] = 10, + [107375] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1766), 1, + ACTIONS(1724), 1, aux_sym_unquoted_token2, - ACTIONS(5292), 1, + ACTIONS(5317), 1, anon_sym_DOLLAR, - ACTIONS(5912), 1, + ACTIONS(6041), 1, aux_sym__immediate_decimal_token1, ACTIONS(6827), 1, aux_sym__immediate_decimal_token2, - STATE(3515), 1, + STATE(3514), 1, sym_comment, - STATE(3777), 1, + STATE(3778), 1, sym__immediate_decimal, ACTIONS(6829), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3758), 2, + STATE(3748), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107249] = 10, + [107408] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1766), 1, + ACTIONS(1724), 1, aux_sym_unquoted_token2, - ACTIONS(5292), 1, + ACTIONS(5317), 1, anon_sym_DOLLAR, - ACTIONS(6197), 1, + ACTIONS(6187), 1, aux_sym__immediate_decimal_token1, ACTIONS(6831), 1, aux_sym__immediate_decimal_token2, - STATE(3516), 1, + STATE(3515), 1, sym_comment, - STATE(4394), 1, + STATE(4393), 1, sym__immediate_decimal, ACTIONS(6833), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(715), 2, + STATE(772), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107282] = 9, + [107441] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(958), 1, + ACTIONS(962), 1, anon_sym_DQUOTE, - ACTIONS(960), 1, + ACTIONS(964), 1, anon_sym_SQUOTE, - ACTIONS(962), 1, + ACTIONS(966), 1, anon_sym_BQUOTE, - ACTIONS(974), 1, + ACTIONS(978), 1, sym_raw_string_begin, ACTIONS(6835), 1, aux_sym_path_token1, - STATE(2495), 1, + STATE(2489), 1, sym_val_string, - STATE(3517), 1, + STATE(3516), 1, sym_comment, - STATE(2543), 4, + STATE(2536), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [107313] = 10, + [107472] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1673), 1, + ACTIONS(1659), 1, anon_sym_LPAREN2, - ACTIONS(1830), 1, + ACTIONS(1810), 1, aux_sym_unquoted_token2, - ACTIONS(3372), 1, + ACTIONS(3376), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6689), 1, + ACTIONS(6693), 1, anon_sym_DOLLAR, ACTIONS(6837), 1, aux_sym__immediate_decimal_token2, - STATE(1445), 1, + STATE(1448), 1, sym__immediate_decimal, - STATE(3518), 1, + STATE(3517), 1, sym_comment, ACTIONS(6839), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(960), 2, + STATE(947), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107346] = 10, + [107505] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1673), 1, + ACTIONS(1659), 1, anon_sym_LPAREN2, - ACTIONS(1830), 1, + ACTIONS(1810), 1, aux_sym_unquoted_token2, - ACTIONS(3424), 1, + ACTIONS(3460), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6689), 1, + ACTIONS(6693), 1, anon_sym_DOLLAR, ACTIONS(6841), 1, aux_sym__immediate_decimal_token2, - STATE(1506), 1, + STATE(1507), 1, sym__immediate_decimal, - STATE(3519), 1, + STATE(3518), 1, sym_comment, ACTIONS(6843), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1304), 2, + STATE(1299), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107379] = 9, + [107538] = 9, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6845), 1, @@ -228642,31 +228784,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_path_token1, ACTIONS(6853), 1, sym_raw_string_begin, - STATE(1897), 1, + STATE(1895), 1, sym_val_string, - STATE(3520), 1, + STATE(3519), 1, sym_comment, - STATE(1919), 4, + STATE(1918), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [107410] = 10, + [107569] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1766), 1, + ACTIONS(1724), 1, aux_sym_unquoted_token2, - ACTIONS(3914), 1, + ACTIONS(3946), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6723), 1, + ACTIONS(6731), 1, anon_sym_DOLLAR, ACTIONS(6855), 1, aux_sym__immediate_decimal_token2, - STATE(1870), 1, + STATE(1869), 1, sym__immediate_decimal, - STATE(3521), 1, + STATE(3520), 1, sym_comment, ACTIONS(6857), 2, aux_sym__immediate_decimal_token3, @@ -228674,98 +228816,98 @@ static const uint16_t ts_small_parse_table[] = { STATE(1961), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107443] = 10, + [107602] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1766), 1, + ACTIONS(1724), 1, aux_sym_unquoted_token2, - ACTIONS(3950), 1, + ACTIONS(3960), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6723), 1, + ACTIONS(6731), 1, anon_sym_DOLLAR, ACTIONS(6859), 1, aux_sym__immediate_decimal_token2, - STATE(2107), 1, + STATE(1978), 1, sym__immediate_decimal, - STATE(3522), 1, + STATE(3521), 1, sym_comment, ACTIONS(6861), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(715), 2, + STATE(772), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107476] = 9, + [107635] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(852), 1, + ACTIONS(846), 1, anon_sym_DQUOTE, - ACTIONS(854), 1, + ACTIONS(848), 1, anon_sym_SQUOTE, - ACTIONS(856), 1, + ACTIONS(850), 1, anon_sym_BQUOTE, - ACTIONS(870), 1, + ACTIONS(864), 1, sym_raw_string_begin, ACTIONS(6863), 1, aux_sym_path_token1, - STATE(2452), 1, + STATE(2467), 1, sym_val_string, - STATE(3523), 1, + STATE(3522), 1, sym_comment, - STATE(2508), 4, + STATE(2499), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [107507] = 10, + [107666] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1766), 1, + ACTIONS(1724), 1, aux_sym_unquoted_token2, - ACTIONS(3362), 1, + ACTIONS(3358), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6723), 1, + ACTIONS(6731), 1, anon_sym_DOLLAR, ACTIONS(6865), 1, aux_sym__immediate_decimal_token2, - STATE(1432), 1, + STATE(1433), 1, sym__immediate_decimal, - STATE(3524), 1, + STATE(3523), 1, sym_comment, ACTIONS(6867), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(681), 2, + STATE(695), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107540] = 10, + [107699] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(1766), 1, + ACTIONS(1724), 1, aux_sym_unquoted_token2, - ACTIONS(3420), 1, + ACTIONS(3370), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6723), 1, + ACTIONS(6731), 1, anon_sym_DOLLAR, ACTIONS(6869), 1, aux_sym__immediate_decimal_token2, STATE(1464), 1, sym__immediate_decimal, - STATE(3525), 1, + STATE(3524), 1, sym_comment, ACTIONS(6871), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(715), 2, + STATE(772), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [107573] = 9, + [107732] = 9, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6873), 1, @@ -228778,16 +228920,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_path_token1, ACTIONS(6881), 1, sym_raw_string_begin, - STATE(3526), 1, + STATE(3525), 1, sym_comment, - STATE(4019), 1, + STATE(4017), 1, sym_val_string, - STATE(4091), 4, + STATE(4093), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [107604] = 9, + [107763] = 9, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6883), 1, @@ -228800,16 +228942,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_path_token1, ACTIONS(6891), 1, sym_raw_string_begin, - STATE(1726), 1, + STATE(1713), 1, sym_val_string, - STATE(3527), 1, + STATE(3526), 1, sym_comment, - STATE(1745), 4, + STATE(1775), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [107635] = 9, + [107794] = 9, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6893), 1, @@ -228822,223 +228964,278 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_path_token1, ACTIONS(6901), 1, sym_raw_string_begin, - STATE(2407), 1, + STATE(2399), 1, sym_val_string, - STATE(3528), 1, + STATE(3527), 1, sym_comment, - STATE(2459), 4, + STATE(2449), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [107666] = 9, + [107825] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1792), 1, + ACTIONS(1796), 1, sym_raw_string_begin, - ACTIONS(6699), 1, + ACTIONS(6703), 1, anon_sym_DQUOTE, - ACTIONS(6701), 1, + ACTIONS(6705), 1, anon_sym_SQUOTE, - ACTIONS(6703), 1, + ACTIONS(6707), 1, anon_sym_BQUOTE, - ACTIONS(6761), 1, + ACTIONS(6763), 1, aux_sym_path_token1, - STATE(2406), 1, + STATE(2433), 1, sym_val_string, - STATE(3529), 1, + STATE(3528), 1, sym_comment, - STATE(2243), 4, + STATE(2247), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [107697] = 9, + [107856] = 9, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1426), 1, sym_raw_string_begin, - ACTIONS(6903), 1, + ACTIONS(6741), 1, anon_sym_DQUOTE, - ACTIONS(6905), 1, + ACTIONS(6743), 1, anon_sym_SQUOTE, - ACTIONS(6907), 1, + ACTIONS(6745), 1, anon_sym_BQUOTE, - ACTIONS(6909), 1, + ACTIONS(6903), 1, aux_sym_path_token1, - STATE(3530), 1, + STATE(3529), 1, sym_comment, - STATE(3739), 1, + STATE(3698), 1, sym_val_string, - STATE(3638), 4, + STATE(3649), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [107728] = 9, + [107887] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6911), 1, + ACTIONS(6905), 1, anon_sym_DQUOTE, - ACTIONS(6913), 1, + ACTIONS(6907), 1, anon_sym_SQUOTE, - ACTIONS(6915), 1, + ACTIONS(6909), 1, anon_sym_BQUOTE, - ACTIONS(6917), 1, + ACTIONS(6911), 1, aux_sym_path_token1, - ACTIONS(6919), 1, + ACTIONS(6913), 1, sym_raw_string_begin, STATE(334), 1, sym_val_string, - STATE(3531), 1, + STATE(3530), 1, sym_comment, - STATE(349), 4, + STATE(367), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [107759] = 9, + [107918] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6921), 1, + ACTIONS(6915), 1, anon_sym_DQUOTE, - ACTIONS(6923), 1, + ACTIONS(6917), 1, anon_sym_SQUOTE, - ACTIONS(6925), 1, + ACTIONS(6919), 1, anon_sym_BQUOTE, - ACTIONS(6927), 1, + ACTIONS(6921), 1, aux_sym_path_token1, - ACTIONS(6929), 1, + ACTIONS(6923), 1, sym_raw_string_begin, - STATE(2306), 1, + STATE(2301), 1, sym_val_string, - STATE(3532), 1, + STATE(3531), 1, sym_comment, - STATE(2310), 4, + STATE(2319), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [107790] = 4, + [107949] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3533), 1, + STATE(3532), 1, sym_comment, - ACTIONS(747), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(789), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 6, - sym__space, + sym__unquoted_pattern_in_list, + ACTIONS(791), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [107811] = 5, - ACTIONS(3), 1, + sym__entry_separator, + [107970] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6568), 1, + ACTIONS(6925), 1, aux_sym__immediate_decimal_token5, - STATE(3534), 1, + STATE(3533), 1, sym_comment, - ACTIONS(739), 2, + ACTIONS(755), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + sym__unquoted_pattern_in_record, + ACTIONS(757), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [107834] = 6, - ACTIONS(103), 1, + sym__entry_separator, + [107993] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6931), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6933), 1, - aux_sym__immediate_decimal_token5, - STATE(3535), 1, - sym_comment, - ACTIONS(1738), 4, - sym__space, + ACTIONS(1590), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1740), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [107859] = 7, + ACTIONS(1623), 1, + anon_sym_LBRACE, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + STATE(826), 1, + sym__immediate_decimal, + STATE(3534), 1, + sym_comment, + ACTIONS(6400), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(6629), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(825), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [108024] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6574), 1, + ACTIONS(6576), 1, anon_sym_DOT2, - STATE(367), 1, + STATE(346), 1, sym_path, - STATE(3536), 1, + STATE(3535), 1, sym_comment, - STATE(3537), 1, + STATE(3536), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1492), 3, + ACTIONS(1494), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1490), 4, + ACTIONS(1492), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - [107886] = 6, + [108051] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6935), 1, + ACTIONS(6927), 1, anon_sym_DOT2, - STATE(367), 1, + STATE(346), 1, sym_path, - STATE(3537), 2, + STATE(3536), 2, sym_comment, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1496), 3, + ACTIONS(1498), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1494), 4, + ACTIONS(1496), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - [107911] = 5, - ACTIONS(103), 1, + [108076] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6938), 1, + ACTIONS(6574), 1, aux_sym__immediate_decimal_token5, + STATE(3537), 1, + sym_comment, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(741), 7, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [108099] = 4, + ACTIONS(103), 1, + anon_sym_POUND, STATE(3538), 1, sym_comment, - ACTIONS(771), 3, - anon_sym_RBRACE, + ACTIONS(755), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(773), 6, + sym__unquoted_pattern, + ACTIONS(757), 6, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [107934] = 4, - ACTIONS(3), 1, + [108120] = 4, + ACTIONS(103), 1, anon_sym_POUND, STATE(3539), 1, sym_comment, - ACTIONS(874), 2, + ACTIONS(789), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(791), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [108141] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6930), 1, + aux_sym__immediate_decimal_token5, + STATE(3540), 1, + sym_comment, + ACTIONS(755), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(757), 7, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [108164] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3541), 1, + sym_comment, + ACTIONS(755), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(876), 8, + ACTIONS(757), 8, anon_sym_if, sym__newline, anon_sym_PIPE, @@ -229047,10 +229244,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [107955] = 4, + [108185] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3540), 1, + STATE(3542), 1, sym_comment, ACTIONS(747), 2, anon_sym_DOT_DOT2, @@ -229064,186 +229261,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [107976] = 9, + [108206] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1426), 1, - sym_raw_string_begin, - ACTIONS(6805), 1, - aux_sym_path_token1, - ACTIONS(6903), 1, + ACTIONS(6932), 1, + anon_sym_DOT, + ACTIONS(6934), 1, + aux_sym__immediate_decimal_token5, + STATE(3543), 1, + sym_comment, + ACTIONS(1750), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1752), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [108231] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6936), 1, anon_sym_DQUOTE, - ACTIONS(6905), 1, + ACTIONS(6938), 1, anon_sym_SQUOTE, - ACTIONS(6907), 1, + ACTIONS(6940), 1, anon_sym_BQUOTE, - STATE(3315), 1, + ACTIONS(6942), 1, + aux_sym_path_token1, + ACTIONS(6944), 1, + sym_raw_string_begin, + STATE(370), 1, sym_val_string, - STATE(3541), 1, + STATE(3544), 1, sym_comment, - STATE(3638), 4, + STATE(379), 4, sym__raw_str, sym__str_double_quotes, sym__str_single_quotes, sym__str_back_ticks, - [108007] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6687), 1, - aux_sym__immediate_decimal_token5, - STATE(3542), 1, - sym_comment, - ACTIONS(1728), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1730), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [108029] = 8, + [108262] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - STATE(1956), 1, - sym__immediate_decimal, - STATE(3543), 1, - sym_comment, - ACTIONS(3914), 2, + ACTIONS(6946), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3916), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(1961), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [108057] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6940), 1, - anon_sym_DOT, - ACTIONS(6942), 1, + ACTIONS(6948), 1, aux_sym__immediate_decimal_token5, - STATE(3544), 1, + STATE(3545), 1, sym_comment, - ACTIONS(1730), 2, + ACTIONS(747), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1728), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(749), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [108081] = 8, + sym_filesize_unit, + sym_duration_unit, + [108286] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(6097), 1, anon_sym_LPAREN2, - STATE(941), 1, - sym__immediate_decimal, - STATE(3545), 1, - sym_comment, - ACTIONS(3950), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3952), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(715), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [108109] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(6950), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - STATE(682), 1, - sym__immediate_decimal, STATE(3546), 1, sym_comment, - ACTIONS(1592), 2, + STATE(4227), 1, + sym__immediate_decimal, + ACTIONS(6300), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1594), 2, + ACTIONS(6952), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(681), 2, + STATE(4144), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108137] = 7, - ACTIONS(3), 1, + [108314] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6944), 1, - anon_sym_DOT2, - STATE(2552), 1, - sym_path, - STATE(2948), 1, - sym_cell_path, + ACTIONS(6954), 1, + aux_sym__immediate_decimal_token5, STATE(3547), 1, sym_comment, - STATE(3618), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1854), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [108163] = 8, + ACTIONS(1816), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1818), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [108336] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6934), 1, + aux_sym__immediate_decimal_token5, + STATE(3548), 1, + sym_comment, + ACTIONS(1750), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1752), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [108358] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1659), 1, anon_sym_LPAREN2, - STATE(941), 1, + STATE(1297), 1, sym__immediate_decimal, - STATE(3548), 1, + STATE(3549), 1, sym_comment, - ACTIONS(1594), 2, + ACTIONS(1665), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1635), 2, + ACTIONS(1712), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(715), 2, + STATE(1295), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108191] = 8, + [108386] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3309), 1, - anon_sym_LPAREN2, - ACTIONS(6946), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR, - STATE(2928), 1, + ACTIONS(1659), 1, + anon_sym_LPAREN2, + STATE(1302), 1, sym__immediate_decimal, - STATE(3549), 1, + STATE(3550), 1, sym_comment, - ACTIONS(4980), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6948), 2, + ACTIONS(1665), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3187), 2, + ACTIONS(1712), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1300), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108219] = 4, + [108414] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3550), 1, + STATE(3551), 1, sym_comment, ACTIONS(747), 3, anon_sym_RBRACE, @@ -229256,619 +229430,619 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [108239] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6944), 1, - anon_sym_DOT2, - STATE(2552), 1, - sym_path, - STATE(2867), 1, - sym_cell_path, - STATE(3551), 1, - sym_comment, - STATE(3618), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1862), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [108265] = 8, - ACTIONS(3), 1, + [108434] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1671), 1, - anon_sym_DOLLAR, - ACTIONS(1673), 1, - anon_sym_LPAREN2, - STATE(931), 1, - sym__immediate_decimal, + ACTIONS(6956), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6958), 1, + aux_sym__immediate_decimal_token5, STATE(3552), 1, sym_comment, - ACTIONS(1677), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(1679), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(960), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [108293] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4135), 1, + ACTIONS(1740), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - ACTIONS(6950), 1, - sym_filesize_unit, - ACTIONS(6952), 1, - sym_duration_unit, - ACTIONS(6954), 1, - sym__unquoted_pattern, + sym__unquoted_pattern_in_record, + ACTIONS(1738), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [108458] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6960), 1, + aux_sym__immediate_decimal_token5, STATE(3553), 1, sym_comment, - ACTIONS(4137), 2, + ACTIONS(1816), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(890), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [108321] = 4, + sym__entry_separator, + ACTIONS(1818), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [108480] = 8, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1586), 1, + anon_sym_DOLLAR, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + STATE(838), 1, + sym__immediate_decimal, STATE(3554), 1, sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(773), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [108341] = 8, + ACTIONS(1596), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1631), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(837), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [108508] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1671), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(1673), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - STATE(1307), 1, + STATE(902), 1, sym__immediate_decimal, STATE(3555), 1, sym_comment, - ACTIONS(1679), 2, + ACTIONS(1596), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1710), 2, + ACTIONS(1631), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1304), 2, + STATE(839), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108369] = 6, - ACTIONS(103), 1, + [108536] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6956), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6958), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(6962), 1, + anon_sym_DOT2, + STATE(2562), 1, + sym_path, + STATE(2961), 1, + sym_cell_path, STATE(3556), 1, sym_comment, - ACTIONS(1740), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1738), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [108393] = 8, + STATE(3665), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1844), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + [108562] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3309), 1, + ACTIONS(6097), 1, anon_sym_LPAREN2, - ACTIONS(6946), 1, + ACTIONS(6950), 1, anon_sym_DOLLAR, - STATE(3186), 1, - sym__immediate_decimal, STATE(3557), 1, sym_comment, - ACTIONS(5084), 2, + STATE(4142), 1, + sym__immediate_decimal, + ACTIONS(6408), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6960), 2, + ACTIONS(6964), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3185), 2, + STATE(4140), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108421] = 8, + [108590] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6130), 1, - anon_sym_LPAREN2, - ACTIONS(6962), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + STATE(902), 1, + sym__immediate_decimal, STATE(3558), 1, sym_comment, - STATE(4715), 1, - sym__immediate_decimal, - ACTIONS(6304), 2, + ACTIONS(3960), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6964), 2, + ACTIONS(3962), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4145), 2, + STATE(839), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108449] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6661), 1, - aux_sym__immediate_decimal_token5, - STATE(3559), 1, - sym_comment, - ACTIONS(1730), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1728), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [108471] = 5, + [108618] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(6966), 1, + anon_sym_DOT, + ACTIONS(6968), 1, aux_sym__immediate_decimal_token5, - STATE(3560), 1, + STATE(3559), 1, sym_comment, - ACTIONS(1806), 4, + ACTIONS(1752), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1750), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1808), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [108493] = 8, + [108642] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2650), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(6130), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - STATE(3561), 1, - sym_comment, - STATE(4064), 1, + STATE(1957), 1, sym__immediate_decimal, - ACTIONS(6191), 2, + STATE(3560), 1, + sym_comment, + ACTIONS(3946), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6964), 2, + ACTIONS(3948), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3911), 2, + STATE(1961), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108521] = 8, + [108670] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6130), 1, - anon_sym_LPAREN2, - ACTIONS(6962), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - STATE(3562), 1, - sym_comment, - STATE(4777), 1, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + STATE(913), 1, sym__immediate_decimal, - ACTIONS(6304), 2, + STATE(3561), 1, + sym_comment, + ACTIONS(3960), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6964), 2, + ACTIONS(3962), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4377), 2, + STATE(772), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108549] = 5, - ACTIONS(103), 1, + [108698] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6679), 1, - aux_sym__immediate_decimal_token5, - STATE(3563), 1, + STATE(3562), 1, sym_comment, - ACTIONS(1728), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1730), 4, - anon_sym_RBRACK, + ACTIONS(6970), 9, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [108571] = 8, + [108716] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1671), 1, - anon_sym_DOLLAR, - ACTIONS(1673), 1, + ACTIONS(6962), 1, + anon_sym_DOT2, + STATE(2562), 1, + sym_path, + STATE(2933), 1, + sym_cell_path, + STATE(3563), 1, + sym_comment, + STATE(3665), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1838), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + [108742] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3169), 1, anon_sym_LPAREN2, - STATE(1054), 1, + ACTIONS(6972), 1, + anon_sym_DOLLAR, + STATE(2898), 1, sym__immediate_decimal, STATE(3564), 1, sym_comment, - ACTIONS(1695), 2, + ACTIONS(4994), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1697), 2, + ACTIONS(6974), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1326), 2, + STATE(3188), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108599] = 8, + [108770] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2910), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR, - STATE(813), 1, + ACTIONS(1659), 1, + anon_sym_LPAREN2, + STATE(918), 1, sym__immediate_decimal, STATE(3565), 1, sym_comment, - ACTIONS(5819), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6189), 2, + ACTIONS(1663), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(812), 2, + ACTIONS(1665), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(947), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108627] = 5, + [108798] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6968), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(6962), 1, + anon_sym_DOT2, + STATE(2562), 1, + sym_path, + STATE(2877), 1, + sym_cell_path, STATE(3566), 1, sym_comment, - ACTIONS(1808), 2, + STATE(3665), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1872), 5, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_GT2, + anon_sym_DASH_DASH, + [108824] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4119), 1, anon_sym_DOT_DOT2, + ACTIONS(6976), 1, + sym_filesize_unit, + ACTIONS(6978), 1, + sym_duration_unit, + ACTIONS(6980), 1, sym__unquoted_pattern, - ACTIONS(1806), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [108649] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6970), 1, - anon_sym_DOT, - ACTIONS(6972), 1, - aux_sym__immediate_decimal_token5, STATE(3567), 1, sym_comment, - ACTIONS(1730), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1728), 4, - anon_sym_LPAREN2, + ACTIONS(4121), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [108673] = 3, + ACTIONS(908), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [108852] = 8, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1657), 1, + anon_sym_DOLLAR, + ACTIONS(1659), 1, + anon_sym_LPAREN2, + STATE(1304), 1, + sym__immediate_decimal, STATE(3568), 1, sym_comment, - ACTIONS(6974), 9, - anon_sym_EQ, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [108691] = 8, + ACTIONS(1665), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1712), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1299), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [108880] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(3169), 1, anon_sym_LPAREN2, - STATE(1918), 1, + ACTIONS(6972), 1, + anon_sym_DOLLAR, + STATE(3184), 1, sym__immediate_decimal, STATE(3569), 1, sym_comment, - ACTIONS(3918), 2, + ACTIONS(5074), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3920), 2, + ACTIONS(6982), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(815), 2, + STATE(3177), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108719] = 8, + [108908] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3261), 1, + ACTIONS(6097), 1, anon_sym_LPAREN2, - ACTIONS(6976), 1, + ACTIONS(6950), 1, anon_sym_DOLLAR, - STATE(2971), 1, - sym__immediate_decimal, STATE(3570), 1, sym_comment, - ACTIONS(6294), 2, + STATE(4726), 1, + sym__immediate_decimal, + ACTIONS(6408), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6978), 2, + ACTIONS(6964), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3115), 2, + STATE(4144), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108747] = 8, + [108936] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2910), 1, - anon_sym_DOLLAR, + ACTIONS(6691), 1, + aux_sym__immediate_decimal_token5, STATE(3571), 1, sym_comment, - STATE(3946), 1, + ACTIONS(1752), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1750), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [108958] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2716), 1, + anon_sym_DOLLAR, + ACTIONS(6097), 1, + anon_sym_LPAREN2, + STATE(3572), 1, + sym_comment, + STATE(4063), 1, sym__immediate_decimal, - ACTIONS(6050), 2, + ACTIONS(6179), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6052), 2, + ACTIONS(6964), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(815), 2, + STATE(3913), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108775] = 8, + [108986] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3261), 1, + ACTIONS(6097), 1, anon_sym_LPAREN2, - ACTIONS(6976), 1, + ACTIONS(6950), 1, anon_sym_DOLLAR, - STATE(2971), 1, - sym__immediate_decimal, - STATE(3572), 1, + STATE(3573), 1, sym_comment, - ACTIONS(5048), 2, + STATE(4773), 1, + sym__immediate_decimal, + ACTIONS(6408), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6980), 2, + ACTIONS(6964), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3115), 2, + STATE(4377), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108803] = 4, + [109014] = 9, ACTIONS(103), 1, anon_sym_POUND, - STATE(3573), 1, - sym_comment, - ACTIONS(771), 3, - anon_sym_RBRACE, + ACTIONS(908), 1, + sym__entry_separator, + ACTIONS(6384), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6601), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(773), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(6605), 1, sym_filesize_unit, + ACTIONS(6607), 1, sym_duration_unit, - sym__entry_separator, - [108823] = 4, - ACTIONS(3), 1, - anon_sym_POUND, STATE(3574), 1, sym_comment, - ACTIONS(874), 2, + ACTIONS(866), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(6603), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [109044] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3575), 1, + sym_comment, + ACTIONS(755), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(876), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + sym__unquoted_pattern_in_record, + ACTIONS(757), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [108843] = 8, + sym__entry_separator, + [109064] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3261), 1, - anon_sym_LPAREN2, - ACTIONS(6976), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR, - STATE(3575), 1, - sym_comment, - STATE(4063), 1, - sym__immediate_decimal, - ACTIONS(6209), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6982), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2993), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [108871] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6240), 1, + ACTIONS(1659), 1, anon_sym_LPAREN2, - ACTIONS(6984), 1, - anon_sym_DOLLAR, + STATE(994), 1, + sym__immediate_decimal, STATE(3576), 1, sym_comment, - STATE(4143), 1, - sym__immediate_decimal, - ACTIONS(6242), 2, + ACTIONS(1683), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6986), 2, + ACTIONS(1685), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4142), 2, + STATE(1300), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108899] = 8, + [109092] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3261), 1, - anon_sym_LPAREN2, - ACTIONS(6976), 1, - anon_sym_DOLLAR, - STATE(2747), 1, - sym__immediate_decimal, + ACTIONS(6984), 1, + aux_sym__immediate_decimal_token5, STATE(3577), 1, sym_comment, - ACTIONS(4926), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6988), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(2993), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [108927] = 8, + ACTIONS(1818), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1816), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [109114] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(2910), 1, + ACTIONS(2871), 1, anon_sym_DOLLAR, - STATE(813), 1, + STATE(838), 1, sym__immediate_decimal, STATE(3578), 1, sym_comment, - ACTIONS(1594), 2, + ACTIONS(5817), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1635), 2, + ACTIONS(6250), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(812), 2, + STATE(837), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [108955] = 8, + [109142] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6130), 1, - anon_sym_LPAREN2, - ACTIONS(6962), 1, - anon_sym_DOLLAR, STATE(3579), 1, sym_comment, - STATE(4226), 1, - sym__immediate_decimal, - ACTIONS(6399), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6990), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4145), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [108983] = 5, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(749), 7, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [109162] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6992), 1, - aux_sym__immediate_decimal_token5, STATE(3580), 1, sym_comment, - ACTIONS(1806), 4, + ACTIONS(789), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(791), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - ACTIONS(1808), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [109005] = 8, + [109182] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - STATE(899), 1, + STATE(1929), 1, sym__immediate_decimal, STATE(3581), 1, sym_comment, - ACTIONS(1637), 2, + ACTIONS(3936), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(1639), 2, + ACTIONS(3938), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(815), 2, + STATE(839), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109033] = 9, - ACTIONS(103), 1, + [109210] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(890), 1, - sym__space, - ACTIONS(4135), 1, - anon_sym_DOT_DOT2, - ACTIONS(5150), 1, - sym__unquoted_pattern, - ACTIONS(6587), 1, - sym_filesize_unit, - ACTIONS(6589), 1, - sym_duration_unit, + ACTIONS(3205), 1, + anon_sym_LPAREN2, + ACTIONS(6986), 1, + anon_sym_DOLLAR, + STATE(3067), 1, + sym__immediate_decimal, STATE(3582), 1, sym_comment, - ACTIONS(793), 2, + ACTIONS(6472), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6988), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3066), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109238] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3583), 1, + sym_comment, + ACTIONS(755), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(757), 7, sym__newline, - anon_sym_SEMI, - ACTIONS(4137), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [109063] = 4, + sym_filesize_unit, + sym_duration_unit, + [109258] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3583), 1, + STATE(3584), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(789), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 7, + ACTIONS(791), 7, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, @@ -229876,454 +230050,483 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [109083] = 8, + [109278] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3585), 1, + sym_comment, + ACTIONS(789), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(791), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [109298] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6130), 1, + ACTIONS(3205), 1, anon_sym_LPAREN2, - ACTIONS(6962), 1, + ACTIONS(6986), 1, anon_sym_DOLLAR, - STATE(3584), 1, - sym_comment, - STATE(4231), 1, + STATE(3067), 1, sym__immediate_decimal, - ACTIONS(6339), 2, + STATE(3586), 1, + sym_comment, + ACTIONS(4990), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6994), 2, + ACTIONS(6990), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4145), 2, + STATE(3066), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109111] = 8, + [109326] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(3205), 1, anon_sym_LPAREN2, - STATE(813), 1, - sym__immediate_decimal, - STATE(3585), 1, + ACTIONS(6986), 1, + anon_sym_DOLLAR, + STATE(3587), 1, sym_comment, - ACTIONS(3950), 2, + STATE(4030), 1, + sym__immediate_decimal, + ACTIONS(6191), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3952), 2, + ACTIONS(6992), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(812), 2, + STATE(3070), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109139] = 4, - ACTIONS(103), 1, + [109354] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3586), 1, - sym_comment, - ACTIONS(874), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(876), 6, + ACTIONS(6220), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [109159] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6633), 1, - aux_sym__immediate_decimal_token5, - STATE(3587), 1, + ACTIONS(6994), 1, + anon_sym_DOLLAR, + STATE(3588), 1, sym_comment, - ACTIONS(1728), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1730), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [109181] = 4, + STATE(4142), 1, + sym__immediate_decimal, + ACTIONS(6222), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6996), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4140), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109382] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3588), 1, + ACTIONS(6998), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7000), 1, + aux_sym__immediate_decimal_token5, + STATE(3589), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(1740), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 7, + ACTIONS(1738), 5, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [109201] = 8, + [109406] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1673), 1, + ACTIONS(3205), 1, anon_sym_LPAREN2, - ACTIONS(4885), 1, + ACTIONS(6986), 1, anon_sym_DOLLAR, - STATE(2678), 1, + STATE(2768), 1, sym__immediate_decimal, - STATE(3589), 1, + STATE(3590), 1, sym_comment, - ACTIONS(4908), 2, + ACTIONS(4926), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4910), 2, + ACTIONS(7002), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1326), 2, + STATE(3070), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109229] = 4, + [109434] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(3590), 1, - sym_comment, - ACTIONS(874), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(876), 7, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [109249] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(890), 1, - sym__entry_separator, - ACTIONS(6335), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6603), 1, - anon_sym_DOT_DOT2, - ACTIONS(6607), 1, - sym_filesize_unit, - ACTIONS(6609), 1, - sym_duration_unit, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + STATE(838), 1, + sym__immediate_decimal, STATE(3591), 1, sym_comment, - ACTIONS(793), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(6605), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [109279] = 8, + ACTIONS(1596), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1631), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(837), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109462] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6240), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(6984), 1, + ACTIONS(2871), 1, anon_sym_DOLLAR, STATE(3592), 1, sym_comment, - STATE(4001), 1, + STATE(4791), 1, sym__immediate_decimal, - ACTIONS(6242), 2, + ACTIONS(6548), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6986), 2, + ACTIONS(6550), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(4145), 2, + STATE(839), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109307] = 8, + [109490] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2910), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - STATE(2574), 1, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + STATE(922), 1, sym__immediate_decimal, STATE(3593), 1, sym_comment, - ACTIONS(4881), 2, + ACTIONS(1637), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(4883), 2, + ACTIONS(1639), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(815), 2, + STATE(839), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109335] = 8, + [109518] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1671), 1, - anon_sym_DOLLAR, - ACTIONS(1673), 1, + ACTIONS(3317), 1, anon_sym_LPAREN2, - STATE(1325), 1, + ACTIONS(3799), 1, + anon_sym_DOLLAR, + STATE(3398), 1, sym__immediate_decimal, STATE(3594), 1, sym_comment, - ACTIONS(1679), 2, + ACTIONS(5090), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(1710), 2, + ACTIONS(5244), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1324), 2, + STATE(3397), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109363] = 8, + [109546] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1671), 1, - anon_sym_DOLLAR, - ACTIONS(1673), 1, + ACTIONS(6097), 1, anon_sym_LPAREN2, - STATE(1327), 1, - sym__immediate_decimal, + ACTIONS(6950), 1, + anon_sym_DOLLAR, STATE(3595), 1, sym_comment, - ACTIONS(1679), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1710), 2, + STATE(4233), 1, + sym__immediate_decimal, + ACTIONS(6388), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1326), 2, + ACTIONS(7004), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(4144), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109391] = 6, + [109574] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6996), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6998), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(1586), 1, + anon_sym_DOLLAR, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + STATE(838), 1, + sym__immediate_decimal, STATE(3596), 1, sym_comment, - ACTIONS(1740), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1738), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [109415] = 8, + ACTIONS(3960), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(3962), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(837), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109602] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3103), 1, + ACTIONS(1659), 1, anon_sym_LPAREN2, - ACTIONS(3845), 1, + ACTIONS(4881), 1, anon_sym_DOLLAR, - STATE(3063), 1, + STATE(2659), 1, sym__immediate_decimal, STATE(3597), 1, sym_comment, - ACTIONS(5211), 2, + ACTIONS(4910), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(5213), 2, + ACTIONS(4912), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(3356), 2, + STATE(1300), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109443] = 8, + [109630] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(908), 1, + sym__space, + ACTIONS(4119), 1, + anon_sym_DOT_DOT2, + ACTIONS(5172), 1, + sym__unquoted_pattern, + ACTIONS(6621), 1, + sym_filesize_unit, + ACTIONS(6623), 1, + sym_duration_unit, + STATE(3598), 1, + sym_comment, + ACTIONS(866), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(4121), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [109660] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(6220), 1, anon_sym_LPAREN2, - ACTIONS(2910), 1, + ACTIONS(6994), 1, anon_sym_DOLLAR, - STATE(3598), 1, + STATE(3599), 1, sym_comment, - STATE(4289), 1, + STATE(3999), 1, sym__immediate_decimal, - ACTIONS(6197), 2, + ACTIONS(6222), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6199), 2, + ACTIONS(6996), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(815), 2, + STATE(4144), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109471] = 8, + [109688] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1671), 1, - anon_sym_DOLLAR, - ACTIONS(1673), 1, + ACTIONS(7006), 1, + anon_sym_DOT, + ACTIONS(7008), 1, + aux_sym__immediate_decimal_token5, + STATE(3600), 1, + sym_comment, + ACTIONS(1752), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1750), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [109712] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1590), 1, anon_sym_LPAREN2, - STATE(1488), 1, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + STATE(2576), 1, sym__immediate_decimal, - STATE(3599), 1, + STATE(3601), 1, sym_comment, - ACTIONS(3424), 2, + ACTIONS(4895), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3426), 2, + ACTIONS(4897), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(1326), 2, + STATE(839), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109499] = 8, + [109740] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(3317), 1, anon_sym_LPAREN2, - ACTIONS(2910), 1, + ACTIONS(3799), 1, anon_sym_DOLLAR, - STATE(813), 1, + STATE(3014), 1, sym__immediate_decimal, - STATE(3600), 1, + STATE(3602), 1, sym_comment, - ACTIONS(6500), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(6635), 2, + ACTIONS(5193), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(812), 2, + ACTIONS(5195), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(3268), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109527] = 8, + [109768] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - STATE(1998), 1, - sym__immediate_decimal, - STATE(3601), 1, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + STATE(3603), 1, sym_comment, - ACTIONS(3950), 2, + STATE(4286), 1, + sym__immediate_decimal, + ACTIONS(6187), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3952), 2, + ACTIONS(6189), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(815), 2, + STATE(839), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109555] = 8, + [109796] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - STATE(813), 1, + STATE(696), 1, sym__immediate_decimal, - STATE(3602), 1, + STATE(3604), 1, sym_comment, ACTIONS(1594), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1635), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(812), 2, + ACTIONS(1596), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(695), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109583] = 8, + [109824] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1659), 1, anon_sym_LPAREN2, - STATE(1467), 1, + STATE(1492), 1, sym__immediate_decimal, - STATE(3603), 1, + STATE(3605), 1, sym_comment, - ACTIONS(3420), 2, + ACTIONS(3460), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(3422), 2, + ACTIONS(3462), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(815), 2, + STATE(1300), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109611] = 8, + [109852] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - ACTIONS(1588), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - STATE(943), 1, + STATE(2082), 1, sym__immediate_decimal, - STATE(3604), 1, + STATE(3606), 1, sym_comment, - ACTIONS(1594), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1635), 2, + ACTIONS(3960), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(815), 2, + ACTIONS(3962), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(839), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109639] = 8, + [109880] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - ACTIONS(2910), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - STATE(3605), 1, - sym_comment, - STATE(4798), 1, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + STATE(913), 1, sym__immediate_decimal, - ACTIONS(6542), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6544), 2, + STATE(3607), 1, + sym_comment, + ACTIONS(1596), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - STATE(815), 2, + ACTIONS(1631), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(772), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109667] = 8, + [109908] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1673), 1, - anon_sym_LPAREN2, - ACTIONS(4885), 1, + ACTIONS(1586), 1, anon_sym_DOLLAR, - STATE(1325), 1, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + STATE(1460), 1, sym__immediate_decimal, - STATE(3606), 1, + STATE(3608), 1, sym_comment, - ACTIONS(1679), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - ACTIONS(1710), 2, + ACTIONS(3370), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(1324), 2, + ACTIONS(3372), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(839), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109695] = 4, + [109936] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3607), 1, + STATE(3609), 1, sym_comment, ACTIONS(747), 2, anon_sym_DOT_DOT2, @@ -230336,627 +230539,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [109715] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6944), 1, - anon_sym_DOT2, - STATE(2262), 1, - sym_cell_path, - STATE(2552), 1, - sym_path, - STATE(3608), 1, - sym_comment, - STATE(3618), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1434), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [109741] = 6, + [109956] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7000), 1, - anon_sym_DOT, - ACTIONS(7002), 1, - aux_sym__immediate_decimal_token5, - STATE(3609), 1, + ACTIONS(1659), 1, + anon_sym_LPAREN2, + ACTIONS(4881), 1, + anon_sym_DOLLAR, + STATE(1297), 1, + sym__immediate_decimal, + STATE(3610), 1, sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [109765] = 5, + ACTIONS(1665), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + ACTIONS(1712), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + STATE(1295), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [109984] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7004), 1, + ACTIONS(6655), 1, aux_sym__immediate_decimal_token5, - STATE(3610), 1, + STATE(3611), 1, sym_comment, - ACTIONS(1806), 4, + ACTIONS(1750), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1808), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [109787] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3611), 1, - sym_comment, - ACTIONS(7006), 9, - anon_sym_EQ, + ACTIONS(1752), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - [109805] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1766), 1, - sym__unquoted_pattern, - ACTIONS(7008), 1, - anon_sym_DOT_DOT2, - ACTIONS(7012), 1, - sym_filesize_unit, - ACTIONS(7014), 1, - sym_duration_unit, - STATE(3612), 1, - sym_comment, - ACTIONS(7010), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(890), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [109833] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6944), 1, - anon_sym_DOT2, - STATE(2552), 1, - sym_path, - STATE(2946), 1, - sym_cell_path, - STATE(3613), 1, - sym_comment, - STATE(3618), 1, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1848), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [109859] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7016), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7018), 1, - aux_sym__immediate_decimal_token5, - STATE(3614), 1, - sym_comment, - ACTIONS(747), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(749), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [109883] = 8, + [110006] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6130), 1, - anon_sym_LPAREN2, - ACTIONS(6962), 1, - anon_sym_DOLLAR, - STATE(3615), 1, - sym_comment, - STATE(4143), 1, - sym__immediate_decimal, - ACTIONS(6304), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6964), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(4142), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [109911] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_DOLLAR, - ACTIONS(1588), 1, - anon_sym_LPAREN2, - STATE(943), 1, - sym__immediate_decimal, - STATE(3616), 1, - sym_comment, - ACTIONS(3950), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(3952), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - STATE(815), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [109939] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3103), 1, + ACTIONS(1590), 1, anon_sym_LPAREN2, - ACTIONS(3845), 1, + ACTIONS(2871), 1, anon_sym_DOLLAR, - STATE(3310), 1, + STATE(838), 1, sym__immediate_decimal, - STATE(3617), 1, + STATE(3612), 1, sym_comment, - ACTIONS(5118), 2, + ACTIONS(6400), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - ACTIONS(5255), 2, + ACTIONS(6629), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - STATE(3383), 2, + STATE(837), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [109967] = 6, + [110034] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6944), 1, + ACTIONS(6962), 1, anon_sym_DOT2, - STATE(2552), 1, + STATE(2265), 1, + sym_cell_path, + STATE(2562), 1, sym_path, - STATE(3618), 1, + STATE(3613), 1, sym_comment, - STATE(3663), 1, + STATE(3665), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1492), 5, + ACTIONS(1446), 5, anon_sym_EQ, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_GT2, anon_sym_DASH_DASH, - [109990] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7022), 1, - anon_sym_DOT2, - STATE(2552), 1, - sym_path, - STATE(2613), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2987), 1, - sym_cell_path, - STATE(3619), 1, - sym_comment, - ACTIONS(7020), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [110015] = 10, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2662), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2664), 1, - anon_sym_COLON2, - ACTIONS(7024), 1, - anon_sym_alias, - ACTIONS(7026), 1, - anon_sym_const, - ACTIONS(7028), 1, - anon_sym_def, - ACTIONS(7030), 1, - anon_sym_use, - ACTIONS(7032), 1, - anon_sym_extern, - ACTIONS(7034), 1, - anon_sym_module, - STATE(3620), 1, - sym_comment, - [110046] = 7, + [110060] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2192), 1, - anon_sym_DOT2, - STATE(547), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(712), 1, - sym_path, - STATE(1288), 1, - sym_cell_path, - STATE(3621), 1, - sym_comment, - ACTIONS(7036), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [110071] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7038), 1, + ACTIONS(7010), 1, anon_sym_DOT, - ACTIONS(7040), 1, + ACTIONS(7012), 1, aux_sym__immediate_decimal_token5, - STATE(3622), 1, + STATE(3614), 1, sym_comment, ACTIONS(739), 2, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(741), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [110094] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7042), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7044), 1, - aux_sym__immediate_decimal_token5, - STATE(3623), 1, - sym_comment, - ACTIONS(747), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(749), 4, + sym__unquoted_pattern, + ACTIONS(741), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [110117] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1842), 1, - anon_sym_DOT2, - STATE(416), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(435), 1, - sym_path, - STATE(916), 1, - sym_cell_path, - STATE(3624), 1, - sym_comment, - ACTIONS(7046), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [110142] = 4, + [110084] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(3625), 1, + ACTIONS(7014), 1, + aux_sym__immediate_decimal_token5, + STATE(3615), 1, sym_comment, - ACTIONS(1738), 4, + ACTIONS(1816), 4, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1740), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1818), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [110161] = 7, + sym__unquoted_pattern, + [110106] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5052), 1, - anon_sym_DOT2, - STATE(435), 1, - sym_path, - STATE(2283), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3626), 1, + STATE(3616), 1, sym_comment, - STATE(4138), 1, - sym_cell_path, - ACTIONS(7048), 4, - anon_sym_if, + ACTIONS(7016), 9, + anon_sym_EQ, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [110186] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6972), 1, - aux_sym__immediate_decimal_token5, - STATE(3627), 1, - sym_comment, - ACTIONS(1730), 3, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1728), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [110207] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3628), 1, - sym_comment, - ACTIONS(1844), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1846), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [110226] = 6, + [110124] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1598), 1, + ACTIONS(1724), 1, sym__unquoted_pattern, - ACTIONS(7050), 1, + ACTIONS(7018), 1, anon_sym_DOT_DOT2, - STATE(3629), 1, + ACTIONS(7022), 1, + sym_filesize_unit, + ACTIONS(7024), 1, + sym_duration_unit, + STATE(3617), 1, sym_comment, - ACTIONS(7052), 2, + ACTIONS(7020), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1942), 4, - anon_sym_if, + ACTIONS(908), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [110249] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2192), 1, - anon_sym_DOT2, - STATE(547), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(712), 1, - sym_path, - STATE(1288), 1, - sym_cell_path, - STATE(3630), 1, - sym_comment, - ACTIONS(7054), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [110274] = 5, - ACTIONS(3), 1, + [110152] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6942), 1, + ACTIONS(6677), 1, aux_sym__immediate_decimal_token5, - STATE(3631), 1, + STATE(3618), 1, sym_comment, - ACTIONS(1730), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1728), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [110295] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1942), 1, - sym__entry_separator, - ACTIONS(1946), 1, + ACTIONS(1750), 4, anon_sym_LPAREN2, - ACTIONS(7056), 1, - anon_sym_DOT_DOT2, - STATE(3632), 1, - sym_comment, - ACTIONS(1944), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7058), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [110322] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7062), 1, - anon_sym_DOT2, - STATE(2554), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2659), 1, - sym_path, - STATE(3149), 1, - sym_cell_path, - STATE(3633), 1, - sym_comment, - ACTIONS(7060), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [110347] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1511), 1, - sym__entry_separator, - STATE(3634), 1, - sym_comment, - ACTIONS(1509), 7, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [110366] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3635), 1, - sym_comment, - ACTIONS(1740), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1738), 6, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [110385] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1515), 1, sym__entry_separator, - STATE(3636), 1, - sym_comment, - ACTIONS(1513), 7, + ACTIONS(1752), 4, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [110404] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1962), 1, - sym__unquoted_pattern, - ACTIONS(7064), 1, anon_sym_DOT_DOT2, - STATE(3637), 1, - sym_comment, - ACTIONS(7066), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1952), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [110427] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1507), 1, - sym__entry_separator, - STATE(3638), 1, - sym_comment, - ACTIONS(1505), 7, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_COLON2, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [110446] = 5, + sym__unquoted_pattern_in_list, + [110174] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7068), 1, - aux_sym__immediate_decimal_token5, - STATE(3639), 1, + STATE(3619), 1, sym_comment, - ACTIONS(1808), 2, + ACTIONS(755), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1806), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(757), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [110467] = 9, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1856), 1, - sym__table_head_separator, - ACTIONS(7073), 1, - anon_sym_DOT_DOT, - ACTIONS(7075), 1, - anon_sym_DOT2, - STATE(3640), 1, - sym_comment, - STATE(3812), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4124), 1, - sym_path, - STATE(4569), 1, - sym_cell_path, - ACTIONS(7070), 2, - anon_sym_RBRACK, - sym__entry_separator, - [110496] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7079), 1, - anon_sym_DOT2, - STATE(1917), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2130), 1, - sym_path, - STATE(2140), 1, - sym_cell_path, - STATE(3641), 1, - sym_comment, - ACTIONS(7077), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [110521] = 7, + sym_filesize_unit, + sym_duration_unit, + [110194] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5052), 1, - anon_sym_DOT2, - STATE(435), 1, - sym_path, - STATE(916), 1, - sym_cell_path, - STATE(2283), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3642), 1, + ACTIONS(1590), 1, + anon_sym_LPAREN2, + ACTIONS(2871), 1, + anon_sym_DOLLAR, + STATE(3620), 1, sym_comment, - ACTIONS(7081), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [110546] = 4, + STATE(3952), 1, + sym__immediate_decimal, + ACTIONS(5974), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(5976), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + STATE(839), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [110222] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1523), 1, + ACTIONS(1460), 1, sym__entry_separator, - STATE(3643), 1, + STATE(3621), 1, sym_comment, - ACTIONS(1521), 7, + ACTIONS(1458), 7, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, @@ -230964,419 +230753,460 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [110565] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7085), 1, - anon_sym_DASH2, - STATE(3644), 1, - sym_comment, - ACTIONS(7083), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [110584] = 5, + [110241] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7087), 1, + ACTIONS(7008), 1, aux_sym__immediate_decimal_token5, - STATE(3645), 1, + STATE(3622), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(1752), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 5, - anon_sym_LBRACE, + ACTIONS(1750), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [110605] = 8, + [110262] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1856), 1, + ACTIONS(1840), 1, sym__table_head_separator, - ACTIONS(7089), 1, + ACTIONS(7028), 1, anon_sym_DOT2, - STATE(3646), 1, + STATE(3623), 1, sym_comment, STATE(4367), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4827), 1, + STATE(4745), 1, sym_path, - STATE(5035), 1, + STATE(5023), 1, sym_cell_path, - ACTIONS(7073), 3, + ACTIONS(7026), 3, anon_sym_RBRACK, anon_sym_DOT_DOT, sym__entry_separator, - [110632] = 7, + [110289] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3624), 1, + sym_comment, + ACTIONS(1816), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1818), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [110308] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2001), 1, + sym__space, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + ACTIONS(7030), 1, + anon_sym_DOT_DOT2, + STATE(3625), 1, + sym_comment, + ACTIONS(2003), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7032), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [110335] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5290), 1, + ACTIONS(7036), 1, anon_sym_DOT2, - STATE(712), 1, + STATE(2501), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(2603), 1, sym_path, - STATE(1288), 1, + STATE(2969), 1, sym_cell_path, - STATE(2447), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3647), 1, + STATE(3626), 1, sym_comment, - ACTIONS(7091), 4, + ACTIONS(7034), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [110657] = 7, + [110360] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3627), 1, + sym_comment, + ACTIONS(1854), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1856), 4, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [110379] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7095), 1, + ACTIONS(7040), 1, anon_sym_DOT2, - STATE(367), 1, + STATE(346), 1, sym_path, - STATE(3648), 1, + STATE(3628), 1, sym_comment, - STATE(3771), 1, + STATE(3767), 1, aux_sym__where_predicate_lhs_repeat1, STATE(4625), 1, sym_cell_path, - ACTIONS(7093), 4, + ACTIONS(7038), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [110682] = 8, - ACTIONS(103), 1, + [110404] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1952), 1, - sym__entry_separator, - ACTIONS(1956), 1, - anon_sym_LPAREN2, - ACTIONS(1962), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7097), 1, - anon_sym_DOT_DOT2, - STATE(3649), 1, + ACTIONS(5052), 1, + anon_sym_DOT2, + STATE(446), 1, + sym_path, + STATE(2294), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3629), 1, sym_comment, - ACTIONS(1954), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7099), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [110709] = 7, + STATE(4356), 1, + sym_cell_path, + ACTIONS(7042), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [110429] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7103), 1, + ACTIONS(6962), 1, anon_sym_DOT2, - STATE(2504), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(2607), 1, + STATE(2562), 1, sym_path, - STATE(3076), 1, + STATE(3031), 1, sym_cell_path, - STATE(3650), 1, + STATE(3630), 1, sym_comment, - ACTIONS(7101), 4, + STATE(3665), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(7044), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [110734] = 4, + [110454] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3651), 1, + ACTIONS(7046), 1, + aux_sym__immediate_decimal_token5, + STATE(3631), 1, sym_comment, - ACTIONS(1808), 2, + ACTIONS(1818), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1806), 6, - anon_sym_if, + ACTIONS(1816), 5, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [110753] = 7, + [110475] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1842), 1, + ACTIONS(5052), 1, anon_sym_DOT2, - STATE(416), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(435), 1, + STATE(446), 1, sym_path, - STATE(916), 1, - sym_cell_path, - STATE(3652), 1, - sym_comment, - ACTIONS(7105), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [110778] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern, - ACTIONS(1942), 1, - sym__space, - ACTIONS(1946), 1, - anon_sym_LPAREN2, - ACTIONS(7107), 1, - anon_sym_DOT_DOT2, - STATE(3653), 1, + STATE(2294), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3632), 1, sym_comment, - ACTIONS(1944), 2, + STATE(4139), 1, + sym_cell_path, + ACTIONS(7048), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - ACTIONS(7109), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [110805] = 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + [110500] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(3654), 1, + ACTIONS(6968), 1, + aux_sym__immediate_decimal_token5, + STATE(3633), 1, sym_comment, - ACTIONS(1738), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1740), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(1752), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [110824] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3655), 1, - sym_comment, - ACTIONS(1806), 4, + sym__unquoted_pattern_in_record, + ACTIONS(1750), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1808), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [110843] = 5, + [110521] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7002), 1, - aux_sym__immediate_decimal_token5, - STATE(3656), 1, - sym_comment, - ACTIONS(739), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(741), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [110864] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3657), 1, + ACTIONS(7052), 1, + anon_sym_DOT2, + STATE(2562), 1, + sym_path, + STATE(2570), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3031), 1, + sym_cell_path, + STATE(3634), 1, sym_comment, - ACTIONS(1738), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1740), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [110883] = 4, + ACTIONS(7050), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [110546] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3658), 1, + STATE(3635), 1, sym_comment, - ACTIONS(1846), 2, + ACTIONS(1740), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1844), 6, + ACTIONS(1738), 6, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [110902] = 7, + [110565] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5052), 1, + ACTIONS(1842), 1, anon_sym_DOT2, - STATE(435), 1, - sym_path, - STATE(2283), 1, + STATE(421), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3659), 1, + STATE(446), 1, + sym_path, + STATE(898), 1, + sym_cell_path, + STATE(3636), 1, sym_comment, - STATE(4359), 1, + ACTIONS(7054), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [110590] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2251), 1, + anon_sym_DOT2, + STATE(525), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(827), 1, + sym_path, + STATE(1316), 1, sym_cell_path, - ACTIONS(7111), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [110927] = 4, + STATE(3637), 1, + sym_comment, + ACTIONS(7056), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [110615] = 5, ACTIONS(103), 1, anon_sym_POUND, - STATE(3660), 1, + ACTIONS(7058), 1, + aux_sym__immediate_decimal_token5, + STATE(3638), 1, sym_comment, - ACTIONS(1806), 4, - sym__space, + ACTIONS(1818), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1816), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1808), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - [110946] = 8, + sym__entry_separator, + [110636] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1434), 1, - sym__entry_separator, - ACTIONS(7113), 1, + ACTIONS(1840), 1, + sym__table_head_separator, + ACTIONS(7026), 1, + anon_sym_DOT_DOT, + ACTIONS(7063), 1, anon_sym_DOT2, - STATE(367), 1, - sym_path, - STATE(374), 1, - sym_cell_path, - STATE(3661), 1, + STATE(3639), 1, sym_comment, - STATE(3771), 1, + STATE(3879), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1432), 3, + STATE(4125), 1, + sym_path, + STATE(4475), 1, + sym_cell_path, + ACTIONS(7060), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON2, - [110973] = 8, - ACTIONS(103), 1, + sym__entry_separator, + [110665] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1952), 1, - sym__space, - ACTIONS(1956), 1, - anon_sym_LPAREN2, - ACTIONS(1962), 1, + ACTIONS(1598), 1, sym__unquoted_pattern, - ACTIONS(7115), 1, + ACTIONS(7065), 1, anon_sym_DOT_DOT2, - STATE(3662), 1, + STATE(3640), 1, sym_comment, - ACTIONS(1954), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7117), 2, + ACTIONS(7067), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [111000] = 5, + ACTIONS(2001), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [110688] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7119), 1, + ACTIONS(1842), 1, anon_sym_DOT2, - STATE(2552), 1, + STATE(421), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(446), 1, sym_path, - STATE(3663), 2, + STATE(898), 1, + sym_cell_path, + STATE(3641), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1496), 5, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_GT2, - anon_sym_DASH_DASH, - [111021] = 4, + ACTIONS(7069), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [110713] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(3664), 1, - sym_comment, - ACTIONS(1844), 4, + ACTIONS(2011), 1, sym__space, + ACTIONS(2015), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1846), 4, + ACTIONS(2021), 1, + sym__unquoted_pattern, + ACTIONS(7071), 1, + anon_sym_DOT_DOT2, + STATE(3642), 1, + sym_comment, + ACTIONS(2013), 2, sym__newline, anon_sym_SEMI, + ACTIONS(7073), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [110740] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3643), 1, + sym_comment, + ACTIONS(1818), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - [111040] = 7, + ACTIONS(1816), 6, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [110759] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1842), 1, + ACTIONS(5052), 1, anon_sym_DOT2, - STATE(416), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(435), 1, + STATE(446), 1, sym_path, - STATE(916), 1, + STATE(898), 1, sym_cell_path, - STATE(3665), 1, + STATE(2294), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3644), 1, sym_comment, - ACTIONS(7122), 4, + ACTIONS(7075), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [111065] = 7, + [110784] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3645), 1, + sym_comment, + ACTIONS(1738), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1740), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [110803] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6944), 1, + ACTIONS(1842), 1, anon_sym_DOT2, - STATE(2552), 1, + STATE(421), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(446), 1, sym_path, - STATE(2987), 1, + STATE(898), 1, sym_cell_path, - STATE(3618), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3666), 1, + STATE(3646), 1, sym_comment, - ACTIONS(7124), 4, + ACTIONS(7077), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [111090] = 5, - ACTIONS(103), 1, + [110828] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7126), 1, - aux_sym__immediate_decimal_token5, - STATE(3667), 1, + ACTIONS(7081), 1, + anon_sym_DASH2, + STATE(3647), 1, sym_comment, - ACTIONS(1808), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1806), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [111111] = 4, + ACTIONS(7079), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [110847] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1460), 1, + ACTIONS(1519), 1, sym__entry_separator, - STATE(3668), 1, + STATE(3648), 1, sym_comment, - ACTIONS(1458), 7, + ACTIONS(1517), 7, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, @@ -231384,44 +231214,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [111130] = 4, + [110866] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3669), 1, - sym_comment, - ACTIONS(1844), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1507), 1, sym__entry_separator, - ACTIONS(1846), 4, + STATE(3649), 1, + sym_comment, + ACTIONS(1505), 7, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [111149] = 4, - ACTIONS(103), 1, + anon_sym_DOT_DOT, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [110885] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3670), 1, + ACTIONS(5312), 1, + anon_sym_DOT2, + STATE(827), 1, + sym_path, + STATE(1316), 1, + sym_cell_path, + STATE(2473), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3650), 1, sym_comment, - ACTIONS(1806), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1808), 4, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_list, - [111168] = 4, + ACTIONS(7083), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [110910] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1519), 1, + ACTIONS(1523), 1, sym__entry_separator, - STATE(3671), 1, + STATE(3651), 1, sym_comment, - ACTIONS(1517), 7, + ACTIONS(1521), 7, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, @@ -231429,1755 +231262,2041 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [111187] = 9, - ACTIONS(3), 1, + [110929] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3932), 1, - sym__newline, - ACTIONS(7128), 1, - anon_sym_LBRACK, - ACTIONS(7130), 1, - anon_sym_RBRACK, - STATE(3672), 1, + ACTIONS(2011), 1, + sym__entry_separator, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7085), 1, + anon_sym_DOT_DOT2, + STATE(3652), 1, sym_comment, - STATE(3998), 1, - aux_sym__types_body_repeat1, - STATE(4399), 1, - aux_sym__table_body_repeat1, - STATE(4432), 1, - sym_val_list, - STATE(5235), 1, - sym__table_body, - [111215] = 5, + ACTIONS(2013), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7087), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [110956] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7132), 1, + ACTIONS(7089), 1, + anon_sym_DOT, + ACTIONS(7091), 1, aux_sym__immediate_decimal_token5, - STATE(3673), 1, + STATE(3653), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(773), 4, + ACTIONS(741), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [111235] = 9, - ACTIONS(103), 1, + [110979] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2662), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2664), 1, - anon_sym_COLON2, - ACTIONS(7134), 1, - sym_identifier, - ACTIONS(7136), 1, - anon_sym_DOLLAR, - STATE(3674), 1, + ACTIONS(2251), 1, + anon_sym_DOT2, + STATE(525), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(827), 1, + sym_path, + STATE(1316), 1, + sym_cell_path, + STATE(3654), 1, sym_comment, - STATE(4070), 1, - sym__variable_name, - STATE(4191), 1, - sym_val_variable, - STATE(4327), 1, - sym__assignment_pattern, - [111263] = 7, - ACTIONS(3), 1, + ACTIONS(7093), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [111004] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern_in_record, - ACTIONS(7138), 1, - anon_sym_DOT, - STATE(3675), 1, + STATE(3655), 1, sym_comment, - STATE(4185), 1, - sym__immediate_decimal, - ACTIONS(7140), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7142), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [111287] = 9, + ACTIONS(1816), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1818), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [111023] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2662), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2664), 1, - anon_sym_COLON2, - ACTIONS(7134), 1, - sym_identifier, - ACTIONS(7136), 1, - anon_sym_DOLLAR, - STATE(3676), 1, + STATE(3656), 1, sym_comment, - STATE(4070), 1, - sym__variable_name, - STATE(4191), 1, - sym_val_variable, - STATE(4329), 1, - sym__assignment_pattern, - [111315] = 8, + ACTIONS(1738), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1740), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [111042] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7095), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7097), 1, + aux_sym__immediate_decimal_token5, + STATE(3657), 1, + sym_comment, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(749), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [111065] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1598), 1, sym__unquoted_pattern_in_list, - ACTIONS(1942), 1, + ACTIONS(2001), 1, sym__entry_separator, - ACTIONS(1944), 1, - anon_sym_RBRACK, - ACTIONS(1946), 1, + ACTIONS(2005), 1, anon_sym_LPAREN2, - ACTIONS(7144), 1, + ACTIONS(7099), 1, anon_sym_DOT_DOT2, - STATE(3677), 1, + STATE(3658), 1, sym_comment, - ACTIONS(7146), 2, + ACTIONS(2003), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7101), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [111341] = 6, + [111092] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7148), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7150), 1, + ACTIONS(7012), 1, aux_sym__immediate_decimal_token5, - STATE(3678), 1, + STATE(3659), 1, sym_comment, - ACTIONS(1740), 2, + ACTIONS(739), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1738), 3, + ACTIONS(741), 5, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [111363] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1854), 1, - sym__entry_separator, - ACTIONS(7113), 1, - anon_sym_DOT2, - STATE(367), 1, - sym_path, - STATE(3679), 1, - sym_comment, - STATE(3771), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4422), 1, - sym_cell_path, - ACTIONS(1856), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [111389] = 7, + sym_filesize_unit, + sym_duration_unit, + [111113] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6944), 1, - anon_sym_DOT2, - STATE(2552), 1, - sym_path, - STATE(2930), 1, - sym_cell_path, - STATE(3618), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3680), 1, + ACTIONS(2021), 1, + sym__unquoted_pattern, + ACTIONS(7103), 1, + anon_sym_DOT_DOT2, + STATE(3660), 1, sym_comment, - ACTIONS(1886), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [111413] = 4, + ACTIONS(7105), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2011), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [111136] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3681), 1, + STATE(3661), 1, sym_comment, - ACTIONS(1866), 3, + ACTIONS(1816), 4, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1868), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, + ACTIONS(1818), 4, + sym__newline, + anon_sym_SEMI, anon_sym_DOT_DOT2, - [111431] = 4, + sym__unquoted_pattern, + [111155] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3682), 1, + ACTIONS(7107), 1, + aux_sym__immediate_decimal_token5, + STATE(3662), 1, sym_comment, - ACTIONS(771), 2, + ACTIONS(755), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(773), 5, + ACTIONS(757), 5, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [111449] = 6, - ACTIONS(3), 1, + [111176] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1730), 1, - sym__unquoted_pattern, - ACTIONS(7152), 1, - anon_sym_DOT, - ACTIONS(7154), 1, - aux_sym__immediate_decimal_token5, - STATE(3683), 1, + STATE(3663), 1, sym_comment, - ACTIONS(1728), 4, - anon_sym_if, + ACTIONS(1854), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1856), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [111471] = 7, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + [111195] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6944), 1, + ACTIONS(1446), 1, + sym__entry_separator, + ACTIONS(7109), 1, anon_sym_DOT2, - STATE(2552), 1, + STATE(346), 1, sym_path, - STATE(3052), 1, + STATE(374), 1, sym_cell_path, - STATE(3618), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3684), 1, + STATE(3664), 1, sym_comment, - ACTIONS(1882), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [111495] = 9, + STATE(3767), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1444), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON2, + [111222] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7156), 1, + ACTIONS(6962), 1, + anon_sym_DOT2, + STATE(2562), 1, + sym_path, + STATE(3665), 1, + sym_comment, + STATE(3666), 1, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1494), 5, + anon_sym_EQ, anon_sym_LBRACK, - ACTIONS(7158), 1, anon_sym_LPAREN, - ACTIONS(7160), 1, + anon_sym_GT2, anon_sym_DASH_DASH, - STATE(1673), 1, - sym_parameter_parens, - STATE(1674), 1, - sym_parameter_bracks, - STATE(3685), 1, - sym_comment, - STATE(4081), 1, - aux_sym_decl_def_repeat1, - STATE(4586), 1, - sym_long_flag, - [111523] = 7, + [111245] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6944), 1, + ACTIONS(7111), 1, anon_sym_DOT2, - STATE(2552), 1, + STATE(2562), 1, sym_path, - STATE(3088), 1, - sym_cell_path, - STATE(3618), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3686), 1, + STATE(3666), 2, sym_comment, - ACTIONS(1838), 3, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1498), 5, + anon_sym_EQ, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_GT2, anon_sym_DASH_DASH, - [111547] = 8, + [111266] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1882), 1, + ACTIONS(1527), 1, sym__entry_separator, - ACTIONS(7162), 1, - anon_sym_DOT2, - STATE(3687), 1, + STATE(3667), 1, sym_comment, - STATE(3921), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4384), 1, - sym_path, - STATE(4393), 1, - sym_cell_path, - ACTIONS(1884), 2, + ACTIONS(1525), 7, anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT, - [111573] = 8, - ACTIONS(103), 1, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [111285] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1838), 1, - sym__entry_separator, - ACTIONS(7162), 1, + ACTIONS(7116), 1, anon_sym_DOT2, - STATE(3688), 1, - sym_comment, - STATE(3921), 1, + STATE(2522), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4227), 1, - sym_cell_path, - STATE(4384), 1, + STATE(2663), 1, sym_path, - ACTIONS(1840), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [111599] = 6, + STATE(3198), 1, + sym_cell_path, + STATE(3668), 1, + sym_comment, + ACTIONS(7114), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [111310] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7164), 1, - anon_sym_DOT, - ACTIONS(7166), 1, - aux_sym__immediate_decimal_token5, - STATE(3689), 1, + STATE(3669), 1, sym_comment, - ACTIONS(1728), 2, + ACTIONS(1854), 4, anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1730), 3, + ACTIONS(1856), 4, anon_sym_RBRACK, - anon_sym_DOT_DOT, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, sym__unquoted_pattern_in_list, - [111621] = 4, - ACTIONS(3), 1, + [111329] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3690), 1, + STATE(3670), 1, sym_comment, - ACTIONS(874), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(876), 5, - anon_sym_LBRACE, + ACTIONS(1738), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [111639] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3932), 1, - sym__newline, - ACTIONS(7128), 1, - anon_sym_LBRACK, - ACTIONS(7168), 1, + sym__entry_separator, + ACTIONS(1740), 4, anon_sym_RBRACK, - STATE(3691), 1, - sym_comment, - STATE(3998), 1, - aux_sym__types_body_repeat1, - STATE(4399), 1, - aux_sym__table_body_repeat1, - STATE(4432), 1, - sym_val_list, - STATE(5008), 1, - sym__table_body, - [111667] = 8, - ACTIONS(103), 1, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_list, + [111348] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1862), 1, - sym__entry_separator, - ACTIONS(7113), 1, + ACTIONS(7120), 1, anon_sym_DOT2, - STATE(367), 1, - sym_path, - STATE(3692), 1, - sym_comment, - STATE(3771), 1, + STATE(1946), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4581), 1, + STATE(2122), 1, + sym_path, + STATE(2188), 1, sym_cell_path, - ACTIONS(1864), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [111693] = 8, + STATE(3671), 1, + sym_comment, + ACTIONS(7118), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [111373] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1882), 1, + ACTIONS(1511), 1, sym__entry_separator, - ACTIONS(7113), 1, - anon_sym_DOT2, - STATE(367), 1, - sym_path, - STATE(3693), 1, + STATE(3672), 1, sym_comment, - STATE(3771), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4393), 1, - sym_cell_path, - ACTIONS(1884), 2, + ACTIONS(1509), 7, anon_sym_RBRACK, anon_sym_RBRACE, - [111719] = 8, + anon_sym_DOT_DOT, + anon_sym_COLON2, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [111392] = 10, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5397), 1, - sym__entry_separator, - ACTIONS(7113), 1, - anon_sym_DOT2, - STATE(367), 1, - sym_path, - STATE(3694), 1, + ACTIONS(2702), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2704), 1, + anon_sym_COLON2, + ACTIONS(7122), 1, + anon_sym_alias, + ACTIONS(7124), 1, + anon_sym_const, + ACTIONS(7126), 1, + anon_sym_def, + ACTIONS(7128), 1, + anon_sym_use, + ACTIONS(7130), 1, + anon_sym_extern, + ACTIONS(7132), 1, + anon_sym_module, + STATE(3673), 1, sym_comment, - STATE(3771), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4630), 1, - sym_cell_path, - ACTIONS(5395), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [111745] = 4, + [111423] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3695), 1, + STATE(3674), 1, sym_comment, - ACTIONS(1740), 2, + ACTIONS(1856), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1738), 5, + ACTIONS(1854), 6, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [111763] = 9, + [111442] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7156), 1, + ACTIONS(3940), 1, + sym__newline, + ACTIONS(7134), 1, anon_sym_LBRACK, - ACTIONS(7158), 1, - anon_sym_LPAREN, - ACTIONS(7160), 1, - anon_sym_DASH_DASH, - STATE(1665), 1, - sym_parameter_parens, - STATE(1668), 1, - sym_parameter_bracks, - STATE(3696), 1, + ACTIONS(7136), 1, + anon_sym_RBRACK, + STATE(3675), 1, sym_comment, - STATE(4081), 1, - aux_sym_decl_def_repeat1, - STATE(4586), 1, - sym_long_flag, - [111791] = 4, + STATE(4083), 1, + aux_sym__types_body_repeat1, + STATE(4471), 1, + sym_val_list, + STATE(4512), 1, + aux_sym__table_body_repeat1, + STATE(4837), 1, + sym__table_body, + [111470] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3697), 1, - sym_comment, - ACTIONS(1808), 2, - anon_sym_DOT_DOT2, + ACTIONS(1740), 1, sym__unquoted_pattern, - ACTIONS(1806), 5, + ACTIONS(7138), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7140), 1, + aux_sym__immediate_decimal_token5, + STATE(3676), 1, + sym_comment, + ACTIONS(1738), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [111809] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7170), 1, - anon_sym_QMARK2, - ACTIONS(7172), 1, - anon_sym_BANG, - STATE(3698), 1, - sym_comment, - STATE(4153), 1, - sym__path_suffix, - ACTIONS(1438), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [111831] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3699), 1, - sym_comment, - ACTIONS(1661), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1663), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [111849] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1952), 1, - sym__entry_separator, - ACTIONS(1954), 1, - anon_sym_RBRACK, - ACTIONS(1956), 1, - anon_sym_LPAREN2, - ACTIONS(1962), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7174), 1, - anon_sym_DOT_DOT2, - STATE(3700), 1, - sym_comment, - ACTIONS(7176), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [111875] = 9, + [111492] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2533), 1, + ACTIONS(2561), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7028), 1, + ACTIONS(7126), 1, anon_sym_def, - ACTIONS(7030), 1, + ACTIONS(7128), 1, anon_sym_use, - ACTIONS(7032), 1, + ACTIONS(7130), 1, anon_sym_extern, - ACTIONS(7034), 1, + ACTIONS(7132), 1, anon_sym_module, - ACTIONS(7178), 1, + ACTIONS(7142), 1, anon_sym_alias, - ACTIONS(7180), 1, + ACTIONS(7144), 1, anon_sym_const, - STATE(3701), 1, + STATE(3677), 1, + sym_comment, + [111520] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2702), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2704), 1, + anon_sym_COLON2, + ACTIONS(7146), 1, + sym_identifier, + ACTIONS(7148), 1, + anon_sym_DOLLAR, + STATE(3678), 1, sym_comment, - [111903] = 4, + STATE(3932), 1, + sym__variable_name, + STATE(4180), 1, + sym_val_variable, + STATE(4333), 1, + sym__assignment_pattern, + [111548] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(3702), 1, + ACTIONS(6962), 1, + anon_sym_DOT2, + STATE(2562), 1, + sym_path, + STATE(3104), 1, + sym_cell_path, + STATE(3665), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3679), 1, sym_comment, - ACTIONS(1846), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1844), 5, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [111921] = 9, + ACTIONS(1876), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [111572] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7162), 1, - anon_sym_DOT2, - ACTIONS(7182), 1, - anon_sym_RBRACK, - ACTIONS(7186), 1, - anon_sym_DOT_DOT, - ACTIONS(7188), 1, + ACTIONS(1872), 1, sym__entry_separator, - STATE(3703), 1, + ACTIONS(7109), 1, + anon_sym_DOT2, + STATE(346), 1, + sym_path, + STATE(3680), 1, sym_comment, - STATE(3921), 1, + STATE(3767), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4384), 1, - sym_path, - STATE(4624), 1, + STATE(4580), 1, sym_cell_path, - [111949] = 9, + ACTIONS(1874), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [111598] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7156), 1, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7158), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7160), 1, + ACTIONS(7154), 1, anon_sym_DASH_DASH, - STATE(1541), 1, - sym_parameter_bracks, - STATE(1666), 1, + STATE(1556), 1, sym_parameter_parens, - STATE(3696), 1, - aux_sym_decl_def_repeat1, - STATE(3704), 1, + STATE(1557), 1, + sym_parameter_bracks, + STATE(3681), 1, sym_comment, - STATE(4586), 1, + STATE(3697), 1, + aux_sym_decl_def_repeat1, + STATE(4588), 1, sym_long_flag, - [111977] = 9, + [111626] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2021), 1, + sym__unquoted_pattern, + ACTIONS(7156), 1, + anon_sym_DOT_DOT2, + STATE(3682), 1, + sym_comment, + ACTIONS(7158), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2011), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [111648] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2878), 1, + ACTIONS(2839), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7192), 1, + ACTIONS(7160), 1, anon_sym_alias, - ACTIONS(7194), 1, + ACTIONS(7162), 1, anon_sym_const, - ACTIONS(7196), 1, + ACTIONS(7164), 1, anon_sym_def, - ACTIONS(7198), 1, + ACTIONS(7166), 1, anon_sym_use, - ACTIONS(7200), 1, + ACTIONS(7168), 1, anon_sym_extern, - ACTIONS(7202), 1, + ACTIONS(7170), 1, anon_sym_module, - STATE(3705), 1, + STATE(3683), 1, sym_comment, - [112005] = 9, + [111676] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7156), 1, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7158), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7160), 1, + ACTIONS(7154), 1, anon_sym_DASH_DASH, - STATE(1606), 1, + STATE(1516), 1, sym_parameter_parens, - STATE(1607), 1, + STATE(1517), 1, sym_parameter_bracks, - STATE(3706), 1, + STATE(3684), 1, sym_comment, - STATE(3768), 1, + STATE(3746), 1, aux_sym_decl_def_repeat1, - STATE(4586), 1, + STATE(4588), 1, sym_long_flag, - [112033] = 9, + [111704] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7156), 1, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7158), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7160), 1, + ACTIONS(7154), 1, anon_sym_DASH_DASH, - STATE(1532), 1, + STATE(1558), 1, sym_parameter_parens, - STATE(1543), 1, + STATE(1559), 1, sym_parameter_bracks, - STATE(3707), 1, + STATE(3685), 1, sym_comment, - STATE(4081), 1, + STATE(3933), 1, aux_sym_decl_def_repeat1, - STATE(4586), 1, + STATE(4588), 1, sym_long_flag, - [112061] = 9, + [111732] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7156), 1, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7158), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7160), 1, + ACTIONS(7154), 1, anon_sym_DASH_DASH, - STATE(1581), 1, + STATE(1560), 1, sym_parameter_parens, - STATE(1649), 1, + STATE(1561), 1, sym_parameter_bracks, - STATE(3685), 1, - aux_sym_decl_def_repeat1, - STATE(3708), 1, + STATE(3686), 1, sym_comment, - STATE(4586), 1, + STATE(3761), 1, + aux_sym_decl_def_repeat1, + STATE(4588), 1, sym_long_flag, - [112089] = 9, + [111760] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7156), 1, - anon_sym_LBRACK, - ACTIONS(7158), 1, - anon_sym_LPAREN, - ACTIONS(7160), 1, - anon_sym_DASH_DASH, - STATE(1669), 1, - sym_parameter_parens, - STATE(1670), 1, - sym_parameter_bracks, - STATE(3709), 1, + STATE(3687), 1, sym_comment, - STATE(3712), 1, - aux_sym_decl_def_repeat1, - STATE(4586), 1, - sym_long_flag, - [112117] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1942), 1, - sym__entry_separator, - ACTIONS(1944), 1, - anon_sym_RBRACE, - ACTIONS(1946), 1, - anon_sym_LPAREN2, - ACTIONS(7204), 1, + ACTIONS(1740), 2, anon_sym_DOT_DOT2, - STATE(3710), 1, - sym_comment, - ACTIONS(7206), 2, + sym__unquoted_pattern, + ACTIONS(1738), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [112143] = 7, + [111778] = 7, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1598), 1, sym__unquoted_pattern, - ACTIONS(7208), 1, + ACTIONS(7172), 1, anon_sym_DOT, - STATE(3711), 1, + STATE(3688), 1, sym_comment, - STATE(4121), 1, + STATE(4120), 1, sym__immediate_decimal, - ACTIONS(6498), 2, + ACTIONS(6398), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6500), 2, + ACTIONS(6400), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [112167] = 9, + [111802] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3689), 1, + sym_comment, + ACTIONS(1647), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1649), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [111820] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7156), 1, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7158), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7160), 1, + ACTIONS(7154), 1, anon_sym_DASH_DASH, - STATE(1634), 1, + STATE(1518), 1, sym_parameter_parens, - STATE(1636), 1, + STATE(1519), 1, sym_parameter_bracks, - STATE(3712), 1, + STATE(3690), 1, sym_comment, - STATE(4081), 1, + STATE(3933), 1, aux_sym_decl_def_repeat1, - STATE(4586), 1, + STATE(4588), 1, sym_long_flag, - [112195] = 8, + [111848] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(890), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2001), 1, sym__entry_separator, - ACTIONS(6335), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6707), 1, + ACTIONS(2003), 1, + anon_sym_RBRACE, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + ACTIONS(7174), 1, anon_sym_DOT_DOT2, + STATE(3691), 1, + sym_comment, + ACTIONS(7176), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [111874] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(908), 1, + sym__entry_separator, + ACTIONS(6384), 1, + sym__unquoted_pattern_in_list, ACTIONS(6711), 1, + anon_sym_DOT_DOT2, + ACTIONS(6715), 1, sym_filesize_unit, - ACTIONS(6713), 1, + ACTIONS(6717), 1, sym_duration_unit, - STATE(3713), 1, + STATE(3692), 1, sym_comment, - ACTIONS(6709), 2, + ACTIONS(6713), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [112221] = 8, + [111900] = 8, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7048), 1, sym__entry_separator, - ACTIONS(7162), 1, + ACTIONS(7180), 1, anon_sym_DOT2, - STATE(3714), 1, + STATE(3693), 1, sym_comment, STATE(3921), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4384), 1, + STATE(4386), 1, sym_path, - STATE(4485), 1, + STATE(4486), 1, sym_cell_path, - ACTIONS(7186), 2, + ACTIONS(7178), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [112247] = 8, + [111926] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3694), 1, + sym_comment, + ACTIONS(1818), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1816), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [111944] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7182), 1, + anon_sym_DOT, + ACTIONS(7184), 1, + aux_sym__immediate_decimal_token5, + STATE(3695), 1, + sym_comment, + ACTIONS(1750), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1752), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [111966] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1952), 1, + ACTIONS(2011), 1, sym__entry_separator, - ACTIONS(1954), 1, + ACTIONS(2013), 1, anon_sym_RBRACE, - ACTIONS(1956), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(1962), 1, + ACTIONS(2021), 1, sym__unquoted_pattern_in_record, - ACTIONS(7210), 1, + ACTIONS(7186), 1, anon_sym_DOT_DOT2, - STATE(3715), 1, + STATE(3696), 1, sym_comment, - ACTIONS(7212), 2, + ACTIONS(7188), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [112273] = 5, + [111992] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7216), 1, + ACTIONS(7150), 1, + anon_sym_LBRACK, + ACTIONS(7152), 1, + anon_sym_LPAREN, + ACTIONS(7154), 1, + anon_sym_DASH_DASH, + STATE(1533), 1, + sym_parameter_bracks, + STATE(1676), 1, + sym_parameter_parens, + STATE(3697), 1, + sym_comment, + STATE(3933), 1, + aux_sym_decl_def_repeat1, + STATE(4588), 1, + sym_long_flag, + [112020] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1434), 1, + sym__entry_separator, + ACTIONS(7190), 1, + anon_sym_QMARK2, + ACTIONS(7192), 1, + anon_sym_BANG, + STATE(3698), 1, + sym_comment, + STATE(4378), 1, + sym__path_suffix, + ACTIONS(1432), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [112044] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3699), 1, + sym_comment, + ACTIONS(1856), 2, anon_sym_DOT_DOT2, - STATE(3716), 1, + sym__unquoted_pattern, + ACTIONS(1854), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [112062] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1498), 1, + sym__entry_separator, + ACTIONS(7194), 1, + anon_sym_DOT2, + STATE(346), 1, + sym_path, + STATE(3700), 2, + sym_comment, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1496), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON2, + [112084] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3701), 1, + sym_comment, + ACTIONS(1880), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1882), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + [112102] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1876), 1, + sym__entry_separator, + ACTIONS(7109), 1, + anon_sym_DOT2, + STATE(346), 1, + sym_path, + STATE(3702), 1, + sym_comment, + STATE(3767), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4380), 1, + sym_cell_path, + ACTIONS(1878), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [112128] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7197), 1, + aux_sym__immediate_decimal_token5, + STATE(3703), 1, + sym_comment, + ACTIONS(755), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(757), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [112148] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7201), 1, + anon_sym_DOT_DOT2, + STATE(3704), 1, sym_comment, - ACTIONS(7218), 2, + ACTIONS(7203), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7214), 4, + ACTIONS(7199), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [112293] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3932), 1, - sym__newline, - ACTIONS(7128), 1, - anon_sym_LBRACK, - ACTIONS(7220), 1, - anon_sym_RBRACK, - STATE(3717), 1, - sym_comment, - STATE(3998), 1, - aux_sym__types_body_repeat1, - STATE(4399), 1, - aux_sym__table_body_repeat1, - STATE(4432), 1, - sym_val_list, - STATE(4933), 1, - sym__table_body, - [112321] = 5, + [112168] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7216), 1, + ACTIONS(7201), 1, anon_sym_DOT_DOT2, - STATE(3718), 1, + STATE(3705), 1, sym_comment, - ACTIONS(7218), 2, + ACTIONS(7203), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7222), 4, + ACTIONS(7205), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [112341] = 9, - ACTIONS(103), 1, + [112188] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7070), 1, - anon_sym_RBRACK, - ACTIONS(7073), 1, - anon_sym_DOT_DOT, - ACTIONS(7113), 1, - anon_sym_DOT2, - ACTIONS(7224), 1, - sym__entry_separator, - STATE(367), 1, - sym_path, - STATE(3719), 1, + ACTIONS(908), 1, + anon_sym_LBRACE, + ACTIONS(1724), 1, + sym__unquoted_pattern, + ACTIONS(7207), 1, + anon_sym_DOT_DOT2, + ACTIONS(7211), 1, + sym_filesize_unit, + ACTIONS(7213), 1, + sym_duration_unit, + STATE(3706), 1, sym_comment, - STATE(3771), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4422), 1, - sym_cell_path, - [112369] = 4, + ACTIONS(7209), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [112214] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7215), 1, + anon_sym_DOT, + STATE(3707), 1, + sym_comment, + STATE(4186), 1, + sym__immediate_decimal, + ACTIONS(7217), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7219), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [112238] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3720), 1, + STATE(3708), 1, sym_comment, - ACTIONS(1800), 3, + ACTIONS(1768), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1802), 4, + ACTIONS(1770), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - [112387] = 8, + [112256] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5377), 1, + ACTIONS(5421), 1, sym__entry_separator, - ACTIONS(7113), 1, + ACTIONS(7109), 1, anon_sym_DOT2, - STATE(367), 1, + STATE(346), 1, sym_path, - STATE(3721), 1, + STATE(3709), 1, sym_comment, - STATE(3771), 1, + STATE(3767), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4637), 1, + STATE(4510), 1, sym_cell_path, - ACTIONS(5375), 2, + ACTIONS(5419), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [112413] = 8, + [112282] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7111), 1, - sym__entry_separator, - ACTIONS(7162), 1, - anon_sym_DOT2, - STATE(3722), 1, + ACTIONS(2702), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2704), 1, + anon_sym_COLON2, + ACTIONS(7146), 1, + sym_identifier, + ACTIONS(7148), 1, + anon_sym_DOLLAR, + STATE(3710), 1, sym_comment, - STATE(3921), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4384), 1, - sym_path, - STATE(4571), 1, + STATE(3932), 1, + sym__variable_name, + STATE(4180), 1, + sym_val_variable, + STATE(4335), 1, + sym__assignment_pattern, + [112310] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7052), 1, + anon_sym_DOT2, + STATE(2265), 1, sym_cell_path, - ACTIONS(7227), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [112439] = 9, + STATE(2562), 1, + sym_path, + STATE(2570), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3711), 1, + sym_comment, + ACTIONS(1446), 3, + anon_sym_EQ, + sym__newline, + anon_sym_COLON, + [112334] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2533), 1, + ACTIONS(2561), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7024), 1, + ACTIONS(7122), 1, anon_sym_alias, - ACTIONS(7026), 1, + ACTIONS(7124), 1, anon_sym_const, - ACTIONS(7028), 1, + ACTIONS(7126), 1, anon_sym_def, - ACTIONS(7030), 1, + ACTIONS(7128), 1, anon_sym_use, - ACTIONS(7032), 1, + ACTIONS(7130), 1, anon_sym_extern, - ACTIONS(7034), 1, + ACTIONS(7132), 1, anon_sym_module, - STATE(3723), 1, - sym_comment, - [112467] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3932), 1, - sym__newline, - ACTIONS(7128), 1, - anon_sym_LBRACK, - ACTIONS(7229), 1, - anon_sym_RBRACK, - STATE(3724), 1, - sym_comment, - STATE(3998), 1, - aux_sym__types_body_repeat1, - STATE(4399), 1, - aux_sym__table_body_repeat1, - STATE(4432), 1, - sym_val_list, - STATE(5057), 1, - sym__table_body, - [112495] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1434), 1, - sym__entry_separator, - ACTIONS(7162), 1, - anon_sym_DOT2, - STATE(3725), 1, + STATE(3712), 1, sym_comment, - STATE(3921), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4384), 1, - sym_path, - STATE(4525), 1, - sym_cell_path, - ACTIONS(1432), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [112521] = 9, + [112362] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7156), 1, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7158), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7160), 1, + ACTIONS(7154), 1, anon_sym_DASH_DASH, - STATE(1601), 1, + STATE(1512), 1, sym_parameter_parens, - STATE(1633), 1, + STATE(1513), 1, sym_parameter_bracks, - STATE(3707), 1, + STATE(3685), 1, aux_sym_decl_def_repeat1, - STATE(3726), 1, + STATE(3713), 1, sym_comment, - STATE(4586), 1, + STATE(4588), 1, sym_long_flag, - [112549] = 9, + [112390] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3932), 1, - sym__newline, - ACTIONS(7128), 1, - anon_sym_LBRACK, - ACTIONS(7231), 1, - anon_sym_RBRACK, - STATE(3727), 1, + ACTIONS(6962), 1, + anon_sym_DOT2, + STATE(2562), 1, + sym_path, + STATE(3121), 1, + sym_cell_path, + STATE(3665), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3714), 1, sym_comment, - STATE(3998), 1, - aux_sym__types_body_repeat1, - STATE(4399), 1, - aux_sym__table_body_repeat1, - STATE(4432), 1, - sym_val_list, - STATE(5121), 1, - sym__table_body, - [112577] = 6, + ACTIONS(1868), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [112414] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7233), 1, - anon_sym_DOT, - ACTIONS(7235), 1, - aux_sym__immediate_decimal_token5, - STATE(3728), 1, - sym_comment, - ACTIONS(1728), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1730), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [112599] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3932), 1, - sym__newline, - ACTIONS(7128), 1, - anon_sym_LBRACK, - ACTIONS(7237), 1, - anon_sym_RBRACK, - STATE(3729), 1, + ACTIONS(1876), 1, + sym__entry_separator, + ACTIONS(7180), 1, + anon_sym_DOT2, + STATE(3715), 1, sym_comment, - STATE(3998), 1, - aux_sym__types_body_repeat1, - STATE(4399), 1, - aux_sym__table_body_repeat1, - STATE(4432), 1, - sym_val_list, - STATE(5231), 1, - sym__table_body, - [112627] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3932), 1, - sym__newline, - ACTIONS(7128), 1, - anon_sym_LBRACK, - ACTIONS(7239), 1, + STATE(3921), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4380), 1, + sym_cell_path, + STATE(4386), 1, + sym_path, + ACTIONS(1878), 2, anon_sym_RBRACK, - STATE(3730), 1, - sym_comment, - STATE(3998), 1, - aux_sym__types_body_repeat1, - STATE(4399), 1, - aux_sym__table_body_repeat1, - STATE(4432), 1, - sym_val_list, - STATE(4838), 1, - sym__table_body, - [112655] = 6, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + [112440] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1962), 1, - sym__unquoted_pattern, - ACTIONS(7241), 1, - anon_sym_DOT_DOT2, - STATE(3731), 1, + ACTIONS(1844), 1, + sym__entry_separator, + ACTIONS(7109), 1, + anon_sym_DOT2, + STATE(346), 1, + sym_path, + STATE(3716), 1, sym_comment, - ACTIONS(7243), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1952), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [112677] = 6, - ACTIONS(3), 1, + STATE(3767), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4600), 1, + sym_cell_path, + ACTIONS(1846), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [112466] = 8, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1740), 1, - sym__unquoted_pattern, - ACTIONS(7245), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7247), 1, - aux_sym__immediate_decimal_token5, - STATE(3732), 1, + ACTIONS(1868), 1, + sym__entry_separator, + ACTIONS(7180), 1, + anon_sym_DOT2, + STATE(3717), 1, sym_comment, - ACTIONS(1738), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [112699] = 6, + STATE(3921), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4225), 1, + sym_cell_path, + STATE(4386), 1, + sym_path, + ACTIONS(1870), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [112492] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1496), 1, + ACTIONS(1838), 1, sym__entry_separator, - ACTIONS(7249), 1, + ACTIONS(7109), 1, anon_sym_DOT2, - STATE(367), 1, + STATE(346), 1, sym_path, - STATE(3733), 2, + STATE(3718), 1, sym_comment, + STATE(3767), 1, aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1494), 3, + STATE(4420), 1, + sym_cell_path, + ACTIONS(1840), 2, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON2, - [112721] = 9, + [112518] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3932), 1, + ACTIONS(3940), 1, sym__newline, - ACTIONS(7128), 1, + ACTIONS(7134), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(7221), 1, anon_sym_RBRACK, - STATE(3734), 1, + STATE(3719), 1, sym_comment, - STATE(3998), 1, + STATE(4083), 1, aux_sym__types_body_repeat1, - STATE(4399), 1, - aux_sym__table_body_repeat1, - STATE(4432), 1, + STATE(4471), 1, sym_val_list, - STATE(4858), 1, + STATE(4512), 1, + aux_sym__table_body_repeat1, + STATE(4928), 1, sym__table_body, - [112749] = 7, + [112546] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7075), 1, + ACTIONS(7063), 1, anon_sym_DOT2, - STATE(3735), 1, + STATE(3720), 1, sym_comment, - STATE(3812), 1, + STATE(3879), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4124), 1, + STATE(4125), 1, sym_path, - STATE(4638), 1, + STATE(4631), 1, sym_cell_path, - ACTIONS(1864), 3, + ACTIONS(1874), 3, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, - [112773] = 4, + [112570] = 8, ACTIONS(103), 1, anon_sym_POUND, - STATE(3736), 1, - sym_comment, - ACTIONS(1740), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1738), 4, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2001), 1, + sym__entry_separator, + ACTIONS(2003), 1, + anon_sym_RBRACK, + ACTIONS(2005), 1, anon_sym_LPAREN2, + ACTIONS(7223), 1, + anon_sym_DOT_DOT2, + STATE(3721), 1, + sym_comment, + ACTIONS(7225), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [112791] = 8, + [112596] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1848), 1, + ACTIONS(5409), 1, sym__entry_separator, - ACTIONS(7113), 1, + ACTIONS(7109), 1, anon_sym_DOT2, - STATE(367), 1, + STATE(346), 1, sym_path, - STATE(3737), 1, + STATE(3722), 1, sym_comment, - STATE(3771), 1, + STATE(3767), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4423), 1, + STATE(4622), 1, sym_cell_path, - ACTIONS(1850), 2, + ACTIONS(5407), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [112817] = 4, + [112622] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3738), 1, + ACTIONS(7227), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7229), 1, + aux_sym__immediate_decimal_token5, + STATE(3723), 1, sym_comment, - ACTIONS(1870), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1738), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1872), 4, + ACTIONS(1740), 3, anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - [112835] = 7, + sym__unquoted_pattern_in_list, + [112644] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1440), 1, + ACTIONS(7042), 1, sym__entry_separator, - ACTIONS(7254), 1, - anon_sym_QMARK2, - ACTIONS(7256), 1, - anon_sym_BANG, - STATE(3739), 1, + ACTIONS(7180), 1, + anon_sym_DOT2, + STATE(3724), 1, sym_comment, - STATE(4097), 1, - sym__path_suffix, - ACTIONS(1438), 3, + STATE(3921), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4386), 1, + sym_path, + STATE(4576), 1, + sym_cell_path, + ACTIONS(7231), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - anon_sym_DOT2, - [112859] = 4, + [112670] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(3740), 1, + STATE(3725), 1, sym_comment, - ACTIONS(1808), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1806), 4, - anon_sym_LPAREN2, + ACTIONS(1858), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [112877] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7258), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7260), 1, - aux_sym__immediate_decimal_token5, - STATE(3741), 1, - sym_comment, - ACTIONS(1738), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1740), 3, + ACTIONS(1860), 4, anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [112899] = 8, + anon_sym_DOT_DOT2, + [112688] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(890), 1, - anon_sym_LBRACE, - ACTIONS(1766), 1, - sym__unquoted_pattern, - ACTIONS(7262), 1, - anon_sym_DOT_DOT2, - ACTIONS(7266), 1, - sym_filesize_unit, - ACTIONS(7268), 1, - sym_duration_unit, - STATE(3742), 1, + ACTIONS(7233), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7235), 1, + aux_sym__immediate_decimal_token5, + STATE(3726), 1, sym_comment, - ACTIONS(7264), 2, + ACTIONS(1740), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1738), 3, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [112925] = 8, + [112710] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5401), 1, + ACTIONS(5383), 1, sym__entry_separator, - ACTIONS(7113), 1, + ACTIONS(7109), 1, anon_sym_DOT2, - STATE(367), 1, + STATE(346), 1, sym_path, - STATE(3743), 1, + STATE(3727), 1, sym_comment, - STATE(3771), 1, + STATE(3767), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4634), 1, + STATE(4624), 1, sym_cell_path, - ACTIONS(5399), 2, + ACTIONS(5381), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [112951] = 9, + [112736] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7178), 1, + anon_sym_DOT_DOT, + ACTIONS(7180), 1, + anon_sym_DOT2, + ACTIONS(7237), 1, + anon_sym_RBRACK, + ACTIONS(7241), 1, + sym__entry_separator, + STATE(3728), 1, + sym_comment, + STATE(3921), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4386), 1, + sym_path, + STATE(4614), 1, + sym_cell_path, + [112764] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7156), 1, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7158), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7160), 1, + ACTIONS(7154), 1, anon_sym_DASH_DASH, - STATE(1580), 1, - sym_parameter_bracks, - STATE(1676), 1, + STATE(1524), 1, sym_parameter_parens, - STATE(3744), 1, + STATE(1525), 1, + sym_parameter_bracks, + STATE(3729), 1, sym_comment, - STATE(3747), 1, + STATE(3732), 1, aux_sym_decl_def_repeat1, - STATE(4586), 1, + STATE(4588), 1, sym_long_flag, - [112979] = 9, + [112792] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3932), 1, + ACTIONS(3940), 1, sym__newline, - ACTIONS(7128), 1, + ACTIONS(7134), 1, anon_sym_LBRACK, - ACTIONS(7270), 1, + ACTIONS(7245), 1, anon_sym_RBRACK, - STATE(3745), 1, + STATE(3730), 1, sym_comment, - STATE(3998), 1, + STATE(4083), 1, aux_sym__types_body_repeat1, - STATE(4399), 1, - aux_sym__table_body_repeat1, - STATE(4432), 1, + STATE(4471), 1, sym_val_list, - STATE(5004), 1, + STATE(4512), 1, + aux_sym__table_body_repeat1, + STATE(5003), 1, sym__table_body, - [113007] = 9, + [112820] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7026), 1, + anon_sym_DOT_DOT, + ACTIONS(7060), 1, + anon_sym_RBRACK, + ACTIONS(7109), 1, + anon_sym_DOT2, + ACTIONS(7247), 1, + sym__entry_separator, + STATE(346), 1, + sym_path, + STATE(3731), 1, + sym_comment, + STATE(3767), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4420), 1, + sym_cell_path, + [112848] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7156), 1, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7158), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7160), 1, + ACTIONS(7154), 1, anon_sym_DASH_DASH, - STATE(1642), 1, + STATE(1529), 1, sym_parameter_parens, - STATE(1643), 1, + STATE(1530), 1, sym_parameter_bracks, - STATE(3746), 1, + STATE(3732), 1, sym_comment, - STATE(3750), 1, + STATE(3933), 1, aux_sym_decl_def_repeat1, - STATE(4586), 1, + STATE(4588), 1, sym_long_flag, - [113035] = 9, + [112876] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7156), 1, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7158), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7160), 1, + ACTIONS(7154), 1, anon_sym_DASH_DASH, - STATE(1644), 1, + STATE(1531), 1, sym_parameter_parens, - STATE(1645), 1, + STATE(1532), 1, sym_parameter_bracks, - STATE(3747), 1, + STATE(3733), 1, sym_comment, - STATE(4081), 1, + STATE(3737), 1, aux_sym_decl_def_repeat1, - STATE(4586), 1, + STATE(4588), 1, sym_long_flag, - [113063] = 9, + [112904] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7156), 1, + ACTIONS(3940), 1, + sym__newline, + ACTIONS(7134), 1, + anon_sym_LBRACK, + ACTIONS(7250), 1, + anon_sym_RBRACK, + STATE(3734), 1, + sym_comment, + STATE(4083), 1, + aux_sym__types_body_repeat1, + STATE(4471), 1, + sym_val_list, + STATE(4512), 1, + aux_sym__table_body_repeat1, + STATE(4986), 1, + sym__table_body, + [112932] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7158), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7160), 1, + ACTIONS(7154), 1, anon_sym_DASH_DASH, - STATE(1646), 1, + STATE(1537), 1, sym_parameter_parens, - STATE(1647), 1, + STATE(1538), 1, sym_parameter_bracks, - STATE(3748), 1, + STATE(3735), 1, sym_comment, - STATE(3752), 1, + STATE(3933), 1, aux_sym_decl_def_repeat1, - STATE(4586), 1, + STATE(4588), 1, sym_long_flag, - [113091] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3749), 1, - sym_comment, - ACTIONS(1846), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(1844), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [113109] = 9, + [112960] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7156), 1, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7158), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7160), 1, + ACTIONS(7154), 1, anon_sym_DASH_DASH, - STATE(1602), 1, + STATE(1539), 1, sym_parameter_parens, - STATE(1603), 1, + STATE(1540), 1, sym_parameter_bracks, - STATE(3750), 1, + STATE(3736), 1, sym_comment, - STATE(4081), 1, + STATE(3739), 1, aux_sym_decl_def_repeat1, - STATE(4586), 1, + STATE(4588), 1, sym_long_flag, - [113137] = 9, + [112988] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7156), 1, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7158), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7160), 1, + ACTIONS(7154), 1, anon_sym_DASH_DASH, - STATE(1610), 1, + STATE(1542), 1, sym_parameter_parens, - STATE(1611), 1, + STATE(1543), 1, sym_parameter_bracks, - STATE(3751), 1, + STATE(3737), 1, sym_comment, - STATE(3754), 1, + STATE(3933), 1, aux_sym_decl_def_repeat1, - STATE(4586), 1, + STATE(4588), 1, sym_long_flag, - [113165] = 9, + [113016] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7156), 1, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7158), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7160), 1, + ACTIONS(7154), 1, anon_sym_DASH_DASH, - STATE(1616), 1, + STATE(1545), 1, sym_parameter_parens, - STATE(1632), 1, + STATE(1546), 1, sym_parameter_bracks, - STATE(3752), 1, + STATE(3738), 1, sym_comment, - STATE(4081), 1, + STATE(3741), 1, aux_sym_decl_def_repeat1, - STATE(4586), 1, + STATE(4588), 1, sym_long_flag, - [113193] = 9, + [113044] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7156), 1, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7158), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7160), 1, + ACTIONS(7154), 1, anon_sym_DASH_DASH, - STATE(1657), 1, + STATE(1547), 1, sym_parameter_parens, - STATE(1658), 1, + STATE(1548), 1, sym_parameter_bracks, - STATE(3753), 1, + STATE(3739), 1, sym_comment, - STATE(3755), 1, + STATE(3933), 1, aux_sym_decl_def_repeat1, - STATE(4586), 1, + STATE(4588), 1, sym_long_flag, - [113221] = 9, + [113072] = 9, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2702), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2704), 1, + anon_sym_COLON2, + ACTIONS(7146), 1, + sym_identifier, + ACTIONS(7148), 1, + anon_sym_DOLLAR, + STATE(3740), 1, + sym_comment, + STATE(3932), 1, + sym__variable_name, + STATE(4180), 1, + sym_val_variable, + STATE(4332), 1, + sym__assignment_pattern, + [113100] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7156), 1, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7158), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7160), 1, + ACTIONS(7154), 1, anon_sym_DASH_DASH, - STATE(1659), 1, + STATE(1550), 1, sym_parameter_parens, - STATE(1663), 1, + STATE(1551), 1, sym_parameter_bracks, - STATE(3754), 1, + STATE(3741), 1, sym_comment, - STATE(4081), 1, + STATE(3933), 1, aux_sym_decl_def_repeat1, - STATE(4586), 1, + STATE(4588), 1, sym_long_flag, - [113249] = 9, + [113128] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7156), 1, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7158), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7160), 1, + ACTIONS(7154), 1, anon_sym_DASH_DASH, - STATE(1540), 1, + STATE(1552), 1, sym_parameter_parens, - STATE(1597), 1, + STATE(1553), 1, sym_parameter_bracks, - STATE(3755), 1, + STATE(3742), 1, sym_comment, - STATE(4081), 1, + STATE(3743), 1, aux_sym_decl_def_repeat1, - STATE(4586), 1, + STATE(4588), 1, sym_long_flag, - [113277] = 9, + [113156] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7156), 1, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7158), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7160), 1, + ACTIONS(7154), 1, anon_sym_DASH_DASH, - STATE(1524), 1, - sym_parameter_bracks, - STATE(1599), 1, + STATE(1554), 1, sym_parameter_parens, - STATE(3756), 1, + STATE(1555), 1, + sym_parameter_bracks, + STATE(3743), 1, sym_comment, - STATE(3757), 1, + STATE(3933), 1, aux_sym_decl_def_repeat1, - STATE(4586), 1, + STATE(4588), 1, sym_long_flag, - [113305] = 9, + [113184] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7156), 1, + STATE(3744), 1, + sym_comment, + ACTIONS(789), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(791), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [113202] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3745), 1, + sym_comment, + ACTIONS(1818), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1816), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [113220] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7158), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7160), 1, + ACTIONS(7154), 1, anon_sym_DASH_DASH, - STATE(1526), 1, + STATE(1673), 1, sym_parameter_parens, - STATE(1528), 1, + STATE(1674), 1, sym_parameter_bracks, - STATE(3757), 1, + STATE(3746), 1, + sym_comment, + STATE(3933), 1, + aux_sym_decl_def_repeat1, + STATE(4588), 1, + sym_long_flag, + [113248] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3940), 1, + sym__newline, + ACTIONS(7134), 1, + anon_sym_LBRACK, + ACTIONS(7252), 1, + anon_sym_RBRACK, + STATE(3747), 1, sym_comment, - STATE(4081), 1, - aux_sym_decl_def_repeat1, - STATE(4586), 1, - sym_long_flag, - [113333] = 5, + STATE(4083), 1, + aux_sym__types_body_repeat1, + STATE(4471), 1, + sym_val_list, + STATE(4512), 1, + aux_sym__table_body_repeat1, + STATE(5054), 1, + sym__table_body, + [113276] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7272), 1, + ACTIONS(7254), 1, anon_sym_DOT_DOT2, - STATE(3758), 1, + STATE(3748), 1, sym_comment, - ACTIONS(7274), 2, + ACTIONS(7256), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2098), 4, + ACTIONS(2134), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [113353] = 8, + [113296] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7150), 1, + anon_sym_LBRACK, + ACTIONS(7152), 1, + anon_sym_LPAREN, + ACTIONS(7154), 1, + anon_sym_DASH_DASH, + STATE(1509), 1, + sym_parameter_bracks, + STATE(1675), 1, + sym_parameter_parens, + STATE(3749), 1, + sym_comment, + STATE(3773), 1, + aux_sym_decl_def_repeat1, + STATE(4588), 1, + sym_long_flag, + [113324] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(793), 1, - anon_sym_RBRACE, - ACTIONS(890), 1, + ACTIONS(1446), 1, sym__entry_separator, - ACTIONS(7276), 1, - anon_sym_DOT_DOT2, - ACTIONS(7280), 1, - sym_filesize_unit, - ACTIONS(7282), 1, - sym_duration_unit, - STATE(3759), 1, + ACTIONS(7180), 1, + anon_sym_DOT2, + STATE(3750), 1, sym_comment, - ACTIONS(7278), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [113379] = 5, + STATE(3921), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4386), 1, + sym_path, + STATE(4526), 1, + sym_cell_path, + ACTIONS(1444), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [113350] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7284), 1, + ACTIONS(7258), 1, anon_sym_DOT_DOT2, - STATE(3760), 1, + STATE(3751), 1, sym_comment, - ACTIONS(7286), 2, + ACTIONS(7260), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2136), 4, + ACTIONS(2066), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [113399] = 5, + [113370] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7288), 1, + ACTIONS(7262), 1, anon_sym_DOT_DOT2, - STATE(3761), 1, + STATE(3752), 1, sym_comment, - ACTIONS(7290), 2, + ACTIONS(7264), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2144), 4, + ACTIONS(2074), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [113419] = 5, + [113390] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7292), 1, + ACTIONS(7266), 1, anon_sym_DOT_DOT2, - STATE(3762), 1, + STATE(3753), 1, sym_comment, - ACTIONS(7294), 2, + ACTIONS(7268), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 4, + ACTIONS(2082), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [113439] = 8, - ACTIONS(103), 1, + [113410] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1838), 1, - sym__entry_separator, - ACTIONS(7113), 1, - anon_sym_DOT2, - STATE(367), 1, - sym_path, - STATE(3763), 1, + ACTIONS(7091), 1, + aux_sym__immediate_decimal_token5, + STATE(3754), 1, sym_comment, - STATE(3771), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4227), 1, - sym_cell_path, - ACTIONS(1840), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [113465] = 7, + ACTIONS(739), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(741), 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [113430] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7022), 1, + ACTIONS(6962), 1, anon_sym_DOT2, - STATE(2262), 1, - sym_cell_path, - STATE(2552), 1, + STATE(2562), 1, sym_path, - STATE(2613), 1, + STATE(2871), 1, + sym_cell_path, + STATE(3665), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3764), 1, + STATE(3755), 1, sym_comment, - ACTIONS(1434), 3, - anon_sym_EQ, - sym__newline, - anon_sym_COLON, - [113489] = 5, + ACTIONS(1848), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [113454] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7040), 1, - aux_sym__immediate_decimal_token5, - STATE(3765), 1, + ACTIONS(3940), 1, + sym__newline, + ACTIONS(7134), 1, + anon_sym_LBRACK, + ACTIONS(7270), 1, + anon_sym_RBRACK, + STATE(3756), 1, sym_comment, - ACTIONS(739), 2, + STATE(4083), 1, + aux_sym__types_body_repeat1, + STATE(4471), 1, + sym_val_list, + STATE(4512), 1, + aux_sym__table_body_repeat1, + STATE(4857), 1, + sym__table_body, + [113482] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(866), 1, + anon_sym_RBRACE, + ACTIONS(908), 1, + sym__entry_separator, + ACTIONS(7272), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(741), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(7276), 1, sym_filesize_unit, + ACTIONS(7278), 1, sym_duration_unit, - [113509] = 9, - ACTIONS(103), 1, + STATE(3757), 1, + sym_comment, + ACTIONS(7274), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [113508] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2662), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2664), 1, - anon_sym_COLON2, + ACTIONS(3940), 1, + sym__newline, ACTIONS(7134), 1, - sym_identifier, - ACTIONS(7136), 1, - anon_sym_DOLLAR, - STATE(3766), 1, + anon_sym_LBRACK, + ACTIONS(7280), 1, + anon_sym_RBRACK, + STATE(3758), 1, sym_comment, - STATE(4070), 1, - sym__variable_name, - STATE(4191), 1, - sym_val_variable, - STATE(4325), 1, - sym__assignment_pattern, - [113537] = 9, + STATE(4083), 1, + aux_sym__types_body_repeat1, + STATE(4471), 1, + sym_val_list, + STATE(4512), 1, + aux_sym__table_body_repeat1, + STATE(4998), 1, + sym__table_body, + [113536] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3759), 1, + sym_comment, + ACTIONS(1740), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(1738), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [113554] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3932), 1, + ACTIONS(3940), 1, sym__newline, - ACTIONS(7128), 1, + ACTIONS(7134), 1, anon_sym_LBRACK, - ACTIONS(7296), 1, + ACTIONS(7282), 1, anon_sym_RBRACK, - STATE(3767), 1, + STATE(3760), 1, sym_comment, - STATE(3998), 1, + STATE(4083), 1, aux_sym__types_body_repeat1, - STATE(4399), 1, - aux_sym__table_body_repeat1, - STATE(4432), 1, + STATE(4471), 1, sym_val_list, - STATE(5098), 1, + STATE(4512), 1, + aux_sym__table_body_repeat1, + STATE(5115), 1, sym__table_body, - [113565] = 9, + [113582] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7156), 1, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7158), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7160), 1, + ACTIONS(7154), 1, anon_sym_DASH_DASH, - STATE(1604), 1, + STATE(1544), 1, sym_parameter_parens, - STATE(1605), 1, + STATE(1549), 1, sym_parameter_bracks, - STATE(3768), 1, + STATE(3761), 1, sym_comment, - STATE(4081), 1, + STATE(3933), 1, aux_sym_decl_def_repeat1, - STATE(4586), 1, + STATE(4588), 1, sym_long_flag, - [113593] = 9, + [113610] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3932), 1, + ACTIONS(7150), 1, + anon_sym_LBRACK, + ACTIONS(7152), 1, + anon_sym_LPAREN, + ACTIONS(7154), 1, + anon_sym_DASH_DASH, + STATE(1534), 1, + sym_parameter_parens, + STATE(1535), 1, + sym_parameter_bracks, + STATE(3690), 1, + aux_sym_decl_def_repeat1, + STATE(3762), 1, + sym_comment, + STATE(4588), 1, + sym_long_flag, + [113638] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7284), 1, + anon_sym_QMARK2, + ACTIONS(7286), 1, + anon_sym_BANG, + STATE(3763), 1, + sym_comment, + STATE(4153), 1, + sym__path_suffix, + ACTIONS(1432), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [113660] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3940), 1, sym__newline, - ACTIONS(7128), 1, + ACTIONS(7134), 1, anon_sym_LBRACK, - ACTIONS(7298), 1, + ACTIONS(7288), 1, anon_sym_RBRACK, - STATE(3769), 1, + STATE(3764), 1, sym_comment, - STATE(3998), 1, + STATE(4083), 1, aux_sym__types_body_repeat1, - STATE(4399), 1, - aux_sym__table_body_repeat1, - STATE(4432), 1, + STATE(4471), 1, sym_val_list, - STATE(5108), 1, + STATE(4512), 1, + aux_sym__table_body_repeat1, + STATE(5097), 1, sym__table_body, - [113621] = 7, + [113688] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7075), 1, + ACTIONS(7063), 1, anon_sym_DOT2, - STATE(3770), 1, + STATE(3765), 1, sym_comment, - STATE(3812), 1, + STATE(3879), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4124), 1, + STATE(4125), 1, sym_path, - STATE(4569), 1, + STATE(4475), 1, sym_cell_path, - ACTIONS(1856), 3, + ACTIONS(1840), 3, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, - [113645] = 7, + [113712] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3940), 1, + sym__newline, + ACTIONS(7134), 1, + anon_sym_LBRACK, + ACTIONS(7290), 1, + anon_sym_RBRACK, + STATE(3766), 1, + sym_comment, + STATE(4083), 1, + aux_sym__types_body_repeat1, + STATE(4471), 1, + sym_val_list, + STATE(4512), 1, + aux_sym__table_body_repeat1, + STATE(5107), 1, + sym__table_body, + [113740] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1492), 1, + ACTIONS(1494), 1, sym__entry_separator, - ACTIONS(7113), 1, + ACTIONS(7109), 1, anon_sym_DOT2, - STATE(367), 1, + STATE(346), 1, sym_path, - STATE(3733), 1, + STATE(3700), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3771), 1, + STATE(3767), 1, sym_comment, - ACTIONS(1490), 3, + ACTIONS(1492), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_COLON2, - [113669] = 6, + [113764] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7300), 1, + ACTIONS(1848), 1, + sym__entry_separator, + ACTIONS(7109), 1, + anon_sym_DOT2, + STATE(346), 1, + sym_path, + STATE(3767), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3768), 1, + sym_comment, + STATE(4568), 1, + sym_cell_path, + ACTIONS(1851), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [113790] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7292), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7302), 1, + ACTIONS(7294), 1, aux_sym__immediate_decimal_token5, - STATE(3772), 1, + STATE(3769), 1, sym_comment, ACTIONS(1738), 2, sym__space, @@ -233186,4200 +233305,4270 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, sym__unquoted_pattern, - [113691] = 8, - ACTIONS(103), 1, + [113812] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7296), 1, + anon_sym_DOT, + ACTIONS(7298), 1, + aux_sym__immediate_decimal_token5, + STATE(3770), 1, + sym_comment, + ACTIONS(1752), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1750), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [113834] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1886), 1, - sym__entry_separator, - ACTIONS(7113), 1, - anon_sym_DOT2, - STATE(367), 1, - sym_path, STATE(3771), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3773), 1, sym_comment, - STATE(4575), 1, - sym_cell_path, - ACTIONS(1889), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [113717] = 6, + ACTIONS(755), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(757), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [113852] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7304), 1, - anon_sym_DOT, - ACTIONS(7306), 1, - aux_sym__immediate_decimal_token5, - STATE(3774), 1, + STATE(3772), 1, sym_comment, - ACTIONS(1730), 2, + ACTIONS(747), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern, - ACTIONS(1728), 3, + ACTIONS(749), 5, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [113739] = 9, + sym_filesize_unit, + sym_duration_unit, + [113870] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7156), 1, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7158), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7160), 1, + ACTIONS(7154), 1, anon_sym_DASH_DASH, - STATE(1608), 1, + STATE(1520), 1, sym_parameter_parens, - STATE(1609), 1, + STATE(1521), 1, sym_parameter_bracks, - STATE(3775), 1, + STATE(3773), 1, sym_comment, - STATE(3781), 1, + STATE(3933), 1, aux_sym_decl_def_repeat1, - STATE(4586), 1, + STATE(4588), 1, sym_long_flag, - [113767] = 4, - ACTIONS(3), 1, + [113898] = 8, + ACTIONS(103), 1, anon_sym_POUND, - STATE(3776), 1, + ACTIONS(2011), 1, + sym__entry_separator, + ACTIONS(2013), 1, + anon_sym_RBRACK, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7300), 1, + anon_sym_DOT_DOT2, + STATE(3774), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(7302), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [113924] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(3775), 1, + sym_comment, + ACTIONS(1856), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(749), 5, - anon_sym_LBRACE, + sym__unquoted_pattern_in_record, + ACTIONS(1854), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [113785] = 6, + sym__entry_separator, + [113942] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1752), 1, + sym__unquoted_pattern, + ACTIONS(7304), 1, + anon_sym_DOT, + ACTIONS(7306), 1, + aux_sym__immediate_decimal_token5, + STATE(3776), 1, + sym_comment, + ACTIONS(1750), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [113964] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1868), 1, + sym__entry_separator, + ACTIONS(7109), 1, + anon_sym_DOT2, + STATE(346), 1, + sym_path, + STATE(3767), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3777), 1, + sym_comment, + STATE(4225), 1, + sym_cell_path, + ACTIONS(1870), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [113990] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1598), 1, sym__unquoted_pattern, ACTIONS(7308), 1, anon_sym_DOT_DOT2, - STATE(3777), 1, + STATE(3778), 1, sym_comment, ACTIONS(7310), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1942), 3, + ACTIONS(2001), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [113807] = 9, + [114012] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2533), 1, + ACTIONS(2561), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7028), 1, + ACTIONS(7126), 1, anon_sym_def, - ACTIONS(7030), 1, + ACTIONS(7128), 1, anon_sym_use, - ACTIONS(7032), 1, + ACTIONS(7130), 1, anon_sym_extern, - ACTIONS(7034), 1, + ACTIONS(7132), 1, anon_sym_module, ACTIONS(7312), 1, anon_sym_alias, ACTIONS(7314), 1, anon_sym_const, - STATE(3778), 1, + STATE(3779), 1, sym_comment, - [113835] = 9, + [114040] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2533), 1, + ACTIONS(2561), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7028), 1, + ACTIONS(7126), 1, anon_sym_def, - ACTIONS(7030), 1, + ACTIONS(7128), 1, anon_sym_use, - ACTIONS(7032), 1, + ACTIONS(7130), 1, anon_sym_extern, - ACTIONS(7034), 1, + ACTIONS(7132), 1, anon_sym_module, ACTIONS(7316), 1, anon_sym_alias, ACTIONS(7318), 1, anon_sym_const, - STATE(3779), 1, + STATE(3780), 1, + sym_comment, + [114068] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3940), 1, + sym__newline, + ACTIONS(7134), 1, + anon_sym_LBRACK, + ACTIONS(7320), 1, + anon_sym_RBRACK, + STATE(3781), 1, sym_comment, - [113863] = 9, + STATE(4083), 1, + aux_sym__types_body_repeat1, + STATE(4471), 1, + sym_val_list, + STATE(4512), 1, + aux_sym__table_body_repeat1, + STATE(5229), 1, + sym__table_body, + [114096] = 9, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2533), 1, + ACTIONS(2561), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7028), 1, + ACTIONS(7126), 1, anon_sym_def, - ACTIONS(7030), 1, + ACTIONS(7128), 1, anon_sym_use, - ACTIONS(7032), 1, + ACTIONS(7130), 1, anon_sym_extern, - ACTIONS(7034), 1, + ACTIONS(7132), 1, anon_sym_module, - ACTIONS(7320), 1, - anon_sym_alias, ACTIONS(7322), 1, + anon_sym_alias, + ACTIONS(7324), 1, anon_sym_const, - STATE(3780), 1, + STATE(3782), 1, + sym_comment, + [114124] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7326), 1, + anon_sym_DOT, + ACTIONS(7328), 1, + aux_sym__immediate_decimal_token5, + STATE(3783), 1, sym_comment, - [113891] = 9, + ACTIONS(1750), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1752), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [114146] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7156), 1, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7158), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - ACTIONS(7160), 1, + ACTIONS(7154), 1, anon_sym_DASH_DASH, - STATE(1534), 1, + STATE(1527), 1, sym_parameter_parens, - STATE(1536), 1, + STATE(1528), 1, sym_parameter_bracks, - STATE(3781), 1, - sym_comment, - STATE(4081), 1, + STATE(3735), 1, aux_sym_decl_def_repeat1, - STATE(4586), 1, + STATE(3784), 1, + sym_comment, + STATE(4588), 1, sym_long_flag, - [113919] = 7, + [114174] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7146), 1, + sym_identifier, + ACTIONS(7148), 1, + anon_sym_DOLLAR, + STATE(3785), 1, + sym_comment, + STATE(4005), 1, + sym__variable_name, + STATE(4180), 1, + sym_val_variable, + STATE(4581), 1, + sym__assignment_pattern_parenthesized, + [114199] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(3786), 1, + sym_comment, + STATE(4210), 1, + sym_block, + ACTIONS(7330), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [114218] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7324), 1, - anon_sym_LPAREN, ACTIONS(7328), 1, - anon_sym_DQUOTE2, - STATE(3782), 1, + aux_sym__immediate_decimal_token5, + STATE(3787), 1, sym_comment, - STATE(3833), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4383), 1, - sym_expr_interpolated, - ACTIONS(7326), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [113942] = 8, + ACTIONS(1750), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1752), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [114237] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3653), 1, + ACTIONS(2134), 1, + sym__space, + ACTIONS(7332), 1, + anon_sym_DOT_DOT2, + STATE(3788), 1, + sym_comment, + ACTIONS(2136), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7334), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [114258] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7146), 1, + sym_identifier, + ACTIONS(7148), 1, + anon_sym_DOLLAR, + STATE(3789), 1, + sym_comment, + STATE(4079), 1, + sym__variable_name, + STATE(4180), 1, + sym_val_variable, + STATE(4472), 1, + sym__assignment_pattern, + [114283] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7199), 1, sym__entry_separator, - ACTIONS(7113), 1, - anon_sym_DOT2, - ACTIONS(7330), 1, - anon_sym_RBRACE, - STATE(367), 1, - sym_path, - STATE(3771), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3783), 1, + ACTIONS(7338), 1, + anon_sym_DOT_DOT2, + STATE(3790), 1, sym_comment, - STATE(4575), 1, - sym_cell_path, - [113967] = 7, + ACTIONS(7336), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7340), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [114304] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7205), 1, + sym__entry_separator, + ACTIONS(7338), 1, + anon_sym_DOT_DOT2, + STATE(3791), 1, + sym_comment, + ACTIONS(7340), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7342), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [114325] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7146), 1, + sym_identifier, + ACTIONS(7148), 1, + anon_sym_DOLLAR, + STATE(3792), 1, + sym_comment, + STATE(4079), 1, + sym__variable_name, + STATE(4180), 1, + sym_val_variable, + STATE(4423), 1, + sym__assignment_pattern, + [114350] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7334), 1, + ACTIONS(7344), 1, anon_sym_LBRACE, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(3267), 1, + STATE(3318), 1, sym__blosure, - STATE(3784), 1, + STATE(3793), 1, sym_comment, - STATE(3205), 2, + STATE(3224), 2, sym_block, sym_val_closure, - [113990] = 8, + [114373] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4119), 1, + anon_sym_DOT_DOT2, + ACTIONS(7348), 1, + sym__unquoted_pattern, + STATE(3794), 1, + sym_comment, + ACTIONS(4121), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7346), 2, + sym_filesize_unit, + sym_duration_unit, + [114394] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5438), 1, - anon_sym_RBRACK, - ACTIONS(5440), 1, - sym__entry_separator, - ACTIONS(7113), 1, - anon_sym_DOT2, - STATE(367), 1, - sym_path, - STATE(3771), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3785), 1, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7146), 1, + sym_identifier, + ACTIONS(7148), 1, + anon_sym_DOLLAR, + STATE(3795), 1, sym_comment, - STATE(4698), 1, - sym_cell_path, - [114015] = 6, + STATE(3956), 1, + sym__variable_name, + STATE(4180), 1, + sym_val_variable, + STATE(4455), 1, + sym__assignment_pattern_parenthesized, + [114419] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7336), 1, - anon_sym_DOT, - ACTIONS(7338), 1, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(3796), 1, + sym_comment, + STATE(4209), 1, + sym_block, + ACTIONS(7330), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [114438] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7146), 1, + sym_identifier, + ACTIONS(7148), 1, + anon_sym_DOLLAR, + STATE(3797), 1, + sym_comment, + STATE(3956), 1, + sym__variable_name, + STATE(4180), 1, + sym_val_variable, + STATE(4581), 1, + sym__assignment_pattern_parenthesized, + [114463] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7352), 1, + anon_sym_AT, + STATE(4830), 1, + sym_attribute, + STATE(3798), 2, + sym_comment, + aux_sym_attribute_list_repeat1, + ACTIONS(7350), 3, + anon_sym_export, + anon_sym_def, + anon_sym_extern, + [114482] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(447), 1, + anon_sym_RPAREN, + ACTIONS(7355), 1, + sym__newline, + ACTIONS(7357), 1, + anon_sym_SEMI, + STATE(1358), 1, + aux_sym__parenthesized_body_repeat1, + STATE(3799), 1, + sym_comment, + STATE(4252), 1, + aux_sym__block_body_repeat1, + STATE(4467), 1, + aux_sym__repeat_newline, + [114507] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7359), 1, aux_sym__immediate_decimal_token5, - STATE(3786), 1, + STATE(3800), 1, + sym_comment, + ACTIONS(1818), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1816), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [114526] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7361), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7363), 1, + aux_sym__immediate_decimal_token5, + STATE(3801), 1, sym_comment, - ACTIONS(1728), 2, + ACTIONS(1738), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1730), 2, + ACTIONS(1740), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - [114036] = 7, + [114547] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(57), 1, + anon_sym_AT, + STATE(3798), 1, + aux_sym_attribute_list_repeat1, + STATE(3802), 1, + sym_comment, + STATE(4830), 1, + sym_attribute, + ACTIONS(7365), 3, + anon_sym_export, + anon_sym_def, + anon_sym_extern, + [114568] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7355), 1, + sym__newline, + ACTIONS(7357), 1, + anon_sym_SEMI, + ACTIONS(7367), 1, + anon_sym_RPAREN, + STATE(1358), 1, + aux_sym__parenthesized_body_repeat1, + STATE(3803), 1, + sym_comment, + STATE(4114), 1, + aux_sym__block_body_repeat1, + STATE(4467), 1, + aux_sym__repeat_newline, + [114593] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_record, + STATE(3804), 1, + sym_comment, + STATE(4913), 1, + sym__immediate_decimal, + ACTIONS(7369), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7371), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [114614] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7334), 1, + ACTIONS(7344), 1, anon_sym_LBRACE, - STATE(3267), 1, + STATE(3318), 1, sym__blosure, - STATE(3787), 1, + STATE(3805), 1, sym_comment, - STATE(3848), 1, + STATE(3876), 1, aux_sym__repeat_newline, - STATE(3205), 2, + STATE(3224), 2, sym_block, sym_val_closure, - [114059] = 6, + [114637] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2152), 1, - sym__entry_separator, - ACTIONS(7340), 1, - anon_sym_DOT_DOT2, - STATE(3788), 1, + ACTIONS(7373), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7375), 1, + aux_sym__immediate_decimal_token5, + STATE(3806), 1, sym_comment, - ACTIONS(2154), 2, - anon_sym_RBRACK, + ACTIONS(1738), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1740), 2, anon_sym_RBRACE, - ACTIONS(7342), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [114080] = 7, + sym__unquoted_pattern_in_record, + [114658] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern, + STATE(3807), 1, + sym_comment, + STATE(5009), 1, + sym__immediate_decimal, + ACTIONS(6548), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6550), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [114679] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7324), 1, + ACTIONS(7377), 1, anon_sym_LPAREN, - ACTIONS(7344), 1, + ACTIONS(7381), 1, anon_sym_DQUOTE2, - STATE(3789), 1, + STATE(3808), 1, sym_comment, - STATE(3798), 1, + STATE(3848), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4383), 1, + STATE(4381), 1, sym_expr_interpolated, - ACTIONS(7326), 2, + ACTIONS(7379), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114103] = 6, + [114702] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1730), 1, - sym__unquoted_pattern, - ACTIONS(7346), 1, - anon_sym_DOT, - ACTIONS(7348), 1, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(3809), 1, + sym_comment, + STATE(4274), 1, + sym_block, + ACTIONS(7383), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [114721] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(3810), 1, + sym_comment, + STATE(4275), 1, + sym_block, + ACTIONS(7383), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [114740] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2702), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2704), 1, + anon_sym_COLON2, + ACTIONS(5317), 1, + anon_sym_DOLLAR, + ACTIONS(7146), 1, + sym_identifier, + STATE(3811), 1, + sym_comment, + STATE(4180), 1, + sym_val_variable, + STATE(5223), 1, + sym__variable_name, + [114765] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6691), 1, aux_sym__immediate_decimal_token5, - STATE(3790), 1, + ACTIONS(7385), 1, + anon_sym_DOT, + STATE(3812), 1, sym_comment, - ACTIONS(1728), 3, + ACTIONS(1750), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [114124] = 7, + [114784] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7344), 1, + anon_sym_LBRACE, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(3352), 1, + sym__blosure, + STATE(3813), 1, + sym_comment, + STATE(3224), 2, + sym_block, + sym_val_closure, + [114807] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5191), 1, - aux_sym_unquoted_token2, - ACTIONS(6498), 1, + ACTIONS(2066), 1, + sym__space, + ACTIONS(7387), 1, + anon_sym_DOT_DOT2, + STATE(3814), 1, + sym_comment, + ACTIONS(2068), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7389), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [114828] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2074), 1, + sym__space, + ACTIONS(7391), 1, + anon_sym_DOT_DOT2, + STATE(3815), 1, + sym_comment, + ACTIONS(2076), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7393), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [114849] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2082), 1, + sym__space, + ACTIONS(7395), 1, + anon_sym_DOT_DOT2, + STATE(3816), 1, + sym_comment, + ACTIONS(2084), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7397), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [114870] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7399), 1, + aux_sym__immediate_decimal_token5, + STATE(3817), 1, + sym_comment, + ACTIONS(1816), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1818), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [114889] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7377), 1, + anon_sym_LPAREN, + ACTIONS(7401), 1, + anon_sym_DQUOTE2, + STATE(3818), 1, + sym_comment, + STATE(3823), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4381), 1, + sym_expr_interpolated, + ACTIONS(7379), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [114912] = 8, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7109), 1, + anon_sym_DOT2, + ACTIONS(7403), 1, + anon_sym_RBRACE, + ACTIONS(7405), 1, + sym__entry_separator, + STATE(346), 1, + sym_path, + STATE(3767), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3819), 1, + sym_comment, + STATE(4666), 1, + sym_cell_path, + [114937] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6398), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6647), 1, + ACTIONS(6641), 1, aux_sym__immediate_decimal_token2, - STATE(3791), 1, + ACTIONS(6980), 1, + aux_sym_unquoted_token2, + STATE(3820), 1, sym_comment, STATE(4203), 1, sym__immediate_decimal, - ACTIONS(6649), 2, + ACTIONS(6643), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114147] = 7, + [114960] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5191), 1, - aux_sym_unquoted_token2, - ACTIONS(6542), 1, + ACTIONS(6548), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6651), 1, + ACTIONS(6645), 1, aux_sym__immediate_decimal_token2, - STATE(3792), 1, + ACTIONS(6980), 1, + aux_sym_unquoted_token2, + STATE(3821), 1, sym_comment, - STATE(4867), 1, + STATE(4840), 1, sym__immediate_decimal, - ACTIONS(6653), 2, + ACTIONS(6647), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114170] = 7, + [114983] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(7334), 1, - anon_sym_LBRACE, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(3325), 1, - sym__blosure, - STATE(3793), 1, + ACTIONS(7407), 1, + sym_long_flag_identifier, + ACTIONS(7409), 1, + anon_sym_EQ2, + STATE(3822), 1, sym_comment, - STATE(3205), 2, - sym_block, - sym_val_closure, - [114193] = 6, + STATE(4584), 1, + sym__flag_equals_value, + ACTIONS(4282), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [115004] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7350), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7352), 1, - aux_sym__immediate_decimal_token5, - STATE(3794), 1, - sym_comment, - ACTIONS(1738), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1740), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [114214] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(7334), 1, - anon_sym_LBRACE, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(3284), 1, - sym__blosure, - STATE(3795), 1, + ACTIONS(7377), 1, + anon_sym_LPAREN, + ACTIONS(7411), 1, + anon_sym_DQUOTE2, + STATE(3823), 1, sym_comment, - STATE(3205), 2, - sym_block, - sym_val_closure, - [114237] = 8, + STATE(3925), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4381), 1, + sym_expr_interpolated, + ACTIONS(7379), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [115027] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2533), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7134), 1, - sym_identifier, - ACTIONS(7136), 1, - anon_sym_DOLLAR, - STATE(3796), 1, + ACTIONS(3623), 1, + sym__entry_separator, + ACTIONS(7109), 1, + anon_sym_DOT2, + ACTIONS(7413), 1, + anon_sym_RBRACE, + STATE(346), 1, + sym_path, + STATE(3767), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3824), 1, sym_comment, - STATE(4070), 1, - sym__variable_name, - STATE(4191), 1, - sym_val_variable, - STATE(4325), 1, - sym__assignment_pattern, - [114262] = 3, + STATE(4568), 1, + sym_cell_path, + [115052] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3797), 1, + ACTIONS(7417), 1, + anon_sym_DOT, + ACTIONS(7419), 1, + aux_sym__immediate_decimal_token5, + STATE(3825), 1, sym_comment, - ACTIONS(1505), 6, - anon_sym_RBRACK, + ACTIONS(1750), 2, + anon_sym_LPAREN2, sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [114277] = 7, - ACTIONS(103), 1, + ACTIONS(1752), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [115073] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7324), 1, - anon_sym_LPAREN, - ACTIONS(7354), 1, - anon_sym_DQUOTE2, - STATE(3798), 1, + ACTIONS(7421), 1, + anon_sym_LT, + STATE(3826), 1, sym_comment, - STATE(3815), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4383), 1, - sym_expr_interpolated, - ACTIONS(7326), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [114300] = 8, - ACTIONS(103), 1, + ACTIONS(4944), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [115090] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2533), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7134), 1, - sym_identifier, - ACTIONS(7136), 1, - anon_sym_DOLLAR, - STATE(3799), 1, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(3827), 1, sym_comment, - STATE(4070), 1, - sym__variable_name, - STATE(4191), 1, - sym_val_variable, - STATE(4327), 1, - sym__assignment_pattern, - [114325] = 8, + STATE(4106), 1, + sym_block, + ACTIONS(7423), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [115109] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2533), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7134), 1, - sym_identifier, - ACTIONS(7136), 1, - anon_sym_DOLLAR, - STATE(3800), 1, + ACTIONS(1706), 1, + sym__entry_separator, + ACTIONS(7425), 1, + anon_sym_DOT_DOT2, + STATE(3828), 1, sym_comment, - STATE(4070), 1, - sym__variable_name, - STATE(4191), 1, - sym_val_variable, - STATE(4329), 1, - sym__assignment_pattern, - [114350] = 7, + ACTIONS(1604), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(7427), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [115130] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7334), 1, + ACTIONS(7344), 1, anon_sym_LBRACE, - STATE(3284), 1, + STATE(3306), 1, sym__blosure, - STATE(3801), 1, + STATE(3829), 1, sym_comment, - STATE(3857), 1, + STATE(3910), 1, aux_sym__repeat_newline, - STATE(3205), 2, + STATE(3224), 2, sym_block, sym_val_closure, - [114373] = 8, + [115153] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2662), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2664), 1, - anon_sym_COLON2, - ACTIONS(5292), 1, - anon_sym_DOLLAR, - ACTIONS(7134), 1, - sym_identifier, - STATE(3802), 1, + ACTIONS(5393), 1, + anon_sym_RBRACK, + ACTIONS(5395), 1, + sym__entry_separator, + ACTIONS(7109), 1, + anon_sym_DOT2, + STATE(346), 1, + sym_path, + STATE(3767), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3830), 1, sym_comment, - STATE(4191), 1, - sym_val_variable, - STATE(5225), 1, - sym__variable_name, - [114398] = 7, + STATE(4760), 1, + sym_cell_path, + [115178] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7324), 1, + ACTIONS(7377), 1, anon_sym_LPAREN, - ACTIONS(7356), 1, + ACTIONS(7429), 1, anon_sym_DQUOTE2, - STATE(3803), 1, + STATE(3831), 1, sym_comment, - STATE(3809), 1, + STATE(3836), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4383), 1, + STATE(4381), 1, sym_expr_interpolated, - ACTIONS(7326), 2, + ACTIONS(7379), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114421] = 7, + [115201] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5150), 1, + STATE(3832), 1, + sym_comment, + ACTIONS(1505), 6, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [115216] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5213), 1, aux_sym_unquoted_token2, - ACTIONS(6498), 1, + ACTIONS(6398), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6647), 1, + ACTIONS(6641), 1, aux_sym__immediate_decimal_token2, - STATE(3804), 1, + STATE(3833), 1, sym_comment, STATE(4203), 1, sym__immediate_decimal, - ACTIONS(6649), 2, + ACTIONS(6643), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114444] = 7, + [115239] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5150), 1, + ACTIONS(5213), 1, aux_sym_unquoted_token2, - ACTIONS(6542), 1, + ACTIONS(6548), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6651), 1, + ACTIONS(6645), 1, aux_sym__immediate_decimal_token2, - STATE(3805), 1, + STATE(3834), 1, sym_comment, - STATE(4867), 1, + STATE(4840), 1, sym__immediate_decimal, - ACTIONS(6653), 2, + ACTIONS(6647), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114467] = 7, + [115262] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(7334), 1, - anon_sym_LBRACE, - STATE(3372), 1, - sym__blosure, - STATE(3806), 1, + ACTIONS(1740), 1, + sym__unquoted_pattern, + ACTIONS(7431), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7433), 1, + aux_sym__immediate_decimal_token5, + STATE(3835), 1, sym_comment, - STATE(3887), 1, - aux_sym__repeat_newline, - STATE(3205), 2, - sym_block, - sym_val_closure, - [114490] = 6, + ACTIONS(1738), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [115283] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7358), 1, - anon_sym_DOT, - ACTIONS(7360), 1, + ACTIONS(7377), 1, + anon_sym_LPAREN, + ACTIONS(7435), 1, + anon_sym_DQUOTE2, + STATE(3836), 1, + sym_comment, + STATE(3925), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4381), 1, + sym_expr_interpolated, + ACTIONS(7379), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [115306] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7298), 1, aux_sym__immediate_decimal_token5, - STATE(3807), 1, + STATE(3837), 1, sym_comment, - ACTIONS(1728), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1730), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [114511] = 5, + ACTIONS(1752), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1750), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [115325] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1730), 1, + ACTIONS(1752), 1, sym__unquoted_pattern, - ACTIONS(7154), 1, + ACTIONS(7306), 1, aux_sym__immediate_decimal_token5, - STATE(3808), 1, + STATE(3838), 1, sym_comment, - ACTIONS(1728), 4, + ACTIONS(1750), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [115344] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7437), 1, anon_sym_if, + ACTIONS(7439), 1, sym__newline, + ACTIONS(7441), 1, anon_sym_PIPE, + ACTIONS(7443), 1, anon_sym_EQ_GT, - [114530] = 7, + STATE(3839), 1, + sym_comment, + STATE(4326), 1, + aux_sym_match_pattern_repeat1, + STATE(5018), 1, + sym_match_guard, + [115369] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7324), 1, + ACTIONS(7377), 1, anon_sym_LPAREN, - ACTIONS(7362), 1, + ACTIONS(7445), 1, anon_sym_DQUOTE2, - STATE(3809), 1, + STATE(3840), 1, sym_comment, - STATE(3815), 1, + STATE(3847), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4383), 1, + STATE(4381), 1, sym_expr_interpolated, - ACTIONS(7326), 2, + ACTIONS(7379), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114553] = 3, + [115392] = 3, ACTIONS(103), 1, anon_sym_POUND, - STATE(3810), 1, + STATE(3841), 1, sym_comment, - ACTIONS(1509), 6, + ACTIONS(1458), 6, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [114568] = 3, + [115407] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(3811), 1, + ACTIONS(5172), 1, + aux_sym_unquoted_token2, + ACTIONS(6398), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6641), 1, + aux_sym__immediate_decimal_token2, + STATE(3842), 1, sym_comment, - ACTIONS(1458), 6, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [114583] = 6, + STATE(4203), 1, + sym__immediate_decimal, + ACTIONS(6643), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [115430] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7075), 1, - anon_sym_DOT2, - STATE(3812), 1, + ACTIONS(5172), 1, + aux_sym_unquoted_token2, + ACTIONS(6548), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6645), 1, + aux_sym__immediate_decimal_token2, + STATE(3843), 1, sym_comment, - STATE(3872), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4124), 1, - sym_path, - ACTIONS(1490), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [114604] = 4, + STATE(4840), 1, + sym__immediate_decimal, + ACTIONS(6647), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [115453] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7364), 1, - anon_sym_LT, - STATE(3813), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7344), 1, + anon_sym_LBRACE, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(3329), 1, + sym__blosure, + STATE(3844), 1, sym_comment, - ACTIONS(4972), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, + STATE(3224), 2, + sym_block, + sym_val_closure, + [115476] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7344), 1, anon_sym_LBRACE, - [114621] = 7, + STATE(3329), 1, + sym__blosure, + STATE(3845), 1, + sym_comment, + STATE(3914), 1, + aux_sym__repeat_newline, + STATE(3224), 2, + sym_block, + sym_val_closure, + [115499] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7324), 1, + STATE(3846), 1, + sym_comment, + ACTIONS(1509), 6, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [115514] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7377), 1, anon_sym_LPAREN, - ACTIONS(7366), 1, + ACTIONS(7447), 1, anon_sym_DQUOTE2, - STATE(3814), 1, + STATE(3847), 1, sym_comment, - STATE(3817), 1, + STATE(3925), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4383), 1, + STATE(4381), 1, sym_expr_interpolated, - ACTIONS(7326), 2, + ACTIONS(7379), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114644] = 6, + [115537] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7368), 1, + ACTIONS(7377), 1, anon_sym_LPAREN, - ACTIONS(7374), 1, + ACTIONS(7449), 1, anon_sym_DQUOTE2, - STATE(4383), 1, + STATE(3848), 1, + sym_comment, + STATE(3925), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4381), 1, sym_expr_interpolated, - ACTIONS(7371), 2, + ACTIONS(7379), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - STATE(3815), 2, - sym_comment, - aux_sym__inter_double_quotes_repeat1, - [114665] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4320), 1, - sym__space, - ACTIONS(7376), 1, - sym_long_flag_identifier, - ACTIONS(7378), 1, - anon_sym_EQ2, - STATE(3045), 1, - sym__flag_equals_value, - STATE(3816), 1, - sym_comment, - ACTIONS(4318), 2, - sym__newline, - anon_sym_SEMI, - [114688] = 7, + [115560] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7324), 1, + ACTIONS(7377), 1, anon_sym_LPAREN, - ACTIONS(7380), 1, + ACTIONS(7451), 1, anon_sym_DQUOTE2, - STATE(3815), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3817), 1, + STATE(3849), 1, sym_comment, - STATE(4383), 1, + STATE(3853), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4381), 1, sym_expr_interpolated, - ACTIONS(7326), 2, + ACTIONS(7379), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114711] = 7, + [115583] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6498), 1, + ACTIONS(2066), 1, + sym__entry_separator, + ACTIONS(7453), 1, + anon_sym_DOT_DOT2, + STATE(3850), 1, + sym_comment, + ACTIONS(2068), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(7455), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [115604] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2074), 1, + sym__entry_separator, + ACTIONS(7457), 1, + anon_sym_DOT_DOT2, + STATE(3851), 1, + sym_comment, + ACTIONS(2076), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(7459), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [115625] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7217), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6647), 1, + ACTIONS(7461), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7382), 1, - aux_sym_unquoted_token2, - STATE(3818), 1, + ACTIONS(7465), 1, + aux_sym__unquoted_in_record_token2, + STATE(3852), 1, sym_comment, - STATE(4203), 1, + STATE(4098), 1, sym__immediate_decimal, - ACTIONS(6649), 2, + ACTIONS(7463), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114734] = 7, + [115648] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7324), 1, + ACTIONS(7377), 1, anon_sym_LPAREN, - ACTIONS(7384), 1, + ACTIONS(7467), 1, anon_sym_DQUOTE2, - STATE(3819), 1, + STATE(3853), 1, sym_comment, - STATE(3825), 1, + STATE(3925), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4383), 1, + STATE(4381), 1, sym_expr_interpolated, - ACTIONS(7326), 2, + ACTIONS(7379), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114757] = 7, + [115671] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6542), 1, + ACTIONS(7369), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6651), 1, + ACTIONS(7465), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7469), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7382), 1, - aux_sym_unquoted_token2, - STATE(3820), 1, + STATE(3854), 1, sym_comment, - STATE(4867), 1, + STATE(4999), 1, sym__immediate_decimal, - ACTIONS(6653), 2, + ACTIONS(7471), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [114780] = 6, + [115694] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4282), 1, + sym__space, + ACTIONS(7473), 1, + sym_long_flag_identifier, + ACTIONS(7475), 1, + anon_sym_EQ2, + STATE(3053), 1, + sym__flag_equals_value, + STATE(3855), 1, + sym_comment, + ACTIONS(4280), 2, + sym__newline, + anon_sym_SEMI, + [115717] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7377), 1, + anon_sym_LPAREN, + ACTIONS(7477), 1, + anon_sym_DQUOTE2, + STATE(3856), 1, + sym_comment, + STATE(3859), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4381), 1, + sym_expr_interpolated, + ACTIONS(7379), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [115740] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4135), 1, + ACTIONS(7465), 1, + sym__unquoted_pattern_in_record, + ACTIONS(7479), 1, anon_sym_DOT_DOT2, - ACTIONS(7382), 1, - sym__unquoted_pattern, - STATE(3821), 1, + STATE(3857), 1, sym_comment, - ACTIONS(4137), 2, + ACTIONS(7481), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7386), 2, + ACTIONS(7483), 2, sym_filesize_unit, sym_duration_unit, - [114801] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(3822), 1, - sym_comment, - STATE(4173), 1, - sym_block, - ACTIONS(7388), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [114820] = 8, + [115761] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7113), 1, - anon_sym_DOT2, - ACTIONS(7390), 1, - anon_sym_RBRACE, - ACTIONS(7392), 1, - sym__entry_separator, - STATE(367), 1, - sym_path, - STATE(3771), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3823), 1, - sym_comment, - STATE(4731), 1, - sym_cell_path, - [114845] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(3824), 1, + ACTIONS(7485), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7487), 1, + aux_sym__immediate_decimal_token5, + STATE(3858), 1, sym_comment, - STATE(4209), 1, - sym_block, - ACTIONS(7394), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [114864] = 7, + ACTIONS(1738), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1740), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [115782] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7324), 1, + ACTIONS(7377), 1, anon_sym_LPAREN, - ACTIONS(7396), 1, + ACTIONS(7489), 1, anon_sym_DQUOTE2, - STATE(3815), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3825), 1, + STATE(3859), 1, sym_comment, - STATE(4383), 1, + STATE(3925), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4381), 1, sym_expr_interpolated, - ACTIONS(7326), 2, + ACTIONS(7379), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114887] = 5, + [115805] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3803), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(3826), 1, + STATE(3860), 1, sym_comment, - STATE(4210), 1, + STATE(4174), 1, sym_block, - ACTIONS(7394), 4, + ACTIONS(7491), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [114906] = 7, + [115824] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7324), 1, + ACTIONS(7377), 1, anon_sym_LPAREN, - ACTIONS(7398), 1, + ACTIONS(7493), 1, anon_sym_DQUOTE2, - STATE(3827), 1, + STATE(3861), 1, sym_comment, - STATE(3831), 1, + STATE(3865), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4383), 1, + STATE(4381), 1, sym_expr_interpolated, - ACTIONS(7326), 2, + ACTIONS(7379), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [114929] = 7, + [115847] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6601), 1, - anon_sym_LPAREN2, - ACTIONS(7402), 1, + ACTIONS(2082), 1, sym__entry_separator, - STATE(2237), 1, - aux_sym__types_body_repeat2, - STATE(3828), 1, - sym_comment, - STATE(4746), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7400), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [114952] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7140), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7405), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7409), 1, - aux_sym__unquoted_in_record_token2, - STATE(3829), 1, - sym_comment, - STATE(4098), 1, - sym__immediate_decimal, - ACTIONS(7407), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [114975] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7411), 1, - anon_sym_RBRACK, - ACTIONS(7413), 1, - anon_sym_DOT_DOT, - ACTIONS(7415), 1, + ACTIONS(7495), 1, anon_sym_DOT_DOT2, - ACTIONS(7419), 1, - sym__entry_separator, - STATE(3830), 1, + STATE(3862), 1, sym_comment, - ACTIONS(7417), 2, + ACTIONS(2084), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(7497), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [114998] = 7, + [115868] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7324), 1, - anon_sym_LPAREN, - ACTIONS(7421), 1, - anon_sym_DQUOTE2, - STATE(3815), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3831), 1, + ACTIONS(5389), 1, + anon_sym_RBRACK, + ACTIONS(5391), 1, + sym__entry_separator, + ACTIONS(7109), 1, + anon_sym_DOT2, + STATE(346), 1, + sym_path, + STATE(3767), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(3863), 1, sym_comment, - STATE(4383), 1, - sym_expr_interpolated, - ACTIONS(7326), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [115021] = 6, + STATE(4757), 1, + sym_cell_path, + [115893] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1689), 1, - sym__space, - ACTIONS(7423), 1, - anon_sym_DOT_DOT2, - STATE(3832), 1, + STATE(3864), 1, sym_comment, - ACTIONS(1615), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7425), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115042] = 7, + ACTIONS(1517), 6, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [115908] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7324), 1, + ACTIONS(7377), 1, anon_sym_LPAREN, - ACTIONS(7427), 1, + ACTIONS(7499), 1, anon_sym_DQUOTE2, - STATE(3815), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3833), 1, + STATE(3865), 1, sym_comment, - STATE(4383), 1, + STATE(3925), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4381), 1, sym_expr_interpolated, - ACTIONS(7326), 2, + ACTIONS(7379), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [115065] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7415), 1, - anon_sym_DOT_DOT2, - ACTIONS(7429), 1, - anon_sym_RBRACK, - ACTIONS(7432), 1, - anon_sym_DOT_DOT, - ACTIONS(7434), 1, - sym__entry_separator, - STATE(3834), 1, - sym_comment, - ACTIONS(7417), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115088] = 7, - ACTIONS(103), 1, + [115931] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6498), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6647), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7437), 1, - aux_sym_unquoted_token2, - STATE(3835), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_record, + STATE(3866), 1, sym_comment, - STATE(4203), 1, + STATE(4874), 1, sym__immediate_decimal, - ACTIONS(6649), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [115111] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6542), 1, + ACTIONS(7369), 2, aux_sym__immediate_decimal_token1, - ACTIONS(6651), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7437), 1, - aux_sym_unquoted_token2, - STATE(3836), 1, - sym_comment, - STATE(4867), 1, - sym__immediate_decimal, - ACTIONS(6653), 2, + ACTIONS(7371), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [115134] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6601), 1, - anon_sym_LPAREN2, - ACTIONS(7402), 1, - sym__entry_separator, - STATE(2240), 1, - aux_sym__types_body_repeat2, - STATE(3837), 1, - sym_comment, - STATE(4746), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7439), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [115157] = 6, - ACTIONS(103), 1, + [115952] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2098), 1, - sym__space, - ACTIONS(7441), 1, - anon_sym_DOT_DOT2, - STATE(3838), 1, + ACTIONS(7501), 1, + anon_sym_DOT, + ACTIONS(7503), 1, + aux_sym__immediate_decimal_token5, + STATE(3867), 1, sym_comment, - ACTIONS(2100), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7443), 2, + ACTIONS(1750), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [115178] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7214), 1, - sym__entry_separator, - ACTIONS(7415), 1, + ACTIONS(1752), 2, anon_sym_DOT_DOT2, - STATE(3839), 1, + sym__unquoted_pattern_in_record, + [115973] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(3868), 1, sym_comment, - ACTIONS(7413), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7417), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115199] = 8, - ACTIONS(103), 1, + STATE(4187), 1, + sym_block, + ACTIONS(7505), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [115992] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2878), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7134), 1, - sym_identifier, - ACTIONS(7136), 1, - anon_sym_DOLLAR, - STATE(3840), 1, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(3869), 1, sym_comment, - STATE(4042), 1, - sym__variable_name, - STATE(4191), 1, - sym_val_variable, - STATE(4605), 1, - sym__assignment_pattern, - [115224] = 6, + STATE(4188), 1, + sym_block, + ACTIONS(7505), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [116011] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7222), 1, - sym__entry_separator, - ACTIONS(7415), 1, - anon_sym_DOT_DOT2, - STATE(3841), 1, + STATE(3870), 1, sym_comment, - ACTIONS(7417), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7432), 2, + ACTIONS(1521), 6, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [115245] = 6, + sym__entry_separator, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [116026] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4135), 1, - anon_sym_DOT_DOT2, - ACTIONS(7437), 1, - sym__unquoted_pattern, - STATE(3842), 1, + STATE(3871), 1, sym_comment, - ACTIONS(4137), 2, + ACTIONS(747), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + ACTIONS(749), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7386), 2, sym_filesize_unit, sym_duration_unit, - [115266] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5474), 1, - sym__space, - ACTIONS(7378), 1, - anon_sym_EQ2, - ACTIONS(7445), 1, - sym_short_flag_identifier, - STATE(3014), 1, - sym__flag_equals_value, - STATE(3843), 1, - sym_comment, - ACTIONS(5472), 2, - sym__newline, - anon_sym_SEMI, - [115289] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7447), 1, - sym__newline, - ACTIONS(7449), 1, - anon_sym_SEMI, - ACTIONS(7451), 1, - anon_sym_RPAREN, - STATE(1365), 1, - aux_sym__parenthesized_body_repeat1, - STATE(3844), 1, - sym_comment, - STATE(4113), 1, - aux_sym__block_body_repeat1, - STATE(4466), 1, - aux_sym__repeat_newline, - [115314] = 4, + [116043] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7453), 1, - anon_sym_LT, - STATE(3845), 1, - sym_comment, - ACTIONS(4972), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [115331] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7166), 1, + ACTIONS(1752), 1, + sym__unquoted_pattern, + ACTIONS(7507), 1, + anon_sym_DOT, + ACTIONS(7509), 1, aux_sym__immediate_decimal_token5, - STATE(3846), 1, + STATE(3872), 1, sym_comment, - ACTIONS(1728), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1730), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [115350] = 8, + ACTIONS(1750), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [116064] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2878), 1, + ACTIONS(2839), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7134), 1, + ACTIONS(7146), 1, sym_identifier, - ACTIONS(7136), 1, + ACTIONS(7148), 1, anon_sym_DOLLAR, - STATE(3847), 1, + STATE(3873), 1, sym_comment, - STATE(4042), 1, + STATE(4079), 1, sym__variable_name, - STATE(4191), 1, + STATE(4180), 1, sym_val_variable, - STATE(4430), 1, + STATE(4640), 1, sym__assignment_pattern, - [115375] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(7334), 1, - anon_sym_LBRACE, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(3285), 1, - sym__blosure, - STATE(3848), 1, - sym_comment, - STATE(3205), 2, - sym_block, - sym_val_closure, - [115398] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(7334), 1, - anon_sym_LBRACE, - STATE(3285), 1, - sym__blosure, - STATE(3793), 1, - aux_sym__repeat_newline, - STATE(3849), 1, - sym_comment, - STATE(3205), 2, - sym_block, - sym_val_closure, - [115421] = 5, + [116089] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7455), 1, - aux_sym__immediate_decimal_token5, - STATE(3850), 1, + STATE(3874), 1, sym_comment, - ACTIONS(1806), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1808), 3, + ACTIONS(1525), 6, anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [115440] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2136), 1, - sym__space, - ACTIONS(7457), 1, - anon_sym_DOT_DOT2, - STATE(3851), 1, - sym_comment, - ACTIONS(2138), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7459), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115461] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2144), 1, - sym__space, - ACTIONS(7461), 1, - anon_sym_DOT_DOT2, - STATE(3852), 1, - sym_comment, - ACTIONS(2146), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7463), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115482] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2152), 1, - sym__space, - ACTIONS(7465), 1, - anon_sym_DOT_DOT2, - STATE(3853), 1, - sym_comment, - ACTIONS(2154), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7467), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115503] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5480), 1, - sym__space, - ACTIONS(7423), 1, - anon_sym_DOT_DOT2, - STATE(3854), 1, - sym_comment, - ACTIONS(5478), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(7425), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115524] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7113), 1, - anon_sym_DOT2, - ACTIONS(7469), 1, - anon_sym_RBRACE, - ACTIONS(7471), 1, sym__entry_separator, - STATE(367), 1, - sym_path, - STATE(3771), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3855), 1, - sym_comment, - STATE(4681), 1, - sym_cell_path, - [115549] = 6, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [116104] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7473), 1, - sym_long_flag_identifier, - ACTIONS(7475), 1, - anon_sym_EQ2, - STATE(3856), 1, + ACTIONS(7355), 1, + sym__newline, + ACTIONS(7357), 1, + anon_sym_SEMI, + ACTIONS(7511), 1, + anon_sym_RPAREN, + STATE(1358), 1, + aux_sym__parenthesized_body_repeat1, + STATE(3875), 1, sym_comment, - STATE(4607), 1, - sym__flag_equals_value, - ACTIONS(4320), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [115570] = 7, + STATE(4319), 1, + aux_sym__block_body_repeat1, + STATE(4467), 1, + aux_sym__repeat_newline, + [116129] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7334), 1, + ACTIONS(7344), 1, anon_sym_LBRACE, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(3287), 1, + STATE(3394), 1, sym__blosure, - STATE(3857), 1, + STATE(3876), 1, sym_comment, - STATE(3205), 2, + STATE(3224), 2, sym_block, sym_val_closure, - [115593] = 7, + [116152] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7409), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7477), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7479), 1, - aux_sym__immediate_decimal_token2, - STATE(3858), 1, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7146), 1, + sym_identifier, + ACTIONS(7148), 1, + anon_sym_DOLLAR, + STATE(3877), 1, sym_comment, - STATE(5010), 1, - sym__immediate_decimal, - ACTIONS(7481), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [115616] = 3, + STATE(3932), 1, + sym__variable_name, + STATE(4180), 1, + sym_val_variable, + STATE(4332), 1, + sym__assignment_pattern, + [116177] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(3859), 1, - sym_comment, - ACTIONS(1513), 6, + ACTIONS(7336), 1, + anon_sym_DOT_DOT, + ACTIONS(7338), 1, + anon_sym_DOT_DOT2, + ACTIONS(7513), 1, anon_sym_RBRACK, + ACTIONS(7515), 1, sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [115631] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(3860), 1, + STATE(3878), 1, sym_comment, - ACTIONS(1517), 6, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [115646] = 3, + ACTIONS(7340), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116200] = 6, ACTIONS(103), 1, anon_sym_POUND, - STATE(3861), 1, + ACTIONS(7063), 1, + anon_sym_DOT2, + STATE(3879), 1, sym_comment, - ACTIONS(1521), 6, + STATE(3891), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4125), 1, + sym_path, + ACTIONS(1492), 3, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [115661] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6661), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7483), 1, - anon_sym_DOT, - STATE(3862), 1, - sym_comment, - ACTIONS(1728), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [115680] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7485), 1, - anon_sym_DOT, - ACTIONS(7487), 1, - aux_sym__immediate_decimal_token5, - STATE(3863), 1, - sym_comment, - ACTIONS(1728), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1730), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [115701] = 8, + [116221] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2533), 1, + ACTIONS(2561), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7134), 1, + ACTIONS(7146), 1, sym_identifier, - ACTIONS(7136), 1, + ACTIONS(7148), 1, anon_sym_DOLLAR, - STATE(3864), 1, + STATE(3880), 1, sym_comment, - STATE(3953), 1, + STATE(3932), 1, sym__variable_name, - STATE(4191), 1, + STATE(4180), 1, sym_val_variable, - STATE(4577), 1, - sym__assignment_pattern_parenthesized, - [115726] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1808), 1, - sym__unquoted_pattern, - ACTIONS(7489), 1, - aux_sym__immediate_decimal_token5, - STATE(3865), 1, - sym_comment, - ACTIONS(1806), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [115745] = 8, + STATE(4333), 1, + sym__assignment_pattern, + [116246] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2533), 1, + ACTIONS(2561), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7134), 1, + ACTIONS(7146), 1, sym_identifier, - ACTIONS(7136), 1, + ACTIONS(7148), 1, anon_sym_DOLLAR, - STATE(3866), 1, + STATE(3881), 1, sym_comment, - STATE(3953), 1, + STATE(3932), 1, sym__variable_name, - STATE(4191), 1, + STATE(4180), 1, sym_val_variable, - STATE(4587), 1, - sym__assignment_pattern_parenthesized, - [115770] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern_in_record, - STATE(3867), 1, - sym_comment, - STATE(4913), 1, - sym__immediate_decimal, - ACTIONS(7477), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7491), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [115791] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7495), 1, - anon_sym_AT, - STATE(4756), 1, - sym_attribute, - STATE(3868), 2, - sym_comment, - aux_sym_attribute_list_repeat1, - ACTIONS(7493), 3, - anon_sym_export, - anon_sym_def, - anon_sym_extern, - [115810] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(461), 1, - anon_sym_RPAREN, - ACTIONS(7447), 1, - sym__newline, - ACTIONS(7449), 1, - anon_sym_SEMI, - STATE(1365), 1, - aux_sym__parenthesized_body_repeat1, - STATE(3869), 1, - sym_comment, - STATE(4250), 1, - aux_sym__block_body_repeat1, - STATE(4466), 1, - aux_sym__repeat_newline, - [115835] = 5, - ACTIONS(3), 1, + STATE(4335), 1, + sym__assignment_pattern, + [116271] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7498), 1, - aux_sym__immediate_decimal_token5, - STATE(3870), 1, - sym_comment, - ACTIONS(1808), 2, + ACTIONS(7338), 1, anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1806), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [115854] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3871), 1, + ACTIONS(7342), 1, + anon_sym_DOT_DOT, + ACTIONS(7517), 1, + anon_sym_RBRACK, + ACTIONS(7520), 1, + sym__entry_separator, + STATE(3882), 1, sym_comment, - ACTIONS(874), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(876), 4, + ACTIONS(7340), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [115871] = 5, + [116294] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7500), 1, - anon_sym_DOT2, - STATE(4124), 1, - sym_path, - STATE(3872), 2, + ACTIONS(6599), 1, + anon_sym_LPAREN2, + ACTIONS(7525), 1, + sym__entry_separator, + STATE(2249), 1, + aux_sym__types_body_repeat2, + STATE(3883), 1, sym_comment, - aux_sym__where_predicate_lhs_repeat1, - ACTIONS(1494), 3, + STATE(4701), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7523), 2, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [115890] = 6, + anon_sym_DOT_DOT, + [116317] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5454), 1, + sym__space, + ACTIONS(7475), 1, + anon_sym_EQ2, + ACTIONS(7528), 1, + sym_short_flag_identifier, + STATE(3048), 1, + sym__flag_equals_value, + STATE(3884), 1, + sym_comment, + ACTIONS(5452), 2, + sym__newline, + anon_sym_SEMI, + [116340] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(5462), 1, + sym__space, + ACTIONS(7530), 1, + anon_sym_DOT_DOT2, + STATE(3885), 1, + sym_comment, + ACTIONS(5460), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7532), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [116361] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(57), 1, - anon_sym_AT, - STATE(3868), 1, - aux_sym_attribute_list_repeat1, - STATE(3873), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7344), 1, + anon_sym_LBRACE, + STATE(3342), 1, + sym__blosure, + STATE(3844), 1, + aux_sym__repeat_newline, + STATE(3886), 1, sym_comment, - STATE(4756), 1, - sym_attribute, - ACTIONS(7503), 3, - anon_sym_export, - anon_sym_def, - anon_sym_extern, - [115911] = 4, + STATE(3224), 2, + sym_block, + sym_val_closure, + [116384] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3874), 1, + STATE(3887), 1, sym_comment, - ACTIONS(747), 2, + ACTIONS(755), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - ACTIONS(749), 4, + ACTIONS(757), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [115928] = 7, + [116401] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6944), 1, + ACTIONS(6962), 1, anon_sym_DOT2, - STATE(2552), 1, + STATE(2562), 1, sym_path, - STATE(2930), 1, + STATE(2871), 1, sym_cell_path, - STATE(3618), 1, + STATE(3665), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(3875), 1, + STATE(3888), 1, sym_comment, - ACTIONS(4877), 2, + ACTIONS(4899), 2, anon_sym_EQ, anon_sym_GT2, - [115951] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(3876), 1, - sym_comment, - STATE(4186), 1, - sym_block, - ACTIONS(7505), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [115970] = 5, + [116424] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(3877), 1, + ACTIONS(1818), 1, + sym__unquoted_pattern, + ACTIONS(7534), 1, + aux_sym__immediate_decimal_token5, + STATE(3889), 1, sym_comment, - STATE(4105), 1, - sym_block, - ACTIONS(7507), 4, + ACTIONS(1816), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [115989] = 5, + anon_sym_PIPE, + anon_sym_EQ_GT, + [116443] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(3878), 1, + STATE(3890), 1, sym_comment, - STATE(4187), 1, - sym_block, - ACTIONS(7505), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [116008] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1689), 1, - sym__entry_separator, - ACTIONS(7509), 1, + ACTIONS(789), 2, anon_sym_DOT_DOT2, - STATE(3879), 1, - sym_comment, - ACTIONS(1615), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7511), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [116029] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern_in_record, - STATE(3880), 1, - sym_comment, - STATE(4971), 1, - sym__immediate_decimal, - ACTIONS(7477), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7491), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [116050] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7409), 1, sym__unquoted_pattern_in_record, - ACTIONS(7513), 1, - anon_sym_DOT_DOT2, - STATE(3881), 1, - sym_comment, - ACTIONS(7515), 2, + ACTIONS(791), 4, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7517), 2, sym_filesize_unit, sym_duration_unit, - [116071] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(7334), 1, - anon_sym_LBRACE, - STATE(3361), 1, - sym__blosure, - STATE(3784), 1, - aux_sym__repeat_newline, - STATE(3882), 1, - sym_comment, - STATE(3205), 2, - sym_block, - sym_val_closure, - [116094] = 8, + [116460] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5403), 1, - anon_sym_RBRACK, - ACTIONS(5405), 1, - sym__entry_separator, - ACTIONS(7113), 1, + ACTIONS(7536), 1, anon_sym_DOT2, - STATE(367), 1, + STATE(4125), 1, sym_path, - STATE(3771), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(3883), 1, - sym_comment, - STATE(4794), 1, - sym_cell_path, - [116119] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7519), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7521), 1, - aux_sym__immediate_decimal_token5, - STATE(3884), 1, + STATE(3891), 2, sym_comment, - ACTIONS(1738), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1740), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [116140] = 7, + aux_sym__where_predicate_lhs_repeat1, + ACTIONS(1496), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [116479] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7324), 1, + ACTIONS(7377), 1, anon_sym_LPAREN, - ACTIONS(7523), 1, + ACTIONS(7539), 1, anon_sym_DQUOTE2, - STATE(3885), 1, + STATE(3892), 1, sym_comment, - STATE(3925), 1, + STATE(3926), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4383), 1, + STATE(4381), 1, sym_expr_interpolated, - ACTIONS(7326), 2, + ACTIONS(7379), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [116163] = 7, + [116502] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4143), 1, - aux_sym_unquoted_token2, - ACTIONS(6498), 1, + ACTIONS(6398), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6647), 1, + ACTIONS(6641), 1, aux_sym__immediate_decimal_token2, - STATE(3886), 1, + ACTIONS(7541), 1, + aux_sym_unquoted_token2, + STATE(3893), 1, sym_comment, STATE(4203), 1, sym__immediate_decimal, - ACTIONS(6649), 2, + ACTIONS(6643), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [116186] = 7, - ACTIONS(3), 1, + [116525] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(7334), 1, - anon_sym_LBRACE, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(3401), 1, - sym__blosure, - STATE(3887), 1, + ACTIONS(6548), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6645), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7541), 1, + aux_sym_unquoted_token2, + STATE(3894), 1, sym_comment, - STATE(3205), 2, - sym_block, - sym_val_closure, - [116209] = 7, + STATE(4840), 1, + sym__immediate_decimal, + ACTIONS(6647), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [116548] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(7334), 1, - anon_sym_LBRACE, - STATE(3401), 1, - sym__blosure, - STATE(3795), 1, - aux_sym__repeat_newline, - STATE(3888), 1, + ACTIONS(4119), 1, + anon_sym_DOT_DOT2, + ACTIONS(7541), 1, + sym__unquoted_pattern, + STATE(3895), 1, sym_comment, - STATE(3205), 2, - sym_block, - sym_val_closure, - [116232] = 6, + ACTIONS(4121), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7346), 2, + sym_filesize_unit, + sym_duration_unit, + [116569] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2098), 1, + ACTIONS(7377), 1, + anon_sym_LPAREN, + ACTIONS(7543), 1, + anon_sym_DQUOTE2, + STATE(3896), 1, + sym_comment, + STATE(3911), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(4381), 1, + sym_expr_interpolated, + ACTIONS(7379), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [116592] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2134), 1, sym__entry_separator, - ACTIONS(7525), 1, + ACTIONS(7545), 1, anon_sym_DOT_DOT2, - STATE(3889), 1, + STATE(3897), 1, sym_comment, - ACTIONS(2100), 2, + ACTIONS(2136), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7527), 2, + ACTIONS(7547), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [116253] = 7, + [116613] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4143), 1, + ACTIONS(4127), 1, aux_sym_unquoted_token2, - ACTIONS(6542), 1, + ACTIONS(6398), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6651), 1, + ACTIONS(6641), 1, aux_sym__immediate_decimal_token2, - STATE(3890), 1, + STATE(3898), 1, sym_comment, - STATE(4867), 1, + STATE(4203), 1, sym__immediate_decimal, - ACTIONS(6653), 2, + ACTIONS(6643), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [116276] = 6, + [116636] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2136), 1, + ACTIONS(2066), 1, sym__entry_separator, - ACTIONS(7529), 1, + ACTIONS(7549), 1, anon_sym_DOT_DOT2, - STATE(3891), 1, + STATE(3899), 1, sym_comment, - ACTIONS(2138), 2, + ACTIONS(2068), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7531), 2, + ACTIONS(7551), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [116297] = 6, + [116657] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2144), 1, + ACTIONS(2074), 1, sym__entry_separator, - ACTIONS(7533), 1, + ACTIONS(7553), 1, anon_sym_DOT_DOT2, - STATE(3892), 1, + STATE(3900), 1, sym_comment, - ACTIONS(2146), 2, + ACTIONS(2076), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7535), 2, + ACTIONS(7555), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [116318] = 6, + [116678] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2152), 1, + ACTIONS(2082), 1, sym__entry_separator, - ACTIONS(7537), 1, + ACTIONS(7557), 1, anon_sym_DOT_DOT2, - STATE(3893), 1, + STATE(3901), 1, sym_comment, - ACTIONS(2154), 2, + ACTIONS(2084), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7539), 2, + ACTIONS(7559), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [116339] = 6, + [116699] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4127), 1, + aux_sym_unquoted_token2, + ACTIONS(6548), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6645), 1, + aux_sym__immediate_decimal_token2, + STATE(3902), 1, + sym_comment, + STATE(4840), 1, + sym__immediate_decimal, + ACTIONS(6647), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [116722] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1598), 1, + ACTIONS(1641), 1, sym__unquoted_pattern, - STATE(3894), 1, + STATE(3903), 1, sym_comment, - STATE(5144), 1, + STATE(5075), 1, sym__immediate_decimal, - ACTIONS(6542), 2, + ACTIONS(6548), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token2, - ACTIONS(6544), 2, + ACTIONS(6550), 2, aux_sym__immediate_decimal_token3, aux_sym__immediate_decimal_token4, - [116360] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7324), 1, - anon_sym_LPAREN, - ACTIONS(7541), 1, - anon_sym_DQUOTE2, - STATE(3895), 1, - sym_comment, - STATE(3922), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(4383), 1, - sym_expr_interpolated, - ACTIONS(7326), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [116383] = 8, + [116743] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2878), 1, + ACTIONS(2561), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7134), 1, - sym_identifier, - ACTIONS(7136), 1, - anon_sym_DOLLAR, - STATE(3896), 1, - sym_comment, - STATE(4042), 1, - sym__variable_name, - STATE(4191), 1, - sym_val_variable, - STATE(4651), 1, - sym__assignment_pattern, - [116408] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7306), 1, - aux_sym__immediate_decimal_token5, - STATE(3897), 1, - sym_comment, - ACTIONS(1730), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1728), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [116427] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2533), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7134), 1, + ACTIONS(7146), 1, sym_identifier, - ACTIONS(7136), 1, + ACTIONS(7148), 1, anon_sym_DOLLAR, - STATE(3898), 1, + STATE(3904), 1, sym_comment, - STATE(4062), 1, + STATE(4031), 1, sym__variable_name, - STATE(4191), 1, + STATE(4180), 1, sym_val_variable, - STATE(4325), 1, + STATE(4332), 1, sym__assignment_pattern, - [116452] = 8, + [116768] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2533), 1, + ACTIONS(2561), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7134), 1, + ACTIONS(7146), 1, sym_identifier, - ACTIONS(7136), 1, + ACTIONS(7148), 1, anon_sym_DOLLAR, - STATE(3899), 1, + STATE(3905), 1, sym_comment, - STATE(4062), 1, + STATE(4031), 1, sym__variable_name, - STATE(4191), 1, + STATE(4180), 1, sym_val_variable, - STATE(4327), 1, + STATE(4333), 1, sym__assignment_pattern, - [116477] = 8, + [116793] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2533), 1, + ACTIONS(2561), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7134), 1, + ACTIONS(7146), 1, sym_identifier, - ACTIONS(7136), 1, + ACTIONS(7148), 1, anon_sym_DOLLAR, - STATE(3900), 1, + STATE(3906), 1, sym_comment, - STATE(4062), 1, + STATE(4031), 1, sym__variable_name, - STATE(4191), 1, + STATE(4180), 1, sym_val_variable, - STATE(4329), 1, + STATE(4335), 1, sym__assignment_pattern, - [116502] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(3901), 1, - sym_comment, - STATE(4272), 1, - sym_block, - ACTIONS(7543), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [116521] = 5, + [116818] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7235), 1, + ACTIONS(7184), 1, aux_sym__immediate_decimal_token5, - STATE(3902), 1, + STATE(3907), 1, sym_comment, - ACTIONS(1728), 2, + ACTIONS(1750), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(1730), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [116540] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - STATE(3903), 1, - sym_comment, - STATE(4866), 1, - sym__immediate_decimal, - ACTIONS(6542), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6544), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [116561] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(3904), 1, - sym_comment, - STATE(4274), 1, - sym_block, - ACTIONS(7543), 4, + ACTIONS(1752), 3, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [116580] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1740), 1, sym__unquoted_pattern, - ACTIONS(7545), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7547), 1, - aux_sym__immediate_decimal_token5, - STATE(3905), 1, - sym_comment, - ACTIONS(1738), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [116601] = 6, + [116837] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2136), 1, + ACTIONS(6599), 1, + anon_sym_LPAREN2, + ACTIONS(7525), 1, sym__entry_separator, - ACTIONS(7549), 1, - anon_sym_DOT_DOT2, - STATE(3906), 1, + STATE(2244), 1, + aux_sym__types_body_repeat2, + STATE(3908), 1, sym_comment, - ACTIONS(2138), 2, + STATE(4701), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7561), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7551), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [116622] = 8, + anon_sym_DOT_DOT, + [116860] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7553), 1, - anon_sym_if, - ACTIONS(7555), 1, + ACTIONS(7563), 1, + anon_sym_LT, + STATE(3909), 1, + sym_comment, + ACTIONS(4944), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [116877] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7557), 1, - anon_sym_PIPE, - ACTIONS(7559), 1, - anon_sym_EQ_GT, - STATE(3907), 1, + ACTIONS(7344), 1, + anon_sym_LBRACE, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(3285), 1, + sym__blosure, + STATE(3910), 1, sym_comment, - STATE(4357), 1, - aux_sym_match_pattern_repeat1, - STATE(5039), 1, - sym_match_guard, - [116647] = 7, + STATE(3224), 2, + sym_block, + sym_val_closure, + [116900] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7324), 1, + ACTIONS(7377), 1, anon_sym_LPAREN, - ACTIONS(7561), 1, + ACTIONS(7565), 1, anon_sym_DQUOTE2, - STATE(3908), 1, + STATE(3911), 1, sym_comment, - STATE(3926), 1, + STATE(3925), 1, aux_sym__inter_double_quotes_repeat1, - STATE(4383), 1, + STATE(4381), 1, sym_expr_interpolated, - ACTIONS(7326), 2, + ACTIONS(7379), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [116670] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6498), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6647), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6954), 1, - aux_sym_unquoted_token2, - STATE(3909), 1, - sym_comment, - STATE(4203), 1, - sym__immediate_decimal, - ACTIONS(6649), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [116693] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(6542), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6651), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6954), 1, - aux_sym_unquoted_token2, - STATE(3910), 1, - sym_comment, - STATE(4867), 1, - sym__immediate_decimal, - ACTIONS(6653), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [116716] = 6, - ACTIONS(103), 1, + [116923] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2098), 1, - sym__entry_separator, - ACTIONS(7563), 1, - anon_sym_DOT_DOT2, - STATE(3911), 1, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7344), 1, + anon_sym_LBRACE, + STATE(3285), 1, + sym__blosure, + STATE(3793), 1, + aux_sym__repeat_newline, + STATE(3912), 1, sym_comment, - ACTIONS(2100), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(7565), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [116737] = 6, + STATE(3224), 2, + sym_block, + sym_val_closure, + [116946] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2144), 1, + ACTIONS(2134), 1, sym__entry_separator, ACTIONS(7567), 1, anon_sym_DOT_DOT2, - STATE(3912), 1, + STATE(3913), 1, sym_comment, - ACTIONS(2146), 2, + ACTIONS(2136), 2, anon_sym_RBRACK, anon_sym_RBRACE, ACTIONS(7569), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [116758] = 8, + [116967] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7447), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7449), 1, - anon_sym_SEMI, - ACTIONS(7571), 1, - anon_sym_RPAREN, - STATE(1365), 1, - aux_sym__parenthesized_body_repeat1, - STATE(3913), 1, + ACTIONS(7344), 1, + anon_sym_LBRACE, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(3331), 1, + sym__blosure, + STATE(3914), 1, sym_comment, - STATE(4315), 1, - aux_sym__block_body_repeat1, - STATE(4466), 1, + STATE(3224), 2, + sym_block, + sym_val_closure, + [116990] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7344), 1, + anon_sym_LBRACE, + STATE(3331), 1, + sym__blosure, + STATE(3813), 1, aux_sym__repeat_newline, - [116783] = 5, + STATE(3915), 1, + sym_comment, + STATE(3224), 2, + sym_block, + sym_val_closure, + [117013] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7573), 1, + ACTIONS(7571), 1, aux_sym__immediate_decimal_token5, - STATE(3914), 1, + STATE(3916), 1, sym_comment, - ACTIONS(1806), 2, + ACTIONS(1816), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(1808), 3, + ACTIONS(1818), 3, sym__newline, anon_sym_SEMI, sym__unquoted_pattern, - [116802] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2533), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7134), 1, - sym_identifier, - ACTIONS(7136), 1, - anon_sym_DOLLAR, - STATE(3915), 1, - sym_comment, - STATE(3970), 1, - sym__variable_name, - STATE(4191), 1, - sym_val_variable, - STATE(4325), 1, - sym__assignment_pattern, - [116827] = 8, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2533), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7134), 1, - sym_identifier, - ACTIONS(7136), 1, - anon_sym_DOLLAR, - STATE(3916), 1, - sym_comment, - STATE(3970), 1, - sym__variable_name, - STATE(4191), 1, - sym_val_variable, - STATE(4327), 1, - sym__assignment_pattern, - [116852] = 8, + [117032] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2533), 1, + ACTIONS(2561), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7134), 1, + ACTIONS(7146), 1, sym_identifier, - ACTIONS(7136), 1, + ACTIONS(7148), 1, anon_sym_DOLLAR, STATE(3917), 1, sym_comment, - STATE(3970), 1, + STATE(4049), 1, sym__variable_name, - STATE(4191), 1, + STATE(4180), 1, sym_val_variable, - STATE(4329), 1, + STATE(4332), 1, sym__assignment_pattern, - [116877] = 8, + [117057] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2533), 1, + ACTIONS(2561), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7134), 1, + ACTIONS(7146), 1, sym_identifier, - ACTIONS(7136), 1, + ACTIONS(7148), 1, anon_sym_DOLLAR, STATE(3918), 1, sym_comment, - STATE(4006), 1, + STATE(4049), 1, sym__variable_name, - STATE(4191), 1, + STATE(4180), 1, sym_val_variable, - STATE(4469), 1, - sym__assignment_pattern_parenthesized, - [116902] = 8, + STATE(4333), 1, + sym__assignment_pattern, + [117082] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2533), 1, + ACTIONS(2561), 1, aux_sym_cmd_identifier_token2, - ACTIONS(7134), 1, + ACTIONS(7146), 1, sym_identifier, - ACTIONS(7136), 1, + ACTIONS(7148), 1, anon_sym_DOLLAR, STATE(3919), 1, sym_comment, - STATE(4006), 1, + STATE(4049), 1, sym__variable_name, - STATE(4191), 1, + STATE(4180), 1, sym_val_variable, - STATE(4577), 1, - sym__assignment_pattern_parenthesized, - [116927] = 8, + STATE(4335), 1, + sym__assignment_pattern, + [117107] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2533), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7134), 1, - sym_identifier, - ACTIONS(7136), 1, - anon_sym_DOLLAR, + ACTIONS(1706), 1, + sym__space, + ACTIONS(7530), 1, + anon_sym_DOT_DOT2, STATE(3920), 1, sym_comment, - STATE(4006), 1, - sym__variable_name, - STATE(4191), 1, - sym_val_variable, - STATE(4587), 1, - sym__assignment_pattern_parenthesized, - [116952] = 7, + ACTIONS(1604), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(7532), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [117128] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1492), 1, + ACTIONS(1494), 1, sym__entry_separator, - ACTIONS(7162), 1, + ACTIONS(7180), 1, anon_sym_DOT2, STATE(3921), 1, sym_comment, - STATE(3927), 1, + STATE(3929), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4384), 1, + STATE(4386), 1, sym_path, - ACTIONS(1490), 2, + ACTIONS(1492), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [116975] = 7, + [117151] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7324), 1, - anon_sym_LPAREN, - ACTIONS(7575), 1, - anon_sym_DQUOTE2, - STATE(3815), 1, - aux_sym__inter_double_quotes_repeat1, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7146), 1, + sym_identifier, + ACTIONS(7148), 1, + anon_sym_DOLLAR, STATE(3922), 1, sym_comment, - STATE(4383), 1, - sym_expr_interpolated, - ACTIONS(7326), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [116998] = 4, - ACTIONS(3), 1, + STATE(4005), 1, + sym__variable_name, + STATE(4180), 1, + sym_val_variable, + STATE(4455), 1, + sym__assignment_pattern_parenthesized, + [117176] = 8, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7146), 1, + sym_identifier, + ACTIONS(7148), 1, + anon_sym_DOLLAR, STATE(3923), 1, sym_comment, - ACTIONS(771), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - ACTIONS(773), 4, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [117015] = 6, + STATE(4005), 1, + sym__variable_name, + STATE(4180), 1, + sym_val_variable, + STATE(4572), 1, + sym__assignment_pattern_parenthesized, + [117201] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7577), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7579), 1, + ACTIONS(7573), 1, + anon_sym_DOT, + ACTIONS(7575), 1, aux_sym__immediate_decimal_token5, STATE(3924), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(1750), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1740), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [117036] = 7, + ACTIONS(1752), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [117222] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7324), 1, + ACTIONS(7577), 1, anon_sym_LPAREN, - ACTIONS(7581), 1, + ACTIONS(7583), 1, anon_sym_DQUOTE2, - STATE(3815), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(3925), 1, - sym_comment, - STATE(4383), 1, + STATE(4381), 1, sym_expr_interpolated, - ACTIONS(7326), 2, + ACTIONS(7580), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [117059] = 7, + STATE(3925), 2, + sym_comment, + aux_sym__inter_double_quotes_repeat1, + [117243] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7324), 1, + ACTIONS(7377), 1, anon_sym_LPAREN, - ACTIONS(7583), 1, + ACTIONS(7585), 1, anon_sym_DQUOTE2, - STATE(3815), 1, + STATE(3925), 1, aux_sym__inter_double_quotes_repeat1, STATE(3926), 1, sym_comment, - STATE(4383), 1, + STATE(4381), 1, sym_expr_interpolated, - ACTIONS(7326), 2, + ACTIONS(7379), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [117082] = 6, + [117266] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1496), 1, - sym__entry_separator, - ACTIONS(7585), 1, + ACTIONS(7109), 1, anon_sym_DOT2, - STATE(4384), 1, + ACTIONS(7587), 1, + anon_sym_RBRACE, + ACTIONS(7589), 1, + sym__entry_separator, + STATE(346), 1, sym_path, - ACTIONS(1494), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - STATE(3927), 2, - sym_comment, + STATE(3767), 1, aux_sym__where_predicate_lhs_repeat1, - [117103] = 8, + STATE(3927), 1, + sym_comment, + STATE(4729), 1, + sym_cell_path, + [117291] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2533), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(7134), 1, - sym_identifier, - ACTIONS(7136), 1, - anon_sym_DOLLAR, + ACTIONS(6398), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6641), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7348), 1, + aux_sym_unquoted_token2, STATE(3928), 1, sym_comment, - STATE(3953), 1, - sym__variable_name, - STATE(4191), 1, - sym_val_variable, - STATE(4469), 1, - sym__assignment_pattern_parenthesized, - [117128] = 6, + STATE(4203), 1, + sym__immediate_decimal, + ACTIONS(6643), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [117314] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1952), 1, + ACTIONS(1498), 1, sym__entry_separator, - ACTIONS(1954), 1, - anon_sym_RBRACE, - ACTIONS(7588), 1, - anon_sym_DOT_DOT2, - STATE(3929), 1, + ACTIONS(7591), 1, + anon_sym_DOT2, + STATE(4386), 1, + sym_path, + ACTIONS(1496), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + STATE(3929), 2, sym_comment, - ACTIONS(7590), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [117148] = 3, - ACTIONS(3), 1, + aux_sym__where_predicate_lhs_repeat1, + [117335] = 7, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(6548), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6645), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7348), 1, + aux_sym_unquoted_token2, STATE(3930), 1, sym_comment, - ACTIONS(5036), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [117162] = 5, + STATE(4840), 1, + sym__immediate_decimal, + ACTIONS(6647), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [117358] = 8, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7592), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(7146), 1, + sym_identifier, + ACTIONS(7148), 1, + anon_sym_DOLLAR, STATE(3931), 1, sym_comment, - ACTIONS(1806), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1808), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [117180] = 6, - ACTIONS(103), 1, + STATE(3956), 1, + sym__variable_name, + STATE(4180), 1, + sym_val_variable, + STATE(4572), 1, + sym__assignment_pattern_parenthesized, + [117383] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, ACTIONS(7594), 1, - anon_sym_DQUOTE, + anon_sym_EQ, + ACTIONS(7596), 1, + anon_sym_COLON, STATE(3932), 1, sym_comment, - STATE(4319), 1, - aux_sym_string_content_repeat1, - STATE(4854), 1, - sym_string_content, - ACTIONS(7596), 2, - sym__escaped_str_content, - sym_escape_sequence, - [117200] = 7, - ACTIONS(103), 1, + STATE(4650), 1, + aux_sym__repeat_newline, + STATE(5252), 1, + sym_param_type, + [117405] = 5, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(7598), 1, + anon_sym_DASH_DASH, + STATE(4588), 1, + sym_long_flag, + ACTIONS(4492), 2, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(7600), 1, - anon_sym_SQUOTE2, - ACTIONS(7602), 1, - sym_unescaped_interpolated_content, - STATE(3933), 1, + STATE(3933), 2, sym_comment, - STATE(3938), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4615), 1, - sym_expr_interpolated, - [117222] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1862), 1, - sym__table_head_separator, - ACTIONS(7604), 1, - anon_sym_DOT2, - STATE(3934), 1, - sym_comment, - STATE(4367), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4827), 1, - sym_path, - STATE(5083), 1, - sym_cell_path, - [117244] = 5, + aux_sym_decl_def_repeat1, + [117423] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7487), 1, - aux_sym__immediate_decimal_token5, - STATE(3935), 1, + ACTIONS(7601), 1, + anon_sym_BANG, + STATE(3934), 1, sym_comment, - ACTIONS(1728), 2, - anon_sym_LPAREN2, + ACTIONS(1450), 4, + anon_sym_RBRACK, sym__entry_separator, - ACTIONS(1730), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [117262] = 6, + sym__table_head_separator, + anon_sym_DOT2, + [117439] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2525), 1, + ACTIONS(1004), 1, sym__space, - ACTIONS(2529), 1, + ACTIONS(2602), 1, anon_sym_LPAREN2, - ACTIONS(2531), 1, + ACTIONS(2604), 1, sym__unquoted_pattern, + STATE(3935), 1, + sym_comment, + ACTIONS(994), 2, + sym__newline, + anon_sym_SEMI, + [117459] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3763), 1, + anon_sym_LBRACE, STATE(3936), 1, sym_comment, - ACTIONS(2527), 2, + STATE(4444), 1, + sym_block, + ACTIONS(7423), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [117282] = 7, + [117477] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7598), 1, + ACTIONS(7603), 1, anon_sym_LPAREN, - ACTIONS(7602), 1, - sym_unescaped_interpolated_content, - ACTIONS(7606), 1, + ACTIONS(7605), 1, anon_sym_SQUOTE2, + ACTIONS(7607), 1, + sym_unescaped_interpolated_content, STATE(3937), 1, sym_comment, - STATE(3962), 1, + STATE(4059), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4615), 1, + STATE(4616), 1, sym_expr_interpolated, - [117304] = 7, + [117499] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7598), 1, - anon_sym_LPAREN, - ACTIONS(7602), 1, - sym_unescaped_interpolated_content, - ACTIONS(7608), 1, - anon_sym_SQUOTE2, + ACTIONS(7425), 1, + anon_sym_DOT_DOT2, + ACTIONS(7609), 1, + anon_sym_RBRACE, + ACTIONS(7611), 1, + sym__entry_separator, STATE(3938), 1, sym_comment, - STATE(3962), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4615), 1, - sym_expr_interpolated, - [117326] = 3, - ACTIONS(3), 1, + ACTIONS(7427), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [117519] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1750), 1, + sym__space, + ACTIONS(6655), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7613), 1, + anon_sym_DOT, STATE(3939), 1, sym_comment, - ACTIONS(5008), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [117340] = 5, + ACTIONS(1752), 2, + sym__newline, + anon_sym_SEMI, + [117539] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3809), 1, - anon_sym_LBRACE, + ACTIONS(2021), 1, + sym__unquoted_pattern, STATE(3940), 1, sym_comment, - STATE(4411), 1, - sym_block, - ACTIONS(7505), 3, - ts_builtin_sym_end, + ACTIONS(2533), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - [117358] = 7, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7598), 1, - anon_sym_LPAREN, - ACTIONS(7602), 1, - sym_unescaped_interpolated_content, - ACTIONS(7610), 1, - anon_sym_SQUOTE2, - STATE(3941), 1, - sym_comment, - STATE(3962), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4615), 1, - sym_expr_interpolated, - [117380] = 5, + anon_sym_PIPE, + anon_sym_EQ_GT, + [117555] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(3942), 1, + ACTIONS(1752), 1, + sym__unquoted_pattern, + ACTIONS(7509), 1, + aux_sym__immediate_decimal_token5, + STATE(3941), 1, sym_comment, - STATE(4412), 1, - sym_block, - ACTIONS(7505), 3, - ts_builtin_sym_end, + ACTIONS(1750), 3, sym__newline, - anon_sym_SEMI, - [117398] = 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + [117573] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7612), 1, + ACTIONS(7615), 1, anon_sym_DQUOTE, - STATE(3943), 1, + STATE(3942), 1, sym_comment, - STATE(4319), 1, + STATE(4321), 1, aux_sym_string_content_repeat1, - STATE(4871), 1, + STATE(4870), 1, sym_string_content, - ACTIONS(7596), 2, + ACTIONS(7617), 2, sym__escaped_str_content, sym_escape_sequence, - [117418] = 4, + [117593] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2021), 1, + sym__unquoted_pattern, + STATE(3943), 1, + sym_comment, + ACTIONS(2011), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [117609] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7619), 1, + anon_sym_DQUOTE, STATE(3944), 1, sym_comment, - ACTIONS(1846), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1844), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [117434] = 6, - ACTIONS(3), 1, + STATE(4321), 1, + aux_sym_string_content_repeat1, + STATE(5045), 1, + sym_string_content, + ACTIONS(7617), 2, + sym__escaped_str_content, + sym_escape_sequence, + [117629] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7614), 1, - anon_sym_RBRACK, - ACTIONS(7617), 1, - anon_sym_DOT_DOT, + ACTIONS(7603), 1, + anon_sym_LPAREN, + ACTIONS(7607), 1, + sym_unescaped_interpolated_content, + ACTIONS(7621), 1, + anon_sym_SQUOTE2, STATE(3945), 1, sym_comment, - STATE(3947), 1, - aux_sym_parameter_repeat2, - ACTIONS(1388), 2, - sym__newline, - anon_sym_COMMA, - [117454] = 4, + STATE(3971), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4616), 1, + sym_expr_interpolated, + [117651] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, + ACTIONS(3763), 1, + anon_sym_LBRACE, STATE(3946), 1, sym_comment, - ACTIONS(2509), 4, - anon_sym_if, + STATE(4617), 1, + sym_block, + ACTIONS(7505), 3, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [117470] = 4, + anon_sym_SEMI, + [117669] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6576), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7619), 2, - sym__newline, - anon_sym_COMMA, - STATE(3947), 2, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(3947), 1, sym_comment, - aux_sym_parameter_repeat2, - [117486] = 6, + STATE(4627), 1, + sym_block, + ACTIONS(7505), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [117687] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__space, - ACTIONS(6687), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7622), 1, - anon_sym_DOT, STATE(3948), 1, sym_comment, - ACTIONS(1730), 2, - sym__newline, - anon_sym_SEMI, - [117506] = 5, - ACTIONS(3), 1, + ACTIONS(2385), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2387), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [117703] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1730), 1, - sym__unquoted_pattern, - ACTIONS(7348), 1, + ACTIONS(7623), 1, aux_sym__immediate_decimal_token5, STATE(3949), 1, sym_comment, - ACTIONS(1728), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [117524] = 6, + ACTIONS(1816), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1818), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [117721] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7624), 1, + ACTIONS(7625), 1, anon_sym_DQUOTE, STATE(3950), 1, sym_comment, - STATE(4319), 1, + STATE(4321), 1, aux_sym_string_content_repeat1, - STATE(4885), 1, + STATE(4884), 1, sym_string_content, - ACTIONS(7596), 2, + ACTIONS(7617), 2, sym__escaped_str_content, sym_escape_sequence, - [117544] = 5, + [117741] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3809), 1, - anon_sym_LBRACE, STATE(3951), 1, sym_comment, - STATE(4433), 1, - sym_block, - ACTIONS(7394), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [117562] = 4, - ACTIONS(103), 1, + ACTIONS(1856), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1854), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [117757] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1641), 1, + sym__unquoted_pattern, STATE(3952), 1, sym_comment, - ACTIONS(2325), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2327), 3, + ACTIONS(2525), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [117578] = 7, + anon_sym_PIPE, + anon_sym_EQ_GT, + [117773] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, + ACTIONS(6582), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7627), 2, sym__newline, - ACTIONS(7626), 1, - anon_sym_EQ, - ACTIONS(7628), 1, - anon_sym_COLON, - STATE(3953), 1, + anon_sym_COMMA, + STATE(3953), 2, sym_comment, - STATE(4401), 1, - aux_sym__repeat_newline, - STATE(5096), 1, - sym_param_type, - [117600] = 5, - ACTIONS(3), 1, + aux_sym_parameter_repeat2, + [117789] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1808), 1, - sym__unquoted_pattern, - ACTIONS(7630), 1, - aux_sym__immediate_decimal_token5, STATE(3954), 1, sym_comment, - ACTIONS(1806), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [117618] = 4, + ACTIONS(1738), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1740), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [117805] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2556), 1, + ACTIONS(2589), 1, sym__unquoted_pattern, STATE(3955), 1, sym_comment, - ACTIONS(7222), 4, + ACTIONS(2583), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [117634] = 6, + [117821] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7596), 1, + anon_sym_COLON, + ACTIONS(7630), 1, + anon_sym_EQ, + STATE(3956), 1, + sym_comment, + STATE(4650), 1, + aux_sym__repeat_newline, + STATE(5048), 1, + sym_param_type, + [117843] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7632), 1, anon_sym_DQUOTE, - STATE(3956), 1, + STATE(3957), 1, sym_comment, - STATE(4319), 1, + STATE(4321), 1, aux_sym_string_content_repeat1, - STATE(4897), 1, + STATE(4896), 1, sym_string_content, - ACTIONS(7596), 2, + ACTIONS(7617), 2, sym__escaped_str_content, sym_escape_sequence, - [117654] = 5, + [117863] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(3957), 1, - sym_comment, - STATE(4446), 1, - sym_block, - ACTIONS(7507), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [117672] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2562), 1, - sym__space, - ACTIONS(2566), 1, - anon_sym_LPAREN2, - ACTIONS(2568), 1, - sym__unquoted_pattern, STATE(3958), 1, sym_comment, - ACTIONS(2564), 2, - sym__newline, - anon_sym_SEMI, - [117692] = 7, - ACTIONS(103), 1, + ACTIONS(1818), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1816), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [117879] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2878), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(5292), 1, - anon_sym_DOLLAR, - ACTIONS(7134), 1, - sym_identifier, STATE(3959), 1, sym_comment, - STATE(4191), 1, - sym_val_variable, - STATE(4852), 1, - sym__variable_name, - [117714] = 3, - ACTIONS(3), 1, + ACTIONS(1740), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern, + ACTIONS(1738), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [117895] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2011), 1, + sym__entry_separator, + ACTIONS(2013), 1, + anon_sym_RBRACE, + ACTIONS(7634), 1, + anon_sym_DOT_DOT2, STATE(3960), 1, sym_comment, - ACTIONS(5040), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, + ACTIONS(7636), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [117915] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3763), 1, anon_sym_LBRACE, - [117728] = 6, + STATE(3961), 1, + sym_comment, + STATE(4433), 1, + sym_block, + ACTIONS(7330), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [117933] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7634), 1, + ACTIONS(7638), 1, anon_sym_DQUOTE, - STATE(3961), 1, + STATE(3962), 1, sym_comment, - STATE(4319), 1, + STATE(4321), 1, aux_sym_string_content_repeat1, - STATE(4907), 1, + STATE(4906), 1, sym_string_content, - ACTIONS(7596), 2, + ACTIONS(7617), 2, sym__escaped_str_content, sym_escape_sequence, - [117748] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7636), 1, - anon_sym_LPAREN, - ACTIONS(7639), 1, - anon_sym_SQUOTE2, - ACTIONS(7641), 1, - sym_unescaped_interpolated_content, - STATE(4615), 1, - sym_expr_interpolated, - STATE(3962), 2, - sym_comment, - aux_sym__inter_single_quotes_repeat1, - [117768] = 5, + [117953] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1356), 1, - aux_sym__block_body_repeat1, + ACTIONS(2387), 1, + sym__unquoted_pattern, STATE(3963), 1, sym_comment, - ACTIONS(153), 2, + ACTIONS(2385), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - ACTIONS(459), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [117786] = 5, + anon_sym_PIPE, + anon_sym_EQ_GT, + [117969] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3809), 1, - anon_sym_LBRACE, + ACTIONS(2597), 1, + sym__unquoted_pattern, STATE(3964), 1, sym_comment, - STATE(4438), 1, - sym_block, - ACTIONS(7394), 3, - ts_builtin_sym_end, + ACTIONS(2591), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - [117804] = 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + [117985] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7644), 1, - anon_sym_DQUOTE, + ACTIONS(1706), 1, + sym__space, + ACTIONS(2620), 1, + anon_sym_LPAREN2, + ACTIONS(2622), 1, + sym__unquoted_pattern, STATE(3965), 1, sym_comment, - STATE(4319), 1, - aux_sym_string_content_repeat1, - STATE(4903), 1, - sym_string_content, - ACTIONS(7596), 2, - sym__escaped_str_content, - sym_escape_sequence, - [117824] = 6, + ACTIONS(1604), 2, + sym__newline, + anon_sym_SEMI, + [118005] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7646), 1, - anon_sym_DQUOTE, + ACTIONS(7425), 1, + anon_sym_DOT_DOT2, + ACTIONS(7640), 1, + anon_sym_RBRACE, + ACTIONS(7642), 1, + sym__entry_separator, STATE(3966), 1, sym_comment, - STATE(4319), 1, + ACTIONS(7427), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [118025] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7644), 1, + anon_sym_DQUOTE, + STATE(3967), 1, + sym_comment, + STATE(4321), 1, aux_sym_string_content_repeat1, - STATE(4916), 1, + STATE(4915), 1, sym_string_content, - ACTIONS(7596), 2, + ACTIONS(7617), 2, sym__escaped_str_content, sym_escape_sequence, - [117844] = 7, + [118045] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7598), 1, - anon_sym_LPAREN, - ACTIONS(7602), 1, - sym_unescaped_interpolated_content, - ACTIONS(7648), 1, - anon_sym_SQUOTE2, - STATE(3967), 1, + ACTIONS(7425), 1, + anon_sym_DOT_DOT2, + ACTIONS(7513), 1, + anon_sym_RBRACK, + ACTIONS(7515), 1, + sym__entry_separator, + STATE(3968), 1, sym_comment, - STATE(3990), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4615), 1, - sym_expr_interpolated, - [117866] = 4, + ACTIONS(7427), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [118065] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(3968), 1, - sym_comment, - ACTIONS(1738), 2, + ACTIONS(2620), 1, anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1740), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(2622), 1, sym__unquoted_pattern_in_list, - [117882] = 3, - ACTIONS(3), 1, - anon_sym_POUND, + ACTIONS(7342), 1, + anon_sym_DOT_DOT, + ACTIONS(7517), 1, + anon_sym_RBRACK, + ACTIONS(7520), 1, + sym__entry_separator, STATE(3969), 1, sym_comment, - ACTIONS(5032), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [117896] = 7, + [118087] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(7628), 1, - anon_sym_COLON, - ACTIONS(7650), 1, - anon_sym_EQ, + ACTIONS(2622), 1, + sym__unquoted_pattern, STATE(3970), 1, sym_comment, - STATE(4401), 1, - aux_sym__repeat_newline, - STATE(4922), 1, - sym_param_type, - [117918] = 6, + ACTIONS(7205), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [118103] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7652), 1, - anon_sym_DQUOTE, + ACTIONS(7603), 1, + anon_sym_LPAREN, + ACTIONS(7607), 1, + sym_unescaped_interpolated_content, + ACTIONS(7646), 1, + anon_sym_SQUOTE2, STATE(3971), 1, sym_comment, - STATE(4319), 1, + STATE(4059), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4616), 1, + sym_expr_interpolated, + [118125] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7648), 1, + anon_sym_DQUOTE, + STATE(3972), 1, + sym_comment, + STATE(4321), 1, aux_sym_string_content_repeat1, - STATE(4923), 1, + STATE(4922), 1, sym_string_content, - ACTIONS(7596), 2, + ACTIONS(7617), 2, sym__escaped_str_content, sym_escape_sequence, - [117938] = 4, + [118145] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2531), 1, - sym__unquoted_pattern, - STATE(3972), 1, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(3973), 1, sym_comment, - ACTIONS(2525), 4, - anon_sym_if, + STATE(4630), 1, + sym_block, + ACTIONS(7491), 3, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [117954] = 4, + anon_sym_SEMI, + [118163] = 7, ACTIONS(103), 1, anon_sym_POUND, - STATE(3973), 1, + ACTIONS(7603), 1, + anon_sym_LPAREN, + ACTIONS(7607), 1, + sym_unescaped_interpolated_content, + ACTIONS(7650), 1, + anon_sym_SQUOTE2, + STATE(3974), 1, sym_comment, - ACTIONS(1806), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1808), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [117970] = 6, + STATE(4059), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4616), 1, + sym_expr_interpolated, + [118185] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7654), 1, + ACTIONS(7652), 1, anon_sym_DQUOTE, - STATE(3974), 1, + STATE(3975), 1, sym_comment, - STATE(4319), 1, + STATE(4321), 1, aux_sym_string_content_repeat1, - STATE(4930), 1, + STATE(4929), 1, sym_string_content, - ACTIONS(7596), 2, + ACTIONS(7617), 2, sym__escaped_str_content, sym_escape_sequence, - [117990] = 6, - ACTIONS(103), 1, + [118205] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern, - ACTIONS(1942), 1, - sym__space, - ACTIONS(1946), 1, - anon_sym_LPAREN2, - STATE(3975), 1, + STATE(3976), 1, sym_comment, - ACTIONS(1944), 2, - sym__newline, - anon_sym_SEMI, - [118010] = 4, + STATE(5059), 1, + sym__immediate_decimal, + ACTIONS(6548), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(6550), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [118223] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2572), 1, + ACTIONS(1818), 1, sym__unquoted_pattern, - STATE(3976), 1, + ACTIONS(7654), 1, + aux_sym__immediate_decimal_token5, + STATE(3977), 1, sym_comment, - ACTIONS(994), 4, - anon_sym_if, + ACTIONS(1816), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [118026] = 6, + [118241] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(7656), 1, anon_sym_DQUOTE, - STATE(3977), 1, + STATE(3978), 1, sym_comment, - STATE(4319), 1, + STATE(4321), 1, aux_sym_string_content_repeat1, - STATE(4937), 1, + STATE(4936), 1, sym_string_content, - ACTIONS(7596), 2, + ACTIONS(7617), 2, sym__escaped_str_content, sym_escape_sequence, - [118046] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2572), 1, - sym__unquoted_pattern, - STATE(3978), 1, - sym_comment, - ACTIONS(1012), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118062] = 5, + [118261] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7658), 1, + anon_sym_RBRACK, + ACTIONS(7661), 1, + anon_sym_DOT_DOT, + STATE(3953), 1, + aux_sym_parameter_repeat2, STATE(3979), 1, sym_comment, - STATE(5019), 1, - sym__immediate_decimal, - ACTIONS(7477), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(7491), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [118080] = 6, + ACTIONS(1388), 2, + sym__newline, + anon_sym_COMMA, + [118281] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7658), 1, + ACTIONS(7663), 1, anon_sym_DQUOTE, STATE(3980), 1, sym_comment, - STATE(4319), 1, + STATE(4321), 1, aux_sym_string_content_repeat1, - STATE(4944), 1, + STATE(4940), 1, sym_string_content, - ACTIONS(7596), 2, + ACTIONS(7617), 2, sym__escaped_str_content, sym_escape_sequence, - [118100] = 4, + [118301] = 6, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7665), 1, + anon_sym_DQUOTE, STATE(3981), 1, sym_comment, - ACTIONS(1844), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1846), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [118116] = 4, - ACTIONS(3), 1, + STATE(4321), 1, + aux_sym_string_content_repeat1, + STATE(4943), 1, + sym_string_content, + ACTIONS(7617), 2, + sym__escaped_str_content, + sym_escape_sequence, + [118321] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1962), 1, + ACTIONS(1018), 1, + sym__space, + ACTIONS(2602), 1, + anon_sym_LPAREN2, + ACTIONS(2604), 1, sym__unquoted_pattern, STATE(3982), 1, sym_comment, - ACTIONS(2574), 4, - anon_sym_if, + ACTIONS(1002), 2, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118132] = 6, + anon_sym_SEMI, + [118341] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7660), 1, - anon_sym_DQUOTE, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(5317), 1, + anon_sym_DOLLAR, + ACTIONS(7146), 1, + sym_identifier, STATE(3983), 1, sym_comment, - STATE(4319), 1, + STATE(4180), 1, + sym_val_variable, + STATE(5223), 1, + sym__variable_name, + [118363] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7667), 1, + anon_sym_DQUOTE, + STATE(3984), 1, + sym_comment, + STATE(4321), 1, aux_sym_string_content_repeat1, - STATE(4951), 1, + STATE(4950), 1, sym_string_content, - ACTIONS(7596), 2, + ACTIONS(7617), 2, sym__escaped_str_content, sym_escape_sequence, - [118152] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern, - STATE(3984), 1, - sym_comment, - ACTIONS(1942), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118168] = 6, + [118383] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7662), 1, + ACTIONS(7669), 1, anon_sym_DQUOTE, STATE(3985), 1, sym_comment, - STATE(4319), 1, + STATE(4321), 1, aux_sym_string_content_repeat1, - STATE(4957), 1, + STATE(5101), 1, sym_string_content, - ACTIONS(7596), 2, + ACTIONS(7617), 2, sym__escaped_str_content, sym_escape_sequence, - [118188] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3986), 1, - sym_comment, - ACTIONS(1740), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1738), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [118204] = 6, + [118403] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7664), 1, + ACTIONS(7671), 1, anon_sym_DQUOTE, - STATE(3987), 1, + STATE(3986), 1, sym_comment, - STATE(4319), 1, + STATE(4321), 1, aux_sym_string_content_repeat1, - STATE(4962), 1, + STATE(4956), 1, sym_string_content, - ACTIONS(7596), 2, + ACTIONS(7617), 2, sym__escaped_str_content, sym_escape_sequence, - [118224] = 6, + [118423] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2001), 1, + sym__space, + ACTIONS(2005), 1, + anon_sym_LPAREN2, + STATE(3987), 1, + sym_comment, + ACTIONS(2003), 2, + sym__newline, + anon_sym_SEMI, + [118443] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7666), 1, + ACTIONS(7673), 1, anon_sym_DQUOTE, STATE(3988), 1, sym_comment, - STATE(4319), 1, + STATE(4321), 1, aux_sym_string_content_repeat1, - STATE(4967), 1, + STATE(4961), 1, sym_string_content, - ACTIONS(7596), 2, + ACTIONS(7617), 2, sym__escaped_str_content, sym_escape_sequence, - [118244] = 3, - ACTIONS(3), 1, + [118463] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7675), 1, + anon_sym_DQUOTE, STATE(3989), 1, sym_comment, - ACTIONS(5054), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [118258] = 7, + STATE(4321), 1, + aux_sym_string_content_repeat1, + STATE(4966), 1, + sym_string_content, + ACTIONS(7617), 2, + sym__escaped_str_content, + sym_escape_sequence, + [118483] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7598), 1, + ACTIONS(7603), 1, anon_sym_LPAREN, - ACTIONS(7602), 1, + ACTIONS(7607), 1, sym_unescaped_interpolated_content, - ACTIONS(7668), 1, + ACTIONS(7677), 1, anon_sym_SQUOTE2, - STATE(3962), 1, - aux_sym__inter_single_quotes_repeat1, STATE(3990), 1, sym_comment, - STATE(4615), 1, + STATE(4034), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4616), 1, sym_expr_interpolated, - [118280] = 3, - ACTIONS(3), 1, + [118505] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2015), 1, + anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2533), 1, + sym__entry_separator, STATE(3991), 1, sym_comment, - ACTIONS(5044), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [118294] = 5, + ACTIONS(2535), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [118525] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1347), 1, - aux_sym__block_body_repeat1, + ACTIONS(2604), 1, + sym__unquoted_pattern, STATE(3992), 1, sym_comment, - ACTIONS(153), 2, + ACTIONS(1018), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - ACTIONS(3073), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [118312] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7670), 1, - sym_identifier, - ACTIONS(7672), 1, - anon_sym_DOLLAR, - STATE(3953), 1, - sym__variable_name, - STATE(3993), 1, - sym_comment, - STATE(4191), 1, - sym_val_variable, - STATE(4437), 1, - sym__assignment_pattern_parenthesized, - [118334] = 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + [118541] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1952), 1, - anon_sym_LBRACE, - ACTIONS(1962), 1, + ACTIONS(2604), 1, sym__unquoted_pattern, - ACTIONS(7674), 1, - anon_sym_DOT_DOT2, - STATE(3994), 1, + STATE(3993), 1, sym_comment, - ACTIONS(7676), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [118354] = 6, + ACTIONS(1004), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [118557] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1956), 1, + ACTIONS(2011), 1, + sym__entry_separator, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(1962), 1, + ACTIONS(2021), 1, sym__unquoted_pattern_in_list, - ACTIONS(2574), 1, - sym__entry_separator, - STATE(3995), 1, + STATE(3994), 1, sym_comment, - ACTIONS(2576), 2, + ACTIONS(2013), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [118374] = 6, - ACTIONS(103), 1, + [118577] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7509), 1, - anon_sym_DOT_DOT2, - ACTIONS(7678), 1, - anon_sym_RBRACE, - ACTIONS(7680), 1, - sym__entry_separator, + ACTIONS(7679), 1, + sym_identifier, + ACTIONS(7681), 1, + anon_sym_DOLLAR, + STATE(3956), 1, + sym__variable_name, + STATE(3995), 1, + sym_comment, + STATE(4180), 1, + sym_val_variable, + STATE(4436), 1, + sym__assignment_pattern_parenthesized, + [118599] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7503), 1, + aux_sym__immediate_decimal_token5, STATE(3996), 1, sym_comment, - ACTIONS(7511), 2, + ACTIONS(1750), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [118394] = 6, - ACTIONS(103), 1, + ACTIONS(1752), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [118617] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1952), 1, - sym__entry_separator, - ACTIONS(1956), 1, - anon_sym_LPAREN2, - ACTIONS(1962), 1, - sym__unquoted_pattern_in_list, + ACTIONS(1818), 1, + sym__unquoted_pattern, STATE(3997), 1, sym_comment, - ACTIONS(1954), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [118414] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3932), 1, + ACTIONS(1816), 4, + anon_sym_if, sym__newline, - ACTIONS(7128), 1, - anon_sym_LBRACK, - STATE(1943), 1, - aux_sym__types_body_repeat1, + anon_sym_PIPE, + anon_sym_EQ_GT, + [118633] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(5317), 1, + anon_sym_DOLLAR, + ACTIONS(7146), 1, + sym_identifier, STATE(3998), 1, sym_comment, - STATE(4406), 1, - sym_val_list, - STATE(4407), 1, - aux_sym__table_body_repeat1, - [118436] = 6, + STATE(4180), 1, + sym_val_variable, + STATE(4845), 1, + sym__variable_name, + [118655] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(994), 1, - sym__space, - ACTIONS(2570), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2525), 1, + sym__entry_separator, + ACTIONS(2581), 1, anon_sym_LPAREN2, - ACTIONS(2572), 1, - sym__unquoted_pattern, STATE(3999), 1, sym_comment, - ACTIONS(996), 2, - sym__newline, - anon_sym_SEMI, - [118456] = 4, + ACTIONS(2527), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [118675] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1808), 1, + ACTIONS(1856), 1, sym__unquoted_pattern, STATE(4000), 1, sym_comment, - ACTIONS(1806), 4, + ACTIONS(1854), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [118472] = 6, + [118691] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2509), 1, + ACTIONS(2583), 1, sym__entry_separator, - ACTIONS(2513), 1, + ACTIONS(2587), 1, anon_sym_LPAREN2, + ACTIONS(2589), 1, + sym__unquoted_pattern_in_list, STATE(4001), 1, sym_comment, - ACTIONS(2511), 2, + ACTIONS(2585), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [118492] = 6, + [118711] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1012), 1, + ACTIONS(4477), 1, sym__space, - ACTIONS(2570), 1, - anon_sym_LPAREN2, - ACTIONS(2572), 1, - sym__unquoted_pattern, + ACTIONS(7475), 1, + anon_sym_EQ2, + STATE(3112), 1, + sym__flag_equals_value, STATE(4002), 1, sym_comment, - ACTIONS(1004), 2, + ACTIONS(4475), 2, sym__newline, anon_sym_SEMI, - [118512] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1962), 1, - sym__unquoted_pattern, - STATE(4003), 1, - sym_comment, - ACTIONS(1952), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118528] = 6, + [118731] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7682), 1, - anon_sym_DQUOTE, - STATE(4004), 1, + ACTIONS(7425), 1, + anon_sym_DOT_DOT2, + ACTIONS(7683), 1, + anon_sym_RBRACE, + ACTIONS(7685), 1, + sym__entry_separator, + STATE(4003), 1, sym_comment, - STATE(4319), 1, - aux_sym_string_content_repeat1, - STATE(5049), 1, - sym_string_content, - ACTIONS(7596), 2, - sym__escaped_str_content, - sym_escape_sequence, - [118548] = 4, + ACTIONS(7427), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [118751] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1846), 1, - sym__unquoted_pattern, - STATE(4005), 1, + STATE(4004), 1, sym_comment, - ACTIONS(1844), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118564] = 7, + ACTIONS(5042), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [118765] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7628), 1, + ACTIONS(7596), 1, anon_sym_COLON, - ACTIONS(7684), 1, + ACTIONS(7687), 1, anon_sym_EQ, - STATE(4006), 1, + STATE(4005), 1, sym_comment, - STATE(4401), 1, + STATE(4650), 1, aux_sym__repeat_newline, - STATE(5015), 1, + STATE(5014), 1, sym_param_type, - [118586] = 6, - ACTIONS(103), 1, + [118787] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2525), 1, - sym__entry_separator, - ACTIONS(2529), 1, - anon_sym_LPAREN2, - ACTIONS(2531), 1, - sym__unquoted_pattern_in_list, - STATE(4007), 1, + STATE(4006), 1, sym_comment, - ACTIONS(2527), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [118606] = 7, + ACTIONS(5038), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [118801] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7598), 1, - anon_sym_LPAREN, - ACTIONS(7602), 1, - sym_unescaped_interpolated_content, - ACTIONS(7686), 1, - anon_sym_SQUOTE2, - STATE(4008), 1, - sym_comment, - STATE(4018), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4615), 1, - sym_expr_interpolated, - [118628] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4009), 1, + ACTIONS(7689), 1, + anon_sym_DQUOTE, + STATE(4007), 1, sym_comment, - STATE(5076), 1, - sym__immediate_decimal, - ACTIONS(6542), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token2, - ACTIONS(6544), 2, - aux_sym__immediate_decimal_token3, - aux_sym__immediate_decimal_token4, - [118646] = 4, + STATE(4321), 1, + aux_sym_string_content_repeat1, + STATE(5104), 1, + sym_string_content, + ACTIONS(7617), 2, + sym__escaped_str_content, + sym_escape_sequence, + [118821] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7688), 1, + ACTIONS(7601), 1, anon_sym_QMARK2, - STATE(4010), 1, + STATE(4008), 1, sym_comment, - ACTIONS(1446), 4, + ACTIONS(1450), 4, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, anon_sym_DOT2, - [118662] = 6, + [118837] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7509), 1, + ACTIONS(7425), 1, anon_sym_DOT_DOT2, - ACTIONS(7690), 1, + ACTIONS(7691), 1, anon_sym_RBRACE, - ACTIONS(7692), 1, + ACTIONS(7693), 1, sym__entry_separator, - STATE(4011), 1, + STATE(4009), 1, sym_comment, - ACTIONS(7511), 2, + ACTIONS(7427), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [118682] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7688), 1, - anon_sym_BANG, - STATE(4012), 1, - sym_comment, - ACTIONS(1446), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [118698] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1448), 1, - sym__entry_separator, - ACTIONS(7694), 1, - anon_sym_QMARK2, - STATE(4013), 1, - sym_comment, - ACTIONS(1446), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [118716] = 6, + [118857] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7509), 1, + ACTIONS(7425), 1, anon_sym_DOT_DOT2, - ACTIONS(7696), 1, + ACTIONS(7695), 1, anon_sym_RBRACE, - ACTIONS(7698), 1, + ACTIONS(7697), 1, sym__entry_separator, - STATE(4014), 1, + STATE(4010), 1, sym_comment, - ACTIONS(7511), 2, + ACTIONS(7427), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [118736] = 6, + [118877] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7603), 1, + anon_sym_LPAREN, + ACTIONS(7607), 1, + sym_unescaped_interpolated_content, + ACTIONS(7699), 1, + anon_sym_SQUOTE2, + STATE(4011), 1, + sym_comment, + STATE(4076), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4616), 1, + sym_expr_interpolated, + [118899] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1956), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(1962), 1, + ACTIONS(2021), 1, sym__unquoted_pattern, - ACTIONS(2574), 1, + ACTIONS(2533), 1, sym__space, - STATE(4015), 1, + STATE(4012), 1, sym_comment, - ACTIONS(2576), 2, + ACTIONS(2535), 2, sym__newline, anon_sym_SEMI, - [118756] = 5, + [118919] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7475), 1, - anon_sym_EQ2, - STATE(4016), 1, + ACTIONS(1724), 1, + sym__unquoted_pattern, + STATE(4013), 1, sym_comment, - STATE(4592), 1, - sym__flag_equals_value, - ACTIONS(4470), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [118774] = 6, + ACTIONS(908), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [118935] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1952), 1, + ACTIONS(2011), 1, sym__space, - ACTIONS(1956), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(1962), 1, + ACTIONS(2021), 1, sym__unquoted_pattern, - STATE(4017), 1, + STATE(4014), 1, sym_comment, - ACTIONS(1954), 2, + ACTIONS(2013), 2, sym__newline, anon_sym_SEMI, - [118794] = 7, - ACTIONS(103), 1, + [118955] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7598), 1, - anon_sym_LPAREN, - ACTIONS(7602), 1, - sym_unescaped_interpolated_content, - ACTIONS(7700), 1, - anon_sym_SQUOTE2, - STATE(3962), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4018), 1, + ACTIONS(7679), 1, + sym_identifier, + ACTIONS(7681), 1, + anon_sym_DOLLAR, + STATE(3932), 1, + sym__variable_name, + STATE(4015), 1, sym_comment, - STATE(4615), 1, - sym_expr_interpolated, - [118816] = 6, + STATE(4095), 1, + sym__assignment_pattern, + STATE(4180), 1, + sym_val_variable, + [118977] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7702), 1, + ACTIONS(1872), 1, + sym__table_head_separator, + ACTIONS(7701), 1, + anon_sym_DOT2, + STATE(4016), 1, + sym_comment, + STATE(4367), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4745), 1, + sym_path, + STATE(5066), 1, + sym_cell_path, + [118999] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7703), 1, anon_sym_QMARK2, - ACTIONS(7704), 1, + ACTIONS(7705), 1, anon_sym_BANG, - STATE(4019), 1, + STATE(4017), 1, sym_comment, - STATE(4778), 1, + STATE(4776), 1, sym__path_suffix, - ACTIONS(1440), 2, + ACTIONS(1434), 2, sym__table_head_separator, anon_sym_DOT2, - [118836] = 5, + [119019] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7042), 1, + sym__entry_separator, + ACTIONS(7109), 1, + anon_sym_DOT2, + STATE(346), 1, + sym_path, + STATE(3767), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4018), 1, + sym_comment, + STATE(4576), 1, + sym_cell_path, + [119041] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7603), 1, + anon_sym_LPAREN, + ACTIONS(7607), 1, + sym_unescaped_interpolated_content, + ACTIONS(7707), 1, + anon_sym_SQUOTE2, + STATE(3937), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4019), 1, + sym_comment, + STATE(4616), 1, + sym_expr_interpolated, + [119063] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7338), 1, - aux_sym__immediate_decimal_token5, + STATE(3953), 1, + aux_sym_parameter_repeat2, STATE(4020), 1, sym_comment, - ACTIONS(1728), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1730), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [118854] = 4, + ACTIONS(1388), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(7661), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [119081] = 7, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7603), 1, + anon_sym_LPAREN, + ACTIONS(7607), 1, + sym_unescaped_interpolated_content, + ACTIONS(7709), 1, + anon_sym_SQUOTE2, + STATE(3974), 1, + aux_sym__inter_single_quotes_repeat1, STATE(4021), 1, sym_comment, - ACTIONS(2325), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(2327), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - sym__unquoted_pattern_in_list, - [118870] = 4, - ACTIONS(3), 1, + STATE(4616), 1, + sym_expr_interpolated, + [119103] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2327), 1, - sym__unquoted_pattern, + ACTIONS(7711), 1, + anon_sym_DQUOTE, STATE(4022), 1, sym_comment, - ACTIONS(2325), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118886] = 7, - ACTIONS(103), 1, + STATE(4321), 1, + aux_sym_string_content_repeat1, + STATE(4894), 1, + sym_string_content, + ACTIONS(7617), 2, + sym__escaped_str_content, + sym_escape_sequence, + [119123] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7048), 1, - sym__entry_separator, - ACTIONS(7113), 1, - anon_sym_DOT2, - STATE(367), 1, - sym_path, - STATE(3771), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(3763), 1, + anon_sym_LBRACE, STATE(4023), 1, sym_comment, - STATE(4485), 1, - sym_cell_path, - [118908] = 7, + STATE(4557), 1, + sym_block, + ACTIONS(7383), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [119141] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7111), 1, + ACTIONS(2166), 1, sym__entry_separator, - ACTIONS(7113), 1, - anon_sym_DOT2, - STATE(367), 1, - sym_path, - STATE(3771), 1, - aux_sym__where_predicate_lhs_repeat1, + ACTIONS(7713), 1, + anon_sym_LBRACK2, STATE(4024), 1, sym_comment, - STATE(4571), 1, - sym_cell_path, - [118930] = 4, + ACTIONS(2168), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [119159] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2568), 1, + ACTIONS(1598), 1, sym__unquoted_pattern, + ACTIONS(2001), 1, + anon_sym_LBRACE, + ACTIONS(7715), 1, + anon_sym_DOT_DOT2, STATE(4025), 1, sym_comment, - ACTIONS(2562), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [118946] = 6, + ACTIONS(7717), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [119179] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4026), 1, + sym_comment, + ACTIONS(5034), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [119193] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7706), 1, + ACTIONS(7719), 1, anon_sym_DQUOTE, - STATE(4026), 1, + STATE(4027), 1, sym_comment, - STATE(4319), 1, + STATE(4321), 1, aux_sym_string_content_repeat1, - STATE(5104), 1, + STATE(4881), 1, sym_string_content, - ACTIONS(7596), 2, + ACTIONS(7617), 2, sym__escaped_str_content, sym_escape_sequence, - [118966] = 7, + [119213] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7598), 1, + ACTIONS(7603), 1, anon_sym_LPAREN, - ACTIONS(7602), 1, + ACTIONS(7607), 1, sym_unescaped_interpolated_content, - ACTIONS(7708), 1, + ACTIONS(7721), 1, anon_sym_SQUOTE2, - STATE(4027), 1, + STATE(4028), 1, sym_comment, - STATE(4041), 1, + STATE(4054), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4615), 1, + STATE(4616), 1, sym_expr_interpolated, - [118988] = 5, + [119235] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2114), 1, - sym__entry_separator, - ACTIONS(7710), 1, - anon_sym_LBRACK2, - STATE(4028), 1, + ACTIONS(7603), 1, + anon_sym_LPAREN, + ACTIONS(7607), 1, + sym_unescaped_interpolated_content, + ACTIONS(7723), 1, + anon_sym_SQUOTE2, + STATE(4029), 1, sym_comment, - ACTIONS(2116), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [119006] = 6, + STATE(4075), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4616), 1, + sym_expr_interpolated, + [119257] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1689), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2525), 1, sym__space, - ACTIONS(2554), 1, + ACTIONS(2581), 1, anon_sym_LPAREN2, - ACTIONS(2556), 1, - sym__unquoted_pattern, - STATE(4029), 1, + STATE(4030), 1, sym_comment, - ACTIONS(1615), 2, + ACTIONS(2527), 2, sym__newline, anon_sym_SEMI, - [119026] = 7, - ACTIONS(103), 1, + [119277] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2533), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2834), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(2989), 1, - sym_block, - STATE(4030), 1, - sym_comment, - STATE(4199), 1, - aux_sym__repeat_newline, - [119048] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7712), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(7596), 1, + anon_sym_COLON, + ACTIONS(7725), 1, + anon_sym_EQ, STATE(4031), 1, sym_comment, - ACTIONS(1806), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1808), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [119066] = 6, - ACTIONS(103), 1, + STATE(4650), 1, + aux_sym__repeat_newline, + STATE(4947), 1, + sym_param_type, + [119299] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7509), 1, - anon_sym_DOT_DOT2, - ACTIONS(7714), 1, - anon_sym_RBRACE, - ACTIONS(7716), 1, - sym__entry_separator, + ACTIONS(3763), 1, + anon_sym_LBRACE, STATE(4032), 1, sym_comment, - ACTIONS(7511), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119086] = 7, + STATE(4598), 1, + sym_block, + ACTIONS(7383), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [119317] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2533), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(5292), 1, - anon_sym_DOLLAR, - ACTIONS(7134), 1, - sym_identifier, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2001), 1, + sym__entry_separator, + ACTIONS(2005), 1, + anon_sym_LPAREN2, STATE(4033), 1, sym_comment, - STATE(4191), 1, - sym_val_variable, - STATE(5225), 1, - sym__variable_name, - [119108] = 6, + ACTIONS(2003), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [119337] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4470), 1, - sym__space, - ACTIONS(7378), 1, - anon_sym_EQ2, - STATE(3067), 1, - sym__flag_equals_value, + ACTIONS(7603), 1, + anon_sym_LPAREN, + ACTIONS(7607), 1, + sym_unescaped_interpolated_content, + ACTIONS(7727), 1, + anon_sym_SQUOTE2, STATE(4034), 1, sym_comment, - ACTIONS(4468), 2, - sym__newline, - anon_sym_SEMI, - [119128] = 5, + STATE(4059), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4616), 1, + sym_expr_interpolated, + [119359] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7679), 1, + sym_identifier, + ACTIONS(7681), 1, + anon_sym_DOLLAR, + STATE(4035), 1, + sym_comment, + STATE(4079), 1, + sym__variable_name, + STATE(4180), 1, + sym_val_variable, + STATE(4638), 1, + sym__assignment_pattern, + [119381] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7718), 1, - aux_sym__immediate_decimal_token5, - STATE(4035), 1, + STATE(4036), 1, sym_comment, - ACTIONS(1806), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1808), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [119146] = 7, + STATE(5000), 1, + sym__immediate_decimal, + ACTIONS(7369), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token2, + ACTIONS(7371), 2, + aux_sym__immediate_decimal_token3, + aux_sym__immediate_decimal_token4, + [119399] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1434), 1, + ACTIONS(1446), 1, anon_sym_COLON2, ACTIONS(5052), 1, anon_sym_DOT2, - STATE(435), 1, + STATE(446), 1, sym_path, - STATE(493), 1, + STATE(499), 1, sym_cell_path, - STATE(2283), 1, + STATE(2294), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4036), 1, - sym_comment, - [119168] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3947), 1, - aux_sym_parameter_repeat2, STATE(4037), 1, sym_comment, - ACTIONS(1388), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(7617), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [119186] = 7, + [119421] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7598), 1, - anon_sym_LPAREN, - ACTIONS(7602), 1, - sym_unescaped_interpolated_content, - ACTIONS(7720), 1, - anon_sym_SQUOTE2, - STATE(3962), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(7575), 1, + aux_sym__immediate_decimal_token5, STATE(4038), 1, sym_comment, - STATE(4615), 1, - sym_expr_interpolated, - [119208] = 4, + ACTIONS(1750), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1752), 2, + anon_sym_RBRACK, + sym__unquoted_pattern_in_list, + [119439] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4039), 1, sym_comment, - ACTIONS(1808), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern, - ACTIONS(1806), 3, + ACTIONS(5054), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119224] = 6, - ACTIONS(3), 1, + [119453] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern, - ACTIONS(1942), 1, - anon_sym_LBRACE, - ACTIONS(7722), 1, - anon_sym_DOT_DOT2, + ACTIONS(7419), 1, + aux_sym__immediate_decimal_token5, STATE(4040), 1, sym_comment, - ACTIONS(7724), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119244] = 7, - ACTIONS(103), 1, + ACTIONS(1750), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1752), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [119471] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7598), 1, - anon_sym_LPAREN, - ACTIONS(7602), 1, - sym_unescaped_interpolated_content, - ACTIONS(7726), 1, - anon_sym_SQUOTE2, - STATE(3962), 1, - aux_sym__inter_single_quotes_repeat1, STATE(4041), 1, sym_comment, - STATE(4615), 1, - sym_expr_interpolated, - [119266] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(7628), 1, - anon_sym_COLON, - ACTIONS(7728), 1, + ACTIONS(4944), 5, anon_sym_EQ, - STATE(4042), 1, - sym_comment, - STATE(4401), 1, - aux_sym__repeat_newline, - STATE(5191), 1, - sym_param_type, - [119288] = 4, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [119485] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4043), 1, + STATE(4042), 1, sym_comment, - ACTIONS(2325), 2, + ACTIONS(2385), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(2327), 3, + ACTIONS(2387), 3, anon_sym_RBRACK, anon_sym_RBRACE, sym__unquoted_pattern_in_list, - [119304] = 6, + [119501] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2562), 1, + ACTIONS(2591), 1, sym__entry_separator, - ACTIONS(2566), 1, + ACTIONS(2595), 1, anon_sym_LPAREN2, - ACTIONS(2568), 1, + ACTIONS(2597), 1, sym__unquoted_pattern_in_list, - STATE(4044), 1, + STATE(4043), 1, sym_comment, - ACTIONS(2564), 2, + ACTIONS(2593), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [119324] = 5, - ACTIONS(3), 1, + [119521] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(4045), 1, + ACTIONS(2583), 1, + sym__space, + ACTIONS(2587), 1, + anon_sym_LPAREN2, + ACTIONS(2589), 1, + sym__unquoted_pattern, + STATE(4044), 1, sym_comment, - STATE(4643), 1, - sym_block, - ACTIONS(7388), 3, - ts_builtin_sym_end, + ACTIONS(2585), 2, sym__newline, anon_sym_SEMI, - [119342] = 6, + [119541] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7729), 1, + aux_sym__immediate_decimal_token5, + STATE(4045), 1, + sym_comment, + ACTIONS(1816), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1818), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [119559] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7730), 1, + ACTIONS(7731), 1, anon_sym_DQUOTE, STATE(4046), 1, sym_comment, - STATE(4319), 1, + STATE(4321), 1, aux_sym_string_content_repeat1, - STATE(4900), 1, + STATE(5217), 1, sym_string_content, - ACTIONS(7596), 2, + ACTIONS(7617), 2, sym__escaped_str_content, sym_escape_sequence, - [119362] = 3, - ACTIONS(3), 1, + [119579] = 7, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7603), 1, + anon_sym_LPAREN, + ACTIONS(7607), 1, + sym_unescaped_interpolated_content, + ACTIONS(7733), 1, + anon_sym_SQUOTE2, STATE(4047), 1, sym_comment, - ACTIONS(4972), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, - anon_sym_LBRACE, - [119376] = 7, - ACTIONS(3), 1, + STATE(4058), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4616), 1, + sym_expr_interpolated, + [119601] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7670), 1, - sym_identifier, - ACTIONS(7672), 1, - anon_sym_DOLLAR, + ACTIONS(5737), 1, + sym__space, + ACTIONS(7475), 1, + anon_sym_EQ2, + STATE(3072), 1, + sym__flag_equals_value, STATE(4048), 1, sym_comment, - STATE(4062), 1, - sym__variable_name, - STATE(4094), 1, - sym__assignment_pattern, - STATE(4191), 1, - sym_val_variable, - [119398] = 6, - ACTIONS(103), 1, + ACTIONS(5735), 2, + sym__newline, + anon_sym_SEMI, + [119621] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7732), 1, - anon_sym_DQUOTE, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7596), 1, + anon_sym_COLON, + ACTIONS(7735), 1, + anon_sym_EQ, STATE(4049), 1, sym_comment, - STATE(4319), 1, - aux_sym_string_content_repeat1, - STATE(4954), 1, - sym_string_content, - ACTIONS(7596), 2, - sym__escaped_str_content, - sym_escape_sequence, - [119418] = 4, + STATE(4650), 1, + aux_sym__repeat_newline, + STATE(4914), 1, + sym_param_type, + [119643] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, + ACTIONS(1598), 1, sym__unquoted_pattern, STATE(4050), 1, sym_comment, - ACTIONS(890), 4, + ACTIONS(2001), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [119434] = 7, - ACTIONS(103), 1, + [119659] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7598), 1, - anon_sym_LPAREN, - ACTIONS(7602), 1, - sym_unescaped_interpolated_content, - ACTIONS(7734), 1, - anon_sym_SQUOTE2, - STATE(3937), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(7679), 1, + sym_identifier, + ACTIONS(7681), 1, + anon_sym_DOLLAR, + STATE(4031), 1, + sym__variable_name, STATE(4051), 1, sym_comment, - STATE(4615), 1, - sym_expr_interpolated, - [119456] = 5, - ACTIONS(103), 1, + STATE(4095), 1, + sym__assignment_pattern, + STATE(4180), 1, + sym_val_variable, + [119681] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1448), 1, - sym__entry_separator, - ACTIONS(7694), 1, - anon_sym_BANG, + ACTIONS(1838), 1, + sym__table_head_separator, + ACTIONS(7701), 1, + anon_sym_DOT2, STATE(4052), 1, sym_comment, - ACTIONS(1446), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [119474] = 6, - ACTIONS(103), 1, + STATE(4367), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4745), 1, + sym_path, + STATE(5023), 1, + sym_cell_path, + [119703] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern_in_list, - ACTIONS(1942), 1, - sym__entry_separator, - ACTIONS(1946), 1, - anon_sym_LPAREN2, STATE(4053), 1, sym_comment, - ACTIONS(1944), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [119494] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7736), 1, - anon_sym_DQUOTE, - STATE(4054), 1, - sym_comment, - STATE(4319), 1, - aux_sym_string_content_repeat1, - STATE(5223), 1, - sym_string_content, - ACTIONS(7596), 2, - sym__escaped_str_content, - sym_escape_sequence, - [119514] = 7, + ACTIONS(5016), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [119717] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7598), 1, + ACTIONS(7603), 1, anon_sym_LPAREN, - ACTIONS(7602), 1, + ACTIONS(7607), 1, sym_unescaped_interpolated_content, - ACTIONS(7738), 1, + ACTIONS(7737), 1, anon_sym_SQUOTE2, - STATE(4055), 1, + STATE(4054), 1, sym_comment, - STATE(4065), 1, + STATE(4059), 1, aux_sym__inter_single_quotes_repeat1, - STATE(4615), 1, + STATE(4616), 1, sym_expr_interpolated, - [119536] = 6, + [119739] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(994), 1, + ACTIONS(1018), 1, sym__entry_separator, - ACTIONS(2570), 1, + ACTIONS(2602), 1, anon_sym_LPAREN2, - ACTIONS(2572), 1, + ACTIONS(2604), 1, sym__unquoted_pattern_in_list, - STATE(4056), 1, + STATE(4055), 1, sym_comment, - ACTIONS(996), 2, + ACTIONS(1002), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [119556] = 6, + [119759] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1012), 1, + ACTIONS(1004), 1, sym__entry_separator, - ACTIONS(2570), 1, + ACTIONS(2602), 1, anon_sym_LPAREN2, - ACTIONS(2572), 1, + ACTIONS(2604), 1, sym__unquoted_pattern_in_list, - STATE(4057), 1, + STATE(4056), 1, sym_comment, - ACTIONS(1004), 2, + ACTIONS(994), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [119576] = 6, + [119779] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7411), 1, - anon_sym_RBRACK, - ACTIONS(7419), 1, + ACTIONS(1750), 1, sym__entry_separator, - ACTIONS(7509), 1, - anon_sym_DOT_DOT2, - STATE(4058), 1, + ACTIONS(6677), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7739), 1, + anon_sym_DOT, + STATE(4057), 1, sym_comment, - ACTIONS(7511), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [119596] = 6, + ACTIONS(1752), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [119799] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7740), 1, - anon_sym_DQUOTE, + ACTIONS(7603), 1, + anon_sym_LPAREN, + ACTIONS(7607), 1, + sym_unescaped_interpolated_content, + ACTIONS(7741), 1, + anon_sym_SQUOTE2, + STATE(4058), 1, + sym_comment, STATE(4059), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4616), 1, + sym_expr_interpolated, + [119821] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7743), 1, + anon_sym_LPAREN, + ACTIONS(7746), 1, + anon_sym_SQUOTE2, + ACTIONS(7748), 1, + sym_unescaped_interpolated_content, + STATE(4616), 1, + sym_expr_interpolated, + STATE(4059), 2, sym_comment, - STATE(4319), 1, - aux_sym_string_content_repeat1, - STATE(5123), 1, - sym_string_content, - ACTIONS(7596), 2, - sym__escaped_str_content, - sym_escape_sequence, - [119616] = 4, + aux_sym__inter_single_quotes_repeat1, + [119841] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4060), 1, @@ -237391,467 +237580,471 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, sym__unquoted_pattern, - [119632] = 7, + [119857] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7598), 1, - anon_sym_LPAREN, - ACTIONS(7602), 1, - sym_unescaped_interpolated_content, - ACTIONS(7742), 1, - anon_sym_SQUOTE2, - STATE(3941), 1, - aux_sym__inter_single_quotes_repeat1, STATE(4061), 1, sym_comment, - STATE(4615), 1, - sym_expr_interpolated, - [119654] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(7628), 1, - anon_sym_COLON, - ACTIONS(7744), 1, - anon_sym_EQ, - STATE(4062), 1, - sym_comment, - STATE(4401), 1, - aux_sym__repeat_newline, - STATE(4980), 1, - sym_param_type, - [119676] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(2509), 1, + ACTIONS(2385), 2, sym__space, - ACTIONS(2513), 1, anon_sym_LPAREN2, - STATE(4063), 1, - sym_comment, - ACTIONS(2511), 2, + ACTIONS(2387), 3, sym__newline, anon_sym_SEMI, - [119696] = 6, + sym__unquoted_pattern, + [119873] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4062), 1, + sym_comment, + ACTIONS(1816), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1818), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [119889] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1942), 1, + ACTIONS(2001), 1, sym__entry_separator, - ACTIONS(1944), 1, + ACTIONS(2003), 1, anon_sym_RBRACE, - ACTIONS(7746), 1, + ACTIONS(7751), 1, anon_sym_DOT_DOT2, - STATE(4064), 1, + STATE(4063), 1, sym_comment, - ACTIONS(7748), 2, + ACTIONS(7753), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [119716] = 7, + [119909] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7598), 1, - anon_sym_LPAREN, - ACTIONS(7602), 1, - sym_unescaped_interpolated_content, - ACTIONS(7750), 1, - anon_sym_SQUOTE2, - STATE(3962), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4065), 1, + ACTIONS(2591), 1, + sym__space, + ACTIONS(2595), 1, + anon_sym_LPAREN2, + ACTIONS(2597), 1, + sym__unquoted_pattern, + STATE(4064), 1, sym_comment, - STATE(4615), 1, - sym_expr_interpolated, - [119738] = 5, + ACTIONS(2593), 2, + sym__newline, + anon_sym_SEMI, + [119929] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(4066), 1, + ACTIONS(1740), 1, + sym__unquoted_pattern, + STATE(4065), 1, sym_comment, - STATE(4620), 1, - sym_block, - ACTIONS(7543), 3, - ts_builtin_sym_end, + ACTIONS(1738), 4, + anon_sym_if, sym__newline, - anon_sym_SEMI, - [119756] = 7, + anon_sym_PIPE, + anon_sym_EQ_GT, + [119945] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7598), 1, - anon_sym_LPAREN, - ACTIONS(7602), 1, - sym_unescaped_interpolated_content, - ACTIONS(7752), 1, - anon_sym_SQUOTE2, - STATE(4038), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4067), 1, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(2991), 1, + sym_block, + STATE(4066), 1, sym_comment, - STATE(4615), 1, - sym_expr_interpolated, - [119778] = 7, + STATE(4198), 1, + aux_sym__repeat_newline, + [119967] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7670), 1, - sym_identifier, - ACTIONS(7672), 1, - anon_sym_DOLLAR, + STATE(4067), 1, + sym_comment, + ACTIONS(5062), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [119981] = 4, + ACTIONS(103), 1, + anon_sym_POUND, STATE(4068), 1, sym_comment, - STATE(4070), 1, - sym__variable_name, - STATE(4094), 1, - sym__assignment_pattern, - STATE(4191), 1, - sym_val_variable, - [119800] = 4, + ACTIONS(1816), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1818), 3, + sym__newline, + anon_sym_SEMI, + sym__unquoted_pattern, + [119997] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4069), 1, sym_comment, - ACTIONS(1806), 2, + ACTIONS(1854), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(1808), 3, + ACTIONS(1856), 3, sym__newline, anon_sym_SEMI, sym__unquoted_pattern, - [119816] = 7, + [120013] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(7628), 1, - anon_sym_COLON, - ACTIONS(7754), 1, - anon_sym_EQ, + ACTIONS(3763), 1, + anon_sym_LBRACE, STATE(4070), 1, sym_comment, - STATE(4401), 1, - aux_sym__repeat_newline, - STATE(5259), 1, - sym_param_type, - [119838] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5754), 1, - sym__space, - ACTIONS(7378), 1, - anon_sym_EQ2, - STATE(3124), 1, - sym__flag_equals_value, - STATE(4071), 1, - sym_comment, - ACTIONS(5752), 2, + STATE(4432), 1, + sym_block, + ACTIONS(7330), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [119858] = 6, + [120031] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7756), 1, + ACTIONS(7755), 1, anon_sym_DQUOTE, - STATE(4072), 1, + STATE(4071), 1, sym_comment, - STATE(4319), 1, + STATE(4321), 1, aux_sym_string_content_repeat1, - STATE(4831), 1, + STATE(5259), 1, sym_string_content, - ACTIONS(7596), 2, + ACTIONS(7617), 2, sym__escaped_str_content, sym_escape_sequence, - [119878] = 7, + [120051] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7603), 1, + anon_sym_LPAREN, + ACTIONS(7607), 1, + sym_unescaped_interpolated_content, + ACTIONS(7757), 1, + anon_sym_SQUOTE2, + STATE(4072), 1, + sym_comment, + STATE(4080), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4616), 1, + sym_expr_interpolated, + [120073] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7670), 1, + ACTIONS(7679), 1, sym_identifier, - ACTIONS(7672), 1, + ACTIONS(7681), 1, anon_sym_DOLLAR, - STATE(3970), 1, + STATE(4049), 1, sym__variable_name, STATE(4073), 1, sym_comment, - STATE(4094), 1, + STATE(4095), 1, sym__assignment_pattern, - STATE(4191), 1, + STATE(4180), 1, sym_val_variable, - [119900] = 4, + [120095] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4074), 1, sym_comment, - ACTIONS(1844), 2, - sym__space, + ACTIONS(1854), 2, anon_sym_LPAREN2, - ACTIONS(1846), 3, - sym__newline, - anon_sym_SEMI, - sym__unquoted_pattern, - [119916] = 5, - ACTIONS(3), 1, + sym__entry_separator, + ACTIONS(1856), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + sym__unquoted_pattern_in_list, + [120111] = 7, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3809), 1, - anon_sym_LBRACE, + ACTIONS(7603), 1, + anon_sym_LPAREN, + ACTIONS(7607), 1, + sym_unescaped_interpolated_content, + ACTIONS(7759), 1, + anon_sym_SQUOTE2, + STATE(4059), 1, + aux_sym__inter_single_quotes_repeat1, STATE(4075), 1, sym_comment, - STATE(4633), 1, - sym_block, - ACTIONS(7543), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [119934] = 7, + STATE(4616), 1, + sym_expr_interpolated, + [120133] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7598), 1, + ACTIONS(7603), 1, anon_sym_LPAREN, - ACTIONS(7602), 1, + ACTIONS(7607), 1, sym_unescaped_interpolated_content, - ACTIONS(7758), 1, + ACTIONS(7761), 1, anon_sym_SQUOTE2, + STATE(4059), 1, + aux_sym__inter_single_quotes_repeat1, STATE(4076), 1, sym_comment, - STATE(4085), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4615), 1, + STATE(4616), 1, sym_expr_interpolated, - [119956] = 7, + [120155] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7670), 1, - sym_identifier, - ACTIONS(7672), 1, - anon_sym_DOLLAR, - STATE(4042), 1, - sym__variable_name, STATE(4077), 1, sym_comment, - STATE(4191), 1, - sym_val_variable, - STATE(4646), 1, - sym__assignment_pattern, - [119978] = 7, + ACTIONS(5020), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT2, + anon_sym_LBRACE, + [120169] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1854), 1, - sym__table_head_separator, - ACTIONS(7604), 1, - anon_sym_DOT2, + STATE(1354), 1, + aux_sym__block_body_repeat1, STATE(4078), 1, sym_comment, - STATE(4367), 1, - aux_sym__where_predicate_lhs_repeat1, - STATE(4827), 1, - sym_path, - STATE(5035), 1, - sym_cell_path, - [120000] = 6, - ACTIONS(103), 1, + ACTIONS(153), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3044), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [120187] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, - sym__entry_separator, - ACTIONS(6679), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7760), 1, - anon_sym_DOT, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(7596), 1, + anon_sym_COLON, + ACTIONS(7763), 1, + anon_sym_EQ, STATE(4079), 1, sym_comment, - ACTIONS(1730), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [120020] = 7, + STATE(4650), 1, + aux_sym__repeat_newline, + STATE(5133), 1, + sym_param_type, + [120209] = 7, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(7603), 1, + anon_sym_LPAREN, + ACTIONS(7607), 1, + sym_unescaped_interpolated_content, + ACTIONS(7765), 1, + anon_sym_SQUOTE2, + STATE(4059), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(4080), 1, + sym_comment, + STATE(4616), 1, + sym_expr_interpolated, + [120231] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7670), 1, + ACTIONS(7679), 1, sym_identifier, - ACTIONS(7672), 1, + ACTIONS(7681), 1, anon_sym_DOLLAR, - STATE(4006), 1, + STATE(4005), 1, sym__variable_name, - STATE(4080), 1, + STATE(4081), 1, sym_comment, - STATE(4191), 1, + STATE(4180), 1, sym_val_variable, - STATE(4437), 1, + STATE(4436), 1, sym__assignment_pattern_parenthesized, - [120042] = 5, + [120253] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7762), 1, - anon_sym_DASH_DASH, - STATE(4586), 1, - sym_long_flag, - ACTIONS(4463), 2, + STATE(1347), 1, + aux_sym__block_body_repeat1, + STATE(4082), 1, + sym_comment, + ACTIONS(153), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(461), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [120271] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3940), 1, + sym__newline, + ACTIONS(7134), 1, anon_sym_LBRACK, - anon_sym_LPAREN, - STATE(4081), 2, + STATE(1939), 1, + aux_sym__types_body_repeat1, + STATE(4083), 1, sym_comment, - aux_sym_decl_def_repeat1, - [120060] = 5, - ACTIONS(103), 1, + STATE(4647), 1, + sym_val_list, + STATE(4652), 1, + aux_sym__table_body_repeat1, + [120293] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7360), 1, + ACTIONS(7767), 1, aux_sym__immediate_decimal_token5, - STATE(4082), 1, + STATE(4084), 1, sym_comment, - ACTIONS(1728), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1730), 2, - anon_sym_RBRACK, - sym__unquoted_pattern_in_list, - [120078] = 3, + ACTIONS(1816), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1818), 2, + anon_sym_DOT_DOT2, + sym__unquoted_pattern_in_record, + [120311] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4083), 1, - sym_comment, - ACTIONS(5012), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT2, + ACTIONS(2011), 1, anon_sym_LBRACE, - [120092] = 5, + ACTIONS(2021), 1, + sym__unquoted_pattern, + ACTIONS(7769), 1, + anon_sym_DOT_DOT2, + STATE(4085), 1, + sym_comment, + ACTIONS(7771), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [120331] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1351), 1, + ACTIONS(7409), 1, + anon_sym_EQ2, + STATE(4086), 1, + sym_comment, + STATE(4590), 1, + sym__flag_equals_value, + ACTIONS(4477), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [120349] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1350), 1, aux_sym__block_body_repeat1, - STATE(4084), 1, + STATE(4087), 1, sym_comment, ACTIONS(153), 2, sym__newline, anon_sym_SEMI, - ACTIONS(3078), 2, + ACTIONS(3075), 2, anon_sym_RPAREN, anon_sym_RBRACE, - [120110] = 7, + [120367] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7598), 1, - anon_sym_LPAREN, - ACTIONS(7602), 1, - sym_unescaped_interpolated_content, - ACTIONS(7765), 1, - anon_sym_SQUOTE2, - STATE(3962), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(4085), 1, + ACTIONS(7773), 1, + anon_sym_DQUOTE, + STATE(4088), 1, sym_comment, - STATE(4615), 1, - sym_expr_interpolated, - [120132] = 7, + STATE(4321), 1, + aux_sym_string_content_repeat1, + STATE(4853), 1, + sym_string_content, + ACTIONS(7617), 2, + sym__escaped_str_content, + sym_escape_sequence, + [120387] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2554), 1, - anon_sym_LPAREN2, - ACTIONS(2556), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7429), 1, - anon_sym_RBRACK, - ACTIONS(7432), 1, - anon_sym_DOT_DOT, - ACTIONS(7434), 1, + ACTIONS(1452), 1, sym__entry_separator, - STATE(4086), 1, + ACTIONS(7775), 1, + anon_sym_BANG, + STATE(4089), 1, sym_comment, - [120154] = 4, - ACTIONS(3), 1, + ACTIONS(1450), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [120405] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1740), 1, - sym__unquoted_pattern, - STATE(4087), 1, + ACTIONS(1452), 1, + sym__entry_separator, + ACTIONS(7775), 1, + anon_sym_QMARK2, + STATE(4090), 1, sym_comment, - ACTIONS(1738), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [120170] = 6, + ACTIONS(1450), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [120423] = 7, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7509), 1, - anon_sym_DOT_DOT2, - ACTIONS(7767), 1, - anon_sym_RBRACE, - ACTIONS(7769), 1, + ACTIONS(7048), 1, sym__entry_separator, - STATE(4088), 1, + ACTIONS(7109), 1, + anon_sym_DOT2, + STATE(346), 1, + sym_path, + STATE(3767), 1, + aux_sym__where_predicate_lhs_repeat1, + STATE(4091), 1, sym_comment, - ACTIONS(7511), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120190] = 3, + STATE(4486), 1, + sym_cell_path, + [120445] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4089), 1, + STATE(4092), 1, sym_comment, - ACTIONS(7771), 4, + ACTIONS(5140), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [120203] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4090), 1, - sym_comment, - ACTIONS(7773), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [120216] = 3, + anon_sym_LBRACE, + [120458] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4091), 1, + STATE(4093), 1, sym_comment, ACTIONS(1507), 4, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [120229] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2662), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2664), 1, - anon_sym_COLON2, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(4092), 1, - sym_comment, - STATE(4351), 1, - sym_block, - [120248] = 6, + [120471] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1750), 1, anon_sym_LBRACE, - ACTIONS(1730), 1, + ACTIONS(1752), 1, sym__unquoted_pattern, - ACTIONS(7775), 1, - anon_sym_DOT, ACTIONS(7777), 1, + anon_sym_DOT, + ACTIONS(7779), 1, aux_sym__immediate_decimal_token5, - STATE(4093), 1, + STATE(4094), 1, sym_comment, - [120267] = 3, + [120490] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4094), 1, + STATE(4095), 1, sym_comment, - ACTIONS(7779), 4, + ACTIONS(7781), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [120280] = 4, + [120503] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4095), 1, + STATE(4096), 1, sym_comment, ACTIONS(1738), 2, anon_sym_LPAREN2, @@ -237859,183 +238052,183 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1740), 2, anon_sym_RBRACK, sym__unquoted_pattern_in_list, - [120295] = 3, + [120518] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4096), 1, + STATE(4097), 1, sym_comment, - ACTIONS(7493), 4, + ACTIONS(7350), 4, anon_sym_export, anon_sym_def, anon_sym_extern, anon_sym_AT, - [120308] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1527), 1, - sym__entry_separator, - STATE(4097), 1, - sym_comment, - ACTIONS(1525), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [120323] = 5, + [120531] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1598), 1, sym__unquoted_pattern_in_record, - ACTIONS(7781), 1, + ACTIONS(7783), 1, anon_sym_DOT_DOT2, STATE(4098), 1, sym_comment, - ACTIONS(7783), 2, + ACTIONS(7785), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [120340] = 3, + [120548] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4099), 1, sym_comment, - ACTIONS(7785), 4, + ACTIONS(7787), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [120353] = 3, + [120561] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4100), 1, sym_comment, - ACTIONS(7787), 4, + ACTIONS(7789), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [120366] = 3, + [120574] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4101), 1, sym_comment, - ACTIONS(7789), 4, + ACTIONS(7791), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [120379] = 3, + [120587] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4102), 1, sym_comment, - ACTIONS(7791), 4, + ACTIONS(7793), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [120392] = 3, + [120600] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4103), 1, sym_comment, - ACTIONS(7793), 4, + ACTIONS(7795), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [120405] = 3, + [120613] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2597), 1, + sym__unquoted_pattern, STATE(4104), 1, sym_comment, - ACTIONS(1511), 4, + ACTIONS(2591), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [120628] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4105), 1, + sym_comment, + ACTIONS(1460), 4, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [120418] = 3, + [120641] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4105), 1, + STATE(4106), 1, sym_comment, - ACTIONS(7795), 4, + ACTIONS(7797), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [120431] = 3, + [120654] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4106), 1, + STATE(4107), 1, sym_comment, - ACTIONS(7797), 4, + ACTIONS(7799), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [120444] = 6, + [120667] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(1598), 1, sym__unquoted_pattern_in_list, - ACTIONS(1942), 1, + ACTIONS(2001), 1, sym__entry_separator, - ACTIONS(1944), 1, + ACTIONS(2003), 1, anon_sym_RBRACK, - ACTIONS(1946), 1, + ACTIONS(2005), 1, anon_sym_LPAREN2, - STATE(4107), 1, + STATE(4108), 1, + sym_comment, + [120686] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4109), 1, sym_comment, - [120463] = 4, + ACTIONS(1511), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [120699] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4108), 1, + STATE(4110), 1, sym_comment, - ACTIONS(1806), 2, + ACTIONS(1816), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1808), 2, + ACTIONS(1818), 2, anon_sym_RBRACK, sym__unquoted_pattern_in_list, - [120478] = 6, + [120714] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(994), 1, - sym__entry_separator, - ACTIONS(996), 1, + ACTIONS(1002), 1, anon_sym_RBRACK, - ACTIONS(2570), 1, + ACTIONS(1018), 1, + sym__entry_separator, + ACTIONS(2602), 1, anon_sym_LPAREN2, - ACTIONS(2572), 1, + ACTIONS(2604), 1, sym__unquoted_pattern_in_list, - STATE(4109), 1, + STATE(4111), 1, sym_comment, - [120497] = 6, + [120733] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1004), 1, + ACTIONS(994), 1, anon_sym_RBRACK, - ACTIONS(1012), 1, + ACTIONS(1004), 1, sym__entry_separator, - ACTIONS(2570), 1, + ACTIONS(2602), 1, anon_sym_LPAREN2, - ACTIONS(2572), 1, + ACTIONS(2604), 1, sym__unquoted_pattern_in_list, - STATE(4110), 1, - sym_comment, - [120516] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4111), 1, + STATE(4112), 1, sym_comment, - ACTIONS(1460), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [120529] = 4, + [120752] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4112), 1, + STATE(4113), 1, sym_comment, ACTIONS(1738), 2, anon_sym_DOT_DOT_EQ2, @@ -238043,165 +238236,155 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1740), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - [120544] = 5, + [120767] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7571), 1, + ACTIONS(7511), 1, anon_sym_RPAREN, - STATE(4113), 1, + STATE(4114), 1, sym_comment, - STATE(4292), 1, + STATE(4272), 1, aux_sym__block_body_repeat1, - ACTIONS(7799), 2, + ACTIONS(7801), 2, sym__newline, anon_sym_SEMI, - [120561] = 4, + [120784] = 4, ACTIONS(103), 1, anon_sym_POUND, - STATE(4114), 1, + STATE(4115), 1, sym_comment, - ACTIONS(1844), 2, + ACTIONS(1854), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1846), 2, + ACTIONS(1856), 2, anon_sym_RBRACK, sym__unquoted_pattern_in_list, - [120576] = 4, - ACTIONS(3), 1, + [120799] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(4115), 1, + ACTIONS(2417), 1, + sym__entry_separator, + STATE(4116), 1, sym_comment, - ACTIONS(1806), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1808), 2, - anon_sym_DOT_DOT2, - sym__unquoted_pattern_in_record, - [120591] = 4, + ACTIONS(2419), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [120814] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4116), 1, + STATE(4117), 1, sym_comment, - ACTIONS(1844), 2, + ACTIONS(1816), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1846), 2, + ACTIONS(1818), 2, anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - [120606] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2568), 1, - sym__unquoted_pattern, - STATE(4117), 1, - sym_comment, - ACTIONS(2562), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [120621] = 4, + [120829] = 4, ACTIONS(103), 1, anon_sym_POUND, STATE(4118), 1, sym_comment, - ACTIONS(7801), 2, + ACTIONS(7803), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7803), 2, + ACTIONS(7805), 2, anon_sym_LPAREN2, sym__entry_separator, - [120636] = 4, - ACTIONS(103), 1, + [120844] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(4119), 1, sym_comment, - ACTIONS(1738), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1740), 2, - anon_sym_RBRACE, + ACTIONS(1854), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1856), 2, + anon_sym_DOT_DOT2, sym__unquoted_pattern_in_record, - [120651] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(890), 1, - sym__space, - ACTIONS(5150), 1, - sym__unquoted_pattern, - STATE(4120), 1, - sym_comment, - ACTIONS(793), 2, - sym__newline, - anon_sym_SEMI, - [120668] = 5, + [120859] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1962), 1, + ACTIONS(2021), 1, sym__unquoted_pattern, - ACTIONS(7805), 1, + ACTIONS(7807), 1, anon_sym_DOT_DOT2, - STATE(4121), 1, + STATE(4120), 1, sym_comment, - ACTIONS(7807), 2, + ACTIONS(7809), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [120685] = 6, + [120876] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4121), 1, + sym_comment, + ACTIONS(1738), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1740), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [120891] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(3131), 1, + ACTIONS(3084), 1, anon_sym_SEMI, - STATE(1365), 1, + STATE(1358), 1, aux_sym__parenthesized_body_repeat1, STATE(4122), 1, sym_comment, - STATE(4466), 1, + STATE(4467), 1, aux_sym__repeat_newline, - [120704] = 6, + [120910] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(908), 1, + sym__space, + ACTIONS(5172), 1, + sym__unquoted_pattern, + STATE(4123), 1, + sym_comment, + ACTIONS(866), 2, + sym__newline, + anon_sym_SEMI, + [120927] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(7809), 1, + ACTIONS(7811), 1, anon_sym_LBRACK, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(4123), 1, + STATE(4124), 1, sym_comment, - STATE(5069), 1, + STATE(5040), 1, sym_val_list, - [120723] = 3, + [120946] = 3, ACTIONS(103), 1, anon_sym_POUND, - STATE(4124), 1, + STATE(4125), 1, sym_comment, - ACTIONS(1552), 4, + ACTIONS(1513), 4, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, anon_sym_DOT2, - [120736] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4125), 1, - sym_comment, - ACTIONS(1515), 4, - sym__table_head_separator, - anon_sym_QMARK2, - anon_sym_BANG, - anon_sym_DOT2, - [120749] = 3, + [120959] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4126), 1, sym_comment, - ACTIONS(7811), 4, + ACTIONS(7813), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [120762] = 3, + [120972] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4127), 1, @@ -238211,529 +238394,527 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [120775] = 5, + [120985] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2098), 1, - anon_sym_LBRACE, - ACTIONS(7813), 1, - anon_sym_DOT_DOT2, STATE(4128), 1, sym_comment, - ACTIONS(7815), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [120792] = 3, + ACTIONS(1523), 4, + sym__table_head_separator, + anon_sym_QMARK2, + anon_sym_BANG, + anon_sym_DOT2, + [120998] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4129), 1, sym_comment, - ACTIONS(7817), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [120805] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4130), 1, - sym_comment, - ACTIONS(1523), 4, + ACTIONS(1527), 4, sym__table_head_separator, anon_sym_QMARK2, anon_sym_BANG, anon_sym_DOT2, - [120818] = 4, + [121011] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4130), 1, + sym_comment, + ACTIONS(7815), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121024] = 6, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2702), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2704), 1, + anon_sym_COLON2, + ACTIONS(3787), 1, + anon_sym_LBRACE, STATE(4131), 1, sym_comment, - ACTIONS(1806), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1808), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [120833] = 5, + STATE(4354), 1, + sym_block, + [121043] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2134), 1, + anon_sym_LBRACE, + ACTIONS(7817), 1, + anon_sym_DOT_DOT2, + STATE(4132), 1, + sym_comment, + ACTIONS(7819), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121060] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4813), 1, + ACTIONS(4816), 1, sym__entry_separator, - STATE(2237), 1, + STATE(2244), 1, aux_sym__types_body_repeat2, - STATE(4132), 1, + STATE(4133), 1, sym_comment, - ACTIONS(7400), 2, + ACTIONS(7561), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [120850] = 6, + [121077] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2662), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2664), 1, - anon_sym_COLON2, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(4133), 1, + STATE(4134), 1, sym_comment, - STATE(4352), 1, - sym_block, - [120869] = 5, + ACTIONS(1816), 2, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1818), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [121092] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4813), 1, + STATE(4135), 1, + sym_comment, + ACTIONS(1854), 2, + anon_sym_LPAREN2, sym__entry_separator, - STATE(2246), 1, + ACTIONS(1856), 2, + anon_sym_RBRACE, + sym__unquoted_pattern_in_record, + [121107] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4816), 1, + sym__entry_separator, + STATE(2240), 1, aux_sym__types_body_repeat2, - STATE(4134), 1, + STATE(4136), 1, sym_comment, - ACTIONS(7819), 2, + ACTIONS(7821), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [120886] = 5, + [121124] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4813), 1, + ACTIONS(4816), 1, sym__entry_separator, - STATE(2236), 1, + STATE(2237), 1, aux_sym__types_body_repeat2, - STATE(4135), 1, + STATE(4137), 1, sym_comment, - ACTIONS(7819), 2, + ACTIONS(7821), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [120903] = 4, + [121141] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7821), 1, + ACTIONS(7823), 1, sym__space, - ACTIONS(5849), 2, + ACTIONS(5850), 2, sym__newline, anon_sym_SEMI, - STATE(4136), 2, + STATE(4138), 2, sym_comment, aux_sym_attribute_repeat1, - [120918] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4137), 1, - sym_comment, - ACTIONS(1844), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1846), 2, - anon_sym_RBRACE, - sym__unquoted_pattern_in_record, - [120933] = 3, + [121156] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4138), 1, + STATE(4139), 1, sym_comment, - ACTIONS(7824), 4, + ACTIONS(7826), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [120946] = 4, + [121169] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2311), 1, + ACTIONS(2449), 1, sym__entry_separator, - STATE(4139), 1, + STATE(4140), 1, sym_comment, - ACTIONS(2313), 3, + ACTIONS(2451), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [120961] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1617), 1, - anon_sym_RBRACE, - ACTIONS(1623), 1, - sym__entry_separator, - ACTIONS(1625), 1, - anon_sym_COLON2, - STATE(1460), 1, - aux_sym__types_body_repeat2, - STATE(4140), 1, - sym_comment, - [120980] = 6, + [121184] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, + ACTIONS(1612), 1, sym__entry_separator, - ACTIONS(1625), 1, + ACTIONS(1614), 1, anon_sym_COLON2, - ACTIONS(7826), 1, + ACTIONS(7828), 1, anon_sym_RBRACE, - STATE(1479), 1, + STATE(1467), 1, aux_sym__types_body_repeat2, STATE(4141), 1, sym_comment, - [120999] = 4, + [121203] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2341), 1, + ACTIONS(2453), 1, sym__entry_separator, STATE(4142), 1, sym_comment, - ACTIONS(2343), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [121014] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2345), 1, - sym__entry_separator, - STATE(4143), 1, - sym_comment, - ACTIONS(2347), 3, + ACTIONS(2455), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [121029] = 6, + [121218] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, + ACTIONS(1612), 1, sym__entry_separator, - ACTIONS(1625), 1, + ACTIONS(1614), 1, anon_sym_COLON2, - ACTIONS(7828), 1, + ACTIONS(7830), 1, anon_sym_RBRACE, - STATE(1480), 1, + STATE(1469), 1, aux_sym__types_body_repeat2, - STATE(4144), 1, + STATE(4143), 1, sym_comment, - [121048] = 4, + [121237] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2349), 1, + ACTIONS(2457), 1, sym__entry_separator, - STATE(4145), 1, + STATE(4144), 1, sym_comment, - ACTIONS(2351), 3, + ACTIONS(2459), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [121063] = 5, + [121252] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2066), 1, + anon_sym_LBRACE, + ACTIONS(7832), 1, + anon_sym_DOT_DOT2, + STATE(4145), 1, + sym_comment, + ACTIONS(7834), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [121269] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2136), 1, + ACTIONS(2074), 1, anon_sym_LBRACE, - ACTIONS(7830), 1, + ACTIONS(7836), 1, anon_sym_DOT_DOT2, STATE(4146), 1, sym_comment, - ACTIONS(7832), 2, + ACTIONS(7838), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [121080] = 5, + [121286] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2144), 1, + ACTIONS(2082), 1, anon_sym_LBRACE, - ACTIONS(7834), 1, + ACTIONS(7840), 1, anon_sym_DOT_DOT2, STATE(4147), 1, sym_comment, - ACTIONS(7836), 2, + ACTIONS(7842), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [121097] = 5, + [121303] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2152), 1, - anon_sym_LBRACE, - ACTIONS(7838), 1, - anon_sym_DOT_DOT2, + ACTIONS(1740), 1, + sym__unquoted_pattern, STATE(4148), 1, sym_comment, - ACTIONS(7840), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [121114] = 5, + ACTIONS(1738), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121318] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7214), 1, + ACTIONS(7199), 1, sym__entry_separator, - ACTIONS(7509), 1, + ACTIONS(7425), 1, anon_sym_DOT_DOT2, STATE(4149), 1, sym_comment, - ACTIONS(7511), 2, + ACTIONS(7427), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [121131] = 5, + [121335] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7222), 1, + ACTIONS(7205), 1, sym__entry_separator, - ACTIONS(7509), 1, + ACTIONS(7425), 1, anon_sym_DOT_DOT2, STATE(4150), 1, sym_comment, - ACTIONS(7511), 2, + ACTIONS(7427), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [121148] = 4, + [121352] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1740), 1, - sym__unquoted_pattern, - STATE(4151), 1, - sym_comment, - ACTIONS(1738), 3, + ACTIONS(7844), 1, sym__newline, + ACTIONS(7847), 1, anon_sym_PIPE, + ACTIONS(7850), 1, anon_sym_EQ_GT, - [121163] = 4, - ACTIONS(3), 1, + STATE(4151), 2, + sym_comment, + aux_sym_match_pattern_repeat1, + [121369] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1808), 1, - sym__unquoted_pattern, + ACTIONS(5260), 1, + anon_sym_LPAREN2, + ACTIONS(7683), 1, + anon_sym_RBRACE, + ACTIONS(7685), 1, + sym__entry_separator, STATE(4152), 1, sym_comment, - ACTIONS(1806), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [121178] = 3, + STATE(4661), 1, + sym__expr_parenthesized_immediate, + [121388] = 3, ACTIONS(103), 1, anon_sym_POUND, STATE(4153), 1, sym_comment, - ACTIONS(1525), 4, + ACTIONS(1529), 4, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, anon_sym_DOT2, - [121191] = 4, + [121401] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1846), 1, + ACTIONS(1818), 1, sym__unquoted_pattern, STATE(4154), 1, sym_comment, - ACTIONS(1844), 3, + ACTIONS(1816), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [121206] = 5, + [121416] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7842), 1, + ACTIONS(1856), 1, + sym__unquoted_pattern, + STATE(4155), 1, + sym_comment, + ACTIONS(1854), 3, sym__newline, - ACTIONS(7845), 1, anon_sym_PIPE, - ACTIONS(7848), 1, anon_sym_EQ_GT, - STATE(4155), 2, - sym_comment, - aux_sym_match_pattern_repeat1, - [121223] = 6, + [121431] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5237), 1, - anon_sym_LPAREN2, - ACTIONS(7678), 1, - anon_sym_RBRACE, - ACTIONS(7680), 1, + ACTIONS(4278), 1, sym__entry_separator, + ACTIONS(7852), 1, + anon_sym_LBRACK, + ACTIONS(7854), 1, + anon_sym_RBRACK, + STATE(1857), 1, + aux_sym__types_body_repeat2, STATE(4156), 1, sym_comment, - STATE(4663), 1, - sym__expr_parenthesized_immediate, - [121242] = 3, + [121450] = 3, ACTIONS(103), 1, anon_sym_POUND, STATE(4157), 1, sym_comment, - ACTIONS(1529), 4, + ACTIONS(1533), 4, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, anon_sym_DOT2, - [121255] = 6, + [121463] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4278), 1, + ACTIONS(2461), 1, sym__entry_separator, - ACTIONS(7850), 1, - anon_sym_LBRACK, - ACTIONS(7852), 1, - anon_sym_RBRACK, - STATE(1859), 1, - aux_sym__types_body_repeat2, STATE(4158), 1, sym_comment, - [121274] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2353), 1, - sym__entry_separator, - STATE(4159), 1, - sym_comment, - ACTIONS(2355), 3, + ACTIONS(2463), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [121289] = 3, + [121478] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4160), 1, + STATE(4159), 1, sym_comment, - ACTIONS(7854), 4, + ACTIONS(7856), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [121302] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4161), 1, - sym_comment, - ACTIONS(7036), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [121315] = 3, + [121491] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4162), 1, + STATE(4160), 1, sym_comment, - ACTIONS(7214), 4, + ACTIONS(7199), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [121328] = 3, + [121504] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4163), 1, + STATE(4161), 1, sym_comment, - ACTIONS(7856), 4, + ACTIONS(7858), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [121341] = 6, + [121517] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4162), 1, + sym_comment, + ACTIONS(7093), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [121530] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5237), 1, + ACTIONS(5260), 1, anon_sym_LPAREN2, - ACTIONS(6088), 1, + ACTIONS(6117), 1, sym__entry_separator, - ACTIONS(6090), 1, + ACTIONS(6119), 1, anon_sym_RBRACE, - STATE(4164), 1, + STATE(4163), 1, sym_comment, - STATE(5230), 1, + STATE(5098), 1, sym__expr_parenthesized_immediate, - [121360] = 6, + [121549] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5237), 1, + ACTIONS(5260), 1, anon_sym_LPAREN2, - ACTIONS(6092), 1, + ACTIONS(6121), 1, sym__entry_separator, - ACTIONS(6094), 1, + ACTIONS(6123), 1, anon_sym_RBRACE, - STATE(4165), 1, + STATE(4164), 1, sym_comment, - STATE(5230), 1, + STATE(5098), 1, sym__expr_parenthesized_immediate, - [121379] = 4, + [121568] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7858), 1, + ACTIONS(7860), 1, anon_sym_DQUOTE, - ACTIONS(7860), 2, + ACTIONS(7862), 2, sym__escaped_str_content, sym_escape_sequence, - STATE(4166), 2, + STATE(4165), 2, sym_comment, aux_sym_string_content_repeat1, - [121394] = 3, + [121583] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4167), 1, + STATE(4166), 1, sym_comment, - ACTIONS(7222), 4, + ACTIONS(7205), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [121407] = 6, + [121596] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5794), 1, + ACTIONS(5773), 1, sym__newline, - ACTIONS(7863), 1, - anon_sym_EQ, ACTIONS(7865), 1, + anon_sym_EQ, + ACTIONS(7867), 1, anon_sym_COLON, - STATE(3328), 1, + STATE(3270), 1, aux_sym__repeat_newline, - STATE(4168), 1, + STATE(4167), 1, sym_comment, - [121426] = 3, + [121615] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4169), 1, + STATE(4168), 1, sym_comment, - ACTIONS(7867), 4, + ACTIONS(7869), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121439] = 3, + [121628] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2604), 1, + sym__unquoted_pattern, + STATE(4169), 1, + sym_comment, + ACTIONS(1018), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121643] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4170), 1, sym_comment, - ACTIONS(7869), 4, + ACTIONS(7871), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [121452] = 6, + [121656] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6601), 1, + ACTIONS(6599), 1, anon_sym_LPAREN2, - ACTIONS(7411), 1, + ACTIONS(7513), 1, anon_sym_RBRACK, - ACTIONS(7419), 1, + ACTIONS(7515), 1, sym__entry_separator, STATE(4171), 1, sym_comment, - STATE(4746), 1, + STATE(4701), 1, sym__expr_parenthesized_immediate, - [121471] = 3, + [121675] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4172), 1, sym_comment, - ACTIONS(7871), 4, + ACTIONS(7873), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121484] = 3, + [121688] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2604), 1, + sym__unquoted_pattern, STATE(4173), 1, sym_comment, - ACTIONS(7873), 4, + ACTIONS(1004), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121497] = 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + [121703] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4174), 1, @@ -238743,7 +238924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121510] = 3, + [121716] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4175), 1, @@ -238753,1438 +238934,1432 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121523] = 4, + [121729] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2572), 1, - sym__unquoted_pattern, STATE(4176), 1, sym_comment, - ACTIONS(994), 3, + ACTIONS(7879), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [121538] = 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [121742] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4972), 1, + ACTIONS(4944), 1, sym__entry_separator, - ACTIONS(7879), 1, + ACTIONS(7881), 1, anon_sym_LT, STATE(4177), 1, sym_comment, - ACTIONS(4976), 2, + ACTIONS(4948), 2, anon_sym_RBRACK, anon_sym_GT2, - [121555] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2572), 1, - sym__unquoted_pattern, - STATE(4178), 1, - sym_comment, - ACTIONS(1012), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [121570] = 5, + [121759] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4972), 1, + ACTIONS(4944), 1, sym__entry_separator, - ACTIONS(7881), 1, + ACTIONS(7883), 1, anon_sym_LT, - STATE(4179), 1, + STATE(4178), 1, sym_comment, - ACTIONS(4976), 2, + ACTIONS(4948), 2, anon_sym_RBRACK, anon_sym_GT2, - [121587] = 3, + [121776] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4180), 1, + STATE(4179), 1, sym_comment, - ACTIONS(4105), 4, + ACTIONS(5070), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACE, - [121600] = 3, + [121789] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4180), 1, + sym_comment, + ACTIONS(7885), 4, + anon_sym_EQ, + anon_sym_in, + sym__newline, + anon_sym_COLON, + [121802] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4181), 1, sym_comment, - ACTIONS(4107), 4, + ACTIONS(4106), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACE, - [121613] = 3, + [121815] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4182), 1, sym_comment, - ACTIONS(7883), 4, + ACTIONS(4108), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [121626] = 3, + anon_sym_LBRACE, + [121828] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4183), 1, sym_comment, - ACTIONS(7883), 4, + ACTIONS(7887), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121639] = 3, + [121841] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4184), 1, sym_comment, - ACTIONS(7885), 4, + ACTIONS(7887), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [121854] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4185), 1, + sym_comment, + ACTIONS(7889), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121652] = 5, + [121867] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1962), 1, + ACTIONS(2021), 1, sym__unquoted_pattern_in_record, - ACTIONS(7887), 1, + ACTIONS(7891), 1, anon_sym_DOT_DOT2, - STATE(4185), 1, + STATE(4186), 1, sym_comment, - ACTIONS(7889), 2, + ACTIONS(7893), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [121669] = 3, + [121884] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4186), 1, + STATE(4187), 1, sym_comment, - ACTIONS(7891), 4, + ACTIONS(7895), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121682] = 3, + [121897] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4187), 1, + STATE(4188), 1, sym_comment, - ACTIONS(7891), 4, + ACTIONS(7895), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [121695] = 6, + [121910] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5237), 1, + ACTIONS(5260), 1, anon_sym_LPAREN2, - ACTIONS(7767), 1, + ACTIONS(7609), 1, anon_sym_RBRACE, - ACTIONS(7769), 1, + ACTIONS(7611), 1, sym__entry_separator, - STATE(4188), 1, + STATE(4189), 1, sym_comment, - STATE(4663), 1, + STATE(4661), 1, sym__expr_parenthesized_immediate, - [121714] = 5, + [121929] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7893), 1, + ACTIONS(7897), 1, anon_sym_RBRACK, - STATE(3419), 1, + STATE(3421), 1, aux_sym_parameter_repeat2, - STATE(4189), 1, + STATE(4190), 1, sym_comment, ACTIONS(1474), 2, sym__newline, anon_sym_COMMA, - [121731] = 5, + [121946] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2556), 1, + ACTIONS(2622), 1, sym__unquoted_pattern_in_list, - ACTIONS(7222), 1, + ACTIONS(7205), 1, sym__entry_separator, - STATE(4190), 1, + STATE(4191), 1, sym_comment, - ACTIONS(7432), 2, + ACTIONS(7342), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [121748] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4191), 1, - sym_comment, - ACTIONS(7895), 4, - anon_sym_EQ, - anon_sym_in, - sym__newline, - anon_sym_COLON, - [121761] = 6, + [121963] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1956), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(1962), 1, + ACTIONS(2021), 1, sym__unquoted_pattern_in_list, - ACTIONS(2574), 1, + ACTIONS(2533), 1, sym__entry_separator, - ACTIONS(2576), 1, + ACTIONS(2535), 1, anon_sym_RBRACK, STATE(4192), 1, sym_comment, - [121780] = 6, + [121982] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1952), 1, + ACTIONS(2011), 1, sym__entry_separator, - ACTIONS(1954), 1, + ACTIONS(2013), 1, anon_sym_RBRACK, - ACTIONS(1956), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(1962), 1, + ACTIONS(2021), 1, sym__unquoted_pattern_in_list, STATE(4193), 1, sym_comment, - [121799] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4194), 1, - sym_comment, - ACTIONS(5104), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [121812] = 4, + [122001] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3454), 1, - anon_sym_COLON2, - ACTIONS(7897), 2, - sym__newline, - sym__space, - STATE(4195), 2, + ACTIONS(6599), 1, + anon_sym_LPAREN2, + ACTIONS(7899), 1, + anon_sym_RBRACK, + ACTIONS(7901), 1, + sym__entry_separator, + STATE(4194), 1, sym_comment, - aux_sym_pipe_element_parenthesized_repeat1, - [121827] = 5, + STATE(5017), 1, + sym__expr_parenthesized_immediate, + [122020] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3078), 1, + ACTIONS(3044), 1, ts_builtin_sym_end, - STATE(1359), 1, + STATE(1367), 1, aux_sym__block_body_repeat1, - STATE(4196), 1, + STATE(4195), 1, sym_comment, ACTIONS(55), 2, sym__newline, anon_sym_SEMI, - [121844] = 6, + [122037] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6601), 1, - anon_sym_LPAREN2, - ACTIONS(7900), 1, - anon_sym_RBRACK, - ACTIONS(7902), 1, - sym__entry_separator, - STATE(4197), 1, + ACTIONS(3428), 1, + anon_sym_COLON2, + ACTIONS(7903), 2, + sym__newline, + sym__space, + STATE(4196), 2, sym_comment, - STATE(5020), 1, - sym__expr_parenthesized_immediate, - [121863] = 6, + aux_sym_pipe_element_parenthesized_repeat1, + [122052] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(3803), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(3118), 1, + STATE(3028), 1, sym_block, - STATE(4198), 1, + STATE(4197), 1, sym_comment, - STATE(4241), 1, + STATE(4232), 1, aux_sym__repeat_newline, - [121882] = 6, + [122071] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(3803), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(3050), 1, + STATE(3029), 1, sym_block, - STATE(4199), 1, - sym_comment, - [121901] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7904), 1, - anon_sym_LBRACK, - ACTIONS(7906), 1, - anon_sym_LPAREN, - STATE(3951), 1, - sym_parameter_parens, - STATE(3964), 1, - sym_parameter_bracks, - STATE(4200), 1, + STATE(4198), 1, sym_comment, - [121920] = 6, + [122090] = 6, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4278), 1, sym__entry_separator, - ACTIONS(7850), 1, + ACTIONS(7852), 1, anon_sym_LBRACK, - ACTIONS(7908), 1, + ACTIONS(7906), 1, anon_sym_RBRACK, - STATE(1859), 1, + STATE(1857), 1, aux_sym__types_body_repeat2, - STATE(4201), 1, + STATE(4199), 1, sym_comment, - [121939] = 6, + [122109] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7904), 1, + ACTIONS(7908), 1, anon_sym_LBRACK, - ACTIONS(7906), 1, + ACTIONS(7910), 1, anon_sym_LPAREN, - STATE(4066), 1, + STATE(3961), 1, + sym_parameter_bracks, + STATE(4070), 1, sym_parameter_parens, - STATE(4075), 1, + STATE(4200), 1, + sym_comment, + [122128] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7908), 1, + anon_sym_LBRACK, + ACTIONS(7910), 1, + anon_sym_LPAREN, + STATE(4023), 1, + sym_parameter_parens, + STATE(4032), 1, sym_parameter_bracks, + STATE(4201), 1, + sym_comment, + [122147] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(6599), 1, + anon_sym_LPAREN2, + ACTIONS(7912), 1, + anon_sym_RBRACK, + ACTIONS(7914), 1, + sym__entry_separator, STATE(4202), 1, sym_comment, - [121958] = 5, + STATE(5017), 1, + sym__expr_parenthesized_immediate, + [122166] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1598), 1, sym__unquoted_pattern, - ACTIONS(7910), 1, + ACTIONS(7916), 1, anon_sym_DOT_DOT2, STATE(4203), 1, sym_comment, - ACTIONS(7912), 2, + ACTIONS(7918), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [121975] = 4, + [122183] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7914), 1, - anon_sym_LPAREN, + ACTIONS(2702), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2704), 1, + anon_sym_COLON2, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(3056), 1, + sym_block, STATE(4204), 1, sym_comment, - ACTIONS(7916), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [121990] = 6, + [122202] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6601), 1, - anon_sym_LPAREN2, - ACTIONS(7918), 1, - anon_sym_RBRACK, ACTIONS(7920), 1, - sym__entry_separator, + anon_sym_LPAREN, STATE(4205), 1, sym_comment, - STATE(5020), 1, - sym__expr_parenthesized_immediate, - [122009] = 3, + ACTIONS(7922), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [122217] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4206), 1, sym_comment, - ACTIONS(7922), 4, + ACTIONS(7924), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122022] = 3, + [122230] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4207), 1, sym_comment, - ACTIONS(7924), 4, + ACTIONS(7926), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122035] = 3, + [122243] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4208), 1, sym_comment, - ACTIONS(7924), 4, + ACTIONS(7926), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122048] = 3, + [122256] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4209), 1, sym_comment, - ACTIONS(7926), 4, + ACTIONS(7928), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122061] = 3, + [122269] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4210), 1, sym_comment, - ACTIONS(7926), 4, + ACTIONS(7928), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122074] = 3, + [122282] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4211), 1, sym_comment, - ACTIONS(7928), 4, + ACTIONS(7930), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122087] = 4, - ACTIONS(103), 1, + [122295] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4212), 1, sym_comment, - ACTIONS(2325), 2, + ACTIONS(4082), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [122308] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + STATE(4213), 1, + sym_comment, + ACTIONS(2385), 2, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(2327), 2, + ACTIONS(2387), 2, anon_sym_RBRACE, sym__unquoted_pattern_in_record, - [122102] = 3, + [122323] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4213), 1, + STATE(4214), 1, sym_comment, - ACTIONS(4101), 4, + ACTIONS(4084), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACE, - [122115] = 3, + [122336] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4214), 1, + STATE(4215), 1, sym_comment, - ACTIONS(4103), 4, - ts_builtin_sym_end, + ACTIONS(7932), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [122128] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122349] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1604), 1, anon_sym_RBRACE, - ACTIONS(1689), 1, + ACTIONS(1706), 1, sym__entry_separator, - ACTIONS(2554), 1, + ACTIONS(2620), 1, anon_sym_LPAREN2, - ACTIONS(2556), 1, + ACTIONS(2622), 1, sym__unquoted_pattern_in_record, - STATE(4215), 1, - sym_comment, - [122147] = 6, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2662), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2664), 1, - anon_sym_COLON2, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(3031), 1, - sym_block, STATE(4216), 1, sym_comment, - [122166] = 3, + [122368] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4217), 1, sym_comment, - ACTIONS(7930), 4, + ACTIONS(7932), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122179] = 3, + [122381] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4218), 1, sym_comment, - ACTIONS(7930), 4, + ACTIONS(7934), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122192] = 3, - ACTIONS(3), 1, + [122394] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(6599), 1, + anon_sym_LPAREN2, + ACTIONS(7936), 1, + anon_sym_RBRACK, + ACTIONS(7938), 1, + sym__entry_separator, STATE(4219), 1, sym_comment, - ACTIONS(7932), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122205] = 3, + STATE(5017), 1, + sym__expr_parenthesized_immediate, + [122413] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4220), 1, sym_comment, - ACTIONS(7932), 4, + ACTIONS(7934), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122218] = 3, + [122426] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4221), 1, sym_comment, - ACTIONS(7924), 4, + ACTIONS(7926), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122231] = 3, + [122439] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4222), 1, sym_comment, - ACTIONS(7924), 4, + ACTIONS(7926), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122244] = 3, + [122452] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4223), 1, sym_comment, - ACTIONS(7934), 4, + ACTIONS(7940), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122257] = 6, - ACTIONS(103), 1, + [122465] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern_in_record, - ACTIONS(1942), 1, - sym__entry_separator, - ACTIONS(1944), 1, - anon_sym_RBRACE, - ACTIONS(1946), 1, - anon_sym_LPAREN2, STATE(4224), 1, sym_comment, - [122276] = 6, + ACTIONS(7942), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122478] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6601), 1, - anon_sym_LPAREN2, - ACTIONS(7936), 1, - anon_sym_RBRACK, - ACTIONS(7938), 1, + ACTIONS(2465), 1, sym__entry_separator, STATE(4225), 1, sym_comment, - STATE(5020), 1, - sym__expr_parenthesized_immediate, - [122295] = 6, + ACTIONS(2467), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [122493] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern_in_list, - ACTIONS(2509), 1, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_record, + ACTIONS(2001), 1, sym__entry_separator, - ACTIONS(2511), 1, - anon_sym_RBRACK, - ACTIONS(2513), 1, + ACTIONS(2003), 1, + anon_sym_RBRACE, + ACTIONS(2005), 1, anon_sym_LPAREN2, STATE(4226), 1, sym_comment, - [122314] = 4, + [122512] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2447), 1, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_list, + ACTIONS(2525), 1, sym__entry_separator, + ACTIONS(2527), 1, + anon_sym_RBRACK, + ACTIONS(2581), 1, + anon_sym_LPAREN2, STATE(4227), 1, sym_comment, - ACTIONS(2449), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [122329] = 6, + [122531] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1956), 1, - anon_sym_LPAREN2, - ACTIONS(1962), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2574), 1, + ACTIONS(4278), 1, sym__entry_separator, - ACTIONS(2576), 1, - anon_sym_RBRACE, + ACTIONS(7852), 1, + anon_sym_LBRACK, + ACTIONS(7944), 1, + anon_sym_RBRACK, + STATE(1857), 1, + aux_sym__types_body_repeat2, STATE(4228), 1, sym_comment, - [122348] = 6, + [122550] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1952), 1, - sym__entry_separator, - ACTIONS(1954), 1, - anon_sym_RBRACE, - ACTIONS(1956), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, - ACTIONS(1962), 1, + ACTIONS(2021), 1, sym__unquoted_pattern_in_record, + ACTIONS(2533), 1, + sym__entry_separator, + ACTIONS(2535), 1, + anon_sym_RBRACE, STATE(4229), 1, sym_comment, - [122367] = 6, + [122569] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(3803), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(3077), 1, + STATE(2975), 1, sym_block, STATE(4230), 1, sym_comment, - STATE(4311), 1, + STATE(4310), 1, aux_sym__repeat_newline, - [122386] = 6, + [122588] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern_in_record, - ACTIONS(2509), 1, + ACTIONS(2011), 1, sym__entry_separator, - ACTIONS(2511), 1, + ACTIONS(2013), 1, anon_sym_RBRACE, - ACTIONS(2513), 1, + ACTIONS(2015), 1, anon_sym_LPAREN2, + ACTIONS(2021), 1, + sym__unquoted_pattern_in_record, STATE(4231), 1, sym_comment, - [122405] = 6, + [122607] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(2976), 1, + sym_block, + STATE(4232), 1, + sym_comment, + [122626] = 6, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_record, ACTIONS(2525), 1, sym__entry_separator, ACTIONS(2527), 1, anon_sym_RBRACE, - ACTIONS(2529), 1, + ACTIONS(2581), 1, anon_sym_LPAREN2, - ACTIONS(2531), 1, - sym__unquoted_pattern_in_record, - STATE(4232), 1, + STATE(4233), 1, sym_comment, - [122424] = 6, + [122645] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4278), 1, + ACTIONS(2583), 1, sym__entry_separator, - ACTIONS(7850), 1, - anon_sym_LBRACK, - ACTIONS(7940), 1, - anon_sym_RBRACK, - STATE(1859), 1, - aux_sym__types_body_repeat2, - STATE(4233), 1, + ACTIONS(2585), 1, + anon_sym_RBRACE, + ACTIONS(2587), 1, + anon_sym_LPAREN2, + ACTIONS(2589), 1, + sym__unquoted_pattern_in_record, + STATE(4234), 1, sym_comment, - [122443] = 4, + [122664] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2327), 1, + ACTIONS(2387), 1, sym__unquoted_pattern, - STATE(4234), 1, + STATE(4235), 1, sym_comment, - ACTIONS(2325), 3, + ACTIONS(2385), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [122458] = 6, + [122679] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2562), 1, + ACTIONS(2591), 1, sym__entry_separator, - ACTIONS(2564), 1, + ACTIONS(2593), 1, anon_sym_RBRACE, - ACTIONS(2566), 1, + ACTIONS(2595), 1, anon_sym_LPAREN2, - ACTIONS(2568), 1, + ACTIONS(2597), 1, sym__unquoted_pattern_in_record, - STATE(4235), 1, + STATE(4236), 1, + sym_comment, + [122698] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2469), 1, + sym__entry_separator, + STATE(4237), 1, sym_comment, - [122477] = 4, + ACTIONS(2471), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [122713] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6954), 1, + ACTIONS(6980), 1, sym__unquoted_pattern, - STATE(4236), 1, + STATE(4238), 1, sym_comment, - ACTIONS(890), 3, + ACTIONS(908), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [122492] = 3, + [122728] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4237), 1, + STATE(4239), 1, sym_comment, - ACTIONS(7942), 4, + ACTIONS(7946), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122505] = 3, + [122741] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4238), 1, + STATE(4240), 1, sym_comment, - ACTIONS(7942), 4, + ACTIONS(7946), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122518] = 3, + [122754] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4239), 1, + STATE(4241), 1, sym_comment, - ACTIONS(7944), 4, + ACTIONS(7948), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122531] = 3, + [122767] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4240), 1, + STATE(4242), 1, sym_comment, - ACTIONS(7944), 4, + ACTIONS(7948), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122544] = 6, + [122780] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(3079), 1, - sym_block, - STATE(4241), 1, + STATE(4243), 1, sym_comment, - [122563] = 3, + ACTIONS(7950), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122793] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4242), 1, + STATE(4244), 1, sym_comment, - ACTIONS(7946), 4, + ACTIONS(7950), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122576] = 3, + [122806] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4243), 1, + STATE(4245), 1, sym_comment, - ACTIONS(7946), 4, + ACTIONS(4088), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122589] = 3, + anon_sym_LBRACE, + [122819] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4244), 1, + STATE(4246), 1, sym_comment, - ACTIONS(4085), 4, + ACTIONS(4090), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACE, - [122602] = 6, + [122832] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(994), 1, - sym__entry_separator, - ACTIONS(996), 1, + ACTIONS(1002), 1, anon_sym_RBRACE, - ACTIONS(2570), 1, + ACTIONS(1018), 1, + sym__entry_separator, + ACTIONS(2602), 1, anon_sym_LPAREN2, - ACTIONS(2572), 1, + ACTIONS(2604), 1, sym__unquoted_pattern_in_record, - STATE(4245), 1, + STATE(4247), 1, sym_comment, - [122621] = 6, + [122851] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1004), 1, + ACTIONS(994), 1, anon_sym_RBRACE, - ACTIONS(1012), 1, + ACTIONS(1004), 1, sym__entry_separator, - ACTIONS(2570), 1, + ACTIONS(2602), 1, anon_sym_LPAREN2, - ACTIONS(2572), 1, + ACTIONS(2604), 1, sym__unquoted_pattern_in_record, - STATE(4246), 1, + STATE(4248), 1, sym_comment, - [122640] = 3, + [122870] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4247), 1, + STATE(4249), 1, sym_comment, - ACTIONS(4087), 4, - ts_builtin_sym_end, + ACTIONS(7952), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [122653] = 4, - ACTIONS(103), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [122883] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2451), 1, - sym__entry_separator, - STATE(4248), 1, + STATE(4250), 1, sym_comment, - ACTIONS(2453), 3, - anon_sym_RBRACK, + ACTIONS(7952), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [122668] = 4, + [122896] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2455), 1, + ACTIONS(2473), 1, sym__entry_separator, - STATE(4249), 1, + STATE(4251), 1, sym_comment, - ACTIONS(2457), 3, + ACTIONS(2475), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [122683] = 5, + [122911] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7451), 1, + ACTIONS(7367), 1, anon_sym_RPAREN, - STATE(4250), 1, + STATE(4252), 1, sym_comment, - STATE(4292), 1, + STATE(4272), 1, aux_sym__block_body_repeat1, - ACTIONS(7799), 2, - sym__newline, - anon_sym_SEMI, - [122700] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4251), 1, - sym_comment, - ACTIONS(7948), 4, + ACTIONS(7801), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122713] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4252), 1, - sym_comment, - ACTIONS(7950), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [122726] = 4, + [122928] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2459), 1, + ACTIONS(2477), 1, sym__entry_separator, STATE(4253), 1, sym_comment, - ACTIONS(2461), 3, + ACTIONS(2479), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [122741] = 4, + [122943] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2463), 1, + ACTIONS(2481), 1, sym__entry_separator, STATE(4254), 1, sym_comment, - ACTIONS(2465), 3, + ACTIONS(2483), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [122756] = 4, + [122958] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2467), 1, + ACTIONS(2485), 1, sym__entry_separator, STATE(4255), 1, sym_comment, - ACTIONS(2469), 3, + ACTIONS(2487), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [122771] = 4, - ACTIONS(103), 1, + [122973] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2471), 1, - sym__entry_separator, STATE(4256), 1, sym_comment, - ACTIONS(2473), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [122786] = 6, + ACTIONS(7954), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [122986] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(3231), 1, - sym_block, STATE(4257), 1, sym_comment, - [122805] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4258), 1, - sym_comment, - ACTIONS(7948), 4, + ACTIONS(7946), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122818] = 6, + [122999] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4278), 1, + ACTIONS(2489), 1, sym__entry_separator, - ACTIONS(7850), 1, - anon_sym_LBRACK, - ACTIONS(7952), 1, + STATE(4258), 1, + sym_comment, + ACTIONS(2491), 3, anon_sym_RBRACK, - STATE(1859), 1, - aux_sym__types_body_repeat2, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [123014] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2493), 1, + sym__entry_separator, STATE(4259), 1, sym_comment, - [122837] = 3, + ACTIONS(2495), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [123029] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4260), 1, sym_comment, - ACTIONS(7942), 4, + ACTIONS(5100), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [122850] = 3, + anon_sym_LBRACE, + [123042] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4261), 1, sym_comment, - ACTIONS(7942), 4, + ACTIONS(7946), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122863] = 3, + [123055] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4262), 1, sym_comment, - ACTIONS(7944), 4, + ACTIONS(7948), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122876] = 3, + [123068] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4263), 1, sym_comment, - ACTIONS(7944), 4, + ACTIONS(7948), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [122889] = 3, - ACTIONS(3), 1, + [123081] = 6, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(6599), 1, + anon_sym_LPAREN2, + ACTIONS(7956), 1, + anon_sym_RBRACK, + ACTIONS(7958), 1, + sym__entry_separator, STATE(4264), 1, sym_comment, - ACTIONS(7954), 4, + STATE(5017), 1, + sym__expr_parenthesized_immediate, + [123100] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4265), 1, + sym_comment, + ACTIONS(7960), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [122902] = 6, + [123113] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2525), 1, + ACTIONS(2583), 1, sym__entry_separator, - ACTIONS(2527), 1, + ACTIONS(2585), 1, anon_sym_RBRACK, - ACTIONS(2529), 1, + ACTIONS(2587), 1, anon_sym_LPAREN2, - ACTIONS(2531), 1, + ACTIONS(2589), 1, sym__unquoted_pattern_in_list, - STATE(4265), 1, + STATE(4266), 1, sym_comment, - [122921] = 6, - ACTIONS(103), 1, + [123132] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6601), 1, - anon_sym_LPAREN2, - ACTIONS(7956), 1, - anon_sym_RBRACK, - ACTIONS(7958), 1, - sym__entry_separator, - STATE(4266), 1, + STATE(4267), 1, sym_comment, - STATE(5020), 1, - sym__expr_parenthesized_immediate, - [122940] = 6, + ACTIONS(7950), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123145] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7156), 1, + STATE(4268), 1, + sym_comment, + ACTIONS(7950), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123158] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7158), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - STATE(3876), 1, + STATE(3868), 1, sym_parameter_parens, - STATE(3878), 1, + STATE(3869), 1, sym_parameter_bracks, - STATE(4267), 1, + STATE(4269), 1, sym_comment, - [122959] = 3, + [123177] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4268), 1, + STATE(4270), 1, sym_comment, - ACTIONS(7060), 4, + ACTIONS(7114), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [122972] = 5, + [123190] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1689), 1, + ACTIONS(1706), 1, anon_sym_LBRACE, - ACTIONS(7960), 1, + ACTIONS(7962), 1, anon_sym_DOT_DOT2, - STATE(4269), 1, + STATE(4271), 1, sym_comment, - ACTIONS(7962), 2, + ACTIONS(7964), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [122989] = 3, + [123207] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4270), 1, - sym_comment, - ACTIONS(7946), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(3048), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - [123002] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4271), 1, - sym_comment, - ACTIONS(7946), 4, + ACTIONS(7966), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123015] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4272), 1, + STATE(4272), 2, sym_comment, - ACTIONS(7964), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123028] = 4, - ACTIONS(3), 1, + aux_sym__block_body_repeat1, + [123222] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2556), 1, - sym__unquoted_pattern, + ACTIONS(1535), 1, + sym__entry_separator, STATE(4273), 1, sym_comment, - ACTIONS(1689), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [123043] = 3, + ACTIONS(1533), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [123237] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4274), 1, sym_comment, - ACTIONS(7964), 4, + ACTIONS(7969), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123056] = 3, + [123250] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4275), 1, sym_comment, - ACTIONS(7966), 4, + ACTIONS(7969), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123069] = 3, + [123263] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2622), 1, + sym__unquoted_pattern, STATE(4276), 1, sym_comment, - ACTIONS(7122), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [123082] = 3, + ACTIONS(1706), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [123278] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4277), 1, sym_comment, - ACTIONS(7966), 4, + ACTIONS(7971), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123095] = 3, + [123291] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4278), 1, sym_comment, - ACTIONS(7968), 4, + ACTIONS(7971), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123108] = 3, + [123304] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4279), 1, sym_comment, - ACTIONS(7968), 4, + ACTIONS(7973), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123121] = 4, - ACTIONS(103), 1, + [123317] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2333), 1, - sym__entry_separator, STATE(4280), 1, sym_comment, - ACTIONS(2335), 3, - anon_sym_RBRACK, + ACTIONS(7973), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT, - [123136] = 4, + [123330] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1531), 1, + ACTIONS(2441), 1, sym__entry_separator, STATE(4281), 1, sym_comment, - ACTIONS(1529), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [123151] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2136), 1, - sym__entry_separator, - STATE(4282), 1, - sym_comment, - ACTIONS(2138), 3, + ACTIONS(2443), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [123166] = 3, + [123345] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4283), 1, + STATE(4282), 1, sym_comment, - ACTIONS(7970), 4, + ACTIONS(7975), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123179] = 3, + [123358] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4284), 1, + STATE(4283), 1, sym_comment, - ACTIONS(7093), 4, + ACTIONS(7069), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [123192] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2144), 1, - sym__entry_separator, - STATE(4285), 1, - sym_comment, - ACTIONS(2146), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [123207] = 3, + [123371] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4286), 1, + ACTIONS(2021), 1, + sym__unquoted_pattern, + STATE(4284), 1, sym_comment, - ACTIONS(5088), 4, - ts_builtin_sym_end, + ACTIONS(2533), 3, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [123220] = 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123386] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4287), 1, + STATE(4285), 1, sym_comment, - ACTIONS(7970), 4, + ACTIONS(7975), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123233] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4288), 1, - sym_comment, - ACTIONS(5074), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [123246] = 4, + [123399] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1641), 1, sym__unquoted_pattern, - STATE(4289), 1, + STATE(4286), 1, sym_comment, - ACTIONS(2509), 3, + ACTIONS(2525), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [123261] = 6, + [123414] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2066), 1, + sym__entry_separator, + STATE(4287), 1, + sym_comment, + ACTIONS(2068), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [123429] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2074), 1, + sym__entry_separator, + STATE(4288), 1, + sym_comment, + ACTIONS(2076), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [123444] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7156), 1, - anon_sym_LBRACK, - ACTIONS(7158), 1, - anon_sym_LPAREN, - STATE(3824), 1, - sym_parameter_parens, - STATE(3826), 1, - sym_parameter_bracks, - STATE(4290), 1, + STATE(4289), 1, sym_comment, - [123280] = 3, + ACTIONS(5118), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [123457] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4291), 1, + STATE(4290), 1, sym_comment, - ACTIONS(7972), 4, + ACTIONS(7038), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [123293] = 4, - ACTIONS(3), 1, + [123470] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3068), 1, - anon_sym_RPAREN, - ACTIONS(7974), 2, - sym__newline, - anon_sym_SEMI, - STATE(4292), 2, + STATE(4291), 1, sym_comment, - aux_sym__block_body_repeat1, - [123308] = 4, + ACTIONS(7977), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7979), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [123485] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1962), 1, + ACTIONS(2589), 1, sym__unquoted_pattern, - STATE(4293), 1, + STATE(4292), 1, sym_comment, - ACTIONS(2574), 3, + ACTIONS(2583), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [123323] = 4, + [123500] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2152), 1, + ACTIONS(2082), 1, sym__entry_separator, - STATE(4294), 1, + STATE(4293), 1, sym_comment, - ACTIONS(2154), 3, + ACTIONS(2084), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [123338] = 5, + [123515] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7334), 1, - anon_sym_LBRACE, - STATE(3126), 1, - sym__blosure, - STATE(4295), 1, + STATE(4294), 1, sym_comment, - STATE(3205), 2, - sym_block, - sym_val_closure, - [123355] = 6, + ACTIONS(7971), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123528] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7904), 1, + ACTIONS(7150), 1, anon_sym_LBRACK, - ACTIONS(7906), 1, + ACTIONS(7152), 1, anon_sym_LPAREN, - STATE(3940), 1, - sym_parameter_parens, - STATE(3942), 1, + STATE(3786), 1, sym_parameter_bracks, - STATE(4296), 1, + STATE(3796), 1, + sym_parameter_parens, + STATE(4295), 1, sym_comment, - [123374] = 3, + [123547] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4297), 1, + STATE(4296), 1, sym_comment, - ACTIONS(7101), 4, + ACTIONS(7981), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [123387] = 4, + [123560] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2531), 1, - sym__unquoted_pattern, - STATE(4298), 1, + STATE(4297), 1, sym_comment, - ACTIONS(2525), 3, + ACTIONS(7971), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [123402] = 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123573] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7908), 1, + anon_sym_LBRACK, + ACTIONS(7910), 1, + anon_sym_LPAREN, + STATE(3946), 1, + sym_parameter_parens, + STATE(3947), 1, + sym_parameter_bracks, + STATE(4298), 1, + sym_comment, + [123592] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7344), 1, + anon_sym_LBRACE, + STATE(3245), 1, + sym__blosure, STATE(4299), 1, sym_comment, - ACTIONS(7091), 4, + STATE(3224), 2, + sym_block, + sym_val_closure, + [123609] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4300), 1, + sym_comment, + ACTIONS(5122), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [123622] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4301), 1, + sym_comment, + ACTIONS(7034), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [123415] = 3, + [123635] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4300), 1, + STATE(4302), 1, sym_comment, - ACTIONS(7977), 4, + ACTIONS(7083), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [123428] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4301), 1, - sym_comment, - ACTIONS(7979), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7981), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [123443] = 3, + [123648] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4302), 1, + ACTIONS(2021), 1, + sym__unquoted_pattern, + STATE(4303), 1, sym_comment, - ACTIONS(7966), 4, + ACTIONS(2011), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123456] = 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123663] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4303), 1, + STATE(4304), 1, sym_comment, - ACTIONS(7020), 4, + ACTIONS(7983), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [123469] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4304), 1, - sym_comment, - ACTIONS(7983), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123482] = 3, + [123676] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4305), 1, @@ -240194,1196 +240369,1207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123495] = 3, + [123689] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4306), 1, sym_comment, ACTIONS(7987), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [123508] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4307), 1, - sym_comment, - ACTIONS(7989), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123521] = 3, + [123702] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4308), 1, + STATE(4307), 1, sym_comment, - ACTIONS(7991), 4, + ACTIONS(7989), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123534] = 3, + [123715] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4309), 1, + STATE(4308), 1, sym_comment, - ACTIONS(5064), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [123547] = 3, + ACTIONS(7050), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [123728] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4310), 1, + STATE(4309), 1, sym_comment, - ACTIONS(7993), 4, + ACTIONS(7991), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123560] = 6, + [123741] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(3803), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(3001), 1, + STATE(3025), 1, sym_block, + STATE(4310), 1, + sym_comment, + [123760] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4311), 1, sym_comment, - [123579] = 3, + ACTIONS(7993), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [123773] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4312), 1, sym_comment, ACTIONS(7995), 4, - anon_sym_if, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [123592] = 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123786] = 3, ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7960), 1, - anon_sym_DOT_DOT2, - ACTIONS(7997), 1, - anon_sym_LBRACE, + anon_sym_POUND, STATE(4313), 1, sym_comment, - ACTIONS(7962), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [123609] = 3, + ACTIONS(7997), 4, + anon_sym_if, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123799] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4314), 1, sym_comment, - ACTIONS(7995), 4, + ACTIONS(7997), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [123622] = 5, - ACTIONS(3), 1, + [123812] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7999), 1, - anon_sym_RPAREN, - STATE(4292), 1, - aux_sym__block_body_repeat1, + ACTIONS(4816), 1, + sym__entry_separator, + STATE(2238), 1, + aux_sym__types_body_repeat2, STATE(4315), 1, sym_comment, - ACTIONS(7799), 2, - sym__newline, - anon_sym_SEMI, - [123639] = 3, + ACTIONS(7999), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [123829] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7962), 1, + anon_sym_DOT_DOT2, + ACTIONS(8001), 1, + anon_sym_LBRACE, STATE(4316), 1, sym_comment, - ACTIONS(6252), 4, + ACTIONS(7964), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [123846] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4317), 1, + sym_comment, + ACTIONS(6228), 4, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_AT2, anon_sym_LBRACE, - [123652] = 3, + [123859] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4816), 1, + sym__entry_separator, + STATE(2246), 1, + aux_sym__types_body_repeat2, + STATE(4318), 1, + sym_comment, + ACTIONS(7999), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [123876] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4317), 1, + ACTIONS(8003), 1, + anon_sym_RPAREN, + STATE(4272), 1, + aux_sym__block_body_repeat1, + STATE(4319), 1, sym_comment, - ACTIONS(7966), 4, + ACTIONS(7801), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123665] = 3, + [123893] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4318), 1, + ACTIONS(2622), 1, + sym__unquoted_pattern, + STATE(4320), 1, sym_comment, - ACTIONS(7081), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [123678] = 5, + ACTIONS(7205), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [123908] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8001), 1, + ACTIONS(8005), 1, anon_sym_DQUOTE, - STATE(4166), 1, + STATE(4165), 1, aux_sym_string_content_repeat1, - STATE(4319), 1, + STATE(4321), 1, sym_comment, - ACTIONS(7596), 2, + ACTIONS(7617), 2, sym__escaped_str_content, sym_escape_sequence, - [123695] = 5, + [123925] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7960), 1, - anon_sym_DOT_DOT2, - ACTIONS(8003), 1, - anon_sym_LBRACE, - STATE(4320), 1, - sym_comment, - ACTIONS(7962), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [123712] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4813), 1, - sym__entry_separator, - STATE(2241), 1, - aux_sym__types_body_repeat2, - STATE(4321), 1, - sym_comment, - ACTIONS(8005), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [123729] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4813), 1, - sym__entry_separator, - STATE(2248), 1, - aux_sym__types_body_repeat2, STATE(4322), 1, sym_comment, - ACTIONS(8005), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [123746] = 3, + ACTIONS(7075), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [123938] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7962), 1, + anon_sym_DOT_DOT2, + ACTIONS(8007), 1, + anon_sym_LBRACE, STATE(4323), 1, sym_comment, - ACTIONS(7006), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [123759] = 3, + ACTIONS(7964), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [123955] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4324), 1, sym_comment, - ACTIONS(6974), 4, - ts_builtin_sym_end, + ACTIONS(7973), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [123772] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [123968] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4325), 1, sym_comment, - ACTIONS(8007), 4, + ACTIONS(7973), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123785] = 3, + [123981] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(7439), 1, + sym__newline, + ACTIONS(7441), 1, + anon_sym_PIPE, + ACTIONS(8009), 1, + anon_sym_EQ_GT, + STATE(4151), 1, + aux_sym_match_pattern_repeat1, STATE(4326), 1, sym_comment, - ACTIONS(7968), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123798] = 3, + [124000] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4327), 1, sym_comment, - ACTIONS(8009), 4, + ACTIONS(7016), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123811] = 3, + anon_sym_LBRACE, + [124013] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4328), 1, sym_comment, - ACTIONS(7968), 4, + ACTIONS(6970), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123824] = 3, + anon_sym_LBRACE, + [124026] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4329), 1, sym_comment, - ACTIONS(8011), 4, + ACTIONS(7975), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123837] = 3, + [124039] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4330), 1, sym_comment, - ACTIONS(7970), 4, + ACTIONS(7975), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123850] = 4, + [124052] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2568), 1, + ACTIONS(2597), 1, sym__unquoted_pattern, STATE(4331), 1, sym_comment, - ACTIONS(2562), 3, + ACTIONS(2591), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [123865] = 4, + [124067] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, - sym__unquoted_pattern, STATE(4332), 1, sym_comment, - ACTIONS(890), 3, + ACTIONS(8011), 4, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [123880] = 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124080] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4333), 1, sym_comment, - ACTIONS(7970), 4, + ACTIONS(8013), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123893] = 3, + [124093] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1724), 1, + sym__unquoted_pattern, STATE(4334), 1, sym_comment, - ACTIONS(8013), 4, + ACTIONS(908), 3, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [123906] = 3, + anon_sym_PIPE, + anon_sym_EQ_GT, + [124108] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4335), 1, sym_comment, - ACTIONS(8013), 4, + ACTIONS(8015), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123919] = 3, + [124121] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4336), 1, sym_comment, - ACTIONS(8015), 4, + ACTIONS(8017), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123932] = 3, + [124134] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4337), 1, sym_comment, - ACTIONS(8015), 4, + ACTIONS(8017), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123945] = 4, + [124147] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2556), 1, - sym__unquoted_pattern, STATE(4338), 1, sym_comment, - ACTIONS(7222), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [123960] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4339), 1, - sym_comment, - ACTIONS(8015), 4, + ACTIONS(8019), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123973] = 3, + [124160] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4340), 1, + STATE(4339), 1, sym_comment, - ACTIONS(8015), 4, + ACTIONS(8019), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [123986] = 5, + [124173] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5520), 1, + ACTIONS(5494), 1, anon_sym_COLON2, - STATE(4341), 1, + STATE(4340), 1, sym_comment, - STATE(4375), 1, + STATE(4369), 1, aux_sym_pipe_element_parenthesized_repeat1, - ACTIONS(5514), 2, + ACTIONS(5488), 2, sym__newline, sym__space, - [124003] = 3, + [124190] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4342), 1, + STATE(4341), 1, sym_comment, - ACTIONS(8017), 4, + ACTIONS(8019), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [124016] = 3, + [124203] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4343), 1, + STATE(4342), 1, sym_comment, - ACTIONS(8017), 4, + ACTIONS(8019), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [124029] = 3, + [124216] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4344), 1, + STATE(4343), 1, sym_comment, - ACTIONS(8019), 4, + ACTIONS(8021), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [124042] = 3, + [124229] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2387), 1, + sym__unquoted_pattern, + STATE(4344), 1, + sym_comment, + ACTIONS(2385), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [124244] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4345), 1, sym_comment, - ACTIONS(8019), 4, + ACTIONS(8021), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [124055] = 3, + [124257] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4346), 1, sym_comment, - ACTIONS(8021), 4, + ACTIONS(8023), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [124068] = 4, + [124270] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2572), 1, - sym__unquoted_pattern, STATE(4347), 1, sym_comment, - ACTIONS(994), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [124083] = 4, + ACTIONS(8023), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124283] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2572), 1, - sym__unquoted_pattern, STATE(4348), 1, sym_comment, - ACTIONS(1012), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [124098] = 3, + ACTIONS(8025), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [124296] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4349), 1, sym_comment, - ACTIONS(8021), 4, + ACTIONS(8025), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [124111] = 3, + [124309] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2604), 1, + sym__unquoted_pattern, STATE(4350), 1, sym_comment, - ACTIONS(5138), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [124124] = 3, + ACTIONS(1018), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [124324] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2604), 1, + sym__unquoted_pattern, STATE(4351), 1, sym_comment, - ACTIONS(8023), 4, + ACTIONS(1004), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [124339] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4352), 1, + sym_comment, + ACTIONS(8027), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [124137] = 3, + [124352] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4352), 1, + ACTIONS(8029), 1, + anon_sym_LBRACE, + STATE(3273), 1, + sym__blosure, + STATE(4353), 1, sym_comment, - ACTIONS(8025), 4, + STATE(3389), 2, + sym_block, + sym_val_closure, + [124369] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4354), 1, + sym_comment, + ACTIONS(8031), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [124150] = 4, + [124382] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(890), 1, + ACTIONS(908), 1, sym__entry_separator, - STATE(4353), 1, + STATE(4355), 1, sym_comment, - ACTIONS(793), 3, + ACTIONS(866), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [124165] = 4, + [124397] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2327), 1, - sym__unquoted_pattern, - STATE(4354), 1, + STATE(4356), 1, sym_comment, - ACTIONS(2325), 3, + ACTIONS(8033), 4, + anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [124180] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8027), 1, - anon_sym_LBRACE, - STATE(3319), 1, - sym__blosure, - STATE(4355), 1, - sym_comment, - STATE(3283), 2, - sym_block, - sym_val_closure, - [124197] = 6, + [124410] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2562), 1, + ACTIONS(2591), 1, sym__entry_separator, - ACTIONS(2564), 1, + ACTIONS(2593), 1, anon_sym_RBRACK, - ACTIONS(2566), 1, + ACTIONS(2595), 1, anon_sym_LPAREN2, - ACTIONS(2568), 1, + ACTIONS(2597), 1, sym__unquoted_pattern_in_list, - STATE(4356), 1, + STATE(4357), 1, sym_comment, - [124216] = 6, - ACTIONS(3), 1, + [124429] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7555), 1, - sym__newline, - ACTIONS(7557), 1, - anon_sym_PIPE, - ACTIONS(8029), 1, - anon_sym_EQ_GT, - STATE(4155), 1, - aux_sym_match_pattern_repeat1, - STATE(4357), 1, + ACTIONS(2126), 1, + sym__entry_separator, + STATE(4358), 1, sym_comment, - [124235] = 6, + ACTIONS(2128), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [124444] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1615), 1, + ACTIONS(1604), 1, anon_sym_RBRACK, - ACTIONS(1689), 1, + ACTIONS(1706), 1, sym__entry_separator, - ACTIONS(2554), 1, + ACTIONS(2620), 1, anon_sym_LPAREN2, - ACTIONS(2556), 1, + ACTIONS(2622), 1, sym__unquoted_pattern_in_list, - STATE(4358), 1, - sym_comment, - [124254] = 3, - ACTIONS(3), 1, - anon_sym_POUND, STATE(4359), 1, sym_comment, - ACTIONS(8031), 4, - anon_sym_if, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [124267] = 5, + [124463] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(890), 1, + ACTIONS(1612), 1, sym__entry_separator, - ACTIONS(6335), 1, - sym__unquoted_pattern_in_list, + ACTIONS(1614), 1, + anon_sym_COLON2, + ACTIONS(8035), 1, + anon_sym_RBRACE, + STATE(1461), 1, + aux_sym__types_body_repeat2, STATE(4360), 1, sym_comment, - ACTIONS(793), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [124284] = 4, + [124482] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2086), 1, + ACTIONS(908), 1, sym__entry_separator, + ACTIONS(6384), 1, + sym__unquoted_pattern_in_list, STATE(4361), 1, sym_comment, - ACTIONS(2088), 3, + ACTIONS(866), 2, anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_DOT_DOT, - [124299] = 3, + [124499] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4362), 1, sym_comment, - ACTIONS(4453), 4, + ACTIONS(4373), 4, sym__newline, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_DOT_DOT, - [124312] = 3, + [124512] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4363), 1, sym_comment, - ACTIONS(5128), 4, + ACTIONS(5134), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACE, - [124325] = 6, - ACTIONS(103), 1, + [124525] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1623), 1, - sym__entry_separator, - ACTIONS(1625), 1, - anon_sym_COLON2, - ACTIONS(8033), 1, - anon_sym_RBRACE, - STATE(1473), 1, - aux_sym__types_body_repeat2, + ACTIONS(1738), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + sym__unquoted_pattern, + ACTIONS(8037), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8039), 1, + aux_sym__immediate_decimal_token5, STATE(4364), 1, sym_comment, - [124344] = 6, + [124544] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5237), 1, + ACTIONS(5260), 1, anon_sym_LPAREN2, - ACTIONS(7714), 1, + ACTIONS(7640), 1, anon_sym_RBRACE, - ACTIONS(7716), 1, + ACTIONS(7642), 1, sym__entry_separator, STATE(4365), 1, sym_comment, - STATE(4663), 1, + STATE(4661), 1, sym__expr_parenthesized_immediate, - [124363] = 5, + [124563] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(459), 1, + ACTIONS(461), 1, ts_builtin_sym_end, - STATE(1363), 1, + STATE(1372), 1, aux_sym__block_body_repeat1, STATE(4366), 1, sym_comment, ACTIONS(55), 2, sym__newline, anon_sym_SEMI, - [124380] = 6, + [124580] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1492), 1, + ACTIONS(1494), 1, sym__table_head_separator, - ACTIONS(7604), 1, + ACTIONS(7701), 1, anon_sym_DOT2, STATE(4367), 1, sym_comment, - STATE(4374), 1, + STATE(4375), 1, aux_sym__where_predicate_lhs_repeat1, - STATE(4827), 1, + STATE(4745), 1, sym_path, - [124399] = 4, + [124599] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1962), 1, - sym__unquoted_pattern, STATE(4368), 1, sym_comment, - ACTIONS(1952), 3, + ACTIONS(8041), 4, + anon_sym_EQ, + anon_sym_in, sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [124414] = 3, - ACTIONS(3), 1, + anon_sym_COLON, + [124612] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(8043), 1, + anon_sym_COLON2, + STATE(4196), 1, + aux_sym_pipe_element_parenthesized_repeat1, STATE(4369), 1, sym_comment, - ACTIONS(8035), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [124427] = 3, + ACTIONS(5488), 2, + sym__newline, + sym__space, + [124629] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4370), 1, sym_comment, - ACTIONS(8037), 4, + ACTIONS(8045), 4, anon_sym_in, sym_identifier, anon_sym_nu, anon_sym_env, - [124440] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7156), 1, - anon_sym_LBRACK, - ACTIONS(7158), 1, - anon_sym_LPAREN, - STATE(3901), 1, - sym_parameter_parens, - STATE(3904), 1, - sym_parameter_bracks, - STATE(4371), 1, - sym_comment, - [124459] = 4, + [124642] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2329), 1, + ACTIONS(2389), 1, sym__entry_separator, - STATE(4372), 1, + STATE(4371), 1, sym_comment, - ACTIONS(2331), 3, + ACTIONS(2391), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [124474] = 6, + [124657] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4372), 1, + sym_comment, + ACTIONS(8047), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [124670] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, - anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__unquoted_pattern, - ACTIONS(8039), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8041), 1, - aux_sym__immediate_decimal_token5, STATE(4373), 1, sym_comment, - [124493] = 5, + ACTIONS(8049), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [124683] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1496), 1, + ACTIONS(7150), 1, + anon_sym_LBRACK, + ACTIONS(7152), 1, + anon_sym_LPAREN, + STATE(3809), 1, + sym_parameter_parens, + STATE(3810), 1, + sym_parameter_bracks, + STATE(4374), 1, + sym_comment, + [124702] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1498), 1, sym__table_head_separator, - ACTIONS(8043), 1, + ACTIONS(8051), 1, anon_sym_DOT2, - STATE(4827), 1, + STATE(4745), 1, sym_path, - STATE(4374), 2, + STATE(4375), 2, sym_comment, aux_sym__where_predicate_lhs_repeat1, - [124510] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8046), 1, - anon_sym_COLON2, - STATE(4195), 1, - aux_sym_pipe_element_parenthesized_repeat1, - STATE(4375), 1, - sym_comment, - ACTIONS(5514), 2, - sym__newline, - sym__space, - [124527] = 4, + [124719] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8048), 1, + ACTIONS(8054), 1, anon_sym_LPAREN, STATE(4376), 1, sym_comment, - ACTIONS(8050), 3, + ACTIONS(8056), 3, sym_escaped_interpolated_content, anon_sym_DQUOTE2, sym_inter_escape_sequence, - [124542] = 4, + [124734] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2098), 1, + ACTIONS(2134), 1, sym__entry_separator, STATE(4377), 1, sym_comment, - ACTIONS(2100), 3, + ACTIONS(2136), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT, - [124557] = 3, - ACTIONS(3), 1, + [124749] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1531), 1, + sym__entry_separator, STATE(4378), 1, sym_comment, - ACTIONS(8052), 4, - anon_sym_EQ, - anon_sym_in, - sym__newline, - anon_sym_COLON, - [124570] = 6, + ACTIONS(1529), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [124764] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5237), 1, + ACTIONS(5260), 1, anon_sym_LPAREN2, - ACTIONS(6062), 1, + ACTIONS(6109), 1, sym__entry_separator, - ACTIONS(6064), 1, + ACTIONS(6111), 1, anon_sym_RBRACE, STATE(4379), 1, sym_comment, - STATE(5230), 1, + STATE(5098), 1, sym__expr_parenthesized_immediate, - [124589] = 6, + [124783] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5237), 1, - anon_sym_LPAREN2, - ACTIONS(6084), 1, + ACTIONS(2445), 1, sym__entry_separator, - ACTIONS(6086), 1, - anon_sym_RBRACE, STATE(4380), 1, sym_comment, - STATE(5230), 1, - sym__expr_parenthesized_immediate, - [124608] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4381), 1, - sym_comment, - ACTIONS(7124), 4, - anon_sym_in, - sym_identifier, - anon_sym_nu, - anon_sym_env, - [124621] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8056), 1, - sym__space, - STATE(4136), 1, - aux_sym_attribute_repeat1, - STATE(4382), 1, - sym_comment, - ACTIONS(8054), 2, - sym__newline, - anon_sym_SEMI, - [124638] = 4, + ACTIONS(2447), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + [124798] = 4, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(8058), 1, anon_sym_LPAREN, - STATE(4383), 1, + STATE(4381), 1, sym_comment, ACTIONS(8060), 3, sym_escaped_interpolated_content, anon_sym_DQUOTE2, sym_inter_escape_sequence, - [124653] = 4, + [124813] = 6, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1554), 1, + ACTIONS(5260), 1, + anon_sym_LPAREN2, + ACTIONS(6113), 1, sym__entry_separator, - STATE(4384), 1, + ACTIONS(6115), 1, + anon_sym_RBRACE, + STATE(4382), 1, sym_comment, - ACTIONS(1552), 3, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_DOT2, - [124668] = 3, + STATE(5098), 1, + sym__expr_parenthesized_immediate, + [124832] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8064), 1, + sym__space, + STATE(4138), 1, + aux_sym_attribute_repeat1, + STATE(4383), 1, + sym_comment, + ACTIONS(8062), 2, + sym__newline, + anon_sym_SEMI, + [124849] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4385), 1, + STATE(4384), 1, sym_comment, - ACTIONS(8062), 4, + ACTIONS(8066), 4, anon_sym_if, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [124681] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(3290), 1, - sym_block, - STATE(4386), 1, - sym_comment, - STATE(4391), 1, - aux_sym__repeat_newline, - [124700] = 5, + [124862] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3073), 1, + ACTIONS(3075), 1, ts_builtin_sym_end, - STATE(1372), 1, + STATE(1369), 1, aux_sym__block_body_repeat1, - STATE(4387), 1, + STATE(4385), 1, sym_comment, ACTIONS(55), 2, sym__newline, anon_sym_SEMI, - [124717] = 5, + [124879] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4813), 1, + ACTIONS(1515), 1, sym__entry_separator, - STATE(2240), 1, + STATE(4386), 1, + sym_comment, + ACTIONS(1513), 3, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_DOT2, + [124894] = 6, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1606), 1, + anon_sym_RBRACE, + ACTIONS(1612), 1, + sym__entry_separator, + ACTIONS(1614), 1, + anon_sym_COLON2, + STATE(1482), 1, aux_sym__types_body_repeat2, + STATE(4387), 1, + sym_comment, + [124913] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4388), 1, sym_comment, - ACTIONS(7439), 2, + ACTIONS(7044), 4, + anon_sym_in, + sym_identifier, + anon_sym_nu, + anon_sym_env, + [124926] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4816), 1, + sym__entry_separator, + STATE(2249), 1, + aux_sym__types_body_repeat2, + STATE(4389), 1, + sym_comment, + ACTIONS(7523), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [124734] = 5, + [124943] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8056), 1, + ACTIONS(8064), 1, sym__space, - STATE(4382), 1, + STATE(4383), 1, aux_sym_attribute_repeat1, - STATE(4389), 1, + STATE(4390), 1, sym_comment, - ACTIONS(8064), 2, + ACTIONS(8068), 2, sym__newline, anon_sym_SEMI, - [124751] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(3296), 1, - sym_block, - STATE(4390), 1, - sym_comment, - STATE(4392), 1, - aux_sym__repeat_newline, - [124770] = 6, + [124960] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(3803), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(3297), 1, + STATE(3293), 1, sym_block, STATE(4391), 1, sym_comment, - [124789] = 6, - ACTIONS(3), 1, + STATE(4395), 1, + aux_sym__repeat_newline, + [124979] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, - ACTIONS(3803), 1, + ACTIONS(2702), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2704), 1, + anon_sym_COLON2, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(3299), 1, + STATE(4352), 1, sym_block, STATE(4392), 1, sym_comment, - [124808] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2337), 1, - sym__entry_separator, - STATE(4393), 1, - sym_comment, - ACTIONS(2339), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [124823] = 4, + [124998] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1598), 1, sym__unquoted_pattern, - STATE(4394), 1, + STATE(4393), 1, sym_comment, - ACTIONS(1942), 3, + ACTIONS(2001), 3, sym__newline, anon_sym_PIPE, anon_sym_EQ_GT, - [124838] = 6, + [125013] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(3803), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(3226), 1, + STATE(3299), 1, sym_block, - STATE(4395), 1, + STATE(4394), 1, sym_comment, - STATE(4397), 1, + STATE(4396), 1, aux_sym__repeat_newline, - [124857] = 6, + [125032] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(3803), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(3228), 1, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(3300), 1, sym_block, - STATE(4257), 1, + STATE(4395), 1, + sym_comment, + [125051] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(528), 1, aux_sym__repeat_newline, + STATE(3302), 1, + sym_block, STATE(4396), 1, sym_comment, - [124876] = 6, + [125070] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(3803), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(517), 1, - aux_sym__repeat_newline, - STATE(3229), 1, + STATE(3230), 1, sym_block, STATE(4397), 1, sym_comment, - [124895] = 4, - ACTIONS(103), 1, + STATE(4399), 1, + aux_sym__repeat_newline, + [125089] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2475), 1, - sym__entry_separator, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(3232), 1, + sym_block, STATE(4398), 1, sym_comment, - ACTIONS(2477), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - [124910] = 5, + STATE(4400), 1, + aux_sym__repeat_newline, + [125108] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7128), 1, - anon_sym_LBRACK, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(3233), 1, + sym_block, STATE(4399), 1, sym_comment, - STATE(4408), 1, - sym_val_list, - STATE(4410), 1, - aux_sym__table_body_repeat1, - [124926] = 5, + [125127] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1740), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8066), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8068), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(528), 1, + aux_sym__repeat_newline, + STATE(3235), 1, + sym_block, STATE(4400), 1, sym_comment, - [124942] = 5, - ACTIONS(3), 1, + [125146] = 6, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2834), 1, - sym__newline, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(7852), 1, + anon_sym_LBRACK, ACTIONS(8070), 1, - anon_sym_COLON, - STATE(517), 1, - aux_sym__repeat_newline, + anon_sym_RBRACK, + STATE(1857), 1, + aux_sym__types_body_repeat2, STATE(4401), 1, sym_comment, - [124958] = 5, - ACTIONS(3), 1, + [125165] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1730), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8072), 1, - anon_sym_DOT, - ACTIONS(8074), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(3056), 1, + sym_block, STATE(4402), 1, sym_comment, - [124974] = 5, + [125181] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3998), 1, - anon_sym_AT2, - ACTIONS(8076), 1, - anon_sym_GT2, STATE(4403), 1, sym_comment, - STATE(5003), 1, - sym_param_completer, - [124990] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8078), 1, - anon_sym_RBRACK, - ACTIONS(8080), 1, - sym_hex_digit, - STATE(4404), 2, - sym_comment, - aux_sym_val_binary_repeat1, - [125004] = 4, + ACTIONS(7948), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125193] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7914), 1, + ACTIONS(7920), 1, anon_sym_LPAREN, - STATE(4405), 1, + STATE(4404), 1, sym_comment, - ACTIONS(7916), 2, + ACTIONS(7922), 2, anon_sym_SQUOTE2, sym_unescaped_interpolated_content, - [125018] = 5, + [125207] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4002), 1, + anon_sym_AT2, + ACTIONS(8072), 1, + anon_sym_GT2, + STATE(4405), 1, + sym_comment, + STATE(4988), 1, + sym_param_completer, + [125223] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4278), 1, sym__entry_separator, - ACTIONS(8083), 1, + ACTIONS(8074), 1, anon_sym_RBRACK, - STATE(4233), 1, + STATE(4401), 1, aux_sym__types_body_repeat2, STATE(4406), 1, sym_comment, - [125034] = 5, + [125239] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7128), 1, + ACTIONS(8076), 1, anon_sym_LBRACK, - STATE(4407), 1, + STATE(4682), 1, + sym_val_list, + STATE(4407), 2, sym_comment, - STATE(4410), 1, aux_sym__table_body_repeat1, - STATE(4471), 1, - sym_val_list, - [125050] = 5, + [125253] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4408), 1, + sym_comment, + ACTIONS(7950), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125265] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4278), 1, + ACTIONS(4389), 1, sym__entry_separator, - ACTIONS(8085), 1, + ACTIONS(8079), 1, anon_sym_RBRACK, - STATE(4259), 1, + STATE(2101), 1, aux_sym__types_body_repeat2, - STATE(4408), 1, + STATE(4409), 1, sym_comment, - [125066] = 5, + [125281] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3428), 1, + ACTIONS(3424), 1, sym__newline, - ACTIONS(3430), 1, + ACTIONS(3426), 1, sym__space, - STATE(1393), 1, + STATE(1392), 1, aux_sym_pipe_element_parenthesized_repeat1, - STATE(4409), 1, - sym_comment, - [125082] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8087), 1, - anon_sym_LBRACK, - STATE(4751), 1, - sym_val_list, - STATE(4410), 2, + STATE(4410), 1, sym_comment, - aux_sym__table_body_repeat1, - [125096] = 3, - ACTIONS(3), 1, + [125297] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7336), 1, + anon_sym_DOT_DOT, + ACTIONS(7513), 1, + anon_sym_RBRACK, + ACTIONS(7515), 1, + sym__entry_separator, STATE(4411), 1, sym_comment, - ACTIONS(7891), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125108] = 3, - ACTIONS(3), 1, + [125313] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7342), 1, + anon_sym_DOT_DOT, + ACTIONS(7517), 1, + anon_sym_RBRACK, + ACTIONS(7520), 1, + sym__entry_separator, STATE(4412), 1, sym_comment, - ACTIONS(7891), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125120] = 3, - ACTIONS(3), 1, + [125329] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4389), 1, + sym__entry_separator, + ACTIONS(8081), 1, + anon_sym_RBRACK, + STATE(2084), 1, + aux_sym__types_body_repeat2, STATE(4413), 1, sym_comment, - ACTIONS(7785), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125132] = 3, + [125345] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4414), 1, @@ -241392,16 +241578,16 @@ static const uint16_t ts_small_parse_table[] = { ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125144] = 3, + [125357] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4415), 1, sym_comment, - ACTIONS(7922), 3, + ACTIONS(7789), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125156] = 3, + [125369] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4416), 1, @@ -241410,7029 +241596,7031 @@ static const uint16_t ts_small_parse_table[] = { ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125168] = 3, + [125381] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4417), 1, sym_comment, - ACTIONS(7924), 3, + ACTIONS(7926), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125180] = 5, - ACTIONS(103), 1, + [125393] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7411), 1, - anon_sym_RBRACK, - ACTIONS(7413), 1, - anon_sym_DOT_DOT, - ACTIONS(7419), 1, - sym__entry_separator, STATE(4418), 1, sym_comment, - [125196] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(7429), 1, - anon_sym_RBRACK, - ACTIONS(7432), 1, - anon_sym_DOT_DOT, - ACTIONS(7434), 1, - sym__entry_separator, - STATE(4419), 1, - sym_comment, - [125212] = 3, + ACTIONS(7926), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125405] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4420), 1, + STATE(4419), 1, sym_comment, - ACTIONS(7789), 3, + ACTIONS(7791), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125224] = 5, + [125417] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1872), 1, + sym__entry_separator, + STATE(4420), 1, + sym_comment, + ACTIONS(1874), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [125431] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(793), 1, + ACTIONS(866), 1, anon_sym_RBRACE, - ACTIONS(890), 1, + ACTIONS(908), 1, sym__entry_separator, - ACTIONS(6627), 1, + ACTIONS(6679), 1, sym__unquoted_pattern_in_record, STATE(4421), 1, sym_comment, - [125240] = 4, - ACTIONS(103), 1, + [125447] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1862), 1, - sym__entry_separator, STATE(4422), 1, sym_comment, - ACTIONS(1864), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [125254] = 4, - ACTIONS(103), 1, + ACTIONS(7793), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125459] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2614), 1, - sym__entry_separator, STATE(4423), 1, sym_comment, - ACTIONS(2616), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [125268] = 3, + ACTIONS(8015), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125471] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4424), 1, sym_comment, - ACTIONS(7791), 3, + ACTIONS(7795), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125280] = 3, + [125483] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4425), 1, sym_comment, - ACTIONS(7944), 3, + ACTIONS(7887), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125292] = 5, - ACTIONS(103), 1, + [125495] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4476), 1, - sym__entry_separator, - ACTIONS(8090), 1, - anon_sym_RBRACK, - STATE(2099), 1, - aux_sym__types_body_repeat2, + ACTIONS(4002), 1, + anon_sym_AT2, + ACTIONS(8083), 1, + anon_sym_GT2, STATE(4426), 1, sym_comment, - [125308] = 5, + STATE(4876), 1, + sym_param_completer, + [125511] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4002), 1, + anon_sym_AT2, + ACTIONS(8085), 1, + anon_sym_GT2, + STATE(4427), 1, + sym_comment, + STATE(4942), 1, + sym_param_completer, + [125527] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4476), 1, + ACTIONS(4389), 1, sym__entry_separator, - ACTIONS(8092), 1, + ACTIONS(8087), 1, anon_sym_RBRACK, STATE(2092), 1, aux_sym__types_body_repeat2, - STATE(4427), 1, - sym_comment, - [125324] = 3, - ACTIONS(3), 1, - anon_sym_POUND, STATE(4428), 1, sym_comment, - ACTIONS(7966), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125336] = 3, + [125543] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1816), 1, + anon_sym_LBRACE, + ACTIONS(1818), 1, + sym__unquoted_pattern, + ACTIONS(8089), 1, + aux_sym__immediate_decimal_token5, STATE(4429), 1, sym_comment, - ACTIONS(7793), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125348] = 3, + [125559] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4430), 1, sym_comment, - ACTIONS(8011), 3, + ACTIONS(7973), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125360] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3998), 1, - anon_sym_AT2, - ACTIONS(8094), 1, - anon_sym_GT2, - STATE(4431), 1, - sym_comment, - STATE(5018), 1, - sym_param_completer, - [125376] = 5, + [125571] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4278), 1, sym__entry_separator, - ACTIONS(8096), 1, - anon_sym_RBRACK, - STATE(4201), 1, + ACTIONS(8091), 1, + anon_sym_GT2, + STATE(1947), 1, aux_sym__types_body_repeat2, + STATE(4431), 1, + sym_comment, + [125587] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4432), 1, sym_comment, - [125392] = 3, + ACTIONS(7928), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125599] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4433), 1, sym_comment, - ACTIONS(7926), 3, + ACTIONS(7928), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125404] = 5, + [125611] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, - sym__entry_separator, - ACTIONS(1625), 1, - anon_sym_COLON2, - STATE(1487), 1, - aux_sym__types_body_repeat2, + ACTIONS(5026), 1, + anon_sym_RBRACE, STATE(4434), 1, sym_comment, - [125420] = 4, + ACTIONS(5024), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [125625] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8062), 1, + ACTIONS(8066), 1, sym__entry_separator, STATE(4435), 1, sym_comment, - ACTIONS(7073), 2, + ACTIONS(7026), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [125434] = 3, + [125639] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4436), 1, sym_comment, - ACTIONS(7946), 3, - ts_builtin_sym_end, + ACTIONS(8093), 3, sym__newline, anon_sym_SEMI, - [125446] = 3, + anon_sym_RPAREN, + [125651] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4437), 1, sym_comment, - ACTIONS(8098), 3, + ACTIONS(7987), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [125458] = 3, + [125663] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4438), 1, sym_comment, - ACTIONS(7926), 3, + ACTIONS(7879), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125470] = 4, + [125675] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2515), 1, + ACTIONS(2545), 1, sym__entry_separator, STATE(4439), 1, sym_comment, - ACTIONS(2517), 2, + ACTIONS(2547), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [125484] = 5, + [125689] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3998), 1, + ACTIONS(4002), 1, anon_sym_AT2, - ACTIONS(6009), 1, + ACTIONS(5911), 1, anon_sym_EQ, - STATE(3294), 1, + STATE(3344), 1, sym_param_completer, STATE(4440), 1, sym_comment, - [125500] = 3, - ACTIONS(3), 1, + [125705] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(8095), 1, + anon_sym_RBRACK, + STATE(4156), 1, + aux_sym__types_body_repeat2, STATE(4441), 1, sym_comment, - ACTIONS(7985), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125512] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4442), 1, - sym_comment, - ACTIONS(7877), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125524] = 5, + [125721] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3998), 1, + ACTIONS(4002), 1, anon_sym_AT2, - ACTIONS(6009), 1, + ACTIONS(5911), 1, anon_sym_EQ, - STATE(3314), 1, + STATE(3378), 1, sym_param_completer, - STATE(4443), 1, - sym_comment, - [125540] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2533), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(4351), 1, - sym_block, - STATE(4444), 1, + STATE(4442), 1, sym_comment, - [125556] = 3, + [125737] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4445), 1, + STATE(4443), 1, sym_comment, - ACTIONS(7928), 3, + ACTIONS(7930), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125568] = 3, + [125749] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4446), 1, + STATE(4444), 1, sym_comment, - ACTIONS(7795), 3, + ACTIONS(7797), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125580] = 5, + [125761] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1606), 1, + anon_sym_RBRACE, + ACTIONS(1612), 1, + sym__entry_separator, + STATE(1482), 1, + aux_sym__types_body_repeat2, + STATE(4445), 1, + sym_comment, + [125777] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2878), 1, + ACTIONS(2839), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3809), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(4447), 1, + STATE(4446), 1, sym_comment, - STATE(4537), 1, + STATE(4545), 1, sym_block, - [125596] = 4, + [125793] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4988), 1, - anon_sym_RBRACE, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(4352), 1, + sym_block, + STATE(4447), 1, + sym_comment, + [125809] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4448), 1, sym_comment, - ACTIONS(4986), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [125610] = 3, + ACTIONS(7889), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [125821] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4449), 1, sym_comment, - ACTIONS(7797), 3, + ACTIONS(7799), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125622] = 4, + [125833] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2487), 1, + ACTIONS(4379), 1, sym__entry_separator, + ACTIONS(8097), 1, + anon_sym_RBRACK, + STATE(2033), 1, + aux_sym__types_body_repeat2, STATE(4450), 1, sym_comment, - ACTIONS(2489), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [125636] = 5, + [125849] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2533), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(4352), 1, - sym_block, + ACTIONS(1612), 1, + sym__entry_separator, + ACTIONS(7828), 1, + anon_sym_RBRACE, + STATE(1467), 1, + aux_sym__types_body_repeat2, STATE(4451), 1, sym_comment, - [125652] = 5, + [125865] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4278), 1, sym__entry_separator, - ACTIONS(8100), 1, + ACTIONS(8099), 1, anon_sym_RBRACK, - STATE(1937), 1, + STATE(1959), 1, aux_sym__types_body_repeat2, STATE(4452), 1, sym_comment, - [125668] = 3, - ACTIONS(3), 1, + [125881] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2612), 1, + sym__entry_separator, STATE(4453), 1, sym_comment, - ACTIONS(7942), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [125680] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1806), 1, - anon_sym_LBRACE, - ACTIONS(1808), 1, - sym__unquoted_pattern, - ACTIONS(8102), 1, - aux_sym__immediate_decimal_token5, - STATE(4454), 1, - sym_comment, - [125696] = 5, + ACTIONS(2614), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [125895] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4476), 1, + ACTIONS(1612), 1, sym__entry_separator, - ACTIONS(8104), 1, - anon_sym_RBRACK, - STATE(2097), 1, + ACTIONS(7830), 1, + anon_sym_RBRACE, + STATE(1473), 1, aux_sym__types_body_repeat2, - STATE(4455), 1, + STATE(4454), 1, sym_comment, - [125712] = 3, + [125911] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4456), 1, + STATE(4455), 1, sym_comment, - ACTIONS(7966), 3, - ts_builtin_sym_end, + ACTIONS(8101), 3, sym__newline, anon_sym_SEMI, - [125724] = 5, + anon_sym_RPAREN, + [125923] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, + ACTIONS(4278), 1, sym__entry_separator, - ACTIONS(7826), 1, - anon_sym_RBRACE, - STATE(1479), 1, + ACTIONS(8103), 1, + anon_sym_GT2, + STATE(1940), 1, aux_sym__types_body_repeat2, - STATE(4457), 1, + STATE(4456), 1, sym_comment, - [125740] = 3, + [125939] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5260), 1, + anon_sym_LPAREN2, + ACTIONS(6679), 1, + sym__unquoted_pattern_in_record, + STATE(4457), 1, + sym_comment, + STATE(4752), 1, + sym__expr_parenthesized_immediate, + [125955] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2561), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(4354), 1, + sym_block, STATE(4458), 1, sym_comment, - ACTIONS(8106), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [125752] = 4, + [125971] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5008), 1, + ACTIONS(5016), 1, sym__entry_separator, STATE(4459), 1, sym_comment, - ACTIONS(5010), 2, + ACTIONS(5018), 2, anon_sym_RBRACK, anon_sym_GT2, - [125766] = 4, + [125985] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5012), 1, + ACTIONS(5020), 1, sym__entry_separator, STATE(4460), 1, sym_comment, - ACTIONS(5014), 2, + ACTIONS(5022), 2, anon_sym_RBRACK, anon_sym_GT2, - [125780] = 5, - ACTIONS(103), 1, + [125999] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1623), 1, - sym__entry_separator, - ACTIONS(7828), 1, - anon_sym_RBRACE, - STATE(1481), 1, - aux_sym__types_body_repeat2, STATE(4461), 1, sym_comment, - [125796] = 5, + ACTIONS(7989), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126011] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5237), 1, - anon_sym_LPAREN2, - ACTIONS(6627), 1, - sym__unquoted_pattern_in_record, STATE(4462), 1, sym_comment, - STATE(4662), 1, - sym__expr_parenthesized_immediate, - [125812] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4463), 1, - sym_comment, - ACTIONS(7944), 3, + ACTIONS(7932), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125824] = 5, + [126023] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2533), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(3031), 1, - sym_block, - STATE(4464), 1, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(8105), 1, + anon_sym_GT2, + STATE(1948), 1, + aux_sym__types_body_repeat2, + STATE(4463), 1, sym_comment, - [125840] = 3, + [126039] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4465), 1, + ACTIONS(7437), 1, + anon_sym_if, + ACTIONS(8107), 1, + anon_sym_EQ_GT, + STATE(4464), 1, sym_comment, - ACTIONS(7989), 3, - ts_builtin_sym_end, + STATE(5018), 1, + sym_match_guard, + [126055] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1916), 1, + anon_sym_POUND_BANG, + ACTIONS(8109), 1, sym__newline, - anon_sym_SEMI, - [125852] = 5, + STATE(4465), 2, + aux_sym__repeat_newline, + sym_comment, + [126069] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(1858), 1, + sym__entry_separator, + STATE(4466), 1, + sym_comment, + ACTIONS(1860), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [126083] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, + ACTIONS(2903), 1, sym__newline, - ACTIONS(3346), 1, + ACTIONS(3335), 1, anon_sym_SEMI, - STATE(517), 1, + STATE(528), 1, aux_sym__repeat_newline, - STATE(4466), 1, + STATE(4467), 1, sym_comment, - [125868] = 5, + [126099] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3998), 1, + ACTIONS(4002), 1, anon_sym_AT2, - ACTIONS(8108), 1, - anon_sym_GT2, - STATE(4467), 1, - sym_comment, - STATE(5103), 1, + ACTIONS(5978), 1, + anon_sym_EQ, + STATE(3405), 1, sym_param_completer, - [125884] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1870), 1, - sym__entry_separator, STATE(4468), 1, sym_comment, - ACTIONS(1872), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [125898] = 3, + [126115] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4469), 1, sym_comment, - ACTIONS(8110), 3, + ACTIONS(7877), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [125910] = 3, + [126127] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4470), 1, sym_comment, - ACTIONS(7968), 3, - ts_builtin_sym_end, + ACTIONS(7850), 3, sym__newline, - anon_sym_SEMI, - [125922] = 5, + anon_sym_PIPE, + anon_sym_EQ_GT, + [126139] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4278), 1, sym__entry_separator, ACTIONS(8112), 1, anon_sym_RBRACK, - STATE(4158), 1, + STATE(4199), 1, aux_sym__types_body_repeat2, STATE(4471), 1, sym_comment, - [125938] = 3, + [126155] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4472), 1, sym_comment, - ACTIONS(7885), 3, + ACTIONS(8011), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [125950] = 5, + [126167] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8114), 1, - anon_sym_RBRACK, - ACTIONS(8116), 1, - sym_hex_digit, STATE(4473), 1, sym_comment, - STATE(4476), 1, - aux_sym_val_binary_repeat1, - [125966] = 5, - ACTIONS(103), 1, + ACTIONS(7887), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126179] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4278), 1, - sym__entry_separator, - ACTIONS(8118), 1, - anon_sym_GT2, - STATE(1928), 1, - aux_sym__types_body_repeat2, STATE(4474), 1, sym_comment, - [125982] = 5, - ACTIONS(3), 1, + ACTIONS(8019), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126191] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7553), 1, - anon_sym_if, - ACTIONS(8120), 1, - anon_sym_EQ_GT, STATE(4475), 1, sym_comment, - STATE(5039), 1, - sym_match_guard, - [125998] = 5, + ACTIONS(1874), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [126203] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8116), 1, - sym_hex_digit, - ACTIONS(8122), 1, - anon_sym_RBRACK, - STATE(4404), 1, - aux_sym_val_binary_repeat1, STATE(4476), 1, sym_comment, - [126014] = 5, + ACTIONS(7973), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126215] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1756), 1, - anon_sym_LPAREN2, - ACTIONS(5150), 1, - sym__unquoted_pattern, + ACTIONS(8114), 1, + anon_sym_RBRACK, + ACTIONS(8116), 1, + sym_hex_digit, STATE(4477), 1, sym_comment, - STATE(4723), 1, - sym__expr_parenthesized_immediate, - [126030] = 3, - ACTIONS(3), 1, + STATE(4482), 1, + aux_sym_val_binary_repeat1, + [126231] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4787), 1, + sym__entry_separator, + ACTIONS(4805), 1, + anon_sym_RBRACE, + STATE(2233), 1, + aux_sym__types_body_repeat2, STATE(4478), 1, sym_comment, - ACTIONS(8015), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [126042] = 3, + [126247] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4479), 1, sym_comment, - ACTIONS(7930), 3, + ACTIONS(8019), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126054] = 5, + [126259] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3998), 1, - anon_sym_AT2, - ACTIONS(8124), 1, - anon_sym_GT2, STATE(4480), 1, sym_comment, - STATE(5001), 1, - sym_param_completer, - [126070] = 3, + ACTIONS(7869), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126271] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4481), 1, sym_comment, - ACTIONS(8015), 3, + ACTIONS(8021), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126082] = 4, - ACTIONS(103), 1, + [126283] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7811), 1, - sym__entry_separator, + ACTIONS(8116), 1, + sym_hex_digit, + ACTIONS(8118), 1, + anon_sym_RBRACK, STATE(4482), 1, sym_comment, - ACTIONS(8126), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [126096] = 4, - ACTIONS(103), 1, + STATE(4658), 1, + aux_sym_val_binary_repeat1, + [126299] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7817), 1, - sym__entry_separator, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + ACTIONS(5172), 1, + sym__unquoted_pattern, STATE(4483), 1, sym_comment, - ACTIONS(8128), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [126110] = 5, - ACTIONS(3), 1, + STATE(4710), 1, + sym__expr_parenthesized_immediate, + [126315] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3998), 1, - anon_sym_AT2, - ACTIONS(6118), 1, - anon_sym_EQ, - STATE(3379), 1, - sym_param_completer, + ACTIONS(7813), 1, + sym__entry_separator, STATE(4484), 1, sym_comment, - [126126] = 4, + ACTIONS(8120), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [126329] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7824), 1, + ACTIONS(7815), 1, sym__entry_separator, STATE(4485), 1, sym_comment, - ACTIONS(8130), 2, + ACTIONS(8122), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [126140] = 4, + [126343] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1866), 1, + ACTIONS(7826), 1, sym__entry_separator, STATE(4486), 1, sym_comment, - ACTIONS(1868), 2, + ACTIONS(8124), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, - [126154] = 3, + [126357] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4487), 1, sym_comment, - ACTIONS(8017), 3, + ACTIONS(8021), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126166] = 3, + [126369] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4002), 1, + anon_sym_AT2, + ACTIONS(8126), 1, + anon_sym_GT2, STATE(4488), 1, sym_comment, - ACTIONS(7848), 3, - sym__newline, - anon_sym_PIPE, - anon_sym_EQ_GT, - [126178] = 5, + STATE(4997), 1, + sym_param_completer, + [126385] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4434), 1, + ACTIONS(1880), 1, sym__entry_separator, - ACTIONS(8132), 1, - anon_sym_RBRACK, - STATE(2082), 1, - aux_sym__types_body_repeat2, STATE(4489), 1, sym_comment, - [126194] = 3, + ACTIONS(1882), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [126399] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4490), 1, sym_comment, - ACTIONS(7867), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [126206] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4491), 1, - sym_comment, - ACTIONS(7930), 3, + ACTIONS(7971), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126218] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1617), 1, - anon_sym_RBRACE, - ACTIONS(1623), 1, - sym__entry_separator, - STATE(1460), 1, - aux_sym__types_body_repeat2, - STATE(4492), 1, - sym_comment, - [126234] = 5, + [126411] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4278), 1, + ACTIONS(4787), 1, sym__entry_separator, - ACTIONS(8134), 1, - anon_sym_GT2, - STATE(1953), 1, + ACTIONS(8128), 1, + anon_sym_RBRACE, + STATE(2228), 1, aux_sym__types_body_repeat2, - STATE(4493), 1, + STATE(4491), 1, sym_comment, - [126250] = 3, + [126427] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4494), 1, + STATE(4492), 1, sym_comment, - ACTIONS(7966), 3, + ACTIONS(7932), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126262] = 3, + [126439] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4495), 1, + STATE(4493), 1, sym_comment, - ACTIONS(7966), 3, + ACTIONS(7934), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126274] = 3, + [126451] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4496), 1, + STATE(4494), 1, sym_comment, - ACTIONS(7932), 3, + ACTIONS(7971), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126286] = 3, + [126463] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4497), 1, + STATE(4495), 1, sym_comment, - ACTIONS(7883), 3, - ts_builtin_sym_end, + ACTIONS(8130), 3, sym__newline, anon_sym_SEMI, - [126298] = 3, + anon_sym_RPAREN, + [126475] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4498), 1, + STATE(4496), 1, sym_comment, - ACTIONS(8017), 3, + ACTIONS(7975), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126310] = 5, - ACTIONS(3), 1, + [126487] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8116), 1, - sym_hex_digit, - ACTIONS(8136), 1, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(8132), 1, anon_sym_RBRACK, - STATE(4499), 1, + STATE(1934), 1, + aux_sym__types_body_repeat2, + STATE(4497), 1, sym_comment, - STATE(4502), 1, - aux_sym_val_binary_repeat1, - [126326] = 3, + [126503] = 5, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(7852), 1, + anon_sym_LBRACK, + STATE(1857), 1, + aux_sym__types_body_repeat2, + STATE(4498), 1, + sym_comment, + [126519] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4500), 1, + STATE(4499), 1, sym_comment, - ACTIONS(7970), 3, - ts_builtin_sym_end, + ACTIONS(8134), 3, sym__newline, anon_sym_SEMI, - [126338] = 5, + anon_sym_RPAREN, + [126531] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4784), 1, + ACTIONS(1612), 1, sym__entry_separator, - ACTIONS(4788), 1, + ACTIONS(8136), 1, anon_sym_RBRACE, - STATE(2226), 1, + STATE(1463), 1, aux_sym__types_body_repeat2, + STATE(4500), 1, + sym_comment, + [126547] = 3, + ACTIONS(3), 1, + anon_sym_POUND, STATE(4501), 1, sym_comment, - [126354] = 5, + ACTIONS(8023), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126559] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8116), 1, - sym_hex_digit, - ACTIONS(8138), 1, - anon_sym_RBRACK, - STATE(4404), 1, - aux_sym_val_binary_repeat1, STATE(4502), 1, sym_comment, - [126370] = 3, + ACTIONS(8139), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [126571] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8116), 1, + sym_hex_digit, + ACTIONS(8141), 1, + anon_sym_RBRACK, STATE(4503), 1, sym_comment, - ACTIONS(8019), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [126382] = 3, + STATE(4506), 1, + aux_sym_val_binary_repeat1, + [126587] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4504), 1, sym_comment, - ACTIONS(8019), 3, - ts_builtin_sym_end, + ACTIONS(8143), 3, sym__newline, anon_sym_SEMI, - [126394] = 3, + anon_sym_RPAREN, + [126599] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8147), 1, + anon_sym_COMMA, STATE(4505), 1, sym_comment, - ACTIONS(7946), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [126406] = 3, + ACTIONS(8145), 2, + anon_sym_RBRACK, + sym_hex_digit, + [126613] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8116), 1, + sym_hex_digit, + ACTIONS(8149), 1, + anon_sym_RBRACK, STATE(4506), 1, sym_comment, - ACTIONS(8140), 3, + STATE(4658), 1, + aux_sym_val_binary_repeat1, + [126629] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4507), 1, + sym_comment, + ACTIONS(7873), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [126418] = 5, + [126641] = 5, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(4278), 1, sym__entry_separator, - ACTIONS(7850), 1, - anon_sym_LBRACK, - STATE(1859), 1, + ACTIONS(8151), 1, + anon_sym_RBRACK, + STATE(1916), 1, aux_sym__types_body_repeat2, - STATE(4507), 1, + STATE(4508), 1, sym_comment, - [126434] = 3, + [126657] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4508), 1, + STATE(4509), 1, sym_comment, - ACTIONS(7991), 3, + ACTIONS(8023), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126446] = 5, + [126669] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, + ACTIONS(6137), 1, sym__entry_separator, - ACTIONS(8142), 1, - anon_sym_RBRACE, - STATE(1472), 1, - aux_sym__types_body_repeat2, - STATE(4509), 1, - sym_comment, - [126462] = 3, - ACTIONS(3), 1, - anon_sym_POUND, STATE(4510), 1, sym_comment, - ACTIONS(8145), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [126474] = 3, + ACTIONS(6135), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [126683] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4511), 1, sym_comment, - ACTIONS(8147), 3, + ACTIONS(7991), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [126486] = 5, + [126695] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8116), 1, - sym_hex_digit, - ACTIONS(8149), 1, - anon_sym_RBRACK, + ACTIONS(7134), 1, + anon_sym_LBRACK, + STATE(4406), 1, + sym_val_list, + STATE(4407), 1, + aux_sym__table_body_repeat1, STATE(4512), 1, sym_comment, - STATE(4514), 1, - aux_sym_val_binary_repeat1, - [126502] = 5, - ACTIONS(3), 1, + [126711] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8116), 1, - sym_hex_digit, - ACTIONS(8151), 1, - anon_sym_RBRACK, + ACTIONS(2616), 1, + sym__entry_separator, STATE(4513), 1, sym_comment, - STATE(4555), 1, - aux_sym_val_binary_repeat1, - [126518] = 5, + ACTIONS(2618), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [126725] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8116), 1, - sym_hex_digit, - ACTIONS(8153), 1, - anon_sym_RBRACK, - STATE(4404), 1, - aux_sym_val_binary_repeat1, STATE(4514), 1, sym_comment, - [126534] = 5, + ACTIONS(7952), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126737] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4784), 1, + ACTIONS(2513), 1, sym__entry_separator, - ACTIONS(8155), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__types_body_repeat2, STATE(4515), 1, sym_comment, - [126550] = 3, + ACTIONS(2515), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [126751] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8116), 1, + sym_hex_digit, + ACTIONS(8153), 1, + anon_sym_RBRACK, STATE(4516), 1, sym_comment, - ACTIONS(7970), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [126562] = 5, - ACTIONS(103), 1, + STATE(4563), 1, + aux_sym_val_binary_repeat1, + [126767] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4278), 1, - sym__entry_separator, - ACTIONS(8157), 1, - anon_sym_GT2, - STATE(1929), 1, - aux_sym__types_body_repeat2, + ACTIONS(8116), 1, + sym_hex_digit, + ACTIONS(8155), 1, + anon_sym_RBRACK, STATE(4517), 1, sym_comment, - [126578] = 5, + STATE(4520), 1, + aux_sym_val_binary_repeat1, + [126783] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4278), 1, + ACTIONS(2501), 1, sym__entry_separator, - ACTIONS(8159), 1, - anon_sym_RBRACK, - STATE(1916), 1, - aux_sym__types_body_repeat2, STATE(4518), 1, sym_comment, - [126594] = 4, + ACTIONS(2503), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [126797] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1935), 1, - anon_sym_POUND_BANG, - ACTIONS(8161), 1, - sym__newline, - STATE(4519), 2, - aux_sym__repeat_newline, + ACTIONS(5034), 1, + sym__entry_separator, + STATE(4519), 1, sym_comment, - [126608] = 5, - ACTIONS(103), 1, + ACTIONS(5036), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [126811] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1623), 1, - sym__entry_separator, - ACTIONS(8164), 1, - anon_sym_RBRACE, - STATE(1478), 1, - aux_sym__types_body_repeat2, + ACTIONS(8116), 1, + sym_hex_digit, + ACTIONS(8157), 1, + anon_sym_RBRACK, STATE(4520), 1, sym_comment, - [126624] = 5, - ACTIONS(103), 1, + STATE(4658), 1, + aux_sym_val_binary_repeat1, + [126827] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4278), 1, - sym__entry_separator, - ACTIONS(8166), 1, + ACTIONS(8116), 1, + sym_hex_digit, + ACTIONS(8159), 1, anon_sym_RBRACK, - STATE(1938), 1, - aux_sym__types_body_repeat2, STATE(4521), 1, sym_comment, - [126640] = 4, + STATE(4658), 1, + aux_sym_val_binary_repeat1, + [126843] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5032), 1, + ACTIONS(5038), 1, sym__entry_separator, STATE(4522), 1, sym_comment, - ACTIONS(5034), 2, + ACTIONS(5040), 2, anon_sym_RBRACK, anon_sym_GT2, - [126654] = 4, + [126857] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5036), 1, + ACTIONS(5042), 1, sym__entry_separator, STATE(4523), 1, sym_comment, - ACTIONS(5038), 2, + ACTIONS(5044), 2, anon_sym_RBRACK, anon_sym_GT2, - [126668] = 5, + [126871] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8116), 1, - sym_hex_digit, - ACTIONS(8168), 1, - anon_sym_RBRACK, STATE(4524), 1, sym_comment, - STATE(4527), 1, - aux_sym_val_binary_repeat1, - [126684] = 4, + ACTIONS(7952), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [126883] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1574), 1, + ACTIONS(2176), 1, sym__entry_separator, STATE(4525), 1, sym_comment, - ACTIONS(1572), 2, + ACTIONS(2178), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [126698] = 4, + anon_sym_RBRACE, + [126897] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5040), 1, + ACTIONS(1574), 1, sym__entry_separator, STATE(4526), 1, sym_comment, - ACTIONS(5042), 2, + ACTIONS(1572), 2, anon_sym_RBRACK, - anon_sym_GT2, - [126712] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + [126911] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8116), 1, - sym_hex_digit, - ACTIONS(8170), 1, - anon_sym_RBRACK, - STATE(4404), 1, - aux_sym_val_binary_repeat1, + ACTIONS(2180), 1, + sym__entry_separator, STATE(4527), 1, sym_comment, - [126728] = 4, + ACTIONS(2182), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [126925] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5044), 1, + ACTIONS(1612), 1, sym__entry_separator, + ACTIONS(8161), 1, + anon_sym_RBRACE, + STATE(1462), 1, + aux_sym__types_body_repeat2, STATE(4528), 1, sym_comment, - ACTIONS(5046), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [126742] = 4, + [126941] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2602), 1, + ACTIONS(5054), 1, sym__entry_separator, STATE(4529), 1, sym_comment, - ACTIONS(2604), 2, + ACTIONS(5056), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [126756] = 4, - ACTIONS(103), 1, + anon_sym_GT2, + [126955] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2491), 1, - sym__entry_separator, STATE(4530), 1, sym_comment, - ACTIONS(2493), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [126770] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8172), 1, - anon_sym_POUND_BANG, - ACTIONS(8174), 1, + ACTIONS(7934), 3, + ts_builtin_sym_end, sym__newline, - STATE(4519), 1, - aux_sym__repeat_newline, + anon_sym_SEMI, + [126967] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6384), 1, + sym__unquoted_pattern_in_list, + ACTIONS(6599), 1, + anon_sym_LPAREN2, STATE(4531), 1, sym_comment, - [126786] = 4, + STATE(4720), 1, + sym__expr_parenthesized_immediate, + [126983] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8178), 1, - anon_sym_COMMA, + ACTIONS(8116), 1, + sym_hex_digit, + ACTIONS(8163), 1, + anon_sym_RBRACK, STATE(4532), 1, sym_comment, - ACTIONS(8176), 2, - anon_sym_RBRACK, - sym_hex_digit, - [126800] = 4, - ACTIONS(103), 1, + STATE(4536), 1, + aux_sym_val_binary_repeat1, + [126999] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2495), 1, - sym__entry_separator, + STATE(1375), 1, + aux_sym__block_body_repeat1, STATE(4533), 1, sym_comment, - ACTIONS(2497), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [126814] = 3, + ACTIONS(153), 2, + sym__newline, + anon_sym_SEMI, + [127013] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4534), 1, sym_comment, - ACTIONS(8021), 3, + ACTIONS(7946), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126826] = 3, + [127025] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8165), 1, + anon_sym_BANG, STATE(4535), 1, sym_comment, - ACTIONS(8021), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [126838] = 5, + ACTIONS(1452), 2, + sym__table_head_separator, + anon_sym_DOT2, + [127039] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8180), 1, - anon_sym_export, - ACTIONS(8182), 1, - anon_sym_def, - ACTIONS(8184), 1, - anon_sym_extern, + ACTIONS(8116), 1, + sym_hex_digit, + ACTIONS(8167), 1, + anon_sym_RBRACK, STATE(4536), 1, sym_comment, - [126854] = 3, + STATE(4658), 1, + aux_sym_val_binary_repeat1, + [127055] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4537), 1, sym_comment, - ACTIONS(8023), 3, + ACTIONS(7975), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126866] = 5, - ACTIONS(3), 1, + [127067] = 5, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8116), 1, - sym_hex_digit, - ACTIONS(8186), 1, - anon_sym_RBRACK, - STATE(4404), 1, - aux_sym_val_binary_repeat1, + ACTIONS(8169), 1, + anon_sym_POUND_BANG, + ACTIONS(8171), 1, + sym__newline, + STATE(4465), 1, + aux_sym__repeat_newline, STATE(4538), 1, sym_comment, - [126882] = 3, - ACTIONS(3), 1, + [127083] = 3, + ACTIONS(103), 1, anon_sym_POUND, STATE(4539), 1, sym_comment, - ACTIONS(7875), 3, - ts_builtin_sym_end, + ACTIONS(858), 3, sym__newline, - anon_sym_SEMI, - [126894] = 3, + sym__space, + anon_sym_COLON2, + [127095] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4540), 1, sym_comment, - ACTIONS(8188), 3, + ACTIONS(8173), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [126906] = 3, + [127107] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4541), 1, sym_comment, - ACTIONS(7948), 3, + ACTIONS(8025), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126918] = 4, + [127119] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8190), 1, - anon_sym_BANG, STATE(4542), 1, sym_comment, - ACTIONS(1448), 2, - sym__table_head_separator, - anon_sym_DOT2, - [126932] = 3, + ACTIONS(8025), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127131] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4543), 1, sym_comment, - ACTIONS(8192), 3, + ACTIONS(7950), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [126944] = 5, + [127143] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6335), 1, - sym__unquoted_pattern_in_list, - ACTIONS(6601), 1, - anon_sym_LPAREN2, + ACTIONS(8175), 1, + anon_sym_export, + ACTIONS(8177), 1, + anon_sym_def, + ACTIONS(8179), 1, + anon_sym_extern, STATE(4544), 1, sym_comment, - STATE(4734), 1, - sym__expr_parenthesized_immediate, - [126960] = 3, + [127159] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4545), 1, sym_comment, - ACTIONS(7948), 3, + ACTIONS(8027), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [126972] = 3, - ACTIONS(3), 1, + [127171] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7997), 1, + sym__entry_separator, STATE(4546), 1, sym_comment, - ACTIONS(7993), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [126984] = 3, + ACTIONS(8181), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [127185] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8116), 1, + sym_hex_digit, + ACTIONS(8183), 1, + anon_sym_RBRACK, STATE(4547), 1, sym_comment, - ACTIONS(8194), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [126996] = 4, + STATE(4567), 1, + aux_sym_val_binary_repeat1, + [127201] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3083), 1, - anon_sym_RPAREN, STATE(4548), 1, sym_comment, - ACTIONS(2888), 2, + ACTIONS(7973), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [127010] = 5, + [127213] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8116), 1, - sym_hex_digit, - ACTIONS(8196), 1, - anon_sym_RBRACK, STATE(4549), 1, sym_comment, - STATE(4566), 1, - aux_sym_val_binary_repeat1, - [127026] = 5, + ACTIONS(7973), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127225] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8116), 1, - sym_hex_digit, - ACTIONS(8198), 1, - anon_sym_RBRACK, - STATE(4538), 1, - aux_sym_val_binary_repeat1, STATE(4550), 1, sym_comment, - [127042] = 3, + ACTIONS(8031), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127237] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4551), 1, sym_comment, - ACTIONS(7968), 3, + ACTIONS(7950), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [127054] = 3, + [127249] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4552), 1, sym_comment, - ACTIONS(7968), 3, + ACTIONS(7995), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [127066] = 3, + [127261] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4553), 1, sym_comment, - ACTIONS(7968), 3, + ACTIONS(7946), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [127078] = 3, + [127273] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3239), 1, + anon_sym_RPAREN, STATE(4554), 1, sym_comment, - ACTIONS(2094), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [127090] = 5, + ACTIONS(2851), 2, + sym__newline, + anon_sym_SEMI, + [127287] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8185), 1, + sym__table_head_separator, + STATE(4555), 1, + sym_comment, + ACTIONS(1604), 2, + anon_sym_RBRACK, + sym__entry_separator, + [127301] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8116), 1, sym_hex_digit, - ACTIONS(8200), 1, + ACTIONS(8187), 1, anon_sym_RBRACK, - STATE(4404), 1, + STATE(4521), 1, aux_sym_val_binary_repeat1, - STATE(4555), 1, - sym_comment, - [127106] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1756), 1, - anon_sym_LPAREN2, - ACTIONS(1830), 1, - sym__unquoted_pattern, STATE(4556), 1, sym_comment, - STATE(4757), 1, - sym__expr_parenthesized_immediate, - [127122] = 3, + [127317] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4557), 1, sym_comment, - ACTIONS(7871), 3, + ACTIONS(7969), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [127134] = 4, - ACTIONS(103), 1, + [127329] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8202), 1, - sym__table_head_separator, STATE(4558), 1, sym_comment, - ACTIONS(1615), 2, - anon_sym_RBRACK, - sym__entry_separator, - [127148] = 3, + ACTIONS(7975), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127341] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4559), 1, sym_comment, - ACTIONS(7970), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [127160] = 3, + ACTIONS(2130), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [127353] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4560), 1, sym_comment, - ACTIONS(7942), 3, + ACTIONS(7975), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [127172] = 3, + [127365] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4561), 1, sym_comment, - ACTIONS(7970), 3, + ACTIONS(8017), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [127184] = 5, + [127377] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3998), 1, - anon_sym_AT2, - ACTIONS(6103), 1, - anon_sym_EQ, - STATE(3385), 1, - sym_param_completer, STATE(4562), 1, sym_comment, - [127200] = 4, - ACTIONS(103), 1, + ACTIONS(8017), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [127389] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8204), 1, - anon_sym_DQUOTE, + ACTIONS(8116), 1, + sym_hex_digit, + ACTIONS(8189), 1, + anon_sym_RBRACK, STATE(4563), 1, sym_comment, - ACTIONS(8206), 2, - sym__escaped_str_content, - sym_escape_sequence, - [127214] = 3, + STATE(4658), 1, + aux_sym_val_binary_repeat1, + [127405] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + ACTIONS(1810), 1, + sym__unquoted_pattern, STATE(4564), 1, sym_comment, - ACTIONS(8013), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [127226] = 4, - ACTIONS(103), 1, + STATE(4754), 1, + sym__expr_parenthesized_immediate, + [127421] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5030), 1, - anon_sym_RBRACE, + ACTIONS(4002), 1, + anon_sym_AT2, + ACTIONS(6131), 1, + anon_sym_EQ, + STATE(3355), 1, + sym_param_completer, STATE(4565), 1, sym_comment, - ACTIONS(5028), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [127240] = 5, - ACTIONS(3), 1, + [127437] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8116), 1, - sym_hex_digit, - ACTIONS(8208), 1, - anon_sym_RBRACK, - STATE(4404), 1, - aux_sym_val_binary_repeat1, + ACTIONS(8191), 1, + anon_sym_DQUOTE, STATE(4566), 1, sym_comment, - [127256] = 5, + ACTIONS(8193), 2, + sym__escaped_str_content, + sym_escape_sequence, + [127451] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1756), 1, - anon_sym_LPAREN2, - ACTIONS(1766), 1, - sym__unquoted_pattern, + ACTIONS(8116), 1, + sym_hex_digit, + ACTIONS(8195), 1, + anon_sym_RBRACK, STATE(4567), 1, sym_comment, - STATE(4726), 1, - sym__expr_parenthesized_immediate, - [127272] = 4, + STATE(4658), 1, + aux_sym_val_binary_repeat1, + [127467] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7995), 1, + ACTIONS(1844), 1, sym__entry_separator, STATE(4568), 1, sym_comment, - ACTIONS(8210), 2, + ACTIONS(1846), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [127286] = 3, - ACTIONS(103), 1, + anon_sym_RBRACE, + [127481] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + ACTIONS(1724), 1, + sym__unquoted_pattern, STATE(4569), 1, sym_comment, - ACTIONS(1864), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [127298] = 4, + STATE(4718), 1, + sym__expr_parenthesized_immediate, + [127497] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7995), 1, - sym__entry_separator, + ACTIONS(5014), 1, + anon_sym_RBRACE, STATE(4570), 1, sym_comment, - ACTIONS(8210), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [127312] = 4, + ACTIONS(5012), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [127511] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8031), 1, + ACTIONS(4389), 1, sym__entry_separator, + ACTIONS(8197), 1, + anon_sym_RBRACK, + STATE(1974), 1, + aux_sym__types_body_repeat2, STATE(4571), 1, sym_comment, - ACTIONS(8212), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [127326] = 3, + [127527] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4572), 1, sym_comment, - ACTIONS(7932), 3, - ts_builtin_sym_end, + ACTIONS(8199), 3, sym__newline, anon_sym_SEMI, - [127338] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + [127539] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7997), 1, + sym__entry_separator, STATE(4573), 1, sym_comment, - ACTIONS(8013), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [127350] = 4, - ACTIONS(3), 1, + ACTIONS(8181), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [127553] = 4, + ACTIONS(103), 1, anon_sym_POUND, - STATE(1384), 1, - aux_sym__block_body_repeat1, + ACTIONS(2624), 1, + sym__entry_separator, STATE(4574), 1, sym_comment, - ACTIONS(153), 2, + ACTIONS(2626), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [127567] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4575), 1, + sym_comment, + ACTIONS(8019), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [127364] = 4, + [127579] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1848), 1, + ACTIONS(8033), 1, sym__entry_separator, - STATE(4575), 1, + STATE(4576), 1, sym_comment, - ACTIONS(1850), 2, + ACTIONS(8201), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [127378] = 5, + anon_sym_DOT_DOT, + [127593] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4476), 1, + ACTIONS(2628), 1, sym__entry_separator, - ACTIONS(8214), 1, - anon_sym_RBRACK, - STATE(2078), 1, - aux_sym__types_body_repeat2, - STATE(4576), 1, - sym_comment, - [127394] = 3, - ACTIONS(3), 1, - anon_sym_POUND, STATE(4577), 1, sym_comment, - ACTIONS(8216), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [127406] = 3, + ACTIONS(2630), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [127607] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4578), 1, sym_comment, - ACTIONS(8015), 3, + ACTIONS(7926), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [127418] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - STATE(4579), 1, - sym_comment, - ACTIONS(864), 3, - sym__newline, - sym__space, - anon_sym_COLON2, - [127430] = 3, + [127619] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4580), 1, + STATE(4579), 1, sym_comment, - ACTIONS(7942), 3, + ACTIONS(8019), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [127442] = 4, + [127631] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2578), 1, + ACTIONS(2636), 1, sym__entry_separator, - STATE(4581), 1, + STATE(4580), 1, sym_comment, - ACTIONS(2580), 2, + ACTIONS(2638), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [127456] = 3, + [127645] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4581), 1, + sym_comment, + ACTIONS(8203), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [127657] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4582), 1, sym_comment, - ACTIONS(8015), 3, + ACTIONS(7948), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [127468] = 3, + [127669] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4583), 1, sym_comment, - ACTIONS(2120), 3, + ACTIONS(2150), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [127480] = 3, + [127681] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4584), 1, sym_comment, - ACTIONS(7942), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [127492] = 4, + ACTIONS(4634), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [127693] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4972), 1, + ACTIONS(4944), 1, sym__entry_separator, STATE(4585), 1, sym_comment, - ACTIONS(4976), 2, + ACTIONS(4948), 2, anon_sym_RBRACK, anon_sym_GT2, - [127506] = 3, - ACTIONS(3), 1, + [127707] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(4278), 1, + sym__entry_separator, + ACTIONS(8205), 1, + anon_sym_GT2, + STATE(1927), 1, + aux_sym__types_body_repeat2, STATE(4586), 1, sym_comment, - ACTIONS(4674), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [127518] = 3, + [127723] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4587), 1, sym_comment, - ACTIONS(8218), 3, + ACTIONS(7948), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [127530] = 4, - ACTIONS(103), 1, + [127735] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5054), 1, - sym__entry_separator, STATE(4588), 1, sym_comment, - ACTIONS(5056), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [127544] = 4, + ACTIONS(4638), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + [127747] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2606), 1, + ACTIONS(5062), 1, sym__entry_separator, STATE(4589), 1, sym_comment, - ACTIONS(2608), 2, + ACTIONS(5064), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [127558] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4590), 1, - sym_comment, - ACTIONS(7944), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [127570] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4278), 1, - sym__entry_separator, - ACTIONS(8220), 1, anon_sym_GT2, - STATE(1965), 1, - aux_sym__types_body_repeat2, - STATE(4591), 1, - sym_comment, - [127586] = 3, + [127761] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4592), 1, + STATE(4590), 1, sym_comment, - ACTIONS(4654), 3, + ACTIONS(4568), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [127598] = 3, + [127773] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4593), 1, + STATE(4591), 1, sym_comment, - ACTIONS(4660), 3, + ACTIONS(4582), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [127610] = 3, + [127785] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2497), 1, + sym__entry_separator, + STATE(4592), 1, + sym_comment, + ACTIONS(2499), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [127799] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(2505), 1, + sym__entry_separator, + STATE(4593), 1, + sym_comment, + ACTIONS(2507), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [127813] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4594), 1, sym_comment, - ACTIONS(4664), 3, + ACTIONS(4586), 3, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, - [127622] = 4, + [127825] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2479), 1, + ACTIONS(4379), 1, sym__entry_separator, + ACTIONS(8207), 1, + anon_sym_RBRACK, + STATE(2106), 1, + aux_sym__types_body_repeat2, STATE(4595), 1, sym_comment, - ACTIONS(2481), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [127636] = 4, + [127841] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2479), 1, + ACTIONS(2497), 1, sym__entry_separator, STATE(4596), 1, sym_comment, - ACTIONS(2481), 2, + ACTIONS(2499), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [127650] = 3, + [127855] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4597), 1, sym_comment, - ACTIONS(7924), 3, + ACTIONS(7926), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [127662] = 3, + [127867] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4598), 1, sym_comment, - ACTIONS(7924), 3, + ACTIONS(7969), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [127674] = 3, + [127879] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4599), 1, sym_comment, - ACTIONS(3083), 3, + ACTIONS(3239), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [127686] = 4, + [127891] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2618), 1, + ACTIONS(2517), 1, sym__entry_separator, STATE(4600), 1, sym_comment, - ACTIONS(2620), 2, + ACTIONS(2519), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [127700] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4601), 1, - sym_comment, - ACTIONS(7944), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [127712] = 4, + [127905] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2626), 1, + ACTIONS(1706), 1, sym__entry_separator, - STATE(4602), 1, + STATE(4601), 1, sym_comment, - ACTIONS(2628), 2, + ACTIONS(1604), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [127726] = 5, + [127919] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4434), 1, + ACTIONS(4785), 1, + anon_sym_RBRACE, + ACTIONS(4787), 1, sym__entry_separator, - ACTIONS(8222), 1, - anon_sym_RBRACK, - STATE(2065), 1, + STATE(2232), 1, aux_sym__types_body_repeat2, + STATE(4602), 1, + sym_comment, + [127935] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1714), 1, + anon_sym_LPAREN2, + ACTIONS(5213), 1, + sym__unquoted_pattern, STATE(4603), 1, sym_comment, - [127742] = 4, + STATE(4785), 1, + sym__expr_parenthesized_immediate, + [127951] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1689), 1, + ACTIONS(1612), 1, sym__entry_separator, + ACTIONS(8209), 1, + anon_sym_RBRACE, + STATE(1476), 1, + aux_sym__types_body_repeat2, STATE(4604), 1, sym_comment, - ACTIONS(1615), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [127756] = 3, + [127967] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4605), 1, sym_comment, - ACTIONS(8007), 3, + ACTIONS(7940), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [127768] = 3, + [127979] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4606), 1, sym_comment, - ACTIONS(7883), 3, - ts_builtin_sym_end, + ACTIONS(8211), 3, sym__newline, - anon_sym_SEMI, - [127780] = 3, - ACTIONS(3), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + [127991] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1612), 1, + sym__entry_separator, + ACTIONS(8035), 1, + anon_sym_RBRACE, + STATE(1472), 1, + aux_sym__types_body_repeat2, STATE(4607), 1, sym_comment, - ACTIONS(4668), 3, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - [127792] = 3, + [128007] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4608), 1, sym_comment, - ACTIONS(7946), 3, + ACTIONS(7971), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [127804] = 5, + [128019] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4784), 1, + ACTIONS(7199), 1, sym__entry_separator, - ACTIONS(4798), 1, - anon_sym_RBRACE, - STATE(2227), 1, - aux_sym__types_body_repeat2, STATE(4609), 1, sym_comment, - [127820] = 3, - ACTIONS(3), 1, + ACTIONS(7336), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [128033] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(7858), 1, + sym__entry_separator, STATE(4610), 1, sym_comment, - ACTIONS(7771), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [127832] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1756), 1, - anon_sym_LPAREN2, - ACTIONS(5191), 1, - sym__unquoted_pattern, - STATE(4611), 1, - sym_comment, - STATE(4760), 1, - sym__expr_parenthesized_immediate, - [127848] = 4, + ACTIONS(8213), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + [128047] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2483), 1, + ACTIONS(7205), 1, sym__entry_separator, - STATE(4612), 1, + STATE(4611), 1, sym_comment, - ACTIONS(2485), 2, + ACTIONS(7342), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [127862] = 5, + anon_sym_DOT_DOT, + [128061] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4434), 1, + ACTIONS(4379), 1, sym__entry_separator, - ACTIONS(8224), 1, + ACTIONS(8215), 1, anon_sym_RBRACK, - STATE(2006), 1, + STATE(1971), 1, aux_sym__types_body_repeat2, - STATE(4613), 1, + STATE(4612), 1, sym_comment, - [127878] = 4, + [128077] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8226), 1, + ACTIONS(8217), 1, anon_sym_LPAREN, - STATE(4614), 1, + STATE(4613), 1, sym_comment, - ACTIONS(8228), 2, + ACTIONS(8219), 2, anon_sym_SQUOTE2, sym_unescaped_interpolated_content, - [127892] = 4, + [128091] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8230), 1, - anon_sym_LPAREN, - STATE(4615), 1, + ACTIONS(8124), 1, + anon_sym_DOT_DOT, + ACTIONS(8221), 1, + anon_sym_RBRACK, + ACTIONS(8224), 1, + sym__entry_separator, + STATE(4614), 1, sym_comment, - ACTIONS(8232), 2, - anon_sym_SQUOTE2, - sym_unescaped_interpolated_content, - [127906] = 5, + [128107] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4434), 1, + ACTIONS(4379), 1, sym__entry_separator, - ACTIONS(8234), 1, + ACTIONS(8227), 1, anon_sym_RBRACK, - STATE(2008), 1, + STATE(1968), 1, aux_sym__types_body_repeat2, + STATE(4615), 1, + sym_comment, + [128123] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8229), 1, + anon_sym_LPAREN, STATE(4616), 1, sym_comment, - [127922] = 3, + ACTIONS(8231), 2, + anon_sym_SQUOTE2, + sym_unescaped_interpolated_content, + [128137] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4617), 1, sym_comment, - ACTIONS(8236), 3, + ACTIONS(7895), 3, + ts_builtin_sym_end, sym__newline, - anon_sym_LBRACK, - anon_sym_RBRACK, - [127934] = 4, + anon_sym_SEMI, + [128149] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7214), 1, + ACTIONS(1612), 1, sym__entry_separator, + ACTIONS(8233), 1, + anon_sym_RBRACE, + STATE(1486), 1, + aux_sym__types_body_repeat2, STATE(4618), 1, sym_comment, - ACTIONS(7413), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [127948] = 4, - ACTIONS(103), 1, + [128165] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7856), 1, - sym__entry_separator, STATE(4619), 1, sym_comment, - ACTIONS(8238), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - [127962] = 3, + ACTIONS(8236), 3, + sym__newline, + anon_sym_PIPE, + anon_sym_EQ_GT, + [128177] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4620), 1, sym_comment, - ACTIONS(7964), 3, + ACTIONS(7971), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [127974] = 5, + [128189] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5237), 1, - anon_sym_LPAREN2, - ACTIONS(5247), 1, - sym__unquoted_pattern_in_record, STATE(4621), 1, sym_comment, - STATE(4761), 1, - sym__expr_parenthesized_immediate, - [127990] = 4, + ACTIONS(7942), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [128201] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7222), 1, + ACTIONS(5421), 1, sym__entry_separator, STATE(4622), 1, sym_comment, - ACTIONS(7432), 2, + ACTIONS(5419), 2, anon_sym_RBRACK, - anon_sym_DOT_DOT, - [128004] = 3, + anon_sym_RBRACE, + [128215] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5260), 1, + anon_sym_LPAREN2, + ACTIONS(5270), 1, + sym__unquoted_pattern_in_record, STATE(4623), 1, sym_comment, - ACTIONS(7934), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [128016] = 5, + STATE(4703), 1, + sym__expr_parenthesized_immediate, + [128231] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8130), 1, - anon_sym_DOT_DOT, - ACTIONS(8240), 1, - anon_sym_RBRACK, - ACTIONS(8243), 1, + ACTIONS(6069), 1, sym__entry_separator, STATE(4624), 1, sym_comment, - [128032] = 4, + ACTIONS(6067), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [128245] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2558), 1, + ACTIONS(2521), 1, sym__entry_separator, STATE(4625), 1, sym_comment, - ACTIONS(2560), 2, + ACTIONS(2523), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [128046] = 5, - ACTIONS(103), 1, + [128259] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1623), 1, - sym__entry_separator, - ACTIONS(8246), 1, - anon_sym_RBRACE, - STATE(1477), 1, - aux_sym__types_body_repeat2, STATE(4626), 1, sym_comment, - [128062] = 4, + ACTIONS(8238), 3, + sym__newline, + anon_sym_LBRACK, + anon_sym_RBRACK, + [128271] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8190), 1, - anon_sym_QMARK2, STATE(4627), 1, sym_comment, - ACTIONS(1448), 2, + ACTIONS(7895), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [128283] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8165), 1, + anon_sym_QMARK2, + STATE(4628), 1, + sym_comment, + ACTIONS(1452), 2, sym__table_head_separator, anon_sym_DOT2, - [128076] = 5, + [128297] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, + ACTIONS(1750), 1, anon_sym_LBRACE, - ACTIONS(1730), 1, + ACTIONS(1752), 1, sym__unquoted_pattern, - ACTIONS(7777), 1, + ACTIONS(7779), 1, aux_sym__immediate_decimal_token5, - STATE(4628), 1, - sym_comment, - [128092] = 5, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1623), 1, - sym__entry_separator, - ACTIONS(8248), 1, - anon_sym_RBRACE, - STATE(1475), 1, - aux_sym__types_body_repeat2, STATE(4629), 1, sym_comment, - [128108] = 4, - ACTIONS(103), 1, + [128313] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5377), 1, - sym__entry_separator, STATE(4630), 1, sym_comment, - ACTIONS(5375), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [128122] = 5, + ACTIONS(7875), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [128325] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, - sym__entry_separator, - ACTIONS(8033), 1, - anon_sym_RBRACE, - STATE(1474), 1, - aux_sym__types_body_repeat2, STATE(4631), 1, sym_comment, - [128138] = 3, + ACTIONS(2638), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [128337] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4632), 1, sym_comment, - ACTIONS(7983), 3, + ACTIONS(7985), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [128150] = 3, + [128349] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1740), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8240), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8242), 1, + aux_sym__immediate_decimal_token5, STATE(4633), 1, sym_comment, - ACTIONS(7964), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [128162] = 4, + [128365] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5963), 1, + ACTIONS(1612), 1, sym__entry_separator, + ACTIONS(1614), 1, + anon_sym_COLON2, + STATE(1494), 1, + aux_sym__types_body_repeat2, STATE(4634), 1, sym_comment, - ACTIONS(5961), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [128176] = 5, + [128381] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2878), 1, + ACTIONS(2839), 1, aux_sym_cmd_identifier_token2, - ACTIONS(3809), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, + STATE(3247), 1, + sym_block, STATE(4635), 1, sym_comment, - STATE(4656), 1, - sym_block, - [128192] = 5, + [128397] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8251), 1, - anon_sym_export, - ACTIONS(8253), 1, - anon_sym_def, - ACTIONS(8255), 1, - anon_sym_extern, STATE(4636), 1, sym_comment, - [128208] = 4, - ACTIONS(103), 1, + ACTIONS(8244), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [128409] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5972), 1, - sym__entry_separator, + ACTIONS(1750), 1, + anon_sym_LBRACE, + ACTIONS(7298), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8246), 1, + anon_sym_DOT, STATE(4637), 1, sym_comment, - ACTIONS(5970), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [128222] = 3, - ACTIONS(103), 1, + [128425] = 3, + ACTIONS(3), 1, anon_sym_POUND, STATE(4638), 1, sym_comment, - ACTIONS(2580), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [128234] = 3, + ACTIONS(7781), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [128437] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(8248), 1, + anon_sym_export, + ACTIONS(8250), 1, + anon_sym_def, + ACTIONS(8252), 1, + anon_sym_extern, STATE(4639), 1, sym_comment, - ACTIONS(8257), 3, - sym__newline, - anon_sym_LBRACK, - anon_sym_RBRACK, - [128246] = 5, + [128453] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8259), 1, - anon_sym_RBRACK, - ACTIONS(8261), 1, - anon_sym_DOT_DOT, STATE(4640), 1, sym_comment, - STATE(5009), 1, - sym__match_pattern_rest, - [128262] = 5, - ACTIONS(103), 1, + ACTIONS(8013), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [128465] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2878), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(3176), 1, - sym_block, STATE(4641), 1, sym_comment, - [128278] = 5, - ACTIONS(103), 1, + ACTIONS(8254), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [128477] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4278), 1, - sym__entry_separator, - ACTIONS(8263), 1, + ACTIONS(8256), 1, anon_sym_RBRACK, - STATE(1931), 1, - aux_sym__types_body_repeat2, + ACTIONS(8258), 1, + anon_sym_DOT_DOT, STATE(4642), 1, sym_comment, - [128294] = 3, - ACTIONS(3), 1, + STATE(4833), 1, + sym__match_pattern_rest, + [128493] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1612), 1, + sym__entry_separator, + ACTIONS(8260), 1, + anon_sym_RBRACE, + STATE(1484), 1, + aux_sym__types_body_repeat2, STATE(4643), 1, sym_comment, - ACTIONS(7873), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [128306] = 5, + [128509] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1728), 1, - anon_sym_LBRACE, - ACTIONS(7306), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8265), 1, - anon_sym_DOT, + ACTIONS(8262), 1, + anon_sym_RBRACK, + ACTIONS(8264), 1, + anon_sym_DOT_DOT, STATE(4644), 1, sym_comment, - [128322] = 3, + STATE(5135), 1, + sym__match_pattern_rest, + [128525] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4645), 1, sym_comment, - ACTIONS(8267), 3, + ACTIONS(8266), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [128334] = 3, + [128537] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4646), 1, sym_comment, - ACTIONS(7779), 3, - ts_builtin_sym_end, + ACTIONS(8268), 3, sym__newline, anon_sym_SEMI, - [128346] = 5, + anon_sym_RPAREN, + [128549] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, + ACTIONS(4278), 1, sym__entry_separator, - ACTIONS(8269), 1, - anon_sym_RBRACE, - STATE(1462), 1, + ACTIONS(8270), 1, + anon_sym_RBRACK, + STATE(4228), 1, aux_sym__types_body_repeat2, STATE(4647), 1, sym_comment, - [128362] = 3, + [128565] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4648), 1, sym_comment, - ACTIONS(8271), 3, + ACTIONS(7950), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [128374] = 3, - ACTIONS(3), 1, + [128577] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1612), 1, + sym__entry_separator, + ACTIONS(8272), 1, + anon_sym_RBRACE, + STATE(1471), 1, + aux_sym__types_body_repeat2, STATE(4649), 1, sym_comment, - ACTIONS(8273), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [128386] = 4, - ACTIONS(103), 1, + [128593] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2610), 1, - sym__entry_separator, + ACTIONS(2903), 1, + sym__newline, + ACTIONS(8274), 1, + anon_sym_COLON, + STATE(528), 1, + aux_sym__repeat_newline, STATE(4650), 1, sym_comment, - ACTIONS(2612), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [128400] = 3, + [128609] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1752), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8276), 1, + anon_sym_DOT, + ACTIONS(8278), 1, + aux_sym__immediate_decimal_token5, STATE(4651), 1, sym_comment, - ACTIONS(8009), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [128412] = 5, + [128625] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8275), 1, - anon_sym_RBRACK, - ACTIONS(8277), 1, - anon_sym_DOT_DOT, + ACTIONS(7134), 1, + anon_sym_LBRACK, + STATE(4407), 1, + aux_sym__table_body_repeat1, + STATE(4441), 1, + sym_val_list, STATE(4652), 1, sym_comment, - STATE(4862), 1, - sym__match_pattern_rest, - [128428] = 5, + [128641] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, + ACTIONS(866), 1, + anon_sym_RBRACK, + ACTIONS(908), 1, sym__entry_separator, - ACTIONS(8279), 1, - anon_sym_RBRACE, - STATE(1463), 1, - aux_sym__types_body_repeat2, + ACTIONS(6384), 1, + sym__unquoted_pattern_in_list, STATE(4653), 1, sym_comment, - [128444] = 3, - ACTIONS(3), 1, + [128657] = 5, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(4550), 1, + sym_block, STATE(4654), 1, sym_comment, - ACTIONS(7946), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [128456] = 5, - ACTIONS(103), 1, + [128673] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(793), 1, - anon_sym_RBRACK, - ACTIONS(890), 1, - sym__entry_separator, - ACTIONS(6335), 1, - sym__unquoted_pattern_in_list, STATE(4655), 1, sym_comment, - [128472] = 3, + ACTIONS(7948), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [128685] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(4656), 1, sym_comment, - ACTIONS(8025), 3, + ACTIONS(7946), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [128484] = 4, + [128697] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(4481), 1, - sym_block, STATE(4657), 1, sym_comment, - [128497] = 4, + ACTIONS(7946), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [128709] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(4326), 1, - sym_block, - STATE(4658), 1, + ACTIONS(8280), 1, + anon_sym_RBRACK, + ACTIONS(8282), 1, + sym_hex_digit, + STATE(4658), 2, sym_comment, - [128510] = 4, + aux_sym_val_binary_repeat1, + [128723] = 5, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4784), 1, + ACTIONS(4278), 1, sym__entry_separator, - STATE(2244), 1, + ACTIONS(8285), 1, + anon_sym_RBRACK, + STATE(1949), 1, aux_sym__types_body_repeat2, STATE(4659), 1, sym_comment, - [128523] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(5074), 1, - sym__entry_separator, - ACTIONS(5076), 1, - anon_sym_RBRACK, - STATE(4660), 1, - sym_comment, - [128536] = 4, + [128739] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3809), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(4498), 1, + STATE(4541), 1, sym_block, - STATE(4661), 1, + STATE(4660), 1, sym_comment, - [128549] = 4, + [128752] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8281), 1, + ACTIONS(8287), 1, aux_sym__unquoted_in_record_with_expr_token1, - STATE(4662), 1, + STATE(4661), 1, sym_comment, - STATE(4791), 1, + STATE(4790), 1, aux_sym__unquoted_in_record_with_expr_repeat1, - [128562] = 4, - ACTIONS(103), 1, + [128765] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8283), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(4348), 1, + sym_block, + STATE(4662), 1, + sym_comment, + [128778] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(4215), 1, + sym_block, STATE(4663), 1, sym_comment, - STATE(4796), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [128575] = 4, + [128791] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3803), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, STATE(4217), 1, sym_block, STATE(4664), 1, sym_comment, - [128588] = 4, + [128804] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3809), 1, + ACTIONS(1816), 1, anon_sym_LBRACE, - STATE(4582), 1, - sym_block, + ACTIONS(1818), 1, + sym__unquoted_pattern, STATE(4665), 1, sym_comment, - [128601] = 4, - ACTIONS(3), 1, + [128817] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(4218), 1, - sym_block, + ACTIONS(7587), 1, + anon_sym_RBRACE, + ACTIONS(7589), 1, + sym__entry_separator, STATE(4666), 1, sym_comment, - [128614] = 4, + [128830] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2525), 1, - anon_sym_LBRACE, - ACTIONS(2531), 1, - sym__unquoted_pattern, + ACTIONS(5260), 1, + anon_sym_LPAREN2, STATE(4667), 1, sym_comment, - [128627] = 4, + STATE(5098), 1, + sym__expr_parenthesized_immediate, + [128843] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8285), 1, - anon_sym_DASH2, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(4349), 1, + sym_block, STATE(4668), 1, sym_comment, - STATE(5047), 1, - sym_param_short_flag, - [128640] = 4, + [128856] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7690), 1, - anon_sym_RBRACE, - ACTIONS(7692), 1, - sym__entry_separator, + ACTIONS(8289), 1, + aux_sym__unquoted_with_expr_token1, STATE(4669), 1, sym_comment, - [128653] = 4, + STATE(4768), 1, + aux_sym__unquoted_with_expr_repeat1, + [128869] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6601), 1, - anon_sym_LPAREN2, + ACTIONS(8291), 1, + anon_sym_def, + ACTIONS(8293), 1, + anon_sym_extern, STATE(4670), 1, sym_comment, - STATE(5020), 1, - sym__expr_parenthesized_immediate, - [128666] = 4, + [128882] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3809), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(4535), 1, + STATE(4534), 1, sym_block, STATE(4671), 1, sym_comment, - [128679] = 4, - ACTIONS(3), 1, + [128895] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1844), 1, - anon_sym_LBRACE, - ACTIONS(1846), 1, - sym__unquoted_pattern, + ACTIONS(2583), 1, + sym__entry_separator, + ACTIONS(2585), 1, + anon_sym_RBRACE, STATE(4672), 1, sym_comment, - [128692] = 4, + [128908] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3803), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(4223), 1, + STATE(4224), 1, sym_block, STATE(4673), 1, sym_comment, - [128705] = 4, - ACTIONS(103), 1, + [128921] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8287), 1, - anon_sym_RBRACE, - ACTIONS(8289), 1, - sym__entry_separator, + ACTIONS(2385), 1, + anon_sym_LBRACE, + ACTIONS(2387), 1, + sym__unquoted_pattern, STATE(4674), 1, sym_comment, - [128718] = 4, + [128934] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5088), 1, + ACTIONS(8295), 1, + anon_sym_RBRACE, + ACTIONS(8297), 1, sym__entry_separator, - ACTIONS(5090), 1, - anon_sym_RBRACK, STATE(4675), 1, sym_comment, - [128731] = 4, - ACTIONS(103), 1, + [128947] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8291), 1, - anon_sym_RBRACK, - ACTIONS(8293), 1, - sym__entry_separator, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(4324), 1, + sym_block, STATE(4676), 1, sym_comment, - [128744] = 3, + [128960] = 4, ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(8299), 1, + anon_sym_RBRACE, + ACTIONS(8301), 1, + sym__entry_separator, STATE(4677), 1, sym_comment, - ACTIONS(2110), 2, - anon_sym_POUND_BANG, - sym__newline, - [128755] = 4, - ACTIONS(103), 1, + [128973] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2556), 1, - sym__unquoted_pattern_in_list, - ACTIONS(7222), 1, - sym__entry_separator, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(4325), 1, + sym_block, STATE(4678), 1, sym_comment, - [128768] = 4, + [128986] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8303), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(4679), 2, + sym_comment, + aux_sym__unquoted_in_list_with_expr_repeat1, + [128997] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3809), 1, + ACTIONS(2021), 1, + sym__unquoted_pattern, + ACTIONS(2533), 1, anon_sym_LBRACE, - STATE(4580), 1, - sym_block, - STATE(4679), 1, + STATE(4680), 1, sym_comment, - [128781] = 4, + [129010] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3803), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(4277), 1, + STATE(4494), 1, sym_block, - STATE(4680), 1, + STATE(4681), 1, sym_comment, - [128794] = 4, + [129023] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7390), 1, - anon_sym_RBRACE, - ACTIONS(7392), 1, + ACTIONS(4278), 1, sym__entry_separator, - STATE(4681), 1, - sym_comment, - [128807] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(4328), 1, - sym_block, + STATE(4498), 1, + aux_sym__types_body_repeat2, STATE(4682), 1, sym_comment, - [128820] = 4, + [129036] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2325), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - ACTIONS(2327), 1, - sym__unquoted_pattern, + STATE(4294), 1, + sym_block, STATE(4683), 1, sym_comment, - [128833] = 4, + [129049] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(994), 1, + ACTIONS(5140), 1, sym__entry_separator, - ACTIONS(996), 1, - anon_sym_RBRACE, + ACTIONS(5142), 1, + anon_sym_RBRACK, STATE(4684), 1, sym_comment, - [128846] = 4, + [129062] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3803), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(4278), 1, + STATE(4430), 1, sym_block, STATE(4685), 1, sym_comment, - [128859] = 4, - ACTIONS(103), 1, + [129075] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5064), 1, - sym__entry_separator, - ACTIONS(5066), 1, - anon_sym_RBRACK, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(4338), 1, + sym_block, STATE(4686), 1, sym_comment, - [128872] = 4, + [129088] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3488), 1, - sym__space, - STATE(1406), 1, - aux_sym_pipe_element_repeat1, + ACTIONS(4389), 1, + sym__entry_separator, + STATE(2118), 1, + aux_sym__types_body_repeat2, STATE(4687), 1, sym_comment, - [128885] = 4, + [129101] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3803), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(4302), 1, + STATE(4339), 1, sym_block, STATE(4688), 1, sym_comment, - [128898] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(1004), 1, - anon_sym_RBRACE, - ACTIONS(1012), 1, - sym__entry_separator, - STATE(4689), 1, - sym_comment, - [128911] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2525), 1, - sym__entry_separator, - ACTIONS(2527), 1, - anon_sym_RBRACE, - STATE(4690), 1, - sym_comment, - [128924] = 4, + [129114] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3809), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(4494), 1, + STATE(4297), 1, sym_block, - STATE(4691), 1, + STATE(4689), 1, sym_comment, - [128937] = 4, + [129127] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3803), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(4336), 1, + STATE(4277), 1, sym_block, - STATE(4692), 1, + STATE(4690), 1, sym_comment, - [128950] = 4, + [129140] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8295), 1, - anon_sym_RBRACE, - ACTIONS(8297), 1, - sym__entry_separator, - STATE(4693), 1, + ACTIONS(8306), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4691), 2, sym_comment, - [128963] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [129151] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(4279), 1, - sym_block, - STATE(4694), 1, + ACTIONS(6228), 1, + sym__entry_separator, + ACTIONS(6230), 1, + anon_sym_RBRACK, + STATE(4692), 1, sym_comment, - [128976] = 4, + [129164] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8299), 1, - anon_sym_RBRACE, - ACTIONS(8301), 1, + ACTIONS(4278), 1, sym__entry_separator, - STATE(4695), 1, + STATE(2094), 1, + aux_sym__types_body_repeat2, + STATE(4693), 1, sym_comment, - [128989] = 4, + [129177] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3803), 1, + ACTIONS(2011), 1, anon_sym_LBRACE, - STATE(4317), 1, - sym_block, - STATE(4696), 1, + ACTIONS(2021), 1, + sym__unquoted_pattern, + STATE(4694), 1, sym_comment, - [129002] = 4, + [129190] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3803), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(4337), 1, + STATE(4656), 1, sym_block, - STATE(4697), 1, + STATE(4695), 1, sym_comment, - [129015] = 4, + [129203] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5974), 1, - anon_sym_RBRACK, - ACTIONS(5976), 1, + ACTIONS(7683), 1, + anon_sym_RBRACE, + ACTIONS(7685), 1, sym__entry_separator, - STATE(4698), 1, + STATE(4696), 1, sym_comment, - [129028] = 4, + [129216] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5138), 1, - sym__entry_separator, - ACTIONS(5140), 1, - anon_sym_RBRACK, - STATE(4699), 1, + ACTIONS(8309), 1, + anon_sym_LPAREN2, + ACTIONS(8311), 1, + aux_sym__record_key_token1, + STATE(4697), 1, sym_comment, - [129041] = 4, + [129229] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8303), 1, - anon_sym_RBRACK, - ACTIONS(8305), 1, + ACTIONS(2533), 1, sym__entry_separator, - STATE(4700), 1, + ACTIONS(2535), 1, + anon_sym_RBRACE, + STATE(4698), 1, sym_comment, - [129054] = 4, + [129242] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1962), 1, - sym__unquoted_pattern, - ACTIONS(2574), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(4701), 1, + STATE(4492), 1, + sym_block, + STATE(4699), 1, sym_comment, - [129067] = 4, + [129255] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(4278), 1, + sym_block, + STATE(4700), 1, + sym_comment, + [129268] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6252), 1, - sym__entry_separator, - ACTIONS(6254), 1, - anon_sym_RBRACK, + ACTIONS(8313), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(4701), 1, + sym_comment, + STATE(4802), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [129281] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(4462), 1, + sym_block, STATE(4702), 1, sym_comment, - [129080] = 4, + [129294] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5104), 1, - sym__entry_separator, - ACTIONS(5106), 1, - anon_sym_RBRACK, + ACTIONS(8315), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(4703), 1, sym_comment, - [129093] = 3, - ACTIONS(3), 1, + STATE(4817), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [129307] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(8317), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(4704), 1, sym_comment, - ACTIONS(5016), 2, - anon_sym_GT2, - anon_sym_AT2, - [129104] = 4, + STATE(4819), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [129320] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5237), 1, - anon_sym_LPAREN2, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(4279), 1, + sym_block, STATE(4705), 1, sym_comment, - STATE(5230), 1, - sym__expr_parenthesized_immediate, - [129117] = 4, + [129333] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3809), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(4578), 1, + STATE(4553), 1, sym_block, STATE(4706), 1, sym_comment, - [129130] = 4, - ACTIONS(3), 1, + [129346] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(4491), 1, - sym_block, + ACTIONS(4379), 1, + sym__entry_separator, + STATE(2124), 1, + aux_sym__types_body_repeat2, STATE(4707), 1, sym_comment, - [129143] = 4, + [129359] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4278), 1, + ACTIONS(5100), 1, sym__entry_separator, - STATE(2064), 1, - aux_sym__types_body_repeat2, + ACTIONS(5102), 1, + anon_sym_RBRACK, STATE(4708), 1, sym_comment, - [129156] = 4, + [129372] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7696), 1, - anon_sym_RBRACE, - ACTIONS(7698), 1, - sym__entry_separator, + ACTIONS(908), 1, + anon_sym_COLON2, + ACTIONS(2702), 1, + aux_sym_cmd_identifier_token2, STATE(4709), 1, sym_comment, - [129169] = 4, - ACTIONS(3), 1, + [129385] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(4456), 1, - sym_block, + ACTIONS(8319), 1, + aux_sym__unquoted_with_expr_token1, STATE(4710), 1, sym_comment, - [129182] = 4, - ACTIONS(3), 1, + STATE(4722), 1, + aux_sym__unquoted_with_expr_repeat1, + [129398] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6333), 1, - anon_sym_DOLLAR2, - ACTIONS(8307), 1, - anon_sym_RBRACK, + ACTIONS(7609), 1, + anon_sym_RBRACE, + ACTIONS(7611), 1, + sym__entry_separator, STATE(4711), 1, sym_comment, - [129195] = 4, - ACTIONS(3), 1, + [129411] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(4584), 1, - sym_block, + ACTIONS(8321), 1, + aux_sym__unquoted_with_expr_token1, STATE(4712), 1, sym_comment, - [129208] = 4, + STATE(4723), 1, + aux_sym__unquoted_with_expr_repeat1, + [129424] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(890), 1, - anon_sym_COLON2, - ACTIONS(2662), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(5134), 1, + sym__entry_separator, + ACTIONS(5136), 1, + anon_sym_RBRACK, STATE(4713), 1, sym_comment, - [129221] = 4, + [129437] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2574), 1, + ACTIONS(2591), 1, sym__entry_separator, - ACTIONS(2576), 1, + ACTIONS(2593), 1, anon_sym_RBRACE, STATE(4714), 1, sym_comment, - [129234] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(2509), 1, - sym__entry_separator, - ACTIONS(2511), 1, - anon_sym_RBRACE, - STATE(4715), 1, - sym_comment, - [129247] = 4, + [129450] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3809), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(4495), 1, + STATE(4280), 1, sym_block, + STATE(4715), 1, + sym_comment, + [129463] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(4816), 1, + sym__entry_separator, + STATE(2254), 1, + aux_sym__types_body_repeat2, STATE(4716), 1, sym_comment, - [129260] = 4, - ACTIONS(3), 1, + [129476] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(4453), 1, - sym_block, + ACTIONS(8323), 1, + anon_sym_RBRACE, + ACTIONS(8325), 1, + sym__entry_separator, STATE(4717), 1, sym_comment, - [129273] = 4, - ACTIONS(3), 1, + [129489] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(4428), 1, - sym_block, + ACTIONS(8327), 1, + aux_sym__unquoted_with_expr_token1, STATE(4718), 1, sym_comment, - [129286] = 4, + STATE(4751), 1, + aux_sym__unquoted_with_expr_repeat1, + [129502] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2562), 1, - sym__entry_separator, - ACTIONS(2564), 1, - anon_sym_RBRACE, + ACTIONS(8329), 1, + aux_sym__unquoted_with_expr_token1, STATE(4719), 1, sym_comment, - [129299] = 4, - ACTIONS(3), 1, + STATE(4739), 1, + aux_sym__unquoted_with_expr_repeat1, + [129515] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8309), 1, - anon_sym_def, - ACTIONS(8311), 1, - anon_sym_extern, + ACTIONS(8331), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(4720), 1, sym_comment, - [129312] = 4, - ACTIONS(3), 1, + STATE(4777), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [129528] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(4551), 1, - sym_block, + ACTIONS(8333), 1, + aux_sym__unquoted_with_expr_token1, STATE(4721), 1, sym_comment, - [129325] = 4, - ACTIONS(3), 1, + STATE(4807), 1, + aux_sym__unquoted_with_expr_repeat1, + [129541] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6333), 1, - anon_sym_DOLLAR2, - ACTIONS(8313), 1, - anon_sym_RBRACK, + ACTIONS(8335), 1, + aux_sym__unquoted_with_expr_token1, STATE(4722), 1, sym_comment, - [129338] = 4, + STATE(4807), 1, + aux_sym__unquoted_with_expr_repeat1, + [129554] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8315), 1, + ACTIONS(8337), 1, aux_sym__unquoted_with_expr_token1, STATE(4723), 1, sym_comment, - STATE(4735), 1, + STATE(4807), 1, aux_sym__unquoted_with_expr_repeat1, - [129351] = 3, - ACTIONS(103), 1, + [129567] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8317), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4724), 2, + ACTIONS(1598), 1, + sym__unquoted_pattern, + ACTIONS(2001), 1, + anon_sym_LBRACE, + STATE(4724), 1, sym_comment, - aux_sym__unquoted_in_record_with_expr_repeat1, - [129362] = 4, - ACTIONS(103), 1, + [129580] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8320), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(1752), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8278), 1, + aux_sym__immediate_decimal_token5, STATE(4725), 1, sym_comment, - STATE(4741), 1, - aux_sym__unquoted_with_expr_repeat1, - [129375] = 4, + [129593] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8322), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(2525), 1, + sym__entry_separator, + ACTIONS(2527), 1, + anon_sym_RBRACE, STATE(4726), 1, sym_comment, - STATE(4755), 1, - aux_sym__unquoted_with_expr_repeat1, - [129388] = 4, + [129606] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4813), 1, - sym__entry_separator, - STATE(2251), 1, - aux_sym__types_body_repeat2, STATE(4727), 1, sym_comment, - [129401] = 4, + ACTIONS(2146), 2, + anon_sym_POUND_BANG, + sym__newline, + [129617] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8324), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(7691), 1, + anon_sym_RBRACE, + ACTIONS(7693), 1, + sym__entry_separator, STATE(4728), 1, sym_comment, - STATE(4820), 1, - aux_sym__unquoted_with_expr_repeat1, - [129414] = 4, - ACTIONS(3), 1, + [129630] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1952), 1, - anon_sym_LBRACE, - ACTIONS(1962), 1, - sym__unquoted_pattern, + ACTIONS(8339), 1, + anon_sym_RBRACE, + ACTIONS(8341), 1, + sym__entry_separator, STATE(4729), 1, sym_comment, - [129427] = 4, + [129643] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7411), 1, - anon_sym_RBRACK, - ACTIONS(7419), 1, - sym__entry_separator, + ACTIONS(8343), 1, + aux_sym__unquoted_with_expr_token1, STATE(4730), 1, sym_comment, - [129440] = 4, + STATE(4807), 1, + aux_sym__unquoted_with_expr_repeat1, + [129656] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8326), 1, - anon_sym_RBRACE, - ACTIONS(8328), 1, + ACTIONS(4787), 1, sym__entry_separator, + STATE(2245), 1, + aux_sym__types_body_repeat2, STATE(4731), 1, sym_comment, - [129453] = 4, - ACTIONS(3), 1, + [129669] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(4479), 1, - sym_block, + ACTIONS(8345), 1, + anon_sym_RBRACK, + ACTIONS(8347), 1, + sym__entry_separator, STATE(4732), 1, sym_comment, - [129466] = 4, + [129682] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7767), 1, - anon_sym_RBRACE, - ACTIONS(7769), 1, + ACTIONS(2011), 1, sym__entry_separator, + ACTIONS(2013), 1, + anon_sym_RBRACE, STATE(4733), 1, sym_comment, - [129479] = 4, + [129695] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8330), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(7640), 1, + anon_sym_RBRACE, + ACTIONS(7642), 1, + sym__entry_separator, STATE(4734), 1, sym_comment, - STATE(4813), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [129492] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8332), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4735), 1, - sym_comment, - STATE(4822), 1, - aux_sym__unquoted_with_expr_repeat1, - [129505] = 4, + [129708] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern, - ACTIONS(1942), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(4736), 1, + STATE(4579), 1, + sym_block, + STATE(4735), 1, sym_comment, - [129518] = 4, + [129721] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7714), 1, - anon_sym_RBRACE, - ACTIONS(7716), 1, + ACTIONS(7016), 1, sym__entry_separator, + ACTIONS(8349), 1, + anon_sym_RBRACK, + STATE(4736), 1, + sym_comment, + [129734] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6382), 1, + anon_sym_DOLLAR2, + ACTIONS(8351), 1, + anon_sym_RBRACK, STATE(4737), 1, sym_comment, - [129531] = 4, + [129747] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5128), 1, + ACTIONS(6970), 1, sym__entry_separator, - ACTIONS(5130), 1, + ACTIONS(8353), 1, anon_sym_RBRACK, STATE(4738), 1, sym_comment, - [129544] = 4, + [129760] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7006), 1, - sym__entry_separator, - ACTIONS(8334), 1, - anon_sym_RBRACK, + ACTIONS(8355), 1, + aux_sym__unquoted_with_expr_token1, STATE(4739), 1, sym_comment, - [129557] = 4, + STATE(4807), 1, + aux_sym__unquoted_with_expr_repeat1, + [129773] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(6974), 1, + ACTIONS(5030), 1, sym__entry_separator, - ACTIONS(8336), 1, - anon_sym_RBRACK, + ACTIONS(5032), 1, + anon_sym_GT2, STATE(4740), 1, sym_comment, - [129570] = 4, - ACTIONS(103), 1, + [129786] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8338), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(4514), 1, + sym_block, STATE(4741), 1, sym_comment, - STATE(4822), 1, - aux_sym__unquoted_with_expr_repeat1, - [129583] = 3, + [129799] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1854), 1, + anon_sym_LBRACE, + ACTIONS(1856), 1, + sym__unquoted_pattern, STATE(4742), 1, sym_comment, - ACTIONS(8340), 2, - anon_sym_RBRACK, - sym_hex_digit, - [129594] = 4, - ACTIONS(3), 1, + [129812] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(4560), 1, - sym_block, + ACTIONS(3903), 1, + sym__entry_separator, + ACTIONS(8357), 1, + anon_sym_RBRACE, STATE(4743), 1, sym_comment, - [129607] = 4, - ACTIONS(103), 1, + [129825] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2662), 1, - aux_sym_cmd_identifier_token2, - ACTIONS(2664), 1, - anon_sym_COLON2, + ACTIONS(1738), 1, + anon_sym_LBRACE, + ACTIONS(1740), 1, + sym__unquoted_pattern, STATE(4744), 1, sym_comment, - [129620] = 4, + [129838] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(4346), 1, - sym_block, STATE(4745), 1, sym_comment, - [129633] = 4, - ACTIONS(103), 1, + ACTIONS(1515), 2, + sym__table_head_separator, + anon_sym_DOT2, + [129849] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8342), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(4524), 1, + sym_block, STATE(4746), 1, sym_comment, - STATE(4819), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [129646] = 4, - ACTIONS(103), 1, + [129862] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4434), 1, - sym__entry_separator, - STATE(2133), 1, - aux_sym__types_body_repeat2, + ACTIONS(1714), 1, + anon_sym_LPAREN2, STATE(4747), 1, sym_comment, - [129659] = 4, + STATE(5228), 1, + sym__expr_parenthesized_immediate, + [129875] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3803), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(4349), 1, + STATE(4657), 1, sym_block, STATE(4748), 1, sym_comment, - [129672] = 4, - ACTIONS(3), 1, + [129888] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(4275), 1, - sym_block, + ACTIONS(8360), 1, + anon_sym_RBRACE, + ACTIONS(8362), 1, + sym__entry_separator, STATE(4749), 1, sym_comment, - [129685] = 4, - ACTIONS(103), 1, + [129901] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4476), 1, - sym__entry_separator, - STATE(2129), 1, - aux_sym__types_body_repeat2, + ACTIONS(6382), 1, + anon_sym_DOLLAR2, + ACTIONS(8364), 1, + anon_sym_RBRACK, STATE(4750), 1, sym_comment, - [129698] = 4, + [129914] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(4278), 1, - sym__entry_separator, - STATE(4507), 1, - aux_sym__types_body_repeat2, + ACTIONS(8366), 1, + aux_sym__unquoted_with_expr_token1, STATE(4751), 1, sym_comment, - [129711] = 4, - ACTIONS(3), 1, + STATE(4807), 1, + aux_sym__unquoted_with_expr_repeat1, + [129927] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(3204), 1, - sym_block, + ACTIONS(8368), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(4752), 1, sym_comment, - [129724] = 4, - ACTIONS(103), 1, + STATE(4782), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [129940] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1952), 1, - sym__entry_separator, - ACTIONS(1954), 1, - anon_sym_RBRACE, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(3214), 1, + sym_block, STATE(4753), 1, sym_comment, - [129737] = 4, - ACTIONS(3), 1, + [129953] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1806), 1, - anon_sym_LBRACE, - ACTIONS(1808), 1, - sym__unquoted_pattern, + ACTIONS(8370), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4721), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(4754), 1, sym_comment, - [129750] = 4, + [129966] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8344), 1, + ACTIONS(8372), 1, aux_sym__unquoted_with_expr_token1, + STATE(4730), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(4755), 1, sym_comment, - STATE(4822), 1, - aux_sym__unquoted_with_expr_repeat1, - [129763] = 3, - ACTIONS(3), 1, + [129979] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(1612), 1, + sym__entry_separator, + STATE(1490), 1, + aux_sym__types_body_repeat2, STATE(4756), 1, sym_comment, - ACTIONS(8346), 2, - sym__newline, - anon_sym_SEMI, - [129774] = 4, + [129992] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8348), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(6139), 1, + anon_sym_RBRACK, + ACTIONS(6141), 1, + sym__entry_separator, STATE(4757), 1, sym_comment, - STATE(4815), 1, - aux_sym__unquoted_with_expr_repeat1, - [129787] = 4, + [130005] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1730), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8074), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(1018), 1, + anon_sym_LBRACE, + ACTIONS(2604), 1, + sym__unquoted_pattern, STATE(4758), 1, sym_comment, - [129800] = 4, - ACTIONS(103), 1, + [130018] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8350), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(2583), 1, + anon_sym_LBRACE, + ACTIONS(2589), 1, + sym__unquoted_pattern, STATE(4759), 1, sym_comment, - STATE(4816), 1, - aux_sym__unquoted_with_expr_repeat1, - [129813] = 4, + [130031] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8352), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(5389), 1, + anon_sym_RBRACK, + ACTIONS(5391), 1, + sym__entry_separator, STATE(4760), 1, sym_comment, - STATE(4771), 1, - aux_sym__unquoted_with_expr_repeat1, - [129826] = 4, - ACTIONS(103), 1, + [130044] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8354), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(4449), 1, + sym_block, STATE(4761), 1, sym_comment, - STATE(4790), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [129839] = 4, + [130057] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3809), 1, + ACTIONS(1004), 1, anon_sym_LBRACE, - STATE(4449), 1, - sym_block, + ACTIONS(2604), 1, + sym__unquoted_pattern, STATE(4762), 1, sym_comment, - [129852] = 4, - ACTIONS(103), 1, + [130070] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7678), 1, - anon_sym_RBRACE, - ACTIONS(7680), 1, - sym__entry_separator, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(4239), 1, + sym_block, STATE(4763), 1, sym_comment, - [129865] = 4, + [130083] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3803), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(4237), 1, + STATE(4240), 1, sym_block, STATE(4764), 1, sym_comment, - [129878] = 4, + [130096] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(4238), 1, - sym_block, + ACTIONS(6599), 1, + anon_sym_LPAREN2, STATE(4765), 1, sym_comment, - [129891] = 4, - ACTIONS(3), 1, + STATE(5017), 1, + sym__expr_parenthesized_immediate, + [130109] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(994), 1, - anon_sym_LBRACE, - ACTIONS(2572), 1, - sym__unquoted_pattern, + ACTIONS(8374), 1, + aux_sym__unquoted_with_expr_token1, STATE(4766), 1, sym_comment, - [129904] = 4, - ACTIONS(103), 1, + STATE(4807), 1, + aux_sym__unquoted_with_expr_repeat1, + [130122] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8356), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(3246), 1, + sym_block, STATE(4767), 1, sym_comment, - STATE(4802), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [129917] = 4, + [130135] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3891), 1, - sym__entry_separator, - ACTIONS(8358), 1, - anon_sym_RBRACE, + ACTIONS(8376), 1, + aux_sym__unquoted_with_expr_token1, STATE(4768), 1, sym_comment, - [129930] = 4, + STATE(4807), 1, + aux_sym__unquoted_with_expr_repeat1, + [130148] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, + ACTIONS(7695), 1, + anon_sym_RBRACE, + ACTIONS(7697), 1, sym__entry_separator, - STATE(1507), 1, - aux_sym__types_body_repeat2, STATE(4769), 1, sym_comment, - [129943] = 4, + [130161] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3809), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(3127), 1, + STATE(4107), 1, sym_block, STATE(4770), 1, sym_comment, - [129956] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(8361), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4771), 1, - sym_comment, - STATE(4822), 1, - aux_sym__unquoted_with_expr_repeat1, - [129969] = 4, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(4278), 1, - sym__entry_separator, - STATE(2060), 1, - aux_sym__types_body_repeat2, - STATE(4772), 1, - sym_comment, - [129982] = 4, + [130174] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3809), 1, + ACTIONS(2591), 1, anon_sym_LBRACE, - STATE(4545), 1, - sym_block, - STATE(4773), 1, + ACTIONS(2597), 1, + sym__unquoted_pattern, + STATE(4771), 1, sym_comment, - [129995] = 4, + [130187] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8363), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4774), 1, + ACTIONS(8378), 1, + sym__newline, + ACTIONS(8380), 1, + sym__space, + STATE(4772), 1, sym_comment, - STATE(4822), 1, - aux_sym__unquoted_with_expr_repeat1, - [130008] = 4, + [130200] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1623), 1, + ACTIONS(2001), 1, sym__entry_separator, - STATE(1487), 1, - aux_sym__types_body_repeat2, - STATE(4775), 1, + ACTIONS(2003), 1, + anon_sym_RBRACE, + STATE(4773), 1, sym_comment, - [130021] = 4, + [130213] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2562), 1, + ACTIONS(908), 1, anon_sym_LBRACE, - ACTIONS(2568), 1, + ACTIONS(1724), 1, sym__unquoted_pattern, - STATE(4776), 1, + STATE(4774), 1, sym_comment, - [130034] = 4, - ACTIONS(103), 1, + [130226] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1942), 1, - sym__entry_separator, - ACTIONS(1944), 1, - anon_sym_RBRACE, - STATE(4777), 1, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(4474), 1, + sym_block, + STATE(4775), 1, sym_comment, - [130047] = 3, + [130239] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4778), 1, + STATE(4776), 1, sym_comment, - ACTIONS(1527), 2, + ACTIONS(1531), 2, sym__table_head_separator, anon_sym_DOT2, - [130058] = 4, + [130250] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8382), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(4679), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + STATE(4777), 1, + sym_comment, + [130263] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3803), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(4251), 1, + STATE(4249), 1, sym_block, - STATE(4779), 1, + STATE(4778), 1, sym_comment, - [130071] = 4, + [130276] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3803), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(4258), 1, + STATE(4250), 1, sym_block, - STATE(4780), 1, + STATE(4779), 1, sym_comment, - [130084] = 3, + [130289] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4781), 1, + STATE(4780), 1, sym_comment, - ACTIONS(1531), 2, + ACTIONS(1535), 2, sym__table_head_separator, anon_sym_DOT2, - [130095] = 4, + [130300] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3803), 1, + ACTIONS(1706), 1, anon_sym_LBRACE, - STATE(4260), 1, - sym_block, + ACTIONS(2622), 1, + sym__unquoted_pattern, + STATE(4781), 1, + sym_comment, + [130313] = 4, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(8384), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4691), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(4782), 1, sym_comment, - [130108] = 4, + [130326] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3803), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(4261), 1, + STATE(4257), 1, sym_block, STATE(4783), 1, sym_comment, - [130121] = 4, + [130339] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - sym__unquoted_pattern, + STATE(4261), 1, + sym_block, STATE(4784), 1, sym_comment, - [130134] = 4, - ACTIONS(3), 1, + [130352] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(4339), 1, - sym_block, + ACTIONS(8386), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4766), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(4785), 1, sym_comment, - [130147] = 4, + [130365] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3803), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(3441), 1, + STATE(4341), 1, sym_block, STATE(4786), 1, sym_comment, - [130160] = 4, + [130378] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1012), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - ACTIONS(2572), 1, - sym__unquoted_pattern, + STATE(3256), 1, + sym_block, STATE(4787), 1, sym_comment, - [130173] = 4, + [130391] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(890), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - ACTIONS(1766), 1, - sym__unquoted_pattern, + STATE(3442), 1, + sym_block, STATE(4788), 1, sym_comment, - [130186] = 4, - ACTIONS(3), 1, + [130404] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(4623), 1, - sym_block, + ACTIONS(4278), 1, + sym__entry_separator, + STATE(2096), 1, + aux_sym__types_body_repeat2, STATE(4789), 1, sym_comment, - [130199] = 4, + [130417] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8365), 1, + ACTIONS(8388), 1, aux_sym__unquoted_in_record_with_expr_token1, - STATE(4724), 1, + STATE(4691), 1, aux_sym__unquoted_in_record_with_expr_repeat1, STATE(4790), 1, sym_comment, - [130212] = 4, - ACTIONS(103), 1, + [130430] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8367), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4724), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(1641), 1, + sym__unquoted_pattern, + ACTIONS(2525), 1, + anon_sym_LBRACE, STATE(4791), 1, sym_comment, - [130225] = 4, + [130443] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3803), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(3378), 1, + STATE(4342), 1, sym_block, STATE(4792), 1, sym_comment, - [130238] = 4, - ACTIONS(3), 1, + [130456] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1689), 1, - anon_sym_LBRACE, - ACTIONS(2556), 1, - sym__unquoted_pattern, + ACTIONS(1612), 1, + sym__entry_separator, + STATE(1494), 1, + aux_sym__types_body_repeat2, STATE(4793), 1, sym_comment, - [130251] = 4, - ACTIONS(103), 1, + [130469] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5438), 1, - anon_sym_RBRACK, - ACTIONS(5440), 1, - sym__entry_separator, + ACTIONS(3787), 1, + anon_sym_LBRACE, + STATE(3381), 1, + sym_block, STATE(4794), 1, sym_comment, - [130264] = 4, + [130482] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8369), 1, + ACTIONS(8390), 1, anon_sym_RBRACK, - ACTIONS(8371), 1, + ACTIONS(8392), 1, sym__entry_separator, STATE(4795), 1, sym_comment, - [130277] = 4, - ACTIONS(103), 1, + [130495] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8373), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4724), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(4479), 1, + sym_block, STATE(4796), 1, sym_comment, - [130290] = 4, + [130508] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8375), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4774), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(5118), 1, + sym__entry_separator, + ACTIONS(5120), 1, + anon_sym_RBRACK, STATE(4797), 1, sym_comment, - [130303] = 4, + [130521] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, - ACTIONS(2509), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, + STATE(4343), 1, + sym_block, STATE(4798), 1, sym_comment, - [130316] = 4, + [130534] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8377), 1, - sym__newline, - ACTIONS(8379), 1, - sym__space, + ACTIONS(5122), 1, + sym__entry_separator, + ACTIONS(5124), 1, + anon_sym_RBRACK, STATE(4799), 1, sym_comment, - [130329] = 4, + [130547] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3809), 1, + ACTIONS(3787), 1, anon_sym_LBRACE, - STATE(4541), 1, + STATE(4345), 1, sym_block, STATE(4800), 1, sym_comment, - [130342] = 4, + [130560] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1756), 1, - anon_sym_LPAREN2, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(4481), 1, + sym_block, STATE(4801), 1, sym_comment, - STATE(5243), 1, - sym__expr_parenthesized_immediate, - [130355] = 4, + [130573] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8381), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(4724), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(8394), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(4679), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, STATE(4802), 1, sym_comment, - [130368] = 4, + [130586] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(4340), 1, - sym_block, + ACTIONS(8396), 1, + anon_sym_def, + ACTIONS(8398), 1, + anon_sym_extern, STATE(4803), 1, sym_comment, - [130381] = 4, + [130599] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8383), 1, - anon_sym_def, - ACTIONS(8385), 1, - anon_sym_extern, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(4487), 1, + sym_block, STATE(4804), 1, sym_comment, - [130394] = 4, + [130612] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(4342), 1, - sym_block, + ACTIONS(8400), 1, + sym_identifier, + ACTIONS(8402), 1, + anon_sym_DOLLAR, STATE(4805), 1, sym_comment, - [130407] = 4, - ACTIONS(3), 1, + [130625] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(4106), 1, - sym_block, + ACTIONS(8404), 1, + anon_sym_RBRACK, + ACTIONS(8406), 1, + sym__entry_separator, STATE(4806), 1, sym_comment, - [130420] = 4, - ACTIONS(3), 1, + [130638] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(4470), 1, - sym_block, - STATE(4807), 1, + ACTIONS(8408), 1, + aux_sym__unquoted_with_expr_token1, + STATE(4807), 2, sym_comment, - [130433] = 4, + aux_sym__unquoted_with_expr_repeat1, + [130649] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3803), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(4343), 1, + STATE(4621), 1, sym_block, STATE(4808), 1, sym_comment, - [130446] = 4, - ACTIONS(3), 1, + [130662] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3803), 1, - anon_sym_LBRACE, - STATE(3202), 1, - sym_block, + ACTIONS(2702), 1, + aux_sym_cmd_identifier_token2, + ACTIONS(2704), 1, + anon_sym_COLON2, STATE(4809), 1, sym_comment, - [130459] = 4, + [130675] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3809), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(4478), 1, + STATE(4490), 1, sym_block, STATE(4810), 1, sym_comment, - [130472] = 4, - ACTIONS(3), 1, + [130688] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8387), 1, - sym_identifier, - ACTIONS(8389), 1, - anon_sym_DOLLAR, + ACTIONS(3488), 1, + sym__space, + STATE(1407), 1, + aux_sym_pipe_element_repeat1, STATE(4811), 1, sym_comment, - [130485] = 4, + [130701] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1808), 1, - sym__unquoted_pattern_in_record, - ACTIONS(8391), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(4548), 1, + sym_block, STATE(4812), 1, sym_comment, - [130498] = 4, + [130714] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8393), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(7513), 1, + anon_sym_RBRACK, + ACTIONS(7515), 1, + sym__entry_separator, STATE(4813), 1, sym_comment, - STATE(4823), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [130511] = 4, - ACTIONS(103), 1, + [130727] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5016), 1, - sym__entry_separator, - ACTIONS(5018), 1, - anon_sym_GT2, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(4575), 1, + sym_block, STATE(4814), 1, sym_comment, - [130524] = 4, - ACTIONS(103), 1, + [130740] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8395), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(8411), 1, + anon_sym_DASH2, STATE(4815), 1, sym_comment, - STATE(4822), 1, - aux_sym__unquoted_with_expr_repeat1, - [130537] = 4, - ACTIONS(103), 1, + STATE(5039), 1, + sym_param_short_flag, + [130753] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8397), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(4549), 1, + sym_block, STATE(4816), 1, sym_comment, - STATE(4822), 1, - aux_sym__unquoted_with_expr_repeat1, - [130550] = 4, + [130766] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8399), 1, - anon_sym_LPAREN2, - ACTIONS(8401), 1, - aux_sym__record_key_token1, + ACTIONS(8413), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4691), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(4817), 1, sym_comment, - [130563] = 4, + [130779] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3809), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(4553), 1, + STATE(4476), 1, sym_block, STATE(4818), 1, sym_comment, - [130576] = 4, + [130792] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8403), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(8415), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(4691), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(4819), 1, sym_comment, - STATE(4823), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [130589] = 4, - ACTIONS(103), 1, + [130805] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8405), 1, - aux_sym__unquoted_with_expr_token1, STATE(4820), 1, sym_comment, - STATE(4822), 1, - aux_sym__unquoted_with_expr_repeat1, - [130602] = 4, + ACTIONS(8417), 2, + anon_sym_RBRACK, + sym_hex_digit, + [130816] = 4, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8407), 1, - anon_sym_RBRACE, - ACTIONS(8409), 1, + ACTIONS(2622), 1, + sym__unquoted_pattern_in_list, + ACTIONS(7205), 1, sym__entry_separator, STATE(4821), 1, sym_comment, - [130615] = 3, - ACTIONS(103), 1, + [130829] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8411), 1, - aux_sym__unquoted_with_expr_token1, - STATE(4822), 2, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(4542), 1, + sym_block, + STATE(4822), 1, sym_comment, - aux_sym__unquoted_with_expr_repeat1, - [130626] = 3, - ACTIONS(103), 1, + [130842] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8414), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(4823), 2, + ACTIONS(1818), 1, + sym__unquoted_pattern_in_record, + ACTIONS(8419), 1, + aux_sym__immediate_decimal_token5, + STATE(4823), 1, sym_comment, - aux_sym__unquoted_in_list_with_expr_repeat1, - [130637] = 4, - ACTIONS(3), 1, + [130855] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(4552), 1, - sym_block, + ACTIONS(5070), 1, + sym__entry_separator, + ACTIONS(5072), 1, + anon_sym_RBRACK, STATE(4824), 1, sym_comment, - [130650] = 4, - ACTIONS(3), 1, + [130868] = 4, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(3809), 1, - anon_sym_LBRACE, - STATE(4487), 1, - sym_block, + ACTIONS(1002), 1, + anon_sym_RBRACE, + ACTIONS(1018), 1, + sym__entry_separator, STATE(4825), 1, sym_comment, - [130663] = 4, + [130881] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3809), 1, + ACTIONS(3763), 1, anon_sym_LBRACE, - STATE(4534), 1, + STATE(4608), 1, sym_block, STATE(4826), 1, sym_comment, - [130676] = 3, - ACTIONS(3), 1, + [130894] = 4, + ACTIONS(103), 1, anon_sym_POUND, + ACTIONS(994), 1, + anon_sym_RBRACE, + ACTIONS(1004), 1, + sym__entry_separator, STATE(4827), 1, sym_comment, - ACTIONS(1554), 2, - sym__table_head_separator, - anon_sym_DOT2, - [130687] = 3, + [130907] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8417), 1, - sym_raw_string_content, STATE(4828), 1, sym_comment, - [130697] = 3, + ACTIONS(5030), 2, + anon_sym_GT2, + anon_sym_AT2, + [130918] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8419), 1, - anon_sym_RBRACE, + ACTIONS(3763), 1, + anon_sym_LBRACE, + STATE(4620), 1, + sym_block, STATE(4829), 1, sym_comment, - [130707] = 3, + [130931] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8421), 1, - anon_sym_GT2, STATE(4830), 1, sym_comment, - [130717] = 3, + ACTIONS(8421), 2, + sym__newline, + anon_sym_SEMI, + [130942] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8423), 1, - anon_sym_DQUOTE, + anon_sym_LT, STATE(4831), 1, sym_comment, - [130727] = 3, + [130952] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8425), 1, - anon_sym_SQUOTE2, + anon_sym_BQUOTE2, STATE(4832), 1, sym_comment, - [130737] = 3, + [130962] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8427), 1, - anon_sym_BQUOTE2, + anon_sym_RBRACK, STATE(4833), 1, sym_comment, - [130747] = 3, - ACTIONS(103), 1, + [130972] = 3, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(8429), 1, - aux_sym_cmd_identifier_token2, + anon_sym_RPAREN, STATE(4834), 1, sym_comment, - [130757] = 3, - ACTIONS(3), 1, + [130982] = 3, + ACTIONS(103), 1, anon_sym_POUND, ACTIONS(8431), 1, - sym_identifier, + aux_sym_cmd_identifier_token6, STATE(4835), 1, sym_comment, - [130767] = 3, + [130992] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8433), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(8311), 1, + aux_sym__record_key_token1, STATE(4836), 1, sym_comment, - [130777] = 3, + [131002] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8435), 1, - anon_sym_RPAREN, + ACTIONS(8433), 1, + anon_sym_RBRACK, STATE(4837), 1, sym_comment, - [130787] = 3, + [131012] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8437), 1, - anon_sym_RBRACK, + ACTIONS(8435), 1, + anon_sym_RPAREN, STATE(4838), 1, sym_comment, - [130797] = 3, - ACTIONS(3), 1, + [131022] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8439), 1, - anon_sym_RPAREN, + ACTIONS(8437), 1, + aux_sym_cmd_identifier_token6, STATE(4839), 1, sym_comment, - [130807] = 3, - ACTIONS(103), 1, + [131032] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8441), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(1598), 1, + sym__unquoted_pattern, STATE(4840), 1, sym_comment, - [130817] = 3, - ACTIONS(103), 1, + [131042] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8443), 1, - aux_sym__str_back_ticks_token1, + ACTIONS(8439), 1, + anon_sym_LT, STATE(4841), 1, sym_comment, - [130827] = 3, + [131052] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8445), 1, + ACTIONS(8441), 1, anon_sym_RBRACE, STATE(4842), 1, sym_comment, - [130837] = 3, + [131062] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7409), 1, - sym__unquoted_pattern_in_record, + ACTIONS(5118), 1, + anon_sym_EQ2, STATE(4843), 1, sym_comment, - [130847] = 3, + [131072] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8447), 1, - anon_sym_RBRACK, + ACTIONS(8443), 1, + sym_raw_string_end, STATE(4844), 1, sym_comment, - [130857] = 3, + [131082] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8449), 1, - anon_sym_GT2, + ACTIONS(8445), 1, + anon_sym_in, STATE(4845), 1, sym_comment, - [130867] = 3, + [131092] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8451), 1, - anon_sym_RPAREN, + ACTIONS(8447), 1, + sym_raw_string_end, STATE(4846), 1, sym_comment, - [130877] = 3, + [131102] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8453), 1, - sym_raw_string_end, + ACTIONS(8449), 1, + anon_sym_EQ, STATE(4847), 1, sym_comment, - [130887] = 3, + [131112] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8455), 1, + ACTIONS(8451), 1, anon_sym_RPAREN, STATE(4848), 1, sym_comment, - [130897] = 3, + [131122] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8457), 1, + ACTIONS(8453), 1, anon_sym_RBRACK, STATE(4849), 1, sym_comment, - [130907] = 3, + [131132] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8459), 1, - sym_identifier, + ACTIONS(8455), 1, + anon_sym_RBRACK, STATE(4850), 1, sym_comment, - [130917] = 3, + [131142] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8461), 1, - anon_sym_RBRACK, + ACTIONS(2604), 1, + sym__unquoted_pattern_in_record, STATE(4851), 1, sym_comment, - [130927] = 3, + [131152] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8463), 1, - anon_sym_in, + ACTIONS(8457), 1, + anon_sym_LPAREN2, STATE(4852), 1, sym_comment, - [130937] = 3, + [131162] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8465), 1, - sym_raw_string_end, + ACTIONS(8459), 1, + anon_sym_DQUOTE, STATE(4853), 1, sym_comment, - [130947] = 3, + [131172] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8467), 1, - anon_sym_DQUOTE, + ACTIONS(8461), 1, + anon_sym_SQUOTE2, STATE(4854), 1, sym_comment, - [130957] = 3, + [131182] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8469), 1, - anon_sym_SQUOTE2, + ACTIONS(8463), 1, + anon_sym_BQUOTE2, STATE(4855), 1, sym_comment, - [130967] = 3, + [131192] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8471), 1, - anon_sym_BQUOTE2, + ACTIONS(307), 1, + anon_sym_RBRACE, STATE(4856), 1, sym_comment, - [130977] = 3, + [131202] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8473), 1, - anon_sym_EQ, + ACTIONS(8465), 1, + anon_sym_RBRACK, STATE(4857), 1, sym_comment, - [130987] = 3, + [131212] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8475), 1, - anon_sym_RBRACK, + ACTIONS(8467), 1, + anon_sym_RPAREN, STATE(4858), 1, sym_comment, - [130997] = 3, + [131222] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8477), 1, - anon_sym_RPAREN, + ACTIONS(4127), 1, + sym__unquoted_pattern, STATE(4859), 1, sym_comment, - [131007] = 3, + [131232] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8479), 1, - anon_sym_RBRACE, + ACTIONS(8469), 1, + sym_attribute_identifier, STATE(4860), 1, sym_comment, - [131017] = 3, + [131242] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8481), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(1882), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(4861), 1, sym_comment, - [131027] = 3, + [131252] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8483), 1, - anon_sym_RBRACK, + ACTIONS(8471), 1, + anon_sym_RBRACE, STATE(4862), 1, sym_comment, - [131037] = 3, + [131262] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8485), 1, - sym_attribute_identifier, + ACTIONS(8473), 1, + sym_raw_string_end, STATE(4863), 1, sym_comment, - [131047] = 3, + [131272] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8487), 1, - sym_raw_string_end, + ACTIONS(8475), 1, + anon_sym_RPAREN, STATE(4864), 1, sym_comment, - [131057] = 3, + [131282] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4143), 1, - sym__unquoted_pattern, + ACTIONS(8477), 1, + anon_sym_RBRACE, STATE(4865), 1, sym_comment, - [131067] = 3, + [131292] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2531), 1, - sym__unquoted_pattern, + ACTIONS(8479), 1, + anon_sym_RBRACE, STATE(4866), 1, sym_comment, - [131077] = 3, + [131302] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern, + ACTIONS(8481), 1, + anon_sym_RBRACK, STATE(4867), 1, sym_comment, - [131087] = 3, + [131312] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8489), 1, - anon_sym_RBRACK, + ACTIONS(1740), 1, + sym__unquoted_pattern_in_record, STATE(4868), 1, sym_comment, - [131097] = 3, + [131322] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(311), 1, - anon_sym_RBRACE, + ACTIONS(8483), 1, + anon_sym_RBRACK, STATE(4869), 1, sym_comment, - [131107] = 3, + [131332] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8491), 1, - anon_sym_GT2, + ACTIONS(8485), 1, + anon_sym_DQUOTE, STATE(4870), 1, sym_comment, - [131117] = 3, + [131342] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8493), 1, - anon_sym_DQUOTE, + ACTIONS(8487), 1, + anon_sym_SQUOTE2, STATE(4871), 1, sym_comment, - [131127] = 3, + [131352] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8495), 1, - anon_sym_SQUOTE2, + ACTIONS(8489), 1, + anon_sym_BQUOTE2, STATE(4872), 1, sym_comment, - [131137] = 3, + [131362] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8497), 1, - anon_sym_BQUOTE2, + ACTIONS(8491), 1, + anon_sym_RPAREN, STATE(4873), 1, sym_comment, - [131147] = 3, + [131372] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8499), 1, - anon_sym_RPAREN, + ACTIONS(2021), 1, + sym__unquoted_pattern_in_record, STATE(4874), 1, sym_comment, - [131157] = 3, + [131382] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8501), 1, - anon_sym_GT2, + ACTIONS(8493), 1, + anon_sym_RPAREN, STATE(4875), 1, sym_comment, - [131167] = 3, + [131392] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8503), 1, - anon_sym_RBRACK, + ACTIONS(8495), 1, + anon_sym_GT2, STATE(4876), 1, sym_comment, - [131177] = 3, + [131402] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8505), 1, - anon_sym_RBRACE, + ACTIONS(8497), 1, + anon_sym_RPAREN, STATE(4877), 1, sym_comment, - [131187] = 3, + [131412] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8507), 1, - anon_sym_LT, + ACTIONS(8499), 1, + sym_raw_string_end, STATE(4878), 1, sym_comment, - [131197] = 3, + [131422] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8509), 1, - sym_raw_string_end, + ACTIONS(8501), 1, + sym_identifier, STATE(4879), 1, sym_comment, - [131207] = 3, + [131432] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8511), 1, - anon_sym_RPAREN, + ACTIONS(309), 1, + anon_sym_RBRACE, STATE(4880), 1, sym_comment, - [131217] = 3, + [131442] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8513), 1, - anon_sym_RPAREN, + ACTIONS(8503), 1, + anon_sym_DQUOTE, STATE(4881), 1, sym_comment, - [131227] = 3, + [131452] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8515), 1, - anon_sym_GT2, + ACTIONS(8505), 1, + anon_sym_SQUOTE2, STATE(4882), 1, sym_comment, - [131237] = 3, + [131462] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(307), 1, + ACTIONS(8507), 1, anon_sym_RBRACE, STATE(4883), 1, sym_comment, - [131247] = 3, - ACTIONS(103), 1, + [131472] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8401), 1, - aux_sym__record_key_token1, + ACTIONS(8509), 1, + anon_sym_DQUOTE, STATE(4884), 1, sym_comment, - [131257] = 3, + [131482] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8517), 1, - anon_sym_DQUOTE, + ACTIONS(8511), 1, + anon_sym_SQUOTE2, STATE(4885), 1, sym_comment, - [131267] = 3, + [131492] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8519), 1, - anon_sym_SQUOTE2, + ACTIONS(8513), 1, + anon_sym_BQUOTE2, STATE(4886), 1, sym_comment, - [131277] = 3, + [131502] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8521), 1, - anon_sym_BQUOTE2, + ACTIONS(8515), 1, + anon_sym_RPAREN, STATE(4887), 1, sym_comment, - [131287] = 3, + [131512] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8523), 1, + ACTIONS(8517), 1, anon_sym_RPAREN, STATE(4888), 1, sym_comment, - [131297] = 3, + [131522] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8525), 1, - sym_raw_string_end, + ACTIONS(8519), 1, + anon_sym_RBRACE, STATE(4889), 1, sym_comment, - [131307] = 3, + [131532] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8527), 1, - sym__table_head_separator, + ACTIONS(8521), 1, + anon_sym_BQUOTE2, STATE(4890), 1, sym_comment, - [131317] = 3, + [131542] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8529), 1, - anon_sym_RPAREN, + ACTIONS(8523), 1, + sym_raw_string_end, STATE(4891), 1, sym_comment, - [131327] = 3, + [131552] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8531), 1, - sym_raw_string_end, + ACTIONS(8525), 1, + anon_sym_RBRACE, STATE(4892), 1, sym_comment, - [131337] = 3, + [131562] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8533), 1, + ACTIONS(8527), 1, anon_sym_RBRACE, STATE(4893), 1, sym_comment, - [131347] = 3, + [131572] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8535), 1, - anon_sym_RBRACE, + ACTIONS(8529), 1, + anon_sym_DQUOTE, STATE(4894), 1, sym_comment, - [131357] = 3, + [131582] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8537), 1, - anon_sym_LPAREN2, + ACTIONS(8531), 1, + anon_sym_RPAREN, STATE(4895), 1, sym_comment, - [131367] = 3, + [131592] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8539), 1, - anon_sym_RBRACE, + ACTIONS(8533), 1, + anon_sym_DQUOTE, STATE(4896), 1, sym_comment, - [131377] = 3, + [131602] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8541), 1, - anon_sym_DQUOTE, + ACTIONS(8535), 1, + anon_sym_SQUOTE2, STATE(4897), 1, sym_comment, - [131387] = 3, + [131612] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8543), 1, - anon_sym_SQUOTE2, + ACTIONS(8537), 1, + anon_sym_BQUOTE2, STATE(4898), 1, sym_comment, - [131397] = 3, + [131622] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8545), 1, - anon_sym_BQUOTE2, + ACTIONS(8539), 1, + sym_identifier, STATE(4899), 1, sym_comment, - [131407] = 3, + [131632] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8547), 1, - anon_sym_DQUOTE, + ACTIONS(8541), 1, + anon_sym_SQUOTE2, STATE(4900), 1, sym_comment, - [131417] = 3, + [131642] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8549), 1, - anon_sym_RPAREN, + ACTIONS(8543), 1, + sym_raw_string_end, STATE(4901), 1, sym_comment, - [131427] = 3, + [131652] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8551), 1, - sym_raw_string_end, + ACTIONS(8545), 1, + anon_sym_BQUOTE2, STATE(4902), 1, sym_comment, - [131437] = 3, + [131662] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8553), 1, - anon_sym_DQUOTE, + ACTIONS(8547), 1, + anon_sym_RBRACK, STATE(4903), 1, sym_comment, - [131447] = 3, + [131672] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8555), 1, - anon_sym_SQUOTE2, + ACTIONS(8549), 1, + sym_raw_string_end, STATE(4904), 1, sym_comment, - [131457] = 3, + [131682] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8557), 1, - anon_sym_BQUOTE2, + ACTIONS(8551), 1, + anon_sym_LBRACE, STATE(4905), 1, sym_comment, - [131467] = 3, + [131692] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8559), 1, - anon_sym_RBRACE, + ACTIONS(8553), 1, + anon_sym_DQUOTE, STATE(4906), 1, sym_comment, - [131477] = 3, + [131702] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8561), 1, - anon_sym_DQUOTE, + ACTIONS(8555), 1, + anon_sym_SQUOTE2, STATE(4907), 1, sym_comment, - [131487] = 3, + [131712] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8563), 1, - anon_sym_SQUOTE2, + ACTIONS(8557), 1, + anon_sym_BQUOTE2, STATE(4908), 1, sym_comment, - [131497] = 3, - ACTIONS(3), 1, + [131722] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8565), 1, - anon_sym_BQUOTE2, + ACTIONS(8559), 1, + aux_sym_cmd_identifier_token6, STATE(4909), 1, sym_comment, - [131507] = 3, + [131732] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8567), 1, - anon_sym_SQUOTE2, + ACTIONS(8561), 1, + anon_sym_EQ, STATE(4910), 1, sym_comment, - [131517] = 3, + [131742] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8569), 1, - sym_identifier, + ACTIONS(8563), 1, + sym_raw_string_end, STATE(4911), 1, sym_comment, - [131527] = 3, + [131752] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8571), 1, - sym_raw_string_end, + ACTIONS(8565), 1, + anon_sym_RPAREN, STATE(4912), 1, sym_comment, - [131537] = 3, + [131762] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1962), 1, + ACTIONS(2589), 1, sym__unquoted_pattern_in_record, STATE(4913), 1, sym_comment, - [131547] = 3, - ACTIONS(103), 1, + [131772] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8573), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(8567), 1, + anon_sym_EQ, STATE(4914), 1, sym_comment, - [131557] = 3, + [131782] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8575), 1, - anon_sym_RPAREN, + ACTIONS(8569), 1, + anon_sym_DQUOTE, STATE(4915), 1, sym_comment, - [131567] = 3, + [131792] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8577), 1, - anon_sym_DQUOTE, + ACTIONS(8571), 1, + anon_sym_SQUOTE2, STATE(4916), 1, sym_comment, - [131577] = 3, + [131802] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8579), 1, - anon_sym_SQUOTE2, + ACTIONS(8573), 1, + anon_sym_BQUOTE2, STATE(4917), 1, sym_comment, - [131587] = 3, + [131812] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8581), 1, - anon_sym_BQUOTE2, + ACTIONS(8575), 1, + sym_long_flag_identifier, STATE(4918), 1, sym_comment, - [131597] = 3, + [131822] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8583), 1, - anon_sym_EQ, + ACTIONS(8577), 1, + anon_sym_PIPE, STATE(4919), 1, sym_comment, - [131607] = 3, + [131832] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8585), 1, - anon_sym_BQUOTE2, + ACTIONS(8579), 1, + sym_raw_string_end, STATE(4920), 1, sym_comment, - [131617] = 3, + [131842] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8587), 1, - sym_raw_string_end, + ACTIONS(5122), 1, + anon_sym_EQ2, STATE(4921), 1, sym_comment, - [131627] = 3, + [131852] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8589), 1, - anon_sym_EQ, + ACTIONS(8581), 1, + anon_sym_DQUOTE, STATE(4922), 1, sym_comment, - [131637] = 3, + [131862] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8591), 1, - anon_sym_DQUOTE, + ACTIONS(8583), 1, + anon_sym_SQUOTE2, STATE(4923), 1, sym_comment, - [131647] = 3, + [131872] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8593), 1, - anon_sym_SQUOTE2, + ACTIONS(8585), 1, + anon_sym_BQUOTE2, STATE(4924), 1, sym_comment, - [131657] = 3, - ACTIONS(3), 1, + [131882] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8595), 1, - anon_sym_BQUOTE2, + ACTIONS(8587), 1, + aux_sym_cmd_identifier_token6, STATE(4925), 1, sym_comment, - [131667] = 3, + [131892] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8597), 1, - anon_sym_RBRACE, + ACTIONS(8589), 1, + sym_param_short_flag_identifier, STATE(4926), 1, sym_comment, - [131677] = 3, + [131902] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8599), 1, - anon_sym_LBRACE, + ACTIONS(8591), 1, + sym_raw_string_end, STATE(4927), 1, sym_comment, - [131687] = 3, + [131912] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8601), 1, - sym_raw_string_end, + ACTIONS(8593), 1, + anon_sym_RBRACK, STATE(4928), 1, sym_comment, - [131697] = 3, + [131922] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8603), 1, - anon_sym_RBRACK, + ACTIONS(8595), 1, + anon_sym_DQUOTE, STATE(4929), 1, sym_comment, - [131707] = 3, + [131932] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8605), 1, - anon_sym_DQUOTE, + ACTIONS(8597), 1, + anon_sym_SQUOTE2, STATE(4930), 1, sym_comment, - [131717] = 3, + [131942] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8607), 1, - anon_sym_SQUOTE2, + ACTIONS(8599), 1, + anon_sym_BQUOTE2, STATE(4931), 1, sym_comment, - [131727] = 3, + [131952] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8609), 1, - anon_sym_BQUOTE2, + ACTIONS(8601), 1, + anon_sym_RBRACE, STATE(4932), 1, sym_comment, - [131737] = 3, + [131962] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8611), 1, - anon_sym_RBRACK, + ACTIONS(8603), 1, + anon_sym_EQ, STATE(4933), 1, sym_comment, - [131747] = 3, + [131972] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8613), 1, - sym_long_flag_identifier, + ACTIONS(8605), 1, + sym_raw_string_end, STATE(4934), 1, sym_comment, - [131757] = 3, + [131982] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8615), 1, - sym_raw_string_end, + ACTIONS(8607), 1, + anon_sym_RBRACE, STATE(4935), 1, sym_comment, - [131767] = 3, + [131992] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8617), 1, - sym_param_short_flag_identifier, + ACTIONS(8609), 1, + anon_sym_DQUOTE, STATE(4936), 1, sym_comment, - [131777] = 3, + [132002] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8619), 1, - anon_sym_DQUOTE, + ACTIONS(8611), 1, + anon_sym_SQUOTE2, STATE(4937), 1, sym_comment, - [131787] = 3, + [132012] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8621), 1, - anon_sym_SQUOTE2, + ACTIONS(8613), 1, + anon_sym_BQUOTE2, STATE(4938), 1, sym_comment, - [131797] = 3, + [132022] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8623), 1, - anon_sym_BQUOTE2, + ACTIONS(8615), 1, + anon_sym_RPAREN, STATE(4939), 1, sym_comment, - [131807] = 3, + [132032] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8625), 1, - anon_sym_RBRACE, + ACTIONS(8617), 1, + anon_sym_DQUOTE, STATE(4940), 1, sym_comment, - [131817] = 3, + [132042] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5522), 1, - anon_sym_EQ2, + ACTIONS(8619), 1, + sym_raw_string_end, STATE(4941), 1, sym_comment, - [131827] = 3, + [132052] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8627), 1, - sym_raw_string_end, + ACTIONS(8621), 1, + anon_sym_GT2, STATE(4942), 1, sym_comment, - [131837] = 3, + [132062] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8629), 1, - anon_sym_PIPE, + ACTIONS(8623), 1, + anon_sym_DQUOTE, STATE(4943), 1, sym_comment, - [131847] = 3, + [132072] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8631), 1, - anon_sym_DQUOTE, + ACTIONS(8625), 1, + anon_sym_SQUOTE2, STATE(4944), 1, sym_comment, - [131857] = 3, + [132082] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8633), 1, - anon_sym_SQUOTE2, + ACTIONS(8627), 1, + anon_sym_BQUOTE2, STATE(4945), 1, sym_comment, - [131867] = 3, - ACTIONS(3), 1, + [132092] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8635), 1, - anon_sym_BQUOTE2, + ACTIONS(8629), 1, + aux_sym_cmd_identifier_token6, STATE(4946), 1, sym_comment, - [131877] = 3, + [132102] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8637), 1, - anon_sym_RBRACE, + ACTIONS(8631), 1, + anon_sym_EQ, STATE(4947), 1, sym_comment, - [131887] = 3, + [132112] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8639), 1, - anon_sym_RPAREN, + ACTIONS(8633), 1, + sym_raw_string_end, STATE(4948), 1, sym_comment, - [131897] = 3, + [132122] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8641), 1, - sym_raw_string_end, + ACTIONS(8635), 1, + anon_sym_RBRACE, STATE(4949), 1, sym_comment, - [131907] = 3, - ACTIONS(103), 1, + [132132] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8643), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(8637), 1, + anon_sym_DQUOTE, STATE(4950), 1, sym_comment, - [131917] = 3, + [132142] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8645), 1, - anon_sym_DQUOTE, + ACTIONS(8639), 1, + anon_sym_SQUOTE2, STATE(4951), 1, sym_comment, - [131927] = 3, + [132152] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8647), 1, - anon_sym_SQUOTE2, + ACTIONS(8641), 1, + anon_sym_BQUOTE2, STATE(4952), 1, sym_comment, - [131937] = 3, + [132162] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8649), 1, - anon_sym_BQUOTE2, + ACTIONS(367), 1, + anon_sym_RPAREN2, STATE(4953), 1, sym_comment, - [131947] = 3, + [132172] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8651), 1, - anon_sym_DQUOTE, + ACTIONS(8643), 1, + sym_raw_string_end, STATE(4954), 1, sym_comment, - [131957] = 3, - ACTIONS(3), 1, + [132182] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8653), 1, - sym_raw_string_end, + ACTIONS(8645), 1, + aux_sym_cmd_identifier_token6, STATE(4955), 1, sym_comment, - [131967] = 3, - ACTIONS(103), 1, + [132192] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8655), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(8647), 1, + anon_sym_DQUOTE, STATE(4956), 1, sym_comment, - [131977] = 3, + [132202] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8657), 1, - anon_sym_DQUOTE, + ACTIONS(8649), 1, + anon_sym_SQUOTE2, STATE(4957), 1, sym_comment, - [131987] = 3, + [132212] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8659), 1, - anon_sym_SQUOTE2, + ACTIONS(8651), 1, + anon_sym_BQUOTE2, STATE(4958), 1, sym_comment, - [131997] = 3, + [132222] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8661), 1, - anon_sym_BQUOTE2, + ACTIONS(363), 1, + anon_sym_RPAREN2, STATE(4959), 1, sym_comment, - [132007] = 3, + [132232] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(367), 1, - anon_sym_RPAREN2, + ACTIONS(8653), 1, + sym_raw_string_end, STATE(4960), 1, sym_comment, - [132017] = 3, + [132242] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8663), 1, - sym_raw_string_end, + ACTIONS(8655), 1, + anon_sym_DQUOTE, STATE(4961), 1, sym_comment, - [132027] = 3, + [132252] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8665), 1, - anon_sym_DQUOTE, + ACTIONS(8657), 1, + anon_sym_SQUOTE2, STATE(4962), 1, sym_comment, - [132037] = 3, + [132262] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8667), 1, - anon_sym_SQUOTE2, + ACTIONS(8659), 1, + anon_sym_BQUOTE2, STATE(4963), 1, sym_comment, - [132047] = 3, + [132272] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8669), 1, - anon_sym_BQUOTE2, + ACTIONS(8661), 1, + anon_sym_EQ, STATE(4964), 1, sym_comment, - [132057] = 3, + [132282] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8671), 1, - anon_sym_EQ, + ACTIONS(8663), 1, + sym_raw_string_end, STATE(4965), 1, sym_comment, - [132067] = 3, + [132292] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8673), 1, - sym_raw_string_end, + ACTIONS(8665), 1, + anon_sym_DQUOTE, STATE(4966), 1, sym_comment, - [132077] = 3, + [132302] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8675), 1, - anon_sym_DQUOTE, + ACTIONS(8667), 1, + anon_sym_SQUOTE2, STATE(4967), 1, sym_comment, - [132087] = 3, + [132312] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8677), 1, - anon_sym_SQUOTE2, + ACTIONS(8669), 1, + anon_sym_BQUOTE2, STATE(4968), 1, sym_comment, - [132097] = 3, + [132322] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8679), 1, - anon_sym_BQUOTE2, + ACTIONS(8671), 1, + sym_raw_string_content, STATE(4969), 1, sym_comment, - [132107] = 3, + [132332] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8681), 1, - sym_raw_string_content, + ACTIONS(8673), 1, + anon_sym_SQUOTE2, STATE(4970), 1, sym_comment, - [132117] = 3, + [132342] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2531), 1, - sym__unquoted_pattern_in_record, + ACTIONS(8675), 1, + anon_sym_RBRACE, STATE(4971), 1, sym_comment, - [132127] = 3, - ACTIONS(103), 1, + [132352] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8683), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(8677), 1, + anon_sym_DASH_GT, STATE(4972), 1, sym_comment, - [132137] = 3, + [132362] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(363), 1, - anon_sym_RPAREN2, + ACTIONS(2170), 1, + anon_sym_LBRACK2, STATE(4973), 1, sym_comment, - [132147] = 3, - ACTIONS(3), 1, + [132372] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2118), 1, - anon_sym_LBRACK2, + ACTIONS(8679), 1, + aux_sym__str_single_quotes_token1, STATE(4974), 1, sym_comment, - [132157] = 3, + [132382] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8685), 1, - aux_sym__str_single_quotes_token1, + ACTIONS(8681), 1, + aux_sym__str_back_ticks_token1, STATE(4975), 1, sym_comment, - [132167] = 3, - ACTIONS(103), 1, + [132392] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8687), 1, - aux_sym__str_back_ticks_token1, + ACTIONS(1818), 1, + sym__unquoted_pattern_in_record, STATE(4976), 1, sym_comment, - [132177] = 3, + [132402] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5074), 1, - anon_sym_EQ2, + ACTIONS(8683), 1, + anon_sym_BQUOTE2, STATE(4977), 1, sym_comment, - [132187] = 3, + [132412] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8689), 1, + ACTIONS(8685), 1, anon_sym_RBRACE, STATE(4978), 1, sym_comment, - [132197] = 3, + [132422] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8691), 1, - anon_sym_DASH_GT, + ACTIONS(8687), 1, + anon_sym_RPAREN, STATE(4979), 1, sym_comment, - [132207] = 3, + [132432] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8693), 1, - anon_sym_EQ, + ACTIONS(8001), 1, + anon_sym_LBRACE, STATE(4980), 1, sym_comment, - [132217] = 3, + [132442] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8695), 1, - anon_sym_RBRACE, + ACTIONS(8689), 1, + anon_sym_COLON2, STATE(4981), 1, sym_comment, - [132227] = 3, + [132452] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8697), 1, - anon_sym_EQ, + ACTIONS(8691), 1, + anon_sym_RBRACK, STATE(4982), 1, sym_comment, - [132237] = 3, - ACTIONS(3), 1, + [132462] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8699), 1, - anon_sym_SQUOTE2, + ACTIONS(8693), 1, + aux_sym_shebang_token1, STATE(4983), 1, sym_comment, - [132247] = 3, - ACTIONS(103), 1, + [132472] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8701), 1, - aux_sym_shebang_token1, + ACTIONS(8007), 1, + anon_sym_LBRACE, STATE(4984), 1, sym_comment, - [132257] = 3, + [132482] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8003), 1, + ACTIONS(8695), 1, anon_sym_LBRACE, STATE(4985), 1, sym_comment, - [132267] = 3, + [132492] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8703), 1, - anon_sym_LBRACE, + ACTIONS(8697), 1, + anon_sym_RBRACK, STATE(4986), 1, sym_comment, - [132277] = 3, + [132502] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8705), 1, - anon_sym_BQUOTE2, + ACTIONS(8699), 1, + anon_sym_RBRACK, STATE(4987), 1, sym_comment, - [132287] = 3, + [132512] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8707), 1, - anon_sym_RBRACK, + ACTIONS(8701), 1, + anon_sym_GT2, STATE(4988), 1, sym_comment, - [132297] = 3, + [132522] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7997), 1, - anon_sym_LBRACE, + ACTIONS(8703), 1, + anon_sym_RBRACE, STATE(4989), 1, sym_comment, - [132307] = 3, + [132532] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8709), 1, - anon_sym_RBRACE, + ACTIONS(8705), 1, + anon_sym_RBRACK, STATE(4990), 1, sym_comment, - [132317] = 3, + [132542] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8711), 1, + ACTIONS(8707), 1, anon_sym_RPAREN, STATE(4991), 1, sym_comment, - [132327] = 3, + [132552] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8713), 1, - anon_sym_RPAREN, + ACTIONS(8709), 1, + anon_sym_GT2, STATE(4992), 1, sym_comment, - [132337] = 3, + [132562] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8715), 1, - anon_sym_RBRACK, + ACTIONS(8711), 1, + anon_sym_GT2, STATE(4993), 1, sym_comment, - [132347] = 3, + [132572] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8717), 1, - anon_sym_GT2, + ACTIONS(8713), 1, + anon_sym_RBRACE, STATE(4994), 1, sym_comment, - [132357] = 3, + [132582] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8719), 1, - anon_sym_RBRACE, + ACTIONS(8715), 1, + anon_sym_RBRACK, STATE(4995), 1, sym_comment, - [132367] = 3, - ACTIONS(3), 1, + [132592] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8721), 1, - anon_sym_RBRACK, + ACTIONS(8717), 1, + sym__space, STATE(4996), 1, sym_comment, - [132377] = 3, - ACTIONS(103), 1, + [132602] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8723), 1, - sym__space, + ACTIONS(8719), 1, + anon_sym_GT2, STATE(4997), 1, sym_comment, - [132387] = 3, + [132612] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8725), 1, - anon_sym_GT2, + ACTIONS(8721), 1, + anon_sym_RBRACK, STATE(4998), 1, sym_comment, - [132397] = 3, + [132622] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8727), 1, - anon_sym_GT2, + ACTIONS(1598), 1, + sym__unquoted_pattern_in_record, STATE(4999), 1, sym_comment, - [132407] = 3, + [132632] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8729), 1, - anon_sym_COLON2, + ACTIONS(1641), 1, + sym__unquoted_pattern_in_record, STATE(5000), 1, sym_comment, - [132417] = 3, + [132642] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8731), 1, - anon_sym_GT2, + ACTIONS(1724), 1, + sym__unquoted_pattern, STATE(5001), 1, sym_comment, - [132427] = 3, - ACTIONS(3), 1, + [132652] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8733), 1, - anon_sym_RPAREN, + ACTIONS(1860), 1, + aux_sym__unquoted_with_expr_token1, STATE(5002), 1, sym_comment, - [132437] = 3, + [132662] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8735), 1, - anon_sym_GT2, + ACTIONS(8723), 1, + anon_sym_RBRACK, STATE(5003), 1, sym_comment, - [132447] = 3, + [132672] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8737), 1, - anon_sym_RBRACK, + ACTIONS(8725), 1, + anon_sym_EQ, STATE(5004), 1, sym_comment, - [132457] = 3, + [132682] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8739), 1, - anon_sym_EQ, + ACTIONS(8727), 1, + anon_sym_RBRACE, STATE(5005), 1, sym_comment, - [132467] = 3, - ACTIONS(3), 1, + [132692] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8741), 1, - anon_sym_RBRACE, + ACTIONS(1882), 1, + aux_sym__unquoted_with_expr_token1, STATE(5006), 1, sym_comment, - [132477] = 3, + [132702] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8743), 1, + ACTIONS(8729), 1, anon_sym_RBRACE, STATE(5007), 1, sym_comment, - [132487] = 3, + [132712] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8745), 1, - anon_sym_RBRACK, + ACTIONS(5070), 1, + anon_sym_EQ2, STATE(5008), 1, sym_comment, - [132497] = 3, + [132722] = 3, ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8747), 1, - anon_sym_RBRACK, + anon_sym_POUND, + ACTIONS(2021), 1, + sym__unquoted_pattern, STATE(5009), 1, sym_comment, - [132507] = 3, - ACTIONS(3), 1, + [132732] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1598), 1, - sym__unquoted_pattern_in_record, + ACTIONS(2702), 1, + aux_sym_cmd_identifier_token2, STATE(5010), 1, sym_comment, - [132517] = 3, - ACTIONS(103), 1, + [132742] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1868), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(1856), 1, + sym__unquoted_pattern_in_record, STATE(5011), 1, sym_comment, - [132527] = 3, + [132752] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1740), 1, - sym__unquoted_pattern_in_record, + ACTIONS(8731), 1, + anon_sym_EQ, STATE(5012), 1, sym_comment, - [132537] = 3, + [132762] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1766), 1, - sym__unquoted_pattern, + ACTIONS(8733), 1, + anon_sym_EQ, STATE(5013), 1, sym_comment, - [132547] = 3, + [132772] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8749), 1, + ACTIONS(8735), 1, anon_sym_EQ, STATE(5014), 1, sym_comment, - [132557] = 3, + [132782] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8751), 1, + ACTIONS(8737), 1, anon_sym_EQ, STATE(5015), 1, sym_comment, - [132567] = 3, - ACTIONS(103), 1, + [132792] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2662), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(8739), 1, + anon_sym_RPAREN2, STATE(5016), 1, sym_comment, - [132577] = 3, + [132802] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8753), 1, - sym__space, + ACTIONS(8741), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(5017), 1, sym_comment, - [132587] = 3, + [132812] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8755), 1, - anon_sym_GT2, + ACTIONS(8009), 1, + anon_sym_EQ_GT, STATE(5018), 1, sym_comment, - [132597] = 3, + [132822] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern_in_record, + ACTIONS(8743), 1, + anon_sym_RPAREN, STATE(5019), 1, sym_comment, - [132607] = 3, - ACTIONS(103), 1, + [132832] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8757), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(6384), 1, + sym__unquoted_pattern_in_list, STATE(5020), 1, sym_comment, - [132617] = 3, + [132842] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8759), 1, + ACTIONS(8745), 1, anon_sym_RBRACK, STATE(5021), 1, sym_comment, - [132627] = 3, + [132852] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8761), 1, - anon_sym_RPAREN, + ACTIONS(8747), 1, + sym_raw_string_end, STATE(5022), 1, sym_comment, - [132637] = 3, + [132862] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8763), 1, - anon_sym_RPAREN, + ACTIONS(1872), 1, + sym__table_head_separator, STATE(5023), 1, sym_comment, - [132647] = 3, + [132872] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(1872), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(8749), 1, + aux_sym_cmd_identifier_token2, STATE(5024), 1, sym_comment, - [132657] = 3, + [132882] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8765), 1, - anon_sym_RBRACE, + ACTIONS(6980), 1, + sym__unquoted_pattern, STATE(5025), 1, sym_comment, - [132667] = 3, + [132892] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8767), 1, - sym_raw_string_end, + ACTIONS(8392), 1, + anon_sym_LBRACE, STATE(5026), 1, sym_comment, - [132677] = 3, - ACTIONS(103), 1, + [132902] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1868), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(8751), 1, + anon_sym_RBRACE, STATE(5027), 1, sym_comment, - [132687] = 3, - ACTIONS(3), 1, + [132912] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5088), 1, - anon_sym_EQ2, + ACTIONS(2839), 1, + aux_sym_cmd_identifier_token2, STATE(5028), 1, sym_comment, - [132697] = 3, - ACTIONS(3), 1, + [132922] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8769), 1, - anon_sym_RPAREN2, + ACTIONS(1860), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(5029), 1, sym_comment, - [132707] = 3, + [132932] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6954), 1, + ACTIONS(2604), 1, sym__unquoted_pattern, STATE(5030), 1, sym_comment, - [132717] = 3, + [132942] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8599), 1, - anon_sym_LBRACE, + ACTIONS(8753), 1, + anon_sym_RBRACK, STATE(5031), 1, sym_comment, - [132727] = 3, + [132952] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1808), 1, + ACTIONS(2597), 1, sym__unquoted_pattern_in_record, STATE(5032), 1, sym_comment, - [132737] = 3, + [132962] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2572), 1, - sym__unquoted_pattern_in_record, + ACTIONS(8755), 1, + anon_sym_EQ_GT, STATE(5033), 1, sym_comment, - [132747] = 3, - ACTIONS(103), 1, + [132972] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8771), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(8757), 1, + anon_sym_RPAREN, STATE(5034), 1, sym_comment, - [132757] = 3, + [132982] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1862), 1, - sym__table_head_separator, + ACTIONS(8759), 1, + sym_raw_string_content, STATE(5035), 1, sym_comment, - [132767] = 3, + [132992] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8773), 1, - anon_sym_RBRACK, + ACTIONS(2622), 1, + sym__unquoted_pattern_in_record, STATE(5036), 1, sym_comment, - [132777] = 3, + [133002] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8775), 1, - anon_sym_EQ, + ACTIONS(313), 1, + anon_sym_RBRACE, STATE(5037), 1, sym_comment, - [132787] = 3, + [133012] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8777), 1, - anon_sym_RPAREN, + ACTIONS(8761), 1, + anon_sym_RBRACE, STATE(5038), 1, sym_comment, - [132797] = 3, + [133022] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8029), 1, - anon_sym_EQ_GT, + ACTIONS(8763), 1, + anon_sym_RPAREN, STATE(5039), 1, sym_comment, - [132807] = 3, + [133032] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(313), 1, - anon_sym_RBRACE, + ACTIONS(8765), 1, + sym__table_head_separator, STATE(5040), 1, sym_comment, - [132817] = 3, + [133042] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8779), 1, + ACTIONS(8767), 1, anon_sym_RBRACE, STATE(5041), 1, sym_comment, - [132827] = 3, + [133052] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2568), 1, - sym__unquoted_pattern_in_record, + ACTIONS(8769), 1, + anon_sym_RBRACE, STATE(5042), 1, sym_comment, - [132837] = 3, - ACTIONS(3), 1, + [133062] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2556), 1, - sym__unquoted_pattern_in_record, + ACTIONS(8771), 1, + aux_sym_shebang_token1, STATE(5043), 1, sym_comment, - [132847] = 3, + [133072] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8781), 1, - sym_identifier, + ACTIONS(8773), 1, + anon_sym_RPAREN, STATE(5044), 1, sym_comment, - [132857] = 3, + [133082] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8783), 1, - anon_sym_RBRACE, + ACTIONS(8775), 1, + anon_sym_DQUOTE, STATE(5045), 1, sym_comment, - [132867] = 3, + [133092] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8785), 1, - anon_sym_RBRACE, + ACTIONS(8777), 1, + anon_sym_SQUOTE2, STATE(5046), 1, sym_comment, - [132877] = 3, + [133102] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8787), 1, - anon_sym_RPAREN, + ACTIONS(8779), 1, + anon_sym_BQUOTE2, STATE(5047), 1, sym_comment, - [132887] = 3, - ACTIONS(103), 1, + [133112] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1872), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(8781), 1, + anon_sym_EQ, STATE(5048), 1, sym_comment, - [132897] = 3, + [133122] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8789), 1, - anon_sym_DQUOTE, + ACTIONS(8783), 1, + sym_identifier, STATE(5049), 1, sym_comment, - [132907] = 3, - ACTIONS(3), 1, + [133132] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8791), 1, - anon_sym_SQUOTE2, + ACTIONS(8785), 1, + aux_sym_cmd_identifier_token6, STATE(5050), 1, sym_comment, - [132917] = 3, - ACTIONS(3), 1, + [133142] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8793), 1, - anon_sym_BQUOTE2, + ACTIONS(1860), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(5051), 1, sym_comment, - [132927] = 3, + [133152] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8795), 1, - anon_sym_RPAREN, + ACTIONS(8787), 1, + anon_sym_EQ, STATE(5052), 1, sym_comment, - [132937] = 3, + [133162] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8797), 1, - sym_identifier, + ACTIONS(1708), 1, + anon_sym_COLON2, STATE(5053), 1, sym_comment, - [132947] = 3, - ACTIONS(103), 1, + [133172] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8799), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(8789), 1, + anon_sym_RBRACK, STATE(5054), 1, sym_comment, - [132957] = 3, + [133182] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8801), 1, - anon_sym_LBRACE, + ACTIONS(8791), 1, + anon_sym_RBRACE, STATE(5055), 1, sym_comment, - [132967] = 3, + [133192] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2572), 1, - sym__unquoted_pattern, + ACTIONS(5100), 1, + anon_sym_EQ2, STATE(5056), 1, sym_comment, - [132977] = 3, + [133202] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8803), 1, - anon_sym_RBRACK, + ACTIONS(8793), 1, + anon_sym_RBRACE, STATE(5057), 1, sym_comment, - [132987] = 3, + [133212] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8805), 1, - anon_sym_RBRACE, + ACTIONS(8795), 1, + anon_sym_RPAREN, STATE(5058), 1, sym_comment, - [132997] = 3, - ACTIONS(103), 1, + [133222] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2878), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(1641), 1, + sym__unquoted_pattern, STATE(5059), 1, sym_comment, - [133007] = 3, + [133232] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8807), 1, - anon_sym_RBRACE, + ACTIONS(8797), 1, + anon_sym_EQ_GT, STATE(5060), 1, sym_comment, - [133017] = 3, - ACTIONS(3), 1, + [133242] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8809), 1, - anon_sym_RPAREN, + ACTIONS(8799), 1, + aux_sym_cmd_identifier_token6, STATE(5061), 1, sym_comment, - [133027] = 3, + [133252] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1691), 1, - anon_sym_COLON2, + ACTIONS(8801), 1, + anon_sym_RBRACK, STATE(5062), 1, sym_comment, - [133037] = 3, + [133262] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8811), 1, + ACTIONS(8803), 1, anon_sym_RBRACE, STATE(5063), 1, sym_comment, - [133047] = 3, + [133272] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8813), 1, + ACTIONS(8805), 1, aux_sym_cmd_identifier_token6, STATE(5064), 1, sym_comment, - [133057] = 3, - ACTIONS(3), 1, + [133282] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8815), 1, - anon_sym_RBRACK, + ACTIONS(8807), 1, + aux_sym_cmd_identifier_token2, STATE(5065), 1, sym_comment, - [133067] = 3, + [133292] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8817), 1, - anon_sym_RBRACE, + ACTIONS(2636), 1, + sym__table_head_separator, STATE(5066), 1, sym_comment, - [133077] = 3, + [133302] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8819), 1, - anon_sym_RBRACE, + ACTIONS(8809), 1, + anon_sym_SQUOTE2, STATE(5067), 1, sym_comment, - [133087] = 3, + [133312] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8821), 1, - sym_raw_string_end, + ACTIONS(359), 1, + anon_sym_RPAREN2, STATE(5068), 1, sym_comment, - [133097] = 3, - ACTIONS(3), 1, + [133322] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8823), 1, - sym__table_head_separator, + ACTIONS(1882), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(5069), 1, sym_comment, - [133107] = 3, + [133332] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8825), 1, - sym_raw_string_content, + ACTIONS(5140), 1, + anon_sym_EQ2, STATE(5070), 1, sym_comment, - [133117] = 3, + [133342] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8827), 1, - anon_sym_RPAREN, + ACTIONS(8811), 1, + anon_sym_LBRACE, STATE(5071), 1, sym_comment, - [133127] = 3, + [133352] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1846), 1, - sym__unquoted_pattern_in_record, + ACTIONS(299), 1, + anon_sym_RBRACE, STATE(5072), 1, sym_comment, - [133137] = 3, - ACTIONS(103), 1, + [133362] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8829), 1, - aux_sym_shebang_token1, + ACTIONS(8813), 1, + sym_identifier, STATE(5073), 1, sym_comment, - [133147] = 3, + [133372] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5138), 1, - anon_sym_EQ2, + ACTIONS(8815), 1, + sym_raw_string_end, STATE(5074), 1, sym_comment, - [133157] = 3, - ACTIONS(103), 1, + [133382] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8831), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(2589), 1, + sym__unquoted_pattern, STATE(5075), 1, sym_comment, - [133167] = 3, + [133392] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1641), 1, - sym__unquoted_pattern, + ACTIONS(8817), 1, + ts_builtin_sym_end, STATE(5076), 1, sym_comment, - [133177] = 3, + [133402] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(359), 1, - anon_sym_RPAREN2, + ACTIONS(5213), 1, + sym__unquoted_pattern, STATE(5077), 1, sym_comment, - [133187] = 3, + [133412] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6335), 1, - sym__unquoted_pattern_in_list, + ACTIONS(8819), 1, + anon_sym_GT2, STATE(5078), 1, sym_comment, - [133197] = 3, + [133422] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8833), 1, - sym_raw_string_end, + ACTIONS(8821), 1, + anon_sym_RBRACE, STATE(5079), 1, sym_comment, - [133207] = 3, - ACTIONS(103), 1, + [133432] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1872), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(8823), 1, + anon_sym_LBRACE, STATE(5080), 1, sym_comment, - [133217] = 3, + [133442] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8835), 1, - anon_sym_EQ, + ACTIONS(301), 1, + anon_sym_RBRACE, STATE(5081), 1, sym_comment, - [133227] = 3, + [133452] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5191), 1, + ACTIONS(2597), 1, sym__unquoted_pattern, STATE(5082), 1, sym_comment, - [133237] = 3, + [133462] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2578), 1, - sym__table_head_separator, + ACTIONS(7348), 1, + sym__unquoted_pattern, STATE(5083), 1, sym_comment, - [133247] = 3, + [133472] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8837), 1, + ACTIONS(8825), 1, anon_sym_RBRACK, STATE(5084), 1, sym_comment, - [133257] = 3, - ACTIONS(103), 1, + [133482] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1868), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(8827), 1, + anon_sym_RBRACE, STATE(5085), 1, sym_comment, - [133267] = 3, + [133492] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(299), 1, - anon_sym_RBRACE, + ACTIONS(8829), 1, + anon_sym_RPAREN, STATE(5086), 1, sym_comment, - [133277] = 3, + [133502] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8839), 1, - anon_sym_RBRACE, + ACTIONS(373), 1, + ts_builtin_sym_end, STATE(5087), 1, sym_comment, - [133287] = 3, + [133512] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(297), 1, + ACTIONS(311), 1, anon_sym_RBRACE, STATE(5088), 1, sym_comment, - [133297] = 3, + [133522] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8841), 1, - anon_sym_RBRACK, + ACTIONS(8823), 1, + anon_sym_LBRACE, STATE(5089), 1, sym_comment, - [133307] = 3, + [133532] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5064), 1, - anon_sym_EQ2, + ACTIONS(8831), 1, + anon_sym_GT2, STATE(5090), 1, sym_comment, - [133317] = 3, + [133542] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8843), 1, - anon_sym_RPAREN, + ACTIONS(8833), 1, + anon_sym_RBRACE, STATE(5091), 1, sym_comment, - [133327] = 3, + [133552] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8845), 1, - anon_sym_RBRACE, + ACTIONS(8835), 1, + anon_sym_EQ, STATE(5092), 1, sym_comment, - [133337] = 3, + [133562] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(309), 1, + ACTIONS(8837), 1, anon_sym_RBRACE, STATE(5093), 1, sym_comment, - [133347] = 3, + [133572] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2568), 1, - sym__unquoted_pattern, + ACTIONS(8839), 1, + anon_sym_RBRACK, STATE(5094), 1, sym_comment, - [133357] = 3, + [133582] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8847), 1, - anon_sym_RBRACK, + ACTIONS(8841), 1, + anon_sym_LBRACE, STATE(5095), 1, sym_comment, - [133367] = 3, + [133592] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8849), 1, - anon_sym_EQ, + ACTIONS(8843), 1, + anon_sym_RBRACE, STATE(5096), 1, sym_comment, - [133377] = 3, + [133602] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8851), 1, - anon_sym_RBRACE, + ACTIONS(8845), 1, + anon_sym_RBRACK, STATE(5097), 1, sym_comment, - [133387] = 3, - ACTIONS(3), 1, + [133612] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8853), 1, - anon_sym_RBRACK, + ACTIONS(8847), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(5098), 1, sym_comment, - [133397] = 3, + [133622] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8855), 1, - anon_sym_RBRACE, + ACTIONS(8849), 1, + anon_sym_RPAREN, STATE(5099), 1, sym_comment, - [133407] = 3, - ACTIONS(3), 1, + [133632] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8857), 1, - anon_sym_RPAREN, + ACTIONS(8851), 1, + aux_sym_cmd_identifier_token6, STATE(5100), 1, sym_comment, - [133417] = 3, + [133642] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8859), 1, - anon_sym_EQ_GT, + ACTIONS(8853), 1, + anon_sym_DQUOTE, STATE(5101), 1, sym_comment, - [133427] = 3, + [133652] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8861), 1, - anon_sym_RBRACE, + ACTIONS(8855), 1, + anon_sym_SQUOTE2, STATE(5102), 1, sym_comment, - [133437] = 3, + [133662] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8863), 1, - anon_sym_GT2, + ACTIONS(8857), 1, + anon_sym_BQUOTE2, STATE(5103), 1, sym_comment, - [133447] = 3, + [133672] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8865), 1, + ACTIONS(8859), 1, anon_sym_DQUOTE, STATE(5104), 1, sym_comment, - [133457] = 3, + [133682] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8867), 1, + ACTIONS(8861), 1, anon_sym_SQUOTE2, STATE(5105), 1, sym_comment, - [133467] = 3, + [133692] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8869), 1, - anon_sym_BQUOTE2, + ACTIONS(8863), 1, + anon_sym_RBRACE, STATE(5106), 1, sym_comment, - [133477] = 3, + [133702] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8871), 1, - anon_sym_RBRACE, + ACTIONS(8865), 1, + anon_sym_RBRACK, STATE(5107), 1, sym_comment, - [133487] = 3, - ACTIONS(3), 1, + [133712] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8873), 1, - anon_sym_RBRACK, + ACTIONS(8867), 1, + aux_sym_cmd_identifier_token6, STATE(5108), 1, sym_comment, - [133497] = 3, + [133722] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7437), 1, - sym__unquoted_pattern, + ACTIONS(8869), 1, + anon_sym_RBRACK, STATE(5109), 1, sym_comment, - [133507] = 3, + [133732] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8875), 1, - anon_sym_RBRACK, + ACTIONS(8871), 1, + sym_raw_string_content, STATE(5110), 1, sym_comment, - [133517] = 3, + [133742] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8877), 1, - sym_raw_string_content, + ACTIONS(7713), 1, + anon_sym_LBRACK2, STATE(5111), 1, sym_comment, - [133527] = 3, - ACTIONS(3), 1, + [133752] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(7710), 1, - anon_sym_LBRACK2, + ACTIONS(8873), 1, + aux_sym__str_single_quotes_token1, STATE(5112), 1, sym_comment, - [133537] = 3, + [133762] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8879), 1, - aux_sym__str_single_quotes_token1, + ACTIONS(8875), 1, + aux_sym__str_back_ticks_token1, STATE(5113), 1, sym_comment, - [133547] = 3, - ACTIONS(103), 1, + [133772] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8881), 1, - aux_sym__str_back_ticks_token1, + ACTIONS(8877), 1, + anon_sym_RBRACK, STATE(5114), 1, sym_comment, - [133557] = 3, + [133782] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(419), 1, - ts_builtin_sym_end, + ACTIONS(8879), 1, + anon_sym_RBRACK, STATE(5115), 1, sym_comment, - [133567] = 3, + [133792] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8883), 1, - anon_sym_EQ, + ACTIONS(8881), 1, + anon_sym_RBRACE, STATE(5116), 1, sym_comment, - [133577] = 3, + [133802] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8885), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(8883), 1, + sym__space, STATE(5117), 1, sym_comment, - [133587] = 3, - ACTIONS(103), 1, + [133812] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8887), 1, - sym__space, + ACTIONS(8885), 1, + anon_sym_RBRACE, STATE(5118), 1, sym_comment, - [133597] = 3, - ACTIONS(103), 1, + [133822] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8889), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(5134), 1, + anon_sym_EQ2, STATE(5119), 1, sym_comment, - [133607] = 3, - ACTIONS(3), 1, + [133832] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8891), 1, - anon_sym_EQ_GT, + ACTIONS(8887), 1, + aux_sym_comment_token1, STATE(5120), 1, sym_comment, - [133617] = 3, + [133842] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8893), 1, - anon_sym_RBRACK, + ACTIONS(8889), 1, + anon_sym_RBRACE, STATE(5121), 1, sym_comment, - [133627] = 3, + [133852] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8895), 1, - anon_sym_RBRACE, + ACTIONS(8891), 1, + anon_sym_RPAREN, STATE(5122), 1, sym_comment, - [133637] = 3, + [133862] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8897), 1, - anon_sym_DQUOTE, + ACTIONS(8893), 1, + sym_raw_string_end, STATE(5123), 1, sym_comment, - [133647] = 3, - ACTIONS(3), 1, + [133872] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8899), 1, - anon_sym_RBRACE, + ACTIONS(8895), 1, + aux_sym_cmd_identifier_token6, STATE(5124), 1, sym_comment, - [133657] = 3, + [133882] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8901), 1, - anon_sym_RPAREN, + ACTIONS(8897), 1, + anon_sym_BQUOTE2, STATE(5125), 1, sym_comment, - [133667] = 3, + [133892] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5104), 1, - anon_sym_EQ2, + ACTIONS(8899), 1, + anon_sym_LBRACE, STATE(5126), 1, sym_comment, - [133677] = 3, + [133902] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5128), 1, - anon_sym_EQ2, + ACTIONS(8901), 1, + anon_sym_RBRACE, STATE(5127), 1, sym_comment, - [133687] = 3, + [133912] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8903), 1, - anon_sym_RBRACE, + ACTIONS(2923), 1, + anon_sym_LBRACK2, STATE(5128), 1, sym_comment, - [133697] = 3, + [133922] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8905), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(8903), 1, + aux_sym_cmd_identifier_token2, STATE(5129), 1, sym_comment, - [133707] = 3, + [133932] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8907), 1, - anon_sym_SQUOTE2, + ACTIONS(8905), 1, + anon_sym_RBRACE, STATE(5130), 1, sym_comment, - [133717] = 3, + [133942] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8909), 1, - anon_sym_RBRACE, + ACTIONS(8907), 1, + anon_sym_EQ, STATE(5131), 1, sym_comment, - [133727] = 3, + [133952] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8911), 1, - anon_sym_BQUOTE2, + ACTIONS(8909), 1, + sym_identifier, STATE(5132), 1, sym_comment, - [133737] = 3, - ACTIONS(103), 1, + [133962] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8913), 1, - aux_sym_cmd_identifier_token2, + ACTIONS(8911), 1, + anon_sym_EQ, STATE(5133), 1, sym_comment, - [133747] = 3, + [133972] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8915), 1, - ts_builtin_sym_end, + ACTIONS(8811), 1, + anon_sym_LBRACE, STATE(5134), 1, sym_comment, - [133757] = 3, + [133982] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8917), 1, + ACTIONS(8913), 1, anon_sym_RBRACK, STATE(5135), 1, sym_comment, - [133767] = 3, - ACTIONS(3), 1, + [133992] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8919), 1, - anon_sym_LBRACE, + ACTIONS(8915), 1, + aux_sym__str_single_quotes_token1, STATE(5136), 1, sym_comment, - [133777] = 3, + [134002] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8921), 1, - anon_sym_LBRACE, + ACTIONS(8917), 1, + sym_raw_string_end, STATE(5137), 1, sym_comment, - [133787] = 3, + [134012] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8923), 1, + ACTIONS(8919), 1, anon_sym_RBRACE, STATE(5138), 1, sym_comment, - [133797] = 3, + [134022] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8919), 1, - anon_sym_LBRACE, + ACTIONS(7541), 1, + sym__unquoted_pattern, STATE(5139), 1, sym_comment, - [133807] = 3, + [134032] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8925), 1, - anon_sym_LBRACE, + ACTIONS(5172), 1, + sym__unquoted_pattern, STATE(5140), 1, sym_comment, - [133817] = 3, + [134042] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8927), 1, - sym_raw_string_end, + ACTIONS(8921), 1, + anon_sym_RBRACE, STATE(5141), 1, sym_comment, - [133827] = 3, + [134052] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8929), 1, + ACTIONS(8923), 1, sym_raw_string_end, STATE(5142), 1, sym_comment, - [133837] = 3, + [134062] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8931), 1, - anon_sym_EQ, + ACTIONS(8925), 1, + anon_sym_RBRACK, STATE(5143), 1, sym_comment, - [133847] = 3, + [134072] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1962), 1, - sym__unquoted_pattern, + ACTIONS(2704), 1, + anon_sym_COLON2, STATE(5144), 1, sym_comment, - [133857] = 3, + [134082] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5150), 1, - sym__unquoted_pattern, + ACTIONS(8927), 1, + anon_sym_RPAREN, STATE(5145), 1, sym_comment, - [133867] = 3, + [134092] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2898), 1, - anon_sym_LBRACK2, + ACTIONS(8929), 1, + sym_raw_string_content, STATE(5146), 1, sym_comment, - [133877] = 3, + [134102] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8933), 1, - anon_sym_RBRACE, + ACTIONS(5939), 1, + anon_sym_LBRACK2, STATE(5147), 1, sym_comment, - [133887] = 3, - ACTIONS(3), 1, + [134112] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8935), 1, - sym_raw_string_content, + ACTIONS(8931), 1, + aux_sym__str_single_quotes_token1, STATE(5148), 1, sym_comment, - [133897] = 3, - ACTIONS(3), 1, + [134122] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(5984), 1, - anon_sym_LBRACK2, + ACTIONS(8933), 1, + aux_sym__str_back_ticks_token1, STATE(5149), 1, sym_comment, - [133907] = 3, - ACTIONS(103), 1, + [134132] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8937), 1, - aux_sym__str_single_quotes_token1, + ACTIONS(8935), 1, + sym__table_head_separator, STATE(5150), 1, sym_comment, - [133917] = 3, + [134142] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8939), 1, - aux_sym__str_back_ticks_token1, + ACTIONS(8937), 1, + sym__space, STATE(5151), 1, sym_comment, - [133927] = 3, + [134152] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8941), 1, - anon_sym_RBRACK, + ACTIONS(315), 1, + anon_sym_RBRACE, STATE(5152), 1, sym_comment, - [133937] = 3, - ACTIONS(103), 1, + [134162] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8943), 1, - sym__space, + ACTIONS(8939), 1, + anon_sym_RBRACE, STATE(5153), 1, sym_comment, - [133947] = 3, + [134172] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8945), 1, - anon_sym_DASH_GT, + ACTIONS(8941), 1, + anon_sym_GT2, STATE(5154), 1, sym_comment, - [133957] = 3, + [134182] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8947), 1, - anon_sym_RBRACE, + ACTIONS(2387), 1, + sym__unquoted_pattern_in_record, STATE(5155), 1, sym_comment, - [133967] = 3, + [134192] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8949), 1, - anon_sym_RPAREN, + ACTIONS(5496), 1, + anon_sym_EQ2, STATE(5156), 1, sym_comment, - [133977] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8951), 1, - anon_sym_EQ, - STATE(5157), 1, - sym_comment, - [133987] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(315), 1, - anon_sym_RBRACE, - STATE(5158), 1, - sym_comment, - [133997] = 3, + [134202] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8953), 1, + ACTIONS(8943), 1, anon_sym_RBRACE, - STATE(5159), 1, + STATE(5157), 1, sym_comment, - [134007] = 3, + [134212] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8955), 1, + ACTIONS(8945), 1, anon_sym_RBRACK, - STATE(5160), 1, + STATE(5158), 1, sym_comment, - [134017] = 3, + [134222] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8957), 1, + ACTIONS(8947), 1, sym_raw_string_content, - STATE(5161), 1, + STATE(5159), 1, sym_comment, - [134027] = 3, + [134232] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4561), 1, + ACTIONS(4550), 1, anon_sym_LBRACK2, - STATE(5162), 1, + STATE(5160), 1, sym_comment, - [134037] = 3, + [134242] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8959), 1, + ACTIONS(8949), 1, aux_sym__str_single_quotes_token1, - STATE(5163), 1, + STATE(5161), 1, sym_comment, - [134047] = 3, + [134252] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8961), 1, + ACTIONS(8951), 1, aux_sym__str_back_ticks_token1, - STATE(5164), 1, + STATE(5162), 1, sym_comment, - [134057] = 3, + [134262] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8963), 1, + ACTIONS(8953), 1, sym_raw_string_content, - STATE(5165), 1, + STATE(5163), 1, sym_comment, - [134067] = 3, + [134272] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5862), 1, + ACTIONS(5767), 1, anon_sym_LBRACK2, - STATE(5166), 1, + STATE(5164), 1, sym_comment, - [134077] = 3, + [134282] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8965), 1, + ACTIONS(8955), 1, aux_sym__str_single_quotes_token1, - STATE(5167), 1, + STATE(5165), 1, sym_comment, - [134087] = 3, + [134292] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8967), 1, + ACTIONS(8957), 1, aux_sym__str_back_ticks_token1, - STATE(5168), 1, + STATE(5166), 1, sym_comment, - [134097] = 3, + [134302] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8969), 1, + ACTIONS(8959), 1, sym_raw_string_content, - STATE(5169), 1, + STATE(5167), 1, sym_comment, - [134107] = 3, + [134312] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5763), 1, + ACTIONS(5799), 1, anon_sym_LBRACK2, - STATE(5170), 1, + STATE(5168), 1, sym_comment, - [134117] = 3, + [134322] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8971), 1, + ACTIONS(8961), 1, aux_sym__str_single_quotes_token1, - STATE(5171), 1, + STATE(5169), 1, sym_comment, - [134127] = 3, + [134332] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8973), 1, + ACTIONS(8963), 1, aux_sym__str_back_ticks_token1, - STATE(5172), 1, + STATE(5170), 1, sym_comment, - [134137] = 3, + [134342] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8975), 1, + ACTIONS(8965), 1, sym_raw_string_content, - STATE(5173), 1, + STATE(5171), 1, sym_comment, - [134147] = 3, + [134352] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8977), 1, + ACTIONS(8967), 1, aux_sym__str_single_quotes_token1, - STATE(5174), 1, + STATE(5172), 1, sym_comment, - [134157] = 3, + [134362] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8979), 1, + ACTIONS(8969), 1, aux_sym__str_back_ticks_token1, - STATE(5175), 1, + STATE(5173), 1, sym_comment, - [134167] = 3, + [134372] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8981), 1, + ACTIONS(8971), 1, sym_raw_string_content, - STATE(5176), 1, + STATE(5174), 1, sym_comment, - [134177] = 3, + [134382] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8983), 1, + ACTIONS(8973), 1, aux_sym__str_single_quotes_token1, - STATE(5177), 1, + STATE(5175), 1, sym_comment, - [134187] = 3, + [134392] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8985), 1, + ACTIONS(8975), 1, aux_sym__str_back_ticks_token1, - STATE(5178), 1, + STATE(5176), 1, sym_comment, - [134197] = 3, + [134402] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8987), 1, + ACTIONS(8977), 1, sym_raw_string_content, - STATE(5179), 1, + STATE(5177), 1, sym_comment, - [134207] = 3, + [134412] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8989), 1, + ACTIONS(8979), 1, aux_sym__str_single_quotes_token1, - STATE(5180), 1, + STATE(5178), 1, sym_comment, - [134217] = 3, + [134422] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8991), 1, + ACTIONS(8981), 1, aux_sym__str_back_ticks_token1, - STATE(5181), 1, + STATE(5179), 1, sym_comment, - [134227] = 3, + [134432] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8993), 1, + ACTIONS(8983), 1, sym_raw_string_content, - STATE(5182), 1, + STATE(5180), 1, sym_comment, - [134237] = 3, + [134442] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8995), 1, + ACTIONS(8985), 1, aux_sym__str_single_quotes_token1, - STATE(5183), 1, + STATE(5181), 1, sym_comment, - [134247] = 3, + [134452] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(8997), 1, + ACTIONS(8987), 1, aux_sym__str_back_ticks_token1, - STATE(5184), 1, + STATE(5182), 1, sym_comment, - [134257] = 3, + [134462] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8999), 1, + ACTIONS(8989), 1, sym_raw_string_content, - STATE(5185), 1, + STATE(5183), 1, sym_comment, - [134267] = 3, + [134472] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9001), 1, + ACTIONS(8991), 1, aux_sym__str_single_quotes_token1, - STATE(5186), 1, + STATE(5184), 1, sym_comment, - [134277] = 3, + [134482] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9003), 1, + ACTIONS(8993), 1, aux_sym__str_back_ticks_token1, - STATE(5187), 1, + STATE(5185), 1, sym_comment, - [134287] = 3, + [134492] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9005), 1, + ACTIONS(8995), 1, sym_raw_string_content, - STATE(5188), 1, + STATE(5186), 1, sym_comment, - [134297] = 3, + [134502] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9007), 1, + ACTIONS(8997), 1, aux_sym__str_single_quotes_token1, - STATE(5189), 1, + STATE(5187), 1, sym_comment, - [134307] = 3, + [134512] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9009), 1, + ACTIONS(8999), 1, aux_sym__str_back_ticks_token1, - STATE(5190), 1, + STATE(5188), 1, sym_comment, - [134317] = 3, + [134522] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9011), 1, - anon_sym_EQ, - STATE(5191), 1, + ACTIONS(9001), 1, + sym_raw_string_content, + STATE(5189), 1, sym_comment, - [134327] = 3, + [134532] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9013), 1, + ACTIONS(9003), 1, aux_sym__str_single_quotes_token1, - STATE(5192), 1, + STATE(5190), 1, sym_comment, - [134337] = 3, + [134542] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9015), 1, + ACTIONS(9005), 1, aux_sym__str_back_ticks_token1, - STATE(5193), 1, + STATE(5191), 1, sym_comment, - [134347] = 3, + [134552] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9017), 1, + ACTIONS(9007), 1, sym_raw_string_content, - STATE(5194), 1, + STATE(5192), 1, sym_comment, - [134357] = 3, + [134562] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9019), 1, + ACTIONS(9009), 1, aux_sym__str_single_quotes_token1, - STATE(5195), 1, + STATE(5193), 1, sym_comment, - [134367] = 3, + [134572] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9021), 1, + ACTIONS(9011), 1, aux_sym__str_back_ticks_token1, - STATE(5196), 1, + STATE(5194), 1, sym_comment, - [134377] = 3, + [134582] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9023), 1, + ACTIONS(9013), 1, sym_raw_string_content, - STATE(5197), 1, + STATE(5195), 1, sym_comment, - [134387] = 3, + [134592] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9025), 1, + ACTIONS(9015), 1, aux_sym__str_single_quotes_token1, - STATE(5198), 1, + STATE(5196), 1, sym_comment, - [134397] = 3, + [134602] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9027), 1, + ACTIONS(9017), 1, aux_sym__str_back_ticks_token1, - STATE(5199), 1, + STATE(5197), 1, sym_comment, - [134407] = 3, + [134612] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9029), 1, + ACTIONS(9019), 1, sym_raw_string_content, - STATE(5200), 1, + STATE(5198), 1, sym_comment, - [134417] = 3, + [134622] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9031), 1, + ACTIONS(9021), 1, aux_sym__str_single_quotes_token1, - STATE(5201), 1, + STATE(5199), 1, sym_comment, - [134427] = 3, + [134632] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9033), 1, + ACTIONS(9023), 1, aux_sym__str_back_ticks_token1, - STATE(5202), 1, + STATE(5200), 1, sym_comment, - [134437] = 3, + [134642] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9035), 1, + ACTIONS(9025), 1, sym_raw_string_content, - STATE(5203), 1, + STATE(5201), 1, sym_comment, - [134447] = 3, + [134652] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9037), 1, + ACTIONS(9027), 1, aux_sym__str_single_quotes_token1, - STATE(5204), 1, + STATE(5202), 1, sym_comment, - [134457] = 3, + [134662] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9039), 1, + ACTIONS(9029), 1, aux_sym__str_back_ticks_token1, - STATE(5205), 1, + STATE(5203), 1, sym_comment, - [134467] = 3, + [134672] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9041), 1, + ACTIONS(9031), 1, sym_raw_string_content, - STATE(5206), 1, + STATE(5204), 1, sym_comment, - [134477] = 3, + [134682] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9043), 1, + ACTIONS(9033), 1, aux_sym__str_single_quotes_token1, - STATE(5207), 1, + STATE(5205), 1, sym_comment, - [134487] = 3, + [134692] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9045), 1, + ACTIONS(9035), 1, aux_sym__str_back_ticks_token1, - STATE(5208), 1, + STATE(5206), 1, sym_comment, - [134497] = 3, + [134702] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9047), 1, + ACTIONS(9037), 1, sym_raw_string_content, - STATE(5209), 1, + STATE(5207), 1, sym_comment, - [134507] = 3, + [134712] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9049), 1, + ACTIONS(9039), 1, aux_sym__str_single_quotes_token1, - STATE(5210), 1, + STATE(5208), 1, sym_comment, - [134517] = 3, + [134722] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9051), 1, + ACTIONS(9041), 1, aux_sym__str_back_ticks_token1, - STATE(5211), 1, + STATE(5209), 1, sym_comment, - [134527] = 3, + [134732] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9053), 1, + ACTIONS(9043), 1, sym_raw_string_content, - STATE(5212), 1, + STATE(5210), 1, sym_comment, - [134537] = 3, + [134742] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9055), 1, + ACTIONS(9045), 1, aux_sym__str_single_quotes_token1, - STATE(5213), 1, + STATE(5211), 1, sym_comment, - [134547] = 3, + [134752] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9057), 1, + ACTIONS(9047), 1, aux_sym__str_back_ticks_token1, - STATE(5214), 1, + STATE(5212), 1, sym_comment, - [134557] = 3, + [134762] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9059), 1, + ACTIONS(9049), 1, sym_raw_string_content, - STATE(5215), 1, + STATE(5213), 1, sym_comment, - [134567] = 3, + [134772] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9061), 1, + ACTIONS(9051), 1, aux_sym__str_single_quotes_token1, - STATE(5216), 1, + STATE(5214), 1, sym_comment, - [134577] = 3, + [134782] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9063), 1, + ACTIONS(9053), 1, aux_sym__str_back_ticks_token1, + STATE(5215), 1, + sym_comment, + [134792] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7465), 1, + sym__unquoted_pattern_in_record, + STATE(5216), 1, + sym_comment, + [134802] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9055), 1, + anon_sym_DQUOTE, STATE(5217), 1, sym_comment, - [134587] = 3, + [134812] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9065), 1, - anon_sym_RBRACE, + ACTIONS(8309), 1, + anon_sym_LPAREN2, STATE(5218), 1, sym_comment, - [134597] = 3, + [134822] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2327), 1, - sym__unquoted_pattern_in_record, + ACTIONS(9057), 1, + anon_sym_SQUOTE2, STATE(5219), 1, sym_comment, - [134607] = 3, + [134832] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8399), 1, - anon_sym_LPAREN2, + ACTIONS(9059), 1, + anon_sym_BQUOTE2, STATE(5220), 1, sym_comment, - [134617] = 3, + [134842] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7382), 1, + ACTIONS(2622), 1, sym__unquoted_pattern, STATE(5221), 1, sym_comment, - [134627] = 3, + [134852] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9067), 1, - sym_identifier, + ACTIONS(9061), 1, + anon_sym_RPAREN, STATE(5222), 1, sym_comment, - [134637] = 3, + [134862] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9069), 1, - anon_sym_DQUOTE, + ACTIONS(9063), 1, + anon_sym_in, STATE(5223), 1, sym_comment, - [134647] = 3, - ACTIONS(3), 1, + [134872] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9071), 1, - anon_sym_SQUOTE2, + ACTIONS(9065), 1, + aux_sym_cmd_identifier_token6, STATE(5224), 1, sym_comment, - [134657] = 3, + [134882] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9073), 1, - anon_sym_in, + ACTIONS(9067), 1, + anon_sym_GT2, STATE(5225), 1, sym_comment, - [134667] = 3, + [134892] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9075), 1, - anon_sym_BQUOTE2, + ACTIONS(9069), 1, + anon_sym_RBRACK, STATE(5226), 1, sym_comment, - [134677] = 3, - ACTIONS(103), 1, + [134902] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9077), 1, - aux_sym__str_single_quotes_token1, + ACTIONS(9071), 1, + anon_sym_RBRACE, STATE(5227), 1, sym_comment, - [134687] = 3, - ACTIONS(3), 1, + [134912] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2664), 1, - anon_sym_COLON2, + ACTIONS(9073), 1, + aux_sym__unquoted_with_expr_token1, STATE(5228), 1, sym_comment, - [134697] = 3, - ACTIONS(103), 1, + [134922] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9079), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9075), 1, + anon_sym_RBRACK, STATE(5229), 1, sym_comment, - [134707] = 3, - ACTIONS(103), 1, + [134932] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9081), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(9077), 1, + anon_sym_RBRACE, STATE(5230), 1, sym_comment, - [134717] = 3, + [134942] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9083), 1, - anon_sym_RBRACK, + ACTIONS(9079), 1, + anon_sym_GT2, STATE(5231), 1, sym_comment, - [134727] = 3, + [134952] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9085), 1, - anon_sym_RBRACK, + ACTIONS(9081), 1, + ts_builtin_sym_end, STATE(5232), 1, sym_comment, - [134737] = 3, + [134962] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9087), 1, + ACTIONS(9083), 1, anon_sym_RBRACE, STATE(5233), 1, sym_comment, - [134747] = 3, + [134972] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9089), 1, - anon_sym_RBRACE, + ACTIONS(9085), 1, + anon_sym_RPAREN, STATE(5234), 1, sym_comment, - [134757] = 3, + [134982] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9091), 1, - anon_sym_RBRACK, + ACTIONS(9087), 1, + anon_sym_RPAREN, STATE(5235), 1, sym_comment, - [134767] = 3, - ACTIONS(3), 1, + [134992] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9093), 1, - anon_sym_RBRACE, + ACTIONS(9089), 1, + aux_sym_cmd_identifier_token6, STATE(5236), 1, sym_comment, - [134777] = 3, + [135002] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9095), 1, - anon_sym_RPAREN, + ACTIONS(9091), 1, + anon_sym_RBRACK, STATE(5237), 1, sym_comment, - [134787] = 3, + [135012] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9097), 1, - anon_sym_GT2, + ACTIONS(9093), 1, + anon_sym_LT, STATE(5238), 1, sym_comment, - [134797] = 3, + [135022] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9099), 1, - aux_sym_cmd_identifier_token6, + ACTIONS(9095), 1, + aux_sym__str_back_ticks_token1, STATE(5239), 1, sym_comment, - [134807] = 3, + [135032] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9101), 1, - anon_sym_LT, + ACTIONS(9097), 1, + anon_sym_RBRACE, STATE(5240), 1, sym_comment, - [134817] = 3, - ACTIONS(3), 1, + [135042] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2556), 1, - sym__unquoted_pattern, + ACTIONS(9099), 1, + sym__space, STATE(5241), 1, sym_comment, - [134827] = 3, + [135052] = 3, + ACTIONS(103), 1, + anon_sym_POUND, + ACTIONS(9101), 1, + aux_sym_cmd_identifier_token2, + STATE(5242), 1, + sym_comment, + [135062] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9103), 1, - anon_sym_RBRACE, - STATE(5242), 1, + anon_sym_GT2, + STATE(5243), 1, sym_comment, - [134837] = 3, + [135072] = 3, ACTIONS(103), 1, anon_sym_POUND, ACTIONS(9105), 1, - aux_sym__unquoted_with_expr_token1, - STATE(5243), 1, + aux_sym_cmd_identifier_token6, + STATE(5244), 1, sym_comment, - [134847] = 3, + [135082] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8293), 1, - anon_sym_LBRACE, - STATE(5244), 1, + ACTIONS(9107), 1, + anon_sym_EQ, + STATE(5245), 1, sym_comment, - [134857] = 3, + [135092] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9107), 1, + ACTIONS(2561), 1, aux_sym_cmd_identifier_token2, - STATE(5245), 1, + STATE(5246), 1, sym_comment, - [134867] = 3, + [135102] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9109), 1, - anon_sym_GT2, - STATE(5246), 1, + anon_sym_LT, + STATE(5247), 1, sym_comment, - [134877] = 3, + [135112] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9111), 1, - anon_sym_GT2, - STATE(5247), 1, - sym_comment, - [134887] = 3, - ACTIONS(103), 1, - anon_sym_POUND, - ACTIONS(9113), 1, - aux_sym_cmd_identifier_token6, + sym_identifier, STATE(5248), 1, sym_comment, - [134897] = 3, + [135122] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9115), 1, - anon_sym_LT, + ACTIONS(9113), 1, + sym_raw_string_end, STATE(5249), 1, sym_comment, - [134907] = 3, + [135132] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9117), 1, - anon_sym_EQ, + ACTIONS(9115), 1, + anon_sym_RBRACE, STATE(5250), 1, sym_comment, - [134917] = 3, - ACTIONS(103), 1, + [135142] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9119), 1, - aux_sym_comment_token1, + ACTIONS(9117), 1, + anon_sym_DASH_GT, STATE(5251), 1, sym_comment, - [134927] = 3, + [135152] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9121), 1, - sym_raw_string_end, + ACTIONS(9119), 1, + anon_sym_EQ, STATE(5252), 1, sym_comment, - [134937] = 3, + [135162] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9123), 1, - ts_builtin_sym_end, + ACTIONS(9121), 1, + anon_sym_RBRACK, STATE(5253), 1, sym_comment, - [134947] = 3, - ACTIONS(3), 1, + [135172] = 3, + ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(9125), 1, - anon_sym_LT, + ACTIONS(9123), 1, + aux_sym_cmd_identifier_token6, STATE(5254), 1, sym_comment, - [134957] = 3, + [135182] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9127), 1, - anon_sym_GT2, + ACTIONS(9125), 1, + anon_sym_RPAREN, STATE(5255), 1, sym_comment, - [134967] = 3, + [135192] = 3, ACTIONS(103), 1, anon_sym_POUND, - ACTIONS(2533), 1, + ACTIONS(9127), 1, aux_sym_cmd_identifier_token2, STATE(5256), 1, sym_comment, - [134977] = 3, + [135202] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9129), 1, - anon_sym_RBRACK, + anon_sym_RBRACE, STATE(5257), 1, sym_comment, - [134987] = 3, + [135212] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9131), 1, anon_sym_RBRACK, STATE(5258), 1, sym_comment, - [134997] = 3, + [135222] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9133), 1, - anon_sym_EQ, + anon_sym_DQUOTE, STATE(5259), 1, sym_comment, - [135007] = 3, + [135232] = 3, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(9135), 1, anon_sym_RPAREN, STATE(5260), 1, sym_comment, - [135017] = 3, - ACTIONS(103), 1, - anon_sym_POUND, + [135242] = 1, ACTIONS(9137), 1, - aux_sym_cmd_identifier_token2, - STATE(5261), 1, - sym_comment, - [135027] = 1, - ACTIONS(9139), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1262)] = 0, - [SMALL_STATE(1263)] = 73, - [SMALL_STATE(1264)] = 146, - [SMALL_STATE(1265)] = 285, - [SMALL_STATE(1266)] = 358, - [SMALL_STATE(1267)] = 431, - [SMALL_STATE(1268)] = 504, - [SMALL_STATE(1269)] = 577, - [SMALL_STATE(1270)] = 650, - [SMALL_STATE(1271)] = 723, - [SMALL_STATE(1272)] = 796, - [SMALL_STATE(1273)] = 869, - [SMALL_STATE(1274)] = 1008, - [SMALL_STATE(1275)] = 1081, - [SMALL_STATE(1276)] = 1154, - [SMALL_STATE(1277)] = 1231, - [SMALL_STATE(1278)] = 1304, - [SMALL_STATE(1279)] = 1377, - [SMALL_STATE(1280)] = 1450, - [SMALL_STATE(1281)] = 1523, - [SMALL_STATE(1282)] = 1596, - [SMALL_STATE(1283)] = 1669, - [SMALL_STATE(1284)] = 1758, - [SMALL_STATE(1285)] = 1831, - [SMALL_STATE(1286)] = 1916, - [SMALL_STATE(1287)] = 1989, - [SMALL_STATE(1288)] = 2068, - [SMALL_STATE(1289)] = 2141, - [SMALL_STATE(1290)] = 2214, - [SMALL_STATE(1291)] = 2289, - [SMALL_STATE(1292)] = 2362, - [SMALL_STATE(1293)] = 2435, - [SMALL_STATE(1294)] = 2534, - [SMALL_STATE(1295)] = 2607, - [SMALL_STATE(1296)] = 2680, - [SMALL_STATE(1297)] = 2781, - [SMALL_STATE(1298)] = 2854, - [SMALL_STATE(1299)] = 2927, - [SMALL_STATE(1300)] = 3030, - [SMALL_STATE(1301)] = 3173, - [SMALL_STATE(1302)] = 3246, - [SMALL_STATE(1303)] = 3319, - [SMALL_STATE(1304)] = 3410, - [SMALL_STATE(1305)] = 3483, - [SMALL_STATE(1306)] = 3556, - [SMALL_STATE(1307)] = 3629, - [SMALL_STATE(1308)] = 3702, - [SMALL_STATE(1309)] = 3775, - [SMALL_STATE(1310)] = 3858, - [SMALL_STATE(1311)] = 3931, - [SMALL_STATE(1312)] = 4024, - [SMALL_STATE(1313)] = 4097, - [SMALL_STATE(1314)] = 4192, - [SMALL_STATE(1315)] = 4265, - [SMALL_STATE(1316)] = 4362, - [SMALL_STATE(1317)] = 4435, - [SMALL_STATE(1318)] = 4578, - [SMALL_STATE(1319)] = 4651, - [SMALL_STATE(1320)] = 4724, - [SMALL_STATE(1321)] = 4797, - [SMALL_STATE(1322)] = 4870, - [SMALL_STATE(1323)] = 4943, - [SMALL_STATE(1324)] = 5016, - [SMALL_STATE(1325)] = 5089, - [SMALL_STATE(1326)] = 5162, - [SMALL_STATE(1327)] = 5235, - [SMALL_STATE(1328)] = 5308, - [SMALL_STATE(1329)] = 5381, - [SMALL_STATE(1330)] = 5454, - [SMALL_STATE(1331)] = 5527, - [SMALL_STATE(1332)] = 5600, - [SMALL_STATE(1333)] = 5743, + [SMALL_STATE(1263)] = 143, + [SMALL_STATE(1264)] = 216, + [SMALL_STATE(1265)] = 289, + [SMALL_STATE(1266)] = 372, + [SMALL_STATE(1267)] = 445, + [SMALL_STATE(1268)] = 518, + [SMALL_STATE(1269)] = 611, + [SMALL_STATE(1270)] = 684, + [SMALL_STATE(1271)] = 757, + [SMALL_STATE(1272)] = 830, + [SMALL_STATE(1273)] = 903, + [SMALL_STATE(1274)] = 980, + [SMALL_STATE(1275)] = 1053, + [SMALL_STATE(1276)] = 1148, + [SMALL_STATE(1277)] = 1221, + [SMALL_STATE(1278)] = 1318, + [SMALL_STATE(1279)] = 1391, + [SMALL_STATE(1280)] = 1480, + [SMALL_STATE(1281)] = 1553, + [SMALL_STATE(1282)] = 1626, + [SMALL_STATE(1283)] = 1711, + [SMALL_STATE(1284)] = 1784, + [SMALL_STATE(1285)] = 1863, + [SMALL_STATE(1286)] = 1936, + [SMALL_STATE(1287)] = 2009, + [SMALL_STATE(1288)] = 2082, + [SMALL_STATE(1289)] = 2155, + [SMALL_STATE(1290)] = 2228, + [SMALL_STATE(1291)] = 2301, + [SMALL_STATE(1292)] = 2374, + [SMALL_STATE(1293)] = 2447, + [SMALL_STATE(1294)] = 2520, + [SMALL_STATE(1295)] = 2595, + [SMALL_STATE(1296)] = 2668, + [SMALL_STATE(1297)] = 2741, + [SMALL_STATE(1298)] = 2814, + [SMALL_STATE(1299)] = 2887, + [SMALL_STATE(1300)] = 2960, + [SMALL_STATE(1301)] = 3033, + [SMALL_STATE(1302)] = 3132, + [SMALL_STATE(1303)] = 3205, + [SMALL_STATE(1304)] = 3278, + [SMALL_STATE(1305)] = 3351, + [SMALL_STATE(1306)] = 3424, + [SMALL_STATE(1307)] = 3497, + [SMALL_STATE(1308)] = 3570, + [SMALL_STATE(1309)] = 3643, + [SMALL_STATE(1310)] = 3786, + [SMALL_STATE(1311)] = 3859, + [SMALL_STATE(1312)] = 3932, + [SMALL_STATE(1313)] = 4005, + [SMALL_STATE(1314)] = 4078, + [SMALL_STATE(1315)] = 4217, + [SMALL_STATE(1316)] = 4290, + [SMALL_STATE(1317)] = 4363, + [SMALL_STATE(1318)] = 4436, + [SMALL_STATE(1319)] = 4509, + [SMALL_STATE(1320)] = 4610, + [SMALL_STATE(1321)] = 4683, + [SMALL_STATE(1322)] = 4756, + [SMALL_STATE(1323)] = 4859, + [SMALL_STATE(1324)] = 4932, + [SMALL_STATE(1325)] = 5005, + [SMALL_STATE(1326)] = 5078, + [SMALL_STATE(1327)] = 5169, + [SMALL_STATE(1328)] = 5242, + [SMALL_STATE(1329)] = 5315, + [SMALL_STATE(1330)] = 5388, + [SMALL_STATE(1331)] = 5461, + [SMALL_STATE(1332)] = 5604, + [SMALL_STATE(1333)] = 5747, [SMALL_STATE(1334)] = 5886, [SMALL_STATE(1335)] = 5959, [SMALL_STATE(1336)] = 6032, @@ -248442,8257 +248630,8255 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1340)] = 6324, [SMALL_STATE(1341)] = 6397, [SMALL_STATE(1342)] = 6470, - [SMALL_STATE(1343)] = 6543, + [SMALL_STATE(1343)] = 6609, [SMALL_STATE(1344)] = 6682, [SMALL_STATE(1345)] = 6755, [SMALL_STATE(1346)] = 6895, [SMALL_STATE(1347)] = 7043, [SMALL_STATE(1348)] = 7120, [SMALL_STATE(1349)] = 7257, - [SMALL_STATE(1350)] = 7394, - [SMALL_STATE(1351)] = 7467, + [SMALL_STATE(1350)] = 7330, + [SMALL_STATE(1351)] = 7407, [SMALL_STATE(1352)] = 7544, [SMALL_STATE(1353)] = 7681, - [SMALL_STATE(1354)] = 7754, - [SMALL_STATE(1355)] = 7891, - [SMALL_STATE(1356)] = 8028, + [SMALL_STATE(1354)] = 7818, + [SMALL_STATE(1355)] = 7895, + [SMALL_STATE(1356)] = 8032, [SMALL_STATE(1357)] = 8105, [SMALL_STATE(1358)] = 8177, - [SMALL_STATE(1359)] = 8251, - [SMALL_STATE(1360)] = 8327, - [SMALL_STATE(1361)] = 8461, - [SMALL_STATE(1362)] = 8531, - [SMALL_STATE(1363)] = 8607, - [SMALL_STATE(1364)] = 8683, - [SMALL_STATE(1365)] = 8825, - [SMALL_STATE(1366)] = 8903, - [SMALL_STATE(1367)] = 8973, - [SMALL_STATE(1368)] = 9107, - [SMALL_STATE(1369)] = 9247, - [SMALL_STATE(1370)] = 9389, - [SMALL_STATE(1371)] = 9523, - [SMALL_STATE(1372)] = 9657, - [SMALL_STATE(1373)] = 9733, - [SMALL_STATE(1374)] = 9867, + [SMALL_STATE(1359)] = 8255, + [SMALL_STATE(1360)] = 8397, + [SMALL_STATE(1361)] = 8469, + [SMALL_STATE(1362)] = 8609, + [SMALL_STATE(1363)] = 8743, + [SMALL_STATE(1364)] = 8885, + [SMALL_STATE(1365)] = 9019, + [SMALL_STATE(1366)] = 9095, + [SMALL_STATE(1367)] = 9165, + [SMALL_STATE(1368)] = 9241, + [SMALL_STATE(1369)] = 9375, + [SMALL_STATE(1370)] = 9451, + [SMALL_STATE(1371)] = 9525, + [SMALL_STATE(1372)] = 9659, + [SMALL_STATE(1373)] = 9735, + [SMALL_STATE(1374)] = 9805, [SMALL_STATE(1375)] = 9939, [SMALL_STATE(1376)] = 10012, [SMALL_STATE(1377)] = 10081, [SMALL_STATE(1378)] = 10156, - [SMALL_STATE(1379)] = 10225, - [SMALL_STATE(1380)] = 10294, - [SMALL_STATE(1381)] = 10363, - [SMALL_STATE(1382)] = 10432, - [SMALL_STATE(1383)] = 10517, - [SMALL_STATE(1384)] = 10586, + [SMALL_STATE(1379)] = 10229, + [SMALL_STATE(1380)] = 10298, + [SMALL_STATE(1381)] = 10367, + [SMALL_STATE(1382)] = 10436, + [SMALL_STATE(1383)] = 10521, + [SMALL_STATE(1384)] = 10590, [SMALL_STATE(1385)] = 10659, - [SMALL_STATE(1386)] = 10727, - [SMALL_STATE(1387)] = 10811, - [SMALL_STATE(1388)] = 10897, - [SMALL_STATE(1389)] = 10983, - [SMALL_STATE(1390)] = 11051, - [SMALL_STATE(1391)] = 11133, + [SMALL_STATE(1386)] = 10741, + [SMALL_STATE(1387)] = 10809, + [SMALL_STATE(1388)] = 10893, + [SMALL_STATE(1389)] = 10979, + [SMALL_STATE(1390)] = 11061, + [SMALL_STATE(1391)] = 11147, [SMALL_STATE(1392)] = 11215, - [SMALL_STATE(1393)] = 11296, - [SMALL_STATE(1394)] = 11369, - [SMALL_STATE(1395)] = 11494, - [SMALL_STATE(1396)] = 11627, - [SMALL_STATE(1397)] = 11708, - [SMALL_STATE(1398)] = 11779, - [SMALL_STATE(1399)] = 11850, - [SMALL_STATE(1400)] = 11921, + [SMALL_STATE(1393)] = 11288, + [SMALL_STATE(1394)] = 11359, + [SMALL_STATE(1395)] = 11430, + [SMALL_STATE(1396)] = 11501, + [SMALL_STATE(1397)] = 11634, + [SMALL_STATE(1398)] = 11759, + [SMALL_STATE(1399)] = 11840, + [SMALL_STATE(1400)] = 11965, [SMALL_STATE(1401)] = 12046, - [SMALL_STATE(1402)] = 12116, - [SMALL_STATE(1403)] = 12196, - [SMALL_STATE(1404)] = 12264, - [SMALL_STATE(1405)] = 12332, + [SMALL_STATE(1402)] = 12114, + [SMALL_STATE(1403)] = 12184, + [SMALL_STATE(1404)] = 12250, + [SMALL_STATE(1405)] = 12318, [SMALL_STATE(1406)] = 12398, - [SMALL_STATE(1407)] = 12468, + [SMALL_STATE(1407)] = 12466, [SMALL_STATE(1408)] = 12536, - [SMALL_STATE(1409)] = 12606, + [SMALL_STATE(1409)] = 12604, [SMALL_STATE(1410)] = 12674, - [SMALL_STATE(1411)] = 12739, - [SMALL_STATE(1412)] = 12808, - [SMALL_STATE(1413)] = 12873, - [SMALL_STATE(1414)] = 12938, - [SMALL_STATE(1415)] = 13003, - [SMALL_STATE(1416)] = 13070, - [SMALL_STATE(1417)] = 13199, - [SMALL_STATE(1418)] = 13264, - [SMALL_STATE(1419)] = 13389, - [SMALL_STATE(1420)] = 13518, - [SMALL_STATE(1421)] = 13597, - [SMALL_STATE(1422)] = 13666, - [SMALL_STATE(1423)] = 13795, - [SMALL_STATE(1424)] = 13924, + [SMALL_STATE(1411)] = 12803, + [SMALL_STATE(1412)] = 12872, + [SMALL_STATE(1413)] = 13001, + [SMALL_STATE(1414)] = 13066, + [SMALL_STATE(1415)] = 13135, + [SMALL_STATE(1416)] = 13264, + [SMALL_STATE(1417)] = 13331, + [SMALL_STATE(1418)] = 13460, + [SMALL_STATE(1419)] = 13525, + [SMALL_STATE(1420)] = 13604, + [SMALL_STATE(1421)] = 13669, + [SMALL_STATE(1422)] = 13794, + [SMALL_STATE(1423)] = 13859, + [SMALL_STATE(1424)] = 13926, [SMALL_STATE(1425)] = 13991, [SMALL_STATE(1426)] = 14057, - [SMALL_STATE(1427)] = 14121, - [SMALL_STATE(1428)] = 14185, - [SMALL_STATE(1429)] = 14253, - [SMALL_STATE(1430)] = 14317, - [SMALL_STATE(1431)] = 14385, + [SMALL_STATE(1427)] = 14125, + [SMALL_STATE(1428)] = 14189, + [SMALL_STATE(1429)] = 14255, + [SMALL_STATE(1430)] = 14319, + [SMALL_STATE(1431)] = 14387, [SMALL_STATE(1432)] = 14451, - [SMALL_STATE(1433)] = 14522, + [SMALL_STATE(1433)] = 14516, [SMALL_STATE(1434)] = 14587, - [SMALL_STATE(1435)] = 14650, - [SMALL_STATE(1436)] = 14713, - [SMALL_STATE(1437)] = 14776, - [SMALL_STATE(1438)] = 14841, + [SMALL_STATE(1435)] = 14652, + [SMALL_STATE(1436)] = 14723, + [SMALL_STATE(1437)] = 14786, + [SMALL_STATE(1438)] = 14849, [SMALL_STATE(1439)] = 14912, - [SMALL_STATE(1440)] = 14982, - [SMALL_STATE(1441)] = 15044, - [SMALL_STATE(1442)] = 15110, - [SMALL_STATE(1443)] = 15208, - [SMALL_STATE(1444)] = 15270, - [SMALL_STATE(1445)] = 15368, - [SMALL_STATE(1446)] = 15438, - [SMALL_STATE(1447)] = 15504, - [SMALL_STATE(1448)] = 15576, + [SMALL_STATE(1440)] = 14978, + [SMALL_STATE(1441)] = 15050, + [SMALL_STATE(1442)] = 15120, + [SMALL_STATE(1443)] = 15182, + [SMALL_STATE(1444)] = 15244, + [SMALL_STATE(1445)] = 15342, + [SMALL_STATE(1446)] = 15440, + [SMALL_STATE(1447)] = 15502, + [SMALL_STATE(1448)] = 15568, [SMALL_STATE(1449)] = 15638, - [SMALL_STATE(1450)] = 15731, - [SMALL_STATE(1451)] = 15828, - [SMALL_STATE(1452)] = 15921, - [SMALL_STATE(1453)] = 15986, - [SMALL_STATE(1454)] = 16051, - [SMALL_STATE(1455)] = 16148, - [SMALL_STATE(1456)] = 16219, + [SMALL_STATE(1450)] = 15735, + [SMALL_STATE(1451)] = 15832, + [SMALL_STATE(1452)] = 15925, + [SMALL_STATE(1453)] = 15990, + [SMALL_STATE(1454)] = 16053, + [SMALL_STATE(1455)] = 16118, + [SMALL_STATE(1456)] = 16189, [SMALL_STATE(1457)] = 16282, [SMALL_STATE(1458)] = 16345, [SMALL_STATE(1459)] = 16438, - [SMALL_STATE(1460)] = 16498, + [SMALL_STATE(1460)] = 16500, [SMALL_STATE(1461)] = 16564, - [SMALL_STATE(1462)] = 16628, - [SMALL_STATE(1463)] = 16694, - [SMALL_STATE(1464)] = 16760, - [SMALL_STATE(1465)] = 16824, - [SMALL_STATE(1466)] = 16888, - [SMALL_STATE(1467)] = 16952, - [SMALL_STATE(1468)] = 17016, - [SMALL_STATE(1469)] = 17080, - [SMALL_STATE(1470)] = 17144, - [SMALL_STATE(1471)] = 17208, + [SMALL_STATE(1462)] = 16630, + [SMALL_STATE(1463)] = 16696, + [SMALL_STATE(1464)] = 16762, + [SMALL_STATE(1465)] = 16826, + [SMALL_STATE(1466)] = 16886, + [SMALL_STATE(1467)] = 16946, + [SMALL_STATE(1468)] = 17012, + [SMALL_STATE(1469)] = 17076, + [SMALL_STATE(1470)] = 17142, + [SMALL_STATE(1471)] = 17206, [SMALL_STATE(1472)] = 17272, [SMALL_STATE(1473)] = 17338, [SMALL_STATE(1474)] = 17404, - [SMALL_STATE(1475)] = 17470, - [SMALL_STATE(1476)] = 17536, + [SMALL_STATE(1475)] = 17468, + [SMALL_STATE(1476)] = 17532, [SMALL_STATE(1477)] = 17598, - [SMALL_STATE(1478)] = 17664, - [SMALL_STATE(1479)] = 17730, - [SMALL_STATE(1480)] = 17796, - [SMALL_STATE(1481)] = 17862, - [SMALL_STATE(1482)] = 17928, - [SMALL_STATE(1483)] = 17990, - [SMALL_STATE(1484)] = 18052, - [SMALL_STATE(1485)] = 18112, - [SMALL_STATE(1486)] = 18172, + [SMALL_STATE(1478)] = 17658, + [SMALL_STATE(1479)] = 17722, + [SMALL_STATE(1480)] = 17782, + [SMALL_STATE(1481)] = 17844, + [SMALL_STATE(1482)] = 17908, + [SMALL_STATE(1483)] = 17974, + [SMALL_STATE(1484)] = 18036, + [SMALL_STATE(1485)] = 18102, + [SMALL_STATE(1486)] = 18166, [SMALL_STATE(1487)] = 18232, [SMALL_STATE(1488)] = 18295, - [SMALL_STATE(1489)] = 18358, + [SMALL_STATE(1489)] = 18356, [SMALL_STATE(1490)] = 18419, - [SMALL_STATE(1491)] = 18478, - [SMALL_STATE(1492)] = 18541, - [SMALL_STATE(1493)] = 18600, - [SMALL_STATE(1494)] = 18661, - [SMALL_STATE(1495)] = 18722, - [SMALL_STATE(1496)] = 18785, - [SMALL_STATE(1497)] = 18844, - [SMALL_STATE(1498)] = 18907, - [SMALL_STATE(1499)] = 18966, - [SMALL_STATE(1500)] = 19025, - [SMALL_STATE(1501)] = 19086, - [SMALL_STATE(1502)] = 19149, - [SMALL_STATE(1503)] = 19212, - [SMALL_STATE(1504)] = 19275, - [SMALL_STATE(1505)] = 19338, - [SMALL_STATE(1506)] = 19399, + [SMALL_STATE(1491)] = 18482, + [SMALL_STATE(1492)] = 18545, + [SMALL_STATE(1493)] = 18608, + [SMALL_STATE(1494)] = 18667, + [SMALL_STATE(1495)] = 18730, + [SMALL_STATE(1496)] = 18791, + [SMALL_STATE(1497)] = 18854, + [SMALL_STATE(1498)] = 18917, + [SMALL_STATE(1499)] = 18976, + [SMALL_STATE(1500)] = 19039, + [SMALL_STATE(1501)] = 19098, + [SMALL_STATE(1502)] = 19159, + [SMALL_STATE(1503)] = 19222, + [SMALL_STATE(1504)] = 19283, + [SMALL_STATE(1505)] = 19342, + [SMALL_STATE(1506)] = 19403, [SMALL_STATE(1507)] = 19462, [SMALL_STATE(1508)] = 19525, - [SMALL_STATE(1509)] = 19585, - [SMALL_STATE(1510)] = 19657, - [SMALL_STATE(1511)] = 19727, - [SMALL_STATE(1512)] = 19807, - [SMALL_STATE(1513)] = 19885, - [SMALL_STATE(1514)] = 19967, + [SMALL_STATE(1509)] = 19597, + [SMALL_STATE(1510)] = 19677, + [SMALL_STATE(1511)] = 19735, + [SMALL_STATE(1512)] = 19795, + [SMALL_STATE(1513)] = 19875, + [SMALL_STATE(1514)] = 19955, [SMALL_STATE(1515)] = 20047, - [SMALL_STATE(1516)] = 20131, - [SMALL_STATE(1517)] = 20213, - [SMALL_STATE(1518)] = 20295, - [SMALL_STATE(1519)] = 20371, - [SMALL_STATE(1520)] = 20445, - [SMALL_STATE(1521)] = 20531, - [SMALL_STATE(1522)] = 20599, - [SMALL_STATE(1523)] = 20683, - [SMALL_STATE(1524)] = 20747, - [SMALL_STATE(1525)] = 20827, - [SMALL_STATE(1526)] = 20913, - [SMALL_STATE(1527)] = 20993, - [SMALL_STATE(1528)] = 21081, - [SMALL_STATE(1529)] = 21161, - [SMALL_STATE(1530)] = 21251, - [SMALL_STATE(1531)] = 21329, - [SMALL_STATE(1532)] = 21393, - [SMALL_STATE(1533)] = 21473, - [SMALL_STATE(1534)] = 21545, - [SMALL_STATE(1535)] = 21625, - [SMALL_STATE(1536)] = 21705, - [SMALL_STATE(1537)] = 21785, - [SMALL_STATE(1538)] = 21867, - [SMALL_STATE(1539)] = 21955, - [SMALL_STATE(1540)] = 22039, - [SMALL_STATE(1541)] = 22119, - [SMALL_STATE(1542)] = 22199, - [SMALL_STATE(1543)] = 22289, - [SMALL_STATE(1544)] = 22369, - [SMALL_STATE(1545)] = 22443, - [SMALL_STATE(1546)] = 22515, - [SMALL_STATE(1547)] = 22581, - [SMALL_STATE(1548)] = 22643, - [SMALL_STATE(1549)] = 22727, - [SMALL_STATE(1550)] = 22813, - [SMALL_STATE(1551)] = 22901, - [SMALL_STATE(1552)] = 22977, - [SMALL_STATE(1553)] = 23047, - [SMALL_STATE(1554)] = 23125, - [SMALL_STATE(1555)] = 23205, - [SMALL_STATE(1556)] = 23287, - [SMALL_STATE(1557)] = 23363, - [SMALL_STATE(1558)] = 23437, - [SMALL_STATE(1559)] = 23511, - [SMALL_STATE(1560)] = 23583, - [SMALL_STATE(1561)] = 23651, - [SMALL_STATE(1562)] = 23717, - [SMALL_STATE(1563)] = 23781, - [SMALL_STATE(1564)] = 23843, - [SMALL_STATE(1565)] = 23929, - [SMALL_STATE(1566)] = 24013, - [SMALL_STATE(1567)] = 24101, - [SMALL_STATE(1568)] = 24187, - [SMALL_STATE(1569)] = 24277, - [SMALL_STATE(1570)] = 24365, - [SMALL_STATE(1571)] = 24443, - [SMALL_STATE(1572)] = 24519, - [SMALL_STATE(1573)] = 24591, - [SMALL_STATE(1574)] = 24661, - [SMALL_STATE(1575)] = 24741, - [SMALL_STATE(1576)] = 24819, - [SMALL_STATE(1577)] = 24901, - [SMALL_STATE(1578)] = 24981, - [SMALL_STATE(1579)] = 25065, - [SMALL_STATE(1580)] = 25147, - [SMALL_STATE(1581)] = 25227, - [SMALL_STATE(1582)] = 25307, - [SMALL_STATE(1583)] = 25381, - [SMALL_STATE(1584)] = 25439, - [SMALL_STATE(1585)] = 25513, - [SMALL_STATE(1586)] = 25585, - [SMALL_STATE(1587)] = 25651, - [SMALL_STATE(1588)] = 25713, - [SMALL_STATE(1589)] = 25797, - [SMALL_STATE(1590)] = 25883, - [SMALL_STATE(1591)] = 25971, - [SMALL_STATE(1592)] = 26047, - [SMALL_STATE(1593)] = 26117, - [SMALL_STATE(1594)] = 26195, - [SMALL_STATE(1595)] = 26275, - [SMALL_STATE(1596)] = 26357, - [SMALL_STATE(1597)] = 26435, - [SMALL_STATE(1598)] = 26515, - [SMALL_STATE(1599)] = 26587, - [SMALL_STATE(1600)] = 26667, - [SMALL_STATE(1601)] = 26741, - [SMALL_STATE(1602)] = 26821, - [SMALL_STATE(1603)] = 26901, - [SMALL_STATE(1604)] = 26981, - [SMALL_STATE(1605)] = 27061, - [SMALL_STATE(1606)] = 27141, - [SMALL_STATE(1607)] = 27221, - [SMALL_STATE(1608)] = 27301, - [SMALL_STATE(1609)] = 27381, - [SMALL_STATE(1610)] = 27461, - [SMALL_STATE(1611)] = 27541, - [SMALL_STATE(1612)] = 27621, - [SMALL_STATE(1613)] = 27707, - [SMALL_STATE(1614)] = 27787, - [SMALL_STATE(1615)] = 27855, - [SMALL_STATE(1616)] = 27941, - [SMALL_STATE(1617)] = 28021, - [SMALL_STATE(1618)] = 28093, - [SMALL_STATE(1619)] = 28163, - [SMALL_STATE(1620)] = 28227, - [SMALL_STATE(1621)] = 28287, - [SMALL_STATE(1622)] = 28369, - [SMALL_STATE(1623)] = 28453, - [SMALL_STATE(1624)] = 28539, - [SMALL_STATE(1625)] = 28613, - [SMALL_STATE(1626)] = 28681, - [SMALL_STATE(1627)] = 28757, - [SMALL_STATE(1628)] = 28835, - [SMALL_STATE(1629)] = 28915, - [SMALL_STATE(1630)] = 28991, - [SMALL_STATE(1631)] = 29065, - [SMALL_STATE(1632)] = 29125, - [SMALL_STATE(1633)] = 29205, - [SMALL_STATE(1634)] = 29285, - [SMALL_STATE(1635)] = 29365, - [SMALL_STATE(1636)] = 29457, - [SMALL_STATE(1637)] = 29537, - [SMALL_STATE(1638)] = 29611, - [SMALL_STATE(1639)] = 29683, - [SMALL_STATE(1640)] = 29751, - [SMALL_STATE(1641)] = 29817, - [SMALL_STATE(1642)] = 29881, - [SMALL_STATE(1643)] = 29961, - [SMALL_STATE(1644)] = 30041, - [SMALL_STATE(1645)] = 30121, - [SMALL_STATE(1646)] = 30201, - [SMALL_STATE(1647)] = 30281, - [SMALL_STATE(1648)] = 30361, - [SMALL_STATE(1649)] = 30453, - [SMALL_STATE(1650)] = 30533, - [SMALL_STATE(1651)] = 30595, - [SMALL_STATE(1652)] = 30655, - [SMALL_STATE(1653)] = 30741, - [SMALL_STATE(1654)] = 30825, - [SMALL_STATE(1655)] = 30915, - [SMALL_STATE(1656)] = 30975, - [SMALL_STATE(1657)] = 31035, - [SMALL_STATE(1658)] = 31115, - [SMALL_STATE(1659)] = 31195, - [SMALL_STATE(1660)] = 31275, - [SMALL_STATE(1661)] = 31363, - [SMALL_STATE(1662)] = 31449, - [SMALL_STATE(1663)] = 31539, - [SMALL_STATE(1664)] = 31619, - [SMALL_STATE(1665)] = 31707, - [SMALL_STATE(1666)] = 31787, - [SMALL_STATE(1667)] = 31867, - [SMALL_STATE(1668)] = 31945, - [SMALL_STATE(1669)] = 32025, - [SMALL_STATE(1670)] = 32105, - [SMALL_STATE(1671)] = 32185, - [SMALL_STATE(1672)] = 32271, - [SMALL_STATE(1673)] = 32347, - [SMALL_STATE(1674)] = 32427, - [SMALL_STATE(1675)] = 32507, + [SMALL_STATE(1516)] = 20121, + [SMALL_STATE(1517)] = 20201, + [SMALL_STATE(1518)] = 20281, + [SMALL_STATE(1519)] = 20361, + [SMALL_STATE(1520)] = 20441, + [SMALL_STATE(1521)] = 20521, + [SMALL_STATE(1522)] = 20601, + [SMALL_STATE(1523)] = 20661, + [SMALL_STATE(1524)] = 20751, + [SMALL_STATE(1525)] = 20831, + [SMALL_STATE(1526)] = 20911, + [SMALL_STATE(1527)] = 21003, + [SMALL_STATE(1528)] = 21083, + [SMALL_STATE(1529)] = 21163, + [SMALL_STATE(1530)] = 21243, + [SMALL_STATE(1531)] = 21323, + [SMALL_STATE(1532)] = 21403, + [SMALL_STATE(1533)] = 21483, + [SMALL_STATE(1534)] = 21563, + [SMALL_STATE(1535)] = 21643, + [SMALL_STATE(1536)] = 21723, + [SMALL_STATE(1537)] = 21809, + [SMALL_STATE(1538)] = 21889, + [SMALL_STATE(1539)] = 21969, + [SMALL_STATE(1540)] = 22049, + [SMALL_STATE(1541)] = 22129, + [SMALL_STATE(1542)] = 22215, + [SMALL_STATE(1543)] = 22295, + [SMALL_STATE(1544)] = 22375, + [SMALL_STATE(1545)] = 22455, + [SMALL_STATE(1546)] = 22535, + [SMALL_STATE(1547)] = 22615, + [SMALL_STATE(1548)] = 22695, + [SMALL_STATE(1549)] = 22775, + [SMALL_STATE(1550)] = 22855, + [SMALL_STATE(1551)] = 22935, + [SMALL_STATE(1552)] = 23015, + [SMALL_STATE(1553)] = 23095, + [SMALL_STATE(1554)] = 23175, + [SMALL_STATE(1555)] = 23255, + [SMALL_STATE(1556)] = 23335, + [SMALL_STATE(1557)] = 23415, + [SMALL_STATE(1558)] = 23495, + [SMALL_STATE(1559)] = 23575, + [SMALL_STATE(1560)] = 23655, + [SMALL_STATE(1561)] = 23735, + [SMALL_STATE(1562)] = 23815, + [SMALL_STATE(1563)] = 23891, + [SMALL_STATE(1564)] = 23965, + [SMALL_STATE(1565)] = 24033, + [SMALL_STATE(1566)] = 24097, + [SMALL_STATE(1567)] = 24183, + [SMALL_STATE(1568)] = 24271, + [SMALL_STATE(1569)] = 24361, + [SMALL_STATE(1570)] = 24439, + [SMALL_STATE(1571)] = 24511, + [SMALL_STATE(1572)] = 24591, + [SMALL_STATE(1573)] = 24673, + [SMALL_STATE(1574)] = 24757, + [SMALL_STATE(1575)] = 24843, + [SMALL_STATE(1576)] = 24919, + [SMALL_STATE(1577)] = 24993, + [SMALL_STATE(1578)] = 25067, + [SMALL_STATE(1579)] = 25139, + [SMALL_STATE(1580)] = 25207, + [SMALL_STATE(1581)] = 25273, + [SMALL_STATE(1582)] = 25337, + [SMALL_STATE(1583)] = 25399, + [SMALL_STATE(1584)] = 25485, + [SMALL_STATE(1585)] = 25569, + [SMALL_STATE(1586)] = 25657, + [SMALL_STATE(1587)] = 25743, + [SMALL_STATE(1588)] = 25833, + [SMALL_STATE(1589)] = 25921, + [SMALL_STATE(1590)] = 25999, + [SMALL_STATE(1591)] = 26075, + [SMALL_STATE(1592)] = 26145, + [SMALL_STATE(1593)] = 26225, + [SMALL_STATE(1594)] = 26303, + [SMALL_STATE(1595)] = 26385, + [SMALL_STATE(1596)] = 26465, + [SMALL_STATE(1597)] = 26549, + [SMALL_STATE(1598)] = 26631, + [SMALL_STATE(1599)] = 26707, + [SMALL_STATE(1600)] = 26781, + [SMALL_STATE(1601)] = 26849, + [SMALL_STATE(1602)] = 26913, + [SMALL_STATE(1603)] = 26999, + [SMALL_STATE(1604)] = 27087, + [SMALL_STATE(1605)] = 27177, + [SMALL_STATE(1606)] = 27255, + [SMALL_STATE(1607)] = 27327, + [SMALL_STATE(1608)] = 27407, + [SMALL_STATE(1609)] = 27489, + [SMALL_STATE(1610)] = 27573, + [SMALL_STATE(1611)] = 27647, + [SMALL_STATE(1612)] = 27719, + [SMALL_STATE(1613)] = 27785, + [SMALL_STATE(1614)] = 27847, + [SMALL_STATE(1615)] = 27931, + [SMALL_STATE(1616)] = 28017, + [SMALL_STATE(1617)] = 28105, + [SMALL_STATE(1618)] = 28181, + [SMALL_STATE(1619)] = 28251, + [SMALL_STATE(1620)] = 28329, + [SMALL_STATE(1621)] = 28409, + [SMALL_STATE(1622)] = 28491, + [SMALL_STATE(1623)] = 28567, + [SMALL_STATE(1624)] = 28641, + [SMALL_STATE(1625)] = 28715, + [SMALL_STATE(1626)] = 28787, + [SMALL_STATE(1627)] = 28855, + [SMALL_STATE(1628)] = 28921, + [SMALL_STATE(1629)] = 28985, + [SMALL_STATE(1630)] = 29047, + [SMALL_STATE(1631)] = 29133, + [SMALL_STATE(1632)] = 29217, + [SMALL_STATE(1633)] = 29305, + [SMALL_STATE(1634)] = 29391, + [SMALL_STATE(1635)] = 29481, + [SMALL_STATE(1636)] = 29569, + [SMALL_STATE(1637)] = 29647, + [SMALL_STATE(1638)] = 29723, + [SMALL_STATE(1639)] = 29795, + [SMALL_STATE(1640)] = 29865, + [SMALL_STATE(1641)] = 29945, + [SMALL_STATE(1642)] = 30023, + [SMALL_STATE(1643)] = 30105, + [SMALL_STATE(1644)] = 30185, + [SMALL_STATE(1645)] = 30269, + [SMALL_STATE(1646)] = 30351, + [SMALL_STATE(1647)] = 30425, + [SMALL_STATE(1648)] = 30497, + [SMALL_STATE(1649)] = 30563, + [SMALL_STATE(1650)] = 30625, + [SMALL_STATE(1651)] = 30709, + [SMALL_STATE(1652)] = 30795, + [SMALL_STATE(1653)] = 30883, + [SMALL_STATE(1654)] = 30959, + [SMALL_STATE(1655)] = 31029, + [SMALL_STATE(1656)] = 31107, + [SMALL_STATE(1657)] = 31187, + [SMALL_STATE(1658)] = 31269, + [SMALL_STATE(1659)] = 31341, + [SMALL_STATE(1660)] = 31411, + [SMALL_STATE(1661)] = 31475, + [SMALL_STATE(1662)] = 31535, + [SMALL_STATE(1663)] = 31617, + [SMALL_STATE(1664)] = 31701, + [SMALL_STATE(1665)] = 31787, + [SMALL_STATE(1666)] = 31861, + [SMALL_STATE(1667)] = 31929, + [SMALL_STATE(1668)] = 32005, + [SMALL_STATE(1669)] = 32083, + [SMALL_STATE(1670)] = 32163, + [SMALL_STATE(1671)] = 32223, + [SMALL_STATE(1672)] = 32283, + [SMALL_STATE(1673)] = 32343, + [SMALL_STATE(1674)] = 32423, + [SMALL_STATE(1675)] = 32503, [SMALL_STATE(1676)] = 32583, [SMALL_STATE(1677)] = 32663, - [SMALL_STATE(1678)] = 32726, - [SMALL_STATE(1679)] = 32799, - [SMALL_STATE(1680)] = 32870, - [SMALL_STATE(1681)] = 32941, - [SMALL_STATE(1682)] = 33018, - [SMALL_STATE(1683)] = 33087, - [SMALL_STATE(1684)] = 33146, - [SMALL_STATE(1685)] = 33227, - [SMALL_STATE(1686)] = 33298, - [SMALL_STATE(1687)] = 33381, - [SMALL_STATE(1688)] = 33468, - [SMALL_STATE(1689)] = 33535, - [SMALL_STATE(1690)] = 33610, - [SMALL_STATE(1691)] = 33697, + [SMALL_STATE(1678)] = 32750, + [SMALL_STATE(1679)] = 32821, + [SMALL_STATE(1680)] = 32890, + [SMALL_STATE(1681)] = 32953, + [SMALL_STATE(1682)] = 33012, + [SMALL_STATE(1683)] = 33093, + [SMALL_STATE(1684)] = 33176, + [SMALL_STATE(1685)] = 33261, + [SMALL_STATE(1686)] = 33334, + [SMALL_STATE(1687)] = 33401, + [SMALL_STATE(1688)] = 33476, + [SMALL_STATE(1689)] = 33553, + [SMALL_STATE(1690)] = 33632, + [SMALL_STATE(1691)] = 33703, [SMALL_STATE(1692)] = 33774, - [SMALL_STATE(1693)] = 33833, - [SMALL_STATE(1694)] = 33918, - [SMALL_STATE(1695)] = 33997, + [SMALL_STATE(1693)] = 33851, + [SMALL_STATE(1694)] = 33938, + [SMALL_STATE(1695)] = 34011, [SMALL_STATE(1696)] = 34070, - [SMALL_STATE(1697)] = 34140, - [SMALL_STATE(1698)] = 34226, - [SMALL_STATE(1699)] = 34296, - [SMALL_STATE(1700)] = 34356, - [SMALL_STATE(1701)] = 34442, - [SMALL_STATE(1702)] = 34512, - [SMALL_STATE(1703)] = 34598, - [SMALL_STATE(1704)] = 34684, - [SMALL_STATE(1705)] = 34770, - [SMALL_STATE(1706)] = 34856, - [SMALL_STATE(1707)] = 34942, - [SMALL_STATE(1708)] = 35028, - [SMALL_STATE(1709)] = 35114, - [SMALL_STATE(1710)] = 35200, - [SMALL_STATE(1711)] = 35270, - [SMALL_STATE(1712)] = 35356, + [SMALL_STATE(1697)] = 34156, + [SMALL_STATE(1698)] = 34216, + [SMALL_STATE(1699)] = 34286, + [SMALL_STATE(1700)] = 34372, + [SMALL_STATE(1701)] = 34458, + [SMALL_STATE(1702)] = 34544, + [SMALL_STATE(1703)] = 34630, + [SMALL_STATE(1704)] = 34716, + [SMALL_STATE(1705)] = 34776, + [SMALL_STATE(1706)] = 34846, + [SMALL_STATE(1707)] = 34916, + [SMALL_STATE(1708)] = 35002, + [SMALL_STATE(1709)] = 35088, + [SMALL_STATE(1710)] = 35158, + [SMALL_STATE(1711)] = 35244, + [SMALL_STATE(1712)] = 35330, [SMALL_STATE(1713)] = 35416, - [SMALL_STATE(1714)] = 35479, + [SMALL_STATE(1714)] = 35477, [SMALL_STATE(1715)] = 35548, - [SMALL_STATE(1716)] = 35607, + [SMALL_STATE(1716)] = 35615, [SMALL_STATE(1717)] = 35678, - [SMALL_STATE(1718)] = 35745, - [SMALL_STATE(1719)] = 35812, - [SMALL_STATE(1720)] = 35879, - [SMALL_STATE(1721)] = 35942, - [SMALL_STATE(1722)] = 36013, - [SMALL_STATE(1723)] = 36070, - [SMALL_STATE(1724)] = 36141, - [SMALL_STATE(1725)] = 36198, - [SMALL_STATE(1726)] = 36269, - [SMALL_STATE(1727)] = 36330, - [SMALL_STATE(1728)] = 36411, - [SMALL_STATE(1729)] = 36492, - [SMALL_STATE(1730)] = 36551, - [SMALL_STATE(1731)] = 36618, - [SMALL_STATE(1732)] = 36689, - [SMALL_STATE(1733)] = 36756, - [SMALL_STATE(1734)] = 36819, - [SMALL_STATE(1735)] = 36886, + [SMALL_STATE(1718)] = 35747, + [SMALL_STATE(1719)] = 35810, + [SMALL_STATE(1720)] = 35891, + [SMALL_STATE(1721)] = 35948, + [SMALL_STATE(1722)] = 36007, + [SMALL_STATE(1723)] = 36088, + [SMALL_STATE(1724)] = 36147, + [SMALL_STATE(1725)] = 36204, + [SMALL_STATE(1726)] = 36271, + [SMALL_STATE(1727)] = 36338, + [SMALL_STATE(1728)] = 36405, + [SMALL_STATE(1729)] = 36472, + [SMALL_STATE(1730)] = 36543, + [SMALL_STATE(1731)] = 36614, + [SMALL_STATE(1732)] = 36695, + [SMALL_STATE(1733)] = 36766, + [SMALL_STATE(1734)] = 36833, + [SMALL_STATE(1735)] = 36896, [SMALL_STATE(1736)] = 36967, - [SMALL_STATE(1737)] = 37035, - [SMALL_STATE(1738)] = 37113, - [SMALL_STATE(1739)] = 37173, - [SMALL_STATE(1740)] = 37241, - [SMALL_STATE(1741)] = 37301, - [SMALL_STATE(1742)] = 37359, - [SMALL_STATE(1743)] = 37417, - [SMALL_STATE(1744)] = 37475, - [SMALL_STATE(1745)] = 37533, - [SMALL_STATE(1746)] = 37587, - [SMALL_STATE(1747)] = 37641, - [SMALL_STATE(1748)] = 37695, - [SMALL_STATE(1749)] = 37749, - [SMALL_STATE(1750)] = 37803, - [SMALL_STATE(1751)] = 37857, - [SMALL_STATE(1752)] = 37913, - [SMALL_STATE(1753)] = 37975, - [SMALL_STATE(1754)] = 38031, - [SMALL_STATE(1755)] = 38089, - [SMALL_STATE(1756)] = 38167, - [SMALL_STATE(1757)] = 38245, - [SMALL_STATE(1758)] = 38323, - [SMALL_STATE(1759)] = 38401, - [SMALL_STATE(1760)] = 38479, - [SMALL_STATE(1761)] = 38557, - [SMALL_STATE(1762)] = 38619, - [SMALL_STATE(1763)] = 38697, - [SMALL_STATE(1764)] = 38765, - [SMALL_STATE(1765)] = 38833, - [SMALL_STATE(1766)] = 38895, - [SMALL_STATE(1767)] = 38963, - [SMALL_STATE(1768)] = 39031, - [SMALL_STATE(1769)] = 39111, - [SMALL_STATE(1770)] = 39189, - [SMALL_STATE(1771)] = 39243, - [SMALL_STATE(1772)] = 39311, - [SMALL_STATE(1773)] = 39365, - [SMALL_STATE(1774)] = 39445, - [SMALL_STATE(1775)] = 39499, - [SMALL_STATE(1776)] = 39577, + [SMALL_STATE(1737)] = 37025, + [SMALL_STATE(1738)] = 37079, + [SMALL_STATE(1739)] = 37133, + [SMALL_STATE(1740)] = 37187, + [SMALL_STATE(1741)] = 37241, + [SMALL_STATE(1742)] = 37295, + [SMALL_STATE(1743)] = 37363, + [SMALL_STATE(1744)] = 37441, + [SMALL_STATE(1745)] = 37519, + [SMALL_STATE(1746)] = 37599, + [SMALL_STATE(1747)] = 37677, + [SMALL_STATE(1748)] = 37755, + [SMALL_STATE(1749)] = 37815, + [SMALL_STATE(1750)] = 37869, + [SMALL_STATE(1751)] = 37937, + [SMALL_STATE(1752)] = 38017, + [SMALL_STATE(1753)] = 38073, + [SMALL_STATE(1754)] = 38135, + [SMALL_STATE(1755)] = 38203, + [SMALL_STATE(1756)] = 38259, + [SMALL_STATE(1757)] = 38337, + [SMALL_STATE(1758)] = 38395, + [SMALL_STATE(1759)] = 38463, + [SMALL_STATE(1760)] = 38541, + [SMALL_STATE(1761)] = 38609, + [SMALL_STATE(1762)] = 38687, + [SMALL_STATE(1763)] = 38755, + [SMALL_STATE(1764)] = 38815, + [SMALL_STATE(1765)] = 38873, + [SMALL_STATE(1766)] = 38951, + [SMALL_STATE(1767)] = 39013, + [SMALL_STATE(1768)] = 39091, + [SMALL_STATE(1769)] = 39145, + [SMALL_STATE(1770)] = 39223, + [SMALL_STATE(1771)] = 39277, + [SMALL_STATE(1772)] = 39335, + [SMALL_STATE(1773)] = 39393, + [SMALL_STATE(1774)] = 39471, + [SMALL_STATE(1775)] = 39539, + [SMALL_STATE(1776)] = 39593, [SMALL_STATE(1777)] = 39655, - [SMALL_STATE(1778)] = 39732, - [SMALL_STATE(1779)] = 39787, - [SMALL_STATE(1780)] = 39852, - [SMALL_STATE(1781)] = 39929, - [SMALL_STATE(1782)] = 39982, - [SMALL_STATE(1783)] = 40035, - [SMALL_STATE(1784)] = 40112, - [SMALL_STATE(1785)] = 40165, - [SMALL_STATE(1786)] = 40230, - [SMALL_STATE(1787)] = 40287, - [SMALL_STATE(1788)] = 40340, - [SMALL_STATE(1789)] = 40417, - [SMALL_STATE(1790)] = 40494, - [SMALL_STATE(1791)] = 40549, - [SMALL_STATE(1792)] = 40602, - [SMALL_STATE(1793)] = 40653, - [SMALL_STATE(1794)] = 40704, - [SMALL_STATE(1795)] = 40769, - [SMALL_STATE(1796)] = 40832, - [SMALL_STATE(1797)] = 40897, - [SMALL_STATE(1798)] = 40952, - [SMALL_STATE(1799)] = 41017, - [SMALL_STATE(1800)] = 41070, - [SMALL_STATE(1801)] = 41129, - [SMALL_STATE(1802)] = 41194, - [SMALL_STATE(1803)] = 41259, - [SMALL_STATE(1804)] = 41314, - [SMALL_STATE(1805)] = 41379, - [SMALL_STATE(1806)] = 41430, - [SMALL_STATE(1807)] = 41481, - [SMALL_STATE(1808)] = 41546, - [SMALL_STATE(1809)] = 41597, - [SMALL_STATE(1810)] = 41650, - [SMALL_STATE(1811)] = 41703, - [SMALL_STATE(1812)] = 41758, - [SMALL_STATE(1813)] = 41809, - [SMALL_STATE(1814)] = 41862, - [SMALL_STATE(1815)] = 41917, - [SMALL_STATE(1816)] = 41994, - [SMALL_STATE(1817)] = 42051, - [SMALL_STATE(1818)] = 42128, - [SMALL_STATE(1819)] = 42205, - [SMALL_STATE(1820)] = 42282, - [SMALL_STATE(1821)] = 42339, - [SMALL_STATE(1822)] = 42416, - [SMALL_STATE(1823)] = 42493, - [SMALL_STATE(1824)] = 42570, + [SMALL_STATE(1778)] = 39712, + [SMALL_STATE(1779)] = 39789, + [SMALL_STATE(1780)] = 39854, + [SMALL_STATE(1781)] = 39919, + [SMALL_STATE(1782)] = 39970, + [SMALL_STATE(1783)] = 40021, + [SMALL_STATE(1784)] = 40074, + [SMALL_STATE(1785)] = 40127, + [SMALL_STATE(1786)] = 40180, + [SMALL_STATE(1787)] = 40235, + [SMALL_STATE(1788)] = 40288, + [SMALL_STATE(1789)] = 40341, + [SMALL_STATE(1790)] = 40394, + [SMALL_STATE(1791)] = 40445, + [SMALL_STATE(1792)] = 40510, + [SMALL_STATE(1793)] = 40561, + [SMALL_STATE(1794)] = 40626, + [SMALL_STATE(1795)] = 40681, + [SMALL_STATE(1796)] = 40744, + [SMALL_STATE(1797)] = 40799, + [SMALL_STATE(1798)] = 40876, + [SMALL_STATE(1799)] = 40931, + [SMALL_STATE(1800)] = 40990, + [SMALL_STATE(1801)] = 41055, + [SMALL_STATE(1802)] = 41120, + [SMALL_STATE(1803)] = 41197, + [SMALL_STATE(1804)] = 41248, + [SMALL_STATE(1805)] = 41325, + [SMALL_STATE(1806)] = 41376, + [SMALL_STATE(1807)] = 41429, + [SMALL_STATE(1808)] = 41482, + [SMALL_STATE(1809)] = 41535, + [SMALL_STATE(1810)] = 41592, + [SMALL_STATE(1811)] = 41647, + [SMALL_STATE(1812)] = 41702, + [SMALL_STATE(1813)] = 41759, + [SMALL_STATE(1814)] = 41824, + [SMALL_STATE(1815)] = 41901, + [SMALL_STATE(1816)] = 41966, + [SMALL_STATE(1817)] = 42031, + [SMALL_STATE(1818)] = 42096, + [SMALL_STATE(1819)] = 42173, + [SMALL_STATE(1820)] = 42250, + [SMALL_STATE(1821)] = 42327, + [SMALL_STATE(1822)] = 42404, + [SMALL_STATE(1823)] = 42481, + [SMALL_STATE(1824)] = 42558, [SMALL_STATE(1825)] = 42635, - [SMALL_STATE(1826)] = 42687, - [SMALL_STATE(1827)] = 42747, - [SMALL_STATE(1828)] = 42799, - [SMALL_STATE(1829)] = 42851, - [SMALL_STATE(1830)] = 42905, - [SMALL_STATE(1831)] = 42959, - [SMALL_STATE(1832)] = 43019, - [SMALL_STATE(1833)] = 43079, - [SMALL_STATE(1834)] = 43131, - [SMALL_STATE(1835)] = 43183, - [SMALL_STATE(1836)] = 43245, - [SMALL_STATE(1837)] = 43297, - [SMALL_STATE(1838)] = 43351, - [SMALL_STATE(1839)] = 43403, - [SMALL_STATE(1840)] = 43455, - [SMALL_STATE(1841)] = 43507, - [SMALL_STATE(1842)] = 43569, + [SMALL_STATE(1826)] = 42697, + [SMALL_STATE(1827)] = 42749, + [SMALL_STATE(1828)] = 42811, + [SMALL_STATE(1829)] = 42873, + [SMALL_STATE(1830)] = 42925, + [SMALL_STATE(1831)] = 42985, + [SMALL_STATE(1832)] = 43045, + [SMALL_STATE(1833)] = 43099, + [SMALL_STATE(1834)] = 43151, + [SMALL_STATE(1835)] = 43203, + [SMALL_STATE(1836)] = 43255, + [SMALL_STATE(1837)] = 43309, + [SMALL_STATE(1838)] = 43361, + [SMALL_STATE(1839)] = 43413, + [SMALL_STATE(1840)] = 43465, + [SMALL_STATE(1841)] = 43517, + [SMALL_STATE(1842)] = 43571, [SMALL_STATE(1843)] = 43631, [SMALL_STATE(1844)] = 43691, [SMALL_STATE(1845)] = 43745, [SMALL_STATE(1846)] = 43804, [SMALL_STATE(1847)] = 43855, - [SMALL_STATE(1848)] = 43910, - [SMALL_STATE(1849)] = 43961, - [SMALL_STATE(1850)] = 44016, - [SMALL_STATE(1851)] = 44115, - [SMALL_STATE(1852)] = 44166, + [SMALL_STATE(1848)] = 43906, + [SMALL_STATE(1849)] = 43957, + [SMALL_STATE(1850)] = 44056, + [SMALL_STATE(1851)] = 44107, + [SMALL_STATE(1852)] = 44162, [SMALL_STATE(1853)] = 44217, - [SMALL_STATE(1854)] = 44268, - [SMALL_STATE(1855)] = 44327, - [SMALL_STATE(1856)] = 44378, - [SMALL_STATE(1857)] = 44429, - [SMALL_STATE(1858)] = 44480, - [SMALL_STATE(1859)] = 44531, - [SMALL_STATE(1860)] = 44582, - [SMALL_STATE(1861)] = 44633, - [SMALL_STATE(1862)] = 44688, - [SMALL_STATE(1863)] = 44739, - [SMALL_STATE(1864)] = 44790, - [SMALL_STATE(1865)] = 44841, - [SMALL_STATE(1866)] = 44892, - [SMALL_STATE(1867)] = 44943, - [SMALL_STATE(1868)] = 44994, - [SMALL_STATE(1869)] = 45053, - [SMALL_STATE(1870)] = 45104, - [SMALL_STATE(1871)] = 45163, - [SMALL_STATE(1872)] = 45222, - [SMALL_STATE(1873)] = 45273, - [SMALL_STATE(1874)] = 45324, - [SMALL_STATE(1875)] = 45383, - [SMALL_STATE(1876)] = 45434, - [SMALL_STATE(1877)] = 45485, - [SMALL_STATE(1878)] = 45536, - [SMALL_STATE(1879)] = 45587, + [SMALL_STATE(1854)] = 44272, + [SMALL_STATE(1855)] = 44323, + [SMALL_STATE(1856)] = 44374, + [SMALL_STATE(1857)] = 44425, + [SMALL_STATE(1858)] = 44476, + [SMALL_STATE(1859)] = 44527, + [SMALL_STATE(1860)] = 44586, + [SMALL_STATE(1861)] = 44641, + [SMALL_STATE(1862)] = 44692, + [SMALL_STATE(1863)] = 44743, + [SMALL_STATE(1864)] = 44794, + [SMALL_STATE(1865)] = 44845, + [SMALL_STATE(1866)] = 44896, + [SMALL_STATE(1867)] = 44947, + [SMALL_STATE(1868)] = 44998, + [SMALL_STATE(1869)] = 45049, + [SMALL_STATE(1870)] = 45108, + [SMALL_STATE(1871)] = 45159, + [SMALL_STATE(1872)] = 45210, + [SMALL_STATE(1873)] = 45269, + [SMALL_STATE(1874)] = 45320, + [SMALL_STATE(1875)] = 45371, + [SMALL_STATE(1876)] = 45430, + [SMALL_STATE(1877)] = 45481, + [SMALL_STATE(1878)] = 45540, + [SMALL_STATE(1879)] = 45591, [SMALL_STATE(1880)] = 45642, - [SMALL_STATE(1881)] = 45700, + [SMALL_STATE(1881)] = 45692, [SMALL_STATE(1882)] = 45750, - [SMALL_STATE(1883)] = 45800, - [SMALL_STATE(1884)] = 45850, - [SMALL_STATE(1885)] = 45900, - [SMALL_STATE(1886)] = 45950, - [SMALL_STATE(1887)] = 46000, - [SMALL_STATE(1888)] = 46050, - [SMALL_STATE(1889)] = 46102, - [SMALL_STATE(1890)] = 46198, - [SMALL_STATE(1891)] = 46256, - [SMALL_STATE(1892)] = 46314, - [SMALL_STATE(1893)] = 46372, - [SMALL_STATE(1894)] = 46422, - [SMALL_STATE(1895)] = 46518, - [SMALL_STATE(1896)] = 46576, - [SMALL_STATE(1897)] = 46630, - [SMALL_STATE(1898)] = 46686, - [SMALL_STATE(1899)] = 46744, - [SMALL_STATE(1900)] = 46794, - [SMALL_STATE(1901)] = 46844, - [SMALL_STATE(1902)] = 46894, - [SMALL_STATE(1903)] = 46948, - [SMALL_STATE(1904)] = 46998, - [SMALL_STATE(1905)] = 47048, - [SMALL_STATE(1906)] = 47100, - [SMALL_STATE(1907)] = 47158, - [SMALL_STATE(1908)] = 47212, - [SMALL_STATE(1909)] = 47262, - [SMALL_STATE(1910)] = 47312, - [SMALL_STATE(1911)] = 47364, - [SMALL_STATE(1912)] = 47414, - [SMALL_STATE(1913)] = 47466, - [SMALL_STATE(1914)] = 47516, + [SMALL_STATE(1883)] = 45846, + [SMALL_STATE(1884)] = 45896, + [SMALL_STATE(1885)] = 45946, + [SMALL_STATE(1886)] = 45996, + [SMALL_STATE(1887)] = 46054, + [SMALL_STATE(1888)] = 46104, + [SMALL_STATE(1889)] = 46154, + [SMALL_STATE(1890)] = 46204, + [SMALL_STATE(1891)] = 46254, + [SMALL_STATE(1892)] = 46304, + [SMALL_STATE(1893)] = 46354, + [SMALL_STATE(1894)] = 46404, + [SMALL_STATE(1895)] = 46500, + [SMALL_STATE(1896)] = 46556, + [SMALL_STATE(1897)] = 46608, + [SMALL_STATE(1898)] = 46662, + [SMALL_STATE(1899)] = 46712, + [SMALL_STATE(1900)] = 46766, + [SMALL_STATE(1901)] = 46816, + [SMALL_STATE(1902)] = 46874, + [SMALL_STATE(1903)] = 46932, + [SMALL_STATE(1904)] = 46990, + [SMALL_STATE(1905)] = 47044, + [SMALL_STATE(1906)] = 47094, + [SMALL_STATE(1907)] = 47146, + [SMALL_STATE(1908)] = 47198, + [SMALL_STATE(1909)] = 47248, + [SMALL_STATE(1910)] = 47300, + [SMALL_STATE(1911)] = 47358, + [SMALL_STATE(1912)] = 47412, + [SMALL_STATE(1913)] = 47462, + [SMALL_STATE(1914)] = 47512, [SMALL_STATE(1915)] = 47570, [SMALL_STATE(1916)] = 47620, [SMALL_STATE(1917)] = 47673, [SMALL_STATE(1918)] = 47728, - [SMALL_STATE(1919)] = 47781, - [SMALL_STATE(1920)] = 47830, - [SMALL_STATE(1921)] = 47883, - [SMALL_STATE(1922)] = 47932, - [SMALL_STATE(1923)] = 47981, - [SMALL_STATE(1924)] = 48030, - [SMALL_STATE(1925)] = 48079, + [SMALL_STATE(1919)] = 47777, + [SMALL_STATE(1920)] = 47826, + [SMALL_STATE(1921)] = 47875, + [SMALL_STATE(1922)] = 47924, + [SMALL_STATE(1923)] = 47973, + [SMALL_STATE(1924)] = 48022, + [SMALL_STATE(1925)] = 48075, [SMALL_STATE(1926)] = 48128, - [SMALL_STATE(1927)] = 48223, - [SMALL_STATE(1928)] = 48272, - [SMALL_STATE(1929)] = 48325, - [SMALL_STATE(1930)] = 48378, - [SMALL_STATE(1931)] = 48473, - [SMALL_STATE(1932)] = 48526, - [SMALL_STATE(1933)] = 48577, - [SMALL_STATE(1934)] = 48630, - [SMALL_STATE(1935)] = 48679, - [SMALL_STATE(1936)] = 48728, - [SMALL_STATE(1937)] = 48777, - [SMALL_STATE(1938)] = 48830, - [SMALL_STATE(1939)] = 48883, - [SMALL_STATE(1940)] = 48936, - [SMALL_STATE(1941)] = 48985, - [SMALL_STATE(1942)] = 49036, - [SMALL_STATE(1943)] = 49089, - [SMALL_STATE(1944)] = 49138, - [SMALL_STATE(1945)] = 49191, - [SMALL_STATE(1946)] = 49244, - [SMALL_STATE(1947)] = 49297, - [SMALL_STATE(1948)] = 49350, - [SMALL_STATE(1949)] = 49405, - [SMALL_STATE(1950)] = 49456, - [SMALL_STATE(1951)] = 49509, - [SMALL_STATE(1952)] = 49560, - [SMALL_STATE(1953)] = 49617, - [SMALL_STATE(1954)] = 49670, - [SMALL_STATE(1955)] = 49719, - [SMALL_STATE(1956)] = 49774, - [SMALL_STATE(1957)] = 49827, - [SMALL_STATE(1958)] = 49880, - [SMALL_STATE(1959)] = 49933, - [SMALL_STATE(1960)] = 49986, - [SMALL_STATE(1961)] = 50035, - [SMALL_STATE(1962)] = 50088, - [SMALL_STATE(1963)] = 50141, - [SMALL_STATE(1964)] = 50194, - [SMALL_STATE(1965)] = 50247, + [SMALL_STATE(1927)] = 48177, + [SMALL_STATE(1928)] = 48230, + [SMALL_STATE(1929)] = 48281, + [SMALL_STATE(1930)] = 48334, + [SMALL_STATE(1931)] = 48387, + [SMALL_STATE(1932)] = 48438, + [SMALL_STATE(1933)] = 48491, + [SMALL_STATE(1934)] = 48542, + [SMALL_STATE(1935)] = 48595, + [SMALL_STATE(1936)] = 48648, + [SMALL_STATE(1937)] = 48701, + [SMALL_STATE(1938)] = 48754, + [SMALL_STATE(1939)] = 48849, + [SMALL_STATE(1940)] = 48898, + [SMALL_STATE(1941)] = 48951, + [SMALL_STATE(1942)] = 49002, + [SMALL_STATE(1943)] = 49055, + [SMALL_STATE(1944)] = 49104, + [SMALL_STATE(1945)] = 49153, + [SMALL_STATE(1946)] = 49202, + [SMALL_STATE(1947)] = 49257, + [SMALL_STATE(1948)] = 49310, + [SMALL_STATE(1949)] = 49363, + [SMALL_STATE(1950)] = 49416, + [SMALL_STATE(1951)] = 49469, + [SMALL_STATE(1952)] = 49518, + [SMALL_STATE(1953)] = 49567, + [SMALL_STATE(1954)] = 49616, + [SMALL_STATE(1955)] = 49669, + [SMALL_STATE(1956)] = 49726, + [SMALL_STATE(1957)] = 49781, + [SMALL_STATE(1958)] = 49834, + [SMALL_STATE(1959)] = 49887, + [SMALL_STATE(1960)] = 49940, + [SMALL_STATE(1961)] = 49993, + [SMALL_STATE(1962)] = 50046, + [SMALL_STATE(1963)] = 50099, + [SMALL_STATE(1964)] = 50152, + [SMALL_STATE(1965)] = 50205, [SMALL_STATE(1966)] = 50300, - [SMALL_STATE(1967)] = 50380, - [SMALL_STATE(1968)] = 50446, - [SMALL_STATE(1969)] = 50510, - [SMALL_STATE(1970)] = 50574, - [SMALL_STATE(1971)] = 50636, - [SMALL_STATE(1972)] = 50694, - [SMALL_STATE(1973)] = 50750, - [SMALL_STATE(1974)] = 50804, - [SMALL_STATE(1975)] = 50856, - [SMALL_STATE(1976)] = 50932, - [SMALL_STATE(1977)] = 51006, - [SMALL_STATE(1978)] = 51084, - [SMALL_STATE(1979)] = 51160, - [SMALL_STATE(1980)] = 51240, - [SMALL_STATE(1981)] = 51318, - [SMALL_STATE(1982)] = 51386, - [SMALL_STATE(1983)] = 51452, - [SMALL_STATE(1984)] = 51514, - [SMALL_STATE(1985)] = 51574, - [SMALL_STATE(1986)] = 51644, - [SMALL_STATE(1987)] = 51712, - [SMALL_STATE(1988)] = 51784, - [SMALL_STATE(1989)] = 51854, - [SMALL_STATE(1990)] = 51928, - [SMALL_STATE(1991)] = 52000, - [SMALL_STATE(1992)] = 52066, - [SMALL_STATE(1993)] = 52130, - [SMALL_STATE(1994)] = 52188, - [SMALL_STATE(1995)] = 52242, - [SMALL_STATE(1996)] = 52318, - [SMALL_STATE(1997)] = 52370, - [SMALL_STATE(1998)] = 52448, - [SMALL_STATE(1999)] = 52500, - [SMALL_STATE(2000)] = 52580, - [SMALL_STATE(2001)] = 52634, - [SMALL_STATE(2002)] = 52702, - [SMALL_STATE(2003)] = 52754, - [SMALL_STATE(2004)] = 52802, - [SMALL_STATE(2005)] = 52864, - [SMALL_STATE(2006)] = 52934, - [SMALL_STATE(2007)] = 52988, - [SMALL_STATE(2008)] = 53060, - [SMALL_STATE(2009)] = 53114, - [SMALL_STATE(2010)] = 53188, - [SMALL_STATE(2011)] = 53240, - [SMALL_STATE(2012)] = 53292, - [SMALL_STATE(2013)] = 53356, - [SMALL_STATE(2014)] = 53418, - [SMALL_STATE(2015)] = 53474, - [SMALL_STATE(2016)] = 53526, - [SMALL_STATE(2017)] = 53600, - [SMALL_STATE(2018)] = 53676, - [SMALL_STATE(2019)] = 53754, - [SMALL_STATE(2020)] = 53820, - [SMALL_STATE(2021)] = 53880, - [SMALL_STATE(2022)] = 53948, - [SMALL_STATE(2023)] = 54018, - [SMALL_STATE(2024)] = 54090, - [SMALL_STATE(2025)] = 54156, - [SMALL_STATE(2026)] = 54220, - [SMALL_STATE(2027)] = 54284, - [SMALL_STATE(2028)] = 54346, - [SMALL_STATE(2029)] = 54404, - [SMALL_STATE(2030)] = 54460, - [SMALL_STATE(2031)] = 54514, - [SMALL_STATE(2032)] = 54566, - [SMALL_STATE(2033)] = 54642, - [SMALL_STATE(2034)] = 54716, - [SMALL_STATE(2035)] = 54794, - [SMALL_STATE(2036)] = 54870, - [SMALL_STATE(2037)] = 54920, - [SMALL_STATE(2038)] = 54998, - [SMALL_STATE(2039)] = 55066, - [SMALL_STATE(2040)] = 55132, - [SMALL_STATE(2041)] = 55194, - [SMALL_STATE(2042)] = 55254, - [SMALL_STATE(2043)] = 55324, - [SMALL_STATE(2044)] = 55392, - [SMALL_STATE(2045)] = 55464, - [SMALL_STATE(2046)] = 55534, - [SMALL_STATE(2047)] = 55608, - [SMALL_STATE(2048)] = 55680, - [SMALL_STATE(2049)] = 55744, - [SMALL_STATE(2050)] = 55806, - [SMALL_STATE(2051)] = 55862, - [SMALL_STATE(2052)] = 55914, - [SMALL_STATE(2053)] = 55988, - [SMALL_STATE(2054)] = 56064, - [SMALL_STATE(2055)] = 56142, - [SMALL_STATE(2056)] = 56208, - [SMALL_STATE(2057)] = 56268, - [SMALL_STATE(2058)] = 56336, - [SMALL_STATE(2059)] = 56408, - [SMALL_STATE(2060)] = 56460, - [SMALL_STATE(2061)] = 56510, - [SMALL_STATE(2062)] = 56558, - [SMALL_STATE(2063)] = 56612, - [SMALL_STATE(2064)] = 56664, - [SMALL_STATE(2065)] = 56714, - [SMALL_STATE(2066)] = 56768, - [SMALL_STATE(2067)] = 56824, - [SMALL_STATE(2068)] = 56872, - [SMALL_STATE(2069)] = 56920, - [SMALL_STATE(2070)] = 56968, - [SMALL_STATE(2071)] = 57022, - [SMALL_STATE(2072)] = 57070, - [SMALL_STATE(2073)] = 57126, - [SMALL_STATE(2074)] = 57178, - [SMALL_STATE(2075)] = 57230, - [SMALL_STATE(2076)] = 57282, - [SMALL_STATE(2077)] = 57348, - [SMALL_STATE(2078)] = 57412, - [SMALL_STATE(2079)] = 57466, - [SMALL_STATE(2080)] = 57524, - [SMALL_STATE(2081)] = 57578, - [SMALL_STATE(2082)] = 57626, - [SMALL_STATE(2083)] = 57680, - [SMALL_STATE(2084)] = 57756, - [SMALL_STATE(2085)] = 57804, - [SMALL_STATE(2086)] = 57852, - [SMALL_STATE(2087)] = 57898, - [SMALL_STATE(2088)] = 57952, - [SMALL_STATE(2089)] = 58030, - [SMALL_STATE(2090)] = 58110, - [SMALL_STATE(2091)] = 58158, - [SMALL_STATE(2092)] = 58212, - [SMALL_STATE(2093)] = 58266, - [SMALL_STATE(2094)] = 58316, - [SMALL_STATE(2095)] = 58370, - [SMALL_STATE(2096)] = 58424, - [SMALL_STATE(2097)] = 58474, - [SMALL_STATE(2098)] = 58528, - [SMALL_STATE(2099)] = 58596, - [SMALL_STATE(2100)] = 58650, - [SMALL_STATE(2101)] = 58712, - [SMALL_STATE(2102)] = 58782, - [SMALL_STATE(2103)] = 58854, - [SMALL_STATE(2104)] = 58928, - [SMALL_STATE(2105)] = 58978, - [SMALL_STATE(2106)] = 59028, - [SMALL_STATE(2107)] = 59082, - [SMALL_STATE(2108)] = 59134, - [SMALL_STATE(2109)] = 59186, - [SMALL_STATE(2110)] = 59234, + [SMALL_STATE(1967)] = 50356, + [SMALL_STATE(1968)] = 50410, + [SMALL_STATE(1969)] = 50464, + [SMALL_STATE(1970)] = 50516, + [SMALL_STATE(1971)] = 50564, + [SMALL_STATE(1972)] = 50618, + [SMALL_STATE(1973)] = 50666, + [SMALL_STATE(1974)] = 50714, + [SMALL_STATE(1975)] = 50768, + [SMALL_STATE(1976)] = 50814, + [SMALL_STATE(1977)] = 50862, + [SMALL_STATE(1978)] = 50910, + [SMALL_STATE(1979)] = 50962, + [SMALL_STATE(1980)] = 51016, + [SMALL_STATE(1981)] = 51072, + [SMALL_STATE(1982)] = 51124, + [SMALL_STATE(1983)] = 51190, + [SMALL_STATE(1984)] = 51254, + [SMALL_STATE(1985)] = 51312, + [SMALL_STATE(1986)] = 51366, + [SMALL_STATE(1987)] = 51442, + [SMALL_STATE(1988)] = 51520, + [SMALL_STATE(1989)] = 51600, + [SMALL_STATE(1990)] = 51668, + [SMALL_STATE(1991)] = 51730, + [SMALL_STATE(1992)] = 51800, + [SMALL_STATE(1993)] = 51872, + [SMALL_STATE(1994)] = 51924, + [SMALL_STATE(1995)] = 51998, + [SMALL_STATE(1996)] = 52046, + [SMALL_STATE(1997)] = 52100, + [SMALL_STATE(1998)] = 52166, + [SMALL_STATE(1999)] = 52230, + [SMALL_STATE(2000)] = 52294, + [SMALL_STATE(2001)] = 52356, + [SMALL_STATE(2002)] = 52414, + [SMALL_STATE(2003)] = 52470, + [SMALL_STATE(2004)] = 52524, + [SMALL_STATE(2005)] = 52576, + [SMALL_STATE(2006)] = 52652, + [SMALL_STATE(2007)] = 52726, + [SMALL_STATE(2008)] = 52804, + [SMALL_STATE(2009)] = 52880, + [SMALL_STATE(2010)] = 52960, + [SMALL_STATE(2011)] = 53038, + [SMALL_STATE(2012)] = 53106, + [SMALL_STATE(2013)] = 53172, + [SMALL_STATE(2014)] = 53234, + [SMALL_STATE(2015)] = 53294, + [SMALL_STATE(2016)] = 53364, + [SMALL_STATE(2017)] = 53432, + [SMALL_STATE(2018)] = 53504, + [SMALL_STATE(2019)] = 53574, + [SMALL_STATE(2020)] = 53648, + [SMALL_STATE(2021)] = 53720, + [SMALL_STATE(2022)] = 53786, + [SMALL_STATE(2023)] = 53850, + [SMALL_STATE(2024)] = 53908, + [SMALL_STATE(2025)] = 53962, + [SMALL_STATE(2026)] = 54038, + [SMALL_STATE(2027)] = 54116, + [SMALL_STATE(2028)] = 54196, + [SMALL_STATE(2029)] = 54264, + [SMALL_STATE(2030)] = 54326, + [SMALL_STATE(2031)] = 54396, + [SMALL_STATE(2032)] = 54468, + [SMALL_STATE(2033)] = 54542, + [SMALL_STATE(2034)] = 54596, + [SMALL_STATE(2035)] = 54660, + [SMALL_STATE(2036)] = 54722, + [SMALL_STATE(2037)] = 54774, + [SMALL_STATE(2038)] = 54848, + [SMALL_STATE(2039)] = 54924, + [SMALL_STATE(2040)] = 55002, + [SMALL_STATE(2041)] = 55068, + [SMALL_STATE(2042)] = 55128, + [SMALL_STATE(2043)] = 55196, + [SMALL_STATE(2044)] = 55266, + [SMALL_STATE(2045)] = 55338, + [SMALL_STATE(2046)] = 55404, + [SMALL_STATE(2047)] = 55468, + [SMALL_STATE(2048)] = 55532, + [SMALL_STATE(2049)] = 55594, + [SMALL_STATE(2050)] = 55652, + [SMALL_STATE(2051)] = 55708, + [SMALL_STATE(2052)] = 55762, + [SMALL_STATE(2053)] = 55814, + [SMALL_STATE(2054)] = 55890, + [SMALL_STATE(2055)] = 55964, + [SMALL_STATE(2056)] = 56042, + [SMALL_STATE(2057)] = 56118, + [SMALL_STATE(2058)] = 56198, + [SMALL_STATE(2059)] = 56276, + [SMALL_STATE(2060)] = 56344, + [SMALL_STATE(2061)] = 56410, + [SMALL_STATE(2062)] = 56472, + [SMALL_STATE(2063)] = 56532, + [SMALL_STATE(2064)] = 56602, + [SMALL_STATE(2065)] = 56670, + [SMALL_STATE(2066)] = 56742, + [SMALL_STATE(2067)] = 56812, + [SMALL_STATE(2068)] = 56886, + [SMALL_STATE(2069)] = 56958, + [SMALL_STATE(2070)] = 57022, + [SMALL_STATE(2071)] = 57084, + [SMALL_STATE(2072)] = 57140, + [SMALL_STATE(2073)] = 57192, + [SMALL_STATE(2074)] = 57266, + [SMALL_STATE(2075)] = 57342, + [SMALL_STATE(2076)] = 57420, + [SMALL_STATE(2077)] = 57486, + [SMALL_STATE(2078)] = 57546, + [SMALL_STATE(2079)] = 57614, + [SMALL_STATE(2080)] = 57684, + [SMALL_STATE(2081)] = 57756, + [SMALL_STATE(2082)] = 57808, + [SMALL_STATE(2083)] = 57860, + [SMALL_STATE(2084)] = 57914, + [SMALL_STATE(2085)] = 57968, + [SMALL_STATE(2086)] = 58018, + [SMALL_STATE(2087)] = 58068, + [SMALL_STATE(2088)] = 58120, + [SMALL_STATE(2089)] = 58172, + [SMALL_STATE(2090)] = 58220, + [SMALL_STATE(2091)] = 58268, + [SMALL_STATE(2092)] = 58318, + [SMALL_STATE(2093)] = 58372, + [SMALL_STATE(2094)] = 58420, + [SMALL_STATE(2095)] = 58470, + [SMALL_STATE(2096)] = 58518, + [SMALL_STATE(2097)] = 58568, + [SMALL_STATE(2098)] = 58620, + [SMALL_STATE(2099)] = 58670, + [SMALL_STATE(2100)] = 58722, + [SMALL_STATE(2101)] = 58774, + [SMALL_STATE(2102)] = 58828, + [SMALL_STATE(2103)] = 58878, + [SMALL_STATE(2104)] = 58926, + [SMALL_STATE(2105)] = 58980, + [SMALL_STATE(2106)] = 59034, + [SMALL_STATE(2107)] = 59088, + [SMALL_STATE(2108)] = 59142, + [SMALL_STATE(2109)] = 59196, + [SMALL_STATE(2110)] = 59252, [SMALL_STATE(2111)] = 59304, [SMALL_STATE(2112)] = 59351, [SMALL_STATE(2113)] = 59400, - [SMALL_STATE(2114)] = 59449, + [SMALL_STATE(2114)] = 59447, [SMALL_STATE(2115)] = 59496, - [SMALL_STATE(2116)] = 59575, - [SMALL_STATE(2117)] = 59654, - [SMALL_STATE(2118)] = 59703, - [SMALL_STATE(2119)] = 59752, - [SMALL_STATE(2120)] = 59831, - [SMALL_STATE(2121)] = 59880, - [SMALL_STATE(2122)] = 59929, - [SMALL_STATE(2123)] = 59976, - [SMALL_STATE(2124)] = 60023, - [SMALL_STATE(2125)] = 60102, - [SMALL_STATE(2126)] = 60181, - [SMALL_STATE(2127)] = 60230, - [SMALL_STATE(2128)] = 60309, - [SMALL_STATE(2129)] = 60358, - [SMALL_STATE(2130)] = 60409, - [SMALL_STATE(2131)] = 60456, + [SMALL_STATE(2116)] = 59543, + [SMALL_STATE(2117)] = 59590, + [SMALL_STATE(2118)] = 59639, + [SMALL_STATE(2119)] = 59690, + [SMALL_STATE(2120)] = 59739, + [SMALL_STATE(2121)] = 59818, + [SMALL_STATE(2122)] = 59897, + [SMALL_STATE(2123)] = 59944, + [SMALL_STATE(2124)] = 59993, + [SMALL_STATE(2125)] = 60044, + [SMALL_STATE(2126)] = 60091, + [SMALL_STATE(2127)] = 60170, + [SMALL_STATE(2128)] = 60249, + [SMALL_STATE(2129)] = 60298, + [SMALL_STATE(2130)] = 60343, + [SMALL_STATE(2131)] = 60422, [SMALL_STATE(2132)] = 60501, - [SMALL_STATE(2133)] = 60548, + [SMALL_STATE(2133)] = 60550, [SMALL_STATE(2134)] = 60599, [SMALL_STATE(2135)] = 60648, [SMALL_STATE(2136)] = 60694, [SMALL_STATE(2137)] = 60740, - [SMALL_STATE(2138)] = 60786, - [SMALL_STATE(2139)] = 60832, - [SMALL_STATE(2140)] = 60892, - [SMALL_STATE(2141)] = 60938, - [SMALL_STATE(2142)] = 60990, - [SMALL_STATE(2143)] = 61036, - [SMALL_STATE(2144)] = 61084, - [SMALL_STATE(2145)] = 61154, - [SMALL_STATE(2146)] = 61226, - [SMALL_STATE(2147)] = 61300, - [SMALL_STATE(2148)] = 61362, - [SMALL_STATE(2149)] = 61454, - [SMALL_STATE(2150)] = 61510, - [SMALL_STATE(2151)] = 61574, - [SMALL_STATE(2152)] = 61620, - [SMALL_STATE(2153)] = 61686, + [SMALL_STATE(2138)] = 60788, + [SMALL_STATE(2139)] = 60834, + [SMALL_STATE(2140)] = 60890, + [SMALL_STATE(2141)] = 60936, + [SMALL_STATE(2142)] = 60982, + [SMALL_STATE(2143)] = 61046, + [SMALL_STATE(2144)] = 61112, + [SMALL_STATE(2145)] = 61180, + [SMALL_STATE(2146)] = 61240, + [SMALL_STATE(2147)] = 61298, + [SMALL_STATE(2148)] = 61350, + [SMALL_STATE(2149)] = 61398, + [SMALL_STATE(2150)] = 61468, + [SMALL_STATE(2151)] = 61540, + [SMALL_STATE(2152)] = 61614, + [SMALL_STATE(2153)] = 61676, [SMALL_STATE(2154)] = 61732, - [SMALL_STATE(2155)] = 61778, - [SMALL_STATE(2156)] = 61824, - [SMALL_STATE(2157)] = 61872, - [SMALL_STATE(2158)] = 61918, - [SMALL_STATE(2159)] = 61964, - [SMALL_STATE(2160)] = 62032, - [SMALL_STATE(2161)] = 62078, - [SMALL_STATE(2162)] = 62124, - [SMALL_STATE(2163)] = 62170, - [SMALL_STATE(2164)] = 62216, - [SMALL_STATE(2165)] = 62262, - [SMALL_STATE(2166)] = 62308, - [SMALL_STATE(2167)] = 62354, - [SMALL_STATE(2168)] = 62400, - [SMALL_STATE(2169)] = 62446, - [SMALL_STATE(2170)] = 62492, - [SMALL_STATE(2171)] = 62552, - [SMALL_STATE(2172)] = 62610, - [SMALL_STATE(2173)] = 62662, - [SMALL_STATE(2174)] = 62710, - [SMALL_STATE(2175)] = 62780, - [SMALL_STATE(2176)] = 62852, - [SMALL_STATE(2177)] = 62926, - [SMALL_STATE(2178)] = 62988, - [SMALL_STATE(2179)] = 63044, - [SMALL_STATE(2180)] = 63108, - [SMALL_STATE(2181)] = 63174, - [SMALL_STATE(2182)] = 63242, - [SMALL_STATE(2183)] = 63290, - [SMALL_STATE(2184)] = 63336, - [SMALL_STATE(2185)] = 63382, - [SMALL_STATE(2186)] = 63474, - [SMALL_STATE(2187)] = 63520, - [SMALL_STATE(2188)] = 63566, - [SMALL_STATE(2189)] = 63612, - [SMALL_STATE(2190)] = 63658, - [SMALL_STATE(2191)] = 63704, - [SMALL_STATE(2192)] = 63750, - [SMALL_STATE(2193)] = 63796, - [SMALL_STATE(2194)] = 63888, - [SMALL_STATE(2195)] = 63934, - [SMALL_STATE(2196)] = 63980, - [SMALL_STATE(2197)] = 64026, - [SMALL_STATE(2198)] = 64072, - [SMALL_STATE(2199)] = 64118, - [SMALL_STATE(2200)] = 64164, - [SMALL_STATE(2201)] = 64210, - [SMALL_STATE(2202)] = 64256, - [SMALL_STATE(2203)] = 64304, - [SMALL_STATE(2204)] = 64350, - [SMALL_STATE(2205)] = 64442, - [SMALL_STATE(2206)] = 64488, - [SMALL_STATE(2207)] = 64536, - [SMALL_STATE(2208)] = 64584, - [SMALL_STATE(2209)] = 64632, - [SMALL_STATE(2210)] = 64680, - [SMALL_STATE(2211)] = 64728, - [SMALL_STATE(2212)] = 64776, - [SMALL_STATE(2213)] = 64822, - [SMALL_STATE(2214)] = 64868, - [SMALL_STATE(2215)] = 64926, - [SMALL_STATE(2216)] = 65013, - [SMALL_STATE(2217)] = 65086, - [SMALL_STATE(2218)] = 65175, - [SMALL_STATE(2219)] = 65248, - [SMALL_STATE(2220)] = 65293, - [SMALL_STATE(2221)] = 65366, - [SMALL_STATE(2222)] = 65439, - [SMALL_STATE(2223)] = 65512, - [SMALL_STATE(2224)] = 65563, - [SMALL_STATE(2225)] = 65636, - [SMALL_STATE(2226)] = 65682, - [SMALL_STATE(2227)] = 65732, - [SMALL_STATE(2228)] = 65782, - [SMALL_STATE(2229)] = 65832, - [SMALL_STATE(2230)] = 65882, - [SMALL_STATE(2231)] = 65928, - [SMALL_STATE(2232)] = 65971, - [SMALL_STATE(2233)] = 66014, - [SMALL_STATE(2234)] = 66059, - [SMALL_STATE(2235)] = 66102, - [SMALL_STATE(2236)] = 66147, - [SMALL_STATE(2237)] = 66196, - [SMALL_STATE(2238)] = 66245, - [SMALL_STATE(2239)] = 66288, - [SMALL_STATE(2240)] = 66331, - [SMALL_STATE(2241)] = 66380, - [SMALL_STATE(2242)] = 66429, - [SMALL_STATE(2243)] = 66472, - [SMALL_STATE(2244)] = 66515, - [SMALL_STATE(2245)] = 66562, - [SMALL_STATE(2246)] = 66605, - [SMALL_STATE(2247)] = 66654, - [SMALL_STATE(2248)] = 66705, - [SMALL_STATE(2249)] = 66754, - [SMALL_STATE(2250)] = 66796, - [SMALL_STATE(2251)] = 66840, - [SMALL_STATE(2252)] = 66886, - [SMALL_STATE(2253)] = 66928, - [SMALL_STATE(2254)] = 66973, - [SMALL_STATE(2255)] = 67014, - [SMALL_STATE(2256)] = 67059, - [SMALL_STATE(2257)] = 67103, - [SMALL_STATE(2258)] = 67185, - [SMALL_STATE(2259)] = 67229, - [SMALL_STATE(2260)] = 67311, - [SMALL_STATE(2261)] = 67355, - [SMALL_STATE(2262)] = 67399, - [SMALL_STATE(2263)] = 67439, - [SMALL_STATE(2264)] = 67484, - [SMALL_STATE(2265)] = 67560, - [SMALL_STATE(2266)] = 67636, - [SMALL_STATE(2267)] = 67712, - [SMALL_STATE(2268)] = 67758, - [SMALL_STATE(2269)] = 67834, - [SMALL_STATE(2270)] = 67910, - [SMALL_STATE(2271)] = 67986, - [SMALL_STATE(2272)] = 68062, - [SMALL_STATE(2273)] = 68138, - [SMALL_STATE(2274)] = 68214, - [SMALL_STATE(2275)] = 68290, - [SMALL_STATE(2276)] = 68366, - [SMALL_STATE(2277)] = 68442, - [SMALL_STATE(2278)] = 68518, - [SMALL_STATE(2279)] = 68594, - [SMALL_STATE(2280)] = 68670, - [SMALL_STATE(2281)] = 68746, - [SMALL_STATE(2282)] = 68822, - [SMALL_STATE(2283)] = 68874, - [SMALL_STATE(2284)] = 68918, - [SMALL_STATE(2285)] = 68960, - [SMALL_STATE(2286)] = 69006, - [SMALL_STATE(2287)] = 69052, - [SMALL_STATE(2288)] = 69128, - [SMALL_STATE(2289)] = 69204, - [SMALL_STATE(2290)] = 69280, - [SMALL_STATE(2291)] = 69356, - [SMALL_STATE(2292)] = 69432, - [SMALL_STATE(2293)] = 69508, - [SMALL_STATE(2294)] = 69584, - [SMALL_STATE(2295)] = 69660, - [SMALL_STATE(2296)] = 69736, - [SMALL_STATE(2297)] = 69781, - [SMALL_STATE(2298)] = 69826, - [SMALL_STATE(2299)] = 69875, - [SMALL_STATE(2300)] = 69924, - [SMALL_STATE(2301)] = 69969, - [SMALL_STATE(2302)] = 70014, - [SMALL_STATE(2303)] = 70059, - [SMALL_STATE(2304)] = 70098, - [SMALL_STATE(2305)] = 70147, - [SMALL_STATE(2306)] = 70198, - [SMALL_STATE(2307)] = 70241, - [SMALL_STATE(2308)] = 70281, - [SMALL_STATE(2309)] = 70351, - [SMALL_STATE(2310)] = 70405, - [SMALL_STATE(2311)] = 70441, - [SMALL_STATE(2312)] = 70477, - [SMALL_STATE(2313)] = 70513, - [SMALL_STATE(2314)] = 70561, - [SMALL_STATE(2315)] = 70597, - [SMALL_STATE(2316)] = 70633, - [SMALL_STATE(2317)] = 70669, - [SMALL_STATE(2318)] = 70717, - [SMALL_STATE(2319)] = 70763, - [SMALL_STATE(2320)] = 70809, - [SMALL_STATE(2321)] = 70855, - [SMALL_STATE(2322)] = 70901, - [SMALL_STATE(2323)] = 70971, - [SMALL_STATE(2324)] = 71041, - [SMALL_STATE(2325)] = 71111, - [SMALL_STATE(2326)] = 71181, - [SMALL_STATE(2327)] = 71251, - [SMALL_STATE(2328)] = 71291, - [SMALL_STATE(2329)] = 71331, - [SMALL_STATE(2330)] = 71373, - [SMALL_STATE(2331)] = 71421, - [SMALL_STATE(2332)] = 71491, - [SMALL_STATE(2333)] = 71561, - [SMALL_STATE(2334)] = 71631, - [SMALL_STATE(2335)] = 71701, - [SMALL_STATE(2336)] = 71771, - [SMALL_STATE(2337)] = 71841, - [SMALL_STATE(2338)] = 71880, - [SMALL_STATE(2339)] = 71931, - [SMALL_STATE(2340)] = 71970, - [SMALL_STATE(2341)] = 72009, - [SMALL_STATE(2342)] = 72048, - [SMALL_STATE(2343)] = 72085, - [SMALL_STATE(2344)] = 72138, - [SMALL_STATE(2345)] = 72185, - [SMALL_STATE(2346)] = 72222, - [SMALL_STATE(2347)] = 72259, - [SMALL_STATE(2348)] = 72310, - [SMALL_STATE(2349)] = 72349, - [SMALL_STATE(2350)] = 72394, - [SMALL_STATE(2351)] = 72439, - [SMALL_STATE(2352)] = 72484, - [SMALL_STATE(2353)] = 72529, - [SMALL_STATE(2354)] = 72580, - [SMALL_STATE(2355)] = 72617, - [SMALL_STATE(2356)] = 72654, - [SMALL_STATE(2357)] = 72691, - [SMALL_STATE(2358)] = 72725, - [SMALL_STATE(2359)] = 72775, - [SMALL_STATE(2360)] = 72809, - [SMALL_STATE(2361)] = 72843, - [SMALL_STATE(2362)] = 72879, - [SMALL_STATE(2363)] = 72917, - [SMALL_STATE(2364)] = 72951, - [SMALL_STATE(2365)] = 72989, - [SMALL_STATE(2366)] = 73023, - [SMALL_STATE(2367)] = 73069, - [SMALL_STATE(2368)] = 73103, - [SMALL_STATE(2369)] = 73137, - [SMALL_STATE(2370)] = 73187, - [SMALL_STATE(2371)] = 73221, - [SMALL_STATE(2372)] = 73255, - [SMALL_STATE(2373)] = 73289, - [SMALL_STATE(2374)] = 73323, - [SMALL_STATE(2375)] = 73357, - [SMALL_STATE(2376)] = 73391, - [SMALL_STATE(2377)] = 73425, - [SMALL_STATE(2378)] = 73463, - [SMALL_STATE(2379)] = 73501, - [SMALL_STATE(2380)] = 73535, - [SMALL_STATE(2381)] = 73569, - [SMALL_STATE(2382)] = 73603, - [SMALL_STATE(2383)] = 73637, - [SMALL_STATE(2384)] = 73671, - [SMALL_STATE(2385)] = 73705, - [SMALL_STATE(2386)] = 73753, - [SMALL_STATE(2387)] = 73793, - [SMALL_STATE(2388)] = 73841, - [SMALL_STATE(2389)] = 73889, - [SMALL_STATE(2390)] = 73929, - [SMALL_STATE(2391)] = 73977, - [SMALL_STATE(2392)] = 74011, - [SMALL_STATE(2393)] = 74045, - [SMALL_STATE(2394)] = 74081, - [SMALL_STATE(2395)] = 74131, - [SMALL_STATE(2396)] = 74165, - [SMALL_STATE(2397)] = 74198, - [SMALL_STATE(2398)] = 74231, - [SMALL_STATE(2399)] = 74266, - [SMALL_STATE(2400)] = 74303, - [SMALL_STATE(2401)] = 74336, - [SMALL_STATE(2402)] = 74369, - [SMALL_STATE(2403)] = 74410, - [SMALL_STATE(2404)] = 74447, - [SMALL_STATE(2405)] = 74494, - [SMALL_STATE(2406)] = 74527, - [SMALL_STATE(2407)] = 74566, - [SMALL_STATE(2408)] = 74605, - [SMALL_STATE(2409)] = 74638, - [SMALL_STATE(2410)] = 74685, - [SMALL_STATE(2411)] = 74718, - [SMALL_STATE(2412)] = 74751, - [SMALL_STATE(2413)] = 74784, - [SMALL_STATE(2414)] = 74817, - [SMALL_STATE(2415)] = 74854, - [SMALL_STATE(2416)] = 74889, - [SMALL_STATE(2417)] = 74940, - [SMALL_STATE(2418)] = 74979, - [SMALL_STATE(2419)] = 75012, - [SMALL_STATE(2420)] = 75045, - [SMALL_STATE(2421)] = 75078, - [SMALL_STATE(2422)] = 75111, - [SMALL_STATE(2423)] = 75152, - [SMALL_STATE(2424)] = 75185, - [SMALL_STATE(2425)] = 75232, - [SMALL_STATE(2426)] = 75273, - [SMALL_STATE(2427)] = 75308, - [SMALL_STATE(2428)] = 75341, - [SMALL_STATE(2429)] = 75388, - [SMALL_STATE(2430)] = 75423, - [SMALL_STATE(2431)] = 75456, - [SMALL_STATE(2432)] = 75503, - [SMALL_STATE(2433)] = 75536, - [SMALL_STATE(2434)] = 75569, - [SMALL_STATE(2435)] = 75606, - [SMALL_STATE(2436)] = 75639, - [SMALL_STATE(2437)] = 75672, - [SMALL_STATE(2438)] = 75708, - [SMALL_STATE(2439)] = 75742, - [SMALL_STATE(2440)] = 75776, - [SMALL_STATE(2441)] = 75824, - [SMALL_STATE(2442)] = 75860, - [SMALL_STATE(2443)] = 75896, - [SMALL_STATE(2444)] = 75928, - [SMALL_STATE(2445)] = 75960, - [SMALL_STATE(2446)] = 75992, - [SMALL_STATE(2447)] = 76038, - [SMALL_STATE(2448)] = 76076, - [SMALL_STATE(2449)] = 76110, - [SMALL_STATE(2450)] = 76150, - [SMALL_STATE(2451)] = 76184, - [SMALL_STATE(2452)] = 76222, - [SMALL_STATE(2453)] = 76260, - [SMALL_STATE(2454)] = 76298, - [SMALL_STATE(2455)] = 76338, - [SMALL_STATE(2456)] = 76386, - [SMALL_STATE(2457)] = 76434, - [SMALL_STATE(2458)] = 76470, - [SMALL_STATE(2459)] = 76510, - [SMALL_STATE(2460)] = 76542, - [SMALL_STATE(2461)] = 76574, - [SMALL_STATE(2462)] = 76606, - [SMALL_STATE(2463)] = 76638, - [SMALL_STATE(2464)] = 76676, - [SMALL_STATE(2465)] = 76708, - [SMALL_STATE(2466)] = 76740, - [SMALL_STATE(2467)] = 76772, - [SMALL_STATE(2468)] = 76804, - [SMALL_STATE(2469)] = 76836, - [SMALL_STATE(2470)] = 76874, - [SMALL_STATE(2471)] = 76912, - [SMALL_STATE(2472)] = 76950, - [SMALL_STATE(2473)] = 76988, - [SMALL_STATE(2474)] = 77024, - [SMALL_STATE(2475)] = 77062, - [SMALL_STATE(2476)] = 77093, - [SMALL_STATE(2477)] = 77128, - [SMALL_STATE(2478)] = 77167, - [SMALL_STATE(2479)] = 77200, - [SMALL_STATE(2480)] = 77245, - [SMALL_STATE(2481)] = 77276, - [SMALL_STATE(2482)] = 77311, - [SMALL_STATE(2483)] = 77344, - [SMALL_STATE(2484)] = 77375, - [SMALL_STATE(2485)] = 77420, - [SMALL_STATE(2486)] = 77453, - [SMALL_STATE(2487)] = 77484, - [SMALL_STATE(2488)] = 77517, - [SMALL_STATE(2489)] = 77558, - [SMALL_STATE(2490)] = 77593, - [SMALL_STATE(2491)] = 77624, - [SMALL_STATE(2492)] = 77663, - [SMALL_STATE(2493)] = 77694, - [SMALL_STATE(2494)] = 77727, - [SMALL_STATE(2495)] = 77758, - [SMALL_STATE(2496)] = 77795, - [SMALL_STATE(2497)] = 77826, - [SMALL_STATE(2498)] = 77857, - [SMALL_STATE(2499)] = 77896, - [SMALL_STATE(2500)] = 77927, - [SMALL_STATE(2501)] = 77972, - [SMALL_STATE(2502)] = 78017, - [SMALL_STATE(2503)] = 78062, - [SMALL_STATE(2504)] = 78095, - [SMALL_STATE(2505)] = 78132, - [SMALL_STATE(2506)] = 78167, - [SMALL_STATE(2507)] = 78204, - [SMALL_STATE(2508)] = 78239, - [SMALL_STATE(2509)] = 78270, - [SMALL_STATE(2510)] = 78307, - [SMALL_STATE(2511)] = 78338, - [SMALL_STATE(2512)] = 78371, - [SMALL_STATE(2513)] = 78403, - [SMALL_STATE(2514)] = 78441, - [SMALL_STATE(2515)] = 78477, - [SMALL_STATE(2516)] = 78513, - [SMALL_STATE(2517)] = 78549, - [SMALL_STATE(2518)] = 78601, - [SMALL_STATE(2519)] = 78637, - [SMALL_STATE(2520)] = 78667, - [SMALL_STATE(2521)] = 78697, - [SMALL_STATE(2522)] = 78727, - [SMALL_STATE(2523)] = 78757, - [SMALL_STATE(2524)] = 78787, - [SMALL_STATE(2525)] = 78819, - [SMALL_STATE(2526)] = 78849, - [SMALL_STATE(2527)] = 78881, - [SMALL_STATE(2528)] = 78913, - [SMALL_STATE(2529)] = 78945, - [SMALL_STATE(2530)] = 78979, - [SMALL_STATE(2531)] = 79013, - [SMALL_STATE(2532)] = 79045, - [SMALL_STATE(2533)] = 79077, - [SMALL_STATE(2534)] = 79109, - [SMALL_STATE(2535)] = 79147, - [SMALL_STATE(2536)] = 79179, - [SMALL_STATE(2537)] = 79217, - [SMALL_STATE(2538)] = 79269, - [SMALL_STATE(2539)] = 79299, - [SMALL_STATE(2540)] = 79329, - [SMALL_STATE(2541)] = 79359, - [SMALL_STATE(2542)] = 79399, - [SMALL_STATE(2543)] = 79449, - [SMALL_STATE(2544)] = 79479, - [SMALL_STATE(2545)] = 79517, - [SMALL_STATE(2546)] = 79547, - [SMALL_STATE(2547)] = 79577, - [SMALL_STATE(2548)] = 79615, - [SMALL_STATE(2549)] = 79667, - [SMALL_STATE(2550)] = 79701, - [SMALL_STATE(2551)] = 79735, - [SMALL_STATE(2552)] = 79787, - [SMALL_STATE(2553)] = 79817, - [SMALL_STATE(2554)] = 79847, - [SMALL_STATE(2555)] = 79883, - [SMALL_STATE(2556)] = 79915, - [SMALL_STATE(2557)] = 79951, - [SMALL_STATE(2558)] = 79981, - [SMALL_STATE(2559)] = 80011, - [SMALL_STATE(2560)] = 80047, - [SMALL_STATE(2561)] = 80079, - [SMALL_STATE(2562)] = 80111, - [SMALL_STATE(2563)] = 80143, - [SMALL_STATE(2564)] = 80175, - [SMALL_STATE(2565)] = 80209, - [SMALL_STATE(2566)] = 80246, - [SMALL_STATE(2567)] = 80275, - [SMALL_STATE(2568)] = 80304, - [SMALL_STATE(2569)] = 80335, - [SMALL_STATE(2570)] = 80366, - [SMALL_STATE(2571)] = 80397, - [SMALL_STATE(2572)] = 80428, - [SMALL_STATE(2573)] = 80459, - [SMALL_STATE(2574)] = 80490, - [SMALL_STATE(2575)] = 80521, - [SMALL_STATE(2576)] = 80552, - [SMALL_STATE(2577)] = 80583, - [SMALL_STATE(2578)] = 80614, - [SMALL_STATE(2579)] = 80645, - [SMALL_STATE(2580)] = 80676, - [SMALL_STATE(2581)] = 80707, - [SMALL_STATE(2582)] = 80744, - [SMALL_STATE(2583)] = 80781, - [SMALL_STATE(2584)] = 80810, - [SMALL_STATE(2585)] = 80841, - [SMALL_STATE(2586)] = 80870, - [SMALL_STATE(2587)] = 80901, - [SMALL_STATE(2588)] = 80932, - [SMALL_STATE(2589)] = 80961, - [SMALL_STATE(2590)] = 80992, - [SMALL_STATE(2591)] = 81029, - [SMALL_STATE(2592)] = 81060, - [SMALL_STATE(2593)] = 81097, - [SMALL_STATE(2594)] = 81134, - [SMALL_STATE(2595)] = 81171, - [SMALL_STATE(2596)] = 81200, - [SMALL_STATE(2597)] = 81237, - [SMALL_STATE(2598)] = 81266, - [SMALL_STATE(2599)] = 81303, - [SMALL_STATE(2600)] = 81340, - [SMALL_STATE(2601)] = 81373, - [SMALL_STATE(2602)] = 81402, - [SMALL_STATE(2603)] = 81435, - [SMALL_STATE(2604)] = 81466, - [SMALL_STATE(2605)] = 81495, - [SMALL_STATE(2606)] = 81528, - [SMALL_STATE(2607)] = 81557, - [SMALL_STATE(2608)] = 81586, - [SMALL_STATE(2609)] = 81615, - [SMALL_STATE(2610)] = 81646, - [SMALL_STATE(2611)] = 81675, - [SMALL_STATE(2612)] = 81712, - [SMALL_STATE(2613)] = 81741, - [SMALL_STATE(2614)] = 81776, - [SMALL_STATE(2615)] = 81805, - [SMALL_STATE(2616)] = 81834, - [SMALL_STATE(2617)] = 81867, - [SMALL_STATE(2618)] = 81896, - [SMALL_STATE(2619)] = 81933, - [SMALL_STATE(2620)] = 81962, - [SMALL_STATE(2621)] = 81993, - [SMALL_STATE(2622)] = 82022, - [SMALL_STATE(2623)] = 82051, - [SMALL_STATE(2624)] = 82082, - [SMALL_STATE(2625)] = 82111, - [SMALL_STATE(2626)] = 82142, - [SMALL_STATE(2627)] = 82175, - [SMALL_STATE(2628)] = 82206, - [SMALL_STATE(2629)] = 82237, - [SMALL_STATE(2630)] = 82268, - [SMALL_STATE(2631)] = 82297, - [SMALL_STATE(2632)] = 82334, - [SMALL_STATE(2633)] = 82364, - [SMALL_STATE(2634)] = 82392, - [SMALL_STATE(2635)] = 82424, - [SMALL_STATE(2636)] = 82460, - [SMALL_STATE(2637)] = 82504, - [SMALL_STATE(2638)] = 82538, - [SMALL_STATE(2639)] = 82568, - [SMALL_STATE(2640)] = 82604, - [SMALL_STATE(2641)] = 82632, - [SMALL_STATE(2642)] = 82660, - [SMALL_STATE(2643)] = 82688, - [SMALL_STATE(2644)] = 82720, - [SMALL_STATE(2645)] = 82756, - [SMALL_STATE(2646)] = 82786, - [SMALL_STATE(2647)] = 82814, - [SMALL_STATE(2648)] = 82850, - [SMALL_STATE(2649)] = 82880, - [SMALL_STATE(2650)] = 82908, - [SMALL_STATE(2651)] = 82936, - [SMALL_STATE(2652)] = 82966, - [SMALL_STATE(2653)] = 82994, - [SMALL_STATE(2654)] = 83024, - [SMALL_STATE(2655)] = 83054, - [SMALL_STATE(2656)] = 83098, - [SMALL_STATE(2657)] = 83134, - [SMALL_STATE(2658)] = 83164, - [SMALL_STATE(2659)] = 83200, - [SMALL_STATE(2660)] = 83228, - [SMALL_STATE(2661)] = 83256, - [SMALL_STATE(2662)] = 83292, - [SMALL_STATE(2663)] = 83322, - [SMALL_STATE(2664)] = 83358, - [SMALL_STATE(2665)] = 83402, - [SMALL_STATE(2666)] = 83430, - [SMALL_STATE(2667)] = 83460, - [SMALL_STATE(2668)] = 83488, - [SMALL_STATE(2669)] = 83524, - [SMALL_STATE(2670)] = 83558, - [SMALL_STATE(2671)] = 83590, - [SMALL_STATE(2672)] = 83618, - [SMALL_STATE(2673)] = 83650, - [SMALL_STATE(2674)] = 83682, - [SMALL_STATE(2675)] = 83714, - [SMALL_STATE(2676)] = 83746, - [SMALL_STATE(2677)] = 83778, - [SMALL_STATE(2678)] = 83814, - [SMALL_STATE(2679)] = 83844, - [SMALL_STATE(2680)] = 83888, - [SMALL_STATE(2681)] = 83918, - [SMALL_STATE(2682)] = 83948, - [SMALL_STATE(2683)] = 83992, - [SMALL_STATE(2684)] = 84020, - [SMALL_STATE(2685)] = 84048, - [SMALL_STATE(2686)] = 84084, - [SMALL_STATE(2687)] = 84112, - [SMALL_STATE(2688)] = 84140, - [SMALL_STATE(2689)] = 84176, - [SMALL_STATE(2690)] = 84212, - [SMALL_STATE(2691)] = 84250, - [SMALL_STATE(2692)] = 84280, - [SMALL_STATE(2693)] = 84308, - [SMALL_STATE(2694)] = 84343, - [SMALL_STATE(2695)] = 84370, - [SMALL_STATE(2696)] = 84401, - [SMALL_STATE(2697)] = 84432, - [SMALL_STATE(2698)] = 84469, - [SMALL_STATE(2699)] = 84498, - [SMALL_STATE(2700)] = 84527, - [SMALL_STATE(2701)] = 84558, - [SMALL_STATE(2702)] = 84585, - [SMALL_STATE(2703)] = 84618, - [SMALL_STATE(2704)] = 84651, - [SMALL_STATE(2705)] = 84682, - [SMALL_STATE(2706)] = 84709, - [SMALL_STATE(2707)] = 84740, - [SMALL_STATE(2708)] = 84771, - [SMALL_STATE(2709)] = 84798, - [SMALL_STATE(2710)] = 84825, - [SMALL_STATE(2711)] = 84854, - [SMALL_STATE(2712)] = 84881, - [SMALL_STATE(2713)] = 84912, - [SMALL_STATE(2714)] = 84941, - [SMALL_STATE(2715)] = 84972, - [SMALL_STATE(2716)] = 85003, - [SMALL_STATE(2717)] = 85030, - [SMALL_STATE(2718)] = 85057, - [SMALL_STATE(2719)] = 85084, - [SMALL_STATE(2720)] = 85111, - [SMALL_STATE(2721)] = 85142, - [SMALL_STATE(2722)] = 85173, - [SMALL_STATE(2723)] = 85200, - [SMALL_STATE(2724)] = 85233, - [SMALL_STATE(2725)] = 85264, - [SMALL_STATE(2726)] = 85295, - [SMALL_STATE(2727)] = 85324, - [SMALL_STATE(2728)] = 85353, - [SMALL_STATE(2729)] = 85384, - [SMALL_STATE(2730)] = 85417, - [SMALL_STATE(2731)] = 85450, - [SMALL_STATE(2732)] = 85481, - [SMALL_STATE(2733)] = 85514, - [SMALL_STATE(2734)] = 85545, - [SMALL_STATE(2735)] = 85572, - [SMALL_STATE(2736)] = 85603, - [SMALL_STATE(2737)] = 85634, - [SMALL_STATE(2738)] = 85669, - [SMALL_STATE(2739)] = 85704, - [SMALL_STATE(2740)] = 85735, - [SMALL_STATE(2741)] = 85766, - [SMALL_STATE(2742)] = 85797, - [SMALL_STATE(2743)] = 85830, - [SMALL_STATE(2744)] = 85855, - [SMALL_STATE(2745)] = 85884, - [SMALL_STATE(2746)] = 85917, - [SMALL_STATE(2747)] = 85942, - [SMALL_STATE(2748)] = 85973, - [SMALL_STATE(2749)] = 85998, - [SMALL_STATE(2750)] = 86023, - [SMALL_STATE(2751)] = 86054, - [SMALL_STATE(2752)] = 86079, - [SMALL_STATE(2753)] = 86104, - [SMALL_STATE(2754)] = 86135, - [SMALL_STATE(2755)] = 86160, - [SMALL_STATE(2756)] = 86185, - [SMALL_STATE(2757)] = 86210, - [SMALL_STATE(2758)] = 86237, - [SMALL_STATE(2759)] = 86264, - [SMALL_STATE(2760)] = 86293, - [SMALL_STATE(2761)] = 86322, - [SMALL_STATE(2762)] = 86347, - [SMALL_STATE(2763)] = 86376, - [SMALL_STATE(2764)] = 86407, - [SMALL_STATE(2765)] = 86432, - [SMALL_STATE(2766)] = 86459, - [SMALL_STATE(2767)] = 86486, - [SMALL_STATE(2768)] = 86515, - [SMALL_STATE(2769)] = 86544, - [SMALL_STATE(2770)] = 86571, - [SMALL_STATE(2771)] = 86598, - [SMALL_STATE(2772)] = 86625, - [SMALL_STATE(2773)] = 86652, - [SMALL_STATE(2774)] = 86683, - [SMALL_STATE(2775)] = 86710, - [SMALL_STATE(2776)] = 86737, - [SMALL_STATE(2777)] = 86768, - [SMALL_STATE(2778)] = 86799, - [SMALL_STATE(2779)] = 86828, - [SMALL_STATE(2780)] = 86857, - [SMALL_STATE(2781)] = 86890, - [SMALL_STATE(2782)] = 86923, - [SMALL_STATE(2783)] = 86954, - [SMALL_STATE(2784)] = 86985, - [SMALL_STATE(2785)] = 87012, - [SMALL_STATE(2786)] = 87041, - [SMALL_STATE(2787)] = 87072, - [SMALL_STATE(2788)] = 87103, - [SMALL_STATE(2789)] = 87136, - [SMALL_STATE(2790)] = 87169, - [SMALL_STATE(2791)] = 87196, - [SMALL_STATE(2792)] = 87223, - [SMALL_STATE(2793)] = 87250, - [SMALL_STATE(2794)] = 87277, - [SMALL_STATE(2795)] = 87310, - [SMALL_STATE(2796)] = 87341, - [SMALL_STATE(2797)] = 87372, - [SMALL_STATE(2798)] = 87399, - [SMALL_STATE(2799)] = 87428, - [SMALL_STATE(2800)] = 87461, - [SMALL_STATE(2801)] = 87490, - [SMALL_STATE(2802)] = 87523, - [SMALL_STATE(2803)] = 87556, - [SMALL_STATE(2804)] = 87587, - [SMALL_STATE(2805)] = 87618, - [SMALL_STATE(2806)] = 87645, - [SMALL_STATE(2807)] = 87672, - [SMALL_STATE(2808)] = 87703, - [SMALL_STATE(2809)] = 87734, - [SMALL_STATE(2810)] = 87767, - [SMALL_STATE(2811)] = 87800, - [SMALL_STATE(2812)] = 87831, - [SMALL_STATE(2813)] = 87864, - [SMALL_STATE(2814)] = 87899, - [SMALL_STATE(2815)] = 87934, - [SMALL_STATE(2816)] = 87961, - [SMALL_STATE(2817)] = 87988, - [SMALL_STATE(2818)] = 88015, - [SMALL_STATE(2819)] = 88042, - [SMALL_STATE(2820)] = 88075, - [SMALL_STATE(2821)] = 88104, - [SMALL_STATE(2822)] = 88133, - [SMALL_STATE(2823)] = 88164, - [SMALL_STATE(2824)] = 88191, - [SMALL_STATE(2825)] = 88222, - [SMALL_STATE(2826)] = 88249, - [SMALL_STATE(2827)] = 88276, - [SMALL_STATE(2828)] = 88307, - [SMALL_STATE(2829)] = 88338, - [SMALL_STATE(2830)] = 88371, - [SMALL_STATE(2831)] = 88402, - [SMALL_STATE(2832)] = 88433, - [SMALL_STATE(2833)] = 88464, - [SMALL_STATE(2834)] = 88495, - [SMALL_STATE(2835)] = 88526, - [SMALL_STATE(2836)] = 88557, - [SMALL_STATE(2837)] = 88584, - [SMALL_STATE(2838)] = 88615, - [SMALL_STATE(2839)] = 88642, - [SMALL_STATE(2840)] = 88669, - [SMALL_STATE(2841)] = 88704, - [SMALL_STATE(2842)] = 88731, - [SMALL_STATE(2843)] = 88760, - [SMALL_STATE(2844)] = 88789, - [SMALL_STATE(2845)] = 88820, - [SMALL_STATE(2846)] = 88851, - [SMALL_STATE(2847)] = 88878, - [SMALL_STATE(2848)] = 88909, - [SMALL_STATE(2849)] = 88940, - [SMALL_STATE(2850)] = 88971, - [SMALL_STATE(2851)] = 89006, - [SMALL_STATE(2852)] = 89041, - [SMALL_STATE(2853)] = 89076, - [SMALL_STATE(2854)] = 89111, - [SMALL_STATE(2855)] = 89146, - [SMALL_STATE(2856)] = 89173, - [SMALL_STATE(2857)] = 89204, - [SMALL_STATE(2858)] = 89235, - [SMALL_STATE(2859)] = 89262, - [SMALL_STATE(2860)] = 89293, - [SMALL_STATE(2861)] = 89324, - [SMALL_STATE(2862)] = 89355, - [SMALL_STATE(2863)] = 89384, - [SMALL_STATE(2864)] = 89411, - [SMALL_STATE(2865)] = 89444, - [SMALL_STATE(2866)] = 89471, - [SMALL_STATE(2867)] = 89501, - [SMALL_STATE(2868)] = 89527, - [SMALL_STATE(2869)] = 89551, - [SMALL_STATE(2870)] = 89577, - [SMALL_STATE(2871)] = 89605, - [SMALL_STATE(2872)] = 89635, - [SMALL_STATE(2873)] = 89665, - [SMALL_STATE(2874)] = 89689, - [SMALL_STATE(2875)] = 89713, - [SMALL_STATE(2876)] = 89739, - [SMALL_STATE(2877)] = 89763, - [SMALL_STATE(2878)] = 89787, - [SMALL_STATE(2879)] = 89831, - [SMALL_STATE(2880)] = 89861, - [SMALL_STATE(2881)] = 89907, - [SMALL_STATE(2882)] = 89933, - [SMALL_STATE(2883)] = 89985, - [SMALL_STATE(2884)] = 90037, - [SMALL_STATE(2885)] = 90063, - [SMALL_STATE(2886)] = 90091, - [SMALL_STATE(2887)] = 90123, - [SMALL_STATE(2888)] = 90149, - [SMALL_STATE(2889)] = 90175, - [SMALL_STATE(2890)] = 90203, - [SMALL_STATE(2891)] = 90243, - [SMALL_STATE(2892)] = 90273, - [SMALL_STATE(2893)] = 90303, - [SMALL_STATE(2894)] = 90329, - [SMALL_STATE(2895)] = 90357, - [SMALL_STATE(2896)] = 90383, - [SMALL_STATE(2897)] = 90413, - [SMALL_STATE(2898)] = 90443, - [SMALL_STATE(2899)] = 90473, - [SMALL_STATE(2900)] = 90503, - [SMALL_STATE(2901)] = 90529, - [SMALL_STATE(2902)] = 90555, - [SMALL_STATE(2903)] = 90579, - [SMALL_STATE(2904)] = 90603, - [SMALL_STATE(2905)] = 90627, - [SMALL_STATE(2906)] = 90653, - [SMALL_STATE(2907)] = 90679, - [SMALL_STATE(2908)] = 90707, - [SMALL_STATE(2909)] = 90735, - [SMALL_STATE(2910)] = 90765, - [SMALL_STATE(2911)] = 90793, - [SMALL_STATE(2912)] = 90823, - [SMALL_STATE(2913)] = 90853, - [SMALL_STATE(2914)] = 90883, - [SMALL_STATE(2915)] = 90907, - [SMALL_STATE(2916)] = 90931, - [SMALL_STATE(2917)] = 90957, - [SMALL_STATE(2918)] = 90983, - [SMALL_STATE(2919)] = 91009, - [SMALL_STATE(2920)] = 91037, - [SMALL_STATE(2921)] = 91063, - [SMALL_STATE(2922)] = 91093, - [SMALL_STATE(2923)] = 91123, - [SMALL_STATE(2924)] = 91175, - [SMALL_STATE(2925)] = 91205, - [SMALL_STATE(2926)] = 91235, - [SMALL_STATE(2927)] = 91265, - [SMALL_STATE(2928)] = 91295, - [SMALL_STATE(2929)] = 91325, - [SMALL_STATE(2930)] = 91353, - [SMALL_STATE(2931)] = 91379, - [SMALL_STATE(2932)] = 91409, - [SMALL_STATE(2933)] = 91435, - [SMALL_STATE(2934)] = 91461, - [SMALL_STATE(2935)] = 91491, - [SMALL_STATE(2936)] = 91543, - [SMALL_STATE(2937)] = 91569, - [SMALL_STATE(2938)] = 91621, - [SMALL_STATE(2939)] = 91651, - [SMALL_STATE(2940)] = 91679, - [SMALL_STATE(2941)] = 91709, - [SMALL_STATE(2942)] = 91761, - [SMALL_STATE(2943)] = 91785, - [SMALL_STATE(2944)] = 91815, - [SMALL_STATE(2945)] = 91841, - [SMALL_STATE(2946)] = 91867, - [SMALL_STATE(2947)] = 91893, - [SMALL_STATE(2948)] = 91925, - [SMALL_STATE(2949)] = 91951, - [SMALL_STATE(2950)] = 91979, - [SMALL_STATE(2951)] = 92011, - [SMALL_STATE(2952)] = 92043, - [SMALL_STATE(2953)] = 92069, - [SMALL_STATE(2954)] = 92093, - [SMALL_STATE(2955)] = 92117, - [SMALL_STATE(2956)] = 92143, - [SMALL_STATE(2957)] = 92195, - [SMALL_STATE(2958)] = 92247, - [SMALL_STATE(2959)] = 92299, - [SMALL_STATE(2960)] = 92329, - [SMALL_STATE(2961)] = 92355, - [SMALL_STATE(2962)] = 92381, - [SMALL_STATE(2963)] = 92433, - [SMALL_STATE(2964)] = 92461, - [SMALL_STATE(2965)] = 92487, - [SMALL_STATE(2966)] = 92515, - [SMALL_STATE(2967)] = 92540, - [SMALL_STATE(2968)] = 92565, - [SMALL_STATE(2969)] = 92596, - [SMALL_STATE(2970)] = 92621, - [SMALL_STATE(2971)] = 92660, - [SMALL_STATE(2972)] = 92685, - [SMALL_STATE(2973)] = 92714, - [SMALL_STATE(2974)] = 92739, - [SMALL_STATE(2975)] = 92776, - [SMALL_STATE(2976)] = 92807, - [SMALL_STATE(2977)] = 92832, - [SMALL_STATE(2978)] = 92861, - [SMALL_STATE(2979)] = 92890, - [SMALL_STATE(2980)] = 92915, - [SMALL_STATE(2981)] = 92944, - [SMALL_STATE(2982)] = 92987, - [SMALL_STATE(2983)] = 93016, - [SMALL_STATE(2984)] = 93041, - [SMALL_STATE(2985)] = 93070, - [SMALL_STATE(2986)] = 93095, - [SMALL_STATE(2987)] = 93120, - [SMALL_STATE(2988)] = 93145, - [SMALL_STATE(2989)] = 93170, - [SMALL_STATE(2990)] = 93199, - [SMALL_STATE(2991)] = 93224, - [SMALL_STATE(2992)] = 93253, - [SMALL_STATE(2993)] = 93284, - [SMALL_STATE(2994)] = 93309, - [SMALL_STATE(2995)] = 93334, - [SMALL_STATE(2996)] = 93359, - [SMALL_STATE(2997)] = 93384, - [SMALL_STATE(2998)] = 93409, - [SMALL_STATE(2999)] = 93434, - [SMALL_STATE(3000)] = 93459, - [SMALL_STATE(3001)] = 93484, - [SMALL_STATE(3002)] = 93513, - [SMALL_STATE(3003)] = 93538, - [SMALL_STATE(3004)] = 93563, - [SMALL_STATE(3005)] = 93588, - [SMALL_STATE(3006)] = 93613, - [SMALL_STATE(3007)] = 93638, - [SMALL_STATE(3008)] = 93663, - [SMALL_STATE(3009)] = 93692, - [SMALL_STATE(3010)] = 93721, - [SMALL_STATE(3011)] = 93746, - [SMALL_STATE(3012)] = 93775, - [SMALL_STATE(3013)] = 93800, - [SMALL_STATE(3014)] = 93825, - [SMALL_STATE(3015)] = 93850, - [SMALL_STATE(3016)] = 93875, - [SMALL_STATE(3017)] = 93900, - [SMALL_STATE(3018)] = 93925, - [SMALL_STATE(3019)] = 93954, - [SMALL_STATE(3020)] = 93979, - [SMALL_STATE(3021)] = 94008, - [SMALL_STATE(3022)] = 94033, - [SMALL_STATE(3023)] = 94058, - [SMALL_STATE(3024)] = 94083, - [SMALL_STATE(3025)] = 94108, - [SMALL_STATE(3026)] = 94137, - [SMALL_STATE(3027)] = 94162, - [SMALL_STATE(3028)] = 94187, - [SMALL_STATE(3029)] = 94212, - [SMALL_STATE(3030)] = 94239, - [SMALL_STATE(3031)] = 94264, - [SMALL_STATE(3032)] = 94289, - [SMALL_STATE(3033)] = 94314, - [SMALL_STATE(3034)] = 94341, - [SMALL_STATE(3035)] = 94370, - [SMALL_STATE(3036)] = 94395, - [SMALL_STATE(3037)] = 94420, - [SMALL_STATE(3038)] = 94449, - [SMALL_STATE(3039)] = 94474, - [SMALL_STATE(3040)] = 94503, - [SMALL_STATE(3041)] = 94528, - [SMALL_STATE(3042)] = 94555, - [SMALL_STATE(3043)] = 94584, - [SMALL_STATE(3044)] = 94611, - [SMALL_STATE(3045)] = 94640, - [SMALL_STATE(3046)] = 94665, - [SMALL_STATE(3047)] = 94690, - [SMALL_STATE(3048)] = 94719, - [SMALL_STATE(3049)] = 94744, - [SMALL_STATE(3050)] = 94769, - [SMALL_STATE(3051)] = 94798, - [SMALL_STATE(3052)] = 94823, - [SMALL_STATE(3053)] = 94848, - [SMALL_STATE(3054)] = 94873, - [SMALL_STATE(3055)] = 94902, - [SMALL_STATE(3056)] = 94931, - [SMALL_STATE(3057)] = 94956, - [SMALL_STATE(3058)] = 94981, - [SMALL_STATE(3059)] = 95006, - [SMALL_STATE(3060)] = 95031, - [SMALL_STATE(3061)] = 95056, - [SMALL_STATE(3062)] = 95085, - [SMALL_STATE(3063)] = 95114, - [SMALL_STATE(3064)] = 95143, - [SMALL_STATE(3065)] = 95170, - [SMALL_STATE(3066)] = 95195, - [SMALL_STATE(3067)] = 95222, - [SMALL_STATE(3068)] = 95247, - [SMALL_STATE(3069)] = 95272, - [SMALL_STATE(3070)] = 95297, - [SMALL_STATE(3071)] = 95334, - [SMALL_STATE(3072)] = 95357, - [SMALL_STATE(3073)] = 95382, - [SMALL_STATE(3074)] = 95409, - [SMALL_STATE(3075)] = 95438, - [SMALL_STATE(3076)] = 95463, - [SMALL_STATE(3077)] = 95488, - [SMALL_STATE(3078)] = 95517, - [SMALL_STATE(3079)] = 95542, - [SMALL_STATE(3080)] = 95571, - [SMALL_STATE(3081)] = 95596, - [SMALL_STATE(3082)] = 95621, - [SMALL_STATE(3083)] = 95650, - [SMALL_STATE(3084)] = 95679, - [SMALL_STATE(3085)] = 95708, - [SMALL_STATE(3086)] = 95737, - [SMALL_STATE(3087)] = 95760, - [SMALL_STATE(3088)] = 95789, - [SMALL_STATE(3089)] = 95814, - [SMALL_STATE(3090)] = 95843, - [SMALL_STATE(3091)] = 95872, - [SMALL_STATE(3092)] = 95897, - [SMALL_STATE(3093)] = 95922, - [SMALL_STATE(3094)] = 95951, - [SMALL_STATE(3095)] = 95980, - [SMALL_STATE(3096)] = 96005, - [SMALL_STATE(3097)] = 96034, - [SMALL_STATE(3098)] = 96059, - [SMALL_STATE(3099)] = 96090, - [SMALL_STATE(3100)] = 96119, - [SMALL_STATE(3101)] = 96144, - [SMALL_STATE(3102)] = 96169, - [SMALL_STATE(3103)] = 96212, - [SMALL_STATE(3104)] = 96237, - [SMALL_STATE(3105)] = 96262, - [SMALL_STATE(3106)] = 96287, - [SMALL_STATE(3107)] = 96312, - [SMALL_STATE(3108)] = 96337, - [SMALL_STATE(3109)] = 96362, - [SMALL_STATE(3110)] = 96391, - [SMALL_STATE(3111)] = 96428, - [SMALL_STATE(3112)] = 96453, - [SMALL_STATE(3113)] = 96478, - [SMALL_STATE(3114)] = 96503, - [SMALL_STATE(3115)] = 96528, - [SMALL_STATE(3116)] = 96553, - [SMALL_STATE(3117)] = 96578, - [SMALL_STATE(3118)] = 96603, - [SMALL_STATE(3119)] = 96632, - [SMALL_STATE(3120)] = 96661, - [SMALL_STATE(3121)] = 96686, - [SMALL_STATE(3122)] = 96715, - [SMALL_STATE(3123)] = 96740, - [SMALL_STATE(3124)] = 96769, - [SMALL_STATE(3125)] = 96794, - [SMALL_STATE(3126)] = 96818, - [SMALL_STATE(3127)] = 96840, - [SMALL_STATE(3128)] = 96864, - [SMALL_STATE(3129)] = 96888, - [SMALL_STATE(3130)] = 96912, - [SMALL_STATE(3131)] = 96954, - [SMALL_STATE(3132)] = 96994, - [SMALL_STATE(3133)] = 97040, - [SMALL_STATE(3134)] = 97064, - [SMALL_STATE(3135)] = 97086, - [SMALL_STATE(3136)] = 97108, - [SMALL_STATE(3137)] = 97132, - [SMALL_STATE(3138)] = 97158, - [SMALL_STATE(3139)] = 97182, - [SMALL_STATE(3140)] = 97206, - [SMALL_STATE(3141)] = 97230, - [SMALL_STATE(3142)] = 97276, - [SMALL_STATE(3143)] = 97300, - [SMALL_STATE(3144)] = 97324, - [SMALL_STATE(3145)] = 97348, - [SMALL_STATE(3146)] = 97394, - [SMALL_STATE(3147)] = 97418, - [SMALL_STATE(3148)] = 97442, - [SMALL_STATE(3149)] = 97466, - [SMALL_STATE(3150)] = 97490, - [SMALL_STATE(3151)] = 97512, - [SMALL_STATE(3152)] = 97536, - [SMALL_STATE(3153)] = 97582, - [SMALL_STATE(3154)] = 97604, - [SMALL_STATE(3155)] = 97628, - [SMALL_STATE(3156)] = 97662, - [SMALL_STATE(3157)] = 97702, - [SMALL_STATE(3158)] = 97736, - [SMALL_STATE(3159)] = 97782, - [SMALL_STATE(3160)] = 97816, - [SMALL_STATE(3161)] = 97840, - [SMALL_STATE(3162)] = 97886, - [SMALL_STATE(3163)] = 97910, - [SMALL_STATE(3164)] = 97934, - [SMALL_STATE(3165)] = 97958, - [SMALL_STATE(3166)] = 97982, - [SMALL_STATE(3167)] = 98006, - [SMALL_STATE(3168)] = 98030, - [SMALL_STATE(3169)] = 98054, - [SMALL_STATE(3170)] = 98078, - [SMALL_STATE(3171)] = 98102, - [SMALL_STATE(3172)] = 98126, - [SMALL_STATE(3173)] = 98150, - [SMALL_STATE(3174)] = 98190, - [SMALL_STATE(3175)] = 98226, - [SMALL_STATE(3176)] = 98250, - [SMALL_STATE(3177)] = 98274, - [SMALL_STATE(3178)] = 98298, - [SMALL_STATE(3179)] = 98320, - [SMALL_STATE(3180)] = 98344, - [SMALL_STATE(3181)] = 98368, - [SMALL_STATE(3182)] = 98392, - [SMALL_STATE(3183)] = 98416, - [SMALL_STATE(3184)] = 98440, - [SMALL_STATE(3185)] = 98464, - [SMALL_STATE(3186)] = 98488, - [SMALL_STATE(3187)] = 98512, - [SMALL_STATE(3188)] = 98536, - [SMALL_STATE(3189)] = 98560, - [SMALL_STATE(3190)] = 98584, - [SMALL_STATE(3191)] = 98606, - [SMALL_STATE(3192)] = 98628, - [SMALL_STATE(3193)] = 98668, - [SMALL_STATE(3194)] = 98708, - [SMALL_STATE(3195)] = 98732, - [SMALL_STATE(3196)] = 98756, - [SMALL_STATE(3197)] = 98780, - [SMALL_STATE(3198)] = 98816, - [SMALL_STATE(3199)] = 98840, - [SMALL_STATE(3200)] = 98864, - [SMALL_STATE(3201)] = 98888, - [SMALL_STATE(3202)] = 98910, - [SMALL_STATE(3203)] = 98934, - [SMALL_STATE(3204)] = 98960, - [SMALL_STATE(3205)] = 98984, - [SMALL_STATE(3206)] = 99006, - [SMALL_STATE(3207)] = 99028, - [SMALL_STATE(3208)] = 99050, - [SMALL_STATE(3209)] = 99074, - [SMALL_STATE(3210)] = 99116, - [SMALL_STATE(3211)] = 99138, - [SMALL_STATE(3212)] = 99178, - [SMALL_STATE(3213)] = 99200, - [SMALL_STATE(3214)] = 99224, - [SMALL_STATE(3215)] = 99246, - [SMALL_STATE(3216)] = 99270, - [SMALL_STATE(3217)] = 99294, - [SMALL_STATE(3218)] = 99318, - [SMALL_STATE(3219)] = 99342, - [SMALL_STATE(3220)] = 99366, - [SMALL_STATE(3221)] = 99390, - [SMALL_STATE(3222)] = 99414, - [SMALL_STATE(3223)] = 99438, - [SMALL_STATE(3224)] = 99462, - [SMALL_STATE(3225)] = 99486, - [SMALL_STATE(3226)] = 99510, - [SMALL_STATE(3227)] = 99538, - [SMALL_STATE(3228)] = 99562, - [SMALL_STATE(3229)] = 99590, - [SMALL_STATE(3230)] = 99618, - [SMALL_STATE(3231)] = 99646, - [SMALL_STATE(3232)] = 99674, - [SMALL_STATE(3233)] = 99702, - [SMALL_STATE(3234)] = 99730, - [SMALL_STATE(3235)] = 99758, - [SMALL_STATE(3236)] = 99786, - [SMALL_STATE(3237)] = 99814, - [SMALL_STATE(3238)] = 99842, - [SMALL_STATE(3239)] = 99870, - [SMALL_STATE(3240)] = 99894, - [SMALL_STATE(3241)] = 99918, - [SMALL_STATE(3242)] = 99942, - [SMALL_STATE(3243)] = 99982, - [SMALL_STATE(3244)] = 100006, - [SMALL_STATE(3245)] = 100030, - [SMALL_STATE(3246)] = 100054, - [SMALL_STATE(3247)] = 100078, - [SMALL_STATE(3248)] = 100102, - [SMALL_STATE(3249)] = 100126, - [SMALL_STATE(3250)] = 100150, - [SMALL_STATE(3251)] = 100174, - [SMALL_STATE(3252)] = 100220, - [SMALL_STATE(3253)] = 100244, - [SMALL_STATE(3254)] = 100268, - [SMALL_STATE(3255)] = 100292, - [SMALL_STATE(3256)] = 100338, - [SMALL_STATE(3257)] = 100384, - [SMALL_STATE(3258)] = 100418, - [SMALL_STATE(3259)] = 100464, - [SMALL_STATE(3260)] = 100486, - [SMALL_STATE(3261)] = 100510, - [SMALL_STATE(3262)] = 100534, - [SMALL_STATE(3263)] = 100558, - [SMALL_STATE(3264)] = 100582, - [SMALL_STATE(3265)] = 100619, - [SMALL_STATE(3266)] = 100640, - [SMALL_STATE(3267)] = 100663, - [SMALL_STATE(3268)] = 100684, - [SMALL_STATE(3269)] = 100711, - [SMALL_STATE(3270)] = 100732, - [SMALL_STATE(3271)] = 100753, - [SMALL_STATE(3272)] = 100790, - [SMALL_STATE(3273)] = 100827, - [SMALL_STATE(3274)] = 100848, - [SMALL_STATE(3275)] = 100869, - [SMALL_STATE(3276)] = 100890, - [SMALL_STATE(3277)] = 100917, - [SMALL_STATE(3278)] = 100940, - [SMALL_STATE(3279)] = 100961, - [SMALL_STATE(3280)] = 100982, - [SMALL_STATE(3281)] = 101003, - [SMALL_STATE(3282)] = 101040, - [SMALL_STATE(3283)] = 101063, - [SMALL_STATE(3284)] = 101084, - [SMALL_STATE(3285)] = 101105, - [SMALL_STATE(3286)] = 101126, - [SMALL_STATE(3287)] = 101153, - [SMALL_STATE(3288)] = 101174, - [SMALL_STATE(3289)] = 101195, - [SMALL_STATE(3290)] = 101234, - [SMALL_STATE(3291)] = 101261, - [SMALL_STATE(3292)] = 101284, - [SMALL_STATE(3293)] = 101305, - [SMALL_STATE(3294)] = 101344, - [SMALL_STATE(3295)] = 101367, - [SMALL_STATE(3296)] = 101388, - [SMALL_STATE(3297)] = 101415, - [SMALL_STATE(3298)] = 101442, - [SMALL_STATE(3299)] = 101469, - [SMALL_STATE(3300)] = 101496, - [SMALL_STATE(3301)] = 101523, - [SMALL_STATE(3302)] = 101550, - [SMALL_STATE(3303)] = 101577, - [SMALL_STATE(3304)] = 101598, - [SMALL_STATE(3305)] = 101625, - [SMALL_STATE(3306)] = 101652, - [SMALL_STATE(3307)] = 101679, - [SMALL_STATE(3308)] = 101706, - [SMALL_STATE(3309)] = 101733, - [SMALL_STATE(3310)] = 101756, - [SMALL_STATE(3311)] = 101779, - [SMALL_STATE(3312)] = 101800, - [SMALL_STATE(3313)] = 101827, - [SMALL_STATE(3314)] = 101850, - [SMALL_STATE(3315)] = 101873, - [SMALL_STATE(3316)] = 101902, - [SMALL_STATE(3317)] = 101923, - [SMALL_STATE(3318)] = 101944, - [SMALL_STATE(3319)] = 101983, - [SMALL_STATE(3320)] = 102004, - [SMALL_STATE(3321)] = 102043, - [SMALL_STATE(3322)] = 102064, - [SMALL_STATE(3323)] = 102085, - [SMALL_STATE(3324)] = 102112, - [SMALL_STATE(3325)] = 102133, - [SMALL_STATE(3326)] = 102154, - [SMALL_STATE(3327)] = 102175, - [SMALL_STATE(3328)] = 102196, - [SMALL_STATE(3329)] = 102221, - [SMALL_STATE(3330)] = 102242, - [SMALL_STATE(3331)] = 102281, - [SMALL_STATE(3332)] = 102302, - [SMALL_STATE(3333)] = 102323, - [SMALL_STATE(3334)] = 102344, - [SMALL_STATE(3335)] = 102365, - [SMALL_STATE(3336)] = 102402, - [SMALL_STATE(3337)] = 102439, - [SMALL_STATE(3338)] = 102462, - [SMALL_STATE(3339)] = 102485, - [SMALL_STATE(3340)] = 102508, - [SMALL_STATE(3341)] = 102529, - [SMALL_STATE(3342)] = 102556, - [SMALL_STATE(3343)] = 102577, - [SMALL_STATE(3344)] = 102600, - [SMALL_STATE(3345)] = 102621, - [SMALL_STATE(3346)] = 102642, - [SMALL_STATE(3347)] = 102663, - [SMALL_STATE(3348)] = 102700, - [SMALL_STATE(3349)] = 102723, - [SMALL_STATE(3350)] = 102760, - [SMALL_STATE(3351)] = 102783, - [SMALL_STATE(3352)] = 102810, - [SMALL_STATE(3353)] = 102831, - [SMALL_STATE(3354)] = 102852, - [SMALL_STATE(3355)] = 102873, - [SMALL_STATE(3356)] = 102894, - [SMALL_STATE(3357)] = 102917, - [SMALL_STATE(3358)] = 102954, - [SMALL_STATE(3359)] = 102975, - [SMALL_STATE(3360)] = 102998, - [SMALL_STATE(3361)] = 103035, - [SMALL_STATE(3362)] = 103056, - [SMALL_STATE(3363)] = 103079, - [SMALL_STATE(3364)] = 103100, - [SMALL_STATE(3365)] = 103127, - [SMALL_STATE(3366)] = 103148, - [SMALL_STATE(3367)] = 103169, - [SMALL_STATE(3368)] = 103192, - [SMALL_STATE(3369)] = 103231, - [SMALL_STATE(3370)] = 103254, - [SMALL_STATE(3371)] = 103277, - [SMALL_STATE(3372)] = 103314, - [SMALL_STATE(3373)] = 103335, - [SMALL_STATE(3374)] = 103358, - [SMALL_STATE(3375)] = 103381, - [SMALL_STATE(3376)] = 103404, - [SMALL_STATE(3377)] = 103427, - [SMALL_STATE(3378)] = 103448, - [SMALL_STATE(3379)] = 103471, - [SMALL_STATE(3380)] = 103494, - [SMALL_STATE(3381)] = 103521, - [SMALL_STATE(3382)] = 103542, - [SMALL_STATE(3383)] = 103579, - [SMALL_STATE(3384)] = 103602, - [SMALL_STATE(3385)] = 103625, - [SMALL_STATE(3386)] = 103648, - [SMALL_STATE(3387)] = 103669, - [SMALL_STATE(3388)] = 103690, - [SMALL_STATE(3389)] = 103711, - [SMALL_STATE(3390)] = 103734, - [SMALL_STATE(3391)] = 103755, - [SMALL_STATE(3392)] = 103776, - [SMALL_STATE(3393)] = 103799, - [SMALL_STATE(3394)] = 103820, - [SMALL_STATE(3395)] = 103841, - [SMALL_STATE(3396)] = 103868, - [SMALL_STATE(3397)] = 103907, - [SMALL_STATE(3398)] = 103928, - [SMALL_STATE(3399)] = 103949, - [SMALL_STATE(3400)] = 103970, - [SMALL_STATE(3401)] = 103993, - [SMALL_STATE(3402)] = 104014, - [SMALL_STATE(3403)] = 104051, - [SMALL_STATE(3404)] = 104072, - [SMALL_STATE(3405)] = 104106, - [SMALL_STATE(3406)] = 104142, - [SMALL_STATE(3407)] = 104166, - [SMALL_STATE(3408)] = 104190, - [SMALL_STATE(3409)] = 104216, - [SMALL_STATE(3410)] = 104242, - [SMALL_STATE(3411)] = 104268, - [SMALL_STATE(3412)] = 104294, - [SMALL_STATE(3413)] = 104328, - [SMALL_STATE(3414)] = 104364, - [SMALL_STATE(3415)] = 104388, - [SMALL_STATE(3416)] = 104412, - [SMALL_STATE(3417)] = 104438, - [SMALL_STATE(3418)] = 104464, - [SMALL_STATE(3419)] = 104494, - [SMALL_STATE(3420)] = 104518, - [SMALL_STATE(3421)] = 104542, - [SMALL_STATE(3422)] = 104578, - [SMALL_STATE(3423)] = 104602, - [SMALL_STATE(3424)] = 104634, - [SMALL_STATE(3425)] = 104664, - [SMALL_STATE(3426)] = 104686, - [SMALL_STATE(3427)] = 104710, - [SMALL_STATE(3428)] = 104736, - [SMALL_STATE(3429)] = 104762, - [SMALL_STATE(3430)] = 104788, - [SMALL_STATE(3431)] = 104824, - [SMALL_STATE(3432)] = 104848, - [SMALL_STATE(3433)] = 104872, - [SMALL_STATE(3434)] = 104904, - [SMALL_STATE(3435)] = 104930, - [SMALL_STATE(3436)] = 104956, - [SMALL_STATE(3437)] = 104988, - [SMALL_STATE(3438)] = 105022, - [SMALL_STATE(3439)] = 105054, - [SMALL_STATE(3440)] = 105086, - [SMALL_STATE(3441)] = 105112, - [SMALL_STATE(3442)] = 105134, - [SMALL_STATE(3443)] = 105164, - [SMALL_STATE(3444)] = 105199, - [SMALL_STATE(3445)] = 105222, - [SMALL_STATE(3446)] = 105247, - [SMALL_STATE(3447)] = 105270, - [SMALL_STATE(3448)] = 105291, - [SMALL_STATE(3449)] = 105314, - [SMALL_STATE(3450)] = 105335, - [SMALL_STATE(3451)] = 105366, - [SMALL_STATE(3452)] = 105389, - [SMALL_STATE(3453)] = 105422, - [SMALL_STATE(3454)] = 105455, - [SMALL_STATE(3455)] = 105488, - [SMALL_STATE(3456)] = 105521, - [SMALL_STATE(3457)] = 105552, - [SMALL_STATE(3458)] = 105583, - [SMALL_STATE(3459)] = 105604, - [SMALL_STATE(3460)] = 105635, - [SMALL_STATE(3461)] = 105668, - [SMALL_STATE(3462)] = 105701, - [SMALL_STATE(3463)] = 105726, - [SMALL_STATE(3464)] = 105751, - [SMALL_STATE(3465)] = 105772, - [SMALL_STATE(3466)] = 105795, - [SMALL_STATE(3467)] = 105816, - [SMALL_STATE(3468)] = 105837, - [SMALL_STATE(3469)] = 105866, - [SMALL_STATE(3470)] = 105887, - [SMALL_STATE(3471)] = 105908, - [SMALL_STATE(3472)] = 105941, - [SMALL_STATE(3473)] = 105974, - [SMALL_STATE(3474)] = 105995, - [SMALL_STATE(3475)] = 106028, - [SMALL_STATE(3476)] = 106049, - [SMALL_STATE(3477)] = 106082, - [SMALL_STATE(3478)] = 106107, - [SMALL_STATE(3479)] = 106140, - [SMALL_STATE(3480)] = 106173, - [SMALL_STATE(3481)] = 106198, - [SMALL_STATE(3482)] = 106223, - [SMALL_STATE(3483)] = 106256, - [SMALL_STATE(3484)] = 106289, - [SMALL_STATE(3485)] = 106320, - [SMALL_STATE(3486)] = 106355, - [SMALL_STATE(3487)] = 106376, - [SMALL_STATE(3488)] = 106397, - [SMALL_STATE(3489)] = 106428, - [SMALL_STATE(3490)] = 106449, - [SMALL_STATE(3491)] = 106470, - [SMALL_STATE(3492)] = 106501, - [SMALL_STATE(3493)] = 106522, - [SMALL_STATE(3494)] = 106555, - [SMALL_STATE(3495)] = 106588, - [SMALL_STATE(3496)] = 106609, - [SMALL_STATE(3497)] = 106634, - [SMALL_STATE(3498)] = 106667, - [SMALL_STATE(3499)] = 106700, - [SMALL_STATE(3500)] = 106731, - [SMALL_STATE(3501)] = 106764, - [SMALL_STATE(3502)] = 106797, - [SMALL_STATE(3503)] = 106828, - [SMALL_STATE(3504)] = 106861, - [SMALL_STATE(3505)] = 106894, - [SMALL_STATE(3506)] = 106925, - [SMALL_STATE(3507)] = 106958, - [SMALL_STATE(3508)] = 106991, - [SMALL_STATE(3509)] = 107022, - [SMALL_STATE(3510)] = 107055, - [SMALL_STATE(3511)] = 107088, - [SMALL_STATE(3512)] = 107119, - [SMALL_STATE(3513)] = 107152, - [SMALL_STATE(3514)] = 107185, - [SMALL_STATE(3515)] = 107216, - [SMALL_STATE(3516)] = 107249, - [SMALL_STATE(3517)] = 107282, - [SMALL_STATE(3518)] = 107313, - [SMALL_STATE(3519)] = 107346, - [SMALL_STATE(3520)] = 107379, - [SMALL_STATE(3521)] = 107410, - [SMALL_STATE(3522)] = 107443, - [SMALL_STATE(3523)] = 107476, - [SMALL_STATE(3524)] = 107507, - [SMALL_STATE(3525)] = 107540, - [SMALL_STATE(3526)] = 107573, - [SMALL_STATE(3527)] = 107604, - [SMALL_STATE(3528)] = 107635, - [SMALL_STATE(3529)] = 107666, - [SMALL_STATE(3530)] = 107697, - [SMALL_STATE(3531)] = 107728, - [SMALL_STATE(3532)] = 107759, - [SMALL_STATE(3533)] = 107790, - [SMALL_STATE(3534)] = 107811, - [SMALL_STATE(3535)] = 107834, - [SMALL_STATE(3536)] = 107859, - [SMALL_STATE(3537)] = 107886, - [SMALL_STATE(3538)] = 107911, - [SMALL_STATE(3539)] = 107934, - [SMALL_STATE(3540)] = 107955, - [SMALL_STATE(3541)] = 107976, - [SMALL_STATE(3542)] = 108007, - [SMALL_STATE(3543)] = 108029, - [SMALL_STATE(3544)] = 108057, - [SMALL_STATE(3545)] = 108081, - [SMALL_STATE(3546)] = 108109, - [SMALL_STATE(3547)] = 108137, - [SMALL_STATE(3548)] = 108163, - [SMALL_STATE(3549)] = 108191, - [SMALL_STATE(3550)] = 108219, - [SMALL_STATE(3551)] = 108239, - [SMALL_STATE(3552)] = 108265, - [SMALL_STATE(3553)] = 108293, - [SMALL_STATE(3554)] = 108321, - [SMALL_STATE(3555)] = 108341, - [SMALL_STATE(3556)] = 108369, - [SMALL_STATE(3557)] = 108393, - [SMALL_STATE(3558)] = 108421, - [SMALL_STATE(3559)] = 108449, - [SMALL_STATE(3560)] = 108471, - [SMALL_STATE(3561)] = 108493, - [SMALL_STATE(3562)] = 108521, - [SMALL_STATE(3563)] = 108549, - [SMALL_STATE(3564)] = 108571, - [SMALL_STATE(3565)] = 108599, - [SMALL_STATE(3566)] = 108627, - [SMALL_STATE(3567)] = 108649, - [SMALL_STATE(3568)] = 108673, - [SMALL_STATE(3569)] = 108691, - [SMALL_STATE(3570)] = 108719, - [SMALL_STATE(3571)] = 108747, - [SMALL_STATE(3572)] = 108775, - [SMALL_STATE(3573)] = 108803, - [SMALL_STATE(3574)] = 108823, - [SMALL_STATE(3575)] = 108843, - [SMALL_STATE(3576)] = 108871, - [SMALL_STATE(3577)] = 108899, - [SMALL_STATE(3578)] = 108927, - [SMALL_STATE(3579)] = 108955, - [SMALL_STATE(3580)] = 108983, - [SMALL_STATE(3581)] = 109005, - [SMALL_STATE(3582)] = 109033, - [SMALL_STATE(3583)] = 109063, - [SMALL_STATE(3584)] = 109083, - [SMALL_STATE(3585)] = 109111, - [SMALL_STATE(3586)] = 109139, - [SMALL_STATE(3587)] = 109159, - [SMALL_STATE(3588)] = 109181, - [SMALL_STATE(3589)] = 109201, - [SMALL_STATE(3590)] = 109229, - [SMALL_STATE(3591)] = 109249, - [SMALL_STATE(3592)] = 109279, - [SMALL_STATE(3593)] = 109307, - [SMALL_STATE(3594)] = 109335, - [SMALL_STATE(3595)] = 109363, - [SMALL_STATE(3596)] = 109391, - [SMALL_STATE(3597)] = 109415, - [SMALL_STATE(3598)] = 109443, - [SMALL_STATE(3599)] = 109471, - [SMALL_STATE(3600)] = 109499, - [SMALL_STATE(3601)] = 109527, - [SMALL_STATE(3602)] = 109555, - [SMALL_STATE(3603)] = 109583, - [SMALL_STATE(3604)] = 109611, - [SMALL_STATE(3605)] = 109639, - [SMALL_STATE(3606)] = 109667, - [SMALL_STATE(3607)] = 109695, - [SMALL_STATE(3608)] = 109715, - [SMALL_STATE(3609)] = 109741, - [SMALL_STATE(3610)] = 109765, - [SMALL_STATE(3611)] = 109787, - [SMALL_STATE(3612)] = 109805, - [SMALL_STATE(3613)] = 109833, - [SMALL_STATE(3614)] = 109859, - [SMALL_STATE(3615)] = 109883, - [SMALL_STATE(3616)] = 109911, - [SMALL_STATE(3617)] = 109939, - [SMALL_STATE(3618)] = 109967, - [SMALL_STATE(3619)] = 109990, - [SMALL_STATE(3620)] = 110015, - [SMALL_STATE(3621)] = 110046, - [SMALL_STATE(3622)] = 110071, - [SMALL_STATE(3623)] = 110094, - [SMALL_STATE(3624)] = 110117, - [SMALL_STATE(3625)] = 110142, - [SMALL_STATE(3626)] = 110161, - [SMALL_STATE(3627)] = 110186, - [SMALL_STATE(3628)] = 110207, - [SMALL_STATE(3629)] = 110226, - [SMALL_STATE(3630)] = 110249, - [SMALL_STATE(3631)] = 110274, - [SMALL_STATE(3632)] = 110295, - [SMALL_STATE(3633)] = 110322, - [SMALL_STATE(3634)] = 110347, - [SMALL_STATE(3635)] = 110366, - [SMALL_STATE(3636)] = 110385, - [SMALL_STATE(3637)] = 110404, - [SMALL_STATE(3638)] = 110427, - [SMALL_STATE(3639)] = 110446, - [SMALL_STATE(3640)] = 110467, - [SMALL_STATE(3641)] = 110496, - [SMALL_STATE(3642)] = 110521, - [SMALL_STATE(3643)] = 110546, - [SMALL_STATE(3644)] = 110565, - [SMALL_STATE(3645)] = 110584, - [SMALL_STATE(3646)] = 110605, - [SMALL_STATE(3647)] = 110632, - [SMALL_STATE(3648)] = 110657, - [SMALL_STATE(3649)] = 110682, - [SMALL_STATE(3650)] = 110709, - [SMALL_STATE(3651)] = 110734, - [SMALL_STATE(3652)] = 110753, - [SMALL_STATE(3653)] = 110778, - [SMALL_STATE(3654)] = 110805, - [SMALL_STATE(3655)] = 110824, - [SMALL_STATE(3656)] = 110843, - [SMALL_STATE(3657)] = 110864, - [SMALL_STATE(3658)] = 110883, - [SMALL_STATE(3659)] = 110902, - [SMALL_STATE(3660)] = 110927, - [SMALL_STATE(3661)] = 110946, - [SMALL_STATE(3662)] = 110973, - [SMALL_STATE(3663)] = 111000, - [SMALL_STATE(3664)] = 111021, - [SMALL_STATE(3665)] = 111040, - [SMALL_STATE(3666)] = 111065, - [SMALL_STATE(3667)] = 111090, - [SMALL_STATE(3668)] = 111111, - [SMALL_STATE(3669)] = 111130, - [SMALL_STATE(3670)] = 111149, - [SMALL_STATE(3671)] = 111168, - [SMALL_STATE(3672)] = 111187, - [SMALL_STATE(3673)] = 111215, - [SMALL_STATE(3674)] = 111235, - [SMALL_STATE(3675)] = 111263, - [SMALL_STATE(3676)] = 111287, - [SMALL_STATE(3677)] = 111315, - [SMALL_STATE(3678)] = 111341, - [SMALL_STATE(3679)] = 111363, - [SMALL_STATE(3680)] = 111389, - [SMALL_STATE(3681)] = 111413, - [SMALL_STATE(3682)] = 111431, - [SMALL_STATE(3683)] = 111449, - [SMALL_STATE(3684)] = 111471, - [SMALL_STATE(3685)] = 111495, - [SMALL_STATE(3686)] = 111523, - [SMALL_STATE(3687)] = 111547, - [SMALL_STATE(3688)] = 111573, - [SMALL_STATE(3689)] = 111599, - [SMALL_STATE(3690)] = 111621, - [SMALL_STATE(3691)] = 111639, - [SMALL_STATE(3692)] = 111667, - [SMALL_STATE(3693)] = 111693, - [SMALL_STATE(3694)] = 111719, - [SMALL_STATE(3695)] = 111745, - [SMALL_STATE(3696)] = 111763, - [SMALL_STATE(3697)] = 111791, - [SMALL_STATE(3698)] = 111809, - [SMALL_STATE(3699)] = 111831, - [SMALL_STATE(3700)] = 111849, - [SMALL_STATE(3701)] = 111875, - [SMALL_STATE(3702)] = 111903, - [SMALL_STATE(3703)] = 111921, - [SMALL_STATE(3704)] = 111949, - [SMALL_STATE(3705)] = 111977, - [SMALL_STATE(3706)] = 112005, - [SMALL_STATE(3707)] = 112033, - [SMALL_STATE(3708)] = 112061, - [SMALL_STATE(3709)] = 112089, - [SMALL_STATE(3710)] = 112117, - [SMALL_STATE(3711)] = 112143, - [SMALL_STATE(3712)] = 112167, - [SMALL_STATE(3713)] = 112195, - [SMALL_STATE(3714)] = 112221, - [SMALL_STATE(3715)] = 112247, - [SMALL_STATE(3716)] = 112273, - [SMALL_STATE(3717)] = 112293, - [SMALL_STATE(3718)] = 112321, - [SMALL_STATE(3719)] = 112341, - [SMALL_STATE(3720)] = 112369, - [SMALL_STATE(3721)] = 112387, - [SMALL_STATE(3722)] = 112413, - [SMALL_STATE(3723)] = 112439, - [SMALL_STATE(3724)] = 112467, - [SMALL_STATE(3725)] = 112495, - [SMALL_STATE(3726)] = 112521, - [SMALL_STATE(3727)] = 112549, - [SMALL_STATE(3728)] = 112577, - [SMALL_STATE(3729)] = 112599, - [SMALL_STATE(3730)] = 112627, - [SMALL_STATE(3731)] = 112655, - [SMALL_STATE(3732)] = 112677, - [SMALL_STATE(3733)] = 112699, - [SMALL_STATE(3734)] = 112721, - [SMALL_STATE(3735)] = 112749, - [SMALL_STATE(3736)] = 112773, - [SMALL_STATE(3737)] = 112791, - [SMALL_STATE(3738)] = 112817, - [SMALL_STATE(3739)] = 112835, - [SMALL_STATE(3740)] = 112859, - [SMALL_STATE(3741)] = 112877, - [SMALL_STATE(3742)] = 112899, - [SMALL_STATE(3743)] = 112925, - [SMALL_STATE(3744)] = 112951, - [SMALL_STATE(3745)] = 112979, - [SMALL_STATE(3746)] = 113007, - [SMALL_STATE(3747)] = 113035, - [SMALL_STATE(3748)] = 113063, - [SMALL_STATE(3749)] = 113091, - [SMALL_STATE(3750)] = 113109, - [SMALL_STATE(3751)] = 113137, - [SMALL_STATE(3752)] = 113165, - [SMALL_STATE(3753)] = 113193, - [SMALL_STATE(3754)] = 113221, - [SMALL_STATE(3755)] = 113249, - [SMALL_STATE(3756)] = 113277, - [SMALL_STATE(3757)] = 113305, - [SMALL_STATE(3758)] = 113333, - [SMALL_STATE(3759)] = 113353, - [SMALL_STATE(3760)] = 113379, - [SMALL_STATE(3761)] = 113399, - [SMALL_STATE(3762)] = 113419, - [SMALL_STATE(3763)] = 113439, - [SMALL_STATE(3764)] = 113465, - [SMALL_STATE(3765)] = 113489, - [SMALL_STATE(3766)] = 113509, - [SMALL_STATE(3767)] = 113537, - [SMALL_STATE(3768)] = 113565, - [SMALL_STATE(3769)] = 113593, - [SMALL_STATE(3770)] = 113621, - [SMALL_STATE(3771)] = 113645, - [SMALL_STATE(3772)] = 113669, - [SMALL_STATE(3773)] = 113691, - [SMALL_STATE(3774)] = 113717, - [SMALL_STATE(3775)] = 113739, - [SMALL_STATE(3776)] = 113767, - [SMALL_STATE(3777)] = 113785, - [SMALL_STATE(3778)] = 113807, - [SMALL_STATE(3779)] = 113835, - [SMALL_STATE(3780)] = 113863, - [SMALL_STATE(3781)] = 113891, - [SMALL_STATE(3782)] = 113919, - [SMALL_STATE(3783)] = 113942, - [SMALL_STATE(3784)] = 113967, - [SMALL_STATE(3785)] = 113990, - [SMALL_STATE(3786)] = 114015, - [SMALL_STATE(3787)] = 114036, - [SMALL_STATE(3788)] = 114059, - [SMALL_STATE(3789)] = 114080, - [SMALL_STATE(3790)] = 114103, - [SMALL_STATE(3791)] = 114124, - [SMALL_STATE(3792)] = 114147, - [SMALL_STATE(3793)] = 114170, - [SMALL_STATE(3794)] = 114193, - [SMALL_STATE(3795)] = 114214, - [SMALL_STATE(3796)] = 114237, - [SMALL_STATE(3797)] = 114262, - [SMALL_STATE(3798)] = 114277, - [SMALL_STATE(3799)] = 114300, - [SMALL_STATE(3800)] = 114325, - [SMALL_STATE(3801)] = 114350, - [SMALL_STATE(3802)] = 114373, - [SMALL_STATE(3803)] = 114398, - [SMALL_STATE(3804)] = 114421, - [SMALL_STATE(3805)] = 114444, - [SMALL_STATE(3806)] = 114467, - [SMALL_STATE(3807)] = 114490, - [SMALL_STATE(3808)] = 114511, - [SMALL_STATE(3809)] = 114530, - [SMALL_STATE(3810)] = 114553, - [SMALL_STATE(3811)] = 114568, - [SMALL_STATE(3812)] = 114583, - [SMALL_STATE(3813)] = 114604, - [SMALL_STATE(3814)] = 114621, - [SMALL_STATE(3815)] = 114644, - [SMALL_STATE(3816)] = 114665, - [SMALL_STATE(3817)] = 114688, - [SMALL_STATE(3818)] = 114711, - [SMALL_STATE(3819)] = 114734, - [SMALL_STATE(3820)] = 114757, - [SMALL_STATE(3821)] = 114780, - [SMALL_STATE(3822)] = 114801, - [SMALL_STATE(3823)] = 114820, - [SMALL_STATE(3824)] = 114845, - [SMALL_STATE(3825)] = 114864, - [SMALL_STATE(3826)] = 114887, - [SMALL_STATE(3827)] = 114906, - [SMALL_STATE(3828)] = 114929, - [SMALL_STATE(3829)] = 114952, - [SMALL_STATE(3830)] = 114975, - [SMALL_STATE(3831)] = 114998, - [SMALL_STATE(3832)] = 115021, - [SMALL_STATE(3833)] = 115042, - [SMALL_STATE(3834)] = 115065, - [SMALL_STATE(3835)] = 115088, - [SMALL_STATE(3836)] = 115111, - [SMALL_STATE(3837)] = 115134, - [SMALL_STATE(3838)] = 115157, - [SMALL_STATE(3839)] = 115178, - [SMALL_STATE(3840)] = 115199, - [SMALL_STATE(3841)] = 115224, - [SMALL_STATE(3842)] = 115245, - [SMALL_STATE(3843)] = 115266, - [SMALL_STATE(3844)] = 115289, - [SMALL_STATE(3845)] = 115314, - [SMALL_STATE(3846)] = 115331, - [SMALL_STATE(3847)] = 115350, - [SMALL_STATE(3848)] = 115375, - [SMALL_STATE(3849)] = 115398, - [SMALL_STATE(3850)] = 115421, - [SMALL_STATE(3851)] = 115440, - [SMALL_STATE(3852)] = 115461, - [SMALL_STATE(3853)] = 115482, - [SMALL_STATE(3854)] = 115503, - [SMALL_STATE(3855)] = 115524, - [SMALL_STATE(3856)] = 115549, - [SMALL_STATE(3857)] = 115570, - [SMALL_STATE(3858)] = 115593, - [SMALL_STATE(3859)] = 115616, - [SMALL_STATE(3860)] = 115631, - [SMALL_STATE(3861)] = 115646, - [SMALL_STATE(3862)] = 115661, - [SMALL_STATE(3863)] = 115680, - [SMALL_STATE(3864)] = 115701, - [SMALL_STATE(3865)] = 115726, - [SMALL_STATE(3866)] = 115745, - [SMALL_STATE(3867)] = 115770, - [SMALL_STATE(3868)] = 115791, - [SMALL_STATE(3869)] = 115810, - [SMALL_STATE(3870)] = 115835, - [SMALL_STATE(3871)] = 115854, - [SMALL_STATE(3872)] = 115871, - [SMALL_STATE(3873)] = 115890, - [SMALL_STATE(3874)] = 115911, - [SMALL_STATE(3875)] = 115928, - [SMALL_STATE(3876)] = 115951, - [SMALL_STATE(3877)] = 115970, - [SMALL_STATE(3878)] = 115989, - [SMALL_STATE(3879)] = 116008, - [SMALL_STATE(3880)] = 116029, - [SMALL_STATE(3881)] = 116050, - [SMALL_STATE(3882)] = 116071, - [SMALL_STATE(3883)] = 116094, - [SMALL_STATE(3884)] = 116119, - [SMALL_STATE(3885)] = 116140, - [SMALL_STATE(3886)] = 116163, - [SMALL_STATE(3887)] = 116186, - [SMALL_STATE(3888)] = 116209, - [SMALL_STATE(3889)] = 116232, - [SMALL_STATE(3890)] = 116253, - [SMALL_STATE(3891)] = 116276, - [SMALL_STATE(3892)] = 116297, - [SMALL_STATE(3893)] = 116318, - [SMALL_STATE(3894)] = 116339, - [SMALL_STATE(3895)] = 116360, - [SMALL_STATE(3896)] = 116383, - [SMALL_STATE(3897)] = 116408, - [SMALL_STATE(3898)] = 116427, - [SMALL_STATE(3899)] = 116452, - [SMALL_STATE(3900)] = 116477, - [SMALL_STATE(3901)] = 116502, - [SMALL_STATE(3902)] = 116521, - [SMALL_STATE(3903)] = 116540, - [SMALL_STATE(3904)] = 116561, - [SMALL_STATE(3905)] = 116580, - [SMALL_STATE(3906)] = 116601, - [SMALL_STATE(3907)] = 116622, - [SMALL_STATE(3908)] = 116647, - [SMALL_STATE(3909)] = 116670, - [SMALL_STATE(3910)] = 116693, - [SMALL_STATE(3911)] = 116716, - [SMALL_STATE(3912)] = 116737, - [SMALL_STATE(3913)] = 116758, - [SMALL_STATE(3914)] = 116783, - [SMALL_STATE(3915)] = 116802, - [SMALL_STATE(3916)] = 116827, - [SMALL_STATE(3917)] = 116852, - [SMALL_STATE(3918)] = 116877, - [SMALL_STATE(3919)] = 116902, - [SMALL_STATE(3920)] = 116927, - [SMALL_STATE(3921)] = 116952, - [SMALL_STATE(3922)] = 116975, - [SMALL_STATE(3923)] = 116998, - [SMALL_STATE(3924)] = 117015, - [SMALL_STATE(3925)] = 117036, - [SMALL_STATE(3926)] = 117059, - [SMALL_STATE(3927)] = 117082, - [SMALL_STATE(3928)] = 117103, - [SMALL_STATE(3929)] = 117128, - [SMALL_STATE(3930)] = 117148, - [SMALL_STATE(3931)] = 117162, - [SMALL_STATE(3932)] = 117180, - [SMALL_STATE(3933)] = 117200, - [SMALL_STATE(3934)] = 117222, - [SMALL_STATE(3935)] = 117244, - [SMALL_STATE(3936)] = 117262, - [SMALL_STATE(3937)] = 117282, - [SMALL_STATE(3938)] = 117304, - [SMALL_STATE(3939)] = 117326, - [SMALL_STATE(3940)] = 117340, - [SMALL_STATE(3941)] = 117358, - [SMALL_STATE(3942)] = 117380, - [SMALL_STATE(3943)] = 117398, - [SMALL_STATE(3944)] = 117418, - [SMALL_STATE(3945)] = 117434, - [SMALL_STATE(3946)] = 117454, - [SMALL_STATE(3947)] = 117470, - [SMALL_STATE(3948)] = 117486, - [SMALL_STATE(3949)] = 117506, - [SMALL_STATE(3950)] = 117524, - [SMALL_STATE(3951)] = 117544, - [SMALL_STATE(3952)] = 117562, - [SMALL_STATE(3953)] = 117578, - [SMALL_STATE(3954)] = 117600, - [SMALL_STATE(3955)] = 117618, - [SMALL_STATE(3956)] = 117634, - [SMALL_STATE(3957)] = 117654, - [SMALL_STATE(3958)] = 117672, - [SMALL_STATE(3959)] = 117692, - [SMALL_STATE(3960)] = 117714, - [SMALL_STATE(3961)] = 117728, - [SMALL_STATE(3962)] = 117748, - [SMALL_STATE(3963)] = 117768, - [SMALL_STATE(3964)] = 117786, - [SMALL_STATE(3965)] = 117804, - [SMALL_STATE(3966)] = 117824, - [SMALL_STATE(3967)] = 117844, - [SMALL_STATE(3968)] = 117866, - [SMALL_STATE(3969)] = 117882, - [SMALL_STATE(3970)] = 117896, - [SMALL_STATE(3971)] = 117918, - [SMALL_STATE(3972)] = 117938, - [SMALL_STATE(3973)] = 117954, - [SMALL_STATE(3974)] = 117970, - [SMALL_STATE(3975)] = 117990, - [SMALL_STATE(3976)] = 118010, - [SMALL_STATE(3977)] = 118026, - [SMALL_STATE(3978)] = 118046, - [SMALL_STATE(3979)] = 118062, - [SMALL_STATE(3980)] = 118080, - [SMALL_STATE(3981)] = 118100, - [SMALL_STATE(3982)] = 118116, - [SMALL_STATE(3983)] = 118132, - [SMALL_STATE(3984)] = 118152, - [SMALL_STATE(3985)] = 118168, - [SMALL_STATE(3986)] = 118188, - [SMALL_STATE(3987)] = 118204, - [SMALL_STATE(3988)] = 118224, - [SMALL_STATE(3989)] = 118244, - [SMALL_STATE(3990)] = 118258, - [SMALL_STATE(3991)] = 118280, - [SMALL_STATE(3992)] = 118294, - [SMALL_STATE(3993)] = 118312, - [SMALL_STATE(3994)] = 118334, - [SMALL_STATE(3995)] = 118354, - [SMALL_STATE(3996)] = 118374, - [SMALL_STATE(3997)] = 118394, - [SMALL_STATE(3998)] = 118414, - [SMALL_STATE(3999)] = 118436, - [SMALL_STATE(4000)] = 118456, - [SMALL_STATE(4001)] = 118472, - [SMALL_STATE(4002)] = 118492, - [SMALL_STATE(4003)] = 118512, - [SMALL_STATE(4004)] = 118528, - [SMALL_STATE(4005)] = 118548, - [SMALL_STATE(4006)] = 118564, - [SMALL_STATE(4007)] = 118586, - [SMALL_STATE(4008)] = 118606, - [SMALL_STATE(4009)] = 118628, - [SMALL_STATE(4010)] = 118646, - [SMALL_STATE(4011)] = 118662, - [SMALL_STATE(4012)] = 118682, - [SMALL_STATE(4013)] = 118698, - [SMALL_STATE(4014)] = 118716, - [SMALL_STATE(4015)] = 118736, - [SMALL_STATE(4016)] = 118756, - [SMALL_STATE(4017)] = 118774, - [SMALL_STATE(4018)] = 118794, - [SMALL_STATE(4019)] = 118816, - [SMALL_STATE(4020)] = 118836, - [SMALL_STATE(4021)] = 118854, - [SMALL_STATE(4022)] = 118870, - [SMALL_STATE(4023)] = 118886, - [SMALL_STATE(4024)] = 118908, - [SMALL_STATE(4025)] = 118930, - [SMALL_STATE(4026)] = 118946, - [SMALL_STATE(4027)] = 118966, - [SMALL_STATE(4028)] = 118988, - [SMALL_STATE(4029)] = 119006, - [SMALL_STATE(4030)] = 119026, - [SMALL_STATE(4031)] = 119048, - [SMALL_STATE(4032)] = 119066, - [SMALL_STATE(4033)] = 119086, - [SMALL_STATE(4034)] = 119108, - [SMALL_STATE(4035)] = 119128, - [SMALL_STATE(4036)] = 119146, - [SMALL_STATE(4037)] = 119168, - [SMALL_STATE(4038)] = 119186, - [SMALL_STATE(4039)] = 119208, - [SMALL_STATE(4040)] = 119224, - [SMALL_STATE(4041)] = 119244, - [SMALL_STATE(4042)] = 119266, - [SMALL_STATE(4043)] = 119288, - [SMALL_STATE(4044)] = 119304, - [SMALL_STATE(4045)] = 119324, - [SMALL_STATE(4046)] = 119342, - [SMALL_STATE(4047)] = 119362, - [SMALL_STATE(4048)] = 119376, - [SMALL_STATE(4049)] = 119398, - [SMALL_STATE(4050)] = 119418, - [SMALL_STATE(4051)] = 119434, - [SMALL_STATE(4052)] = 119456, - [SMALL_STATE(4053)] = 119474, - [SMALL_STATE(4054)] = 119494, - [SMALL_STATE(4055)] = 119514, - [SMALL_STATE(4056)] = 119536, - [SMALL_STATE(4057)] = 119556, - [SMALL_STATE(4058)] = 119576, - [SMALL_STATE(4059)] = 119596, - [SMALL_STATE(4060)] = 119616, - [SMALL_STATE(4061)] = 119632, - [SMALL_STATE(4062)] = 119654, - [SMALL_STATE(4063)] = 119676, - [SMALL_STATE(4064)] = 119696, - [SMALL_STATE(4065)] = 119716, - [SMALL_STATE(4066)] = 119738, - [SMALL_STATE(4067)] = 119756, - [SMALL_STATE(4068)] = 119778, - [SMALL_STATE(4069)] = 119800, - [SMALL_STATE(4070)] = 119816, - [SMALL_STATE(4071)] = 119838, - [SMALL_STATE(4072)] = 119858, - [SMALL_STATE(4073)] = 119878, - [SMALL_STATE(4074)] = 119900, - [SMALL_STATE(4075)] = 119916, - [SMALL_STATE(4076)] = 119934, - [SMALL_STATE(4077)] = 119956, - [SMALL_STATE(4078)] = 119978, - [SMALL_STATE(4079)] = 120000, - [SMALL_STATE(4080)] = 120020, - [SMALL_STATE(4081)] = 120042, - [SMALL_STATE(4082)] = 120060, - [SMALL_STATE(4083)] = 120078, - [SMALL_STATE(4084)] = 120092, - [SMALL_STATE(4085)] = 120110, - [SMALL_STATE(4086)] = 120132, - [SMALL_STATE(4087)] = 120154, - [SMALL_STATE(4088)] = 120170, - [SMALL_STATE(4089)] = 120190, - [SMALL_STATE(4090)] = 120203, - [SMALL_STATE(4091)] = 120216, - [SMALL_STATE(4092)] = 120229, - [SMALL_STATE(4093)] = 120248, - [SMALL_STATE(4094)] = 120267, - [SMALL_STATE(4095)] = 120280, - [SMALL_STATE(4096)] = 120295, - [SMALL_STATE(4097)] = 120308, - [SMALL_STATE(4098)] = 120323, - [SMALL_STATE(4099)] = 120340, - [SMALL_STATE(4100)] = 120353, - [SMALL_STATE(4101)] = 120366, - [SMALL_STATE(4102)] = 120379, - [SMALL_STATE(4103)] = 120392, - [SMALL_STATE(4104)] = 120405, - [SMALL_STATE(4105)] = 120418, - [SMALL_STATE(4106)] = 120431, - [SMALL_STATE(4107)] = 120444, - [SMALL_STATE(4108)] = 120463, - [SMALL_STATE(4109)] = 120478, - [SMALL_STATE(4110)] = 120497, - [SMALL_STATE(4111)] = 120516, - [SMALL_STATE(4112)] = 120529, - [SMALL_STATE(4113)] = 120544, - [SMALL_STATE(4114)] = 120561, - [SMALL_STATE(4115)] = 120576, - [SMALL_STATE(4116)] = 120591, - [SMALL_STATE(4117)] = 120606, - [SMALL_STATE(4118)] = 120621, - [SMALL_STATE(4119)] = 120636, - [SMALL_STATE(4120)] = 120651, - [SMALL_STATE(4121)] = 120668, - [SMALL_STATE(4122)] = 120685, - [SMALL_STATE(4123)] = 120704, - [SMALL_STATE(4124)] = 120723, - [SMALL_STATE(4125)] = 120736, - [SMALL_STATE(4126)] = 120749, - [SMALL_STATE(4127)] = 120762, - [SMALL_STATE(4128)] = 120775, - [SMALL_STATE(4129)] = 120792, - [SMALL_STATE(4130)] = 120805, - [SMALL_STATE(4131)] = 120818, - [SMALL_STATE(4132)] = 120833, - [SMALL_STATE(4133)] = 120850, - [SMALL_STATE(4134)] = 120869, - [SMALL_STATE(4135)] = 120886, - [SMALL_STATE(4136)] = 120903, - [SMALL_STATE(4137)] = 120918, - [SMALL_STATE(4138)] = 120933, - [SMALL_STATE(4139)] = 120946, - [SMALL_STATE(4140)] = 120961, - [SMALL_STATE(4141)] = 120980, - [SMALL_STATE(4142)] = 120999, - [SMALL_STATE(4143)] = 121014, - [SMALL_STATE(4144)] = 121029, - [SMALL_STATE(4145)] = 121048, - [SMALL_STATE(4146)] = 121063, - [SMALL_STATE(4147)] = 121080, - [SMALL_STATE(4148)] = 121097, - [SMALL_STATE(4149)] = 121114, - [SMALL_STATE(4150)] = 121131, - [SMALL_STATE(4151)] = 121148, - [SMALL_STATE(4152)] = 121163, - [SMALL_STATE(4153)] = 121178, - [SMALL_STATE(4154)] = 121191, - [SMALL_STATE(4155)] = 121206, - [SMALL_STATE(4156)] = 121223, - [SMALL_STATE(4157)] = 121242, - [SMALL_STATE(4158)] = 121255, - [SMALL_STATE(4159)] = 121274, - [SMALL_STATE(4160)] = 121289, - [SMALL_STATE(4161)] = 121302, - [SMALL_STATE(4162)] = 121315, - [SMALL_STATE(4163)] = 121328, - [SMALL_STATE(4164)] = 121341, - [SMALL_STATE(4165)] = 121360, - [SMALL_STATE(4166)] = 121379, - [SMALL_STATE(4167)] = 121394, - [SMALL_STATE(4168)] = 121407, - [SMALL_STATE(4169)] = 121426, - [SMALL_STATE(4170)] = 121439, - [SMALL_STATE(4171)] = 121452, - [SMALL_STATE(4172)] = 121471, - [SMALL_STATE(4173)] = 121484, - [SMALL_STATE(4174)] = 121497, - [SMALL_STATE(4175)] = 121510, - [SMALL_STATE(4176)] = 121523, - [SMALL_STATE(4177)] = 121538, - [SMALL_STATE(4178)] = 121555, - [SMALL_STATE(4179)] = 121570, - [SMALL_STATE(4180)] = 121587, - [SMALL_STATE(4181)] = 121600, - [SMALL_STATE(4182)] = 121613, - [SMALL_STATE(4183)] = 121626, - [SMALL_STATE(4184)] = 121639, - [SMALL_STATE(4185)] = 121652, - [SMALL_STATE(4186)] = 121669, - [SMALL_STATE(4187)] = 121682, - [SMALL_STATE(4188)] = 121695, - [SMALL_STATE(4189)] = 121714, - [SMALL_STATE(4190)] = 121731, - [SMALL_STATE(4191)] = 121748, - [SMALL_STATE(4192)] = 121761, - [SMALL_STATE(4193)] = 121780, - [SMALL_STATE(4194)] = 121799, - [SMALL_STATE(4195)] = 121812, - [SMALL_STATE(4196)] = 121827, - [SMALL_STATE(4197)] = 121844, - [SMALL_STATE(4198)] = 121863, - [SMALL_STATE(4199)] = 121882, - [SMALL_STATE(4200)] = 121901, - [SMALL_STATE(4201)] = 121920, - [SMALL_STATE(4202)] = 121939, - [SMALL_STATE(4203)] = 121958, - [SMALL_STATE(4204)] = 121975, - [SMALL_STATE(4205)] = 121990, - [SMALL_STATE(4206)] = 122009, - [SMALL_STATE(4207)] = 122022, - [SMALL_STATE(4208)] = 122035, - [SMALL_STATE(4209)] = 122048, - [SMALL_STATE(4210)] = 122061, - [SMALL_STATE(4211)] = 122074, - [SMALL_STATE(4212)] = 122087, - [SMALL_STATE(4213)] = 122102, - [SMALL_STATE(4214)] = 122115, - [SMALL_STATE(4215)] = 122128, - [SMALL_STATE(4216)] = 122147, - [SMALL_STATE(4217)] = 122166, - [SMALL_STATE(4218)] = 122179, - [SMALL_STATE(4219)] = 122192, - [SMALL_STATE(4220)] = 122205, - [SMALL_STATE(4221)] = 122218, - [SMALL_STATE(4222)] = 122231, - [SMALL_STATE(4223)] = 122244, - [SMALL_STATE(4224)] = 122257, - [SMALL_STATE(4225)] = 122276, - [SMALL_STATE(4226)] = 122295, - [SMALL_STATE(4227)] = 122314, - [SMALL_STATE(4228)] = 122329, - [SMALL_STATE(4229)] = 122348, - [SMALL_STATE(4230)] = 122367, - [SMALL_STATE(4231)] = 122386, - [SMALL_STATE(4232)] = 122405, - [SMALL_STATE(4233)] = 122424, - [SMALL_STATE(4234)] = 122443, - [SMALL_STATE(4235)] = 122458, - [SMALL_STATE(4236)] = 122477, - [SMALL_STATE(4237)] = 122492, - [SMALL_STATE(4238)] = 122505, - [SMALL_STATE(4239)] = 122518, - [SMALL_STATE(4240)] = 122531, - [SMALL_STATE(4241)] = 122544, - [SMALL_STATE(4242)] = 122563, - [SMALL_STATE(4243)] = 122576, - [SMALL_STATE(4244)] = 122589, - [SMALL_STATE(4245)] = 122602, - [SMALL_STATE(4246)] = 122621, - [SMALL_STATE(4247)] = 122640, - [SMALL_STATE(4248)] = 122653, - [SMALL_STATE(4249)] = 122668, - [SMALL_STATE(4250)] = 122683, - [SMALL_STATE(4251)] = 122700, - [SMALL_STATE(4252)] = 122713, - [SMALL_STATE(4253)] = 122726, - [SMALL_STATE(4254)] = 122741, - [SMALL_STATE(4255)] = 122756, - [SMALL_STATE(4256)] = 122771, - [SMALL_STATE(4257)] = 122786, - [SMALL_STATE(4258)] = 122805, - [SMALL_STATE(4259)] = 122818, - [SMALL_STATE(4260)] = 122837, - [SMALL_STATE(4261)] = 122850, - [SMALL_STATE(4262)] = 122863, - [SMALL_STATE(4263)] = 122876, - [SMALL_STATE(4264)] = 122889, - [SMALL_STATE(4265)] = 122902, - [SMALL_STATE(4266)] = 122921, - [SMALL_STATE(4267)] = 122940, - [SMALL_STATE(4268)] = 122959, - [SMALL_STATE(4269)] = 122972, - [SMALL_STATE(4270)] = 122989, - [SMALL_STATE(4271)] = 123002, - [SMALL_STATE(4272)] = 123015, - [SMALL_STATE(4273)] = 123028, - [SMALL_STATE(4274)] = 123043, - [SMALL_STATE(4275)] = 123056, - [SMALL_STATE(4276)] = 123069, - [SMALL_STATE(4277)] = 123082, - [SMALL_STATE(4278)] = 123095, - [SMALL_STATE(4279)] = 123108, - [SMALL_STATE(4280)] = 123121, - [SMALL_STATE(4281)] = 123136, - [SMALL_STATE(4282)] = 123151, - [SMALL_STATE(4283)] = 123166, - [SMALL_STATE(4284)] = 123179, - [SMALL_STATE(4285)] = 123192, - [SMALL_STATE(4286)] = 123207, - [SMALL_STATE(4287)] = 123220, - [SMALL_STATE(4288)] = 123233, - [SMALL_STATE(4289)] = 123246, - [SMALL_STATE(4290)] = 123261, - [SMALL_STATE(4291)] = 123280, - [SMALL_STATE(4292)] = 123293, - [SMALL_STATE(4293)] = 123308, - [SMALL_STATE(4294)] = 123323, - [SMALL_STATE(4295)] = 123338, - [SMALL_STATE(4296)] = 123355, - [SMALL_STATE(4297)] = 123374, - [SMALL_STATE(4298)] = 123387, - [SMALL_STATE(4299)] = 123402, - [SMALL_STATE(4300)] = 123415, - [SMALL_STATE(4301)] = 123428, - [SMALL_STATE(4302)] = 123443, - [SMALL_STATE(4303)] = 123456, - [SMALL_STATE(4304)] = 123469, - [SMALL_STATE(4305)] = 123482, - [SMALL_STATE(4306)] = 123495, - [SMALL_STATE(4307)] = 123508, - [SMALL_STATE(4308)] = 123521, - [SMALL_STATE(4309)] = 123534, - [SMALL_STATE(4310)] = 123547, - [SMALL_STATE(4311)] = 123560, - [SMALL_STATE(4312)] = 123579, - [SMALL_STATE(4313)] = 123592, - [SMALL_STATE(4314)] = 123609, - [SMALL_STATE(4315)] = 123622, - [SMALL_STATE(4316)] = 123639, - [SMALL_STATE(4317)] = 123652, - [SMALL_STATE(4318)] = 123665, - [SMALL_STATE(4319)] = 123678, - [SMALL_STATE(4320)] = 123695, - [SMALL_STATE(4321)] = 123712, - [SMALL_STATE(4322)] = 123729, - [SMALL_STATE(4323)] = 123746, - [SMALL_STATE(4324)] = 123759, - [SMALL_STATE(4325)] = 123772, - [SMALL_STATE(4326)] = 123785, - [SMALL_STATE(4327)] = 123798, - [SMALL_STATE(4328)] = 123811, - [SMALL_STATE(4329)] = 123824, - [SMALL_STATE(4330)] = 123837, - [SMALL_STATE(4331)] = 123850, - [SMALL_STATE(4332)] = 123865, - [SMALL_STATE(4333)] = 123880, - [SMALL_STATE(4334)] = 123893, - [SMALL_STATE(4335)] = 123906, - [SMALL_STATE(4336)] = 123919, - [SMALL_STATE(4337)] = 123932, - [SMALL_STATE(4338)] = 123945, - [SMALL_STATE(4339)] = 123960, - [SMALL_STATE(4340)] = 123973, - [SMALL_STATE(4341)] = 123986, - [SMALL_STATE(4342)] = 124003, - [SMALL_STATE(4343)] = 124016, - [SMALL_STATE(4344)] = 124029, - [SMALL_STATE(4345)] = 124042, - [SMALL_STATE(4346)] = 124055, - [SMALL_STATE(4347)] = 124068, - [SMALL_STATE(4348)] = 124083, - [SMALL_STATE(4349)] = 124098, - [SMALL_STATE(4350)] = 124111, - [SMALL_STATE(4351)] = 124124, - [SMALL_STATE(4352)] = 124137, - [SMALL_STATE(4353)] = 124150, - [SMALL_STATE(4354)] = 124165, - [SMALL_STATE(4355)] = 124180, - [SMALL_STATE(4356)] = 124197, - [SMALL_STATE(4357)] = 124216, - [SMALL_STATE(4358)] = 124235, - [SMALL_STATE(4359)] = 124254, - [SMALL_STATE(4360)] = 124267, - [SMALL_STATE(4361)] = 124284, - [SMALL_STATE(4362)] = 124299, - [SMALL_STATE(4363)] = 124312, - [SMALL_STATE(4364)] = 124325, - [SMALL_STATE(4365)] = 124344, - [SMALL_STATE(4366)] = 124363, - [SMALL_STATE(4367)] = 124380, - [SMALL_STATE(4368)] = 124399, - [SMALL_STATE(4369)] = 124414, - [SMALL_STATE(4370)] = 124427, - [SMALL_STATE(4371)] = 124440, - [SMALL_STATE(4372)] = 124459, - [SMALL_STATE(4373)] = 124474, - [SMALL_STATE(4374)] = 124493, - [SMALL_STATE(4375)] = 124510, - [SMALL_STATE(4376)] = 124527, - [SMALL_STATE(4377)] = 124542, - [SMALL_STATE(4378)] = 124557, - [SMALL_STATE(4379)] = 124570, - [SMALL_STATE(4380)] = 124589, - [SMALL_STATE(4381)] = 124608, - [SMALL_STATE(4382)] = 124621, - [SMALL_STATE(4383)] = 124638, - [SMALL_STATE(4384)] = 124653, - [SMALL_STATE(4385)] = 124668, - [SMALL_STATE(4386)] = 124681, - [SMALL_STATE(4387)] = 124700, - [SMALL_STATE(4388)] = 124717, - [SMALL_STATE(4389)] = 124734, - [SMALL_STATE(4390)] = 124751, - [SMALL_STATE(4391)] = 124770, - [SMALL_STATE(4392)] = 124789, - [SMALL_STATE(4393)] = 124808, - [SMALL_STATE(4394)] = 124823, - [SMALL_STATE(4395)] = 124838, - [SMALL_STATE(4396)] = 124857, - [SMALL_STATE(4397)] = 124876, - [SMALL_STATE(4398)] = 124895, - [SMALL_STATE(4399)] = 124910, - [SMALL_STATE(4400)] = 124926, - [SMALL_STATE(4401)] = 124942, - [SMALL_STATE(4402)] = 124958, - [SMALL_STATE(4403)] = 124974, - [SMALL_STATE(4404)] = 124990, - [SMALL_STATE(4405)] = 125004, - [SMALL_STATE(4406)] = 125018, - [SMALL_STATE(4407)] = 125034, - [SMALL_STATE(4408)] = 125050, - [SMALL_STATE(4409)] = 125066, - [SMALL_STATE(4410)] = 125082, - [SMALL_STATE(4411)] = 125096, - [SMALL_STATE(4412)] = 125108, - [SMALL_STATE(4413)] = 125120, - [SMALL_STATE(4414)] = 125132, - [SMALL_STATE(4415)] = 125144, - [SMALL_STATE(4416)] = 125156, - [SMALL_STATE(4417)] = 125168, - [SMALL_STATE(4418)] = 125180, - [SMALL_STATE(4419)] = 125196, - [SMALL_STATE(4420)] = 125212, - [SMALL_STATE(4421)] = 125224, - [SMALL_STATE(4422)] = 125240, - [SMALL_STATE(4423)] = 125254, - [SMALL_STATE(4424)] = 125268, - [SMALL_STATE(4425)] = 125280, - [SMALL_STATE(4426)] = 125292, - [SMALL_STATE(4427)] = 125308, - [SMALL_STATE(4428)] = 125324, - [SMALL_STATE(4429)] = 125336, - [SMALL_STATE(4430)] = 125348, - [SMALL_STATE(4431)] = 125360, - [SMALL_STATE(4432)] = 125376, - [SMALL_STATE(4433)] = 125392, - [SMALL_STATE(4434)] = 125404, - [SMALL_STATE(4435)] = 125420, - [SMALL_STATE(4436)] = 125434, - [SMALL_STATE(4437)] = 125446, - [SMALL_STATE(4438)] = 125458, - [SMALL_STATE(4439)] = 125470, - [SMALL_STATE(4440)] = 125484, - [SMALL_STATE(4441)] = 125500, - [SMALL_STATE(4442)] = 125512, - [SMALL_STATE(4443)] = 125524, - [SMALL_STATE(4444)] = 125540, - [SMALL_STATE(4445)] = 125556, - [SMALL_STATE(4446)] = 125568, - [SMALL_STATE(4447)] = 125580, - [SMALL_STATE(4448)] = 125596, - [SMALL_STATE(4449)] = 125610, - [SMALL_STATE(4450)] = 125622, - [SMALL_STATE(4451)] = 125636, - [SMALL_STATE(4452)] = 125652, - [SMALL_STATE(4453)] = 125668, - [SMALL_STATE(4454)] = 125680, - [SMALL_STATE(4455)] = 125696, - [SMALL_STATE(4456)] = 125712, - [SMALL_STATE(4457)] = 125724, - [SMALL_STATE(4458)] = 125740, - [SMALL_STATE(4459)] = 125752, - [SMALL_STATE(4460)] = 125766, - [SMALL_STATE(4461)] = 125780, - [SMALL_STATE(4462)] = 125796, - [SMALL_STATE(4463)] = 125812, - [SMALL_STATE(4464)] = 125824, - [SMALL_STATE(4465)] = 125840, - [SMALL_STATE(4466)] = 125852, - [SMALL_STATE(4467)] = 125868, - [SMALL_STATE(4468)] = 125884, - [SMALL_STATE(4469)] = 125898, - [SMALL_STATE(4470)] = 125910, - [SMALL_STATE(4471)] = 125922, - [SMALL_STATE(4472)] = 125938, - [SMALL_STATE(4473)] = 125950, - [SMALL_STATE(4474)] = 125966, - [SMALL_STATE(4475)] = 125982, - [SMALL_STATE(4476)] = 125998, - [SMALL_STATE(4477)] = 126014, - [SMALL_STATE(4478)] = 126030, - [SMALL_STATE(4479)] = 126042, - [SMALL_STATE(4480)] = 126054, - [SMALL_STATE(4481)] = 126070, - [SMALL_STATE(4482)] = 126082, - [SMALL_STATE(4483)] = 126096, - [SMALL_STATE(4484)] = 126110, - [SMALL_STATE(4485)] = 126126, - [SMALL_STATE(4486)] = 126140, - [SMALL_STATE(4487)] = 126154, - [SMALL_STATE(4488)] = 126166, - [SMALL_STATE(4489)] = 126178, - [SMALL_STATE(4490)] = 126194, - [SMALL_STATE(4491)] = 126206, - [SMALL_STATE(4492)] = 126218, - [SMALL_STATE(4493)] = 126234, - [SMALL_STATE(4494)] = 126250, - [SMALL_STATE(4495)] = 126262, - [SMALL_STATE(4496)] = 126274, - [SMALL_STATE(4497)] = 126286, - [SMALL_STATE(4498)] = 126298, - [SMALL_STATE(4499)] = 126310, - [SMALL_STATE(4500)] = 126326, - [SMALL_STATE(4501)] = 126338, - [SMALL_STATE(4502)] = 126354, - [SMALL_STATE(4503)] = 126370, - [SMALL_STATE(4504)] = 126382, - [SMALL_STATE(4505)] = 126394, - [SMALL_STATE(4506)] = 126406, - [SMALL_STATE(4507)] = 126418, - [SMALL_STATE(4508)] = 126434, - [SMALL_STATE(4509)] = 126446, - [SMALL_STATE(4510)] = 126462, - [SMALL_STATE(4511)] = 126474, - [SMALL_STATE(4512)] = 126486, - [SMALL_STATE(4513)] = 126502, - [SMALL_STATE(4514)] = 126518, - [SMALL_STATE(4515)] = 126534, - [SMALL_STATE(4516)] = 126550, - [SMALL_STATE(4517)] = 126562, - [SMALL_STATE(4518)] = 126578, - [SMALL_STATE(4519)] = 126594, - [SMALL_STATE(4520)] = 126608, - [SMALL_STATE(4521)] = 126624, - [SMALL_STATE(4522)] = 126640, - [SMALL_STATE(4523)] = 126654, - [SMALL_STATE(4524)] = 126668, - [SMALL_STATE(4525)] = 126684, - [SMALL_STATE(4526)] = 126698, - [SMALL_STATE(4527)] = 126712, - [SMALL_STATE(4528)] = 126728, - [SMALL_STATE(4529)] = 126742, - [SMALL_STATE(4530)] = 126756, - [SMALL_STATE(4531)] = 126770, - [SMALL_STATE(4532)] = 126786, - [SMALL_STATE(4533)] = 126800, - [SMALL_STATE(4534)] = 126814, - [SMALL_STATE(4535)] = 126826, - [SMALL_STATE(4536)] = 126838, - [SMALL_STATE(4537)] = 126854, - [SMALL_STATE(4538)] = 126866, - [SMALL_STATE(4539)] = 126882, - [SMALL_STATE(4540)] = 126894, - [SMALL_STATE(4541)] = 126906, - [SMALL_STATE(4542)] = 126918, - [SMALL_STATE(4543)] = 126932, - [SMALL_STATE(4544)] = 126944, - [SMALL_STATE(4545)] = 126960, - [SMALL_STATE(4546)] = 126972, - [SMALL_STATE(4547)] = 126984, - [SMALL_STATE(4548)] = 126996, - [SMALL_STATE(4549)] = 127010, - [SMALL_STATE(4550)] = 127026, - [SMALL_STATE(4551)] = 127042, - [SMALL_STATE(4552)] = 127054, - [SMALL_STATE(4553)] = 127066, - [SMALL_STATE(4554)] = 127078, - [SMALL_STATE(4555)] = 127090, - [SMALL_STATE(4556)] = 127106, - [SMALL_STATE(4557)] = 127122, - [SMALL_STATE(4558)] = 127134, - [SMALL_STATE(4559)] = 127148, - [SMALL_STATE(4560)] = 127160, - [SMALL_STATE(4561)] = 127172, - [SMALL_STATE(4562)] = 127184, - [SMALL_STATE(4563)] = 127200, - [SMALL_STATE(4564)] = 127214, - [SMALL_STATE(4565)] = 127226, - [SMALL_STATE(4566)] = 127240, - [SMALL_STATE(4567)] = 127256, - [SMALL_STATE(4568)] = 127272, - [SMALL_STATE(4569)] = 127286, - [SMALL_STATE(4570)] = 127298, - [SMALL_STATE(4571)] = 127312, - [SMALL_STATE(4572)] = 127326, - [SMALL_STATE(4573)] = 127338, - [SMALL_STATE(4574)] = 127350, - [SMALL_STATE(4575)] = 127364, - [SMALL_STATE(4576)] = 127378, - [SMALL_STATE(4577)] = 127394, - [SMALL_STATE(4578)] = 127406, - [SMALL_STATE(4579)] = 127418, - [SMALL_STATE(4580)] = 127430, - [SMALL_STATE(4581)] = 127442, - [SMALL_STATE(4582)] = 127456, - [SMALL_STATE(4583)] = 127468, - [SMALL_STATE(4584)] = 127480, - [SMALL_STATE(4585)] = 127492, - [SMALL_STATE(4586)] = 127506, - [SMALL_STATE(4587)] = 127518, - [SMALL_STATE(4588)] = 127530, - [SMALL_STATE(4589)] = 127544, - [SMALL_STATE(4590)] = 127558, - [SMALL_STATE(4591)] = 127570, - [SMALL_STATE(4592)] = 127586, - [SMALL_STATE(4593)] = 127598, - [SMALL_STATE(4594)] = 127610, - [SMALL_STATE(4595)] = 127622, - [SMALL_STATE(4596)] = 127636, - [SMALL_STATE(4597)] = 127650, - [SMALL_STATE(4598)] = 127662, - [SMALL_STATE(4599)] = 127674, - [SMALL_STATE(4600)] = 127686, - [SMALL_STATE(4601)] = 127700, - [SMALL_STATE(4602)] = 127712, - [SMALL_STATE(4603)] = 127726, - [SMALL_STATE(4604)] = 127742, - [SMALL_STATE(4605)] = 127756, - [SMALL_STATE(4606)] = 127768, - [SMALL_STATE(4607)] = 127780, - [SMALL_STATE(4608)] = 127792, - [SMALL_STATE(4609)] = 127804, - [SMALL_STATE(4610)] = 127820, - [SMALL_STATE(4611)] = 127832, - [SMALL_STATE(4612)] = 127848, - [SMALL_STATE(4613)] = 127862, - [SMALL_STATE(4614)] = 127878, - [SMALL_STATE(4615)] = 127892, - [SMALL_STATE(4616)] = 127906, - [SMALL_STATE(4617)] = 127922, - [SMALL_STATE(4618)] = 127934, - [SMALL_STATE(4619)] = 127948, - [SMALL_STATE(4620)] = 127962, - [SMALL_STATE(4621)] = 127974, - [SMALL_STATE(4622)] = 127990, - [SMALL_STATE(4623)] = 128004, - [SMALL_STATE(4624)] = 128016, - [SMALL_STATE(4625)] = 128032, - [SMALL_STATE(4626)] = 128046, - [SMALL_STATE(4627)] = 128062, - [SMALL_STATE(4628)] = 128076, - [SMALL_STATE(4629)] = 128092, - [SMALL_STATE(4630)] = 128108, - [SMALL_STATE(4631)] = 128122, - [SMALL_STATE(4632)] = 128138, - [SMALL_STATE(4633)] = 128150, - [SMALL_STATE(4634)] = 128162, - [SMALL_STATE(4635)] = 128176, - [SMALL_STATE(4636)] = 128192, - [SMALL_STATE(4637)] = 128208, - [SMALL_STATE(4638)] = 128222, - [SMALL_STATE(4639)] = 128234, - [SMALL_STATE(4640)] = 128246, - [SMALL_STATE(4641)] = 128262, - [SMALL_STATE(4642)] = 128278, - [SMALL_STATE(4643)] = 128294, - [SMALL_STATE(4644)] = 128306, - [SMALL_STATE(4645)] = 128322, - [SMALL_STATE(4646)] = 128334, - [SMALL_STATE(4647)] = 128346, - [SMALL_STATE(4648)] = 128362, - [SMALL_STATE(4649)] = 128374, - [SMALL_STATE(4650)] = 128386, - [SMALL_STATE(4651)] = 128400, - [SMALL_STATE(4652)] = 128412, - [SMALL_STATE(4653)] = 128428, - [SMALL_STATE(4654)] = 128444, - [SMALL_STATE(4655)] = 128456, - [SMALL_STATE(4656)] = 128472, - [SMALL_STATE(4657)] = 128484, - [SMALL_STATE(4658)] = 128497, - [SMALL_STATE(4659)] = 128510, - [SMALL_STATE(4660)] = 128523, - [SMALL_STATE(4661)] = 128536, - [SMALL_STATE(4662)] = 128549, - [SMALL_STATE(4663)] = 128562, - [SMALL_STATE(4664)] = 128575, - [SMALL_STATE(4665)] = 128588, - [SMALL_STATE(4666)] = 128601, - [SMALL_STATE(4667)] = 128614, - [SMALL_STATE(4668)] = 128627, - [SMALL_STATE(4669)] = 128640, - [SMALL_STATE(4670)] = 128653, - [SMALL_STATE(4671)] = 128666, - [SMALL_STATE(4672)] = 128679, - [SMALL_STATE(4673)] = 128692, - [SMALL_STATE(4674)] = 128705, - [SMALL_STATE(4675)] = 128718, - [SMALL_STATE(4676)] = 128731, - [SMALL_STATE(4677)] = 128744, - [SMALL_STATE(4678)] = 128755, - [SMALL_STATE(4679)] = 128768, - [SMALL_STATE(4680)] = 128781, - [SMALL_STATE(4681)] = 128794, - [SMALL_STATE(4682)] = 128807, - [SMALL_STATE(4683)] = 128820, - [SMALL_STATE(4684)] = 128833, - [SMALL_STATE(4685)] = 128846, - [SMALL_STATE(4686)] = 128859, - [SMALL_STATE(4687)] = 128872, - [SMALL_STATE(4688)] = 128885, - [SMALL_STATE(4689)] = 128898, - [SMALL_STATE(4690)] = 128911, - [SMALL_STATE(4691)] = 128924, - [SMALL_STATE(4692)] = 128937, - [SMALL_STATE(4693)] = 128950, - [SMALL_STATE(4694)] = 128963, - [SMALL_STATE(4695)] = 128976, - [SMALL_STATE(4696)] = 128989, - [SMALL_STATE(4697)] = 129002, - [SMALL_STATE(4698)] = 129015, - [SMALL_STATE(4699)] = 129028, - [SMALL_STATE(4700)] = 129041, - [SMALL_STATE(4701)] = 129054, - [SMALL_STATE(4702)] = 129067, - [SMALL_STATE(4703)] = 129080, - [SMALL_STATE(4704)] = 129093, - [SMALL_STATE(4705)] = 129104, - [SMALL_STATE(4706)] = 129117, - [SMALL_STATE(4707)] = 129130, - [SMALL_STATE(4708)] = 129143, - [SMALL_STATE(4709)] = 129156, - [SMALL_STATE(4710)] = 129169, - [SMALL_STATE(4711)] = 129182, - [SMALL_STATE(4712)] = 129195, - [SMALL_STATE(4713)] = 129208, - [SMALL_STATE(4714)] = 129221, - [SMALL_STATE(4715)] = 129234, - [SMALL_STATE(4716)] = 129247, - [SMALL_STATE(4717)] = 129260, - [SMALL_STATE(4718)] = 129273, - [SMALL_STATE(4719)] = 129286, - [SMALL_STATE(4720)] = 129299, - [SMALL_STATE(4721)] = 129312, - [SMALL_STATE(4722)] = 129325, - [SMALL_STATE(4723)] = 129338, - [SMALL_STATE(4724)] = 129351, - [SMALL_STATE(4725)] = 129362, - [SMALL_STATE(4726)] = 129375, - [SMALL_STATE(4727)] = 129388, - [SMALL_STATE(4728)] = 129401, - [SMALL_STATE(4729)] = 129414, - [SMALL_STATE(4730)] = 129427, - [SMALL_STATE(4731)] = 129440, - [SMALL_STATE(4732)] = 129453, - [SMALL_STATE(4733)] = 129466, - [SMALL_STATE(4734)] = 129479, - [SMALL_STATE(4735)] = 129492, - [SMALL_STATE(4736)] = 129505, - [SMALL_STATE(4737)] = 129518, - [SMALL_STATE(4738)] = 129531, - [SMALL_STATE(4739)] = 129544, - [SMALL_STATE(4740)] = 129557, - [SMALL_STATE(4741)] = 129570, - [SMALL_STATE(4742)] = 129583, - [SMALL_STATE(4743)] = 129594, - [SMALL_STATE(4744)] = 129607, - [SMALL_STATE(4745)] = 129620, - [SMALL_STATE(4746)] = 129633, - [SMALL_STATE(4747)] = 129646, - [SMALL_STATE(4748)] = 129659, - [SMALL_STATE(4749)] = 129672, - [SMALL_STATE(4750)] = 129685, - [SMALL_STATE(4751)] = 129698, - [SMALL_STATE(4752)] = 129711, - [SMALL_STATE(4753)] = 129724, - [SMALL_STATE(4754)] = 129737, - [SMALL_STATE(4755)] = 129750, - [SMALL_STATE(4756)] = 129763, - [SMALL_STATE(4757)] = 129774, - [SMALL_STATE(4758)] = 129787, - [SMALL_STATE(4759)] = 129800, - [SMALL_STATE(4760)] = 129813, - [SMALL_STATE(4761)] = 129826, - [SMALL_STATE(4762)] = 129839, - [SMALL_STATE(4763)] = 129852, - [SMALL_STATE(4764)] = 129865, - [SMALL_STATE(4765)] = 129878, - [SMALL_STATE(4766)] = 129891, - [SMALL_STATE(4767)] = 129904, - [SMALL_STATE(4768)] = 129917, - [SMALL_STATE(4769)] = 129930, - [SMALL_STATE(4770)] = 129943, - [SMALL_STATE(4771)] = 129956, - [SMALL_STATE(4772)] = 129969, - [SMALL_STATE(4773)] = 129982, - [SMALL_STATE(4774)] = 129995, - [SMALL_STATE(4775)] = 130008, - [SMALL_STATE(4776)] = 130021, - [SMALL_STATE(4777)] = 130034, - [SMALL_STATE(4778)] = 130047, - [SMALL_STATE(4779)] = 130058, - [SMALL_STATE(4780)] = 130071, - [SMALL_STATE(4781)] = 130084, - [SMALL_STATE(4782)] = 130095, - [SMALL_STATE(4783)] = 130108, - [SMALL_STATE(4784)] = 130121, - [SMALL_STATE(4785)] = 130134, - [SMALL_STATE(4786)] = 130147, - [SMALL_STATE(4787)] = 130160, - [SMALL_STATE(4788)] = 130173, - [SMALL_STATE(4789)] = 130186, - [SMALL_STATE(4790)] = 130199, - [SMALL_STATE(4791)] = 130212, - [SMALL_STATE(4792)] = 130225, - [SMALL_STATE(4793)] = 130238, - [SMALL_STATE(4794)] = 130251, - [SMALL_STATE(4795)] = 130264, - [SMALL_STATE(4796)] = 130277, - [SMALL_STATE(4797)] = 130290, - [SMALL_STATE(4798)] = 130303, - [SMALL_STATE(4799)] = 130316, - [SMALL_STATE(4800)] = 130329, - [SMALL_STATE(4801)] = 130342, - [SMALL_STATE(4802)] = 130355, - [SMALL_STATE(4803)] = 130368, - [SMALL_STATE(4804)] = 130381, - [SMALL_STATE(4805)] = 130394, - [SMALL_STATE(4806)] = 130407, - [SMALL_STATE(4807)] = 130420, - [SMALL_STATE(4808)] = 130433, - [SMALL_STATE(4809)] = 130446, - [SMALL_STATE(4810)] = 130459, - [SMALL_STATE(4811)] = 130472, - [SMALL_STATE(4812)] = 130485, - [SMALL_STATE(4813)] = 130498, - [SMALL_STATE(4814)] = 130511, - [SMALL_STATE(4815)] = 130524, - [SMALL_STATE(4816)] = 130537, - [SMALL_STATE(4817)] = 130550, - [SMALL_STATE(4818)] = 130563, - [SMALL_STATE(4819)] = 130576, - [SMALL_STATE(4820)] = 130589, - [SMALL_STATE(4821)] = 130602, - [SMALL_STATE(4822)] = 130615, - [SMALL_STATE(4823)] = 130626, - [SMALL_STATE(4824)] = 130637, - [SMALL_STATE(4825)] = 130650, - [SMALL_STATE(4826)] = 130663, - [SMALL_STATE(4827)] = 130676, - [SMALL_STATE(4828)] = 130687, - [SMALL_STATE(4829)] = 130697, - [SMALL_STATE(4830)] = 130707, - [SMALL_STATE(4831)] = 130717, - [SMALL_STATE(4832)] = 130727, - [SMALL_STATE(4833)] = 130737, - [SMALL_STATE(4834)] = 130747, - [SMALL_STATE(4835)] = 130757, - [SMALL_STATE(4836)] = 130767, - [SMALL_STATE(4837)] = 130777, - [SMALL_STATE(4838)] = 130787, - [SMALL_STATE(4839)] = 130797, - [SMALL_STATE(4840)] = 130807, - [SMALL_STATE(4841)] = 130817, - [SMALL_STATE(4842)] = 130827, - [SMALL_STATE(4843)] = 130837, - [SMALL_STATE(4844)] = 130847, - [SMALL_STATE(4845)] = 130857, - [SMALL_STATE(4846)] = 130867, - [SMALL_STATE(4847)] = 130877, - [SMALL_STATE(4848)] = 130887, - [SMALL_STATE(4849)] = 130897, - [SMALL_STATE(4850)] = 130907, - [SMALL_STATE(4851)] = 130917, - [SMALL_STATE(4852)] = 130927, - [SMALL_STATE(4853)] = 130937, - [SMALL_STATE(4854)] = 130947, - [SMALL_STATE(4855)] = 130957, - [SMALL_STATE(4856)] = 130967, - [SMALL_STATE(4857)] = 130977, - [SMALL_STATE(4858)] = 130987, - [SMALL_STATE(4859)] = 130997, - [SMALL_STATE(4860)] = 131007, - [SMALL_STATE(4861)] = 131017, - [SMALL_STATE(4862)] = 131027, - [SMALL_STATE(4863)] = 131037, - [SMALL_STATE(4864)] = 131047, - [SMALL_STATE(4865)] = 131057, - [SMALL_STATE(4866)] = 131067, - [SMALL_STATE(4867)] = 131077, - [SMALL_STATE(4868)] = 131087, - [SMALL_STATE(4869)] = 131097, - [SMALL_STATE(4870)] = 131107, - [SMALL_STATE(4871)] = 131117, - [SMALL_STATE(4872)] = 131127, - [SMALL_STATE(4873)] = 131137, - [SMALL_STATE(4874)] = 131147, - [SMALL_STATE(4875)] = 131157, - [SMALL_STATE(4876)] = 131167, - [SMALL_STATE(4877)] = 131177, - [SMALL_STATE(4878)] = 131187, - [SMALL_STATE(4879)] = 131197, - [SMALL_STATE(4880)] = 131207, - [SMALL_STATE(4881)] = 131217, - [SMALL_STATE(4882)] = 131227, - [SMALL_STATE(4883)] = 131237, - [SMALL_STATE(4884)] = 131247, - [SMALL_STATE(4885)] = 131257, - [SMALL_STATE(4886)] = 131267, - [SMALL_STATE(4887)] = 131277, - [SMALL_STATE(4888)] = 131287, - [SMALL_STATE(4889)] = 131297, - [SMALL_STATE(4890)] = 131307, - [SMALL_STATE(4891)] = 131317, - [SMALL_STATE(4892)] = 131327, - [SMALL_STATE(4893)] = 131337, - [SMALL_STATE(4894)] = 131347, - [SMALL_STATE(4895)] = 131357, - [SMALL_STATE(4896)] = 131367, - [SMALL_STATE(4897)] = 131377, - [SMALL_STATE(4898)] = 131387, - [SMALL_STATE(4899)] = 131397, - [SMALL_STATE(4900)] = 131407, - [SMALL_STATE(4901)] = 131417, - [SMALL_STATE(4902)] = 131427, - [SMALL_STATE(4903)] = 131437, - [SMALL_STATE(4904)] = 131447, - [SMALL_STATE(4905)] = 131457, - [SMALL_STATE(4906)] = 131467, - [SMALL_STATE(4907)] = 131477, - [SMALL_STATE(4908)] = 131487, - [SMALL_STATE(4909)] = 131497, - [SMALL_STATE(4910)] = 131507, - [SMALL_STATE(4911)] = 131517, - [SMALL_STATE(4912)] = 131527, - [SMALL_STATE(4913)] = 131537, - [SMALL_STATE(4914)] = 131547, - [SMALL_STATE(4915)] = 131557, - [SMALL_STATE(4916)] = 131567, - [SMALL_STATE(4917)] = 131577, - [SMALL_STATE(4918)] = 131587, - [SMALL_STATE(4919)] = 131597, - [SMALL_STATE(4920)] = 131607, - [SMALL_STATE(4921)] = 131617, - [SMALL_STATE(4922)] = 131627, - [SMALL_STATE(4923)] = 131637, - [SMALL_STATE(4924)] = 131647, - [SMALL_STATE(4925)] = 131657, - [SMALL_STATE(4926)] = 131667, - [SMALL_STATE(4927)] = 131677, - [SMALL_STATE(4928)] = 131687, - [SMALL_STATE(4929)] = 131697, - [SMALL_STATE(4930)] = 131707, - [SMALL_STATE(4931)] = 131717, - [SMALL_STATE(4932)] = 131727, - [SMALL_STATE(4933)] = 131737, - [SMALL_STATE(4934)] = 131747, - [SMALL_STATE(4935)] = 131757, - [SMALL_STATE(4936)] = 131767, - [SMALL_STATE(4937)] = 131777, - [SMALL_STATE(4938)] = 131787, - [SMALL_STATE(4939)] = 131797, - [SMALL_STATE(4940)] = 131807, - [SMALL_STATE(4941)] = 131817, - [SMALL_STATE(4942)] = 131827, - [SMALL_STATE(4943)] = 131837, - [SMALL_STATE(4944)] = 131847, - [SMALL_STATE(4945)] = 131857, - [SMALL_STATE(4946)] = 131867, - [SMALL_STATE(4947)] = 131877, - [SMALL_STATE(4948)] = 131887, - [SMALL_STATE(4949)] = 131897, - [SMALL_STATE(4950)] = 131907, - [SMALL_STATE(4951)] = 131917, - [SMALL_STATE(4952)] = 131927, - [SMALL_STATE(4953)] = 131937, - [SMALL_STATE(4954)] = 131947, - [SMALL_STATE(4955)] = 131957, - [SMALL_STATE(4956)] = 131967, - [SMALL_STATE(4957)] = 131977, - [SMALL_STATE(4958)] = 131987, - [SMALL_STATE(4959)] = 131997, - [SMALL_STATE(4960)] = 132007, - [SMALL_STATE(4961)] = 132017, - [SMALL_STATE(4962)] = 132027, - [SMALL_STATE(4963)] = 132037, - [SMALL_STATE(4964)] = 132047, - [SMALL_STATE(4965)] = 132057, - [SMALL_STATE(4966)] = 132067, - [SMALL_STATE(4967)] = 132077, - [SMALL_STATE(4968)] = 132087, - [SMALL_STATE(4969)] = 132097, - [SMALL_STATE(4970)] = 132107, - [SMALL_STATE(4971)] = 132117, - [SMALL_STATE(4972)] = 132127, - [SMALL_STATE(4973)] = 132137, - [SMALL_STATE(4974)] = 132147, - [SMALL_STATE(4975)] = 132157, - [SMALL_STATE(4976)] = 132167, - [SMALL_STATE(4977)] = 132177, - [SMALL_STATE(4978)] = 132187, - [SMALL_STATE(4979)] = 132197, - [SMALL_STATE(4980)] = 132207, - [SMALL_STATE(4981)] = 132217, - [SMALL_STATE(4982)] = 132227, - [SMALL_STATE(4983)] = 132237, - [SMALL_STATE(4984)] = 132247, - [SMALL_STATE(4985)] = 132257, - [SMALL_STATE(4986)] = 132267, - [SMALL_STATE(4987)] = 132277, - [SMALL_STATE(4988)] = 132287, - [SMALL_STATE(4989)] = 132297, - [SMALL_STATE(4990)] = 132307, - [SMALL_STATE(4991)] = 132317, - [SMALL_STATE(4992)] = 132327, - [SMALL_STATE(4993)] = 132337, - [SMALL_STATE(4994)] = 132347, - [SMALL_STATE(4995)] = 132357, - [SMALL_STATE(4996)] = 132367, - [SMALL_STATE(4997)] = 132377, - [SMALL_STATE(4998)] = 132387, - [SMALL_STATE(4999)] = 132397, - [SMALL_STATE(5000)] = 132407, - [SMALL_STATE(5001)] = 132417, - [SMALL_STATE(5002)] = 132427, - [SMALL_STATE(5003)] = 132437, - [SMALL_STATE(5004)] = 132447, - [SMALL_STATE(5005)] = 132457, - [SMALL_STATE(5006)] = 132467, - [SMALL_STATE(5007)] = 132477, - [SMALL_STATE(5008)] = 132487, - [SMALL_STATE(5009)] = 132497, - [SMALL_STATE(5010)] = 132507, - [SMALL_STATE(5011)] = 132517, - [SMALL_STATE(5012)] = 132527, - [SMALL_STATE(5013)] = 132537, - [SMALL_STATE(5014)] = 132547, - [SMALL_STATE(5015)] = 132557, - [SMALL_STATE(5016)] = 132567, - [SMALL_STATE(5017)] = 132577, - [SMALL_STATE(5018)] = 132587, - [SMALL_STATE(5019)] = 132597, - [SMALL_STATE(5020)] = 132607, - [SMALL_STATE(5021)] = 132617, - [SMALL_STATE(5022)] = 132627, - [SMALL_STATE(5023)] = 132637, - [SMALL_STATE(5024)] = 132647, - [SMALL_STATE(5025)] = 132657, - [SMALL_STATE(5026)] = 132667, - [SMALL_STATE(5027)] = 132677, - [SMALL_STATE(5028)] = 132687, - [SMALL_STATE(5029)] = 132697, - [SMALL_STATE(5030)] = 132707, - [SMALL_STATE(5031)] = 132717, - [SMALL_STATE(5032)] = 132727, - [SMALL_STATE(5033)] = 132737, - [SMALL_STATE(5034)] = 132747, - [SMALL_STATE(5035)] = 132757, - [SMALL_STATE(5036)] = 132767, - [SMALL_STATE(5037)] = 132777, - [SMALL_STATE(5038)] = 132787, - [SMALL_STATE(5039)] = 132797, - [SMALL_STATE(5040)] = 132807, - [SMALL_STATE(5041)] = 132817, - [SMALL_STATE(5042)] = 132827, - [SMALL_STATE(5043)] = 132837, - [SMALL_STATE(5044)] = 132847, - [SMALL_STATE(5045)] = 132857, - [SMALL_STATE(5046)] = 132867, - [SMALL_STATE(5047)] = 132877, - [SMALL_STATE(5048)] = 132887, - [SMALL_STATE(5049)] = 132897, - [SMALL_STATE(5050)] = 132907, - [SMALL_STATE(5051)] = 132917, - [SMALL_STATE(5052)] = 132927, - [SMALL_STATE(5053)] = 132937, - [SMALL_STATE(5054)] = 132947, - [SMALL_STATE(5055)] = 132957, - [SMALL_STATE(5056)] = 132967, - [SMALL_STATE(5057)] = 132977, - [SMALL_STATE(5058)] = 132987, - [SMALL_STATE(5059)] = 132997, - [SMALL_STATE(5060)] = 133007, - [SMALL_STATE(5061)] = 133017, - [SMALL_STATE(5062)] = 133027, - [SMALL_STATE(5063)] = 133037, - [SMALL_STATE(5064)] = 133047, - [SMALL_STATE(5065)] = 133057, - [SMALL_STATE(5066)] = 133067, - [SMALL_STATE(5067)] = 133077, - [SMALL_STATE(5068)] = 133087, - [SMALL_STATE(5069)] = 133097, - [SMALL_STATE(5070)] = 133107, - [SMALL_STATE(5071)] = 133117, - [SMALL_STATE(5072)] = 133127, - [SMALL_STATE(5073)] = 133137, - [SMALL_STATE(5074)] = 133147, - [SMALL_STATE(5075)] = 133157, - [SMALL_STATE(5076)] = 133167, - [SMALL_STATE(5077)] = 133177, - [SMALL_STATE(5078)] = 133187, - [SMALL_STATE(5079)] = 133197, - [SMALL_STATE(5080)] = 133207, - [SMALL_STATE(5081)] = 133217, - [SMALL_STATE(5082)] = 133227, - [SMALL_STATE(5083)] = 133237, - [SMALL_STATE(5084)] = 133247, - [SMALL_STATE(5085)] = 133257, - [SMALL_STATE(5086)] = 133267, - [SMALL_STATE(5087)] = 133277, - [SMALL_STATE(5088)] = 133287, - [SMALL_STATE(5089)] = 133297, - [SMALL_STATE(5090)] = 133307, - [SMALL_STATE(5091)] = 133317, - [SMALL_STATE(5092)] = 133327, - [SMALL_STATE(5093)] = 133337, - [SMALL_STATE(5094)] = 133347, - [SMALL_STATE(5095)] = 133357, - [SMALL_STATE(5096)] = 133367, - [SMALL_STATE(5097)] = 133377, - [SMALL_STATE(5098)] = 133387, - [SMALL_STATE(5099)] = 133397, - [SMALL_STATE(5100)] = 133407, - [SMALL_STATE(5101)] = 133417, - [SMALL_STATE(5102)] = 133427, - [SMALL_STATE(5103)] = 133437, - [SMALL_STATE(5104)] = 133447, - [SMALL_STATE(5105)] = 133457, - [SMALL_STATE(5106)] = 133467, - [SMALL_STATE(5107)] = 133477, - [SMALL_STATE(5108)] = 133487, - [SMALL_STATE(5109)] = 133497, - [SMALL_STATE(5110)] = 133507, - [SMALL_STATE(5111)] = 133517, - [SMALL_STATE(5112)] = 133527, - [SMALL_STATE(5113)] = 133537, - [SMALL_STATE(5114)] = 133547, - [SMALL_STATE(5115)] = 133557, - [SMALL_STATE(5116)] = 133567, - [SMALL_STATE(5117)] = 133577, - [SMALL_STATE(5118)] = 133587, - [SMALL_STATE(5119)] = 133597, - [SMALL_STATE(5120)] = 133607, - [SMALL_STATE(5121)] = 133617, - [SMALL_STATE(5122)] = 133627, - [SMALL_STATE(5123)] = 133637, - [SMALL_STATE(5124)] = 133647, - [SMALL_STATE(5125)] = 133657, - [SMALL_STATE(5126)] = 133667, - [SMALL_STATE(5127)] = 133677, - [SMALL_STATE(5128)] = 133687, - [SMALL_STATE(5129)] = 133697, - [SMALL_STATE(5130)] = 133707, - [SMALL_STATE(5131)] = 133717, - [SMALL_STATE(5132)] = 133727, - [SMALL_STATE(5133)] = 133737, - [SMALL_STATE(5134)] = 133747, - [SMALL_STATE(5135)] = 133757, - [SMALL_STATE(5136)] = 133767, - [SMALL_STATE(5137)] = 133777, - [SMALL_STATE(5138)] = 133787, - [SMALL_STATE(5139)] = 133797, - [SMALL_STATE(5140)] = 133807, - [SMALL_STATE(5141)] = 133817, - [SMALL_STATE(5142)] = 133827, - [SMALL_STATE(5143)] = 133837, - [SMALL_STATE(5144)] = 133847, - [SMALL_STATE(5145)] = 133857, - [SMALL_STATE(5146)] = 133867, - [SMALL_STATE(5147)] = 133877, - [SMALL_STATE(5148)] = 133887, - [SMALL_STATE(5149)] = 133897, - [SMALL_STATE(5150)] = 133907, - [SMALL_STATE(5151)] = 133917, - [SMALL_STATE(5152)] = 133927, - [SMALL_STATE(5153)] = 133937, - [SMALL_STATE(5154)] = 133947, - [SMALL_STATE(5155)] = 133957, - [SMALL_STATE(5156)] = 133967, - [SMALL_STATE(5157)] = 133977, - [SMALL_STATE(5158)] = 133987, - [SMALL_STATE(5159)] = 133997, - [SMALL_STATE(5160)] = 134007, - [SMALL_STATE(5161)] = 134017, - [SMALL_STATE(5162)] = 134027, - [SMALL_STATE(5163)] = 134037, - [SMALL_STATE(5164)] = 134047, - [SMALL_STATE(5165)] = 134057, - [SMALL_STATE(5166)] = 134067, - [SMALL_STATE(5167)] = 134077, - [SMALL_STATE(5168)] = 134087, - [SMALL_STATE(5169)] = 134097, - [SMALL_STATE(5170)] = 134107, - [SMALL_STATE(5171)] = 134117, - [SMALL_STATE(5172)] = 134127, - [SMALL_STATE(5173)] = 134137, - [SMALL_STATE(5174)] = 134147, - [SMALL_STATE(5175)] = 134157, - [SMALL_STATE(5176)] = 134167, - [SMALL_STATE(5177)] = 134177, - [SMALL_STATE(5178)] = 134187, - [SMALL_STATE(5179)] = 134197, - [SMALL_STATE(5180)] = 134207, - [SMALL_STATE(5181)] = 134217, - [SMALL_STATE(5182)] = 134227, - [SMALL_STATE(5183)] = 134237, - [SMALL_STATE(5184)] = 134247, - [SMALL_STATE(5185)] = 134257, - [SMALL_STATE(5186)] = 134267, - [SMALL_STATE(5187)] = 134277, - [SMALL_STATE(5188)] = 134287, - [SMALL_STATE(5189)] = 134297, - [SMALL_STATE(5190)] = 134307, - [SMALL_STATE(5191)] = 134317, - [SMALL_STATE(5192)] = 134327, - [SMALL_STATE(5193)] = 134337, - [SMALL_STATE(5194)] = 134347, - [SMALL_STATE(5195)] = 134357, - [SMALL_STATE(5196)] = 134367, - [SMALL_STATE(5197)] = 134377, - [SMALL_STATE(5198)] = 134387, - [SMALL_STATE(5199)] = 134397, - [SMALL_STATE(5200)] = 134407, - [SMALL_STATE(5201)] = 134417, - [SMALL_STATE(5202)] = 134427, - [SMALL_STATE(5203)] = 134437, - [SMALL_STATE(5204)] = 134447, - [SMALL_STATE(5205)] = 134457, - [SMALL_STATE(5206)] = 134467, - [SMALL_STATE(5207)] = 134477, - [SMALL_STATE(5208)] = 134487, - [SMALL_STATE(5209)] = 134497, - [SMALL_STATE(5210)] = 134507, - [SMALL_STATE(5211)] = 134517, - [SMALL_STATE(5212)] = 134527, - [SMALL_STATE(5213)] = 134537, - [SMALL_STATE(5214)] = 134547, - [SMALL_STATE(5215)] = 134557, - [SMALL_STATE(5216)] = 134567, - [SMALL_STATE(5217)] = 134577, - [SMALL_STATE(5218)] = 134587, - [SMALL_STATE(5219)] = 134597, - [SMALL_STATE(5220)] = 134607, - [SMALL_STATE(5221)] = 134617, - [SMALL_STATE(5222)] = 134627, - [SMALL_STATE(5223)] = 134637, - [SMALL_STATE(5224)] = 134647, - [SMALL_STATE(5225)] = 134657, - [SMALL_STATE(5226)] = 134667, - [SMALL_STATE(5227)] = 134677, - [SMALL_STATE(5228)] = 134687, - [SMALL_STATE(5229)] = 134697, - [SMALL_STATE(5230)] = 134707, - [SMALL_STATE(5231)] = 134717, - [SMALL_STATE(5232)] = 134727, - [SMALL_STATE(5233)] = 134737, - [SMALL_STATE(5234)] = 134747, - [SMALL_STATE(5235)] = 134757, - [SMALL_STATE(5236)] = 134767, - [SMALL_STATE(5237)] = 134777, - [SMALL_STATE(5238)] = 134787, - [SMALL_STATE(5239)] = 134797, - [SMALL_STATE(5240)] = 134807, - [SMALL_STATE(5241)] = 134817, - [SMALL_STATE(5242)] = 134827, - [SMALL_STATE(5243)] = 134837, - [SMALL_STATE(5244)] = 134847, - [SMALL_STATE(5245)] = 134857, - [SMALL_STATE(5246)] = 134867, - [SMALL_STATE(5247)] = 134877, - [SMALL_STATE(5248)] = 134887, - [SMALL_STATE(5249)] = 134897, - [SMALL_STATE(5250)] = 134907, - [SMALL_STATE(5251)] = 134917, - [SMALL_STATE(5252)] = 134927, - [SMALL_STATE(5253)] = 134937, - [SMALL_STATE(5254)] = 134947, - [SMALL_STATE(5255)] = 134957, - [SMALL_STATE(5256)] = 134967, - [SMALL_STATE(5257)] = 134977, - [SMALL_STATE(5258)] = 134987, - [SMALL_STATE(5259)] = 134997, - [SMALL_STATE(5260)] = 135007, - [SMALL_STATE(5261)] = 135017, - [SMALL_STATE(5262)] = 135027, + [SMALL_STATE(2155)] = 61796, + [SMALL_STATE(2156)] = 61862, + [SMALL_STATE(2157)] = 61930, + [SMALL_STATE(2158)] = 61976, + [SMALL_STATE(2159)] = 62022, + [SMALL_STATE(2160)] = 62070, + [SMALL_STATE(2161)] = 62116, + [SMALL_STATE(2162)] = 62162, + [SMALL_STATE(2163)] = 62208, + [SMALL_STATE(2164)] = 62254, + [SMALL_STATE(2165)] = 62300, + [SMALL_STATE(2166)] = 62346, + [SMALL_STATE(2167)] = 62392, + [SMALL_STATE(2168)] = 62438, + [SMALL_STATE(2169)] = 62484, + [SMALL_STATE(2170)] = 62530, + [SMALL_STATE(2171)] = 62576, + [SMALL_STATE(2172)] = 62622, + [SMALL_STATE(2173)] = 62668, + [SMALL_STATE(2174)] = 62714, + [SMALL_STATE(2175)] = 62760, + [SMALL_STATE(2176)] = 62830, + [SMALL_STATE(2177)] = 62876, + [SMALL_STATE(2178)] = 62922, + [SMALL_STATE(2179)] = 62968, + [SMALL_STATE(2180)] = 63014, + [SMALL_STATE(2181)] = 63060, + [SMALL_STATE(2182)] = 63106, + [SMALL_STATE(2183)] = 63166, + [SMALL_STATE(2184)] = 63214, + [SMALL_STATE(2185)] = 63272, + [SMALL_STATE(2186)] = 63320, + [SMALL_STATE(2187)] = 63372, + [SMALL_STATE(2188)] = 63418, + [SMALL_STATE(2189)] = 63464, + [SMALL_STATE(2190)] = 63512, + [SMALL_STATE(2191)] = 63558, + [SMALL_STATE(2192)] = 63606, + [SMALL_STATE(2193)] = 63652, + [SMALL_STATE(2194)] = 63726, + [SMALL_STATE(2195)] = 63774, + [SMALL_STATE(2196)] = 63836, + [SMALL_STATE(2197)] = 63884, + [SMALL_STATE(2198)] = 63932, + [SMALL_STATE(2199)] = 63978, + [SMALL_STATE(2200)] = 64024, + [SMALL_STATE(2201)] = 64072, + [SMALL_STATE(2202)] = 64118, + [SMALL_STATE(2203)] = 64164, + [SMALL_STATE(2204)] = 64210, + [SMALL_STATE(2205)] = 64256, + [SMALL_STATE(2206)] = 64328, + [SMALL_STATE(2207)] = 64374, + [SMALL_STATE(2208)] = 64420, + [SMALL_STATE(2209)] = 64466, + [SMALL_STATE(2210)] = 64512, + [SMALL_STATE(2211)] = 64558, + [SMALL_STATE(2212)] = 64647, + [SMALL_STATE(2213)] = 64734, + [SMALL_STATE(2214)] = 64785, + [SMALL_STATE(2215)] = 64858, + [SMALL_STATE(2216)] = 64931, + [SMALL_STATE(2217)] = 65020, + [SMALL_STATE(2218)] = 65109, + [SMALL_STATE(2219)] = 65198, + [SMALL_STATE(2220)] = 65271, + [SMALL_STATE(2221)] = 65360, + [SMALL_STATE(2222)] = 65449, + [SMALL_STATE(2223)] = 65522, + [SMALL_STATE(2224)] = 65567, + [SMALL_STATE(2225)] = 65656, + [SMALL_STATE(2226)] = 65729, + [SMALL_STATE(2227)] = 65802, + [SMALL_STATE(2228)] = 65891, + [SMALL_STATE(2229)] = 65941, + [SMALL_STATE(2230)] = 65991, + [SMALL_STATE(2231)] = 66037, + [SMALL_STATE(2232)] = 66083, + [SMALL_STATE(2233)] = 66133, + [SMALL_STATE(2234)] = 66183, + [SMALL_STATE(2235)] = 66226, + [SMALL_STATE(2236)] = 66277, + [SMALL_STATE(2237)] = 66322, + [SMALL_STATE(2238)] = 66371, + [SMALL_STATE(2239)] = 66420, + [SMALL_STATE(2240)] = 66465, + [SMALL_STATE(2241)] = 66514, + [SMALL_STATE(2242)] = 66557, + [SMALL_STATE(2243)] = 66600, + [SMALL_STATE(2244)] = 66643, + [SMALL_STATE(2245)] = 66692, + [SMALL_STATE(2246)] = 66739, + [SMALL_STATE(2247)] = 66788, + [SMALL_STATE(2248)] = 66831, + [SMALL_STATE(2249)] = 66874, + [SMALL_STATE(2250)] = 66923, + [SMALL_STATE(2251)] = 66966, + [SMALL_STATE(2252)] = 67009, + [SMALL_STATE(2253)] = 67051, + [SMALL_STATE(2254)] = 67095, + [SMALL_STATE(2255)] = 67141, + [SMALL_STATE(2256)] = 67183, + [SMALL_STATE(2257)] = 67228, + [SMALL_STATE(2258)] = 67269, + [SMALL_STATE(2259)] = 67314, + [SMALL_STATE(2260)] = 67358, + [SMALL_STATE(2261)] = 67402, + [SMALL_STATE(2262)] = 67446, + [SMALL_STATE(2263)] = 67528, + [SMALL_STATE(2264)] = 67610, + [SMALL_STATE(2265)] = 67654, + [SMALL_STATE(2266)] = 67694, + [SMALL_STATE(2267)] = 67739, + [SMALL_STATE(2268)] = 67815, + [SMALL_STATE(2269)] = 67891, + [SMALL_STATE(2270)] = 67937, + [SMALL_STATE(2271)] = 68013, + [SMALL_STATE(2272)] = 68089, + [SMALL_STATE(2273)] = 68165, + [SMALL_STATE(2274)] = 68241, + [SMALL_STATE(2275)] = 68317, + [SMALL_STATE(2276)] = 68393, + [SMALL_STATE(2277)] = 68469, + [SMALL_STATE(2278)] = 68545, + [SMALL_STATE(2279)] = 68621, + [SMALL_STATE(2280)] = 68697, + [SMALL_STATE(2281)] = 68773, + [SMALL_STATE(2282)] = 68849, + [SMALL_STATE(2283)] = 68925, + [SMALL_STATE(2284)] = 69001, + [SMALL_STATE(2285)] = 69077, + [SMALL_STATE(2286)] = 69153, + [SMALL_STATE(2287)] = 69229, + [SMALL_STATE(2288)] = 69305, + [SMALL_STATE(2289)] = 69381, + [SMALL_STATE(2290)] = 69457, + [SMALL_STATE(2291)] = 69533, + [SMALL_STATE(2292)] = 69609, + [SMALL_STATE(2293)] = 69685, + [SMALL_STATE(2294)] = 69761, + [SMALL_STATE(2295)] = 69805, + [SMALL_STATE(2296)] = 69847, + [SMALL_STATE(2297)] = 69893, + [SMALL_STATE(2298)] = 69939, + [SMALL_STATE(2299)] = 69991, + [SMALL_STATE(2300)] = 70042, + [SMALL_STATE(2301)] = 70087, + [SMALL_STATE(2302)] = 70130, + [SMALL_STATE(2303)] = 70179, + [SMALL_STATE(2304)] = 70224, + [SMALL_STATE(2305)] = 70269, + [SMALL_STATE(2306)] = 70318, + [SMALL_STATE(2307)] = 70363, + [SMALL_STATE(2308)] = 70402, + [SMALL_STATE(2309)] = 70447, + [SMALL_STATE(2310)] = 70496, + [SMALL_STATE(2311)] = 70566, + [SMALL_STATE(2312)] = 70606, + [SMALL_STATE(2313)] = 70676, + [SMALL_STATE(2314)] = 70746, + [SMALL_STATE(2315)] = 70816, + [SMALL_STATE(2316)] = 70886, + [SMALL_STATE(2317)] = 70956, + [SMALL_STATE(2318)] = 71026, + [SMALL_STATE(2319)] = 71096, + [SMALL_STATE(2320)] = 71132, + [SMALL_STATE(2321)] = 71168, + [SMALL_STATE(2322)] = 71204, + [SMALL_STATE(2323)] = 71244, + [SMALL_STATE(2324)] = 71280, + [SMALL_STATE(2325)] = 71316, + [SMALL_STATE(2326)] = 71362, + [SMALL_STATE(2327)] = 71410, + [SMALL_STATE(2328)] = 71446, + [SMALL_STATE(2329)] = 71492, + [SMALL_STATE(2330)] = 71538, + [SMALL_STATE(2331)] = 71584, + [SMALL_STATE(2332)] = 71632, + [SMALL_STATE(2333)] = 71680, + [SMALL_STATE(2334)] = 71734, + [SMALL_STATE(2335)] = 71774, + [SMALL_STATE(2336)] = 71844, + [SMALL_STATE(2337)] = 71914, + [SMALL_STATE(2338)] = 71956, + [SMALL_STATE(2339)] = 72026, + [SMALL_STATE(2340)] = 72096, + [SMALL_STATE(2341)] = 72147, + [SMALL_STATE(2342)] = 72186, + [SMALL_STATE(2343)] = 72225, + [SMALL_STATE(2344)] = 72262, + [SMALL_STATE(2345)] = 72299, + [SMALL_STATE(2346)] = 72336, + [SMALL_STATE(2347)] = 72387, + [SMALL_STATE(2348)] = 72440, + [SMALL_STATE(2349)] = 72479, + [SMALL_STATE(2350)] = 72526, + [SMALL_STATE(2351)] = 72563, + [SMALL_STATE(2352)] = 72602, + [SMALL_STATE(2353)] = 72641, + [SMALL_STATE(2354)] = 72692, + [SMALL_STATE(2355)] = 72737, + [SMALL_STATE(2356)] = 72782, + [SMALL_STATE(2357)] = 72827, + [SMALL_STATE(2358)] = 72872, + [SMALL_STATE(2359)] = 72909, + [SMALL_STATE(2360)] = 72946, + [SMALL_STATE(2361)] = 72984, + [SMALL_STATE(2362)] = 73018, + [SMALL_STATE(2363)] = 73066, + [SMALL_STATE(2364)] = 73100, + [SMALL_STATE(2365)] = 73134, + [SMALL_STATE(2366)] = 73182, + [SMALL_STATE(2367)] = 73230, + [SMALL_STATE(2368)] = 73280, + [SMALL_STATE(2369)] = 73314, + [SMALL_STATE(2370)] = 73352, + [SMALL_STATE(2371)] = 73400, + [SMALL_STATE(2372)] = 73446, + [SMALL_STATE(2373)] = 73480, + [SMALL_STATE(2374)] = 73514, + [SMALL_STATE(2375)] = 73548, + [SMALL_STATE(2376)] = 73582, + [SMALL_STATE(2377)] = 73616, + [SMALL_STATE(2378)] = 73650, + [SMALL_STATE(2379)] = 73684, + [SMALL_STATE(2380)] = 73718, + [SMALL_STATE(2381)] = 73752, + [SMALL_STATE(2382)] = 73802, + [SMALL_STATE(2383)] = 73852, + [SMALL_STATE(2384)] = 73886, + [SMALL_STATE(2385)] = 73920, + [SMALL_STATE(2386)] = 73954, + [SMALL_STATE(2387)] = 73988, + [SMALL_STATE(2388)] = 74024, + [SMALL_STATE(2389)] = 74058, + [SMALL_STATE(2390)] = 74092, + [SMALL_STATE(2391)] = 74130, + [SMALL_STATE(2392)] = 74170, + [SMALL_STATE(2393)] = 74204, + [SMALL_STATE(2394)] = 74244, + [SMALL_STATE(2395)] = 74282, + [SMALL_STATE(2396)] = 74316, + [SMALL_STATE(2397)] = 74350, + [SMALL_STATE(2398)] = 74384, + [SMALL_STATE(2399)] = 74420, + [SMALL_STATE(2400)] = 74459, + [SMALL_STATE(2401)] = 74492, + [SMALL_STATE(2402)] = 74539, + [SMALL_STATE(2403)] = 74586, + [SMALL_STATE(2404)] = 74633, + [SMALL_STATE(2405)] = 74670, + [SMALL_STATE(2406)] = 74711, + [SMALL_STATE(2407)] = 74762, + [SMALL_STATE(2408)] = 74795, + [SMALL_STATE(2409)] = 74828, + [SMALL_STATE(2410)] = 74861, + [SMALL_STATE(2411)] = 74894, + [SMALL_STATE(2412)] = 74927, + [SMALL_STATE(2413)] = 74968, + [SMALL_STATE(2414)] = 75009, + [SMALL_STATE(2415)] = 75042, + [SMALL_STATE(2416)] = 75075, + [SMALL_STATE(2417)] = 75110, + [SMALL_STATE(2418)] = 75157, + [SMALL_STATE(2419)] = 75194, + [SMALL_STATE(2420)] = 75233, + [SMALL_STATE(2421)] = 75268, + [SMALL_STATE(2422)] = 75301, + [SMALL_STATE(2423)] = 75336, + [SMALL_STATE(2424)] = 75369, + [SMALL_STATE(2425)] = 75402, + [SMALL_STATE(2426)] = 75439, + [SMALL_STATE(2427)] = 75472, + [SMALL_STATE(2428)] = 75505, + [SMALL_STATE(2429)] = 75538, + [SMALL_STATE(2430)] = 75573, + [SMALL_STATE(2431)] = 75606, + [SMALL_STATE(2432)] = 75639, + [SMALL_STATE(2433)] = 75672, + [SMALL_STATE(2434)] = 75711, + [SMALL_STATE(2435)] = 75744, + [SMALL_STATE(2436)] = 75777, + [SMALL_STATE(2437)] = 75814, + [SMALL_STATE(2438)] = 75847, + [SMALL_STATE(2439)] = 75880, + [SMALL_STATE(2440)] = 75927, + [SMALL_STATE(2441)] = 75959, + [SMALL_STATE(2442)] = 75997, + [SMALL_STATE(2443)] = 76029, + [SMALL_STATE(2444)] = 76065, + [SMALL_STATE(2445)] = 76103, + [SMALL_STATE(2446)] = 76137, + [SMALL_STATE(2447)] = 76169, + [SMALL_STATE(2448)] = 76209, + [SMALL_STATE(2449)] = 76241, + [SMALL_STATE(2450)] = 76273, + [SMALL_STATE(2451)] = 76321, + [SMALL_STATE(2452)] = 76355, + [SMALL_STATE(2453)] = 76403, + [SMALL_STATE(2454)] = 76443, + [SMALL_STATE(2455)] = 76475, + [SMALL_STATE(2456)] = 76507, + [SMALL_STATE(2457)] = 76543, + [SMALL_STATE(2458)] = 76579, + [SMALL_STATE(2459)] = 76627, + [SMALL_STATE(2460)] = 76659, + [SMALL_STATE(2461)] = 76691, + [SMALL_STATE(2462)] = 76723, + [SMALL_STATE(2463)] = 76769, + [SMALL_STATE(2464)] = 76805, + [SMALL_STATE(2465)] = 76845, + [SMALL_STATE(2466)] = 76879, + [SMALL_STATE(2467)] = 76911, + [SMALL_STATE(2468)] = 76949, + [SMALL_STATE(2469)] = 76987, + [SMALL_STATE(2470)] = 77025, + [SMALL_STATE(2471)] = 77063, + [SMALL_STATE(2472)] = 77101, + [SMALL_STATE(2473)] = 77139, + [SMALL_STATE(2474)] = 77177, + [SMALL_STATE(2475)] = 77211, + [SMALL_STATE(2476)] = 77247, + [SMALL_STATE(2477)] = 77285, + [SMALL_STATE(2478)] = 77317, + [SMALL_STATE(2479)] = 77352, + [SMALL_STATE(2480)] = 77385, + [SMALL_STATE(2481)] = 77418, + [SMALL_STATE(2482)] = 77449, + [SMALL_STATE(2483)] = 77494, + [SMALL_STATE(2484)] = 77531, + [SMALL_STATE(2485)] = 77576, + [SMALL_STATE(2486)] = 77607, + [SMALL_STATE(2487)] = 77642, + [SMALL_STATE(2488)] = 77675, + [SMALL_STATE(2489)] = 77706, + [SMALL_STATE(2490)] = 77743, + [SMALL_STATE(2491)] = 77784, + [SMALL_STATE(2492)] = 77829, + [SMALL_STATE(2493)] = 77860, + [SMALL_STATE(2494)] = 77891, + [SMALL_STATE(2495)] = 77936, + [SMALL_STATE(2496)] = 77981, + [SMALL_STATE(2497)] = 78016, + [SMALL_STATE(2498)] = 78047, + [SMALL_STATE(2499)] = 78078, + [SMALL_STATE(2500)] = 78109, + [SMALL_STATE(2501)] = 78142, + [SMALL_STATE(2502)] = 78179, + [SMALL_STATE(2503)] = 78214, + [SMALL_STATE(2504)] = 78247, + [SMALL_STATE(2505)] = 78286, + [SMALL_STATE(2506)] = 78317, + [SMALL_STATE(2507)] = 78354, + [SMALL_STATE(2508)] = 78385, + [SMALL_STATE(2509)] = 78416, + [SMALL_STATE(2510)] = 78455, + [SMALL_STATE(2511)] = 78490, + [SMALL_STATE(2512)] = 78529, + [SMALL_STATE(2513)] = 78562, + [SMALL_STATE(2514)] = 78595, + [SMALL_STATE(2515)] = 78626, + [SMALL_STATE(2516)] = 78658, + [SMALL_STATE(2517)] = 78688, + [SMALL_STATE(2518)] = 78722, + [SMALL_STATE(2519)] = 78754, + [SMALL_STATE(2520)] = 78784, + [SMALL_STATE(2521)] = 78836, + [SMALL_STATE(2522)] = 78870, + [SMALL_STATE(2523)] = 78906, + [SMALL_STATE(2524)] = 78936, + [SMALL_STATE(2525)] = 78968, + [SMALL_STATE(2526)] = 79000, + [SMALL_STATE(2527)] = 79032, + [SMALL_STATE(2528)] = 79062, + [SMALL_STATE(2529)] = 79102, + [SMALL_STATE(2530)] = 79138, + [SMALL_STATE(2531)] = 79170, + [SMALL_STATE(2532)] = 79206, + [SMALL_STATE(2533)] = 79240, + [SMALL_STATE(2534)] = 79270, + [SMALL_STATE(2535)] = 79322, + [SMALL_STATE(2536)] = 79356, + [SMALL_STATE(2537)] = 79386, + [SMALL_STATE(2538)] = 79422, + [SMALL_STATE(2539)] = 79452, + [SMALL_STATE(2540)] = 79482, + [SMALL_STATE(2541)] = 79512, + [SMALL_STATE(2542)] = 79542, + [SMALL_STATE(2543)] = 79580, + [SMALL_STATE(2544)] = 79612, + [SMALL_STATE(2545)] = 79648, + [SMALL_STATE(2546)] = 79678, + [SMALL_STATE(2547)] = 79708, + [SMALL_STATE(2548)] = 79744, + [SMALL_STATE(2549)] = 79796, + [SMALL_STATE(2550)] = 79834, + [SMALL_STATE(2551)] = 79866, + [SMALL_STATE(2552)] = 79898, + [SMALL_STATE(2553)] = 79930, + [SMALL_STATE(2554)] = 79962, + [SMALL_STATE(2555)] = 79992, + [SMALL_STATE(2556)] = 80026, + [SMALL_STATE(2557)] = 80058, + [SMALL_STATE(2558)] = 80088, + [SMALL_STATE(2559)] = 80120, + [SMALL_STATE(2560)] = 80170, + [SMALL_STATE(2561)] = 80222, + [SMALL_STATE(2562)] = 80254, + [SMALL_STATE(2563)] = 80284, + [SMALL_STATE(2564)] = 80322, + [SMALL_STATE(2565)] = 80352, + [SMALL_STATE(2566)] = 80390, + [SMALL_STATE(2567)] = 80426, + [SMALL_STATE(2568)] = 80464, + [SMALL_STATE(2569)] = 80495, + [SMALL_STATE(2570)] = 80524, + [SMALL_STATE(2571)] = 80559, + [SMALL_STATE(2572)] = 80590, + [SMALL_STATE(2573)] = 80619, + [SMALL_STATE(2574)] = 80648, + [SMALL_STATE(2575)] = 80677, + [SMALL_STATE(2576)] = 80714, + [SMALL_STATE(2577)] = 80745, + [SMALL_STATE(2578)] = 80776, + [SMALL_STATE(2579)] = 80807, + [SMALL_STATE(2580)] = 80836, + [SMALL_STATE(2581)] = 80873, + [SMALL_STATE(2582)] = 80904, + [SMALL_STATE(2583)] = 80941, + [SMALL_STATE(2584)] = 80978, + [SMALL_STATE(2585)] = 81015, + [SMALL_STATE(2586)] = 81046, + [SMALL_STATE(2587)] = 81077, + [SMALL_STATE(2588)] = 81108, + [SMALL_STATE(2589)] = 81139, + [SMALL_STATE(2590)] = 81176, + [SMALL_STATE(2591)] = 81205, + [SMALL_STATE(2592)] = 81242, + [SMALL_STATE(2593)] = 81279, + [SMALL_STATE(2594)] = 81308, + [SMALL_STATE(2595)] = 81339, + [SMALL_STATE(2596)] = 81376, + [SMALL_STATE(2597)] = 81405, + [SMALL_STATE(2598)] = 81436, + [SMALL_STATE(2599)] = 81473, + [SMALL_STATE(2600)] = 81506, + [SMALL_STATE(2601)] = 81543, + [SMALL_STATE(2602)] = 81574, + [SMALL_STATE(2603)] = 81603, + [SMALL_STATE(2604)] = 81632, + [SMALL_STATE(2605)] = 81663, + [SMALL_STATE(2606)] = 81692, + [SMALL_STATE(2607)] = 81723, + [SMALL_STATE(2608)] = 81752, + [SMALL_STATE(2609)] = 81789, + [SMALL_STATE(2610)] = 81818, + [SMALL_STATE(2611)] = 81849, + [SMALL_STATE(2612)] = 81878, + [SMALL_STATE(2613)] = 81907, + [SMALL_STATE(2614)] = 81936, + [SMALL_STATE(2615)] = 81967, + [SMALL_STATE(2616)] = 81996, + [SMALL_STATE(2617)] = 82027, + [SMALL_STATE(2618)] = 82056, + [SMALL_STATE(2619)] = 82085, + [SMALL_STATE(2620)] = 82114, + [SMALL_STATE(2621)] = 82151, + [SMALL_STATE(2622)] = 82182, + [SMALL_STATE(2623)] = 82215, + [SMALL_STATE(2624)] = 82244, + [SMALL_STATE(2625)] = 82275, + [SMALL_STATE(2626)] = 82306, + [SMALL_STATE(2627)] = 82337, + [SMALL_STATE(2628)] = 82366, + [SMALL_STATE(2629)] = 82397, + [SMALL_STATE(2630)] = 82428, + [SMALL_STATE(2631)] = 82459, + [SMALL_STATE(2632)] = 82492, + [SMALL_STATE(2633)] = 82525, + [SMALL_STATE(2634)] = 82556, + [SMALL_STATE(2635)] = 82589, + [SMALL_STATE(2636)] = 82617, + [SMALL_STATE(2637)] = 82653, + [SMALL_STATE(2638)] = 82683, + [SMALL_STATE(2639)] = 82711, + [SMALL_STATE(2640)] = 82743, + [SMALL_STATE(2641)] = 82771, + [SMALL_STATE(2642)] = 82805, + [SMALL_STATE(2643)] = 82837, + [SMALL_STATE(2644)] = 82867, + [SMALL_STATE(2645)] = 82911, + [SMALL_STATE(2646)] = 82947, + [SMALL_STATE(2647)] = 82983, + [SMALL_STATE(2648)] = 83013, + [SMALL_STATE(2649)] = 83045, + [SMALL_STATE(2650)] = 83077, + [SMALL_STATE(2651)] = 83109, + [SMALL_STATE(2652)] = 83141, + [SMALL_STATE(2653)] = 83173, + [SMALL_STATE(2654)] = 83201, + [SMALL_STATE(2655)] = 83239, + [SMALL_STATE(2656)] = 83275, + [SMALL_STATE(2657)] = 83311, + [SMALL_STATE(2658)] = 83341, + [SMALL_STATE(2659)] = 83377, + [SMALL_STATE(2660)] = 83407, + [SMALL_STATE(2661)] = 83435, + [SMALL_STATE(2662)] = 83463, + [SMALL_STATE(2663)] = 83491, + [SMALL_STATE(2664)] = 83519, + [SMALL_STATE(2665)] = 83547, + [SMALL_STATE(2666)] = 83581, + [SMALL_STATE(2667)] = 83613, + [SMALL_STATE(2668)] = 83641, + [SMALL_STATE(2669)] = 83669, + [SMALL_STATE(2670)] = 83713, + [SMALL_STATE(2671)] = 83743, + [SMALL_STATE(2672)] = 83779, + [SMALL_STATE(2673)] = 83823, + [SMALL_STATE(2674)] = 83853, + [SMALL_STATE(2675)] = 83889, + [SMALL_STATE(2676)] = 83919, + [SMALL_STATE(2677)] = 83947, + [SMALL_STATE(2678)] = 83977, + [SMALL_STATE(2679)] = 84013, + [SMALL_STATE(2680)] = 84043, + [SMALL_STATE(2681)] = 84071, + [SMALL_STATE(2682)] = 84101, + [SMALL_STATE(2683)] = 84137, + [SMALL_STATE(2684)] = 84165, + [SMALL_STATE(2685)] = 84193, + [SMALL_STATE(2686)] = 84229, + [SMALL_STATE(2687)] = 84259, + [SMALL_STATE(2688)] = 84287, + [SMALL_STATE(2689)] = 84315, + [SMALL_STATE(2690)] = 84343, + [SMALL_STATE(2691)] = 84387, + [SMALL_STATE(2692)] = 84423, + [SMALL_STATE(2693)] = 84453, + [SMALL_STATE(2694)] = 84489, + [SMALL_STATE(2695)] = 84533, + [SMALL_STATE(2696)] = 84563, + [SMALL_STATE(2697)] = 84594, + [SMALL_STATE(2698)] = 84625, + [SMALL_STATE(2699)] = 84656, + [SMALL_STATE(2700)] = 84683, + [SMALL_STATE(2701)] = 84714, + [SMALL_STATE(2702)] = 84745, + [SMALL_STATE(2703)] = 84776, + [SMALL_STATE(2704)] = 84807, + [SMALL_STATE(2705)] = 84834, + [SMALL_STATE(2706)] = 84867, + [SMALL_STATE(2707)] = 84900, + [SMALL_STATE(2708)] = 84927, + [SMALL_STATE(2709)] = 84954, + [SMALL_STATE(2710)] = 84981, + [SMALL_STATE(2711)] = 85012, + [SMALL_STATE(2712)] = 85041, + [SMALL_STATE(2713)] = 85070, + [SMALL_STATE(2714)] = 85097, + [SMALL_STATE(2715)] = 85124, + [SMALL_STATE(2716)] = 85159, + [SMALL_STATE(2717)] = 85190, + [SMALL_STATE(2718)] = 85221, + [SMALL_STATE(2719)] = 85256, + [SMALL_STATE(2720)] = 85287, + [SMALL_STATE(2721)] = 85318, + [SMALL_STATE(2722)] = 85347, + [SMALL_STATE(2723)] = 85376, + [SMALL_STATE(2724)] = 85409, + [SMALL_STATE(2725)] = 85436, + [SMALL_STATE(2726)] = 85463, + [SMALL_STATE(2727)] = 85490, + [SMALL_STATE(2728)] = 85519, + [SMALL_STATE(2729)] = 85550, + [SMALL_STATE(2730)] = 85577, + [SMALL_STATE(2731)] = 85606, + [SMALL_STATE(2732)] = 85637, + [SMALL_STATE(2733)] = 85664, + [SMALL_STATE(2734)] = 85695, + [SMALL_STATE(2735)] = 85726, + [SMALL_STATE(2736)] = 85753, + [SMALL_STATE(2737)] = 85780, + [SMALL_STATE(2738)] = 85809, + [SMALL_STATE(2739)] = 85838, + [SMALL_STATE(2740)] = 85871, + [SMALL_STATE(2741)] = 85904, + [SMALL_STATE(2742)] = 85935, + [SMALL_STATE(2743)] = 85966, + [SMALL_STATE(2744)] = 85999, + [SMALL_STATE(2745)] = 86030, + [SMALL_STATE(2746)] = 86061, + [SMALL_STATE(2747)] = 86092, + [SMALL_STATE(2748)] = 86123, + [SMALL_STATE(2749)] = 86152, + [SMALL_STATE(2750)] = 86183, + [SMALL_STATE(2751)] = 86210, + [SMALL_STATE(2752)] = 86243, + [SMALL_STATE(2753)] = 86276, + [SMALL_STATE(2754)] = 86303, + [SMALL_STATE(2755)] = 86330, + [SMALL_STATE(2756)] = 86361, + [SMALL_STATE(2757)] = 86392, + [SMALL_STATE(2758)] = 86425, + [SMALL_STATE(2759)] = 86458, + [SMALL_STATE(2760)] = 86489, + [SMALL_STATE(2761)] = 86516, + [SMALL_STATE(2762)] = 86547, + [SMALL_STATE(2763)] = 86574, + [SMALL_STATE(2764)] = 86605, + [SMALL_STATE(2765)] = 86632, + [SMALL_STATE(2766)] = 86663, + [SMALL_STATE(2767)] = 86692, + [SMALL_STATE(2768)] = 86717, + [SMALL_STATE(2769)] = 86748, + [SMALL_STATE(2770)] = 86773, + [SMALL_STATE(2771)] = 86804, + [SMALL_STATE(2772)] = 86829, + [SMALL_STATE(2773)] = 86856, + [SMALL_STATE(2774)] = 86885, + [SMALL_STATE(2775)] = 86912, + [SMALL_STATE(2776)] = 86937, + [SMALL_STATE(2777)] = 86962, + [SMALL_STATE(2778)] = 86989, + [SMALL_STATE(2779)] = 87020, + [SMALL_STATE(2780)] = 87051, + [SMALL_STATE(2781)] = 87076, + [SMALL_STATE(2782)] = 87101, + [SMALL_STATE(2783)] = 87134, + [SMALL_STATE(2784)] = 87165, + [SMALL_STATE(2785)] = 87196, + [SMALL_STATE(2786)] = 87225, + [SMALL_STATE(2787)] = 87256, + [SMALL_STATE(2788)] = 87291, + [SMALL_STATE(2789)] = 87322, + [SMALL_STATE(2790)] = 87357, + [SMALL_STATE(2791)] = 87388, + [SMALL_STATE(2792)] = 87421, + [SMALL_STATE(2793)] = 87454, + [SMALL_STATE(2794)] = 87479, + [SMALL_STATE(2795)] = 87506, + [SMALL_STATE(2796)] = 87533, + [SMALL_STATE(2797)] = 87562, + [SMALL_STATE(2798)] = 87591, + [SMALL_STATE(2799)] = 87616, + [SMALL_STATE(2800)] = 87641, + [SMALL_STATE(2801)] = 87668, + [SMALL_STATE(2802)] = 87695, + [SMALL_STATE(2803)] = 87724, + [SMALL_STATE(2804)] = 87753, + [SMALL_STATE(2805)] = 87782, + [SMALL_STATE(2806)] = 87809, + [SMALL_STATE(2807)] = 87840, + [SMALL_STATE(2808)] = 87867, + [SMALL_STATE(2809)] = 87898, + [SMALL_STATE(2810)] = 87935, + [SMALL_STATE(2811)] = 87962, + [SMALL_STATE(2812)] = 87993, + [SMALL_STATE(2813)] = 88024, + [SMALL_STATE(2814)] = 88051, + [SMALL_STATE(2815)] = 88078, + [SMALL_STATE(2816)] = 88105, + [SMALL_STATE(2817)] = 88132, + [SMALL_STATE(2818)] = 88159, + [SMALL_STATE(2819)] = 88190, + [SMALL_STATE(2820)] = 88215, + [SMALL_STATE(2821)] = 88246, + [SMALL_STATE(2822)] = 88277, + [SMALL_STATE(2823)] = 88310, + [SMALL_STATE(2824)] = 88343, + [SMALL_STATE(2825)] = 88370, + [SMALL_STATE(2826)] = 88401, + [SMALL_STATE(2827)] = 88432, + [SMALL_STATE(2828)] = 88459, + [SMALL_STATE(2829)] = 88492, + [SMALL_STATE(2830)] = 88521, + [SMALL_STATE(2831)] = 88550, + [SMALL_STATE(2832)] = 88583, + [SMALL_STATE(2833)] = 88616, + [SMALL_STATE(2834)] = 88651, + [SMALL_STATE(2835)] = 88678, + [SMALL_STATE(2836)] = 88709, + [SMALL_STATE(2837)] = 88740, + [SMALL_STATE(2838)] = 88767, + [SMALL_STATE(2839)] = 88794, + [SMALL_STATE(2840)] = 88823, + [SMALL_STATE(2841)] = 88854, + [SMALL_STATE(2842)] = 88885, + [SMALL_STATE(2843)] = 88916, + [SMALL_STATE(2844)] = 88947, + [SMALL_STATE(2845)] = 88980, + [SMALL_STATE(2846)] = 89013, + [SMALL_STATE(2847)] = 89040, + [SMALL_STATE(2848)] = 89075, + [SMALL_STATE(2849)] = 89110, + [SMALL_STATE(2850)] = 89145, + [SMALL_STATE(2851)] = 89180, + [SMALL_STATE(2852)] = 89215, + [SMALL_STATE(2853)] = 89250, + [SMALL_STATE(2854)] = 89277, + [SMALL_STATE(2855)] = 89304, + [SMALL_STATE(2856)] = 89331, + [SMALL_STATE(2857)] = 89362, + [SMALL_STATE(2858)] = 89393, + [SMALL_STATE(2859)] = 89422, + [SMALL_STATE(2860)] = 89451, + [SMALL_STATE(2861)] = 89484, + [SMALL_STATE(2862)] = 89517, + [SMALL_STATE(2863)] = 89548, + [SMALL_STATE(2864)] = 89579, + [SMALL_STATE(2865)] = 89610, + [SMALL_STATE(2866)] = 89641, + [SMALL_STATE(2867)] = 89668, + [SMALL_STATE(2868)] = 89695, + [SMALL_STATE(2869)] = 89726, + [SMALL_STATE(2870)] = 89754, + [SMALL_STATE(2871)] = 89778, + [SMALL_STATE(2872)] = 89804, + [SMALL_STATE(2873)] = 89828, + [SMALL_STATE(2874)] = 89854, + [SMALL_STATE(2875)] = 89878, + [SMALL_STATE(2876)] = 89930, + [SMALL_STATE(2877)] = 89960, + [SMALL_STATE(2878)] = 89986, + [SMALL_STATE(2879)] = 90012, + [SMALL_STATE(2880)] = 90040, + [SMALL_STATE(2881)] = 90064, + [SMALL_STATE(2882)] = 90092, + [SMALL_STATE(2883)] = 90144, + [SMALL_STATE(2884)] = 90170, + [SMALL_STATE(2885)] = 90222, + [SMALL_STATE(2886)] = 90252, + [SMALL_STATE(2887)] = 90282, + [SMALL_STATE(2888)] = 90308, + [SMALL_STATE(2889)] = 90336, + [SMALL_STATE(2890)] = 90362, + [SMALL_STATE(2891)] = 90388, + [SMALL_STATE(2892)] = 90414, + [SMALL_STATE(2893)] = 90444, + [SMALL_STATE(2894)] = 90474, + [SMALL_STATE(2895)] = 90498, + [SMALL_STATE(2896)] = 90522, + [SMALL_STATE(2897)] = 90546, + [SMALL_STATE(2898)] = 90572, + [SMALL_STATE(2899)] = 90602, + [SMALL_STATE(2900)] = 90626, + [SMALL_STATE(2901)] = 90652, + [SMALL_STATE(2902)] = 90680, + [SMALL_STATE(2903)] = 90708, + [SMALL_STATE(2904)] = 90734, + [SMALL_STATE(2905)] = 90758, + [SMALL_STATE(2906)] = 90784, + [SMALL_STATE(2907)] = 90812, + [SMALL_STATE(2908)] = 90842, + [SMALL_STATE(2909)] = 90872, + [SMALL_STATE(2910)] = 90912, + [SMALL_STATE(2911)] = 90942, + [SMALL_STATE(2912)] = 90968, + [SMALL_STATE(2913)] = 90998, + [SMALL_STATE(2914)] = 91026, + [SMALL_STATE(2915)] = 91058, + [SMALL_STATE(2916)] = 91088, + [SMALL_STATE(2917)] = 91118, + [SMALL_STATE(2918)] = 91148, + [SMALL_STATE(2919)] = 91172, + [SMALL_STATE(2920)] = 91202, + [SMALL_STATE(2921)] = 91248, + [SMALL_STATE(2922)] = 91276, + [SMALL_STATE(2923)] = 91304, + [SMALL_STATE(2924)] = 91336, + [SMALL_STATE(2925)] = 91362, + [SMALL_STATE(2926)] = 91414, + [SMALL_STATE(2927)] = 91442, + [SMALL_STATE(2928)] = 91472, + [SMALL_STATE(2929)] = 91496, + [SMALL_STATE(2930)] = 91522, + [SMALL_STATE(2931)] = 91550, + [SMALL_STATE(2932)] = 91582, + [SMALL_STATE(2933)] = 91608, + [SMALL_STATE(2934)] = 91634, + [SMALL_STATE(2935)] = 91660, + [SMALL_STATE(2936)] = 91690, + [SMALL_STATE(2937)] = 91716, + [SMALL_STATE(2938)] = 91746, + [SMALL_STATE(2939)] = 91772, + [SMALL_STATE(2940)] = 91802, + [SMALL_STATE(2941)] = 91832, + [SMALL_STATE(2942)] = 91862, + [SMALL_STATE(2943)] = 91892, + [SMALL_STATE(2944)] = 91922, + [SMALL_STATE(2945)] = 91974, + [SMALL_STATE(2946)] = 92000, + [SMALL_STATE(2947)] = 92026, + [SMALL_STATE(2948)] = 92052, + [SMALL_STATE(2949)] = 92082, + [SMALL_STATE(2950)] = 92114, + [SMALL_STATE(2951)] = 92140, + [SMALL_STATE(2952)] = 92192, + [SMALL_STATE(2953)] = 92222, + [SMALL_STATE(2954)] = 92274, + [SMALL_STATE(2955)] = 92326, + [SMALL_STATE(2956)] = 92356, + [SMALL_STATE(2957)] = 92380, + [SMALL_STATE(2958)] = 92406, + [SMALL_STATE(2959)] = 92432, + [SMALL_STATE(2960)] = 92458, + [SMALL_STATE(2961)] = 92510, + [SMALL_STATE(2962)] = 92536, + [SMALL_STATE(2963)] = 92560, + [SMALL_STATE(2964)] = 92588, + [SMALL_STATE(2965)] = 92618, + [SMALL_STATE(2966)] = 92662, + [SMALL_STATE(2967)] = 92714, + [SMALL_STATE(2968)] = 92740, + [SMALL_STATE(2969)] = 92770, + [SMALL_STATE(2970)] = 92795, + [SMALL_STATE(2971)] = 92824, + [SMALL_STATE(2972)] = 92847, + [SMALL_STATE(2973)] = 92872, + [SMALL_STATE(2974)] = 92901, + [SMALL_STATE(2975)] = 92926, + [SMALL_STATE(2976)] = 92955, + [SMALL_STATE(2977)] = 92984, + [SMALL_STATE(2978)] = 93011, + [SMALL_STATE(2979)] = 93040, + [SMALL_STATE(2980)] = 93065, + [SMALL_STATE(2981)] = 93094, + [SMALL_STATE(2982)] = 93123, + [SMALL_STATE(2983)] = 93148, + [SMALL_STATE(2984)] = 93173, + [SMALL_STATE(2985)] = 93198, + [SMALL_STATE(2986)] = 93227, + [SMALL_STATE(2987)] = 93252, + [SMALL_STATE(2988)] = 93277, + [SMALL_STATE(2989)] = 93302, + [SMALL_STATE(2990)] = 93327, + [SMALL_STATE(2991)] = 93352, + [SMALL_STATE(2992)] = 93381, + [SMALL_STATE(2993)] = 93406, + [SMALL_STATE(2994)] = 93431, + [SMALL_STATE(2995)] = 93460, + [SMALL_STATE(2996)] = 93497, + [SMALL_STATE(2997)] = 93522, + [SMALL_STATE(2998)] = 93547, + [SMALL_STATE(2999)] = 93572, + [SMALL_STATE(3000)] = 93601, + [SMALL_STATE(3001)] = 93626, + [SMALL_STATE(3002)] = 93655, + [SMALL_STATE(3003)] = 93680, + [SMALL_STATE(3004)] = 93705, + [SMALL_STATE(3005)] = 93730, + [SMALL_STATE(3006)] = 93755, + [SMALL_STATE(3007)] = 93780, + [SMALL_STATE(3008)] = 93805, + [SMALL_STATE(3009)] = 93830, + [SMALL_STATE(3010)] = 93855, + [SMALL_STATE(3011)] = 93884, + [SMALL_STATE(3012)] = 93909, + [SMALL_STATE(3013)] = 93934, + [SMALL_STATE(3014)] = 93963, + [SMALL_STATE(3015)] = 93992, + [SMALL_STATE(3016)] = 94017, + [SMALL_STATE(3017)] = 94046, + [SMALL_STATE(3018)] = 94075, + [SMALL_STATE(3019)] = 94100, + [SMALL_STATE(3020)] = 94125, + [SMALL_STATE(3021)] = 94152, + [SMALL_STATE(3022)] = 94177, + [SMALL_STATE(3023)] = 94202, + [SMALL_STATE(3024)] = 94227, + [SMALL_STATE(3025)] = 94254, + [SMALL_STATE(3026)] = 94283, + [SMALL_STATE(3027)] = 94314, + [SMALL_STATE(3028)] = 94339, + [SMALL_STATE(3029)] = 94368, + [SMALL_STATE(3030)] = 94397, + [SMALL_STATE(3031)] = 94426, + [SMALL_STATE(3032)] = 94451, + [SMALL_STATE(3033)] = 94480, + [SMALL_STATE(3034)] = 94505, + [SMALL_STATE(3035)] = 94534, + [SMALL_STATE(3036)] = 94559, + [SMALL_STATE(3037)] = 94584, + [SMALL_STATE(3038)] = 94613, + [SMALL_STATE(3039)] = 94638, + [SMALL_STATE(3040)] = 94677, + [SMALL_STATE(3041)] = 94702, + [SMALL_STATE(3042)] = 94727, + [SMALL_STATE(3043)] = 94756, + [SMALL_STATE(3044)] = 94785, + [SMALL_STATE(3045)] = 94822, + [SMALL_STATE(3046)] = 94847, + [SMALL_STATE(3047)] = 94890, + [SMALL_STATE(3048)] = 94921, + [SMALL_STATE(3049)] = 94946, + [SMALL_STATE(3050)] = 94971, + [SMALL_STATE(3051)] = 95000, + [SMALL_STATE(3052)] = 95025, + [SMALL_STATE(3053)] = 95050, + [SMALL_STATE(3054)] = 95075, + [SMALL_STATE(3055)] = 95100, + [SMALL_STATE(3056)] = 95129, + [SMALL_STATE(3057)] = 95154, + [SMALL_STATE(3058)] = 95181, + [SMALL_STATE(3059)] = 95208, + [SMALL_STATE(3060)] = 95233, + [SMALL_STATE(3061)] = 95262, + [SMALL_STATE(3062)] = 95287, + [SMALL_STATE(3063)] = 95316, + [SMALL_STATE(3064)] = 95345, + [SMALL_STATE(3065)] = 95370, + [SMALL_STATE(3066)] = 95395, + [SMALL_STATE(3067)] = 95420, + [SMALL_STATE(3068)] = 95445, + [SMALL_STATE(3069)] = 95470, + [SMALL_STATE(3070)] = 95495, + [SMALL_STATE(3071)] = 95520, + [SMALL_STATE(3072)] = 95545, + [SMALL_STATE(3073)] = 95570, + [SMALL_STATE(3074)] = 95599, + [SMALL_STATE(3075)] = 95626, + [SMALL_STATE(3076)] = 95657, + [SMALL_STATE(3077)] = 95700, + [SMALL_STATE(3078)] = 95729, + [SMALL_STATE(3079)] = 95756, + [SMALL_STATE(3080)] = 95779, + [SMALL_STATE(3081)] = 95808, + [SMALL_STATE(3082)] = 95837, + [SMALL_STATE(3083)] = 95862, + [SMALL_STATE(3084)] = 95891, + [SMALL_STATE(3085)] = 95920, + [SMALL_STATE(3086)] = 95949, + [SMALL_STATE(3087)] = 95974, + [SMALL_STATE(3088)] = 95999, + [SMALL_STATE(3089)] = 96028, + [SMALL_STATE(3090)] = 96053, + [SMALL_STATE(3091)] = 96078, + [SMALL_STATE(3092)] = 96103, + [SMALL_STATE(3093)] = 96128, + [SMALL_STATE(3094)] = 96153, + [SMALL_STATE(3095)] = 96178, + [SMALL_STATE(3096)] = 96203, + [SMALL_STATE(3097)] = 96228, + [SMALL_STATE(3098)] = 96257, + [SMALL_STATE(3099)] = 96286, + [SMALL_STATE(3100)] = 96311, + [SMALL_STATE(3101)] = 96336, + [SMALL_STATE(3102)] = 96361, + [SMALL_STATE(3103)] = 96386, + [SMALL_STATE(3104)] = 96411, + [SMALL_STATE(3105)] = 96436, + [SMALL_STATE(3106)] = 96461, + [SMALL_STATE(3107)] = 96486, + [SMALL_STATE(3108)] = 96517, + [SMALL_STATE(3109)] = 96542, + [SMALL_STATE(3110)] = 96567, + [SMALL_STATE(3111)] = 96592, + [SMALL_STATE(3112)] = 96617, + [SMALL_STATE(3113)] = 96642, + [SMALL_STATE(3114)] = 96667, + [SMALL_STATE(3115)] = 96692, + [SMALL_STATE(3116)] = 96721, + [SMALL_STATE(3117)] = 96758, + [SMALL_STATE(3118)] = 96783, + [SMALL_STATE(3119)] = 96808, + [SMALL_STATE(3120)] = 96833, + [SMALL_STATE(3121)] = 96862, + [SMALL_STATE(3122)] = 96887, + [SMALL_STATE(3123)] = 96912, + [SMALL_STATE(3124)] = 96941, + [SMALL_STATE(3125)] = 96966, + [SMALL_STATE(3126)] = 96995, + [SMALL_STATE(3127)] = 97024, + [SMALL_STATE(3128)] = 97049, + [SMALL_STATE(3129)] = 97095, + [SMALL_STATE(3130)] = 97117, + [SMALL_STATE(3131)] = 97141, + [SMALL_STATE(3132)] = 97165, + [SMALL_STATE(3133)] = 97189, + [SMALL_STATE(3134)] = 97235, + [SMALL_STATE(3135)] = 97281, + [SMALL_STATE(3136)] = 97321, + [SMALL_STATE(3137)] = 97345, + [SMALL_STATE(3138)] = 97369, + [SMALL_STATE(3139)] = 97393, + [SMALL_STATE(3140)] = 97417, + [SMALL_STATE(3141)] = 97441, + [SMALL_STATE(3142)] = 97465, + [SMALL_STATE(3143)] = 97511, + [SMALL_STATE(3144)] = 97533, + [SMALL_STATE(3145)] = 97555, + [SMALL_STATE(3146)] = 97579, + [SMALL_STATE(3147)] = 97603, + [SMALL_STATE(3148)] = 97627, + [SMALL_STATE(3149)] = 97651, + [SMALL_STATE(3150)] = 97675, + [SMALL_STATE(3151)] = 97699, + [SMALL_STATE(3152)] = 97723, + [SMALL_STATE(3153)] = 97759, + [SMALL_STATE(3154)] = 97785, + [SMALL_STATE(3155)] = 97809, + [SMALL_STATE(3156)] = 97833, + [SMALL_STATE(3157)] = 97857, + [SMALL_STATE(3158)] = 97881, + [SMALL_STATE(3159)] = 97921, + [SMALL_STATE(3160)] = 97945, + [SMALL_STATE(3161)] = 97969, + [SMALL_STATE(3162)] = 98005, + [SMALL_STATE(3163)] = 98045, + [SMALL_STATE(3164)] = 98069, + [SMALL_STATE(3165)] = 98091, + [SMALL_STATE(3166)] = 98115, + [SMALL_STATE(3167)] = 98139, + [SMALL_STATE(3168)] = 98163, + [SMALL_STATE(3169)] = 98187, + [SMALL_STATE(3170)] = 98211, + [SMALL_STATE(3171)] = 98235, + [SMALL_STATE(3172)] = 98259, + [SMALL_STATE(3173)] = 98281, + [SMALL_STATE(3174)] = 98303, + [SMALL_STATE(3175)] = 98325, + [SMALL_STATE(3176)] = 98347, + [SMALL_STATE(3177)] = 98369, + [SMALL_STATE(3178)] = 98393, + [SMALL_STATE(3179)] = 98417, + [SMALL_STATE(3180)] = 98441, + [SMALL_STATE(3181)] = 98465, + [SMALL_STATE(3182)] = 98489, + [SMALL_STATE(3183)] = 98511, + [SMALL_STATE(3184)] = 98535, + [SMALL_STATE(3185)] = 98559, + [SMALL_STATE(3186)] = 98599, + [SMALL_STATE(3187)] = 98623, + [SMALL_STATE(3188)] = 98647, + [SMALL_STATE(3189)] = 98671, + [SMALL_STATE(3190)] = 98695, + [SMALL_STATE(3191)] = 98719, + [SMALL_STATE(3192)] = 98743, + [SMALL_STATE(3193)] = 98767, + [SMALL_STATE(3194)] = 98789, + [SMALL_STATE(3195)] = 98813, + [SMALL_STATE(3196)] = 98837, + [SMALL_STATE(3197)] = 98883, + [SMALL_STATE(3198)] = 98907, + [SMALL_STATE(3199)] = 98931, + [SMALL_STATE(3200)] = 98955, + [SMALL_STATE(3201)] = 98979, + [SMALL_STATE(3202)] = 99003, + [SMALL_STATE(3203)] = 99027, + [SMALL_STATE(3204)] = 99051, + [SMALL_STATE(3205)] = 99075, + [SMALL_STATE(3206)] = 99099, + [SMALL_STATE(3207)] = 99123, + [SMALL_STATE(3208)] = 99147, + [SMALL_STATE(3209)] = 99171, + [SMALL_STATE(3210)] = 99195, + [SMALL_STATE(3211)] = 99217, + [SMALL_STATE(3212)] = 99239, + [SMALL_STATE(3213)] = 99281, + [SMALL_STATE(3214)] = 99305, + [SMALL_STATE(3215)] = 99329, + [SMALL_STATE(3216)] = 99353, + [SMALL_STATE(3217)] = 99377, + [SMALL_STATE(3218)] = 99401, + [SMALL_STATE(3219)] = 99441, + [SMALL_STATE(3220)] = 99465, + [SMALL_STATE(3221)] = 99489, + [SMALL_STATE(3222)] = 99513, + [SMALL_STATE(3223)] = 99559, + [SMALL_STATE(3224)] = 99583, + [SMALL_STATE(3225)] = 99605, + [SMALL_STATE(3226)] = 99629, + [SMALL_STATE(3227)] = 99663, + [SMALL_STATE(3228)] = 99687, + [SMALL_STATE(3229)] = 99711, + [SMALL_STATE(3230)] = 99757, + [SMALL_STATE(3231)] = 99785, + [SMALL_STATE(3232)] = 99809, + [SMALL_STATE(3233)] = 99837, + [SMALL_STATE(3234)] = 99865, + [SMALL_STATE(3235)] = 99893, + [SMALL_STATE(3236)] = 99921, + [SMALL_STATE(3237)] = 99949, + [SMALL_STATE(3238)] = 99977, + [SMALL_STATE(3239)] = 100005, + [SMALL_STATE(3240)] = 100033, + [SMALL_STATE(3241)] = 100061, + [SMALL_STATE(3242)] = 100089, + [SMALL_STATE(3243)] = 100117, + [SMALL_STATE(3244)] = 100141, + [SMALL_STATE(3245)] = 100181, + [SMALL_STATE(3246)] = 100203, + [SMALL_STATE(3247)] = 100227, + [SMALL_STATE(3248)] = 100251, + [SMALL_STATE(3249)] = 100291, + [SMALL_STATE(3250)] = 100313, + [SMALL_STATE(3251)] = 100337, + [SMALL_STATE(3252)] = 100383, + [SMALL_STATE(3253)] = 100407, + [SMALL_STATE(3254)] = 100431, + [SMALL_STATE(3255)] = 100455, + [SMALL_STATE(3256)] = 100501, + [SMALL_STATE(3257)] = 100525, + [SMALL_STATE(3258)] = 100567, + [SMALL_STATE(3259)] = 100591, + [SMALL_STATE(3260)] = 100625, + [SMALL_STATE(3261)] = 100651, + [SMALL_STATE(3262)] = 100685, + [SMALL_STATE(3263)] = 100709, + [SMALL_STATE(3264)] = 100743, + [SMALL_STATE(3265)] = 100767, + [SMALL_STATE(3266)] = 100791, + [SMALL_STATE(3267)] = 100837, + [SMALL_STATE(3268)] = 100876, + [SMALL_STATE(3269)] = 100899, + [SMALL_STATE(3270)] = 100922, + [SMALL_STATE(3271)] = 100947, + [SMALL_STATE(3272)] = 100970, + [SMALL_STATE(3273)] = 100991, + [SMALL_STATE(3274)] = 101012, + [SMALL_STATE(3275)] = 101033, + [SMALL_STATE(3276)] = 101054, + [SMALL_STATE(3277)] = 101081, + [SMALL_STATE(3278)] = 101104, + [SMALL_STATE(3279)] = 101127, + [SMALL_STATE(3280)] = 101150, + [SMALL_STATE(3281)] = 101173, + [SMALL_STATE(3282)] = 101196, + [SMALL_STATE(3283)] = 101217, + [SMALL_STATE(3284)] = 101238, + [SMALL_STATE(3285)] = 101265, + [SMALL_STATE(3286)] = 101286, + [SMALL_STATE(3287)] = 101307, + [SMALL_STATE(3288)] = 101328, + [SMALL_STATE(3289)] = 101349, + [SMALL_STATE(3290)] = 101376, + [SMALL_STATE(3291)] = 101397, + [SMALL_STATE(3292)] = 101418, + [SMALL_STATE(3293)] = 101441, + [SMALL_STATE(3294)] = 101468, + [SMALL_STATE(3295)] = 101495, + [SMALL_STATE(3296)] = 101516, + [SMALL_STATE(3297)] = 101537, + [SMALL_STATE(3298)] = 101558, + [SMALL_STATE(3299)] = 101579, + [SMALL_STATE(3300)] = 101606, + [SMALL_STATE(3301)] = 101633, + [SMALL_STATE(3302)] = 101660, + [SMALL_STATE(3303)] = 101687, + [SMALL_STATE(3304)] = 101714, + [SMALL_STATE(3305)] = 101741, + [SMALL_STATE(3306)] = 101768, + [SMALL_STATE(3307)] = 101789, + [SMALL_STATE(3308)] = 101816, + [SMALL_STATE(3309)] = 101843, + [SMALL_STATE(3310)] = 101870, + [SMALL_STATE(3311)] = 101897, + [SMALL_STATE(3312)] = 101918, + [SMALL_STATE(3313)] = 101957, + [SMALL_STATE(3314)] = 101978, + [SMALL_STATE(3315)] = 102017, + [SMALL_STATE(3316)] = 102038, + [SMALL_STATE(3317)] = 102075, + [SMALL_STATE(3318)] = 102096, + [SMALL_STATE(3319)] = 102117, + [SMALL_STATE(3320)] = 102140, + [SMALL_STATE(3321)] = 102177, + [SMALL_STATE(3322)] = 102200, + [SMALL_STATE(3323)] = 102221, + [SMALL_STATE(3324)] = 102242, + [SMALL_STATE(3325)] = 102279, + [SMALL_STATE(3326)] = 102300, + [SMALL_STATE(3327)] = 102321, + [SMALL_STATE(3328)] = 102342, + [SMALL_STATE(3329)] = 102363, + [SMALL_STATE(3330)] = 102384, + [SMALL_STATE(3331)] = 102405, + [SMALL_STATE(3332)] = 102426, + [SMALL_STATE(3333)] = 102447, + [SMALL_STATE(3334)] = 102474, + [SMALL_STATE(3335)] = 102495, + [SMALL_STATE(3336)] = 102522, + [SMALL_STATE(3337)] = 102545, + [SMALL_STATE(3338)] = 102566, + [SMALL_STATE(3339)] = 102587, + [SMALL_STATE(3340)] = 102608, + [SMALL_STATE(3341)] = 102631, + [SMALL_STATE(3342)] = 102668, + [SMALL_STATE(3343)] = 102689, + [SMALL_STATE(3344)] = 102710, + [SMALL_STATE(3345)] = 102733, + [SMALL_STATE(3346)] = 102770, + [SMALL_STATE(3347)] = 102791, + [SMALL_STATE(3348)] = 102830, + [SMALL_STATE(3349)] = 102853, + [SMALL_STATE(3350)] = 102876, + [SMALL_STATE(3351)] = 102899, + [SMALL_STATE(3352)] = 102922, + [SMALL_STATE(3353)] = 102943, + [SMALL_STATE(3354)] = 102964, + [SMALL_STATE(3355)] = 103003, + [SMALL_STATE(3356)] = 103026, + [SMALL_STATE(3357)] = 103063, + [SMALL_STATE(3358)] = 103100, + [SMALL_STATE(3359)] = 103137, + [SMALL_STATE(3360)] = 103164, + [SMALL_STATE(3361)] = 103185, + [SMALL_STATE(3362)] = 103206, + [SMALL_STATE(3363)] = 103233, + [SMALL_STATE(3364)] = 103270, + [SMALL_STATE(3365)] = 103291, + [SMALL_STATE(3366)] = 103312, + [SMALL_STATE(3367)] = 103333, + [SMALL_STATE(3368)] = 103360, + [SMALL_STATE(3369)] = 103381, + [SMALL_STATE(3370)] = 103402, + [SMALL_STATE(3371)] = 103441, + [SMALL_STATE(3372)] = 103478, + [SMALL_STATE(3373)] = 103499, + [SMALL_STATE(3374)] = 103520, + [SMALL_STATE(3375)] = 103541, + [SMALL_STATE(3376)] = 103578, + [SMALL_STATE(3377)] = 103615, + [SMALL_STATE(3378)] = 103636, + [SMALL_STATE(3379)] = 103659, + [SMALL_STATE(3380)] = 103696, + [SMALL_STATE(3381)] = 103717, + [SMALL_STATE(3382)] = 103740, + [SMALL_STATE(3383)] = 103763, + [SMALL_STATE(3384)] = 103790, + [SMALL_STATE(3385)] = 103813, + [SMALL_STATE(3386)] = 103834, + [SMALL_STATE(3387)] = 103855, + [SMALL_STATE(3388)] = 103876, + [SMALL_STATE(3389)] = 103899, + [SMALL_STATE(3390)] = 103920, + [SMALL_STATE(3391)] = 103943, + [SMALL_STATE(3392)] = 103964, + [SMALL_STATE(3393)] = 103993, + [SMALL_STATE(3394)] = 104014, + [SMALL_STATE(3395)] = 104035, + [SMALL_STATE(3396)] = 104074, + [SMALL_STATE(3397)] = 104101, + [SMALL_STATE(3398)] = 104124, + [SMALL_STATE(3399)] = 104147, + [SMALL_STATE(3400)] = 104170, + [SMALL_STATE(3401)] = 104193, + [SMALL_STATE(3402)] = 104216, + [SMALL_STATE(3403)] = 104237, + [SMALL_STATE(3404)] = 104260, + [SMALL_STATE(3405)] = 104281, + [SMALL_STATE(3406)] = 104304, + [SMALL_STATE(3407)] = 104327, + [SMALL_STATE(3408)] = 104361, + [SMALL_STATE(3409)] = 104385, + [SMALL_STATE(3410)] = 104409, + [SMALL_STATE(3411)] = 104435, + [SMALL_STATE(3412)] = 104461, + [SMALL_STATE(3413)] = 104495, + [SMALL_STATE(3414)] = 104521, + [SMALL_STATE(3415)] = 104547, + [SMALL_STATE(3416)] = 104583, + [SMALL_STATE(3417)] = 104607, + [SMALL_STATE(3418)] = 104631, + [SMALL_STATE(3419)] = 104657, + [SMALL_STATE(3420)] = 104687, + [SMALL_STATE(3421)] = 104713, + [SMALL_STATE(3422)] = 104737, + [SMALL_STATE(3423)] = 104767, + [SMALL_STATE(3424)] = 104801, + [SMALL_STATE(3425)] = 104825, + [SMALL_STATE(3426)] = 104857, + [SMALL_STATE(3427)] = 104887, + [SMALL_STATE(3428)] = 104909, + [SMALL_STATE(3429)] = 104933, + [SMALL_STATE(3430)] = 104959, + [SMALL_STATE(3431)] = 104985, + [SMALL_STATE(3432)] = 105011, + [SMALL_STATE(3433)] = 105047, + [SMALL_STATE(3434)] = 105071, + [SMALL_STATE(3435)] = 105103, + [SMALL_STATE(3436)] = 105129, + [SMALL_STATE(3437)] = 105155, + [SMALL_STATE(3438)] = 105187, + [SMALL_STATE(3439)] = 105219, + [SMALL_STATE(3440)] = 105251, + [SMALL_STATE(3441)] = 105275, + [SMALL_STATE(3442)] = 105311, + [SMALL_STATE(3443)] = 105333, + [SMALL_STATE(3444)] = 105357, + [SMALL_STATE(3445)] = 105383, + [SMALL_STATE(3446)] = 105419, + [SMALL_STATE(3447)] = 105444, + [SMALL_STATE(3448)] = 105467, + [SMALL_STATE(3449)] = 105488, + [SMALL_STATE(3450)] = 105511, + [SMALL_STATE(3451)] = 105542, + [SMALL_STATE(3452)] = 105573, + [SMALL_STATE(3453)] = 105596, + [SMALL_STATE(3454)] = 105629, + [SMALL_STATE(3455)] = 105662, + [SMALL_STATE(3456)] = 105695, + [SMALL_STATE(3457)] = 105728, + [SMALL_STATE(3458)] = 105759, + [SMALL_STATE(3459)] = 105790, + [SMALL_STATE(3460)] = 105811, + [SMALL_STATE(3461)] = 105834, + [SMALL_STATE(3462)] = 105867, + [SMALL_STATE(3463)] = 105900, + [SMALL_STATE(3464)] = 105925, + [SMALL_STATE(3465)] = 105950, + [SMALL_STATE(3466)] = 105971, + [SMALL_STATE(3467)] = 105992, + [SMALL_STATE(3468)] = 106013, + [SMALL_STATE(3469)] = 106034, + [SMALL_STATE(3470)] = 106063, + [SMALL_STATE(3471)] = 106084, + [SMALL_STATE(3472)] = 106105, + [SMALL_STATE(3473)] = 106138, + [SMALL_STATE(3474)] = 106171, + [SMALL_STATE(3475)] = 106192, + [SMALL_STATE(3476)] = 106225, + [SMALL_STATE(3477)] = 106250, + [SMALL_STATE(3478)] = 106283, + [SMALL_STATE(3479)] = 106308, + [SMALL_STATE(3480)] = 106341, + [SMALL_STATE(3481)] = 106374, + [SMALL_STATE(3482)] = 106409, + [SMALL_STATE(3483)] = 106434, + [SMALL_STATE(3484)] = 106467, + [SMALL_STATE(3485)] = 106500, + [SMALL_STATE(3486)] = 106531, + [SMALL_STATE(3487)] = 106566, + [SMALL_STATE(3488)] = 106587, + [SMALL_STATE(3489)] = 106608, + [SMALL_STATE(3490)] = 106629, + [SMALL_STATE(3491)] = 106660, + [SMALL_STATE(3492)] = 106681, + [SMALL_STATE(3493)] = 106706, + [SMALL_STATE(3494)] = 106739, + [SMALL_STATE(3495)] = 106772, + [SMALL_STATE(3496)] = 106803, + [SMALL_STATE(3497)] = 106836, + [SMALL_STATE(3498)] = 106869, + [SMALL_STATE(3499)] = 106890, + [SMALL_STATE(3500)] = 106923, + [SMALL_STATE(3501)] = 106956, + [SMALL_STATE(3502)] = 106987, + [SMALL_STATE(3503)] = 107020, + [SMALL_STATE(3504)] = 107053, + [SMALL_STATE(3505)] = 107084, + [SMALL_STATE(3506)] = 107117, + [SMALL_STATE(3507)] = 107150, + [SMALL_STATE(3508)] = 107181, + [SMALL_STATE(3509)] = 107214, + [SMALL_STATE(3510)] = 107247, + [SMALL_STATE(3511)] = 107278, + [SMALL_STATE(3512)] = 107311, + [SMALL_STATE(3513)] = 107344, + [SMALL_STATE(3514)] = 107375, + [SMALL_STATE(3515)] = 107408, + [SMALL_STATE(3516)] = 107441, + [SMALL_STATE(3517)] = 107472, + [SMALL_STATE(3518)] = 107505, + [SMALL_STATE(3519)] = 107538, + [SMALL_STATE(3520)] = 107569, + [SMALL_STATE(3521)] = 107602, + [SMALL_STATE(3522)] = 107635, + [SMALL_STATE(3523)] = 107666, + [SMALL_STATE(3524)] = 107699, + [SMALL_STATE(3525)] = 107732, + [SMALL_STATE(3526)] = 107763, + [SMALL_STATE(3527)] = 107794, + [SMALL_STATE(3528)] = 107825, + [SMALL_STATE(3529)] = 107856, + [SMALL_STATE(3530)] = 107887, + [SMALL_STATE(3531)] = 107918, + [SMALL_STATE(3532)] = 107949, + [SMALL_STATE(3533)] = 107970, + [SMALL_STATE(3534)] = 107993, + [SMALL_STATE(3535)] = 108024, + [SMALL_STATE(3536)] = 108051, + [SMALL_STATE(3537)] = 108076, + [SMALL_STATE(3538)] = 108099, + [SMALL_STATE(3539)] = 108120, + [SMALL_STATE(3540)] = 108141, + [SMALL_STATE(3541)] = 108164, + [SMALL_STATE(3542)] = 108185, + [SMALL_STATE(3543)] = 108206, + [SMALL_STATE(3544)] = 108231, + [SMALL_STATE(3545)] = 108262, + [SMALL_STATE(3546)] = 108286, + [SMALL_STATE(3547)] = 108314, + [SMALL_STATE(3548)] = 108336, + [SMALL_STATE(3549)] = 108358, + [SMALL_STATE(3550)] = 108386, + [SMALL_STATE(3551)] = 108414, + [SMALL_STATE(3552)] = 108434, + [SMALL_STATE(3553)] = 108458, + [SMALL_STATE(3554)] = 108480, + [SMALL_STATE(3555)] = 108508, + [SMALL_STATE(3556)] = 108536, + [SMALL_STATE(3557)] = 108562, + [SMALL_STATE(3558)] = 108590, + [SMALL_STATE(3559)] = 108618, + [SMALL_STATE(3560)] = 108642, + [SMALL_STATE(3561)] = 108670, + [SMALL_STATE(3562)] = 108698, + [SMALL_STATE(3563)] = 108716, + [SMALL_STATE(3564)] = 108742, + [SMALL_STATE(3565)] = 108770, + [SMALL_STATE(3566)] = 108798, + [SMALL_STATE(3567)] = 108824, + [SMALL_STATE(3568)] = 108852, + [SMALL_STATE(3569)] = 108880, + [SMALL_STATE(3570)] = 108908, + [SMALL_STATE(3571)] = 108936, + [SMALL_STATE(3572)] = 108958, + [SMALL_STATE(3573)] = 108986, + [SMALL_STATE(3574)] = 109014, + [SMALL_STATE(3575)] = 109044, + [SMALL_STATE(3576)] = 109064, + [SMALL_STATE(3577)] = 109092, + [SMALL_STATE(3578)] = 109114, + [SMALL_STATE(3579)] = 109142, + [SMALL_STATE(3580)] = 109162, + [SMALL_STATE(3581)] = 109182, + [SMALL_STATE(3582)] = 109210, + [SMALL_STATE(3583)] = 109238, + [SMALL_STATE(3584)] = 109258, + [SMALL_STATE(3585)] = 109278, + [SMALL_STATE(3586)] = 109298, + [SMALL_STATE(3587)] = 109326, + [SMALL_STATE(3588)] = 109354, + [SMALL_STATE(3589)] = 109382, + [SMALL_STATE(3590)] = 109406, + [SMALL_STATE(3591)] = 109434, + [SMALL_STATE(3592)] = 109462, + [SMALL_STATE(3593)] = 109490, + [SMALL_STATE(3594)] = 109518, + [SMALL_STATE(3595)] = 109546, + [SMALL_STATE(3596)] = 109574, + [SMALL_STATE(3597)] = 109602, + [SMALL_STATE(3598)] = 109630, + [SMALL_STATE(3599)] = 109660, + [SMALL_STATE(3600)] = 109688, + [SMALL_STATE(3601)] = 109712, + [SMALL_STATE(3602)] = 109740, + [SMALL_STATE(3603)] = 109768, + [SMALL_STATE(3604)] = 109796, + [SMALL_STATE(3605)] = 109824, + [SMALL_STATE(3606)] = 109852, + [SMALL_STATE(3607)] = 109880, + [SMALL_STATE(3608)] = 109908, + [SMALL_STATE(3609)] = 109936, + [SMALL_STATE(3610)] = 109956, + [SMALL_STATE(3611)] = 109984, + [SMALL_STATE(3612)] = 110006, + [SMALL_STATE(3613)] = 110034, + [SMALL_STATE(3614)] = 110060, + [SMALL_STATE(3615)] = 110084, + [SMALL_STATE(3616)] = 110106, + [SMALL_STATE(3617)] = 110124, + [SMALL_STATE(3618)] = 110152, + [SMALL_STATE(3619)] = 110174, + [SMALL_STATE(3620)] = 110194, + [SMALL_STATE(3621)] = 110222, + [SMALL_STATE(3622)] = 110241, + [SMALL_STATE(3623)] = 110262, + [SMALL_STATE(3624)] = 110289, + [SMALL_STATE(3625)] = 110308, + [SMALL_STATE(3626)] = 110335, + [SMALL_STATE(3627)] = 110360, + [SMALL_STATE(3628)] = 110379, + [SMALL_STATE(3629)] = 110404, + [SMALL_STATE(3630)] = 110429, + [SMALL_STATE(3631)] = 110454, + [SMALL_STATE(3632)] = 110475, + [SMALL_STATE(3633)] = 110500, + [SMALL_STATE(3634)] = 110521, + [SMALL_STATE(3635)] = 110546, + [SMALL_STATE(3636)] = 110565, + [SMALL_STATE(3637)] = 110590, + [SMALL_STATE(3638)] = 110615, + [SMALL_STATE(3639)] = 110636, + [SMALL_STATE(3640)] = 110665, + [SMALL_STATE(3641)] = 110688, + [SMALL_STATE(3642)] = 110713, + [SMALL_STATE(3643)] = 110740, + [SMALL_STATE(3644)] = 110759, + [SMALL_STATE(3645)] = 110784, + [SMALL_STATE(3646)] = 110803, + [SMALL_STATE(3647)] = 110828, + [SMALL_STATE(3648)] = 110847, + [SMALL_STATE(3649)] = 110866, + [SMALL_STATE(3650)] = 110885, + [SMALL_STATE(3651)] = 110910, + [SMALL_STATE(3652)] = 110929, + [SMALL_STATE(3653)] = 110956, + [SMALL_STATE(3654)] = 110979, + [SMALL_STATE(3655)] = 111004, + [SMALL_STATE(3656)] = 111023, + [SMALL_STATE(3657)] = 111042, + [SMALL_STATE(3658)] = 111065, + [SMALL_STATE(3659)] = 111092, + [SMALL_STATE(3660)] = 111113, + [SMALL_STATE(3661)] = 111136, + [SMALL_STATE(3662)] = 111155, + [SMALL_STATE(3663)] = 111176, + [SMALL_STATE(3664)] = 111195, + [SMALL_STATE(3665)] = 111222, + [SMALL_STATE(3666)] = 111245, + [SMALL_STATE(3667)] = 111266, + [SMALL_STATE(3668)] = 111285, + [SMALL_STATE(3669)] = 111310, + [SMALL_STATE(3670)] = 111329, + [SMALL_STATE(3671)] = 111348, + [SMALL_STATE(3672)] = 111373, + [SMALL_STATE(3673)] = 111392, + [SMALL_STATE(3674)] = 111423, + [SMALL_STATE(3675)] = 111442, + [SMALL_STATE(3676)] = 111470, + [SMALL_STATE(3677)] = 111492, + [SMALL_STATE(3678)] = 111520, + [SMALL_STATE(3679)] = 111548, + [SMALL_STATE(3680)] = 111572, + [SMALL_STATE(3681)] = 111598, + [SMALL_STATE(3682)] = 111626, + [SMALL_STATE(3683)] = 111648, + [SMALL_STATE(3684)] = 111676, + [SMALL_STATE(3685)] = 111704, + [SMALL_STATE(3686)] = 111732, + [SMALL_STATE(3687)] = 111760, + [SMALL_STATE(3688)] = 111778, + [SMALL_STATE(3689)] = 111802, + [SMALL_STATE(3690)] = 111820, + [SMALL_STATE(3691)] = 111848, + [SMALL_STATE(3692)] = 111874, + [SMALL_STATE(3693)] = 111900, + [SMALL_STATE(3694)] = 111926, + [SMALL_STATE(3695)] = 111944, + [SMALL_STATE(3696)] = 111966, + [SMALL_STATE(3697)] = 111992, + [SMALL_STATE(3698)] = 112020, + [SMALL_STATE(3699)] = 112044, + [SMALL_STATE(3700)] = 112062, + [SMALL_STATE(3701)] = 112084, + [SMALL_STATE(3702)] = 112102, + [SMALL_STATE(3703)] = 112128, + [SMALL_STATE(3704)] = 112148, + [SMALL_STATE(3705)] = 112168, + [SMALL_STATE(3706)] = 112188, + [SMALL_STATE(3707)] = 112214, + [SMALL_STATE(3708)] = 112238, + [SMALL_STATE(3709)] = 112256, + [SMALL_STATE(3710)] = 112282, + [SMALL_STATE(3711)] = 112310, + [SMALL_STATE(3712)] = 112334, + [SMALL_STATE(3713)] = 112362, + [SMALL_STATE(3714)] = 112390, + [SMALL_STATE(3715)] = 112414, + [SMALL_STATE(3716)] = 112440, + [SMALL_STATE(3717)] = 112466, + [SMALL_STATE(3718)] = 112492, + [SMALL_STATE(3719)] = 112518, + [SMALL_STATE(3720)] = 112546, + [SMALL_STATE(3721)] = 112570, + [SMALL_STATE(3722)] = 112596, + [SMALL_STATE(3723)] = 112622, + [SMALL_STATE(3724)] = 112644, + [SMALL_STATE(3725)] = 112670, + [SMALL_STATE(3726)] = 112688, + [SMALL_STATE(3727)] = 112710, + [SMALL_STATE(3728)] = 112736, + [SMALL_STATE(3729)] = 112764, + [SMALL_STATE(3730)] = 112792, + [SMALL_STATE(3731)] = 112820, + [SMALL_STATE(3732)] = 112848, + [SMALL_STATE(3733)] = 112876, + [SMALL_STATE(3734)] = 112904, + [SMALL_STATE(3735)] = 112932, + [SMALL_STATE(3736)] = 112960, + [SMALL_STATE(3737)] = 112988, + [SMALL_STATE(3738)] = 113016, + [SMALL_STATE(3739)] = 113044, + [SMALL_STATE(3740)] = 113072, + [SMALL_STATE(3741)] = 113100, + [SMALL_STATE(3742)] = 113128, + [SMALL_STATE(3743)] = 113156, + [SMALL_STATE(3744)] = 113184, + [SMALL_STATE(3745)] = 113202, + [SMALL_STATE(3746)] = 113220, + [SMALL_STATE(3747)] = 113248, + [SMALL_STATE(3748)] = 113276, + [SMALL_STATE(3749)] = 113296, + [SMALL_STATE(3750)] = 113324, + [SMALL_STATE(3751)] = 113350, + [SMALL_STATE(3752)] = 113370, + [SMALL_STATE(3753)] = 113390, + [SMALL_STATE(3754)] = 113410, + [SMALL_STATE(3755)] = 113430, + [SMALL_STATE(3756)] = 113454, + [SMALL_STATE(3757)] = 113482, + [SMALL_STATE(3758)] = 113508, + [SMALL_STATE(3759)] = 113536, + [SMALL_STATE(3760)] = 113554, + [SMALL_STATE(3761)] = 113582, + [SMALL_STATE(3762)] = 113610, + [SMALL_STATE(3763)] = 113638, + [SMALL_STATE(3764)] = 113660, + [SMALL_STATE(3765)] = 113688, + [SMALL_STATE(3766)] = 113712, + [SMALL_STATE(3767)] = 113740, + [SMALL_STATE(3768)] = 113764, + [SMALL_STATE(3769)] = 113790, + [SMALL_STATE(3770)] = 113812, + [SMALL_STATE(3771)] = 113834, + [SMALL_STATE(3772)] = 113852, + [SMALL_STATE(3773)] = 113870, + [SMALL_STATE(3774)] = 113898, + [SMALL_STATE(3775)] = 113924, + [SMALL_STATE(3776)] = 113942, + [SMALL_STATE(3777)] = 113964, + [SMALL_STATE(3778)] = 113990, + [SMALL_STATE(3779)] = 114012, + [SMALL_STATE(3780)] = 114040, + [SMALL_STATE(3781)] = 114068, + [SMALL_STATE(3782)] = 114096, + [SMALL_STATE(3783)] = 114124, + [SMALL_STATE(3784)] = 114146, + [SMALL_STATE(3785)] = 114174, + [SMALL_STATE(3786)] = 114199, + [SMALL_STATE(3787)] = 114218, + [SMALL_STATE(3788)] = 114237, + [SMALL_STATE(3789)] = 114258, + [SMALL_STATE(3790)] = 114283, + [SMALL_STATE(3791)] = 114304, + [SMALL_STATE(3792)] = 114325, + [SMALL_STATE(3793)] = 114350, + [SMALL_STATE(3794)] = 114373, + [SMALL_STATE(3795)] = 114394, + [SMALL_STATE(3796)] = 114419, + [SMALL_STATE(3797)] = 114438, + [SMALL_STATE(3798)] = 114463, + [SMALL_STATE(3799)] = 114482, + [SMALL_STATE(3800)] = 114507, + [SMALL_STATE(3801)] = 114526, + [SMALL_STATE(3802)] = 114547, + [SMALL_STATE(3803)] = 114568, + [SMALL_STATE(3804)] = 114593, + [SMALL_STATE(3805)] = 114614, + [SMALL_STATE(3806)] = 114637, + [SMALL_STATE(3807)] = 114658, + [SMALL_STATE(3808)] = 114679, + [SMALL_STATE(3809)] = 114702, + [SMALL_STATE(3810)] = 114721, + [SMALL_STATE(3811)] = 114740, + [SMALL_STATE(3812)] = 114765, + [SMALL_STATE(3813)] = 114784, + [SMALL_STATE(3814)] = 114807, + [SMALL_STATE(3815)] = 114828, + [SMALL_STATE(3816)] = 114849, + [SMALL_STATE(3817)] = 114870, + [SMALL_STATE(3818)] = 114889, + [SMALL_STATE(3819)] = 114912, + [SMALL_STATE(3820)] = 114937, + [SMALL_STATE(3821)] = 114960, + [SMALL_STATE(3822)] = 114983, + [SMALL_STATE(3823)] = 115004, + [SMALL_STATE(3824)] = 115027, + [SMALL_STATE(3825)] = 115052, + [SMALL_STATE(3826)] = 115073, + [SMALL_STATE(3827)] = 115090, + [SMALL_STATE(3828)] = 115109, + [SMALL_STATE(3829)] = 115130, + [SMALL_STATE(3830)] = 115153, + [SMALL_STATE(3831)] = 115178, + [SMALL_STATE(3832)] = 115201, + [SMALL_STATE(3833)] = 115216, + [SMALL_STATE(3834)] = 115239, + [SMALL_STATE(3835)] = 115262, + [SMALL_STATE(3836)] = 115283, + [SMALL_STATE(3837)] = 115306, + [SMALL_STATE(3838)] = 115325, + [SMALL_STATE(3839)] = 115344, + [SMALL_STATE(3840)] = 115369, + [SMALL_STATE(3841)] = 115392, + [SMALL_STATE(3842)] = 115407, + [SMALL_STATE(3843)] = 115430, + [SMALL_STATE(3844)] = 115453, + [SMALL_STATE(3845)] = 115476, + [SMALL_STATE(3846)] = 115499, + [SMALL_STATE(3847)] = 115514, + [SMALL_STATE(3848)] = 115537, + [SMALL_STATE(3849)] = 115560, + [SMALL_STATE(3850)] = 115583, + [SMALL_STATE(3851)] = 115604, + [SMALL_STATE(3852)] = 115625, + [SMALL_STATE(3853)] = 115648, + [SMALL_STATE(3854)] = 115671, + [SMALL_STATE(3855)] = 115694, + [SMALL_STATE(3856)] = 115717, + [SMALL_STATE(3857)] = 115740, + [SMALL_STATE(3858)] = 115761, + [SMALL_STATE(3859)] = 115782, + [SMALL_STATE(3860)] = 115805, + [SMALL_STATE(3861)] = 115824, + [SMALL_STATE(3862)] = 115847, + [SMALL_STATE(3863)] = 115868, + [SMALL_STATE(3864)] = 115893, + [SMALL_STATE(3865)] = 115908, + [SMALL_STATE(3866)] = 115931, + [SMALL_STATE(3867)] = 115952, + [SMALL_STATE(3868)] = 115973, + [SMALL_STATE(3869)] = 115992, + [SMALL_STATE(3870)] = 116011, + [SMALL_STATE(3871)] = 116026, + [SMALL_STATE(3872)] = 116043, + [SMALL_STATE(3873)] = 116064, + [SMALL_STATE(3874)] = 116089, + [SMALL_STATE(3875)] = 116104, + [SMALL_STATE(3876)] = 116129, + [SMALL_STATE(3877)] = 116152, + [SMALL_STATE(3878)] = 116177, + [SMALL_STATE(3879)] = 116200, + [SMALL_STATE(3880)] = 116221, + [SMALL_STATE(3881)] = 116246, + [SMALL_STATE(3882)] = 116271, + [SMALL_STATE(3883)] = 116294, + [SMALL_STATE(3884)] = 116317, + [SMALL_STATE(3885)] = 116340, + [SMALL_STATE(3886)] = 116361, + [SMALL_STATE(3887)] = 116384, + [SMALL_STATE(3888)] = 116401, + [SMALL_STATE(3889)] = 116424, + [SMALL_STATE(3890)] = 116443, + [SMALL_STATE(3891)] = 116460, + [SMALL_STATE(3892)] = 116479, + [SMALL_STATE(3893)] = 116502, + [SMALL_STATE(3894)] = 116525, + [SMALL_STATE(3895)] = 116548, + [SMALL_STATE(3896)] = 116569, + [SMALL_STATE(3897)] = 116592, + [SMALL_STATE(3898)] = 116613, + [SMALL_STATE(3899)] = 116636, + [SMALL_STATE(3900)] = 116657, + [SMALL_STATE(3901)] = 116678, + [SMALL_STATE(3902)] = 116699, + [SMALL_STATE(3903)] = 116722, + [SMALL_STATE(3904)] = 116743, + [SMALL_STATE(3905)] = 116768, + [SMALL_STATE(3906)] = 116793, + [SMALL_STATE(3907)] = 116818, + [SMALL_STATE(3908)] = 116837, + [SMALL_STATE(3909)] = 116860, + [SMALL_STATE(3910)] = 116877, + [SMALL_STATE(3911)] = 116900, + [SMALL_STATE(3912)] = 116923, + [SMALL_STATE(3913)] = 116946, + [SMALL_STATE(3914)] = 116967, + [SMALL_STATE(3915)] = 116990, + [SMALL_STATE(3916)] = 117013, + [SMALL_STATE(3917)] = 117032, + [SMALL_STATE(3918)] = 117057, + [SMALL_STATE(3919)] = 117082, + [SMALL_STATE(3920)] = 117107, + [SMALL_STATE(3921)] = 117128, + [SMALL_STATE(3922)] = 117151, + [SMALL_STATE(3923)] = 117176, + [SMALL_STATE(3924)] = 117201, + [SMALL_STATE(3925)] = 117222, + [SMALL_STATE(3926)] = 117243, + [SMALL_STATE(3927)] = 117266, + [SMALL_STATE(3928)] = 117291, + [SMALL_STATE(3929)] = 117314, + [SMALL_STATE(3930)] = 117335, + [SMALL_STATE(3931)] = 117358, + [SMALL_STATE(3932)] = 117383, + [SMALL_STATE(3933)] = 117405, + [SMALL_STATE(3934)] = 117423, + [SMALL_STATE(3935)] = 117439, + [SMALL_STATE(3936)] = 117459, + [SMALL_STATE(3937)] = 117477, + [SMALL_STATE(3938)] = 117499, + [SMALL_STATE(3939)] = 117519, + [SMALL_STATE(3940)] = 117539, + [SMALL_STATE(3941)] = 117555, + [SMALL_STATE(3942)] = 117573, + [SMALL_STATE(3943)] = 117593, + [SMALL_STATE(3944)] = 117609, + [SMALL_STATE(3945)] = 117629, + [SMALL_STATE(3946)] = 117651, + [SMALL_STATE(3947)] = 117669, + [SMALL_STATE(3948)] = 117687, + [SMALL_STATE(3949)] = 117703, + [SMALL_STATE(3950)] = 117721, + [SMALL_STATE(3951)] = 117741, + [SMALL_STATE(3952)] = 117757, + [SMALL_STATE(3953)] = 117773, + [SMALL_STATE(3954)] = 117789, + [SMALL_STATE(3955)] = 117805, + [SMALL_STATE(3956)] = 117821, + [SMALL_STATE(3957)] = 117843, + [SMALL_STATE(3958)] = 117863, + [SMALL_STATE(3959)] = 117879, + [SMALL_STATE(3960)] = 117895, + [SMALL_STATE(3961)] = 117915, + [SMALL_STATE(3962)] = 117933, + [SMALL_STATE(3963)] = 117953, + [SMALL_STATE(3964)] = 117969, + [SMALL_STATE(3965)] = 117985, + [SMALL_STATE(3966)] = 118005, + [SMALL_STATE(3967)] = 118025, + [SMALL_STATE(3968)] = 118045, + [SMALL_STATE(3969)] = 118065, + [SMALL_STATE(3970)] = 118087, + [SMALL_STATE(3971)] = 118103, + [SMALL_STATE(3972)] = 118125, + [SMALL_STATE(3973)] = 118145, + [SMALL_STATE(3974)] = 118163, + [SMALL_STATE(3975)] = 118185, + [SMALL_STATE(3976)] = 118205, + [SMALL_STATE(3977)] = 118223, + [SMALL_STATE(3978)] = 118241, + [SMALL_STATE(3979)] = 118261, + [SMALL_STATE(3980)] = 118281, + [SMALL_STATE(3981)] = 118301, + [SMALL_STATE(3982)] = 118321, + [SMALL_STATE(3983)] = 118341, + [SMALL_STATE(3984)] = 118363, + [SMALL_STATE(3985)] = 118383, + [SMALL_STATE(3986)] = 118403, + [SMALL_STATE(3987)] = 118423, + [SMALL_STATE(3988)] = 118443, + [SMALL_STATE(3989)] = 118463, + [SMALL_STATE(3990)] = 118483, + [SMALL_STATE(3991)] = 118505, + [SMALL_STATE(3992)] = 118525, + [SMALL_STATE(3993)] = 118541, + [SMALL_STATE(3994)] = 118557, + [SMALL_STATE(3995)] = 118577, + [SMALL_STATE(3996)] = 118599, + [SMALL_STATE(3997)] = 118617, + [SMALL_STATE(3998)] = 118633, + [SMALL_STATE(3999)] = 118655, + [SMALL_STATE(4000)] = 118675, + [SMALL_STATE(4001)] = 118691, + [SMALL_STATE(4002)] = 118711, + [SMALL_STATE(4003)] = 118731, + [SMALL_STATE(4004)] = 118751, + [SMALL_STATE(4005)] = 118765, + [SMALL_STATE(4006)] = 118787, + [SMALL_STATE(4007)] = 118801, + [SMALL_STATE(4008)] = 118821, + [SMALL_STATE(4009)] = 118837, + [SMALL_STATE(4010)] = 118857, + [SMALL_STATE(4011)] = 118877, + [SMALL_STATE(4012)] = 118899, + [SMALL_STATE(4013)] = 118919, + [SMALL_STATE(4014)] = 118935, + [SMALL_STATE(4015)] = 118955, + [SMALL_STATE(4016)] = 118977, + [SMALL_STATE(4017)] = 118999, + [SMALL_STATE(4018)] = 119019, + [SMALL_STATE(4019)] = 119041, + [SMALL_STATE(4020)] = 119063, + [SMALL_STATE(4021)] = 119081, + [SMALL_STATE(4022)] = 119103, + [SMALL_STATE(4023)] = 119123, + [SMALL_STATE(4024)] = 119141, + [SMALL_STATE(4025)] = 119159, + [SMALL_STATE(4026)] = 119179, + [SMALL_STATE(4027)] = 119193, + [SMALL_STATE(4028)] = 119213, + [SMALL_STATE(4029)] = 119235, + [SMALL_STATE(4030)] = 119257, + [SMALL_STATE(4031)] = 119277, + [SMALL_STATE(4032)] = 119299, + [SMALL_STATE(4033)] = 119317, + [SMALL_STATE(4034)] = 119337, + [SMALL_STATE(4035)] = 119359, + [SMALL_STATE(4036)] = 119381, + [SMALL_STATE(4037)] = 119399, + [SMALL_STATE(4038)] = 119421, + [SMALL_STATE(4039)] = 119439, + [SMALL_STATE(4040)] = 119453, + [SMALL_STATE(4041)] = 119471, + [SMALL_STATE(4042)] = 119485, + [SMALL_STATE(4043)] = 119501, + [SMALL_STATE(4044)] = 119521, + [SMALL_STATE(4045)] = 119541, + [SMALL_STATE(4046)] = 119559, + [SMALL_STATE(4047)] = 119579, + [SMALL_STATE(4048)] = 119601, + [SMALL_STATE(4049)] = 119621, + [SMALL_STATE(4050)] = 119643, + [SMALL_STATE(4051)] = 119659, + [SMALL_STATE(4052)] = 119681, + [SMALL_STATE(4053)] = 119703, + [SMALL_STATE(4054)] = 119717, + [SMALL_STATE(4055)] = 119739, + [SMALL_STATE(4056)] = 119759, + [SMALL_STATE(4057)] = 119779, + [SMALL_STATE(4058)] = 119799, + [SMALL_STATE(4059)] = 119821, + [SMALL_STATE(4060)] = 119841, + [SMALL_STATE(4061)] = 119857, + [SMALL_STATE(4062)] = 119873, + [SMALL_STATE(4063)] = 119889, + [SMALL_STATE(4064)] = 119909, + [SMALL_STATE(4065)] = 119929, + [SMALL_STATE(4066)] = 119945, + [SMALL_STATE(4067)] = 119967, + [SMALL_STATE(4068)] = 119981, + [SMALL_STATE(4069)] = 119997, + [SMALL_STATE(4070)] = 120013, + [SMALL_STATE(4071)] = 120031, + [SMALL_STATE(4072)] = 120051, + [SMALL_STATE(4073)] = 120073, + [SMALL_STATE(4074)] = 120095, + [SMALL_STATE(4075)] = 120111, + [SMALL_STATE(4076)] = 120133, + [SMALL_STATE(4077)] = 120155, + [SMALL_STATE(4078)] = 120169, + [SMALL_STATE(4079)] = 120187, + [SMALL_STATE(4080)] = 120209, + [SMALL_STATE(4081)] = 120231, + [SMALL_STATE(4082)] = 120253, + [SMALL_STATE(4083)] = 120271, + [SMALL_STATE(4084)] = 120293, + [SMALL_STATE(4085)] = 120311, + [SMALL_STATE(4086)] = 120331, + [SMALL_STATE(4087)] = 120349, + [SMALL_STATE(4088)] = 120367, + [SMALL_STATE(4089)] = 120387, + [SMALL_STATE(4090)] = 120405, + [SMALL_STATE(4091)] = 120423, + [SMALL_STATE(4092)] = 120445, + [SMALL_STATE(4093)] = 120458, + [SMALL_STATE(4094)] = 120471, + [SMALL_STATE(4095)] = 120490, + [SMALL_STATE(4096)] = 120503, + [SMALL_STATE(4097)] = 120518, + [SMALL_STATE(4098)] = 120531, + [SMALL_STATE(4099)] = 120548, + [SMALL_STATE(4100)] = 120561, + [SMALL_STATE(4101)] = 120574, + [SMALL_STATE(4102)] = 120587, + [SMALL_STATE(4103)] = 120600, + [SMALL_STATE(4104)] = 120613, + [SMALL_STATE(4105)] = 120628, + [SMALL_STATE(4106)] = 120641, + [SMALL_STATE(4107)] = 120654, + [SMALL_STATE(4108)] = 120667, + [SMALL_STATE(4109)] = 120686, + [SMALL_STATE(4110)] = 120699, + [SMALL_STATE(4111)] = 120714, + [SMALL_STATE(4112)] = 120733, + [SMALL_STATE(4113)] = 120752, + [SMALL_STATE(4114)] = 120767, + [SMALL_STATE(4115)] = 120784, + [SMALL_STATE(4116)] = 120799, + [SMALL_STATE(4117)] = 120814, + [SMALL_STATE(4118)] = 120829, + [SMALL_STATE(4119)] = 120844, + [SMALL_STATE(4120)] = 120859, + [SMALL_STATE(4121)] = 120876, + [SMALL_STATE(4122)] = 120891, + [SMALL_STATE(4123)] = 120910, + [SMALL_STATE(4124)] = 120927, + [SMALL_STATE(4125)] = 120946, + [SMALL_STATE(4126)] = 120959, + [SMALL_STATE(4127)] = 120972, + [SMALL_STATE(4128)] = 120985, + [SMALL_STATE(4129)] = 120998, + [SMALL_STATE(4130)] = 121011, + [SMALL_STATE(4131)] = 121024, + [SMALL_STATE(4132)] = 121043, + [SMALL_STATE(4133)] = 121060, + [SMALL_STATE(4134)] = 121077, + [SMALL_STATE(4135)] = 121092, + [SMALL_STATE(4136)] = 121107, + [SMALL_STATE(4137)] = 121124, + [SMALL_STATE(4138)] = 121141, + [SMALL_STATE(4139)] = 121156, + [SMALL_STATE(4140)] = 121169, + [SMALL_STATE(4141)] = 121184, + [SMALL_STATE(4142)] = 121203, + [SMALL_STATE(4143)] = 121218, + [SMALL_STATE(4144)] = 121237, + [SMALL_STATE(4145)] = 121252, + [SMALL_STATE(4146)] = 121269, + [SMALL_STATE(4147)] = 121286, + [SMALL_STATE(4148)] = 121303, + [SMALL_STATE(4149)] = 121318, + [SMALL_STATE(4150)] = 121335, + [SMALL_STATE(4151)] = 121352, + [SMALL_STATE(4152)] = 121369, + [SMALL_STATE(4153)] = 121388, + [SMALL_STATE(4154)] = 121401, + [SMALL_STATE(4155)] = 121416, + [SMALL_STATE(4156)] = 121431, + [SMALL_STATE(4157)] = 121450, + [SMALL_STATE(4158)] = 121463, + [SMALL_STATE(4159)] = 121478, + [SMALL_STATE(4160)] = 121491, + [SMALL_STATE(4161)] = 121504, + [SMALL_STATE(4162)] = 121517, + [SMALL_STATE(4163)] = 121530, + [SMALL_STATE(4164)] = 121549, + [SMALL_STATE(4165)] = 121568, + [SMALL_STATE(4166)] = 121583, + [SMALL_STATE(4167)] = 121596, + [SMALL_STATE(4168)] = 121615, + [SMALL_STATE(4169)] = 121628, + [SMALL_STATE(4170)] = 121643, + [SMALL_STATE(4171)] = 121656, + [SMALL_STATE(4172)] = 121675, + [SMALL_STATE(4173)] = 121688, + [SMALL_STATE(4174)] = 121703, + [SMALL_STATE(4175)] = 121716, + [SMALL_STATE(4176)] = 121729, + [SMALL_STATE(4177)] = 121742, + [SMALL_STATE(4178)] = 121759, + [SMALL_STATE(4179)] = 121776, + [SMALL_STATE(4180)] = 121789, + [SMALL_STATE(4181)] = 121802, + [SMALL_STATE(4182)] = 121815, + [SMALL_STATE(4183)] = 121828, + [SMALL_STATE(4184)] = 121841, + [SMALL_STATE(4185)] = 121854, + [SMALL_STATE(4186)] = 121867, + [SMALL_STATE(4187)] = 121884, + [SMALL_STATE(4188)] = 121897, + [SMALL_STATE(4189)] = 121910, + [SMALL_STATE(4190)] = 121929, + [SMALL_STATE(4191)] = 121946, + [SMALL_STATE(4192)] = 121963, + [SMALL_STATE(4193)] = 121982, + [SMALL_STATE(4194)] = 122001, + [SMALL_STATE(4195)] = 122020, + [SMALL_STATE(4196)] = 122037, + [SMALL_STATE(4197)] = 122052, + [SMALL_STATE(4198)] = 122071, + [SMALL_STATE(4199)] = 122090, + [SMALL_STATE(4200)] = 122109, + [SMALL_STATE(4201)] = 122128, + [SMALL_STATE(4202)] = 122147, + [SMALL_STATE(4203)] = 122166, + [SMALL_STATE(4204)] = 122183, + [SMALL_STATE(4205)] = 122202, + [SMALL_STATE(4206)] = 122217, + [SMALL_STATE(4207)] = 122230, + [SMALL_STATE(4208)] = 122243, + [SMALL_STATE(4209)] = 122256, + [SMALL_STATE(4210)] = 122269, + [SMALL_STATE(4211)] = 122282, + [SMALL_STATE(4212)] = 122295, + [SMALL_STATE(4213)] = 122308, + [SMALL_STATE(4214)] = 122323, + [SMALL_STATE(4215)] = 122336, + [SMALL_STATE(4216)] = 122349, + [SMALL_STATE(4217)] = 122368, + [SMALL_STATE(4218)] = 122381, + [SMALL_STATE(4219)] = 122394, + [SMALL_STATE(4220)] = 122413, + [SMALL_STATE(4221)] = 122426, + [SMALL_STATE(4222)] = 122439, + [SMALL_STATE(4223)] = 122452, + [SMALL_STATE(4224)] = 122465, + [SMALL_STATE(4225)] = 122478, + [SMALL_STATE(4226)] = 122493, + [SMALL_STATE(4227)] = 122512, + [SMALL_STATE(4228)] = 122531, + [SMALL_STATE(4229)] = 122550, + [SMALL_STATE(4230)] = 122569, + [SMALL_STATE(4231)] = 122588, + [SMALL_STATE(4232)] = 122607, + [SMALL_STATE(4233)] = 122626, + [SMALL_STATE(4234)] = 122645, + [SMALL_STATE(4235)] = 122664, + [SMALL_STATE(4236)] = 122679, + [SMALL_STATE(4237)] = 122698, + [SMALL_STATE(4238)] = 122713, + [SMALL_STATE(4239)] = 122728, + [SMALL_STATE(4240)] = 122741, + [SMALL_STATE(4241)] = 122754, + [SMALL_STATE(4242)] = 122767, + [SMALL_STATE(4243)] = 122780, + [SMALL_STATE(4244)] = 122793, + [SMALL_STATE(4245)] = 122806, + [SMALL_STATE(4246)] = 122819, + [SMALL_STATE(4247)] = 122832, + [SMALL_STATE(4248)] = 122851, + [SMALL_STATE(4249)] = 122870, + [SMALL_STATE(4250)] = 122883, + [SMALL_STATE(4251)] = 122896, + [SMALL_STATE(4252)] = 122911, + [SMALL_STATE(4253)] = 122928, + [SMALL_STATE(4254)] = 122943, + [SMALL_STATE(4255)] = 122958, + [SMALL_STATE(4256)] = 122973, + [SMALL_STATE(4257)] = 122986, + [SMALL_STATE(4258)] = 122999, + [SMALL_STATE(4259)] = 123014, + [SMALL_STATE(4260)] = 123029, + [SMALL_STATE(4261)] = 123042, + [SMALL_STATE(4262)] = 123055, + [SMALL_STATE(4263)] = 123068, + [SMALL_STATE(4264)] = 123081, + [SMALL_STATE(4265)] = 123100, + [SMALL_STATE(4266)] = 123113, + [SMALL_STATE(4267)] = 123132, + [SMALL_STATE(4268)] = 123145, + [SMALL_STATE(4269)] = 123158, + [SMALL_STATE(4270)] = 123177, + [SMALL_STATE(4271)] = 123190, + [SMALL_STATE(4272)] = 123207, + [SMALL_STATE(4273)] = 123222, + [SMALL_STATE(4274)] = 123237, + [SMALL_STATE(4275)] = 123250, + [SMALL_STATE(4276)] = 123263, + [SMALL_STATE(4277)] = 123278, + [SMALL_STATE(4278)] = 123291, + [SMALL_STATE(4279)] = 123304, + [SMALL_STATE(4280)] = 123317, + [SMALL_STATE(4281)] = 123330, + [SMALL_STATE(4282)] = 123345, + [SMALL_STATE(4283)] = 123358, + [SMALL_STATE(4284)] = 123371, + [SMALL_STATE(4285)] = 123386, + [SMALL_STATE(4286)] = 123399, + [SMALL_STATE(4287)] = 123414, + [SMALL_STATE(4288)] = 123429, + [SMALL_STATE(4289)] = 123444, + [SMALL_STATE(4290)] = 123457, + [SMALL_STATE(4291)] = 123470, + [SMALL_STATE(4292)] = 123485, + [SMALL_STATE(4293)] = 123500, + [SMALL_STATE(4294)] = 123515, + [SMALL_STATE(4295)] = 123528, + [SMALL_STATE(4296)] = 123547, + [SMALL_STATE(4297)] = 123560, + [SMALL_STATE(4298)] = 123573, + [SMALL_STATE(4299)] = 123592, + [SMALL_STATE(4300)] = 123609, + [SMALL_STATE(4301)] = 123622, + [SMALL_STATE(4302)] = 123635, + [SMALL_STATE(4303)] = 123648, + [SMALL_STATE(4304)] = 123663, + [SMALL_STATE(4305)] = 123676, + [SMALL_STATE(4306)] = 123689, + [SMALL_STATE(4307)] = 123702, + [SMALL_STATE(4308)] = 123715, + [SMALL_STATE(4309)] = 123728, + [SMALL_STATE(4310)] = 123741, + [SMALL_STATE(4311)] = 123760, + [SMALL_STATE(4312)] = 123773, + [SMALL_STATE(4313)] = 123786, + [SMALL_STATE(4314)] = 123799, + [SMALL_STATE(4315)] = 123812, + [SMALL_STATE(4316)] = 123829, + [SMALL_STATE(4317)] = 123846, + [SMALL_STATE(4318)] = 123859, + [SMALL_STATE(4319)] = 123876, + [SMALL_STATE(4320)] = 123893, + [SMALL_STATE(4321)] = 123908, + [SMALL_STATE(4322)] = 123925, + [SMALL_STATE(4323)] = 123938, + [SMALL_STATE(4324)] = 123955, + [SMALL_STATE(4325)] = 123968, + [SMALL_STATE(4326)] = 123981, + [SMALL_STATE(4327)] = 124000, + [SMALL_STATE(4328)] = 124013, + [SMALL_STATE(4329)] = 124026, + [SMALL_STATE(4330)] = 124039, + [SMALL_STATE(4331)] = 124052, + [SMALL_STATE(4332)] = 124067, + [SMALL_STATE(4333)] = 124080, + [SMALL_STATE(4334)] = 124093, + [SMALL_STATE(4335)] = 124108, + [SMALL_STATE(4336)] = 124121, + [SMALL_STATE(4337)] = 124134, + [SMALL_STATE(4338)] = 124147, + [SMALL_STATE(4339)] = 124160, + [SMALL_STATE(4340)] = 124173, + [SMALL_STATE(4341)] = 124190, + [SMALL_STATE(4342)] = 124203, + [SMALL_STATE(4343)] = 124216, + [SMALL_STATE(4344)] = 124229, + [SMALL_STATE(4345)] = 124244, + [SMALL_STATE(4346)] = 124257, + [SMALL_STATE(4347)] = 124270, + [SMALL_STATE(4348)] = 124283, + [SMALL_STATE(4349)] = 124296, + [SMALL_STATE(4350)] = 124309, + [SMALL_STATE(4351)] = 124324, + [SMALL_STATE(4352)] = 124339, + [SMALL_STATE(4353)] = 124352, + [SMALL_STATE(4354)] = 124369, + [SMALL_STATE(4355)] = 124382, + [SMALL_STATE(4356)] = 124397, + [SMALL_STATE(4357)] = 124410, + [SMALL_STATE(4358)] = 124429, + [SMALL_STATE(4359)] = 124444, + [SMALL_STATE(4360)] = 124463, + [SMALL_STATE(4361)] = 124482, + [SMALL_STATE(4362)] = 124499, + [SMALL_STATE(4363)] = 124512, + [SMALL_STATE(4364)] = 124525, + [SMALL_STATE(4365)] = 124544, + [SMALL_STATE(4366)] = 124563, + [SMALL_STATE(4367)] = 124580, + [SMALL_STATE(4368)] = 124599, + [SMALL_STATE(4369)] = 124612, + [SMALL_STATE(4370)] = 124629, + [SMALL_STATE(4371)] = 124642, + [SMALL_STATE(4372)] = 124657, + [SMALL_STATE(4373)] = 124670, + [SMALL_STATE(4374)] = 124683, + [SMALL_STATE(4375)] = 124702, + [SMALL_STATE(4376)] = 124719, + [SMALL_STATE(4377)] = 124734, + [SMALL_STATE(4378)] = 124749, + [SMALL_STATE(4379)] = 124764, + [SMALL_STATE(4380)] = 124783, + [SMALL_STATE(4381)] = 124798, + [SMALL_STATE(4382)] = 124813, + [SMALL_STATE(4383)] = 124832, + [SMALL_STATE(4384)] = 124849, + [SMALL_STATE(4385)] = 124862, + [SMALL_STATE(4386)] = 124879, + [SMALL_STATE(4387)] = 124894, + [SMALL_STATE(4388)] = 124913, + [SMALL_STATE(4389)] = 124926, + [SMALL_STATE(4390)] = 124943, + [SMALL_STATE(4391)] = 124960, + [SMALL_STATE(4392)] = 124979, + [SMALL_STATE(4393)] = 124998, + [SMALL_STATE(4394)] = 125013, + [SMALL_STATE(4395)] = 125032, + [SMALL_STATE(4396)] = 125051, + [SMALL_STATE(4397)] = 125070, + [SMALL_STATE(4398)] = 125089, + [SMALL_STATE(4399)] = 125108, + [SMALL_STATE(4400)] = 125127, + [SMALL_STATE(4401)] = 125146, + [SMALL_STATE(4402)] = 125165, + [SMALL_STATE(4403)] = 125181, + [SMALL_STATE(4404)] = 125193, + [SMALL_STATE(4405)] = 125207, + [SMALL_STATE(4406)] = 125223, + [SMALL_STATE(4407)] = 125239, + [SMALL_STATE(4408)] = 125253, + [SMALL_STATE(4409)] = 125265, + [SMALL_STATE(4410)] = 125281, + [SMALL_STATE(4411)] = 125297, + [SMALL_STATE(4412)] = 125313, + [SMALL_STATE(4413)] = 125329, + [SMALL_STATE(4414)] = 125345, + [SMALL_STATE(4415)] = 125357, + [SMALL_STATE(4416)] = 125369, + [SMALL_STATE(4417)] = 125381, + [SMALL_STATE(4418)] = 125393, + [SMALL_STATE(4419)] = 125405, + [SMALL_STATE(4420)] = 125417, + [SMALL_STATE(4421)] = 125431, + [SMALL_STATE(4422)] = 125447, + [SMALL_STATE(4423)] = 125459, + [SMALL_STATE(4424)] = 125471, + [SMALL_STATE(4425)] = 125483, + [SMALL_STATE(4426)] = 125495, + [SMALL_STATE(4427)] = 125511, + [SMALL_STATE(4428)] = 125527, + [SMALL_STATE(4429)] = 125543, + [SMALL_STATE(4430)] = 125559, + [SMALL_STATE(4431)] = 125571, + [SMALL_STATE(4432)] = 125587, + [SMALL_STATE(4433)] = 125599, + [SMALL_STATE(4434)] = 125611, + [SMALL_STATE(4435)] = 125625, + [SMALL_STATE(4436)] = 125639, + [SMALL_STATE(4437)] = 125651, + [SMALL_STATE(4438)] = 125663, + [SMALL_STATE(4439)] = 125675, + [SMALL_STATE(4440)] = 125689, + [SMALL_STATE(4441)] = 125705, + [SMALL_STATE(4442)] = 125721, + [SMALL_STATE(4443)] = 125737, + [SMALL_STATE(4444)] = 125749, + [SMALL_STATE(4445)] = 125761, + [SMALL_STATE(4446)] = 125777, + [SMALL_STATE(4447)] = 125793, + [SMALL_STATE(4448)] = 125809, + [SMALL_STATE(4449)] = 125821, + [SMALL_STATE(4450)] = 125833, + [SMALL_STATE(4451)] = 125849, + [SMALL_STATE(4452)] = 125865, + [SMALL_STATE(4453)] = 125881, + [SMALL_STATE(4454)] = 125895, + [SMALL_STATE(4455)] = 125911, + [SMALL_STATE(4456)] = 125923, + [SMALL_STATE(4457)] = 125939, + [SMALL_STATE(4458)] = 125955, + [SMALL_STATE(4459)] = 125971, + [SMALL_STATE(4460)] = 125985, + [SMALL_STATE(4461)] = 125999, + [SMALL_STATE(4462)] = 126011, + [SMALL_STATE(4463)] = 126023, + [SMALL_STATE(4464)] = 126039, + [SMALL_STATE(4465)] = 126055, + [SMALL_STATE(4466)] = 126069, + [SMALL_STATE(4467)] = 126083, + [SMALL_STATE(4468)] = 126099, + [SMALL_STATE(4469)] = 126115, + [SMALL_STATE(4470)] = 126127, + [SMALL_STATE(4471)] = 126139, + [SMALL_STATE(4472)] = 126155, + [SMALL_STATE(4473)] = 126167, + [SMALL_STATE(4474)] = 126179, + [SMALL_STATE(4475)] = 126191, + [SMALL_STATE(4476)] = 126203, + [SMALL_STATE(4477)] = 126215, + [SMALL_STATE(4478)] = 126231, + [SMALL_STATE(4479)] = 126247, + [SMALL_STATE(4480)] = 126259, + [SMALL_STATE(4481)] = 126271, + [SMALL_STATE(4482)] = 126283, + [SMALL_STATE(4483)] = 126299, + [SMALL_STATE(4484)] = 126315, + [SMALL_STATE(4485)] = 126329, + [SMALL_STATE(4486)] = 126343, + [SMALL_STATE(4487)] = 126357, + [SMALL_STATE(4488)] = 126369, + [SMALL_STATE(4489)] = 126385, + [SMALL_STATE(4490)] = 126399, + [SMALL_STATE(4491)] = 126411, + [SMALL_STATE(4492)] = 126427, + [SMALL_STATE(4493)] = 126439, + [SMALL_STATE(4494)] = 126451, + [SMALL_STATE(4495)] = 126463, + [SMALL_STATE(4496)] = 126475, + [SMALL_STATE(4497)] = 126487, + [SMALL_STATE(4498)] = 126503, + [SMALL_STATE(4499)] = 126519, + [SMALL_STATE(4500)] = 126531, + [SMALL_STATE(4501)] = 126547, + [SMALL_STATE(4502)] = 126559, + [SMALL_STATE(4503)] = 126571, + [SMALL_STATE(4504)] = 126587, + [SMALL_STATE(4505)] = 126599, + [SMALL_STATE(4506)] = 126613, + [SMALL_STATE(4507)] = 126629, + [SMALL_STATE(4508)] = 126641, + [SMALL_STATE(4509)] = 126657, + [SMALL_STATE(4510)] = 126669, + [SMALL_STATE(4511)] = 126683, + [SMALL_STATE(4512)] = 126695, + [SMALL_STATE(4513)] = 126711, + [SMALL_STATE(4514)] = 126725, + [SMALL_STATE(4515)] = 126737, + [SMALL_STATE(4516)] = 126751, + [SMALL_STATE(4517)] = 126767, + [SMALL_STATE(4518)] = 126783, + [SMALL_STATE(4519)] = 126797, + [SMALL_STATE(4520)] = 126811, + [SMALL_STATE(4521)] = 126827, + [SMALL_STATE(4522)] = 126843, + [SMALL_STATE(4523)] = 126857, + [SMALL_STATE(4524)] = 126871, + [SMALL_STATE(4525)] = 126883, + [SMALL_STATE(4526)] = 126897, + [SMALL_STATE(4527)] = 126911, + [SMALL_STATE(4528)] = 126925, + [SMALL_STATE(4529)] = 126941, + [SMALL_STATE(4530)] = 126955, + [SMALL_STATE(4531)] = 126967, + [SMALL_STATE(4532)] = 126983, + [SMALL_STATE(4533)] = 126999, + [SMALL_STATE(4534)] = 127013, + [SMALL_STATE(4535)] = 127025, + [SMALL_STATE(4536)] = 127039, + [SMALL_STATE(4537)] = 127055, + [SMALL_STATE(4538)] = 127067, + [SMALL_STATE(4539)] = 127083, + [SMALL_STATE(4540)] = 127095, + [SMALL_STATE(4541)] = 127107, + [SMALL_STATE(4542)] = 127119, + [SMALL_STATE(4543)] = 127131, + [SMALL_STATE(4544)] = 127143, + [SMALL_STATE(4545)] = 127159, + [SMALL_STATE(4546)] = 127171, + [SMALL_STATE(4547)] = 127185, + [SMALL_STATE(4548)] = 127201, + [SMALL_STATE(4549)] = 127213, + [SMALL_STATE(4550)] = 127225, + [SMALL_STATE(4551)] = 127237, + [SMALL_STATE(4552)] = 127249, + [SMALL_STATE(4553)] = 127261, + [SMALL_STATE(4554)] = 127273, + [SMALL_STATE(4555)] = 127287, + [SMALL_STATE(4556)] = 127301, + [SMALL_STATE(4557)] = 127317, + [SMALL_STATE(4558)] = 127329, + [SMALL_STATE(4559)] = 127341, + [SMALL_STATE(4560)] = 127353, + [SMALL_STATE(4561)] = 127365, + [SMALL_STATE(4562)] = 127377, + [SMALL_STATE(4563)] = 127389, + [SMALL_STATE(4564)] = 127405, + [SMALL_STATE(4565)] = 127421, + [SMALL_STATE(4566)] = 127437, + [SMALL_STATE(4567)] = 127451, + [SMALL_STATE(4568)] = 127467, + [SMALL_STATE(4569)] = 127481, + [SMALL_STATE(4570)] = 127497, + [SMALL_STATE(4571)] = 127511, + [SMALL_STATE(4572)] = 127527, + [SMALL_STATE(4573)] = 127539, + [SMALL_STATE(4574)] = 127553, + [SMALL_STATE(4575)] = 127567, + [SMALL_STATE(4576)] = 127579, + [SMALL_STATE(4577)] = 127593, + [SMALL_STATE(4578)] = 127607, + [SMALL_STATE(4579)] = 127619, + [SMALL_STATE(4580)] = 127631, + [SMALL_STATE(4581)] = 127645, + [SMALL_STATE(4582)] = 127657, + [SMALL_STATE(4583)] = 127669, + [SMALL_STATE(4584)] = 127681, + [SMALL_STATE(4585)] = 127693, + [SMALL_STATE(4586)] = 127707, + [SMALL_STATE(4587)] = 127723, + [SMALL_STATE(4588)] = 127735, + [SMALL_STATE(4589)] = 127747, + [SMALL_STATE(4590)] = 127761, + [SMALL_STATE(4591)] = 127773, + [SMALL_STATE(4592)] = 127785, + [SMALL_STATE(4593)] = 127799, + [SMALL_STATE(4594)] = 127813, + [SMALL_STATE(4595)] = 127825, + [SMALL_STATE(4596)] = 127841, + [SMALL_STATE(4597)] = 127855, + [SMALL_STATE(4598)] = 127867, + [SMALL_STATE(4599)] = 127879, + [SMALL_STATE(4600)] = 127891, + [SMALL_STATE(4601)] = 127905, + [SMALL_STATE(4602)] = 127919, + [SMALL_STATE(4603)] = 127935, + [SMALL_STATE(4604)] = 127951, + [SMALL_STATE(4605)] = 127967, + [SMALL_STATE(4606)] = 127979, + [SMALL_STATE(4607)] = 127991, + [SMALL_STATE(4608)] = 128007, + [SMALL_STATE(4609)] = 128019, + [SMALL_STATE(4610)] = 128033, + [SMALL_STATE(4611)] = 128047, + [SMALL_STATE(4612)] = 128061, + [SMALL_STATE(4613)] = 128077, + [SMALL_STATE(4614)] = 128091, + [SMALL_STATE(4615)] = 128107, + [SMALL_STATE(4616)] = 128123, + [SMALL_STATE(4617)] = 128137, + [SMALL_STATE(4618)] = 128149, + [SMALL_STATE(4619)] = 128165, + [SMALL_STATE(4620)] = 128177, + [SMALL_STATE(4621)] = 128189, + [SMALL_STATE(4622)] = 128201, + [SMALL_STATE(4623)] = 128215, + [SMALL_STATE(4624)] = 128231, + [SMALL_STATE(4625)] = 128245, + [SMALL_STATE(4626)] = 128259, + [SMALL_STATE(4627)] = 128271, + [SMALL_STATE(4628)] = 128283, + [SMALL_STATE(4629)] = 128297, + [SMALL_STATE(4630)] = 128313, + [SMALL_STATE(4631)] = 128325, + [SMALL_STATE(4632)] = 128337, + [SMALL_STATE(4633)] = 128349, + [SMALL_STATE(4634)] = 128365, + [SMALL_STATE(4635)] = 128381, + [SMALL_STATE(4636)] = 128397, + [SMALL_STATE(4637)] = 128409, + [SMALL_STATE(4638)] = 128425, + [SMALL_STATE(4639)] = 128437, + [SMALL_STATE(4640)] = 128453, + [SMALL_STATE(4641)] = 128465, + [SMALL_STATE(4642)] = 128477, + [SMALL_STATE(4643)] = 128493, + [SMALL_STATE(4644)] = 128509, + [SMALL_STATE(4645)] = 128525, + [SMALL_STATE(4646)] = 128537, + [SMALL_STATE(4647)] = 128549, + [SMALL_STATE(4648)] = 128565, + [SMALL_STATE(4649)] = 128577, + [SMALL_STATE(4650)] = 128593, + [SMALL_STATE(4651)] = 128609, + [SMALL_STATE(4652)] = 128625, + [SMALL_STATE(4653)] = 128641, + [SMALL_STATE(4654)] = 128657, + [SMALL_STATE(4655)] = 128673, + [SMALL_STATE(4656)] = 128685, + [SMALL_STATE(4657)] = 128697, + [SMALL_STATE(4658)] = 128709, + [SMALL_STATE(4659)] = 128723, + [SMALL_STATE(4660)] = 128739, + [SMALL_STATE(4661)] = 128752, + [SMALL_STATE(4662)] = 128765, + [SMALL_STATE(4663)] = 128778, + [SMALL_STATE(4664)] = 128791, + [SMALL_STATE(4665)] = 128804, + [SMALL_STATE(4666)] = 128817, + [SMALL_STATE(4667)] = 128830, + [SMALL_STATE(4668)] = 128843, + [SMALL_STATE(4669)] = 128856, + [SMALL_STATE(4670)] = 128869, + [SMALL_STATE(4671)] = 128882, + [SMALL_STATE(4672)] = 128895, + [SMALL_STATE(4673)] = 128908, + [SMALL_STATE(4674)] = 128921, + [SMALL_STATE(4675)] = 128934, + [SMALL_STATE(4676)] = 128947, + [SMALL_STATE(4677)] = 128960, + [SMALL_STATE(4678)] = 128973, + [SMALL_STATE(4679)] = 128986, + [SMALL_STATE(4680)] = 128997, + [SMALL_STATE(4681)] = 129010, + [SMALL_STATE(4682)] = 129023, + [SMALL_STATE(4683)] = 129036, + [SMALL_STATE(4684)] = 129049, + [SMALL_STATE(4685)] = 129062, + [SMALL_STATE(4686)] = 129075, + [SMALL_STATE(4687)] = 129088, + [SMALL_STATE(4688)] = 129101, + [SMALL_STATE(4689)] = 129114, + [SMALL_STATE(4690)] = 129127, + [SMALL_STATE(4691)] = 129140, + [SMALL_STATE(4692)] = 129151, + [SMALL_STATE(4693)] = 129164, + [SMALL_STATE(4694)] = 129177, + [SMALL_STATE(4695)] = 129190, + [SMALL_STATE(4696)] = 129203, + [SMALL_STATE(4697)] = 129216, + [SMALL_STATE(4698)] = 129229, + [SMALL_STATE(4699)] = 129242, + [SMALL_STATE(4700)] = 129255, + [SMALL_STATE(4701)] = 129268, + [SMALL_STATE(4702)] = 129281, + [SMALL_STATE(4703)] = 129294, + [SMALL_STATE(4704)] = 129307, + [SMALL_STATE(4705)] = 129320, + [SMALL_STATE(4706)] = 129333, + [SMALL_STATE(4707)] = 129346, + [SMALL_STATE(4708)] = 129359, + [SMALL_STATE(4709)] = 129372, + [SMALL_STATE(4710)] = 129385, + [SMALL_STATE(4711)] = 129398, + [SMALL_STATE(4712)] = 129411, + [SMALL_STATE(4713)] = 129424, + [SMALL_STATE(4714)] = 129437, + [SMALL_STATE(4715)] = 129450, + [SMALL_STATE(4716)] = 129463, + [SMALL_STATE(4717)] = 129476, + [SMALL_STATE(4718)] = 129489, + [SMALL_STATE(4719)] = 129502, + [SMALL_STATE(4720)] = 129515, + [SMALL_STATE(4721)] = 129528, + [SMALL_STATE(4722)] = 129541, + [SMALL_STATE(4723)] = 129554, + [SMALL_STATE(4724)] = 129567, + [SMALL_STATE(4725)] = 129580, + [SMALL_STATE(4726)] = 129593, + [SMALL_STATE(4727)] = 129606, + [SMALL_STATE(4728)] = 129617, + [SMALL_STATE(4729)] = 129630, + [SMALL_STATE(4730)] = 129643, + [SMALL_STATE(4731)] = 129656, + [SMALL_STATE(4732)] = 129669, + [SMALL_STATE(4733)] = 129682, + [SMALL_STATE(4734)] = 129695, + [SMALL_STATE(4735)] = 129708, + [SMALL_STATE(4736)] = 129721, + [SMALL_STATE(4737)] = 129734, + [SMALL_STATE(4738)] = 129747, + [SMALL_STATE(4739)] = 129760, + [SMALL_STATE(4740)] = 129773, + [SMALL_STATE(4741)] = 129786, + [SMALL_STATE(4742)] = 129799, + [SMALL_STATE(4743)] = 129812, + [SMALL_STATE(4744)] = 129825, + [SMALL_STATE(4745)] = 129838, + [SMALL_STATE(4746)] = 129849, + [SMALL_STATE(4747)] = 129862, + [SMALL_STATE(4748)] = 129875, + [SMALL_STATE(4749)] = 129888, + [SMALL_STATE(4750)] = 129901, + [SMALL_STATE(4751)] = 129914, + [SMALL_STATE(4752)] = 129927, + [SMALL_STATE(4753)] = 129940, + [SMALL_STATE(4754)] = 129953, + [SMALL_STATE(4755)] = 129966, + [SMALL_STATE(4756)] = 129979, + [SMALL_STATE(4757)] = 129992, + [SMALL_STATE(4758)] = 130005, + [SMALL_STATE(4759)] = 130018, + [SMALL_STATE(4760)] = 130031, + [SMALL_STATE(4761)] = 130044, + [SMALL_STATE(4762)] = 130057, + [SMALL_STATE(4763)] = 130070, + [SMALL_STATE(4764)] = 130083, + [SMALL_STATE(4765)] = 130096, + [SMALL_STATE(4766)] = 130109, + [SMALL_STATE(4767)] = 130122, + [SMALL_STATE(4768)] = 130135, + [SMALL_STATE(4769)] = 130148, + [SMALL_STATE(4770)] = 130161, + [SMALL_STATE(4771)] = 130174, + [SMALL_STATE(4772)] = 130187, + [SMALL_STATE(4773)] = 130200, + [SMALL_STATE(4774)] = 130213, + [SMALL_STATE(4775)] = 130226, + [SMALL_STATE(4776)] = 130239, + [SMALL_STATE(4777)] = 130250, + [SMALL_STATE(4778)] = 130263, + [SMALL_STATE(4779)] = 130276, + [SMALL_STATE(4780)] = 130289, + [SMALL_STATE(4781)] = 130300, + [SMALL_STATE(4782)] = 130313, + [SMALL_STATE(4783)] = 130326, + [SMALL_STATE(4784)] = 130339, + [SMALL_STATE(4785)] = 130352, + [SMALL_STATE(4786)] = 130365, + [SMALL_STATE(4787)] = 130378, + [SMALL_STATE(4788)] = 130391, + [SMALL_STATE(4789)] = 130404, + [SMALL_STATE(4790)] = 130417, + [SMALL_STATE(4791)] = 130430, + [SMALL_STATE(4792)] = 130443, + [SMALL_STATE(4793)] = 130456, + [SMALL_STATE(4794)] = 130469, + [SMALL_STATE(4795)] = 130482, + [SMALL_STATE(4796)] = 130495, + [SMALL_STATE(4797)] = 130508, + [SMALL_STATE(4798)] = 130521, + [SMALL_STATE(4799)] = 130534, + [SMALL_STATE(4800)] = 130547, + [SMALL_STATE(4801)] = 130560, + [SMALL_STATE(4802)] = 130573, + [SMALL_STATE(4803)] = 130586, + [SMALL_STATE(4804)] = 130599, + [SMALL_STATE(4805)] = 130612, + [SMALL_STATE(4806)] = 130625, + [SMALL_STATE(4807)] = 130638, + [SMALL_STATE(4808)] = 130649, + [SMALL_STATE(4809)] = 130662, + [SMALL_STATE(4810)] = 130675, + [SMALL_STATE(4811)] = 130688, + [SMALL_STATE(4812)] = 130701, + [SMALL_STATE(4813)] = 130714, + [SMALL_STATE(4814)] = 130727, + [SMALL_STATE(4815)] = 130740, + [SMALL_STATE(4816)] = 130753, + [SMALL_STATE(4817)] = 130766, + [SMALL_STATE(4818)] = 130779, + [SMALL_STATE(4819)] = 130792, + [SMALL_STATE(4820)] = 130805, + [SMALL_STATE(4821)] = 130816, + [SMALL_STATE(4822)] = 130829, + [SMALL_STATE(4823)] = 130842, + [SMALL_STATE(4824)] = 130855, + [SMALL_STATE(4825)] = 130868, + [SMALL_STATE(4826)] = 130881, + [SMALL_STATE(4827)] = 130894, + [SMALL_STATE(4828)] = 130907, + [SMALL_STATE(4829)] = 130918, + [SMALL_STATE(4830)] = 130931, + [SMALL_STATE(4831)] = 130942, + [SMALL_STATE(4832)] = 130952, + [SMALL_STATE(4833)] = 130962, + [SMALL_STATE(4834)] = 130972, + [SMALL_STATE(4835)] = 130982, + [SMALL_STATE(4836)] = 130992, + [SMALL_STATE(4837)] = 131002, + [SMALL_STATE(4838)] = 131012, + [SMALL_STATE(4839)] = 131022, + [SMALL_STATE(4840)] = 131032, + [SMALL_STATE(4841)] = 131042, + [SMALL_STATE(4842)] = 131052, + [SMALL_STATE(4843)] = 131062, + [SMALL_STATE(4844)] = 131072, + [SMALL_STATE(4845)] = 131082, + [SMALL_STATE(4846)] = 131092, + [SMALL_STATE(4847)] = 131102, + [SMALL_STATE(4848)] = 131112, + [SMALL_STATE(4849)] = 131122, + [SMALL_STATE(4850)] = 131132, + [SMALL_STATE(4851)] = 131142, + [SMALL_STATE(4852)] = 131152, + [SMALL_STATE(4853)] = 131162, + [SMALL_STATE(4854)] = 131172, + [SMALL_STATE(4855)] = 131182, + [SMALL_STATE(4856)] = 131192, + [SMALL_STATE(4857)] = 131202, + [SMALL_STATE(4858)] = 131212, + [SMALL_STATE(4859)] = 131222, + [SMALL_STATE(4860)] = 131232, + [SMALL_STATE(4861)] = 131242, + [SMALL_STATE(4862)] = 131252, + [SMALL_STATE(4863)] = 131262, + [SMALL_STATE(4864)] = 131272, + [SMALL_STATE(4865)] = 131282, + [SMALL_STATE(4866)] = 131292, + [SMALL_STATE(4867)] = 131302, + [SMALL_STATE(4868)] = 131312, + [SMALL_STATE(4869)] = 131322, + [SMALL_STATE(4870)] = 131332, + [SMALL_STATE(4871)] = 131342, + [SMALL_STATE(4872)] = 131352, + [SMALL_STATE(4873)] = 131362, + [SMALL_STATE(4874)] = 131372, + [SMALL_STATE(4875)] = 131382, + [SMALL_STATE(4876)] = 131392, + [SMALL_STATE(4877)] = 131402, + [SMALL_STATE(4878)] = 131412, + [SMALL_STATE(4879)] = 131422, + [SMALL_STATE(4880)] = 131432, + [SMALL_STATE(4881)] = 131442, + [SMALL_STATE(4882)] = 131452, + [SMALL_STATE(4883)] = 131462, + [SMALL_STATE(4884)] = 131472, + [SMALL_STATE(4885)] = 131482, + [SMALL_STATE(4886)] = 131492, + [SMALL_STATE(4887)] = 131502, + [SMALL_STATE(4888)] = 131512, + [SMALL_STATE(4889)] = 131522, + [SMALL_STATE(4890)] = 131532, + [SMALL_STATE(4891)] = 131542, + [SMALL_STATE(4892)] = 131552, + [SMALL_STATE(4893)] = 131562, + [SMALL_STATE(4894)] = 131572, + [SMALL_STATE(4895)] = 131582, + [SMALL_STATE(4896)] = 131592, + [SMALL_STATE(4897)] = 131602, + [SMALL_STATE(4898)] = 131612, + [SMALL_STATE(4899)] = 131622, + [SMALL_STATE(4900)] = 131632, + [SMALL_STATE(4901)] = 131642, + [SMALL_STATE(4902)] = 131652, + [SMALL_STATE(4903)] = 131662, + [SMALL_STATE(4904)] = 131672, + [SMALL_STATE(4905)] = 131682, + [SMALL_STATE(4906)] = 131692, + [SMALL_STATE(4907)] = 131702, + [SMALL_STATE(4908)] = 131712, + [SMALL_STATE(4909)] = 131722, + [SMALL_STATE(4910)] = 131732, + [SMALL_STATE(4911)] = 131742, + [SMALL_STATE(4912)] = 131752, + [SMALL_STATE(4913)] = 131762, + [SMALL_STATE(4914)] = 131772, + [SMALL_STATE(4915)] = 131782, + [SMALL_STATE(4916)] = 131792, + [SMALL_STATE(4917)] = 131802, + [SMALL_STATE(4918)] = 131812, + [SMALL_STATE(4919)] = 131822, + [SMALL_STATE(4920)] = 131832, + [SMALL_STATE(4921)] = 131842, + [SMALL_STATE(4922)] = 131852, + [SMALL_STATE(4923)] = 131862, + [SMALL_STATE(4924)] = 131872, + [SMALL_STATE(4925)] = 131882, + [SMALL_STATE(4926)] = 131892, + [SMALL_STATE(4927)] = 131902, + [SMALL_STATE(4928)] = 131912, + [SMALL_STATE(4929)] = 131922, + [SMALL_STATE(4930)] = 131932, + [SMALL_STATE(4931)] = 131942, + [SMALL_STATE(4932)] = 131952, + [SMALL_STATE(4933)] = 131962, + [SMALL_STATE(4934)] = 131972, + [SMALL_STATE(4935)] = 131982, + [SMALL_STATE(4936)] = 131992, + [SMALL_STATE(4937)] = 132002, + [SMALL_STATE(4938)] = 132012, + [SMALL_STATE(4939)] = 132022, + [SMALL_STATE(4940)] = 132032, + [SMALL_STATE(4941)] = 132042, + [SMALL_STATE(4942)] = 132052, + [SMALL_STATE(4943)] = 132062, + [SMALL_STATE(4944)] = 132072, + [SMALL_STATE(4945)] = 132082, + [SMALL_STATE(4946)] = 132092, + [SMALL_STATE(4947)] = 132102, + [SMALL_STATE(4948)] = 132112, + [SMALL_STATE(4949)] = 132122, + [SMALL_STATE(4950)] = 132132, + [SMALL_STATE(4951)] = 132142, + [SMALL_STATE(4952)] = 132152, + [SMALL_STATE(4953)] = 132162, + [SMALL_STATE(4954)] = 132172, + [SMALL_STATE(4955)] = 132182, + [SMALL_STATE(4956)] = 132192, + [SMALL_STATE(4957)] = 132202, + [SMALL_STATE(4958)] = 132212, + [SMALL_STATE(4959)] = 132222, + [SMALL_STATE(4960)] = 132232, + [SMALL_STATE(4961)] = 132242, + [SMALL_STATE(4962)] = 132252, + [SMALL_STATE(4963)] = 132262, + [SMALL_STATE(4964)] = 132272, + [SMALL_STATE(4965)] = 132282, + [SMALL_STATE(4966)] = 132292, + [SMALL_STATE(4967)] = 132302, + [SMALL_STATE(4968)] = 132312, + [SMALL_STATE(4969)] = 132322, + [SMALL_STATE(4970)] = 132332, + [SMALL_STATE(4971)] = 132342, + [SMALL_STATE(4972)] = 132352, + [SMALL_STATE(4973)] = 132362, + [SMALL_STATE(4974)] = 132372, + [SMALL_STATE(4975)] = 132382, + [SMALL_STATE(4976)] = 132392, + [SMALL_STATE(4977)] = 132402, + [SMALL_STATE(4978)] = 132412, + [SMALL_STATE(4979)] = 132422, + [SMALL_STATE(4980)] = 132432, + [SMALL_STATE(4981)] = 132442, + [SMALL_STATE(4982)] = 132452, + [SMALL_STATE(4983)] = 132462, + [SMALL_STATE(4984)] = 132472, + [SMALL_STATE(4985)] = 132482, + [SMALL_STATE(4986)] = 132492, + [SMALL_STATE(4987)] = 132502, + [SMALL_STATE(4988)] = 132512, + [SMALL_STATE(4989)] = 132522, + [SMALL_STATE(4990)] = 132532, + [SMALL_STATE(4991)] = 132542, + [SMALL_STATE(4992)] = 132552, + [SMALL_STATE(4993)] = 132562, + [SMALL_STATE(4994)] = 132572, + [SMALL_STATE(4995)] = 132582, + [SMALL_STATE(4996)] = 132592, + [SMALL_STATE(4997)] = 132602, + [SMALL_STATE(4998)] = 132612, + [SMALL_STATE(4999)] = 132622, + [SMALL_STATE(5000)] = 132632, + [SMALL_STATE(5001)] = 132642, + [SMALL_STATE(5002)] = 132652, + [SMALL_STATE(5003)] = 132662, + [SMALL_STATE(5004)] = 132672, + [SMALL_STATE(5005)] = 132682, + [SMALL_STATE(5006)] = 132692, + [SMALL_STATE(5007)] = 132702, + [SMALL_STATE(5008)] = 132712, + [SMALL_STATE(5009)] = 132722, + [SMALL_STATE(5010)] = 132732, + [SMALL_STATE(5011)] = 132742, + [SMALL_STATE(5012)] = 132752, + [SMALL_STATE(5013)] = 132762, + [SMALL_STATE(5014)] = 132772, + [SMALL_STATE(5015)] = 132782, + [SMALL_STATE(5016)] = 132792, + [SMALL_STATE(5017)] = 132802, + [SMALL_STATE(5018)] = 132812, + [SMALL_STATE(5019)] = 132822, + [SMALL_STATE(5020)] = 132832, + [SMALL_STATE(5021)] = 132842, + [SMALL_STATE(5022)] = 132852, + [SMALL_STATE(5023)] = 132862, + [SMALL_STATE(5024)] = 132872, + [SMALL_STATE(5025)] = 132882, + [SMALL_STATE(5026)] = 132892, + [SMALL_STATE(5027)] = 132902, + [SMALL_STATE(5028)] = 132912, + [SMALL_STATE(5029)] = 132922, + [SMALL_STATE(5030)] = 132932, + [SMALL_STATE(5031)] = 132942, + [SMALL_STATE(5032)] = 132952, + [SMALL_STATE(5033)] = 132962, + [SMALL_STATE(5034)] = 132972, + [SMALL_STATE(5035)] = 132982, + [SMALL_STATE(5036)] = 132992, + [SMALL_STATE(5037)] = 133002, + [SMALL_STATE(5038)] = 133012, + [SMALL_STATE(5039)] = 133022, + [SMALL_STATE(5040)] = 133032, + [SMALL_STATE(5041)] = 133042, + [SMALL_STATE(5042)] = 133052, + [SMALL_STATE(5043)] = 133062, + [SMALL_STATE(5044)] = 133072, + [SMALL_STATE(5045)] = 133082, + [SMALL_STATE(5046)] = 133092, + [SMALL_STATE(5047)] = 133102, + [SMALL_STATE(5048)] = 133112, + [SMALL_STATE(5049)] = 133122, + [SMALL_STATE(5050)] = 133132, + [SMALL_STATE(5051)] = 133142, + [SMALL_STATE(5052)] = 133152, + [SMALL_STATE(5053)] = 133162, + [SMALL_STATE(5054)] = 133172, + [SMALL_STATE(5055)] = 133182, + [SMALL_STATE(5056)] = 133192, + [SMALL_STATE(5057)] = 133202, + [SMALL_STATE(5058)] = 133212, + [SMALL_STATE(5059)] = 133222, + [SMALL_STATE(5060)] = 133232, + [SMALL_STATE(5061)] = 133242, + [SMALL_STATE(5062)] = 133252, + [SMALL_STATE(5063)] = 133262, + [SMALL_STATE(5064)] = 133272, + [SMALL_STATE(5065)] = 133282, + [SMALL_STATE(5066)] = 133292, + [SMALL_STATE(5067)] = 133302, + [SMALL_STATE(5068)] = 133312, + [SMALL_STATE(5069)] = 133322, + [SMALL_STATE(5070)] = 133332, + [SMALL_STATE(5071)] = 133342, + [SMALL_STATE(5072)] = 133352, + [SMALL_STATE(5073)] = 133362, + [SMALL_STATE(5074)] = 133372, + [SMALL_STATE(5075)] = 133382, + [SMALL_STATE(5076)] = 133392, + [SMALL_STATE(5077)] = 133402, + [SMALL_STATE(5078)] = 133412, + [SMALL_STATE(5079)] = 133422, + [SMALL_STATE(5080)] = 133432, + [SMALL_STATE(5081)] = 133442, + [SMALL_STATE(5082)] = 133452, + [SMALL_STATE(5083)] = 133462, + [SMALL_STATE(5084)] = 133472, + [SMALL_STATE(5085)] = 133482, + [SMALL_STATE(5086)] = 133492, + [SMALL_STATE(5087)] = 133502, + [SMALL_STATE(5088)] = 133512, + [SMALL_STATE(5089)] = 133522, + [SMALL_STATE(5090)] = 133532, + [SMALL_STATE(5091)] = 133542, + [SMALL_STATE(5092)] = 133552, + [SMALL_STATE(5093)] = 133562, + [SMALL_STATE(5094)] = 133572, + [SMALL_STATE(5095)] = 133582, + [SMALL_STATE(5096)] = 133592, + [SMALL_STATE(5097)] = 133602, + [SMALL_STATE(5098)] = 133612, + [SMALL_STATE(5099)] = 133622, + [SMALL_STATE(5100)] = 133632, + [SMALL_STATE(5101)] = 133642, + [SMALL_STATE(5102)] = 133652, + [SMALL_STATE(5103)] = 133662, + [SMALL_STATE(5104)] = 133672, + [SMALL_STATE(5105)] = 133682, + [SMALL_STATE(5106)] = 133692, + [SMALL_STATE(5107)] = 133702, + [SMALL_STATE(5108)] = 133712, + [SMALL_STATE(5109)] = 133722, + [SMALL_STATE(5110)] = 133732, + [SMALL_STATE(5111)] = 133742, + [SMALL_STATE(5112)] = 133752, + [SMALL_STATE(5113)] = 133762, + [SMALL_STATE(5114)] = 133772, + [SMALL_STATE(5115)] = 133782, + [SMALL_STATE(5116)] = 133792, + [SMALL_STATE(5117)] = 133802, + [SMALL_STATE(5118)] = 133812, + [SMALL_STATE(5119)] = 133822, + [SMALL_STATE(5120)] = 133832, + [SMALL_STATE(5121)] = 133842, + [SMALL_STATE(5122)] = 133852, + [SMALL_STATE(5123)] = 133862, + [SMALL_STATE(5124)] = 133872, + [SMALL_STATE(5125)] = 133882, + [SMALL_STATE(5126)] = 133892, + [SMALL_STATE(5127)] = 133902, + [SMALL_STATE(5128)] = 133912, + [SMALL_STATE(5129)] = 133922, + [SMALL_STATE(5130)] = 133932, + [SMALL_STATE(5131)] = 133942, + [SMALL_STATE(5132)] = 133952, + [SMALL_STATE(5133)] = 133962, + [SMALL_STATE(5134)] = 133972, + [SMALL_STATE(5135)] = 133982, + [SMALL_STATE(5136)] = 133992, + [SMALL_STATE(5137)] = 134002, + [SMALL_STATE(5138)] = 134012, + [SMALL_STATE(5139)] = 134022, + [SMALL_STATE(5140)] = 134032, + [SMALL_STATE(5141)] = 134042, + [SMALL_STATE(5142)] = 134052, + [SMALL_STATE(5143)] = 134062, + [SMALL_STATE(5144)] = 134072, + [SMALL_STATE(5145)] = 134082, + [SMALL_STATE(5146)] = 134092, + [SMALL_STATE(5147)] = 134102, + [SMALL_STATE(5148)] = 134112, + [SMALL_STATE(5149)] = 134122, + [SMALL_STATE(5150)] = 134132, + [SMALL_STATE(5151)] = 134142, + [SMALL_STATE(5152)] = 134152, + [SMALL_STATE(5153)] = 134162, + [SMALL_STATE(5154)] = 134172, + [SMALL_STATE(5155)] = 134182, + [SMALL_STATE(5156)] = 134192, + [SMALL_STATE(5157)] = 134202, + [SMALL_STATE(5158)] = 134212, + [SMALL_STATE(5159)] = 134222, + [SMALL_STATE(5160)] = 134232, + [SMALL_STATE(5161)] = 134242, + [SMALL_STATE(5162)] = 134252, + [SMALL_STATE(5163)] = 134262, + [SMALL_STATE(5164)] = 134272, + [SMALL_STATE(5165)] = 134282, + [SMALL_STATE(5166)] = 134292, + [SMALL_STATE(5167)] = 134302, + [SMALL_STATE(5168)] = 134312, + [SMALL_STATE(5169)] = 134322, + [SMALL_STATE(5170)] = 134332, + [SMALL_STATE(5171)] = 134342, + [SMALL_STATE(5172)] = 134352, + [SMALL_STATE(5173)] = 134362, + [SMALL_STATE(5174)] = 134372, + [SMALL_STATE(5175)] = 134382, + [SMALL_STATE(5176)] = 134392, + [SMALL_STATE(5177)] = 134402, + [SMALL_STATE(5178)] = 134412, + [SMALL_STATE(5179)] = 134422, + [SMALL_STATE(5180)] = 134432, + [SMALL_STATE(5181)] = 134442, + [SMALL_STATE(5182)] = 134452, + [SMALL_STATE(5183)] = 134462, + [SMALL_STATE(5184)] = 134472, + [SMALL_STATE(5185)] = 134482, + [SMALL_STATE(5186)] = 134492, + [SMALL_STATE(5187)] = 134502, + [SMALL_STATE(5188)] = 134512, + [SMALL_STATE(5189)] = 134522, + [SMALL_STATE(5190)] = 134532, + [SMALL_STATE(5191)] = 134542, + [SMALL_STATE(5192)] = 134552, + [SMALL_STATE(5193)] = 134562, + [SMALL_STATE(5194)] = 134572, + [SMALL_STATE(5195)] = 134582, + [SMALL_STATE(5196)] = 134592, + [SMALL_STATE(5197)] = 134602, + [SMALL_STATE(5198)] = 134612, + [SMALL_STATE(5199)] = 134622, + [SMALL_STATE(5200)] = 134632, + [SMALL_STATE(5201)] = 134642, + [SMALL_STATE(5202)] = 134652, + [SMALL_STATE(5203)] = 134662, + [SMALL_STATE(5204)] = 134672, + [SMALL_STATE(5205)] = 134682, + [SMALL_STATE(5206)] = 134692, + [SMALL_STATE(5207)] = 134702, + [SMALL_STATE(5208)] = 134712, + [SMALL_STATE(5209)] = 134722, + [SMALL_STATE(5210)] = 134732, + [SMALL_STATE(5211)] = 134742, + [SMALL_STATE(5212)] = 134752, + [SMALL_STATE(5213)] = 134762, + [SMALL_STATE(5214)] = 134772, + [SMALL_STATE(5215)] = 134782, + [SMALL_STATE(5216)] = 134792, + [SMALL_STATE(5217)] = 134802, + [SMALL_STATE(5218)] = 134812, + [SMALL_STATE(5219)] = 134822, + [SMALL_STATE(5220)] = 134832, + [SMALL_STATE(5221)] = 134842, + [SMALL_STATE(5222)] = 134852, + [SMALL_STATE(5223)] = 134862, + [SMALL_STATE(5224)] = 134872, + [SMALL_STATE(5225)] = 134882, + [SMALL_STATE(5226)] = 134892, + [SMALL_STATE(5227)] = 134902, + [SMALL_STATE(5228)] = 134912, + [SMALL_STATE(5229)] = 134922, + [SMALL_STATE(5230)] = 134932, + [SMALL_STATE(5231)] = 134942, + [SMALL_STATE(5232)] = 134952, + [SMALL_STATE(5233)] = 134962, + [SMALL_STATE(5234)] = 134972, + [SMALL_STATE(5235)] = 134982, + [SMALL_STATE(5236)] = 134992, + [SMALL_STATE(5237)] = 135002, + [SMALL_STATE(5238)] = 135012, + [SMALL_STATE(5239)] = 135022, + [SMALL_STATE(5240)] = 135032, + [SMALL_STATE(5241)] = 135042, + [SMALL_STATE(5242)] = 135052, + [SMALL_STATE(5243)] = 135062, + [SMALL_STATE(5244)] = 135072, + [SMALL_STATE(5245)] = 135082, + [SMALL_STATE(5246)] = 135092, + [SMALL_STATE(5247)] = 135102, + [SMALL_STATE(5248)] = 135112, + [SMALL_STATE(5249)] = 135122, + [SMALL_STATE(5250)] = 135132, + [SMALL_STATE(5251)] = 135142, + [SMALL_STATE(5252)] = 135152, + [SMALL_STATE(5253)] = 135162, + [SMALL_STATE(5254)] = 135172, + [SMALL_STATE(5255)] = 135182, + [SMALL_STATE(5256)] = 135192, + [SMALL_STATE(5257)] = 135202, + [SMALL_STATE(5258)] = 135212, + [SMALL_STATE(5259)] = 135222, + [SMALL_STATE(5260)] = 135232, + [SMALL_STATE(5261)] = 135242, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5059), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4895), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5028), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4852), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5120), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4744), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4884), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4973), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), - [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3780), - [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1760), - [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3918), - [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3919), - [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3920), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2932), - [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1687), - [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1889), - [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4444), - [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1756), - [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1757), - [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4033), - [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4451), - [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1157), - [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(905), - [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5256), - [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4030), - [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1355), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5256), - [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1002), - [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(980), - [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(988), - [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4863), - [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(363), - [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(29), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3652), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5220), - [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3546), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2259), - [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3423), - [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3548), - [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(115), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(115), - [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(117), - [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(680), - [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(684), - [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4974), - [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(922), - [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3965), - [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5150), - [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5151), - [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4051), - [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3885), - [595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1449), - [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5148), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3779), - [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1737), - [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3915), - [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3916), - [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3917), - [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2932), - [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1687), - [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1889), - [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4444), - [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1756), - [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1757), - [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4033), - [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4451), - [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1157), - [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1258), - [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5256), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4464), - [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1355), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5256), - [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1002), - [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(980), - [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(988), - [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4863), - [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(363), - [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(29), - [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3652), - [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5220), - [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6), - [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3546), - [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2280), - [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3423), - [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3548), - [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(115), - [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(115), - [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(117), - [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(680), - [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(684), - [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4974), - [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(922), - [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3965), - [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5150), - [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5151), - [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4051), - [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3885), - [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1451), - [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5148), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), + [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3780), + [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1769), + [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3917), + [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3918), + [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3919), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2891), + [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1677), + [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1882), + [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4447), + [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1743), + [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1744), + [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3983), + [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4458), + [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1141), + [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1202), + [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5246), + [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4402), + [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1352), + [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5246), + [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1071), + [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1072), + [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1073), + [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4860), + [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(363), + [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(30), + [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3646), + [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5218), + [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5), + [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3604), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2270), + [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3425), + [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3607), + [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(110), + [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(110), + [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(121), + [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(671), + [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(711), + [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4973), + [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(954), + [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4022), + [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5148), + [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5149), + [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4028), + [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3896), + [595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1451), + [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5146), + [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3782), + [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1773), + [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3922), + [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3923), + [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3785), + [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2891), + [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1677), + [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1882), + [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4447), + [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1743), + [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1744), + [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3983), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4458), + [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1141), + [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(962), + [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5246), + [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4066), + [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1352), + [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5246), + [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1071), + [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1072), + [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1073), + [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4860), + [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(363), + [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(30), + [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3646), + [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5218), + [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5), + [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3604), + [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2263), + [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3425), + [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3607), + [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(110), + [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(110), + [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(121), + [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(671), + [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(711), + [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4973), + [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(954), + [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4022), + [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5148), + [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5149), + [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4028), + [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3896), + [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1458), + [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5146), [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), [741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), [747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5054), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), - [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), - [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), - [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), - [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4861), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4914), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), + [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), + [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 1, 0, 0), + [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4909), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5053), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5167), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5118), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 30), - [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 30), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), - [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 30), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), - [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 30), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), - [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4972), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5256), - [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5256), - [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2932), - [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1257), - [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4464), - [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1355), - [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1002), - [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(980), - [1058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(988), - [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(363), - [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(29), - [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3665), - [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5220), - [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6), - [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3546), - [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2280), - [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3423), - [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3548), - [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(116), - [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(116), - [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(134), - [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(680), - [1100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(684), - [1103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4974), - [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(922), - [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3965), - [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5150), - [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5151), - [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4051), - [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3885), - [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1451), - [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5148), - [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5256), - [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5256), - [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2932), - [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(910), - [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4030), - [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1355), - [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1002), - [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(980), - [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(988), - [1157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(363), - [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(29), - [1163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3665), - [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5220), - [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6), - [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3546), - [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2259), - [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3423), - [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3548), - [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(116), - [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(116), - [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(134), - [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(680), - [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(684), - [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4974), - [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(922), - [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3965), - [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5150), - [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5151), - [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4051), - [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3885), - [1220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1449), - [1223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5148), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), - [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5049), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5147), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5117), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 30), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4955), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 30), + [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 30), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5100), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 30), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5246), + [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5246), + [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2891), + [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(961), + [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4066), + [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1352), + [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1071), + [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1072), + [1058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1073), + [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(363), + [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(30), + [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3641), + [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5218), + [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5), + [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3604), + [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2263), + [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3425), + [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3607), + [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(120), + [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(120), + [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(135), + [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(671), + [1100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(711), + [1103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4973), + [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(954), + [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4022), + [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5148), + [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5149), + [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4028), + [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3896), + [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1458), + [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5146), + [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5246), + [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5246), + [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2891), + [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1260), + [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4402), + [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1352), + [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1071), + [1151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1072), + [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1073), + [1157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(363), + [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(30), + [1163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3641), + [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5218), + [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5), + [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3604), + [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2270), + [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3425), + [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3607), + [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(120), + [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(120), + [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(135), + [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(671), + [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(711), + [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4973), + [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(954), + [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4022), + [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5148), + [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5149), + [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4028), + [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3896), + [1220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1451), + [1223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5146), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), + [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), + [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 20), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 20), - [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 0), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 0), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 1, 0, 0), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 1, 0, 0), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_str, 3, 0, 0), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_str, 3, 0, 0), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), - [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), - [1498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3514), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 0), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 0), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 20), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 20), + [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 1, 0, 0), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 1, 0, 0), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), + [1500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3513), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), - [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_single_quotes, 3, 0, 0), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_single_quotes, 3, 0, 0), - [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_back_ticks, 3, 0, 0), - [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_back_ticks, 3, 0, 0), - [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 0), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 0), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 2, 0, 0), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 2, 0, 0), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3531), - [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), - [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), - [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_str, 3, 0, 0), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_str, 3, 0, 0), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 1, 0, 0), + [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_single_quotes, 3, 0, 0), + [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_single_quotes, 3, 0, 0), + [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_back_ticks, 3, 0, 0), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_back_ticks, 3, 0, 0), + [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 0), + [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 0), + [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__path_suffix, 2, 0, 0), + [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__path_suffix, 2, 0, 0), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [1553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3530), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 20), [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 20), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 29), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 29), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 29), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 29), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), - [1600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3499), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 28), - [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 28), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), - [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 18), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 127), - [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 127), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), + [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 18), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3544), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 28), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 28), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 127), + [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 127), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), - [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 124), - [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 124), - [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 125), - [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 125), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 126), - [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 126), - [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [1699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3456), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 124), + [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 124), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 125), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 125), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 126), + [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 126), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [1701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3457), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), - [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 98), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 98), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), - [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), - [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), - [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 3, 0, 45), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 3, 0, 45), - [1886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [1889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [1932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3491), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), - [1937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(683), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 22), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 22), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 2, 0, 0), - [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 76), - [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 76), - [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 3, 0, 0), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [1984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4043), - [1987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4356), - [1990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4655), - [1993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(354), - [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(31), - [1999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3648), - [2002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(12), - [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3474), - [2008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(44), - [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3476), - [2014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5044), - [2017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3395), - [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3395), - [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3422), - [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4353), - [2029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4028), - [2032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5112), - [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4358), - [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4004), - [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5163), - [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5164), - [2047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3967), - [2050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3908), - [2053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(397), - [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4118), - [2059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5161), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), + [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), + [1848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [1851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 98), + [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 98), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), + [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 3, 0, 45), + [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 3, 0, 45), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), + [1918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(697), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), + [1923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4042), + [1926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4357), + [1929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4653), + [1932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(354), + [1935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(31), + [1938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3628), + [1941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(8), + [1944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3475), + [1947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(46), + [1950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3477), + [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4879), + [1956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3335), + [1959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3335), + [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3424), + [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4355), + [1968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4024), + [1971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5111), + [1974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4359), + [1977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3944), + [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5161), + [1983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5162), + [1986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4029), + [1989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3818), + [1992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(376), + [1995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4118), + [1998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5159), + [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 22), + [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 22), + [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 2, 0, 0), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 76), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 76), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 3, 0, 0), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), + [2023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3490), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 72), [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 72), - [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 102), - [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 102), - [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), - [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), - [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), - [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), - [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 21), - [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 21), - [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), - [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), - [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), - [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), - [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 102), - [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 102), - [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 73), - [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 73), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 74), - [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 74), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 75), - [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 75), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 72), - [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 72), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4744), - [2207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4744), - [2210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(2964), - [2213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5016), - [2216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4713), - [2219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(36), - [2222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4369), - [2225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4884), - [2228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(44), - [2231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5044), - [2234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1849), - [2237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1849), - [2240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1905), - [2243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(680), - [2246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4059), - [2249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4975), - [2252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4976), - [2255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4051), - [2258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3885), - [2261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(457), - [2264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4970), - [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 147), - [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 147), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), - [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), - [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), - [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(683), - [2322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(1060), - [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), - [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), - [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 28), - [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 28), - [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 45), - [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 45), - [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 113), - [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 113), - [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 114), - [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 114), - [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 115), - [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 115), - [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 121), - [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 121), - [2357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4744), - [2360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4744), - [2363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(2964), - [2366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5016), - [2369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4713), - [2372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(36), - [2375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4370), - [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4884), - [2381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(44), - [2384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5044), - [2387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1849), - [2390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1849), - [2393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1905), - [2396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(680), - [2399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4059), - [2402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4975), - [2405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4976), - [2408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4051), - [2411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3885), - [2414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(457), - [2417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4970), - [2420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 98), - [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 98), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 154), - [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 154), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 155), - [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 155), - [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 156), - [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 156), - [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 157), - [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 157), - [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 158), - [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 158), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 159), - [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 159), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 160), - [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 160), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 3), - [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 3), - [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 59), - [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 59), - [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 59), - [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 59), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 190), - [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 190), - [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 116), - [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 116), - [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 4, 0, 0), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 111), - [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 111), - [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 161), - [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 161), - [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 5, 0, 0), - [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), - [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), - [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 71), - [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 71), - [2551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1047), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 4), - [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 4), - [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_cellpath, 2, 0, 0), - [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_cellpath, 2, 0, 0), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 39), - [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 39), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 29), - [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 29), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), - [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), - [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 111), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 111), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 57), - [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 57), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), - [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), - [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), - [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 57), - [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 57), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), - [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), - [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 190), - [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 190), - [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 71), - [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 71), - [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 72), - [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 72), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), - [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 147), - [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 147), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 146), - [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 146), - [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 146), - [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 146), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 71), - [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 71), - [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 149), - [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 149), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), - [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 148), - [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 148), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 189), - [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 189), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), SHIFT(683), - [2867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), SHIFT(683), - [2870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 146), SHIFT(683), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 71), SHIFT(683), - [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [2880] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [2884] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [2888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [2891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), - [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), - [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4683), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4776), - [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), - [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), - [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), + [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 73), + [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 73), + [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 74), + [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 74), + [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 75), + [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 75), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 102), + [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 102), + [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 102), + [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 102), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), + [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), + [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), + [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 21), + [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 21), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), + [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), + [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 72), + [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 72), + [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 59), + [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 59), + [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 59), + [2182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 59), + [2184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4809), + [2187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4809), + [2190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(2945), + [2193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5010), + [2196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4709), + [2199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(47), + [2202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4373), + [2205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4836), + [2208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(46), + [2211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4879), + [2214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1851), + [2217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1851), + [2220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1907), + [2223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(671), + [2226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4007), + [2229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4974), + [2232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4975), + [2235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4028), + [2238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3896), + [2241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(460), + [2244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4969), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 190), + [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 190), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 147), + [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 147), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [2275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4809), + [2278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4809), + [2281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(2945), + [2284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5010), + [2287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4709), + [2290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(47), + [2293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4372), + [2296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4836), + [2299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(46), + [2302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4879), + [2305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1851), + [2308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1851), + [2311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1907), + [2314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(671), + [2317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4007), + [2320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4974), + [2323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4975), + [2326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4028), + [2329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3896), + [2332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(460), + [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4969), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), + [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 149), + [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(697), + [2351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(1092), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [2376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), + [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), + [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 28), + [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 28), + [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 45), + [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 45), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 113), + [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 113), + [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 114), + [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 114), + [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 115), + [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 115), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 121), + [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 121), + [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 98), + [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 98), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 154), + [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 154), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 155), + [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 155), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 156), + [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 156), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 157), + [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 157), + [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 158), + [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 158), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 159), + [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 159), + [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 160), + [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 160), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 3), + [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 3), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 71), + [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 71), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 57), + [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 57), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), + [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_cellpath, 2, 0, 0), + [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_cellpath, 2, 0, 0), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 116), + [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 116), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), + [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), + [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 29), + [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 29), + [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 111), + [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 111), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), + [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), + [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 4, 0, 0), + [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 161), + [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 161), + [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range, 5, 0, 0), + [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), + [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1005), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 39), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 39), + [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), + [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 111), + [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 111), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 4), + [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 4), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), + [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 57), + [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 57), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), + [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 72), + [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 72), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 147), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 147), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 146), + [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 146), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 149), + [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 149), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), + [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 148), + [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 148), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 190), + [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 190), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 189), + [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 189), + [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 146), + [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 146), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 71), + [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 71), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), + [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 71), + [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 71), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 148), SHIFT(697), + [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 189), SHIFT(697), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 146), SHIFT(697), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2843] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [2847] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [2851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [2854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 71), SHIFT(697), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [2970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [2972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4771), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4774), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), - [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), - [3066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [3070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1366), - [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), - [3075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1361), - [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), - [3080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1380), - [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [3085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4960), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), - [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [3121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(683), - [3124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1385), - [3127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5029), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), - [3181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4022), - [3184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4025), - [3187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4050), - [3190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1069), - [3193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(28), - [3196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4318), - [3199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(465), - [3202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4475), - [3205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), - [3208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3498), - [3211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3380), - [3214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3380), - [3217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3420), - [3220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(680), - [3223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(684), - [3226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4974), - [3229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3955), - [3232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4059), - [3235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4975), - [3238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4976), - [3241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(679), - [3244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4970), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4973), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [3335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [3338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), + [3046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [3050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1366), + [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4434), + [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), + [3077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1373), + [3080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [3086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1376), + [3089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3963), + [3092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3964), + [3095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4013), + [3098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1086), + [3101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(28), + [3104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4322), + [3107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(461), + [3110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4464), + [3113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3496), + [3116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), + [3119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3367), + [3122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3367), + [3125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3443), + [3128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(671), + [3131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(711), + [3134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4973), + [3137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3970), + [3140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4007), + [3143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4974), + [3146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4975), + [3149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(694), + [3152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4969), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5068), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4959), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [3231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(697), + [3234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1391), + [3237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5016), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4953), + [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), + [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [3337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [3344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), [3350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), - [3352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [3356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), - [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), - [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [3376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5261), - [3379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5261), - [3382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5074), - [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), - [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), - [3389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1902), - [3392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1902), - [3395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1941), - [3398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5261), - [3401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5261), - [3404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5074), - [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1902), - [3414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1902), - [3417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1941), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1405), - [3459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1405), - [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [3476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1414), - [3479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1417), - [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4043), - [3527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4356), - [3530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4655), - [3533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(964), - [3536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(31), - [3539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4284), - [3542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(468), - [3545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3474), - [3548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3476), - [3551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3395), - [3554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3395), - [3557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3422), - [3560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4353), - [3563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4028), - [3566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5112), - [3569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4678), - [3572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4004), - [3575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5163), - [3578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5164), - [3581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4118), - [3584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5161), - [3587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4834), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), - [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 32), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 10), - [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [3653] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), - [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), - [3685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), - [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 18), - [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), - [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), - [3693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 47), - [3695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), - [3697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 48), - [3699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), - [3702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 18), REDUCE(sym_record_body, 2, 0, 18), - [3705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), - [3708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 4, 0, 103), - [3710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 47), REDUCE(sym_record_body, 3, 0, 47), - [3713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), - [3715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1492), - [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), - [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 103), - [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 18), - [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 47), - [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 48), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [3352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), + [3364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), + [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [3380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5065), + [3383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5065), + [3386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(5070), + [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1911), + [3396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1911), + [3399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(1928), + [3402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5065), + [3405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5065), + [3408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5070), + [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), + [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), + [3415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1911), + [3418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1911), + [3421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1928), + [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1403), + [3433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1403), + [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [3464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1422), + [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 1, 0, 0), + [3477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(1413), + [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4042), + [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4357), + [3538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4653), + [3541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(1125), + [3544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(31), + [3547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4290), + [3550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(471), + [3553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3475), + [3556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3477), + [3559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3335), + [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3335), + [3565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3424), + [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4355), + [3571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4024), + [3574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5111), + [3577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4821), + [3580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3944), + [3583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5161), + [3586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5162), + [3589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4118), + [3592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 49), SHIFT_REPEAT(5159), + [3595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [3623] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 32), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 10), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5024), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), + [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), + [3685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), + [3687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1504), + [3690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), + [3692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), + [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 4, 0, 103), + [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), + [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), + [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 18), + [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), + [3704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), + [3707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 18), REDUCE(sym_record_body, 2, 0, 18), + [3710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_body_repeat1, 2, 0, 18), REDUCE(aux_sym_record_body_repeat1, 2, 0, 18), + [3713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 47), + [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 48), + [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 48), + [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 103), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 18), + [3725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 47), + [3727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 47), REDUCE(sym_record_body, 3, 0, 47), [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 1, 0, 0), [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), - [3738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1583), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), - [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), - [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [3891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), - [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [4012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3527), - [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [4041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5133), - [4044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5133), - [4047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(4699), - [4050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(1902), - [4053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(1941), - [4056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(4004), - [4059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5163), - [4062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5164), - [4065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5161), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), - [4080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3505), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), - [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), - [4089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 172), SHIFT_REPEAT(4047), - [4092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 172), SHIFT_REPEAT(3813), - [4095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 172), SHIFT_REPEAT(3845), - [4098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 172), SHIFT_REPEAT(4878), - [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), - [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), - [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), - [4107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [4145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 172), SHIFT_REPEAT(4585), - [4148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 172), SHIFT_REPEAT(4177), - [4151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 172), SHIFT_REPEAT(4179), - [4154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 172), SHIFT_REPEAT(5249), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5094), - [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), - [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), - [4201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1882), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), - [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [3738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1510), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), + [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), + [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), + [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [4020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5129), + [4023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5129), + [4026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(4684), + [4029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(1911), + [4032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(1928), + [4035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(3944), + [4038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5161), + [4041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5162), + [4044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 139), SHIFT_REPEAT(5159), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [4057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3526), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), + [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), + [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [4088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), + [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), + [4092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 172), SHIFT_REPEAT(4041), + [4095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 172), SHIFT_REPEAT(3909), + [4098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 172), SHIFT_REPEAT(3826), + [4101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 172), SHIFT_REPEAT(4841), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), + [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), + [4110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3504), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [4141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 172), SHIFT_REPEAT(4585), + [4144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 172), SHIFT_REPEAT(4177), + [4147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 172), SHIFT_REPEAT(4178), + [4150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 172), SHIFT_REPEAT(5247), + [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5082), + [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), + [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [4197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1893), + [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), + [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), + [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 83), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 172), [4276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__types_body_repeat3, 2, 0, 88), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [4280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3520), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), - [4295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 88), - [4297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 83), - [4299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 172), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), - [4303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 4, 0, 203), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [4307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 88), - [4309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 172), - [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [4315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2086), - [4318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), - [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), - [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [4332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 88), - [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [4358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 4, 0, 203), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), - [4422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4956), - [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), - [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [4430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 90), - [4432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 137), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 90), - [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 138), - [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [4444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 4, 0, 175), - [4446] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), - [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [4461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [4463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [4465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(1948), - [4468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 20), - [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 20), - [4472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 18), - [4474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 18), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 18), - [4480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 90), - [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), - [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5117), - [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4977), - [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [4496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 103), - [4498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2114), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), - [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), - [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), - [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), - [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), - [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [4521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2111), - [4524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 47), - [4526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 48), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), - [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), - [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), - [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [4540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2131), - [4543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2212), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [4550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2201), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), - [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [4617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2219), - [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [4652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 85), - [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 85), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [4658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 86), - [4660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 86), - [4662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 87), - [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 87), - [4666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 34), - [4668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 34), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [4672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [4674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), - [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129), - [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), - [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4950), - [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), - [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), - [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), - [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), - [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), - [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5075), - [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), - [4706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(5219), - [4709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(5042), - [4712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(4843), - [4715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(2410), - [4718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), - [4720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(3829), - [4723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(3858), - [4726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(3622), - [4729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(3622), - [4732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(3765), - [4735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(5043), - [4738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(3974), - [4741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(5198), - [4744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(5199), - [4747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(2359), - [4750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 2, 0, 199), SHIFT_REPEAT(5197), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [4755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_body, 1, 0, 165), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [4767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 1, 0, 0), - [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [4777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2238), - [4780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), - [4782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 4, 0, 0), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [4786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), - [4788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 3, 0, 0), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [4798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 2, 0, 0), - [4800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2242), - [4803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2252), - [4806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2249), - [4809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 18), - [4811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 48), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [4815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 18), - [4817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 47), - [4819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 18), - [4821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 4, 0, 103), - [4823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2254), - [4826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), - [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4997), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), - [4832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), - [4834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), - [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5017), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), - [4850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [4872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3484), - [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), - [4877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), - [4879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), - [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [4897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3532), - [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 2, 0, 83), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [4924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 2, 0, 83), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), - [4932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 1, 0, 167), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [4936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 1, 0, 167), - [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), - [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [4968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 1, 0, 166), - [4970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 1, 0, 166), - [4972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 82), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [4976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 82), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [4986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [4988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [5008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), - [5010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), - [5012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), - [5014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), - [5016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 84), - [5018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__all_type, 1, 0, 84), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [5028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [5030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [5032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 196), - [5034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 196), - [5036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 200), - [5038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 200), - [5040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 201), - [5042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 201), - [5044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_composite_type, 4, 0, 131), - [5046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_composite_type, 4, 0, 131), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [5054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 219), - [5056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 219), - [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [5060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 1, 0, 165), - [5062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 1, 0, 165), - [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 39), - [5066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 39), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [5074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), - [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [5088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [5100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_body_repeat1, 1, 0, 0), - [5102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__collection_body_repeat1, 1, 0, 0), - [5104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 39), - [5106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 39), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), - [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [5120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), - [5122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), - [5124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 170), - [5126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 170), - [5128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 4), - [5130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 4), - [5132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 2, 0, 198), - [5134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 2, 0, 198), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [5138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), - [5152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 2, 0, 197), - [5154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 2, 0, 197), - [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [5160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 169), - [5162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 169), - [5164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 3, 0, 132), - [5166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 3, 0, 132), - [5168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3528), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), - [5175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), - [5177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [5181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), - [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [5197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [5199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [5219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [5221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [5239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), - [5245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), - [5247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [5267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [5279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3523), - [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), - [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), - [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [5308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 71), - [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [5316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 55), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [5326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 55), - [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [5332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), - [5334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), - [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), - [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), - [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [5372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3517), - [5375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [5377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), - [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [4280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), + [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), + [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [4288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__composite_argument_body_repeat1, 2, 0, 88), + [4290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 4, 0, 203), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [4294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 83), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [4308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1975), + [4311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 88), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [4319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 83), + [4321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 172), + [4323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 4, 0, 203), + [4325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3519), + [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [4340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 88), + [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [4366] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), + [4373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 90), + [4377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 138), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_list_body_repeat1, 2, 0, 90), + [4383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 137), + [4385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 18), + [4387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 18), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [4391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 18), + [4393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2129), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), + [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), + [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), + [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), + [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), + [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [4470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 90), + [4472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 20), + [4477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 20), + [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [4483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 103), + [4485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2125), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [4490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [4494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(1917), + [4497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2116), + [4500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 47), + [4502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 48), + [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), + [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5108), + [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), + [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [4518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 4, 0, 175), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), + [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), + [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4708), + [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), + [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), + [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [4540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__types_body_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [4543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2136), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [4556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2203), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [4563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2223), + [4566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 85), + [4568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 85), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [4580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 86), + [4582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 86), + [4584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag_equals_value, 2, 0, 87), + [4586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag_equals_value, 2, 0, 87), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [4632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 34), + [4634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 34), + [4636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), + [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), + [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), + [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), + [4652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5124), + [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5236), + [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4799), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), + [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4839), + [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [4700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body, 2, 0, 197), SHIFT_REPEAT(5155), + [4703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body, 2, 0, 197), SHIFT_REPEAT(5032), + [4706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body, 2, 0, 197), SHIFT_REPEAT(5216), + [4709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body, 2, 0, 197), SHIFT_REPEAT(2427), + [4712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_body, 2, 0, 197), + [4714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body, 2, 0, 197), SHIFT_REPEAT(3852), + [4717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body, 2, 0, 197), SHIFT_REPEAT(3854), + [4720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body, 2, 0, 197), SHIFT_REPEAT(3653), + [4723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body, 2, 0, 197), SHIFT_REPEAT(3653), + [4726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body, 2, 0, 197), SHIFT_REPEAT(3754), + [4729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body, 2, 0, 197), SHIFT_REPEAT(5036), + [4732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body, 2, 0, 197), SHIFT_REPEAT(3975), + [4735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body, 2, 0, 197), SHIFT_REPEAT(5196), + [4738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body, 2, 0, 197), SHIFT_REPEAT(5197), + [4741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__collection_body, 2, 0, 197), SHIFT_REPEAT(2376), + [4744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_body, 2, 0, 197), SHIFT_REPEAT(5195), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 1, 0, 0), + [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [4783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), + [4785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 2, 0, 0), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ctrl_match_body_repeat1, 2, 0, 0), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [4799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(2241), + [4802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2251), + [4805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 3, 0, 0), + [4807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 4, 0, 0), + [4809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2252), + [4812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 18), + [4814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 48), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [4818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_body_repeat1, 2, 0, 18), + [4820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 4, 0, 103), + [4822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2255), + [4825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 47), + [4827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 18), + [4829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__types_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2257), + [4832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), + [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [4838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), + [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [4844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), + [4846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [4872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3485), + [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [4899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), + [4901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), + [4903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3531), + [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [4932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 1, 0, 166), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [4936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 1, 0, 166), + [4938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 1, 0, 167), + [4940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 1, 0, 167), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [4944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 82), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [4948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 82), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [4960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [4962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 2, 0, 83), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [4966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 2, 0, 83), + [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [5012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [5014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [5016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), + [5018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), + [5020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), + [5022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), + [5024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [5026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [5030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 84), + [5032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__all_type, 1, 0, 84), + [5034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 196), + [5036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 196), + [5038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 200), + [5040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 200), + [5042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 201), + [5044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 201), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [5054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_composite_type, 4, 0, 131), + [5056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_composite_type, 4, 0, 131), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 219), + [5064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 219), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [5070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 39), + [5072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 39), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [5092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 169), + [5094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 169), + [5096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_completer, 2, 0, 170), + [5098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_completer, 2, 0, 170), + [5100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_body, 1, 0, 165), + [5106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__collection_body, 1, 0, 165), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [5114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), + [5116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 1, 0, 0), + [5118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 39), + [5124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 39), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_body, 1, 0, 0), + [5132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__collection_body, 1, 0, 0), + [5134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 4), + [5136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 4), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [5140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_annotation, 3, 0, 132), + [5146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_annotation, 3, 0, 132), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [5156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 2, 0, 198), + [5158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 2, 0, 198), + [5160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_entry, 2, 0, 199), + [5162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__collection_entry, 2, 0, 199), + [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [5174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [5176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [5178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3527), + [5181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [5183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), + [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [5221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [5237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3522), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [5256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), + [5258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [5262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [5266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [5278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), + [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [5298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 71), + [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), + [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [5314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3516), + [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), + [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), + [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [5345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [5349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [5353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), + [5355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs_path_head, 2, 0, 0), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [5361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 55), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), + [5371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 55), + [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [5381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 20), + [5383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 20), [5385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 3, 0, 72), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [5395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [5397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [5399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 20), - [5401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 20), - [5403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), - [5405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), - [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [5419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3502), - [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [5438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), - [5440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [5450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 52), - [5452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 52), - [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [5464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 55), - [5466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 55), - [5468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 110), - [5470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 110), - [5472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), - [5474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), - [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), - [5478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 62), - [5480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 62), - [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 52), - [5504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 52), - [5506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 110), - [5508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 110), - [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), - [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [5518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 2), - [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [5524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 186), - [5526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 213), SHIFT(683), - [5529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 213), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [5533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 214), SHIFT(683), - [5536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 214), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [5540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [5542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1317), - [5545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3425), - [5548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1785), - [5551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [5553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 185), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [5565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 68), - [5567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 68), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [5571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 187), - [5573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 146), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [5577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 215), - [5579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 189), - [5581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 188), - [5583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 148), - [5585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 215), SHIFT(683), - [5588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 215), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), - [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [5598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 189), SHIFT(683), - [5601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 118), SHIFT(683), - [5604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 118), - [5606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 119), - [5608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 105), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [5612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 106), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [5618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 23), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [5626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 24), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [5634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 23), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [5640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 71), - [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), - [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), - [5646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 117), - [5648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 118), - [5650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 119), - [5652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 117), SHIFT(683), - [5655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 117), - [5657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 71), - [5659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 183), - [5661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 184), - [5663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 117), - [5665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 118), - [5667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 183), SHIFT(683), - [5670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 184), SHIFT(683), - [5673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), - [5675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 189), - [5677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), SHIFT(683), - [5680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), SHIFT(683), - [5683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), - [5685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), - [5687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 146), - [5689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 119), - [5691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 71), - [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), - [5695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), SHIFT(683), - [5698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 146), SHIFT(683), - [5701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 24), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [5705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 188), - [5707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 148), - [5709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 188), SHIFT(683), - [5712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 148), SHIFT(683), - [5715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 106), - [5717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 23), - [5719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 24), - [5721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 183), - [5723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 184), - [5725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), - [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), - [5733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [5745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 119), SHIFT(683), - [5748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 213), - [5750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 214), - [5752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 20), - [5754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 20), - [5756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 71), SHIFT(683), - [5759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 105), - [5761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [5765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 216), - [5767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 216), - [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), - [5775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(3203), - [5778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), - [5780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4911), - [5783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4811), - [5786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4934), - [5789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4936), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), - [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4936), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [5808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 61), - [5810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(683), - [5813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), - [5815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [5825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [5829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 26), - [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [5847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 27), - [5849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), - [5851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), SHIFT_REPEAT(108), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 191), - [5860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 191), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [5864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 151), - [5866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 151), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [5878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(683), - [5881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), - [5883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [5885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [5889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 2), - [5891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 2), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [5895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [5905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(683), - [5908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), - [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [5916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(683), - [5919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [5923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 13), SHIFT(683), - [5926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 13), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [5930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 180), SHIFT(683), - [5933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 180), - [5935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [5939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [5945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 13), SHIFT(683), - [5948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 13), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [5952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 180), SHIFT(683), - [5955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 180), - [5957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 63), - [5959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 63), - [5961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 20), - [5963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 20), - [5965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 26), - [5967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3849), - [5970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [5972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [5974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), - [5976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), - [5978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 34), - [5980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 34), - [5982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 61), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [5988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 13), - [5990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 61), - [5992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 64), - [5994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 64), - [5996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(260), - [5999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 27), - [6001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), - [6003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), SHIFT_REPEAT(130), - [6006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3154), - [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 131), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [6013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 131), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [6017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 104), SHIFT(683), - [6020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 104), - [6022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 65), - [6024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 65), - [6026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 66), - [6028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 66), - [6030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(231), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [6035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 144), SHIFT(683), - [6038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 144), - [6040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 67), - [6042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 67), - [6044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 26), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [6054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 70), SHIFT_REPEAT(133), - [6057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 70), SHIFT_REPEAT(133), - [6060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 70), - [6062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [6064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [6068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 144), SHIFT(683), - [6071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 144), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [6075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 145), SHIFT(683), - [6078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 145), - [6080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 123), - [6082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 123), - [6084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 102), - [6086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 102), - [6088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [6090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [6092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 102), - [6094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 102), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [6098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 43), SHIFT(683), - [6101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 43), - [6103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 83), - [6105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 83), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [6109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), SHIFT(683), - [6112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), - [6114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), - [6116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), - [6118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 171), - [6120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 171), - [6122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(265), - [6125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(256), - [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [6132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [6142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 104), SHIFT(683), - [6145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 104), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [6149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 43), SHIFT(683), - [6152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 43), - [6154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 27), - [6156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3801), - [6159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 85), - [6161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 85), - [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 92), - [6165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 43), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [6175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), - [6179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 93), - [6181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 96), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [6187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), - [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [6203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 65), - [6205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 65), - [6207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 2, 0, 0), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), - [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), - [6215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [6219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 51), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [6223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 51), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [6227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), - [6229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 141), - [6231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 142), - [6233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), - [6235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), - [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), - [6248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 93), - [6250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 96), - [6252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 84), - [6254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 84), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [6270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(219), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [6275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(223), - [6278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(225), - [6281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(228), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [6286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [6288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), - [6298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 211), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [6306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), - [6308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 232), - [6310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 19), - [6312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), - [6314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 226), - [6316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 227), - [6318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 212), - [6320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 228), - [6322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [6325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [6327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 229), - [6329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 220), - [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), - [6335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [6341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), - [6343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), - [6345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 168), - [6347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 168), - [6349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 249), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [6363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(234), - [6366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 210), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [6370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(238), - [6373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(240), - [6376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(252), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [6383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 56), - [6385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 56), - [6387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 239), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [6393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), - [6395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 142), - [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4482), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [6401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), - [6403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), - [6405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 247), - [6407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 240), - [6409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 221), - [6411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3425), - [6414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 244), - [6416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 245), + [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [5389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), + [5391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), + [5393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), + [5395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), + [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [5405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [5407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [5409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [5419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [5421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [5429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [5433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [5445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3501), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [5452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), + [5454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [5460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 62), + [5462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 62), + [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [5468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 52), + [5470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 52), + [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [5492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 2), + [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [5504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 110), + [5506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 110), + [5508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 55), + [5510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 55), + [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [5520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 52), + [5522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 52), + [5524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 110), + [5526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 110), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [5530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 24), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [5542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 146), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [5548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 186), + [5550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 213), SHIFT(697), + [5553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 213), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [5557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 214), SHIFT(697), + [5560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 214), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [5564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 188), SHIFT(697), + [5567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 188), + [5569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 148), SHIFT(697), + [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 148), + [5574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 215), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [5580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 189), + [5582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 188), + [5584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 68), + [5586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 68), + [5588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 185), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [5592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 148), + [5594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 23), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [5598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 24), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [5602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 215), SHIFT(697), + [5605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 189), SHIFT(697), + [5608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 213), + [5610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 214), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [5614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 215), + [5616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 189), + [5618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 105), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [5622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 106), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [5626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 117), + [5628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 118), + [5630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 117), SHIFT(697), + [5633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 118), SHIFT(697), + [5636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 187), + [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [5642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 183), + [5644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 184), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [5652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 117), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), + [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [5664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 105), + [5666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 106), + [5668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 23), + [5670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 24), + [5672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 118), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [5678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 119), + [5680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 71), + [5682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 119), + [5684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [5686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1309), + [5689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3427), + [5692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1779), + [5695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [5697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 71), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [5701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 119), SHIFT(697), + [5704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 183), + [5706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 184), + [5708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 117), + [5710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 23), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [5714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 71), SHIFT(697), + [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [5721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 118), + [5723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 183), SHIFT(697), + [5726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 184), SHIFT(697), + [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [5731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), + [5733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), + [5735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 20), + [5737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 20), + [5739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 185), SHIFT(697), + [5742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 186), SHIFT(697), + [5745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), + [5747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 146), + [5749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 119), + [5751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 71), + [5753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 187), SHIFT(697), + [5756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 146), SHIFT(697), + [5759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [5763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4926), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [5791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 216), + [5793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 216), + [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [5803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 26), + [5805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 151), + [5807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 151), + [5809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 191), + [5811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 191), + [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [5819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 27), + [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [5825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 2), + [5827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(3260), + [5830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), + [5832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4899), + [5835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4805), + [5838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4918), + [5841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4926), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [5846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 2), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [5850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), + [5852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), SHIFT_REPEAT(115), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [5857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [5859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [5861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 61), + [5863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(697), + [5866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), + [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [5886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(697), + [5889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [5899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [5901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [5911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 131), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [5915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 131), + [5917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 66), + [5919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 66), + [5921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), + [5923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [5927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 144), SHIFT(697), + [5930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 144), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [5934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 145), SHIFT(697), + [5937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 145), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [5943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 43), SHIFT(697), + [5946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 43), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [5950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 104), SHIFT(697), + [5953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 104), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [5957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 180), SHIFT(697), + [5960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 180), + [5962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3915), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [5967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 13), SHIFT(697), + [5970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 13), + [5972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 61), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [5978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 171), + [5980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 171), + [5982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), + [5984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), SHIFT_REPEAT(132), + [5987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3130), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [5992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 180), SHIFT(697), + [5995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 180), + [5997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(697), + [6000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [6004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 43), SHIFT(697), + [6007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 43), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [6011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 104), SHIFT(697), + [6014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 104), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [6018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 13), SHIFT(697), + [6021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 13), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [6025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 144), SHIFT(697), + [6028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 144), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [6032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), SHIFT(697), + [6035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 145), + [6037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 26), + [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [6045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 61), + [6047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(259), + [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [6056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [6058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(697), + [6061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), + [6063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 34), + [6065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 34), + [6067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 20), + [6069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 20), + [6071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(230), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [6076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 13), + [6078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 70), SHIFT_REPEAT(117), + [6081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 70), SHIFT_REPEAT(117), + [6084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 70), + [6086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(3805), + [6089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 85), + [6091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 85), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [6109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [6111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [6113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 102), + [6115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 102), + [6117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [6119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [6121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 102), + [6123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 102), + [6125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 27), + [6127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 123), + [6129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 123), + [6131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 83), + [6133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 83), + [6135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [6137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [6139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), + [6141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), + [6143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 63), + [6145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 63), + [6147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 64), + [6149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 64), + [6151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 65), + [6153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 65), + [6155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(257), + [6158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 26), + [6160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(262), + [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 27), + [6165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 67), + [6167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 67), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [6171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 96), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [6181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [6183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [6185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), + [6197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [6199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [6201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 65), + [6203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 65), + [6205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 141), + [6207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 142), + [6209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [6212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 93), + [6214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 96), + [6216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 2, 0, 0), + [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), + [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), + [6228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 84), + [6230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 84), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [6234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), + [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [6242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [6246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 43), + [6248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [6266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(242), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [6271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(246), + [6274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(248), + [6277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(251), + [6280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 92), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [6286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 93), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), + [6292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 51), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [6296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 51), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), + [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), + [6306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(3427), + [6309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 20), + [6311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 20), + [6313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 244), + [6315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 242), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [6321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 224), + [6323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 50), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [6329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 211), + [6331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 210), + [6333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 56), + [6335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 56), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [6339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [6342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [6344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 226), + [6346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 225), + [6348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 227), + [6350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 234), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [6364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(209), + [6367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 181), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [6371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(212), + [6374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(214), + [6377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT(217), + [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), + [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), + [6386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 245), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), + [6394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 235), + [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [6402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 228), + [6404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [6406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), + [6412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 109), + [6414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 109), + [6416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 239), [6418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 246), - [6420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 206), - [6422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 53), - [6424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 53), - [6426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 54), - [6428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 54), - [6430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 234), - [6432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [6436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 242), - [6438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 222), - [6440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 223), - [6442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 248), - [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [6448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 237), - [6450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 50), - [6452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 208), - [6454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 181), - [6456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 233), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [6462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 243), - [6464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 108), - [6466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 108), - [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), - [6470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 109), - [6472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 109), - [6474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 20), - [6476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 20), - [6478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 92), - [6480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [6482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [6486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 202), - [6488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 202), - [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [6494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 141), - [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [6502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [6504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [6506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 132), - [6508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 132), - [6510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 207), - [6512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 205), - [6514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 20), - [6516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 20), - [6518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 209), - [6520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 236), - [6522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 150), - [6524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 150), - [6526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 235), - [6528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 238), - [6530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [6534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), - [6536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 224), - [6538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 225), - [6540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 182), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), - [6576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [6578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(3473), - [6581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [6593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 52), - [6595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 52), - [6597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 55), - [6599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 55), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [6603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [6420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 247), + [6422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 182), + [6424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 236), + [6426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 212), + [6428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 220), + [6430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 221), + [6432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [6436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 108), + [6438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 108), + [6440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 205), + [6442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 237), + [6444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 92), + [6446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 209), + [6448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 168), + [6450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 168), + [6452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 238), + [6454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [6456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [6458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 54), + [6460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 54), + [6462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 229), + [6464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 206), + [6466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), + [6468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 132), + [6470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 132), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [6474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), + [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [6480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 249), + [6482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 248), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [6488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 243), + [6490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), + [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), + [6498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 207), + [6500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), + [6502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 208), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [6510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 232), + [6512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 141), + [6514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 233), + [6516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 20), + [6518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 20), + [6520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 142), + [6522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [6524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 19), + [6526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 240), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [6532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 53), + [6534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 53), + [6536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 222), + [6538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 150), + [6540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 150), + [6542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 223), + [6544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 202), + [6546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 202), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [6562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [6582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [6584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(3474), + [6587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [6591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 52), + [6593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 52), + [6595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 55), + [6597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 55), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), [6613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 110), [6615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 110), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), - [6641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), - [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), - [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), - [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), - [6651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), - [6653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), - [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), - [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [6689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), - [6691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [6699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), - [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4975), - [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4976), - [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), - [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), - [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), - [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [6723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), - [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [6739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), - [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), - [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), - [6747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), - [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), - [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), - [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), - [6757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), - [6759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), - [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [6763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), - [6765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), - [6767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), - [6769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), - [6773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [6775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [6777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), - [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), - [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), - [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), - [6791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [6793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), - [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), - [6801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), - [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), - [6805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), - [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), - [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), - [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), - [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), - [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), - [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), - [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), - [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [6839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), - [6847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), - [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), - [6851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), - [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [6861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), + [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), + [6637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), + [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [6641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), + [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), + [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), + [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [6653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [6657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), + [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), + [6681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [6689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), + [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [6699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), + [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), + [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4975), + [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), + [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5136), + [6723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), + [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), + [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [6735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [6739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), + [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), + [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), + [6747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), + [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [6753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), + [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), + [6757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), + [6759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), + [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), + [6763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [6765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), + [6767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), + [6769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), + [6771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [6775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [6777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), + [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), + [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), + [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), + [6793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [6801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), + [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), + [6805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), + [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), + [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), + [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), + [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), + [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [6839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), + [6847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), + [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), + [6851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [6861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), [6867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [6869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [6873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), - [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), - [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), - [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), - [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), - [6885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), - [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), - [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), - [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), - [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), - [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), - [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), - [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), - [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), - [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), - [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), - [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), - [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), - [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), - [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), - [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), - [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), - [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5217), - [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [6935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3511), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [6974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 6), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [7006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 5), - [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), - [7028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [6869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [6873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), + [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), + [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), + [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), + [6885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), + [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), + [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), + [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), + [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), + [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), + [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), + [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), + [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), + [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), + [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), + [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [6927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3510), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), + [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), + [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), + [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [6970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 6), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [7016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 5), + [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [7026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [7028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), + [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [7042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 177), + [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), [7048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [7054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [7070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [7073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), - [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [7083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [7085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), - [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [7111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 177), - [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), - [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [7119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3529), - [7122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [7124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [7134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), - [7136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), - [7138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4913), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [7144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [7162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [7164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), - [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), - [7174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [7178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [7180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), - [7182] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [7186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [7188] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [7194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), - [7196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [7202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [7204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [7208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), - [7210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [7214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [7216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [7222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [7224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [7227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 177), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [7249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3541), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [7254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), - [7256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [7262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [7272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), - [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [7288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [7292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [7304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [7308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [7054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [7060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), + [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [7079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [7081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), + [7111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3528), + [7114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [7122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [7124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), + [7126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [7128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [7130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [7132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [7142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [7144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), + [7146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), + [7148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [7156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [7162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [7164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [7166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [7168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5009), + [7174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [7178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [7180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [7186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), + [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [7194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3495), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [7199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [7201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [7205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), + [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4874), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [7231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 177), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [7237] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [7241] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [7247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [7254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [7262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [7266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [7272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), + [7286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [7300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [7308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), [7312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [7314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), - [7316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [7314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), + [7316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), [7318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), - [7320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), - [7324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [7330] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [7336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [7340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [7368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(81), - [7371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(4376), - [7374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 60), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [7382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), - [7388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 33), - [7390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), - [7392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), - [7394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 78), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [7400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 47), - [7402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 15), SHIFT(2249), - [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), - [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), - [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [7411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 15), - [7413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [7415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [7419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 15), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [7423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [7429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [7432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [7434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [7437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [7439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 1, 0, 18), - [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [7451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [7457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), - [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [7465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [7469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), - [7471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), - [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), - [7481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), - [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), - [7493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), - [7495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4863), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [7500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3508), - [7503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1, 0, 0), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [7324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), + [7326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [7330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 78), + [7332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [7336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [7338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [7342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [7348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [7350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), + [7352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4860), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [7365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 1, 0, 0), + [7367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [7377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [7383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 153), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [7387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [7391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [7395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [7403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), + [7405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [7413] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), REDUCE(sym_val_closure, 2, 0, 0), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [7423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 12), + [7425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [7443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [7457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), + [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), + [7465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [7469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), + [7471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [7491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 33), + [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [7501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), [7505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 40), - [7507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 12), - [7509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), - [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), - [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [7537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [7543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 153), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), - [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [7559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [7563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [7567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [7571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [7585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3530), - [7588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [7594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), - [7598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [7612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [7614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), REDUCE(sym_list_body, 1, 0, 0), - [7617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), - [7619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(4362), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [7624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [7632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [7634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), - [7636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(76), - [7639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 60), - [7641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(4614), - [7644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [7646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), - [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [7652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [7654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [7656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [7658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), - [7660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [7662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [7664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [7666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [7674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), - [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [7678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 107), - [7680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 107), - [7682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), - [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [7688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), - [7690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 178), - [7692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 178), - [7694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), - [7696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 179), - [7698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 179), - [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), - [7706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [7714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, 0, 152), - [7716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, 0, 152), - [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [7722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), - [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [7730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [7732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [7736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [7740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [7746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [7756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [7762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(3856), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [7511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), + [7513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 15), + [7515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 15), + [7517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [7520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [7523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 1, 0, 18), + [7525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 15), SHIFT(2252), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [7530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [7536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3507), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [7541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [7545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [7553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [7557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [7561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 47), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [7567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [7577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(80), + [7580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(4376), + [7583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 60), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [7587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), + [7589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), + [7591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3529), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [7598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(3822), + [7601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), + [7603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [7609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 112), + [7611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 112), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [7615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [7619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [7625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [7627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(4362), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [7632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [7634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [7638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), + [7640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, 0, 152), + [7642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, 0, 152), + [7644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [7648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [7652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), + [7656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [7658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), REDUCE(sym_list_body, 1, 0, 0), + [7661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list_body, 1, 0, 0), + [7663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [7665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), + [7667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [7669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [7671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [7675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [7683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 107), + [7685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 107), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [7689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [7691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 178), + [7693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 178), + [7695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 179), + [7697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 179), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [7715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [7719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [7731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [7743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(78), + [7746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 60), + [7748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 60), SHIFT_REPEAT(4613), + [7751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [7755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [7767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 112), - [7769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 112), - [7771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 136), - [7773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), - [7779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 31), - [7781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [7785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), - [7787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 35), - [7789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 36), - [7791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 37), - [7793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 38), - [7795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 41), - [7797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 42), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [7801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [7803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [7805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [7811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 176), - [7813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [7817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 177), - [7819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 48), - [7821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), SHIFT_REPEAT(194), - [7824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [7826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 47), - [7828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 48), - [7830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [7834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [7838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [7842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(4943), - [7845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1416), - [7848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), - [7850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 46), - [7852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 4, 0, 143), - [7854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), - [7856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 94), - [7858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), - [7860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(4563), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [7867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 71), - [7869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 95), - [7871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 77), - [7873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 79), - [7875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 80), - [7877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 81), - [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [7883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 89), - [7885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), - [7887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), - [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [7891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 91), - [7893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), - [7895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), - [7897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4579), - [7900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [7902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [7908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 46), - [7910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), - [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [7914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [7916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [7918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 102), - [7920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 102), - [7922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 128), - [7924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 129), - [7926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 130), - [7928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 133), - [7930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 134), - [7932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 135), - [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 140), + [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [7769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [7773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [7775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [7781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 31), + [7783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [7787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), + [7789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 35), + [7791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 36), + [7793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 37), + [7795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 38), + [7797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 41), + [7799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 42), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [7803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [7805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [7807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [7813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 176), + [7815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 177), + [7817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [7821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 2, 0, 48), + [7823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 70), SHIFT_REPEAT(194), + [7826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [7828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 47), + [7830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 48), + [7832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [7836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [7840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [7844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(4919), + [7847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1415), + [7850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), + [7852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 46), + [7854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 4, 0, 143), + [7856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), + [7858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 94), + [7860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [7862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(4566), + [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [7869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 71), + [7871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 95), + [7873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 77), + [7875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 79), + [7877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 80), + [7879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 81), + [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [7885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), + [7887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 89), + [7889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), + [7891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [7895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 91), + [7897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), + [7899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [7901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [7903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4539), + [7906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 46), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [7912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 102), + [7914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 102), + [7916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [7920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [7922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [7924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 128), + [7926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 129), + [7928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 130), + [7930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 133), + [7932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 134), + [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 135), [7936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), [7938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [7940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 99), - [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 162), - [7944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 163), - [7946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 164), - [7948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 174), - [7950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [7952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 100), - [7954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [7940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 136), + [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 140), + [7944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 99), + [7946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 162), + [7948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 163), + [7950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 164), + [7952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 174), + [7954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), [7956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 102), [7958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 102), - [7960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), - [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [7964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 6, 0, 192), - [7966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 193), - [7968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 194), - [7970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 195), - [7972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [7974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4599), - [7977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [7979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [7981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [7983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), - [7985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), - [7987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [7960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [7962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [7966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4599), + [7969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 6, 0, 192), + [7971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 193), + [7973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 194), + [7975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 195), + [7977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [7979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [7981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [7983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [7985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), + [7987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), [7989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), [7991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 1), - [7993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), - [7995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 204), - [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [7999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), - [8001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1, 0, 0), - [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [8005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 103), - [8007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 8), - [8009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 8), - [8011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 8), - [8013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 217), - [8015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 218), - [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 230), - [8019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 231), - [8021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 9, 0, 241), - [8023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 11), - [8025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 11), - [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [8029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), - [8031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 177), - [8033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 103), - [8035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), - [8037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), - [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), - [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), - [8043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3526), - [8046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [8048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [8050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [8052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 7), - [8054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 44), - [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [7993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [7995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), + [7997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 204), + [7999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list_body, 3, 0, 103), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [8003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), + [8005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1, 0, 0), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [8009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), + [8011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 8), + [8013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 8), + [8015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 8), + [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 217), + [8019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 218), + [8021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 230), + [8023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 8, 0, 231), + [8025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 9, 0, 241), + [8027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 11), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [8031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 11), + [8033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 177), + [8035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 3, 0, 103), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [8041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 7), + [8043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [8045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), + [8047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), + [8049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [8051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__where_predicate_lhs_repeat1, 2, 0, 0), SHIFT_REPEAT(3525), + [8054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [8056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), [8058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 25), [8060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 25), - [8062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [8064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, 0, 14), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), - [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), - [8078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 122), - [8080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 122), SHIFT_REPEAT(4532), - [8083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 99), - [8085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 100), - [8087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 101), SHIFT_REPEAT(385), - [8090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 48), - [8092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 103), - [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [8096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 1, 0, 46), - [8098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 31), - [8100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 1, 0, 88), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [8104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 47), - [8106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 3, 0, 0), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [8110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 8), - [8112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 143), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [8118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 83), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [8126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 176), - [8128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 177), - [8130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [8132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 1, 0, 90), - [8134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 1, 0, 88), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [8140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 71), - [8142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 18), REDUCE(sym_record_body, 1, 0, 18), - [8145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 128), - [8147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 133), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [8155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 1, 0, 0), - [8157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 172), - [8159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 83), - [8161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(4677), - [8164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 18), - [8166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 172), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), - [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), - [8176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 58), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), - [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [8188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 80), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), - [8192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 1), - [8194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 81), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [8202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), - [8204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), - [8206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), - [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), - [8210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 204), - [8212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 177), - [8214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 18), - [8216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 8), - [8218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 8), - [8220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 203), - [8222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 175), - [8224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 137), - [8226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [8228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [8230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 25), - [8232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 25), - [8234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 138), - [8236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 2, 0, 2), - [8238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 94), - [8240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [8243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [8246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 103), - [8248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 47), REDUCE(sym_record_body, 2, 0, 47), - [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), - [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [8257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 3, 0, 97), - [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), - [8263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 203), - [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [8267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), - [8269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 47), - [8271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), - [8273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), - [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), - [8279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 48), - [8281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4379), - [8283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), - [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), - [8287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 179), - [8289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 179), - [8291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 173), - [8293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 173), + [8062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 44), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [8066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [8068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, 0, 14), + [8070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 100), + [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [8074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 100), + [8076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__table_body_repeat1, 2, 0, 101), SHIFT_REPEAT(388), + [8079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 48), + [8081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 103), + [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [8087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 47), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [8091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 83), + [8093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 31), + [8095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 3, 0, 143), + [8097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 1, 0, 90), + [8099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 1, 0, 88), + [8101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 8), + [8103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 1, 0, 88), + [8105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 2, 0, 172), + [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [8109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__repeat_newline, 2, 0, 0), SHIFT_REPEAT(4727), + [8112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 1, 0, 46), + [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [8120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 176), + [8122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 177), + [8124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [8128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_match_body, 1, 0, 0), + [8130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 71), + [8132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 83), + [8134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 128), + [8136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 1, 0, 18), REDUCE(sym_record_body, 1, 0, 18), + [8139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 133), + [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [8143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 80), + [8145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 58), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [8151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 2, 0, 172), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [8161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 18), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), + [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), + [8173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 81), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [8181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 204), + [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [8185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [8191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), + [8193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 1, 0, 0), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [8197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 18), + [8199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 8), + [8201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 177), + [8203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 8), + [8205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__composite_argument_body, 3, 0, 203), + [8207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 3, 0, 175), + [8209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 103), + [8211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 2, 0, 2), + [8213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 94), + [8215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 137), + [8217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [8219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [8221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [8224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [8227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_list_body, 2, 0, 138), + [8229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 25), + [8231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 25), + [8233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_body, 2, 0, 47), REDUCE(sym_record_body, 2, 0, 47), + [8236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 3, 0, 0), + [8238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__table_head, 3, 0, 97), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [8244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), + [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [8254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), + [8260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 47), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), + [8266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), + [8268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 1), + [8270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__table_body, 2, 0, 99), + [8272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 48), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), + [8280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 122), + [8282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 122), SHIFT_REPEAT(4505), + [8285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__types_body, 3, 0, 203), + [8287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), + [8289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), [8295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 16), [8297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 16), [8299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 17), [8301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 17), - [8303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), - [8305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), - [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), - [8315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), - [8317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4705), - [8320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), - [8322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [8324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [8326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), - [8328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), - [8330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), - [8332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [8334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 5), - [8336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 6), - [8338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), - [8340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 120), - [8342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), - [8344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [8348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [8350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [8352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), - [8354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [8356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [8358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [8361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), - [8363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), - [8365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), - [8367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), - [8369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), - [8371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), - [8373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), - [8375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), - [8377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 3, 0, 69), - [8379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 3, 0, 69), - [8381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), - [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), - [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), - [8393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), - [8395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [8397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [8401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5000), - [8403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), - [8405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [8407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 178), - [8409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 178), - [8411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4801), - [8414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4670), - [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), - [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [8429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [8433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [8441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), - [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [8481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), - [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), - [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), - [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), - [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [8573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [8599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 88), - [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [8603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), - [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [8617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [8643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [8655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), - [8683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [8701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [8729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), - [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), - [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [8757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), - [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [8771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), - [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [8799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), - [8801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 83), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [8813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [8829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [8831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), - [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), - [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [8885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5028), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [8889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), - [8891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [8905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), - [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [8913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), - [8915] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [8919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 83), - [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [8925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), - [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), - [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), - [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), - [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), - [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), - [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), - [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), - [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), - [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), - [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), - [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), - [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), - [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), - [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), - [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), - [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), - [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), - [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), - [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), - [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), - [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), - [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), - [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), - [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), - [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), - [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), - [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), - [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), - [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), - [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), - [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), - [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), - [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), - [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), - [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), - [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), - [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), - [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), - [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), - [9079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), - [9081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), - [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), - [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [9099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4703), - [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [9105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), - [9107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), - [9113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [9119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5262), - [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [9123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), - [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [9137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5127), - [9139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), + [8303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4765), + [8306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4667), + [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [8311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4981), + [8313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), + [8315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [8317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [8319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [8321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [8323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 178), + [8325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 178), + [8327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [8329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [8331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), + [8333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [8335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [8337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [8339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), + [8341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), + [8343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [8345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), + [8347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), + [8349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 5), + [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [8353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 6), + [8355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [8357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [8360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 179), + [8362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 179), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [8368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4379), + [8370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [8372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [8374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [8376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [8378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 3, 0, 69), + [8380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 3, 0, 69), + [8382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), + [8384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), + [8386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [8388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), + [8390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 173), + [8392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 173), + [8394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), + [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), + [8404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), + [8406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), + [8408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(4747), + [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), + [8413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [8415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [8417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 120), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [8431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [8437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [8547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [8551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 83), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [8559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [8587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), + [8589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [8629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [8645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [8689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [8693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [8741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [8749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [8755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [8771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [8785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [8799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [8805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), + [8807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [8811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 88), + [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), + [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [8817] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [8823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 83), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [8841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [8847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [8851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [8867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), + [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [8887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [8895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5008), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [8903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), + [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), + [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), + [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), + [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), + [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), + [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), + [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), + [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), + [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), + [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), + [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [9065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4797), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [9073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [9081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [9089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4824), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [9101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [9105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [9123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [9127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [9137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), }; enum ts_external_scanner_symbol_identifiers { @@ -256717,10 +256903,10 @@ static const bool ts_external_scanner_states[5][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_raw_string_begin] = true, }, [3] = { - [ts_external_token_raw_string_content] = true, + [ts_external_token_raw_string_end] = true, }, [4] = { - [ts_external_token_raw_string_end] = true, + [ts_external_token_raw_string_content] = true, }, };